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 146 bool ResolveInfo::isUndef() const
  /external/clang/include/clang/StaticAnalyzer/Core/PathSensitive/
SVals.h 121 inline bool isUndef() const {
198 bool isUndef() const LLVM_DELETED_FUNCTION;
212 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 875 bool isUndef = false;
878 isUndef = isa<UndefValue>(V[0]);
880 if (isUndef || isZero) {
885 isUndef = false;
891 if (isUndef)
    [all...]
  /external/llvm/lib/Target/X86/
X86InstrInfo.cpp     [all...]

Completed in 119 milliseconds