HomeSort by relevance Sort by last modified time
    Searched full:isdarwin (Results 1 - 17 of 17) sorted by null

  /external/llvm/lib/Target/PowerPC/MCTargetDesc/
PPCMCExpr.h 35 bool IsDarwin;
39 : Kind(_Kind), Expr(_Expr), IsDarwin(_IsDarwin) {}
46 bool isDarwin, MCContext &Ctx);
49 bool isDarwin, MCContext &Ctx) {
50 return Create(VK_PPC_LO, Expr, isDarwin, Ctx);
54 bool isDarwin, MCContext &Ctx) {
55 return Create(VK_PPC_HI, Expr, isDarwin, Ctx);
59 bool isDarwin, MCContext &Ctx) {
60 return Create(VK_PPC_HA, Expr, isDarwin, Ctx);
74 bool isDarwinSyntax() const { return IsDarwin; }
    [all...]
PPCMCExpr.cpp 22 bool isDarwin, MCContext &Ctx) {
23 return new (Ctx) PPCMCExpr(Kind, Expr, isDarwin);
PPCMCTargetDesc.cpp 194 bool isDarwin = Triple(STI.getTargetTriple()).isOSDarwin();
195 return new PPCInstPrinter(MAI, MII, MRI, isDarwin);
  /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/
PPCMCInstLower.cpp 112 AsmPrinter &Printer, bool isDarwin) {
157 Expr = PPCMCExpr::CreateLo(Expr, isDarwin, Ctx);
160 Expr = PPCMCExpr::CreateHa(Expr, isDarwin, Ctx);
168 AsmPrinter &AP, bool isDarwin) {
192 MCOp = GetSymbolRef(MO, GetSymbolFromOperand(MO, AP), AP, isDarwin);
195 MCOp = GetSymbolRef(MO, AP.GetJTISymbol(MO.getIndex()), AP, isDarwin);
198 MCOp = GetSymbolRef(MO, AP.GetCPISymbol(MO.getIndex()), AP, isDarwin);
202 isDarwin);
PPCSubtarget.h 220 /// isDarwin - True if this is any darwin platform.
221 bool isDarwin() const { return TargetTriple.isMacOSX(); }
225 bool isDarwinABI() const { return isDarwin(); }
226 bool isSVR4ABI() const { return !isDarwin(); }
PPCAsmPrinter.cpp 153 if (!Subtarget.isDarwin()) RegName = stripRegisterPrefix(RegName);
268 if (!Subtarget.isDarwin()) RegName = stripRegisterPrefix(RegName);
337 LowerPPCMachineInstrToMCInst(MI, TmpInst, *this, Subtarget.isDarwin());
366 LowerPPCMachineInstrToMCInst(MI, TmpInst, *this, Subtarget.isDarwin());
408 LowerPPCMachineInstrToMCInst(MI, TmpInst, *this, Subtarget.isDarwin());
445 LowerPPCMachineInstrToMCInst(MI, TmpInst, *this, Subtarget.isDarwin());
496 LowerPPCMachineInstrToMCInst(MI, TmpInst, *this, Subtarget.isDarwin());
705 if (!Subtarget.isDarwin()) {
716 LowerPPCMachineInstrToMCInst(MI, TmpInst, *this, Subtarget.isDarwin());
    [all...]
PPC.h 47 AsmPrinter &AP, bool isDarwin);
PPCSubtarget.cpp 190 if (isDarwin())
PPCInstrInfo.cpp 835 assert(Subtarget.isDarwin() &&
    [all...]
PPCISelDAGToDAG.cpp     [all...]
PPCISelLowering.cpp 666 if (Subtarget.isDarwin()) {
685 if (Subtarget.isDarwin())
749 if (Subtarget.isDarwin())
    [all...]
  /external/chromium_org/third_party/WebKit/Tools/Scripts/
webkitdirs.pm 219 } elsif (isDarwin()) {
362 } elsif (isDarwin() || isFreeBSD()) {
755 if (isDarwin()) {
761 if (isDarwin() and -d "$configurationProductDir/lib/$libraryName.framework") {
763 } elsif (isDarwin() and -d "$configurationProductDir/lib") {
801 my $extension = isDarwin() ? ".dylib" : ".so";
1035 push @cmakeExtraOptions, "-DCMAKE_SKIP_RPATH='ON'" if isDarwin();
    [all...]
  /external/llvm/lib/Target/PowerPC/AsmParser/
PPCAsmParser.cpp 219 bool IsDarwin;
228 bool isDarwin() const { return IsDarwin; }
273 IsDarwin = TheTriple.isMacOSX();
    [all...]
  /external/llvm/lib/MC/MCParser/
AsmParser.cpp 178 bool IsDarwin;
496 AssemblerDialect(~0U), IsDarwin(false), ParsingInlineAsm(false) {
513 IsDarwin = true;
    [all...]
  /external/llvm/lib/CodeGen/AsmPrinter/
DwarfDebug.cpp 191 bool IsDarwin = Triple(A->getTargetTriple()).isOSDarwin();
194 HasDwarfAccelTables = IsDarwin;
204 HasDwarfPubSections = !IsDarwin;
    [all...]
  /external/llvm/lib/Target/AArch64/
AArch64InstrInfo.td 248 def IsDarwin : Predicate<"Subtarget->isTargetDarwin()">;
    [all...]

Completed in 1333 milliseconds