Ignore:
Timestamp:
Sep 30, 2013, 12:51:43 PM (12 years ago)
Author:
[email protected]
Message:

Win64 compile fix after r1256490.
https://bugs.webkit.org/show_bug.cgi?id=122117

Patch by Alex Christensen <[email protected]> on 2013-09-30
Reviewed by Michael Saboff.

  • jit/JITStubsMSVC64.asm:

Implemented getHostCallReturnValue for Windows x86_64 processors.

File:
1 edited

Legend:

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

    r154362 r156671  
    2626EXTERN cti_vm_throw : near
    2727EXTERN cti_vm_handle_exception : near
     28EXTERN getHostCallReturnValueWithExecState : near
     29
    2830PUBLIC ctiTrampoline
    2931PUBLIC ctiVMThrowTrampoline
    3032PUBLIC ctiOpThrowNotCaught
     33PUBLIC getHostCallReturnValue
    3134
    3235_TEXT   SEGMENT
     
    9396ctiOpThrowNotCaught ENDP
    9497
     98getHostCallReturnValue PROC
     99    sub r13, 40
     100    mov r13, rdi
     101    jmp getHostCallReturnValueWithExecState
     102getHostCallReturnValue ENDP
     103
    95104_TEXT   ENDS
    96105
Note: See TracChangeset for help on using the changeset viewer.