ea77a8edc0
R=ulan@chromium.org Review URL: https://chromiumcodereview.appspot.com/23702039 git-svn-id: http://v8.googlecode.com/svn/branches/bleeding_edge@16709 ce2b1a6d-e550-0410-aec6-3dcde31c8c00
3264 lines
98 KiB
C++
3264 lines
98 KiB
C++
// Copyright 2012 the V8 project authors. All rights reserved.
|
|
// Redistribution and use in source and binary forms, with or without
|
|
// modification, are permitted provided that the following conditions are
|
|
// met:
|
|
//
|
|
// * Redistributions of source code must retain the above copyright
|
|
// notice, this list of conditions and the following disclaimer.
|
|
// * Redistributions in binary form must reproduce the above
|
|
// copyright notice, this list of conditions and the following
|
|
// disclaimer in the documentation and/or other materials provided
|
|
// with the distribution.
|
|
// * Neither the name of Google Inc. nor the names of its
|
|
// contributors may be used to endorse or promote products derived
|
|
// from this software without specific prior written permission.
|
|
//
|
|
// THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
|
|
// "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
|
|
// LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
|
|
// A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
|
|
// OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
|
|
// SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
|
|
// LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
|
|
// DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
|
|
// THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
|
|
// (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
|
|
// OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
|
|
|
#ifndef V8_AST_H_
|
|
#define V8_AST_H_
|
|
|
|
#include "v8.h"
|
|
|
|
#include "assembler.h"
|
|
#include "factory.h"
|
|
#include "isolate.h"
|
|
#include "jsregexp.h"
|
|
#include "list-inl.h"
|
|
#include "runtime.h"
|
|
#include "small-pointer-list.h"
|
|
#include "smart-pointers.h"
|
|
#include "token.h"
|
|
#include "type-info.h" // TODO(rossberg): this should eventually be removed
|
|
#include "types.h"
|
|
#include "utils.h"
|
|
#include "variables.h"
|
|
#include "interface.h"
|
|
#include "zone-inl.h"
|
|
|
|
namespace v8 {
|
|
namespace internal {
|
|
|
|
// The abstract syntax tree is an intermediate, light-weight
|
|
// representation of the parsed JavaScript code suitable for
|
|
// compilation to native code.
|
|
|
|
// Nodes are allocated in a separate zone, which allows faster
|
|
// allocation and constant-time deallocation of the entire syntax
|
|
// tree.
|
|
|
|
|
|
// ----------------------------------------------------------------------------
|
|
// Nodes of the abstract syntax tree. Only concrete classes are
|
|
// enumerated here.
|
|
|
|
#define DECLARATION_NODE_LIST(V) \
|
|
V(VariableDeclaration) \
|
|
V(FunctionDeclaration) \
|
|
V(ModuleDeclaration) \
|
|
V(ImportDeclaration) \
|
|
V(ExportDeclaration) \
|
|
|
|
#define MODULE_NODE_LIST(V) \
|
|
V(ModuleLiteral) \
|
|
V(ModuleVariable) \
|
|
V(ModulePath) \
|
|
V(ModuleUrl)
|
|
|
|
#define STATEMENT_NODE_LIST(V) \
|
|
V(Block) \
|
|
V(ModuleStatement) \
|
|
V(ExpressionStatement) \
|
|
V(EmptyStatement) \
|
|
V(IfStatement) \
|
|
V(ContinueStatement) \
|
|
V(BreakStatement) \
|
|
V(ReturnStatement) \
|
|
V(WithStatement) \
|
|
V(SwitchStatement) \
|
|
V(DoWhileStatement) \
|
|
V(WhileStatement) \
|
|
V(ForStatement) \
|
|
V(ForInStatement) \
|
|
V(ForOfStatement) \
|
|
V(TryCatchStatement) \
|
|
V(TryFinallyStatement) \
|
|
V(DebuggerStatement)
|
|
|
|
#define EXPRESSION_NODE_LIST(V) \
|
|
V(FunctionLiteral) \
|
|
V(SharedFunctionInfoLiteral) \
|
|
V(Conditional) \
|
|
V(VariableProxy) \
|
|
V(Literal) \
|
|
V(RegExpLiteral) \
|
|
V(ObjectLiteral) \
|
|
V(ArrayLiteral) \
|
|
V(Assignment) \
|
|
V(Yield) \
|
|
V(Throw) \
|
|
V(Property) \
|
|
V(Call) \
|
|
V(CallNew) \
|
|
V(CallRuntime) \
|
|
V(UnaryOperation) \
|
|
V(CountOperation) \
|
|
V(BinaryOperation) \
|
|
V(CompareOperation) \
|
|
V(ThisFunction)
|
|
|
|
#define AST_NODE_LIST(V) \
|
|
DECLARATION_NODE_LIST(V) \
|
|
MODULE_NODE_LIST(V) \
|
|
STATEMENT_NODE_LIST(V) \
|
|
EXPRESSION_NODE_LIST(V)
|
|
|
|
// Forward declarations
|
|
class AstConstructionVisitor;
|
|
template<class> class AstNodeFactory;
|
|
class AstVisitor;
|
|
class Declaration;
|
|
class Module;
|
|
class BreakableStatement;
|
|
class Expression;
|
|
class IterationStatement;
|
|
class MaterializedLiteral;
|
|
class Statement;
|
|
class TargetCollector;
|
|
class TypeFeedbackOracle;
|
|
|
|
class RegExpAlternative;
|
|
class RegExpAssertion;
|
|
class RegExpAtom;
|
|
class RegExpBackReference;
|
|
class RegExpCapture;
|
|
class RegExpCharacterClass;
|
|
class RegExpCompiler;
|
|
class RegExpDisjunction;
|
|
class RegExpEmpty;
|
|
class RegExpLookahead;
|
|
class RegExpQuantifier;
|
|
class RegExpText;
|
|
|
|
#define DEF_FORWARD_DECLARATION(type) class type;
|
|
AST_NODE_LIST(DEF_FORWARD_DECLARATION)
|
|
#undef DEF_FORWARD_DECLARATION
|
|
|
|
|
|
// Typedef only introduced to avoid unreadable code.
|
|
// Please do appreciate the required space in "> >".
|
|
typedef ZoneList<Handle<String> > ZoneStringList;
|
|
typedef ZoneList<Handle<Object> > ZoneObjectList;
|
|
|
|
|
|
#define DECLARE_NODE_TYPE(type) \
|
|
virtual void Accept(AstVisitor* v) V8_OVERRIDE; \
|
|
virtual AstNode::NodeType node_type() const V8_FINAL V8_OVERRIDE { \
|
|
return AstNode::k##type; \
|
|
} \
|
|
template<class> friend class AstNodeFactory;
|
|
|
|
|
|
enum AstPropertiesFlag {
|
|
kDontInline,
|
|
kDontSelfOptimize,
|
|
kDontSoftInline,
|
|
kDontCache
|
|
};
|
|
|
|
|
|
class AstProperties V8_FINAL BASE_EMBEDDED {
|
|
public:
|
|
class Flags : public EnumSet<AstPropertiesFlag, int> {};
|
|
|
|
AstProperties() : node_count_(0) { }
|
|
|
|
Flags* flags() { return &flags_; }
|
|
int node_count() { return node_count_; }
|
|
void add_node_count(int count) { node_count_ += count; }
|
|
|
|
private:
|
|
Flags flags_;
|
|
int node_count_;
|
|
};
|
|
|
|
|
|
class AstNode: public ZoneObject {
|
|
public:
|
|
#define DECLARE_TYPE_ENUM(type) k##type,
|
|
enum NodeType {
|
|
AST_NODE_LIST(DECLARE_TYPE_ENUM)
|
|
kInvalid = -1
|
|
};
|
|
#undef DECLARE_TYPE_ENUM
|
|
|
|
void* operator new(size_t size, Zone* zone) {
|
|
return zone->New(static_cast<int>(size));
|
|
}
|
|
|
|
AstNode() {}
|
|
|
|
virtual ~AstNode() {}
|
|
|
|
virtual void Accept(AstVisitor* v) = 0;
|
|
virtual NodeType node_type() const = 0;
|
|
|
|
// Type testing & conversion functions overridden by concrete subclasses.
|
|
#define DECLARE_NODE_FUNCTIONS(type) \
|
|
bool Is##type() { return node_type() == AstNode::k##type; } \
|
|
type* As##type() { return Is##type() ? reinterpret_cast<type*>(this) : NULL; }
|
|
AST_NODE_LIST(DECLARE_NODE_FUNCTIONS)
|
|
#undef DECLARE_NODE_FUNCTIONS
|
|
|
|
virtual TargetCollector* AsTargetCollector() { return NULL; }
|
|
virtual BreakableStatement* AsBreakableStatement() { return NULL; }
|
|
virtual IterationStatement* AsIterationStatement() { return NULL; }
|
|
virtual MaterializedLiteral* AsMaterializedLiteral() { return NULL; }
|
|
|
|
protected:
|
|
static int GetNextId(Isolate* isolate) {
|
|
return ReserveIdRange(isolate, 1);
|
|
}
|
|
|
|
static int ReserveIdRange(Isolate* isolate, int n) {
|
|
int tmp = isolate->ast_node_id();
|
|
isolate->set_ast_node_id(tmp + n);
|
|
return tmp;
|
|
}
|
|
|
|
// Some nodes re-use bailout IDs for type feedback.
|
|
static TypeFeedbackId reuse(BailoutId id) {
|
|
return TypeFeedbackId(id.ToInt());
|
|
}
|
|
|
|
|
|
private:
|
|
// Hidden to prevent accidental usage. It would have to load the
|
|
// current zone from the TLS.
|
|
void* operator new(size_t size);
|
|
|
|
friend class CaseClause; // Generates AST IDs.
|
|
};
|
|
|
|
|
|
class Statement : public AstNode {
|
|
public:
|
|
Statement() : statement_pos_(RelocInfo::kNoPosition) {}
|
|
|
|
bool IsEmpty() { return AsEmptyStatement() != NULL; }
|
|
virtual bool IsJump() const { return false; }
|
|
|
|
void set_statement_pos(int statement_pos) { statement_pos_ = statement_pos; }
|
|
int statement_pos() const { return statement_pos_; }
|
|
|
|
private:
|
|
int statement_pos_;
|
|
};
|
|
|
|
|
|
class SmallMapList V8_FINAL {
|
|
public:
|
|
SmallMapList() {}
|
|
SmallMapList(int capacity, Zone* zone) : list_(capacity, zone) {}
|
|
|
|
void Reserve(int capacity, Zone* zone) { list_.Reserve(capacity, zone); }
|
|
void Clear() { list_.Clear(); }
|
|
void Sort() { list_.Sort(); }
|
|
|
|
bool is_empty() const { return list_.is_empty(); }
|
|
int length() const { return list_.length(); }
|
|
|
|
void AddMapIfMissing(Handle<Map> map, Zone* zone) {
|
|
Map* updated = map->CurrentMapForDeprecated();
|
|
if (updated == NULL) return;
|
|
map = Handle<Map>(updated);
|
|
for (int i = 0; i < length(); ++i) {
|
|
if (at(i).is_identical_to(map)) return;
|
|
}
|
|
Add(map, zone);
|
|
}
|
|
|
|
void FilterForPossibleTransitions(Map* root_map) {
|
|
for (int i = list_.length() - 1; i >= 0; i--) {
|
|
if (at(i)->FindRootMap() != root_map) {
|
|
list_.RemoveElement(list_.at(i));
|
|
}
|
|
}
|
|
}
|
|
|
|
void Add(Handle<Map> handle, Zone* zone) {
|
|
list_.Add(handle.location(), zone);
|
|
}
|
|
|
|
Handle<Map> at(int i) const {
|
|
return Handle<Map>(list_.at(i));
|
|
}
|
|
|
|
Handle<Map> first() const { return at(0); }
|
|
Handle<Map> last() const { return at(length() - 1); }
|
|
|
|
private:
|
|
// The list stores pointers to Map*, that is Map**, so it's GC safe.
|
|
SmallPointerList<Map*> list_;
|
|
|
|
DISALLOW_COPY_AND_ASSIGN(SmallMapList);
|
|
};
|
|
|
|
|
|
class Expression : public AstNode {
|
|
public:
|
|
enum Context {
|
|
// Not assigned a context yet, or else will not be visited during
|
|
// code generation.
|
|
kUninitialized,
|
|
// Evaluated for its side effects.
|
|
kEffect,
|
|
// Evaluated for its value (and side effects).
|
|
kValue,
|
|
// Evaluated for control flow (and side effects).
|
|
kTest
|
|
};
|
|
|
|
virtual int position() const {
|
|
UNREACHABLE();
|
|
return 0;
|
|
}
|
|
|
|
virtual bool IsValidLeftHandSide() { return false; }
|
|
|
|
// Helpers for ToBoolean conversion.
|
|
virtual bool ToBooleanIsTrue() { return false; }
|
|
virtual bool ToBooleanIsFalse() { return false; }
|
|
|
|
// Symbols that cannot be parsed as array indices are considered property
|
|
// names. We do not treat symbols that can be array indexes as property
|
|
// names because [] for string objects is handled only by keyed ICs.
|
|
virtual bool IsPropertyName() { return false; }
|
|
|
|
// True iff the result can be safely overwritten (to avoid allocation).
|
|
// False for operations that can return one of their operands.
|
|
virtual bool ResultOverwriteAllowed() { return false; }
|
|
|
|
// True iff the expression is a literal represented as a smi.
|
|
bool IsSmiLiteral();
|
|
|
|
// True iff the expression is a string literal.
|
|
bool IsStringLiteral();
|
|
|
|
// True iff the expression is the null literal.
|
|
bool IsNullLiteral();
|
|
|
|
// True if we can prove that the expression is the undefined literal.
|
|
bool IsUndefinedLiteral(Isolate* isolate);
|
|
|
|
// Expression type bounds
|
|
Bounds bounds() { return bounds_; }
|
|
void set_bounds(Bounds bounds) { bounds_ = bounds; }
|
|
|
|
// Type feedback information for assignments and properties.
|
|
virtual bool IsMonomorphic() {
|
|
UNREACHABLE();
|
|
return false;
|
|
}
|
|
virtual SmallMapList* GetReceiverTypes() {
|
|
UNREACHABLE();
|
|
return NULL;
|
|
}
|
|
virtual KeyedAccessStoreMode GetStoreMode() {
|
|
UNREACHABLE();
|
|
return STANDARD_STORE;
|
|
}
|
|
|
|
// TODO(rossberg): this should move to its own AST node eventually.
|
|
virtual void RecordToBooleanTypeFeedback(TypeFeedbackOracle* oracle);
|
|
byte to_boolean_types() const { return to_boolean_types_; }
|
|
|
|
BailoutId id() const { return id_; }
|
|
TypeFeedbackId test_id() const { return test_id_; }
|
|
|
|
protected:
|
|
explicit Expression(Isolate* isolate)
|
|
: bounds_(Bounds::Unbounded(isolate)),
|
|
id_(GetNextId(isolate)),
|
|
test_id_(GetNextId(isolate)) {}
|
|
void set_to_boolean_types(byte types) { to_boolean_types_ = types; }
|
|
|
|
private:
|
|
Bounds bounds_;
|
|
byte to_boolean_types_;
|
|
|
|
const BailoutId id_;
|
|
const TypeFeedbackId test_id_;
|
|
};
|
|
|
|
|
|
class BreakableStatement : public Statement {
|
|
public:
|
|
enum BreakableType {
|
|
TARGET_FOR_ANONYMOUS,
|
|
TARGET_FOR_NAMED_ONLY
|
|
};
|
|
|
|
// The labels associated with this statement. May be NULL;
|
|
// if it is != NULL, guaranteed to contain at least one entry.
|
|
ZoneStringList* labels() const { return labels_; }
|
|
|
|
// Type testing & conversion.
|
|
virtual BreakableStatement* AsBreakableStatement() V8_FINAL V8_OVERRIDE {
|
|
return this;
|
|
}
|
|
|
|
// Code generation
|
|
Label* break_target() { return &break_target_; }
|
|
|
|
// Testers.
|
|
bool is_target_for_anonymous() const {
|
|
return breakable_type_ == TARGET_FOR_ANONYMOUS;
|
|
}
|
|
|
|
BailoutId EntryId() const { return entry_id_; }
|
|
BailoutId ExitId() const { return exit_id_; }
|
|
|
|
protected:
|
|
BreakableStatement(
|
|
Isolate* isolate, ZoneStringList* labels, BreakableType breakable_type)
|
|
: labels_(labels),
|
|
breakable_type_(breakable_type),
|
|
entry_id_(GetNextId(isolate)),
|
|
exit_id_(GetNextId(isolate)) {
|
|
ASSERT(labels == NULL || labels->length() > 0);
|
|
}
|
|
|
|
|
|
private:
|
|
ZoneStringList* labels_;
|
|
BreakableType breakable_type_;
|
|
Label break_target_;
|
|
const BailoutId entry_id_;
|
|
const BailoutId exit_id_;
|
|
};
|
|
|
|
|
|
class Block V8_FINAL : public BreakableStatement {
|
|
public:
|
|
DECLARE_NODE_TYPE(Block)
|
|
|
|
void AddStatement(Statement* statement, Zone* zone) {
|
|
statements_.Add(statement, zone);
|
|
}
|
|
|
|
ZoneList<Statement*>* statements() { return &statements_; }
|
|
bool is_initializer_block() const { return is_initializer_block_; }
|
|
|
|
virtual bool IsJump() const V8_OVERRIDE {
|
|
return !statements_.is_empty() && statements_.last()->IsJump()
|
|
&& labels() == NULL; // Good enough as an approximation...
|
|
}
|
|
|
|
Scope* scope() const { return scope_; }
|
|
void set_scope(Scope* scope) { scope_ = scope; }
|
|
|
|
protected:
|
|
Block(Isolate* isolate,
|
|
ZoneStringList* labels,
|
|
int capacity,
|
|
bool is_initializer_block,
|
|
Zone* zone)
|
|
: BreakableStatement(isolate, labels, TARGET_FOR_NAMED_ONLY),
|
|
statements_(capacity, zone),
|
|
is_initializer_block_(is_initializer_block),
|
|
scope_(NULL) {
|
|
}
|
|
|
|
private:
|
|
ZoneList<Statement*> statements_;
|
|
bool is_initializer_block_;
|
|
Scope* scope_;
|
|
};
|
|
|
|
|
|
class Declaration : public AstNode {
|
|
public:
|
|
VariableProxy* proxy() const { return proxy_; }
|
|
VariableMode mode() const { return mode_; }
|
|
Scope* scope() const { return scope_; }
|
|
virtual InitializationFlag initialization() const = 0;
|
|
virtual bool IsInlineable() const;
|
|
|
|
protected:
|
|
Declaration(VariableProxy* proxy,
|
|
VariableMode mode,
|
|
Scope* scope)
|
|
: proxy_(proxy),
|
|
mode_(mode),
|
|
scope_(scope) {
|
|
ASSERT(IsDeclaredVariableMode(mode));
|
|
}
|
|
|
|
private:
|
|
VariableProxy* proxy_;
|
|
VariableMode mode_;
|
|
|
|
// Nested scope from which the declaration originated.
|
|
Scope* scope_;
|
|
};
|
|
|
|
|
|
class VariableDeclaration V8_FINAL : public Declaration {
|
|
public:
|
|
DECLARE_NODE_TYPE(VariableDeclaration)
|
|
|
|
virtual InitializationFlag initialization() const V8_OVERRIDE {
|
|
return mode() == VAR ? kCreatedInitialized : kNeedsInitialization;
|
|
}
|
|
|
|
protected:
|
|
VariableDeclaration(VariableProxy* proxy,
|
|
VariableMode mode,
|
|
Scope* scope)
|
|
: Declaration(proxy, mode, scope) {
|
|
}
|
|
};
|
|
|
|
|
|
class FunctionDeclaration V8_FINAL : public Declaration {
|
|
public:
|
|
DECLARE_NODE_TYPE(FunctionDeclaration)
|
|
|
|
FunctionLiteral* fun() const { return fun_; }
|
|
virtual InitializationFlag initialization() const V8_OVERRIDE {
|
|
return kCreatedInitialized;
|
|
}
|
|
virtual bool IsInlineable() const V8_OVERRIDE;
|
|
|
|
protected:
|
|
FunctionDeclaration(VariableProxy* proxy,
|
|
VariableMode mode,
|
|
FunctionLiteral* fun,
|
|
Scope* scope)
|
|
: Declaration(proxy, mode, scope),
|
|
fun_(fun) {
|
|
// At the moment there are no "const functions" in JavaScript...
|
|
ASSERT(mode == VAR || mode == LET);
|
|
ASSERT(fun != NULL);
|
|
}
|
|
|
|
private:
|
|
FunctionLiteral* fun_;
|
|
};
|
|
|
|
|
|
class ModuleDeclaration V8_FINAL : public Declaration {
|
|
public:
|
|
DECLARE_NODE_TYPE(ModuleDeclaration)
|
|
|
|
Module* module() const { return module_; }
|
|
virtual InitializationFlag initialization() const V8_OVERRIDE {
|
|
return kCreatedInitialized;
|
|
}
|
|
|
|
protected:
|
|
ModuleDeclaration(VariableProxy* proxy,
|
|
Module* module,
|
|
Scope* scope)
|
|
: Declaration(proxy, MODULE, scope),
|
|
module_(module) {
|
|
}
|
|
|
|
private:
|
|
Module* module_;
|
|
};
|
|
|
|
|
|
class ImportDeclaration V8_FINAL : public Declaration {
|
|
public:
|
|
DECLARE_NODE_TYPE(ImportDeclaration)
|
|
|
|
Module* module() const { return module_; }
|
|
virtual InitializationFlag initialization() const V8_OVERRIDE {
|
|
return kCreatedInitialized;
|
|
}
|
|
|
|
protected:
|
|
ImportDeclaration(VariableProxy* proxy,
|
|
Module* module,
|
|
Scope* scope)
|
|
: Declaration(proxy, LET, scope),
|
|
module_(module) {
|
|
}
|
|
|
|
private:
|
|
Module* module_;
|
|
};
|
|
|
|
|
|
class ExportDeclaration V8_FINAL : public Declaration {
|
|
public:
|
|
DECLARE_NODE_TYPE(ExportDeclaration)
|
|
|
|
virtual InitializationFlag initialization() const V8_OVERRIDE {
|
|
return kCreatedInitialized;
|
|
}
|
|
|
|
protected:
|
|
ExportDeclaration(VariableProxy* proxy, Scope* scope)
|
|
: Declaration(proxy, LET, scope) {}
|
|
};
|
|
|
|
|
|
class Module : public AstNode {
|
|
public:
|
|
Interface* interface() const { return interface_; }
|
|
Block* body() const { return body_; }
|
|
|
|
protected:
|
|
explicit Module(Zone* zone)
|
|
: interface_(Interface::NewModule(zone)),
|
|
body_(NULL) {}
|
|
explicit Module(Interface* interface, Block* body = NULL)
|
|
: interface_(interface),
|
|
body_(body) {}
|
|
|
|
private:
|
|
Interface* interface_;
|
|
Block* body_;
|
|
};
|
|
|
|
|
|
class ModuleLiteral V8_FINAL : public Module {
|
|
public:
|
|
DECLARE_NODE_TYPE(ModuleLiteral)
|
|
|
|
protected:
|
|
ModuleLiteral(Block* body, Interface* interface) : Module(interface, body) {}
|
|
};
|
|
|
|
|
|
class ModuleVariable V8_FINAL : public Module {
|
|
public:
|
|
DECLARE_NODE_TYPE(ModuleVariable)
|
|
|
|
VariableProxy* proxy() const { return proxy_; }
|
|
|
|
protected:
|
|
inline explicit ModuleVariable(VariableProxy* proxy);
|
|
|
|
private:
|
|
VariableProxy* proxy_;
|
|
};
|
|
|
|
|
|
class ModulePath V8_FINAL : public Module {
|
|
public:
|
|
DECLARE_NODE_TYPE(ModulePath)
|
|
|
|
Module* module() const { return module_; }
|
|
Handle<String> name() const { return name_; }
|
|
|
|
protected:
|
|
ModulePath(Module* module, Handle<String> name, Zone* zone)
|
|
: Module(zone),
|
|
module_(module),
|
|
name_(name) {
|
|
}
|
|
|
|
private:
|
|
Module* module_;
|
|
Handle<String> name_;
|
|
};
|
|
|
|
|
|
class ModuleUrl V8_FINAL : public Module {
|
|
public:
|
|
DECLARE_NODE_TYPE(ModuleUrl)
|
|
|
|
Handle<String> url() const { return url_; }
|
|
|
|
protected:
|
|
ModuleUrl(Handle<String> url, Zone* zone)
|
|
: Module(zone), url_(url) {
|
|
}
|
|
|
|
private:
|
|
Handle<String> url_;
|
|
};
|
|
|
|
|
|
class ModuleStatement V8_FINAL : public Statement {
|
|
public:
|
|
DECLARE_NODE_TYPE(ModuleStatement)
|
|
|
|
VariableProxy* proxy() const { return proxy_; }
|
|
Block* body() const { return body_; }
|
|
|
|
protected:
|
|
ModuleStatement(VariableProxy* proxy, Block* body)
|
|
: proxy_(proxy),
|
|
body_(body) {
|
|
}
|
|
|
|
private:
|
|
VariableProxy* proxy_;
|
|
Block* body_;
|
|
};
|
|
|
|
|
|
class IterationStatement : public BreakableStatement {
|
|
public:
|
|
// Type testing & conversion.
|
|
virtual IterationStatement* AsIterationStatement() V8_FINAL V8_OVERRIDE {
|
|
return this;
|
|
}
|
|
|
|
Statement* body() const { return body_; }
|
|
|
|
BailoutId OsrEntryId() const { return osr_entry_id_; }
|
|
virtual BailoutId ContinueId() const = 0;
|
|
virtual BailoutId StackCheckId() const = 0;
|
|
|
|
// Code generation
|
|
Label* continue_target() { return &continue_target_; }
|
|
|
|
protected:
|
|
IterationStatement(Isolate* isolate, ZoneStringList* labels)
|
|
: BreakableStatement(isolate, labels, TARGET_FOR_ANONYMOUS),
|
|
body_(NULL),
|
|
osr_entry_id_(GetNextId(isolate)) {
|
|
}
|
|
|
|
void Initialize(Statement* body) {
|
|
body_ = body;
|
|
}
|
|
|
|
private:
|
|
Statement* body_;
|
|
Label continue_target_;
|
|
|
|
const BailoutId osr_entry_id_;
|
|
};
|
|
|
|
|
|
class DoWhileStatement V8_FINAL : public IterationStatement {
|
|
public:
|
|
DECLARE_NODE_TYPE(DoWhileStatement)
|
|
|
|
void Initialize(Expression* cond, Statement* body) {
|
|
IterationStatement::Initialize(body);
|
|
cond_ = cond;
|
|
}
|
|
|
|
Expression* cond() const { return cond_; }
|
|
|
|
// Position where condition expression starts. We need it to make
|
|
// the loop's condition a breakable location.
|
|
int condition_position() { return condition_position_; }
|
|
void set_condition_position(int pos) { condition_position_ = pos; }
|
|
|
|
virtual BailoutId ContinueId() const V8_OVERRIDE { return continue_id_; }
|
|
virtual BailoutId StackCheckId() const V8_OVERRIDE { return back_edge_id_; }
|
|
BailoutId BackEdgeId() const { return back_edge_id_; }
|
|
|
|
protected:
|
|
DoWhileStatement(Isolate* isolate, ZoneStringList* labels)
|
|
: IterationStatement(isolate, labels),
|
|
cond_(NULL),
|
|
condition_position_(-1),
|
|
continue_id_(GetNextId(isolate)),
|
|
back_edge_id_(GetNextId(isolate)) {
|
|
}
|
|
|
|
private:
|
|
Expression* cond_;
|
|
|
|
int condition_position_;
|
|
|
|
const BailoutId continue_id_;
|
|
const BailoutId back_edge_id_;
|
|
};
|
|
|
|
|
|
class WhileStatement V8_FINAL : public IterationStatement {
|
|
public:
|
|
DECLARE_NODE_TYPE(WhileStatement)
|
|
|
|
void Initialize(Expression* cond, Statement* body) {
|
|
IterationStatement::Initialize(body);
|
|
cond_ = cond;
|
|
}
|
|
|
|
Expression* cond() const { return cond_; }
|
|
bool may_have_function_literal() const {
|
|
return may_have_function_literal_;
|
|
}
|
|
void set_may_have_function_literal(bool value) {
|
|
may_have_function_literal_ = value;
|
|
}
|
|
|
|
virtual BailoutId ContinueId() const V8_OVERRIDE { return EntryId(); }
|
|
virtual BailoutId StackCheckId() const V8_OVERRIDE { return body_id_; }
|
|
BailoutId BodyId() const { return body_id_; }
|
|
|
|
protected:
|
|
WhileStatement(Isolate* isolate, ZoneStringList* labels)
|
|
: IterationStatement(isolate, labels),
|
|
cond_(NULL),
|
|
may_have_function_literal_(true),
|
|
body_id_(GetNextId(isolate)) {
|
|
}
|
|
|
|
private:
|
|
Expression* cond_;
|
|
|
|
// True if there is a function literal subexpression in the condition.
|
|
bool may_have_function_literal_;
|
|
|
|
const BailoutId body_id_;
|
|
};
|
|
|
|
|
|
class ForStatement V8_FINAL : public IterationStatement {
|
|
public:
|
|
DECLARE_NODE_TYPE(ForStatement)
|
|
|
|
void Initialize(Statement* init,
|
|
Expression* cond,
|
|
Statement* next,
|
|
Statement* body) {
|
|
IterationStatement::Initialize(body);
|
|
init_ = init;
|
|
cond_ = cond;
|
|
next_ = next;
|
|
}
|
|
|
|
Statement* init() const { return init_; }
|
|
Expression* cond() const { return cond_; }
|
|
Statement* next() const { return next_; }
|
|
|
|
bool may_have_function_literal() const {
|
|
return may_have_function_literal_;
|
|
}
|
|
void set_may_have_function_literal(bool value) {
|
|
may_have_function_literal_ = value;
|
|
}
|
|
|
|
virtual BailoutId ContinueId() const V8_OVERRIDE { return continue_id_; }
|
|
virtual BailoutId StackCheckId() const V8_OVERRIDE { return body_id_; }
|
|
BailoutId BodyId() const { return body_id_; }
|
|
|
|
bool is_fast_smi_loop() { return loop_variable_ != NULL; }
|
|
Variable* loop_variable() { return loop_variable_; }
|
|
void set_loop_variable(Variable* var) { loop_variable_ = var; }
|
|
|
|
protected:
|
|
ForStatement(Isolate* isolate, ZoneStringList* labels)
|
|
: IterationStatement(isolate, labels),
|
|
init_(NULL),
|
|
cond_(NULL),
|
|
next_(NULL),
|
|
may_have_function_literal_(true),
|
|
loop_variable_(NULL),
|
|
continue_id_(GetNextId(isolate)),
|
|
body_id_(GetNextId(isolate)) {
|
|
}
|
|
|
|
private:
|
|
Statement* init_;
|
|
Expression* cond_;
|
|
Statement* next_;
|
|
|
|
// True if there is a function literal subexpression in the condition.
|
|
bool may_have_function_literal_;
|
|
Variable* loop_variable_;
|
|
|
|
const BailoutId continue_id_;
|
|
const BailoutId body_id_;
|
|
};
|
|
|
|
|
|
class ForEachStatement : public IterationStatement {
|
|
public:
|
|
enum VisitMode {
|
|
ENUMERATE, // for (each in subject) body;
|
|
ITERATE // for (each of subject) body;
|
|
};
|
|
|
|
void Initialize(Expression* each, Expression* subject, Statement* body) {
|
|
IterationStatement::Initialize(body);
|
|
each_ = each;
|
|
subject_ = subject;
|
|
}
|
|
|
|
Expression* each() const { return each_; }
|
|
Expression* subject() const { return subject_; }
|
|
|
|
protected:
|
|
ForEachStatement(Isolate* isolate, ZoneStringList* labels)
|
|
: IterationStatement(isolate, labels),
|
|
each_(NULL),
|
|
subject_(NULL) {
|
|
}
|
|
|
|
private:
|
|
Expression* each_;
|
|
Expression* subject_;
|
|
};
|
|
|
|
|
|
class ForInStatement V8_FINAL : public ForEachStatement {
|
|
public:
|
|
DECLARE_NODE_TYPE(ForInStatement)
|
|
|
|
Expression* enumerable() const {
|
|
return subject();
|
|
}
|
|
|
|
TypeFeedbackId ForInFeedbackId() const { return reuse(PrepareId()); }
|
|
void RecordTypeFeedback(TypeFeedbackOracle* oracle);
|
|
enum ForInType { FAST_FOR_IN, SLOW_FOR_IN };
|
|
ForInType for_in_type() const { return for_in_type_; }
|
|
|
|
BailoutId BodyId() const { return body_id_; }
|
|
BailoutId PrepareId() const { return prepare_id_; }
|
|
virtual BailoutId ContinueId() const V8_OVERRIDE { return EntryId(); }
|
|
virtual BailoutId StackCheckId() const V8_OVERRIDE { return body_id_; }
|
|
|
|
protected:
|
|
ForInStatement(Isolate* isolate, ZoneStringList* labels)
|
|
: ForEachStatement(isolate, labels),
|
|
for_in_type_(SLOW_FOR_IN),
|
|
body_id_(GetNextId(isolate)),
|
|
prepare_id_(GetNextId(isolate)) {
|
|
}
|
|
|
|
ForInType for_in_type_;
|
|
const BailoutId body_id_;
|
|
const BailoutId prepare_id_;
|
|
};
|
|
|
|
|
|
class ForOfStatement V8_FINAL : public ForEachStatement {
|
|
public:
|
|
DECLARE_NODE_TYPE(ForOfStatement)
|
|
|
|
void Initialize(Expression* each,
|
|
Expression* subject,
|
|
Statement* body,
|
|
Expression* assign_iterator,
|
|
Expression* next_result,
|
|
Expression* result_done,
|
|
Expression* assign_each) {
|
|
ForEachStatement::Initialize(each, subject, body);
|
|
assign_iterator_ = assign_iterator;
|
|
next_result_ = next_result;
|
|
result_done_ = result_done;
|
|
assign_each_ = assign_each;
|
|
}
|
|
|
|
Expression* iterable() const {
|
|
return subject();
|
|
}
|
|
|
|
// var iterator = iterable;
|
|
Expression* assign_iterator() const {
|
|
return assign_iterator_;
|
|
}
|
|
|
|
// var result = iterator.next();
|
|
Expression* next_result() const {
|
|
return next_result_;
|
|
}
|
|
|
|
// result.done
|
|
Expression* result_done() const {
|
|
return result_done_;
|
|
}
|
|
|
|
// each = result.value
|
|
Expression* assign_each() const {
|
|
return assign_each_;
|
|
}
|
|
|
|
virtual BailoutId ContinueId() const V8_OVERRIDE { return EntryId(); }
|
|
virtual BailoutId StackCheckId() const V8_OVERRIDE { return BackEdgeId(); }
|
|
|
|
BailoutId BackEdgeId() const { return back_edge_id_; }
|
|
|
|
protected:
|
|
ForOfStatement(Isolate* isolate, ZoneStringList* labels)
|
|
: ForEachStatement(isolate, labels),
|
|
assign_iterator_(NULL),
|
|
next_result_(NULL),
|
|
result_done_(NULL),
|
|
assign_each_(NULL),
|
|
back_edge_id_(GetNextId(isolate)) {
|
|
}
|
|
|
|
Expression* assign_iterator_;
|
|
Expression* next_result_;
|
|
Expression* result_done_;
|
|
Expression* assign_each_;
|
|
const BailoutId back_edge_id_;
|
|
};
|
|
|
|
|
|
class ExpressionStatement V8_FINAL : public Statement {
|
|
public:
|
|
DECLARE_NODE_TYPE(ExpressionStatement)
|
|
|
|
void set_expression(Expression* e) { expression_ = e; }
|
|
Expression* expression() const { return expression_; }
|
|
virtual bool IsJump() const V8_OVERRIDE { return expression_->IsThrow(); }
|
|
|
|
protected:
|
|
explicit ExpressionStatement(Expression* expression)
|
|
: expression_(expression) { }
|
|
|
|
private:
|
|
Expression* expression_;
|
|
};
|
|
|
|
|
|
class JumpStatement : public Statement {
|
|
public:
|
|
virtual bool IsJump() const V8_FINAL V8_OVERRIDE { return true; }
|
|
|
|
protected:
|
|
JumpStatement() {}
|
|
};
|
|
|
|
|
|
class ContinueStatement V8_FINAL : public JumpStatement {
|
|
public:
|
|
DECLARE_NODE_TYPE(ContinueStatement)
|
|
|
|
IterationStatement* target() const { return target_; }
|
|
|
|
protected:
|
|
explicit ContinueStatement(IterationStatement* target)
|
|
: target_(target) { }
|
|
|
|
private:
|
|
IterationStatement* target_;
|
|
};
|
|
|
|
|
|
class BreakStatement V8_FINAL : public JumpStatement {
|
|
public:
|
|
DECLARE_NODE_TYPE(BreakStatement)
|
|
|
|
BreakableStatement* target() const { return target_; }
|
|
|
|
protected:
|
|
explicit BreakStatement(BreakableStatement* target)
|
|
: target_(target) { }
|
|
|
|
private:
|
|
BreakableStatement* target_;
|
|
};
|
|
|
|
|
|
class ReturnStatement V8_FINAL : public JumpStatement {
|
|
public:
|
|
DECLARE_NODE_TYPE(ReturnStatement)
|
|
|
|
Expression* expression() const { return expression_; }
|
|
|
|
protected:
|
|
explicit ReturnStatement(Expression* expression)
|
|
: expression_(expression) { }
|
|
|
|
private:
|
|
Expression* expression_;
|
|
};
|
|
|
|
|
|
class WithStatement V8_FINAL : public Statement {
|
|
public:
|
|
DECLARE_NODE_TYPE(WithStatement)
|
|
|
|
Scope* scope() { return scope_; }
|
|
Expression* expression() const { return expression_; }
|
|
Statement* statement() const { return statement_; }
|
|
|
|
protected:
|
|
WithStatement(Scope* scope, Expression* expression, Statement* statement)
|
|
: scope_(scope),
|
|
expression_(expression),
|
|
statement_(statement) { }
|
|
|
|
private:
|
|
Scope* scope_;
|
|
Expression* expression_;
|
|
Statement* statement_;
|
|
};
|
|
|
|
|
|
class CaseClause V8_FINAL : public ZoneObject {
|
|
public:
|
|
CaseClause(Isolate* isolate,
|
|
Expression* label,
|
|
ZoneList<Statement*>* statements,
|
|
int pos);
|
|
|
|
bool is_default() const { return label_ == NULL; }
|
|
Expression* label() const {
|
|
CHECK(!is_default());
|
|
return label_;
|
|
}
|
|
Label* body_target() { return &body_target_; }
|
|
ZoneList<Statement*>* statements() const { return statements_; }
|
|
|
|
int position() const { return position_; }
|
|
void set_position(int pos) { position_ = pos; }
|
|
|
|
BailoutId EntryId() const { return entry_id_; }
|
|
|
|
// Type feedback information.
|
|
TypeFeedbackId CompareId() { return compare_id_; }
|
|
void RecordTypeFeedback(TypeFeedbackOracle* oracle);
|
|
Handle<Type> compare_type() { return compare_type_; }
|
|
|
|
private:
|
|
Expression* label_;
|
|
Label body_target_;
|
|
ZoneList<Statement*>* statements_;
|
|
int position_;
|
|
Handle<Type> compare_type_;
|
|
|
|
const TypeFeedbackId compare_id_;
|
|
const BailoutId entry_id_;
|
|
};
|
|
|
|
|
|
class SwitchStatement V8_FINAL : public BreakableStatement {
|
|
public:
|
|
DECLARE_NODE_TYPE(SwitchStatement)
|
|
|
|
void Initialize(Expression* tag, ZoneList<CaseClause*>* cases) {
|
|
tag_ = tag;
|
|
cases_ = cases;
|
|
switch_type_ = UNKNOWN_SWITCH;
|
|
}
|
|
|
|
Expression* tag() const { return tag_; }
|
|
ZoneList<CaseClause*>* cases() const { return cases_; }
|
|
|
|
enum SwitchType { UNKNOWN_SWITCH, SMI_SWITCH, STRING_SWITCH, GENERIC_SWITCH };
|
|
SwitchType switch_type() const { return switch_type_; }
|
|
void set_switch_type(SwitchType switch_type) { switch_type_ = switch_type; }
|
|
|
|
protected:
|
|
SwitchStatement(Isolate* isolate, ZoneStringList* labels)
|
|
: BreakableStatement(isolate, labels, TARGET_FOR_ANONYMOUS),
|
|
tag_(NULL),
|
|
cases_(NULL) { }
|
|
|
|
private:
|
|
Expression* tag_;
|
|
ZoneList<CaseClause*>* cases_;
|
|
SwitchType switch_type_;
|
|
};
|
|
|
|
|
|
// If-statements always have non-null references to their then- and
|
|
// else-parts. When parsing if-statements with no explicit else-part,
|
|
// the parser implicitly creates an empty statement. Use the
|
|
// HasThenStatement() and HasElseStatement() functions to check if a
|
|
// given if-statement has a then- or an else-part containing code.
|
|
class IfStatement V8_FINAL : public Statement {
|
|
public:
|
|
DECLARE_NODE_TYPE(IfStatement)
|
|
|
|
bool HasThenStatement() const { return !then_statement()->IsEmpty(); }
|
|
bool HasElseStatement() const { return !else_statement()->IsEmpty(); }
|
|
|
|
Expression* condition() const { return condition_; }
|
|
Statement* then_statement() const { return then_statement_; }
|
|
Statement* else_statement() const { return else_statement_; }
|
|
|
|
virtual bool IsJump() const V8_OVERRIDE {
|
|
return HasThenStatement() && then_statement()->IsJump()
|
|
&& HasElseStatement() && else_statement()->IsJump();
|
|
}
|
|
|
|
BailoutId IfId() const { return if_id_; }
|
|
BailoutId ThenId() const { return then_id_; }
|
|
BailoutId ElseId() const { return else_id_; }
|
|
|
|
protected:
|
|
IfStatement(Isolate* isolate,
|
|
Expression* condition,
|
|
Statement* then_statement,
|
|
Statement* else_statement)
|
|
: condition_(condition),
|
|
then_statement_(then_statement),
|
|
else_statement_(else_statement),
|
|
if_id_(GetNextId(isolate)),
|
|
then_id_(GetNextId(isolate)),
|
|
else_id_(GetNextId(isolate)) {
|
|
}
|
|
|
|
private:
|
|
Expression* condition_;
|
|
Statement* then_statement_;
|
|
Statement* else_statement_;
|
|
const BailoutId if_id_;
|
|
const BailoutId then_id_;
|
|
const BailoutId else_id_;
|
|
};
|
|
|
|
|
|
// NOTE: TargetCollectors are represented as nodes to fit in the target
|
|
// stack in the compiler; this should probably be reworked.
|
|
class TargetCollector V8_FINAL : public AstNode {
|
|
public:
|
|
explicit TargetCollector(Zone* zone) : targets_(0, zone) { }
|
|
|
|
// Adds a jump target to the collector. The collector stores a pointer not
|
|
// a copy of the target to make binding work, so make sure not to pass in
|
|
// references to something on the stack.
|
|
void AddTarget(Label* target, Zone* zone);
|
|
|
|
// Virtual behaviour. TargetCollectors are never part of the AST.
|
|
virtual void Accept(AstVisitor* v) V8_OVERRIDE { UNREACHABLE(); }
|
|
virtual NodeType node_type() const V8_OVERRIDE { return kInvalid; }
|
|
virtual TargetCollector* AsTargetCollector() V8_OVERRIDE { return this; }
|
|
|
|
ZoneList<Label*>* targets() { return &targets_; }
|
|
|
|
private:
|
|
ZoneList<Label*> targets_;
|
|
};
|
|
|
|
|
|
class TryStatement : public Statement {
|
|
public:
|
|
void set_escaping_targets(ZoneList<Label*>* targets) {
|
|
escaping_targets_ = targets;
|
|
}
|
|
|
|
int index() const { return index_; }
|
|
Block* try_block() const { return try_block_; }
|
|
ZoneList<Label*>* escaping_targets() const { return escaping_targets_; }
|
|
|
|
protected:
|
|
TryStatement(int index, Block* try_block)
|
|
: index_(index),
|
|
try_block_(try_block),
|
|
escaping_targets_(NULL) { }
|
|
|
|
private:
|
|
// Unique (per-function) index of this handler. This is not an AST ID.
|
|
int index_;
|
|
|
|
Block* try_block_;
|
|
ZoneList<Label*>* escaping_targets_;
|
|
};
|
|
|
|
|
|
class TryCatchStatement V8_FINAL : public TryStatement {
|
|
public:
|
|
DECLARE_NODE_TYPE(TryCatchStatement)
|
|
|
|
Scope* scope() { return scope_; }
|
|
Variable* variable() { return variable_; }
|
|
Block* catch_block() const { return catch_block_; }
|
|
|
|
protected:
|
|
TryCatchStatement(int index,
|
|
Block* try_block,
|
|
Scope* scope,
|
|
Variable* variable,
|
|
Block* catch_block)
|
|
: TryStatement(index, try_block),
|
|
scope_(scope),
|
|
variable_(variable),
|
|
catch_block_(catch_block) {
|
|
}
|
|
|
|
private:
|
|
Scope* scope_;
|
|
Variable* variable_;
|
|
Block* catch_block_;
|
|
};
|
|
|
|
|
|
class TryFinallyStatement V8_FINAL : public TryStatement {
|
|
public:
|
|
DECLARE_NODE_TYPE(TryFinallyStatement)
|
|
|
|
Block* finally_block() const { return finally_block_; }
|
|
|
|
protected:
|
|
TryFinallyStatement(int index, Block* try_block, Block* finally_block)
|
|
: TryStatement(index, try_block),
|
|
finally_block_(finally_block) { }
|
|
|
|
private:
|
|
Block* finally_block_;
|
|
};
|
|
|
|
|
|
class DebuggerStatement V8_FINAL : public Statement {
|
|
public:
|
|
DECLARE_NODE_TYPE(DebuggerStatement)
|
|
|
|
protected:
|
|
DebuggerStatement() {}
|
|
};
|
|
|
|
|
|
class EmptyStatement V8_FINAL : public Statement {
|
|
public:
|
|
DECLARE_NODE_TYPE(EmptyStatement)
|
|
|
|
protected:
|
|
EmptyStatement() {}
|
|
};
|
|
|
|
|
|
class Literal V8_FINAL : public Expression {
|
|
public:
|
|
DECLARE_NODE_TYPE(Literal)
|
|
|
|
virtual bool IsPropertyName() V8_OVERRIDE {
|
|
if (value_->IsInternalizedString()) {
|
|
uint32_t ignored;
|
|
return !String::cast(*value_)->AsArrayIndex(&ignored);
|
|
}
|
|
return false;
|
|
}
|
|
|
|
Handle<String> AsPropertyName() {
|
|
ASSERT(IsPropertyName());
|
|
return Handle<String>::cast(value_);
|
|
}
|
|
|
|
virtual bool ToBooleanIsTrue() V8_OVERRIDE {
|
|
return value_->BooleanValue();
|
|
}
|
|
virtual bool ToBooleanIsFalse() V8_OVERRIDE {
|
|
return !value_->BooleanValue();
|
|
}
|
|
|
|
// Identity testers.
|
|
bool IsNull() const {
|
|
ASSERT(!value_.is_null());
|
|
return value_->IsNull();
|
|
}
|
|
bool IsTrue() const {
|
|
ASSERT(!value_.is_null());
|
|
return value_->IsTrue();
|
|
}
|
|
bool IsFalse() const {
|
|
ASSERT(!value_.is_null());
|
|
return value_->IsFalse();
|
|
}
|
|
|
|
Handle<Object> value() const { return value_; }
|
|
|
|
// Support for using Literal as a HashMap key. NOTE: Currently, this works
|
|
// only for string and number literals!
|
|
uint32_t Hash() { return ToString()->Hash(); }
|
|
|
|
static bool Match(void* literal1, void* literal2) {
|
|
Handle<String> s1 = static_cast<Literal*>(literal1)->ToString();
|
|
Handle<String> s2 = static_cast<Literal*>(literal2)->ToString();
|
|
return s1->Equals(*s2);
|
|
}
|
|
|
|
TypeFeedbackId LiteralFeedbackId() const { return reuse(id()); }
|
|
|
|
protected:
|
|
Literal(Isolate* isolate, Handle<Object> value)
|
|
: Expression(isolate),
|
|
value_(value),
|
|
isolate_(isolate) { }
|
|
|
|
private:
|
|
Handle<String> ToString();
|
|
|
|
Handle<Object> value_;
|
|
// TODO(dcarney): remove. this is only needed for Match and Hash.
|
|
Isolate* isolate_;
|
|
};
|
|
|
|
|
|
// Base class for literals that needs space in the corresponding JSFunction.
|
|
class MaterializedLiteral : public Expression {
|
|
public:
|
|
virtual MaterializedLiteral* AsMaterializedLiteral() { return this; }
|
|
|
|
int literal_index() { return literal_index_; }
|
|
|
|
// A materialized literal is simple if the values consist of only
|
|
// constants and simple object and array literals.
|
|
bool is_simple() const { return is_simple_; }
|
|
|
|
int depth() const { return depth_; }
|
|
|
|
protected:
|
|
MaterializedLiteral(Isolate* isolate,
|
|
int literal_index,
|
|
bool is_simple,
|
|
int depth)
|
|
: Expression(isolate),
|
|
literal_index_(literal_index),
|
|
is_simple_(is_simple),
|
|
depth_(depth) {}
|
|
|
|
private:
|
|
int literal_index_;
|
|
bool is_simple_;
|
|
int depth_;
|
|
};
|
|
|
|
|
|
// Property is used for passing information
|
|
// about an object literal's properties from the parser
|
|
// to the code generator.
|
|
class ObjectLiteralProperty V8_FINAL : public ZoneObject {
|
|
public:
|
|
enum Kind {
|
|
CONSTANT, // Property with constant value (compile time).
|
|
COMPUTED, // Property with computed value (execution time).
|
|
MATERIALIZED_LITERAL, // Property value is a materialized literal.
|
|
GETTER, SETTER, // Property is an accessor function.
|
|
PROTOTYPE // Property is __proto__.
|
|
};
|
|
|
|
ObjectLiteralProperty(Literal* key, Expression* value, Isolate* isolate);
|
|
|
|
Literal* key() { return key_; }
|
|
Expression* value() { return value_; }
|
|
Kind kind() { return kind_; }
|
|
|
|
// Type feedback information.
|
|
void RecordTypeFeedback(TypeFeedbackOracle* oracle);
|
|
bool IsMonomorphic() { return !receiver_type_.is_null(); }
|
|
Handle<Map> GetReceiverType() { return receiver_type_; }
|
|
|
|
bool IsCompileTimeValue();
|
|
|
|
void set_emit_store(bool emit_store);
|
|
bool emit_store();
|
|
|
|
protected:
|
|
template<class> friend class AstNodeFactory;
|
|
|
|
ObjectLiteralProperty(bool is_getter, FunctionLiteral* value);
|
|
void set_key(Literal* key) { key_ = key; }
|
|
|
|
private:
|
|
Literal* key_;
|
|
Expression* value_;
|
|
Kind kind_;
|
|
bool emit_store_;
|
|
Handle<Map> receiver_type_;
|
|
};
|
|
|
|
|
|
// An object literal has a boilerplate object that is used
|
|
// for minimizing the work when constructing it at runtime.
|
|
class ObjectLiteral V8_FINAL : public MaterializedLiteral {
|
|
public:
|
|
typedef ObjectLiteralProperty Property;
|
|
|
|
DECLARE_NODE_TYPE(ObjectLiteral)
|
|
|
|
Handle<FixedArray> constant_properties() const {
|
|
return constant_properties_;
|
|
}
|
|
ZoneList<Property*>* properties() const { return properties_; }
|
|
bool fast_elements() const { return fast_elements_; }
|
|
bool may_store_doubles() const { return may_store_doubles_; }
|
|
bool has_function() const { return has_function_; }
|
|
|
|
// Mark all computed expressions that are bound to a key that
|
|
// is shadowed by a later occurrence of the same key. For the
|
|
// marked expressions, no store code is emitted.
|
|
void CalculateEmitStore(Zone* zone);
|
|
|
|
enum Flags {
|
|
kNoFlags = 0,
|
|
kFastElements = 1,
|
|
kHasFunction = 1 << 1
|
|
};
|
|
|
|
struct Accessors: public ZoneObject {
|
|
Accessors() : getter(NULL), setter(NULL) { }
|
|
Expression* getter;
|
|
Expression* setter;
|
|
};
|
|
|
|
protected:
|
|
ObjectLiteral(Isolate* isolate,
|
|
Handle<FixedArray> constant_properties,
|
|
ZoneList<Property*>* properties,
|
|
int literal_index,
|
|
bool is_simple,
|
|
bool fast_elements,
|
|
int depth,
|
|
bool may_store_doubles,
|
|
bool has_function)
|
|
: MaterializedLiteral(isolate, literal_index, is_simple, depth),
|
|
constant_properties_(constant_properties),
|
|
properties_(properties),
|
|
fast_elements_(fast_elements),
|
|
may_store_doubles_(may_store_doubles),
|
|
has_function_(has_function) {}
|
|
|
|
private:
|
|
Handle<FixedArray> constant_properties_;
|
|
ZoneList<Property*>* properties_;
|
|
bool fast_elements_;
|
|
bool may_store_doubles_;
|
|
bool has_function_;
|
|
};
|
|
|
|
|
|
// Node for capturing a regexp literal.
|
|
class RegExpLiteral V8_FINAL : public MaterializedLiteral {
|
|
public:
|
|
DECLARE_NODE_TYPE(RegExpLiteral)
|
|
|
|
Handle<String> pattern() const { return pattern_; }
|
|
Handle<String> flags() const { return flags_; }
|
|
|
|
protected:
|
|
RegExpLiteral(Isolate* isolate,
|
|
Handle<String> pattern,
|
|
Handle<String> flags,
|
|
int literal_index)
|
|
: MaterializedLiteral(isolate, literal_index, false, 1),
|
|
pattern_(pattern),
|
|
flags_(flags) {}
|
|
|
|
private:
|
|
Handle<String> pattern_;
|
|
Handle<String> flags_;
|
|
};
|
|
|
|
// An array literal has a literals object that is used
|
|
// for minimizing the work when constructing it at runtime.
|
|
class ArrayLiteral V8_FINAL : public MaterializedLiteral {
|
|
public:
|
|
DECLARE_NODE_TYPE(ArrayLiteral)
|
|
|
|
Handle<FixedArray> constant_elements() const { return constant_elements_; }
|
|
ZoneList<Expression*>* values() const { return values_; }
|
|
|
|
// Return an AST id for an element that is used in simulate instructions.
|
|
BailoutId GetIdForElement(int i) {
|
|
return BailoutId(first_element_id_.ToInt() + i);
|
|
}
|
|
|
|
protected:
|
|
ArrayLiteral(Isolate* isolate,
|
|
Handle<FixedArray> constant_elements,
|
|
ZoneList<Expression*>* values,
|
|
int literal_index,
|
|
bool is_simple,
|
|
int depth)
|
|
: MaterializedLiteral(isolate, literal_index, is_simple, depth),
|
|
constant_elements_(constant_elements),
|
|
values_(values),
|
|
first_element_id_(ReserveIdRange(isolate, values->length())) {}
|
|
|
|
private:
|
|
Handle<FixedArray> constant_elements_;
|
|
ZoneList<Expression*>* values_;
|
|
const BailoutId first_element_id_;
|
|
};
|
|
|
|
|
|
class VariableProxy V8_FINAL : public Expression {
|
|
public:
|
|
DECLARE_NODE_TYPE(VariableProxy)
|
|
|
|
virtual bool IsValidLeftHandSide() V8_OVERRIDE {
|
|
return var_ == NULL ? true : var_->IsValidLeftHandSide();
|
|
}
|
|
|
|
bool IsVariable(Handle<String> n) {
|
|
return !is_this() && name().is_identical_to(n);
|
|
}
|
|
|
|
bool IsArguments() { return var_ != NULL && var_->is_arguments(); }
|
|
|
|
bool IsLValue() {
|
|
return is_lvalue_;
|
|
}
|
|
|
|
Handle<String> name() const { return name_; }
|
|
Variable* var() const { return var_; }
|
|
bool is_this() const { return is_this_; }
|
|
int position() const { return position_; }
|
|
Interface* interface() const { return interface_; }
|
|
|
|
|
|
void MarkAsTrivial() { is_trivial_ = true; }
|
|
void MarkAsLValue() { is_lvalue_ = true; }
|
|
|
|
// Bind this proxy to the variable var. Interfaces must match.
|
|
void BindTo(Variable* var);
|
|
|
|
protected:
|
|
VariableProxy(Isolate* isolate, Variable* var);
|
|
|
|
VariableProxy(Isolate* isolate,
|
|
Handle<String> name,
|
|
bool is_this,
|
|
Interface* interface,
|
|
int position);
|
|
|
|
Handle<String> name_;
|
|
Variable* var_; // resolved variable, or NULL
|
|
bool is_this_;
|
|
bool is_trivial_;
|
|
// True if this variable proxy is being used in an assignment
|
|
// or with a increment/decrement operator.
|
|
bool is_lvalue_;
|
|
int position_;
|
|
Interface* interface_;
|
|
};
|
|
|
|
|
|
class Property V8_FINAL : public Expression {
|
|
public:
|
|
DECLARE_NODE_TYPE(Property)
|
|
|
|
virtual bool IsValidLeftHandSide() V8_OVERRIDE { return true; }
|
|
|
|
Expression* obj() const { return obj_; }
|
|
Expression* key() const { return key_; }
|
|
virtual int position() const V8_OVERRIDE { return pos_; }
|
|
|
|
BailoutId LoadId() const { return load_id_; }
|
|
|
|
bool IsStringAccess() const { return is_string_access_; }
|
|
bool IsFunctionPrototype() const { return is_function_prototype_; }
|
|
|
|
// Type feedback information.
|
|
void RecordTypeFeedback(TypeFeedbackOracle* oracle, Zone* zone);
|
|
virtual bool IsMonomorphic() V8_OVERRIDE { return is_monomorphic_; }
|
|
virtual SmallMapList* GetReceiverTypes() V8_OVERRIDE {
|
|
return &receiver_types_;
|
|
}
|
|
virtual KeyedAccessStoreMode GetStoreMode() V8_OVERRIDE {
|
|
return STANDARD_STORE;
|
|
}
|
|
bool IsUninitialized() { return is_uninitialized_; }
|
|
TypeFeedbackId PropertyFeedbackId() { return reuse(id()); }
|
|
|
|
protected:
|
|
Property(Isolate* isolate,
|
|
Expression* obj,
|
|
Expression* key,
|
|
int pos)
|
|
: Expression(isolate),
|
|
obj_(obj),
|
|
key_(key),
|
|
pos_(pos),
|
|
load_id_(GetNextId(isolate)),
|
|
is_monomorphic_(false),
|
|
is_uninitialized_(false),
|
|
is_string_access_(false),
|
|
is_function_prototype_(false) { }
|
|
|
|
private:
|
|
Expression* obj_;
|
|
Expression* key_;
|
|
int pos_;
|
|
const BailoutId load_id_;
|
|
|
|
SmallMapList receiver_types_;
|
|
bool is_monomorphic_ : 1;
|
|
bool is_uninitialized_ : 1;
|
|
bool is_string_access_ : 1;
|
|
bool is_function_prototype_ : 1;
|
|
};
|
|
|
|
|
|
class Call V8_FINAL : public Expression {
|
|
public:
|
|
DECLARE_NODE_TYPE(Call)
|
|
|
|
Expression* expression() const { return expression_; }
|
|
ZoneList<Expression*>* arguments() const { return arguments_; }
|
|
virtual int position() const V8_FINAL { return pos_; }
|
|
|
|
// Type feedback information.
|
|
TypeFeedbackId CallFeedbackId() const { return reuse(id()); }
|
|
void RecordTypeFeedback(TypeFeedbackOracle* oracle, CallKind call_kind);
|
|
virtual SmallMapList* GetReceiverTypes() V8_OVERRIDE {
|
|
return &receiver_types_;
|
|
}
|
|
virtual bool IsMonomorphic() V8_OVERRIDE { return is_monomorphic_; }
|
|
CheckType check_type() const { return check_type_; }
|
|
|
|
void set_string_check(Handle<JSObject> holder) {
|
|
holder_ = holder;
|
|
check_type_ = STRING_CHECK;
|
|
}
|
|
|
|
void set_number_check(Handle<JSObject> holder) {
|
|
holder_ = holder;
|
|
check_type_ = NUMBER_CHECK;
|
|
}
|
|
|
|
void set_map_check() {
|
|
holder_ = Handle<JSObject>::null();
|
|
check_type_ = RECEIVER_MAP_CHECK;
|
|
}
|
|
|
|
Handle<JSFunction> target() { return target_; }
|
|
|
|
// A cache for the holder, set as a side effect of computing the target of the
|
|
// call. Note that it contains the null handle when the receiver is the same
|
|
// as the holder!
|
|
Handle<JSObject> holder() { return holder_; }
|
|
|
|
Handle<Cell> cell() { return cell_; }
|
|
|
|
bool ComputeTarget(Handle<Map> type, Handle<String> name);
|
|
bool ComputeGlobalTarget(Handle<GlobalObject> global, LookupResult* lookup);
|
|
|
|
BailoutId ReturnId() const { return return_id_; }
|
|
|
|
// TODO(rossberg): this should really move somewhere else (and be merged with
|
|
// various similar methods in objets.cc), but for now...
|
|
static Handle<JSObject> GetPrototypeForPrimitiveCheck(
|
|
CheckType check, Isolate* isolate);
|
|
|
|
#ifdef DEBUG
|
|
// Used to assert that the FullCodeGenerator records the return site.
|
|
bool return_is_recorded_;
|
|
#endif
|
|
|
|
protected:
|
|
Call(Isolate* isolate,
|
|
Expression* expression,
|
|
ZoneList<Expression*>* arguments,
|
|
int pos)
|
|
: Expression(isolate),
|
|
expression_(expression),
|
|
arguments_(arguments),
|
|
pos_(pos),
|
|
is_monomorphic_(false),
|
|
check_type_(RECEIVER_MAP_CHECK),
|
|
return_id_(GetNextId(isolate)) { }
|
|
|
|
private:
|
|
Expression* expression_;
|
|
ZoneList<Expression*>* arguments_;
|
|
int pos_;
|
|
|
|
bool is_monomorphic_;
|
|
CheckType check_type_;
|
|
SmallMapList receiver_types_;
|
|
Handle<JSFunction> target_;
|
|
Handle<JSObject> holder_;
|
|
Handle<Cell> cell_;
|
|
|
|
const BailoutId return_id_;
|
|
};
|
|
|
|
|
|
class CallNew V8_FINAL : public Expression {
|
|
public:
|
|
DECLARE_NODE_TYPE(CallNew)
|
|
|
|
Expression* expression() const { return expression_; }
|
|
ZoneList<Expression*>* arguments() const { return arguments_; }
|
|
virtual int position() const V8_OVERRIDE { return pos_; }
|
|
|
|
// Type feedback information.
|
|
TypeFeedbackId CallNewFeedbackId() const { return reuse(id()); }
|
|
void RecordTypeFeedback(TypeFeedbackOracle* oracle);
|
|
virtual bool IsMonomorphic() V8_OVERRIDE { return is_monomorphic_; }
|
|
Handle<JSFunction> target() const { return target_; }
|
|
ElementsKind elements_kind() const { return elements_kind_; }
|
|
Handle<Cell> allocation_info_cell() const {
|
|
return allocation_info_cell_;
|
|
}
|
|
|
|
BailoutId ReturnId() const { return return_id_; }
|
|
|
|
protected:
|
|
CallNew(Isolate* isolate,
|
|
Expression* expression,
|
|
ZoneList<Expression*>* arguments,
|
|
int pos)
|
|
: Expression(isolate),
|
|
expression_(expression),
|
|
arguments_(arguments),
|
|
pos_(pos),
|
|
is_monomorphic_(false),
|
|
elements_kind_(GetInitialFastElementsKind()),
|
|
return_id_(GetNextId(isolate)) { }
|
|
|
|
private:
|
|
Expression* expression_;
|
|
ZoneList<Expression*>* arguments_;
|
|
int pos_;
|
|
|
|
bool is_monomorphic_;
|
|
Handle<JSFunction> target_;
|
|
ElementsKind elements_kind_;
|
|
Handle<Cell> allocation_info_cell_;
|
|
|
|
const BailoutId return_id_;
|
|
};
|
|
|
|
|
|
// The CallRuntime class does not represent any official JavaScript
|
|
// language construct. Instead it is used to call a C or JS function
|
|
// with a set of arguments. This is used from the builtins that are
|
|
// implemented in JavaScript (see "v8natives.js").
|
|
class CallRuntime V8_FINAL : public Expression {
|
|
public:
|
|
DECLARE_NODE_TYPE(CallRuntime)
|
|
|
|
Handle<String> name() const { return name_; }
|
|
const Runtime::Function* function() const { return function_; }
|
|
ZoneList<Expression*>* arguments() const { return arguments_; }
|
|
bool is_jsruntime() const { return function_ == NULL; }
|
|
|
|
TypeFeedbackId CallRuntimeFeedbackId() const { return reuse(id()); }
|
|
|
|
protected:
|
|
CallRuntime(Isolate* isolate,
|
|
Handle<String> name,
|
|
const Runtime::Function* function,
|
|
ZoneList<Expression*>* arguments)
|
|
: Expression(isolate),
|
|
name_(name),
|
|
function_(function),
|
|
arguments_(arguments) { }
|
|
|
|
private:
|
|
Handle<String> name_;
|
|
const Runtime::Function* function_;
|
|
ZoneList<Expression*>* arguments_;
|
|
};
|
|
|
|
|
|
class UnaryOperation V8_FINAL : public Expression {
|
|
public:
|
|
DECLARE_NODE_TYPE(UnaryOperation)
|
|
|
|
Token::Value op() const { return op_; }
|
|
Expression* expression() const { return expression_; }
|
|
virtual int position() const V8_OVERRIDE { return pos_; }
|
|
|
|
BailoutId MaterializeTrueId() { return materialize_true_id_; }
|
|
BailoutId MaterializeFalseId() { return materialize_false_id_; }
|
|
|
|
virtual void RecordToBooleanTypeFeedback(
|
|
TypeFeedbackOracle* oracle) V8_OVERRIDE;
|
|
|
|
protected:
|
|
UnaryOperation(Isolate* isolate,
|
|
Token::Value op,
|
|
Expression* expression,
|
|
int pos)
|
|
: Expression(isolate),
|
|
op_(op),
|
|
expression_(expression),
|
|
pos_(pos),
|
|
materialize_true_id_(GetNextId(isolate)),
|
|
materialize_false_id_(GetNextId(isolate)) {
|
|
ASSERT(Token::IsUnaryOp(op));
|
|
}
|
|
|
|
private:
|
|
Token::Value op_;
|
|
Expression* expression_;
|
|
int pos_;
|
|
|
|
// For unary not (Token::NOT), the AST ids where true and false will
|
|
// actually be materialized, respectively.
|
|
const BailoutId materialize_true_id_;
|
|
const BailoutId materialize_false_id_;
|
|
};
|
|
|
|
|
|
class BinaryOperation V8_FINAL : public Expression {
|
|
public:
|
|
DECLARE_NODE_TYPE(BinaryOperation)
|
|
|
|
virtual bool ResultOverwriteAllowed();
|
|
|
|
Token::Value op() const { return op_; }
|
|
Expression* left() const { return left_; }
|
|
Expression* right() const { return right_; }
|
|
virtual int position() const V8_OVERRIDE { return pos_; }
|
|
|
|
BailoutId RightId() const { return right_id_; }
|
|
|
|
TypeFeedbackId BinaryOperationFeedbackId() const { return reuse(id()); }
|
|
Maybe<int> fixed_right_arg() const { return fixed_right_arg_; }
|
|
void set_fixed_right_arg(Maybe<int> arg) { fixed_right_arg_ = arg; }
|
|
|
|
virtual void RecordToBooleanTypeFeedback(
|
|
TypeFeedbackOracle* oracle) V8_OVERRIDE;
|
|
|
|
protected:
|
|
BinaryOperation(Isolate* isolate,
|
|
Token::Value op,
|
|
Expression* left,
|
|
Expression* right,
|
|
int pos)
|
|
: Expression(isolate),
|
|
op_(op),
|
|
left_(left),
|
|
right_(right),
|
|
pos_(pos),
|
|
right_id_(GetNextId(isolate)) {
|
|
ASSERT(Token::IsBinaryOp(op));
|
|
}
|
|
|
|
private:
|
|
Token::Value op_;
|
|
Expression* left_;
|
|
Expression* right_;
|
|
int pos_;
|
|
|
|
// TODO(rossberg): the fixed arg should probably be represented as a Constant
|
|
// type for the RHS.
|
|
Maybe<int> fixed_right_arg_;
|
|
|
|
// The short-circuit logical operations need an AST ID for their
|
|
// right-hand subexpression.
|
|
const BailoutId right_id_;
|
|
};
|
|
|
|
|
|
class CountOperation V8_FINAL : public Expression {
|
|
public:
|
|
DECLARE_NODE_TYPE(CountOperation)
|
|
|
|
bool is_prefix() const { return is_prefix_; }
|
|
bool is_postfix() const { return !is_prefix_; }
|
|
|
|
Token::Value op() const { return op_; }
|
|
Token::Value binary_op() {
|
|
return (op() == Token::INC) ? Token::ADD : Token::SUB;
|
|
}
|
|
|
|
Expression* expression() const { return expression_; }
|
|
virtual int position() const V8_OVERRIDE { return pos_; }
|
|
|
|
void RecordTypeFeedback(TypeFeedbackOracle* oracle, Zone* zone);
|
|
virtual bool IsMonomorphic() V8_OVERRIDE { return is_monomorphic_; }
|
|
virtual SmallMapList* GetReceiverTypes() V8_OVERRIDE {
|
|
return &receiver_types_;
|
|
}
|
|
virtual KeyedAccessStoreMode GetStoreMode() V8_OVERRIDE {
|
|
return store_mode_;
|
|
}
|
|
TypeInfo type() const { return type_; }
|
|
|
|
BailoutId AssignmentId() const { return assignment_id_; }
|
|
|
|
TypeFeedbackId CountBinOpFeedbackId() const { return count_id_; }
|
|
TypeFeedbackId CountStoreFeedbackId() const { return reuse(id()); }
|
|
|
|
protected:
|
|
CountOperation(Isolate* isolate,
|
|
Token::Value op,
|
|
bool is_prefix,
|
|
Expression* expr,
|
|
int pos)
|
|
: Expression(isolate),
|
|
op_(op),
|
|
is_prefix_(is_prefix),
|
|
is_monomorphic_(false),
|
|
store_mode_(STANDARD_STORE),
|
|
expression_(expr),
|
|
pos_(pos),
|
|
assignment_id_(GetNextId(isolate)),
|
|
count_id_(GetNextId(isolate)) {}
|
|
|
|
private:
|
|
Token::Value op_;
|
|
bool is_prefix_ : 1;
|
|
bool is_monomorphic_ : 1;
|
|
KeyedAccessStoreMode store_mode_ : 5; // Windows treats as signed,
|
|
// must have extra bit.
|
|
TypeInfo type_;
|
|
|
|
Expression* expression_;
|
|
int pos_;
|
|
const BailoutId assignment_id_;
|
|
const TypeFeedbackId count_id_;
|
|
SmallMapList receiver_types_;
|
|
};
|
|
|
|
|
|
class CompareOperation V8_FINAL : public Expression {
|
|
public:
|
|
DECLARE_NODE_TYPE(CompareOperation)
|
|
|
|
Token::Value op() const { return op_; }
|
|
Expression* left() const { return left_; }
|
|
Expression* right() const { return right_; }
|
|
virtual int position() const V8_OVERRIDE { return pos_; }
|
|
|
|
// Type feedback information.
|
|
TypeFeedbackId CompareOperationFeedbackId() const { return reuse(id()); }
|
|
Handle<Type> combined_type() const { return combined_type_; }
|
|
void set_combined_type(Handle<Type> type) { combined_type_ = type; }
|
|
|
|
// Match special cases.
|
|
bool IsLiteralCompareTypeof(Expression** expr, Handle<String>* check);
|
|
bool IsLiteralCompareUndefined(Expression** expr, Isolate* isolate);
|
|
bool IsLiteralCompareNull(Expression** expr);
|
|
|
|
protected:
|
|
CompareOperation(Isolate* isolate,
|
|
Token::Value op,
|
|
Expression* left,
|
|
Expression* right,
|
|
int pos)
|
|
: Expression(isolate),
|
|
op_(op),
|
|
left_(left),
|
|
right_(right),
|
|
pos_(pos),
|
|
combined_type_(Type::Null(), isolate) {
|
|
ASSERT(Token::IsCompareOp(op));
|
|
}
|
|
|
|
private:
|
|
Token::Value op_;
|
|
Expression* left_;
|
|
Expression* right_;
|
|
int pos_;
|
|
|
|
Handle<Type> combined_type_;
|
|
};
|
|
|
|
|
|
class Conditional V8_FINAL : public Expression {
|
|
public:
|
|
DECLARE_NODE_TYPE(Conditional)
|
|
|
|
Expression* condition() const { return condition_; }
|
|
Expression* then_expression() const { return then_expression_; }
|
|
Expression* else_expression() const { return else_expression_; }
|
|
|
|
int then_expression_position() const { return then_expression_position_; }
|
|
int else_expression_position() const { return else_expression_position_; }
|
|
|
|
BailoutId ThenId() const { return then_id_; }
|
|
BailoutId ElseId() const { return else_id_; }
|
|
|
|
protected:
|
|
Conditional(Isolate* isolate,
|
|
Expression* condition,
|
|
Expression* then_expression,
|
|
Expression* else_expression,
|
|
int then_expression_position,
|
|
int else_expression_position)
|
|
: Expression(isolate),
|
|
condition_(condition),
|
|
then_expression_(then_expression),
|
|
else_expression_(else_expression),
|
|
then_expression_position_(then_expression_position),
|
|
else_expression_position_(else_expression_position),
|
|
then_id_(GetNextId(isolate)),
|
|
else_id_(GetNextId(isolate)) { }
|
|
|
|
private:
|
|
Expression* condition_;
|
|
Expression* then_expression_;
|
|
Expression* else_expression_;
|
|
int then_expression_position_;
|
|
int else_expression_position_;
|
|
const BailoutId then_id_;
|
|
const BailoutId else_id_;
|
|
};
|
|
|
|
|
|
class Assignment V8_FINAL : public Expression {
|
|
public:
|
|
DECLARE_NODE_TYPE(Assignment)
|
|
|
|
Assignment* AsSimpleAssignment() { return !is_compound() ? this : NULL; }
|
|
|
|
Token::Value binary_op() const;
|
|
|
|
Token::Value op() const { return op_; }
|
|
Expression* target() const { return target_; }
|
|
Expression* value() const { return value_; }
|
|
virtual int position() const V8_OVERRIDE { return pos_; }
|
|
BinaryOperation* binary_operation() const { return binary_operation_; }
|
|
|
|
// This check relies on the definition order of token in token.h.
|
|
bool is_compound() const { return op() > Token::ASSIGN; }
|
|
|
|
BailoutId AssignmentId() const { return assignment_id_; }
|
|
|
|
// Type feedback information.
|
|
TypeFeedbackId AssignmentFeedbackId() { return reuse(id()); }
|
|
void RecordTypeFeedback(TypeFeedbackOracle* oracle, Zone* zone);
|
|
virtual bool IsMonomorphic() V8_OVERRIDE { return is_monomorphic_; }
|
|
bool IsUninitialized() { return is_uninitialized_; }
|
|
virtual SmallMapList* GetReceiverTypes() V8_OVERRIDE {
|
|
return &receiver_types_;
|
|
}
|
|
virtual KeyedAccessStoreMode GetStoreMode() V8_OVERRIDE {
|
|
return store_mode_;
|
|
}
|
|
|
|
protected:
|
|
Assignment(Isolate* isolate,
|
|
Token::Value op,
|
|
Expression* target,
|
|
Expression* value,
|
|
int pos);
|
|
|
|
template<class Visitor>
|
|
void Init(Isolate* isolate, AstNodeFactory<Visitor>* factory) {
|
|
ASSERT(Token::IsAssignmentOp(op_));
|
|
if (is_compound()) {
|
|
binary_operation_ =
|
|
factory->NewBinaryOperation(binary_op(), target_, value_, pos_ + 1);
|
|
}
|
|
}
|
|
|
|
private:
|
|
Token::Value op_;
|
|
Expression* target_;
|
|
Expression* value_;
|
|
int pos_;
|
|
BinaryOperation* binary_operation_;
|
|
const BailoutId assignment_id_;
|
|
|
|
bool is_monomorphic_ : 1;
|
|
bool is_uninitialized_ : 1;
|
|
KeyedAccessStoreMode store_mode_ : 5; // Windows treats as signed,
|
|
// must have extra bit.
|
|
SmallMapList receiver_types_;
|
|
};
|
|
|
|
|
|
class Yield V8_FINAL : public Expression {
|
|
public:
|
|
DECLARE_NODE_TYPE(Yield)
|
|
|
|
enum Kind {
|
|
INITIAL, // The initial yield that returns the unboxed generator object.
|
|
SUSPEND, // A normal yield: { value: EXPRESSION, done: false }
|
|
DELEGATING, // A yield*.
|
|
FINAL // A return: { value: EXPRESSION, done: true }
|
|
};
|
|
|
|
Expression* generator_object() const { return generator_object_; }
|
|
Expression* expression() const { return expression_; }
|
|
Kind yield_kind() const { return yield_kind_; }
|
|
virtual int position() const V8_OVERRIDE { return pos_; }
|
|
|
|
// Delegating yield surrounds the "yield" in a "try/catch". This index
|
|
// locates the catch handler in the handler table, and is equivalent to
|
|
// TryCatchStatement::index().
|
|
int index() const {
|
|
ASSERT(yield_kind() == DELEGATING);
|
|
return index_;
|
|
}
|
|
void set_index(int index) {
|
|
ASSERT(yield_kind() == DELEGATING);
|
|
index_ = index;
|
|
}
|
|
|
|
protected:
|
|
Yield(Isolate* isolate,
|
|
Expression* generator_object,
|
|
Expression* expression,
|
|
Kind yield_kind,
|
|
int pos)
|
|
: Expression(isolate),
|
|
generator_object_(generator_object),
|
|
expression_(expression),
|
|
yield_kind_(yield_kind),
|
|
index_(-1),
|
|
pos_(pos) { }
|
|
|
|
private:
|
|
Expression* generator_object_;
|
|
Expression* expression_;
|
|
Kind yield_kind_;
|
|
int index_;
|
|
int pos_;
|
|
};
|
|
|
|
|
|
class Throw V8_FINAL : public Expression {
|
|
public:
|
|
DECLARE_NODE_TYPE(Throw)
|
|
|
|
Expression* exception() const { return exception_; }
|
|
virtual int position() const V8_OVERRIDE { return pos_; }
|
|
|
|
protected:
|
|
Throw(Isolate* isolate, Expression* exception, int pos)
|
|
: Expression(isolate), exception_(exception), pos_(pos) {}
|
|
|
|
private:
|
|
Expression* exception_;
|
|
int pos_;
|
|
};
|
|
|
|
|
|
class FunctionLiteral V8_FINAL : public Expression {
|
|
public:
|
|
enum FunctionType {
|
|
ANONYMOUS_EXPRESSION,
|
|
NAMED_EXPRESSION,
|
|
DECLARATION
|
|
};
|
|
|
|
enum ParameterFlag {
|
|
kNoDuplicateParameters = 0,
|
|
kHasDuplicateParameters = 1
|
|
};
|
|
|
|
enum IsFunctionFlag {
|
|
kGlobalOrEval,
|
|
kIsFunction
|
|
};
|
|
|
|
enum IsParenthesizedFlag {
|
|
kIsParenthesized,
|
|
kNotParenthesized
|
|
};
|
|
|
|
enum IsGeneratorFlag {
|
|
kIsGenerator,
|
|
kNotGenerator
|
|
};
|
|
|
|
DECLARE_NODE_TYPE(FunctionLiteral)
|
|
|
|
Handle<String> name() const { return name_; }
|
|
Scope* scope() const { return scope_; }
|
|
ZoneList<Statement*>* body() const { return body_; }
|
|
void set_function_token_position(int pos) { function_token_position_ = pos; }
|
|
int function_token_position() const { return function_token_position_; }
|
|
int start_position() const;
|
|
int end_position() const;
|
|
int SourceSize() const { return end_position() - start_position(); }
|
|
bool is_expression() const { return IsExpression::decode(bitfield_); }
|
|
bool is_anonymous() const { return IsAnonymous::decode(bitfield_); }
|
|
bool is_classic_mode() const { return language_mode() == CLASSIC_MODE; }
|
|
LanguageMode language_mode() const;
|
|
|
|
int materialized_literal_count() { return materialized_literal_count_; }
|
|
int expected_property_count() { return expected_property_count_; }
|
|
int handler_count() { return handler_count_; }
|
|
int parameter_count() { return parameter_count_; }
|
|
|
|
bool AllowsLazyCompilation();
|
|
bool AllowsLazyCompilationWithoutContext();
|
|
|
|
Handle<String> debug_name() const {
|
|
if (name_->length() > 0) return name_;
|
|
return inferred_name();
|
|
}
|
|
|
|
Handle<String> inferred_name() const { return inferred_name_; }
|
|
void set_inferred_name(Handle<String> inferred_name) {
|
|
inferred_name_ = inferred_name;
|
|
}
|
|
|
|
bool pretenure() { return Pretenure::decode(bitfield_); }
|
|
void set_pretenure() { bitfield_ |= Pretenure::encode(true); }
|
|
|
|
bool has_duplicate_parameters() {
|
|
return HasDuplicateParameters::decode(bitfield_);
|
|
}
|
|
|
|
bool is_function() { return IsFunction::decode(bitfield_) == kIsFunction; }
|
|
|
|
// This is used as a heuristic on when to eagerly compile a function
|
|
// literal. We consider the following constructs as hints that the
|
|
// function will be called immediately:
|
|
// - (function() { ... })();
|
|
// - var x = function() { ... }();
|
|
bool is_parenthesized() {
|
|
return IsParenthesized::decode(bitfield_) == kIsParenthesized;
|
|
}
|
|
void set_parenthesized() {
|
|
bitfield_ = IsParenthesized::update(bitfield_, kIsParenthesized);
|
|
}
|
|
|
|
bool is_generator() {
|
|
return IsGenerator::decode(bitfield_) == kIsGenerator;
|
|
}
|
|
|
|
int ast_node_count() { return ast_properties_.node_count(); }
|
|
AstProperties::Flags* flags() { return ast_properties_.flags(); }
|
|
void set_ast_properties(AstProperties* ast_properties) {
|
|
ast_properties_ = *ast_properties;
|
|
}
|
|
|
|
bool dont_optimize() { return dont_optimize_reason_ != kNoReason; }
|
|
BailoutReason dont_optimize_reason() { return dont_optimize_reason_; }
|
|
void set_dont_optimize_reason(BailoutReason reason) {
|
|
dont_optimize_reason_ = reason;
|
|
}
|
|
|
|
protected:
|
|
FunctionLiteral(Isolate* isolate,
|
|
Handle<String> name,
|
|
Scope* scope,
|
|
ZoneList<Statement*>* body,
|
|
int materialized_literal_count,
|
|
int expected_property_count,
|
|
int handler_count,
|
|
int parameter_count,
|
|
FunctionType function_type,
|
|
ParameterFlag has_duplicate_parameters,
|
|
IsFunctionFlag is_function,
|
|
IsParenthesizedFlag is_parenthesized,
|
|
IsGeneratorFlag is_generator)
|
|
: Expression(isolate),
|
|
name_(name),
|
|
scope_(scope),
|
|
body_(body),
|
|
inferred_name_(isolate->factory()->empty_string()),
|
|
dont_optimize_reason_(kNoReason),
|
|
materialized_literal_count_(materialized_literal_count),
|
|
expected_property_count_(expected_property_count),
|
|
handler_count_(handler_count),
|
|
parameter_count_(parameter_count),
|
|
function_token_position_(RelocInfo::kNoPosition) {
|
|
bitfield_ =
|
|
IsExpression::encode(function_type != DECLARATION) |
|
|
IsAnonymous::encode(function_type == ANONYMOUS_EXPRESSION) |
|
|
Pretenure::encode(false) |
|
|
HasDuplicateParameters::encode(has_duplicate_parameters) |
|
|
IsFunction::encode(is_function) |
|
|
IsParenthesized::encode(is_parenthesized) |
|
|
IsGenerator::encode(is_generator);
|
|
}
|
|
|
|
private:
|
|
Handle<String> name_;
|
|
Scope* scope_;
|
|
ZoneList<Statement*>* body_;
|
|
Handle<String> inferred_name_;
|
|
AstProperties ast_properties_;
|
|
BailoutReason dont_optimize_reason_;
|
|
|
|
int materialized_literal_count_;
|
|
int expected_property_count_;
|
|
int handler_count_;
|
|
int parameter_count_;
|
|
int function_token_position_;
|
|
|
|
unsigned bitfield_;
|
|
class IsExpression: public BitField<bool, 0, 1> {};
|
|
class IsAnonymous: public BitField<bool, 1, 1> {};
|
|
class Pretenure: public BitField<bool, 2, 1> {};
|
|
class HasDuplicateParameters: public BitField<ParameterFlag, 3, 1> {};
|
|
class IsFunction: public BitField<IsFunctionFlag, 4, 1> {};
|
|
class IsParenthesized: public BitField<IsParenthesizedFlag, 5, 1> {};
|
|
class IsGenerator: public BitField<IsGeneratorFlag, 6, 1> {};
|
|
};
|
|
|
|
|
|
class SharedFunctionInfoLiteral V8_FINAL : public Expression {
|
|
public:
|
|
DECLARE_NODE_TYPE(SharedFunctionInfoLiteral)
|
|
|
|
Handle<SharedFunctionInfo> shared_function_info() const {
|
|
return shared_function_info_;
|
|
}
|
|
|
|
protected:
|
|
SharedFunctionInfoLiteral(
|
|
Isolate* isolate,
|
|
Handle<SharedFunctionInfo> shared_function_info)
|
|
: Expression(isolate),
|
|
shared_function_info_(shared_function_info) { }
|
|
|
|
private:
|
|
Handle<SharedFunctionInfo> shared_function_info_;
|
|
};
|
|
|
|
|
|
class ThisFunction V8_FINAL : public Expression {
|
|
public:
|
|
DECLARE_NODE_TYPE(ThisFunction)
|
|
|
|
protected:
|
|
explicit ThisFunction(Isolate* isolate): Expression(isolate) {}
|
|
};
|
|
|
|
#undef DECLARE_NODE_TYPE
|
|
|
|
|
|
// ----------------------------------------------------------------------------
|
|
// Regular expressions
|
|
|
|
|
|
class RegExpVisitor BASE_EMBEDDED {
|
|
public:
|
|
virtual ~RegExpVisitor() { }
|
|
#define MAKE_CASE(Name) \
|
|
virtual void* Visit##Name(RegExp##Name*, void* data) = 0;
|
|
FOR_EACH_REG_EXP_TREE_TYPE(MAKE_CASE)
|
|
#undef MAKE_CASE
|
|
};
|
|
|
|
|
|
class RegExpTree : public ZoneObject {
|
|
public:
|
|
static const int kInfinity = kMaxInt;
|
|
virtual ~RegExpTree() {}
|
|
virtual void* Accept(RegExpVisitor* visitor, void* data) = 0;
|
|
virtual RegExpNode* ToNode(RegExpCompiler* compiler,
|
|
RegExpNode* on_success) = 0;
|
|
virtual bool IsTextElement() { return false; }
|
|
virtual bool IsAnchoredAtStart() { return false; }
|
|
virtual bool IsAnchoredAtEnd() { return false; }
|
|
virtual int min_match() = 0;
|
|
virtual int max_match() = 0;
|
|
// Returns the interval of registers used for captures within this
|
|
// expression.
|
|
virtual Interval CaptureRegisters() { return Interval::Empty(); }
|
|
virtual void AppendToText(RegExpText* text, Zone* zone);
|
|
SmartArrayPointer<const char> ToString(Zone* zone);
|
|
#define MAKE_ASTYPE(Name) \
|
|
virtual RegExp##Name* As##Name(); \
|
|
virtual bool Is##Name();
|
|
FOR_EACH_REG_EXP_TREE_TYPE(MAKE_ASTYPE)
|
|
#undef MAKE_ASTYPE
|
|
};
|
|
|
|
|
|
class RegExpDisjunction V8_FINAL : public RegExpTree {
|
|
public:
|
|
explicit RegExpDisjunction(ZoneList<RegExpTree*>* alternatives);
|
|
virtual void* Accept(RegExpVisitor* visitor, void* data) V8_OVERRIDE;
|
|
virtual RegExpNode* ToNode(RegExpCompiler* compiler,
|
|
RegExpNode* on_success) V8_OVERRIDE;
|
|
virtual RegExpDisjunction* AsDisjunction() V8_OVERRIDE;
|
|
virtual Interval CaptureRegisters() V8_OVERRIDE;
|
|
virtual bool IsDisjunction() V8_OVERRIDE;
|
|
virtual bool IsAnchoredAtStart() V8_OVERRIDE;
|
|
virtual bool IsAnchoredAtEnd() V8_OVERRIDE;
|
|
virtual int min_match() V8_OVERRIDE { return min_match_; }
|
|
virtual int max_match() V8_OVERRIDE { return max_match_; }
|
|
ZoneList<RegExpTree*>* alternatives() { return alternatives_; }
|
|
private:
|
|
ZoneList<RegExpTree*>* alternatives_;
|
|
int min_match_;
|
|
int max_match_;
|
|
};
|
|
|
|
|
|
class RegExpAlternative V8_FINAL : public RegExpTree {
|
|
public:
|
|
explicit RegExpAlternative(ZoneList<RegExpTree*>* nodes);
|
|
virtual void* Accept(RegExpVisitor* visitor, void* data) V8_OVERRIDE;
|
|
virtual RegExpNode* ToNode(RegExpCompiler* compiler,
|
|
RegExpNode* on_success) V8_OVERRIDE;
|
|
virtual RegExpAlternative* AsAlternative() V8_OVERRIDE;
|
|
virtual Interval CaptureRegisters() V8_OVERRIDE;
|
|
virtual bool IsAlternative() V8_OVERRIDE;
|
|
virtual bool IsAnchoredAtStart() V8_OVERRIDE;
|
|
virtual bool IsAnchoredAtEnd() V8_OVERRIDE;
|
|
virtual int min_match() V8_OVERRIDE { return min_match_; }
|
|
virtual int max_match() V8_OVERRIDE { return max_match_; }
|
|
ZoneList<RegExpTree*>* nodes() { return nodes_; }
|
|
private:
|
|
ZoneList<RegExpTree*>* nodes_;
|
|
int min_match_;
|
|
int max_match_;
|
|
};
|
|
|
|
|
|
class RegExpAssertion V8_FINAL : public RegExpTree {
|
|
public:
|
|
enum AssertionType {
|
|
START_OF_LINE,
|
|
START_OF_INPUT,
|
|
END_OF_LINE,
|
|
END_OF_INPUT,
|
|
BOUNDARY,
|
|
NON_BOUNDARY
|
|
};
|
|
explicit RegExpAssertion(AssertionType type) : assertion_type_(type) { }
|
|
virtual void* Accept(RegExpVisitor* visitor, void* data) V8_OVERRIDE;
|
|
virtual RegExpNode* ToNode(RegExpCompiler* compiler,
|
|
RegExpNode* on_success) V8_OVERRIDE;
|
|
virtual RegExpAssertion* AsAssertion() V8_OVERRIDE;
|
|
virtual bool IsAssertion() V8_OVERRIDE;
|
|
virtual bool IsAnchoredAtStart() V8_OVERRIDE;
|
|
virtual bool IsAnchoredAtEnd() V8_OVERRIDE;
|
|
virtual int min_match() V8_OVERRIDE { return 0; }
|
|
virtual int max_match() V8_OVERRIDE { return 0; }
|
|
AssertionType assertion_type() { return assertion_type_; }
|
|
private:
|
|
AssertionType assertion_type_;
|
|
};
|
|
|
|
|
|
class CharacterSet V8_FINAL BASE_EMBEDDED {
|
|
public:
|
|
explicit CharacterSet(uc16 standard_set_type)
|
|
: ranges_(NULL),
|
|
standard_set_type_(standard_set_type) {}
|
|
explicit CharacterSet(ZoneList<CharacterRange>* ranges)
|
|
: ranges_(ranges),
|
|
standard_set_type_(0) {}
|
|
ZoneList<CharacterRange>* ranges(Zone* zone);
|
|
uc16 standard_set_type() { return standard_set_type_; }
|
|
void set_standard_set_type(uc16 special_set_type) {
|
|
standard_set_type_ = special_set_type;
|
|
}
|
|
bool is_standard() { return standard_set_type_ != 0; }
|
|
void Canonicalize();
|
|
private:
|
|
ZoneList<CharacterRange>* ranges_;
|
|
// If non-zero, the value represents a standard set (e.g., all whitespace
|
|
// characters) without having to expand the ranges.
|
|
uc16 standard_set_type_;
|
|
};
|
|
|
|
|
|
class RegExpCharacterClass V8_FINAL : public RegExpTree {
|
|
public:
|
|
RegExpCharacterClass(ZoneList<CharacterRange>* ranges, bool is_negated)
|
|
: set_(ranges),
|
|
is_negated_(is_negated) { }
|
|
explicit RegExpCharacterClass(uc16 type)
|
|
: set_(type),
|
|
is_negated_(false) { }
|
|
virtual void* Accept(RegExpVisitor* visitor, void* data) V8_OVERRIDE;
|
|
virtual RegExpNode* ToNode(RegExpCompiler* compiler,
|
|
RegExpNode* on_success) V8_OVERRIDE;
|
|
virtual RegExpCharacterClass* AsCharacterClass() V8_OVERRIDE;
|
|
virtual bool IsCharacterClass() V8_OVERRIDE;
|
|
virtual bool IsTextElement() V8_OVERRIDE { return true; }
|
|
virtual int min_match() V8_OVERRIDE { return 1; }
|
|
virtual int max_match() V8_OVERRIDE { return 1; }
|
|
virtual void AppendToText(RegExpText* text, Zone* zone) V8_OVERRIDE;
|
|
CharacterSet character_set() { return set_; }
|
|
// TODO(lrn): Remove need for complex version if is_standard that
|
|
// recognizes a mangled standard set and just do { return set_.is_special(); }
|
|
bool is_standard(Zone* zone);
|
|
// Returns a value representing the standard character set if is_standard()
|
|
// returns true.
|
|
// Currently used values are:
|
|
// s : unicode whitespace
|
|
// S : unicode non-whitespace
|
|
// w : ASCII word character (digit, letter, underscore)
|
|
// W : non-ASCII word character
|
|
// d : ASCII digit
|
|
// D : non-ASCII digit
|
|
// . : non-unicode non-newline
|
|
// * : All characters
|
|
uc16 standard_type() { return set_.standard_set_type(); }
|
|
ZoneList<CharacterRange>* ranges(Zone* zone) { return set_.ranges(zone); }
|
|
bool is_negated() { return is_negated_; }
|
|
|
|
private:
|
|
CharacterSet set_;
|
|
bool is_negated_;
|
|
};
|
|
|
|
|
|
class RegExpAtom V8_FINAL : public RegExpTree {
|
|
public:
|
|
explicit RegExpAtom(Vector<const uc16> data) : data_(data) { }
|
|
virtual void* Accept(RegExpVisitor* visitor, void* data) V8_OVERRIDE;
|
|
virtual RegExpNode* ToNode(RegExpCompiler* compiler,
|
|
RegExpNode* on_success) V8_OVERRIDE;
|
|
virtual RegExpAtom* AsAtom() V8_OVERRIDE;
|
|
virtual bool IsAtom() V8_OVERRIDE;
|
|
virtual bool IsTextElement() V8_OVERRIDE { return true; }
|
|
virtual int min_match() V8_OVERRIDE { return data_.length(); }
|
|
virtual int max_match() V8_OVERRIDE { return data_.length(); }
|
|
virtual void AppendToText(RegExpText* text, Zone* zone) V8_OVERRIDE;
|
|
Vector<const uc16> data() { return data_; }
|
|
int length() { return data_.length(); }
|
|
private:
|
|
Vector<const uc16> data_;
|
|
};
|
|
|
|
|
|
class RegExpText V8_FINAL : public RegExpTree {
|
|
public:
|
|
explicit RegExpText(Zone* zone) : elements_(2, zone), length_(0) {}
|
|
virtual void* Accept(RegExpVisitor* visitor, void* data) V8_OVERRIDE;
|
|
virtual RegExpNode* ToNode(RegExpCompiler* compiler,
|
|
RegExpNode* on_success) V8_OVERRIDE;
|
|
virtual RegExpText* AsText() V8_OVERRIDE;
|
|
virtual bool IsText() V8_OVERRIDE;
|
|
virtual bool IsTextElement() V8_OVERRIDE { return true; }
|
|
virtual int min_match() V8_OVERRIDE { return length_; }
|
|
virtual int max_match() V8_OVERRIDE { return length_; }
|
|
virtual void AppendToText(RegExpText* text, Zone* zone) V8_OVERRIDE;
|
|
void AddElement(TextElement elm, Zone* zone) {
|
|
elements_.Add(elm, zone);
|
|
length_ += elm.length();
|
|
}
|
|
ZoneList<TextElement>* elements() { return &elements_; }
|
|
private:
|
|
ZoneList<TextElement> elements_;
|
|
int length_;
|
|
};
|
|
|
|
|
|
class RegExpQuantifier V8_FINAL : public RegExpTree {
|
|
public:
|
|
enum QuantifierType { GREEDY, NON_GREEDY, POSSESSIVE };
|
|
RegExpQuantifier(int min, int max, QuantifierType type, RegExpTree* body)
|
|
: body_(body),
|
|
min_(min),
|
|
max_(max),
|
|
min_match_(min * body->min_match()),
|
|
quantifier_type_(type) {
|
|
if (max > 0 && body->max_match() > kInfinity / max) {
|
|
max_match_ = kInfinity;
|
|
} else {
|
|
max_match_ = max * body->max_match();
|
|
}
|
|
}
|
|
virtual void* Accept(RegExpVisitor* visitor, void* data) V8_OVERRIDE;
|
|
virtual RegExpNode* ToNode(RegExpCompiler* compiler,
|
|
RegExpNode* on_success) V8_OVERRIDE;
|
|
static RegExpNode* ToNode(int min,
|
|
int max,
|
|
bool is_greedy,
|
|
RegExpTree* body,
|
|
RegExpCompiler* compiler,
|
|
RegExpNode* on_success,
|
|
bool not_at_start = false);
|
|
virtual RegExpQuantifier* AsQuantifier() V8_OVERRIDE;
|
|
virtual Interval CaptureRegisters() V8_OVERRIDE;
|
|
virtual bool IsQuantifier() V8_OVERRIDE;
|
|
virtual int min_match() V8_OVERRIDE { return min_match_; }
|
|
virtual int max_match() V8_OVERRIDE { return max_match_; }
|
|
int min() { return min_; }
|
|
int max() { return max_; }
|
|
bool is_possessive() { return quantifier_type_ == POSSESSIVE; }
|
|
bool is_non_greedy() { return quantifier_type_ == NON_GREEDY; }
|
|
bool is_greedy() { return quantifier_type_ == GREEDY; }
|
|
RegExpTree* body() { return body_; }
|
|
|
|
private:
|
|
RegExpTree* body_;
|
|
int min_;
|
|
int max_;
|
|
int min_match_;
|
|
int max_match_;
|
|
QuantifierType quantifier_type_;
|
|
};
|
|
|
|
|
|
class RegExpCapture V8_FINAL : public RegExpTree {
|
|
public:
|
|
explicit RegExpCapture(RegExpTree* body, int index)
|
|
: body_(body), index_(index) { }
|
|
virtual void* Accept(RegExpVisitor* visitor, void* data) V8_OVERRIDE;
|
|
virtual RegExpNode* ToNode(RegExpCompiler* compiler,
|
|
RegExpNode* on_success) V8_OVERRIDE;
|
|
static RegExpNode* ToNode(RegExpTree* body,
|
|
int index,
|
|
RegExpCompiler* compiler,
|
|
RegExpNode* on_success);
|
|
virtual RegExpCapture* AsCapture() V8_OVERRIDE;
|
|
virtual bool IsAnchoredAtStart() V8_OVERRIDE;
|
|
virtual bool IsAnchoredAtEnd() V8_OVERRIDE;
|
|
virtual Interval CaptureRegisters() V8_OVERRIDE;
|
|
virtual bool IsCapture() V8_OVERRIDE;
|
|
virtual int min_match() V8_OVERRIDE { return body_->min_match(); }
|
|
virtual int max_match() V8_OVERRIDE { return body_->max_match(); }
|
|
RegExpTree* body() { return body_; }
|
|
int index() { return index_; }
|
|
static int StartRegister(int index) { return index * 2; }
|
|
static int EndRegister(int index) { return index * 2 + 1; }
|
|
|
|
private:
|
|
RegExpTree* body_;
|
|
int index_;
|
|
};
|
|
|
|
|
|
class RegExpLookahead V8_FINAL : public RegExpTree {
|
|
public:
|
|
RegExpLookahead(RegExpTree* body,
|
|
bool is_positive,
|
|
int capture_count,
|
|
int capture_from)
|
|
: body_(body),
|
|
is_positive_(is_positive),
|
|
capture_count_(capture_count),
|
|
capture_from_(capture_from) { }
|
|
|
|
virtual void* Accept(RegExpVisitor* visitor, void* data) V8_OVERRIDE;
|
|
virtual RegExpNode* ToNode(RegExpCompiler* compiler,
|
|
RegExpNode* on_success) V8_OVERRIDE;
|
|
virtual RegExpLookahead* AsLookahead() V8_OVERRIDE;
|
|
virtual Interval CaptureRegisters() V8_OVERRIDE;
|
|
virtual bool IsLookahead() V8_OVERRIDE;
|
|
virtual bool IsAnchoredAtStart() V8_OVERRIDE;
|
|
virtual int min_match() V8_OVERRIDE { return 0; }
|
|
virtual int max_match() V8_OVERRIDE { return 0; }
|
|
RegExpTree* body() { return body_; }
|
|
bool is_positive() { return is_positive_; }
|
|
int capture_count() { return capture_count_; }
|
|
int capture_from() { return capture_from_; }
|
|
|
|
private:
|
|
RegExpTree* body_;
|
|
bool is_positive_;
|
|
int capture_count_;
|
|
int capture_from_;
|
|
};
|
|
|
|
|
|
class RegExpBackReference V8_FINAL : public RegExpTree {
|
|
public:
|
|
explicit RegExpBackReference(RegExpCapture* capture)
|
|
: capture_(capture) { }
|
|
virtual void* Accept(RegExpVisitor* visitor, void* data) V8_OVERRIDE;
|
|
virtual RegExpNode* ToNode(RegExpCompiler* compiler,
|
|
RegExpNode* on_success) V8_OVERRIDE;
|
|
virtual RegExpBackReference* AsBackReference() V8_OVERRIDE;
|
|
virtual bool IsBackReference() V8_OVERRIDE;
|
|
virtual int min_match() V8_OVERRIDE { return 0; }
|
|
virtual int max_match() V8_OVERRIDE { return capture_->max_match(); }
|
|
int index() { return capture_->index(); }
|
|
RegExpCapture* capture() { return capture_; }
|
|
private:
|
|
RegExpCapture* capture_;
|
|
};
|
|
|
|
|
|
class RegExpEmpty V8_FINAL : public RegExpTree {
|
|
public:
|
|
RegExpEmpty() { }
|
|
virtual void* Accept(RegExpVisitor* visitor, void* data) V8_OVERRIDE;
|
|
virtual RegExpNode* ToNode(RegExpCompiler* compiler,
|
|
RegExpNode* on_success) V8_OVERRIDE;
|
|
virtual RegExpEmpty* AsEmpty() V8_OVERRIDE;
|
|
virtual bool IsEmpty() V8_OVERRIDE;
|
|
virtual int min_match() V8_OVERRIDE { return 0; }
|
|
virtual int max_match() V8_OVERRIDE { return 0; }
|
|
static RegExpEmpty* GetInstance() {
|
|
static RegExpEmpty* instance = ::new RegExpEmpty();
|
|
return instance;
|
|
}
|
|
};
|
|
|
|
|
|
// ----------------------------------------------------------------------------
|
|
// Out-of-line inline constructors (to side-step cyclic dependencies).
|
|
|
|
inline ModuleVariable::ModuleVariable(VariableProxy* proxy)
|
|
: Module(proxy->interface()),
|
|
proxy_(proxy) {
|
|
}
|
|
|
|
|
|
// ----------------------------------------------------------------------------
|
|
// Basic visitor
|
|
// - leaf node visitors are abstract.
|
|
|
|
class AstVisitor BASE_EMBEDDED {
|
|
public:
|
|
AstVisitor() {}
|
|
virtual ~AstVisitor() {}
|
|
|
|
// Stack overflow check and dynamic dispatch.
|
|
virtual void Visit(AstNode* node) = 0;
|
|
|
|
// Iteration left-to-right.
|
|
virtual void VisitDeclarations(ZoneList<Declaration*>* declarations);
|
|
virtual void VisitStatements(ZoneList<Statement*>* statements);
|
|
virtual void VisitExpressions(ZoneList<Expression*>* expressions);
|
|
|
|
// Individual AST nodes.
|
|
#define DEF_VISIT(type) \
|
|
virtual void Visit##type(type* node) = 0;
|
|
AST_NODE_LIST(DEF_VISIT)
|
|
#undef DEF_VISIT
|
|
};
|
|
|
|
|
|
#define DEFINE_AST_VISITOR_SUBCLASS_MEMBERS() \
|
|
public: \
|
|
virtual void Visit(AstNode* node) V8_FINAL V8_OVERRIDE { \
|
|
if (!CheckStackOverflow()) node->Accept(this); \
|
|
} \
|
|
\
|
|
void SetStackOverflow() { stack_overflow_ = true; } \
|
|
void ClearStackOverflow() { stack_overflow_ = false; } \
|
|
bool HasStackOverflow() const { return stack_overflow_; } \
|
|
\
|
|
bool CheckStackOverflow() { \
|
|
if (stack_overflow_) return true; \
|
|
StackLimitCheck check(isolate_); \
|
|
if (!check.HasOverflowed()) return false; \
|
|
return (stack_overflow_ = true); \
|
|
} \
|
|
\
|
|
private: \
|
|
void InitializeAstVisitor(Isolate* isolate) { \
|
|
isolate_ = isolate; \
|
|
stack_overflow_ = false; \
|
|
} \
|
|
Isolate* isolate() { return isolate_; } \
|
|
\
|
|
Isolate* isolate_; \
|
|
bool stack_overflow_
|
|
|
|
|
|
// ----------------------------------------------------------------------------
|
|
// Construction time visitor.
|
|
|
|
class AstConstructionVisitor BASE_EMBEDDED {
|
|
public:
|
|
AstConstructionVisitor() : dont_optimize_reason_(kNoReason) { }
|
|
|
|
AstProperties* ast_properties() { return &properties_; }
|
|
BailoutReason dont_optimize_reason() { return dont_optimize_reason_; }
|
|
|
|
private:
|
|
template<class> friend class AstNodeFactory;
|
|
|
|
// Node visitors.
|
|
#define DEF_VISIT(type) \
|
|
void Visit##type(type* node);
|
|
AST_NODE_LIST(DEF_VISIT)
|
|
#undef DEF_VISIT
|
|
|
|
void increase_node_count() { properties_.add_node_count(1); }
|
|
void add_flag(AstPropertiesFlag flag) { properties_.flags()->Add(flag); }
|
|
void set_dont_optimize_reason(BailoutReason reason) {
|
|
dont_optimize_reason_ = reason;
|
|
}
|
|
|
|
AstProperties properties_;
|
|
BailoutReason dont_optimize_reason_;
|
|
};
|
|
|
|
|
|
class AstNullVisitor BASE_EMBEDDED {
|
|
public:
|
|
// Node visitors.
|
|
#define DEF_VISIT(type) \
|
|
void Visit##type(type* node) {}
|
|
AST_NODE_LIST(DEF_VISIT)
|
|
#undef DEF_VISIT
|
|
};
|
|
|
|
|
|
|
|
// ----------------------------------------------------------------------------
|
|
// AstNode factory
|
|
|
|
template<class Visitor>
|
|
class AstNodeFactory V8_FINAL BASE_EMBEDDED {
|
|
public:
|
|
AstNodeFactory(Isolate* isolate, Zone* zone)
|
|
: isolate_(isolate),
|
|
zone_(zone) { }
|
|
|
|
Visitor* visitor() { return &visitor_; }
|
|
|
|
#define VISIT_AND_RETURN(NodeType, node) \
|
|
visitor_.Visit##NodeType((node)); \
|
|
return node;
|
|
|
|
VariableDeclaration* NewVariableDeclaration(VariableProxy* proxy,
|
|
VariableMode mode,
|
|
Scope* scope) {
|
|
VariableDeclaration* decl =
|
|
new(zone_) VariableDeclaration(proxy, mode, scope);
|
|
VISIT_AND_RETURN(VariableDeclaration, decl)
|
|
}
|
|
|
|
FunctionDeclaration* NewFunctionDeclaration(VariableProxy* proxy,
|
|
VariableMode mode,
|
|
FunctionLiteral* fun,
|
|
Scope* scope) {
|
|
FunctionDeclaration* decl =
|
|
new(zone_) FunctionDeclaration(proxy, mode, fun, scope);
|
|
VISIT_AND_RETURN(FunctionDeclaration, decl)
|
|
}
|
|
|
|
ModuleDeclaration* NewModuleDeclaration(VariableProxy* proxy,
|
|
Module* module,
|
|
Scope* scope) {
|
|
ModuleDeclaration* decl =
|
|
new(zone_) ModuleDeclaration(proxy, module, scope);
|
|
VISIT_AND_RETURN(ModuleDeclaration, decl)
|
|
}
|
|
|
|
ImportDeclaration* NewImportDeclaration(VariableProxy* proxy,
|
|
Module* module,
|
|
Scope* scope) {
|
|
ImportDeclaration* decl =
|
|
new(zone_) ImportDeclaration(proxy, module, scope);
|
|
VISIT_AND_RETURN(ImportDeclaration, decl)
|
|
}
|
|
|
|
ExportDeclaration* NewExportDeclaration(VariableProxy* proxy,
|
|
Scope* scope) {
|
|
ExportDeclaration* decl =
|
|
new(zone_) ExportDeclaration(proxy, scope);
|
|
VISIT_AND_RETURN(ExportDeclaration, decl)
|
|
}
|
|
|
|
ModuleLiteral* NewModuleLiteral(Block* body, Interface* interface) {
|
|
ModuleLiteral* module = new(zone_) ModuleLiteral(body, interface);
|
|
VISIT_AND_RETURN(ModuleLiteral, module)
|
|
}
|
|
|
|
ModuleVariable* NewModuleVariable(VariableProxy* proxy) {
|
|
ModuleVariable* module = new(zone_) ModuleVariable(proxy);
|
|
VISIT_AND_RETURN(ModuleVariable, module)
|
|
}
|
|
|
|
ModulePath* NewModulePath(Module* origin, Handle<String> name) {
|
|
ModulePath* module = new(zone_) ModulePath(origin, name, zone_);
|
|
VISIT_AND_RETURN(ModulePath, module)
|
|
}
|
|
|
|
ModuleUrl* NewModuleUrl(Handle<String> url) {
|
|
ModuleUrl* module = new(zone_) ModuleUrl(url, zone_);
|
|
VISIT_AND_RETURN(ModuleUrl, module)
|
|
}
|
|
|
|
Block* NewBlock(ZoneStringList* labels,
|
|
int capacity,
|
|
bool is_initializer_block) {
|
|
Block* block = new(zone_) Block(
|
|
isolate_, labels, capacity, is_initializer_block, zone_);
|
|
VISIT_AND_RETURN(Block, block)
|
|
}
|
|
|
|
#define STATEMENT_WITH_LABELS(NodeType) \
|
|
NodeType* New##NodeType(ZoneStringList* labels) { \
|
|
NodeType* stmt = new(zone_) NodeType(isolate_, labels); \
|
|
VISIT_AND_RETURN(NodeType, stmt); \
|
|
}
|
|
STATEMENT_WITH_LABELS(DoWhileStatement)
|
|
STATEMENT_WITH_LABELS(WhileStatement)
|
|
STATEMENT_WITH_LABELS(ForStatement)
|
|
STATEMENT_WITH_LABELS(SwitchStatement)
|
|
#undef STATEMENT_WITH_LABELS
|
|
|
|
ForEachStatement* NewForEachStatement(ForEachStatement::VisitMode visit_mode,
|
|
ZoneStringList* labels) {
|
|
switch (visit_mode) {
|
|
case ForEachStatement::ENUMERATE: {
|
|
ForInStatement* stmt = new(zone_) ForInStatement(isolate_, labels);
|
|
VISIT_AND_RETURN(ForInStatement, stmt);
|
|
}
|
|
case ForEachStatement::ITERATE: {
|
|
ForOfStatement* stmt = new(zone_) ForOfStatement(isolate_, labels);
|
|
VISIT_AND_RETURN(ForOfStatement, stmt);
|
|
}
|
|
}
|
|
UNREACHABLE();
|
|
return NULL;
|
|
}
|
|
|
|
ModuleStatement* NewModuleStatement(VariableProxy* proxy, Block* body) {
|
|
ModuleStatement* stmt = new(zone_) ModuleStatement(proxy, body);
|
|
VISIT_AND_RETURN(ModuleStatement, stmt)
|
|
}
|
|
|
|
ExpressionStatement* NewExpressionStatement(Expression* expression) {
|
|
ExpressionStatement* stmt = new(zone_) ExpressionStatement(expression);
|
|
VISIT_AND_RETURN(ExpressionStatement, stmt)
|
|
}
|
|
|
|
ContinueStatement* NewContinueStatement(IterationStatement* target) {
|
|
ContinueStatement* stmt = new(zone_) ContinueStatement(target);
|
|
VISIT_AND_RETURN(ContinueStatement, stmt)
|
|
}
|
|
|
|
BreakStatement* NewBreakStatement(BreakableStatement* target) {
|
|
BreakStatement* stmt = new(zone_) BreakStatement(target);
|
|
VISIT_AND_RETURN(BreakStatement, stmt)
|
|
}
|
|
|
|
ReturnStatement* NewReturnStatement(Expression* expression) {
|
|
ReturnStatement* stmt = new(zone_) ReturnStatement(expression);
|
|
VISIT_AND_RETURN(ReturnStatement, stmt)
|
|
}
|
|
|
|
WithStatement* NewWithStatement(Scope* scope,
|
|
Expression* expression,
|
|
Statement* statement) {
|
|
WithStatement* stmt = new(zone_) WithStatement(
|
|
scope, expression, statement);
|
|
VISIT_AND_RETURN(WithStatement, stmt)
|
|
}
|
|
|
|
IfStatement* NewIfStatement(Expression* condition,
|
|
Statement* then_statement,
|
|
Statement* else_statement) {
|
|
IfStatement* stmt = new(zone_) IfStatement(
|
|
isolate_, condition, then_statement, else_statement);
|
|
VISIT_AND_RETURN(IfStatement, stmt)
|
|
}
|
|
|
|
TryCatchStatement* NewTryCatchStatement(int index,
|
|
Block* try_block,
|
|
Scope* scope,
|
|
Variable* variable,
|
|
Block* catch_block) {
|
|
TryCatchStatement* stmt = new(zone_) TryCatchStatement(
|
|
index, try_block, scope, variable, catch_block);
|
|
VISIT_AND_RETURN(TryCatchStatement, stmt)
|
|
}
|
|
|
|
TryFinallyStatement* NewTryFinallyStatement(int index,
|
|
Block* try_block,
|
|
Block* finally_block) {
|
|
TryFinallyStatement* stmt =
|
|
new(zone_) TryFinallyStatement(index, try_block, finally_block);
|
|
VISIT_AND_RETURN(TryFinallyStatement, stmt)
|
|
}
|
|
|
|
DebuggerStatement* NewDebuggerStatement() {
|
|
DebuggerStatement* stmt = new(zone_) DebuggerStatement();
|
|
VISIT_AND_RETURN(DebuggerStatement, stmt)
|
|
}
|
|
|
|
EmptyStatement* NewEmptyStatement() {
|
|
return new(zone_) EmptyStatement();
|
|
}
|
|
|
|
Literal* NewLiteral(Handle<Object> handle) {
|
|
Literal* lit = new(zone_) Literal(isolate_, handle);
|
|
VISIT_AND_RETURN(Literal, lit)
|
|
}
|
|
|
|
Literal* NewNumberLiteral(double number) {
|
|
return NewLiteral(isolate_->factory()->NewNumber(number, TENURED));
|
|
}
|
|
|
|
ObjectLiteral* NewObjectLiteral(
|
|
Handle<FixedArray> constant_properties,
|
|
ZoneList<ObjectLiteral::Property*>* properties,
|
|
int literal_index,
|
|
bool is_simple,
|
|
bool fast_elements,
|
|
int depth,
|
|
bool may_store_doubles,
|
|
bool has_function) {
|
|
ObjectLiteral* lit = new(zone_) ObjectLiteral(
|
|
isolate_, constant_properties, properties, literal_index,
|
|
is_simple, fast_elements, depth, may_store_doubles, has_function);
|
|
VISIT_AND_RETURN(ObjectLiteral, lit)
|
|
}
|
|
|
|
ObjectLiteral::Property* NewObjectLiteralProperty(bool is_getter,
|
|
FunctionLiteral* value) {
|
|
ObjectLiteral::Property* prop =
|
|
new(zone_) ObjectLiteral::Property(is_getter, value);
|
|
prop->set_key(NewLiteral(value->name()));
|
|
return prop; // Not an AST node, will not be visited.
|
|
}
|
|
|
|
RegExpLiteral* NewRegExpLiteral(Handle<String> pattern,
|
|
Handle<String> flags,
|
|
int literal_index) {
|
|
RegExpLiteral* lit =
|
|
new(zone_) RegExpLiteral(isolate_, pattern, flags, literal_index);
|
|
VISIT_AND_RETURN(RegExpLiteral, lit);
|
|
}
|
|
|
|
ArrayLiteral* NewArrayLiteral(Handle<FixedArray> constant_elements,
|
|
ZoneList<Expression*>* values,
|
|
int literal_index,
|
|
bool is_simple,
|
|
int depth) {
|
|
ArrayLiteral* lit = new(zone_) ArrayLiteral(
|
|
isolate_, constant_elements, values, literal_index, is_simple, depth);
|
|
VISIT_AND_RETURN(ArrayLiteral, lit)
|
|
}
|
|
|
|
VariableProxy* NewVariableProxy(Variable* var) {
|
|
VariableProxy* proxy = new(zone_) VariableProxy(isolate_, var);
|
|
VISIT_AND_RETURN(VariableProxy, proxy)
|
|
}
|
|
|
|
VariableProxy* NewVariableProxy(Handle<String> name,
|
|
bool is_this,
|
|
Interface* interface = Interface::NewValue(),
|
|
int position = RelocInfo::kNoPosition) {
|
|
VariableProxy* proxy =
|
|
new(zone_) VariableProxy(isolate_, name, is_this, interface, position);
|
|
VISIT_AND_RETURN(VariableProxy, proxy)
|
|
}
|
|
|
|
Property* NewProperty(Expression* obj, Expression* key, int pos) {
|
|
Property* prop = new(zone_) Property(isolate_, obj, key, pos);
|
|
VISIT_AND_RETURN(Property, prop)
|
|
}
|
|
|
|
Call* NewCall(Expression* expression,
|
|
ZoneList<Expression*>* arguments,
|
|
int pos) {
|
|
Call* call = new(zone_) Call(isolate_, expression, arguments, pos);
|
|
VISIT_AND_RETURN(Call, call)
|
|
}
|
|
|
|
CallNew* NewCallNew(Expression* expression,
|
|
ZoneList<Expression*>* arguments,
|
|
int pos) {
|
|
CallNew* call = new(zone_) CallNew(isolate_, expression, arguments, pos);
|
|
VISIT_AND_RETURN(CallNew, call)
|
|
}
|
|
|
|
CallRuntime* NewCallRuntime(Handle<String> name,
|
|
const Runtime::Function* function,
|
|
ZoneList<Expression*>* arguments) {
|
|
CallRuntime* call =
|
|
new(zone_) CallRuntime(isolate_, name, function, arguments);
|
|
VISIT_AND_RETURN(CallRuntime, call)
|
|
}
|
|
|
|
UnaryOperation* NewUnaryOperation(Token::Value op,
|
|
Expression* expression,
|
|
int pos) {
|
|
UnaryOperation* node =
|
|
new(zone_) UnaryOperation(isolate_, op, expression, pos);
|
|
VISIT_AND_RETURN(UnaryOperation, node)
|
|
}
|
|
|
|
BinaryOperation* NewBinaryOperation(Token::Value op,
|
|
Expression* left,
|
|
Expression* right,
|
|
int pos) {
|
|
BinaryOperation* node =
|
|
new(zone_) BinaryOperation(isolate_, op, left, right, pos);
|
|
VISIT_AND_RETURN(BinaryOperation, node)
|
|
}
|
|
|
|
CountOperation* NewCountOperation(Token::Value op,
|
|
bool is_prefix,
|
|
Expression* expr,
|
|
int pos) {
|
|
CountOperation* node =
|
|
new(zone_) CountOperation(isolate_, op, is_prefix, expr, pos);
|
|
VISIT_AND_RETURN(CountOperation, node)
|
|
}
|
|
|
|
CompareOperation* NewCompareOperation(Token::Value op,
|
|
Expression* left,
|
|
Expression* right,
|
|
int pos) {
|
|
CompareOperation* node =
|
|
new(zone_) CompareOperation(isolate_, op, left, right, pos);
|
|
VISIT_AND_RETURN(CompareOperation, node)
|
|
}
|
|
|
|
Conditional* NewConditional(Expression* condition,
|
|
Expression* then_expression,
|
|
Expression* else_expression,
|
|
int then_expression_position,
|
|
int else_expression_position) {
|
|
Conditional* cond = new(zone_) Conditional(
|
|
isolate_, condition, then_expression, else_expression,
|
|
then_expression_position, else_expression_position);
|
|
VISIT_AND_RETURN(Conditional, cond)
|
|
}
|
|
|
|
Assignment* NewAssignment(Token::Value op,
|
|
Expression* target,
|
|
Expression* value,
|
|
int pos) {
|
|
Assignment* assign =
|
|
new(zone_) Assignment(isolate_, op, target, value, pos);
|
|
assign->Init(isolate_, this);
|
|
VISIT_AND_RETURN(Assignment, assign)
|
|
}
|
|
|
|
Yield* NewYield(Expression *generator_object,
|
|
Expression* expression,
|
|
Yield::Kind yield_kind,
|
|
int pos) {
|
|
Yield* yield = new(zone_) Yield(
|
|
isolate_, generator_object, expression, yield_kind, pos);
|
|
VISIT_AND_RETURN(Yield, yield)
|
|
}
|
|
|
|
Throw* NewThrow(Expression* exception, int pos) {
|
|
Throw* t = new(zone_) Throw(isolate_, exception, pos);
|
|
VISIT_AND_RETURN(Throw, t)
|
|
}
|
|
|
|
FunctionLiteral* NewFunctionLiteral(
|
|
Handle<String> name,
|
|
Scope* scope,
|
|
ZoneList<Statement*>* body,
|
|
int materialized_literal_count,
|
|
int expected_property_count,
|
|
int handler_count,
|
|
int parameter_count,
|
|
FunctionLiteral::ParameterFlag has_duplicate_parameters,
|
|
FunctionLiteral::FunctionType function_type,
|
|
FunctionLiteral::IsFunctionFlag is_function,
|
|
FunctionLiteral::IsParenthesizedFlag is_parenthesized,
|
|
FunctionLiteral::IsGeneratorFlag is_generator) {
|
|
FunctionLiteral* lit = new(zone_) FunctionLiteral(
|
|
isolate_, name, scope, body,
|
|
materialized_literal_count, expected_property_count, handler_count,
|
|
parameter_count, function_type, has_duplicate_parameters, is_function,
|
|
is_parenthesized, is_generator);
|
|
// Top-level literal doesn't count for the AST's properties.
|
|
if (is_function == FunctionLiteral::kIsFunction) {
|
|
visitor_.VisitFunctionLiteral(lit);
|
|
}
|
|
return lit;
|
|
}
|
|
|
|
SharedFunctionInfoLiteral* NewSharedFunctionInfoLiteral(
|
|
Handle<SharedFunctionInfo> shared_function_info) {
|
|
SharedFunctionInfoLiteral* lit =
|
|
new(zone_) SharedFunctionInfoLiteral(isolate_, shared_function_info);
|
|
VISIT_AND_RETURN(SharedFunctionInfoLiteral, lit)
|
|
}
|
|
|
|
ThisFunction* NewThisFunction() {
|
|
ThisFunction* fun = new(zone_) ThisFunction(isolate_);
|
|
VISIT_AND_RETURN(ThisFunction, fun)
|
|
}
|
|
|
|
#undef VISIT_AND_RETURN
|
|
|
|
private:
|
|
Isolate* isolate_;
|
|
Zone* zone_;
|
|
Visitor visitor_;
|
|
};
|
|
|
|
|
|
} } // namespace v8::internal
|
|
|
|
#endif // V8_AST_H_
|