Home
last modified time | relevance | path

Searched refs:NewShiftAmt (Results 1 – 25 of 47) sorted by relevance

12

/dports/devel/llvm80/llvm-8.0.1.src/lib/Target/X86/
H A DX86ISelDAGToDAG.cpp3208 SDValue NewShiftAmt; in tryShiftAmountMod() local
3216 NewShiftAmt = Add0; in tryShiftAmountMod()
3229 NewShiftAmt = Neg; in tryShiftAmountMod()
3240 if (NewShiftAmt.getValueType() != MVT::i8) { in tryShiftAmountMod()
3242 NewShiftAmt = CurDAG->getNode(ISD::TRUNCATE, DL, MVT::i8, NewShiftAmt); in tryShiftAmountMod()
3244 insertDAGNode(*CurDAG, OrigShiftAmt, NewShiftAmt); in tryShiftAmountMod()
3249 NewShiftAmt = CurDAG->getNode(ISD::AND, DL, MVT::i8, NewShiftAmt, in tryShiftAmountMod()
3252 insertDAGNode(*CurDAG, OrigShiftAmt, NewShiftAmt); in tryShiftAmountMod()
3255 NewShiftAmt); in tryShiftAmountMod()
/dports/devel/llvm90/llvm-9.0.1.src/lib/Target/AArch64/
H A DAArch64ISelDAGToDAG.cpp2505 SDValue NewShiftAmt; in tryShiftAmountMod() local
2520 NewShiftAmt = Add0; in tryShiftAmountMod()
2541 NewShiftAmt = SDValue(Neg, 0); in tryShiftAmountMod()
2555 NewShiftAmt = ShiftAmt->getOperand(0); in tryShiftAmountMod()
2560 NewShiftAmt = narrowIfNeeded(CurDAG, NewShiftAmt); in tryShiftAmountMod()
2561 else if (VT == MVT::i64 && NewShiftAmt->getValueType(0) == MVT::i32) { in tryShiftAmountMod()
2565 CurDAG->getTargetConstant(0, DL, MVT::i64), NewShiftAmt, SubReg); in tryShiftAmountMod()
2566 NewShiftAmt = SDValue(Ext, 0); in tryShiftAmountMod()
2569 SDValue Ops[] = {N->getOperand(0), NewShiftAmt}; in tryShiftAmountMod()
/dports/devel/llvm80/llvm-8.0.1.src/lib/Target/AArch64/
H A DAArch64ISelDAGToDAG.cpp2474 SDValue NewShiftAmt; in tryShiftAmountMod() local
2489 NewShiftAmt = Add0; in tryShiftAmountMod()
2510 NewShiftAmt = SDValue(Neg, 0); in tryShiftAmountMod()
2524 NewShiftAmt = ShiftAmt->getOperand(0); in tryShiftAmountMod()
2529 NewShiftAmt = narrowIfNeeded(CurDAG, NewShiftAmt); in tryShiftAmountMod()
2530 else if (VT == MVT::i64 && NewShiftAmt->getValueType(0) == MVT::i32) { in tryShiftAmountMod()
2534 CurDAG->getTargetConstant(0, DL, MVT::i64), NewShiftAmt, SubReg); in tryShiftAmountMod()
2535 NewShiftAmt = SDValue(Ext, 0); in tryShiftAmountMod()
2538 SDValue Ops[] = {N->getOperand(0), NewShiftAmt}; in tryShiftAmountMod()
/dports/devel/llvm70/llvm-7.0.1.src/lib/Target/AArch64/
H A DAArch64ISelDAGToDAG.cpp2481 SDValue NewShiftAmt;
2496 NewShiftAmt = Add0;
2517 NewShiftAmt = SDValue(Neg, 0);
2531 NewShiftAmt = ShiftAmt->getOperand(0);
2536 NewShiftAmt = narrowIfNeeded(CurDAG, NewShiftAmt);
2537 else if (VT == MVT::i64 && NewShiftAmt->getValueType(0) == MVT::i32) {
2541 CurDAG->getTargetConstant(0, DL, MVT::i64), NewShiftAmt, SubReg);
2542 NewShiftAmt = SDValue(Ext, 0);
2545 SDValue Ops[] = {N->getOperand(0), NewShiftAmt};
/dports/devel/tinygo/tinygo-0.14.1/llvm-project/llvm/lib/Target/X86/
H A DX86ISelDAGToDAG.cpp3720 SDValue NewShiftAmt; in tryShiftAmountMod() local
3728 NewShiftAmt = Add0; in tryShiftAmountMod()
3741 NewShiftAmt = Neg; in tryShiftAmountMod()
3752 if (NewShiftAmt.getValueType() != MVT::i8) { in tryShiftAmountMod()
3754 NewShiftAmt = CurDAG->getNode(ISD::TRUNCATE, DL, MVT::i8, NewShiftAmt); in tryShiftAmountMod()
3756 insertDAGNode(*CurDAG, OrigShiftAmt, NewShiftAmt); in tryShiftAmountMod()
3761 NewShiftAmt = CurDAG->getNode(ISD::AND, DL, MVT::i8, NewShiftAmt, in tryShiftAmountMod()
3764 insertDAGNode(*CurDAG, OrigShiftAmt, NewShiftAmt); in tryShiftAmountMod()
3767 NewShiftAmt); in tryShiftAmountMod()
/dports/devel/llvm10/llvm-10.0.1.src/lib/Target/X86/
H A DX86ISelDAGToDAG.cpp3720 SDValue NewShiftAmt; in tryShiftAmountMod() local
3728 NewShiftAmt = Add0; in tryShiftAmountMod()
3741 NewShiftAmt = Neg; in tryShiftAmountMod()
3752 if (NewShiftAmt.getValueType() != MVT::i8) { in tryShiftAmountMod()
3754 NewShiftAmt = CurDAG->getNode(ISD::TRUNCATE, DL, MVT::i8, NewShiftAmt); in tryShiftAmountMod()
3756 insertDAGNode(*CurDAG, OrigShiftAmt, NewShiftAmt); in tryShiftAmountMod()
3761 NewShiftAmt = CurDAG->getNode(ISD::AND, DL, MVT::i8, NewShiftAmt, in tryShiftAmountMod()
3764 insertDAGNode(*CurDAG, OrigShiftAmt, NewShiftAmt); in tryShiftAmountMod()
3767 NewShiftAmt); in tryShiftAmountMod()
/dports/www/chromium-legacy/chromium-88.0.4324.182/third_party/swiftshader/third_party/llvm-10.0/llvm/lib/Target/X86/
H A DX86ISelDAGToDAG.cpp3720 SDValue NewShiftAmt; in tryShiftAmountMod() local
3728 NewShiftAmt = Add0; in tryShiftAmountMod()
3741 NewShiftAmt = Neg; in tryShiftAmountMod()
3752 if (NewShiftAmt.getValueType() != MVT::i8) { in tryShiftAmountMod()
3754 NewShiftAmt = CurDAG->getNode(ISD::TRUNCATE, DL, MVT::i8, NewShiftAmt); in tryShiftAmountMod()
3756 insertDAGNode(*CurDAG, OrigShiftAmt, NewShiftAmt); in tryShiftAmountMod()
3761 NewShiftAmt = CurDAG->getNode(ISD::AND, DL, MVT::i8, NewShiftAmt, in tryShiftAmountMod()
3764 insertDAGNode(*CurDAG, OrigShiftAmt, NewShiftAmt); in tryShiftAmountMod()
3767 NewShiftAmt); in tryShiftAmountMod()
/dports/devel/llvm90/llvm-9.0.1.src/lib/Target/X86/
H A DX86ISelDAGToDAG.cpp3594 SDValue NewShiftAmt; in tryShiftAmountMod() local
3602 NewShiftAmt = Add0; in tryShiftAmountMod()
3615 NewShiftAmt = Neg; in tryShiftAmountMod()
3626 if (NewShiftAmt.getValueType() != MVT::i8) { in tryShiftAmountMod()
3628 NewShiftAmt = CurDAG->getNode(ISD::TRUNCATE, DL, MVT::i8, NewShiftAmt); in tryShiftAmountMod()
3630 insertDAGNode(*CurDAG, OrigShiftAmt, NewShiftAmt); in tryShiftAmountMod()
3635 NewShiftAmt = CurDAG->getNode(ISD::AND, DL, MVT::i8, NewShiftAmt, in tryShiftAmountMod()
3638 insertDAGNode(*CurDAG, OrigShiftAmt, NewShiftAmt); in tryShiftAmountMod()
3641 NewShiftAmt); in tryShiftAmountMod()
/dports/devel/llvm-cheri/llvm-project-37c49ff00e3eadce5d8703fdc4497f28458c64a8/llvm/lib/Target/X86/
H A DX86ISelDAGToDAG.cpp3748 SDValue NewShiftAmt; in tryShiftAmountMod() local
3756 NewShiftAmt = Add0; in tryShiftAmountMod()
3769 NewShiftAmt = Neg; in tryShiftAmountMod()
3780 if (NewShiftAmt.getValueType() != MVT::i8) { in tryShiftAmountMod()
3782 NewShiftAmt = CurDAG->getNode(ISD::TRUNCATE, DL, MVT::i8, NewShiftAmt); in tryShiftAmountMod()
3784 insertDAGNode(*CurDAG, OrigShiftAmt, NewShiftAmt); in tryShiftAmountMod()
3789 NewShiftAmt = CurDAG->getNode(ISD::AND, DL, MVT::i8, NewShiftAmt, in tryShiftAmountMod()
3792 insertDAGNode(*CurDAG, OrigShiftAmt, NewShiftAmt); in tryShiftAmountMod()
3795 NewShiftAmt); in tryShiftAmountMod()
/dports/devel/llvm11/llvm-11.0.1.src/lib/Target/X86/
H A DX86ISelDAGToDAG.cpp3749 SDValue NewShiftAmt; in tryShiftAmountMod() local
3757 NewShiftAmt = Add0; in tryShiftAmountMod()
3770 NewShiftAmt = Neg; in tryShiftAmountMod()
3781 if (NewShiftAmt.getValueType() != MVT::i8) { in tryShiftAmountMod()
3783 NewShiftAmt = CurDAG->getNode(ISD::TRUNCATE, DL, MVT::i8, NewShiftAmt); in tryShiftAmountMod()
3785 insertDAGNode(*CurDAG, OrigShiftAmt, NewShiftAmt); in tryShiftAmountMod()
3790 NewShiftAmt = CurDAG->getNode(ISD::AND, DL, MVT::i8, NewShiftAmt, in tryShiftAmountMod()
3793 insertDAGNode(*CurDAG, OrigShiftAmt, NewShiftAmt); in tryShiftAmountMod()
3796 NewShiftAmt); in tryShiftAmountMod()
/dports/devel/llvm10/llvm-10.0.1.src/lib/Target/AArch64/
H A DAArch64ISelDAGToDAG.cpp2591 SDValue NewShiftAmt; in tryShiftAmountMod() local
2606 NewShiftAmt = Add0; in tryShiftAmountMod()
2627 NewShiftAmt = SDValue(Neg, 0); in tryShiftAmountMod()
2641 NewShiftAmt = ShiftAmt->getOperand(0); in tryShiftAmountMod()
2646 NewShiftAmt = narrowIfNeeded(CurDAG, NewShiftAmt); in tryShiftAmountMod()
2647 else if (VT == MVT::i64 && NewShiftAmt->getValueType(0) == MVT::i32) { in tryShiftAmountMod()
2651 CurDAG->getTargetConstant(0, DL, MVT::i64), NewShiftAmt, SubReg); in tryShiftAmountMod()
2652 NewShiftAmt = SDValue(Ext, 0); in tryShiftAmountMod()
2655 SDValue Ops[] = {N->getOperand(0), NewShiftAmt}; in tryShiftAmountMod()
/dports/www/chromium-legacy/chromium-88.0.4324.182/third_party/swiftshader/third_party/llvm-10.0/llvm/lib/Target/AArch64/
H A DAArch64ISelDAGToDAG.cpp2591 SDValue NewShiftAmt; in tryShiftAmountMod() local
2606 NewShiftAmt = Add0; in tryShiftAmountMod()
2627 NewShiftAmt = SDValue(Neg, 0); in tryShiftAmountMod()
2641 NewShiftAmt = ShiftAmt->getOperand(0); in tryShiftAmountMod()
2646 NewShiftAmt = narrowIfNeeded(CurDAG, NewShiftAmt); in tryShiftAmountMod()
2647 else if (VT == MVT::i64 && NewShiftAmt->getValueType(0) == MVT::i32) { in tryShiftAmountMod()
2651 CurDAG->getTargetConstant(0, DL, MVT::i64), NewShiftAmt, SubReg); in tryShiftAmountMod()
2652 NewShiftAmt = SDValue(Ext, 0); in tryShiftAmountMod()
2655 SDValue Ops[] = {N->getOperand(0), NewShiftAmt}; in tryShiftAmountMod()
/dports/devel/tinygo/tinygo-0.14.1/llvm-project/llvm/lib/Target/AArch64/
H A DAArch64ISelDAGToDAG.cpp2591 SDValue NewShiftAmt; in tryShiftAmountMod() local
2606 NewShiftAmt = Add0; in tryShiftAmountMod()
2627 NewShiftAmt = SDValue(Neg, 0); in tryShiftAmountMod()
2641 NewShiftAmt = ShiftAmt->getOperand(0); in tryShiftAmountMod()
2646 NewShiftAmt = narrowIfNeeded(CurDAG, NewShiftAmt); in tryShiftAmountMod()
2647 else if (VT == MVT::i64 && NewShiftAmt->getValueType(0) == MVT::i32) { in tryShiftAmountMod()
2651 CurDAG->getTargetConstant(0, DL, MVT::i64), NewShiftAmt, SubReg); in tryShiftAmountMod()
2652 NewShiftAmt = SDValue(Ext, 0); in tryShiftAmountMod()
2655 SDValue Ops[] = {N->getOperand(0), NewShiftAmt}; in tryShiftAmountMod()
/dports/www/chromium-legacy/chromium-88.0.4324.182/third_party/llvm/llvm/lib/Target/X86/
H A DX86ISelDAGToDAG.cpp3819 SDValue NewShiftAmt; in tryShiftAmountMod() local
3827 NewShiftAmt = Add0; in tryShiftAmountMod()
3840 NewShiftAmt = Neg; in tryShiftAmountMod()
3851 if (NewShiftAmt.getValueType() != MVT::i8) { in tryShiftAmountMod()
3853 NewShiftAmt = CurDAG->getNode(ISD::TRUNCATE, DL, MVT::i8, NewShiftAmt); in tryShiftAmountMod()
3855 insertDAGNode(*CurDAG, OrigShiftAmt, NewShiftAmt); in tryShiftAmountMod()
3860 NewShiftAmt = CurDAG->getNode(ISD::AND, DL, MVT::i8, NewShiftAmt, in tryShiftAmountMod()
3863 insertDAGNode(*CurDAG, OrigShiftAmt, NewShiftAmt); in tryShiftAmountMod()
3866 NewShiftAmt); in tryShiftAmountMod()
/dports/devel/wasi-libcxx/llvm-project-13.0.1.src/llvm/lib/Target/X86/
H A DX86ISelDAGToDAG.cpp3844 SDValue NewShiftAmt; in tryShiftAmountMod() local
3853 NewShiftAmt = Add0; in tryShiftAmountMod()
3884 NewShiftAmt = Neg; in tryShiftAmountMod()
3895 if (NewShiftAmt.getValueType() != MVT::i8) { in tryShiftAmountMod()
3897 NewShiftAmt = CurDAG->getNode(ISD::TRUNCATE, DL, MVT::i8, NewShiftAmt); in tryShiftAmountMod()
3899 insertDAGNode(*CurDAG, OrigShiftAmt, NewShiftAmt); in tryShiftAmountMod()
3904 NewShiftAmt = CurDAG->getNode(ISD::AND, DL, MVT::i8, NewShiftAmt, in tryShiftAmountMod()
3907 insertDAGNode(*CurDAG, OrigShiftAmt, NewShiftAmt); in tryShiftAmountMod()
3910 NewShiftAmt); in tryShiftAmountMod()
/dports/graphics/llvm-mesa/llvm-13.0.1.src/lib/Target/X86/
H A DX86ISelDAGToDAG.cpp3844 SDValue NewShiftAmt; in tryShiftAmountMod() local
3853 NewShiftAmt = Add0; in tryShiftAmountMod()
3884 NewShiftAmt = Neg; in tryShiftAmountMod()
3895 if (NewShiftAmt.getValueType() != MVT::i8) { in tryShiftAmountMod()
3897 NewShiftAmt = CurDAG->getNode(ISD::TRUNCATE, DL, MVT::i8, NewShiftAmt); in tryShiftAmountMod()
3899 insertDAGNode(*CurDAG, OrigShiftAmt, NewShiftAmt); in tryShiftAmountMod()
3904 NewShiftAmt = CurDAG->getNode(ISD::AND, DL, MVT::i8, NewShiftAmt, in tryShiftAmountMod()
3907 insertDAGNode(*CurDAG, OrigShiftAmt, NewShiftAmt); in tryShiftAmountMod()
3910 NewShiftAmt); in tryShiftAmountMod()
/dports/devel/llvm12/llvm-project-12.0.1.src/llvm/lib/Target/X86/
H A DX86ISelDAGToDAG.cpp3843 SDValue NewShiftAmt; in tryShiftAmountMod() local
3851 NewShiftAmt = Add0; in tryShiftAmountMod()
3864 NewShiftAmt = Neg; in tryShiftAmountMod()
3875 if (NewShiftAmt.getValueType() != MVT::i8) { in tryShiftAmountMod()
3877 NewShiftAmt = CurDAG->getNode(ISD::TRUNCATE, DL, MVT::i8, NewShiftAmt); in tryShiftAmountMod()
3879 insertDAGNode(*CurDAG, OrigShiftAmt, NewShiftAmt); in tryShiftAmountMod()
3884 NewShiftAmt = CurDAG->getNode(ISD::AND, DL, MVT::i8, NewShiftAmt, in tryShiftAmountMod()
3887 insertDAGNode(*CurDAG, OrigShiftAmt, NewShiftAmt); in tryShiftAmountMod()
3890 NewShiftAmt); in tryShiftAmountMod()
/dports/lang/rust/rustc-1.58.1-src/src/llvm-project/llvm/lib/Target/X86/
H A DX86ISelDAGToDAG.cpp3844 SDValue NewShiftAmt; in tryShiftAmountMod() local
3853 NewShiftAmt = Add0; in tryShiftAmountMod()
3884 NewShiftAmt = Neg; in tryShiftAmountMod()
3895 if (NewShiftAmt.getValueType() != MVT::i8) { in tryShiftAmountMod()
3897 NewShiftAmt = CurDAG->getNode(ISD::TRUNCATE, DL, MVT::i8, NewShiftAmt); in tryShiftAmountMod()
3899 insertDAGNode(*CurDAG, OrigShiftAmt, NewShiftAmt); in tryShiftAmountMod()
3904 NewShiftAmt = CurDAG->getNode(ISD::AND, DL, MVT::i8, NewShiftAmt, in tryShiftAmountMod()
3907 insertDAGNode(*CurDAG, OrigShiftAmt, NewShiftAmt); in tryShiftAmountMod()
3910 NewShiftAmt); in tryShiftAmountMod()
/dports/devel/llvm-devel/llvm-project-f05c95f10fc1d8171071735af8ad3a9e87633120/llvm/lib/Target/X86/
H A DX86ISelDAGToDAG.cpp3887 SDValue NewShiftAmt; in tryShiftAmountMod() local
3896 NewShiftAmt = Add0; in tryShiftAmountMod()
3927 NewShiftAmt = Neg; in tryShiftAmountMod()
3938 if (NewShiftAmt.getValueType() != MVT::i8) { in tryShiftAmountMod()
3940 NewShiftAmt = CurDAG->getNode(ISD::TRUNCATE, DL, MVT::i8, NewShiftAmt); in tryShiftAmountMod()
3942 insertDAGNode(*CurDAG, OrigShiftAmt, NewShiftAmt); in tryShiftAmountMod()
3947 NewShiftAmt = CurDAG->getNode(ISD::AND, DL, MVT::i8, NewShiftAmt, in tryShiftAmountMod()
3950 insertDAGNode(*CurDAG, OrigShiftAmt, NewShiftAmt); in tryShiftAmountMod()
3953 NewShiftAmt); in tryShiftAmountMod()
/dports/devel/wasi-compiler-rt13/llvm-project-13.0.1.src/llvm/lib/Target/X86/
H A DX86ISelDAGToDAG.cpp3844 SDValue NewShiftAmt; in tryShiftAmountMod() local
3853 NewShiftAmt = Add0; in tryShiftAmountMod()
3884 NewShiftAmt = Neg; in tryShiftAmountMod()
3895 if (NewShiftAmt.getValueType() != MVT::i8) { in tryShiftAmountMod()
3897 NewShiftAmt = CurDAG->getNode(ISD::TRUNCATE, DL, MVT::i8, NewShiftAmt); in tryShiftAmountMod()
3899 insertDAGNode(*CurDAG, OrigShiftAmt, NewShiftAmt); in tryShiftAmountMod()
3904 NewShiftAmt = CurDAG->getNode(ISD::AND, DL, MVT::i8, NewShiftAmt, in tryShiftAmountMod()
3907 insertDAGNode(*CurDAG, OrigShiftAmt, NewShiftAmt); in tryShiftAmountMod()
3910 NewShiftAmt); in tryShiftAmountMod()
/dports/devel/wasi-compiler-rt12/llvm-project-12.0.1.src/llvm/lib/Target/X86/
H A DX86ISelDAGToDAG.cpp3843 SDValue NewShiftAmt; in tryShiftAmountMod() local
3851 NewShiftAmt = Add0; in tryShiftAmountMod()
3864 NewShiftAmt = Neg; in tryShiftAmountMod()
3875 if (NewShiftAmt.getValueType() != MVT::i8) { in tryShiftAmountMod()
3877 NewShiftAmt = CurDAG->getNode(ISD::TRUNCATE, DL, MVT::i8, NewShiftAmt); in tryShiftAmountMod()
3879 insertDAGNode(*CurDAG, OrigShiftAmt, NewShiftAmt); in tryShiftAmountMod()
3884 NewShiftAmt = CurDAG->getNode(ISD::AND, DL, MVT::i8, NewShiftAmt, in tryShiftAmountMod()
3887 insertDAGNode(*CurDAG, OrigShiftAmt, NewShiftAmt); in tryShiftAmountMod()
3890 NewShiftAmt); in tryShiftAmountMod()
/dports/devel/llvm13/llvm-project-13.0.1.src/llvm/lib/Target/X86/
H A DX86ISelDAGToDAG.cpp3844 SDValue NewShiftAmt;
3853 NewShiftAmt = Add0;
3884 NewShiftAmt = Neg;
3895 if (NewShiftAmt.getValueType() != MVT::i8) {
3897 NewShiftAmt = CurDAG->getNode(ISD::TRUNCATE, DL, MVT::i8, NewShiftAmt);
3899 insertDAGNode(*CurDAG, OrigShiftAmt, NewShiftAmt);
3904 NewShiftAmt = CurDAG->getNode(ISD::AND, DL, MVT::i8, NewShiftAmt,
3907 insertDAGNode(*CurDAG, OrigShiftAmt, NewShiftAmt);
3910 NewShiftAmt);
/dports/www/chromium-legacy/chromium-88.0.4324.182/third_party/llvm/llvm/lib/Target/AArch64/
H A DAArch64ISelDAGToDAG.cpp2772 SDValue NewShiftAmt; in tryShiftAmountMod() local
2787 NewShiftAmt = Add0; in tryShiftAmountMod()
2808 NewShiftAmt = SDValue(Neg, 0); in tryShiftAmountMod()
2823 NewShiftAmt = ShiftAmt->getOperand(0); in tryShiftAmountMod()
2828 NewShiftAmt = narrowIfNeeded(CurDAG, NewShiftAmt); in tryShiftAmountMod()
2829 else if (VT == MVT::i64 && NewShiftAmt->getValueType(0) == MVT::i32) { in tryShiftAmountMod()
2833 CurDAG->getTargetConstant(0, DL, MVT::i64), NewShiftAmt, SubReg); in tryShiftAmountMod()
2834 NewShiftAmt = SDValue(Ext, 0); in tryShiftAmountMod()
2837 SDValue Ops[] = {N->getOperand(0), NewShiftAmt}; in tryShiftAmountMod()
/dports/devel/llvm-cheri/llvm-project-37c49ff00e3eadce5d8703fdc4497f28458c64a8/llvm/lib/Target/AArch64/
H A DAArch64ISelDAGToDAG.cpp2759 SDValue NewShiftAmt; in tryShiftAmountMod() local
2774 NewShiftAmt = Add0; in tryShiftAmountMod()
2795 NewShiftAmt = SDValue(Neg, 0); in tryShiftAmountMod()
2810 NewShiftAmt = ShiftAmt->getOperand(0); in tryShiftAmountMod()
2815 NewShiftAmt = narrowIfNeeded(CurDAG, NewShiftAmt); in tryShiftAmountMod()
2816 else if (VT == MVT::i64 && NewShiftAmt->getValueType(0) == MVT::i32) { in tryShiftAmountMod()
2820 CurDAG->getTargetConstant(0, DL, MVT::i64), NewShiftAmt, SubReg); in tryShiftAmountMod()
2821 NewShiftAmt = SDValue(Ext, 0); in tryShiftAmountMod()
2824 SDValue Ops[] = {N->getOperand(0), NewShiftAmt}; in tryShiftAmountMod()
/dports/graphics/llvm-mesa/llvm-13.0.1.src/lib/Target/AArch64/
H A DAArch64ISelDAGToDAG.cpp2817 SDValue NewShiftAmt; in tryShiftAmountMod() local
2832 NewShiftAmt = Add0; in tryShiftAmountMod()
2853 NewShiftAmt = SDValue(Neg, 0); in tryShiftAmountMod()
2868 NewShiftAmt = ShiftAmt->getOperand(0); in tryShiftAmountMod()
2873 NewShiftAmt = narrowIfNeeded(CurDAG, NewShiftAmt); in tryShiftAmountMod()
2874 else if (VT == MVT::i64 && NewShiftAmt->getValueType(0) == MVT::i32) { in tryShiftAmountMod()
2878 CurDAG->getTargetConstant(0, DL, MVT::i64), NewShiftAmt, SubReg); in tryShiftAmountMod()
2879 NewShiftAmt = SDValue(Ext, 0); in tryShiftAmountMod()
2882 SDValue Ops[] = {N->getOperand(0), NewShiftAmt}; in tryShiftAmountMod()

12