Home
last modified time | relevance | path

Searched refs:isUndef (Results 1 – 25 of 147) sorted by relevance

123456

/openbsd/gnu/llvm/llvm/include/llvm/Analysis/
H A DValueLattice.h240 bool isUndef() const { return Tag == undef; } in isUndef() function
296 if (isUndef()) in markUndef()
318 assert(isUnknown() || isUndef());
359 (isUndef() || isConstantRangeIncludingUndef() || Opts.MayIncludeUndef)
378 assert(isUnknown() || isUndef());
397 if (isUndef()) {
399 if (RHS.isUndef())
418 if (RHS.isUndef())
433 if (RHS.isUndef()) {
/openbsd/gnu/llvm/llvm/lib/Analysis/
H A DValueLattice.cpp23 if (isUndef() || Other.isUndef()) in getCompare()
58 if (Val.isUndef()) in operator <<()
/openbsd/gnu/llvm/clang/lib/StaticAnalyzer/Checkers/
H A DUndefResultChecker.cpp78 if (C.getSVal(B).isUndef()) { in checkPostStmt()
102 if (C.getSVal(B->getLHS()).isUndef()) { in checkPostStmt()
106 else if (C.getSVal(B->getRHS()).isUndef()) { in checkPostStmt()
H A DUndefBranchChecker.cpp52 return St->getSVal(Ex, LCtx).isUndef(); in MatchesCriteria()
68 if (X.isUndef()) { in checkBranchCondition()
H A DUndefinedAssignmentChecker.cpp37 if (!val.isUndef()) in checkBind()
75 if (C.getSVal(B->getLHS()).isUndef()) { in checkBind()
H A DBuiltinFunctionChecker.cpp50 if (Arg.isUndef()) in evalCall()
93 if (Size.isUndef()) in evalCall()
H A DCallAndMessageChecker.cpp222 if (PSV.isUndef()) { in uninitRefOrPointer()
267 if (V.isUndef()) in Find()
295 if (V.isUndef()) { in PreVisitProcessArg()
376 if (L.isUndef()) { in checkFunctionPointerCall()
447 if (V.isUndef()) { in checkCXXMethodCall()
484 if (!Arg.isUndef()) in checkCXXDeallocation()
578 if (recVal.isUndef()) { in checkPreObjCMessage()
H A DUndefinedArraySubscriptChecker.cpp38 if (!C.getSVal(Index).isUndef()) in checkPreStmt()
H A DUndefinedNewArraySizeChecker.cpp48 if (SizeVal.isUndef()) in checkPreCall()
H A DDereferenceChecker.cpp241 if (l.isUndef()) { in checkLocation()
287 if (V.isUndef()) in checkBind()
H A DReturnUndefChecker.cpp48 if (RetVal.isUndef()) { in checkPreStmt()
/openbsd/gnu/llvm/llvm/lib/CodeGen/
H A DBreakFalseDeps.cpp117 assert(MO.isUndef() && "Expected undef machine operand"); in pickBestRegisterForUndef()
143 if (!CurrMO.isReg() || CurrMO.isDef() || CurrMO.isUndef() || in pickBestRegisterForUndef()
198 if (!MO.isReg() || !MO.getReg() || !MO.isUse() || !MO.isUndef()) in processDefs()
H A DRegisterScavenging.cpp141 if (MO.isUndef()) in determineKillsAndDefs()
190 if (MO.isUndef()) in forward()
309 if (!MO.isReg() || MO.isUndef() || !MO.getReg()) in findSurvivorReg()
535 if (MO.isReg() && MO.getReg() != 0 && !(MO.isUse() && MO.isUndef()) && in scavengeRegister()
741 assert((!MO.isUndef() || MO.isDef()) && "Cannot handle undef uses"); in scavengeFrameVirtualRegsInBlock()
756 assert((!MO.isUndef() || MO.isDef()) && "Cannot handle undef uses"); in scavengeFrameVirtualRegsInBlock()
H A DExpandPostRAPseudos.cpp153 if (IdentityCopy || SrcMO.isUndef()) { in LowerCopy()
158 if (SrcMO.isUndef() || MI->getNumOperands() > 2) { in LowerCopy()
H A DMachineInstrBundle.cpp173 if (MO.isUndef()) in finalizeBundle()
227 bool isUndef = UndefUseSet.count(Reg); in finalizeBundle() local
228 MIB.addReg(Reg, getKillRegState(isKill) | getUndefRegState(isUndef) | in finalizeBundle()
H A DRegAllocFast.cpp850 assert(MO.isUndef() && "expected undef use"); in allocVirtRegUndef()
900 if (MO.getSubReg() && !MO.isUndef()) { in defineLiveThroughVirtReg()
1048 if (MO.isDef() && MO.isUndef()) { in setPhysReg()
1154 return TiedMO.isUndef(); in allocateInstruction()
1178 (MO.getSubReg() != 0 && !MO.isUndef())) in allocateInstruction()
1262 (MO0.getSubReg() == 0 && !MO0.isUndef()); in allocateInstruction()
1264 (MO1.getSubReg() == 0 && !MO1.isUndef()); in allocateInstruction()
1280 (MO.getSubReg() && !MO.isUndef())) { in allocateInstruction()
1376 if (MO.isUndef()) { in allocateInstruction()
1403 assert(MO.isUndef() && "Should only have undef virtreg uses left"); in allocateInstruction()
H A DPHIElimination.cpp263 if (!isImplicitlyDefined(MO.getReg(), MRI) && !MO.isUndef()) in allPhiOperandsUndefined()
429 if (!MPhi->getOperand(i).isUndef()) { in LowerPHINode()
442 bool SrcUndef = MPhi->getOperand(i*2+1).isUndef() || in LowerPHINode()
641 if (!BBI.getOperand(i).isUndef()) { in analyzePHINodes()
H A DDeadMachineInstructionElim.cpp90 assert(U.isUndef() && "'Undef' use on a 'dead' register is found!"); in isDead()
/openbsd/gnu/llvm/llvm/lib/Target/PowerPC/
H A DPPCVSXFMAMutate.cpp229 bool AddRegUndef = AddendMI->getOperand(1).isUndef(); in processBlock()
230 bool KilledProdRegUndef = MI.getOperand(KilledProdOp).isUndef(); in processBlock()
231 bool OtherProdRegUndef = MI.getOperand(OtherProdOp).isUndef(); in processBlock()
/openbsd/gnu/llvm/llvm/tools/llvm-exegesis/lib/
H A DClustering.h58 bool isUndef() const { return Id_ == kUndef; } in isUndef() function
97 assert(!Id.isUndef() && "unlabeled cluster"); in getCluster()
/openbsd/gnu/llvm/llvm/lib/CodeGen/SelectionDAG/
H A DSelectionDAG.cpp234 if (Op.isUndef()) in isConstantSplatVectorAllZeros()
275 if (Op.isUndef()) in isBuildVectorOfConstantSDNodes()
288 if (Op.isUndef()) in isBuildVectorOfConstantFPSDNodes()
318 if (Op.isUndef()) in isVectorShrinkable()
1947 if (N1.isUndef() && N2.isUndef()) in getVectorShuffle()
2411 if ((N1.isUndef() || N2.isUndef()) && in FoldSetCC()
2417 if (N1.isUndef() && N2.isUndef()) in FoldSetCC()
6055 if (N1.isUndef() && N2.isUndef()) in foldConstantFPMath()
6057 if (N1.isUndef() || N2.isUndef()) in foldConstantFPMath()
6380 if (N1.isUndef() || N2.isUndef()) in getNode()
[all …]
H A DDAGCombiner.cpp2720 if (N0.isUndef() || N1.isUndef()) in visitADDSAT()
3836 if (N0.isUndef() || N1.isUndef()) in visitSUBSAT()
3982 if (N0.isUndef() || N1.isUndef()) in visitMULFIX()
4004 if (N0.isUndef() || N1.isUndef()) in visitMUL()
4754 if (N0.isUndef() || N1.isUndef()) in visitMULHS()
4812 if (N0.isUndef() || N1.isUndef()) in visitMULHU()
5641 if (N0.isUndef() || N1.isUndef()) in visitANDLike()
6999 if (!LegalOperations && (N0.isUndef() || N1.isUndef())) in visitORLike()
8679 if (N0.isUndef() && N1.isUndef()) in visitXOR()
11257 if (N1Elt.isUndef() || N2Elt.isUndef()) in foldVSelectOfConstants()
[all …]
/openbsd/gnu/llvm/llvm/include/llvm/CodeGen/
H A DMachineOperand.h401 bool isUndef() const { in isUndef() function
466 return !isUndef() && !isInternalRead() && (isUse() || getSubReg()); in readsReg()
801 bool isUndef = false, bool isDebug = false);
832 bool isUndef = false,
844 Op.IsUndef = isUndef;
/openbsd/gnu/llvm/clang/lib/StaticAnalyzer/Core/
H A DExprEngineObjC.cpp185 if (!recVal.isUndef()) { in VisitObjCMessage()
249 if (!recVal.isUndef()) { in VisitObjCMessage()
/openbsd/gnu/llvm/clang/include/clang/StaticAnalyzer/Core/PathSensitive/
H A DSVals.h128 bool isUndef() const { in isUndef() function
224 bool isUndef() const = delete;
227 static bool classof(SVal V) { return !V.isUndef(); } in classof()

123456