本文整理汇总了C++中WatchpointMap类的典型用法代码示例。如果您正苦于以下问题:C++ WatchpointMap类的具体用法?C++ WatchpointMap怎么用?C++ WatchpointMap使用的例子?那么恭喜您, 这里精选的类代码示例或许可以为您提供帮助。
在下文中一共展示了WatchpointMap类的3个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于我们的系统推荐出更棒的C++代码示例。
示例1: JS_SetWatchPoint
JS_SetWatchPoint(JSContext *cx, JSObject *obj_, jsid id_,
JSWatchPointHandler handler, JSObject *closure_)
{
assertSameCompartment(cx, obj_);
RootedId id(cx, id_);
RootedObject origobj(cx, obj_), closure(cx, closure_);
RootedObject obj(cx, GetInnerObject(cx, origobj));
if (!obj)
return false;
RootedValue v(cx);
unsigned attrs;
RootedId propid(cx);
if (JSID_IS_INT(id)) {
propid = id;
} else if (JSID_IS_OBJECT(id)) {
JS_ReportErrorNumber(cx, js_GetErrorMessage, nullptr, JSMSG_CANT_WATCH_PROP);
return false;
} else {
RootedValue val(cx, IdToValue(id));
if (!ValueToId<CanGC>(cx, val, &propid))
return false;
}
/*
* If, by unwrapping and innerizing, we changed the object, check
* again to make sure that we're allowed to set a watch point.
*/
if (origobj != obj && !CheckAccess(cx, obj, propid, JSACC_WATCH, &v, &attrs))
return false;
if (!obj->isNative()) {
JS_ReportErrorNumber(cx, js_GetErrorMessage, nullptr, JSMSG_CANT_WATCH,
obj->getClass()->name);
return false;
}
/*
* Use sparse indexes for watched objects, as dense elements can be written
* to without checking the watchpoint map.
*/
if (!JSObject::sparsifyDenseElements(cx, obj))
return false;
types::MarkTypePropertyConfigured(cx, obj, propid);
WatchpointMap *wpmap = cx->compartment()->watchpointMap;
if (!wpmap) {
wpmap = cx->runtime()->new_<WatchpointMap>();
if (!wpmap || !wpmap->init()) {
js_ReportOutOfMemory(cx);
return false;
}
cx->compartment()->watchpointMap = wpmap;
}
return wpmap->watch(cx, obj, propid, handler, closure);
}
开发者ID:brendanlong,项目名称:gecko-dev,代码行数:60,代码来源:OldDebugAPI.cpp
示例2: JS_SetWatchPoint
JS_SetWatchPoint(JSContext *cx, JSObject *obj_, jsid id,
JSWatchPointHandler handler, JSObject *closure_)
{
assertSameCompartment(cx, obj_);
RootedObject obj(cx, obj_), closure(cx, closure_);
JSObject *origobj = obj;
obj = GetInnerObject(cx, obj);
if (!obj)
return false;
RootedValue v(cx);
unsigned attrs;
RootedId propid(cx);
if (JSID_IS_INT(id)) {
propid = id;
} else if (JSID_IS_OBJECT(id)) {
JS_ReportErrorNumber(cx, js_GetErrorMessage, NULL, JSMSG_CANT_WATCH_PROP);
return false;
} else {
if (!ValueToId(cx, IdToValue(id), propid.address()))
return false;
}
/*
* If, by unwrapping and innerizing, we changed the object, check
* again to make sure that we're allowed to set a watch point.
*/
if (origobj != obj && !CheckAccess(cx, obj, propid, JSACC_WATCH, &v, &attrs))
return false;
if (!obj->isNative()) {
JS_ReportErrorNumber(cx, js_GetErrorMessage, NULL, JSMSG_CANT_WATCH,
obj->getClass()->name);
return false;
}
types::MarkTypePropertyConfigured(cx, obj, propid);
WatchpointMap *wpmap = cx->compartment->watchpointMap;
if (!wpmap) {
wpmap = cx->runtime->new_<WatchpointMap>();
if (!wpmap || !wpmap->init()) {
js_ReportOutOfMemory(cx);
return false;
}
cx->compartment->watchpointMap = wpmap;
}
return wpmap->watch(cx, obj, propid, handler, closure);
}
开发者ID:hideakihata,项目名称:mozilla-central.fgv,代码行数:53,代码来源:jsdbgapi.cpp
示例3:
bool
WatchpointMap::markAllIteratively(JSTracer *trc)
{
JSRuntime *rt = trc->context->runtime;
if (rt->gcCurrentCompartment) {
WatchpointMap *wpmap = rt->gcCurrentCompartment->watchpointMap;
return wpmap && wpmap->markIteratively(trc);
}
bool mutated = false;
for (JSCompartment **c = rt->compartments.begin(); c != rt->compartments.end(); ++c) {
if ((*c)->watchpointMap)
mutated |= (*c)->watchpointMap->markIteratively(trc);
}
return mutated;
}
开发者ID:mbrubeck,项目名称:mozilla-central,代码行数:16,代码来源:jswatchpoint.cpp
注:本文中的WatchpointMap类示例由纯净天空整理自Github/MSDocs等源码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。 |
请发表评论