HomeSort by relevance Sort by last modified time
    Searched defs:OSType (Results 1 - 7 of 7) 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/MCTargetDesc/
MBlazeAsmBackend.cpp 44 MBlazeELFObjectWriter(Triple::OSType OSType)
45 : MCELFObjectTargetWriter(/*is64Bit*/ false, OSType, ELF::EM_MBLAZE,
109 Triple::OSType OSType;
110 ELFMBlazeAsmBackend(const Target &T, Triple::OSType _OSType)
111 : MBlazeAsmBackend(T), OSType(_OSType) { }
117 return createELFObjectWriter(new MBlazeELFObjectWriter(OSType), OS,
  /external/llvm/lib/Target/Mips/MCTargetDesc/
MipsAsmBackend.cpp 22 MipsELFObjectWriter(bool is64Bit, Triple::OSType OSType, uint16_t EMachine,
24 : MCELFObjectTargetWriter(is64Bit, OSType, EMachine,
78 Triple::OSType OSType;
80 MipsEB_AsmBackend(const Target &T, Triple::OSType _OSType)
81 : MipsAsmBackend(T), OSType(_OSType) {}
89 return new MipsELFObjectWriter(false, OSType, ELF::EM_MIPS, false);
95 Triple::OSType OSType;
    [all...]
  /external/llvm/lib/Target/PowerPC/MCTargetDesc/
PPCAsmBackend.cpp 62 PPCELFObjectWriter(bool Is64Bit, Triple::OSType OSType, uint16_t EMachine,
64 : MCELFObjectTargetWriter(Is64Bit, OSType, EMachine, HasRelocationAddend) {}
147 Triple::OSType OSType;
149 ELFPPCAsmBackend(const Target &T, Triple::OSType OSType) :
150 PPCAsmBackend(T), OSType(OSType) { }
170 OSType,
    [all...]
  /external/llvm/lib/Target/X86/MCTargetDesc/
X86AsmBackend.cpp 60 X86ELFObjectWriter(bool is64Bit, Triple::OSType OSType, uint16_t EMachine,
62 : MCELFObjectTargetWriter(is64Bit, OSType, EMachine, HasRelocationAddend) {}
313 Triple::OSType OSType;
314 ELFX86AsmBackend(const Target &T, Triple::OSType _OSType)
315 : X86AsmBackend(T), OSType(_OSType) {
327 ELFX86_32AsmBackend(const Target &T, Triple::OSType OSType)
328 : ELFX86AsmBackend(T, OSType) {}
    [all...]
  /external/llvm/lib/Target/ARM/MCTargetDesc/
ARMAsmBackend.cpp 34 ARMELFObjectWriter(Triple::OSType OSType)
35 : MCELFObjectTargetWriter(/*Is64Bit*/ false, OSType, ELF::EM_ARM,
398 Triple::OSType OSType;
400 Triple::OSType _OSType)
401 : ARMAsmBackend(T, TT), OSType(_OSType) { }
407 return createELFObjectWriter(new ARMELFObjectWriter(OSType), OS,
  /external/llvm/include/llvm/ADT/
Triple.h 80 enum OSType {
123 mutable OSType OS;
131 static OSType ParseOS(StringRef OSName);
179 OSType getOS() const {
304 void setOS(OSType Kind);
359 static const char *getOSTypeName(OSType Kind);

Completed in 263 milliseconds