summaryrefslogtreecommitdiff
path: root/src/jit/hwintrinsicxarch.cpp
diff options
context:
space:
mode:
authorTanner Gooding <tagoo@outlook.com>2018-06-02 08:02:29 -0700
committerTanner Gooding <tagoo@outlook.com>2018-06-02 14:23:38 -0700
commit5d52f8c9f62c87909c62aa35a7db37a551951b8d (patch)
tree8ae5a27824e9813b4729be396b0224e054c9b5ad /src/jit/hwintrinsicxarch.cpp
parent460c434e99bddd51fbc8056bac082ac5cb0080ed (diff)
downloadcoreclr-5d52f8c9f62c87909c62aa35a7db37a551951b8d.tar.gz
coreclr-5d52f8c9f62c87909c62aa35a7db37a551951b8d.tar.bz2
coreclr-5d52f8c9f62c87909c62aa35a7db37a551951b8d.zip
Moving the xarch HWIntrtinsicInfo type into its own header file.
Diffstat (limited to 'src/jit/hwintrinsicxarch.cpp')
-rw-r--r--src/jit/hwintrinsicxarch.cpp14
1 files changed, 1 insertions, 13 deletions
diff --git a/src/jit/hwintrinsicxarch.cpp b/src/jit/hwintrinsicxarch.cpp
index d3cdbb33df..48b2d6791e 100644
--- a/src/jit/hwintrinsicxarch.cpp
+++ b/src/jit/hwintrinsicxarch.cpp
@@ -3,22 +3,10 @@
// See the LICENSE file in the project root for more information.
#include "jitpch.h"
+#include "hwintrinsic.h"
#ifdef FEATURE_HW_INTRINSICS
-struct HWIntrinsicInfo
-{
- NamedIntrinsic intrinsicID;
- const char* intrinsicName;
- InstructionSet isa;
- int ival;
- unsigned simdSize;
- int numArgs;
- instruction ins[10];
- HWIntrinsicCategory category;
- HWIntrinsicFlag flags;
-};
-
static const HWIntrinsicInfo hwIntrinsicInfoArray[] = {
// clang-format off
#define HARDWARE_INTRINSIC(id, name, isa, ival, size, numarg, t1, t2, t3, t4, t5, t6, t7, t8, t9, t10, category, flag) \