diff options
author | Simon Hausmann <simon.hausmann@digia.com> | 2012-11-07 11:22:47 +0100 |
---|---|---|
committer | Simon Hausmann <simon.hausmann@digia.com> | 2012-11-07 11:22:47 +0100 |
commit | cfd86b747d32ac22246a1aa908eaa720c63a88c1 (patch) | |
tree | 24d68c6f61c464ecba1e05670b80390ea3b0e50c /Source/JavaScriptCore/runtime/JSGlobalData.h | |
parent | 69d7c744c9de19d152dbe2d8e46eb7dfd4511d1a (diff) | |
download | qtwebkit-cfd86b747d32ac22246a1aa908eaa720c63a88c1.tar.gz |
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.
Diffstat (limited to 'Source/JavaScriptCore/runtime/JSGlobalData.h')
-rw-r--r-- | Source/JavaScriptCore/runtime/JSGlobalData.h | 12 |
1 files changed, 12 insertions, 0 deletions
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<Structure> sharedSymbolTableStructure; Strong<Structure> structureChainStructure; Strong<Structure> sparseArrayValueMapStructure; + Strong<Structure> withScopeStructure; + Strong<Structure> unlinkedFunctionExecutableStructure; + Strong<Structure> unlinkedProgramCodeBlockStructure; + Strong<Structure> unlinkedEvalCodeBlockStructure; + Strong<Structure> 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<CodeCache> m_codeCache; TypedArrayDescriptor m_int8ArrayDescriptor; TypedArrayDescriptor m_int16ArrayDescriptor; |