Searched defs:call (Results 1 - 6 of 6) sorted by relevance
/art/test/522-checker-regression-monitor-exit/src/ |
H A D | Main.java | 39 public Integer call() { method in class:Main.HashCodeQuery
|
/art/test/535-deopt-and-inlining/src/ |
H A D | Main.java | 41 if (call == 100) { 42 call = 0; 45 call++; 54 static int call = 0; field in class:Main
|
/art/compiler/optimizing/ |
H A D | code_generator.cc | 237 // Note that we need correct mapping for the native PC of the call instruction, 238 // so the runtime's stackmap is not sufficient since it is at PC after the call. 313 HInvokeStaticOrDirect* call = invoke->AsInvokeStaticOrDirect(); local 314 switch (call->GetMethodLoadKind()) { 316 locations->SetInAt(call->GetSpecialInputIndex(), visitor->GetMethodLocation()); 320 locations->SetInAt(call->GetSpecialInputIndex(), Location::RequiresRegister()); 384 // register(s) are already blocked due the call and they may overlap with 539 // A static method call that has been fully intrinsified, and cannot call on the slow 704 // may call th [all...] |
H A D | inliner.cc | 84 HInvoke* call = instruction->AsInvoke(); local 85 // As long as the call is not intrinsified, it is worth trying to inline. 86 if (call != nullptr && call->GetIntrinsic() == Intrinsics::kNone) { 89 if (!TryInline(call)) { 92 PrettyMethod(call->GetDexMethodIndex(), *outer_compilation_unit_.GetDexFile()); 99 PrettyMethod(call->GetDexMethodIndex(), *outer_compilation_unit_.GetDexFile()); 117 * the actual runtime target of an interface or virtual call. 145 // The method that we're trying to call is not in the receiver's class or super classes. 228 // we should not call JitCodeCach [all...] |
/art/compiler/utils/x86/ |
H A D | assembler_x86.cc | 35 void X86Assembler::call(Register reg) { function in class:art::x86::X86Assembler 42 void X86Assembler::call(const Address& address) { function in class:art::x86::X86Assembler 49 void X86Assembler::call(Label* label) { function in class:art::x86::X86Assembler 58 void X86Assembler::call(const ExternalLabel& label) { function in class:art::x86::X86Assembler 2355 call(Address(base.AsCpuRegister(), offset.Int32Value())); 2356 // TODO: place reference map on call 2362 call(Address(scratch, offset)); 2366 fs()->call(Address::Absolute(offset)); 2398 __ fs()->call(Address::Absolute(QUICK_ENTRYPOINT_OFFSET(4, pDeliverException))); 2399 // this call shoul [all...] |
/art/compiler/utils/x86_64/ |
H A D | assembler_x86_64.cc | 39 void X86_64Assembler::call(CpuRegister reg) { function in class:art::x86_64::X86_64Assembler 47 void X86_64Assembler::call(const Address& address) { function in class:art::x86_64::X86_64Assembler 55 void X86_64Assembler::call(Label* label) { function in class:art::x86_64::X86_64Assembler 3113 call(Address(base.AsCpuRegister(), offset.Int32Value())); 3114 // TODO: place reference map on call 3120 call(Address(scratch, offset)); 3124 gs()->call(Address::Absolute(offset, true)); 3163 __ gs()->call(Address::Absolute(QUICK_ENTRYPOINT_OFFSET(8, pDeliverException), true)); 3164 // this call should never return
|
Completed in 90 milliseconds