Home
last modified time | relevance | path

Searched refs:shorty_ (Results 1 – 4 of 4) sorted by relevance

/art/compiler/jni/quick/
Dcalling_convention.h31 bool IsReturnAReference() const { return shorty_[0] == 'L'; } in IsReturnAReference()
34 return Primitive::GetType(shorty_[0]); in GetReturnType()
38 size_t result = Primitive::ComponentSize(Primitive::GetType(shorty_[0])); in SizeOfReturnValue()
79 shorty_(shorty) { in CallingConvention()
85 char ch = shorty_[i]; in CallingConvention()
117 char ch = shorty_[param]; in IsParamALongOrDouble()
127 char ch = shorty_[param]; in IsParamAFloatOrDouble()
137 return shorty_[param] == 'D'; in IsParamADouble()
146 return shorty_[param] == 'J'; in IsParamALong()
155 return shorty_[param] == 'L'; in IsParamAReference()
[all …]
/art/runtime/
Dmethod_helper.h30 : method_(m), shorty_(nullptr), shorty_len_(0) { in MethodHelper()
37 shorty_ = nullptr; in ChangeMethod()
47 const char* result = shorty_; in GetShorty()
50 shorty_ = result; in GetShorty()
56 if (shorty_ == nullptr) { in GetShortyLength()
136 const char* shorty_; variable
Dreflection.cc40 : shorty_(shorty), shorty_len_(shorty_len), num_bytes_(0) { in ArgArray()
111 switch (shorty_[i]) { in BuildArgArrayFromVarArgs()
133 LOG(FATAL) << "Unexpected shorty character: " << shorty_[i]; in BuildArgArrayFromVarArgs()
147 switch (shorty_[i]) { in BuildArgArrayFromJValues()
173 LOG(FATAL) << "Unexpected shorty character: " << shorty_[i]; in BuildArgArrayFromJValues()
188 switch (shorty_[i]) { in BuildArgArrayFromFrame()
207 LOG(FATAL) << "Unexpected shorty character: " << shorty_[i]; in BuildArgArrayFromFrame()
232 if (((shorty_[i] == 'L') && (arg != nullptr)) || ((arg == nullptr && shorty_[i] != 'L'))) { in BuildArgArrayFromObjectArray()
274 switch (shorty_[i]) { in BuildArgArrayFromObjectArray()
331 LOG(FATAL) << "Unexpected shorty character: " << shorty_[i]; in BuildArgArrayFromObjectArray()
[all …]
/art/runtime/entrypoints/quick/
Dquick_trampoline_entrypoints.cc235 is_static_(is_static), shorty_(shorty), shorty_len_(shorty_len), in QuickArgumentVisitor()
313 cur_type_ = Primitive::GetType(shorty_[shorty_index]); in VisitArguments()
391 LOG(FATAL) << "Unexpected type: " << cur_type_ << " in " << shorty_; in VisitArguments()
413 const char* const shorty_; member in art::QuickArgumentVisitor