HomeSort by relevance Sort by last modified time
    Searched refs:isDarwin (Results 1 - 21 of 21) sorted by null

  /external/llvm/lib/Target/PowerPC/MCTargetDesc/
PPCMCExpr.h 35 bool IsDarwin;
39 explicit PPCMCExpr(VariantKind Kind, const MCExpr *Expr, bool IsDarwin)
40 : Kind(Kind), Expr(Expr), IsDarwin(IsDarwin) {}
47 bool isDarwin, MCContext &Ctx);
50 bool isDarwin, MCContext &Ctx) {
51 return create(VK_PPC_LO, Expr, isDarwin, Ctx);
55 bool isDarwin, MCContext &Ctx) {
56 return create(VK_PPC_HI, Expr, isDarwin, Ctx);
60 bool isDarwin, MCContext &Ctx)
    [all...]
PPCMCExpr.cpp 23 bool isDarwin, MCContext &Ctx) {
24 return new (Ctx) PPCMCExpr(Kind, Expr, isDarwin);
  /external/swiftshader/third_party/LLVM/lib/Target/PowerPC/
PPCSubtarget.h 142 /// isDarwin - True if this is any darwin platform.
143 bool isDarwin() const { return TargetTriple.isMacOSX(); }
145 bool isDarwinABI() const { return isDarwin(); }
146 bool isSVR4ABI() const { return !isDarwin(); }
PPC.h 41 AsmPrinter &AP, bool isDarwin);
PPCMCInstLower.cpp 98 AsmPrinter &Printer, bool isDarwin) {
103 RefKind = isDarwin ? MCSymbolRefExpr::VK_PPC_DARWIN_LO16 : MCSymbolRefExpr::VK_PPC_GAS_LO16;
105 RefKind = isDarwin ? MCSymbolRefExpr::VK_PPC_DARWIN_HA16 : MCSymbolRefExpr::VK_PPC_GAS_HA16;
133 AsmPrinter &AP, bool isDarwin) {
157 MCOp = GetSymbolRef(MO, GetSymbolFromOperand(MO, AP), AP, isDarwin);
160 MCOp = GetSymbolRef(MO, AP.GetJTISymbol(MO.getIndex()), AP, isDarwin);
163 MCOp = GetSymbolRef(MO, AP.GetCPISymbol(MO.getIndex()), AP, isDarwin);
167 isDarwin);
PPCSubtarget.cpp 109 if (isDarwin())
PPCAsmPrinter.cpp 153 if (!Subtarget.isDarwin()) RegName = stripRegisterPrefix(RegName);
347 LowerPPCMachineInstrToMCInst(MI, TmpInst, *this, Subtarget.isDarwin());
379 LowerPPCMachineInstrToMCInst(MI, TmpInst, *this, Subtarget.isDarwin());
677 if (Subtarget->isDarwin())
PPCISelLowering.cpp 61 if (TM.getSubtargetImpl()->isDarwin())
392 if (TM.getSubtarget<PPCSubtarget>().isDarwin()) {
406 if (PPCSubTarget.isDarwin())
419 if (TM.getSubtarget<PPCSubtarget>().isDarwin())
    [all...]
  /external/llvm/lib/Target/PowerPC/
PPCMCInstLower.cpp 83 AsmPrinter &Printer, bool isDarwin) {
131 Expr = PPCMCExpr::createLo(Expr, isDarwin, Ctx);
134 Expr = PPCMCExpr::createHa(Expr, isDarwin, Ctx);
142 AsmPrinter &AP, bool isDarwin) {
169 MCOp = GetSymbolRef(MO, GetSymbolFromOperand(MO, AP), AP, isDarwin);
172 MCOp = GetSymbolRef(MO, AP.GetJTISymbol(MO.getIndex()), AP, isDarwin);
175 MCOp = GetSymbolRef(MO, AP.GetCPISymbol(MO.getIndex()), AP, isDarwin);
179 isDarwin);
PPC.h 49 AsmPrinter &AP, bool isDarwin);
PPCSubtarget.h 283 /// isDarwin - True if this is any darwin platform.
284 bool isDarwin() const { return TargetTriple.isMacOSX(); }
292 bool isDarwinABI() const { return isTargetMachO() || isDarwin(); }
PPCAsmPrinter.cpp 175 if (!Subtarget->isDarwin())
276 if (!Subtarget->isDarwin())
459 if (!Subtarget->isPPC64() && !Subtarget->isDarwin() &&
481 bool isDarwin = TM.getTargetTriple().isOSDarwin();
539 LowerPPCMachineInstrToMCInst(MI, TmpInst, *this, isDarwin);
568 LowerPPCMachineInstrToMCInst(MI, TmpInst, *this, isDarwin);
612 LowerPPCMachineInstrToMCInst(MI, TmpInst, *this, isDarwin);
643 LowerPPCMachineInstrToMCInst(MI, TmpInst, *this, isDarwin);
683 LowerPPCMachineInstrToMCInst(MI, TmpInst, *this, isDarwin);
726 LowerPPCMachineInstrToMCInst(MI, TmpInst, *this, isDarwin);
    [all...]
PPCSubtarget.cpp 135 if (isDarwin())
PPCInstrInfo.cpp     [all...]
PPCISelDAGToDAG.cpp     [all...]
PPCISelLowering.cpp     [all...]
  /external/swiftshader/third_party/LLVM/lib/Target/ARM/
ARMBaseRegisterInfo.h 38 static inline bool isARMArea1Register(unsigned Reg, bool isDarwin) {
47 return !isDarwin;
53 static inline bool isARMArea2Register(unsigned Reg, bool isDarwin) {
58 return isDarwin;
64 static inline bool isARMArea3Register(unsigned Reg, bool isDarwin) {
ARMSubtarget.h 161 isELF, isDarwin
ARMFastISel.cpp     [all...]
  /external/llvm/lib/Target/PowerPC/InstPrinter/
PPCInstPrinter.h 22 bool IsDarwin;
25 const MCRegisterInfo &MRI, bool isDarwin)
26 : MCInstPrinter(MAI, MII, MRI), IsDarwin(isDarwin) {}
29 return IsDarwin;
  /external/llvm/lib/Target/PowerPC/AsmParser/
PPCAsmParser.cpp 246 bool IsDarwin;
252 bool isDarwin() const { return IsDarwin; }
298 IsDarwin = TheTriple.isMacOSX();
    [all...]

Completed in 390 milliseconds