HomeSort by relevance Sort by last modified time
    Searched defs:isPPC64 (Results 1 - 6 of 6) 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 375 TmpInst.setOpcode(Subtarget.isPPC64() ? PPC::MFCR8 : PPC::MFCR);
392 if (!Subtarget.isPPC64()) // linux/ppc32 - Normal entry label.
407 Subtarget.isPPC64() ? 8 : 4/*size*/, 0/*addrspace*/);
409 Subtarget.isPPC64() ? 8 : 4/*size*/, 0/*addrspace*/);
422 bool isPPC64 = TD->getPointerSizeInBits() == 64;
424 if (isPPC64 && !TOC.empty()) {
462 if (Subtarget.isPPC64() && Directive < PPC::DIR_64)
507 bool isPPC64 = TM.getTargetData()->getPointerSizeInBits() == 64;
542 if (isPPC64)
555 if (isPPC64)
    [all...]
PPCSubtarget.h 67 bool IsPPC64;
111 return isPPC64() ? "E-p:64:64-f64:64:64-i64:64:64-f128:64:128-n32:64"
115 /// isPPC64 - Return true if we are generating code for 64-bit pointer mode.
117 bool isPPC64() const { return IsPPC64; }
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) {
354 if (!isPPC64) {
439 MachineLocation SP(isPPC64 ? PPC::X31 : PPC::R31);
445 MachineLocation FPSrc(isPPC64 ? PPC::X31 : PPC::R31);
451 MachineLocation LRSrc(isPPC64 ? PPC::LR8 : PPC::LR)
    [all...]
PPCISelDAGToDAG.cpp 612 bool isPPC64 = (PtrVT == MVT::i64);
628 if (isPPC64) break;
652 if (isPPC64) break;
661 if (isPPC64) break;
    [all...]
PPCISelLowering.cpp 76 setMinStackArgumentAlignment(TM.getSubtarget<PPCSubtarget>().isPPC64() ? 8:4);
230 if (TM.getSubtarget<PPCSubtarget>().isPPC64()) {
401 if (TM.getSubtarget<PPCSubtarget>().isPPC64()) {
456 if (PPCSubTarget.isPPC64())
    [all...]

Completed in 2001 milliseconds