// Copyright 2010 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_MIPS_CODEGEN_MIPS_H_ #define V8_MIPS_CODEGEN_MIPS_H_ namespace v8 { namespace internal { // Forward declarations class CompilationInfo; class DeferredCode; class RegisterAllocator; class RegisterFile; enum InitState { CONST_INIT, NOT_CONST_INIT }; enum TypeofState { INSIDE_TYPEOF, NOT_INSIDE_TYPEOF }; // ----------------------------------------------------------------------------- // Reference support // A reference is a C++ stack-allocated object that keeps an ECMA // reference on the execution stack while in scope. For variables // the reference is empty, indicating that it isn't necessary to // store state on the stack for keeping track of references to those. // For properties, we keep either one (named) or two (indexed) values // on the execution stack to represent the reference. class Reference BASE_EMBEDDED { public: // The values of the types is important, see size(). enum Type { UNLOADED = -2, ILLEGAL = -1, SLOT = 0, NAMED = 1, KEYED = 2 }; Reference(CodeGenerator* cgen, Expression* expression, bool persist_after_get = false); ~Reference(); Expression* expression() const { return expression_; } Type type() const { return type_; } void set_type(Type value) { ASSERT_EQ(ILLEGAL, type_); type_ = value; } void set_unloaded() { ASSERT_NE(ILLEGAL, type_); ASSERT_NE(UNLOADED, type_); type_ = UNLOADED; } // The size the reference takes up on the stack. int size() const { return (type_ < SLOT) ? 0 : type_; } bool is_illegal() const { return type_ == ILLEGAL; } bool is_slot() const { return type_ == SLOT; } bool is_property() const { return type_ == NAMED || type_ == KEYED; } bool is_unloaded() const { return type_ == UNLOADED; } // Return the name. Only valid for named property references. Handle GetName(); // Generate code to push the value of the reference on top of the // expression stack. The reference is expected to be already on top of // the expression stack, and it is consumed by the call unless the // reference is for a compound assignment. // If the reference is not consumed, it is left in place under its value. void GetValue(); // Generate code to pop a reference, push the value of the reference, // and then spill the stack frame. inline void GetValueAndSpill(); // Generate code to store the value on top of the expression stack in the // reference. The reference is expected to be immediately below the value // on the expression stack. The value is stored in the location specified // by the reference, and is left on top of the stack, after the reference // is popped from beneath it (unloaded). void SetValue(InitState init_state); private: CodeGenerator* cgen_; Expression* expression_; Type type_; // Keep the reference on the stack after get, so it can be used by set later. bool persist_after_get_; }; // ----------------------------------------------------------------------------- // Code generation state // The state is passed down the AST by the code generator (and back up, in // the form of the state of the label pair). It is threaded through the // call stack. Constructing a state implicitly pushes it on the owning code // generator's stack of states, and destroying one implicitly pops it. class CodeGenState BASE_EMBEDDED { public: // Create an initial code generator state. Destroying the initial state // leaves the code generator with a NULL state. explicit CodeGenState(CodeGenerator* owner); // Create a code generator state based on a code generator's current // state. The new state has its own typeof state and pair of branch // labels. CodeGenState(CodeGenerator* owner, JumpTarget* true_target, JumpTarget* false_target); // Destroy a code generator state and restore the owning code generator's // previous state. ~CodeGenState(); TypeofState typeof_state() const { return typeof_state_; } JumpTarget* true_target() const { return true_target_; } JumpTarget* false_target() const { return false_target_; } private: // The owning code generator. CodeGenerator* owner_; // A flag indicating whether we are compiling the immediate subexpression // of a typeof expression. TypeofState typeof_state_; JumpTarget* true_target_; JumpTarget* false_target_; // The previous state of the owning code generator, restored when // this state is destroyed. CodeGenState* previous_; }; // ----------------------------------------------------------------------------- // CodeGenerator class CodeGenerator: public AstVisitor { public: // Compilation mode. Either the compiler is used as the primary // compiler and needs to setup everything or the compiler is used as // the secondary compiler for split compilation and has to handle // bailouts. enum Mode { PRIMARY, SECONDARY }; // Takes a function literal, generates code for it. This function should only // be called by compiler.cc. static Handle MakeCode(CompilationInfo* info); // Printing of AST, etc. as requested by flags. static void MakeCodePrologue(CompilationInfo* info); // Allocate and install the code. static Handle MakeCodeEpilogue(MacroAssembler* masm, Code::Flags flags, CompilationInfo* info); #ifdef ENABLE_LOGGING_AND_PROFILING static bool ShouldGenerateLog(Expression* type); #endif static void SetFunctionInfo(Handle fun, FunctionLiteral* lit, bool is_toplevel, Handle