gecko/js/src/nanojit/Nativei386.cpp

1391 lines
35 KiB
C++
Raw Normal View History

2008-06-30 15:33:41 -07:00
/* -*- Mode: C++; c-basic-offset: 4; indent-tabs-mode: t; tab-width: 4 -*- */
/* ***** BEGIN LICENSE BLOCK *****
* Version: MPL 1.1/GPL 2.0/LGPL 2.1
*
* The contents of this file are subject to the Mozilla Public License Version
* 1.1 (the "License"); you may not use this file except in compliance with
* the License. You may obtain a copy of the License at
* http://www.mozilla.org/MPL/
*
* Software distributed under the License is distributed on an "AS IS" basis,
* WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License
* for the specific language governing rights and limitations under the
* License.
*
* The Original Code is [Open Source Virtual Machine].
*
* The Initial Developer of the Original Code is
* Adobe System Incorporated.
* Portions created by the Initial Developer are Copyright (C) 2004-2007
* the Initial Developer. All Rights Reserved.
*
* Contributor(s):
* Adobe AS3 Team
* Mozilla TraceMonkey Team
* Asko Tontti <atontti@cc.hut.fi>
*
* Alternatively, the contents of this file may be used under the terms of
* either the GNU General Public License Version 2 or later (the "GPL"), or
* the GNU Lesser General Public License Version 2.1 or later (the "LGPL"),
* in which case the provisions of the GPL or the LGPL are applicable instead
* of those above. If you wish to allow use of your version of this file only
* under the terms of either the GPL or the LGPL, and not to allow others to
* use your version of this file under the terms of the MPL, indicate your
* decision by deleting the provisions above and replace them with the notice
* and other provisions required by the GPL or the LGPL. If you do not delete
* the provisions above, a recipient may use your version of this file under
* the terms of any one of the MPL, the GPL or the LGPL.
*
* ***** END LICENSE BLOCK ***** */
#ifdef _MAC
// for MakeDataExecutable
#include <CoreServices/CoreServices.h>
#endif
#if defined AVMPLUS_UNIX
2008-07-07 02:47:40 -07:00
#include <sys/mman.h>
2008-07-31 13:28:12 -07:00
#include <errno.h>
2008-07-07 02:47:40 -07:00
#endif
#include "nanojit.h"
namespace nanojit
{
#ifdef FEATURE_NANOJIT
#ifdef NJ_VERBOSE
const char *regNames[] = {
2008-07-31 13:28:12 -07:00
#if defined NANOJIT_IA32
"eax", "ecx", "edx", "ebx", "esp", "ebp", "esi", "edi",
"xmm0","xmm1","xmm2","xmm3","xmm4","xmm5","xmm6","xmm7",
"f0", "f1", "f2", "f3", "f4", "f5", "f6", "f7"
2008-07-31 13:28:12 -07:00
#elif defined NANOJIT_AMD64
"rax", "rcx", "rdx", "rbx", "rsp", "rbp", "rsi", "rdi",
"r8", "r9", "r10", "r11", "r12", "r13", "r14", "r15",
"xmm0","xmm1","xmm2","xmm3","xmm4","xmm5","xmm6","xmm7",
2008-08-18 12:32:14 -07:00
"xmm8","xmm9","xmm10","xmm11","xmm12","xmm13","xmm14","xmm15"
2008-07-31 13:28:12 -07:00
#endif
};
#endif
2008-07-31 13:28:12 -07:00
#if defined NANOJIT_IA32
const Register Assembler::argRegs[] = { ECX, EDX };
const Register Assembler::retRegs[] = { EAX, EDX };
2008-07-31 13:28:12 -07:00
#elif defined NANOJIT_AMD64
#if defined WIN64
const Register Assembler::argRegs[] = { R8, R9, RCX, RDX };
#else
const Register Assembler::argRegs[] = { RDI, RSI, RDX, RCX, R8, R9 };
#endif
const Register Assembler::retRegs[] = { RAX, RDX };
#endif
void Assembler::nInit(AvmCore* core)
{
OSDep::getDate();
#ifdef NANOJIT_AMD64
avmplus::AvmCore::cmov_available =
avmplus::AvmCore::sse2_available = true;
#endif
}
NIns* Assembler::genPrologue(RegisterMask needSaving)
{
/**
* Prologue
*/
2008-07-31 13:28:12 -07:00
uint32_t stackNeeded = STACK_GRANULARITY * _activation.highwatermark;
uint32_t savingCount = 0;
for(Register i=FirstReg; i <= LastReg; i = nextreg(i))
if (needSaving&rmask(i))
savingCount++;
2008-07-01 14:46:10 -07:00
// After forcing alignment, we've pushed the pre-alignment SP
// and savingCount registers.
2008-07-31 13:28:12 -07:00
uint32_t stackPushed = STACK_GRANULARITY * (1+savingCount);
uint32_t aligned = alignUp(stackNeeded + stackPushed, NJ_ALIGN_STACK);
uint32_t amt = aligned - stackPushed;
2008-07-01 14:46:10 -07:00
// Reserve stackNeeded bytes, padded
// to preserve NJ_ALIGN_STACK-byte alignment.
if (amt)
2008-07-31 13:28:12 -07:00
{
#if defined NANOJIT_IA32
SUBi(SP, amt);
2008-07-31 13:28:12 -07:00
#elif defined NANOJIT_AMD64
SUBQi(SP, amt);
#endif
}
verbose_only( verbose_outputf(" %p:",_nIns); )
verbose_only( verbose_output(" patch entry:"); )
NIns *patchEntry = _nIns;
2008-07-01 14:46:10 -07:00
MR(FP, SP); // Establish our own FP.
// Save pre-alignment SP value here, where the FP will point,
// to preserve the illusion of a valid frame chain for
// functions like MMgc::GetStackTrace. The 'return address'
// of this 'frame' will be the last-saved register, but that's
// fine, because the next-older frame will be legit.
PUSHr(FP);
for(Register i=FirstReg; i <= LastReg; i = nextreg(i))
if (needSaving&rmask(i))
PUSHr(i);
2008-07-01 14:46:10 -07:00
// We'd like to be able to use SSE instructions like MOVDQA on
// stack slots; it requires 16B alignment. Darwin requires a
// 16B stack alignment, and Linux GCC seems to intend to
// establish and preserve the same, but we're told that GCC
// has not always done this right. To avoid doubt, do it on
// all platforms. The prologue runs only when we enter
// fragments from the interpreter, so forcing 16B alignment
// here is cheap.
2008-07-31 13:28:12 -07:00
#if defined NANOJIT_IA32
ANDi(SP, -NJ_ALIGN_STACK);
2008-07-31 13:28:12 -07:00
#elif defined NANOJIT_AMD64
ANDQi(SP, -NJ_ALIGN_STACK);
#endif
MR(FP,SP);
2008-07-01 14:46:10 -07:00
PUSHr(FP); // Save caller's FP.
return patchEntry;
}
void Assembler::nFragExit(LInsp guard)
{
SideExit *exit = guard->exit();
bool trees = _frago->core()->config.tree_opt;
Fragment *frag = exit->target;
GuardRecord *lr = 0;
bool destKnown = (frag && frag->fragEntry);
if (destKnown && !trees)
{
// already exists, emit jump now. no patching required.
JMP(frag->fragEntry);
lr = 0;
}
else
{
// target doesn't exit yet. emit jump to epilog, and set up to patch later.
lr = placeGuardRecord(guard);
#if defined NANOJIT_AMD64
/* 8 bytes for address, 4 for imm32, 2 for jmp */
underrunProtect(14);
_nIns -= 8;
*(intptr_t *)_nIns = intptr_t(_epilogue);
lr->jmp = _nIns;
JMPm_nochk(0);
#else
JMP_long(_epilogue);
lr->jmp = _nIns;
#endif
#if 0
// @todo optimization ; is it worth it? It means we can remove the loop over outbound in Fragment.link()
// for trees we need the patch entry on the incoming fragment so we can unhook it later if needed
if (tress && destKnown)
patch(lr);
#endif
}
// first restore ESP from EBP, undoing SUBi(SP,amt) from genPrologue
MR(SP,FP);
#ifdef NJ_VERBOSE
if (_frago->core()->config.show_stats) {
// load EDX (arg1) with Fragment *fromFrag, target fragment
// will make use of this when calling fragenter().
2008-07-31 13:28:12 -07:00
#if defined NANOJIT_IA32
int fromfrag = int((Fragment*)_thisfrag);
LDi(argRegs[1], fromfrag);
2008-07-31 13:28:12 -07:00
#elif defined NANOJIT_AMD64
LDQi(argRegs[1], intptr_t(_thisfrag));
#endif
}
#endif
// return value is GuardRecord*
2008-07-31 13:28:12 -07:00
#if defined NANOJIT_IA32
LDi(EAX, int(lr));
2008-07-31 13:28:12 -07:00
#elif defined NANOJIT_AMD64
LDQi(RAX, intptr_t(lr));
#endif
}
NIns *Assembler::genEpilogue(RegisterMask restore)
{
RET();
POPr(FP); // Restore caller's FP.
2008-07-01 14:46:10 -07:00
MR(SP,FP); // Undo forced alignment.
2008-07-01 14:46:10 -07:00
// Restore saved registers.
for (Register i=UnknownReg; i >= FirstReg; i = prevreg(i))
if (restore&rmask(i)) { POPr(i); }
2008-07-01 14:46:10 -07:00
POPr(FP); // Pop the pre-alignment SP.
return _nIns;
}
2008-07-31 13:28:12 -07:00
#if defined NANOJIT_IA32
2008-07-16 14:21:31 -07:00
void Assembler::asm_call(LInsp ins)
{
2008-07-16 14:21:31 -07:00
uint32_t fid = ins->fid();
const CallInfo* call = callInfoFor(fid);
// must be signed, not unsigned
2008-07-16 14:21:31 -07:00
const uint32_t iargs = call->count_iargs();
int32_t fstack = call->count_args() - iargs;
2008-07-16 14:21:31 -07:00
int32_t extra = 0;
#if defined NJ_NO_FASTCALL
int32_t istack = iargs;
#else
2008-07-16 14:21:31 -07:00
int32_t istack = iargs-2; // first 2 4B args are in registers
if (istack <= 0)
{
istack = 0;
}
#endif
const int32_t size = 4*istack + 8*fstack; // actual stack space used
2008-07-16 14:21:31 -07:00
if (size) {
// stack re-alignment
// only pop our adjustment amount since callee pops args in FASTCALL mode
extra = alignUp(size, NJ_ALIGN_STACK) - (size);
#ifndef NJ_NO_FASTCALL
2008-07-16 14:21:31 -07:00
if (extra > 0)
2008-07-31 13:28:12 -07:00
{
ADDi(SP, extra);
}
#endif
2008-07-16 14:21:31 -07:00
}
#ifdef NJ_NO_FASTCALL
// In C calling conventions, callee doesn't pop args.
ADDi(SP, 4*iargs + 8*fstack + extra);
#endif
2008-07-16 14:21:31 -07:00
CALL(call);
#ifdef NJ_NO_FASTCALL
if (iargs >= 1) {
PUSHr(ECX);
if (iargs >= 2) {
PUSHr(EDX);
}
}
#endif
2008-07-16 14:21:31 -07:00
// make sure fpu stack is empty before call (restoreCallerSaved)
NanoAssert(_allocator.isFree(FST0));
// note: this code requires that ref arguments (ARGSIZE_Q)
// be one of the first two arguments
// pre-assign registers to the first 2 4B args
const int max_regs = (iargs < 2) ? iargs : 2;
int n = 0;
ArgSize sizes[10];
uint32_t argc = call->get_sizes(sizes);
for(uint32_t i=0; i < argc; i++)
{
uint32_t j = argc-i-1;
ArgSize sz = sizes[j];
Register r = UnknownReg;
if (n < max_regs && sz != ARGSIZE_F)
r = argRegs[n++]; // tell asm_arg what reg to use
asm_arg(sz, ins->arg(j), r);
}
if (extra > 0)
2008-07-31 13:28:12 -07:00
{
2008-07-16 14:21:31 -07:00
SUBi(SP, extra);
2008-07-31 13:28:12 -07:00
}
}
2008-07-31 13:28:12 -07:00
#elif defined NANOJIT_AMD64
void Assembler::asm_call(LInsp ins)
{
Register fpu_reg = XMM0;
uint32_t fid = ins->fid();
const CallInfo* call = callInfoFor(fid);
int n = 0;
2008-07-31 13:28:12 -07:00
CALL(call);
ArgSize sizes[10];
uint32_t argc = call->get_sizes(sizes);
for(uint32_t i=0; i < argc; i++)
{
uint32_t j = argc-i-1;
ArgSize sz = sizes[j];
Register r = UnknownReg;
if (sz != ARGSIZE_F) {
r = argRegs[n++]; // tell asm_arg what reg to use
} else {
r = fpu_reg;
fpu_reg = nextreg(fpu_reg);
}
findSpecificRegFor(ins->arg(j), r);
}
}
#endif
void Assembler::nMarkExecute(Page* page, int32_t count, bool enable)
{
2008-07-31 13:28:12 -07:00
#if defined WIN32 || defined WIN64
2008-07-07 02:47:40 -07:00
DWORD dwIgnore;
VirtualProtect(&page->code, count*NJ_PAGE_SIZE, PAGE_EXECUTE_READWRITE, &dwIgnore);
#elif defined AVMPLUS_UNIX
2008-07-07 02:47:40 -07:00
intptr_t addr = (intptr_t)&page->code;
2008-07-31 13:28:12 -07:00
addr &= ~((uintptr_t)NJ_PAGE_SIZE - 1);
#if defined SOLARIS
if (mprotect((char *)addr, count*NJ_PAGE_SIZE, PROT_READ|PROT_WRITE|PROT_EXEC) == -1) {
#else
if (mprotect((void *)addr, count*NJ_PAGE_SIZE, PROT_READ|PROT_WRITE|PROT_EXEC) == -1) {
#endif
AvmDebugLog(("FATAL ERROR: mprotect(PROT_EXEC) failed\n"));
abort();
}
#endif
(void)enable;
}
Register Assembler::nRegisterAllocFromSet(int set)
{
Register r;
RegAlloc &regs = _allocator;
#ifdef WIN32
_asm
{
mov ecx, regs
bsf eax, set // i = first bit set
btr RegAlloc::free[ecx], eax // free &= ~rmask(i)
mov r, eax
}
2008-07-31 13:28:12 -07:00
#elif defined WIN64
unsigned long tr, fr;
_BitScanForward(&tr, set);
_bittestandreset(&fr, tr);
regs.free = fr;
r = tr;
#else
asm(
"bsf %1, %%eax\n\t"
"btr %%eax, %2\n\t"
"movl %%eax, %0\n\t"
: "=m"(r) : "m"(set), "m"(regs.free) : "%eax", "memory" );
#endif /* WIN32 */
return r;
}
void Assembler::nRegisterResetAll(RegAlloc& a)
{
// add scratch registers to our free list for the allocator
a.clear();
a.used = 0;
a.free = SavedRegs | ScratchRegs;
2008-07-31 13:28:12 -07:00
#if defined NANOJIT_IA32
if (!avmplus::AvmCore::use_sse2())
a.free &= ~XmmRegs;
2008-07-31 13:28:12 -07:00
#endif
debug_only( a.managed = a.free; )
}
void Assembler::nPatchBranch(NIns* branch, NIns* location)
{
#if defined NANOJIT_IA32
intptr_t offset = intptr_t(location) - intptr_t(branch);
if (branch[0] == JMPc)
*(uint32_t*)&branch[1] = offset - 5;
else
*(uint32_t*)&branch[2] = offset - 6;
#else
if (branch[0] == 0xFF && branch[1] == 0x25) {
NIns *mem;
mem = &branch[6] + *(int32_t *)&branch[2];
*(intptr_t *)mem = intptr_t(location);
} else {
NanoAssertMsg(0, "Unknown branch type in nPatchBranch");
}
#endif
}
RegisterMask Assembler::hint(LIns* i, RegisterMask allow)
{
uint32_t op = i->opcode();
int prefer = allow;
if (op == LIR_call)
2008-07-31 13:28:12 -07:00
#if defined NANOJIT_IA32
prefer &= rmask(EAX);
2008-07-31 13:28:12 -07:00
#elif defined NANOJIT_AMD64
prefer &= rmask(RAX);
#endif
else if (op == LIR_param)
prefer &= rmask(Register(i->imm8()));
2008-07-31 13:28:12 -07:00
#if defined NANOJIT_IA32
else if (op == LIR_callh || op == LIR_rsh && i->oprnd1()->opcode()==LIR_callh)
prefer &= rmask(EDX);
#else
else if (op == LIR_callh)
prefer &= rmask(RAX);
2008-07-31 13:28:12 -07:00
#endif
else if (i->isCmp())
prefer &= AllowableFlagRegs;
else if (i->isconst())
prefer &= ScratchRegs;
return (_allocator.free & prefer) ? prefer : allow;
}
void Assembler::asm_qjoin(LIns *ins)
{
int d = findMemFor(ins);
AvmAssert(d);
LIns* lo = ins->oprnd1();
LIns* hi = ins->oprnd2();
Reservation *resv = getresv(ins);
Register rr = resv->reg;
if (rr != UnknownReg && (rmask(rr) & FpRegs))
evict(rr);
if (hi->isconst())
{
STi(FP, d+4, hi->constval());
}
else
{
Register r = findRegFor(hi, GpRegs);
ST(FP, d+4, r);
}
if (lo->isconst())
{
STi(FP, d, lo->constval());
}
else
{
// okay if r gets recycled.
Register r = findRegFor(lo, GpRegs);
ST(FP, d, r);
}
freeRsrcOf(ins, false); // if we had a reg in use, emit a ST to flush it to mem
}
void Assembler::asm_restore(LInsp i, Reservation *resv, Register r)
{
if (i->isconst())
{
if (!resv->arIndex) {
reserveFree(i);
}
LDi(r, i->constval());
}
else
{
int d = findMemFor(i);
if (rmask(r) & FpRegs)
{
2008-07-31 13:28:12 -07:00
#if defined NANOJIT_IA32
if (rmask(r) & XmmRegs) {
2008-07-31 13:28:12 -07:00
#endif
SSE_LDQ(r, d, FP);
#if defined NANOJIT_IA32
} else {
FLDQ(d, FP);
}
2008-07-31 13:28:12 -07:00
#endif
}
else
{
2008-08-18 12:32:14 -07:00
#if defined NANOJIT_AMD64
LDQ(r, d, FP);
#else
LD(r, d, FP);
2008-08-18 12:32:14 -07:00
#endif
}
verbose_only(if (_verbose) {
outputf(" restore %s", _thisfrag->lirbuf->names->formatRef(i));
})
}
}
void Assembler::asm_store32(LIns *value, int dr, LIns *base)
{
if (value->isconst())
{
Register rb = findRegFor(base, GpRegs);
int c = value->constval();
STi(rb, dr, c);
}
else
{
// make sure what is in a register
Reservation *rA, *rB;
findRegFor2(GpRegs, value, rA, base, rB);
Register ra = rA->reg;
Register rb = rB->reg;
ST(rb, dr, ra);
}
}
void Assembler::asm_spill(LInsp i, Reservation *resv, bool pop)
{
(void)i;
int d = disp(resv);
Register rr = resv->reg;
if (d)
{
// save to spill location
if (rmask(rr) & FpRegs)
{
2008-07-31 13:28:12 -07:00
#if defined NANOJIT_IA32
if (rmask(rr) & XmmRegs) {
2008-07-31 13:28:12 -07:00
#endif
SSE_STQ(d, FP, rr);
#if defined NANOJIT_IA32
} else {
FSTQ((pop?1:0), d, FP);
}
2008-07-31 13:28:12 -07:00
#endif
}
else
{
2008-08-18 12:32:14 -07:00
#if defined NANOJIT_AMD64
STQ(FP, d, rr);
#else
ST(FP, d, rr);
2008-08-18 12:32:14 -07:00
#endif
}
verbose_only(if (_verbose) {
outputf(" spill %s",_thisfrag->lirbuf->names->formatRef(i));
})
}
2008-07-31 13:28:12 -07:00
#if defined NANOJIT_IA32
else if (pop && (rmask(rr) & x87Regs))
{
// pop the fpu result since it isn't used
FSTP(FST0);
}
2008-07-31 13:28:12 -07:00
#endif
}
void Assembler::asm_load64(LInsp ins)
{
LIns* base = ins->oprnd1();
int db = ins->oprnd2()->constval();
Reservation *resv = getresv(ins);
Register rr = resv->reg;
if (rr != UnknownReg && rmask(rr) & XmmRegs)
2008-07-31 13:28:12 -07:00
{
freeRsrcOf(ins, false);
Register rb = findRegFor(base, GpRegs);
SSE_LDQ(rr, db, rb);
}
#if defined NANOJIT_AMD64
else if (rr != UnknownReg && rmask(rr) & GpRegs)
{
freeRsrcOf(ins, false);
Register rb = findRegFor(base, GpRegs);
LDQ(rr, db, rb);
}
else
{
2008-08-18 12:32:14 -07:00
int d = disp(resv);
Register rb = findRegFor(base, GpRegs);
/* We need a temporary register we can move the desination into */
rr = registerAlloc(GpRegs);
STQ(FP, d, rr);
LDQ(rr, db, rb);
/* Mark as free */
_allocator.addFree(rr);
2008-07-31 13:28:12 -07:00
freeRsrcOf(ins, false);
}
#elif defined NANOJIT_IA32
else
{
int dr = disp(resv);
Register rb = findRegFor(base, GpRegs);
resv->reg = UnknownReg;
// don't use an fpu reg to simply load & store the value.
if (dr)
asm_mmq(FP, dr, rb, db);
freeRsrcOf(ins, false);
if (rr != UnknownReg)
{
NanoAssert(rmask(rr)&FpRegs);
_allocator.retire(rr);
FLDQ(db, rb);
}
}
2008-07-31 13:28:12 -07:00
#endif
}
void Assembler::asm_store64(LInsp value, int dr, LInsp base)
{
if (value->isconstq())
{
// if a constant 64-bit value just store it now rather than
// generating a pointless store/load/store sequence
Register rb = findRegFor(base, GpRegs);
const int32_t* p = (const int32_t*) (value-2);
STi(rb, dr+4, p[1]);
STi(rb, dr, p[0]);
return;
}
2008-07-31 13:28:12 -07:00
#if defined NANOJIT_IA32
if (value->isop(LIR_ldq) || value->isop(LIR_qjoin))
{
// value is 64bit struct or int64_t, or maybe a double.
// it may be live in an FPU reg. Either way, don't
// put it in an FPU reg just to load & store it.
// a) if we know it's not a double, this is right.
// b) if we guarded that its a double, this store could be on
// the side exit, copying a non-double.
// c) maybe its a double just being stored. oh well.
if (avmplus::AvmCore::use_sse2()) {
Register rv = findRegFor(value, XmmRegs);
Register rb = findRegFor(base, GpRegs);
2008-07-31 13:28:12 -07:00
SSE_STQ(dr, rb, rv);
return;
}
int da = findMemFor(value);
Register rb = findRegFor(base, GpRegs);
asm_mmq(rb, dr, FP, da);
return;
}
Reservation* rA = getresv(value);
int pop = !rA || rA->reg==UnknownReg;
Register rv = findRegFor(value, avmplus::AvmCore::use_sse2() ? XmmRegs : FpRegs);
Register rb = findRegFor(base, GpRegs);
if (rmask(rv) & XmmRegs) {
2008-07-31 13:28:12 -07:00
SSE_STQ(dr, rb, rv);
} else {
FSTQ(pop, dr, rb);
}
2008-07-31 13:28:12 -07:00
#elif defined NANOJIT_AMD64
/* If this is not a float operation, we can use GpRegs instead.
* We can do this in a few other cases but for now I'll keep it simple.
*/
2008-08-18 12:32:14 -07:00
Register rb = findRegFor(base, GpRegs);
Reservation *rV = getresv(value);
if (rV != NULL && rV->reg != UnknownReg) {
if (rmask(rV->reg) & GpRegs) {
STQ(rb, dr, rV->reg);
} else {
SSE_STQ(dr, rb, rV->reg);
}
} else {
Register rv;
/* Try to catch some common patterns.
* Note: this is a necessity, since in between things like
* asm_fop() could see the reservation and try to use a non-SSE
* register for adding. Same for asm_qbinop in theory.
* There should probably be asserts to catch more cases.
*/
if (value->isop(LIR_u2f)
|| value->isop(LIR_i2f)
|| (value->opcode() >= LIR_fneg && value->opcode() <= LIR_fmul)
|| value->opcode() == LIR_fdiv
2008-08-18 12:32:14 -07:00
|| value->opcode() == LIR_fcall) {
rv = findRegFor(value, XmmRegs);
SSE_STQ(dr, rb, rv);
} else {
rv = findRegFor(value, GpRegs);
STQ(rb, dr, rv);
}
}
2008-07-31 13:28:12 -07:00
#endif
}
/**
* copy 64 bits: (rd+dd) <- (rs+ds)
*/
void Assembler::asm_mmq(Register rd, int dd, Register rs, int ds)
{
// value is either a 64bit struct or maybe a float
// that isn't live in an FPU reg. Either way, don't
// put it in an FPU reg just to load & store it.
2008-07-31 13:28:12 -07:00
#if defined NANOJIT_IA32
if (avmplus::AvmCore::use_sse2())
{
2008-07-31 13:28:12 -07:00
#endif
// use SSE to load+store 64bits
Register t = registerAlloc(XmmRegs);
_allocator.addFree(t);
2008-07-31 13:28:12 -07:00
SSE_STQ(dd, rd, t);
SSE_LDQ(t, ds, rs);
#if defined NANOJIT_IA32
}
else
{
// get a scratch reg
Register t = registerAlloc(GpRegs & ~(rmask(rd)|rmask(rs)));
_allocator.addFree(t);
ST(rd, dd+4, t);
LD(t, ds+4, rs);
ST(rd, dd, t);
LD(t, ds, rs);
}
2008-07-31 13:28:12 -07:00
#endif
}
2008-07-01 14:46:10 -07:00
void Assembler::asm_quad(LInsp ins)
{
2008-07-31 13:28:12 -07:00
#if defined NANOJIT_IA32
2008-07-01 14:46:10 -07:00
Reservation *rR = getresv(ins);
Register rr = rR->reg;
if (rr != UnknownReg)
{
// @todo -- add special-cases for 0 and 1
_allocator.retire(rr);
rR->reg = UnknownReg;
NanoAssert((rmask(rr) & FpRegs) != 0);
const double d = ins->constvalf();
if (rmask(rr) & XmmRegs) {
if (d == 0.0) {
2008-07-31 13:28:12 -07:00
SSE_XORPDr(rr, rr);
2008-07-01 14:46:10 -07:00
} else if (d == 1.0) {
// 1.0 is extremely frequent and worth special-casing!
static const double k_ONE = 1.0;
LDSDm(rr, &k_ONE);
} else {
findMemFor(ins);
const int d = disp(rR);
2008-07-31 13:28:12 -07:00
SSE_LDQ(rr, d, FP);
2008-07-01 14:46:10 -07:00
}
} else {
if (d == 0.0) {
FLDZ();
} else if (d == 1.0) {
FLD1();
} else {
findMemFor(ins);
int d = disp(rR);
FLDQ(d,FP);
}
}
}
// @todo, if we used xor, ldsd, fldz, etc above, we don't need mem here
int d = disp(rR);
freeRsrcOf(ins, false);
if (d)
{
const int32_t* p = (const int32_t*) (ins-2);
STi(FP,d+4,p[1]);
STi(FP,d,p[0]);
}
2008-07-31 13:28:12 -07:00
#elif defined NANOJIT_AMD64
Reservation *rR = getresv(ins);
int64_t val = *(int64_t *)(ins - 2);
if (rR->reg != UnknownReg)
{
2008-08-18 12:32:14 -07:00
Register rr = rR->reg;
freeRsrcOf(ins, false);
if (rmask(rr) & GpRegs)
2008-07-31 13:28:12 -07:00
{
2008-08-18 12:32:14 -07:00
LDQi(rr, val);
2008-07-31 13:28:12 -07:00
}
2008-08-18 12:32:14 -07:00
else if (rmask(rr) & XmmRegs)
2008-07-31 13:28:12 -07:00
{
if (ins->constvalf() == 0.0)
{
2008-08-18 12:32:14 -07:00
SSE_XORPDr(rr, rr);
2008-07-31 13:28:12 -07:00
}
else
{
/* Get a short-lived register, not associated with instruction */
Register rs = registerAlloc(GpRegs);
2008-08-18 12:32:14 -07:00
SSE_MOVD(rr, rs);
2008-07-31 13:28:12 -07:00
LDQi(rs, val);
_allocator.addFree(rs);
}
}
}
else
{
const int32_t* p = (const int32_t*) (ins-2);
int dr = disp(rR);
2008-08-18 12:32:14 -07:00
freeRsrcOf(ins, false);
2008-07-31 13:28:12 -07:00
STi(FP, dr+4, p[1]);
STi(FP, dr, p[0]);
}
#endif
2008-07-01 14:46:10 -07:00
}
bool Assembler::asm_qlo(LInsp ins, LInsp q)
{
2008-07-31 13:28:12 -07:00
#if defined NANOJIT_IA32
if (!avmplus::AvmCore::use_sse2())
2008-07-01 14:46:10 -07:00
{
return false;
}
2008-07-31 13:28:12 -07:00
#endif
2008-07-01 14:46:10 -07:00
Reservation *resv = getresv(ins);
Register rr = resv->reg;
if (rr == UnknownReg) {
// store quad in spill loc
int d = disp(resv);
freeRsrcOf(ins, false);
Register qr = findRegFor(q, XmmRegs);
2008-07-31 13:28:12 -07:00
SSE_MOVDm(d, FP, qr);
2008-07-01 14:46:10 -07:00
} else {
freeRsrcOf(ins, false);
Register qr = findRegFor(q, XmmRegs);
2008-07-31 13:28:12 -07:00
SSE_MOVD(rr,qr);
2008-07-01 14:46:10 -07:00
}
return true;
}
void Assembler::asm_fneg(LInsp ins)
{
2008-07-31 13:28:12 -07:00
#if defined NANOJIT_IA32
if (avmplus::AvmCore::use_sse2())
2008-07-01 14:46:10 -07:00
{
2008-07-31 13:28:12 -07:00
#endif
2008-07-01 14:46:10 -07:00
LIns *lhs = ins->oprnd1();
Register rr = prepResultReg(ins, XmmRegs);
Reservation *rA = getresv(lhs);
Register ra;
// if this is last use of lhs in reg, we can re-use result reg
if (rA == 0 || (ra = rA->reg) == UnknownReg) {
2008-07-01 14:46:10 -07:00
ra = findSpecificRegFor(lhs, rr);
} else if ((rmask(ra) & XmmRegs) == 0) {
/* We need this case on AMD64, because it's possible that
* an earlier instruction has done a quadword load and reserved a
* GPR. If so, ask for a new register.
*/
ra = findRegFor(lhs, XmmRegs);
}
2008-07-01 14:46:10 -07:00
// else, rA already has a register assigned.
#if defined __SUNPRO_CC
// from Sun Studio C++ Readme: #pragma align inside namespace requires mangled names
static uint32_t temp[] = {0, 0, 0, 0, 0, 0, 0};
static uint32_t *negateMask = (uint32_t *)alignUp(temp, 16);
negateMask[1] = 0x80000000;
#else
2008-07-01 14:46:10 -07:00
static const AVMPLUS_ALIGN16(uint32_t) negateMask[] = {0,0x80000000,0,0};
#endif
2008-07-31 13:28:12 -07:00
SSE_XORPD(rr, negateMask);
2008-07-01 14:46:10 -07:00
if (rr != ra)
2008-07-31 13:28:12 -07:00
SSE_MOVSD(rr, ra);
#if defined NANOJIT_IA32
2008-07-01 14:46:10 -07:00
}
else
{
Register rr = prepResultReg(ins, FpRegs);
LIns* lhs = ins->oprnd1();
// lhs into reg, prefer same reg as result
Reservation* rA = getresv(lhs);
// if this is last use of lhs in reg, we can re-use result reg
if (rA == 0 || rA->reg == UnknownReg)
findSpecificRegFor(lhs, rr);
// else, rA already has a different reg assigned
NanoAssert(getresv(lhs)!=0 && getresv(lhs)->reg==FST0);
// assume that the lhs is in ST(0) and rhs is on stack
FCHS();
// if we had more than one fpu reg, this is where
// we would move ra into rr if rr != ra.
}
2008-07-31 13:28:12 -07:00
#endif
2008-07-01 14:46:10 -07:00
}
void Assembler::asm_pusharg(LInsp p)
{
// arg goes on stack
Reservation* rA = getresv(p);
if (rA == 0)
{
if (p->isconst())
{
// small const we push directly
PUSHi(p->constval());
}
else
{
Register ra = findRegFor(p, GpRegs);
PUSHr(ra);
}
}
else if (rA->reg == UnknownReg)
{
PUSHm(disp(rA), FP);
}
else
{
PUSHr(rA->reg);
}
}
2008-07-01 14:46:10 -07:00
2008-07-16 14:21:31 -07:00
void Assembler::asm_farg(LInsp p)
2008-07-01 14:46:10 -07:00
{
2008-07-31 13:28:12 -07:00
#if defined NANOJIT_IA32
2008-07-01 14:46:10 -07:00
Register r = findRegFor(p, FpRegs);
if (rmask(r) & XmmRegs) {
2008-07-31 13:28:12 -07:00
SSE_STQ(0, SP, r);
2008-07-01 14:46:10 -07:00
} else {
FSTPQ(0, SP);
}
PUSHr(ECX); // 2*pushr is smaller than sub
PUSHr(ECX);
2008-07-31 13:28:12 -07:00
#endif
2008-07-01 14:46:10 -07:00
}
void Assembler::asm_fop(LInsp ins)
{
LOpcode op = ins->opcode();
2008-07-31 13:28:12 -07:00
#if defined NANOJIT_IA32
if (avmplus::AvmCore::use_sse2())
2008-07-01 14:46:10 -07:00
{
2008-07-31 13:28:12 -07:00
#endif
2008-07-01 14:46:10 -07:00
LIns *lhs = ins->oprnd1();
LIns *rhs = ins->oprnd2();
RegisterMask allow = XmmRegs;
Register rb = UnknownReg;
if (lhs != rhs) {
rb = findRegFor(rhs,allow);
allow &= ~rmask(rb);
}
Register rr = prepResultReg(ins, allow);
Reservation *rA = getresv(lhs);
Register ra;
// if this is last use of lhs in reg, we can re-use result reg
if (rA == 0 || (ra = rA->reg) == UnknownReg) {
2008-07-01 14:46:10 -07:00
ra = findSpecificRegFor(lhs, rr);
} else if ((rmask(ra) & XmmRegs) == 0) {
/* We need this case on AMD64, because it's possible that
* an earlier instruction has done a quadword load and reserved a
* GPR. If so, ask for a new register.
*/
ra = findRegFor(lhs, XmmRegs);
}
2008-07-01 14:46:10 -07:00
// else, rA already has a register assigned.
if (lhs == rhs)
rb = ra;
if (op == LIR_fadd)
2008-07-31 13:28:12 -07:00
SSE_ADDSD(rr, rb);
2008-07-01 14:46:10 -07:00
else if (op == LIR_fsub)
2008-07-31 13:28:12 -07:00
SSE_SUBSD(rr, rb);
2008-07-01 14:46:10 -07:00
else if (op == LIR_fmul)
2008-07-31 13:28:12 -07:00
SSE_MULSD(rr, rb);
2008-07-01 14:46:10 -07:00
else //if (op == LIR_fdiv)
2008-07-31 13:28:12 -07:00
SSE_DIVSD(rr, rb);
2008-07-01 14:46:10 -07:00
if (rr != ra)
2008-07-31 13:28:12 -07:00
SSE_MOVSD(rr, ra);
#if defined NANOJIT_IA32
2008-07-01 14:46:10 -07:00
}
else
{
// we swap lhs/rhs on purpose here, works out better
// if you only have one fpu reg. use divr/subr.
LIns* rhs = ins->oprnd1();
LIns* lhs = ins->oprnd2();
Register rr = prepResultReg(ins, rmask(FST0));
// make sure rhs is in memory
int db = findMemFor(rhs);
// lhs into reg, prefer same reg as result
Reservation* rA = getresv(lhs);
// last use of lhs in reg, can reuse rr
if (rA == 0 || rA->reg == UnknownReg)
findSpecificRegFor(lhs, rr);
// else, rA already has a different reg assigned
NanoAssert(getresv(lhs)!=0 && getresv(lhs)->reg==FST0);
// assume that the lhs is in ST(0) and rhs is on stack
if (op == LIR_fadd)
{ FADD(db, FP); }
else if (op == LIR_fsub)
{ FSUBR(db, FP); }
else if (op == LIR_fmul)
{ FMUL(db, FP); }
else if (op == LIR_fdiv)
{ FDIVR(db, FP); }
}
2008-07-31 13:28:12 -07:00
#endif
2008-07-01 14:46:10 -07:00
}
void Assembler::asm_i2f(LInsp ins)
{
// where our result goes
Register rr = prepResultReg(ins, FpRegs);
2008-07-31 13:28:12 -07:00
#if defined NANOJIT_IA32
2008-07-01 14:46:10 -07:00
if (rmask(rr) & XmmRegs)
{
2008-07-31 13:28:12 -07:00
#endif
2008-07-01 14:46:10 -07:00
// todo support int value in memory
Register gr = findRegFor(ins->oprnd1(), GpRegs);
2008-07-31 13:28:12 -07:00
SSE_CVTSI2SD(rr, gr);
#if defined NANOJIT_IA32
2008-07-01 14:46:10 -07:00
}
else
{
int d = findMemFor(ins->oprnd1());
FILD(d, FP);
}
2008-07-31 13:28:12 -07:00
#endif
2008-07-01 14:46:10 -07:00
}
Register Assembler::asm_prep_fcall(Reservation *rR, LInsp ins)
{
2008-07-31 13:28:12 -07:00
#if defined NANOJIT_IA32
2008-07-01 14:46:10 -07:00
if (rR) {
2008-07-16 14:21:31 -07:00
Register rr;
2008-07-01 14:46:10 -07:00
if ((rr=rR->reg) != UnknownReg && (rmask(rr) & XmmRegs))
evict(rr);
}
2008-07-16 14:21:31 -07:00
return prepResultReg(ins, rmask(FST0));
2008-07-31 13:28:12 -07:00
#elif defined NANOJIT_AMD64
evict(RAX);
return prepResultReg(ins, rmask(XMM0));
#endif
2008-07-01 14:46:10 -07:00
}
void Assembler::asm_u2f(LInsp ins)
{
// where our result goes
Register rr = prepResultReg(ins, FpRegs);
2008-07-31 13:28:12 -07:00
#if defined NANOJIT_IA32
2008-07-01 14:46:10 -07:00
if (rmask(rr) & XmmRegs)
{
2008-07-31 13:28:12 -07:00
#endif
2008-07-01 14:46:10 -07:00
// don't call findRegFor, we want a reg we can stomp on for a very short time,
// not a reg that will continue to be associated with the LIns
Register gr = registerAlloc(GpRegs);
// technique inspired by gcc disassembly
// Edwin explains it:
//
// gr is 0..2^32-1
//
// sub gr,0x80000000
//
// now gr is -2^31..2^31-1, i.e. the range of int, but not the same value
// as before
//
// cvtsi2sd rr,gr
//
// rr is now a double with the int value range
//
// addsd rr, 2147483648.0
//
// adding back double(0x80000000) makes the range 0..2^32-1.
static const double k_NEGONE = 2147483648.0;
2008-07-31 13:28:12 -07:00
#if defined NANOJIT_IA32
SSE_ADDSDm(rr, &k_NEGONE);
#elif defined NANOJIT_AMD64
/* Squirrel the constant at the bottom of the page. */
if (_dblNegPtr != NULL)
{
underrunProtect(10);
}
if (_dblNegPtr == NULL)
{
underrunProtect(30);
uint8_t *base, *begin;
2008-08-18 12:32:14 -07:00
base = (uint8_t *)((intptr_t)_nIns & ~((intptr_t)NJ_PAGE_SIZE-1));
2008-07-31 13:28:12 -07:00
base += sizeof(PageHeader) + _pageData;
begin = base;
/* Make sure we align */
if ((uintptr_t)base & 0xF) {
base = (NIns *)((uintptr_t)base & ~(0xF));
base += 16;
}
_pageData += (int32_t)(base - begin) + sizeof(double);
_negOnePtr = (NIns *)base;
*(double *)_negOnePtr = k_NEGONE;
}
SSE_ADDSDm(rr, _negOnePtr);
#endif
SSE_CVTSI2SD(rr, gr);
2008-07-01 14:46:10 -07:00
Reservation* resv = getresv(ins->oprnd1());
Register xr;
if (resv && (xr = resv->reg) != UnknownReg && (rmask(xr) & GpRegs))
{
LEA(gr, 0x80000000, xr);
}
else
{
const int d = findMemFor(ins->oprnd1());
SUBi(gr, 0x80000000);
LD(gr, d, FP);
}
// ok, we're done with it
_allocator.addFree(gr);
2008-07-31 13:28:12 -07:00
#if defined NANOJIT_IA32
2008-07-01 14:46:10 -07:00
}
else
{
2008-07-31 13:28:12 -07:00
const int disp = -8;
const Register base = SP;
2008-07-01 14:46:10 -07:00
Register gr = findRegFor(ins->oprnd1(), GpRegs);
NanoAssert(rr == FST0);
FILDQ(disp, base);
STi(base, disp+4, 0); // high 32 bits = 0
ST(base, disp, gr); // low 32 bits = unsigned value
}
2008-07-31 13:28:12 -07:00
#endif
2008-07-01 14:46:10 -07:00
}
void Assembler::asm_nongp_copy(Register r, Register s)
{
if ((rmask(r) & XmmRegs) && (rmask(s) & XmmRegs)) {
2008-07-31 13:28:12 -07:00
SSE_MOVSD(r, s);
} else if ((rmask(r) & GpRegs) && (rmask(s) & XmmRegs)) {
SSE_MOVD(r, s);
2008-07-01 14:46:10 -07:00
} else {
if (rmask(r) & XmmRegs) {
// x87 -> xmm
NanoAssertMsg(false, "Should not move data from GPR to XMM");
2008-07-01 14:46:10 -07:00
} else {
// xmm -> x87
NanoAssertMsg(false, "Should not move data from GPR/XMM to x87 FPU");
2008-07-01 14:46:10 -07:00
}
}
}
void Assembler::asm_fcmp(LIns *cond)
{
LOpcode condop = cond->opcode();
NanoAssert(condop >= LIR_feq && condop <= LIR_fge);
LIns* lhs = cond->oprnd1();
LIns* rhs = cond->oprnd2();
int mask;
if (condop == LIR_feq)
mask = 0x44;
else if (condop == LIR_fle)
mask = 0x41;
else if (condop == LIR_flt)
mask = 0x05;
else if (condop == LIR_fge) {
// swap, use le
LIns* t = lhs; lhs = rhs; rhs = t;
mask = 0x41;
} else { // if (condop == LIR_fgt)
// swap, use lt
LIns* t = lhs; lhs = rhs; rhs = t;
mask = 0x05;
}
2008-07-31 13:28:12 -07:00
#if defined NANOJIT_IA32
if (avmplus::AvmCore::use_sse2())
2008-07-01 14:46:10 -07:00
{
2008-07-31 13:28:12 -07:00
#endif
2008-07-01 14:46:10 -07:00
// UNORDERED: ZF,PF,CF <- 111;
// GREATER_THAN: ZF,PF,CF <- 000;
// LESS_THAN: ZF,PF,CF <- 001;
// EQUAL: ZF,PF,CF <- 100;
if (condop == LIR_feq && lhs == rhs) {
// nan check
Register r = findRegFor(lhs, XmmRegs);
2008-07-31 13:28:12 -07:00
SSE_UCOMISD(r, r);
2008-07-01 14:46:10 -07:00
} else {
2008-07-31 13:28:12 -07:00
#if defined NANOJIT_IA32
2008-07-01 14:46:10 -07:00
evict(EAX);
TEST_AH(mask);
LAHF();
2008-07-31 13:28:12 -07:00
#elif defined NANOJIT_AMD64
evict(RAX);
TEST_AL(mask);
POPr(RAX);
PUSHFQ();
#endif
2008-07-01 14:46:10 -07:00
Reservation *rA, *rB;
findRegFor2(XmmRegs, lhs, rA, rhs, rB);
2008-07-31 13:28:12 -07:00
SSE_UCOMISD(rA->reg, rB->reg);
2008-07-01 14:46:10 -07:00
}
2008-07-31 13:28:12 -07:00
#if defined NANOJIT_IA32
2008-07-01 14:46:10 -07:00
}
else
{
evict(EAX);
TEST_AH(mask);
FNSTSW_AX();
NanoAssert(lhs->isQuad() && rhs->isQuad());
Reservation *rA;
if (lhs != rhs)
{
// compare two different numbers
int d = findMemFor(rhs);
rA = getresv(lhs);
int pop = !rA || rA->reg == UnknownReg;
findSpecificRegFor(lhs, FST0);
// lhs is in ST(0) and rhs is on stack
FCOM(pop, d, FP);
}
else
{
// compare n to itself, this is a NaN test.
rA = getresv(lhs);
int pop = !rA || rA->reg == UnknownReg;
findSpecificRegFor(lhs, FST0);
// value in ST(0)
if (pop)
FCOMPP();
else
FCOMP();
FLDr(FST0); // DUP
}
}
2008-07-31 13:28:12 -07:00
#endif
2008-07-01 14:46:10 -07:00
}
NIns* Assembler::asm_adjustBranch(NIns* at, NIns* target)
{
NIns* was;
#if defined NANOJIT_AMD64
was = (NIns*)( *(intptr_t*)(at) );
*(intptr_t *)(at) = intptr_t(target);
#else
NIns* save = _nIns;
was = (NIns*)( (intptr_t)*(int32_t*)(at+1)+(intptr_t)(at+5) );
_nIns = at +5; // +5 is size of JMP
intptr_t tt = (intptr_t)target - (intptr_t)_nIns;
IMM32(tt);
*(--_nIns) = JMPc;
_nIns = save;
#endif
return was;
}
2008-07-31 13:28:12 -07:00
void Assembler::nativePageReset()
{
#if defined NANOJIT_AMD64
/* We store some stuff at the bottom of the page.
* We reserve 8-bytes for long jumps just in case we need them.
*/
2008-07-31 13:28:12 -07:00
_pageData = 0;
_dblNegPtr = NULL;
_negOnePtr = NULL;
#endif
}
2008-08-18 12:32:14 -07:00
Register Assembler::asm_binop_rhs_reg(LInsp ins)
{
LOpcode op = ins->opcode();
LIns *rhs = ins->oprnd2();
if (op == LIR_lsh || op == LIR_rsh || op == LIR_ush) {
#if defined NANOJIT_IA32
return findSpecificRegFor(rhs, ECX);
#elif defined NANOJIT_AMD64
return findSpecificRegFor(rhs, RCX);
#endif
}
return UnknownReg;
}
#if defined NANOJIT_AMD64
void Assembler::asm_qbinop(LIns *ins)
{
LInsp lhs = ins->oprnd1();
LInsp rhs = ins->oprnd2();
LOpcode op = ins->opcode();
Register rr = prepResultReg(ins, GpRegs);
Reservation *rA = getresv(lhs);
Register ra;
if (rA == NULL || (ra = rA->reg) == UnknownReg) {
ra = findSpecificRegFor(lhs, rr);
}
if (rhs->isconst())
{
int c = rhs->constval();
if (op == LIR_qiadd)
{
ADDQi(rr, c);
} else if (op == LIR_qiand) {
ANDQi(rr, c);
} else if (op == LIR_qilsh) {
SHLQi(rr, c);
} else if (op == LIR_qior) {
ORQi(rr, c);
2008-08-18 12:32:14 -07:00
}
} else {
Register rv;
if (lhs == rhs) {
rv = ra;
} else {
rv = findRegFor(rhs, GpRegs & ~(rmask(rr)));
}
2008-08-18 12:32:14 -07:00
if (op == LIR_qiadd) {
ADDQ(rr, rv);
} else if (op == LIR_qiand) {
ANDQ(rr, rv);
} else if (op == LIR_qior) {
ORQ(rr, rv);
2008-08-18 12:32:14 -07:00
} else {
NanoAssert(rhs->isconst());
}
}
if (rr != ra) {
MR(rr, ra);
}
}
#endif
void Assembler::nativePageSetup()
{
if (!_nIns) _nIns = pageAlloc();
if (!_nExitIns) _nExitIns = pageAlloc(true);
}
#endif /* FEATURE_NANOJIT */
}