Searched refs:PSV (Results 1 - 15 of 15) sorted by relevance

/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/CodeGen/
H A DMIRFormatter.h55 const PseudoSourceValue &PSV) const {
56 PSV.printCustom(OS);
62 const PseudoSourceValue *&PSV, ErrorCallbackType ErrorCallback) const {
60 parseCustomPseudoSourceValue( StringRef Src, MachineFunction &MF, PerFunctionMIParsingState &PFS, const PseudoSourceValue *&PSV, ErrorCallbackType ErrorCallback) const argument
H A DPseudoSourceValue.h31 raw_ostream &operator<<(raw_ostream &OS, const PseudoSourceValue* PSV);
53 const PseudoSourceValue* PSV);
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/Mips/
H A DMipsDelaySlotFiller.cpp485 if (const PseudoSourceValue *PSV =
487 if (isa<FixedStackPseudoSourceValue>(PSV))
489 return !PSV->isConstant(nullptr) && !PSV->isStack();
536 if (const PseudoSourceValue *PSV = MMO.getPseudoValue()) {
537 if (!PSV->isAliased(MFI))
539 Objects.push_back(PSV);
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/AMDGPU/
H A DSIMachineFunctionInfo.h878 auto PSV = BufferPSVs.try_emplace( local
881 return PSV.first->second.get();
887 auto PSV = ImagePSVs.try_emplace( local
890 return PSV.first->second.get();
H A DAMDGPUISelDAGToDAG.cpp1473 auto PSV = PtrInfo.V.dyn_cast<const PseudoSourceValue *>(); local
1474 return PSV && PSV->isStack();
H A DAMDGPUInstructionSelector.cpp2090 auto PSV = PtrInfo.V.dyn_cast<const PseudoSourceValue *>();
2091 return PSV && PSV->isStack();
/freebsd-11-stable/contrib/llvm-project/llvm/lib/CodeGen/
H A DScheduleDAGInstrs.cpp137 if (const PseudoSourceValue *PSV = MMO->getPseudoValue()) {
149 if (PSV->isAliased(&MFI))
152 bool MayAlias = PSV->mayAlias(&MFI);
153 Objects.push_back(UnderlyingObjectsVector::value_type(PSV, MayAlias));
1021 raw_ostream &llvm::operator<<(raw_ostream &OS, const PseudoSourceValue* PSV) { argument
1022 PSV->printCustom(OS);
H A DImplicitNullChecks.cpp345 if (const PseudoSourceValue *PSV = MMO2->getPseudoValue()) {
346 if (PSV->mayAlias(MFI))
H A DTargetInstrInfo.cpp1158 const PseudoSourceValue *PSV = MMO->getPseudoValue(); local
1162 if (!PSV || PSV->mayAlias(&MFI))
H A DMachineLICM.cpp934 if (const PseudoSourceValue *PSV = MemOp->getPseudoValue())
935 if (PSV->isGOT() || PSV->isConstantPool())
H A DMachineInstr.cpp1332 if (const PseudoSourceValue *PSV = MMO->getPseudoValue())
1333 if (PSV->isConstant(&MFI))
H A DMachineVerifier.cpp1837 const PseudoSourceValue *PSV = MMO->getPseudoValue(); local
1838 if (PSV == nullptr) continue;
1840 dyn_cast<FixedStackPseudoSourceValue>(PSV);
/freebsd-11-stable/contrib/llvm-project/llvm/lib/CodeGen/MIRParser/
H A DMIParser.cpp501 bool parseMemoryPseudoSourceValue(const PseudoSourceValue *&PSV);
2814 bool MIParser::parseMemoryPseudoSourceValue(const PseudoSourceValue *&PSV) {
2817 PSV = MF.getPSVManager().getStack();
2820 PSV = MF.getPSVManager().getGOT();
2823 PSV = MF.getPSVManager().getJumpTable();
2826 PSV = MF.getPSVManager().getConstantPool();
2832 PSV = MF.getPSVManager().getFixedStack(FI);
2840 PSV = MF.getPSVManager().getFixedStack(FI);
2852 PSV = MF.getPSVManager().getGlobalValueCallEntry(GV);
2856 PSV
[all...]
/freebsd-11-stable/contrib/llvm-project/clang/lib/StaticAnalyzer/Checkers/
H A DCallAndMessageChecker.cpp174 const SVal PSV = State->getSVal(SValMemRegion, C.getASTContext().CharTy); local
175 if (PSV.isUndef()) {
/freebsd-11-stable/contrib/llvm-project/clang/lib/StaticAnalyzer/Core/
H A DBugReporter.cpp310 SVal PSV = N->getState()->getSVal(Reg->getRegion()); local
311 SymbolRef AS = PSV.getAsLocSymbol();

Completed in 217 milliseconds