Home
last modified time | relevance | path

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

/freebsd-12.1/contrib/llvm/include/llvm/CodeGen/
H A DMachineOperand.h128 unsigned IsUndef : 1; variable
386 return IsUndef; in isUndef()
502 IsUndef = Val;
770 Op.IsUndef = isUndef;
H A DMachineInstr.h1337 void setRegisterDefReadUndef(unsigned Reg, bool IsUndef = true);
/freebsd-12.1/contrib/llvm/lib/Target/Hexagon/
H A DHexagonISelLoweringHVX.cpp368 bool IsSplat = true, IsUndef = true; in buildHvxVectorReg() local
373 IsUndef = false; in buildHvxVectorReg()
379 if (IsUndef) in buildHvxVectorReg()
/freebsd-12.1/contrib/llvm/lib/CodeGen/
H A DMachineInstr.cpp1898 void MachineInstr::setRegisterDefReadUndef(unsigned Reg, bool IsUndef) { in setRegisterDefReadUndef() argument
1902 MO.setIsUndef(IsUndef); in setRegisterDefReadUndef()
H A DRegisterCoalescer.cpp1599 bool IsUndef = true; in addUndefFlag() local
1604 IsUndef = false; in addUndefFlag()
1608 if (IsUndef) { in addUndefFlag()
H A DMachineOperand.cpp242 IsUndef = isUndef; in ChangeToRegister()
/freebsd-12.1/contrib/llvm/lib/Target/AArch64/
H A DAArch64InstrInfo.cpp2757 bool IsUndef = true; in loadRegPairFromStackSlot() local
2763 IsUndef = false; in loadRegPairFromStackSlot()
2766 .addReg(DestReg0, RegState::Define | getUndefRegState(IsUndef), SubIdx0) in loadRegPairFromStackSlot()
2767 .addReg(DestReg1, RegState::Define | getUndefRegState(IsUndef), SubIdx1) in loadRegPairFromStackSlot()
/freebsd-12.1/contrib/llvm/lib/Target/AMDGPU/
H A DSIInstrInfo.cpp1246 bool IsUndef = MI.getOperand(1).isUndef(); in expandPostRAPseudo() local
1256 RegState::Implicit | (IsUndef ? RegState::Undef : 0)); in expandPostRAPseudo()
1350 bool IsUndef = RegOp.isUndef(); in swapRegAndNonRegOperand() local
1360 NonRegOp.ChangeToRegister(Reg, false, false, IsKill, IsDead, IsUndef, IsDebug); in swapRegAndNonRegOperand()
/freebsd-12.1/contrib/llvm/tools/clang/lib/Serialization/
H A DASTReader.cpp586 bool IsUndef = PPOpts.Macros[I].second; in collectMacroDefinitions() local
593 if (IsUndef) { in collectMacroDefinitions()
5374 bool IsUndef = Record[Idx++]; in ParsePreprocessorOptions() local
5375 PPOpts.Macros.push_back(std::make_pair(Macro, IsUndef)); in ParsePreprocessorOptions()
/freebsd-12.1/contrib/llvm/lib/Target/X86/
H A DX86ISelLowering.cpp5238 bool IsUndef = Values[i] < 0 && IsMask; in getConstVector() local
5239 SDValue OpNode = IsUndef ? DAG.getUNDEF(EltVT) : in getConstVector()
5243 Ops.push_back(IsUndef ? DAG.getUNDEF(EltVT) : in getConstVector()