diff options
author | Carol Eidt <carol.eidt@microsoft.com> | 2018-07-20 07:20:05 -0700 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-07-20 07:20:05 -0700 |
commit | b896dd14830b600043a99c2626ea848ad679fb4f (patch) | |
tree | 3a8360dd95d32b0c951ae3e0b072aa162066e206 /src/jit | |
parent | a475cda69c51fbe3620ffc65e89b7f8c5665fb98 (diff) | |
parent | c9930680ea01fe86ce8815f51530b6a0ab810b5b (diff) | |
download | coreclr-b896dd14830b600043a99c2626ea848ad679fb4f.tar.gz coreclr-b896dd14830b600043a99c2626ea848ad679fb4f.tar.bz2 coreclr-b896dd14830b600043a99c2626ea848ad679fb4f.zip |
Merge pull request #19040 from CarolEidt/DiffFix
JitDump improvements
Diffstat (limited to 'src/jit')
-rw-r--r-- | src/jit/emitxarch.cpp | 4 | ||||
-rw-r--r-- | src/jit/morph.cpp | 2 |
2 files changed, 4 insertions, 2 deletions
diff --git a/src/jit/emitxarch.cpp b/src/jit/emitxarch.cpp index 17aae89488..2a0562a03a 100644 --- a/src/jit/emitxarch.cpp +++ b/src/jit/emitxarch.cpp @@ -8381,8 +8381,8 @@ void emitter::emitDispIns( // Munge any pointers if we want diff-able disassembly if (emitComp->opts.disDiffable) { - ssize_t top12bits = (val >> 20); - if ((top12bits != 0) && (top12bits != -1)) + ssize_t top14bits = (val >> 18); + if ((top14bits != 0) && (top14bits != -1)) { val = 0xD1FFAB1E; } diff --git a/src/jit/morph.cpp b/src/jit/morph.cpp index 53b40904a7..92bb23e985 100644 --- a/src/jit/morph.cpp +++ b/src/jit/morph.cpp @@ -2760,6 +2760,8 @@ GenTreeCall* Compiler::fgMorphArgs(GenTreeCall* call) bool callHasRetBuffArg = call->HasRetBufArg(); bool callIsVararg = call->IsVarargs(); + JITDUMP("%sMorphing args for %d.%s:\n", (reMorphing) ? "Re" : "", call->gtTreeID, GenTree::OpName(call->gtOper)); + #ifdef _TARGET_UNIX_ if (callIsVararg) { |