#include "gdb-tests.h"
#include "jsapi.h"
#include "gc/Barrier.h"
#include "vm/JSFunction.h"
FRAGMENT(Root, null) {
JS::Rooted<JSObject*> null(cx, nullptr);
breakpoint();
use(null);
}
void callee(JS::Handle<JSObject*> obj,
JS::MutableHandle<JSObject*> mutableObj) {
fprintf(stderr, "Called " __FILE__ ":callee\n");
breakpoint();
}
FRAGMENT(Root, handle) {
JS::Rooted<JSObject*> global(cx, JS::CurrentGlobalOrNull(cx));
callee(global, &global);
use(global);
}
FRAGMENT(Root, HeapSlot) {
JS::Rooted<JS::Value> plinth(
cx, JS::StringValue(JS_NewStringCopyZ(cx, "plinth")));
JS::Rooted<JSObject*> array(
cx, JS_NewArrayObject(cx, JS::HandleValueArray(plinth)));
breakpoint();
use(plinth);
use(array);
}
FRAGMENT(Root, barriers) {
JSObject* obj = JS_NewPlainObject(cx);
js::PreBarriered<JSObject*> prebarriered(obj);
js::GCPtrObject heapptr(obj);
js::HeapPtr<JSObject*> relocatable(obj);
JS::Value val = JS::ObjectValue(*obj);
js::PreBarrieredValue prebarrieredValue(JS::ObjectValue(*obj));
js::GCPtrValue heapValue(JS::ObjectValue(*obj));
js::HeapPtr<JS::Value> relocatableValue(JS::ObjectValue(*obj));
breakpoint();
use(prebarriered);
use(heapptr);
use(relocatable);
use(val);
use(prebarrieredValue);
use(heapValue);
use(relocatableValue);
}