Home
last modified time | relevance | path

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

/external/llvm/lib/Target/Mips/
DMipsDelaySlotFiller.cpp429 if (const PseudoSourceValue *PSV = in hasHazard_() local
431 if (isa<FixedStackPseudoSourceValue>(PSV)) in hasHazard_()
433 return !PSV->isConstant(nullptr) && !PSV->isStack(); in hasHazard_()
483 if (const PseudoSourceValue *PSV = in getUnderlyingObjects() local
485 if (!PSV->isAliased(MFI)) in getUnderlyingObjects()
487 Objects.push_back(PSV); in getUnderlyingObjects()
/external/llvm/lib/CodeGen/MIRParser/
DMIParser.cpp159 bool parseMemoryPseudoSourceValue(const PseudoSourceValue *&PSV);
1586 bool MIParser::parseMemoryPseudoSourceValue(const PseudoSourceValue *&PSV) { in parseMemoryPseudoSourceValue() argument
1589 PSV = MF.getPSVManager().getStack(); in parseMemoryPseudoSourceValue()
1592 PSV = MF.getPSVManager().getGOT(); in parseMemoryPseudoSourceValue()
1595 PSV = MF.getPSVManager().getJumpTable(); in parseMemoryPseudoSourceValue()
1598 PSV = MF.getPSVManager().getConstantPool(); in parseMemoryPseudoSourceValue()
1604 PSV = MF.getPSVManager().getFixedStack(FI); in parseMemoryPseudoSourceValue()
1616 PSV = MF.getPSVManager().getGlobalValueCallEntry(GV); in parseMemoryPseudoSourceValue()
1620 PSV = MF.getPSVManager().getExternalSymbolCallEntry( in parseMemoryPseudoSourceValue()
1640 const PseudoSourceValue *PSV = nullptr; in parseMachinePointerInfo() local
[all …]
/external/mesa3d/src/gallium/drivers/radeon/
DAMDILISelDAGToDAG.cpp278 const PseudoSourceValue *PSV = dyn_cast<PseudoSourceValue>(V); in isCPLoad() local
279 if (PSV && PSV == PseudoSourceValue::getConstantPool()) { in isCPLoad()
/external/clang/lib/StaticAnalyzer/Checkers/
DCallAndMessageChecker.cpp170 const SVal PSV = State->getSVal(SValMemRegion); in uninitRefOrPointer() local
171 if (PSV.isUndef()) { in uninitRefOrPointer()
/external/llvm/lib/CodeGen/
DMachineLICM.cpp853 if (const PseudoSourceValue *PSV = (*I)->getPseudoValue()) { in isLoadFromGOTOrConstantPool() local
854 if (PSV->isGOT() || PSV->isConstantPool()) in isLoadFromGOTOrConstantPool()
DScheduleDAGInstrs.cpp140 if (const PseudoSourceValue *PSV = in getUnderlyingObjectsForInstr() local
152 if (!PSV->isAliased(MFI)) { in getUnderlyingObjectsForInstr()
153 bool MayAlias = PSV->mayAlias(MFI); in getUnderlyingObjectsForInstr()
154 Objects.push_back(UnderlyingObjectsVector::value_type(PSV, MayAlias)); in getUnderlyingObjectsForInstr()
DMachineInstr.cpp559 else if (const PseudoSourceValue *PSV = getPseudoValue()) in print() local
560 PSV->printCustom(OS); in print()
1483 if (const PseudoSourceValue *PSV = (*I)->getPseudoValue()) in isInvariantLoad() local
1484 if (PSV->isConstant(MFI)) in isInvariantLoad()
DMachineVerifier.cpp999 const PseudoSourceValue *PSV = MMO->getPseudoValue(); in visitMachineOperand() local
1000 if (PSV == nullptr) continue; in visitMachineOperand()
1002 dyn_cast<FixedStackPseudoSourceValue>(PSV); in visitMachineOperand()
/external/llvm/lib/Target/AMDGPU/
DAMDGPUISelDAGToDAG.cpp595 const PseudoSourceValue *PSV = MMO->getPseudoValue(); in isCPLoad() local
596 if (PSV && PSV->isConstantPool()) { in isCPLoad()
/external/clang/lib/StaticAnalyzer/Core/
DPathDiagnostic.cpp1153 SVal PSV = State->getSVal(Reg->getRegion()); in getMessage() local
1154 SymbolRef AS = PSV.getAsLocSymbol(); in getMessage()