From: edwin Date: Wed, 15 Mar 2006 20:42:00 +0000 (+0000) Subject: * src/vm/jit/asmpart.h (asm_replacement_in): Added prototype. X-Git-Url: http://wien.tomnetworks.com/gitweb/?a=commitdiff_plain;h=68817789efe0b51cde386cb43de1cecb6034426f;p=cacao.git * src/vm/jit/asmpart.h (asm_replacement_in): Added prototype. --- diff --git a/src/vm/jit/asmpart.h b/src/vm/jit/asmpart.h index da724911a..bf858275a 100644 --- a/src/vm/jit/asmpart.h +++ b/src/vm/jit/asmpart.h @@ -30,7 +30,7 @@ Changes: Christian Thalinger Edwin Steiner - $Id: asmpart.h 4606 2006-03-15 04:43:25Z edwin $ + $Id: asmpart.h 4619 2006-03-15 20:42:00Z edwin $ */ @@ -55,6 +55,7 @@ #include "vm/resolve.h" #include "vm/vm.h" #include "vm/jit/stacktrace.h" +#include "vm/jit/replace.h" /* some macros ****************************************************************/ @@ -151,8 +152,9 @@ void asm_handle_nat_exception(void); /* wrapper for code patching functions */ void asm_wrapper_patcher(void); -/* function for on-stack replacement */ +/* functions for on-stack replacement */ void asm_replacement_out(void); +void asm_replacement_in(executionstate *es); void *asm_switchstackandcall(void *stack, void *func, void **stacktopsave, void * p);