From cfd86b747d32ac22246a1aa908eaa720c63a88c1 Mon Sep 17 00:00:00 2001 From: Simon Hausmann Date: Wed, 7 Nov 2012 11:22:47 +0100 Subject: Imported WebKit commit 20271caf2e2c016d5cef40184cddeefeac4f1876 (http://svn.webkit.org/repository/webkit/trunk@133733) New snapshot that contains all previous fixes as well as build fix for latest QtMultimedia API changes. --- Source/JavaScriptCore/runtime/JSGlobalData.h | 12 ++++++++++++ 1 file changed, 12 insertions(+) (limited to 'Source/JavaScriptCore/runtime/JSGlobalData.h') diff --git a/Source/JavaScriptCore/runtime/JSGlobalData.h b/Source/JavaScriptCore/runtime/JSGlobalData.h index e97c0a015..0ffaccb6a 100644 --- a/Source/JavaScriptCore/runtime/JSGlobalData.h +++ b/Source/JavaScriptCore/runtime/JSGlobalData.h @@ -63,6 +63,7 @@ struct OpaqueJSClassContextData; namespace JSC { class CodeBlock; + class CodeCache; class CommonIdentifiers; class HandleStack; class IdentifierTable; @@ -80,6 +81,10 @@ namespace JSC { #if ENABLE(REGEXP_TRACING) class RegExp; #endif + class UnlinkedCodeBlock; + class UnlinkedEvalCodeBlock; + class UnlinkedFunctionExecutable; + class UnlinkedProgramCodeBlock; struct HashTable; struct Instruction; @@ -223,6 +228,11 @@ namespace JSC { Strong sharedSymbolTableStructure; Strong structureChainStructure; Strong sparseArrayValueMapStructure; + Strong withScopeStructure; + Strong unlinkedFunctionExecutableStructure; + Strong unlinkedProgramCodeBlockStructure; + Strong unlinkedEvalCodeBlockStructure; + Strong unlinkedFunctionCodeBlockStructure; IdentifierTable* identifierTable; CommonIdentifiers* propertyNames; @@ -436,6 +446,7 @@ namespace JSC { } JSLock& apiLock() { return m_apiLock; } + CodeCache* codeCache() { return m_codeCache.get(); } private: friend class LLIntOffsetsExtractor; @@ -456,6 +467,7 @@ namespace JSC { const ClassInfo* m_initializingObjectClass; #endif bool m_inDefineOwnProperty; + OwnPtr m_codeCache; TypedArrayDescriptor m_int8ArrayDescriptor; TypedArrayDescriptor m_int16ArrayDescriptor; -- cgit v1.2.1