Home
last modified time | relevance | path

Searched refs:entrypoint (Results 1 – 24 of 24) sorted by relevance

/art/runtime/entrypoints/quick/
Dquick_entrypoints_enum.h53 template <QuickEntrypointEnum entrypoint, typename... Types>
64 bool EntrypointCanTriggerGC(QuickEntrypointEnum entrypoint);
Dquick_entrypoints_enum.cc75 bool EntrypointCanTriggerGC(QuickEntrypointEnum entrypoint) { in EntrypointCanTriggerGC() argument
76 switch (entrypoint) { in EntrypointCanTriggerGC()
/art/test/605-new-string-from-bytes/
Dinfo.txt1 Regression test for the newStringFromBytes entrypoint,
/art/test/427-bounds/
Dinfo.txt2 index and/or length to the pThrowArrayBounds entrypoint.
/art/test/694-clinit-jit/
Dinfo.txt2 update the entrypoint of a method of class still being
/art/compiler/optimizing/
Dcode_generator.cc585 QuickEntrypointEnum entrypoint = kQuickInvokeStaticTrampolineWithAccessCheck; in GenerateInvokeStaticOrDirectRuntimeCall() local
588 entrypoint = kQuickInvokeStaticTrampolineWithAccessCheck; in GenerateInvokeStaticOrDirectRuntimeCall()
591 entrypoint = kQuickInvokeDirectTrampolineWithAccessCheck; in GenerateInvokeStaticOrDirectRuntimeCall()
594 entrypoint = kQuickInvokeSuperTrampolineWithAccessCheck; in GenerateInvokeStaticOrDirectRuntimeCall()
604 InvokeRuntime(entrypoint, invoke, invoke->GetDexPc(), slow_path); in GenerateInvokeStaticOrDirectRuntimeCall()
611 QuickEntrypointEnum entrypoint = kQuickInvokeStaticTrampolineWithAccessCheck; in GenerateInvokeUnresolvedRuntimeCall() local
614 entrypoint = kQuickInvokeStaticTrampolineWithAccessCheck; in GenerateInvokeUnresolvedRuntimeCall()
617 entrypoint = kQuickInvokeDirectTrampolineWithAccessCheck; in GenerateInvokeUnresolvedRuntimeCall()
620 entrypoint = kQuickInvokeVirtualTrampolineWithAccessCheck; in GenerateInvokeUnresolvedRuntimeCall()
623 entrypoint = kQuickInvokeSuperTrampolineWithAccessCheck; in GenerateInvokeUnresolvedRuntimeCall()
[all …]
Dcode_generator.h498 void ValidateInvokeRuntime(QuickEntrypointEnum entrypoint,
647 virtual void InvokeRuntime(QuickEntrypointEnum entrypoint,
Dcode_generator_arm64.cc228 QuickEntrypointEnum entrypoint = instruction_->AsBoundsCheck()->IsStringCharAt() in EmitNativeCode() local
231 arm64_codegen->InvokeRuntime(entrypoint, instruction_, instruction_->GetDexPc(), this); in EmitNativeCode()
1805 void CodeGeneratorARM64::InvokeRuntime(QuickEntrypointEnum entrypoint, in InvokeRuntime() argument
1809 ValidateInvokeRuntime(entrypoint, instruction, slow_path); in InvokeRuntime()
1811 ThreadOffset64 entrypoint_offset = GetThreadOffset<kArm64PointerSize>(entrypoint); in InvokeRuntime()
1820 if (EntrypointRequiresStackMap(entrypoint)) { in InvokeRuntime()
1827 if (EntrypointRequiresStackMap(entrypoint)) { in InvokeRuntime()
5670 QuickEntrypointEnum entrypoint = CodeGenerator::GetArrayAllocationEntrypoint(instruction); in VisitNewArray() local
5671 codegen_->InvokeRuntime(entrypoint, instruction, instruction->GetDexPc()); in VisitNewArray()
5925 QuickEntrypointEnum entrypoint = in VisitRem() local
[all …]
Dcode_generator_x86_64.h349 void InvokeRuntime(QuickEntrypointEnum entrypoint,
Dcode_generator_x86.h375 void InvokeRuntime(QuickEntrypointEnum entrypoint,
Dinstruction_builder.cc1258 QuickEntrypointEnum entrypoint = kQuickAllocObjectInitialized; in BuildNewInstance() local
1264 entrypoint = kQuickAllocObjectWithChecks; in BuildNewInstance()
1268 entrypoint = kQuickAllocStringObject; in BuildNewInstance()
1280 entrypoint); in BuildNewInstance()
Dcode_generator_arm_vixl.cc495 QuickEntrypointEnum entrypoint = instruction_->AsBoundsCheck()->IsStringCharAt() in EmitNativeCode() local
498 arm_codegen->InvokeRuntime(entrypoint, instruction_, instruction_->GetDexPc(), this); in EmitNativeCode()
2587 void CodeGeneratorARMVIXL::InvokeRuntime(QuickEntrypointEnum entrypoint, in InvokeRuntime() argument
2591 ValidateInvokeRuntime(entrypoint, instruction, slow_path); in InvokeRuntime()
2593 ThreadOffset32 entrypoint_offset = GetThreadOffset<kArmPointerSize>(entrypoint); in InvokeRuntime()
2605 if (EntrypointRequiresStackMap(entrypoint)) { in InvokeRuntime()
2614 if (EntrypointRequiresStackMap(entrypoint)) { in InvokeRuntime()
5447 QuickEntrypointEnum entrypoint = CodeGenerator::GetArrayAllocationEntrypoint(instruction); in VisitNewArray() local
5448 codegen_->InvokeRuntime(entrypoint, instruction, instruction->GetDexPc()); in VisitNewArray()
9931 vixl32::Register entrypoint = mr; in LoadReadBarrierMarkIntrospectionEntrypoint() local
[all …]
Dcode_generator_arm_vixl.h528 void InvokeRuntime(QuickEntrypointEnum entrypoint,
Dcode_generator_x86_64.cc236 QuickEntrypointEnum entrypoint = instruction_->AsBoundsCheck()->IsStringCharAt() in EmitNativeCode() local
239 x86_64_codegen->InvokeRuntime(entrypoint, instruction_, instruction_->GetDexPc(), this); in EmitNativeCode()
1388 void CodeGeneratorX86_64::InvokeRuntime(QuickEntrypointEnum entrypoint, in InvokeRuntime() argument
1392 ValidateInvokeRuntime(entrypoint, instruction, slow_path); in InvokeRuntime()
1393 GenerateInvokeRuntime(GetThreadOffset<kX86_64PointerSize>(entrypoint).Int32Value()); in InvokeRuntime()
1394 if (EntrypointRequiresStackMap(entrypoint)) { in InvokeRuntime()
4724 QuickEntrypointEnum entrypoint = CodeGenerator::GetArrayAllocationEntrypoint(instruction); in VisitNewArray() local
4725 codegen_->InvokeRuntime(entrypoint, instruction, instruction->GetDexPc()); in VisitNewArray()
Dcode_generator_arm64.h685 void InvokeRuntime(QuickEntrypointEnum entrypoint,
Dcode_generator_x86.cc187 QuickEntrypointEnum entrypoint = instruction_->AsBoundsCheck()->IsStringCharAt() in EmitNativeCode() local
190 x86_codegen->InvokeRuntime(entrypoint, instruction_, instruction_->GetDexPc(), this); in EmitNativeCode()
1022 void CodeGeneratorX86::InvokeRuntime(QuickEntrypointEnum entrypoint, in InvokeRuntime() argument
1026 ValidateInvokeRuntime(entrypoint, instruction, slow_path); in InvokeRuntime()
1027 GenerateInvokeRuntime(GetThreadOffset<kX86PointerSize>(entrypoint).Int32Value()); in InvokeRuntime()
1028 if (EntrypointRequiresStackMap(entrypoint)) { in InvokeRuntime()
4911 QuickEntrypointEnum entrypoint = CodeGenerator::GetArrayAllocationEntrypoint(instruction); in VisitNewArray() local
4912 codegen_->InvokeRuntime(entrypoint, instruction, instruction->GetDexPc()); in VisitNewArray()
Dnodes.h4475 QuickEntrypointEnum entrypoint)
4482 entrypoint_(entrypoint) {
4520 void SetEntrypoint(QuickEntrypointEnum entrypoint) {
4521 entrypoint_ = entrypoint;
/art/runtime/arch/arm64/
Dquick_entrypoints_arm64.S1169 .macro ONE_ARG_DOWNCALL name, entrypoint, return
1170 .extern \entrypoint
1174 bl \entrypoint // (uint32_t type_idx, Method* method, Thread*)
1182 .macro TWO_ARG_DOWNCALL name, entrypoint, return
1183 .extern \entrypoint
1187 bl \entrypoint // (uint32_t type_idx, Method* method, Thread*)
1195 .macro THREE_ARG_DOWNCALL name, entrypoint, return
1196 .extern \entrypoint
1200 bl \entrypoint
1208 .macro FOUR_ARG_DOWNCALL name, entrypoint, return
[all …]
/art/runtime/arch/arm/
Dquick_entrypoints_arm.S775 .macro ONE_ARG_DOWNCALL name, entrypoint, return
776 .extern \entrypoint
780 bl \entrypoint @ (uint32_t type_idx, Method* method, Thread*)
788 .macro TWO_ARG_DOWNCALL name, entrypoint, return
789 .extern \entrypoint
793 bl \entrypoint @ (uint32_t type_idx, Method* method, Thread*)
801 .macro THREE_ARG_DOWNCALL name, entrypoint, return
802 .extern \entrypoint
807 bl \entrypoint
815 .macro FOUR_ARG_DOWNCALL name, entrypoint, return
[all …]
/art/test/ti-agent/
Dredefinition_helper.cc121 decltype(jvmti->functions->RedefineClasses) entrypoint = nullptr; in CallRedefineEntrypoint() local
123 entrypoint = jvmti->functions->RedefineClasses; in CallRedefineEntrypoint()
125 entrypoint = GetExtensionFunction<decltype(entrypoint)>( in CallRedefineEntrypoint()
128 if (entrypoint == nullptr) { in CallRedefineEntrypoint()
132 return entrypoint(jvmti, num_defs, defs); in CallRedefineEntrypoint()
/art/runtime/
Dart_method.h573 void SetEntryPointFromJni(const void* entrypoint) in SetEntryPointFromJni() argument
578 SetEntryPointFromJniPtrSize(entrypoint, kRuntimePointerSize); in SetEntryPointFromJni()
581 ALWAYS_INLINE void SetEntryPointFromJniPtrSize(const void* entrypoint, PointerSize pointer_size) in SetEntryPointFromJniPtrSize() argument
583 SetDataPtrSize(entrypoint, pointer_size); in SetEntryPointFromJniPtrSize()
Dclass_linker.cc1264 const void* entrypoint = in InitFromBootImage() local
1266 if (entrypoint == data.quick_resolution_trampoline || in InitFromBootImage()
1267 entrypoint == data.quick_imt_conflict_trampoline || in InitFromBootImage()
1268 entrypoint == data.quick_generic_jni_trampoline || in InitFromBootImage()
1269 entrypoint == data.quick_to_interpreter_bridge_trampoline) { in InitFromBootImage()
/art/runtime/jit/
Djit_code_cache.cc124 void UpdateEntryPoints(const void* entrypoint) REQUIRES_SHARED(Locks::mutator_lock_) { in UpdateEntryPoints() argument
126 DCHECK(entrypoint == OatQuickMethodHeader::FromCodePointer(GetCode())->GetEntryPoint()); in UpdateEntryPoints()
154 instrum->UpdateNativeMethodsCodeToJitCode(m, entrypoint); in UpdateEntryPoints()
1638 const void* entrypoint = method_header->GetEntryPoint(); in NotifyCompilationOf() local
1644 data->UpdateEntryPoints(entrypoint); in NotifyCompilationOf()
/art/runtime/arch/
Dstub_test.cc405 static uintptr_t GetEntrypoint(Thread* self, QuickEntrypointEnum entrypoint) { in GetEntrypoint() argument
407 offset = GetThreadOffset<kRuntimePointerSize>(entrypoint).Int32Value(); in GetEntrypoint()