Home
last modified time | relevance | path

Searched refs:INVOKE_INTERFACE_RANGE (Results 1 – 18 of 18) sorted by relevance

/art/tools/dexfuzz/src/dexfuzz/program/mutators/
DInvokeChanger.java46 Opcode.INVOKE_INTERFACE_RANGE,
170 return Opcode.isBetween(opcode, Opcode.INVOKE_VIRTUAL_RANGE, Opcode.INVOKE_INTERFACE_RANGE); in isRangeInvokeInst()
DRandomInstructionGenerator.java137 Opcode.INVOKE_VIRTUAL_RANGE, Opcode.INVOKE_INTERFACE_RANGE) in generateMutation()
/art/runtime/jit/
Dprofiling_info.cc54 case Instruction::INVOKE_INTERFACE_RANGE: in Create()
/art/tools/dexfuzz/src/dexfuzz/rawdex/
DOpcode.java140 INVOKE_INTERFACE_RANGE, enumConstant
DCodeItem.java192 Opcode.INVOKE_VIRTUAL_RANGE, Opcode.INVOKE_INTERFACE_RANGE)) { in incrementIndex()
DInstruction.java442 addOpcodeInfo(Opcode.INVOKE_INTERFACE_RANGE, "invoke-interface/range", in addOpcodeInfo() argument
/art/libdexfile/dex/
Ddex_instruction_utils.h67 return Instruction::INVOKE_VIRTUAL <= opcode && opcode <= Instruction::INVOKE_INTERFACE_RANGE && in IsInstructionInvoke()
Ddex_instruction.cc436 case INVOKE_INTERFACE_RANGE: in DumpString()
Ddex_instruction_list.h142 …V(0x78, INVOKE_INTERFACE_RANGE, "invoke-interface/range", k3rc, kIndexMethodRef, kContinue | kThro…
/art/tools/veridex/
Dhidden_api_finder.cc108 case Instruction::INVOKE_INTERFACE_RANGE: in CollectAccesses()
Dflow_analysis.cc326 case Instruction::INVOKE_INTERFACE_RANGE: in ProcessDexInstruction()
/art/tools/dexanalyze/
Ddexanalyze_experiments.cc42 code == Instruction::INVOKE_INTERFACE_RANGE; in IsRange()
412 case Instruction::INVOKE_INTERFACE_RANGE: { in ProcessDexFile()
/art/runtime/
Dcommon_throws.cc475 case Instruction::INVOKE_INTERFACE_RANGE: in IsValidImplicitCheck()
602 case Instruction::INVOKE_INTERFACE_RANGE: in ThrowNullPointerExceptionFromDexPC()
/art/runtime/entrypoints/quick/
Dquick_trampoline_entrypoints.cc1368 case Instruction::INVOKE_INTERFACE_RANGE: in artQuickResolutionTrampoline()
2658 instr_code == Instruction::INVOKE_INTERFACE_RANGE) in artInvokeInterfaceTrampoline()
2663 DCHECK_EQ(instr_code, Instruction::INVOKE_INTERFACE_RANGE); in artInvokeInterfaceTrampoline()
/art/compiler/optimizing/
Dinstruction_builder.cc804 case Instruction::INVOKE_INTERFACE_RANGE: in GetInvokeTypeFromOpCode()
2280 case Instruction::INVOKE_INTERFACE_RANGE: in ProcessDexInstruction()
/art/runtime/dex/
Ddex_file_annotations.cc1448 case Instruction::INVOKE_INTERFACE_RANGE: in MethodContainsRSensitiveAccess()
/art/runtime/verifier/
Dmethod_verifier.cc3087 case Instruction::INVOKE_INTERFACE_RANGE: { in CodeFlowVerifyInstruction()
3088 bool is_range = (inst->Opcode() == Instruction::INVOKE_INTERFACE_RANGE); in CodeFlowVerifyInstruction()
/art/runtime/interpreter/
Dinterpreter_switch_impl-inl.h1729 ALWAYS_INLINE void INVOKE_INTERFACE_RANGE() REQUIRES_SHARED(Locks::mutator_lock_) { in INVOKE_INTERFACE_RANGE() function