X-Git-Url: http://wien.tomnetworks.com/gitweb/?a=blobdiff_plain;f=alpha%2Fasmpart.c;h=8948813c03c47d96ada1cb5d072d9469d0f640fb;hb=b92f3a59cf74df132efb4a91788ee91e4c2cfa45;hp=2e79948cc11a6fdaf94d8452c8f6c3608b10a47e;hpb=b7e0fe231c0ef2f6da67a77a4ffa3bb4efc67680;p=cacao.git diff --git a/alpha/asmpart.c b/alpha/asmpart.c index 2e79948cc..8948813c0 100644 --- a/alpha/asmpart.c +++ b/alpha/asmpart.c @@ -112,7 +112,7 @@ /*************************** imported functions *******************************/ - .globl compiler_compile + .globl jit_compile .globl builtin_monitorexit .globl builtin_throw_exception .globl builtin_trace_exception @@ -305,7 +305,7 @@ noregchange: stq ra,13*8(sp) /* save return address */ ldq a0,0(v0) /* pass 'methodinfo' pointer to */ - jsr ra,compiler_compile /* compiler */ + jsr ra,jit_compile /* jit compiler */ ldgp gp,0(ra) call_pal PAL_imb /* synchronise instruction cache */ @@ -1015,6 +1015,7 @@ initialize_thread_stack: /******************* function perform_alpha_threadswitch *********************** * * * void perform_alpha_threadswitch (u1 **from, u1 **to, u1 **stackTop); * +* * * performs a threadswitch * * * *******************************************************************************/ @@ -1066,6 +1067,8 @@ perform_alpha_threadswitch: /********************* function asm_switchstackandcall ************************* * * +* void asm_switchstackandcall (void *stack, void *func); * +* * * Switches to a new stack, calls a function and switches back. * * a0 new stack pointer * * a1 function pointer *