Home
last modified time | relevance | path

Searched refs:UndefValue (Results 1 – 25 of 3331) sorted by relevance

12345678910>>...134

/dports/devel/intel-graphics-compiler/intel-graphics-compiler-igc-1.0.9636/IGC/common/
H A DIGCConstantFolder.cpp47 if (llvm::isa<llvm::UndefValue>(C0)) in CreateRsq()
72 if (llvm::isa<llvm::UndefValue>(C0)) in CreateRoundNE()
93 if (llvm::isa<llvm::UndefValue>(C0)) in CreateFSat()
106 if (llvm::isa<llvm::UndefValue>(C0) || llvm::isa<llvm::UndefValue>(C1)) in CreateFAdd()
127 if (llvm::isa<llvm::UndefValue>(C0) || llvm::isa<llvm::UndefValue>(C1)) in CreateFMul()
148 if (llvm::isa<llvm::UndefValue>(C0)) in CreateFPTrunc()
170 …if (llvm::isa<llvm::UndefValue>(C0) || llvm::isa<llvm::UndefValue>(C1) || llvm::isa<llvm::UndefVal… in CreateUbfe()
197 …if (llvm::isa<llvm::UndefValue>(C0) || llvm::isa<llvm::UndefValue>(C1) || llvm::isa<llvm::UndefVal… in CreateIbfe()
224 if (llvm::isa<llvm::UndefValue>(C0)) in CreateCanonicalize()
239 if (llvm::isa<llvm::UndefValue>(C0)) in CreateGradient()
[all …]
/dports/devel/intel-graphics-compiler/intel-graphics-compiler-igc-1.0.9636/IGC/Compiler/Optimizer/IGCInstCombiner/4.0/
H A DInstCombineVectorOps.cpp310 if (isa<UndefValue>(V)) { in collectSingleShuffleElements()
472 if (isa<UndefValue>(V)) { in collectShuffleElements()
646 UndefValue::get(VT), SplatVal, in foldInsSequenceIntoBroadcast()
760 if (isa<UndefValue>(ScalarOp) || isa<UndefValue>(IdxOp)) in visitInsertElementInst()
983 if (isa<UndefValue>(V)) { in EvaluateInDifferentElementOrder()
1120 if (isa<UndefValue>(SVI.getOperand(2))) in visitShuffleVectorInst()
1139 if (LHS == RHS || isa<UndefValue>(LHS)) { in visitShuffleVectorInst()
1140 if (isa<UndefValue>(LHS) && LHS == RHS) { in visitShuffleVectorInst()
1322 if (!isa<UndefValue>(LHSShuffle->getOperand(1)) && !isa<UndefValue>(RHS)) in visitShuffleVectorInst()
1348 if (isa<UndefValue>(RHS)) { in visitShuffleVectorInst()
[all …]
/dports/devel/llvm-cheri/llvm-project-37c49ff00e3eadce5d8703fdc4497f28458c64a8/llvm/unittests/Analysis/
H A DValueLatticeTest.cpp176 auto LV1 = ValueLatticeElement::get(UndefValue::get(I32Ty)); in TEST_F()
179 EXPECT_TRUE(isa<UndefValue>(LV1.getCompare(CmpInst::ICMP_SLT, I1Ty, LV2))); in TEST_F()
180 EXPECT_TRUE(isa<UndefValue>(LV1.getCompare(CmpInst::ICMP_SLE, I1Ty, LV2))); in TEST_F()
181 EXPECT_TRUE(isa<UndefValue>(LV1.getCompare(CmpInst::ICMP_NE, I1Ty, LV2))); in TEST_F()
182 EXPECT_TRUE(isa<UndefValue>(LV1.getCompare(CmpInst::ICMP_EQ, I1Ty, LV2))); in TEST_F()
183 EXPECT_TRUE(isa<UndefValue>(LV1.getCompare(CmpInst::ICMP_SGE, I1Ty, LV2))); in TEST_F()
184 EXPECT_TRUE(isa<UndefValue>(LV1.getCompare(CmpInst::ICMP_SGT, I1Ty, LV2))); in TEST_F()
188 EXPECT_TRUE(isa<UndefValue>(LV1.getCompare(CmpInst::FCMP_OEQ, I1Ty, LV3))); in TEST_F()
189 EXPECT_TRUE(isa<UndefValue>(LV1.getCompare(CmpInst::FCMP_OGE, I1Ty, LV3))); in TEST_F()
190 EXPECT_TRUE(isa<UndefValue>(LV1.getCompare(CmpInst::FCMP_OLE, I1Ty, LV3))); in TEST_F()
[all …]
/dports/devel/llvm11/llvm-11.0.1.src/unittests/Analysis/
H A DValueLatticeTest.cpp176 auto LV1 = ValueLatticeElement::get(UndefValue::get(I32Ty)); in TEST_F()
179 EXPECT_TRUE(isa<UndefValue>(LV1.getCompare(CmpInst::ICMP_SLT, I1Ty, LV2))); in TEST_F()
180 EXPECT_TRUE(isa<UndefValue>(LV1.getCompare(CmpInst::ICMP_SLE, I1Ty, LV2))); in TEST_F()
181 EXPECT_TRUE(isa<UndefValue>(LV1.getCompare(CmpInst::ICMP_NE, I1Ty, LV2))); in TEST_F()
182 EXPECT_TRUE(isa<UndefValue>(LV1.getCompare(CmpInst::ICMP_EQ, I1Ty, LV2))); in TEST_F()
183 EXPECT_TRUE(isa<UndefValue>(LV1.getCompare(CmpInst::ICMP_SGE, I1Ty, LV2))); in TEST_F()
184 EXPECT_TRUE(isa<UndefValue>(LV1.getCompare(CmpInst::ICMP_SGT, I1Ty, LV2))); in TEST_F()
188 EXPECT_TRUE(isa<UndefValue>(LV1.getCompare(CmpInst::FCMP_OEQ, I1Ty, LV3))); in TEST_F()
189 EXPECT_TRUE(isa<UndefValue>(LV1.getCompare(CmpInst::FCMP_OGE, I1Ty, LV3))); in TEST_F()
190 EXPECT_TRUE(isa<UndefValue>(LV1.getCompare(CmpInst::FCMP_OLE, I1Ty, LV3))); in TEST_F()
[all …]
/dports/devel/llvm-devel/llvm-project-f05c95f10fc1d8171071735af8ad3a9e87633120/llvm/unittests/Analysis/
H A DValueLatticeTest.cpp176 auto LV1 = ValueLatticeElement::get(UndefValue::get(I32Ty)); in TEST_F()
179 EXPECT_TRUE(isa<UndefValue>(LV1.getCompare(CmpInst::ICMP_SLT, I1Ty, LV2))); in TEST_F()
180 EXPECT_TRUE(isa<UndefValue>(LV1.getCompare(CmpInst::ICMP_SLE, I1Ty, LV2))); in TEST_F()
181 EXPECT_TRUE(isa<UndefValue>(LV1.getCompare(CmpInst::ICMP_NE, I1Ty, LV2))); in TEST_F()
182 EXPECT_TRUE(isa<UndefValue>(LV1.getCompare(CmpInst::ICMP_EQ, I1Ty, LV2))); in TEST_F()
183 EXPECT_TRUE(isa<UndefValue>(LV1.getCompare(CmpInst::ICMP_SGE, I1Ty, LV2))); in TEST_F()
184 EXPECT_TRUE(isa<UndefValue>(LV1.getCompare(CmpInst::ICMP_SGT, I1Ty, LV2))); in TEST_F()
188 EXPECT_TRUE(isa<UndefValue>(LV1.getCompare(CmpInst::FCMP_OEQ, I1Ty, LV3))); in TEST_F()
189 EXPECT_TRUE(isa<UndefValue>(LV1.getCompare(CmpInst::FCMP_OGE, I1Ty, LV3))); in TEST_F()
190 EXPECT_TRUE(isa<UndefValue>(LV1.getCompare(CmpInst::FCMP_OLE, I1Ty, LV3))); in TEST_F()
[all …]
/dports/devel/llvm90/llvm-9.0.1.src/unittests/Analysis/
H A DValueLatticeTest.cpp165 auto LV1 = ValueLatticeElement::get(UndefValue::get(I32Ty)); in TEST_F()
168 EXPECT_TRUE(isa<UndefValue>(LV1.getCompare(CmpInst::ICMP_SLT, I1Ty, LV2))); in TEST_F()
169 EXPECT_TRUE(isa<UndefValue>(LV1.getCompare(CmpInst::ICMP_SLE, I1Ty, LV2))); in TEST_F()
170 EXPECT_TRUE(isa<UndefValue>(LV1.getCompare(CmpInst::ICMP_NE, I1Ty, LV2))); in TEST_F()
171 EXPECT_TRUE(isa<UndefValue>(LV1.getCompare(CmpInst::ICMP_EQ, I1Ty, LV2))); in TEST_F()
172 EXPECT_TRUE(isa<UndefValue>(LV1.getCompare(CmpInst::ICMP_SGE, I1Ty, LV2))); in TEST_F()
173 EXPECT_TRUE(isa<UndefValue>(LV1.getCompare(CmpInst::ICMP_SGT, I1Ty, LV2))); in TEST_F()
177 EXPECT_TRUE(isa<UndefValue>(LV1.getCompare(CmpInst::FCMP_OEQ, I1Ty, LV3))); in TEST_F()
178 EXPECT_TRUE(isa<UndefValue>(LV1.getCompare(CmpInst::FCMP_OGE, I1Ty, LV3))); in TEST_F()
179 EXPECT_TRUE(isa<UndefValue>(LV1.getCompare(CmpInst::FCMP_OLE, I1Ty, LV3))); in TEST_F()
[all …]
/dports/devel/llvm10/llvm-10.0.1.src/unittests/Analysis/
H A DValueLatticeTest.cpp182 auto LV1 = ValueLatticeElement::get(UndefValue::get(I32Ty)); in TEST_F()
185 EXPECT_TRUE(isa<UndefValue>(LV1.getCompare(CmpInst::ICMP_SLT, I1Ty, LV2))); in TEST_F()
186 EXPECT_TRUE(isa<UndefValue>(LV1.getCompare(CmpInst::ICMP_SLE, I1Ty, LV2))); in TEST_F()
187 EXPECT_TRUE(isa<UndefValue>(LV1.getCompare(CmpInst::ICMP_NE, I1Ty, LV2))); in TEST_F()
188 EXPECT_TRUE(isa<UndefValue>(LV1.getCompare(CmpInst::ICMP_EQ, I1Ty, LV2))); in TEST_F()
189 EXPECT_TRUE(isa<UndefValue>(LV1.getCompare(CmpInst::ICMP_SGE, I1Ty, LV2))); in TEST_F()
190 EXPECT_TRUE(isa<UndefValue>(LV1.getCompare(CmpInst::ICMP_SGT, I1Ty, LV2))); in TEST_F()
194 EXPECT_TRUE(isa<UndefValue>(LV1.getCompare(CmpInst::FCMP_OEQ, I1Ty, LV3))); in TEST_F()
195 EXPECT_TRUE(isa<UndefValue>(LV1.getCompare(CmpInst::FCMP_OGE, I1Ty, LV3))); in TEST_F()
196 EXPECT_TRUE(isa<UndefValue>(LV1.getCompare(CmpInst::FCMP_OLE, I1Ty, LV3))); in TEST_F()
[all …]
/dports/lang/rust/rustc-1.58.1-src/src/llvm-project/llvm/unittests/Analysis/
H A DValueLatticeTest.cpp176 auto LV1 = ValueLatticeElement::get(UndefValue::get(I32Ty)); in TEST_F()
179 EXPECT_TRUE(isa<UndefValue>(LV1.getCompare(CmpInst::ICMP_SLT, I1Ty, LV2))); in TEST_F()
180 EXPECT_TRUE(isa<UndefValue>(LV1.getCompare(CmpInst::ICMP_SLE, I1Ty, LV2))); in TEST_F()
181 EXPECT_TRUE(isa<UndefValue>(LV1.getCompare(CmpInst::ICMP_NE, I1Ty, LV2))); in TEST_F()
182 EXPECT_TRUE(isa<UndefValue>(LV1.getCompare(CmpInst::ICMP_EQ, I1Ty, LV2))); in TEST_F()
183 EXPECT_TRUE(isa<UndefValue>(LV1.getCompare(CmpInst::ICMP_SGE, I1Ty, LV2))); in TEST_F()
184 EXPECT_TRUE(isa<UndefValue>(LV1.getCompare(CmpInst::ICMP_SGT, I1Ty, LV2))); in TEST_F()
188 EXPECT_TRUE(isa<UndefValue>(LV1.getCompare(CmpInst::FCMP_OEQ, I1Ty, LV3))); in TEST_F()
189 EXPECT_TRUE(isa<UndefValue>(LV1.getCompare(CmpInst::FCMP_OGE, I1Ty, LV3))); in TEST_F()
190 EXPECT_TRUE(isa<UndefValue>(LV1.getCompare(CmpInst::FCMP_OLE, I1Ty, LV3))); in TEST_F()
[all …]
/dports/devel/tinygo/tinygo-0.14.1/llvm-project/llvm/unittests/Analysis/
H A DValueLatticeTest.cpp182 auto LV1 = ValueLatticeElement::get(UndefValue::get(I32Ty)); in TEST_F()
185 EXPECT_TRUE(isa<UndefValue>(LV1.getCompare(CmpInst::ICMP_SLT, I1Ty, LV2))); in TEST_F()
186 EXPECT_TRUE(isa<UndefValue>(LV1.getCompare(CmpInst::ICMP_SLE, I1Ty, LV2))); in TEST_F()
187 EXPECT_TRUE(isa<UndefValue>(LV1.getCompare(CmpInst::ICMP_NE, I1Ty, LV2))); in TEST_F()
188 EXPECT_TRUE(isa<UndefValue>(LV1.getCompare(CmpInst::ICMP_EQ, I1Ty, LV2))); in TEST_F()
189 EXPECT_TRUE(isa<UndefValue>(LV1.getCompare(CmpInst::ICMP_SGE, I1Ty, LV2))); in TEST_F()
190 EXPECT_TRUE(isa<UndefValue>(LV1.getCompare(CmpInst::ICMP_SGT, I1Ty, LV2))); in TEST_F()
194 EXPECT_TRUE(isa<UndefValue>(LV1.getCompare(CmpInst::FCMP_OEQ, I1Ty, LV3))); in TEST_F()
195 EXPECT_TRUE(isa<UndefValue>(LV1.getCompare(CmpInst::FCMP_OGE, I1Ty, LV3))); in TEST_F()
196 EXPECT_TRUE(isa<UndefValue>(LV1.getCompare(CmpInst::FCMP_OLE, I1Ty, LV3))); in TEST_F()
[all …]
/dports/devel/wasi-compiler-rt12/llvm-project-12.0.1.src/llvm/unittests/Analysis/
H A DValueLatticeTest.cpp176 auto LV1 = ValueLatticeElement::get(UndefValue::get(I32Ty)); in TEST_F()
179 EXPECT_TRUE(isa<UndefValue>(LV1.getCompare(CmpInst::ICMP_SLT, I1Ty, LV2))); in TEST_F()
180 EXPECT_TRUE(isa<UndefValue>(LV1.getCompare(CmpInst::ICMP_SLE, I1Ty, LV2))); in TEST_F()
181 EXPECT_TRUE(isa<UndefValue>(LV1.getCompare(CmpInst::ICMP_NE, I1Ty, LV2))); in TEST_F()
182 EXPECT_TRUE(isa<UndefValue>(LV1.getCompare(CmpInst::ICMP_EQ, I1Ty, LV2))); in TEST_F()
183 EXPECT_TRUE(isa<UndefValue>(LV1.getCompare(CmpInst::ICMP_SGE, I1Ty, LV2))); in TEST_F()
184 EXPECT_TRUE(isa<UndefValue>(LV1.getCompare(CmpInst::ICMP_SGT, I1Ty, LV2))); in TEST_F()
188 EXPECT_TRUE(isa<UndefValue>(LV1.getCompare(CmpInst::FCMP_OEQ, I1Ty, LV3))); in TEST_F()
189 EXPECT_TRUE(isa<UndefValue>(LV1.getCompare(CmpInst::FCMP_OGE, I1Ty, LV3))); in TEST_F()
190 EXPECT_TRUE(isa<UndefValue>(LV1.getCompare(CmpInst::FCMP_OLE, I1Ty, LV3))); in TEST_F()
[all …]
/dports/devel/wasi-compiler-rt13/llvm-project-13.0.1.src/llvm/unittests/Analysis/
H A DValueLatticeTest.cpp176 auto LV1 = ValueLatticeElement::get(UndefValue::get(I32Ty)); in TEST_F()
179 EXPECT_TRUE(isa<UndefValue>(LV1.getCompare(CmpInst::ICMP_SLT, I1Ty, LV2))); in TEST_F()
180 EXPECT_TRUE(isa<UndefValue>(LV1.getCompare(CmpInst::ICMP_SLE, I1Ty, LV2))); in TEST_F()
181 EXPECT_TRUE(isa<UndefValue>(LV1.getCompare(CmpInst::ICMP_NE, I1Ty, LV2))); in TEST_F()
182 EXPECT_TRUE(isa<UndefValue>(LV1.getCompare(CmpInst::ICMP_EQ, I1Ty, LV2))); in TEST_F()
183 EXPECT_TRUE(isa<UndefValue>(LV1.getCompare(CmpInst::ICMP_SGE, I1Ty, LV2))); in TEST_F()
184 EXPECT_TRUE(isa<UndefValue>(LV1.getCompare(CmpInst::ICMP_SGT, I1Ty, LV2))); in TEST_F()
188 EXPECT_TRUE(isa<UndefValue>(LV1.getCompare(CmpInst::FCMP_OEQ, I1Ty, LV3))); in TEST_F()
189 EXPECT_TRUE(isa<UndefValue>(LV1.getCompare(CmpInst::FCMP_OGE, I1Ty, LV3))); in TEST_F()
190 EXPECT_TRUE(isa<UndefValue>(LV1.getCompare(CmpInst::FCMP_OLE, I1Ty, LV3))); in TEST_F()
[all …]
/dports/www/chromium-legacy/chromium-88.0.4324.182/third_party/llvm/llvm/unittests/Analysis/
H A DValueLatticeTest.cpp176 auto LV1 = ValueLatticeElement::get(UndefValue::get(I32Ty)); in TEST_F()
179 EXPECT_TRUE(isa<UndefValue>(LV1.getCompare(CmpInst::ICMP_SLT, I1Ty, LV2))); in TEST_F()
180 EXPECT_TRUE(isa<UndefValue>(LV1.getCompare(CmpInst::ICMP_SLE, I1Ty, LV2))); in TEST_F()
181 EXPECT_TRUE(isa<UndefValue>(LV1.getCompare(CmpInst::ICMP_NE, I1Ty, LV2))); in TEST_F()
182 EXPECT_TRUE(isa<UndefValue>(LV1.getCompare(CmpInst::ICMP_EQ, I1Ty, LV2))); in TEST_F()
183 EXPECT_TRUE(isa<UndefValue>(LV1.getCompare(CmpInst::ICMP_SGE, I1Ty, LV2))); in TEST_F()
184 EXPECT_TRUE(isa<UndefValue>(LV1.getCompare(CmpInst::ICMP_SGT, I1Ty, LV2))); in TEST_F()
188 EXPECT_TRUE(isa<UndefValue>(LV1.getCompare(CmpInst::FCMP_OEQ, I1Ty, LV3))); in TEST_F()
189 EXPECT_TRUE(isa<UndefValue>(LV1.getCompare(CmpInst::FCMP_OGE, I1Ty, LV3))); in TEST_F()
190 EXPECT_TRUE(isa<UndefValue>(LV1.getCompare(CmpInst::FCMP_OLE, I1Ty, LV3))); in TEST_F()
[all …]
/dports/devel/wasi-libcxx/llvm-project-13.0.1.src/llvm/unittests/Analysis/
H A DValueLatticeTest.cpp176 auto LV1 = ValueLatticeElement::get(UndefValue::get(I32Ty)); in TEST_F()
179 EXPECT_TRUE(isa<UndefValue>(LV1.getCompare(CmpInst::ICMP_SLT, I1Ty, LV2))); in TEST_F()
180 EXPECT_TRUE(isa<UndefValue>(LV1.getCompare(CmpInst::ICMP_SLE, I1Ty, LV2))); in TEST_F()
181 EXPECT_TRUE(isa<UndefValue>(LV1.getCompare(CmpInst::ICMP_NE, I1Ty, LV2))); in TEST_F()
182 EXPECT_TRUE(isa<UndefValue>(LV1.getCompare(CmpInst::ICMP_EQ, I1Ty, LV2))); in TEST_F()
183 EXPECT_TRUE(isa<UndefValue>(LV1.getCompare(CmpInst::ICMP_SGE, I1Ty, LV2))); in TEST_F()
184 EXPECT_TRUE(isa<UndefValue>(LV1.getCompare(CmpInst::ICMP_SGT, I1Ty, LV2))); in TEST_F()
188 EXPECT_TRUE(isa<UndefValue>(LV1.getCompare(CmpInst::FCMP_OEQ, I1Ty, LV3))); in TEST_F()
189 EXPECT_TRUE(isa<UndefValue>(LV1.getCompare(CmpInst::FCMP_OGE, I1Ty, LV3))); in TEST_F()
190 EXPECT_TRUE(isa<UndefValue>(LV1.getCompare(CmpInst::FCMP_OLE, I1Ty, LV3))); in TEST_F()
[all …]
/dports/devel/llvm12/llvm-project-12.0.1.src/llvm/unittests/Analysis/
H A DValueLatticeTest.cpp176 auto LV1 = ValueLatticeElement::get(UndefValue::get(I32Ty)); in TEST_F()
179 EXPECT_TRUE(isa<UndefValue>(LV1.getCompare(CmpInst::ICMP_SLT, I1Ty, LV2))); in TEST_F()
180 EXPECT_TRUE(isa<UndefValue>(LV1.getCompare(CmpInst::ICMP_SLE, I1Ty, LV2))); in TEST_F()
181 EXPECT_TRUE(isa<UndefValue>(LV1.getCompare(CmpInst::ICMP_NE, I1Ty, LV2))); in TEST_F()
182 EXPECT_TRUE(isa<UndefValue>(LV1.getCompare(CmpInst::ICMP_EQ, I1Ty, LV2))); in TEST_F()
183 EXPECT_TRUE(isa<UndefValue>(LV1.getCompare(CmpInst::ICMP_SGE, I1Ty, LV2))); in TEST_F()
184 EXPECT_TRUE(isa<UndefValue>(LV1.getCompare(CmpInst::ICMP_SGT, I1Ty, LV2))); in TEST_F()
188 EXPECT_TRUE(isa<UndefValue>(LV1.getCompare(CmpInst::FCMP_OEQ, I1Ty, LV3))); in TEST_F()
189 EXPECT_TRUE(isa<UndefValue>(LV1.getCompare(CmpInst::FCMP_OGE, I1Ty, LV3))); in TEST_F()
190 EXPECT_TRUE(isa<UndefValue>(LV1.getCompare(CmpInst::FCMP_OLE, I1Ty, LV3))); in TEST_F()
[all …]
/dports/devel/llvm80/llvm-8.0.1.src/unittests/Analysis/
H A DValueLatticeTest.cpp166 auto LV1 = ValueLatticeElement::get(UndefValue::get(I32Ty)); in TEST_F()
169 EXPECT_TRUE(isa<UndefValue>(LV1.getCompare(CmpInst::ICMP_SLT, I1Ty, LV2))); in TEST_F()
170 EXPECT_TRUE(isa<UndefValue>(LV1.getCompare(CmpInst::ICMP_SLE, I1Ty, LV2))); in TEST_F()
171 EXPECT_TRUE(isa<UndefValue>(LV1.getCompare(CmpInst::ICMP_NE, I1Ty, LV2))); in TEST_F()
172 EXPECT_TRUE(isa<UndefValue>(LV1.getCompare(CmpInst::ICMP_EQ, I1Ty, LV2))); in TEST_F()
173 EXPECT_TRUE(isa<UndefValue>(LV1.getCompare(CmpInst::ICMP_SGE, I1Ty, LV2))); in TEST_F()
174 EXPECT_TRUE(isa<UndefValue>(LV1.getCompare(CmpInst::ICMP_SGT, I1Ty, LV2))); in TEST_F()
178 EXPECT_TRUE(isa<UndefValue>(LV1.getCompare(CmpInst::FCMP_OEQ, I1Ty, LV3))); in TEST_F()
179 EXPECT_TRUE(isa<UndefValue>(LV1.getCompare(CmpInst::FCMP_OGE, I1Ty, LV3))); in TEST_F()
180 EXPECT_TRUE(isa<UndefValue>(LV1.getCompare(CmpInst::FCMP_OLE, I1Ty, LV3))); in TEST_F()
[all …]
/dports/graphics/llvm-mesa/llvm-13.0.1.src/unittests/Analysis/
H A DValueLatticeTest.cpp176 auto LV1 = ValueLatticeElement::get(UndefValue::get(I32Ty)); in TEST_F()
179 EXPECT_TRUE(isa<UndefValue>(LV1.getCompare(CmpInst::ICMP_SLT, I1Ty, LV2))); in TEST_F()
180 EXPECT_TRUE(isa<UndefValue>(LV1.getCompare(CmpInst::ICMP_SLE, I1Ty, LV2))); in TEST_F()
181 EXPECT_TRUE(isa<UndefValue>(LV1.getCompare(CmpInst::ICMP_NE, I1Ty, LV2))); in TEST_F()
182 EXPECT_TRUE(isa<UndefValue>(LV1.getCompare(CmpInst::ICMP_EQ, I1Ty, LV2))); in TEST_F()
183 EXPECT_TRUE(isa<UndefValue>(LV1.getCompare(CmpInst::ICMP_SGE, I1Ty, LV2))); in TEST_F()
184 EXPECT_TRUE(isa<UndefValue>(LV1.getCompare(CmpInst::ICMP_SGT, I1Ty, LV2))); in TEST_F()
188 EXPECT_TRUE(isa<UndefValue>(LV1.getCompare(CmpInst::FCMP_OEQ, I1Ty, LV3))); in TEST_F()
189 EXPECT_TRUE(isa<UndefValue>(LV1.getCompare(CmpInst::FCMP_OGE, I1Ty, LV3))); in TEST_F()
190 EXPECT_TRUE(isa<UndefValue>(LV1.getCompare(CmpInst::FCMP_OLE, I1Ty, LV3))); in TEST_F()
[all …]
/dports/devel/llvm70/llvm-7.0.1.src/unittests/Analysis/
H A DValueLatticeTest.cpp166 auto LV1 = ValueLatticeElement::get(UndefValue::get(I32Ty));
169 EXPECT_TRUE(isa<UndefValue>(LV1.getCompare(CmpInst::ICMP_SLT, I1Ty, LV2)));
170 EXPECT_TRUE(isa<UndefValue>(LV1.getCompare(CmpInst::ICMP_SLE, I1Ty, LV2)));
171 EXPECT_TRUE(isa<UndefValue>(LV1.getCompare(CmpInst::ICMP_NE, I1Ty, LV2)));
172 EXPECT_TRUE(isa<UndefValue>(LV1.getCompare(CmpInst::ICMP_EQ, I1Ty, LV2)));
173 EXPECT_TRUE(isa<UndefValue>(LV1.getCompare(CmpInst::ICMP_SGE, I1Ty, LV2)));
174 EXPECT_TRUE(isa<UndefValue>(LV1.getCompare(CmpInst::ICMP_SGT, I1Ty, LV2)));
178 EXPECT_TRUE(isa<UndefValue>(LV1.getCompare(CmpInst::FCMP_OEQ, I1Ty, LV3)));
179 EXPECT_TRUE(isa<UndefValue>(LV1.getCompare(CmpInst::FCMP_OGE, I1Ty, LV3)));
180 EXPECT_TRUE(isa<UndefValue>(LV1.getCompare(CmpInst::FCMP_OLE, I1Ty, LV3)));
[all …]
/dports/devel/llvm13/llvm-project-13.0.1.src/llvm/unittests/Analysis/
H A DValueLatticeTest.cpp176 auto LV1 = ValueLatticeElement::get(UndefValue::get(I32Ty)); in TEST_F()
179 EXPECT_TRUE(isa<UndefValue>(LV1.getCompare(CmpInst::ICMP_SLT, I1Ty, LV2))); in TEST_F()
180 EXPECT_TRUE(isa<UndefValue>(LV1.getCompare(CmpInst::ICMP_SLE, I1Ty, LV2))); in TEST_F()
181 EXPECT_TRUE(isa<UndefValue>(LV1.getCompare(CmpInst::ICMP_NE, I1Ty, LV2))); in TEST_F()
182 EXPECT_TRUE(isa<UndefValue>(LV1.getCompare(CmpInst::ICMP_EQ, I1Ty, LV2))); in TEST_F()
183 EXPECT_TRUE(isa<UndefValue>(LV1.getCompare(CmpInst::ICMP_SGE, I1Ty, LV2))); in TEST_F()
184 EXPECT_TRUE(isa<UndefValue>(LV1.getCompare(CmpInst::ICMP_SGT, I1Ty, LV2))); in TEST_F()
188 EXPECT_TRUE(isa<UndefValue>(LV1.getCompare(CmpInst::FCMP_OEQ, I1Ty, LV3))); in TEST_F()
189 EXPECT_TRUE(isa<UndefValue>(LV1.getCompare(CmpInst::FCMP_OGE, I1Ty, LV3))); in TEST_F()
190 EXPECT_TRUE(isa<UndefValue>(LV1.getCompare(CmpInst::FCMP_OLE, I1Ty, LV3))); in TEST_F()
[all …]
/dports/www/chromium-legacy/chromium-88.0.4324.182/third_party/llvm/llvm/lib/Target/AMDGPU/
H A DAMDGPUInstCombineIntrinsic.cpp195 if (isa<UndefValue>(Src)) { in instCombineIntrinsic()
222 if (isa<UndefValue>(Src)) { in instCombineIntrinsic()
250 if (isa<UndefValue>(Src)) { in instCombineIntrinsic()
278 if (isa<UndefValue>(Src0)) { in instCombineIntrinsic()
282 if (isa<UndefValue>(Src1)) { in instCombineIntrinsic()
325 if (isa<UndefValue>(Src0)) { in instCombineIntrinsic()
378 if (isa<UndefValue>(Src0) && isa<UndefValue>(Src1)) { in instCombineIntrinsic()
391 if (isa<UndefValue>(Src0) && isa<UndefValue>(Src1)) { in instCombineIntrinsic()
401 if (isa<UndefValue>(Src)) { in instCombineIntrinsic()
751 if (isa<UndefValue>(VDstIn)) in instCombineIntrinsic()
[all …]
/dports/devel/wasi-libcxx/llvm-project-13.0.1.src/llvm/lib/Target/AMDGPU/
H A DAMDGPUInstCombineIntrinsic.cpp199 if (isa<UndefValue>(Src)) { in instCombineIntrinsic()
226 if (isa<UndefValue>(Src)) { in instCombineIntrinsic()
254 if (isa<UndefValue>(Src)) { in instCombineIntrinsic()
282 if (isa<UndefValue>(Src0)) { in instCombineIntrinsic()
286 if (isa<UndefValue>(Src1)) { in instCombineIntrinsic()
329 if (isa<UndefValue>(Src0)) { in instCombineIntrinsic()
382 if (isa<UndefValue>(Src0) && isa<UndefValue>(Src1)) { in instCombineIntrinsic()
395 if (isa<UndefValue>(Src0) && isa<UndefValue>(Src1)) { in instCombineIntrinsic()
405 if (isa<UndefValue>(Src)) { in instCombineIntrinsic()
755 if (isa<UndefValue>(VDstIn)) in instCombineIntrinsic()
[all …]
/dports/graphics/llvm-mesa/llvm-13.0.1.src/lib/Target/AMDGPU/
H A DAMDGPUInstCombineIntrinsic.cpp199 if (isa<UndefValue>(Src)) { in instCombineIntrinsic()
226 if (isa<UndefValue>(Src)) { in instCombineIntrinsic()
254 if (isa<UndefValue>(Src)) { in instCombineIntrinsic()
282 if (isa<UndefValue>(Src0)) { in instCombineIntrinsic()
286 if (isa<UndefValue>(Src1)) { in instCombineIntrinsic()
329 if (isa<UndefValue>(Src0)) { in instCombineIntrinsic()
382 if (isa<UndefValue>(Src0) && isa<UndefValue>(Src1)) { in instCombineIntrinsic()
395 if (isa<UndefValue>(Src0) && isa<UndefValue>(Src1)) { in instCombineIntrinsic()
405 if (isa<UndefValue>(Src)) { in instCombineIntrinsic()
755 if (isa<UndefValue>(VDstIn)) in instCombineIntrinsic()
[all …]
/dports/devel/llvm12/llvm-project-12.0.1.src/llvm/lib/Target/AMDGPU/
H A DAMDGPUInstCombineIntrinsic.cpp199 if (isa<UndefValue>(Src)) { in instCombineIntrinsic()
226 if (isa<UndefValue>(Src)) { in instCombineIntrinsic()
254 if (isa<UndefValue>(Src)) { in instCombineIntrinsic()
282 if (isa<UndefValue>(Src0)) { in instCombineIntrinsic()
286 if (isa<UndefValue>(Src1)) { in instCombineIntrinsic()
329 if (isa<UndefValue>(Src0)) { in instCombineIntrinsic()
382 if (isa<UndefValue>(Src0) && isa<UndefValue>(Src1)) { in instCombineIntrinsic()
395 if (isa<UndefValue>(Src0) && isa<UndefValue>(Src1)) { in instCombineIntrinsic()
405 if (isa<UndefValue>(Src)) { in instCombineIntrinsic()
755 if (isa<UndefValue>(VDstIn)) in instCombineIntrinsic()
[all …]
/dports/lang/rust/rustc-1.58.1-src/src/llvm-project/llvm/lib/Target/AMDGPU/
H A DAMDGPUInstCombineIntrinsic.cpp199 if (isa<UndefValue>(Src)) { in instCombineIntrinsic()
226 if (isa<UndefValue>(Src)) { in instCombineIntrinsic()
254 if (isa<UndefValue>(Src)) { in instCombineIntrinsic()
282 if (isa<UndefValue>(Src0)) { in instCombineIntrinsic()
286 if (isa<UndefValue>(Src1)) { in instCombineIntrinsic()
329 if (isa<UndefValue>(Src0)) { in instCombineIntrinsic()
382 if (isa<UndefValue>(Src0) && isa<UndefValue>(Src1)) { in instCombineIntrinsic()
395 if (isa<UndefValue>(Src0) && isa<UndefValue>(Src1)) { in instCombineIntrinsic()
405 if (isa<UndefValue>(Src)) { in instCombineIntrinsic()
755 if (isa<UndefValue>(VDstIn)) in instCombineIntrinsic()
[all …]
/dports/devel/llvm-devel/llvm-project-f05c95f10fc1d8171071735af8ad3a9e87633120/llvm/lib/Target/AMDGPU/
H A DAMDGPUInstCombineIntrinsic.cpp198 if (isa<UndefValue>(Src)) { in instCombineIntrinsic()
225 if (isa<UndefValue>(Src)) { in instCombineIntrinsic()
253 if (isa<UndefValue>(Src)) { in instCombineIntrinsic()
281 if (isa<UndefValue>(Src0)) { in instCombineIntrinsic()
285 if (isa<UndefValue>(Src1)) { in instCombineIntrinsic()
328 if (isa<UndefValue>(Src0)) { in instCombineIntrinsic()
381 if (isa<UndefValue>(Src0) && isa<UndefValue>(Src1)) { in instCombineIntrinsic()
394 if (isa<UndefValue>(Src0) && isa<UndefValue>(Src1)) { in instCombineIntrinsic()
404 if (isa<UndefValue>(Src)) { in instCombineIntrinsic()
752 if (isa<UndefValue>(VDstIn)) in instCombineIntrinsic()
[all …]
/dports/devel/wasi-compiler-rt13/llvm-project-13.0.1.src/llvm/lib/Target/AMDGPU/
H A DAMDGPUInstCombineIntrinsic.cpp199 if (isa<UndefValue>(Src)) { in instCombineIntrinsic()
226 if (isa<UndefValue>(Src)) { in instCombineIntrinsic()
254 if (isa<UndefValue>(Src)) { in instCombineIntrinsic()
282 if (isa<UndefValue>(Src0)) { in instCombineIntrinsic()
286 if (isa<UndefValue>(Src1)) { in instCombineIntrinsic()
329 if (isa<UndefValue>(Src0)) { in instCombineIntrinsic()
382 if (isa<UndefValue>(Src0) && isa<UndefValue>(Src1)) { in instCombineIntrinsic()
395 if (isa<UndefValue>(Src0) && isa<UndefValue>(Src1)) { in instCombineIntrinsic()
405 if (isa<UndefValue>(Src)) { in instCombineIntrinsic()
755 if (isa<UndefValue>(VDstIn)) in instCombineIntrinsic()
[all …]

12345678910>>...134