mirror of
https://github.com/mozilla/gecko-dev.git
synced 2025-04-03 04:52:54 +00:00
Bug 850074 - Move SpiderMonkey stack rooting infrastructure to RootingAPI.h; r=billm
--HG-- rename : js/src/gc/Root.h => js/public/RootingAPI.h extra : rebase_source : 52027c9c887f686a86097e5465179fa69fac9d6c
This commit is contained in:
parent
58e4ab71e6
commit
3e92ec99e1
@ -16,8 +16,8 @@
|
|||||||
|
|
||||||
#include <limits> /* for std::numeric_limits */
|
#include <limits> /* for std::numeric_limits */
|
||||||
|
|
||||||
#include "gc/Root.h"
|
|
||||||
#include "js/Anchor.h"
|
#include "js/Anchor.h"
|
||||||
|
#include "js/RootingAPI.h"
|
||||||
#include "js/Utility.h"
|
#include "js/Utility.h"
|
||||||
|
|
||||||
namespace JS { class Value; }
|
namespace JS { class Value; }
|
||||||
|
@ -176,16 +176,12 @@ INSTALLED_HEADERS = \
|
|||||||
# BEGIN exported headers that are only exported
|
# BEGIN exported headers that are only exported
|
||||||
# because of inclusion by an INSTALLED_HEADER
|
# because of inclusion by an INSTALLED_HEADER
|
||||||
#
|
#
|
||||||
EXPORTS_NAMESPACES += ds gc
|
EXPORTS_NAMESPACES += ds
|
||||||
|
|
||||||
EXPORTS_ds = \
|
EXPORTS_ds = \
|
||||||
BitArray.h \
|
BitArray.h \
|
||||||
$(NULL)
|
$(NULL)
|
||||||
|
|
||||||
EXPORTS_gc = \
|
|
||||||
Root.h \
|
|
||||||
$(NULL)
|
|
||||||
|
|
||||||
######################################################
|
######################################################
|
||||||
# BEGIN include exported headers from the JS engine
|
# BEGIN include exported headers from the JS engine
|
||||||
#
|
#
|
||||||
@ -212,6 +208,7 @@ EXPORTS_js = \
|
|||||||
MemoryMetrics.h \
|
MemoryMetrics.h \
|
||||||
PropertyKey.h \
|
PropertyKey.h \
|
||||||
RequiredDefines.h \
|
RequiredDefines.h \
|
||||||
|
RootingAPI.h \
|
||||||
TemplateLib.h \
|
TemplateLib.h \
|
||||||
Utility.h \
|
Utility.h \
|
||||||
Value.h \
|
Value.h \
|
||||||
|
@ -43,9 +43,9 @@
|
|||||||
#include "jsfriendapi.h"
|
#include "jsfriendapi.h"
|
||||||
#include "jsopcode.h"
|
#include "jsopcode.h"
|
||||||
|
|
||||||
#include "gc/Root.h"
|
|
||||||
#include "methodjit/Logging.h"
|
|
||||||
#include "ion/IonSpewer.h"
|
#include "ion/IonSpewer.h"
|
||||||
|
#include "js/RootingAPI.h"
|
||||||
|
#include "methodjit/Logging.h"
|
||||||
|
|
||||||
#define PRETTY_PRINT_OFFSET(os) (((os)<0)?"-":""), (((os)<0)?-(os):(os))
|
#define PRETTY_PRINT_OFFSET(os) (((os)<0)?"-":""), (((os)<0)?-(os):(os))
|
||||||
|
|
||||||
|
@ -7,7 +7,7 @@
|
|||||||
#ifndef Intl_h___
|
#ifndef Intl_h___
|
||||||
#define Intl_h___
|
#define Intl_h___
|
||||||
|
|
||||||
#include "gc/Root.h"
|
#include "js/RootingAPI.h"
|
||||||
|
|
||||||
struct JSContext;
|
struct JSContext;
|
||||||
class JSObject;
|
class JSObject;
|
||||||
|
@ -11,8 +11,8 @@
|
|||||||
#include "jsapi.h"
|
#include "jsapi.h"
|
||||||
|
|
||||||
#include "gc/Heap.h"
|
#include "gc/Heap.h"
|
||||||
#include "gc/Root.h"
|
|
||||||
#include "js/HashTable.h"
|
#include "js/HashTable.h"
|
||||||
|
#include "js/RootingAPI.h"
|
||||||
|
|
||||||
/*
|
/*
|
||||||
* A write barrier is a mechanism used by incremental or generation GCs to
|
* A write barrier is a mechanism used by incremental or generation GCs to
|
||||||
|
@ -10,9 +10,10 @@
|
|||||||
#ifndef jsion_c1spewer_h__
|
#ifndef jsion_c1spewer_h__
|
||||||
#define jsion_c1spewer_h__
|
#define jsion_c1spewer_h__
|
||||||
|
|
||||||
#include "gc/Root.h"
|
|
||||||
#include "jsscript.h"
|
#include "jsscript.h"
|
||||||
|
|
||||||
|
#include "js/RootingAPI.h"
|
||||||
|
|
||||||
namespace js {
|
namespace js {
|
||||||
namespace ion {
|
namespace ion {
|
||||||
|
|
||||||
|
@ -9,7 +9,8 @@
|
|||||||
#define jsion_ion_gc_h__
|
#define jsion_ion_gc_h__
|
||||||
|
|
||||||
#include "jscntxt.h"
|
#include "jscntxt.h"
|
||||||
#include "gc/Root.h"
|
|
||||||
|
#include "js/RootingAPI.h"
|
||||||
|
|
||||||
namespace js {
|
namespace js {
|
||||||
namespace ion {
|
namespace ion {
|
||||||
|
@ -6,12 +6,14 @@
|
|||||||
* file, You can obtain one at http://mozilla.org/MPL/2.0/. */
|
* file, You can obtain one at http://mozilla.org/MPL/2.0/. */
|
||||||
|
|
||||||
#include "jsinfer.h"
|
#include "jsinfer.h"
|
||||||
#include "jsinferinlines.h"
|
|
||||||
#include "IonMacroAssembler.h"
|
#include "ion/Bailouts.h"
|
||||||
#include "gc/Root.h"
|
#include "ion/IonMacroAssembler.h"
|
||||||
#include "Bailouts.h"
|
#include "js/RootingAPI.h"
|
||||||
#include "vm/ForkJoin.h"
|
#include "vm/ForkJoin.h"
|
||||||
|
|
||||||
|
#include "jsinferinlines.h"
|
||||||
|
|
||||||
using namespace js;
|
using namespace js;
|
||||||
using namespace js::ion;
|
using namespace js::ion;
|
||||||
|
|
||||||
|
@ -10,9 +10,10 @@
|
|||||||
|
|
||||||
#include <stdio.h>
|
#include <stdio.h>
|
||||||
|
|
||||||
#include "gc/Root.h"
|
|
||||||
#include "jsscript.h"
|
#include "jsscript.h"
|
||||||
|
|
||||||
|
#include "js/RootingAPI.h"
|
||||||
|
|
||||||
class JSScript;
|
class JSScript;
|
||||||
|
|
||||||
namespace js {
|
namespace js {
|
||||||
|
@ -6,7 +6,7 @@
|
|||||||
* file, You can obtain one at http://mozilla.org/MPL/2.0/. */
|
* file, You can obtain one at http://mozilla.org/MPL/2.0/. */
|
||||||
|
|
||||||
#include "tests.h"
|
#include "tests.h"
|
||||||
#include "gc/Root.h"
|
#include "js/RootingAPI.h"
|
||||||
#include "jsobj.h"
|
#include "jsobj.h"
|
||||||
#include <stdio.h>
|
#include <stdio.h>
|
||||||
|
|
||||||
|
@ -25,11 +25,11 @@
|
|||||||
#include "jspubtd.h"
|
#include "jspubtd.h"
|
||||||
#include "jsutil.h"
|
#include "jsutil.h"
|
||||||
|
|
||||||
#include "gc/Root.h"
|
|
||||||
#include "js/Anchor.h"
|
#include "js/Anchor.h"
|
||||||
#include "js/CharacterEncoding.h"
|
#include "js/CharacterEncoding.h"
|
||||||
#include "js/HashTable.h"
|
#include "js/HashTable.h"
|
||||||
#include "js/PropertyKey.h"
|
#include "js/PropertyKey.h"
|
||||||
|
#include "js/RootingAPI.h"
|
||||||
#include "js/Utility.h"
|
#include "js/Utility.h"
|
||||||
#include "js/Value.h"
|
#include "js/Value.h"
|
||||||
#include "js/Vector.h"
|
#include "js/Vector.h"
|
||||||
|
@ -10,7 +10,7 @@
|
|||||||
#include "mozilla/Assertions.h"
|
#include "mozilla/Assertions.h"
|
||||||
#include "mozilla/Likely.h"
|
#include "mozilla/Likely.h"
|
||||||
|
|
||||||
#include "gc/Root.h"
|
#include "js/RootingAPI.h"
|
||||||
|
|
||||||
#include "jsobjinlines.h"
|
#include "jsobjinlines.h"
|
||||||
|
|
||||||
|
@ -22,12 +22,12 @@
|
|||||||
#endif
|
#endif
|
||||||
#include "assembler/wtf/Platform.h"
|
#include "assembler/wtf/Platform.h"
|
||||||
#include "gc/Marking.h"
|
#include "gc/Marking.h"
|
||||||
#include "gc/Root.h"
|
|
||||||
#ifdef JS_ION
|
#ifdef JS_ION
|
||||||
#include "ion/IonCompartment.h"
|
#include "ion/IonCompartment.h"
|
||||||
#include "ion/Ion.h"
|
#include "ion/Ion.h"
|
||||||
#endif
|
#endif
|
||||||
#include "js/MemoryMetrics.h"
|
#include "js/MemoryMetrics.h"
|
||||||
|
#include "js/RootingAPI.h"
|
||||||
#include "methodjit/MethodJIT.h"
|
#include "methodjit/MethodJIT.h"
|
||||||
#include "methodjit/PolyIC.h"
|
#include "methodjit/PolyIC.h"
|
||||||
#include "methodjit/MonoIC.h"
|
#include "methodjit/MonoIC.h"
|
||||||
|
@ -12,7 +12,7 @@
|
|||||||
#include "jscompartment.h"
|
#include "jscompartment.h"
|
||||||
#include "jslock.h"
|
#include "jslock.h"
|
||||||
|
|
||||||
#include "gc/Root.h"
|
#include "js/RootingAPI.h"
|
||||||
#include "js/TemplateLib.h"
|
#include "js/TemplateLib.h"
|
||||||
#include "vm/Shape.h"
|
#include "vm/Shape.h"
|
||||||
|
|
||||||
|
@ -12,11 +12,11 @@
|
|||||||
#include "jsinfer.h"
|
#include "jsinfer.h"
|
||||||
#include "jsprf.h"
|
#include "jsprf.h"
|
||||||
|
|
||||||
#include "gc/Root.h"
|
|
||||||
#include "vm/GlobalObject.h"
|
|
||||||
#ifdef JS_ION
|
#ifdef JS_ION
|
||||||
#include "ion/IonFrames.h"
|
#include "ion/IonFrames.h"
|
||||||
#endif
|
#endif
|
||||||
|
#include "js/RootingAPI.h"
|
||||||
|
#include "vm/GlobalObject.h"
|
||||||
|
|
||||||
#include "vm/Stack-inl.h"
|
#include "vm/Stack-inl.h"
|
||||||
|
|
||||||
|
@ -28,8 +28,8 @@
|
|||||||
#include "builtin/Iterator-inl.h"
|
#include "builtin/Iterator-inl.h"
|
||||||
#include "gc/Barrier.h"
|
#include "gc/Barrier.h"
|
||||||
#include "gc/Marking.h"
|
#include "gc/Marking.h"
|
||||||
#include "gc/Root.h"
|
|
||||||
#include "js/MemoryMetrics.h"
|
#include "js/MemoryMetrics.h"
|
||||||
|
#include "js/RootingAPI.h"
|
||||||
#include "js/TemplateLib.h"
|
#include "js/TemplateLib.h"
|
||||||
#include "vm/BooleanObject.h"
|
#include "vm/BooleanObject.h"
|
||||||
#include "vm/GlobalObject.h"
|
#include "vm/GlobalObject.h"
|
||||||
|
@ -10,12 +10,13 @@
|
|||||||
/*
|
/*
|
||||||
* JS script descriptor.
|
* JS script descriptor.
|
||||||
*/
|
*/
|
||||||
|
|
||||||
#include "jsdbgapi.h"
|
#include "jsdbgapi.h"
|
||||||
#include "jsinfer.h"
|
#include "jsinfer.h"
|
||||||
#include "jsopcode.h"
|
#include "jsopcode.h"
|
||||||
|
|
||||||
#include "gc/Barrier.h"
|
#include "gc/Barrier.h"
|
||||||
#include "gc/Root.h"
|
#include "js/RootingAPI.h"
|
||||||
#include "vm/Shape.h"
|
#include "vm/Shape.h"
|
||||||
|
|
||||||
ForwardDeclareJS(Script);
|
ForwardDeclareJS(Script);
|
||||||
|
@ -8,8 +8,8 @@
|
|||||||
|
|
||||||
#include "mozilla/Assertions.h"
|
#include "mozilla/Assertions.h"
|
||||||
|
|
||||||
#include "gc/Root.h"
|
|
||||||
#include "js/PropertyKey.h"
|
#include "js/PropertyKey.h"
|
||||||
|
#include "js/RootingAPI.h"
|
||||||
#include "js/Value.h"
|
#include "js/Value.h"
|
||||||
#include "vm/String.h"
|
#include "vm/String.h"
|
||||||
|
|
||||||
|
@ -15,9 +15,9 @@
|
|||||||
#include "jspropertytree.h"
|
#include "jspropertytree.h"
|
||||||
#include "jstypes.h"
|
#include "jstypes.h"
|
||||||
|
|
||||||
#include "js/HashTable.h"
|
|
||||||
#include "gc/Heap.h"
|
#include "gc/Heap.h"
|
||||||
#include "gc/Root.h"
|
#include "js/HashTable.h"
|
||||||
|
#include "js/RootingAPI.h"
|
||||||
|
|
||||||
#ifdef _MSC_VER
|
#ifdef _MSC_VER
|
||||||
#pragma warning(push)
|
#pragma warning(push)
|
||||||
|
@ -11,8 +11,6 @@
|
|||||||
#include "mozilla/Attributes.h"
|
#include "mozilla/Attributes.h"
|
||||||
#include "mozilla/GuardObjects.h"
|
#include "mozilla/GuardObjects.h"
|
||||||
|
|
||||||
#include "js/CharacterEncoding.h"
|
|
||||||
|
|
||||||
#include "jsapi.h"
|
#include "jsapi.h"
|
||||||
#include "jsatom.h"
|
#include "jsatom.h"
|
||||||
#include "jsfriendapi.h"
|
#include "jsfriendapi.h"
|
||||||
@ -20,7 +18,8 @@
|
|||||||
|
|
||||||
#include "gc/Barrier.h"
|
#include "gc/Barrier.h"
|
||||||
#include "gc/Heap.h"
|
#include "gc/Heap.h"
|
||||||
#include "gc/Root.h"
|
#include "js/CharacterEncoding.h"
|
||||||
|
#include "js/RootingAPI.h"
|
||||||
|
|
||||||
ForwardDeclareJS(String);
|
ForwardDeclareJS(String);
|
||||||
class JSDependentString;
|
class JSDependentString;
|
||||||
|
Loading…
x
Reference in New Issue
Block a user