Searched defs:call (Results 1 - 3 of 3) sorted by path

/art/compiler/dex/quick/x86/
H A Dtarget_x86.cc87 // bulk copy in preparation to call.
461 /* Clobber all regs that might be used by an external C call */
997 * For x86, just generate a 32 bit call relative instruction, that will be filled
1006 // Generate the call instruction with the unique pointer and save index, dex_file, and type.
1007 LIR *call = RawLIR(current_dalvik_offset_, kX86CallI, static_cast<int>(target_method_id_ptr), local
1009 AppendLIR(call);
1010 call_method_insns_.Insert(call);
1011 return call;
1614 // Now update the offset to the call frame: DW_CFA_def_cfa_offset frame_size.
/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
57 void X86Assembler::call(const ExternalLabel& label) { function in class:art::x86::X86Assembler
1809 call(Address(base.AsCpuRegister(), offset.Int32Value()));
1810 // TODO: place reference map on call
1816 call(Address(scratch, offset));
1820 fs()->call(Address::Absolute(offset));
1852 __ fs()->call(Address::Absolute(QUICK_ENTRYPOINT_OFFSET(4, pDeliverException)));
1853 // this call shoul
[all...]
/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
2174 call(Address(base.AsCpuRegister(), offset.Int32Value()));
2175 // TODO: place reference map on call
2181 call(Address(scratch, offset));
2185 gs()->call(Address::Absolute(offset, true));
2224 __ gs()->call(Address::Absolute(QUICK_ENTRYPOINT_OFFSET(8, pDeliverException), true));
2225 // this call should never return

Completed in 60 milliseconds