Home
last modified time | relevance | path

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

/art/runtime/entrypoints/quick/
Dquick_trampoline_entrypoints.cc369 uint32_t shorty_len) REQUIRES_SHARED(Locks::mutator_lock_) : in QuickArgumentVisitor() argument
370 is_static_(is_static), shorty_(shorty), shorty_len_(shorty_len), in QuickArgumentVisitor()
621 uint32_t shorty_len, ShadowFrame* sf, size_t first_arg_reg) : in BuildQuickShadowFrameVisitor() argument
622 QuickArgumentVisitor(sp, is_static, shorty, shorty_len), sf_(sf), cur_reg_(first_arg_reg) {} in BuildQuickShadowFrameVisitor()
749 uint32_t shorty_len = 0; in artQuickToInterpreterBridge() local
753 const char* shorty = non_proxy_method->GetShorty(&shorty_len); in artQuickToInterpreterBridge()
769 BuildQuickShadowFrameVisitor shadow_frame_builder(sp, method->IsStatic(), shorty, shorty_len, in artQuickToInterpreterBridge()
842 BuildQuickArgumentVisitor(ArtMethod** sp, bool is_static, const char* shorty, uint32_t shorty_len, in BuildQuickArgumentVisitor() argument
844 QuickArgumentVisitor(sp, is_static, shorty, shorty_len), soa_(soa), args_(args) {} in BuildQuickArgumentVisitor()
915 uint32_t shorty_len = 0; in artQuickProxyInvokeHandler() local
[all …]
/art/runtime/
Dreflection.cc46 ArgArray(const char* shorty, uint32_t shorty_len) in ArgArray() argument
47 : shorty_(shorty), shorty_len_(shorty_len), num_bytes_(0) { in ArgArray()
48 size_t num_slots = shorty_len + 1; // +1 in case of receiver. in ArgArray()
54 for (size_t i = 1; i < shorty_len; ++i) { in ArgArray()
485 uint32_t shorty_len = 0; in InvokeMethodImpl() local
486 *shorty = np_method->GetShorty(&shorty_len); in InvokeMethodImpl()
487 ArgArray arg_array(*shorty, shorty_len); in InvokeMethodImpl()
539 uint32_t shorty_len = 0; in InvokeWithVarArgs() local
541 method->GetInterfaceMethodIfProxy(kRuntimePointerSize)->GetShorty(&shorty_len); in InvokeWithVarArgs()
543 ArgArray arg_array(shorty, shorty_len); in InvokeWithVarArgs()
[all …]
Dstack.cc684 uint32_t shorty_len; in GetNumberOfReferenceArgsWithoutReceiver() local
685 const char* shorty = method->GetShorty(&shorty_len); in GetNumberOfReferenceArgsWithoutReceiver()
687 for (uint32_t i = 1; i < shorty_len ; ++i) { in GetNumberOfReferenceArgsWithoutReceiver()
Ddebugger.cc3926 uint32_t shorty_len = 0; in PrepareInvokeMethod() local
3927 const char* shorty = m->GetShorty(&shorty_len); in PrepareInvokeMethod()
3928 if (shorty_len - 1 != arg_count) { in PrepareInvokeMethod()
/art/compiler/driver/
Ddex_compilation_unit.h78 const char* GetShorty(uint32_t* shorty_len) const { in GetShorty() argument
80 return dex_file_->GetMethodShorty(method_id, shorty_len); in GetShorty()
/art/runtime/interpreter/
Dinterpreter.cc452 uint32_t shorty_len = 0; in EnterInterpreterFromInvoke() local
453 const char* shorty = method->GetShorty(&shorty_len); in EnterInterpreterFromInvoke()
455 DCHECK_LT(shorty_pos + 1, shorty_len); in EnterInterpreterFromInvoke()
Dinterpreter_common.cc1641 uint32_t shorty_len = 0; in DoCallCommon() local
1642 const char* shorty = method->GetShorty(&shorty_len); in DoCallCommon()
1659 DCHECK_LT(shorty_pos + 1, shorty_len) << "for shorty '" << shorty << "'"; in DoCallCommon()