Home
last modified time | relevance | path

Searched refs:PSV (Results 1 – 18 of 18) sorted by relevance

/openbsd/src/gnu/llvm/llvm/include/llvm/CodeGen/
DMIRFormatter.h57 const PseudoSourceValue &PSV) const { in printCustomPseudoSourceValue() argument
58 PSV.printCustom(OS); in printCustomPseudoSourceValue()
64 const PseudoSourceValue *&PSV, ErrorCallbackType ErrorCallback) const { in parseCustomPseudoSourceValue() argument
DPseudoSourceValue.h30 raw_ostream &operator<<(raw_ostream &OS, const PseudoSourceValue* PSV);
52 const PseudoSourceValue* PSV);
/openbsd/src/gnu/llvm/llvm/lib/Target/AMDGPU/
DAMDGPUMIRFormatter.cpp22 const PseudoSourceValue *&PSV, ErrorCallbackType ErrorCallback) const { in parseCustomPseudoSourceValue() argument
27 PSV = MFI->getGWSPSV(TM); in parseCustomPseudoSourceValue()
DAMDGPUMIRFormatter.h35 const PseudoSourceValue *&PSV,
/openbsd/src/gnu/llvm/llvm/lib/Target/Mips/
DMipsDelaySlotFiller.cpp482 if (const PseudoSourceValue *PSV = in hasHazard_() local
484 if (isa<FixedStackPseudoSourceValue>(PSV)) in hasHazard_()
486 return !PSV->isConstant(nullptr) && !PSV->isStack(); in hasHazard_()
533 if (const PseudoSourceValue *PSV = MMO.getPseudoValue()) { in getUnderlyingObjects() local
534 if (!PSV->isAliased(MFI)) in getUnderlyingObjects()
536 Objects.push_back(PSV); in getUnderlyingObjects()
/openbsd/src/gnu/llvm/llvm/tools/llvm-reduce/
DReducerWorkItem.cpp167 if (const PseudoSourceValue *PSV = in cloneMemOperands() local
169 switch (PSV->kind()) { in cloneMemOperands()
184 cast<FixedStackPseudoSourceValue>(PSV)->getFrameIndex()); in cloneMemOperands()
188 cast<GlobalValuePseudoSourceValue>(PSV)->getValue()); in cloneMemOperands()
192 cast<ExternalSymbolPseudoSourceValue>(PSV)->getSymbol()); in cloneMemOperands()
/openbsd/src/gnu/llvm/llvm/lib/CodeGen/
DScheduleDAGInstrs.cpp140 if (const PseudoSourceValue *PSV = MMO->getPseudoValue()) { in getUnderlyingObjectsForInstr() local
152 if (PSV->isAliased(&MFI)) in getUnderlyingObjectsForInstr()
155 bool MayAlias = PSV->mayAlias(&MFI); in getUnderlyingObjectsForInstr()
156 Objects.emplace_back(PSV, MayAlias); in getUnderlyingObjectsForInstr()
1022 raw_ostream &llvm::operator<<(raw_ostream &OS, const PseudoSourceValue* PSV) { in operator <<() argument
1023 PSV->printCustom(OS); in operator <<()
DImplicitNullChecks.cpp349 if (const PseudoSourceValue *PSV = MMO2->getPseudoValue()) { in areMemoryOpsAliased() local
350 if (PSV->mayAlias(MFI)) in areMemoryOpsAliased()
DMachineLICM.cpp889 if (const PseudoSourceValue *PSV = MemOp->getPseudoValue()) in mayLoadFromGOTOrConstantPool() local
890 if (PSV->isGOT() || PSV->isConstantPool()) in mayLoadFromGOTOrConstantPool()
DMachineSink.cpp376 if (const PseudoSourceValue *PSV = MemOp->getPseudoValue()) in mayLoadFromGOTOrConstantPool() local
377 if (PSV->isGOT() || PSV->isConstantPool()) in mayLoadFromGOTOrConstantPool()
DTargetInstrInfo.cpp1350 const PseudoSourceValue *PSV = MMO->getPseudoValue(); in describeLoadedValue() local
1354 if (!PSV || PSV->mayAlias(&MFI)) in describeLoadedValue()
DMachineVerifier.cpp2276 const PseudoSourceValue *PSV = MMO->getPseudoValue(); in visitMachineOperand() local
2277 if (PSV == nullptr) continue; in visitMachineOperand()
2279 dyn_cast<FixedStackPseudoSourceValue>(PSV); in visitMachineOperand()
DMachineInstr.cpp1429 if (const PseudoSourceValue *PSV = MMO->getPseudoValue()) { in isDereferenceableInvariantLoad() local
1430 if (PSV->isConstant(&MFI)) in isDereferenceableInvariantLoad()
/openbsd/src/gnu/llvm/llvm/lib/CodeGen/MIRParser/
DMIParser.cpp507 bool parseMemoryPseudoSourceValue(const PseudoSourceValue *&PSV);
3164 bool MIParser::parseMemoryPseudoSourceValue(const PseudoSourceValue *&PSV) { in parseMemoryPseudoSourceValue() argument
3167 PSV = MF.getPSVManager().getStack(); in parseMemoryPseudoSourceValue()
3170 PSV = MF.getPSVManager().getGOT(); in parseMemoryPseudoSourceValue()
3173 PSV = MF.getPSVManager().getJumpTable(); in parseMemoryPseudoSourceValue()
3176 PSV = MF.getPSVManager().getConstantPool(); in parseMemoryPseudoSourceValue()
3182 PSV = MF.getPSVManager().getFixedStack(FI); in parseMemoryPseudoSourceValue()
3190 PSV = MF.getPSVManager().getFixedStack(FI); in parseMemoryPseudoSourceValue()
3202 PSV = MF.getPSVManager().getGlobalValueCallEntry(GV); in parseMemoryPseudoSourceValue()
3206 PSV = MF.getPSVManager().getExternalSymbolCallEntry( in parseMemoryPseudoSourceValue()
[all …]
/openbsd/src/gnu/llvm/clang/lib/StaticAnalyzer/Checkers/
DCallAndMessageChecker.cpp221 const SVal PSV = State->getSVal(SValMemRegion, C.getASTContext().CharTy); in uninitRefOrPointer() local
222 if (PSV.isUndef()) { in uninitRefOrPointer()
/openbsd/src/gnu/llvm/llvm/lib/Target/SystemZ/
DSystemZISelDAGToDAG.cpp1491 if (const PseudoSourceValue *PSV = MMO->getPseudoValue()) in storeLoadIsAligned() local
1492 if ((PSV->isGOT() || PSV->isConstantPool())) in storeLoadIsAligned()
/openbsd/src/gnu/llvm/llvm/lib/CodeGen/GlobalISel/
DUtils.cpp714 auto PSV = MPO.V.dyn_cast<const PseudoSourceValue *>(); in inferAlignFromPtrInfo() local
715 if (auto FSPV = dyn_cast_or_null<FixedStackPseudoSourceValue>(PSV)) { in inferAlignFromPtrInfo()
/openbsd/src/gnu/llvm/clang/lib/StaticAnalyzer/Core/
DBugReporter.cpp315 SVal PSV = N->getState()->getSVal(Reg->getRegion()); in getMessage() local
316 SymbolRef AS = PSV.getAsLocSymbol(); in getMessage()