mirror of
https://github.com/mozilla/gecko-dev.git
synced 2025-04-02 20:42:49 +00:00
Bug 848395 - GC: Move Rooted to JS namespace - Move js::Rooted to JS namespace r=terrence
--HG-- extra : rebase_source : c25db8f97c5d6b39b96dc89976bcc00a85ddbde3
This commit is contained in:
parent
4c60546875
commit
6fbb22c50b
2
CLOBBER
2
CLOBBER
@ -15,4 +15,4 @@
|
||||
#
|
||||
# Note: The description below will be part of the error message shown to users.
|
||||
#
|
||||
Bug 784841 pretty much changed how the build system works. It's best to clobber.
|
||||
Bug 848395 resulted in Windows test failures when landed without clobber
|
||||
|
@ -117,8 +117,6 @@ namespace js {
|
||||
|
||||
class Module;
|
||||
|
||||
template <typename T> class Rooted;
|
||||
|
||||
template <typename T>
|
||||
struct RootMethods {};
|
||||
|
||||
@ -135,6 +133,8 @@ class MutableHandleBase {};
|
||||
|
||||
namespace JS {
|
||||
|
||||
template <typename T> class Rooted;
|
||||
|
||||
class AutoAssertNoGC;
|
||||
|
||||
template <typename T> class Handle;
|
||||
@ -215,7 +215,7 @@ class Handle : public js::HandleBase<T>
|
||||
*/
|
||||
template <typename S>
|
||||
inline
|
||||
Handle(js::Rooted<S> &root,
|
||||
Handle(Rooted<S> &root,
|
||||
typename mozilla::EnableIf<mozilla::IsConvertible<S, T>::value, int>::Type dummy = 0);
|
||||
|
||||
/* Construct a read only handle from a mutable handle. */
|
||||
@ -262,7 +262,7 @@ template <typename T>
|
||||
class MutableHandle : public js::MutableHandleBase<T>
|
||||
{
|
||||
public:
|
||||
inline MutableHandle(js::Rooted<T> *root);
|
||||
inline MutableHandle(Rooted<T> *root);
|
||||
|
||||
void set(T v) {
|
||||
JS_ASSERT(!js::RootMethods<T>::poisoned(v));
|
||||
@ -408,6 +408,10 @@ struct RootMethods<T *>
|
||||
static bool poisoned(T *v) { return IsPoisonedPtr(v); }
|
||||
};
|
||||
|
||||
} /* namespace js */
|
||||
|
||||
namespace JS {
|
||||
|
||||
/*
|
||||
* Local variable of type T whose value is always rooted. This is typically
|
||||
* used for local variables, or for non-rooted values being passed to a
|
||||
@ -417,18 +421,18 @@ struct RootMethods<T *>
|
||||
* specialization, define a RootedBase<T> specialization containing them.
|
||||
*/
|
||||
template <typename T>
|
||||
class Rooted : public RootedBase<T>
|
||||
class Rooted : public js::RootedBase<T>
|
||||
{
|
||||
void init(JSContext *cxArg) {
|
||||
#if defined(JSGC_ROOT_ANALYSIS) || defined(JSGC_USE_EXACT_ROOTING)
|
||||
ContextFriendFields *cx = ContextFriendFields::get(cxArg);
|
||||
js::ContextFriendFields *cx = js::ContextFriendFields::get(cxArg);
|
||||
commonInit(cx->thingGCRooters);
|
||||
#endif
|
||||
}
|
||||
|
||||
void init(PerThreadData *ptArg) {
|
||||
void init(js::PerThreadData *ptArg) {
|
||||
#if defined(JSGC_ROOT_ANALYSIS) || defined(JSGC_USE_EXACT_ROOTING)
|
||||
PerThreadDataFriendFields *pt = PerThreadDataFriendFields::get(ptArg);
|
||||
js::PerThreadDataFriendFields *pt = js::PerThreadDataFriendFields::get(ptArg);
|
||||
commonInit(pt->thingGCRooters);
|
||||
#endif
|
||||
}
|
||||
@ -436,7 +440,7 @@ class Rooted : public RootedBase<T>
|
||||
public:
|
||||
Rooted(JSContext *cx
|
||||
MOZ_GUARD_OBJECT_NOTIFIER_PARAM)
|
||||
: ptr(RootMethods<T>::initial())
|
||||
: ptr(js::RootMethods<T>::initial())
|
||||
{
|
||||
MOZ_GUARD_OBJECT_NOTIFIER_INIT;
|
||||
init(cx);
|
||||
@ -450,15 +454,15 @@ class Rooted : public RootedBase<T>
|
||||
init(cx);
|
||||
}
|
||||
|
||||
Rooted(PerThreadData *pt
|
||||
Rooted(js::PerThreadData *pt
|
||||
MOZ_GUARD_OBJECT_NOTIFIER_PARAM)
|
||||
: ptr(RootMethods<T>::initial())
|
||||
: ptr(js::RootMethods<T>::initial())
|
||||
{
|
||||
MOZ_GUARD_OBJECT_NOTIFIER_INIT;
|
||||
init(pt);
|
||||
}
|
||||
|
||||
Rooted(PerThreadData *pt, T initial
|
||||
Rooted(js::PerThreadData *pt, T initial
|
||||
MOZ_GUARD_OBJECT_NOTIFIER_PARAM)
|
||||
: ptr(initial)
|
||||
{
|
||||
@ -485,7 +489,7 @@ class Rooted : public RootedBase<T>
|
||||
const T &get() const { return ptr; }
|
||||
|
||||
T &operator=(T value) {
|
||||
JS_ASSERT(!RootMethods<T>::poisoned(value));
|
||||
JS_ASSERT(!js::RootMethods<T>::poisoned(value));
|
||||
ptr = value;
|
||||
return ptr;
|
||||
}
|
||||
@ -501,12 +505,12 @@ class Rooted : public RootedBase<T>
|
||||
private:
|
||||
void commonInit(Rooted<void*> **thingGCRooters) {
|
||||
#if defined(JSGC_ROOT_ANALYSIS) || defined(JSGC_USE_EXACT_ROOTING)
|
||||
ThingRootKind kind = RootMethods<T>::kind();
|
||||
js::ThingRootKind kind = js::RootMethods<T>::kind();
|
||||
this->stack = &thingGCRooters[kind];
|
||||
this->prev = *stack;
|
||||
*stack = reinterpret_cast<Rooted<void*>*>(this);
|
||||
|
||||
JS_ASSERT(!RootMethods<T>::poisoned(ptr));
|
||||
JS_ASSERT(!js::RootMethods<T>::poisoned(ptr));
|
||||
#endif
|
||||
}
|
||||
|
||||
@ -545,6 +549,10 @@ typedef Rooted<JSString*> RootedString;
|
||||
typedef Rooted<jsid> RootedId;
|
||||
typedef Rooted<JS::Value> RootedValue;
|
||||
|
||||
} /* namespace JS */
|
||||
|
||||
namespace js {
|
||||
|
||||
/*
|
||||
* Mark a stack location as a root for the rooting analysis, without actually
|
||||
* rooting it in release builds. This should only be used for stack locations
|
||||
@ -753,7 +761,7 @@ namespace JS {
|
||||
|
||||
template <typename T> template <typename S>
|
||||
inline
|
||||
Handle<T>::Handle(js::Rooted<S> &root,
|
||||
Handle<T>::Handle(Rooted<S> &root,
|
||||
typename mozilla::EnableIf<mozilla::IsConvertible<S, T>::value, int>::Type dummy)
|
||||
{
|
||||
ptr = reinterpret_cast<const T *>(root.address());
|
||||
@ -769,7 +777,7 @@ Handle<T>::Handle(MutableHandle<S> &root,
|
||||
|
||||
template <typename T>
|
||||
inline
|
||||
MutableHandle<T>::MutableHandle(js::Rooted<T> *root)
|
||||
MutableHandle<T>::MutableHandle(Rooted<T> *root)
|
||||
{
|
||||
ptr = root->address();
|
||||
}
|
||||
|
@ -14,13 +14,22 @@
|
||||
#include "jsprototypes.h"
|
||||
#include "jstypes.h"
|
||||
|
||||
#ifdef __cplusplus
|
||||
|
||||
namespace JS {
|
||||
|
||||
/*
|
||||
* Allow headers to reference JS::Value without #including the whole jsapi.h.
|
||||
* Unfortunately, typedefs (hence jsval) cannot be declared.
|
||||
*/
|
||||
#ifdef __cplusplus
|
||||
namespace JS { class Value; }
|
||||
#endif
|
||||
class Value;
|
||||
|
||||
template <typename T>
|
||||
class Rooted;
|
||||
|
||||
} /* namespace JS */
|
||||
|
||||
#endif /* __cplusplus */
|
||||
|
||||
/*
|
||||
* In release builds, jsid is defined to be an integral type. This
|
||||
@ -210,9 +219,6 @@ namespace js {
|
||||
|
||||
class Allocator;
|
||||
|
||||
template <typename T>
|
||||
class Rooted;
|
||||
|
||||
class SkipRoot;
|
||||
|
||||
enum ThingRootKind
|
||||
@ -275,7 +281,7 @@ struct ContextFriendFields {
|
||||
* Stack allocated GC roots for stack GC heap pointers, which may be
|
||||
* overwritten if moved during a GC.
|
||||
*/
|
||||
Rooted<void*> *thingGCRooters[THING_ROOT_LIMIT];
|
||||
JS::Rooted<void*> *thingGCRooters[THING_ROOT_LIMIT];
|
||||
#endif
|
||||
|
||||
#if defined(DEBUG) && defined(JS_GC_ZEAL) && defined(JSGC_ROOT_ANALYSIS) && !defined(JS_THREADSAFE)
|
||||
@ -334,7 +340,7 @@ struct PerThreadDataFriendFields
|
||||
* Stack allocated GC roots for stack GC heap pointers, which may be
|
||||
* overwritten if moved during a GC.
|
||||
*/
|
||||
Rooted<void*> *thingGCRooters[THING_ROOT_LIMIT];
|
||||
JS::Rooted<void*> *thingGCRooters[THING_ROOT_LIMIT];
|
||||
#endif
|
||||
|
||||
#if defined(DEBUG) && defined(JS_GC_ZEAL) && defined(JSGC_ROOT_ANALYSIS) && !defined(JS_THREADSAFE)
|
||||
|
@ -578,7 +578,7 @@ class JSStableString : public JSFlatString
|
||||
JS_STATIC_ASSERT(sizeof(JSStableString) == sizeof(JSString));
|
||||
|
||||
#if !(defined(JSGC_ROOT_ANALYSIS) || defined(JSGC_USE_EXACT_ROOTING))
|
||||
namespace js {
|
||||
namespace JS {
|
||||
/*
|
||||
* Specialization of Rooted<T> to explicitly root the string rather than
|
||||
* relying on conservative stack scanning.
|
||||
@ -616,7 +616,7 @@ class Rooted<JSStableString *>
|
||||
|
||||
Rooted & operator =(JSStableString *value)
|
||||
{
|
||||
JS_ASSERT(!RootMethods<JSStableString *>::poisoned(value));
|
||||
JS_ASSERT(!js::RootMethods<JSStableString *>::poisoned(value));
|
||||
rooter.setString(value);
|
||||
return *this;
|
||||
}
|
||||
|
Loading…
x
Reference in New Issue
Block a user