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

  /external/llvm/lib/Target/PowerPC/
PPCFrameLowering.h 55 static unsigned getReturnSaveOffset(bool isPPC64, bool isDarwinABI) {
57 return isPPC64 ? 16 : 8;
59 return isPPC64 ? 16 : 4;
64 static unsigned getFramePointerSaveOffset(bool isPPC64, bool isDarwinABI) {
71 return isPPC64 ? -8U : -4U;
74 return isPPC64 ? -8U : -4U;
79 static unsigned getLinkageSize(bool isPPC64, bool isDarwinABI) {
80 if (isDarwinABI || isPPC64)
81 return 6 * (isPPC64 ? 8 : 4);
89 static unsigned getMinCallArgumentsSize(bool isPPC64, bool isDarwinABI)
    [all...]
PPCSubtarget.h 66 bool IsPPC64;
110 return isPPC64() ? "E-p:64:64-f64:64:64-i64:64:64-f128:64:128-n32:64"
114 /// isPPC64 - Return true if we are generating code for 64-bit pointer mode.
116 bool isPPC64() const { return IsPPC64; }
PPCFrameLowering.cpp 204 unsigned minCallFrameSize = getMinCallFrameSize(Subtarget.isPPC64(),
288 bool isPPC64 = Subtarget.isPPC64();
297 int LROffset = PPCFrameLowering::getReturnSaveOffset(isPPC64, isDarwinABI);
307 FPOffset = PPCFrameLowering::getFramePointerSaveOffset(isPPC64, isDarwinABI);
311 if (isPPC64) {
352 if (!isPPC64) {
437 MachineLocation SP(isPPC64 ? PPC::X31 : PPC::R31);
443 MachineLocation FPSrc(isPPC64 ? PPC::X31 : PPC::R31);
449 MachineLocation LRSrc(isPPC64 ? PPC::LR8 : PPC::LR)
    [all...]
PPCAsmPrinter.cpp 390 if (!Subtarget.isPPC64()) // linux/ppc32 - Normal entry label.
408 bool isPPC64 = TD->getPointerSizeInBits() == 64;
410 if (isPPC64 && !TOC.empty()) {
445 if (Subtarget.isPPC64() && Directive < PPC::DIR_970)
490 bool isPPC64 = TM.getTargetData()->getPointerSizeInBits() == 64;
525 if (isPPC64)
538 if (isPPC64)
562 if (isPPC64)
574 if (isPPC64)
585 bool isPPC64 = TM.getTargetData()->getPointerSizeInBits() == 64
    [all...]
PPCRegisterInfo.cpp 66 return ((EnablePPC32RS && !Subtarget.isPPC64()) ||
67 (EnablePPC64RS && Subtarget.isPPC64()));
72 : PPCGenRegisterInfo(ST.isPPC64() ? PPC::LR8 : PPC::LR,
73 ST.isPPC64() ? 0 : 1,
74 ST.isPPC64() ? 0 : 1),
97 if (Subtarget.isPPC64())
214 return Subtarget.isPPC64() ? Darwin64_CalleeSavedRegs :
217 return Subtarget.isPPC64() ? SVR4_64_CalleeSavedRegs : SVR4_CalleeSavedRegs;
246 if (Subtarget.isPPC64()) {
286 bool is64Bit = Subtarget.isPPC64();
    [all...]
PPCISelLowering.cpp 78 setMinStackArgumentAlignment(TM.getSubtarget<PPCSubtarget>().isPPC64() ? 8:4);
222 && !TM.getSubtarget<PPCSubtarget>().isPPC64()) {
375 if (TM.getSubtarget<PPCSubtarget>().isPPC64()) {
    [all...]
PPCTargetMachine.cpp 81 if (Subtarget.isPPC64())
PPCISelDAGToDAG.cpp 614 bool isPPC64 = (PtrVT == MVT::i64);
630 if (isPPC64) break;
654 if (isPPC64) break;
663 if (isPPC64) break;
    [all...]
PPCInstrInfo.cpp 388 if ((EnablePPC32RS && !TM.getSubtargetImpl()->isPPC64()) ||
389 (EnablePPC64RS && TM.getSubtargetImpl()->isPPC64())) {
  /external/llvm/lib/Target/PowerPC/MCTargetDesc/
PPCMCTargetDesc.cpp 44 bool isPPC64 = (TheTriple.getArch() == Triple::ppc64);
45 unsigned Flavour = isPPC64 ? 0 : 1;
46 unsigned RA = isPPC64 ? PPC::LR8 : PPC::LR;
62 bool isPPC64 = TheTriple.getArch() == Triple::ppc64;
66 MAI = new PPCMCAsmInfoDarwin(isPPC64);
68 MAI = new PPCLinuxMCAsmInfo(isPPC64);

Completed in 481 milliseconds