Home
last modified time | relevance | path

Searched refs:INVOKE_INTERFACE_RANGE (Results 1 – 20 of 20) 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.java136 || Opcode.isBetween(newOpcode, Opcode.INVOKE_VIRTUAL_RANGE, Opcode.INVOKE_INTERFACE_RANGE) in generateMutation()
/art/runtime/jit/
Dprofiling_info.cc50 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.cc409 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.cc111 case Instruction::INVOKE_INTERFACE_RANGE: in CollectAccesses()
Dflow_analysis.cc349 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()
584 case Instruction::INVOKE_INTERFACE_RANGE: in ThrowNullPointerExceptionFromDexPC()
/art/runtime/entrypoints/quick/
Dquick_trampoline_entrypoints.cc1286 case Instruction::INVOKE_INTERFACE_RANGE: in artQuickResolutionTrampoline()
2310 instr_code == Instruction::INVOKE_INTERFACE_RANGE) in artInvokeInterfaceTrampoline()
2315 DCHECK_EQ(instr_code, Instruction::INVOKE_INTERFACE_RANGE); in artInvokeInterfaceTrampoline()
/art/runtime/interpreter/mterp/
Dnterp.cc296 case Instruction::INVOKE_INTERFACE_RANGE: { in NterpGetMethod()
/art/profman/
Dprofman.cc1143 case Instruction::INVOKE_INTERFACE_RANGE: in GetAllInvokes()
1172 inst->Opcode() == Instruction::INVOKE_INTERFACE_RANGE) { in HasSingleInvoke()
/art/runtime/interpreter/
Dinterpreter_switch_impl-inl.h1056 HANDLER_ATTRIBUTES bool INVOKE_INTERFACE_RANGE() { in INVOKE_INTERFACE_RANGE() function
/art/compiler/optimizing/
Dinstruction_builder.cc846 case Instruction::INVOKE_INTERFACE_RANGE: in GetInvokeTypeFromOpCode()
2754 case Instruction::INVOKE_INTERFACE_RANGE: in ProcessDexInstruction()
/art/runtime/dex/
Ddex_file_annotations.cc1401 case Instruction::INVOKE_INTERFACE_RANGE: in MethodContainsRSensitiveAccess()
/art/runtime/verifier/
Dmethod_verifier.cc3071 case Instruction::INVOKE_INTERFACE_RANGE: { in CodeFlowVerifyInstruction()
3072 bool is_range = (inst->Opcode() == Instruction::INVOKE_INTERFACE_RANGE); in CodeFlowVerifyInstruction()