HomeSort by relevance Sort by last modified time
    Searched defs:x86_64 (Results 1 - 25 of 29) sorted by null

1 2

  /art/runtime/arch/x86_64/
registers_x86_64.cc 22 namespace x86_64 { namespace in namespace:art
46 } // namespace x86_64
context_x86_64.h 25 namespace x86_64 { namespace in namespace:art
90 } // namespace x86_64
quick_method_frame_info_x86_64.h 25 namespace x86_64 { namespace in namespace:art
28 (1 << art::x86_64::RBX) | (1 << art::x86_64::RBP) | (1 << art::x86_64::R12) |
29 (1 << art::x86_64::R13) | (1 << art::x86_64::R14) | (1 << art::x86_64::R15);
31 (1 << art::x86_64::RSI) | (1 << art::x86_64::RDX) | (1 << art::x86_64::RCX)
    [all...]
context_x86_64.cc 25 namespace x86_64 { namespace in namespace:art
142 } // namespace x86_64
registers_x86_64.h 27 namespace x86_64 { namespace in namespace:art
72 } // namespace x86_64
  /external/compiler-rt/make/platform/
clang_linux.mk 22 # Define configs only if arch in triple is i386 or x86_64
24 ifeq ($(call contains,i386 x86_64,$(CompilerTargetArch)),true)
41 SupportedArches += x86_64
44 SupportedArches := x86_64
63 # Build runtime libraries for x86_64.
64 ifeq ($(call contains,$(SupportedArches),x86_64),true)
65 Configs += builtins-x86_64 profile-x86_64 san-x86_64 asan-x86_64 asan_cxx-x86_64
    [all...]
darwin_fat.mk 27 UniversalArchs := i386 x86_64
49 FUNCTIONS.x86_64 := $(CommonFunctions) $(ArchFunctions.x86_64)
clang_darwin.mk 69 UniversalArchs.10.4 := $(call CheckArches,i386 x86_64,10.4)
74 UniversalArchs.ios := $(call CheckArches,i386 x86_64 x86_64h armv7,ios)
79 UniversalArchs.osx := $(call CheckArches,i386 x86_64 x86_64h,osx)
83 UniversalArchs.cc_kext := $(call CheckArches,armv7 i386 x86_64 x86_64h,cc_kext)
88 UniversalArchs.cc_kext_ios5 := $(call CheckArches,x86_64 x86_64h armv7,cc_kext_ios5)
92 UniversalArchs.profile_osx := $(call CheckArches,i386 x86_64 x86_64h,profile_osx)
94 UniversalArchs.profile_ios := $(call CheckArches,i386 x86_64 x86_64h armv7,profile_ios)
98 UniversalArchs.asan_osx_dynamic := $(call CheckArches,i386 x86_64 x86_64h,asan_osx_dynamic)
103 UniversalArchs.asan_iossim_dynamic := $(call CheckArches,i386 x86_64 x86_64h,asan_iossim_dynamic)
107 UniversalArchs.ubsan_osx := $(call CheckArches,i386 x86_64 x86_64h,ubsan_osx
    [all...]
clang_macho_embedded.mk 54 UniversalArchs.hard_static := $(call CheckArches,armv7em armv7 i386 x86_64,hard_static)
60 UniversalArchs.hard_pic := $(call CheckArches,armv7em armv7 i386 x86_64,hard_pic)
88 CFLAGS.hard_static.x86_64 := $(CFLAGS) $(STATIC_CFLAGS)
89 CFLAGS.hard_pic.x86_64 := $(CFLAGS) $(PIC_CFLAGS)
287 FUNCTIONS.hard_static.x86_64 := $(FUNCTIONS_X86_64)
288 FUNCTIONS.hard_pic.x86_64 := $(FUNCTIONS_X86_64)
darwin_bni.mk 61 FUNCTIONS.x86_64 := $(FUNCTIONS) \
  /art/compiler/jni/quick/x86_64/
calling_convention_x86_64.h 23 namespace x86_64 { namespace in namespace:art
85 } // namespace x86_64
calling_convention_x86_64.cc 20 #include "utils/x86_64/managed_register_x86_64.h"
24 namespace x86_64 { namespace in namespace:art
212 } // namespace x86_64
  /art/compiler/utils/x86_64/
managed_register_x86_64_test.cc 22 namespace x86_64 { namespace in namespace:art
358 } // namespace x86_64
managed_register_x86_64.cc 22 namespace x86_64 { namespace in namespace:art
114 } // namespace x86_64
assembler_x86_64.h 30 namespace x86_64 { namespace in namespace:art
691 } // namespace x86_64
constants_x86_64.h 22 #include "arch/x86_64/registers_x86_64.h"
28 namespace x86_64 { namespace in namespace:art
131 } // namespace x86_64
managed_register_x86_64.h 24 namespace x86_64 { namespace in namespace:art
201 } // namespace x86_64
203 inline x86_64::X86_64ManagedRegister ManagedRegister::AsX86_64() const {
204 x86_64::X86_64ManagedRegister reg(id_);
  /build/core/clang/
x86_64.mk 1 # Clang flags for x86_64 arch, target or host.
15 # We don't have any x86_64 flags to substitute yet.
16 define subst-clang-incompatible-x86_64-flags
  /external/ltrace/sysdeps/linux-gnu/x86/
trace.c 52 static const int x86_64 = 1; variable
54 static const int x86_64 = 0; variable
66 } else if (x86_64) { /* x86_64/i386 */
  /art/compiler/trampolines/
trampoline_compiler.cc 24 #include "utils/x86_64/assembler_x86_64.h"
142 namespace x86_64 { namespace in namespace:art
144 std::unique_ptr<x86_64::X86_64Assembler>
145 assembler(static_cast<x86_64::X86_64Assembler*>(Assembler::Create(kX86_64)));
148 __ gs()->jmp(x86_64::Address::Absolute(offset, true));
158 } // namespace x86_64
166 return x86_64::CreateTrampoline(offset);
  /art/compiler/optimizing/
code_generator_x86_64.h 23 #include "utils/x86_64/assembler_x86_64.h"
26 namespace x86_64 { namespace in namespace:art
194 } // namespace x86_64
  /art/compiler/utils/
managed_register.h 38 namespace x86_64 { namespace in namespace:art
58 x86_64::X86_64ManagedRegister AsX86_64() const;
assembler.h 27 #include "x86_64/constants_x86_64.h"
53 namespace x86_64 { namespace in namespace:art
123 friend class x86_64::X86_64Assembler;
  /art/runtime/arch/x86/
fault_handler_x86.cc 66 // X86 (and X86_64) specific fault handler functions.
72 // mac symbols have a prefix of _ on x86_64
94 const bool x86_64 = true; local
96 const bool x86_64 = false;
139 if (x86_64 && opcode >= 0x40 && opcode <= 0x4f) {
255 // get the method from the top of the stack. However it's in EAX(x86)/RDI(x86_64).
314 // (x86_64)
  /external/compiler-rt/
Android.mk 206 # X86_64-specific runtimes
208 lib/builtins/x86_64/floatundixf.S \
209 lib/builtins/x86_64/floatdisf.c \
210 lib/builtins/x86_64/floatdidf.c \
211 lib/builtins/x86_64/floatdixf.c \
212 lib/builtins/x86_64/floatundisf.S \
213 lib/builtins/x86_64/floatundidf.S
226 $(if $(findstring $(1),x86_64),$(call get-libcompiler-rt-x86_64-source-files),
295 define get-libcompiler-rt-x86_64-source-file
    [all...]

Completed in 458 milliseconds

1 2