Skip to content
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.

Commit 0037bac

Browse files
bcardosolopeslanza
authored andcommittedMar 13, 2025
[CIR][CIRGen] Add skeleton for AArch64 and x86/x86_64 builtin/instrinsics specific emission
Note that this is a bit different than original LLVM codegen because we are splitting down target specific intrinsics to different files. For now only add AArch64 and x86* as examples, more should come when support for more targets happen.
1 parent 8ab11f3 commit 0037bac

6 files changed

+792
-3
lines changed
 

‎clang/lib/CIR/CodeGen/CIRGenBuiltin.cpp

+53-3
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,7 @@
1515
#include "CIRGenCall.h"
1616
#include "CIRGenFunction.h"
1717
#include "CIRGenModule.h"
18+
#include "TargetInfo.h"
1819
#include "UnimplementedFeatureGuarding.h"
1920

2021
// TODO(cir): we shouldn't need this but we currently reuse intrinsic IDs for
@@ -24,6 +25,7 @@
2425

2526
#include "clang/AST/GlobalDecl.h"
2627
#include "clang/Basic/Builtins.h"
28+
#include "clang/Basic/TargetBuiltins.h"
2729

2830
#include "mlir/Dialect/Func/IR/FuncOps.h"
2931
#include "mlir/IR/Value.h"
@@ -786,8 +788,56 @@ static mlir::Value buildTargetArchBuiltinExpr(CIRGenFunction *CGF,
786788
const CallExpr *E,
787789
ReturnValueSlot ReturnValue,
788790
llvm::Triple::ArchType Arch) {
789-
llvm_unreachable("NYI");
790-
return {};
791+
// When compiling in HipStdPar mode we have to be conservative in rejecting
792+
// target specific features in the FE, and defer the possible error to the
793+
// AcceleratorCodeSelection pass, wherein iff an unsupported target builtin is
794+
// referenced by an accelerator executable function, we emit an error.
795+
// Returning nullptr here leads to the builtin being handled in
796+
// EmitStdParUnsupportedBuiltin.
797+
if (CGF->getLangOpts().HIPStdPar && CGF->getLangOpts().CUDAIsDevice &&
798+
Arch != CGF->getTarget().getTriple().getArch())
799+
return nullptr;
800+
801+
switch (Arch) {
802+
case llvm::Triple::arm:
803+
case llvm::Triple::armeb:
804+
case llvm::Triple::thumb:
805+
case llvm::Triple::thumbeb:
806+
llvm_unreachable("NYI");
807+
case llvm::Triple::aarch64:
808+
case llvm::Triple::aarch64_32:
809+
case llvm::Triple::aarch64_be:
810+
return CGF->buildAArch64BuiltinExpr(BuiltinID, E, Arch);
811+
case llvm::Triple::bpfeb:
812+
case llvm::Triple::bpfel:
813+
llvm_unreachable("NYI");
814+
case llvm::Triple::x86:
815+
case llvm::Triple::x86_64:
816+
return CGF->buildX86BuiltinExpr(BuiltinID, E);
817+
case llvm::Triple::ppc:
818+
case llvm::Triple::ppcle:
819+
case llvm::Triple::ppc64:
820+
case llvm::Triple::ppc64le:
821+
llvm_unreachable("NYI");
822+
case llvm::Triple::r600:
823+
case llvm::Triple::amdgcn:
824+
llvm_unreachable("NYI");
825+
case llvm::Triple::systemz:
826+
llvm_unreachable("NYI");
827+
case llvm::Triple::nvptx:
828+
case llvm::Triple::nvptx64:
829+
llvm_unreachable("NYI");
830+
case llvm::Triple::wasm32:
831+
case llvm::Triple::wasm64:
832+
llvm_unreachable("NYI");
833+
case llvm::Triple::hexagon:
834+
llvm_unreachable("NYI");
835+
case llvm::Triple::riscv32:
836+
case llvm::Triple::riscv64:
837+
llvm_unreachable("NYI");
838+
default:
839+
return {};
840+
}
791841
}
792842

793843
mlir::Value
@@ -955,4 +1005,4 @@ mlir::cir::FuncOp CIRGenModule::getBuiltinLibFunction(const FunctionDecl *FD,
9551005

9561006
auto Ty = getTypes().ConvertType(FD->getType());
9571007
return GetOrCreateCIRFunction(Name, Ty, D, /*ForVTable=*/false);
958-
}
1008+
}
There was a problem loading the remainder of the diff.

0 commit comments

Comments
 (0)
Please sign in to comment.