Searched refs:shorty_ (Results 1 – 5 of 5) sorted by relevance
/art/compiler/jni/quick/ |
D | calling_convention.h | 35 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() 88 shorty_(shorty) { in CallingConvention() 94 char ch = shorty_[i]; in CallingConvention() 126 char ch = shorty_[param]; in IsParamALongOrDouble() 136 char ch = shorty_[param]; in IsParamAFloatOrDouble() 146 return shorty_[param] == 'D'; in IsParamADouble() 155 return shorty_[param] == 'J'; in IsParamALong() 164 return shorty_[param] == 'L'; in IsParamAReference() [all …]
|
/art/runtime/ |
D | reflection.cc | 47 : 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/ |
D | jit_code_cache.cc | 70 : 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/ |
D | dex_ir.h | 655 : 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/ |
D | quick_trampoline_entrypoints.cc | 291 is_static_(is_static), shorty_(shorty), shorty_len_(shorty_len), in QuickArgumentVisitor() 395 cur_type_ = Primitive::GetType(shorty_[shorty_index]); in VisitArguments() 496 LOG(FATAL) << "Unexpected type: " << cur_type_ << " in " << shorty_; in VisitArguments() 503 const char* const shorty_; member in art::QuickArgumentVisitor
|