Searched refs:shorty_pos (Results 1 – 3 of 3) sorted by relevance
/art/runtime/interpreter/ |
D | interpreter.cc | 459 for (size_t shorty_pos = 0, arg_pos = 0; cur_reg < num_regs; ++shorty_pos, ++arg_pos, cur_reg++) { in EnterInterpreterFromInvoke() local 460 DCHECK_LT(shorty_pos + 1, shorty_len); in EnterInterpreterFromInvoke() 461 switch (shorty[shorty_pos + 1]) { in EnterInterpreterFromInvoke()
|
D | interpreter_common.cc | 1332 for (uint32_t shorty_pos = 0; dest_reg < num_regs; ++shorty_pos, ++dest_reg, ++arg_offset) { in DoCallCommon() local 1334 DCHECK_LT(shorty_pos + 1, shorty_len) << "for shorty '" << shorty << "'"; in DoCallCommon() 1336 switch (shorty[shorty_pos + 1]) { in DoCallCommon() 1341 const dex::TypeIndex type_idx = params->GetTypeItem(shorty_pos).type_idx_; in DoCallCommon() 1359 new_shadow_frame->GetMethod()->GetName(), shorty_pos, in DoCallCommon()
|
/art/compiler/optimizing/ |
D | instruction_builder.cc | 625 for (int i = 0, shorty_pos = 1; i < number_of_parameters; i++) { in InitializeParameters() local 628 arg_types->GetTypeItem(shorty_pos - 1).type_idx_, in InitializeParameters() 630 DataType::FromShorty(shorty[shorty_pos]), in InitializeParameters() 632 ++shorty_pos; in InitializeParameters()
|