15
15
#include " CIRGenCall.h"
16
16
#include " CIRGenFunction.h"
17
17
#include " CIRGenModule.h"
18
+ #include " TargetInfo.h"
18
19
#include " UnimplementedFeatureGuarding.h"
19
20
20
21
// TODO(cir): we shouldn't need this but we currently reuse intrinsic IDs for
24
25
25
26
#include " clang/AST/GlobalDecl.h"
26
27
#include " clang/Basic/Builtins.h"
28
+ #include " clang/Basic/TargetBuiltins.h"
27
29
28
30
#include " mlir/Dialect/Func/IR/FuncOps.h"
29
31
#include " mlir/IR/Value.h"
@@ -786,8 +788,56 @@ static mlir::Value buildTargetArchBuiltinExpr(CIRGenFunction *CGF,
786
788
const CallExpr *E,
787
789
ReturnValueSlot ReturnValue,
788
790
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
+ }
791
841
}
792
842
793
843
mlir::Value
@@ -955,4 +1005,4 @@ mlir::cir::FuncOp CIRGenModule::getBuiltinLibFunction(const FunctionDecl *FD,
955
1005
956
1006
auto Ty = getTypes ().ConvertType (FD->getType ());
957
1007
return GetOrCreateCIRFunction (Name, Ty, D, /* ForVTable=*/ false );
958
- }
1008
+ }
0 commit comments