/external/llvm/lib/Target/PowerPC/MCTargetDesc/ |
D | PPCMCExpr.h | 47 bool isDarwin, MCContext &Ctx); 50 bool isDarwin, MCContext &Ctx) { in createLo() argument 51 return create(VK_PPC_LO, Expr, isDarwin, Ctx); in createLo() 55 bool isDarwin, MCContext &Ctx) { in createHi() argument 56 return create(VK_PPC_HI, Expr, isDarwin, Ctx); in createHi() 60 bool isDarwin, MCContext &Ctx) { in createHa() argument 61 return create(VK_PPC_HA, Expr, isDarwin, Ctx); in createHa()
|
D | PPCMCExpr.cpp | 23 bool isDarwin, MCContext &Ctx) { in create() argument 24 return new (Ctx) PPCMCExpr(Kind, Expr, isDarwin); in create()
|
/external/llvm/lib/Target/PowerPC/ |
D | PPCMCInstLower.cpp | 43 bool isDarwin = TM.getTargetTriple().isOSDarwin(); in GetSymbolFromOperand() local 48 if (isDarwin) in GetSymbolFromOperand() 74 if (MO.getTargetFlags() == PPCII::MO_PLT_OR_STUB && isDarwin) { in GetSymbolFromOperand() 115 AsmPrinter &Printer, bool isDarwin) { in GetSymbolRef() argument 142 if (MO.getTargetFlags() == PPCII::MO_PLT_OR_STUB && !isDarwin) in GetSymbolRef() 163 Expr = PPCMCExpr::createLo(Expr, isDarwin, Ctx); in GetSymbolRef() 166 Expr = PPCMCExpr::createHa(Expr, isDarwin, Ctx); in GetSymbolRef() 174 AsmPrinter &AP, bool isDarwin) { in LowerPPCMachineInstrToMCInst() argument 201 MCOp = GetSymbolRef(MO, GetSymbolFromOperand(MO, AP), AP, isDarwin); in LowerPPCMachineInstrToMCInst() 204 MCOp = GetSymbolRef(MO, AP.GetJTISymbol(MO.getIndex()), AP, isDarwin); in LowerPPCMachineInstrToMCInst() [all …]
|
D | PPCAsmPrinter.cpp | 173 if (!Subtarget->isDarwin()) in printOperand() 289 if (!Subtarget->isDarwin()) in PrintAsmMemoryOperand() 472 if (!Subtarget->isPPC64() && !Subtarget->isDarwin() && in EmitTlsCall() 494 bool isDarwin = TM.getTargetTriple().isOSDarwin(); in EmitInstruction() local 552 LowerPPCMachineInstrToMCInst(MI, TmpInst, *this, isDarwin); in EmitInstruction() 581 LowerPPCMachineInstrToMCInst(MI, TmpInst, *this, isDarwin); in EmitInstruction() 625 LowerPPCMachineInstrToMCInst(MI, TmpInst, *this, isDarwin); in EmitInstruction() 656 LowerPPCMachineInstrToMCInst(MI, TmpInst, *this, isDarwin); in EmitInstruction() 696 LowerPPCMachineInstrToMCInst(MI, TmpInst, *this, isDarwin); in EmitInstruction() 739 LowerPPCMachineInstrToMCInst(MI, TmpInst, *this, isDarwin); in EmitInstruction() [all …]
|
D | PPCSubtarget.h | 268 bool isDarwin() const { return TargetTriple.isMacOSX(); } in isDarwin() function 275 bool isDarwinABI() const { return isTargetMachO() || isDarwin(); } in isDarwinABI()
|
D | PPC.h | 50 AsmPrinter &AP, bool isDarwin);
|
D | PPCSubtarget.cpp | 131 if (isDarwin()) in initSubtargetFeatures()
|
D | PPCInstrInfo.cpp | 999 assert(Subtarget.isDarwin() && in StoreRegToStackSlot() 1115 assert(Subtarget.isDarwin() && in LoadRegFromStackSlot()
|
D | PPCISelDAGToDAG.cpp | 4201 if (PPCSubTarget->isDarwin() || !PPCSubTarget->isPPC64()) in PeepholePPC64()
|
D | PPCISelLowering.cpp | 872 if (Subtarget.isDarwin()) { in PPCTargetLowering() 893 if (Subtarget.isDarwin()) in PPCTargetLowering() 976 if (Subtarget.isDarwin()) in getByValTypeAlignment()
|
/external/llvm/lib/Target/PowerPC/InstPrinter/ |
D | PPCInstPrinter.h | 27 const MCRegisterInfo &MRI, bool isDarwin) in PPCInstPrinter() argument 28 : MCInstPrinter(MAI, MII, MRI), IsDarwin(isDarwin) {} in PPCInstPrinter()
|
/external/llvm/lib/Target/PowerPC/AsmParser/ |
D | PPCAsmParser.cpp | 254 bool isDarwin() const { return IsDarwin; } in isDarwin() function in __anonc2cb14060111::PPCAsmParser 1435 if (isDarwin()) in ParseExpression() 1529 if (isDarwin()) { in ParseOperand() 1594 if (!isDarwin()) { in ParseOperand() 1604 if (isDarwin()) { in ParseOperand() 1705 if (!isDarwin()) { in ParseDirective()
|