From 6778d3fb46d67b127b26485b01914a8d76313554 Mon Sep 17 00:00:00 2001 From: Tanner Gooding Date: Tue, 6 Feb 2018 20:38:24 -0800 Subject: Updating the emitter to more generally handle 4-Byte SSE4 instructions. --- src/jit/emitxarch.h | 6 +----- 1 file changed, 1 insertion(+), 5 deletions(-) (limited to 'src/jit/emitxarch.h') diff --git a/src/jit/emitxarch.h b/src/jit/emitxarch.h index 2fb1dd1bc2..6acd835da4 100644 --- a/src/jit/emitxarch.h +++ b/src/jit/emitxarch.h @@ -105,6 +105,7 @@ void SetUseSSE4(bool value) } bool EncodedBySSE38orSSE3A(instruction ins); bool Is4ByteSSE4Instruction(instruction ins); +bool Is4ByteSSE4OrAVXInstruction(instruction ins); bool hasRexPrefix(code_t code) { @@ -183,7 +184,6 @@ bool IsThreeOperandAVXInstruction(instruction ins) { return (IsDstDstSrcAVXInstruction(ins) || IsDstSrcSrcAVXInstruction(ins)); } -bool Is4ByteAVXInstruction(instruction ins); bool isAvxBlendv(instruction ins) { return ins == INS_vblendvps || ins == INS_vblendvpd || ins == INS_vpblendvb; @@ -234,10 +234,6 @@ bool IsThreeOperandAVXInstruction(instruction ins) { return false; } -bool Is4ByteAVXInstruction(instruction ins) -{ - return false; -} bool isAvxBlendv(instruction ins) { return false; -- cgit v1.2.3