Searched refs:isUndef (Results 1 - 25 of 60) sorted by relevance

123

/freebsd-11.0-release/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/
H A DUndefResultChecker.cpp42 if (state->getSVal(B, LCtx).isUndef()) {
66 if (state->getSVal(B->getLHS(), LCtx).isUndef()) {
70 else if (state->getSVal(B->getRHS(), LCtx).isUndef()) {
H A DUndefinedAssignmentChecker.cpp38 if (!val.isUndef())
66 if (state->getSVal(B->getLHS(), C.getLocationContext()).isUndef()) {
H A DUndefBranchChecker.cpp49 return St->getSVal(Ex, LCtx).isUndef();
62 if (X.isUndef()) {
H A DUndefinedArraySubscriptChecker.cpp39 if (!C.getSVal(Index).isUndef())
H A DCallAndMessageChecker.cpp171 if (PSV.isUndef()) {
202 if (V.isUndef()) {
251 if (V.isUndef())
313 if (L.isUndef()) {
339 if (Arg.isUndef()) {
368 if (V.isUndef()) {
445 if (recVal.isUndef()) {
H A DReturnUndefChecker.cpp49 if (RetVal.isUndef()) {
H A DExprInspectionChecker.cpp74 if (AssertionVal.isUndef())
H A DVLASizeChecker.cpp100 if (sizeV.isUndef()) {
H A DDereferenceChecker.cpp192 if (l.isUndef()) {
245 if (V.isUndef())
H A DNSErrorChecker.cpp208 if (loc.isUndef() || !loc.getAs<Loc>())
H A DCStringChecker.cpp631 assert(!strLength.isUndef() && "Attempt to set an undefined string length");
1280 if (strLength.isUndef())
1437 if (strLength.isUndef())
1497 if (dstStrLength.isUndef())
1547 assert(!amountCopied.isUndef());
1596 if (dstStrLength.isUndef())
1619 assert(!finalStrLength.isUndef());
1794 if (s1Length.isUndef())
1799 if (s2Length.isUndef())
/freebsd-11.0-release/contrib/llvm/lib/Target/PowerPC/
H A DPPCVSXFMAMutate.cpp211 bool AddRegUndef = AddendMI->getOperand(1).isUndef();
212 bool KilledProdRegUndef = MI->getOperand(KilledProdOp).isUndef();
213 bool OtherProdRegUndef = MI->getOperand(OtherProdOp).isUndef();
/freebsd-11.0-release/contrib/llvm/include/llvm/CodeGen/
H A DMachineOperand.h302 bool isUndef() const { function in class:llvm::MachineOperand
336 return !isUndef() && !isInternalRead() && (isUse() || getSubReg());
573 bool isUndef = false, bool isDebug = false);
599 bool isUndef = false,
611 Op.IsUndef = isUndef;
/freebsd-11.0-release/contrib/llvm/lib/CodeGen/
H A DMachineInstrBundle.cpp157 if (MO.isUndef())
211 bool isUndef = UndefUseSet.count(Reg); local
212 MIB.addReg(Reg, getKillRegState(isKill) | getUndefRegState(isUndef) |
H A DRegisterScavenging.cpp135 if (MO.isUndef())
205 if (MO.isUndef())
316 if (!MO.isReg() || MO.isUndef() || !MO.getReg())
376 if (MO.isReg() && MO.getReg() != 0 && !(MO.isUse() && MO.isUndef()) &&
H A DLivePhysRegs.cpp60 if (!O->isReg() || !O->readsReg() || O->isUndef())
H A DMachineInstr.cpp177 bool isKill, bool isDead, bool isUndef,
198 IsUndef = isUndef;
318 if (isDef() || isKill() || isDead() || isImplicit() || isUndef() ||
332 if (isUndef() && getSubReg())
349 if (isUndef() && isUse()) {
1267 Use |= !MO.isUndef();
1268 else if (MO.getSubReg() && !MO.isUndef())
1878 if (!MO.isReg() || !MO.isUse() || MO.isUndef())
176 ChangeToRegister(unsigned Reg, bool isDef, bool isImp, bool isKill, bool isDead, bool isUndef, bool isDebug) argument
H A DExpandPostRAPseudos.cpp153 if (SrcMO.isUndef() || MI->getNumOperands() > 2) {
/freebsd-11.0-release/contrib/llvm/tools/clang/lib/StaticAnalyzer/Core/
H A DExprEngineObjC.cpp173 if (!recVal.isUndef()) {
232 if (!recVal.isUndef()) {
H A DSValBuilder.cpp364 if (lhs.isUndef() || rhs.isUndef())
/freebsd-11.0-release/contrib/llvm/tools/clang/include/clang/StaticAnalyzer/Core/PathSensitive/
H A DSVals.h121 inline bool isUndef() const { function in class:clang::ento::SVal
206 bool isUndef() const = delete;
220 return !V.isUndef();
/freebsd-11.0-release/contrib/llvm/lib/Target/AMDGPU/
H A DSIShrinkInstructions.cpp197 Orig.isUndef(),
/freebsd-11.0-release/contrib/llvm/lib/Target/ARM/
H A DThumb2SizeReduction.cpp267 if (!MO.isReg() || MO.isUndef() || MO.isUse())
276 if (!MO.isReg() || MO.isUndef() || MO.isDef())
878 if (!MO.isReg() || MO.isUndef() || MO.isUse())
893 if (!MO.isReg() || MO.isUndef() || MO.isDef())
/freebsd-11.0-release/contrib/llvm/lib/Target/Hexagon/
H A DHexagonPeephole.cpp235 false /*isUndef*/,
323 Src.isKill(), Src.isDead(), Src.isUndef(),
/freebsd-11.0-release/contrib/llvm/lib/Target/WebAssembly/
H A DWebAssemblyRegStackify.cpp99 if (!MO.isReg() || MO.isUndef())

Completed in 317 milliseconds

123