Searched refs:x86 (Results 1 - 25 of 27) sorted by relevance

12

/art/runtime/arch/
H A Dcontext.cc24 #include "x86/context_x86.h"
35 return new x86::X86Context();
/art/runtime/arch/x86/
H A Dregisters_x86.cc22 namespace x86 { namespace in namespace:art
36 } // namespace x86
H A Dregisters_x86.h27 namespace x86 { namespace in namespace:art
44 } // namespace x86
H A Dcontext_x86.h25 namespace x86 { namespace in namespace:art
66 } // namespace x86
H A Dcontext_x86.cc24 namespace x86 { namespace in namespace:art
96 } // namespace x86
/art/runtime/
H A Ddisassembler.cc34 return new x86::DisassemblerX86();
H A Ddisassembler_x86.h23 namespace x86 { namespace in namespace:art
35 } // namespace x86
H A DAndroid.mk141 arch/x86/registers_x86.cc \
190 ifeq ($(TARGET_ARCH),x86)
192 arch/x86/context_x86.cc \
193 arch/x86/entrypoints_init_x86.cc \
194 arch/x86/jni_entrypoints_x86.S \
195 arch/x86/portable_entrypoints_x86.S \
196 arch/x86/quick_entrypoints_x86.S \
197 arch/x86/thread_x86.cc
198 else # TARGET_ARCH != x86
210 endif # TARGET_ARCH != x86
[all...]
H A Druntime.cc33 #include "arch/x86/registers_x86.h"
1237 uint32_t ref_spills = (1 << art::x86::EBP) | (1 << art::x86::ESI) | (1 << art::x86::EDI);
1238 uint32_t arg_spills = (1 << art::x86::ECX) | (1 << art::x86::EDX) | (1 << art::x86::EBX);
1240 (1 << art::x86::kNumberOfCpuRegisters); // fake return address callee save
H A Ddisassembler_x86.cc26 namespace x86 { namespace in namespace:art
467 case 0x80: case 0x81: case 0x82: case 0x83: case 0x84: case 0x85: case 0x86: case 0x87:
749 } // namespace x86
/art/compiler/utils/
H A Dmanaged_register.h28 namespace x86 { namespace in namespace:art
46 x86::X86ManagedRegister AsX86() const;
H A Dassembler.cc24 #include "x86/assembler_x86.h"
112 return new x86::X86Assembler();
H A Dassembler.h26 #include "x86/constants_x86.h"
44 namespace x86 { namespace in namespace:art
94 friend class x86::X86Assembler;
/art/compiler/
H A DAndroid.mk45 dex/quick/x86/assemble_x86.cc \
46 dex/quick/x86/call_x86.cc \
47 dex/quick/x86/fp_x86.cc \
48 dex/quick/x86/int_x86.cc \
49 dex/quick/x86/target_x86.cc \
50 dex/quick/x86/utility_x86.cc \
65 jni/quick/x86/calling_convention_x86.cc \
85 utils/x86/assembler_x86.cc \
86 utils/x86/managed_register_x86.cc \
/art/compiler/utils/x86/
H A Dmanaged_register_x86.h24 namespace x86 { namespace in namespace:art
27 // The registers in kReservedCpuRegistersArray in x86.cc are not used in pairs.
28 // The table kRegisterPairs in x86.cc must be kept in sync with this enum.
208 } // namespace x86
210 inline x86::X86ManagedRegister ManagedRegister::AsX86() const {
211 x86::X86ManagedRegister reg(id_);
H A Dconstants_x86.h22 #include "arch/x86/registers_x86.h"
28 namespace x86 { namespace in namespace:art
123 } // namespace x86
H A Dmanaged_register_x86.cc22 namespace x86 { namespace in namespace:art
127 } // namespace x86
H A Dassembler_x86.h30 namespace x86 { namespace in namespace:art
643 } // namespace x86
H A Dmanaged_register_x86_test.cc22 namespace x86 { namespace in namespace:art
358 } // namespace x86
/art/compiler/jni/quick/
H A Dcalling_convention.cc22 #include "jni/quick/x86/calling_convention_x86.h"
43 return new x86::X86ManagedRuntimeCallingConvention(is_static, is_synchronized, shorty);
97 return new x86::X86JniCallingConvention(is_static, is_synchronized, shorty);
/art/compiler/jni/quick/x86/
H A Dcalling_convention_x86.h23 namespace x86 { namespace in namespace:art
80 } // namespace x86
H A Dcalling_convention_x86.cc20 #include "utils/x86/managed_register_x86.h"
24 namespace x86 { namespace in namespace:art
164 } // namespace x86
/art/compiler/trampolines/
H A Dtrampoline_compiler.cc22 #include "utils/x86/assembler_x86.h"
86 namespace x86 { namespace in namespace:art
90 // All x86 trampolines call via the Thread* held in fs.
101 } // namespace x86
112 return x86::CreateTrampoline(offset);
/art/build/
H A DAndroid.gtest.mk28 compiler/utils/x86/managed_register_x86_test.cc \
76 compiler/utils/x86/assembler_x86_test.cc
H A DAndroid.common.mk152 ifeq ($(TARGET_ARCH),x86)

Completed in 1019 milliseconds

12