16 lines
		
	
	
		
			423 B
		
	
	
	
		
			C++
		
	
	
			
		
		
	
	
			16 lines
		
	
	
		
			423 B
		
	
	
	
		
			C++
		
	
	
| #include "atomic-cl-64.hpp"
 | |
| 
 | |
| namespace factor {
 | |
| 
 | |
| #define ESP Rsp
 | |
| #define EIP Rip
 | |
| 
 | |
| #define MXCSR(ctx) (ctx)->MxCsr
 | |
| 
 | |
| /* Must match the leaf-stack-frame-size, signal-handler-stack-frame-size,
 | |
| and stack-frame-size constants in basis/bootstap/assembler/x86.64.windows.factor */
 | |
| static const unsigned LEAF_FRAME_SIZE = 16;
 | |
| static const unsigned SIGNAL_HANDLER_STACK_FRAME_SIZE = 192;
 | |
| static const unsigned JIT_FRAME_SIZE = 64;
 | |
| }
 |