Home
last modified time | relevance | path

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

/art/compiler/jni/quick/
Dcalling_convention.h35 bool IsReturnAReference() const { return shorty_[0] == 'L'; } in IsReturnAReference()
38 return Primitive::GetType(shorty_[0]); in GetReturnType()
42 size_t result = Primitive::ComponentSize(Primitive::GetType(shorty_[0])); in SizeOfReturnValue()
86 shorty_(shorty) { in CallingConvention()
92 char ch = shorty_[i]; in CallingConvention()
124 char ch = shorty_[param]; in IsParamALongOrDouble()
134 char ch = shorty_[param]; in IsParamAFloatOrDouble()
144 return shorty_[param] == 'D'; in IsParamADouble()
153 return shorty_[param] == 'J'; in IsParamALong()
162 return shorty_[param] == 'L'; in IsParamAReference()
[all …]
/art/runtime/
Dreflection.cc47 : shorty_(shorty), shorty_len_(shorty_len), num_bytes_(0) { in ArgArray()
113 switch (shorty_[i]) { in BuildArgArrayFromVarArgs()
135 LOG(FATAL) << "Unexpected shorty character: " << shorty_[i]; in BuildArgArrayFromVarArgs()
149 switch (shorty_[i]) { in BuildArgArrayFromJValues()
177 LOG(FATAL) << "Unexpected shorty character: " << shorty_[i]; in BuildArgArrayFromJValues()
192 switch (shorty_[i]) { in BuildArgArrayFromFrame()
211 LOG(FATAL) << "Unexpected shorty character: " << shorty_[i]; in BuildArgArrayFromFrame()
241 if (((shorty_[i] == 'L') && (arg != nullptr)) || in BuildArgArrayFromObjectArray()
242 ((arg == nullptr && shorty_[i] != 'L'))) { in BuildArgArrayFromObjectArray()
291 switch (shorty_[i]) { in BuildArgArrayFromObjectArray()
[all …]
/art/runtime/jit/
Djit_code_cache.cc70 : shorty_(method->GetShorty()), in REQUIRES_SHARED()
91 return strcmp(shorty_, rhs.shorty_) < 0; in operator <()
99 DCHECK_STREQ(shorty_, shorty); in UpdateShorty()
100 shorty_ = shorty; in UpdateShorty()
106 mutable const char* shorty_; member in art::jit::JitCodeCache::JniStubKey
/art/dexlayout/
Ddex_ir.h655 : shorty_(shorty), return_type_(return_type), parameters_(parameters) in ProtoId()
661 const StringId* Shorty() const { return shorty_; } in Shorty()
668 const StringId* shorty_;
/art/runtime/entrypoints/quick/
Dquick_trampoline_entrypoints.cc290 is_static_(is_static), shorty_(shorty), shorty_len_(shorty_len), in QuickArgumentVisitor()
394 cur_type_ = Primitive::GetType(shorty_[shorty_index]); in VisitArguments()
495 LOG(FATAL) << "Unexpected type: " << cur_type_ << " in " << shorty_; in VisitArguments()
502 const char* const shorty_; member in art::QuickArgumentVisitor