| 
									
										
										
										
											2008-07-31 20:22:35 +00:00
										 |  |  | #include "Common.h"
 | 
					
						
							|  |  |  | #include "x64Emitter.h"
 | 
					
						
							|  |  |  | #include "ABI.h"
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | using namespace Gen; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | #ifdef _M_IX86 // All32
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | // Shared code between Win32 and Unix32
 | 
					
						
							|  |  |  | // ====================================
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | void ABI_CallFunctionC(void *func, u32 param1) { | 
					
						
							| 
									
										
										
										
											2008-09-05 00:02:53 +00:00
										 |  |  | 	ABI_AlignStack(1 * 4); | 
					
						
							| 
									
										
										
										
											2008-07-31 20:22:35 +00:00
										 |  |  | 	PUSH(32, Imm32(param1)); | 
					
						
							|  |  |  | 	CALL(func); | 
					
						
							| 
									
										
										
										
											2008-09-05 00:02:53 +00:00
										 |  |  | 	ABI_RestoreStack(1 * 4); | 
					
						
							| 
									
										
										
										
											2008-07-31 20:22:35 +00:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | void ABI_CallFunctionCC(void *func, u32 param1, u32 param2) { | 
					
						
							| 
									
										
										
										
											2008-09-05 00:02:53 +00:00
										 |  |  | 	ABI_AlignStack(2 * 4); | 
					
						
							| 
									
										
										
										
											2008-07-31 20:22:35 +00:00
										 |  |  | 	PUSH(32, Imm32(param2)); | 
					
						
							|  |  |  | 	PUSH(32, Imm32(param1)); | 
					
						
							|  |  |  | 	CALL(func); | 
					
						
							| 
									
										
										
										
											2008-09-05 00:02:53 +00:00
										 |  |  | 	ABI_RestoreStack(2 * 4); | 
					
						
							| 
									
										
										
										
											2008-07-31 20:22:35 +00:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | // Pass a register as a paremeter.
 | 
					
						
							|  |  |  | void ABI_CallFunctionR(void *func, X64Reg reg1) { | 
					
						
							| 
									
										
										
										
											2008-09-05 00:02:53 +00:00
										 |  |  | 	ABI_AlignStack(1 * 4); | 
					
						
							| 
									
										
										
										
											2008-07-31 20:22:35 +00:00
										 |  |  | 	PUSH(32, R(reg1)); | 
					
						
							|  |  |  | 	CALL(func); | 
					
						
							| 
									
										
										
										
											2008-09-05 00:02:53 +00:00
										 |  |  | 	ABI_RestoreStack(1 * 4); | 
					
						
							| 
									
										
										
										
											2008-07-31 20:22:35 +00:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2008-08-01 09:30:04 +00:00
										 |  |  | void ABI_CallFunctionRR(void *func, Gen::X64Reg reg1, Gen::X64Reg reg2) | 
					
						
							|  |  |  | { | 
					
						
							| 
									
										
										
										
											2008-09-05 00:02:53 +00:00
										 |  |  | 	ABI_AlignStack(2 * 4); | 
					
						
							| 
									
										
										
										
											2008-08-01 09:30:04 +00:00
										 |  |  | 	PUSH(32, R(reg2)); | 
					
						
							|  |  |  | 	PUSH(32, R(reg1)); | 
					
						
							|  |  |  | 	CALL(func); | 
					
						
							| 
									
										
										
										
											2008-09-05 00:02:53 +00:00
										 |  |  | 	ABI_RestoreStack(2 * 4); | 
					
						
							| 
									
										
										
										
											2008-08-01 09:30:04 +00:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2008-07-31 21:02:19 +00:00
										 |  |  | void ABI_CallFunctionAC(void *func, const Gen::OpArg &arg1, u32 param2) | 
					
						
							|  |  |  | { | 
					
						
							| 
									
										
										
										
											2008-09-05 00:02:53 +00:00
										 |  |  | 	ABI_AlignStack(2 * 4); | 
					
						
							| 
									
										
										
										
											2008-07-31 21:02:19 +00:00
										 |  |  | 	PUSH(32, arg1); | 
					
						
							|  |  |  | 	PUSH(32, Imm32(param2)); | 
					
						
							|  |  |  | 	CALL(func); | 
					
						
							| 
									
										
										
										
											2008-09-05 00:02:53 +00:00
										 |  |  | 	ABI_RestoreStack(2 * 4); | 
					
						
							| 
									
										
										
										
											2008-07-31 21:02:19 +00:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2008-07-31 20:22:35 +00:00
										 |  |  | void ABI_PushAllCalleeSavedRegsAndAdjustStack() { | 
					
						
							| 
									
										
										
										
											2008-09-05 00:02:53 +00:00
										 |  |  | 	// Note: 4 * 4 = 16 bytes, so alignment is preserved.
 | 
					
						
							| 
									
										
										
										
											2008-07-31 20:22:35 +00:00
										 |  |  | 	PUSH(EBP); | 
					
						
							|  |  |  | 	PUSH(EBX); | 
					
						
							|  |  |  | 	PUSH(ESI); | 
					
						
							|  |  |  | 	PUSH(EDI); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | void ABI_PopAllCalleeSavedRegsAndAdjustStack() { | 
					
						
							|  |  |  | 	POP(EDI); | 
					
						
							|  |  |  | 	POP(ESI); | 
					
						
							|  |  |  | 	POP(EBX); | 
					
						
							|  |  |  | 	POP(EBP); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2008-09-05 01:48:16 +00:00
										 |  |  | unsigned int ABI_GetAlignedFrameSize(unsigned int frameSize) { | 
					
						
							|  |  |  | 	frameSize += 4; // reserve space for return address
 | 
					
						
							|  |  |  | 	unsigned int alignedSize = | 
					
						
							|  |  |  | #ifdef __GNUC__
 | 
					
						
							|  |  |  | 		(frameSize + 15) & -16; | 
					
						
							|  |  |  | #else
 | 
					
						
							|  |  |  | 		frameSize; | 
					
						
							|  |  |  | #endif
 | 
					
						
							|  |  |  | 	return alignedSize; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2008-09-05 00:02:53 +00:00
										 |  |  | void ABI_AlignStack(unsigned int frameSize) { | 
					
						
							|  |  |  | // Mac OS X requires the stack to be 16-byte aligned before every call.
 | 
					
						
							|  |  |  | // Linux requires the stack to be 16-byte aligned before calls that put SSE
 | 
					
						
							|  |  |  | // vectors on the stack, but since we do not keep track of which calls do that,
 | 
					
						
							|  |  |  | // it is effectively every call as well.
 | 
					
						
							|  |  |  | // Windows binaries compiled with MSVC do not have such a restriction, but I
 | 
					
						
							|  |  |  | // expect that GCC on Windows acts the same as GCC on Linux in this respect.
 | 
					
						
							|  |  |  | // It would be nice if someone could verify this.
 | 
					
						
							|  |  |  | #ifdef __GNUC__
 | 
					
						
							| 
									
										
										
										
											2008-09-05 01:48:16 +00:00
										 |  |  | 	unsigned int fillSize = | 
					
						
							|  |  |  | 		ABI_GetAlignedFrameSize(frameSize) - (frameSize + 4); | 
					
						
							| 
									
										
										
										
											2008-09-05 00:02:53 +00:00
										 |  |  | 	if (fillSize != 0) { | 
					
						
							|  |  |  | 		SUB(32, R(ESP), Imm8(fillSize)); | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | #endif
 | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | void ABI_RestoreStack(unsigned int frameSize) { | 
					
						
							| 
									
										
										
										
											2008-09-05 01:48:16 +00:00
										 |  |  | 	unsigned int alignedSize = ABI_GetAlignedFrameSize(frameSize); | 
					
						
							|  |  |  | 	alignedSize -= 4; // return address is POPped at end of call
 | 
					
						
							|  |  |  | 	if (alignedSize != 0) { | 
					
						
							|  |  |  | 		ADD(32, R(ESP), Imm8(alignedSize)); | 
					
						
							| 
									
										
										
										
											2008-09-05 00:02:53 +00:00
										 |  |  | 	} | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2008-07-31 20:22:35 +00:00
										 |  |  | #else
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | // Shared code between Win64 and Unix64
 | 
					
						
							|  |  |  | // ====================================
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | void ABI_CallFunctionC(void *func, u32 param1) { | 
					
						
							|  |  |  | 	MOV(32, R(ABI_PARAM1), Imm32(param1)); | 
					
						
							|  |  |  | 	CALL(func); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | void ABI_CallFunctionCC(void *func, u32 param1, u32 param2) { | 
					
						
							|  |  |  | 	MOV(32, R(ABI_PARAM1), Imm32(param1)); | 
					
						
							|  |  |  | 	MOV(32, R(ABI_PARAM2), Imm32(param2)); | 
					
						
							|  |  |  | 	CALL(func); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | // Pass a register as a paremeter.
 | 
					
						
							|  |  |  | void ABI_CallFunctionR(void *func, X64Reg reg1) { | 
					
						
							|  |  |  | 	if (reg1 != ABI_PARAM1) | 
					
						
							|  |  |  | 		MOV(32, R(ABI_PARAM1), R(reg1)); | 
					
						
							|  |  |  | 	CALL(func); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2008-08-01 09:30:04 +00:00
										 |  |  | // Pass a register as a paremeter.
 | 
					
						
							|  |  |  | void ABI_CallFunctionRR(void *func, X64Reg reg1, X64Reg reg2) { | 
					
						
							|  |  |  | 	if (reg1 != ABI_PARAM1) | 
					
						
							|  |  |  | 		MOV(32, R(ABI_PARAM1), R(reg1)); | 
					
						
							|  |  |  | 	if (reg2 != ABI_PARAM2) | 
					
						
							|  |  |  | 		MOV(32, R(ABI_PARAM2), R(reg2)); | 
					
						
							|  |  |  | 	CALL(func); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2008-07-31 21:02:19 +00:00
										 |  |  | void ABI_CallFunctionAC(void *func, const Gen::OpArg &arg1, u32 param2) | 
					
						
							|  |  |  | { | 
					
						
							| 
									
										
										
										
											2008-07-31 21:23:30 +00:00
										 |  |  | 	if (!arg1.IsSimpleReg(ABI_PARAM1)) | 
					
						
							| 
									
										
										
										
											2008-07-31 21:02:19 +00:00
										 |  |  | 		MOV(32, R(ABI_PARAM1), arg1); | 
					
						
							|  |  |  | 	MOV(32, R(ABI_PARAM2), Imm32(param2)); | 
					
						
							|  |  |  | 	CALL(func); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2008-09-05 01:48:16 +00:00
										 |  |  | unsigned int ABI_GetAlignedFrameSize(unsigned int frameSize) { | 
					
						
							|  |  |  | 	return frameSize; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2008-09-05 00:02:53 +00:00
										 |  |  | void ABI_AlignStack(unsigned int /*frameSize*/) { | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | void ABI_RestoreStack(unsigned int /*frameSize*/) { | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2008-07-31 20:22:35 +00:00
										 |  |  | #ifdef _WIN32
 | 
					
						
							| 
									
										
										
										
											2008-08-09 16:56:24 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2008-07-31 20:22:35 +00:00
										 |  |  | // Win64 Specific Code
 | 
					
						
							|  |  |  | // ====================================
 | 
					
						
							|  |  |  | void ABI_PushAllCalleeSavedRegsAndAdjustStack() { | 
					
						
							|  |  |  | 	//we only want to do this once
 | 
					
						
							|  |  |  | 	PUSH(RBX);  | 
					
						
							|  |  |  | 	PUSH(RSI);  | 
					
						
							|  |  |  | 	PUSH(RDI); | 
					
						
							| 
									
										
										
										
											2008-08-09 16:56:24 +00:00
										 |  |  | 	PUSH(RBP); | 
					
						
							| 
									
										
										
										
											2008-07-31 20:22:35 +00:00
										 |  |  | 	PUSH(R12);  | 
					
						
							|  |  |  | 	PUSH(R13);  | 
					
						
							|  |  |  | 	PUSH(R14);  | 
					
						
							|  |  |  | 	PUSH(R15); | 
					
						
							|  |  |  | 	//TODO: Also preserve XMM0-3?
 | 
					
						
							| 
									
										
										
										
											2008-08-09 16:56:24 +00:00
										 |  |  | 	SUB(64, R(RSP), Imm8(0x28)); | 
					
						
							| 
									
										
										
										
											2008-07-31 20:22:35 +00:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | void ABI_PopAllCalleeSavedRegsAndAdjustStack() { | 
					
						
							| 
									
										
										
										
											2008-08-09 16:56:24 +00:00
										 |  |  | 	ADD(64, R(RSP), Imm8(0x28)); | 
					
						
							| 
									
										
										
										
											2008-07-31 20:22:35 +00:00
										 |  |  | 	POP(R15); | 
					
						
							|  |  |  | 	POP(R14);  | 
					
						
							|  |  |  | 	POP(R13);  | 
					
						
							|  |  |  | 	POP(R12); | 
					
						
							| 
									
										
										
										
											2008-08-09 16:56:24 +00:00
										 |  |  | 	POP(RBP); | 
					
						
							| 
									
										
										
										
											2008-07-31 20:22:35 +00:00
										 |  |  | 	POP(RDI); | 
					
						
							|  |  |  | 	POP(RSI);  | 
					
						
							|  |  |  | 	POP(RBX);  | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2008-08-09 16:56:24 +00:00
										 |  |  | // Win64 Specific Code
 | 
					
						
							|  |  |  | // ====================================
 | 
					
						
							|  |  |  | void ABI_PushAllCallerSavedRegsAndAdjustStack() { | 
					
						
							|  |  |  | 	PUSH(RCX); | 
					
						
							|  |  |  | 	PUSH(RDX); | 
					
						
							|  |  |  | 	PUSH(RSI);  | 
					
						
							|  |  |  | 	PUSH(RDI); | 
					
						
							|  |  |  | 	PUSH(R8); | 
					
						
							|  |  |  | 	PUSH(R9); | 
					
						
							|  |  |  | 	PUSH(R10); | 
					
						
							|  |  |  | 	PUSH(R11); | 
					
						
							|  |  |  | 	//TODO: Also preserve XMM0-15?
 | 
					
						
							|  |  |  | 	SUB(64, R(RSP), Imm8(0x28)); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | void ABI_PopAllCallerSavedRegsAndAdjustStack() { | 
					
						
							|  |  |  | 	ADD(64, R(RSP), Imm8(0x28)); | 
					
						
							|  |  |  | 	POP(R11); | 
					
						
							|  |  |  | 	POP(R10); | 
					
						
							|  |  |  | 	POP(R9); | 
					
						
							|  |  |  | 	POP(R8); | 
					
						
							|  |  |  | 	POP(RDI);  | 
					
						
							|  |  |  | 	POP(RSI);  | 
					
						
							|  |  |  | 	POP(RDX); | 
					
						
							|  |  |  | 	POP(RCX); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2008-07-31 20:22:35 +00:00
										 |  |  | #else
 | 
					
						
							|  |  |  | // Unix64 Specific Code
 | 
					
						
							|  |  |  | // ====================================
 | 
					
						
							|  |  |  | void ABI_PushAllCalleeSavedRegsAndAdjustStack() { | 
					
						
							| 
									
										
										
										
											2008-07-31 21:02:19 +00:00
										 |  |  | 	PUSH(RBX);  | 
					
						
							|  |  |  | 	PUSH(RBP); | 
					
						
							|  |  |  | 	PUSH(R12);  | 
					
						
							|  |  |  | 	PUSH(R13);  | 
					
						
							|  |  |  | 	PUSH(R14);  | 
					
						
							|  |  |  | 	PUSH(R15); | 
					
						
							| 
									
										
										
										
											2008-08-06 20:23:53 +00:00
										 |  |  | 	PUSH(R15); //just to align stack. duped push/pop doesn't hurt.
 | 
					
						
							| 
									
										
										
										
											2008-07-31 20:22:35 +00:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | void ABI_PopAllCalleeSavedRegsAndAdjustStack() { | 
					
						
							| 
									
										
										
										
											2008-08-06 20:23:53 +00:00
										 |  |  | 	POP(R15); | 
					
						
							| 
									
										
										
										
											2008-07-31 21:02:19 +00:00
										 |  |  | 	POP(R15); | 
					
						
							|  |  |  | 	POP(R14);  | 
					
						
							|  |  |  | 	POP(R13);  | 
					
						
							|  |  |  | 	POP(R12); | 
					
						
							|  |  |  | 	POP(RBP); | 
					
						
							|  |  |  | 	POP(RBX);  | 
					
						
							| 
									
										
										
										
											2008-07-31 20:22:35 +00:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2008-08-09 16:56:24 +00:00
										 |  |  | void ABI_PushAllCallerSavedRegsAndAdjustStack() { | 
					
						
							|  |  |  | 	INT3(); | 
					
						
							|  |  |  | 	//not yet supported
 | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | void ABI_PopAllCallerSavedRegsAndAdjustStack() { | 
					
						
							|  |  |  | 	INT3(); | 
					
						
							|  |  |  | 	//not yet supported
 | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2008-07-31 20:22:35 +00:00
										 |  |  | #endif
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2008-08-01 08:37:19 +00:00
										 |  |  | #endif
 | 
					
						
							|  |  |  | 
 |