HomeSort by relevance Sort by last modified time
    Searched defs:isUndef (Results 1 - 6 of 6) sorted by null

  /external/llvm/lib/CodeGen/
MachineInstrBundle.cpp 145 if (MO.isUndef())
199 bool isUndef = UndefUseSet.count(Reg);
200 MIB.addReg(Reg, getKillRegState(isKill) | getUndefRegState(isUndef) |
  /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();
  /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/IR/
Constants.cpp 880 bool isUndef = false;
883 isUndef = isa<UndefValue>(V[0]);
885 if (isUndef || isZero) {
890 isUndef = false;
896 if (isUndef)
    [all...]
  /external/llvm/lib/Target/X86/
X86InstrInfo.cpp     [all...]

Completed in 221 milliseconds