diff options
author | Mike Danes <onemihaid@hotmail.com> | 2016-11-25 10:00:58 +0200 |
---|---|---|
committer | Mike Danes <onemihaid@hotmail.com> | 2016-11-29 07:49:33 +0200 |
commit | 10f3d635975ebb9b70ec6173562dd9c11227dfc9 (patch) | |
tree | e91b810d390e0b5a192d7b6f257e6e42e21b1190 /src/jit/instr.cpp | |
parent | 8de587f3b6d45be23f5178f510e260e470f2ef4f (diff) | |
download | coreclr-10f3d635975ebb9b70ec6173562dd9c11227dfc9.tar.gz coreclr-10f3d635975ebb9b70ec6173562dd9c11227dfc9.tar.bz2 coreclr-10f3d635975ebb9b70ec6173562dd9c11227dfc9.zip |
Fix various disassembly issues
- (null) being displayed instead of ymmword ptr
- lack of a space between some instructions and their first operand
- incorrect display of pmovmskb's first operand (was something like yrax)
- displaying ymm registers in cases where xmm registers were actually used
- displaying mm instead of xmm/ymm (e.g. cmpps mm1, mm2)
Diffstat (limited to 'src/jit/instr.cpp')
-rw-r--r-- | src/jit/instr.cpp | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/src/jit/instr.cpp b/src/jit/instr.cpp index 1b75e81172..01cad11a21 100644 --- a/src/jit/instr.cpp +++ b/src/jit/instr.cpp @@ -149,8 +149,6 @@ const char* CodeGen::genSizeStr(emitAttr attr) nullptr, "xmmword ptr ", nullptr, nullptr, nullptr, nullptr, nullptr, nullptr, nullptr, nullptr, - nullptr, nullptr, nullptr, nullptr, nullptr, nullptr, nullptr, nullptr, - nullptr, nullptr, nullptr, nullptr, nullptr, nullptr, nullptr, nullptr, nullptr, nullptr, nullptr, nullptr, nullptr, nullptr, nullptr, "ymmword ptr" }; |