Searched refs:shorty_pos (Results 1 – 3 of 3) sorted by relevance
/art/runtime/interpreter/ |
D | interpreter.cc | 399 for (size_t shorty_pos = 0, arg_pos = 0; cur_reg < num_regs; ++shorty_pos, ++arg_pos, cur_reg++) { in EnterInterpreterFromInvoke() local 400 DCHECK_LT(shorty_pos + 1, shorty_len); in EnterInterpreterFromInvoke() 401 switch (shorty[shorty_pos + 1]) { in EnterInterpreterFromInvoke()
|
D | interpreter_common.cc | 1299 for (uint32_t shorty_pos = 0; dest_reg < num_regs; ++shorty_pos, ++dest_reg, ++arg_offset) { in DoCallCommon() local 1301 DCHECK_LT(shorty_pos + 1, shorty_len) << "for shorty '" << shorty << "'"; in DoCallCommon() 1303 switch (shorty[shorty_pos + 1]) { in DoCallCommon() 1308 const dex::TypeIndex type_idx = params->GetTypeItem(shorty_pos).type_idx_; in DoCallCommon() 1326 new_shadow_frame->GetMethod()->GetName(), shorty_pos, in DoCallCommon()
|
/art/compiler/optimizing/ |
D | instruction_builder.cc | 648 for (int i = 0, shorty_pos = 1; i < number_of_parameters; i++) { in InitializeParameters() local 651 arg_types->GetTypeItem(shorty_pos - 1).type_idx_, in InitializeParameters() 653 DataType::FromShorty(shorty[shorty_pos]), in InitializeParameters() 655 ++shorty_pos; in InitializeParameters()
|