Searched refs:x86 (Results 1 – 25 of 79) sorted by relevance
1234
/art/compiler/utils/x86/ |
D | assembler_x86_test.cc | 40 class AssemblerX86Test : public AssemblerTest<x86::X86Assembler, 41 x86::Address, 42 x86::Register, 43 x86::XmmRegister, 44 x86::Immediate> { 46 typedef AssemblerTest<x86::X86Assembler, 47 x86::Address, 48 x86::Register, 49 x86::XmmRegister, 50 x86::Immediate> Base; [all …]
|
D | managed_register_x86.h | 25 namespace x86 { 218 constexpr inline x86::X86ManagedRegister ManagedRegister::AsX86() const { in AsX86() 219 x86::X86ManagedRegister reg(id_); in AsX86()
|
/art/runtime/arch/x86/ |
D | quick_method_frame_info_x86.h | 28 namespace x86 { 42 (1 << art::x86::kNumberOfCpuRegisters); // Fake return address callee save. 44 (1 << art::x86::EBP) | (1 << art::x86::ESI) | (1 << art::x86::EDI); 46 (1 << art::x86::ECX) | (1 << art::x86::EDX) | (1 << art::x86::EBX); 48 (1 << art::x86::EAX) | (1 << art::x86::ECX) | (1 << art::x86::EDX) | (1 << art::x86::EBX); 51 (1 << art::x86::XMM0) | (1 << art::x86::XMM1) | 52 (1 << art::x86::XMM2) | (1 << art::x86::XMM3); 54 (1 << art::x86::XMM0) | (1 << art::x86::XMM1) | 55 (1 << art::x86::XMM2) | (1 << art::x86::XMM3) | 56 (1 << art::x86::XMM4) | (1 << art::x86::XMM5) | [all …]
|
D | registers_x86.cc | 22 namespace x86 { namespace
|
D | registers_x86.h | 28 namespace x86 {
|
/art/build/ |
D | Android.common.mk | 20 ART_TARGET_SUPPORTED_ARCH := arm arm64 mips mips64 x86 x86_64 21 ART_HOST_SUPPORTED_ARCH := x86 x86_64 24 ART_HOST_SUPPORTED_ARCH := x86 x86_64 28 ART_HOST_SUPPORTED_ARCH := x86 82 ART_HOST_ARCH := x86 91 2ND_ART_HOST_ARCH := x86 92 2ND_HOST_ARCH := x86
|
/art/compiler/utils/ |
D | label.h | 40 namespace x86 { 122 friend class x86::X86Assembler; 123 friend class x86::NearLabel;
|
/art/compiler/ |
D | Android.bp | 157 x86: { 159 "jni/quick/x86/calling_convention_x86.cc", 160 "linker/x86/relative_patcher_x86.cc", 161 "linker/x86/relative_patcher_x86_base.cc", 167 "utils/x86/assembler_x86.cc", 168 "utils/x86/jni_macro_assembler_x86.cc", 169 "utils/x86/managed_register_x86.cc", 395 x86: { 397 "linker/x86/relative_patcher_x86_test.cc", 398 "utils/x86/managed_register_x86_test.cc", [all …]
|
/art/disassembler/ |
D | disassembler.cc | 48 return new x86::DisassemblerX86(options, false); in Create() 50 return new x86::DisassemblerX86(options, true); in Create()
|
/art/test/609-checker-x86-bounds-check/ |
D | info.txt | 1 Checker test that we combine ArrayLength and BoundsCheck on x86/x86_64.
|
/art/runtime/interpreter/mterp/ |
D | rebuild.sh | 23 for arch in arm x86 mips arm64 x86_64 mips64; do TARGET_ARCH_EXT=$arch make -f Makefile_mterp; done
|
/art/test/413-regalloc-regression/ |
D | info.txt | 2 fail compiling removeElementAt in x86.
|
/art/test/528-long-hint/ |
D | info.txt | 1 Regression test for optimizing that used to crash on x86 when
|
/art/test/467-regalloc-pair/ |
D | info.txt | 2 that used to trip when compiling TestCase.testCase on x86.
|
/art/test/456-baseline-array-set/ |
D | info.txt | 1 Test for optimizing on x86, where we could run out
|
/art/test/458-long-to-fpu/ |
D | info.txt | 1 Regression test for x86's code generator, which had a bug in
|
/art/test/574-irreducible-and-constant-area/ |
D | info.txt | 1 Regression test for intrinsics on x86, which used to wrongly assume
|
/art/test/660-store-8-16/ |
D | info.txt | 1 Regression test for the compiler whose x86 and x64 backends
|
/art/compiler/optimizing/ |
D | x86_memory_gen.h | 26 namespace x86 {
|
D | codegen_test_utils.h | 166 class TestCodeGeneratorX86 : public x86::CodeGeneratorX86 { 171 : x86::CodeGeneratorX86(graph, isa_features, compiler_options) { in TestCodeGeneratorX86() 173 AddAllocatedRegister(Location::RegisterLocation(x86::EDI)); in TestCodeGeneratorX86() 177 x86::CodeGeneratorX86::SetupBlockedRegisters(); in SetupBlockedRegisters() 179 blocked_core_registers_[x86::EBX] = true; in SetupBlockedRegisters() 182 blocked_core_registers_[x86::EDI] = false; in SetupBlockedRegisters()
|
D | pc_relative_fixups_x86.h | 27 namespace x86 {
|
D | live_ranges_test.cc | 68 x86::CodeGeneratorX86 codegen(graph, *features_x86.get(), CompilerOptions()); in TEST_F() 114 x86::CodeGeneratorX86 codegen(graph, *features_x86.get(), CompilerOptions()); in TEST_F() 163 x86::CodeGeneratorX86 codegen(graph, *features_x86.get(), CompilerOptions()); in TEST_F() 240 x86::CodeGeneratorX86 codegen(graph, *features_x86.get(), CompilerOptions()); in TEST_F() 317 x86::CodeGeneratorX86 codegen(graph, *features_x86.get(), CompilerOptions()); in TEST_F() 393 x86::CodeGeneratorX86 codegen(graph, *features_x86.get(), CompilerOptions()); in TEST_F()
|
/art/test/667-out-of-bounds/ |
D | info.txt | 1 Regression test for the x86/x64 backends which under certain
|
/art/test/521-regression-integer-field-set/ |
D | info.txt | 1 Regression test for Optimizing's x86-64 code generator, where moving a
|
/art/test/573-checker-checkcast-regression/ |
D | info.txt | 1 Regression test for the x86-64 Baker's read barrier fast path compiler
|
1234