mirror of
				https://github.com/python/cpython.git
				synced 2025-10-31 13:41:24 +00:00 
			
		
		
		
	gh-117139: Convert the evaluation stack to stack refs (#118450)
This PR sets up tagged pointers for CPython. The general idea is to create a separate struct _PyStackRef for everything on the evaluation stack to store the bits. This forces the C compiler to warn us if we try to cast things or pull things out of the struct directly. Only for free threading: We tag the low bit if something is deferred - that means we skip incref and decref operations on it. This behavior may change in the future if Mark's plans to defer all objects in the interpreter loop pans out. This implies a strict stack reference discipline is required. ALL incref and decref operations on stackrefs must use the stackref variants. It is unsafe to untag something then do normal incref/decref ops on it. The new incref and decref variants are called dup and close. They mimic a "handle" API operating on these stackrefs. Please read Include/internal/pycore_stackref.h for more information! --------- Co-authored-by: Mark Shannon <9448417+markshannon@users.noreply.github.com>
This commit is contained in:
		
							parent
							
								
									d611c4c8e9
								
							
						
					
					
						commit
						22b0de2755
					
				
					 35 changed files with 5228 additions and 3758 deletions
				
			
		|  | @ -196,7 +196,7 @@ _Py_SetTier2Optimizer(_PyOptimizerObject *optimizer) | |||
| int | ||||
| _PyOptimizer_Optimize( | ||||
|     _PyInterpreterFrame *frame, _Py_CODEUNIT *start, | ||||
|     PyObject **stack_pointer, _PyExecutorObject **executor_ptr) | ||||
|     _PyStackRef *stack_pointer, _PyExecutorObject **executor_ptr) | ||||
| { | ||||
|     PyCodeObject *code = _PyFrame_GetCode(frame); | ||||
|     assert(PyCode_Check(code)); | ||||
|  | @ -1393,7 +1393,7 @@ counter_optimize( | |||
|     _Py_CODEUNIT *target = instr + 1 + _PyOpcode_Caches[JUMP_BACKWARD] - oparg; | ||||
|     _PyUOpInstruction buffer[4] = { | ||||
|         { .opcode = _START_EXECUTOR, .jump_target = 3, .format=UOP_FORMAT_JUMP }, | ||||
|         { .opcode = _LOAD_CONST_INLINE_BORROW, .operand = (uintptr_t)self }, | ||||
|         { .opcode = _LOAD_CONST_INLINE, .operand = (uintptr_t)self }, | ||||
|         { .opcode = _INTERNAL_INCREMENT_OPT_COUNTER }, | ||||
|         { .opcode = _EXIT_TRACE, .target = (uint32_t)(target - _PyCode_CODE(code)), .format=UOP_FORMAT_TARGET } | ||||
|     }; | ||||
|  |  | |||
		Loading…
	
	Add table
		Add a link
		
	
		Reference in a new issue
	
	 Ken Jin
						Ken Jin