mirror of
https://github.com/mozilla/gecko-dev.git
synced 2024-11-01 22:55:23 +00:00
Backed out changeset 2f3c4cbb8c4f
This commit is contained in:
parent
d5d387b4f6
commit
0c8e810c3a
@ -807,7 +807,7 @@ namespace nanojit
|
||||
_inExit = false;
|
||||
|
||||
//verbose_only( verbose_outputf(" LIR_xt/xf swapCodeChunks, _nIns is now %08X(%08X), _nExitIns is now %08X(%08X)",_nIns, *_nIns,_nExitIns,*_nExitIns) );
|
||||
verbose_only( verbose_outputf("%p:", jmpTarget);)
|
||||
verbose_only( verbose_outputf("%010lx:", (unsigned long)jmpTarget);)
|
||||
verbose_only( verbose_outputf("----------------------------------- ## BEGIN exit block (LIR_xt|LIR_xf)") );
|
||||
|
||||
#ifdef NANOJIT_IA32
|
||||
|
@ -152,7 +152,7 @@ namespace nanojit {
|
||||
#define asm_output(...) do { \
|
||||
if (_logc->lcbits & LC_Native) { \
|
||||
outline[0]='\0'; \
|
||||
VMPI_sprintf(outline, "%p ", _nIns); \
|
||||
VMPI_sprintf(outline, "%010lx ", (unsigned long)_nIns); \
|
||||
sprintf(&outline[13], ##__VA_ARGS__); \
|
||||
output(); \
|
||||
} \
|
||||
|
@ -328,7 +328,7 @@ namespace nanojit
|
||||
|
||||
static const RegisterMask GpRegs = 0xffff;
|
||||
static const RegisterMask FpRegs = 0xffff0000;
|
||||
#ifdef _WIN64
|
||||
#ifdef _MSC_VER
|
||||
static const RegisterMask SavedRegs = 1<<RBX | 1<<RSI | 1<<RDI | 1<<R12 | 1<<R13 | 1<<R14 | 1<<R15;
|
||||
static const int NumSavedRegs = 7; // rbx, rsi, rdi, r12-15
|
||||
static const int NumArgRegs = 4;
|
||||
|
Loading…
Reference in New Issue
Block a user