]>
Commit | Line | Data |
---|---|---|
ba379fdc | 1 | /* |
93a37866 | 2 | * Copyright (C) 2008, 2013 Apple Inc. All rights reserved. |
14957cd0 | 3 | * Copyright (C) Research In Motion Limited 2010. All rights reserved. |
ba379fdc A |
4 | * |
5 | * Redistribution and use in source and binary forms, with or without | |
6 | * modification, are permitted provided that the following conditions | |
7 | * are met: | |
8 | * | |
9 | * 1. Redistributions of source code must retain the above copyright | |
10 | * notice, this list of conditions and the following disclaimer. | |
11 | * 2. Redistributions in binary form must reproduce the above copyright | |
12 | * notice, this list of conditions and the following disclaimer in the | |
13 | * documentation and/or other materials provided with the distribution. | |
81345200 | 14 | * 3. Neither the name of Apple Inc. ("Apple") nor the names of |
ba379fdc A |
15 | * its contributors may be used to endorse or promote products derived |
16 | * from this software without specific prior written permission. | |
17 | * | |
18 | * THIS SOFTWARE IS PROVIDED BY APPLE AND ITS CONTRIBUTORS "AS IS" AND ANY | |
19 | * EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED | |
20 | * WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE | |
21 | * DISCLAIMED. IN NO EVENT SHALL APPLE OR ITS CONTRIBUTORS BE LIABLE FOR ANY | |
22 | * DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES | |
23 | * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; | |
24 | * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND | |
25 | * ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT | |
26 | * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF | |
27 | * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. | |
28 | */ | |
29 | ||
30 | #ifndef JITStubs_h | |
31 | #define JITStubs_h | |
32 | ||
81345200 | 33 | #include "JSCJSValue.h" |
ba379fdc | 34 | |
ba379fdc A |
35 | namespace JSC { |
36 | ||
6fe7ccc8 A |
37 | #if ENABLE(JIT) |
38 | ||
81345200 A |
39 | #if OS(WINDOWS) |
40 | struct ProtoCallFrame; | |
93a37866 | 41 | class VM; |
93a37866 | 42 | |
81345200 | 43 | extern "C" { |
ed1e77d3 A |
44 | EncodedJSValue vmEntryToJavaScript(void*, VM*, ProtoCallFrame*); |
45 | EncodedJSValue vmEntryToNative(void*, VM*, ProtoCallFrame*); | |
93a37866 | 46 | } |
6fe7ccc8 | 47 | #endif |
ba379fdc | 48 | |
ed1e77d3 | 49 | #if ENABLE(MASM_PROBE) |
81345200 | 50 | extern "C" void ctiMasmProbeTrampoline(); |
6fe7ccc8 | 51 | #endif |
93a37866 | 52 | |
81345200 | 53 | #endif // ENABLE(JIT) |
ba379fdc | 54 | |
6fe7ccc8 A |
55 | } // namespace JSC |
56 | ||
ba379fdc | 57 | #endif // JITStubs_h |