mirror of
				https://github.com/python/cpython.git
				synced 2025-10-31 13:41:24 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			15 lines
		
	
	
	
		
			360 B
		
	
	
	
		
			C
		
	
	
	
	
	
			
		
		
	
	
			15 lines
		
	
	
	
		
			360 B
		
	
	
	
		
			C
		
	
	
	
	
	
| #include "Python.h"
 | |
| 
 | |
| #include "pycore_ceval.h"
 | |
| #include "pycore_frame.h"
 | |
| #include "pycore_jit.h"
 | |
| 
 | |
| #include "jit.h"
 | |
| 
 | |
| _Py_CODEUNIT *
 | |
| _JIT_ENTRY(_PyInterpreterFrame *frame, _PyStackRef *stack_pointer, PyThreadState *tstate)
 | |
| {
 | |
|     // Note that this is *not* a tail call:
 | |
|     DECLARE_TARGET(_JIT_CONTINUE);
 | |
|     return _JIT_CONTINUE(frame, stack_pointer, tstate);
 | |
| }
 | 
