Searched defs:isUndef (Results 1 - 7 of 7) sorted by relevance

/external/llvm/lib/CodeGen/
H A DMachineInstrBundle.cpp143 if (MO.isUndef())
198 bool isUndef = UndefUseSet.count(Reg); local
199 MIB.addReg(Reg, getKillRegState(isKill) | getUndefRegState(isUndef) |
H A DMachineInstr.cpp131 bool isKill, bool isDead, bool isUndef,
152 IsUndef = isUndef;
269 if (isDef() || isKill() || isDead() || isImplicit() || isUndef() ||
283 if (isUndef() && getSubReg())
300 if (isUndef() && isUse()) {
1095 Use |= !MO.isUndef();
1096 else if (MO.getSubReg() && !MO.isUndef())
1752 if (!MO.isReg() || !MO.isUse() || MO.isUndef())
130 ChangeToRegister(unsigned Reg, bool isDef, bool isImp, bool isKill, bool isDead, bool isUndef, bool isDebug) argument
/external/clang/include/clang/StaticAnalyzer/Core/PathSensitive/
H A DSVals.h98 inline bool isUndef() const { function in class:clang::ento::SVal
176 bool isUndef() const;
189 return !V->isUndef();
/external/clang/lib/ARCMigrate/
H A DARCMT.cpp187 bool isUndef = origCI.getPreprocessorOpts().Macros[i].second; local
188 if (isUndef)
/external/llvm/include/llvm/CodeGen/
H A DMachineOperand.h292 bool isUndef() const { function in class:llvm::MachineOperand
326 return !isUndef() && !isInternalRead() && (isUse() || getSubReg());
533 bool isUndef = false, bool isDebug = false);
559 bool isUndef = false,
569 Op.IsUndef = isUndef;
/external/llvm/lib/VMCore/
H A DConstants.cpp823 bool isUndef = false; local
826 isUndef = isa<UndefValue>(V[0]);
828 if (isUndef || isZero) {
833 isUndef = false;
839 if (isUndef)
875 bool isUndef = isa<UndefValue>(C); local
877 if (isZero || isUndef) {
880 isZero = isUndef = false;
887 if (isUndef)
/external/llvm/lib/Target/X86/
H A DX86InstrInfo.cpp2031 bool isUndef = MI->getOperand(1).isUndef(); local
2032 bool isUndef2 = MI->getOperand(2).isUndef();
2033 NewMI->getOperand(1).setIsUndef(isUndef);
2052 bool isUndef = MI->getOperand(1).isUndef(); local
2053 bool isUndef2 = MI->getOperand(2).isUndef();
2054 NewMI->getOperand(1).setIsUndef(isUndef);
4092 getUndefRegState(MO.isUndef()));

Completed in 588 milliseconds