/art/compiler/driver/ |
D | dex_compilation_unit.h | 72 const char* GetShorty() const { in GetShorty() function 77 const char* GetShorty(uint32_t* shorty_len) const { in GetShorty() function
|
/art/runtime/ |
D | native_bridge_art_interface.cc | 38 return m->GetShorty(); in GetMethodShorty() 69 methods[count].signature = m.GetShorty(); in GetNativeMethods()
|
D | art_method-inl.h | 191 inline const char* ArtMethod::GetShorty() { in GetShorty() function 193 return GetShorty(&unused_length); in GetShorty() 196 inline const char* ArtMethod::GetShorty(uint32_t* out_length) { in GetShorty() function 300 return strlen(GetShorty()) - return_type_count; in GetNumberOfParameters()
|
D | reflection.cc | 481 method->GetInterfaceMethodIfProxy(kRuntimePointerSize)->GetShorty(&shorty_len); in InvokeWithVarArgs() 512 method->GetInterfaceMethodIfProxy(kRuntimePointerSize)->GetShorty(&shorty_len); in InvokeWithJValues() 544 method->GetInterfaceMethodIfProxy(kRuntimePointerSize)->GetShorty(&shorty_len); in InvokeVirtualOrInterfaceWithJValues() 576 method->GetInterfaceMethodIfProxy(kRuntimePointerSize)->GetShorty(&shorty_len); in InvokeVirtualOrInterfaceWithVarArgs() 664 const char* shorty = np_method->GetShorty(&shorty_len); in InvokeMethod()
|
D | art_method.h | 584 ALWAYS_INLINE const char* GetShorty() REQUIRES_SHARED(Locks::mutator_lock_); 586 const char* GetShorty(uint32_t* out_length) REQUIRES_SHARED(Locks::mutator_lock_);
|
D | instrumentation.cc | 1270 shorty = m->GetShorty()[0]; in VisitFrame() 1276 shorty = m->GetInterfaceMethodIfProxy(kRuntimePointerSize)->GetShorty()[0]; in VisitFrame() 1348 return_shorty = method->GetInterfaceMethodIfProxy(pointer_size)->GetShorty(&length)[0]; in PopInstrumentationStackFrame()
|
D | reference_table_test.cc | 70 constructor->Invoke(self, args, sizeof(uint32_t), &result, constructor->GetShorty()); in CreateWeakReference()
|
D | art_method.cc | 328 CHECK_STREQ(GetInterfaceMethodIfProxy(kRuntimePointerSize)->GetShorty(), shorty); in Invoke()
|
D | stack.cc | 702 const char* shorty = method->GetShorty(&shorty_len); in GetNumberOfReferenceArgsWithoutReceiver()
|
/art/compiler/jni/quick/mips64/ |
D | calling_convention_mips64.cc | 85 return ReturnRegisterForShorty(GetShorty()); in ReturnRegister() 89 return ReturnRegisterForShorty(GetShorty()); in ReturnRegister()
|
/art/compiler/jni/quick/x86/ |
D | calling_convention_x86.cc | 83 return ReturnRegisterForShorty(GetShorty(), false); in ReturnRegister() 87 return ReturnRegisterForShorty(GetShorty(), true); in ReturnRegister()
|
/art/compiler/jni/quick/x86_64/ |
D | calling_convention_x86_64.cc | 106 return ReturnRegisterForShorty(GetShorty(), false); in ReturnRegister() 110 return ReturnRegisterForShorty(GetShorty(), true); in ReturnRegister()
|
/art/compiler/jni/quick/mips/ |
D | calling_convention_mips.cc | 100 return ReturnRegisterForShorty(GetShorty()); in ReturnRegister() 104 return ReturnRegisterForShorty(GetShorty()); in ReturnRegister()
|
/art/compiler/jni/quick/arm64/ |
D | calling_convention_arm64.cc | 157 return ReturnRegisterForShorty(GetShorty()); in ReturnRegister() 161 return ReturnRegisterForShorty(GetShorty()); in ReturnRegister()
|
/art/compiler/jni/quick/arm/ |
D | calling_convention_arm.cc | 130 switch (GetShorty()[0]) { in ReturnRegister() 145 switch (GetShorty()[0]) { in ReturnRegister()
|
/art/compiler/optimizing/ |
D | builder.cc | 58 return_type_(DataType::FromShorty(dex_compilation_unit_->GetShorty()[0])) {} in HGraphBuilder()
|
/art/compiler/jni/quick/ |
D | calling_convention.h | 192 const char* GetShorty() const { in GetShorty() function
|
/art/runtime/entrypoints/quick/ |
D | quick_jni_entrypoints.cc | 211 char return_shorty_char = called->GetShorty()[0]; in GenericJniMethodEnd()
|
D | quick_trampoline_entrypoints.cc | 790 const char* shorty = non_proxy_method->GetShorty(&shorty_len); in artQuickToInterpreterBridge() 940 const char* shorty = non_proxy_method->GetShorty(&shorty_len); in artQuickProxyInvokeHandler() 1018 const char* shorty = non_proxy_method->GetShorty(&shorty_len); in artQuickGetProxyReferenceArgumentAt() 1062 const char* shorty = non_proxy_method->GetShorty(&shorty_len); in GetProxyReferenceArguments() 1128 method->GetInterfaceMethodIfProxy(kRuntimePointerSize)->GetShorty(&shorty_len); in artInstrumentationMethodEntryFromCode() 2364 const char* shorty = called->GetShorty(&shorty_len); in artQuickGenericJniTrampoline() 2768 const char* shorty = caller_method->GetDexFile()->GetShorty(proto_idx); in artInvokePolymorphic()
|
/art/libdexfile/dex/ |
D | dex_instruction.cc | 481 os << ", " << file->PrettyMethod(method_idx) << ", " << file->GetShorty(proto_idx) in DumpString() 496 << "}, " << file->PrettyMethod(method_idx) << ", " << file->GetShorty(proto_idx) in DumpString()
|
D | dex_file-inl.h | 130 inline const char* DexFile::GetShorty(uint32_t proto_idx) const { in GetShorty() function
|
/art/runtime/interpreter/ |
D | interpreter.cc | 404 num_regs = num_ins = ArtMethod::NumArgRegisters(method->GetShorty()); in EnterInterpreterFromInvoke() 424 const char* shorty = method->GetShorty(&shorty_len); in EnterInterpreterFromInvoke()
|
D | interpreter_common.cc | 565 result, method->GetInterfaceMethodIfProxy(kRuntimePointerSize)->GetShorty()); in ArtInterpreterToCompiledCodeBridge() 1305 const char* shorty = method->GetShorty(&shorty_len); in DoCallCommon()
|
/art/runtime/jit/ |
D | jit.cc | 474 const char* shorty = method->GetShorty(); in MaybeDoOnStackReplacement()
|
D | jit_code_cache.cc | 62 : shorty_(method->GetShorty()), in REQUIRES_SHARED() 90 const char* shorty = method->GetShorty(); in UpdateShorty()
|