Home
last modified time | relevance | path

Searched refs:Ops1 (Results 1 – 25 of 214) sorted by relevance

123456789

/dports/devel/intel-graphics-compiler/intel-graphics-compiler-igc-1.0.9636/IGC/Compiler/Legalizer/
H A DInstPromoter.cpp71 ValueSeq* Ops0, * Ops1; in visitSelectInst() local
79 std::tie(Ops1, std::ignore) = TL->getLegalizedValues(I.getOperand(2), true); in visitSelectInst()
80 IGC_ASSERT(Ops1 != nullptr && Ops1->size() == 1); in visitSelectInst()
81 Value* RHS = Ops1->front(); in visitSelectInst()
93 ValueSeq* Ops0, * Ops1; in visitICmpInst() local
102 IGC_ASSERT(Ops1 != nullptr && Ops1->size() == 1); in visitICmpInst()
103 Value* RHS = Ops1->front(); in visitICmpInst()
135 ValueSeq* Ops0, * Ops1; in visitBinaryOperator() local
143 std::tie(Ops1, std::ignore) = TL->getLegalizedValues(I.getOperand(1)); in visitBinaryOperator()
144 IGC_ASSERT(Ops1 != nullptr && Ops1->size() == 1); in visitBinaryOperator()
[all …]
H A DInstScalarizer.cpp56 ValueSeq* Ops0, * Ops1; in visitBinaryOperator() local
63 std::tie(Ops1, std::ignore) = TL->getLegalizedValues(I.getOperand(1)); in visitBinaryOperator()
64 IGC_ASSERT(Ops0Copy.size() == Ops1->size()); in visitBinaryOperator()
68 Value* RHS = (*Ops1)[i]; in visitBinaryOperator()
H A DInstExpander.cpp344 ValueSeq* Ops0, * Ops1; in visitBinaryOperator() local
351 std::tie(Ops1, std::ignore) = TL->getLegalizedValues(I.getOperand(1)); in visitBinaryOperator()
352 IGC_ASSERT(Ops0Copy.size() == Ops1->size()); in visitBinaryOperator()
361 Value* RHS = (*Ops1)[i]; in visitBinaryOperator()
/dports/net/rabbitmq/rabbitmq-server-3.9.11/deps/rabbitmq_management_agent/src/
H A Drabbit_mgmt_metrics_collector.erl211 Ops1 = insert_entry_ops(vhost_stats_coarse_conn_stats,
217 Ops1, BPolicies),
224 Ops1 = insert_entry_ops(vhost_stats_coarse_conn_stats,
228 {NextStats, Ops1, State};
291 Ops1, DPolicies);
293 Ops1
344 Ops1, BPolicies);
346 Ops1
390 {NextStats, Ops1, State}
451 Ops1
[all …]
/dports/math/tvmet/tvmet-1.7.2/testsuite/
H A DTestMathOps.h40 CPPUNIT_TEST( Ops1 );
75 void Ops1();
250 TestMathOps<T>::Ops1() { in Ops1() function
/dports/security/clamav-lts/clamav-0.103.5/libclamav/c++/llvm/lib/Analysis/
H A DConstantFolding.cpp851 Constant *Ops0, Constant *Ops1, in ConstantFoldCompareInstOperands() argument
861 if (TD && Ops1->isNullValue()) { in ConstantFoldCompareInstOperands()
882 if (ConstantExpr *CE1 = dyn_cast<ConstantExpr>(Ops1)) { in ConstantFoldCompareInstOperands()
909 CE0->getOpcode() == Instruction::Or && Ops1->isNullValue()) { in ConstantFoldCompareInstOperands()
911 ConstantFoldCompareInstOperands(Predicate, CE0->getOperand(0), Ops1,TD); in ConstantFoldCompareInstOperands()
913 ConstantFoldCompareInstOperands(Predicate, CE0->getOperand(1), Ops1,TD); in ConstantFoldCompareInstOperands()
921 return ConstantExpr::getCompare(Predicate, Ops0, Ops1); in ConstantFoldCompareInstOperands()
/dports/devel/llvm70/llvm-7.0.1.src/lib/Analysis/
H A DConstantFolding.cpp1176 Constant *Ops0, Constant *Ops1, in ConstantFoldCompareInstOperands() argument
1190 if (Ops1->isNullValue()) { in ConstantFoldCompareInstOperands()
1213 if (auto *CE1 = dyn_cast<ConstantExpr>(Ops1)) { in ConstantFoldCompareInstOperands()
1243 CE0->getOpcode() == Instruction::Or && Ops1->isNullValue()) { in ConstantFoldCompareInstOperands()
1245 Predicate, CE0->getOperand(0), Ops1, DL, TLI); in ConstantFoldCompareInstOperands()
1247 Predicate, CE0->getOperand(1), Ops1, DL, TLI); in ConstantFoldCompareInstOperands()
1252 } else if (isa<ConstantExpr>(Ops1)) { in ConstantFoldCompareInstOperands()
1256 return ConstantFoldCompareInstOperands(Predicate, Ops1, Ops0, DL, TLI); in ConstantFoldCompareInstOperands()
1259 return ConstantExpr::getCompare(Predicate, Ops0, Ops1); in ConstantFoldCompareInstOperands()
/dports/devel/llvm10/llvm-10.0.1.src/lib/Analysis/
H A DConstantFolding.cpp1205 Constant *Ops0, Constant *Ops1, in ConstantFoldCompareInstOperands() argument
1219 if (Ops1->isNullValue()) { in ConstantFoldCompareInstOperands()
1242 if (auto *CE1 = dyn_cast<ConstantExpr>(Ops1)) { in ConstantFoldCompareInstOperands()
1272 CE0->getOpcode() == Instruction::Or && Ops1->isNullValue()) { in ConstantFoldCompareInstOperands()
1274 Predicate, CE0->getOperand(0), Ops1, DL, TLI); in ConstantFoldCompareInstOperands()
1276 Predicate, CE0->getOperand(1), Ops1, DL, TLI); in ConstantFoldCompareInstOperands()
1281 } else if (isa<ConstantExpr>(Ops1)) { in ConstantFoldCompareInstOperands()
1285 return ConstantFoldCompareInstOperands(Predicate, Ops1, Ops0, DL, TLI); in ConstantFoldCompareInstOperands()
1288 return ConstantExpr::getCompare(Predicate, Ops0, Ops1); in ConstantFoldCompareInstOperands()
/dports/www/chromium-legacy/chromium-88.0.4324.182/third_party/swiftshader/third_party/llvm-10.0/llvm/lib/Analysis/
H A DConstantFolding.cpp1205 Constant *Ops0, Constant *Ops1, in ConstantFoldCompareInstOperands() argument
1219 if (Ops1->isNullValue()) { in ConstantFoldCompareInstOperands()
1242 if (auto *CE1 = dyn_cast<ConstantExpr>(Ops1)) { in ConstantFoldCompareInstOperands()
1272 CE0->getOpcode() == Instruction::Or && Ops1->isNullValue()) { in ConstantFoldCompareInstOperands()
1274 Predicate, CE0->getOperand(0), Ops1, DL, TLI); in ConstantFoldCompareInstOperands()
1276 Predicate, CE0->getOperand(1), Ops1, DL, TLI); in ConstantFoldCompareInstOperands()
1281 } else if (isa<ConstantExpr>(Ops1)) { in ConstantFoldCompareInstOperands()
1285 return ConstantFoldCompareInstOperands(Predicate, Ops1, Ops0, DL, TLI); in ConstantFoldCompareInstOperands()
1288 return ConstantExpr::getCompare(Predicate, Ops0, Ops1); in ConstantFoldCompareInstOperands()
/dports/devel/tinygo/tinygo-0.14.1/llvm-project/llvm/lib/Analysis/
H A DConstantFolding.cpp1205 Constant *Ops0, Constant *Ops1, in ConstantFoldCompareInstOperands() argument
1219 if (Ops1->isNullValue()) { in ConstantFoldCompareInstOperands()
1242 if (auto *CE1 = dyn_cast<ConstantExpr>(Ops1)) { in ConstantFoldCompareInstOperands()
1272 CE0->getOpcode() == Instruction::Or && Ops1->isNullValue()) { in ConstantFoldCompareInstOperands()
1274 Predicate, CE0->getOperand(0), Ops1, DL, TLI); in ConstantFoldCompareInstOperands()
1276 Predicate, CE0->getOperand(1), Ops1, DL, TLI); in ConstantFoldCompareInstOperands()
1281 } else if (isa<ConstantExpr>(Ops1)) { in ConstantFoldCompareInstOperands()
1285 return ConstantFoldCompareInstOperands(Predicate, Ops1, Ops0, DL, TLI); in ConstantFoldCompareInstOperands()
1288 return ConstantExpr::getCompare(Predicate, Ops0, Ops1); in ConstantFoldCompareInstOperands()
/dports/devel/llvm90/llvm-9.0.1.src/lib/Analysis/
H A DConstantFolding.cpp1185 Constant *Ops0, Constant *Ops1, in ConstantFoldCompareInstOperands() argument
1199 if (Ops1->isNullValue()) { in ConstantFoldCompareInstOperands()
1222 if (auto *CE1 = dyn_cast<ConstantExpr>(Ops1)) { in ConstantFoldCompareInstOperands()
1252 CE0->getOpcode() == Instruction::Or && Ops1->isNullValue()) { in ConstantFoldCompareInstOperands()
1254 Predicate, CE0->getOperand(0), Ops1, DL, TLI); in ConstantFoldCompareInstOperands()
1256 Predicate, CE0->getOperand(1), Ops1, DL, TLI); in ConstantFoldCompareInstOperands()
1261 } else if (isa<ConstantExpr>(Ops1)) { in ConstantFoldCompareInstOperands()
1265 return ConstantFoldCompareInstOperands(Predicate, Ops1, Ops0, DL, TLI); in ConstantFoldCompareInstOperands()
1268 return ConstantExpr::getCompare(Predicate, Ops0, Ops1); in ConstantFoldCompareInstOperands()
/dports/devel/llvm80/llvm-8.0.1.src/lib/Analysis/
H A DConstantFolding.cpp1180 Constant *Ops0, Constant *Ops1, in ConstantFoldCompareInstOperands() argument
1194 if (Ops1->isNullValue()) { in ConstantFoldCompareInstOperands()
1217 if (auto *CE1 = dyn_cast<ConstantExpr>(Ops1)) { in ConstantFoldCompareInstOperands()
1247 CE0->getOpcode() == Instruction::Or && Ops1->isNullValue()) { in ConstantFoldCompareInstOperands()
1249 Predicate, CE0->getOperand(0), Ops1, DL, TLI); in ConstantFoldCompareInstOperands()
1251 Predicate, CE0->getOperand(1), Ops1, DL, TLI); in ConstantFoldCompareInstOperands()
1256 } else if (isa<ConstantExpr>(Ops1)) { in ConstantFoldCompareInstOperands()
1260 return ConstantFoldCompareInstOperands(Predicate, Ops1, Ops0, DL, TLI); in ConstantFoldCompareInstOperands()
1263 return ConstantExpr::getCompare(Predicate, Ops0, Ops1); in ConstantFoldCompareInstOperands()
/dports/lang/yap/yap-6.2.2/misc/
H A Dbuildops277 split_ops(Ops0,Ops1,Ops2),
278 ( split_ops1(T, Ops1, Ops) ; Ops2 = Ops ),
288 split_ops([Op|Ops0],[Op|Ops1],Ops2) :-
290 split_ops(Ops0,Ops1,Ops2).
291 split_ops([Op|Ops0],[Op|Ops1],Ops2) :-
293 split_ops(Ops0,Ops1,Ops2).
294 split_ops([Op|Ops0],Ops1,[Op|Ops2]) :-
295 split_ops(Ops0,Ops1,Ops2).
/dports/devel/llvm-cheri/llvm-project-37c49ff00e3eadce5d8703fdc4497f28458c64a8/llvm/unittests/Transforms/Utils/
H A DValueMapperTest.cpp79 Metadata *Ops1[] = {T0.get(), ConstantAsMetadata::get(G0.get())}; in TEST() local
80 N1 = MDTuple::get(Context, Ops1); in TEST()
/dports/devel/llvm11/llvm-11.0.1.src/unittests/Transforms/Utils/
H A DValueMapperTest.cpp79 Metadata *Ops1[] = {T0.get(), ConstantAsMetadata::get(G0.get())}; in TEST() local
80 N1 = MDTuple::get(Context, Ops1); in TEST()
/dports/devel/llvm-devel/llvm-project-f05c95f10fc1d8171071735af8ad3a9e87633120/llvm/unittests/Transforms/Utils/
H A DValueMapperTest.cpp79 Metadata *Ops1[] = {T0.get(), ConstantAsMetadata::get(G0.get())}; in TEST() local
80 N1 = MDTuple::get(Context, Ops1); in TEST()
/dports/devel/llvm90/llvm-9.0.1.src/unittests/Transforms/Utils/
H A DValueMapperTest.cpp79 Metadata *Ops1[] = {T0.get(), ConstantAsMetadata::get(G0.get())}; in TEST() local
80 N1 = MDTuple::get(Context, Ops1); in TEST()
/dports/devel/llvm12/llvm-project-12.0.1.src/llvm/unittests/Transforms/Utils/
H A DValueMapperTest.cpp79 Metadata *Ops1[] = {T0.get(), ConstantAsMetadata::get(G0.get())}; in TEST() local
80 N1 = MDTuple::get(Context, Ops1); in TEST()
/dports/devel/llvm10/llvm-10.0.1.src/unittests/Transforms/Utils/
H A DValueMapperTest.cpp79 Metadata *Ops1[] = {T0.get(), ConstantAsMetadata::get(G0.get())}; in TEST() local
80 N1 = MDTuple::get(Context, Ops1); in TEST()
/dports/lang/rust/rustc-1.58.1-src/src/llvm-project/llvm/unittests/Transforms/Utils/
H A DValueMapperTest.cpp79 Metadata *Ops1[] = {T0.get(), ConstantAsMetadata::get(G0.get())}; in TEST() local
80 N1 = MDTuple::get(Context, Ops1); in TEST()
/dports/devel/wasi-compiler-rt12/llvm-project-12.0.1.src/llvm/unittests/Transforms/Utils/
H A DValueMapperTest.cpp79 Metadata *Ops1[] = {T0.get(), ConstantAsMetadata::get(G0.get())}; in TEST() local
80 N1 = MDTuple::get(Context, Ops1); in TEST()
/dports/devel/wasi-compiler-rt13/llvm-project-13.0.1.src/llvm/unittests/Transforms/Utils/
H A DValueMapperTest.cpp79 Metadata *Ops1[] = {T0.get(), ConstantAsMetadata::get(G0.get())}; in TEST() local
80 N1 = MDTuple::get(Context, Ops1); in TEST()
/dports/www/chromium-legacy/chromium-88.0.4324.182/third_party/llvm/llvm/unittests/Transforms/Utils/
H A DValueMapperTest.cpp79 Metadata *Ops1[] = {T0.get(), ConstantAsMetadata::get(G0.get())}; in TEST() local
80 N1 = MDTuple::get(Context, Ops1); in TEST()
/dports/devel/tinygo/tinygo-0.14.1/llvm-project/llvm/unittests/Transforms/Utils/
H A DValueMapperTest.cpp79 Metadata *Ops1[] = {T0.get(), ConstantAsMetadata::get(G0.get())}; in TEST() local
80 N1 = MDTuple::get(Context, Ops1); in TEST()
/dports/devel/wasi-libcxx/llvm-project-13.0.1.src/llvm/unittests/Transforms/Utils/
H A DValueMapperTest.cpp79 Metadata *Ops1[] = {T0.get(), ConstantAsMetadata::get(G0.get())}; in TEST() local
80 N1 = MDTuple::get(Context, Ops1); in TEST()

123456789