Home
last modified time | relevance | path

Searched refs:shorty_len (Results 1 – 7 of 7) sorted by relevance

/art/runtime/
Dreflection.cc39 explicit ArgArray(const char* shorty, uint32_t shorty_len) in ArgArray() argument
40 : shorty_(shorty), shorty_len_(shorty_len), num_bytes_(0) { in ArgArray()
41 size_t num_slots = shorty_len + 1; // +1 in case of receiver. in ArgArray()
47 for (size_t i = 1; i < shorty_len; ++i) { in ArgArray()
433 uint32_t shorty_len = 0; in InvokeWithVarArgs() local
434 const char* shorty = method->GetShorty(&shorty_len); in InvokeWithVarArgs()
436 ArgArray arg_array(shorty, shorty_len); in InvokeWithVarArgs()
453 uint32_t shorty_len = 0; in InvokeWithJValues() local
454 const char* shorty = method->GetShorty(&shorty_len); in InvokeWithJValues()
456 ArgArray arg_array(shorty, shorty_len); in InvokeWithJValues()
[all …]
Ddebugger.cc3662 uint32_t shorty_len = 0; in InvokeMethod() local
3663 const char* shorty = m->GetShorty(&shorty_len); in InvokeMethod()
3664 if (shorty_len - 1 != arg_count) { in InvokeMethod()
/art/runtime/entrypoints/quick/
Dquick_trampoline_entrypoints.cc234 uint32_t shorty_len) SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) : in QuickArgumentVisitor() argument
235 is_static_(is_static), shorty_(shorty), shorty_len_(shorty_len), in QuickArgumentVisitor()
239 + StackArgumentStartFromShorty(is_static, shorty, shorty_len)), in QuickArgumentVisitor()
398 uint32_t shorty_len) { in StackArgumentStartFromShorty() argument
440 const char* shorty, uint32_t shorty_len, ShadowFrame* sf, in BuildQuickShadowFrameVisitor() argument
442 QuickArgumentVisitor(sp, is_static, shorty, shorty_len), sf_(sf), cur_reg_(first_arg_reg) {} in BuildQuickShadowFrameVisitor()
507 uint32_t shorty_len = 0; in artQuickToInterpreterBridge() local
508 const char* shorty = method->GetShorty(&shorty_len); in artQuickToInterpreterBridge()
509 BuildQuickShadowFrameVisitor shadow_frame_builder(sp, method->IsStatic(), shorty, shorty_len, in artQuickToInterpreterBridge()
544 const char* shorty, uint32_t shorty_len, in BuildQuickArgumentVisitor() argument
[all …]
/art/compiler/driver/
Ddex_compilation_unit.h76 const char* GetShorty(uint32_t* shorty_len) const { in GetShorty() argument
78 return dex_file_->GetMethodShorty(method_id, shorty_len); in GetShorty()
/art/compiler/dex/
Dvreg_analysis.cc475 int shorty_len = strlen(shorty); in InitRegLocations() local
476 for (int i = 1; i < shorty_len; i++) { in InitRegLocations()
/art/runtime/interpreter/
Dinterpreter.cc438 uint32_t shorty_len = 0; in EnterInterpreterFromInvoke() local
439 const char* shorty = method->GetShorty(&shorty_len); in EnterInterpreterFromInvoke()
441 DCHECK_LT(shorty_pos + 1, shorty_len); in EnterInterpreterFromInvoke()
Dinterpreter_common.cc557 uint32_t shorty_len = 0; in DoCall() local
558 const char* shorty = method->GetShorty(&shorty_len); in DoCall()
579 DCHECK_LT(shorty_pos + 1, shorty_len); in DoCall()