Lines Matching defs:op
90 InstrumentationOptions op) {
98 (op.HandleAllReturns || T.getOpcode() == TII->getReturnOpcode())) {
103 if (TII->isTailCall(T) && op.HandleTailcall) {
126 InstrumentationOptions op) {
131 (op.HandleAllReturns || T.getOpcode() == TII->getReturnOpcode())) {
134 if (TII->isTailCall(T) && op.HandleTailcall) {
238 InstrumentationOptions op;
239 op.HandleTailcall = false;
240 op.HandleAllReturns = true;
241 prependRetWithPatchableExit(MF, TII, op);
246 InstrumentationOptions op;
247 op.HandleTailcall = false;
248 op.HandleAllReturns = true;
249 replaceRetWithPatchableRet(MF, TII, op);
255 InstrumentationOptions op;
256 op.HandleTailcall = true;
257 op.HandleAllReturns = false;
258 replaceRetWithPatchableRet(MF, TII, op);