Ignore:
Timestamp:
Aug 20, 2013, 3:03:39 PM (12 years ago)
Author:
[email protected]
Message:

Compile fix for Win64 after r154156.

Rubber stamped by Oliver Hunt.

  • jit/JITStubsMSVC64.asm:

Renamed ctiVMThrowTrampolineSlowpath to ctiVMHandleException and
cti_vm_throw_slowpath to cti_vm_handle_exception.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/Source/JavaScriptCore/jit/JITStubsMSVC64.asm

    r154075 r154362  
    2525
    2626EXTERN cti_vm_throw : near
    27 EXTERN cti_vm_throw_slowpath : near
     27EXTERN cti_vm_handle_exception : near
    2828PUBLIC ctiTrampoline
    2929PUBLIC ctiVMThrowTrampoline
     
    7070ctiVMThrowTrampoline ENDP
    7171
    72 ctiVMThrowTrampolineSlowpath PROC
     72ctiVMHandleException PROC
    7373        sub rsp, 16
    7474    mov rcx, rsp
    7575        mov rdx, r13
    76         call cti_vm_throw_slowpath
    77     ; When cti_vm_throw_slowpath returns, rax points to the memory we allocated on stack
     76        call cti_vm_handle_exception
     77    ; When cti_vm_handle_exception returns, rax points to the memory we allocated on stack
    7878        ; It contains the callFrame and handler address
    7979        pop rax         ; callFrame
    8080        pop rdx         ; handler
    8181    jmp rdx
    82 ctiVMThrowTrampolineSlowpath ENDP
     82ctiVMHandleException ENDP
    8383 
    8484ctiOpThrowNotCaught PROC
Note: See TracChangeset for help on using the changeset viewer.