HomeSort by relevance Sort by last modified time
    Searched refs:is64Bit (Results 1 - 25 of 100) sorted by null

1 2 3 4

  /external/llvm/lib/Target/PowerPC/MCTargetDesc/
PPCMCAsmInfo.h 27 explicit PPCMCAsmInfoDarwin(bool is64Bit, const Triple &);
34 explicit PPCELFMCAsmInfo(bool is64Bit, const Triple &);
PPCMCAsmInfo.cpp 21 PPCMCAsmInfoDarwin::PPCMCAsmInfoDarwin(bool is64Bit, const Triple& T) {
22 if (is64Bit) {
30 if (!is64Bit)
47 PPCELFMCAsmInfo::PPCELFMCAsmInfo(bool is64Bit, const Triple& T) {
52 if (is64Bit) {
77 Data64bitsDirective = is64Bit ? "\t.quad\t" : nullptr;
PPCELFObjectWriter.cpp 25 PPCELFObjectWriter(bool Is64Bit, uint8_t OSABI);
36 PPCELFObjectWriter::PPCELFObjectWriter(bool Is64Bit, uint8_t OSABI)
37 : MCELFObjectTargetWriter(Is64Bit, OSABI,
38 Is64Bit ? ELF::EM_PPC64 : ELF::EM_PPC,
238 if (is64Bit())
253 if (is64Bit())
352 if (is64Bit())
358 if (is64Bit())
364 if (is64Bit())
420 bool Is64Bit,
    [all...]
  /external/libgdx/extensions/gdx-jnigen/src/com/badlogic/gdx/jnigen/
SharedLibraryFinder.java 25 * @param is64Bit Whether the platform is 64 bit
29 String getSharedLibraryNameWindows (String sharedLibName, boolean is64Bit, ZipFile nativesJar);
32 * @param is64Bit Whether the platform is 64 bit
37 String getSharedLibraryNameLinux (String sharedLibName, boolean is64Bit, boolean isArm, ZipFile nativesJar);
40 * @param is64Bit
44 String getSharedLibraryNameMac (String sharedLibName, boolean is64Bit, ZipFile nativesJar);
BuildTarget.java 30 public boolean is64Bit;
66 public BuildTarget (BuildTarget.TargetOs targetType, boolean is64Bit, String[] cIncludes, String[] cExcludes,
81 this.is64Bit = is64Bit;
95 public static BuildTarget newDefaultTarget (BuildTarget.TargetOs type, boolean is64Bit) {
96 if (type == TargetOs.Windows && !is64Bit) {
104 if (type == TargetOs.Windows && is64Bit) {
112 if (type == TargetOs.Linux && !is64Bit) {
119 if (type == TargetOs.Linux && is64Bit) {
126 if (type == TargetOs.MacOsX && !is64Bit) {
    [all...]
AntScriptGenerator.java 94 String buildFileName = "build-" + target.os.toString().toLowerCase() + (target.is64Bit ? "64" : "32") + ".xml";
97 System.out.println("Wrote target '" + target.os + (target.is64Bit ? "64" : "") + "' build script '"
107 sharedLibFilename = getSharedLibFilename(target.os, target.is64Bit, config.sharedLibName);
159 private String getSharedLibFilename (TargetOs os, boolean is64Bit, String sharedLibName) {
164 libSuffix = (is64Bit ? "64" : "") + ".dll";
168 libSuffix = (is64Bit ? "64" : "") + ".so";
172 libSuffix = (is64Bit ? "64" : "") + ".dylib";
190 if (targetName == null) targetName = target.os.toString().toLowerCase() + (target.is64Bit ? "64" : "32");
217 if (libName == null) libName = getSharedLibFilename(target.os, target.is64Bit, config.sharedLibName);
247 if (targetFolder == null) targetFolder = target.os.toString().toLowerCase() + (target.is64Bit ? "64" : "32");
    [all...]
JniGenSharedLibraryLoader.java 165 boolean is64Bit = System.getProperty("os.arch").equals("amd64") || System.getProperty("os.arch").equals("x86_64");
174 is64Bit = false;
180 loaded = loadLibrary(libraryFinder.getSharedLibraryNameWindows(sharedLibName, is64Bit, nativesZip));
181 else if (!is64Bit)
188 loaded = loadLibrary(libraryFinder.getSharedLibraryNameLinux(sharedLibName, is64Bit, isArm, nativesZip));
189 else if (!is64Bit) {
203 loaded = loadLibrary(libraryFinder.getSharedLibraryNameMac(sharedLibName, is64Bit, nativesZip));
204 else if (!is64Bit)
  /external/libgdx/backends/gdx-backend-lwjgl3/src/com/badlogic/gdx/backends/lwjgl3/
Lwjgl3NativesLoader.java 52 nativesDir = loader.extractFile(SharedLibraryLoader.is64Bit ? "lwjgl.dll" : "lwjgl32.dll", null).getParentFile();
53 loader.extractFile(SharedLibraryLoader.is64Bit ? "glfw.dll" : "glfw32.dll", nativesDir.getName());
54 loader.extractFile(SharedLibraryLoader.is64Bit ? "jemalloc.dll" : "jemalloc32.dll", nativesDir.getName());
55 loader.extractFile(SharedLibraryLoader.is64Bit ? "OpenAL.dll" : "OpenAL32.dll", nativesDir.getName());
62 nativesDir = loader.extractFile(SharedLibraryLoader.is64Bit ? "liblwjgl.so" : "liblwjgl32.so", null).getParentFile();
63 loader.extractFile(SharedLibraryLoader.is64Bit ? "libglfw.so" : "libglfw32.so", nativesDir.getName());
64 loader.extractFile(SharedLibraryLoader.is64Bit ? "libjemalloc.so" : "libjemalloc32.so", nativesDir.getName());
65 loader.extractFile(SharedLibraryLoader.is64Bit ? "libopenal.so" : "libopenal32.so", nativesDir.getName());
  /external/llvm/lib/Target/Sparc/
SparcSubtarget.cpp 40 CPUName = (Is64Bit) ? "v9" : "v8";
54 bool is64Bit)
55 : SparcGenSubtargetInfo(TT, CPU, FS), Is64Bit(is64Bit),
61 if (is64Bit()) {
SparcTargetMachine.cpp 28 static std::string computeDataLayout(const Triple &T, bool is64Bit) {
34 if (!is64Bit)
42 if (is64Bit)
47 if (is64Bit)
61 CodeGenOpt::Level OL, bool is64bit)
62 : LLVMTargetMachine(T, computeDataLayout(TT, is64bit), TT, CPU, FS, Options,
65 Subtarget(TT, CPU, FS, *this, is64bit) {
SparcSubtarget.h 37 bool Is64Bit;
47 const std::string &FS, TargetMachine &TM, bool is64bit);
78 bool is64Bit() const { return Is64Bit; }
83 return is64Bit() ? 2047 : 0;
SparcRegisterInfo.cpp 68 if (!Subtarget.is64Bit())
83 if (ReserveAppRegisters || !Subtarget.is64Bit())
105 return Subtarget.is64Bit() ? &SP::I64RegsRegClass : &SP::IntRegsRegClass;
  /external/libgdx/backends/gdx-backend-lwjgl/src/com/badlogic/gdx/backends/lwjgl/
LwjglNativesLoader.java 55 nativesDir = loader.extractFile(is64Bit ? "lwjgl64.dll" : "lwjgl.dll", null).getParentFile();
57 loader.extractFileTo(is64Bit ? "OpenAL64.dll" : "OpenAL32.dll", nativesDir);
62 nativesDir = loader.extractFile(is64Bit ? "liblwjgl64.so" : "liblwjgl.so", null).getParentFile();
64 loader.extractFileTo(is64Bit ? "libopenal64.so" : "libopenal.so", nativesDir);
  /external/llvm/lib/Target/X86/MCTargetDesc/
X86MCAsmInfo.cpp 45 bool is64Bit = T.getArch() == Triple::x86_64;
46 if (is64Bit)
53 if (!is64Bit)
90 bool is64Bit = T.getArch() == Triple::x86_64;
96 PointerSize = (is64Bit && !isX32) ? 8 : 4;
99 CalleeSaveStackSlotSize = is64Bit ? 8 : 4;
X86MCTargetDesc.cpp 114 bool is64Bit = TheTriple.getArch() == Triple::x86_64;
118 if (is64Bit)
138 int stackGrowth = is64Bit ? -8 : -4;
141 unsigned StackPtr = is64Bit ? X86::RSP : X86::ESP;
147 unsigned InstPtr = is64Bit ? X86::RIP : X86::EIP;
160 bool is64Bit = TT.getArch() == Triple::x86_64;
167 if (is64Bit)
171 } else if (TT.isOSWindows() && is64Bit)
182 if (is64Bit)
190 if (RM == Reloc::Static && TT.isOSDarwin() && is64Bit)
    [all...]
  /cts/hostsidetests/abioverride/app/src/android/abioverride/app/
AbiOverrideActivity.java 29 public static final String TEST_STRING = "Is64bit ";
36 Log.i(TAG, TEST_STRING + Process.is64Bit());
  /external/libgdx/gdx/src/com/badlogic/gdx/utils/
SharedLibraryLoader.java 43 static public boolean is64Bit = System.getProperty("os.arch").equals("amd64")
56 is64Bit = false;
60 is64Bit = false;
96 if (isWindows) return libraryName + (is64Bit ? "64.dll" : ".dll");
97 if (isLinux) return "lib" + libraryName + (isARM ? "arm" + abi : "") + (is64Bit ? "64.so" : ".so");
98 if (isMac) return "lib" + libraryName + (is64Bit ? "64.dylib" : ".dylib");
118 + System.getProperty("os.name") + (is64Bit ? ", 64-bit" : ", 32-bit"), ex);
  /external/llvm/lib/MC/
MachObjectWriter.cpp 134 write32(is64Bit() ? MachO::MH_MAGIC_64 : MachO::MH_MAGIC);
143 if (is64Bit())
148 (is64Bit() ? sizeof(MachO::mach_header_64) : sizeof(MachO::mach_header)));
166 is64Bit() ? sizeof(MachO::segment_command_64):
168 write32(is64Bit() ? MachO::LC_SEGMENT_64 : MachO::LC_SEGMENT);
170 NumSections * (is64Bit() ? sizeof(MachO::section_64) :
175 if (is64Bit()) {
218 if (is64Bit()) {
234 if (is64Bit())
238 (is64Bit() ? sizeof(MachO::section_64) : sizeof(MachO::section)))
    [all...]
ELFObjectWriter.cpp 51 bool Is64Bit;
64 SymbolTableWriter(ELFObjectWriter &EWriter, bool Is64Bit);
128 bool is64Bit() const { return TargetObjectWriter->is64Bit(); }
155 if (is64Bit())
259 SymbolTableWriter::SymbolTableWriter(ELFObjectWriter &EWriter, bool Is64Bit)
260 : EWriter(EWriter), Is64Bit(Is64Bit), NumWritten(0) {}
279 if (Is64Bit) {
320 write8(is64Bit() ? ELF::ELFCLASS64 : ELF::ELFCLASS32); // e_ident[EI_CLASS
    [all...]
  /external/llvm/lib/Target/NVPTX/
NVPTXFrameLowering.cpp 49 bool Is64Bit =
50 static_cast<const NVPTXTargetMachine &>(MF.getTarget()).is64Bit();
52 (Is64Bit ? NVPTX::cvta_local_yes_64 : NVPTX::cvta_local_yes);
54 (Is64Bit ? NVPTX::MOV_DEPOT_ADDR_64 : NVPTX::MOV_DEPOT_ADDR);
NVPTXTargetMachine.h 28 bool is64bit; member in class:llvm::NVPTXTargetMachine
40 bool is64bit);
47 bool is64Bit() const { return is64bit; }
  /external/llvm/lib/Target/X86/
X86SelectionDAGInfo.cpp 125 if (Subtarget.is64Bit() && ((Align & 0x7) == 0)) { // QWORD aligned
154 Chain = DAG.getCopyToReg(Chain, dl, Subtarget.is64Bit() ? X86::RCX : X86::ECX,
157 Chain = DAG.getCopyToReg(Chain, dl, Subtarget.is64Bit() ? X86::RDI : X86::EDI,
240 AVT = Subtarget.is64Bit() ? MVT::i64 : MVT::i32;
248 Chain = DAG.getCopyToReg(Chain, dl, Subtarget.is64Bit() ? X86::RCX : X86::ECX,
251 Chain = DAG.getCopyToReg(Chain, dl, Subtarget.is64Bit() ? X86::RDI : X86::EDI,
254 Chain = DAG.getCopyToReg(Chain, dl, Subtarget.is64Bit() ? X86::RSI : X86::ESI,
X86Subtarget.h 312 bool is64Bit() const {
426 bool isTargetNaCl32() const { return isTargetNaCl() && !is64Bit(); }
427 bool isTargetNaCl64() const { return isTargetNaCl() && is64Bit(); }
  /external/llvm/lib/Target/PowerPC/
PPCTargetMachine.cpp 81 bool is64Bit = T.getArch() == Triple::ppc64 || T.getArch() == Triple::ppc64le;
94 if (!is64Bit || T.getOS() == Triple::Lv2)
99 if (is64Bit || !T.isOSDarwin())
105 if (is64Bit)
  /external/llvm/include/llvm/MC/
MCMachObjectWriter.h 27 const unsigned Is64Bit : 1;
53 bool is64Bit() const { return Is64Bit; }
154 bool is64Bit() const { return TargetObjectWriter->is64Bit(); }

Completed in 678 milliseconds

1 2 3 4