Removed redundant helper functions for allocating Strong handles
https://bugs.webkit.org/show_bug.cgi?id=69218
Reviewed by Sam Weinig.
../JavaScriptCore:
(JSC::Heap::handleHeap):
- runtime/JSGlobalData.h: Removed these helper functions, since they
just created indirection.
- heap/StrongInlines.h: Added. Broke out a header for inline functions
to resolve circular dependencies created by inlining. I'm told this is
the future for JavaScriptCore.
- API/JSCallbackObjectFunctions.h:
(JSC::::init):
(JSC::WeakGCMap::add):
(JSC::WeakGCMap::set):
- runtime/StructureTransitionTable.h:
(JSC::StructureTransitionTable::setSingleTransition):
(JSC::::Local):
(JSC::::Strong):
(JSC::::set):
(JSC::Weak::Weak):
(JSC::Weak::set): Allocate handles directly instead of going through a
chain of forwarding functions.
- bytecompiler/BytecodeGenerator.cpp:
- runtime/JSGlobalData.cpp:
- runtime/LiteralParser.cpp:
- runtime/RegExpCache.cpp: Updated for header changes.
../JavaScriptGlue:
- JSRun.cpp:
- JSValueWrapper.cpp:
../WebCore:
- ForwardingHeaders/heap/StrongInlines.h: Added.
- bindings/js/JSCallbackData.h:
- bindings/js/JSDOMWindowShell.cpp:
- bindings/js/ScheduledAction.h:
- bindings/js/ScriptCachedFrameData.cpp:
- bindings/js/ScriptController.cpp:
- bindings/js/ScriptState.cpp:
- bindings/js/ScriptValue.h:
- bindings/js/WorkerScriptController.cpp:
- bridge/runtime_root.cpp:
../WebKit2:
- WebProcess/Plugins/Netscape/NPJSObject.cpp:
- WebProcess/Plugins/Netscape/NPRuntimeObjectMap.cpp: