Home
last modified time | relevance | path

Searched refs:VecOp (Results 1 – 25 of 240) sorted by relevance

12345678910

/dports/devel/intel-graphics-compiler/intel-graphics-compiler-igc-1.0.9636/IGC/Compiler/Optimizer/IGCInstCombiner/4.0/
H A DInstCombineVectorOps.cpp330 Value *VecOp = IEI->getOperand(0); in collectSingleShuffleElements() local
341 if (collectSingleShuffleElements(VecOp, LHS, RHS, Mask)) { in collectSingleShuffleElements()
356 if (collectSingleShuffleElements(VecOp, LHS, RHS, Mask)) { in collectSingleShuffleElements()
485 Value *VecOp = IEI->getOperand(0); in collectShuffleElements() local
521 if (VecOp == PermittedRHS) { in collectShuffleElements()
755 Value *VecOp = IE.getOperand(0); in visitInsertElementInst() local
761 replaceInstUsesWith(IE, VecOp); in visitInsertElementInst()
775 return replaceInstUsesWith(IE, VecOp); in visitInsertElementInst()
782 if (EI->getOperand(0) == VecOp && ExtractedIdx == InsertedIdx) in visitInsertElementInst()
783 return replaceInstUsesWith(IE, VecOp); in visitInsertElementInst()
[all …]
/dports/devel/godot2/godot-2.1.6-stable/scene/resources/
H A Dshader_graph.h233 enum VecOp { enum
246 void vec_op_node_set_op(ShaderType p_which, float p_id, VecOp p_op);
247 VecOp vec_op_node_get_op(ShaderType p_which, float p_id) const;
398 VARIANT_ENUM_CAST(ShaderGraph::VecOp);
/dports/devel/godot2-tools/godot-2.1.6-stable/scene/resources/
H A Dshader_graph.h233 enum VecOp { enum
246 void vec_op_node_set_op(ShaderType p_which, float p_id, VecOp p_op);
247 VecOp vec_op_node_get_op(ShaderType p_which, float p_id) const;
398 VARIANT_ENUM_CAST(ShaderGraph::VecOp);
/dports/devel/intel-graphics-compiler/intel-graphics-compiler-igc-1.0.9636/IGC/Compiler/Optimizer/IGCInstCombiner/7.0/
H A DInstCombineVectorOps.cpp327 Value* VecOp = IEI->getOperand(0); in collectSingleShuffleElements() local
338 if (collectSingleShuffleElements(VecOp, LHS, RHS, Mask)) { in collectSingleShuffleElements()
484 Value* VecOp = IEI->getOperand(0); in collectShuffleElements() local
520 if (VecOp == PermittedRHS) { in collectShuffleElements()
797 Value* VecOp = IE.getOperand(0); in visitInsertElementInst() local
802 VecOp, ScalarOp, IdxOp, SQ.getWithInstruction(&IE))) in visitInsertElementInst()
807 replaceInstUsesWith(IE, VecOp); in visitInsertElementInst()
821 return replaceInstUsesWith(IE, VecOp); in visitInsertElementInst()
828 if (EI->getOperand(0) == VecOp && ExtractedIdx == InsertedIdx) in visitInsertElementInst()
829 return replaceInstUsesWith(IE, VecOp); in visitInsertElementInst()
[all …]
/dports/devel/llvm70/llvm-7.0.1.src/lib/Transforms/InstCombine/
H A DInstCombineVectorOps.cpp316 Value *VecOp = IEI->getOperand(0); in collectSingleShuffleElements() local
327 if (collectSingleShuffleElements(VecOp, LHS, RHS, Mask)) { in collectSingleShuffleElements()
342 if (collectSingleShuffleElements(VecOp, LHS, RHS, Mask)) { in collectSingleShuffleElements()
471 Value *VecOp = IEI->getOperand(0); in collectShuffleElements() local
507 if (VecOp == PermittedRHS) { in collectShuffleElements()
782 Value *VecOp = IE.getOperand(0); in visitInsertElementInst() local
787 VecOp, ScalarOp, IdxOp, SQ.getWithInstruction(&IE))) in visitInsertElementInst()
792 replaceInstUsesWith(IE, VecOp); in visitInsertElementInst()
806 return replaceInstUsesWith(IE, VecOp); in visitInsertElementInst()
814 return replaceInstUsesWith(IE, VecOp); in visitInsertElementInst()
[all …]
/dports/devel/llvm80/llvm-8.0.1.src/lib/Transforms/InstCombine/
H A DInstCombineVectorOps.cpp393 Value *VecOp = IEI->getOperand(0); in collectSingleShuffleElements() local
404 if (collectSingleShuffleElements(VecOp, LHS, RHS, Mask)) { in collectSingleShuffleElements()
548 Value *VecOp = IEI->getOperand(0); in collectShuffleElements() local
584 if (VecOp == PermittedRHS) { in collectShuffleElements()
859 Value *VecOp = IE.getOperand(0); in visitInsertElementInst() local
864 VecOp, ScalarOp, IdxOp, SQ.getWithInstruction(&IE))) in visitInsertElementInst()
869 replaceInstUsesWith(IE, VecOp); in visitInsertElementInst()
881 return replaceInstUsesWith(IE, VecOp); in visitInsertElementInst()
888 if (ExtVecOp == VecOp && ExtractedIdx == InsertedIdx) in visitInsertElementInst()
889 return replaceInstUsesWith(IE, VecOp); in visitInsertElementInst()
[all …]
/dports/graphics/opencv/opencv-4.5.3/modules/imgproc/src/
H A Dmedian_blur.simd.hpp677 template<class Op, class VecOp>
685 typedef typename VecOp::arg_type VT; in medianBlur_SortNet()
687 typedef typename VecOp::warg_type WVT; in medianBlur_SortNet()
697 VecOp vop; in medianBlur_SortNet()
751 for( ; j <= size.width - VecOp::WSIZE - cn; j += VecOp::WSIZE ) in medianBlur_SortNet()
765 for( ; j <= size.width - VecOp::SIZE - cn; j += VecOp::SIZE ) in medianBlur_SortNet()
866 for( ; j <= size.width - VecOp::WSIZE - cn*2; j += VecOp::WSIZE ) in medianBlur_SortNet()
903 for( ; j <= size.width - VecOp::SIZE - cn*2; j += VecOp::SIZE ) in medianBlur_SortNet()
H A Dmorph.simd.hpp488 template<class Op, class VecOp> struct MorphRowFilter : public BaseRowFilter
540 VecOp vecOp;
544 template<class Op, class VecOp> struct MorphColumnFilter : public BaseColumnFilter
637 VecOp vecOp;
641 template<class Op, class VecOp> struct MorphFilter : BaseFilter
704 VecOp vecOp;
H A Dfilter.simd.hpp2313 RowFilter( const Mat& _kernel, int _anchor, const VecOp& _vecOp=VecOp() ) in RowFilter()
2371 VecOp vecOp;
2376 public RowFilter<ST, DT, VecOp>
2379 const VecOp& _vecOp = VecOp()) in SymmRowSmallFilter()
2512 const VecOp& _vecOp=VecOp() ) in ColumnFilter()
2572 VecOp vecOp;
2577 template<class CastOp, class VecOp> struct SymmColumnFilter : public ColumnFilter<CastOp, VecOp>
2585 const VecOp& _vecOp=VecOp()) in SymmColumnFilter()
2694 const VecOp& _vecOp=VecOp()) in SymmColumnSmallFilter()
3033 const VecOp& _vecOp=VecOp() ) in Filter2D()
[all …]
/dports/science/mpqc/mpqc-2.3.1/src/lib/math/scmat/
H A Ddist.h121 enum VecOp {CopyFromVec, CopyToVec, AccumFromVec, AccumToVec}; enum
125 void vecform_op(VecOp op, int *ivec = 0);
/dports/devel/llvm-cheri/llvm-project-37c49ff00e3eadce5d8703fdc4497f28458c64a8/llvm/lib/Transforms/InstCombine/
H A DInstCombineVectorOps.cpp484 Value *VecOp = IEI->getOperand(0); in collectSingleShuffleElements() local
495 if (collectSingleShuffleElements(VecOp, LHS, RHS, Mask)) { in collectSingleShuffleElements()
511 if (collectSingleShuffleElements(VecOp, LHS, RHS, Mask)) { in collectSingleShuffleElements()
634 Value *VecOp = IEI->getOperand(0); in collectShuffleElements() local
669 if (VecOp == PermittedRHS) { in collectShuffleElements()
1045 Value *VecOp = IE.getOperand(0); in visitInsertElementInst() local
1050 VecOp, ScalarOp, IdxOp, SQ.getWithInstruction(&IE))) in visitInsertElementInst()
1057 if (match(VecOp, m_Undef()) && in visitInsertElementInst()
1073 if (match(VecOp, m_BitCast(m_Value(VecSrc))) && in visitInsertElementInst()
1075 (VecOp->hasOneUse() || ScalarOp->hasOneUse()) && in visitInsertElementInst()
[all …]
/dports/devel/llvm12/llvm-project-12.0.1.src/llvm/lib/Transforms/InstCombine/
H A DInstCombineVectorOps.cpp496 Value *VecOp = IEI->getOperand(0); in collectSingleShuffleElements() local
507 if (collectSingleShuffleElements(VecOp, LHS, RHS, Mask)) { in collectSingleShuffleElements()
523 if (collectSingleShuffleElements(VecOp, LHS, RHS, Mask)) { in collectSingleShuffleElements()
646 Value *VecOp = IEI->getOperand(0); in collectShuffleElements() local
681 if (VecOp == PermittedRHS) { in collectShuffleElements()
1343 Value *VecOp = IE.getOperand(0); in visitInsertElementInst() local
1348 VecOp, ScalarOp, IdxOp, SQ.getWithInstruction(&IE))) in visitInsertElementInst()
1355 if (match(VecOp, m_Undef()) && in visitInsertElementInst()
1371 if (match(VecOp, m_BitCast(m_Value(VecSrc))) && in visitInsertElementInst()
1373 (VecOp->hasOneUse() || ScalarOp->hasOneUse()) && in visitInsertElementInst()
[all …]
/dports/devel/llvm11/llvm-11.0.1.src/lib/Transforms/InstCombine/
H A DInstCombineVectorOps.cpp484 Value *VecOp = IEI->getOperand(0); in collectSingleShuffleElements() local
495 if (collectSingleShuffleElements(VecOp, LHS, RHS, Mask)) { in collectSingleShuffleElements()
511 if (collectSingleShuffleElements(VecOp, LHS, RHS, Mask)) { in collectSingleShuffleElements()
634 Value *VecOp = IEI->getOperand(0); in collectShuffleElements() local
669 if (VecOp == PermittedRHS) { in collectShuffleElements()
1045 Value *VecOp = IE.getOperand(0); in visitInsertElementInst() local
1050 VecOp, ScalarOp, IdxOp, SQ.getWithInstruction(&IE))) in visitInsertElementInst()
1057 if (match(VecOp, m_Undef()) && in visitInsertElementInst()
1073 if (match(VecOp, m_BitCast(m_Value(VecSrc))) && in visitInsertElementInst()
1075 (VecOp->hasOneUse() || ScalarOp->hasOneUse()) && in visitInsertElementInst()
[all …]
/dports/www/chromium-legacy/chromium-88.0.4324.182/third_party/llvm/llvm/lib/Transforms/InstCombine/
H A DInstCombineVectorOps.cpp496 Value *VecOp = IEI->getOperand(0); in collectSingleShuffleElements() local
507 if (collectSingleShuffleElements(VecOp, LHS, RHS, Mask)) { in collectSingleShuffleElements()
523 if (collectSingleShuffleElements(VecOp, LHS, RHS, Mask)) { in collectSingleShuffleElements()
646 Value *VecOp = IEI->getOperand(0); in collectShuffleElements() local
681 if (VecOp == PermittedRHS) { in collectShuffleElements()
1343 Value *VecOp = IE.getOperand(0); in visitInsertElementInst() local
1348 VecOp, ScalarOp, IdxOp, SQ.getWithInstruction(&IE))) in visitInsertElementInst()
1355 if (match(VecOp, m_Undef()) && in visitInsertElementInst()
1371 if (match(VecOp, m_BitCast(m_Value(VecSrc))) && in visitInsertElementInst()
1373 (VecOp->hasOneUse() || ScalarOp->hasOneUse()) && in visitInsertElementInst()
[all …]
/dports/devel/wasi-compiler-rt12/llvm-project-12.0.1.src/llvm/lib/Transforms/InstCombine/
H A DInstCombineVectorOps.cpp496 Value *VecOp = IEI->getOperand(0); in collectSingleShuffleElements() local
507 if (collectSingleShuffleElements(VecOp, LHS, RHS, Mask)) { in collectSingleShuffleElements()
523 if (collectSingleShuffleElements(VecOp, LHS, RHS, Mask)) { in collectSingleShuffleElements()
646 Value *VecOp = IEI->getOperand(0); in collectShuffleElements() local
681 if (VecOp == PermittedRHS) { in collectShuffleElements()
1343 Value *VecOp = IE.getOperand(0); in visitInsertElementInst() local
1348 VecOp, ScalarOp, IdxOp, SQ.getWithInstruction(&IE))) in visitInsertElementInst()
1355 if (match(VecOp, m_Undef()) && in visitInsertElementInst()
1371 if (match(VecOp, m_BitCast(m_Value(VecSrc))) && in visitInsertElementInst()
1373 (VecOp->hasOneUse() || ScalarOp->hasOneUse()) && in visitInsertElementInst()
[all …]
/dports/devel/llvm90/llvm-9.0.1.src/lib/Transforms/InstCombine/
H A DInstCombineVectorOps.cpp392 Value *VecOp = IEI->getOperand(0); in collectSingleShuffleElements() local
403 if (collectSingleShuffleElements(VecOp, LHS, RHS, Mask)) { in collectSingleShuffleElements()
418 if (collectSingleShuffleElements(VecOp, LHS, RHS, Mask)) { in collectSingleShuffleElements()
547 Value *VecOp = IEI->getOperand(0); in collectShuffleElements() local
561 ShuffleOps LR = collectShuffleElements(VecOp, Mask, RHS, IC); in collectShuffleElements()
583 if (VecOp == PermittedRHS) { in collectShuffleElements()
899 Value *VecOp = IE.getOperand(0); in visitInsertElementInst() local
904 VecOp, ScalarOp, IdxOp, SQ.getWithInstruction(&IE))) in visitInsertElementInst()
910 if (match(VecOp, m_BitCast(m_Value(VecSrc))) && in visitInsertElementInst()
912 (VecOp->hasOneUse() || ScalarOp->hasOneUse()) && in visitInsertElementInst()
[all …]
/dports/devel/llvm10/llvm-10.0.1.src/lib/Transforms/InstCombine/
H A DInstCombineVectorOps.cpp471 Value *VecOp = IEI->getOperand(0); in collectSingleShuffleElements() local
482 if (collectSingleShuffleElements(VecOp, LHS, RHS, Mask)) { in collectSingleShuffleElements()
497 if (collectSingleShuffleElements(VecOp, LHS, RHS, Mask)) { in collectSingleShuffleElements()
626 Value *VecOp = IEI->getOperand(0); in collectShuffleElements() local
640 ShuffleOps LR = collectShuffleElements(VecOp, Mask, RHS, IC); in collectShuffleElements()
662 if (VecOp == PermittedRHS) { in collectShuffleElements()
1027 Value *VecOp = IE.getOperand(0); in visitInsertElementInst() local
1032 VecOp, ScalarOp, IdxOp, SQ.getWithInstruction(&IE))) in visitInsertElementInst()
1038 if (match(VecOp, m_BitCast(m_Value(VecSrc))) && in visitInsertElementInst()
1040 (VecOp->hasOneUse() || ScalarOp->hasOneUse()) && in visitInsertElementInst()
[all …]
/dports/www/chromium-legacy/chromium-88.0.4324.182/third_party/swiftshader/third_party/llvm-10.0/llvm/lib/Transforms/InstCombine/
H A DInstCombineVectorOps.cpp471 Value *VecOp = IEI->getOperand(0); in collectSingleShuffleElements() local
482 if (collectSingleShuffleElements(VecOp, LHS, RHS, Mask)) { in collectSingleShuffleElements()
497 if (collectSingleShuffleElements(VecOp, LHS, RHS, Mask)) { in collectSingleShuffleElements()
626 Value *VecOp = IEI->getOperand(0); in collectShuffleElements() local
640 ShuffleOps LR = collectShuffleElements(VecOp, Mask, RHS, IC); in collectShuffleElements()
662 if (VecOp == PermittedRHS) { in collectShuffleElements()
1027 Value *VecOp = IE.getOperand(0); in visitInsertElementInst() local
1032 VecOp, ScalarOp, IdxOp, SQ.getWithInstruction(&IE))) in visitInsertElementInst()
1038 if (match(VecOp, m_BitCast(m_Value(VecSrc))) && in visitInsertElementInst()
1040 (VecOp->hasOneUse() || ScalarOp->hasOneUse()) && in visitInsertElementInst()
[all …]
/dports/devel/tinygo/tinygo-0.14.1/llvm-project/llvm/lib/Transforms/InstCombine/
H A DInstCombineVectorOps.cpp471 Value *VecOp = IEI->getOperand(0); in collectSingleShuffleElements() local
482 if (collectSingleShuffleElements(VecOp, LHS, RHS, Mask)) { in collectSingleShuffleElements()
497 if (collectSingleShuffleElements(VecOp, LHS, RHS, Mask)) { in collectSingleShuffleElements()
626 Value *VecOp = IEI->getOperand(0); in collectShuffleElements() local
640 ShuffleOps LR = collectShuffleElements(VecOp, Mask, RHS, IC); in collectShuffleElements()
662 if (VecOp == PermittedRHS) { in collectShuffleElements()
1027 Value *VecOp = IE.getOperand(0); in visitInsertElementInst() local
1032 VecOp, ScalarOp, IdxOp, SQ.getWithInstruction(&IE))) in visitInsertElementInst()
1038 if (match(VecOp, m_BitCast(m_Value(VecSrc))) && in visitInsertElementInst()
1040 (VecOp->hasOneUse() || ScalarOp->hasOneUse()) && in visitInsertElementInst()
[all …]
/dports/devel/wasi-libcxx/llvm-project-13.0.1.src/llvm/lib/Transforms/InstCombine/
H A DInstCombineVectorOps.cpp557 Value *VecOp = IEI->getOperand(0); in collectSingleShuffleElements() local
568 if (collectSingleShuffleElements(VecOp, LHS, RHS, Mask)) { in collectSingleShuffleElements()
584 if (collectSingleShuffleElements(VecOp, LHS, RHS, Mask)) { in collectSingleShuffleElements()
707 Value *VecOp = IEI->getOperand(0); in collectShuffleElements() local
742 if (VecOp == PermittedRHS) { in collectShuffleElements()
1403 Value *VecOp = IE.getOperand(0); in visitInsertElementInst() local
1408 VecOp, ScalarOp, IdxOp, SQ.getWithInstruction(&IE))) in visitInsertElementInst()
1415 if (match(VecOp, m_Undef()) && in visitInsertElementInst()
1431 if (match(VecOp, m_BitCast(m_Value(VecSrc))) && in visitInsertElementInst()
1433 (VecOp->hasOneUse() || ScalarOp->hasOneUse()) && in visitInsertElementInst()
[all …]
/dports/graphics/llvm-mesa/llvm-13.0.1.src/lib/Transforms/InstCombine/
H A DInstCombineVectorOps.cpp557 Value *VecOp = IEI->getOperand(0); in collectSingleShuffleElements() local
568 if (collectSingleShuffleElements(VecOp, LHS, RHS, Mask)) { in collectSingleShuffleElements()
584 if (collectSingleShuffleElements(VecOp, LHS, RHS, Mask)) { in collectSingleShuffleElements()
707 Value *VecOp = IEI->getOperand(0); in collectShuffleElements() local
742 if (VecOp == PermittedRHS) { in collectShuffleElements()
1403 Value *VecOp = IE.getOperand(0); in visitInsertElementInst() local
1408 VecOp, ScalarOp, IdxOp, SQ.getWithInstruction(&IE))) in visitInsertElementInst()
1415 if (match(VecOp, m_Undef()) && in visitInsertElementInst()
1431 if (match(VecOp, m_BitCast(m_Value(VecSrc))) && in visitInsertElementInst()
1433 (VecOp->hasOneUse() || ScalarOp->hasOneUse()) && in visitInsertElementInst()
[all …]
/dports/lang/rust/rustc-1.58.1-src/src/llvm-project/llvm/lib/Transforms/InstCombine/
H A DInstCombineVectorOps.cpp557 Value *VecOp = IEI->getOperand(0); in collectSingleShuffleElements() local
568 if (collectSingleShuffleElements(VecOp, LHS, RHS, Mask)) { in collectSingleShuffleElements()
584 if (collectSingleShuffleElements(VecOp, LHS, RHS, Mask)) { in collectSingleShuffleElements()
707 Value *VecOp = IEI->getOperand(0); in collectShuffleElements() local
742 if (VecOp == PermittedRHS) { in collectShuffleElements()
1403 Value *VecOp = IE.getOperand(0); in visitInsertElementInst() local
1408 VecOp, ScalarOp, IdxOp, SQ.getWithInstruction(&IE))) in visitInsertElementInst()
1415 if (match(VecOp, m_Undef()) && in visitInsertElementInst()
1431 if (match(VecOp, m_BitCast(m_Value(VecSrc))) && in visitInsertElementInst()
1433 (VecOp->hasOneUse() || ScalarOp->hasOneUse()) && in visitInsertElementInst()
[all …]
/dports/devel/llvm-devel/llvm-project-f05c95f10fc1d8171071735af8ad3a9e87633120/llvm/lib/Transforms/InstCombine/
H A DInstCombineVectorOps.cpp587 Value *VecOp = IEI->getOperand(0); in collectSingleShuffleElements() local
598 if (collectSingleShuffleElements(VecOp, LHS, RHS, Mask)) { in collectSingleShuffleElements()
614 if (collectSingleShuffleElements(VecOp, LHS, RHS, Mask)) { in collectSingleShuffleElements()
736 Value *VecOp = IEI->getOperand(0); in collectShuffleElements() local
771 if (VecOp == PermittedRHS) { in collectShuffleElements()
1471 Value *VecOp = IE.getOperand(0); in visitInsertElementInst() local
1476 VecOp, ScalarOp, IdxOp, SQ.getWithInstruction(&IE))) in visitInsertElementInst()
1483 if (match(VecOp, m_Undef()) && in visitInsertElementInst()
1499 if (match(VecOp, m_BitCast(m_Value(VecSrc))) && in visitInsertElementInst()
1501 (VecOp->hasOneUse() || ScalarOp->hasOneUse()) && in visitInsertElementInst()
[all …]
/dports/devel/wasi-compiler-rt13/llvm-project-13.0.1.src/llvm/lib/Transforms/InstCombine/
H A DInstCombineVectorOps.cpp557 Value *VecOp = IEI->getOperand(0); in collectSingleShuffleElements() local
568 if (collectSingleShuffleElements(VecOp, LHS, RHS, Mask)) { in collectSingleShuffleElements()
584 if (collectSingleShuffleElements(VecOp, LHS, RHS, Mask)) { in collectSingleShuffleElements()
707 Value *VecOp = IEI->getOperand(0); in collectShuffleElements() local
742 if (VecOp == PermittedRHS) { in collectShuffleElements()
1403 Value *VecOp = IE.getOperand(0); in visitInsertElementInst() local
1408 VecOp, ScalarOp, IdxOp, SQ.getWithInstruction(&IE))) in visitInsertElementInst()
1415 if (match(VecOp, m_Undef()) && in visitInsertElementInst()
1431 if (match(VecOp, m_BitCast(m_Value(VecSrc))) && in visitInsertElementInst()
1433 (VecOp->hasOneUse() || ScalarOp->hasOneUse()) && in visitInsertElementInst()
[all …]
/dports/devel/llvm13/llvm-project-13.0.1.src/llvm/lib/Transforms/InstCombine/
H A DInstCombineVectorOps.cpp557 Value *VecOp = IEI->getOperand(0); in collectSingleShuffleElements() local
568 if (collectSingleShuffleElements(VecOp, LHS, RHS, Mask)) { in collectSingleShuffleElements()
584 if (collectSingleShuffleElements(VecOp, LHS, RHS, Mask)) { in collectSingleShuffleElements()
707 Value *VecOp = IEI->getOperand(0); in collectShuffleElements() local
742 if (VecOp == PermittedRHS) { in collectShuffleElements()
1403 Value *VecOp = IE.getOperand(0); in visitInsertElementInst() local
1408 VecOp, ScalarOp, IdxOp, SQ.getWithInstruction(&IE))) in visitInsertElementInst()
1415 if (match(VecOp, m_Undef()) && in visitInsertElementInst()
1431 if (match(VecOp, m_BitCast(m_Value(VecSrc))) && in visitInsertElementInst()
1433 (VecOp->hasOneUse() || ScalarOp->hasOneUse()) && in visitInsertElementInst()
[all …]

12345678910