Home
last modified time | relevance | path

Searched refs:call (Results 101 – 125 of 130) sorted by relevance

123456

/art/tools/bisection_search/
Dbisection_search.py32 from subprocess import call
238 ret_code = call(
/art/libnativeloader/
DREADME.md12 When the method is called, the ART runtime delegates the call to this library
13 along with the reference to the classloader where the call was made. Then this
/art/test/1981-structural-redef-private-method-handles/
Dexpected_no_mh.txt15 Using mh to call new private method.
Dexpected.txt26 Using mh to call new private method.
/art/compiler/utils/x86/
Djni_macro_assembler_x86.cc533 __ call(Address(base.AsCpuRegister(), offset.Int32Value())); in Call() local
540 __ call(Address(scratch, offset)); in Call() local
544 __ fs()->call(Address::Absolute(offset)); in CallFromThread()
614 __ fs()->call(Address::Absolute(QUICK_ENTRYPOINT_OFFSET(kX86PointerSize, pDeliverException))); in Emit()
Dassembler_x86.h323 void call(Register reg);
324 void call(const Address& address);
325 void call(Label* label);
326 void call(const ExternalLabel& label);
Dassembler_x86.cc69 void X86Assembler::call(Register reg) { in call() function in art::x86::X86Assembler
76 void X86Assembler::call(const Address& address) { in call() function in art::x86::X86Assembler
83 void X86Assembler::call(Label* label) { in call() function in art::x86::X86Assembler
92 void X86Assembler::call(const ExternalLabel& label) { in call() function in art::x86::X86Assembler
/art/compiler/utils/x86_64/
Djni_macro_assembler_x86_64.cc624 __ call(Address(base.AsCpuRegister(), offset.Int32Value())); in Call() local
631 __ call(Address(scratch, offset)); in Call() local
635 __ gs()->call(Address::Absolute(offset, true)); in CallFromThread()
717 __ gs()->call( in Emit()
Dassembler_x86_64.h368 void call(CpuRegister reg);
369 void call(const Address& address);
370 void call(Label* label);
/art/test/708-jit-cache-churn/src/
DJitCacheChurnTest.java95 public Integer call() throws Exception { in call() method in JitCacheChurnTest.BaseTask
/art/compiler/optimizing/
Dinliner.cc171 HInvoke* call = instruction->AsInvoke(); in Run() local
173 if (call != nullptr && call->GetIntrinsic() == Intrinsics::kNone) { in Run()
177 call->GetDexMethodIndex(), /* with_signature= */ false); in Run()
180 if (TryInline(call)) { in Run()
190 if (TryInline(call)) { in Run()
Dcode_generator.cc506 HInvokeStaticOrDirect* call = invoke->AsInvokeStaticOrDirect(); in CreateCommonInvokeLocationSummary() local
507 HInvokeStaticOrDirect::MethodLoadKind method_load_kind = call->GetMethodLoadKind(); in CreateCommonInvokeLocationSummary()
508 HInvokeStaticOrDirect::CodePtrLocation code_ptr_location = call->GetCodePtrLocation(); in CreateCommonInvokeLocationSummary()
516 locations->SetInAt(call->GetCurrentMethodIndex(), visitor->GetMethodLocation()); in CreateCommonInvokeLocationSummary()
520 locations->SetInAt(call->GetCurrentMethodIndex(), Location::RequiresRegister()); in CreateCommonInvokeLocationSummary()
Dcode_generator_x86.cc1024 __ fs()->call(Address::Absolute(entry_point_offset)); in GenerateInvokeRuntime()
2478 __ call(Address(temp, in VisitInvokeInterface() local
5062 __ call(GetFrameEntryLabel()); in GenerateStaticOrDirectCall() local
5071 __ call(Address(callee_method.AsRegister<Register>(), in GenerateStaticOrDirectCall() local
5116 __ call(Address(callee_method.AsRegister<Register>(), in GenerateStaticOrDirectCall() local
5156 __ call(Address( in GenerateVirtualCall() local
8347 __ call(&next_instruction); in VisitX86ComputeBaseMethodAddress() local
Dcode_generator_x86_64.cc1045 __ call(&frame_entry_label_); in GenerateStaticOrDirectCall() local
1054 __ call(Address(callee_method.AsRegister<CpuRegister>(), in GenerateStaticOrDirectCall() local
1088 __ call(Address(callee_method.AsRegister<CpuRegister>(), in GenerateStaticOrDirectCall() local
1129 __ call(Address(temp, ArtMethod::EntryPointFromQuickCompiledCodeOffset( in GenerateVirtualCall() local
1340 __ gs()->call(Address::Absolute(entry_point_offset, /* no_rip= */ true)); in GenerateInvokeRuntime()
2752 __ call(Address( in VisitInvokeInterface() local
/art/cmdline/
DREADME.md93 Everything that follows a `WithType<T>()` call is thus type checked to only take `T` values.
95 If this call is omitted, the parser generator assumes you are building a `Unit` type (i.e. an
/art/runtime/arch/x86_64/
Dasm_support_x86_64.S470 call SYMBOL(artDeliverPendingExceptionFromCode) // artDeliverPendingExceptionFromCode(Thread*)
/art/runtime/
Druntime_options.def157 … // We don't call abort(3) by default; see
/art/runtime/interpreter/mterp/arm/
Dmain.S438 b MterpCheckBefore @ (self, shadow_frame, dex_pc_ptr) @ Tail call.
/art/runtime/interpreter/mterp/x86/
Darithmetic.S451 call SYMBOL($routine)
477 call SYMBOL($routine)
/art/test/utils/
Dregen-test-files37 art-run-test-034-call-null
/art/tools/checker/
DREADME98 architecture features enabled at compile time. For that purpose, you can call the custom made
/art/test/testrunner/
Dtestrunner.py1160 if subprocess.call(build_command.split()):
/art/dex2oat/
Ddex2oat.cc567 #define CHECK_WATCH_DOG_PTHREAD_CALL(call, args, what) \ argument
569 int rc = call args; \
572 std::string message(# call); \
/art/test/563-checker-fakestring/smali/
DTestCase.smali19 # StringFactory call.
/art/test/955-methodhandles-smali/smali/
DMain.smali217 # At this point, v0 is our MethodHandle and v1 is the instance we're going to call compareTo on.

123456