Home
last modified time | relevance | path

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

/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/include/llvm/CodeGen/GlobalISel/
DCombinerHelper.h122 bool matchCombineConcatVectors(MachineInstr &MI, bool &IsUndef,
126 void applyCombineConcatVectors(MachineInstr &MI, bool IsUndef,
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/CodeGen/GlobalISel/
DCombinerHelper.cpp116 bool IsUndef = false; in tryCombineConcatVectors() local
118 if (matchCombineConcatVectors(MI, IsUndef, Ops)) { in tryCombineConcatVectors()
119 applyCombineConcatVectors(MI, IsUndef, Ops); in tryCombineConcatVectors()
125 bool CombinerHelper::matchCombineConcatVectors(MachineInstr &MI, bool &IsUndef, in matchCombineConcatVectors() argument
129 IsUndef = true; in matchCombineConcatVectors()
141 IsUndef = false; in matchCombineConcatVectors()
171 MachineInstr &MI, bool IsUndef, const ArrayRef<Register> Ops) { in applyCombineConcatVectors() argument
184 if (IsUndef) in applyCombineConcatVectors()
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/include/llvm/CodeGen/
DMachineOperand.h130 unsigned IsUndef : 1; variable
395 return IsUndef; in isUndef()
511 IsUndef = Val;
793 Op.IsUndef = isUndef;
DMachineInstr.h1422 void setRegisterDefReadUndef(Register Reg, bool IsUndef = true);
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Target/AMDGPU/
DSIShrinkInstructions.cpp250 bool IsUndef = true; in shrinkMIMG() local
262 IsUndef = false; in shrinkMIMG()
297 MI.getOperand(VAddr0Idx).setIsUndef(IsUndef); in shrinkMIMG()
DGCNHazardRecognizer.cpp895 bool IsUndef = Src0->isUndef(); in fixVcmpxPermlaneHazards() local
898 .addReg(Reg, RegState::Define | (IsUndef ? RegState::Dead : 0)) in fixVcmpxPermlaneHazards()
899 .addReg(Reg, IsUndef ? RegState::Undef : RegState::Kill); in fixVcmpxPermlaneHazards()
DSIInstrInfo.cpp1492 bool IsUndef = MI.getOperand(1).isUndef(); in expandPostRAPseudo() local
1502 RegState::Implicit | (IsUndef ? RegState::Undef : 0)); in expandPostRAPseudo()
1658 bool IsUndef = RegOp.isUndef(); in swapRegAndNonRegOperand() local
1668 NonRegOp.ChangeToRegister(Reg, false, false, IsKill, IsDead, IsUndef, IsDebug); in swapRegAndNonRegOperand()
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Target/Hexagon/
DHexagonISelLoweringHVX.cpp376 bool IsSplat = true, IsUndef = true; in buildHvxVectorReg() local
381 IsUndef = false; in buildHvxVectorReg()
387 if (IsUndef) in buildHvxVectorReg()
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/CodeGen/
DMachineInstr.cpp1925 void MachineInstr::setRegisterDefReadUndef(Register Reg, bool IsUndef) { in setRegisterDefReadUndef() argument
1929 MO.setIsUndef(IsUndef); in setRegisterDefReadUndef()
DRegisterCoalescer.cpp1659 bool IsUndef = true; in addUndefFlag() local
1664 IsUndef = false; in addUndefFlag()
1668 if (IsUndef) { in addUndefFlag()
DMachineOperand.cpp256 IsUndef = isUndef; in ChangeToRegister()
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Target/AArch64/
DAArch64InstrInfo.cpp2970 bool IsUndef = true; in loadRegPairFromStackSlot() local
2976 IsUndef = false; in loadRegPairFromStackSlot()
2979 .addReg(DestReg0, RegState::Define | getUndefRegState(IsUndef), SubIdx0) in loadRegPairFromStackSlot()
2980 .addReg(DestReg1, RegState::Define | getUndefRegState(IsUndef), SubIdx1) in loadRegPairFromStackSlot()
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Target/X86/
DX86ISelLowering.cpp5538 bool IsUndef = Values[i] < 0 && IsMask; in getConstVector() local
5539 SDValue OpNode = IsUndef ? DAG.getUNDEF(EltVT) : in getConstVector()
5543 Ops.push_back(IsUndef ? DAG.getUNDEF(EltVT) : in getConstVector()