Lines Matching refs:shorty

439   const char* shorty = dex_file_->GetMethodShorty(method_idx);  in BuildIntrinsic()  local
441 if (!BuildSimpleIntrinsic(method, kNoDexPc, operands, shorty)) { in BuildIntrinsic()
463 HandleInvoke(invoke, operands, shorty, /* is_unresolved= */ false); in BuildIntrinsic()
569 const char* shorty = dex_compilation_unit_->GetShorty(); in InitializeParameters() local
598 DataType::FromShorty(shorty[shorty_pos]), in InitializeParameters()
954 const char* shorty = dex_file_->GetMethodShorty(method_idx); in BuildInvoke() local
955 DataType::Type return_type = DataType::FromShorty(shorty[0]); in BuildInvoke()
958 size_t number_of_arguments = strlen(shorty) - 1; in BuildInvoke()
983 return HandleInvoke(invoke, operands, shorty, /* is_unresolved= */ true); in BuildInvoke()
1007 return HandleStringInit(invoke, operands, shorty); in BuildInvoke()
1024 if (BuildSimpleIntrinsic(resolved_method, dex_pc, operands, shorty)) { in BuildInvoke()
1077 return HandleInvoke(invoke, operands, shorty, /* is_unresolved= */ false); in BuildInvoke()
1084 const char* shorty = dex_file_->GetShorty(proto_idx); in BuildInvokePolymorphic() local
1085 DCHECK_EQ(1 + ArtMethod::NumArgRegisters(shorty), operands.GetNumberOfOperands()); in BuildInvokePolymorphic()
1086 DataType::Type return_type = DataType::FromShorty(shorty[0]); in BuildInvokePolymorphic()
1087 size_t number_of_arguments = strlen(shorty); in BuildInvokePolymorphic()
1105 return HandleInvoke(invoke, operands, shorty, /* is_unresolved= */ false); in BuildInvokePolymorphic()
1113 const char* shorty = dex_file_->GetShorty(proto_idx); in BuildInvokeCustom() local
1114 DataType::Type return_type = DataType::FromShorty(shorty[0]); in BuildInvokeCustom()
1115 size_t number_of_arguments = strlen(shorty) - 1; in BuildInvokeCustom()
1121 return HandleInvoke(invoke, operands, shorty, /* is_unresolved= */ false); in BuildInvokeCustom()
1474 const char* shorty, in SetupInvokeArguments() argument
1506 if (UNLIKELY(shorty[shorty_index] == 0)) { in SetupInvokeArguments()
1510 DataType::Type type = DataType::FromShorty(shorty[shorty_index++]); in SetupInvokeArguments()
1534 argument_length_error = argument_length_error || shorty[shorty_index] != 0; in SetupInvokeArguments()
1559 const char* shorty, in HandleInvoke() argument
1566 if (!SetupInvokeArguments(invoke, operands, shorty, receiver_arg)) { in HandleInvoke()
1579 const char* shorty) { in BuildSimpleIntrinsic() argument
1706 if (!SetupInvokeArguments(instruction, operands, shorty, receiver_arg)) { in BuildSimpleIntrinsic()
1761 const char* shorty) { in HandleStringInit() argument
1765 if (!SetupInvokeArguments(invoke, operands, shorty, ReceiverArg::kIgnored)) { in HandleStringInit()