Searched refs:SRA_PARTS (Results 1 - 23 of 23) sorted by relevance

/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/CodeGen/
H A DISDOpcodes.h514 /// SHL_PARTS/SRA_PARTS/SRL_PARTS - These operators are used for expanded
517 SHL_PARTS, SRA_PARTS, SRL_PARTS, enumerator in enum:llvm::ISD::NodeType
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/BPF/
H A DBPFISelLowering.cpp98 setOperationAction(ISD::SRA_PARTS, VT, Expand);
/freebsd-11-stable/contrib/llvm-project/llvm/lib/CodeGen/SelectionDAG/
H A DSelectionDAGDumper.cpp302 case ISD::SRA_PARTS: return "sra_parts";
H A DLegalizeDAG.cpp1201 case ISD::SRA_PARTS:
H A DLegalizeIntegerTypes.cpp3345 PartsOpc = ISD::SRA_PARTS;
H A DSelectionDAG.cpp7450 case ISD::SRA_PARTS:
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/NVPTX/
H A DNVPTXISelLowering.cpp412 setOperationAction(ISD::SRA_PARTS, MVT::i32 , Custom);
415 setOperationAction(ISD::SRA_PARTS, MVT::i64 , Custom);
1957 /// LowerShiftRightParts - Lower SRL_PARTS, SRA_PARTS, which
1965 assert(Op.getOpcode() == ISD::SRA_PARTS || Op.getOpcode() == ISD::SRL_PARTS);
1973 unsigned Opc = (Op.getOpcode() == ISD::SRA_PARTS) ? ISD::SRA : ISD::SRL;
2197 case ISD::SRA_PARTS:
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/MSP430/
H A DMSP430ISelLowering.cpp116 setOperationAction(ISD::SRA_PARTS, MVT::i8, Expand);
117 setOperationAction(ISD::SRA_PARTS, MVT::i16, Expand);
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/AMDGPU/
H A DR600ISelLowering.cpp223 setOperationAction(ISD::SRA_PARTS, MVT::i32, Custom);
483 case ISD::SRA_PARTS:
837 const bool SRA = Op.getOpcode() == ISD::SRA_PARTS;
H A DSIISelLowering.cpp251 setOperationAction(ISD::SRA_PARTS, MVT::i64, Expand);
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/Lanai/
H A DLanaiISelLowering.cpp123 setOperationAction(ISD::SRA_PARTS, MVT::i32, Expand);
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/RISCV/
H A DRISCVISelLowering.cpp149 setOperationAction(ISD::SRA_PARTS, XLenVT, Custom);
414 case ISD::SRA_PARTS:
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/Mips/
H A DMipsISelLowering.cpp377 setOperationAction(ISD::SRA_PARTS, MVT::i64, Custom);
383 setOperationAction(ISD::SRA_PARTS, MVT::i32, Custom);
1239 case ISD::SRA_PARTS: return lowerShiftRightParts(Op, DAG, true);
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/AVR/
H A DAVRISelLowering.cpp88 setOperationAction(ISD::SRA_PARTS, MVT::i16, Expand);
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/WebAssembly/
H A DWebAssemblyISelLowering.cpp114 ISD::SDIVREM, ISD::UDIVREM, ISD::SHL_PARTS, ISD::SRA_PARTS,
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/XCore/
H A DXCoreISelLowering.cpp103 setOperationAction(ISD::SRA_PARTS, MVT::i32, Expand);
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/Sparc/
H A DSparcISelLowering.cpp1644 setOperationAction(ISD::SRA_PARTS, MVT::i32, Expand);
1678 setOperationAction(ISD::SRA_PARTS, MVT::i64, Expand);
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/AArch64/
H A DAArch64ISelLowering.cpp242 setOperationAction(ISD::SRA_PARTS, MVT::i64, Custom);
3236 case ISD::SRA_PARTS:
5878 /// LowerShiftRightParts - Lower SRA_PARTS, which returns two
5889 unsigned Opc = (Op.getOpcode() == ISD::SRA_PARTS) ? ISD::SRA : ISD::SRL;
5891 assert(Op.getOpcode() == ISD::SRA_PARTS || Op.getOpcode() == ISD::SRL_PARTS);
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/Hexagon/
H A DHexagonISelLowering.cpp1430 ISD::SHL_PARTS, ISD::SRA_PARTS, ISD::SRL_PARTS,
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/ARM/
H A DARMISelLowering.cpp1071 setOperationAction(ISD::SRA_PARTS, MVT::i32, Custom);
1086 setOperationAction(ISD::SRA_PARTS, MVT::i32, Expand);
5844 /// LowerShiftRightParts - Lower SRA_PARTS, which returns two
5857 unsigned Opc = (Op.getOpcode() == ISD::SRA_PARTS) ? ISD::SRA : ISD::SRL;
5859 assert(Op.getOpcode() == ISD::SRA_PARTS || Op.getOpcode() == ISD::SRL_PARTS);
9329 case ISD::SRA_PARTS: return LowerShiftRightParts(Op, DAG);
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/PowerPC/
H A DPPCISelLowering.cpp570 setOperationAction(ISD::SRA_PARTS, MVT::i64, Custom);
575 setOperationAction(ISD::SRA_PARTS, MVT::i32, Custom);
10495 case ISD::SRA_PARTS: return LowerSRA_PARTS(Op, DAG);
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/SystemZ/
H A DSystemZISelLowering.cpp287 setOperationAction(ISD::SRA_PARTS, MVT::i64, Expand);
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/X86/
H A DX86ISelLowering.cpp448 setOperationAction(ISD::SRA_PARTS, VT, Custom);
18478 /// Lower SRA_PARTS and friends, which return two i32 values
18486 bool isSRA = Op.getOpcode() == ISD::SRA_PARTS;
[all...]

Completed in 1007 milliseconds