diff options
author | Fei Peng <fei.peng@intel.com> | 2018-02-26 13:02:12 -0800 |
---|---|---|
committer | Tanner Gooding <tagoo@outlook.com> | 2018-02-26 19:08:13 -0800 |
commit | e61f7f44f8d115aaf688c3238f0e5d44e40dfb29 (patch) | |
tree | 211179946e23da48df6ffe10ac437454700a798c /src/jit/gentree.h | |
parent | ec78ba4a4467fff7ca069a3123788c96eeca2ebc (diff) | |
download | coreclr-e61f7f44f8d115aaf688c3238f0e5d44e40dfb29.tar.gz coreclr-e61f7f44f8d115aaf688c3238f0e5d44e40dfb29.tar.bz2 coreclr-e61f7f44f8d115aaf688c3238f0e5d44e40dfb29.zip |
Update the table-driven framework to support x86 imm-intrinsics.
And add a new range-check IR for x86 imm-intrinsics.
Diffstat (limited to 'src/jit/gentree.h')
-rw-r--r-- | src/jit/gentree.h | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/src/jit/gentree.h b/src/jit/gentree.h index e246c46bc3..25d5a286fd 100644 --- a/src/jit/gentree.h +++ b/src/jit/gentree.h @@ -1661,6 +1661,12 @@ public: return true; } #endif // FEATURE_SIMD +#ifdef FEATURE_HW_INTRINSICS + if (op == GT_HW_INTRINSIC_CHK) + { + return true; + } +#endif // FEATURE_HW_INTRINSICS return false; } |