Searched refs:kInvoke (Results 1 – 7 of 7) sorted by relevance
/art/runtime/ |
D | dex_instruction_list.h | 131 …V(0x6E, INVOKE_VIRTUAL, "invoke-virtual", k35c, false, kMethodRef, kContinue | kThrow | kInvoke, k… 132 …V(0x6F, INVOKE_SUPER, "invoke-super", k35c, false, kMethodRef, kContinue | kThrow | kInvoke, kVeri… 133 …V(0x70, INVOKE_DIRECT, "invoke-direct", k35c, false, kMethodRef, kContinue | kThrow | kInvoke, kVe… 134 …V(0x71, INVOKE_STATIC, "invoke-static", k35c, false, kMethodRef, kContinue | kThrow | kInvoke, kVe… 135 …RFACE, "invoke-interface", k35c, false, kMethodRef, kContinue | kThrow | kInvoke, kVerifyRegBMetho… 137 …E, "invoke-virtual/range", k3rc, false, kMethodRef, kContinue | kThrow | kInvoke, kVerifyRegBMetho… 138 …NGE, "invoke-super/range", k3rc, false, kMethodRef, kContinue | kThrow | kInvoke, kVerifyRegBMetho… 139 …GE, "invoke-direct/range", k3rc, false, kMethodRef, kContinue | kThrow | kInvoke, kVerifyRegBMetho… 140 …GE, "invoke-static/range", k3rc, false, kMethodRef, kContinue | kThrow | kInvoke, kVerifyRegBMetho… 141 … "invoke-interface/range", k3rc, false, kMethodRef, kContinue | kThrow | kInvoke, kVerifyRegBMetho… [all …]
|
D | dex_instruction.h | 126 kInvoke = 0x000020, // a flavor of invoke enumerator 491 return (kInstructionFlags[Opcode()] & kInvoke) != 0; in IsInvoke()
|
/art/compiler/dex/ |
D | mir_graph.h | 300 …doMirOp(opcode) && ((Instruction::FlagsOf(opcode) & Instruction::kInvoke) == Instruction::kInvoke); in IsInvoke()
|
D | vreg_analysis.cc | 256 if ((flags & Instruction::kInvoke) && in InferTypeAndSize()
|
D | mir_dataflow.cc | 1090 if ((flags & Instruction::kInvoke) != 0 && (mir->optimization_flags & MIR_INLINED) == 0) { in DoSSAConversion()
|
D | mir_optimization.cc | 1267 if (!(Instruction::FlagsOf(mir->dalvikInsn.opcode) & Instruction::kInvoke)) { in InlineSpecialMethods()
|
D | local_value_numbering.cc | 467 if ((Instruction::FlagsOf(mir->dalvikInsn.opcode) & Instruction::kInvoke) != 0) { in PruneNonAliasingRefsForCatch()
|