source: webkit/trunk/JavaScriptCore/JavaScriptCore.exp@ 59941

Last change on this file since 59941 was 59941, checked in by [email protected], 15 years ago

2010-05-21 Oliver Hunt <[email protected]>

Reviewed by Geoffrey Garen.

All callable objects should have a global object reference
https://bugs.webkit.org/show_bug.cgi?id=39495

All objects that may ever return a value other CallTypeNone
or ConstructTypeNone now get a global object in their constructor
and store that in their first anonymous slot. We add a new type
JSObjectWithGlobalObject to allow us to share this logic as much
as possible, however some objects have specific inheritance
requirements so we can't just use it universally.

To enforce this requirement JSValue::getCallData and getConstructData
make use of a new "isValidCallee" function to assert that any object
that returns a value other than CallType/ConstructTypeNone has a
global object in anonymous slot 0.

In order to ensure that static function slots are converted into
function objects with the correct global object, all prototype objects
and other classes with static function slots also gain a global object
reference. Happily this fixes the long standing issue where host
function objects get a prototype from the lexical global object of the
first function that calls them, instead of the global object that they
are defined on.

  • API/JSCallbackConstructor.cpp: (JSC::JSCallbackConstructor::JSCallbackConstructor):
  • API/JSCallbackConstructor.h:
  • API/JSCallbackFunction.cpp: (JSC::JSCallbackFunction::JSCallbackFunction):
  • API/JSCallbackFunction.h:
  • API/JSCallbackObject.cpp: (JSC::):
  • API/JSCallbackObject.h:
  • API/JSCallbackObjectFunctions.h: (JSC::::JSCallbackObject): (JSC::::staticFunctionGetter):
  • API/JSClassRef.cpp: (OpaqueJSClass::prototype):
  • API/JSContextRef.cpp:
  • API/JSObjectRef.cpp: (JSObjectMake): (JSObjectMakeFunctionWithCallback): (JSObjectMakeConstructor): (JSObjectGetPrivate): (JSObjectSetPrivate): (JSObjectGetPrivateProperty): (JSObjectSetPrivateProperty): (JSObjectDeletePrivateProperty):
  • API/JSValueRef.cpp: (JSValueIsObjectOfClass):
  • API/JSWeakObjectMapRefPrivate.cpp:
  • CMakeLists.txt:
  • GNUmakefile.am:
  • JavaScriptCore.exp:
  • JavaScriptCore.gypi:
  • JavaScriptCore.vcproj/JavaScriptCore/JavaScriptCore.vcproj:
  • JavaScriptCore.xcodeproj/project.pbxproj:
  • interpreter/Interpreter.cpp: (JSC::Interpreter::privateExecute):
  • jit/JITStubs.cpp: (JSC::DEFINE_STUB_FUNCTION):
  • jsc.cpp: (GlobalObject::GlobalObject):
  • runtime/ArrayConstructor.cpp: (JSC::ArrayConstructor::ArrayConstructor):
  • runtime/ArrayConstructor.h:
  • runtime/ArrayPrototype.cpp: (JSC::ArrayPrototype::ArrayPrototype):
  • runtime/ArrayPrototype.h: (JSC::ArrayPrototype::createStructure):
  • runtime/BooleanConstructor.cpp: (JSC::BooleanConstructor::BooleanConstructor):
  • runtime/BooleanConstructor.h:
  • runtime/BooleanPrototype.cpp: (JSC::BooleanPrototype::BooleanPrototype):
  • runtime/BooleanPrototype.h:
  • runtime/DateConstructor.cpp: (JSC::DateConstructor::DateConstructor):
  • runtime/DateConstructor.h:
  • runtime/DatePrototype.cpp: (JSC::DatePrototype::DatePrototype):
  • runtime/DatePrototype.h:
  • runtime/ErrorConstructor.cpp: (JSC::ErrorConstructor::ErrorConstructor):
  • runtime/ErrorConstructor.h:
  • runtime/ErrorPrototype.cpp: (JSC::ErrorPrototype::ErrorPrototype):
  • runtime/ErrorPrototype.h:
  • runtime/FunctionConstructor.cpp: (JSC::FunctionConstructor::FunctionConstructor):
  • runtime/FunctionConstructor.h:
  • runtime/FunctionPrototype.cpp: (JSC::FunctionPrototype::FunctionPrototype): (JSC::FunctionPrototype::addFunctionProperties):
  • runtime/FunctionPrototype.h:
  • runtime/GlobalEvalFunction.cpp: (JSC::GlobalEvalFunction::GlobalEvalFunction):
  • runtime/GlobalEvalFunction.h:
  • runtime/InternalFunction.cpp: (JSC::InternalFunction::InternalFunction):
  • runtime/InternalFunction.h:
  • runtime/JSCell.h: (JSC::JSValue::getCallData): (JSC::JSValue::getConstructData):
  • runtime/JSFunction.cpp: (JSC::JSFunction::JSFunction):
  • runtime/JSFunction.h:
  • runtime/JSGlobalObject.cpp: (JSC::JSGlobalObject::reset):
  • runtime/JSGlobalObject.h: (JSC::JSGlobalObject::JSGlobalObject):
  • runtime/JSONObject.cpp: (JSC::JSONObject::JSONObject):
  • runtime/JSONObject.h:
  • runtime/JSObject.h:
  • runtime/JSObjectWithGlobalObject.cpp: Added. (JSC::JSObjectWithGlobalObject::JSObjectWithGlobalObject):
  • runtime/JSObjectWithGlobalObject.h: Added. (JSC::JSObjectWithGlobalObject::createStructure): (JSC::JSObjectWithGlobalObject::JSObjectWithGlobalObject):
  • runtime/JSValue.cpp: (JSC::JSValue::isValidCallee):
  • runtime/JSValue.h:
  • runtime/Lookup.cpp: (JSC::setUpStaticFunctionSlot):
  • runtime/MathObject.cpp: (JSC::MathObject::MathObject):
  • runtime/MathObject.h:
  • runtime/NativeErrorConstructor.cpp: (JSC::NativeErrorConstructor::NativeErrorConstructor):
  • runtime/NativeErrorConstructor.h:
  • runtime/NativeErrorPrototype.cpp: (JSC::NativeErrorPrototype::NativeErrorPrototype):
  • runtime/NativeErrorPrototype.h:
  • runtime/NumberConstructor.cpp: (JSC::NumberConstructor::NumberConstructor):
  • runtime/NumberConstructor.h:
  • runtime/NumberPrototype.cpp: (JSC::NumberPrototype::NumberPrototype):
  • runtime/NumberPrototype.h:
  • runtime/ObjectConstructor.cpp: (JSC::ObjectConstructor::ObjectConstructor):
  • runtime/ObjectConstructor.h:
  • runtime/ObjectPrototype.cpp: (JSC::ObjectPrototype::ObjectPrototype):
  • runtime/ObjectPrototype.h:
  • runtime/PrototypeFunction.cpp: (JSC::PrototypeFunction::PrototypeFunction):
  • runtime/PrototypeFunction.h:
  • runtime/RegExpConstructor.cpp: (JSC::RegExpConstructor::RegExpConstructor): (JSC::constructRegExp):
  • runtime/RegExpConstructor.h:
  • runtime/RegExpObject.cpp: (JSC::RegExpObject::RegExpObject):
  • runtime/RegExpObject.h:
  • runtime/RegExpPrototype.cpp: (JSC::RegExpPrototype::RegExpPrototype):
  • runtime/RegExpPrototype.h:
  • runtime/StringConstructor.cpp: (JSC::StringConstructor::StringConstructor):
  • runtime/StringConstructor.h:
  • runtime/StringPrototype.cpp: (JSC::StringPrototype::StringPrototype):
  • runtime/StringPrototype.h:

