HomeSort by relevance Sort by last modified time
    Searched refs:isUndef (Results 1 - 25 of 54) sorted by null

1 2 3

  /external/clang/lib/StaticAnalyzer/Checkers/
UndefResultChecker.cpp 41 if (state->getSVal(B, LCtx).isUndef()) {
55 if (state->getSVal(B->getLHS(), LCtx).isUndef()) {
59 else if (state->getSVal(B->getRHS(), LCtx).isUndef()) {
UndefinedAssignmentChecker.cpp 38 if (!val.isUndef())
58 if (state->getSVal(B->getLHS(), C.getLocationContext()).isUndef()) {
ReturnUndefChecker.cpp 41 if (!C.getState()->getSVal(RetE, C.getLocationContext()).isUndef())
UndefinedArraySubscriptChecker.cpp 37 if (C.getState()->getSVal(A->getIdx(), C.getLocationContext()).isUndef()) {
UndefBranchChecker.cpp 51 return St->getSVal(Ex, LCtx).isUndef();
64 if (X.isUndef()) {
CallAndMessageChecker.cpp 115 if (V.isUndef()) {
165 if (V.isUndef())
227 if (L.isUndef()) {
256 if (V.isUndef()) {
305 if (recVal.isUndef()) {
ExprInspectionChecker.cpp 62 if (AssertionVal.isUndef())
UndefCapturedBlockVarChecker.cpp 81 if (VRVal.isUndef())
DereferenceChecker.cpp 176 if (l.isUndef()) {
224 if (V.isUndef())
OSAtomicChecker.cpp 146 if (theValueVal_untested.isUndef() || oldValueVal_untested.isUndef()) {
VLASizeChecker.cpp 95 if (sizeV.isUndef()) {
CStringChecker.cpp 626 assert(!strLength.isUndef() && "Attempt to set an undefined string length");
    [all...]
NSErrorChecker.cpp 219 if (loc.isUndef() || !isa<Loc>(loc))
  /frameworks/compile/mclinker/unittests/
StaticResolverTest.cpp 299 ASSERT_TRUE( sym->isUndef() );
315 ASSERT_TRUE( sym->isUndef() );
331 ASSERT_FALSE( sym->isUndef() );
348 ASSERT_FALSE( sym->isUndef() );
363 ASSERT_FALSE( sym->isUndef() );
377 ASSERT_TRUE( sym->isUndef() );
399 ASSERT_TRUE( sym->isUndef() );
414 ASSERT_TRUE( sym->isUndef() );
430 ASSERT_TRUE( sym->isUndef() );
445 ASSERT_TRUE( sym->isUndef() );
    [all...]
  /external/llvm/lib/CodeGen/
MachineInstrBundle.cpp 143 if (MO.isUndef())
198 bool isUndef = UndefUseSet.count(Reg);
199 MIB.addReg(Reg, getKillRegState(isKill) | getUndefRegState(isUndef) |
RegisterScavenging.cpp 160 if (MO.isUndef())
183 if (MO.isUndef())
286 if (!MO.isReg() || MO.isUndef() || !MO.getReg())
MachineInstr.cpp 131 bool isKill, bool isDead, bool isUndef,
152 IsUndef = isUndef;
269 if (isDef() || isKill() || isDead() || isImplicit() || isUndef() ||
283 if (isUndef() && getSubReg())
300 if (isUndef() && isUse()) {
    [all...]
ExpandPostRAPseudos.cpp 158 if (DstMO.isDead() || SrcMO.isUndef() || MI->getNumOperands() > 2) {
  /external/llvm/include/llvm/CodeGen/
MachineOperand.h 97 /// IsUndef - True if this register operand reads an "undef" value, i.e. the
114 bool IsUndef : 1;
292 bool isUndef() const {
294 return IsUndef;
326 return !isUndef() && !isInternalRead() && (isUse() || getSubReg());
377 IsUndef = Val;
533 bool isUndef = false, bool isDebug = false);
559 bool isUndef = false,
569 Op.IsUndef = isUndef;
    [all...]
  /external/clang/include/clang/StaticAnalyzer/Core/PathSensitive/
SVals.h 98 inline bool isUndef() const {
176 bool isUndef() const;
189 return !V->isUndef();
  /frameworks/compile/mclinker/include/mcld/LD/
ResolveInfo.h 155 bool isUndef() const;
  /frameworks/compile/mclinker/lib/LD/
ResolveInfo.cpp 136 bool ResolveInfo::isUndef() const
  /frameworks/compile/mclinker/lib/MC/
MCLinker.cpp 321 if (NULL == info || !(info->isUndef() || info->isDyn())) {
418 if (NULL == info || !(info->isUndef() || info->isDyn())) {
611 if (pResolveInfo.isUndef() && !pResolveInfo.isDyn() && !pResolveInfo.isWeak())
  /external/clang/lib/StaticAnalyzer/Core/
SValBuilder.cpp 254 if (lhs.isUndef() || rhs.isUndef())
ExprEngineObjC.cpp 170 if (!recVal.isUndef()) {

Completed in 615 milliseconds

1 2 3