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

/external/llvm/include/llvm/CodeGen/
H A DPseudoSourceValue.h31 raw_ostream &operator<<(raw_ostream &OS, const PseudoSourceValue* PSV);
51 const PseudoSourceValue* PSV);
/external/llvm/lib/Target/Mips/
H A DMipsDelaySlotFiller.cpp453 if (const PseudoSourceValue *PSV =
455 if (isa<FixedStackPseudoSourceValue>(PSV))
457 return !PSV->isConstant(nullptr) && !PSV->isStack();
507 if (const PseudoSourceValue *PSV =
509 if (!PSV->isAliased(MFI))
511 Objects.push_back(PSV);
/external/llvm/lib/CodeGen/MIRParser/
H A DMIParser.cpp169 bool parseMemoryPseudoSourceValue(const PseudoSourceValue *&PSV);
1679 bool MIParser::parseMemoryPseudoSourceValue(const PseudoSourceValue *&PSV) { argument
1682 PSV = MF.getPSVManager().getStack();
1685 PSV = MF.getPSVManager().getGOT();
1688 PSV = MF.getPSVManager().getJumpTable();
1691 PSV = MF.getPSVManager().getConstantPool();
1697 PSV = MF.getPSVManager().getFixedStack(FI);
1705 PSV = MF.getPSVManager().getFixedStack(FI);
1717 PSV = MF.getPSVManager().getGlobalValueCallEntry(GV);
1721 PSV
1742 const PseudoSourceValue *PSV = nullptr; local
[all...]
/external/llvm/lib/CodeGen/
H A DScheduleDAGInstrs.cpp175 if (const PseudoSourceValue *PSV = MMO->getPseudoValue()) {
187 if (PSV->isAliased(MFI))
190 bool MayAlias = PSV->mayAlias(MFI);
191 Objects.push_back(UnderlyingObjectsVector::value_type(PSV, MayAlias));
1119 raw_ostream &llvm::operator<<(raw_ostream &OS, const PseudoSourceValue* PSV) { argument
1120 PSV->printCustom(OS);
H A DMachineLICM.cpp848 if (const PseudoSourceValue *PSV = MemOp->getPseudoValue())
849 if (PSV->isGOT() || PSV->isConstantPool())
H A DMachineInstr.cpp565 else if (const PseudoSourceValue *PSV = getPseudoValue())
566 PSV->printCustom(OS);
1587 if (const PseudoSourceValue *PSV = MMO->getPseudoValue())
1588 if (PSV->isConstant(MFI))
H A DMachineVerifier.cpp1078 const PseudoSourceValue *PSV = MMO->getPseudoValue(); local
1079 if (PSV == nullptr) continue;
1081 dyn_cast<FixedStackPseudoSourceValue>(PSV);
/external/clang/lib/StaticAnalyzer/Checkers/
H A DCallAndMessageChecker.cpp170 const SVal PSV = State->getSVal(SValMemRegion); local
171 if (PSV.isUndef()) {
/external/swiftshader/third_party/LLVM/lib/CodeGen/
H A DScheduleDAGInstrs.cpp119 if (const PseudoSourceValue *PSV = dyn_cast<PseudoSourceValue>(V)) {
123 if (PSV->isAliased(MFI))
126 MayAlias = PSV->mayAlias(MFI);
H A DMachineInstr.cpp1259 if (const PseudoSourceValue *PSV = dyn_cast<PseudoSourceValue>(V))
1260 if (PSV->isConstant(MFI))
/external/llvm/lib/Target/WebAssembly/
H A DWebAssemblyRegStackify.cpp144 auto PSV = MPI.V.get<const PseudoSourceValue *>(); local
146 dyn_cast<ExternalSymbolPseudoSourceValue>(PSV))
/external/clang/lib/StaticAnalyzer/Core/
H A DPathDiagnostic.cpp1147 SVal PSV = State->getSVal(Reg->getRegion()); local
1148 SymbolRef AS = PSV.getAsLocSymbol();

Completed in 473 milliseconds