| /openbsd/src/gnu/llvm/llvm/include/llvm/CodeGen/ |
| D | MIRFormatter.h | 57 const PseudoSourceValue &PSV) const { in printCustomPseudoSourceValue() argument 58 PSV.printCustom(OS); in printCustomPseudoSourceValue() 64 const PseudoSourceValue *&PSV, ErrorCallbackType ErrorCallback) const { in parseCustomPseudoSourceValue() argument
|
| D | PseudoSourceValue.h | 30 raw_ostream &operator<<(raw_ostream &OS, const PseudoSourceValue* PSV); 52 const PseudoSourceValue* PSV);
|
| /openbsd/src/gnu/llvm/llvm/lib/Target/AMDGPU/ |
| D | AMDGPUMIRFormatter.cpp | 22 const PseudoSourceValue *&PSV, ErrorCallbackType ErrorCallback) const { in parseCustomPseudoSourceValue() argument 27 PSV = MFI->getGWSPSV(TM); in parseCustomPseudoSourceValue()
|
| D | AMDGPUMIRFormatter.h | 35 const PseudoSourceValue *&PSV,
|
| /openbsd/src/gnu/llvm/llvm/lib/Target/Mips/ |
| D | MipsDelaySlotFiller.cpp | 482 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/ |
| D | ReducerWorkItem.cpp | 167 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/ |
| D | ScheduleDAGInstrs.cpp | 140 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 <<()
|
| D | ImplicitNullChecks.cpp | 349 if (const PseudoSourceValue *PSV = MMO2->getPseudoValue()) { in areMemoryOpsAliased() local 350 if (PSV->mayAlias(MFI)) in areMemoryOpsAliased()
|
| D | MachineLICM.cpp | 889 if (const PseudoSourceValue *PSV = MemOp->getPseudoValue()) in mayLoadFromGOTOrConstantPool() local 890 if (PSV->isGOT() || PSV->isConstantPool()) in mayLoadFromGOTOrConstantPool()
|
| D | MachineSink.cpp | 376 if (const PseudoSourceValue *PSV = MemOp->getPseudoValue()) in mayLoadFromGOTOrConstantPool() local 377 if (PSV->isGOT() || PSV->isConstantPool()) in mayLoadFromGOTOrConstantPool()
|
| D | TargetInstrInfo.cpp | 1350 const PseudoSourceValue *PSV = MMO->getPseudoValue(); in describeLoadedValue() local 1354 if (!PSV || PSV->mayAlias(&MFI)) in describeLoadedValue()
|
| D | MachineVerifier.cpp | 2276 const PseudoSourceValue *PSV = MMO->getPseudoValue(); in visitMachineOperand() local 2277 if (PSV == nullptr) continue; in visitMachineOperand() 2279 dyn_cast<FixedStackPseudoSourceValue>(PSV); in visitMachineOperand()
|
| D | MachineInstr.cpp | 1429 if (const PseudoSourceValue *PSV = MMO->getPseudoValue()) { in isDereferenceableInvariantLoad() local 1430 if (PSV->isConstant(&MFI)) in isDereferenceableInvariantLoad()
|
| /openbsd/src/gnu/llvm/llvm/lib/CodeGen/MIRParser/ |
| D | MIParser.cpp | 507 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/ |
| D | CallAndMessageChecker.cpp | 221 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/ |
| D | SystemZISelDAGToDAG.cpp | 1491 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/ |
| D | Utils.cpp | 714 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/ |
| D | BugReporter.cpp | 315 SVal PSV = N->getState()->getSVal(Reg->getRegion()); in getMessage() local 316 SymbolRef AS = PSV.getAsLocSymbol(); in getMessage()
|