Notes
L’accès à cette page nécessite une autorisation. Vous pouvez essayer de vous connecter ou de modifier des répertoires.
L’accès à cette page nécessite une autorisation. Vous pouvez essayer de modifier des répertoires.
The method OutputCurrentState will print the current state of the target to the debugger's output stream.
The current execution status of the target is returned by GetExecutionStatus. If the target is suspended, the method SetExecutionStatus can be used to resume execution in one of the execution modes.
The method GetReturnOffset returns the address of the instruction that will execute when the current function returns.
GetNearInstruction returns the location of an instruction relative to a given address.
A call stack contains the data for the function calls that are made by a thread. The data for each function call is called a stack frame and includes the return address, parameters passed to the function, and the function's local variables. Chaque fois qu’un appel de fonction est effectué, une nouvelle trame de pile est envoyée en haut de la pile. Lorsque cette fonction est retournée, le cadre de pile est retiré de la pile. Chaque thread a sa propre pile d’appels, qui représente les appels effectués dans ce thread.
Note Not all of the data for a function call can be stored in the stack frame. Les paramètres et les variables locales, parfois, peuvent être stockés dans des registres.
To retrieve the call stack or stack trace, use the methods GetStackTrace and GetContextStackTrace. The stack trace can be printed using OutputStackTrace and OutputContextStackTrace.