/freebsd/contrib/llvm-project/llvm/lib/Target/PowerPC/ |
H A D | PPCSubtarget.h | 99 bool IsPPC64; variable 263 return IsPPC64 ? 8 : 4; in descriptorTOCAnchorOffset() 269 return IsPPC64 ? 16 : 8; in descriptorEnvironmentPointerOffset() 275 return IsPPC64 ? PPC::X11 : PPC::R11; in getEnvironmentPointerRegister() 281 return IsPPC64 ? PPC::X2 : PPC::R2; in getTOCPointerRegister() 287 return IsPPC64 ? PPC::X13 : PPC::R13; in getThreadPointerRegister() 291 return IsPPC64 ? PPC::X1 : PPC::R1; in getStackPointerRegister() 294 bool isXRaySupported() const override { return IsPPC64 && IsLittleEndian; } in isXRaySupported()
|
H A D | PPCSubtarget.cpp | 59 IsPPC64(TargetTriple.getArch() == Triple::ppc64 || in PPCSubtarget() 102 if (IsPPC64 && has64BitSupport()) in initSubtargetFeatures() 108 if (HasSPE && IsPPC64) in initSubtargetFeatures() 124 if (!TargetTriple.isOSAIX() || !IsPPC64) in initSubtargetFeatures() 141 if (HasAIXShLibTLSModelOpt && (!TargetTriple.isOSAIX() || !IsPPC64)) in initSubtargetFeatures()
|
H A D | PPCAsmPrinter.cpp | 804 const bool IsPPC64 = Subtarget->isPPC64(); in emitInstruction() local 850 [IsPPC64, getTOCRelocAdjustedExprForXCOFF, in emitInstruction() 854 const unsigned EntryByteSize = IsPPC64 ? 8 : 4; in emitInstruction() 1103 TmpInst.setOpcode((!IsPPC64) ? (PPC::LA) : (PPC::LA8)); in emitInstruction() 1160 assert((IsAIX && !IsPPC64 && in emitInstruction() 1205 assert(IsAIX && !IsPPC64 && in emitInstruction() 1346 assert(IsPPC64 && "Not supported for 32-bit PowerPC"); in emitInstruction() 1365 TmpInst.setOpcode(IsPPC64 ? PPC::LD : PPC::LWZ); in emitInstruction() 1370 MOSymbol, IsPPC64 ? MCSymbolRefExpr::VK_PPC_GOT_TPREL_LO in emitInstruction() 1425 assert(IsPPC64 && "Not supported for 32-bit PowerPC"); in emitInstruction() [all …]
|
H A D | PPCInstrVSX.td | 123 def IsPPC64 : Predicate<"Subtarget->isPPC64()">; 2459 // [HasVSX, HasP8Vector, IsBigEndian, IsPPC64] 2461 // [HasVSX, HasP8Vector, NoP9Vector, IsBigEndian, IsPPC64] 2467 // [HasVSX, HasDirectMove, NoP9Altivec, IsBigEndian, IsPPC64] 2468 // [HasVSX, HasDirectMove, NoP9Vector, IsBigEndian, IsPPC64] 2474 // [HasVSX, HasP9Vector, IsBigEndian, IsPPC64] 2477 // [HasVSX, HasP9Altivec, IsBigEndian, IsPPC64] 2479 // [HasVSX, IsISA3_0, HasDirectMove, IsBigEndian, IsPPC64] 3417 let Predicates = [HasVSX, HasP8Vector, IsBigEndian, IsPPC64] in { 3452 } // HasVSX, HasP8Vector, IsBigEndian, IsPPC64 [all …]
|
H A D | PPCISelLowering.cpp | 5707 const bool IsPPC64 = Subtarget.isPPC64(); in buildCallOperands() local 5709 const MVT RegVT = IsPPC64 ? MVT::i64 : MVT::i32; in buildCallOperands() 5747 Ops.push_back(DAG.getRegister(IsPPC64 ? PPC::CTR8 : PPC::CTR, RegVT)); in buildCallOperands() 6848 const bool IsPPC64 = Subtarget.isPPC64(); in CC_AIX() local 6849 const unsigned PtrSize = IsPPC64 ? 8 : 4; in CC_AIX() 6852 const MVT RegVT = IsPPC64 ? MVT::i64 : MVT::i32; in CC_AIX() 6872 const ArrayRef<MCPhysReg> GPRs = IsPPC64 ? GPR_64 : GPR_32; in CC_AIX() 6925 assert(IsPPC64 && "PPC32 should have split i64 values."); in CC_AIX() 6948 State.AllocateStack(IsPPC64 ? 8 : StoreSize, Align(4)); in CC_AIX() 7085 bool IsPPC64, in getRegClassForSVT() argument [all …]
|
H A D | PPCISelDAGToDAG.cpp | 5681 bool IsPPC64 = Subtarget->isPPC64(); in Select() local 5682 if (IsPPC64 && isInt64Immediate(N->getOperand(1), Imm64) && in Select() 5704 bool IsPPC64 = Subtarget->isPPC64(); in Select() local 5705 if (IsPPC64 && isInt64Immediate(N->getOperand(1), Imm64) && in Select() 5997 bool IsPPC64 = Subtarget->isPPC64(); in Select() local 6000 ? (IsPPC64 ? PPC::BDNZ8 : PPC::BDNZ) in Select() 6001 : (IsPPC64 ? PPC::BDZ8 : PPC::BDZ), in Select()
|
H A D | PPCInstrP10.td | 2441 let Predicates = [IsISA3_1, HasVSX, IsBigEndian, IsPPC64] in {
|
/freebsd/contrib/llvm-project/llvm/lib/Target/PowerPC/AsmParser/ |
H A D | PPCAsmParser.cpp | 100 bool IsPPC64; member in __anon49f2f9030111::PPCAsmParser 104 bool isPPC64() const { return IsPPC64; } in isPPC64() 148 IsPPC64 = TheTriple.isPPC64(); in PPCAsmParser() 178 bool IsPPC64; member 212 IsPPC64 = o.IsPPC64; in PPCOperand() 245 bool isPPC64() const { return IsPPC64; } in isPPC64() 406 if (!IsPPC64) { in isDirectBr() 670 bool IsPPC64) { in CreateToken() 676 Op->IsPPC64 = IsPPC64; in CreateToken() 681 CreateTokenWithStringCopy(StringRef Str, SMLoc S, bool IsPPC64) { in CreateTokenWithStringCopy() [all …]
|
/freebsd/contrib/llvm-project/llvm/lib/Transforms/Instrumentation/ |
H A D | AddressSanitizer.cpp | 488 bool IsPPC64 = TargetTriple.getArch() == Triple::ppc64 || in getShadowMapping() local 536 else if (IsPPC64) in getShadowMapping() 594 Mapping.OrShadowOffset = !IsAArch64 && !IsPPC64 && !IsSystemZ && !IsPS && in getShadowMapping()
|