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()) {
65 if (state->getSVal(B->getLHS(), LCtx).isUndef()) {
69 else if (state->getSVal(B->getRHS(), LCtx).isUndef()) {
UndefinedAssignmentChecker.cpp 38 if (!val.isUndef())
66 if (state->getSVal(B->getLHS(), C.getLocationContext()).isUndef()) {
UndefinedArraySubscriptChecker.cpp 39 if (!C.getSVal(Index).isUndef())
UndefBranchChecker.cpp 51 return St->getSVal(Ex, LCtx).isUndef();
64 if (X.isUndef()) {
CallAndMessageChecker.cpp 119 if (V.isUndef()) {
169 if (V.isUndef())
231 if (L.isUndef()) {
261 if (V.isUndef()) {
333 if (recVal.isUndef()) {
ExprInspectionChecker.cpp 65 if (AssertionVal.isUndef())
ReturnUndefChecker.cpp 49 if (RetVal.isUndef()) {
DereferenceChecker.cpp 180 if (l.isUndef()) {
228 if (V.isUndef())
VLASizeChecker.cpp 96 if (sizeV.isUndef()) {
CStringChecker.cpp 616 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 138 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()) &&
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 {
206 bool isUndef() const LLVM_DELETED_FUNCTION;
220 return !V.isUndef();
  /frameworks/compile/mclinker/include/mcld/LD/
ResolveInfo.h 162 bool isUndef() const;
  /external/clang/lib/StaticAnalyzer/Core/
ExprEngineObjC.cpp 162 if (!recVal.isUndef()) {
  /external/llvm/lib/Target/ARM/
Thumb2SizeReduction.cpp 261 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())
    [all...]
  /external/llvm/lib/Target/Hexagon/
HexagonPeephole.cpp 235 false /*isUndef*/,
331 Src.isKill(), Src.isDead(), Src.isUndef(),
  /frameworks/compile/mclinker/lib/LD/
ResolveInfo.cpp 149 bool ResolveInfo::isUndef() const
  /frameworks/compile/mclinker/lib/Target/X86/
X86Relocator.cpp 84 if (rsym->isUndef() && !rsym->isDyn() && !rsym->isWeak() && !rsym->isNull())
254 config().codeGenType() || rsym->isUndef() || rsym->isDyn()) {
457 config().codeGenType() || rsym->isUndef() || rsym->isDyn()) {
684 pSym.isUndef() ||
    [all...]
  /frameworks/compile/mclinker/lib/Target/ARM/
ARMRelocator.cpp 516 if (rsym->isUndef() && !rsym->isDyn() && !rsym->isWeak() && !rsym->isNull())
528 ((!pReloc.symInfo()->isUndef() || pReloc.symInfo()->isDyn()) &&
567 pSym.isUndef() ||
974 pReloc.symInfo()->isUndef() &
    [all...]

Completed in 616 milliseconds

1 2 3