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

12

/freebsd-10.2-release/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/
H A DUndefResultChecker.cpp42 if (state->getSVal(B, LCtx).isUndef()) {
65 if (state->getSVal(B->getLHS(), LCtx).isUndef()) {
69 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 DUndefinedArraySubscriptChecker.cpp39 if (!C.getSVal(Index).isUndef())
H A DUndefBranchChecker.cpp51 return St->getSVal(Ex, LCtx).isUndef();
64 if (X.isUndef()) {
H A DCallAndMessageChecker.cpp123 if (V.isUndef()) {
173 if (V.isUndef())
235 if (L.isUndef()) {
262 if (Arg.isUndef()) {
290 if (V.isUndef()) {
362 if (recVal.isUndef()) {
H A DExprInspectionChecker.cpp67 if (AssertionVal.isUndef())
H A DReturnUndefChecker.cpp49 if (RetVal.isUndef()) {
H A DDereferenceChecker.cpp180 if (l.isUndef()) {
228 if (V.isUndef())
H A DVLASizeChecker.cpp96 if (sizeV.isUndef()) {
H A DCStringChecker.cpp617 assert(!strLength.isUndef() && "Attempt to set an undefined string length");
1185 if (strLength.isUndef())
1340 if (strLength.isUndef())
1400 if (dstStrLength.isUndef())
1450 assert(!amountCopied.isUndef());
1499 if (dstStrLength.isUndef())
1522 assert(!finalStrLength.isUndef());
1696 if (s1Length.isUndef())
1701 if (s2Length.isUndef())
H A DNSErrorChecker.cpp206 if (loc.isUndef() || !loc.getAs<Loc>())
/freebsd-10.2-release/contrib/llvm/lib/CodeGen/
H A DLiveRegUnits.cpp64 if (!O->isReg() || !O->readsReg() || O->isUndef())
H A DMachineInstrBundle.cpp145 if (MO.isUndef())
199 bool isUndef = UndefUseSet.count(Reg); local
200 MIB.addReg(Reg, getKillRegState(isKill) | getUndefRegState(isUndef) |
H A DRegisterScavenging.cpp138 if (MO.isUndef())
208 if (MO.isUndef())
311 if (!MO.isReg() || MO.isUndef() || !MO.getReg())
371 if (MO.isReg() && MO.getReg() != 0 && !(MO.isUse() && MO.isUndef()) &&
H A DMachineInstr.cpp130 bool isKill, bool isDead, bool isUndef,
151 IsUndef = isUndef;
269 if (isDef() || isKill() || isDead() || isImplicit() || isUndef() ||
283 if (isUndef() && getSubReg())
300 if (isUndef() && isUse()) {
1037 Use |= !MO.isUndef();
1038 else if (MO.getSubReg() && !MO.isUndef())
1645 if (!MO.isReg() || !MO.isUse() || MO.isUndef())
129 ChangeToRegister(unsigned Reg, bool isDef, bool isImp, bool isKill, bool isDead, bool isUndef, bool isDebug) argument
H A DExpandPostRAPseudos.cpp151 if (SrcMO.isUndef() || MI->getNumOperands() > 2) {
H A DPostRASchedulerList.cpp522 if (!MO.isReg() || !MO.isUse() || MO.isUndef()) continue;
557 if (!MO.isReg() || !MO.isUse() || MO.isUndef()) continue;
/freebsd-10.2-release/contrib/llvm/include/llvm/CodeGen/
H A DMachineOperand.h294 bool isUndef() const { function in class:llvm::MachineOperand
328 return !isUndef() && !isInternalRead() && (isUse() || getSubReg());
536 bool isUndef = false, bool isDebug = false);
562 bool isUndef = false,
574 Op.IsUndef = isUndef;
/freebsd-10.2-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 LLVM_DELETED_FUNCTION;
220 return !V.isUndef();
/freebsd-10.2-release/contrib/llvm/lib/Target/SystemZ/
H A DSystemZShortenInst.cpp140 } else if (!MO.isUndef()) {
/freebsd-10.2-release/contrib/llvm/tools/clang/lib/StaticAnalyzer/Core/
H A DExprEngineObjC.cpp162 if (!recVal.isUndef()) {
H A DSValBuilder.cpp336 if (lhs.isUndef() || rhs.isUndef())
/freebsd-10.2-release/contrib/llvm/lib/Target/ARM/
H A DThumb2SizeReduction.cpp261 if (!MO.isReg() || MO.isUndef() || MO.isUse())
271 if (!MO.isReg() || MO.isUndef() || MO.isDef())
863 if (!MO.isReg() || MO.isUndef() || MO.isUse())
879 if (!MO.isReg() || MO.isUndef() || MO.isDef())
H A DARMLoadStoreOptimizer.cpp536 unsigned PRegNum = PMO.isUndef() ? UINT_MAX : TRI->getEncodingValue(PReg);
562 unsigned RegNum = MO.isUndef() ? UINT_MAX : TRI->getEncodingValue(Reg);
1084 MI->getOperand(0).isUndef())
1089 MI->getOperand(1).isUndef())
1200 bool EvenUndef = MI->getOperand(0).isUndef();
1203 bool OddUndef = MI->getOperand(1).isUndef();
1205 bool BaseUndef = BaseOp.isUndef();
1207 bool OffUndef = isT2 ? false : MI->getOperand(3).isUndef();
/freebsd-10.2-release/contrib/llvm/lib/Target/Hexagon/
H A DHexagonPeephole.cpp235 false /*isUndef*/,
331 Src.isKill(), Src.isDead(), Src.isUndef(),

Completed in 259 milliseconds

12