Home
last modified time | relevance | path

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

/minix/external/bsd/llvm/dist/llvm/include/llvm/CodeGen/
H A DMachineOperand.h117 bool IsUndef : 1; variable
301 return IsUndef; in isUndef()
385 IsUndef = Val;
600 Op.IsUndef = isUndef;
/minix/external/bsd/llvm/dist/llvm/lib/CodeGen/
H A DRegisterCoalescer.cpp1161 bool IsUndef = true; in updateRegDefsUses() local
1170 IsUndef = false; in updateRegDefsUses()
1174 if (IsUndef) { in updateRegDefsUses()
H A DMachineInstr.cpp169 IsUndef = isUndef; in ChangeToRegister()
/minix/external/bsd/llvm/dist/clang/lib/Serialization/
H A DASTReader.cpp438 bool IsUndef = PPOpts.Macros[I].second; in collectMacroDefinitions() local
445 if (IsUndef) { in collectMacroDefinitions()
4790 bool IsUndef = Record[Idx++]; in ParsePreprocessorOptions() local
4791 PPOpts.Macros.push_back(std::make_pair(Macro, IsUndef)); in ParsePreprocessorOptions()
/minix/external/bsd/llvm/dist/llvm/bindings/go/llvm/
H A Dir.go737 func (v Value) IsUndef() bool { return C.LLVMIsUndef(v.C) != 0 } func