Home
last modified time | relevance | path

Searched refs:IsUndef (Results 1 – 5 of 5) sorted by relevance

/external/llvm/include/llvm/CodeGen/
DMachineOperand.h117 bool IsUndef : 1; variable
301 return IsUndef; in isUndef()
385 IsUndef = Val;
600 Op.IsUndef = isUndef;
/external/llvm/lib/CodeGen/
DRegisterCoalescer.cpp1173 bool IsUndef = true; in updateRegDefsUses() local
1182 IsUndef = false; in updateRegDefsUses()
1186 if (IsUndef) { in updateRegDefsUses()
DMachineInstr.cpp169 IsUndef = isUndef; in ChangeToRegister()
/external/clang/lib/Serialization/
DASTReader.cpp441 bool IsUndef = PPOpts.Macros[I].second; in collectMacroDefinitions() local
448 if (IsUndef) { in collectMacroDefinitions()
4850 bool IsUndef = Record[Idx++]; in ParsePreprocessorOptions() local
4851 PPOpts.Macros.push_back(std::make_pair(Macro, IsUndef)); in ParsePreprocessorOptions()
/external/llvm/bindings/go/llvm/
Dir.go737 func (v Value) IsUndef() bool { return C.LLVMIsUndef(v.C) != 0 } func