- give the remaining virtual registers names

This commit is contained in:
Magnus Norddahl 2018-10-12 07:05:42 +02:00
parent c86e4480b6
commit b15ca09486
1 changed files with 5 additions and 5 deletions

View File

@ -269,11 +269,11 @@ void JitCompiler::Setup()
cc.add(vmcalls, (int)1);
cc.mov(x86::dword_ptr(vmcallsptr), vmcalls);
frameD = cc.newIntPtr();
frameF = cc.newIntPtr();
frameS = cc.newIntPtr();
frameA = cc.newIntPtr();
params = cc.newIntPtr();
frameD = cc.newIntPtr("frameD");
frameF = cc.newIntPtr("frameF");
frameS = cc.newIntPtr("frameS");
frameA = cc.newIntPtr("frameA");
params = cc.newIntPtr("params");
// the VM version reads this from the stack, but it is constant data
int offsetParams = ((int)sizeof(VMFrame) + 15) & ~15;