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.cc406 uint32_t shorty_len) REQUIRES_SHARED(Locks::mutator_lock_) : in QuickArgumentVisitor() argument
407 is_static_(is_static), shorty_(shorty), shorty_len_(shorty_len), in QuickArgumentVisitor()
658 uint32_t shorty_len, ShadowFrame* sf, size_t first_arg_reg) : in BuildQuickShadowFrameVisitor() argument
659 QuickArgumentVisitor(sp, is_static, shorty, shorty_len), sf_(sf), cur_reg_(first_arg_reg) {} in BuildQuickShadowFrameVisitor()
786 uint32_t shorty_len = 0; in artQuickToInterpreterBridge() local
790 const char* shorty = non_proxy_method->GetShorty(&shorty_len); in artQuickToInterpreterBridge()
805 BuildQuickShadowFrameVisitor shadow_frame_builder(sp, method->IsStatic(), shorty, shorty_len, in artQuickToInterpreterBridge()
866 BuildQuickArgumentVisitor(ArtMethod** sp, bool is_static, const char* shorty, uint32_t shorty_len, in BuildQuickArgumentVisitor() argument
868 QuickArgumentVisitor(sp, is_static, shorty, shorty_len), soa_(soa), args_(args) {} in BuildQuickArgumentVisitor()
939 uint32_t shorty_len = 0; in artQuickProxyInvokeHandler() local
[all …]
/art/runtime/
Dreflection.cc44 ArgArray(const char* shorty, uint32_t shorty_len) in ArgArray() argument
45 : shorty_(shorty), shorty_len_(shorty_len), num_bytes_(0) { in ArgArray()
46 size_t num_slots = shorty_len + 1; // +1 in case of receiver. in ArgArray()
52 for (size_t i = 1; i < shorty_len; ++i) { in ArgArray()
479 uint32_t shorty_len = 0; in InvokeWithVarArgs() local
481 method->GetInterfaceMethodIfProxy(kRuntimePointerSize)->GetShorty(&shorty_len); in InvokeWithVarArgs()
483 ArgArray arg_array(shorty, shorty_len); in InvokeWithVarArgs()
510 uint32_t shorty_len = 0; in InvokeWithJValues() local
512 method->GetInterfaceMethodIfProxy(kRuntimePointerSize)->GetShorty(&shorty_len); in InvokeWithJValues()
514 ArgArray arg_array(shorty, shorty_len); in InvokeWithJValues()
[all …]
Dstack.cc701 uint32_t shorty_len; in GetNumberOfReferenceArgsWithoutReceiver() local
702 const char* shorty = method->GetShorty(&shorty_len); in GetNumberOfReferenceArgsWithoutReceiver()
704 for (uint32_t i = 1; i < shorty_len ; ++i) { in GetNumberOfReferenceArgsWithoutReceiver()
Ddebugger.cc4071 uint32_t shorty_len = 0; in PrepareInvokeMethod() local
4072 const char* shorty = m->GetShorty(&shorty_len); in PrepareInvokeMethod()
4073 if (shorty_len - 1 != arg_count) { in PrepareInvokeMethod()
/art/compiler/driver/
Ddex_compilation_unit.h77 const char* GetShorty(uint32_t* shorty_len) const { in GetShorty() argument
79 return dex_file_->GetMethodShorty(method_id, shorty_len); in GetShorty()
/art/runtime/interpreter/
Dinterpreter.cc423 uint32_t shorty_len = 0; in EnterInterpreterFromInvoke() local
424 const char* shorty = method->GetShorty(&shorty_len); in EnterInterpreterFromInvoke()
426 DCHECK_LT(shorty_pos + 1, shorty_len); in EnterInterpreterFromInvoke()
Dinterpreter_common.cc1304 uint32_t shorty_len = 0; in DoCallCommon() local
1305 const char* shorty = method->GetShorty(&shorty_len); in DoCallCommon()
1322 DCHECK_LT(shorty_pos + 1, shorty_len) << "for shorty '" << shorty << "'"; in DoCallCommon()