Home
last modified time | relevance | path

Searched refs:PseudoSourceValue (Results 1 – 25 of 37) sorted by relevance

12

/freebsd/contrib/llvm-project/llvm/lib/CodeGen/
H A DPseudoSourceValue.cpp27 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 DMachineOperand.cpp1091 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 DScheduleDAGInstrs.cpp140 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 DStackSlotColoring.cpp398 const PseudoSourceValue *NewSV = MF.getPSVManager().getFixedStack(NewFI); in ColorSlots()
H A DImplicitNullChecks.cpp43 #include "llvm/CodeGen/PseudoSourceValue.h"
349 if (const PseudoSourceValue *PSV = MMO2->getPseudoValue()) { in areMemoryOpsAliased()
H A DShrinkWrap.cpp315 if (const PseudoSourceValue *PSV = Op->getPseudoValue()) in INITIALIZE_PASS_DEPENDENCY()
H A DMachineInstr.cpp1356 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 DStackColoring.cpp1101 const PseudoSourceValue *NewSV = in remapInstructions()
/freebsd/contrib/llvm-project/llvm/include/llvm/CodeGen/
H A DPseudoSourceValue.h1 //===-- 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 DPseudoSourceValueManager.h29 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 DMachineMemOperand.h43 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 DMIRFormatter.h61 const PseudoSourceValue &PSV) const { in printCustomPseudoSourceValue()
68 const PseudoSourceValue *&PSV, ErrorCallbackType ErrorCallback) const { in parseCustomPseudoSourceValue()
H A DScheduleDAGInstrs.h46 class PseudoSourceValue; variable
101 using ValueType = PointerUnion<const Value *, const PseudoSourceValue *>;
/freebsd/contrib/llvm-project/llvm/lib/Target/AArch64/
H A DAArch64Subtarget.h429 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 DAMDGPUMIRFormatter.h48 const PseudoSourceValue *&PSV,
H A DAMDGPUTargetMachine.cpp827 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 DSIMachineFunctionInfo.h38 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 DAMDGPUMIRFormatter.cpp173 const PseudoSourceValue *&PSV, ErrorCallbackType ErrorCallback) const { in parseCustomPseudoSourceValue()
/freebsd/contrib/llvm-project/llvm/lib/Target/Mips/
H A DMipsDelaySlotFiller.cpp188 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 DMipsOptimizePICCall.cpp56 using ValueType = PointerUnion<const Value *, const PseudoSourceValue *>;
/freebsd/contrib/llvm-project/llvm/lib/Target/ARM/
H A DARMHazardRecognizer.cpp218 BasePseudoVal0->kind() == PseudoSourceValue::FixedStack) { in getHazardType()
H A DARMLowOverheadLoops.cpp1130 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 DVarLocBasedImpl.cpp1296 const PseudoSourceValue *PVal = (*MMOI)->getPseudoValue(); in extractSpillBaseRegAndOffset()
1297 assert(PVal->kind() == PseudoSourceValue::FixedStack && in extractSpillBaseRegAndOffset()
H A DInstrRefBasedImpl.cpp1368 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 DMIParser.cpp509 bool parseMemoryPseudoSourceValue(const PseudoSourceValue *&PSV);
3183 bool MIParser::parseMemoryPseudoSourceValue(const PseudoSourceValue *&PSV) { in parseMemoryPseudoSourceValue()
3259 const PseudoSourceValue *PSV = nullptr; in parseMachinePointerInfo()

12