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

  /external/llvm/lib/CodeGen/
MachineInstrBundle.cpp 143 if (MO.isUndef())
198 bool isUndef = UndefUseSet.count(Reg);
199 MIB.addReg(Reg, getKillRegState(isKill) | getUndefRegState(isUndef) |
  /frameworks/compile/mclinker/lib/LD/
ResolveInfo.cpp 136 bool ResolveInfo::isUndef() const
  /external/clang/include/clang/StaticAnalyzer/Core/PathSensitive/
SVals.h 98 inline bool isUndef() const {
176 bool isUndef() const;
189 return !V->isUndef();
  /external/clang/lib/ARCMigrate/
ARCMT.cpp 187 bool isUndef = origCI.getPreprocessorOpts().Macros[i].second;
188 if (isUndef)
  /external/llvm/include/llvm/CodeGen/
MachineOperand.h 97 /// IsUndef - True if this register operand reads an "undef" value, i.e. the
114 bool IsUndef : 1;
292 bool isUndef() const {
294 return IsUndef;
326 return !isUndef() && !isInternalRead() && (isUse() || getSubReg());
377 IsUndef = Val;
533 bool isUndef = false, bool isDebug = false);
559 bool isUndef = false,
569 Op.IsUndef = isUndef;
    [all...]
  /external/llvm/lib/Target/X86/
X86InstrInfo.cpp     [all...]
  /external/llvm/lib/VMCore/
Constants.cpp 823 bool isUndef = false;
826 isUndef = isa<UndefValue>(V[0]);
828 if (isUndef || isZero) {
833 isUndef = false;
839 if (isUndef)
875 bool isUndef = isa<UndefValue>(C);
877 if (isZero || isUndef) {
880 isZero = isUndef = false;
887 if (isUndef)
    [all...]

Completed in 392 milliseconds