/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())
|
DereferenceChecker.cpp | 180 if (l.isUndef()) { 228 if (V.isUndef())
|
ReturnUndefChecker.cpp | 49 if (RetVal.isUndef()) {
|
VLASizeChecker.cpp | 96 if (sizeV.isUndef()) {
|
CStringChecker.cpp | 616 assert(!strLength.isUndef() && "Attempt to set an undefined string length"); [all...] |
/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()) &&
|
ProcessImplicitDefs.cpp | 26 /// for each use. Add isUndef marker to implicit_def defs and their uses.
|
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/llvm/lib/Target/Hexagon/ |
HexagonPeephole.cpp | 235 false /*isUndef*/, 331 Src.isKill(), Src.isDead(), Src.isUndef(),
|
/external/clang/include/clang/Lex/ |
PreprocessorOptions.h | 46 std::vector<std::pair<std::string, bool/*isUndef*/> > Macros;
|
/external/clang/lib/StaticAnalyzer/Core/ |
ExprEngineObjC.cpp | 162 if (!recVal.isUndef()) {
|
/frameworks/compile/mclinker/include/mcld/LD/ |
ResolveInfo.h | 162 bool isUndef() const;
|
/frameworks/compile/mclinker/lib/LD/ |
ResolveInfo.cpp | 149 bool ResolveInfo::isUndef() const
|
/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/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...] |
/external/llvm/lib/Target/X86/ |
X86InstrInfo.cpp | [all...] |