diff options
author | Lorry Tar Creator <lorry-tar-importer@lorry> | 2017-06-27 06:07:23 +0000 |
---|---|---|
committer | Lorry Tar Creator <lorry-tar-importer@lorry> | 2017-06-27 06:07:23 +0000 |
commit | 1bf1084f2b10c3b47fd1a588d85d21ed0eb41d0c (patch) | |
tree | 46dcd36c86e7fbc6e5df36deb463b33e9967a6f7 /Source/JavaScriptCore/llint/LLIntCLoop.h | |
parent | 32761a6cee1d0dee366b885b7b9c777e67885688 (diff) | |
download | WebKitGtk-tarball-master.tar.gz |
webkitgtk-2.16.5HEADwebkitgtk-2.16.5master
Diffstat (limited to 'Source/JavaScriptCore/llint/LLIntCLoop.h')
-rw-r--r-- | Source/JavaScriptCore/llint/LLIntCLoop.h | 14 |
1 files changed, 5 insertions, 9 deletions
diff --git a/Source/JavaScriptCore/llint/LLIntCLoop.h b/Source/JavaScriptCore/llint/LLIntCLoop.h index 8759571f3..886fe1a1b 100644 --- a/Source/JavaScriptCore/llint/LLIntCLoop.h +++ b/Source/JavaScriptCore/llint/LLIntCLoop.h @@ -23,30 +23,26 @@ * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. */ -#ifndef LLIntCLoop_h -#define LLIntCLoop_h +#pragma once -#if ENABLE(LLINT_C_LOOP) +#if !ENABLE(JIT) #include "CallFrame.h" #include "JSCJSValue.h" #include "Opcode.h" +#include "ProtoCallFrame.h" namespace JSC { namespace LLInt { -const OpcodeID llint_unused = llint_end; - class CLoop { public: static void initialize(); - static JSValue execute(CallFrame*, Opcode entryOpcode, bool isInitializationPass = false); + static JSValue execute(OpcodeID entryOpcodeID, void* executableAddress, VM*, ProtoCallFrame*, bool isInitializationPass = false); }; } } // namespace JSC::LLInt using JSC::LLInt::CLoop; -#endif // ENABLE(LLINT_C_LOOP) - -#endif // LLIntCLoop_h +#endif // !ENABLE(JIT) |