Home
last modified time | relevance | path

Searched refs:ROTL (Results 1 – 25 of 62) sorted by relevance

123

/external/llvm/test/CodeGen/AArch64/
Drotate.ll4 ;; select ROTL. Make sure if generates the basic ushr/shl.
/external/llvm/test/CodeGen/ARM/
Drotate.ll4 ;; select ROTL. Make sure if generates the basic VSHL/VSHR.
/external/llvm/lib/Target/SystemZ/
DSystemZSelectionDAGInfo.cpp178 SDValue ROTL = DAG.getNode(ISD::ROTL, DL, MVT::i32, SRL, in addIPMSequence() local
180 return ROTL; in addIPMSequence()
DSystemZISelDAGToDAG.cpp807 case ISD::ROTL: { in expandRxSBG()
1269 case ISD::ROTL: in Select()
/external/boringssl/src/decrepit/cast/
Dcast.c85 #define ROTL(a, n) (_lrotl(a, n)) macro
87 #define ROTL(a, n) ((((a) << (n)) | ((a) >> ((-(n))&31))) & 0xffffffffL) macro
94 t = ROTL(t, (key[n * 2 + 1])); \
/external/swiftshader/third_party/LLVM/include/llvm/CodeGen/
DISDOpcodes.h317 SHL, SRA, SRL, ROTL, ROTR, enumerator
/external/llvm/include/llvm/CodeGen/
DISDOpcodes.h339 SHL, SRA, SRL, ROTL, ROTR, enumerator
/external/llvm/lib/Target/WebAssembly/
DWebAssemblyInstrInteger.td39 defm ROTL : BinaryInt<rotl, "rotl">;
/external/vboot_reference/firmware/2lib/
D2sha256.c44 #define ROTL(x, n) ((x << n) | (x >> ((sizeof(x) << 3) - n))) macro
D2sha512.c44 #define ROTL(x, n) ((x << n) | (x >> ((sizeof(x) << 3) - n))) macro
/external/avb/libavb/
Davb_sha256.c42 #define ROTL(x, n) ((x << n) | (x >> ((sizeof(x) << 3) - n))) macro
Davb_sha512.c42 #define ROTL(x, n) ((x << n) | (x >> ((sizeof(x) << 3) - n))) macro
/external/vboot_reference/firmware/lib/cryptolib/
Dsha256.c45 #define ROTL(x, n) ((x << n) | (x >> ((sizeof(x) << 3) - n))) macro
Dsha512.c45 #define ROTL(x, n) ((x << n) | (x >> ((sizeof(x) << 3) - n))) macro
/external/swiftshader/third_party/LLVM/lib/CodeGen/SelectionDAG/
DLegalizeVectorOps.cpp157 case ISD::ROTL: in LegalizeOp()
/external/llvm/lib/Target/X86/
DX86IntrinsicsInfo.h1218 X86_INTRINSIC_DATA(avx512_mask_prolv_d_128, INTR_TYPE_2OP_MASK, ISD::ROTL, 0),
1219 X86_INTRINSIC_DATA(avx512_mask_prolv_d_256, INTR_TYPE_2OP_MASK, ISD::ROTL, 0),
1220 X86_INTRINSIC_DATA(avx512_mask_prolv_d_512, INTR_TYPE_2OP_MASK, ISD::ROTL, 0),
1221 X86_INTRINSIC_DATA(avx512_mask_prolv_q_128, INTR_TYPE_2OP_MASK, ISD::ROTL, 0),
1222 X86_INTRINSIC_DATA(avx512_mask_prolv_q_256, INTR_TYPE_2OP_MASK, ISD::ROTL, 0),
1223 X86_INTRINSIC_DATA(avx512_mask_prolv_q_512, INTR_TYPE_2OP_MASK, ISD::ROTL, 0),
/external/swiftshader/third_party/LLVM/lib/Target/PowerPC/
DPPCISelDAGToDAG.cpp358 } else if (Opcode == ISD::ROTL) { in isRotateAndMask()
944 N->getOperand(0).getOpcode() != ISD::ROTL) { in Select()
/external/swiftshader/third_party/LLVM/lib/Target/MSP430/
DMSP430ISelLowering.cpp104 setOperationAction(ISD::ROTL, MVT::i8, Expand); in MSP430TargetLowering()
106 setOperationAction(ISD::ROTL, MVT::i16, Expand); in MSP430TargetLowering()
/external/llvm/lib/Target/NVPTX/
DNVPTXISelLowering.cpp175 setOperationAction(ISD::ROTL, MVT::i64, Legal); in NVPTXTargetLowering()
178 setOperationAction(ISD::ROTL, MVT::i64, Expand); in NVPTXTargetLowering()
182 setOperationAction(ISD::ROTL, MVT::i32, Legal); in NVPTXTargetLowering()
185 setOperationAction(ISD::ROTL, MVT::i32, Expand); in NVPTXTargetLowering()
189 setOperationAction(ISD::ROTL, MVT::i16, Expand); in NVPTXTargetLowering()
191 setOperationAction(ISD::ROTL, MVT::i8, Expand); in NVPTXTargetLowering()
/external/llvm/lib/CodeGen/SelectionDAG/
DSelectionDAGDumper.cpp194 case ISD::ROTL: return "rotl"; in getOperationName()
/external/swiftshader/third_party/LLVM/lib/Target/CellSPU/
DSPUISelLowering.cpp239 setOperationAction(ISD::ROTL, MVT::i32, Legal); in SPUTargetLowering()
240 setOperationAction(ISD::ROTL, MVT::i16, Legal); in SPUTargetLowering()
241 setOperationAction(ISD::ROTL, MVT::i8, Custom); in SPUTargetLowering()
2225 case ISD::ROTL: { in LowerI8Math()
2810 case ISD::ROTL: in LowerOperation()
/external/llvm/lib/Target/MSP430/
DMSP430ISelLowering.cpp97 setOperationAction(ISD::ROTL, MVT::i8, Expand); in MSP430TargetLowering()
99 setOperationAction(ISD::ROTL, MVT::i16, Expand); in MSP430TargetLowering()
/external/llvm/lib/Target/BPF/
DBPFISelLowering.cpp96 setOperationAction(ISD::ROTL, MVT::i64, Expand); in BPFTargetLowering()
/external/mmc-utils/3rdparty/hmac_sha/
Dsha2.c48 #define ROTL(x, n) ((x << n) | (x >> ((sizeof(x) << 3) - n))) macro
/external/llvm/lib/Target/PowerPC/
DPPCISelDAGToDAG.cpp496 } else if (Opcode == ISD::ROTL) { in isRotateAndMask()
921 case ISD::ROTL: in getValueBits()
1966 case ISD::ROTL: in tryBitPermutation()
2612 N->getOperand(0).getOpcode() != ISD::ROTL) { in Select()

123