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

1 2

  /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>())
CStringChecker.cpp 623 assert(!strLength.isUndef() && "Attempt to set an undefined string length");
    [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()) {
  /external/clang/lib/StaticAnalyzer/Core/
ExprEngineObjC.cpp 162 if (!recVal.isUndef()) {
SValBuilder.cpp 336 if (lhs.isUndef() || rhs.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...]
ARMLoadStoreOptimizer.cpp 721 unsigned PRegNum = PMO.isUndef() ? UINT_MAX : TRI->getEncodingValue(PReg);
747 unsigned RegNum = MO.isUndef() ? UINT_MAX : TRI->getEncodingValue(Reg);
    [all...]
  /external/llvm/lib/Target/Hexagon/
HexagonPeephole.cpp 236 false /*isUndef*/,
332 Src.isKill(), Src.isDead(), Src.isUndef(),
  /external/llvm/lib/Target/X86/
X86InstrInfo.h 221 bool &isUndef, MachineOperand &ImplicitOp) const;

Completed in 862 milliseconds

1 2