HomeSort by relevance Sort by last modified time
    Searched refs:isUndef (Results 1 - 25 of 72) 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()) {
UndefBranchChecker.cpp 49 return St->getSVal(Ex, LCtx).isUndef();
62 if (X.isUndef()) {
UndefinedArraySubscriptChecker.cpp 39 if (!C.getSVal(Index).isUndef())
CallAndMessageChecker.cpp 171 if (PSV.isUndef()) {
202 if (V.isUndef()) {
251 if (V.isUndef())
313 if (L.isUndef()) {
339 if (Arg.isUndef()) {
368 if (V.isUndef()) {
445 if (recVal.isUndef()) {
ReturnUndefChecker.cpp 49 if (RetVal.isUndef()) {
DereferenceChecker.cpp 183 if (l.isUndef()) {
233 if (V.isUndef())
ExprInspectionChecker.cpp 74 if (AssertionVal.isUndef())
VLASizeChecker.cpp 100 if (sizeV.isUndef()) {
NSErrorChecker.cpp 208 if (loc.isUndef() || !loc.getAs<Loc>())
  /frameworks/compile/mclinker/lib/Target/Mips/
MipsLA25Stub.cpp 61 if (rsym->isDyn() || rsym->isUndef())
  /frameworks/compile/mclinker/unittests/
StaticResolverTest.cpp 274 ASSERT_TRUE(sym->isUndef());
290 ASSERT_TRUE(sym->isUndef());
306 ASSERT_FALSE(sym->isUndef());
323 ASSERT_FALSE(sym->isUndef());
338 ASSERT_FALSE(sym->isUndef());
352 ASSERT_TRUE(sym->isUndef());
373 ASSERT_TRUE(sym->isUndef());
388 ASSERT_TRUE(sym->isUndef());
404 ASSERT_TRUE(sym->isUndef());
419 ASSERT_TRUE(sym->isUndef());
    [all...]
  /external/llvm/lib/Target/PowerPC/
PPCVSXFMAMutate.cpp 211 bool AddRegUndef = AddendMI->getOperand(1).isUndef();
212 bool KilledProdRegUndef = MI->getOperand(KilledProdOp).isUndef();
213 bool OtherProdRegUndef = MI->getOperand(OtherProdOp).isUndef();
  /external/llvm/include/llvm/CodeGen/
MachineOperand.h 101 /// IsUndef - True if this register operand reads an "undef" value, i.e. the
118 bool IsUndef : 1;
302 bool isUndef() const {
304 return IsUndef;
336 return !isUndef() && !isInternalRead() && (isUse() || getSubReg());
388 IsUndef = Val;
573 bool isUndef = false, bool isDebug = false);
599 bool isUndef = false,
611 Op.IsUndef = isUndef;
    [all...]
  /external/llvm/lib/CodeGen/
MachineInstrBundle.cpp 157 if (MO.isUndef())
211 bool isUndef = UndefUseSet.count(Reg);
212 MIB.addReg(Reg, getKillRegState(isKill) | getUndefRegState(isUndef) |
RegisterScavenging.cpp 135 if (MO.isUndef())
205 if (MO.isUndef())
316 if (!MO.isReg() || MO.isUndef() || !MO.getReg())
376 if (MO.isReg() && MO.getReg() != 0 && !(MO.isUse() && MO.isUndef()) &&
LivePhysRegs.cpp 60 if (!O->isReg() || !O->readsReg() || O->isUndef())
MachineInstr.cpp 177 bool isKill, bool isDead, bool isUndef,
198 IsUndef = isUndef;
318 if (isDef() || isKill() || isDead() || isImplicit() || isUndef() ||
332 if (isUndef() && getSubReg())
349 if (isUndef() && isUse()) {
    [all...]
ExpandPostRAPseudos.cpp 153 if (SrcMO.isUndef() || MI->getNumOperands() > 2) {
  /external/clang/lib/StaticAnalyzer/Core/
ExprEngineObjC.cpp 173 if (!recVal.isUndef()) {
232 if (!recVal.isUndef()) {
  /external/clang/include/clang/StaticAnalyzer/Core/PathSensitive/
SVals.h 121 inline bool isUndef() const {
206 bool isUndef() const = delete;
220 return !V.isUndef();
  /frameworks/compile/mclinker/include/mcld/LD/
ResolveInfo.h 148 bool isUndef() const;
  /external/llvm/lib/Target/ARM/
Thumb2SizeReduction.cpp 267 if (!MO.isReg() || MO.isUndef() || MO.isUse())
276 if (!MO.isReg() || MO.isUndef() || MO.isDef())
878 if (!MO.isReg() || MO.isUndef() || MO.isUse())
893 if (!MO.isReg() || MO.isUndef() || MO.isDef())
    [all...]
  /external/llvm/lib/Target/Hexagon/
HexagonPeephole.cpp 235 false /*isUndef*/,
323 Src.isKill(), Src.isDead(), Src.isUndef(),
  /frameworks/compile/mclinker/lib/LD/
ResolveInfo.cpp 138 bool ResolveInfo::isUndef() const {

Completed in 633 milliseconds

1 2 3