2010-05-21 Oliver Hunt <[email protected]>

Reviewed by Geoffrey Garen.

All callable objects should have a global object reference
https://bugs.webkit.org/show_bug.cgi?id=39495

Update expected results as we now give all function objects
get their prototypes from the correct global object.

  • fast/dom/prototype-inheritance-expected.txt:

2010-05-21 Oliver Hunt <[email protected]>

Reviewed by Geoffrey Garen.

All callable objects should have a global object reference
https://bugs.webkit.org/show_bug.cgi?id=39495

Update the bindings generator to give prototype objects a
global object. Update all the manually written JSObject
subclasses to pass a global object.

  • ForwardingHeaders/runtime/JSObjectWithGlobalObject.h: Added.
  • WebCore.PluginHostProcess.exp:
  • bindings/js/JSDOMBinding.cpp: (WebCore::objectToStringFunctionGetter):
  • bindings/js/JSDOMWindowCustom.cpp: (WebCore::nonCachingStaticFunctionGetter):
  • bindings/js/JSDOMWindowShell.cpp: (WebCore::JSDOMWindowShell::setWindow):
  • bindings/js/JSHistoryCustom.cpp: (WebCore::nonCachingStaticBackFunctionGetter): (WebCore::nonCachingStaticForwardFunctionGetter): (WebCore::nonCachingStaticGoFunctionGetter):
  • bindings/js/JSLocationCustom.cpp: (WebCore::nonCachingStaticReplaceFunctionGetter): (WebCore::nonCachingStaticReloadFunctionGetter): (WebCore::nonCachingStaticAssignFunctionGetter):
  • bindings/js/WorkerScriptController.cpp: (WebCore::WorkerScriptController::initScript):
  • bindings/scripts/CodeGeneratorJS.pm:
  • bridge/c/CRuntimeObject.cpp: (JSC::Bindings::CRuntimeObject::CRuntimeObject):
  • bridge/c/CRuntimeObject.h:
  • bridge/c/c_instance.cpp: (JSC::Bindings::CInstance::newRuntimeObject): (JSC::Bindings::CRuntimeMethod::CRuntimeMethod): (JSC::Bindings::CInstance::getMethod):
  • bridge/jni/jsc/JavaInstanceJSC.cpp: (JavaInstance::newRuntimeObject): (JavaRuntimeMethod::JavaRuntimeMethod): (JavaInstance::getMethod):
  • bridge/jni/jsc/JavaRuntimeObject.cpp: (JSC::Bindings::JavaRuntimeObject::JavaRuntimeObject):
  • bridge/jni/jsc/JavaRuntimeObject.h:
  • bridge/jsc/BridgeJSC.cpp: (JSC::Bindings::Instance::newRuntimeObject):
  • bridge/objc/ObjCRuntimeObject.h:
  • bridge/objc/ObjCRuntimeObject.mm: (JSC::Bindings::ObjCRuntimeObject::ObjCRuntimeObject):
  • bridge/objc/objc_class.mm: (JSC::Bindings::ObjcClass::fallbackObject):
  • bridge/objc/objc_instance.mm: (ObjcInstance::newRuntimeObject): (ObjCRuntimeMethod::ObjCRuntimeMethod): (ObjcInstance::getMethod):
  • bridge/objc/objc_runtime.h:
  • bridge/objc/objc_runtime.mm: (JSC::Bindings::ObjcFallbackObjectImp::ObjcFallbackObjectImp):
  • bridge/runtime_method.cpp: (JSC::RuntimeMethod::RuntimeMethod):
  • bridge/runtime_method.h:
  • bridge/runtime_object.cpp: (JSC::Bindings::RuntimeObject::RuntimeObject):
  • bridge/runtime_object.h:

2010-05-21 Oliver Hunt <[email protected]>

Reviewed by Geoffrey Garen.

All callable objects should have a global object reference
https://bugs.webkit.org/show_bug.cgi?id=39495

Update the plugin proxy to handle the need for global object.

  • Plugins/Hosted/ProxyInstance.mm: (WebKit::ProxyInstance::newRuntimeObject): (WebKit::ProxyRuntimeMethod::ProxyRuntimeMethod): (WebKit::ProxyInstance::getMethod):
  • Plugins/Hosted/ProxyRuntimeObject.h:
  • Plugins/Hosted/ProxyRuntimeObject.mm: (WebKit::ProxyRuntimeObject::ProxyRuntimeObject):
  • Property svn:eol-style set to native
