Searched defs:call (Results 1 - 9 of 9) sorted by relevance

/art/test/522-checker-regression-monitor-exit/src/
H A DMain.java39 public Integer call() { method in class:Main.HashCodeQuery
/art/test/535-deopt-and-inlining/src/
H A DMain.java41 if (call == 100) {
42 call = 0;
45 call++;
54 static int call = 0; field in class:Main
/art/test/616-cha-proxy-method-inline/src/
H A DMain.java55 public static void call(Foo foo) { method in class:Main
65 ensureJitCompiled(Main.class, "call");
66 call(foo);
/art/tools/jfuzz/
H A Drun_dex_fuzz_test.py22 from subprocess import call namespace
138 call(cmd, env=self._dexfuzz_env)
140 call(['tail', '-n 24', 'report.log'])
/art/tools/bisection_search/
H A Dbisection_search.py32 from subprocess import call namespace
244 ret_code = call(
/art/compiler/optimizing/
H A Dcode_generator.cc260 // Note that we need correct mapping for the native PC of the call instruction,
261 // so the runtime's stackmap is not sufficient since it is at PC after the call.
335 HInvokeStaticOrDirect* call = invoke->AsInvokeStaticOrDirect(); local
336 switch (call->GetMethodLoadKind()) {
338 locations->SetInAt(call->GetSpecialInputIndex(), visitor->GetMethodLocation());
342 locations->SetInAt(call->GetSpecialInputIndex(), Location::RequiresRegister());
412 // register(s) are already blocked due the call and they may overlap with
570 // A static method call that has been fully intrinsified, and cannot call on the slow
750 // may call th
[all...]
H A Dinliner.cc61 // Limit recursive call inlining, which do not benefit from too
75 #define LOG_TRY() LOG_INTERNAL("Try inlinining call: ")
152 HInvoke* call = instruction->AsInvoke(); local
153 // As long as the call is not intrinsified, it is worth trying to inline.
154 if (call != nullptr && call->GetIntrinsic() == Intrinsics::kNone) {
158 call->GetDexMethodIndex(), /* with_signature */ false);
161 if (!TryInline(call)) {
168 TryInline(call);
183 * the actual runtime target of an interface or virtual call
[all...]
/art/compiler/utils/x86/
H A Dassembler_x86.cc35 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
/art/compiler/utils/x86_64/
H A Dassembler_x86_64.cc39 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

Completed in 662 milliseconds