/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/llvm/lib/Target/PowerPC/ |
PPCMCInstLower.cpp | 43 bool isDarwin = TM.getTargetTriple().isOSDarwin(); 48 if (isDarwin) 74 if (MO.getTargetFlags() == PPCII::MO_PLT_OR_STUB && isDarwin) { 115 AsmPrinter &Printer, bool isDarwin) { 142 if (MO.getTargetFlags() == PPCII::MO_PLT_OR_STUB && !isDarwin) 163 Expr = PPCMCExpr::createLo(Expr, isDarwin, Ctx); 166 Expr = PPCMCExpr::createHa(Expr, isDarwin, Ctx); 174 AsmPrinter &AP, bool isDarwin) { 201 MCOp = GetSymbolRef(MO, GetSymbolFromOperand(MO, AP), AP, isDarwin); 204 MCOp = GetSymbolRef(MO, AP.GetJTISymbol(MO.getIndex()), AP, isDarwin); [all...] |
PPCSubtarget.h | 267 /// isDarwin - True if this is any darwin platform. 268 bool isDarwin() const { return TargetTriple.isMacOSX(); } 275 bool isDarwinABI() const { return isTargetMachO() || isDarwin(); }
|
PPC.h | 50 AsmPrinter &AP, bool isDarwin);
|
PPCAsmPrinter.cpp | 173 if (!Subtarget->isDarwin()) 289 if (!Subtarget->isDarwin()) 472 if (!Subtarget->isPPC64() && !Subtarget->isDarwin() && 494 bool isDarwin = TM.getTargetTriple().isOSDarwin(); 552 LowerPPCMachineInstrToMCInst(MI, TmpInst, *this, isDarwin); 581 LowerPPCMachineInstrToMCInst(MI, TmpInst, *this, isDarwin); 625 LowerPPCMachineInstrToMCInst(MI, TmpInst, *this, isDarwin); 656 LowerPPCMachineInstrToMCInst(MI, TmpInst, *this, isDarwin); 696 LowerPPCMachineInstrToMCInst(MI, TmpInst, *this, isDarwin); 739 LowerPPCMachineInstrToMCInst(MI, TmpInst, *this, isDarwin); [all...] |
PPCSubtarget.cpp | 131 if (isDarwin())
|
PPCInstrInfo.cpp | [all...] |
PPCISelLowering.cpp | [all...] |
PPCISelDAGToDAG.cpp | [all...] |
/external/llvm/lib/Target/PowerPC/InstPrinter/ |
PPCInstPrinter.h | 24 bool IsDarwin; 27 const MCRegisterInfo &MRI, bool isDarwin) 28 : MCInstPrinter(MAI, MII, MRI), IsDarwin(isDarwin) {} 31 return IsDarwin;
|
/external/llvm/lib/Target/PowerPC/AsmParser/ |
PPCAsmParser.cpp | 248 bool IsDarwin; 254 bool isDarwin() const { return IsDarwin; } 300 IsDarwin = TheTriple.isMacOSX(); [all...] |
/external/llvm/lib/MC/MCParser/ |
AsmParser.cpp | 175 bool IsDarwin; 510 AssemblerDialect(~0U), IsDarwin(false), ParsingInlineAsm(false) { 525 IsDarwin = true; [all...] |
/external/llvm/lib/CodeGen/AsmPrinter/ |
DwarfDebug.h | 315 bool IsDarwin;
|
DwarfDebug.cpp | 207 IsDarwin(Triple(A->getTargetTriple()).isOSDarwin()), 224 else if (IsDarwin || TT.isOSFreeBSD()) [all...] |
/external/libgdx/backends/gdx-backend-moe/libs/ |
intel-moe-ios.jar | |
/external/llvm/lib/Target/AArch64/ |
AArch64InstrInfo.td | 301 def IsDarwin : Predicate<"Subtarget->isTargetDarwin()">; [all...] |