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 42 if (state->getSVal(B, LCtx).isUndef()) {
56 if (state->getSVal(B->getLHS(), LCtx).isUndef()) {
60 else if (state->getSVal(B->getRHS(), LCtx).isUndef()) {
UndefinedAssignmentChecker.cpp 38 if (!val.isUndef())
58 if (state->getSVal(B->getLHS(), 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()) {
ReturnUndefChecker.cpp 49 if (RetVal.isUndef()) {
CallAndMessageChecker.cpp 118 if (V.isUndef()) {
168 if (V.isUndef())
230 if (L.isUndef()) {
260 if (V.isUndef()) {
310 if (recVal.isUndef()) {
ExprInspectionChecker.cpp 63 if (AssertionVal.isUndef())
DereferenceChecker.cpp 180 if (l.isUndef()) {
228 if (V.isUndef())
VLASizeChecker.cpp 96 if (sizeV.isUndef()) {
CStringChecker.cpp 614 assert(!strLength.isUndef() && "Attempt to set an undefined string length");
    [all...]
NSErrorChecker.cpp 206 if (loc.isUndef() || !loc.getAs<Loc>())
  /frameworks/compile/mclinker/unittests/
StaticResolverTest.cpp 282 ASSERT_TRUE( sym->isUndef() );
298 ASSERT_TRUE( sym->isUndef() );
314 ASSERT_FALSE( sym->isUndef() );
331 ASSERT_FALSE( sym->isUndef() );
346 ASSERT_FALSE( sym->isUndef() );
360 ASSERT_TRUE( sym->isUndef() );
382 ASSERT_TRUE( sym->isUndef() );
397 ASSERT_TRUE( sym->isUndef() );
413 ASSERT_TRUE( sym->isUndef() );
428 ASSERT_TRUE( sym->isUndef() );
    [all...]
  /external/llvm/include/llvm/CodeGen/
MachineOperand.h 98 /// IsUndef - True if this register operand reads an "undef" value, i.e. the
115 bool IsUndef : 1;
294 bool isUndef() const {
296 return IsUndef;
328 return !isUndef() && !isInternalRead() && (isUse() || getSubReg());
380 IsUndef = Val;
536 bool isUndef = false, bool isDebug = false);
562 bool isUndef = false,
572 Op.IsUndef = isUndef;
    [all...]
  /external/llvm/lib/CodeGen/
MachineInstrBundle.cpp 145 if (MO.isUndef())
199 bool isUndef = UndefUseSet.count(Reg);
200 MIB.addReg(Reg, getKillRegState(isKill) | getUndefRegState(isUndef) |
RegisterScavenging.cpp 153 if (MO.isUndef())
176 if (MO.isUndef())
279 if (!MO.isReg() || MO.isUndef() || !MO.getReg())
MachineInstr.cpp 130 bool isKill, bool isDead, bool isUndef,
151 IsUndef = isUndef;
269 if (isDef() || isKill() || isDead() || isImplicit() || isUndef() ||
283 if (isUndef() && getSubReg())
300 if (isUndef() && isUse()) {
    [all...]
ExpandPostRAPseudos.cpp 151 if (SrcMO.isUndef() || MI->getNumOperands() > 2) {
  /external/clang/include/clang/StaticAnalyzer/Core/PathSensitive/
SVals.h 121 inline bool isUndef() const {
198 bool isUndef() const LLVM_DELETED_FUNCTION;
212 return !V.isUndef();
  /frameworks/compile/mclinker/include/mcld/LD/
ResolveInfo.h 163 bool isUndef() const;
  /external/clang/lib/StaticAnalyzer/Core/
SValBuilder.cpp 254 if (lhs.isUndef() || rhs.isUndef())
ExprEngineObjC.cpp 162 if (!recVal.isUndef()) {
  /external/llvm/lib/Target/ARM/
Thumb2SizeReduction.cpp 242 if (!MO.isReg() || MO.isUndef() || MO.isUse())
252 if (!MO.isReg() || MO.isUndef() || MO.isDef())
837 if (!MO.isReg() || MO.isUndef() || MO.isUse())
853 if (!MO.isReg() || MO.isUndef() || MO.isDef())
    [all...]
  /external/llvm/lib/Target/Hexagon/
HexagonPeephole.cpp 212 false /*isUndef*/,
308 Src.isKill(), Src.isDead(), Src.isUndef(),
  /frameworks/compile/mclinker/lib/LD/
ResolveInfo.cpp 146 bool ResolveInfo::isUndef() const
  /frameworks/compile/mclinker/lib/Target/ARM/
ARMRelocator.cpp 83 ((!pReloc.symInfo()->isUndef() || pReloc.symInfo()->isDyn()) &&
121 pSym.isUndef() ||
495 pReloc.symInfo()->isUndef() &&
547 pReloc.symInfo()->isUndef() &&

Completed in 1340 milliseconds

1 2 3