HomeSort by relevance Sort by last modified time
    Searched defs:OSType (Results 1 - 5 of 5) sorted by null

  /external/llvm/include/llvm/MC/
MCELFObjectWriter.h 18 const Triple::OSType OSType;
23 MCELFObjectTargetWriter(bool Is64Bit_, Triple::OSType OSType_,
31 Triple::OSType getOSType() { return OSType; }
  /external/llvm/lib/Target/MBlaze/
MBlazeAsmBackend.cpp 46 MBlazeELFObjectWriter(Triple::OSType OSType)
47 : MCELFObjectTargetWriter(/*is64Bit*/ false, OSType, ELF::EM_MBLAZE,
111 Triple::OSType OSType;
112 ELFMBlazeAsmBackend(const Target &T, Triple::OSType _OSType)
113 : MBlazeAsmBackend(T), OSType(_OSType) { }
119 return createELFObjectWriter(new MBlazeELFObjectWriter(OSType), OS,
  /external/llvm/lib/Target/ARM/
ARMAsmBackend.cpp 33 ARMELFObjectWriter(Triple::OSType OSType)
34 : MCELFObjectTargetWriter(/*Is64Bit*/ false, OSType, ELF::EM_ARM,
384 Triple::OSType OSType;
385 ELFARMAsmBackend(const Target &T, Triple::OSType _OSType)
386 : ARMAsmBackend(T), OSType(_OSType) { }
392 return createELFObjectWriter(new ARMELFObjectWriter(OSType), OS,
  /external/llvm/lib/Target/X86/
X86AsmBackend.cpp 61 X86ELFObjectWriter(bool is64Bit, Triple::OSType OSType, uint16_t EMachine,
63 : MCELFObjectTargetWriter(is64Bit, OSType, EMachine, HasRelocationAddend) {}
306 Triple::OSType OSType;
307 ELFX86AsmBackend(const Target &T, Triple::OSType _OSType)
308 : X86AsmBackend(T), OSType(_OSType) {
320 ELFX86_32AsmBackend(const Target &T, Triple::OSType OSType)
321 : ELFX86AsmBackend(T, OSType) {}
    [all...]
  /external/llvm/include/llvm/ADT/
Triple.h 79 enum OSType {
120 mutable OSType OS;
128 static OSType ParseOS(StringRef OSName);
184 OSType getOS() const {
309 void setOS(OSType Kind);
364 static const char *getOSTypeName(OSType Kind);

Completed in 2824 milliseconds