Home
last modified time | relevance | path

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

/external/llvm/include/llvm/CodeGen/
DMachineOperand.h118 bool IsUndef : 1; variable
304 return IsUndef; in isUndef()
388 IsUndef = Val;
611 Op.IsUndef = isUndef;
DMachineInstr.h1065 void setRegisterDefReadUndef(unsigned Reg, bool IsUndef = true);
/external/llvm/test/CodeGen/X86/
Dpr23103.ll3 ; When commuting a VADDSDrr instruction, verify that the 'IsUndef' flag is
/external/llvm/lib/CodeGen/
DMachineInstr.cpp198 IsUndef = isUndef; in ChangeToRegister()
1938 void MachineInstr::setRegisterDefReadUndef(unsigned Reg, bool IsUndef) { in setRegisterDefReadUndef() argument
1942 MO.setIsUndef(IsUndef); in setRegisterDefReadUndef()
DRegisterCoalescer.cpp1210 bool IsUndef = true; in updateRegDefsUses() local
1219 IsUndef = false; in updateRegDefsUses()
1223 if (IsUndef) { in updateRegDefsUses()
/external/clang/lib/Serialization/
DASTReader.cpp459 bool IsUndef = PPOpts.Macros[I].second; in collectMacroDefinitions() local
466 if (IsUndef) { in collectMacroDefinitions()
4799 bool IsUndef = Record[Idx++]; in ParsePreprocessorOptions() local
4800 PPOpts.Macros.push_back(std::make_pair(Macro, IsUndef)); in ParsePreprocessorOptions()
/external/llvm/bindings/go/llvm/
Dir.go739 func (v Value) IsUndef() bool { return C.LLVMIsUndef(v.C) != 0 } func
/external/llvm/lib/Target/X86/
DX86ISelLowering.cpp4370 bool IsUndef = Values[i] < 0 && IsMask; in getConstVector() local
4371 SDValue OpNode = IsUndef ? DAG.getUNDEF(EltVT) : in getConstVector()
4375 Ops.push_back(IsUndef ? DAG.getUNDEF(EltVT) : in getConstVector()