File size: 22.5 KB
Line 
1__ZN7WebCore10StringImpl6createEPKcj
2__ZN7WebCore12AtomicString11addSlowCaseEPNS_10StringImplE
3_JSCheckScriptSyntax
4_JSClassCreate
5_JSClassRelease
6_JSClassRetain
7_JSContextGetGlobalContext
8_JSContextGetGlobalObject
9_JSContextGetGroup
10_JSContextGroupCreate
11_JSContextGroupRelease
12_JSContextGroupRetain
13_JSEndProfiling
14_JSEvaluateScript
15_JSGarbageCollect
16_JSGlobalContextCreate
17_JSGlobalContextCreateInGroup
18_JSGlobalContextRelease
19_JSGlobalContextRetain
20_JSObjectCallAsConstructor
21_JSObjectCallAsFunction
22_JSObjectCopyPropertyNames
23_JSObjectDeletePrivateProperty
24_JSObjectDeleteProperty
25_JSObjectGetPrivate
26_JSObjectGetPrivateProperty
27_JSObjectGetProperty
28_JSObjectGetPropertyAtIndex
29_JSObjectGetPrototype
30_JSObjectHasProperty
31_JSObjectIsConstructor
32_JSObjectIsFunction
33_JSObjectMake
34_JSObjectMakeArray
35_JSObjectMakeConstructor
36_JSObjectMakeDate
37_JSObjectMakeError
38_JSObjectMakeFunction
39_JSObjectMakeFunctionWithCallback
40_JSObjectMakeRegExp
41_JSObjectSetPrivate
42_JSObjectSetPrivateProperty
43_JSObjectSetProperty
44_JSObjectSetPropertyAtIndex
45_JSObjectSetPrototype
46_JSPropertyNameAccumulatorAddName
47_JSPropertyNameArrayGetCount
48_JSPropertyNameArrayGetNameAtIndex
49_JSPropertyNameArrayRelease
50_JSPropertyNameArrayRetain
51_JSReportExtraMemoryCost
52_JSStartProfiling
53_JSStringCopyCFString
54_JSStringCreateWithCFString
55_JSStringCreateWithCharacters
56_JSStringCreateWithUTF8CString
57_JSStringGetCharactersPtr
58_JSStringGetLength
59_JSStringGetMaximumUTF8CStringSize
60_JSStringGetUTF8CString
61_JSStringIsEqual
62_JSStringIsEqualToUTF8CString
63_JSStringRelease
64_JSStringRetain
65_JSValueCreateJSONString
66_JSValueGetType
67_JSValueIsBoolean
68_JSValueIsEqual
69_JSValueIsInstanceOfConstructor
70_JSValueIsNull
71_JSValueIsNumber
72_JSValueIsObject
73_JSValueIsObjectOfClass
74_JSValueIsStrictEqual
75_JSValueIsString
76_JSValueIsUndefined
77_JSValueMakeBoolean
78_JSValueMakeFromJSONString
79_JSValueMakeNull
80_JSValueMakeNumber
81_JSValueMakeString
82_JSValueMakeUndefined
83_JSValueProtect
84_JSValueToBoolean
85_JSValueToNumber
86_JSValueToObject
87_JSValueToStringCopy
88_JSValueUnprotect
89_JSWeakObjectMapClear
90_JSWeakObjectMapCreate
91_JSWeakObjectMapGet
92_JSWeakObjectMapSet
93_WTFLog
94_WTFLogVerbose
95_WTFReportArgumentAssertionFailure
96_WTFReportAssertionFailure
97_WTFReportAssertionFailureWithMessage
98_WTFReportError
99_WTFReportFatalError
100__Z12jsRegExpFreeP8JSRegExp
101__Z15jsRegExpCompilePKti24JSRegExpIgnoreCaseOption23JSRegExpMultilineOptionPjPPKc
102__Z15jsRegExpExecutePK8JSRegExpPKtiiPii
103__ZN14OpaqueJSString6createERKN3JSC7UStringE
104__ZN3JSC10JSFunctionC1EPNS_9ExecStateEPNS_14JSGlobalObjectEN3WTF17NonNullPassRefPtrINS_9StructureEEEiRKNS_10IdentifierEPFNS_7JSValueES2_PNS_8JSObjectESC_RKNS_7ArgListEE
105__ZN3JSC10Identifier11addSlowCaseEPNS_12JSGlobalDataEPN7WebCore10StringImplE
106__ZN3JSC10Identifier11addSlowCaseEPNS_9ExecStateEPN7WebCore10StringImplE
107__ZN3JSC10Identifier27checkCurrentIdentifierTableEPNS_12JSGlobalDataE
108__ZN3JSC10Identifier27checkCurrentIdentifierTableEPNS_9ExecStateE
109__ZN3JSC10Identifier3addEPNS_9ExecStateEPKc
110__ZN3JSC10Identifier4fromEPNS_9ExecStateEi
111__ZN3JSC10Identifier4fromEPNS_9ExecStateEj
112__ZN3JSC10Identifier5equalEPKN7WebCore10StringImplEPKc
113__ZN3JSC10JSFunction4infoE
114__ZN3JSC10JSFunction4nameEPNS_9ExecStateE
115__ZN3JSC10throwErrorEPNS_9ExecStateENS_9ErrorTypeE
116__ZN3JSC10throwErrorEPNS_9ExecStateENS_9ErrorTypeEPKc
117__ZN3JSC10throwErrorEPNS_9ExecStateENS_9ErrorTypeERKNS_7UStringE
118__ZN3JSC11JSByteArray15createStructureENS_7JSValueE
119__ZN3JSC11JSByteArrayC1EPNS_9ExecStateEN3WTF17NonNullPassRefPtrINS_9StructureEEEPNS3_9ByteArrayEPKNS_9ClassInfoE
120__ZN3JSC11ParserArena5resetEv
121__ZN3JSC11checkSyntaxEPNS_9ExecStateERKNS_10SourceCodeE
122__ZN3JSC12DateInstance4infoE
123__ZN3JSC12DateInstanceC1EPNS_9ExecStateEN3WTF17NonNullPassRefPtrINS_9StructureEEEd
124__ZN3JSC12DateInstanceC1EPNS_9ExecStateEd
125__ZN3JSC12JSGlobalData10ClientDataD2Ev
126__ZN3JSC12JSGlobalData11jsArrayVPtrE
127__ZN3JSC12JSGlobalData12createLeakedENS_15ThreadStackTypeE
128__ZN3JSC12JSGlobalData12jsStringVPtrE
129__ZN3JSC12JSGlobalData12stopSamplingEv
130__ZN3JSC12JSGlobalData13startSamplingEv
131__ZN3JSC12JSGlobalData14dumpSampleDataEPNS_9ExecStateE
132__ZN3JSC12JSGlobalData14resetDateCacheEv
133__ZN3JSC12JSGlobalData14sharedInstanceEv
134__ZN3JSC12JSGlobalData6createENS_15ThreadStackTypeE
135__ZN3JSC12JSGlobalDataD1Ev
136__ZN3JSC12SamplingTool5setupEv
137__ZN3JSC12SmallStrings17createEmptyStringEPNS_12JSGlobalDataE
138__ZN3JSC12SmallStrings27createSingleCharacterStringEPNS_12JSGlobalDataEh
139__ZN3JSC12StringObject14deletePropertyEPNS_9ExecStateERKNS_10IdentifierE
140__ZN3JSC12StringObject18getOwnPropertySlotEPNS_9ExecStateERKNS_10IdentifierERNS_12PropertySlotE
141__ZN3JSC12StringObject18getOwnPropertySlotEPNS_9ExecStateEjRNS_12PropertySlotE
142__ZN3JSC12StringObject19getOwnPropertyNamesEPNS_9ExecStateERNS_17PropertyNameArrayENS_15EnumerationModeE
143__ZN3JSC12StringObject24getOwnPropertyDescriptorEPNS_9ExecStateERKNS_10IdentifierERNS_18PropertyDescriptorE
144__ZN3JSC12StringObject3putEPNS_9ExecStateERKNS_10IdentifierENS_7JSValueERNS_15PutPropertySlotE
145__ZN3JSC12StringObject4infoE
146__ZN3JSC12StringObjectC2EPNS_9ExecStateEN3WTF17NonNullPassRefPtrINS_9StructureEEERKNS_7UStringE
147__ZN3JSC12jsNumberCellEPNS_9ExecStateEd
148__ZN3JSC12nonInlineNaNEv
149__ZN3JSC13SamplingFlags4stopEv
150__ZN3JSC13SamplingFlags5startEv
151__ZN3JSC13SamplingFlags7s_flagsE
152__ZN3JSC13StatementNode6setLocEii
153__ZN3JSC14JSGlobalObject10globalExecEv
154__ZN3JSC14JSGlobalObject12defineGetterEPNS_9ExecStateERKNS_10IdentifierEPNS_8JSObjectEj
155__ZN3JSC14JSGlobalObject12defineSetterEPNS_9ExecStateERKNS_10IdentifierEPNS_8JSObjectEj
156__ZN3JSC14JSGlobalObject12markChildrenERNS_9MarkStackE
157__ZN3JSC14JSGlobalObject17putWithAttributesEPNS_9ExecStateERKNS_10IdentifierENS_7JSValueEj
158__ZN3JSC14JSGlobalObject25destroyJSGlobalObjectDataEPv
159__ZN3JSC14JSGlobalObject3putEPNS_9ExecStateERKNS_10IdentifierENS_7JSValueERNS_15PutPropertySlotE
160__ZN3JSC14JSGlobalObject4initEPNS_8JSObjectE
161__ZN3JSC14JSGlobalObjectD2Ev
162__ZN3JSC14JSGlobalObjectnwEmPNS_12JSGlobalDataE
163__ZN3JSC14SamplingThread4stopEv
164__ZN3JSC14SamplingThread5startEj
165__ZN3JSC14TimeoutChecker10didTimeOutEPNS_9ExecStateE
166__ZN3JSC14TimeoutChecker5resetEv
167__ZN3JSC15JSWrapperObject12markChildrenERNS_9MarkStackE
168__ZN3JSC15createTypeErrorEPNS_9ExecStateEPKc
169__ZN3JSC15toInt32SlowCaseEdRb
170__ZN3JSC16InternalFunction4infoE
171__ZN3JSC16InternalFunction4nameEPNS_9ExecStateE
172__ZN3JSC16InternalFunctionC2EPNS_12JSGlobalDataEPNS_14JSGlobalObjectEN3WTF17NonNullPassRefPtrINS_9StructureEEERKNS_10IdentifierE
173__ZN3JSC16JSVariableObject14deletePropertyEPNS_9ExecStateERKNS_10IdentifierE
174__ZN3JSC16JSVariableObject14symbolTableGetERKNS_10IdentifierERNS_18PropertyDescriptorE
175__ZN3JSC16JSVariableObject19getOwnPropertyNamesEPNS_9ExecStateERNS_17PropertyNameArrayENS_15EnumerationModeE
176__ZN3JSC16toUInt32SlowCaseEdRb
177__ZN3JSC17BytecodeGenerator21setDumpsGeneratedCodeEb
178__ZN3JSC17PropertyNameArray3addEPN7WebCore10StringImplE
179__ZN3JSC17PrototypeFunctionC1EPNS_9ExecStateEPNS_14JSGlobalObjectEN3WTF17NonNullPassRefPtrINS_9StructureEEEiRKNS_10IdentifierEPFNS_7JSValueES2_PNS_8JSObjectESC_RKNS_7ArgListEE
180__ZN3JSC17constructFunctionEPNS_9ExecStateERKNS_7ArgListERKNS_10IdentifierERKNS_7UStringEi
181__ZN3JSC18DebuggerActivationC1EPNS_8JSObjectE
182__ZN3JSC18PropertyDescriptor11setWritableEb
183__ZN3JSC18PropertyDescriptor12setUndefinedEv
184__ZN3JSC18PropertyDescriptor13setDescriptorENS_7JSValueEj
185__ZN3JSC18PropertyDescriptor13setEnumerableEb
186__ZN3JSC18PropertyDescriptor15setConfigurableEb
187__ZN3JSC18PropertyDescriptor17defaultAttributesE
188__ZN3JSC18PropertyDescriptor21setAccessorDescriptorENS_7JSValueES1_j
189__ZN3JSC18PropertyDescriptor9setGetterENS_7JSValueE
190__ZN3JSC18PropertyDescriptor9setSetterENS_7JSValueE
191__ZN3JSC19initializeThreadingEv
192__ZN3JSC20MarkedArgumentBuffer10slowAppendENS_7JSValueE
193__ZN3JSC23AbstractSamplingCounter4dumpEv
194__ZN3JSC23objectProtoFuncToStringEPNS_9ExecStateEPNS_8JSObjectENS_7JSValueERKNS_7ArgListE
195__ZN3JSC23setUpStaticFunctionSlotEPNS_9ExecStateEPKNS_9HashEntryEPNS_8JSObjectERKNS_10IdentifierERNS_12PropertySlotE
196__ZN3JSC24createStackOverflowErrorEPNS_9ExecStateE
197__ZN3JSC24JSObjectWithGlobalObjectC2EPNS_14JSGlobalObjectEN3WTF17NonNullPassRefPtrINS_9StructureEEE
198__ZN3JSC25evaluateInGlobalCallFrameERKNS_7UStringERNS_7JSValueEPNS_14JSGlobalObjectE
199__ZN3JSC35createInterruptedExecutionExceptionEPNS_12JSGlobalDataE
200__ZN3JSC3NaNE
201__ZN3JSC4Heap14primaryHeapEndEv
202__ZN3JSC4Heap15recordExtraCostEm
203__ZN3JSC4Heap16objectTypeCountsEv
204__ZN3JSC4Heap16primaryHeapBeginEv
205__ZN3JSC4Heap17collectAllGarbageEv
206__ZN3JSC4Heap17globalObjectCountEv
207__ZN3JSC4Heap20protectedObjectCountEv
208__ZN3JSC4Heap25protectedObjectTypeCountsEv
209__ZN3JSC4Heap26protectedGlobalObjectCountEv
210__ZN3JSC4Heap6isBusyEv
211__ZN3JSC4Heap7destroyEv
212__ZN3JSC4Heap7protectENS_7JSValueE
213__ZN3JSC4Heap8allocateEm
214__ZN3JSC4Heap9unprotectENS_7JSValueE
215__ZN3JSC4callEPNS_9ExecStateENS_7JSValueENS_8CallTypeERKNS_8CallDataES2_RKNS_7ArgListE
216__ZN3JSC6JSCell11getCallDataERNS_8CallDataE
217__ZN3JSC6JSCell11getJSNumberEv
218__ZN3JSC6JSCell14deletePropertyEPNS_9ExecStateERKNS_10IdentifierE
219__ZN3JSC6JSCell14deletePropertyEPNS_9ExecStateEj
220__ZN3JSC6JSCell16getConstructDataERNS_13ConstructDataE
221__ZN3JSC6JSCell18getOwnPropertySlotEPNS_9ExecStateERKNS_10IdentifierERNS_12PropertySlotE
222__ZN3JSC6JSCell18getOwnPropertySlotEPNS_9ExecStateEjRNS_12PropertySlotE
223__ZN3JSC6JSCell18getPrimitiveNumberEPNS_9ExecStateERdRNS_7JSValueE
224__ZN3JSC6JSCell3putEPNS_9ExecStateERKNS_10IdentifierENS_7JSValueERNS_15PutPropertySlotE
225__ZN3JSC6JSCell3putEPNS_9ExecStateEjNS_7JSValueE
226__ZN3JSC6JSCell9getObjectEv
227__ZN3JSC6JSLock12DropAllLocksC1ENS_14JSLockBehaviorE
228__ZN3JSC6JSLock12DropAllLocksC1EPNS_9ExecStateE
229__ZN3JSC6JSLock12DropAllLocksD1Ev
230__ZN3JSC6JSLock4lockENS_14JSLockBehaviorE
231__ZN3JSC6JSLock6unlockENS_14JSLockBehaviorE
232__ZN3JSC6JSLock9lockCountEv
233__ZN3JSC6JSLockC1EPNS_9ExecStateE
234__ZN3JSC6Parser5parseEPNS_12JSGlobalDataEPiPNS_7UStringE
235__ZN3JSC7JSArray12markChildrenERNS_9MarkStackE
236__ZN3JSC7JSArray15setSubclassDataEPv
237__ZN3JSC7JSArray4infoE
238__ZN3JSC7JSArray9setLengthEj
239__ZN3JSC7JSArrayC1EN3WTF17NonNullPassRefPtrINS_9StructureEEE
240__ZN3JSC7JSArrayC1EN3WTF17NonNullPassRefPtrINS_9StructureEEERKNS_7ArgListE
241__ZN3JSC7JSArrayC2EN3WTF17NonNullPassRefPtrINS_9StructureEEE
242__ZN3JSC7JSArrayD2Ev
243__ZN3JSC7JSValue13isValidCalleeEv
244__ZN3JSC7Profile10restoreAllEv
245__ZN3JSC7Profile5focusEPKNS_11ProfileNodeE
246__ZN3JSC7Profile7excludeEPKNS_11ProfileNodeE
247__ZN3JSC7Profile7forEachEMNS_11ProfileNodeEFvvE
248__ZN3JSC7UString4fromEd
249__ZN3JSC7UString4fromEi
250__ZN3JSC7UString4fromEj
251__ZN3JSC7UString4fromEl
252__ZN3JSC7UStringC1EPKc
253__ZN3JSC7UStringC1EPKtj
254__ZN3JSC8Debugger23recompileAllJSFunctionsEPNS_12JSGlobalDataE
255__ZN3JSC8Debugger6attachEPNS_14JSGlobalObjectE
256__ZN3JSC8Debugger6detachEPNS_14JSGlobalObjectE
257__ZN3JSC8DebuggerD2Ev
258__ZN3JSC8JSObject11hasInstanceEPNS_9ExecStateENS_7JSValueES3_
259__ZN3JSC8JSObject12defineGetterEPNS_9ExecStateERKNS_10IdentifierEPS0_j
260__ZN3JSC8JSObject12defineSetterEPNS_9ExecStateERKNS_10IdentifierEPS0_j
261__ZN3JSC8JSObject12lookupGetterEPNS_9ExecStateERKNS_10IdentifierE
262__ZN3JSC8JSObject12lookupSetterEPNS_9ExecStateERKNS_10IdentifierE
263__ZN3JSC8JSObject12markChildrenERNS_9MarkStackE
264__ZN3JSC8JSObject14deletePropertyEPNS_9ExecStateERKNS_10IdentifierE
265__ZN3JSC8JSObject14deletePropertyEPNS_9ExecStateEj
266__ZN3JSC8JSObject15unwrappedObjectEv
267__ZN3JSC8JSObject16getPropertyNamesEPNS_9ExecStateERNS_17PropertyNameArrayENS_15EnumerationModeE
268__ZN3JSC8JSObject17createInheritorIDEv
269__ZN3JSC8JSObject17defineOwnPropertyEPNS_9ExecStateERKNS_10IdentifierERNS_18PropertyDescriptorEb
270__ZN3JSC8JSObject17putDirectFunctionEPNS_9ExecStateEPNS_10JSFunctionEj
271__ZN3JSC8JSObject17putDirectFunctionEPNS_9ExecStateEPNS_16InternalFunctionEj
272__ZN3JSC8JSObject17putWithAttributesEPNS_9ExecStateERKNS_10IdentifierENS_7JSValueEj
273__ZN3JSC8JSObject17putWithAttributesEPNS_9ExecStateERKNS_10IdentifierENS_7JSValueEjbRNS_15PutPropertySlotE
274__ZN3JSC8JSObject17putWithAttributesEPNS_9ExecStateEjNS_7JSValueEj
275__ZN3JSC8JSObject18getOwnPropertySlotEPNS_9ExecStateEjRNS_12PropertySlotE
276__ZN3JSC8JSObject18getPrimitiveNumberEPNS_9ExecStateERdRNS_7JSValueE
277__ZN3JSC8JSObject19getOwnPropertyNamesEPNS_9ExecStateERNS_17PropertyNameArrayENS_15EnumerationModeE
278__ZN3JSC8JSObject21getPropertyDescriptorEPNS_9ExecStateERKNS_10IdentifierERNS_18PropertyDescriptorE
279__ZN3JSC8JSObject22fillGetterPropertySlotERNS_12PropertySlotEPNS_7JSValueE
280__ZN3JSC8JSObject23allocatePropertyStorageEmm
281__ZN3JSC8JSObject24getOwnPropertyDescriptorEPNS_9ExecStateERKNS_10IdentifierERNS_18PropertyDescriptorE
282__ZN3JSC8JSObject3putEPNS_9ExecStateERKNS_10IdentifierENS_7JSValueERNS_15PutPropertySlotE
283__ZN3JSC8JSObject3putEPNS_9ExecStateEjNS_7JSValueE
284__ZN3JSC8Profiler13stopProfilingEPNS_9ExecStateERKNS_7UStringE
285__ZN3JSC8Profiler14startProfilingEPNS_9ExecStateERKNS_7UStringE
286__ZN3JSC8Profiler8profilerEv
287__ZN3JSC8evaluateEPNS_9ExecStateERNS_10ScopeChainERKNS_10SourceCodeENS_7JSValueE
288__ZN3JSC9CodeBlockD1Ev
289__ZN3JSC9CodeBlockD2Ev
290__ZN3JSC9MarkStack10s_pageSizeE
291__ZN3JSC9MarkStack12releaseStackEPvm
292__ZN3JSC9MarkStack13allocateStackEm
293__ZN3JSC9MarkStack18initializePagesizeEv
294__ZN3JSC9Structure13hasTransitionEPN7WebCore10StringImplEj
295__ZN3JSC9Structure17stopIgnoringLeaksEv
296__ZN3JSC9Structure18startIgnoringLeaksEv
297__ZN3JSC9Structure21addPropertyTransitionEPS0_RKNS_10IdentifierEjPNS_6JSCellERm
298__ZN3JSC9Structure22materializePropertyMapEv
299__ZN3JSC9Structure25changePrototypeTransitionEPS0_NS_7JSValueE
300__ZN3JSC9Structure27despecifyDictionaryFunctionERKNS_10IdentifierE
301__ZN3JSC9Structure27despecifyFunctionTransitionEPS0_RKNS_10IdentifierE
302__ZN3JSC9Structure28addPropertyWithoutTransitionERKNS_10IdentifierEjPNS_6JSCellE
303__ZN3JSC9Structure3getEPKN7WebCore10StringImplERjRPNS_6JSCellE
304__ZN3JSC9Structure40addPropertyTransitionToExistingStructureEPS0_RKNS_10IdentifierEjPNS_6JSCellERm
305__ZN3JSC9StructureC1ENS_7JSValueERKNS_8TypeInfoEj
306__ZN3JSC9StructureD1Ev
307__ZN3JSC9constructEPNS_9ExecStateENS_7JSValueENS_13ConstructTypeERKNS_13ConstructDataERKNS_7ArgListE
308__ZN3JSCeqERKNS_7UStringEPKc
309__ZN3JSCgtERKNS_7UStringES2_
310__ZN3JSCltERKNS_7UStringES2_
311__ZN3WTF10fastCallocEmm
312__ZN3WTF10fastMallocEm
313__ZN3WTF10fastStrDupEPKc
314__ZN3WTF11currentTimeEv
315__ZN3WTF11fastReallocEPvm
316__ZN3WTF12createThreadEPFPvS0_ES0_
317__ZN3WTF12createThreadEPFPvS0_ES0_PKc
318__ZN3WTF12detachThreadEj
319__ZN3WTF12isMainThreadEv
320__ZN3WTF12randomNumberEv
321__ZN3WTF13WTFThreadData10staticDataE
322__ZN3WTF13WTFThreadDataC1Ev
323__ZN3WTF13WTFThreadDataD1Ev
324__ZN3WTF13currentThreadEv
325__ZN3WTF13tryFastCallocEmm
326__ZN3WTF13tryFastMallocEm
327__ZN3WTF14fastMallocSizeEPKv
328__ZN3WTF15ThreadCondition4waitERNS_5MutexE
329__ZN3WTF15ThreadCondition6signalEv
330__ZN3WTF15ThreadCondition9broadcastEv
331__ZN3WTF15ThreadCondition9timedWaitERNS_5MutexEd
332__ZN3WTF15ThreadConditionC1Ev
333__ZN3WTF15ThreadConditionD1Ev
334__ZN3WTF16callOnMainThreadEPFvPvES0_
335__ZN3WTF16fastZeroedMallocEm
336__ZN3WTF18dateToDaysFrom1970Eiii
337__ZN3WTF18monthFromDayInYearEib
338__ZN3WTF19initializeThreadingEv
339__ZN3WTF20fastMallocStatisticsEv
340__ZN3WTF20initializeMainThreadEv
341__ZN3WTF21RefCountedLeakCounter16suppressMessagesEPKc
342__ZN3WTF21RefCountedLeakCounter24cancelMessageSuppressionEPKc
343__ZN3WTF21RefCountedLeakCounter9decrementEv
344__ZN3WTF21RefCountedLeakCounter9incrementEv
345__ZN3WTF21RefCountedLeakCounterC1EPKc
346__ZN3WTF21RefCountedLeakCounterD1Ev
347__ZN3WTF23callOnMainThreadAndWaitEPFvPvES0_
348__ZN3WTF23dayInMonthFromDayInYearEib
349__ZN3WTF23waitForThreadCompletionEjPPv
350__ZN3WTF27releaseFastMallocFreeMemoryEv
351__ZN3WTF28setMainThreadCallbacksPausedEb
352__ZN3WTF32doubleToStringInJavaScriptFormatEdPcPj
353__ZN3WTF36lockAtomicallyInitializedStaticMutexEv
354__ZN3WTF37parseDateFromNullTerminatedCharactersEPKc
355__ZN3WTF38unlockAtomicallyInitializedStaticMutexEv
356__ZN3WTF39initializeMainThreadToProcessMainThreadEv
357__ZN3WTF3MD58addBytesEPKhm
358__ZN3WTF3MD58checksumERNS_6VectorIhLm16EEE
359__ZN3WTF3MD5C1Ev
360__ZN3WTF5Mutex4lockEv
361__ZN3WTF5Mutex6unlockEv
362__ZN3WTF5Mutex7tryLockEv
363__ZN3WTF5MutexC1Ev
364__ZN3WTF5MutexD1Ev
365__ZN3WTF6strtodEPKcPPc
366__ZN3WTF7CString11mutableDataEv
367__ZN3WTF7CString16newUninitializedEmRPc
368__ZN3WTF7CStringC1EPKc
369__ZN3WTF7CStringC1EPKcj
370__ZN3WTF7Unicode18convertUTF16ToUTF8EPPKtS2_PPcS4_b
371__ZN3WTF7Unicode18convertUTF8ToUTF16EPPKcS2_PPtS4_b
372__ZN3WTF8Collator18setOrderLowerFirstEb
373__ZN3WTF8CollatorC1EPKc
374__ZN3WTF8CollatorD1Ev
375__ZN3WTF8fastFreeEPv
376__ZN3WTF8msToYearEd
377__ZN3WTF9ByteArray6createEm
378__ZN3WTF9dayInYearEdi
379__ZN3WTFeqERKNS_7CStringES2_
380__ZN7WebCore10StringImpl11reverseFindEPS0_ib
381__ZN7WebCore10StringImpl11reverseFindEti
382__ZN7WebCore10StringImpl12sharedBufferEv
383__ZN7WebCore10StringImpl18simplifyWhiteSpaceEv
384__ZN7WebCore10StringImpl19characterStartingAtEj
385__ZN7WebCore10StringImpl19createUninitializedEjRPt
386__ZN7WebCore10StringImpl22containsOnlyWhitespaceEv
387__ZN7WebCore10StringImpl23defaultWritingDirectionEv
388__ZN7WebCore10StringImpl37createStrippingNullCharactersSlowCaseEPKtj
389__ZN7WebCore10StringImpl4findEPFbtEi
390__ZN7WebCore10StringImpl4findEPKcib
391__ZN7WebCore10StringImpl4findEPS0_ib
392__ZN7WebCore10StringImpl4findEti
393__ZN7WebCore10StringImpl5adoptERNS_12StringBufferE
394__ZN7WebCore10StringImpl5emptyEv
395__ZN7WebCore10StringImpl5lowerEv
396__ZN7WebCore10StringImpl5toIntEPb
397__ZN7WebCore10StringImpl5upperEv
398__ZN7WebCore10StringImpl6createEPKc
399__ZN7WebCore10StringImpl6createEPKtj
400__ZN7WebCore10StringImpl6createEPKtjN3WTF10PassRefPtrINS3_21CrossThreadRefCountedINS3_16OwnFastMallocPtrIS1_EEEEEE
401__ZN7WebCore10StringImpl6secureEt
402__ZN7WebCore10StringImpl7replaceEPS0_S1_
403__ZN7WebCore10StringImpl7replaceEjjPS0_
404__ZN7WebCore10StringImpl7replaceEtPS0_
405__ZN7WebCore10StringImpl7replaceEtt
406__ZN7WebCore10StringImpl8endsWithEPS0_b
407__ZN7WebCore10StringImpl9substringEjj
408__ZN7WebCore10StringImplD1Ev
409__ZN7WebCore11commentAtomE
410__ZN7WebCore12AtomicString3addEPKc
411__ZN7WebCore12AtomicString3addEPKt
412__ZN7WebCore12AtomicString3addEPKtj
413__ZN7WebCore12AtomicString3addEPKtjj
414__ZN7WebCore12AtomicString4findEPKtjj
415__ZN7WebCore12AtomicString4initEv
416__ZN7WebCore15charactersToIntEPKtmPb
417__ZN7WebCore17charactersToFloatEPKtmPb
418__ZN7WebCore17equalIgnoringCaseEPKtPKcj
419__ZN7WebCore17equalIgnoringCaseEPNS_10StringImplEPKc
420__ZN7WebCore17equalIgnoringCaseEPNS_10StringImplES1_
421__ZN7WebCore18charactersToDoubleEPKtmPb
422__ZN7WebCore20equalIgnoringNullityEPNS_10StringImplES1_
423__ZN7WebCore21charactersToIntStrictEPKtmPbi
424__ZN7WebCore22charactersToUIntStrictEPKtmPbi
425__ZN7WebCore5equalEPKNS_10StringImplEPKc
426__ZN7WebCore5equalEPKNS_10StringImplES2_
427__ZN7WebCore6String26fromUTF8WithLatin1FallbackEPKcm
428__ZN7WebCore6String29charactersWithNullTerminationEv
429__ZN7WebCore6String6appendEPKtj
430__ZN7WebCore6String6appendERKS0_
431__ZN7WebCore6String6appendEc
432__ZN7WebCore6String6appendEt
433__ZN7WebCore6String6formatEPKcz
434__ZN7WebCore6String6insertERKS0_j
435__ZN7WebCore6String6numberEd
436__ZN7WebCore6String6numberEi
437__ZN7WebCore6String6numberEj
438__ZN7WebCore6String6numberEl
439__ZN7WebCore6String6numberEm
440__ZN7WebCore6String6numberEt
441__ZN7WebCore6String6numberEx
442__ZN7WebCore6String6numberEy
443__ZN7WebCore6String6removeEji
444__ZN7WebCore6String8fromUTF8EPKc
445__ZN7WebCore6String8fromUTF8EPKcm
446__ZN7WebCore6String8truncateEj
447__ZN7WebCore6StringC1EPKt
448__ZN7WebCore7xmlAtomE
449__ZN7WebCore8nullAtomE
450__ZN7WebCore8starAtomE
451__ZN7WebCore8textAtomE
452__ZN7WebCore9emptyAtomE
453__ZN7WebCore9xmlnsAtomE
454__ZN7WebCoreeqERKNS_12AtomicStringEPKc
455__ZN7WebCoreplEPKcRKNS_6StringE
456__ZN7WebCoreplERKNS_6StringEPKc
457__ZN7WebCoreplERKNS_6StringES2_
458__ZNK3JSC10JSFunction23isHostFunctionNonInlineEv
459__ZNK3JSC11Interpreter14retrieveCallerEPNS_9ExecStateEPNS_10JSFunctionE
460__ZNK3JSC11Interpreter18retrieveLastCallerEPNS_9ExecStateERiRlRNS_7UStringERNS_7JSValueE
461__ZNK3JSC12PropertySlot14functionGetterEPNS_9ExecStateE
462__ZNK3JSC14JSGlobalObject14isDynamicScopeERb
463__ZNK3JSC16InternalFunction9classInfoEv
464__ZNK3JSC16JSVariableObject16isVariableObjectEv
465__ZNK3JSC17DebuggerCallFrame10thisObjectEv
466__ZNK3JSC17DebuggerCallFrame12functionNameEv
467__ZNK3JSC17DebuggerCallFrame22calculatedFunctionNameEv
468__ZNK3JSC17DebuggerCallFrame4typeEv
469__ZNK3JSC17DebuggerCallFrame8evaluateERKNS_7UStringERNS_7JSValueE
470__ZNK3JSC18PropertyDescriptor10enumerableEv
471__ZNK3JSC18PropertyDescriptor12configurableEv
472__ZNK3JSC18PropertyDescriptor16isDataDescriptorEv
473__ZNK3JSC18PropertyDescriptor20isAccessorDescriptorEv
474__ZNK3JSC18PropertyDescriptor6getterEv
475__ZNK3JSC18PropertyDescriptor6setterEv
476__ZNK3JSC18PropertyDescriptor8writableEv
477__ZNK3JSC4Heap4sizeEv
478__ZNK3JSC4Heap10statisticsEv
479__ZNK3JSC4Heap11objectCountEv
480__ZNK3JSC6JSCell11toPrimitiveEPNS_9ExecStateENS_22PreferredPrimitiveTypeE
481__ZNK3JSC6JSCell12toThisObjectEPNS_9ExecStateE
482__ZNK3JSC6JSCell14isGetterSetterEv
483__ZNK3JSC6JSCell8toNumberEPNS_9ExecStateE
484__ZNK3JSC6JSCell8toObjectEPNS_9ExecStateE
485__ZNK3JSC6JSCell8toStringEPNS_9ExecStateE
486__ZNK3JSC6JSCell9classInfoEv
487__ZNK3JSC6JSCell9getStringEPNS_9ExecStateE
488__ZNK3JSC6JSCell9getStringEPNS_9ExecStateERNS_7UStringE
489__ZNK3JSC6JSCell9getUInt32ERj
490__ZNK3JSC6JSCell9toBooleanEPNS_9ExecStateE
491__ZNK3JSC7ArgList8getSliceEiRS0_
492__ZNK3JSC7JSArray12subclassDataEv
493__ZNK3JSC7JSValue16toObjectSlowCaseEPNS_9ExecStateE
494__ZNK3JSC7JSValue19synthesizePrototypeEPNS_9ExecStateE
495__ZNK3JSC7JSValue20toThisObjectSlowCaseEPNS_9ExecStateE
496__ZNK3JSC7JSValue9toIntegerEPNS_9ExecStateE
497__ZNK3JSC7UString10UTF8StringEb
498__ZNK3JSC7UString14toStrictUInt32EPb
499__ZNK3JSC7UString5asciiEv
500__ZNK3JSC7UString6is8BitEv
501__ZNK3JSC7UString6substrEjj
502__ZNK3JSC7UString8toUInt32EPb
503__ZNK3JSC7UString8toUInt32EPbb
504__ZNK3JSC8JSObject11hasPropertyEPNS_9ExecStateERKNS_10IdentifierE
505__ZNK3JSC8JSObject11hasPropertyEPNS_9ExecStateEj
506__ZNK3JSC8JSObject12defaultValueEPNS_9ExecStateENS_22PreferredPrimitiveTypeE
507__ZNK3JSC8JSObject12toThisObjectEPNS_9ExecStateE
508__ZNK3JSC8JSObject8toNumberEPNS_9ExecStateE
509__ZNK3JSC8JSObject8toObjectEPNS_9ExecStateE
510__ZNK3JSC8JSObject8toStringEPNS_9ExecStateE
511__ZNK3JSC8JSObject9classNameEv
512__ZNK3JSC8JSObject9toBooleanEPNS_9ExecStateE
513__ZNK3JSC8JSString11resolveRopeEPNS_9ExecStateE
514__ZNK3JSC9HashTable11createTableEPNS_12JSGlobalDataE
515__ZNK3JSC9HashTable11deleteTableEv
516__ZNK3WTF8Collator7collateEPKtmS2_m
517__ZNK7WebCore12AtomicString5lowerEv
518__ZNK7WebCore6String11toIntStrictEPbi
519__ZNK7WebCore6String12toUIntStrictEPbi
520__ZNK7WebCore6String14threadsafeCopyEv
521__ZNK7WebCore6String15stripWhiteSpaceEv
522__ZNK7WebCore6String16removeCharactersEPFbtE
523__ZNK7WebCore6String17crossThreadStringEv
524__ZNK7WebCore6String18simplifyWhiteSpaceEv
525__ZNK7WebCore6String19characterStartingAtEj
526__ZNK7WebCore6String4utf8Ev
527__ZNK7WebCore6String5asciiEv
528__ZNK7WebCore6String5lowerEv
529__ZNK7WebCore6String5splitERKS0_RN3WTF6VectorIS0_Lm0EEE
530__ZNK7WebCore6String5splitERKS0_bRN3WTF6VectorIS0_Lm0EEE
531__ZNK7WebCore6String5splitEtRN3WTF6VectorIS0_Lm0EEE
532__ZNK7WebCore6String5splitEtbRN3WTF6VectorIS0_Lm0EEE
533__ZNK7WebCore6String5toIntEPb
534__ZNK7WebCore6String5upperEv
535__ZNK7WebCore6String6latin1Ev
536__ZNK7WebCore6String6toUIntEPb
537__ZNK7WebCore6String7toFloatEPb
538__ZNK7WebCore6String8foldCaseEv
539__ZNK7WebCore6String8toDoubleEPb
540__ZNK7WebCore6String8toIntPtrEPb
541__ZNK7WebCore6String8toUInt64EPb
542__ZNK7WebCore6String9substringEjj
543__ZTVN3JSC12StringObjectE
544__ZTVN3JSC14JSGlobalObjectE
545__ZTVN3JSC15JSWrapperObjectE
546__ZTVN3JSC16InternalFunctionE
547__ZTVN3JSC16JSVariableObjectE
548__ZTVN3JSC8DebuggerE
549__ZTVN3JSC8JSObjectE
550__ZTVN3JSC8JSStringE
551_jscore_fastmalloc_introspection
552_kJSClassDefinitionEmpty
Note: See TracBrowser for help on using the repository browser.