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

12

/external/clang/lib/StaticAnalyzer/Checkers/
H A DUndefResultChecker.cpp41 if (state->getSVal(B, LCtx).isUndef()) {
55 if (state->getSVal(B->getLHS(), LCtx).isUndef()) {
59 else if (state->getSVal(B->getRHS(), LCtx).isUndef()) {
H A DUndefinedAssignmentChecker.cpp38 if (!val.isUndef())
58 if (state->getSVal(B->getLHS(), C.getLocationContext()).isUndef()) {
H A DReturnUndefChecker.cpp41 if (!C.getState()->getSVal(RetE, C.getLocationContext()).isUndef())
H A DUndefinedArraySubscriptChecker.cpp37 if (C.getState()->getSVal(A->getIdx(), C.getLocationContext()).isUndef()) {
H A DUndefBranchChecker.cpp51 return St->getSVal(Ex, LCtx).isUndef();
64 if (X.isUndef()) {
H A DUndefCapturedBlockVarChecker.cpp81 if (VRVal.isUndef())
H A DCallAndMessageChecker.cpp115 if (V.isUndef()) {
165 if (V.isUndef())
227 if (L.isUndef()) {
256 if (V.isUndef()) {
305 if (recVal.isUndef()) {
H A DExprInspectionChecker.cpp62 if (AssertionVal.isUndef())
H A DDereferenceChecker.cpp176 if (l.isUndef()) {
224 if (V.isUndef())
H A DOSAtomicChecker.cpp146 if (theValueVal_untested.isUndef() || oldValueVal_untested.isUndef()) {
H A DVLASizeChecker.cpp95 if (sizeV.isUndef()) {
H A DCStringChecker.cpp626 assert(!strLength.isUndef() && "Attempt to set an undefined string length");
1163 if (strLength.isUndef())
1324 if (strLength.isUndef())
1385 if (dstStrLength.isUndef())
1435 assert(!amountCopied.isUndef());
1484 if (dstStrLength.isUndef())
1507 assert(!finalStrLength.isUndef());
1674 if (s1Length.isUndef())
1679 if (s2Length.isUndef())
H A DNSErrorChecker.cpp219 if (loc.isUndef() || !isa<Loc>(loc))
/external/llvm/lib/CodeGen/
H A DMachineInstrBundle.cpp143 if (MO.isUndef())
198 bool isUndef = UndefUseSet.count(Reg); local
199 MIB.addReg(Reg, getKillRegState(isKill) | getUndefRegState(isUndef) |
H A DRegisterScavenging.cpp160 if (MO.isUndef())
183 if (MO.isUndef())
286 if (!MO.isReg() || MO.isUndef() || !MO.getReg())
H A DMachineInstr.cpp131 bool isKill, bool isDead, bool isUndef,
152 IsUndef = isUndef;
269 if (isDef() || isKill() || isDead() || isImplicit() || isUndef() ||
283 if (isUndef() && getSubReg())
300 if (isUndef() && isUse()) {
1095 Use |= !MO.isUndef();
1096 else if (MO.getSubReg() && !MO.isUndef())
1752 if (!MO.isReg() || !MO.isUse() || MO.isUndef())
130 ChangeToRegister(unsigned Reg, bool isDef, bool isImp, bool isKill, bool isDead, bool isUndef, bool isDebug) argument
H A DExpandPostRAPseudos.cpp158 if (DstMO.isDead() || SrcMO.isUndef() || MI->getNumOperands() > 2) {
/external/llvm/include/llvm/CodeGen/
H A DMachineOperand.h292 bool isUndef() const { function in class:llvm::MachineOperand
326 return !isUndef() && !isInternalRead() && (isUse() || getSubReg());
533 bool isUndef = false, bool isDebug = false);
559 bool isUndef = false,
569 Op.IsUndef = isUndef;
/external/clang/include/clang/StaticAnalyzer/Core/PathSensitive/
H A DSVals.h98 inline bool isUndef() const { function in class:clang::ento::SVal
176 bool isUndef() const;
189 return !V->isUndef();
/external/clang/lib/StaticAnalyzer/Core/
H A DSValBuilder.cpp254 if (lhs.isUndef() || rhs.isUndef())
H A DExprEngineObjC.cpp170 if (!recVal.isUndef()) {
/external/llvm/lib/Target/ARM/
H A DThumb2SizeReduction.cpp231 if (!MO.isReg() || MO.isUndef() || MO.isUse())
241 if (!MO.isReg() || MO.isUndef() || MO.isDef())
814 if (!MO.isReg() || MO.isUndef() || MO.isUse())
830 if (!MO.isReg() || MO.isUndef() || MO.isDef())
H A DARMLoadStoreOptimizer.cpp459 unsigned PRegNum = PMO.isUndef() ? UINT_MAX : TRI->getEncodingValue(PReg);
485 unsigned RegNum = MO.isUndef() ? UINT_MAX : TRI->getEncodingValue(Reg);
1004 MI->getOperand(0).isUndef())
1009 MI->getOperand(1).isUndef())
1120 bool EvenUndef = MI->getOperand(0).isUndef();
1123 bool OddUndef = MI->getOperand(1).isUndef();
1125 bool BaseUndef = BaseOp.isUndef();
1127 bool OffUndef = isT2 ? false : MI->getOperand(3).isUndef();
/external/llvm/lib/Target/Hexagon/
H A DHexagonPeephole.cpp212 false /*isUndef*/,
308 Src.isKill(), Src.isDead(), Src.isUndef(),
/external/clang/lib/ARCMigrate/
H A DARCMT.cpp187 bool isUndef = origCI.getPreprocessorOpts().Macros[i].second; local
188 if (isUndef)

Completed in 397 milliseconds

12