summaryrefslogtreecommitdiff
path: root/src/jit/emitxarch.h
diff options
context:
space:
mode:
authorTanner Gooding <tagoo@outlook.com>2018-12-14 13:41:07 -0800
committerGitHub <noreply@github.com>2018-12-14 13:41:07 -0800
commit813bd6ec05c8ce81f3ec7b59f21966ebc9420dca (patch)
treecfdcb91c6dae93be3ab8e7b543cbb5b45a7afbad /src/jit/emitxarch.h
parentbbfafe73ee054cc024c7db5dea53ec18c25b013c (diff)
downloadcoreclr-813bd6ec05c8ce81f3ec7b59f21966ebc9420dca.tar.gz
coreclr-813bd6ec05c8ce81f3ec7b59f21966ebc9420dca.tar.bz2
coreclr-813bd6ec05c8ce81f3ec7b59f21966ebc9420dca.zip
Simplifying the emitter handling of 4-byte encoded SSE instructions (#21528)
Diffstat (limited to 'src/jit/emitxarch.h')
-rw-r--r--src/jit/emitxarch.h12
1 files changed, 1 insertions, 11 deletions
diff --git a/src/jit/emitxarch.h b/src/jit/emitxarch.h
index a3e25def2e..8d9cafa03b 100644
--- a/src/jit/emitxarch.h
+++ b/src/jit/emitxarch.h
@@ -91,18 +91,8 @@ code_t AddRexXPrefix(instruction ins, code_t code);
code_t AddRexBPrefix(instruction ins, code_t code);
code_t AddRexPrefix(instruction ins, code_t code);
-bool useSSE4Encodings;
-bool UseSSE4()
-{
- return useSSE4Encodings;
-}
-void SetUseSSE4(bool value)
-{
- useSSE4Encodings = value;
-}
bool EncodedBySSE38orSSE3A(instruction ins);
-bool Is4ByteSSE4Instruction(instruction ins);
-bool Is4ByteSSE4OrAVXInstruction(instruction ins);
+bool Is4ByteSSEInstruction(instruction ins);
bool hasRexPrefix(code_t code)
{