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

/art/compiler/dex/
H A Ddex_to_dex_compiler.cc84 Instruction::Code new_opcode, bool is_range);
232 bool is_range) {
236 uint32_t method_idx = is_range ? inst->VRegB_3rc() : inst->VRegB_35c();
262 if (is_range) {
229 CompileInvokeVirtual(Instruction* inst, uint32_t dex_pc, Instruction::Code new_opcode, bool is_range) argument
H A Dverified_method.cc217 bool is_range = (inst->Opcode() == Instruction::INVOKE_VIRTUAL_RANGE) || local
220 reg_type(line->GetRegisterType(is_range ? inst->VRegC_3rc() : inst->VRegC_35c()));
236 is_range ? inst->VRegB_3rc() : inst->VRegB_35c());
H A Dmir_graph.cc1451 bool is_range) {
1469 info->is_range = is_range;
1450 NewMemCallInfo(BasicBlock* bb, MIR* mir, InvokeType type, bool is_range) argument
H A Dmir_graph.h530 bool is_range; member in struct:art::CallInfo
975 CallInfo* NewMemCallInfo(BasicBlock* bb, MIR* mir, InvokeType type, bool is_range);
/art/runtime/entrypoints/portable/
H A Dportable_trampoline_entrypoints.cc328 bool is_range; local
337 is_range = false;
341 is_range = true;
345 is_range = false;
349 is_range = true;
353 is_range = false;
357 is_range = true;
361 is_range = false;
365 is_range = true;
369 is_range
[all...]
/art/compiler/optimizing/
H A Dbuilder.cc325 bool is_range,
344 HInstruction* arg = LoadLocal(is_range ? register_index : args[0], Primitive::kPrimNot);
359 if (!is_range && type == Primitive::kPrimLong && args[i] + 1 != args[i + 1]) {
365 HInstruction* arg = LoadLocal(is_range ? register_index + i : args[i], type);
321 BuildInvoke(const Instruction& instruction, uint32_t dex_offset, uint32_t method_idx, uint32_t number_of_vreg_arguments, bool is_range, uint32_t* args, uint32_t register_index) argument
/art/runtime/verifier/
H A Dregister_line.cc92 RegType& RegisterLine::GetInvocationThis(const Instruction* inst, bool is_range) { argument
93 const size_t args_count = is_range ? inst->VRegA_3rc() : inst->VRegA_35c();
99 const uint32_t this_reg = (is_range) ? inst->VRegC_3rc() : inst->VRegC_35c();
H A Dmethod_verifier.cc429 const bool is_range = (inst->Opcode() == Instruction::INVOKE_VIRTUAL_RANGE_QUICK); local
430 return GetQuickInvokedMethod(inst, register_line, is_range);
2186 bool is_range = (inst->Opcode() == Instruction::INVOKE_VIRTUAL_RANGE || local
2190 mirror::ArtMethod* called_method = VerifyInvocationArgs(inst, METHOD_VIRTUAL, is_range,
2209 uint32_t method_idx = (is_range) ? inst->VRegB_3rc() : inst->VRegB_35c();
2225 bool is_range = (inst->Opcode() == Instruction::INVOKE_DIRECT_RANGE); local
2227 is_range, false);
2232 uint32_t method_idx = (is_range) ? inst->VRegB_3rc() : inst->VRegB_35c();
2262 RegType& this_type = work_line_->GetInvocationThis(inst, is_range);
2308 bool is_range local
2334 bool is_range = (inst->Opcode() == Instruction::INVOKE_INTERFACE_RANGE); local
2642 bool is_range = (inst->Opcode() == Instruction::INVOKE_VIRTUAL_RANGE_QUICK); local
3094 VerifyInvocationArgsFromIterator(T* it, const Instruction* inst, MethodType method_type, bool is_range, mirror::ArtMethod* res_method) argument
3213 VerifyInvocationArgsUnresolvedMethod(const Instruction* inst, MethodType method_type, bool is_range) argument
3252 VerifyInvocationArgs(const Instruction* inst, MethodType method_type, bool is_range, bool is_super) argument
3297 GetQuickInvokedMethod(const Instruction* inst, RegisterLine* reg_line, bool is_range) argument
3325 VerifyInvokeVirtualQuickArgs(const Instruction* inst, bool is_range) argument
3416 VerifyNewArray(const Instruction* inst, bool is_filled, bool is_range) argument
[all...]
/art/compiler/dex/portable/
H A Dmir_to_gbc.cc468 InvokeType invoke_type, bool is_range, bool is_filled_new_array) {
469 CallInfo* info = mir_graph_->NewMemCallInfo(bb, mir, invoke_type, is_range);
467 ConvertInvoke(BasicBlock* bb, MIR* mir, InvokeType invoke_type, bool is_range, bool is_filled_new_array) argument
/art/runtime/entrypoints/quick/
H A Dquick_trampoline_entrypoints.cc702 bool is_range; local
706 is_range = false;
710 is_range = true;
714 is_range = false;
718 is_range = true;
722 is_range = false;
726 is_range = true;
730 is_range = false;
734 is_range = true;
738 is_range
[all...]

Completed in 402 milliseconds