Home
last modified time | relevance | path

Searched refs:FixedStackPseudoSourceValue (Results 1 – 21 of 21) sorted by relevance

/external/llvm/lib/CodeGen/
DPseudoSourceValue.cpp53 bool FixedStackPseudoSourceValue::isConstant( in isConstant()
58 bool FixedStackPseudoSourceValue::isAliased(const MachineFrameInfo *MFI) const { in isAliased()
64 bool FixedStackPseudoSourceValue::mayAlias(const MachineFrameInfo *MFI) const { in mayAlias()
71 void FixedStackPseudoSourceValue::printCustom(raw_ostream &OS) const { in printCustom()
117 std::unique_ptr<FixedStackPseudoSourceValue> &V = FSValues[FI]; in getFixedStack()
119 V = llvm::make_unique<FixedStackPseudoSourceValue>(FI); in getFixedStack()
DStackSlotColoring.cpp166 if (const FixedStackPseudoSourceValue *FSV = in ScanForSpillSlotRefs()
167 dyn_cast_or_null<FixedStackPseudoSourceValue>( in ScanForSpillSlotRefs()
DTargetInstrInfo.cpp313 if (const FixedStackPseudoSourceValue *Value = in hasLoadFromStackSlot()
314 dyn_cast_or_null<FixedStackPseudoSourceValue>( in hasLoadFromStackSlot()
332 if (const FixedStackPseudoSourceValue *Value = in hasStoreToStackSlot()
333 dyn_cast_or_null<FixedStackPseudoSourceValue>( in hasStoreToStackSlot()
DMachineLICM.cpp340 if (const FixedStackPseudoSourceValue *Value = in InstructionStoresToFI()
341 dyn_cast<FixedStackPseudoSourceValue>(MemOp->getPseudoValue())) { in InstructionStoresToFI()
DMachineVerifier.cpp1080 const FixedStackPseudoSourceValue *Value = in visitMachineOperand()
1081 dyn_cast<FixedStackPseudoSourceValue>(PSV); in visitMachineOperand()
DMIRPrinter.cpp908 cast<FixedStackPseudoSourceValue>(PVal)->getFrameIndex()); in print()
/external/swiftshader/third_party/llvm-7.0/llvm/lib/CodeGen/
DPseudoSourceValue.cpp61 bool FixedStackPseudoSourceValue::isConstant( in isConstant()
66 bool FixedStackPseudoSourceValue::isAliased(const MachineFrameInfo *MFI) const { in isAliased()
72 bool FixedStackPseudoSourceValue::mayAlias(const MachineFrameInfo *MFI) const { in mayAlias()
79 void FixedStackPseudoSourceValue::printCustom(raw_ostream &OS) const { in printCustom()
131 std::unique_ptr<FixedStackPseudoSourceValue> &V = FSValues[FI]; in getFixedStack()
133 V = llvm::make_unique<FixedStackPseudoSourceValue>(FI, TII); in getFixedStack()
DStackSlotColoring.cpp183 if (const FixedStackPseudoSourceValue *FSV = in ScanForSpillSlotRefs()
184 dyn_cast_or_null<FixedStackPseudoSourceValue>( in ScanForSpillSlotRefs()
DTargetInstrInfo.cpp349 if (const FixedStackPseudoSourceValue *Value = in hasLoadFromStackSlot()
350 dyn_cast_or_null<FixedStackPseudoSourceValue>( in hasLoadFromStackSlot()
368 if (const FixedStackPseudoSourceValue *Value = in hasStoreToStackSlot()
369 dyn_cast_or_null<FixedStackPseudoSourceValue>( in hasStoreToStackSlot()
DMachineLICM.cpp388 if (const FixedStackPseudoSourceValue *Value = in InstructionStoresToFI()
389 dyn_cast<FixedStackPseudoSourceValue>(MemOp->getPseudoValue())) { in InstructionStoresToFI()
DLiveDebugValues.cpp349 int FI = cast<FixedStackPseudoSourceValue>(PVal)->getFrameIndex(); in extractSpillBaseRegAndOffset()
DMachineVerifier.cpp1344 const FixedStackPseudoSourceValue *Value = in visitMachineOperand()
1345 dyn_cast<FixedStackPseudoSourceValue>(PSV); in visitMachineOperand()
DMachineOperand.cpp1102 int FrameIndex = cast<FixedStackPseudoSourceValue>(PVal)->getFrameIndex(); in print()
/external/swiftshader/third_party/LLVM/lib/CodeGen/
DPseudoSourceValue.cpp78 V = new FixedStackPseudoSourceValue(FI); in getFixedStack()
111 bool FixedStackPseudoSourceValue::isConstant(const MachineFrameInfo *MFI) const{ in isConstant()
115 bool FixedStackPseudoSourceValue::isAliased(const MachineFrameInfo *MFI) const { in isAliased()
125 bool FixedStackPseudoSourceValue::mayAlias(const MachineFrameInfo *MFI) const { in mayAlias()
132 void FixedStackPseudoSourceValue::printCustom(raw_ostream &OS) const { in printCustom()
DTargetInstrInfoImpl.cpp173 if (const FixedStackPseudoSourceValue *Value = in hasLoadFromStackSlot()
174 dyn_cast<const FixedStackPseudoSourceValue>((*o)->getValue())) { in hasLoadFromStackSlot()
191 if (const FixedStackPseudoSourceValue *Value = in hasStoreToStackSlot()
192 dyn_cast<const FixedStackPseudoSourceValue>((*o)->getValue())) { in hasStoreToStackSlot()
DMachineLICM.cpp374 if (const FixedStackPseudoSourceValue *Value = in InstructionStoresToFI()
375 dyn_cast<const FixedStackPseudoSourceValue>((*o)->getValue())) { in InstructionStoresToFI()
/external/swiftshader/third_party/LLVM/include/llvm/CodeGen/
DPseudoSourceValue.h84 class FixedStackPseudoSourceValue : public PseudoSourceValue {
87 explicit FixedStackPseudoSourceValue(int fi) : in FixedStackPseudoSourceValue() function
93 static inline bool classof(const FixedStackPseudoSourceValue *) { in classof() argument
/external/llvm/include/llvm/CodeGen/
DPseudoSourceValue.h86 class FixedStackPseudoSourceValue : public PseudoSourceValue {
90 explicit FixedStackPseudoSourceValue(int FI) in FixedStackPseudoSourceValue() function
149 std::map<int, std::unique_ptr<FixedStackPseudoSourceValue>> FSValues;
/external/swiftshader/third_party/llvm-7.0/llvm/include/llvm/CodeGen/
DPseudoSourceValue.h95 class FixedStackPseudoSourceValue : public PseudoSourceValue {
99 explicit FixedStackPseudoSourceValue(int FI, const TargetInstrInfo &TII) in FixedStackPseudoSourceValue() function
160 std::map<int, std::unique_ptr<FixedStackPseudoSourceValue>> FSValues;
/external/swiftshader/third_party/llvm-7.0/llvm/lib/Target/Mips/
DMipsDelaySlotFiller.cpp483 if (isa<FixedStackPseudoSourceValue>(PSV)) in hasHazard_()
/external/llvm/lib/Target/Mips/
DMipsDelaySlotFiller.cpp455 if (isa<FixedStackPseudoSourceValue>(PSV)) in hasHazard_()