Searched defs:is_range (Results 1 - 5 of 5) sorted by relevance

/art/runtime/
H A Ddex_to_dex_decompiler.cc53 bool is_range) {
56 if (is_range) {
50 DecompileInvokeVirtual(Instruction* inst, uint32_t dex_pc, Instruction::Code new_opcode, bool is_range) argument
/art/compiler/dex/
H A Ddex_to_dex_compiler.cc97 Instruction::Code new_opcode, bool is_range);
276 Instruction::Code new_opcode, bool is_range) {
280 uint32_t method_idx = is_range ? inst->VRegB_3rc() : inst->VRegB_35c();
310 if (is_range) {
275 CompileInvokeVirtual(Instruction* inst, uint32_t dex_pc, Instruction::Code new_opcode, bool is_range) argument
/art/compiler/optimizing/
H A Dinstruction_builder.cc787 bool is_range,
815 is_range,
845 is_range,
911 is_range,
922 bool is_range,
938 is_range,
1036 bool is_range,
1050 if (!is_range
1062 HInstruction* arg = LoadLocal(is_range ? register_index + i : args[i], type);
1091 bool is_range,
783 BuildInvoke(const Instruction& instruction, uint32_t dex_pc, uint32_t method_idx, uint32_t number_of_vreg_arguments, bool is_range, uint32_t* args, uint32_t register_index) argument
917 BuildInvokePolymorphic(const Instruction& instruction ATTRIBUTE_UNUSED, uint32_t dex_pc, uint32_t method_idx, uint32_t proto_idx, uint32_t number_of_vreg_arguments, bool is_range, uint32_t* args, uint32_t register_index) argument
1032 SetupInvokeArguments(HInvoke* invoke, uint32_t number_of_vreg_arguments, uint32_t* args, uint32_t register_index, bool is_range, const char* descriptor, size_t start_index, size_t* argument_index) argument
1087 HandleInvoke(HInvoke* invoke, uint32_t number_of_vreg_arguments, uint32_t* args, uint32_t register_index, bool is_range, const char* descriptor, HClinitCheck* clinit_check, bool is_unresolved) argument
1135 HandleStringInit(HInvoke* invoke, uint32_t number_of_vreg_arguments, uint32_t* args, uint32_t register_index, bool is_range, const char* descriptor) argument
1504 BuildFilledNewArray(uint32_t dex_pc, dex::TypeIndex type_index, uint32_t number_of_vreg_arguments, bool is_range, uint32_t* args, uint32_t register_index) argument
[all...]
/art/runtime/entrypoints/quick/
H A Dquick_trampoline_entrypoints.cc1020 bool is_range; local
1024 is_range = false;
1028 is_range = true;
1032 is_range = false;
1036 is_range = true;
1040 is_range = false;
1044 is_range = true;
1048 is_range = false;
1052 is_range = true;
1056 is_range
2550 const bool is_range = (inst->Opcode() == Instruction::INVOKE_POLYMORPHIC_RANGE); local
[all...]
/art/runtime/verifier/
H A Dmethod_verifier.cc730 const bool is_range = (inst->Opcode() == Instruction::INVOKE_VIRTUAL_RANGE_QUICK); local
731 return GetQuickInvokedMethod(inst, register_line, is_range, false);
2895 bool is_range = (inst->Opcode() == Instruction::INVOKE_VIRTUAL_RANGE || local
2900 ArtMethod* called_method = VerifyInvocationArgs(inst, type, is_range);
2914 uint32_t method_idx = (is_range) ? inst->VRegB_3rc() : inst->VRegB_35c();
2931 bool is_range = (inst->Opcode() == Instruction::INVOKE_DIRECT_RANGE); local
2932 ArtMethod* called_method = VerifyInvocationArgs(inst, METHOD_DIRECT, is_range);
2937 uint32_t method_idx = (is_range) ? inst->VRegB_3rc() : inst->VRegB_35c();
3009 bool is_range = (inst->Opcode() == Instruction::INVOKE_STATIC_RANGE); local
3010 ArtMethod* called_method = VerifyInvocationArgs(inst, METHOD_STATIC, is_range);
3032 bool is_range = (inst->Opcode() == Instruction::INVOKE_INTERFACE_RANGE); local
3087 bool is_range = (inst->Opcode() == Instruction::INVOKE_POLYMORPHIC_RANGE); local
3119 bool is_range = (inst->Opcode() == Instruction::INVOKE_CUSTOM_RANGE); local
3445 bool is_range = (inst->Opcode() == Instruction::INVOKE_VIRTUAL_RANGE_QUICK); local
3980 VerifyInvocationArgsFromIterator( T* it, const Instruction* inst, MethodType method_type, bool is_range, ArtMethod* res_method) argument
4125 VerifyInvocationArgsUnresolvedMethod(const Instruction* inst, MethodType method_type, bool is_range) argument
4281 VerifyInvocationArgs( const Instruction* inst, MethodType method_type, bool is_range) argument
4428 GetQuickInvokedMethod(const Instruction* inst, RegisterLine* reg_line, bool is_range, bool allow_failure) argument
4476 VerifyInvokeVirtualQuickArgs(const Instruction* inst, bool is_range) argument
4580 VerifyNewArray(const Instruction* inst, bool is_filled, bool is_range) argument
[all...]

Completed in 147 milliseconds