Mercurial > hg > CbC > CbC_llvm
view mlir/test/mlir-tblgen/llvm-intrinsics.td @ 266:00f31e85ec16 default tip
Added tag current for changeset 31d058e83c98
author | Shinji KONO <kono@ie.u-ryukyu.ac.jp> |
---|---|
date | Sat, 14 Oct 2023 10:13:55 +0900 |
parents | 1f2b6ac9f198 |
children |
line wrap: on
line source
// This checks that we can consume LLVM's Intrinsic definitions from TableGen // files and produce ODS. Unlike MLIR, LLVM's main Intrinsics.td file that // contains the definition of the Intrinsic class also includes files for // platform-specific intrinsics, so we need to give it to TableGen instead of // writing a local test source. We filter out platform-specific intrinsic // includes from the main file to avoid unnecessary dependencies and decrease // the test cost. The command-line flags further ensure a specific intrinsic is // processed and we only check the output below. // We also verify emission of type specialization for overloadable intrinsics. // // RUN: cat %S/../../../llvm/include/llvm/IR/Intrinsics.td \ // RUN: | grep -v "llvm/IR/Intrinsics" \ // RUN: | mlir-tblgen -gen-llvmir-intrinsics -I %S/../../../llvm/include/ --llvmir-intrinsics-filter=ptrmask \ // RUN: | FileCheck %s // CHECK-LABEL: def LLVM_ptrmask // CHECK: LLVM_IntrOp<"ptrmask // The result of this intrinsic result is overloadable. // CHECK: [0] // The second operand is overloadable, but the first operand needs to // match the result type. // CHECK: [1] // It has no side effects. // CHECK: [NoMemoryEffect] // It has a result. // CHECK: 1, // It does not implement the access group interface. // CHECK: 0, // It does not implement the alias analysis interface. // CHECK: 0> // CHECK: Arguments<(ins LLVM_Type, LLVM_Type //---------------------------------------------------------------------------// // This checks that we can define an op that takes in an access group metadata. // // RUN: cat %S/../../../llvm/include/llvm/IR/Intrinsics.td \ // RUN: | grep -v "llvm/IR/Intrinsics" \ // RUN: | mlir-tblgen -gen-llvmir-intrinsics -I %S/../../../llvm/include/ --llvmir-intrinsics-filter=ptrmask --llvmir-intrinsics-access-group-regexp=ptrmask \ // RUN: | FileCheck --check-prefix=GROUPS %s // GROUPS-LABEL: def LLVM_ptrmask // GROUPS: LLVM_IntrOp<"ptrmask // It has no side effects. // GROUPS: [NoMemoryEffect] // It has a result. // GROUPS: 1, // It implements the access group interface. // GROUPS: 1, // It does not implement the alias analysis interface. // GROUPS: 0> // It has an access group attribute. // GROUPS: OptionalAttr<LLVM_AccessGroupArrayAttr>:$access_groups //---------------------------------------------------------------------------// // This checks that we can define an op that takes in alias analysis metadata. // // RUN: cat %S/../../../llvm/include/llvm/IR/Intrinsics.td \ // RUN: | grep -v "llvm/IR/Intrinsics" \ // RUN: | mlir-tblgen -gen-llvmir-intrinsics -I %S/../../../llvm/include/ --llvmir-intrinsics-filter=ptrmask --llvmir-intrinsics-alias-analysis-regexp=ptrmask \ // RUN: | FileCheck --check-prefix=ALIAS %s // ALIAS-LABEL: def LLVM_ptrmask // ALIAS: LLVM_IntrOp<"ptrmask // It has no side effects. // ALIAS: [NoMemoryEffect] // It has a result. // ALIAS: 1, // It does not implement the access group interface. // ALIAS: 0, // It implements the alias analysis interface. // ALIAS: 1> // It has alias scopes, noalias, and tbaa. // ALIAS: OptionalAttr<LLVM_AliasScopeArrayAttr>:$alias_scopes // ALIAS: OptionalAttr<LLVM_AliasScopeArrayAttr>:$noalias_scopes // ALIAS: OptionalAttr<LLVM_TBAATagArrayAttr>:$tbaa //---------------------------------------------------------------------------// // This checks that the ODS we produce can be consumed by MLIR tablegen. We only // make sure the entire process does not fail and produces some C++. The shape // of this C++ code is tested by ODS tests. // RUN: cat %S/../../../llvm/include/llvm/IR/Intrinsics.td \ // RUN: | grep -v "llvm/IR/Intrinsics" \ // RUN: | mlir-tblgen -gen-llvmir-intrinsics -I %S/../../../llvm/include/ --llvmir-intrinsics-filter=vastart \ // RUN: | mlir-tblgen -gen-op-decls -I %S/../../include \ // RUN: | FileCheck --check-prefix=ODS %s // ODS-LABEL: class vastart // RUN: cat %S/../../../llvm/include/llvm/IR/Intrinsics.td \ // RUN: | grep -v "llvm/IR/Intrinsics" \ // RUN: | mlir-tblgen -gen-llvmir-intrinsics -I %S/../../../llvm/include/ --llvmir-intrinsics-filter=ptrmask -dialect-opclass-base My_OpBase \ // RUN: | FileCheck %s --check-prefix=DIALECT-OPBASE // DIALECT-OPBASE-LABEL: def LLVM_ptrmask // DIALECT-OPBASE: My_OpBase<"ptrmask