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

1 2 3

  /external/clang/lib/StaticAnalyzer/Checkers/
UndefResultChecker.cpp 42 if (state->getSVal(B, LCtx).isUndef()) {
66 if (state->getSVal(B->getLHS(), LCtx).isUndef()) {
70 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 164 if (PSV.isUndef()) {
195 if (V.isUndef()) {
244 if (V.isUndef())
306 if (L.isUndef()) {
332 if (Arg.isUndef()) {
361 if (V.isUndef()) {
438 if (recVal.isUndef()) {
ExprInspectionChecker.cpp 67 if (AssertionVal.isUndef())
ReturnUndefChecker.cpp 49 if (RetVal.isUndef()) {
DereferenceChecker.cpp 180 if (l.isUndef()) {
229 if (V.isUndef())
VLASizeChecker.cpp 97 if (sizeV.isUndef()) {
NSErrorChecker.cpp 208 if (loc.isUndef() || !loc.getAs<Loc>())
  /frameworks/compile/mclinker/lib/Target/Mips/
MipsLA25Stub.cpp 74 if (rsym->isDyn() || rsym->isUndef())
  /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/lib/CodeGen/
LivePhysRegs.cpp 52 if (!O->isReg() || !O->readsReg() || O->isUndef())
MachineInstrBundle.cpp 145 if (MO.isUndef())
199 bool isUndef = UndefUseSet.count(Reg);
200 MIB.addReg(Reg, getKillRegState(isKill) | getUndefRegState(isUndef) |
RegisterScavenging.cpp 139 if (MO.isUndef())
209 if (MO.isUndef())
312 if (!MO.isReg() || MO.isUndef() || !MO.getReg())
372 if (MO.isReg() && MO.getReg() != 0 && !(MO.isUse() && MO.isUndef()) &&
MachineInstr.cpp 129 bool isKill, bool isDead, bool isUndef,
150 IsUndef = isUndef;
274 if (isDef() || isKill() || isDead() || isImplicit() || isUndef() ||
288 if (isUndef() && getSubReg())
305 if (isUndef() && isUse()) {
    [all...]
ExpandPostRAPseudos.cpp 152 if (SrcMO.isUndef() || MI->getNumOperands() > 2) {
  /external/llvm/include/llvm/CodeGen/
MachineOperand.h 100 /// IsUndef - True if this register operand reads an "undef" value, i.e. the
117 bool IsUndef : 1;
299 bool isUndef() const {
301 return IsUndef;
333 return !isUndef() && !isInternalRead() && (isUse() || getSubReg());
385 IsUndef = Val;
552 bool isUndef = false, bool isDebug = false);
578 bool isUndef = false,
590 Op.IsUndef = isUndef;
    [all...]
  /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();
  /external/llvm/lib/Target/SystemZ/
SystemZShortenInst.cpp 138 } else if (!MO.isUndef()) {
  /frameworks/compile/mclinker/include/mcld/LD/
ResolveInfo.h 164 bool isUndef() const;
  /frameworks/compile/mclinker/lib/Target/AArch64/
AArch64Relocator.cpp 404 if (rsym->isUndef() && !rsym->isDyn() && !rsym->isWeak() && !rsym->isNull())
549 pReloc.symInfo()->isUndef() &&
580 pReloc.symInfo()->isUndef() &&
  /external/clang/lib/StaticAnalyzer/Core/
ExprEngineObjC.cpp 162 if (!recVal.isUndef()) {
  /external/llvm/lib/Target/ARM/
Thumb2SizeReduction.cpp 260 if (!MO.isReg() || MO.isUndef() || MO.isUse())
269 if (!MO.isReg() || MO.isUndef() || MO.isDef())
860 if (!MO.isReg() || MO.isUndef() || MO.isUse())
875 if (!MO.isReg() || MO.isUndef() || MO.isDef())
    [all...]
  /frameworks/compile/mclinker/lib/LD/
ResolveInfo.cpp 155 bool ResolveInfo::isUndef() const

Completed in 368 milliseconds

1 2 3