gecko-dev/js/src/jsscriptinlines.h

198 lines
4.8 KiB
C
Raw Normal View History

/* -*- Mode: C++; tab-width: 8; indent-tabs-mode: nil; c-basic-offset: 4 -*-
* vim: set ts=8 sw=4 et tw=79 ft=cpp:
*
2012-05-21 11:12:37 +00:00
* This Source Code Form is subject to the terms of the Mozilla Public
* License, v. 2.0. If a copy of the MPL was not distributed with this
* file, You can obtain one at http://mozilla.org/MPL/2.0/. */
#ifndef jsscriptinlines_h___
#define jsscriptinlines_h___
#include "jsautooplen.h"
#include "jscntxt.h"
2009-09-10 14:22:20 +00:00
#include "jsfun.h"
#include "jsopcode.h"
#include "jsscript.h"
#include "vm/GlobalObject.h"
#include "vm/RegExpObject.h"
#include "vm/Shape.h"
#include "vm/Shape-inl.h"
namespace js {
2011-11-14 21:03:50 +00:00
inline
Bindings::Bindings()
: callObjShape_(NULL), bindingArrayAndFlag_(TEMPORARY_STORAGE_BIT), numArgs_(0), numVars_(0)
2011-11-14 21:03:50 +00:00
{}
inline
AliasedFormalIter::AliasedFormalIter(js::UnrootedScript script)
: begin_(script->bindings.bindingArray()),
p_(begin_),
end_(begin_ + (script->funHasAnyAliasedFormal ? script->bindings.numArgs() : 0)),
slot_(CallObject::RESERVED_SLOTS)
{
settle();
}
extern void
CurrentScriptFileLineOriginSlow(JSContext *cx, const char **file, unsigned *linenop, JSPrincipals **origin);
inline void
CurrentScriptFileLineOrigin(JSContext *cx, const char **file, unsigned *linenop, JSPrincipals **origin,
LineOption opt = NOT_CALLED_FROM_JSOP_EVAL)
{
if (opt == CALLED_FROM_JSOP_EVAL) {
AutoAssertNoGC nogc;
JS_ASSERT(JSOp(*cx->regs().pc) == JSOP_EVAL);
JS_ASSERT(*(cx->regs().pc + JSOP_EVAL_LENGTH) == JSOP_LINENO);
UnrootedScript script = cx->fp()->script();
*file = script->filename;
*linenop = GET_UINT16(cx->regs().pc + JSOP_EVAL_LENGTH);
*origin = script->originPrincipals;
return;
}
CurrentScriptFileLineOriginSlow(cx, file, linenop, origin);
}
inline void
ScriptCounts::destroy(FreeOp *fop)
{
fop->free_(pcCountsVector);
fop->delete_(ionCounts);
}
inline void
MarkScriptFilename(JSRuntime *rt, const char *filename)
{
/*
* As an invariant, a ScriptFilenameEntry should not be 'marked' outside of
* a GC. Since SweepScriptFilenames is only called during a full gc,
* to preserve this invariant, only mark during a full gc.
*/
if (rt->gcIsFull)
ScriptFilenameEntry::fromFilename(filename)->marked = true;
}
inline void
MarkScriptBytecode(JSRuntime *rt, const jsbytecode *bytecode)
{
/*
* As an invariant, a ScriptBytecodeEntry should not be 'marked' outside of
* a GC. Since SweepScriptBytecodes is only called during a full gc,
* to preserve this invariant, only mark during a full gc.
*/
if (rt->gcIsFull)
SharedScriptData::fromBytecode(bytecode)->marked = true;
}
void
SetFrameArgumentsObject(JSContext *cx, AbstractFramePtr frame,
HandleScript script, JSObject *argsobj);
} // namespace js
2009-09-10 14:22:20 +00:00
inline void
JSScript::setFunction(JSFunction *fun)
{
function_ = fun;
}
2009-09-10 14:22:20 +00:00
inline JSFunction *
JSScript::getFunction(size_t index)
{
JSObject *funobj = getObject(index);
JS_ASSERT(funobj->isFunction() && funobj->toFunction()->isInterpreted());
return funobj->toFunction();
2009-09-10 14:22:20 +00:00
}
inline JSFunction *
JSScript::getCallerFunction()
{
JS_ASSERT(savedCallerFun);
return getFunction(0);
}
inline js::RegExpObject *
2009-09-10 14:22:20 +00:00
JSScript::getRegExp(size_t index)
{
js::ObjectArray *arr = regexps();
JS_ASSERT(uint32_t(index) < arr->length);
JSObject *obj = arr->vector[index];
JS_ASSERT(obj->isRegExp());
return (js::RegExpObject *) obj;
}
inline bool
JSScript::isEmpty() const
{
if (length > 3)
return false;
jsbytecode *pc = code;
if (noScriptRval && JSOp(*pc) == JSOP_FALSE)
++pc;
return JSOp(*pc) == JSOP_STOP;
}
inline js::GlobalObject &
JSScript::global() const
{
/*
* A JSScript always marks its compartment's global (via bindings) so we
* can assert that maybeGlobal is non-null here.
*/
return *compartment()->maybeGlobal();
}
#ifdef JS_METHODJIT
inline bool
JSScript::ensureHasMJITInfo(JSContext *cx)
{
if (mJITInfo)
return true;
mJITInfo = cx->new_<JITScriptSet>();
return mJITInfo != NULL;
}
inline void
JSScript::destroyMJITInfo(js::FreeOp *fop)
{
fop->delete_(mJITInfo);
mJITInfo = NULL;
}
#endif /* JS_METHODJIT */
inline void
JSScript::writeBarrierPre(js::UnrootedScript script)
{
#ifdef JSGC_INCREMENTAL
if (!script)
return;
JS::Zone *zone = script->zone();
if (zone->needsBarrier()) {
JS_ASSERT(!zone->rt->isHeapBusy());
js::UnrootedScript tmp = script;
MarkScriptUnbarriered(zone->barrierTracer(), &tmp, "write barrier");
JS_ASSERT(tmp == script);
}
#endif
}
inline void
JSScript::writeBarrierPost(js::UnrootedScript script, void *addr)
{
}
inline JSPrincipals *
JSScript::principals()
{
return compartment()->principals;
}
#endif /* jsscriptinlines_h___ */