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);
  /external/llvm/lib/Target/PowerPC/
PPCAsmPrinter.cpp 388 TmpInst.setOpcode(Subtarget.isPPC64() ? PPC::MFCR8 : PPC::MFCR);
405 if (!Subtarget.isPPC64()) // linux/ppc32 - Normal entry label.
435 bool isPPC64 = TD->getPointerSizeInBits() == 64;
437 if (isPPC64 && !TOC.empty()) {
466 if (Subtarget.isPPC64()) {
496 if (Subtarget.isPPC64() && Directive < PPC::DIR_64)
541 bool isPPC64 = TM.getTargetData()->getPointerSizeInBits() == 64;
576 if (isPPC64)
589 if (isPPC64)
613 if (isPPC64)
    [all...]
PPCInstrInfo.cpp 217 bool isPPC64 = TM.getSubtargetImpl()->isPPC64();
258 Cond.push_back(MachineOperand::CreateReg(isPPC64 ? PPC::CTR8 : PPC::CTR,
269 Cond.push_back(MachineOperand::CreateReg(isPPC64 ? PPC::CTR8 : PPC::CTR,
307 Cond.push_back(MachineOperand::CreateReg(isPPC64 ? PPC::CTR8 : PPC::CTR,
321 Cond.push_back(MachineOperand::CreateReg(isPPC64 ? PPC::CTR8 : PPC::CTR,
385 bool isPPC64 = TM.getSubtargetImpl()->isPPC64();
393 (isPPC64 ? PPC::BDNZ8 : PPC::BDNZ) :
394 (isPPC64 ? PPC::BDZ8 : PPC::BDZ))).addMBB(TBB)
    [all...]
PPCSubtarget.h 71 bool IsPPC64;
116 return isPPC64() ? "E-p:64:64-f64:64:64-i64:64:64-f128:64:128-n32:64"
120 /// isPPC64 - Return true if we are generating code for 64-bit pointer mode.
122 bool isPPC64() const { return IsPPC64; }
PPCCTRLoops.cpp 626 bool isPPC64 = Subtarget.isPPC64();
630 const TargetRegisterClass *RC = isPPC64 ? G8RC : GPRC;
638 unsigned CopyOp = (isPPC64 && SrcRC == GPRC) ?
647 TII->get(isPPC64 ? PPC::NEG8 : PPC::NEG),
660 TII->get(isPPC64 ? PPC::LIS8 : PPC::LIS),
665 TII->get(isPPC64 ? PPC::ORI8 : PPC::ORI),
669 TII->get(isPPC64 ? PPC::LI8 : PPC::LI),
676 TII->get(isPPC64 ? PPC::MTCTR8 : PPC::MTCTR)).addReg(CountReg,
693 MBB->addLiveIn(isPPC64 ? PPC::CTR8 : PPC::CTR)
    [all...]
PPCFrameLowering.cpp 204 unsigned minCallFrameSize = getMinCallFrameSize(Subtarget.isPPC64(),
290 bool isPPC64 = Subtarget.isPPC64();
299 int LROffset = PPCFrameLowering::getReturnSaveOffset(isPPC64, isDarwinABI);
309 FPOffset = PPCFrameLowering::getFramePointerSaveOffset(isPPC64, isDarwinABI);
313 if (isPPC64) {
356 if (!isPPC64) {
441 MachineLocation SP(isPPC64 ? PPC::X31 : PPC::R31);
447 MachineLocation FPSrc(isPPC64 ? PPC::X31 : PPC::R31);
453 MachineLocation LRSrc(isPPC64 ? PPC::LR8 : PPC::LR)
    [all...]
PPCISelDAGToDAG.cpp 629 bool isPPC64 = (PtrVT == MVT::i64);
645 if (isPPC64) break;
669 if (isPPC64) break;
678 if (isPPC64) break;
    [all...]
PPCISelLowering.cpp 79 bool isPPC64 = Subtarget->isPPC64();
80 setMinStackArgumentAlignment(isPPC64 ? 8:4);
234 if (isPPC64) {
408 if (isPPC64) {
442 if (isPPC64 && Subtarget->isJITCodeModel())
483 if (PPCSubTarget.isPPC64())
    [all...]

Completed in 756 milliseconds