2000-04-05 06:05:57 +00:00
|
|
|
// -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*-
|
|
|
|
//
|
|
|
|
// The contents of this file are subject to the Netscape Public
|
|
|
|
// License Version 1.1 (the "License"); you may not use this file
|
|
|
|
// except in compliance with the License. You may obtain a copy of
|
|
|
|
// the License at http://www.mozilla.org/NPL/
|
|
|
|
//
|
|
|
|
// Software distributed under the License is distributed on an "AS
|
|
|
|
// IS" basis, WITHOUT WARRANTY OF ANY KIND, either express oqr
|
|
|
|
// implied. See the License for the specific language governing
|
|
|
|
// rights and limitations under the License.
|
|
|
|
//
|
|
|
|
// The Original Code is the JavaScript 2 Prototype.
|
|
|
|
//
|
|
|
|
// The Initial Developer of the Original Code is Netscape
|
|
|
|
// Communications Corporation. Portions created by Netscape are
|
2000-04-11 03:07:39 +00:00
|
|
|
// Copyright (C) 2000 Netscape Communications Corporation. All
|
2000-04-05 06:05:57 +00:00
|
|
|
// Rights Reserved.
|
|
|
|
|
|
|
|
#ifndef interpreter_h
|
|
|
|
#define interpreter_h
|
|
|
|
|
2000-04-18 00:17:34 +00:00
|
|
|
#include "utilities.h"
|
|
|
|
#include "jstypes.h"
|
2000-04-29 00:23:06 +00:00
|
|
|
#include "vmtypes.h"
|
2000-04-05 06:05:57 +00:00
|
|
|
#include "icodegenerator.h"
|
2000-04-21 00:04:14 +00:00
|
|
|
#include "gc_allocator.h"
|
2000-04-05 06:05:57 +00:00
|
|
|
|
2000-04-26 05:29:35 +00:00
|
|
|
namespace JavaScript {
|
|
|
|
namespace Interpreter {
|
|
|
|
|
2000-04-18 21:51:45 +00:00
|
|
|
using namespace ICG;
|
|
|
|
using namespace JSTypes;
|
2000-04-21 00:04:14 +00:00
|
|
|
|
2000-04-29 00:23:06 +00:00
|
|
|
struct Activation;
|
|
|
|
|
2000-04-26 05:29:35 +00:00
|
|
|
struct Linkage;
|
2000-07-13 00:14:54 +00:00
|
|
|
|
2000-04-21 00:04:14 +00:00
|
|
|
class Context : public gc_base {
|
2000-06-16 01:36:59 +00:00
|
|
|
void initContext();
|
2000-04-21 00:04:14 +00:00
|
|
|
public:
|
2000-04-29 14:14:28 +00:00
|
|
|
explicit Context(World& world, JSScope* aGlobal)
|
2001-01-11 00:03:05 +00:00
|
|
|
: mWorld(world), mGlobal(aGlobal), mLinkage(0), mActivation(0), mCurrentClosure(0) { initContext(); }
|
2000-04-21 00:04:14 +00:00
|
|
|
|
2000-04-29 14:44:42 +00:00
|
|
|
World& getWorld() { return mWorld; }
|
|
|
|
JSScope* getGlobalObject() { return mGlobal; }
|
|
|
|
InstructionIterator getPC() { return mPC; }
|
2000-04-29 00:23:06 +00:00
|
|
|
|
2000-04-29 14:44:42 +00:00
|
|
|
JSValues& getRegisters();
|
|
|
|
ICodeModule* getICode();
|
2000-04-29 00:23:06 +00:00
|
|
|
|
2000-05-12 01:17:32 +00:00
|
|
|
enum Event {
|
|
|
|
EV_NONE = 0x0000,
|
|
|
|
EV_STEP = 0x0001,
|
|
|
|
EV_THROW = 0x0002,
|
2000-06-23 22:27:17 +00:00
|
|
|
EV_DEBUG = 0x0004,
|
2000-05-12 01:17:32 +00:00
|
|
|
EV_ALL = 0xffff
|
|
|
|
};
|
|
|
|
|
2000-04-26 05:29:35 +00:00
|
|
|
class Listener {
|
|
|
|
public:
|
2000-05-12 01:17:32 +00:00
|
|
|
virtual void listen(Context *context, Event event) = 0;
|
2000-04-26 05:29:35 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
void addListener(Listener* listener);
|
|
|
|
void removeListener(Listener* listener);
|
|
|
|
|
|
|
|
class Frame {
|
|
|
|
public:
|
|
|
|
virtual Frame* getNext() = 0;
|
2000-04-29 00:23:06 +00:00
|
|
|
virtual void getState(InstructionIterator& pc, JSValues*& registers,
|
|
|
|
ICodeModule*& iCode) = 0;
|
2000-04-26 05:29:35 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
Frame* getFrames();
|
|
|
|
|
2000-04-26 01:42:00 +00:00
|
|
|
JSValue interpret(ICodeModule* iCode, const JSValues& args);
|
2000-05-19 17:41:10 +00:00
|
|
|
void doCall(JSFunction *target, Instruction *pc);
|
2000-04-21 00:04:14 +00:00
|
|
|
|
2000-08-04 20:28:35 +00:00
|
|
|
ICodeModule* compileFunction(const String &source);
|
2000-07-11 23:49:20 +00:00
|
|
|
ICodeModule* genCode(StmtNode *p, const String &fileName);
|
|
|
|
JSValue readEvalFile(FILE* in, const String& fileName);
|
|
|
|
|
2001-01-19 23:56:37 +00:00
|
|
|
ICodeModule* loadClass(const char *fileName);
|
2000-10-18 23:37:44 +00:00
|
|
|
|
2001-01-11 00:03:05 +00:00
|
|
|
const JSValue findBinaryOverride(JSValue &operand1, JSValue &operand2, ExprNode::Kind op);
|
2000-07-13 00:14:54 +00:00
|
|
|
|
2001-02-02 01:04:22 +00:00
|
|
|
JSType *findType(const StringAtom& typeName);
|
|
|
|
JSType *extractType(ExprNode *t);
|
|
|
|
JSType *getParameterType(FunctionDefinition &function, int index);
|
|
|
|
|
2000-04-26 05:29:35 +00:00
|
|
|
private:
|
2000-05-12 01:17:32 +00:00
|
|
|
void broadcast(Event event);
|
2000-07-13 00:14:54 +00:00
|
|
|
void initOperatorsPackage();
|
2000-09-02 01:01:04 +00:00
|
|
|
bool hasNamedArguments(ArgumentList &args);
|
2000-04-26 05:29:35 +00:00
|
|
|
|
2000-04-21 00:04:14 +00:00
|
|
|
private:
|
2000-04-26 01:42:00 +00:00
|
|
|
World& mWorld;
|
2000-04-29 14:14:28 +00:00
|
|
|
JSScope* mGlobal;
|
2000-04-26 05:29:35 +00:00
|
|
|
Linkage* mLinkage;
|
2000-05-12 01:17:32 +00:00
|
|
|
typedef std::vector<Listener*, gc_allocator<Listener*> > ListenerList;
|
|
|
|
typedef ListenerList::iterator ListenerIterator;
|
|
|
|
ListenerList mListeners;
|
2000-04-29 00:23:06 +00:00
|
|
|
Activation* mActivation;
|
2000-12-08 23:55:39 +00:00
|
|
|
ICodeModule* mICode;
|
2000-12-30 01:08:31 +00:00
|
|
|
JSClosure* mCurrentClosure;
|
2000-07-13 00:14:54 +00:00
|
|
|
|
2000-04-29 14:44:42 +00:00
|
|
|
InstructionIterator mPC;
|
2000-07-13 00:14:54 +00:00
|
|
|
|
2000-04-26 05:29:35 +00:00
|
|
|
}; /* class Context */
|
|
|
|
|
2000-12-08 23:55:39 +00:00
|
|
|
/**
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
struct Handler: public gc_base {
|
|
|
|
Handler(Label *catchLabel, Label *finallyLabel)
|
|
|
|
: catchTarget(catchLabel), finallyTarget(finallyLabel) {}
|
|
|
|
Label *catchTarget;
|
|
|
|
Label *finallyTarget;
|
|
|
|
};
|
|
|
|
typedef std::vector<Handler *> CatchStack;
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Represents the current function's invocation state.
|
|
|
|
*/
|
|
|
|
struct Activation : public JSObject {
|
|
|
|
JSValues mRegisters;
|
|
|
|
CatchStack catchStack;
|
|
|
|
|
|
|
|
Activation(uint32 highRegister, const JSValues& args)
|
|
|
|
: mRegisters(highRegister + 1)
|
|
|
|
{
|
|
|
|
// copy arg list to initial registers.
|
|
|
|
JSValues::iterator dest = mRegisters.begin();
|
|
|
|
for (JSValues::const_iterator src = args.begin(),
|
|
|
|
end = args.end(); src != end; ++src, ++dest) {
|
|
|
|
*dest = *src;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
Activation(uint32 highRegister, Activation* caller, const JSValue thisArg,
|
|
|
|
const ArgumentList* list)
|
|
|
|
: mRegisters(highRegister + 1)
|
|
|
|
{
|
|
|
|
// copy caller's parameter list to initial registers.
|
|
|
|
JSValues::iterator dest = mRegisters.begin();
|
|
|
|
*dest++ = thisArg;
|
2001-01-19 23:56:37 +00:00
|
|
|
if (list) {
|
|
|
|
const JSValues& params = caller->mRegisters;
|
|
|
|
for (ArgumentList::const_iterator src = list->begin(),
|
|
|
|
end = list->end(); src != end; ++src, ++dest) {
|
|
|
|
Register r = (*src).first.first;
|
|
|
|
if (r != NotARegister)
|
|
|
|
*dest = params[r];
|
|
|
|
else
|
|
|
|
*dest = JSValue(JSValue::uninitialized_tag);
|
|
|
|
}
|
2000-12-08 23:55:39 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// calling a binary operator, no 'this'
|
|
|
|
Activation(uint32 highRegister, const JSValue thisArg, const JSValue arg1, const JSValue arg2)
|
|
|
|
: mRegisters(highRegister + 1)
|
|
|
|
{
|
|
|
|
mRegisters[0] = thisArg;
|
|
|
|
mRegisters[1] = arg1;
|
|
|
|
mRegisters[2] = arg2;
|
|
|
|
}
|
|
|
|
|
|
|
|
// calling a getter function, no arguments
|
|
|
|
Activation(uint32 highRegister, const JSValue thisArg)
|
|
|
|
: mRegisters(highRegister + 1)
|
|
|
|
{
|
|
|
|
mRegisters[0] = thisArg;
|
|
|
|
}
|
|
|
|
|
|
|
|
// calling a setter function, 1 argument
|
|
|
|
Activation(uint32 highRegister, const JSValue thisArg, const JSValue arg)
|
|
|
|
: mRegisters(highRegister + 1)
|
|
|
|
{
|
|
|
|
mRegisters[0] = thisArg;
|
|
|
|
mRegisters[1] = arg;
|
|
|
|
}
|
|
|
|
|
|
|
|
}; /* struct Activation */
|
|
|
|
|
2000-04-26 05:29:35 +00:00
|
|
|
} /* namespace Interpreter */
|
2000-04-18 21:51:45 +00:00
|
|
|
} /* namespace JavaScript */
|
2000-04-05 06:05:57 +00:00
|
|
|
|
|
|
|
#endif /* interpreter_h */
|