/freebsd/contrib/llvm-project/llvm/lib/CodeGen/ |
H A D | PseudoSourceValue.cpp | 27 PseudoSourceValue::PseudoSourceValue(unsigned Kind, const TargetMachine &TM) in PseudoSourceValue() function in PseudoSourceValue 32 PseudoSourceValue::~PseudoSourceValue() = default; 34 void PseudoSourceValue::printCustom(raw_ostream &O) const { in printCustom() 41 bool PseudoSourceValue::isConstant(const MachineFrameInfo *) const { in isConstant() 49 bool PseudoSourceValue::isAliased(const MachineFrameInfo *) const { in isAliased() 55 bool PseudoSourceValue::mayAlias(const MachineFrameInfo *) const { in mayAlias() 83 : PseudoSourceValue(Kind, TM) {} in CallEntryPseudoSourceValue() 105 : TM(TMInfo), StackPSV(PseudoSourceValue::Stack, TM), in PseudoSourceValueManager() 106 GOTPSV(PseudoSourceValue::GOT, TM), in PseudoSourceValueManager() 107 JumpTablePSV(PseudoSourceValue::JumpTable, TM), in PseudoSourceValueManager() [all …]
|
H A D | MachineOperand.cpp | 1091 assert((PtrInfo.V.isNull() || isa<const PseudoSourceValue *>(PtrInfo.V) || in MachineMemOperand() 1195 } else if (const PseudoSourceValue *PVal = getPseudoValue()) { in print() 1199 case PseudoSourceValue::Stack: in print() 1202 case PseudoSourceValue::GOT: in print() 1205 case PseudoSourceValue::JumpTable: in print() 1208 case PseudoSourceValue::ConstantPool: in print() 1211 case PseudoSourceValue::FixedStack: { in print() 1217 case PseudoSourceValue::GlobalValueCallEntry: in print() 1222 case PseudoSourceValue::ExternalSymbolCallEntry: in print()
|
H A D | ScheduleDAGInstrs.cpp | 140 if (const PseudoSourceValue *PSV = MMO->getPseudoValue()) { in getUnderlyingObjectsForInstr() 1035 raw_ostream &llvm::operator<<(raw_ostream &OS, const PseudoSourceValue* PSV) { in operator <<() 1048 } else if (isa<const PseudoSourceValue *>(ValType)) in dump() 1049 dbgs() << cast<const PseudoSourceValue *>(ValType); in dump()
|
H A D | StackSlotColoring.cpp | 398 const PseudoSourceValue *NewSV = MF.getPSVManager().getFixedStack(NewFI); in ColorSlots()
|
H A D | ImplicitNullChecks.cpp | 43 #include "llvm/CodeGen/PseudoSourceValue.h" 349 if (const PseudoSourceValue *PSV = MMO2->getPseudoValue()) { in areMemoryOpsAliased()
|
H A D | ShrinkWrap.cpp | 315 if (const PseudoSourceValue *PSV = Op->getPseudoValue()) in INITIALIZE_PASS_DEPENDENCY()
|
H A D | MachineInstr.cpp | 1356 const PseudoSourceValue *PSVa = MMOa->getPseudoValue(); in MemOperandsHaveAlias() 1357 const PseudoSourceValue *PSVb = MMOb->getPseudoValue(); in MemOperandsHaveAlias() 1503 if (const PseudoSourceValue *PSV = MMO->getPseudoValue()) { in isDereferenceableInvariantLoad()
|
H A D | StackColoring.cpp | 1101 const PseudoSourceValue *NewSV = in remapInstructions()
|
/freebsd/contrib/llvm-project/llvm/include/llvm/CodeGen/ |
H A D | PseudoSourceValue.h | 1 //===-- llvm/CodeGen/PseudoSourceValue.h ------------------------*- C++ -*-===// 9 // This file contains the declaration of the PseudoSourceValue class. 22 class PseudoSourceValue; 26 raw_ostream &operator<<(raw_ostream &OS, const PseudoSourceValue* PSV); variable 31 class PseudoSourceValue { 48 const PseudoSourceValue* PSV); 53 /// Implement printing for PseudoSourceValue. This is called from 58 explicit PseudoSourceValue(unsigned Kind, const TargetMachine &TM); 60 virtual ~PseudoSourceValue(); 75 /// Test whether the memory pointed to by this PseudoSourceValue ha [all...] |
H A D | PseudoSourceValueManager.h | 29 const PseudoSourceValue StackPSV, GOTPSV, JumpTablePSV, ConstantPoolPSV; 42 const PseudoSourceValue *getStack(); 46 const PseudoSourceValue *getGOT(); 51 const PseudoSourceValue *getConstantPool(); 55 const PseudoSourceValue *getJumpTable(); 59 const PseudoSourceValue *getFixedStack(int FI); 61 const PseudoSourceValue *getGlobalValueCallEntry(const GlobalValue *GV); 63 const PseudoSourceValue *getExternalSymbolCallEntry(const char *ES);
|
H A D | MachineMemOperand.h | 43 PointerUnion<const Value *, const PseudoSourceValue *> V; 58 explicit MachinePointerInfo(const PseudoSourceValue *v, int64_t offset = 0, 69 PointerUnion<const Value *, const PseudoSourceValue *> v, 77 AddrSpace = cast<const PseudoSourceValue *>(V)->getAddressSpace(); in V() 86 return MachinePointerInfo(cast<const PseudoSourceValue *>(V), Offset + O, in getWithOffset() 216 const PseudoSourceValue *getPseudoValue() const { in getPseudoValue() 217 return dyn_cast_if_present<const PseudoSourceValue *>(PtrInfo.V); in getPseudoValue() 326 void setValue(const PseudoSourceValue *NewSV) { PtrInfo.V = NewSV; } in setValue()
|
H A D | MIRFormatter.h | 61 const PseudoSourceValue &PSV) const { in printCustomPseudoSourceValue() 68 const PseudoSourceValue *&PSV, ErrorCallbackType ErrorCallback) const { in parseCustomPseudoSourceValue()
|
H A D | ScheduleDAGInstrs.h | 46 class PseudoSourceValue; variable 101 using ValueType = PointerUnion<const Value *, const PseudoSourceValue *>;
|
/freebsd/contrib/llvm-project/llvm/lib/Target/AArch64/ |
H A D | AArch64Subtarget.h | 429 const PseudoSourceValue *getAddressCheckPSV() const { in getAddressCheckPSV() 439 class AddressCheckPseudoSourceValue : public PseudoSourceValue { 442 : PseudoSourceValue(TargetCustom, TM) {} in AddressCheckPseudoSourceValue()
|
/freebsd/contrib/llvm-project/llvm/lib/Target/AMDGPU/ |
H A D | AMDGPUMIRFormatter.h | 48 const PseudoSourceValue *&PSV,
|
H A D | AMDGPUTargetMachine.cpp | 827 case PseudoSourceValue::Stack: in getAddressSpaceForPseudoSourceKind() 828 case PseudoSourceValue::FixedStack: in getAddressSpaceForPseudoSourceKind() 830 case PseudoSourceValue::ConstantPool: in getAddressSpaceForPseudoSourceKind() 831 case PseudoSourceValue::GOT: in getAddressSpaceForPseudoSourceKind() 832 case PseudoSourceValue::JumpTable: in getAddressSpaceForPseudoSourceKind() 833 case PseudoSourceValue::GlobalValueCallEntry: in getAddressSpaceForPseudoSourceKind() 834 case PseudoSourceValue::ExternalSymbolCallEntry: in getAddressSpaceForPseudoSourceKind()
|
H A D | SIMachineFunctionInfo.h | 38 class AMDGPUPseudoSourceValue : public PseudoSourceValue { 41 PSVImage = PseudoSourceValue::TargetCustom, 47 : PseudoSourceValue(Kind, TM) {} in AMDGPUPseudoSourceValue() 70 static bool classof(const PseudoSourceValue *V) { in classof()
|
H A D | AMDGPUMIRFormatter.cpp | 173 const PseudoSourceValue *&PSV, ErrorCallbackType ErrorCallback) const { in parseCustomPseudoSourceValue()
|
/freebsd/contrib/llvm-project/llvm/lib/Target/Mips/ |
H A D | MipsDelaySlotFiller.cpp | 188 using ValueType = PointerUnion<const Value *, const PseudoSourceValue *>; 482 if (const PseudoSourceValue *PSV = in hasHazard_() 533 if (const PseudoSourceValue *PSV = MMO.getPseudoValue()) { in getUnderlyingObjects()
|
H A D | MipsOptimizePICCall.cpp | 56 using ValueType = PointerUnion<const Value *, const PseudoSourceValue *>;
|
/freebsd/contrib/llvm-project/llvm/lib/Target/ARM/ |
H A D | ARMHazardRecognizer.cpp | 218 BasePseudoVal0->kind() == PseudoSourceValue::FixedStack) { in getHazardType()
|
H A D | ARMLowOverheadLoops.cpp | 1130 const PseudoSourceValue *PseudoValue = Operand->getPseudoValue(); in ValidateMVEStore() 1131 if (PseudoValue && PseudoValue->kind() == PseudoSourceValue::FixedStack) { in ValidateMVEStore()
|
/freebsd/contrib/llvm-project/llvm/lib/CodeGen/LiveDebugValues/ |
H A D | VarLocBasedImpl.cpp | 1296 const PseudoSourceValue *PVal = (*MMOI)->getPseudoValue(); in extractSpillBaseRegAndOffset() 1297 assert(PVal->kind() == PseudoSourceValue::FixedStack && in extractSpillBaseRegAndOffset()
|
H A D | InstrRefBasedImpl.cpp | 1368 const PseudoSourceValue *PVal = (*MMOI)->getPseudoValue(); in extractSpillBaseRegAndOffset() 1369 assert(PVal->kind() == PseudoSourceValue::FixedStack && in extractSpillBaseRegAndOffset() 1994 const PseudoSourceValue *PVal = (*MMOI)->getPseudoValue(); in isSpillInstruction()
|
/freebsd/contrib/llvm-project/llvm/lib/CodeGen/MIRParser/ |
H A D | MIParser.cpp | 509 bool parseMemoryPseudoSourceValue(const PseudoSourceValue *&PSV); 3183 bool MIParser::parseMemoryPseudoSourceValue(const PseudoSourceValue *&PSV) { in parseMemoryPseudoSourceValue() 3259 const PseudoSourceValue *PSV = nullptr; in parseMachinePointerInfo()
|