From 7ba1bf921700a66ee2e45ce5f706b3366ee493ba Mon Sep 17 00:00:00 2001 From: Tanner Gooding Date: Sat, 28 Oct 2017 09:35:28 -0700 Subject: Adding SSE4.1 intrinsic support for Round, Ceiling, and Floor. --- src/jit/emitxarch.h | 6 ++++++ 1 file changed, 6 insertions(+) (limited to 'src/jit/emitxarch.h') diff --git a/src/jit/emitxarch.h b/src/jit/emitxarch.h index c301833857..c66f57cc92 100644 --- a/src/jit/emitxarch.h +++ b/src/jit/emitxarch.h @@ -367,6 +367,12 @@ void emitIns_R_R_I(instruction ins, emitAttr attr, regNumber reg1, regNumber reg 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); void emitIns_R_R_C( -- cgit v1.2.3