HomeSort by relevance Sort by last modified time
    Searched defs:isPPC64 (Results 1 - 8 of 8) sorted by null

  /external/llvm/lib/Target/PowerPC/MCTargetDesc/
PPCMCTargetDesc.cpp 45 bool isPPC64 = (TheTriple.getArch() == Triple::ppc64);
46 unsigned Flavour = isPPC64 ? 0 : 1;
47 unsigned RA = isPPC64 ? PPC::LR8 : PPC::LR;
63 bool isPPC64 = TheTriple.getArch() == Triple::ppc64;
67 MAI = new PPCMCAsmInfoDarwin(isPPC64);
69 MAI = new PPCLinuxMCAsmInfo(isPPC64);
73 MachineLocation Src(isPPC64? PPC::X1 : PPC::R1, 0);
  /external/llvm/lib/Target/PowerPC/
PPCInstrInfo.cpp 212 bool isPPC64 = TM.getSubtargetImpl()->isPPC64();
253 Cond.push_back(MachineOperand::CreateReg(isPPC64 ? PPC::CTR8 : PPC::CTR,
264 Cond.push_back(MachineOperand::CreateReg(isPPC64 ? PPC::CTR8 : PPC::CTR,
302 Cond.push_back(MachineOperand::CreateReg(isPPC64 ? PPC::CTR8 : PPC::CTR,
316 Cond.push_back(MachineOperand::CreateReg(isPPC64 ? PPC::CTR8 : PPC::CTR,
380 bool isPPC64 = TM.getSubtargetImpl()->isPPC64();
388 (isPPC64 ? PPC::BDNZ8 : PPC::BDNZ) :
389 (isPPC64 ? PPC::BDZ8 : PPC::BDZ))).addMBB(TBB)
    [all...]
PPCSubtarget.h 76 bool IsPPC64;
122 if (isPPC64() && isSVR4ABI()) {
129 return isPPC64() ? "E-p:64:64-f64:64:64-i64:64:64-f128:64:128-n32:64"
133 /// isPPC64 - Return true if we are generating code for 64-bit pointer mode.
135 bool isPPC64() const { return IsPPC64; }
PPCAsmPrinter.cpp 534 assert(Subtarget.isPPC64() && "Not supported for 32-bit PowerPC");
567 assert(Subtarget.isPPC64() && "Not supported for 32-bit PowerPC");
583 assert(Subtarget.isPPC64() && "Not supported for 32-bit PowerPC");
599 assert(Subtarget.isPPC64() && "Not supported for 32-bit PowerPC");
619 assert(Subtarget.isPPC64() && "Not supported for 32-bit PowerPC");
635 assert(Subtarget.isPPC64() && "Not supported for 32-bit PowerPC");
651 assert(Subtarget.isPPC64() && "Not supported for 32-bit PowerPC");
671 assert(Subtarget.isPPC64() && "Not supported for 32-bit PowerPC");
687 assert(Subtarget.isPPC64() && "Not supported for 32-bit PowerPC");
706 OutStreamer.EmitInstruction(MCInstBuilder(Subtarget.isPPC64() ? PPC::MFCR8 : PPC::MFCR
    [all...]
PPCCTRLoops.cpp 676 bool isPPC64 = Subtarget.isPPC64();
680 const TargetRegisterClass *RC = isPPC64 ? G8RC : GPRC;
688 unsigned CopyOp = (isPPC64 && SrcRC == GPRC) ?
697 TII->get(isPPC64 ? PPC::NEG8 : PPC::NEG),
711 TII->get(isPPC64 ? PPC::LIS8 : PPC::LIS),
716 TII->get(isPPC64 ? PPC::ORI8 : PPC::ORI),
720 TII->get(isPPC64 ? PPC::LI8 : PPC::LI),
727 TII->get(isPPC64 ? PPC::MTCTR8 : PPC::MTCTR)).addReg(CountReg,
744 MBB->addLiveIn(isPPC64 ? PPC::CTR8 : PPC::CTR)
    [all...]
PPCFrameLowering.cpp 228 (Subtarget.isPPC64() || // 32-bit SVR4, no stack-
234 !(Subtarget.isPPC64() && // No 64-bit SVR4 CRsave.
248 unsigned minCallFrameSize = getMinCallFrameSize(Subtarget.isPPC64(),
336 bool isPPC64 = Subtarget.isPPC64();
345 int LROffset = PPCFrameLowering::getReturnSaveOffset(isPPC64, isDarwinABI);
355 FPOffset = PPCFrameLowering::getFramePointerSaveOffset(isPPC64, isDarwinABI);
359 if (isPPC64) {
402 if (!isPPC64) {
487 MachineLocation SP(isPPC64 ? PPC::X31 : PPC::R31)
    [all...]
PPCISelDAGToDAG.cpp 723 bool isPPC64 = (PtrVT == MVT::i64);
739 if (isPPC64) break;
763 if (isPPC64) break;
772 if (isPPC64) break;
    [all...]
PPCISelLowering.cpp 82 bool isPPC64 = Subtarget->isPPC64();
83 setMinStackArgumentAlignment(isPPC64 ? 8:4);
239 if (isPPC64) {
457 if (isPPC64) {
491 if (isPPC64 && Subtarget->isJITCodeModel())
532 if (PPCSubTarget.isPPC64())
    [all...]

Completed in 268 milliseconds