diff options
author | Tanner Gooding <tagoo@outlook.com> | 2018-01-16 16:02:38 -0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-01-16 16:02:38 -0800 |
commit | ccc9329994b0029c91cfd7fd1aa35ccafa980f24 (patch) | |
tree | 2032574b1df9b2ed32daa7a6a01dd92efcc7c83c /src/jit/emitxarch.h | |
parent | c3f97703af7c5ab84c6a64eabc6bebf509a2175a (diff) | |
parent | 59db2cef21998c9680670a95939e77ee29ebc595 (diff) | |
download | coreclr-ccc9329994b0029c91cfd7fd1aa35ccafa980f24.tar.gz coreclr-ccc9329994b0029c91cfd7fd1aa35ccafa980f24.tar.bz2 coreclr-ccc9329994b0029c91cfd7fd1aa35ccafa980f24.zip |
Merge pull request #14736 from tannergooding/roundsx
Enable CORINFO_INTRINSIC Round, Ceiling, and Floor to generate ROUNDSS and ROUNDSD
Diffstat (limited to 'src/jit/emitxarch.h')
-rw-r--r-- | src/jit/emitxarch.h | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/src/jit/emitxarch.h b/src/jit/emitxarch.h index 873b35719c..119ac0dc3e 100644 --- a/src/jit/emitxarch.h +++ b/src/jit/emitxarch.h @@ -368,6 +368,12 @@ void emitIns_R_R_I(instruction ins, emitAttr attr, regNumber reg1, regNumber reg #ifndef LEGACY_BACKEND void emitIns_R_A(instruction ins, emitAttr attr, regNumber reg1, GenTreeIndir* indir, insFormat fmt); +void emitIns_R_A_I(instruction ins, emitAttr attr, regNumber reg1, GenTreeIndir* indir, int ival); + +void emitIns_R_C_I(instruction ins, emitAttr attr, regNumber reg1, CORINFO_FIELD_HANDLE fldHnd, int offs, int ival); + +void emitIns_R_S_I(instruction ins, emitAttr attr, regNumber reg1, int varx, int offs, int ival); + void emitIns_R_R_A(instruction ins, emitAttr attr, regNumber reg1, regNumber reg2, GenTreeIndir* indir, insFormat fmt); #endif // !LEGACY_BACKEND |