forked from OSchip/llvm-project
Recommit "[RISCV] Add IR intrinsic for Zbb extension"
Forgot to amend the Author. Original commit message: Header files are included in a separate patch in case the name needs to be changed. RV32 / 64: orc.b Differential Revision: https://reviews.llvm.org/D99320
This commit is contained in:
parent
1f0b309f24
commit
944adbf285
|
@ -17,6 +17,10 @@
|
||||||
|
|
||||||
#include "clang/Basic/riscv_vector_builtins.inc"
|
#include "clang/Basic/riscv_vector_builtins.inc"
|
||||||
|
|
||||||
|
// Zbb extension
|
||||||
|
TARGET_BUILTIN(__builtin_riscv_orc_b_32, "ZiZi", "nc", "experimental-zbb")
|
||||||
|
TARGET_BUILTIN(__builtin_riscv_orc_b_64, "WiWi", "nc", "experimental-zbb")
|
||||||
|
|
||||||
// Zbr extension
|
// Zbr extension
|
||||||
TARGET_BUILTIN(__builtin_riscv_crc32_b, "LiLi", "nc", "experimental-zbr")
|
TARGET_BUILTIN(__builtin_riscv_crc32_b, "LiLi", "nc", "experimental-zbr")
|
||||||
TARGET_BUILTIN(__builtin_riscv_crc32_h, "LiLi", "nc", "experimental-zbr")
|
TARGET_BUILTIN(__builtin_riscv_crc32_h, "LiLi", "nc", "experimental-zbr")
|
||||||
|
|
|
@ -11187,5 +11187,5 @@ def warn_tcb_enforcement_violation : Warning<
|
||||||
|
|
||||||
// RISC-V builtin required extension warning
|
// RISC-V builtin required extension warning
|
||||||
def err_riscv_builtin_requires_extension : Error<
|
def err_riscv_builtin_requires_extension : Error<
|
||||||
"builtin requires %0 extension support to be enabled">;
|
"builtin requires '%0' extension support to be enabled">;
|
||||||
} // end of sema component.
|
} // end of sema component.
|
||||||
|
|
|
@ -17877,6 +17877,13 @@ Value *CodeGenFunction::EmitRISCVBuiltinExpr(unsigned BuiltinID,
|
||||||
switch (BuiltinID) {
|
switch (BuiltinID) {
|
||||||
#include "clang/Basic/riscv_vector_builtin_cg.inc"
|
#include "clang/Basic/riscv_vector_builtin_cg.inc"
|
||||||
|
|
||||||
|
// Zbb
|
||||||
|
case RISCV::BI__builtin_riscv_orc_b_32:
|
||||||
|
case RISCV::BI__builtin_riscv_orc_b_64:
|
||||||
|
ID = Intrinsic::riscv_orc_b;
|
||||||
|
IntrinsicTypes = {ResultType};
|
||||||
|
break;
|
||||||
|
|
||||||
// Zbr
|
// Zbr
|
||||||
case RISCV::BI__builtin_riscv_crc32_b:
|
case RISCV::BI__builtin_riscv_crc32_b:
|
||||||
ID = Intrinsic::riscv_crc32_b;
|
ID = Intrinsic::riscv_crc32_b;
|
||||||
|
@ -17910,10 +17917,8 @@ Value *CodeGenFunction::EmitRISCVBuiltinExpr(unsigned BuiltinID,
|
||||||
ID = Intrinsic::riscv_crc32c_d;
|
ID = Intrinsic::riscv_crc32c_d;
|
||||||
IntrinsicTypes = {ResultType};
|
IntrinsicTypes = {ResultType};
|
||||||
break;
|
break;
|
||||||
default: {
|
default:
|
||||||
llvm_unreachable("unexpected builtin ID");
|
llvm_unreachable("unexpected builtin ID");
|
||||||
return nullptr;
|
|
||||||
} // default
|
|
||||||
}
|
}
|
||||||
|
|
||||||
assert(ID != Intrinsic::not_intrinsic);
|
assert(ID != Intrinsic::not_intrinsic);
|
||||||
|
|
|
@ -3424,7 +3424,7 @@ bool Sema::CheckRISCVBuiltinFunctionCall(const TargetInfo &TI,
|
||||||
for (auto &I : ReqFeatures) {
|
for (auto &I : ReqFeatures) {
|
||||||
if (TI.hasFeature(I))
|
if (TI.hasFeature(I))
|
||||||
continue;
|
continue;
|
||||||
// Make message like "experimental-zbr" to "Zbr"
|
// Convert features like "zbr" and "experimental-zbr" to "Zbr".
|
||||||
I.consume_front("experimental-");
|
I.consume_front("experimental-");
|
||||||
std::string FeatureStr = I.str();
|
std::string FeatureStr = I.str();
|
||||||
FeatureStr[0] = std::toupper(FeatureStr[0]);
|
FeatureStr[0] = std::toupper(FeatureStr[0]);
|
||||||
|
|
|
@ -0,0 +1,15 @@
|
||||||
|
// NOTE: Assertions have been autogenerated by utils/update_cc_test_checks.py
|
||||||
|
// RUN: %clang_cc1 -triple riscv32 -target-feature +experimental-zbb -emit-llvm %s -o - \
|
||||||
|
// RUN: | FileCheck %s -check-prefix=RV32ZBB
|
||||||
|
|
||||||
|
// RV32ZBB-LABEL: @orc_b_32(
|
||||||
|
// RV32ZBB-NEXT: entry:
|
||||||
|
// RV32ZBB-NEXT: [[A_ADDR:%.*]] = alloca i32, align 4
|
||||||
|
// RV32ZBB-NEXT: store i32 [[A:%.*]], i32* [[A_ADDR]], align 4
|
||||||
|
// RV32ZBB-NEXT: [[TMP0:%.*]] = load i32, i32* [[A_ADDR]], align 4
|
||||||
|
// RV32ZBB-NEXT: [[TMP1:%.*]] = call i32 @llvm.riscv.orc.b.i32(i32 [[TMP0]])
|
||||||
|
// RV32ZBB-NEXT: ret i32 [[TMP1]]
|
||||||
|
//
|
||||||
|
int orc_b_32(int a) {
|
||||||
|
return __builtin_riscv_orc_b_32(a);
|
||||||
|
}
|
|
@ -0,0 +1,27 @@
|
||||||
|
// NOTE: Assertions have been autogenerated by utils/update_cc_test_checks.py
|
||||||
|
// RUN: %clang_cc1 -triple riscv64 -target-feature +experimental-zbb -emit-llvm %s -o - \
|
||||||
|
// RUN: | FileCheck %s -check-prefix=RV64ZBB
|
||||||
|
|
||||||
|
// RV64ZBB-LABEL: @orc_b_32(
|
||||||
|
// RV64ZBB-NEXT: entry:
|
||||||
|
// RV64ZBB-NEXT: [[A_ADDR:%.*]] = alloca i32, align 4
|
||||||
|
// RV64ZBB-NEXT: store i32 [[A:%.*]], i32* [[A_ADDR]], align 4
|
||||||
|
// RV64ZBB-NEXT: [[TMP0:%.*]] = load i32, i32* [[A_ADDR]], align 4
|
||||||
|
// RV64ZBB-NEXT: [[TMP1:%.*]] = call i32 @llvm.riscv.orc.b.i32(i32 [[TMP0]])
|
||||||
|
// RV64ZBB-NEXT: ret i32 [[TMP1]]
|
||||||
|
//
|
||||||
|
int orc_b_32(int a) {
|
||||||
|
return __builtin_riscv_orc_b_32(a);
|
||||||
|
}
|
||||||
|
|
||||||
|
// RV64ZBB-LABEL: @orc_b_64(
|
||||||
|
// RV64ZBB-NEXT: entry:
|
||||||
|
// RV64ZBB-NEXT: [[A_ADDR:%.*]] = alloca i64, align 8
|
||||||
|
// RV64ZBB-NEXT: store i64 [[A:%.*]], i64* [[A_ADDR]], align 8
|
||||||
|
// RV64ZBB-NEXT: [[TMP0:%.*]] = load i64, i64* [[A_ADDR]], align 8
|
||||||
|
// RV64ZBB-NEXT: [[TMP1:%.*]] = call i64 @llvm.riscv.orc.b.i64(i64 [[TMP0]])
|
||||||
|
// RV64ZBB-NEXT: ret i64 [[TMP1]]
|
||||||
|
//
|
||||||
|
long orc_b_64(long a) {
|
||||||
|
return __builtin_riscv_orc_b_64(a);
|
||||||
|
}
|
|
@ -10,28 +10,6 @@
|
||||||
//
|
//
|
||||||
//===----------------------------------------------------------------------===//
|
//===----------------------------------------------------------------------===//
|
||||||
|
|
||||||
//===----------------------------------------------------------------------===//
|
|
||||||
// RISC-V Bitmanip (Bit Manipulation) Extension
|
|
||||||
// Zbr extension part
|
|
||||||
|
|
||||||
let TargetPrefix = "riscv" in {
|
|
||||||
|
|
||||||
class BitMan_GPR_Intrinsics
|
|
||||||
: Intrinsic<[llvm_any_ty],
|
|
||||||
[LLVMMatchType<0>],
|
|
||||||
[IntrNoMem, IntrSpeculatable, IntrWillReturn]>;
|
|
||||||
|
|
||||||
def int_riscv_crc32_b : BitMan_GPR_Intrinsics;
|
|
||||||
def int_riscv_crc32_h : BitMan_GPR_Intrinsics;
|
|
||||||
def int_riscv_crc32_w : BitMan_GPR_Intrinsics;
|
|
||||||
def int_riscv_crc32_d : BitMan_GPR_Intrinsics;
|
|
||||||
def int_riscv_crc32c_b : BitMan_GPR_Intrinsics;
|
|
||||||
def int_riscv_crc32c_h : BitMan_GPR_Intrinsics;
|
|
||||||
def int_riscv_crc32c_w : BitMan_GPR_Intrinsics;
|
|
||||||
def int_riscv_crc32c_d : BitMan_GPR_Intrinsics;
|
|
||||||
|
|
||||||
} // TargetPrefix = "riscv"
|
|
||||||
|
|
||||||
//===----------------------------------------------------------------------===//
|
//===----------------------------------------------------------------------===//
|
||||||
// Atomics
|
// Atomics
|
||||||
|
|
||||||
|
@ -89,6 +67,30 @@ let TargetPrefix = "riscv" in {
|
||||||
|
|
||||||
} // TargetPrefix = "riscv"
|
} // TargetPrefix = "riscv"
|
||||||
|
|
||||||
|
//===----------------------------------------------------------------------===//
|
||||||
|
// Bitmanip (Bit Manipulation) Extension
|
||||||
|
|
||||||
|
let TargetPrefix = "riscv" in {
|
||||||
|
|
||||||
|
class BitManipGPRIntrinsics
|
||||||
|
: Intrinsic<[llvm_any_ty],
|
||||||
|
[LLVMMatchType<0>],
|
||||||
|
[IntrNoMem, IntrSpeculatable, IntrWillReturn]>;
|
||||||
|
|
||||||
|
// Zbb
|
||||||
|
def int_riscv_orc_b : BitManipGPRIntrinsics;
|
||||||
|
|
||||||
|
// Zbr
|
||||||
|
def int_riscv_crc32_b : BitManipGPRIntrinsics;
|
||||||
|
def int_riscv_crc32_h : BitManipGPRIntrinsics;
|
||||||
|
def int_riscv_crc32_w : BitManipGPRIntrinsics;
|
||||||
|
def int_riscv_crc32_d : BitManipGPRIntrinsics;
|
||||||
|
def int_riscv_crc32c_b : BitManipGPRIntrinsics;
|
||||||
|
def int_riscv_crc32c_h : BitManipGPRIntrinsics;
|
||||||
|
def int_riscv_crc32c_w : BitManipGPRIntrinsics;
|
||||||
|
def int_riscv_crc32c_d : BitManipGPRIntrinsics;
|
||||||
|
} // TargetPrefix = "riscv"
|
||||||
|
|
||||||
//===----------------------------------------------------------------------===//
|
//===----------------------------------------------------------------------===//
|
||||||
// Vectors
|
// Vectors
|
||||||
|
|
||||||
|
|
|
@ -198,6 +198,9 @@ RISCVTargetLowering::RISCVTargetLowering(const TargetMachine &TM,
|
||||||
setOperationAction(ISD::SIGN_EXTEND_INREG, MVT::i16, Expand);
|
setOperationAction(ISD::SIGN_EXTEND_INREG, MVT::i16, Expand);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
if (Subtarget.hasStdExtZbb() && Subtarget.is64Bit())
|
||||||
|
setOperationAction(ISD::INTRINSIC_WO_CHAIN, MVT::i32, Custom);
|
||||||
|
|
||||||
if (Subtarget.is64Bit()) {
|
if (Subtarget.is64Bit()) {
|
||||||
setOperationAction(ISD::ADD, MVT::i32, Custom);
|
setOperationAction(ISD::ADD, MVT::i32, Custom);
|
||||||
setOperationAction(ISD::SUB, MVT::i32, Custom);
|
setOperationAction(ISD::SUB, MVT::i32, Custom);
|
||||||
|
@ -4198,6 +4201,14 @@ void RISCVTargetLowering::ReplaceNodeResults(SDNode *N,
|
||||||
default:
|
default:
|
||||||
llvm_unreachable(
|
llvm_unreachable(
|
||||||
"Don't know how to custom type legalize this intrinsic!");
|
"Don't know how to custom type legalize this intrinsic!");
|
||||||
|
case Intrinsic::riscv_orc_b: {
|
||||||
|
SDValue Newop1 =
|
||||||
|
DAG.getNode(ISD::ANY_EXTEND, DL, MVT::i64, N->getOperand(1));
|
||||||
|
SDValue Res =
|
||||||
|
DAG.getNode(N->getOpcode(), DL, MVT::i64, N->getOperand(0), Newop1);
|
||||||
|
Results.push_back(DAG.getNode(ISD::TRUNCATE, DL, MVT::i32, Res));
|
||||||
|
return;
|
||||||
|
}
|
||||||
case Intrinsic::riscv_vmv_x_s: {
|
case Intrinsic::riscv_vmv_x_s: {
|
||||||
EVT VT = N->getValueType(0);
|
EVT VT = N->getValueType(0);
|
||||||
MVT XLenVT = Subtarget.getXLenVT();
|
MVT XLenVT = Subtarget.getXLenVT();
|
||||||
|
|
|
@ -894,6 +894,10 @@ def : Pat<(i64 (or (and (assertsexti32 GPR:$rs2), 0xFFFFFFFFFFFF0000),
|
||||||
(PACKUW GPR:$rs1, GPR:$rs2)>;
|
(PACKUW GPR:$rs1, GPR:$rs2)>;
|
||||||
} // Predicates = [HasStdExtZbp, IsRV64]
|
} // Predicates = [HasStdExtZbp, IsRV64]
|
||||||
|
|
||||||
|
let Predicates = [HasStdExtZbb] in {
|
||||||
|
def : PatGpr<int_riscv_orc_b, ORCB>;
|
||||||
|
} // Predicates = [HasStdExtZbb]
|
||||||
|
|
||||||
let Predicates = [HasStdExtZbr] in {
|
let Predicates = [HasStdExtZbr] in {
|
||||||
def : PatGpr<int_riscv_crc32_b, CRC32B>;
|
def : PatGpr<int_riscv_crc32_b, CRC32B>;
|
||||||
def : PatGpr<int_riscv_crc32_h, CRC32H>;
|
def : PatGpr<int_riscv_crc32_h, CRC32H>;
|
||||||
|
|
|
@ -0,0 +1,21 @@
|
||||||
|
; NOTE: Assertions have been autogenerated by utils/update_llc_test_checks.py
|
||||||
|
; RUN: llc -mtriple=riscv32 -mattr=+experimental-b -verify-machineinstrs < %s \
|
||||||
|
; RUN: | FileCheck %s -check-prefix=RV32IB
|
||||||
|
; RUN: llc -mtriple=riscv32 -mattr=+experimental-zbb -verify-machineinstrs < %s \
|
||||||
|
; RUN: | FileCheck %s -check-prefix=RV32IBB
|
||||||
|
|
||||||
|
declare i32 @llvm.riscv.orc.b.i32(i32)
|
||||||
|
|
||||||
|
define i32 @orcb(i32 %a) nounwind {
|
||||||
|
; RV32IB-LABEL: orcb:
|
||||||
|
; RV32IB: # %bb.0:
|
||||||
|
; RV32IB-NEXT: orc.b a0, a0
|
||||||
|
; RV32IB-NEXT: ret
|
||||||
|
;
|
||||||
|
; RV32IBB-LABEL: orcb:
|
||||||
|
; RV32IBB: # %bb.0:
|
||||||
|
; RV32IBB-NEXT: orc.b a0, a0
|
||||||
|
; RV32IBB-NEXT: ret
|
||||||
|
%tmp = call i32 @llvm.riscv.orc.b.i32(i32 %a)
|
||||||
|
ret i32 %tmp
|
||||||
|
}
|
|
@ -0,0 +1,37 @@
|
||||||
|
; NOTE: Assertions have been autogenerated by utils/update_llc_test_checks.py
|
||||||
|
; RUN: llc -mtriple=riscv64 -mattr=+experimental-b -verify-machineinstrs < %s \
|
||||||
|
; RUN: | FileCheck %s -check-prefix=RV64IB
|
||||||
|
; RUN: llc -mtriple=riscv64 -mattr=+experimental-zbb -verify-machineinstrs < %s \
|
||||||
|
; RUN: | FileCheck %s -check-prefix=RV64IBB
|
||||||
|
|
||||||
|
declare i32 @llvm.riscv.orc.b.i32(i32)
|
||||||
|
|
||||||
|
define i32 @orcb32(i32 %a) nounwind {
|
||||||
|
; RV64IB-LABEL: orcb32:
|
||||||
|
; RV64IB: # %bb.0:
|
||||||
|
; RV64IB-NEXT: orc.b a0, a0
|
||||||
|
; RV64IB-NEXT: ret
|
||||||
|
;
|
||||||
|
; RV64IBB-LABEL: orcb32:
|
||||||
|
; RV64IBB: # %bb.0:
|
||||||
|
; RV64IBB-NEXT: orc.b a0, a0
|
||||||
|
; RV64IBB-NEXT: ret
|
||||||
|
%tmp = call i32 @llvm.riscv.orc.b.i32(i32 %a)
|
||||||
|
ret i32 %tmp
|
||||||
|
}
|
||||||
|
|
||||||
|
declare i64 @llvm.riscv.orc.b.i64(i64)
|
||||||
|
|
||||||
|
define i64 @orcb64(i64 %a) nounwind {
|
||||||
|
; RV64IB-LABEL: orcb64:
|
||||||
|
; RV64IB: # %bb.0:
|
||||||
|
; RV64IB-NEXT: orc.b a0, a0
|
||||||
|
; RV64IB-NEXT: ret
|
||||||
|
;
|
||||||
|
; RV64IBB-LABEL: orcb64:
|
||||||
|
; RV64IBB: # %bb.0:
|
||||||
|
; RV64IBB-NEXT: orc.b a0, a0
|
||||||
|
; RV64IBB-NEXT: ret
|
||||||
|
%tmp = call i64 @llvm.riscv.orc.b.i64(i64 %a)
|
||||||
|
ret i64 %tmp
|
||||||
|
}
|
Loading…
Reference in New Issue