Searched defs:x86_64 (Results 1 - 23 of 23) sorted by relevance

/art/runtime/arch/x86_64/
H A Dregisters_x86_64.cc22 namespace x86_64 { namespace in namespace:art
46 } // namespace x86_64
H A Dcontext_x86_64.h26 namespace x86_64 { namespace in namespace:art
94 } // namespace x86_64
H A Dquick_method_frame_info_x86_64.h26 namespace x86_64 { namespace in namespace:art
29 (1 << art::x86_64::RBX) | (1 << art::x86_64::RBP) | (1 << art::x86_64::R12) |
30 (1 << art::x86_64::R13) | (1 << art::x86_64::R14) | (1 << art::x86_64::R15);
32 (1 << art::x86_64::RSI) | (1 << art::x86_64::RDX) | (1 << art::x86_64
[all...]
H A Dcontext_x86_64.cc23 namespace x86_64 { namespace in namespace:art
128 } // namespace x86_64
H A Dregisters_x86_64.h27 namespace x86_64 { namespace in namespace:art
73 } // namespace x86_64
/art/compiler/optimizing/
H A Dintrinsics_x86_64.h28 namespace x86_64 { namespace in namespace:art
81 } // namespace x86_64
H A Dcode_generator_x86_64.h20 #include "arch/x86_64/instruction_set_features_x86_64.h"
26 #include "utils/x86_64/assembler_x86_64.h"
29 namespace x86_64 { namespace in namespace:art
34 // Some x86_64 instructions require a register to be available as temp.
578 } // namespace x86_64
H A Dintrinsics_x86_64.cc21 #include "arch/x86_64/instruction_set_features_x86_64.h"
31 #include "utils/x86_64/assembler_x86_64.h"
32 #include "utils/x86_64/constants_x86_64.h"
36 namespace x86_64 { namespace in namespace:art
2739 } // namespace x86_64
H A Dcode_generator_x86_64.cc32 #include "utils/x86_64/assembler_x86_64.h"
33 #include "utils/x86_64/managed_register_x86_64.h"
40 namespace x86_64 { namespace in namespace:art
551 // calls to art::x86_64::X86_64Assembler::shll and
552 // art::x86_64::X86_64Assembler::AddImmediate below), but it
732 // Maps FP condition to x86_64 name.
6800 } // namespace x86_64
/art/compiler/utils/x86_64/
H A Dmanaged_register_x86_64_test.cc22 namespace x86_64 { namespace in namespace:art
358 } // namespace x86_64
H A Dmanaged_register_x86_64.cc22 namespace x86_64 { namespace in namespace:art
114 } // namespace x86_64
H A Dconstants_x86_64.h22 #include "arch/x86_64/registers_x86_64.h"
28 namespace x86_64 { namespace in namespace:art
133 } // namespace x86_64
H A Dmanaged_register_x86_64.h25 namespace x86_64 { namespace in namespace:art
202 } // namespace x86_64
204 inline x86_64::X86_64ManagedRegister ManagedRegister::AsX86_64() const {
205 x86_64::X86_64ManagedRegister reg(id_);
H A Dassembler_x86_64.h33 namespace x86_64 { namespace in namespace:art
329 friend class x86_64::X86_64Assembler;
952 } // namespace x86_64
H A Dassembler_x86_64.cc25 namespace x86_64 { namespace in namespace:art
2649 x86_64::X86_64ManagedRegister spill = spill_regs.at(i).AsX86_64();
2667 x86_64::X86_64ManagedRegister spill = spill_regs.at(i).AsX86_64();
2708 x86_64::X86_64ManagedRegister spill = spill_regs.at(i).AsX86_64();
2721 x86_64::X86_64ManagedRegister spill = spill_regs.at(i).AsX86_64();
3224 } // namespace x86_64
/art/compiler/jni/quick/x86_64/
H A Dcalling_convention_x86_64.h23 namespace x86_64 { namespace in namespace:art
84 } // namespace x86_64
H A Dcalling_convention_x86_64.cc22 #include "utils/x86_64/managed_register_x86_64.h"
25 namespace x86_64 { namespace in namespace:art
213 } // namespace x86_64
/art/compiler/trampolines/
H A Dtrampoline_compiler.cc43 #include "utils/x86_64/assembler_x86_64.h"
205 namespace x86_64 { namespace in namespace:art
208 x86_64::X86_64Assembler assembler(arena);
211 __ gs()->jmp(x86_64::Address::Absolute(offset, true));
222 } // namespace x86_64
241 return x86_64::CreateTrampoline(&arena, offset);
/art/runtime/arch/
H A Darch_test.cc33 options->push_back(std::make_pair("imageinstructionset", "x86_64"));
37 // prepared, it actually will be a problem with setting the instruction set to x86_64 in
114 namespace x86_64 { namespace in namespace:art
115 #include "arch/x86_64/asm_support_x86_64.h"
160 CheckFrameSize(InstructionSet::kX86_64, Runtime::kSaveAll, x86_64::kFrameSizeSaveAllCalleeSave);
161 CheckFrameSize(InstructionSet::kX86_64, Runtime::kRefsOnly, x86_64::kFrameSizeRefsOnlyCalleeSave);
163 x86_64::kFrameSizeRefsAndArgsCalleeSave);
/art/compiler/utils/
H A Dlabel.h47 namespace x86_64 { namespace in namespace:art
128 friend class x86_64::X86_64Assembler;
129 friend class x86_64::NearLabel;
H A Dmanaged_register.h41 namespace x86_64 { namespace in namespace:art
62 x86_64::X86_64ManagedRegister AsX86_64() const;
/art/runtime/arch/x86/
H A Dinstruction_set_features_x86.cc22 #include "arch/x86_64/instruction_set_features_x86_64.h"
59 bool x86_64) {
87 if (x86_64) {
97 bool x86_64) {
106 if (x86_64) {
117 const X86InstructionSetFeatures* X86InstructionSetFeatures::FromCppDefines(bool x86_64) { argument
159 if (x86_64) {
168 const X86InstructionSetFeatures* X86InstructionSetFeatures::FromCpuInfo(bool x86_64) { argument
218 if (x86_64) {
227 const X86InstructionSetFeatures* X86InstructionSetFeatures::FromHwcap(bool x86_64) { argument
57 FromVariant( const std::string& variant, std::string* error_msg ATTRIBUTE_UNUSED, bool x86_64) argument
96 FromBitmap(uint32_t bitmap, bool x86_64) argument
232 FromAssembly(bool x86_64) argument
308 AddFeaturesFromSplitString( const bool smp, const std::vector<std::string>& features, bool x86_64, std::string* error_msg) const argument
[all...]
H A Dfault_handler_x86.cc73 // mac symbols have a prefix of _ on x86_64
95 const bool x86_64 = true; local
97 const bool x86_64 = false;
143 if (x86_64 && opcode >= 0x40 && opcode <= 0x4f) {
262 // get the method from the top of the stack. However it's in EAX(x86)/RDI(x86_64).
327 // (x86_64)

Completed in 315 milliseconds