| OLD | NEW |
| 1 // Copyright 2011 the V8 project authors. All rights reserved. | 1 // Copyright 2011 the V8 project authors. All rights reserved. |
| 2 // Redistribution and use in source and binary forms, with or without | 2 // Redistribution and use in source and binary forms, with or without |
| 3 // modification, are permitted provided that the following conditions are | 3 // modification, are permitted provided that the following conditions are |
| 4 // met: | 4 // met: |
| 5 // | 5 // |
| 6 // * Redistributions of source code must retain the above copyright | 6 // * Redistributions of source code must retain the above copyright |
| 7 // notice, this list of conditions and the following disclaimer. | 7 // notice, this list of conditions and the following disclaimer. |
| 8 // * Redistributions in binary form must reproduce the above | 8 // * Redistributions in binary form must reproduce the above |
| 9 // copyright notice, this list of conditions and the following | 9 // copyright notice, this list of conditions and the following |
| 10 // disclaimer in the documentation and/or other materials provided | 10 // disclaimer in the documentation and/or other materials provided |
| (...skipping 28 matching lines...) Expand all Loading... |
| 39 // Forward declarations | 39 // Forward declarations |
| 40 class CompilationInfo; | 40 class CompilationInfo; |
| 41 | 41 |
| 42 enum TypeofState { INSIDE_TYPEOF, NOT_INSIDE_TYPEOF }; | 42 enum TypeofState { INSIDE_TYPEOF, NOT_INSIDE_TYPEOF }; |
| 43 | 43 |
| 44 // ------------------------------------------------------------------------- | 44 // ------------------------------------------------------------------------- |
| 45 // CodeGenerator | 45 // CodeGenerator |
| 46 | 46 |
| 47 class CodeGenerator: public AstVisitor { | 47 class CodeGenerator: public AstVisitor { |
| 48 public: | 48 public: |
| 49 CodeGenerator() { |
| 50 InitializeAstVisitor(); |
| 51 } |
| 52 |
| 49 static bool MakeCode(CompilationInfo* info); | 53 static bool MakeCode(CompilationInfo* info); |
| 50 | 54 |
| 51 // Printing of AST, etc. as requested by flags. | 55 // Printing of AST, etc. as requested by flags. |
| 52 static void MakeCodePrologue(CompilationInfo* info); | 56 static void MakeCodePrologue(CompilationInfo* info); |
| 53 | 57 |
| 54 // Allocate and install the code. | 58 // Allocate and install the code. |
| 55 static Handle<Code> MakeCodeEpilogue(MacroAssembler* masm, | 59 static Handle<Code> MakeCodeEpilogue(MacroAssembler* masm, |
| 56 Code::Flags flags, | 60 Code::Flags flags, |
| 57 CompilationInfo* info); | 61 CompilationInfo* info); |
| 58 | 62 |
| 59 // Print the code after compiling it. | 63 // Print the code after compiling it. |
| 60 static void PrintCode(Handle<Code> code, CompilationInfo* info); | 64 static void PrintCode(Handle<Code> code, CompilationInfo* info); |
| 61 | 65 |
| 62 static bool ShouldGenerateLog(Expression* type); | 66 static bool ShouldGenerateLog(Expression* type); |
| 63 | 67 |
| 64 static void SetFunctionInfo(Handle<JSFunction> fun, | 68 static void SetFunctionInfo(Handle<JSFunction> fun, |
| 65 FunctionLiteral* lit, | 69 FunctionLiteral* lit, |
| 66 bool is_toplevel, | 70 bool is_toplevel, |
| 67 Handle<Script> script); | 71 Handle<Script> script); |
| 68 | 72 |
| 69 static bool RecordPositions(MacroAssembler* masm, | 73 static bool RecordPositions(MacroAssembler* masm, |
| 70 int pos, | 74 int pos, |
| 71 bool right_here = false); | 75 bool right_here = false); |
| 72 | 76 |
| 73 DEFINE_AST_VISITOR_SUBCLASS_METHODS(); | 77 DEFINE_AST_VISITOR_SUBCLASS_MEMBERS(); |
| 74 | 78 |
| 75 private: | 79 private: |
| 76 DISALLOW_COPY_AND_ASSIGN(CodeGenerator); | 80 DISALLOW_COPY_AND_ASSIGN(CodeGenerator); |
| 77 }; | 81 }; |
| 78 | 82 |
| 79 | 83 |
| 80 class StringCharLoadGenerator : public AllStatic { | 84 class StringCharLoadGenerator : public AllStatic { |
| 81 public: | 85 public: |
| 82 // Generates the code for handling different string types and loading the | 86 // Generates the code for handling different string types and loading the |
| 83 // indexed character into |result|. We expect |index| as untagged input and | 87 // indexed character into |result|. We expect |index| as untagged input and |
| (...skipping 20 matching lines...) Expand all Loading... |
| 104 Register temp2, | 108 Register temp2, |
| 105 Register temp3); | 109 Register temp3); |
| 106 | 110 |
| 107 private: | 111 private: |
| 108 DISALLOW_COPY_AND_ASSIGN(MathExpGenerator); | 112 DISALLOW_COPY_AND_ASSIGN(MathExpGenerator); |
| 109 }; | 113 }; |
| 110 | 114 |
| 111 } } // namespace v8::internal | 115 } } // namespace v8::internal |
| 112 | 116 |
| 113 #endif // V8_MIPS_CODEGEN_MIPS_H_ | 117 #endif // V8_MIPS_CODEGEN_MIPS_H_ |
| OLD | NEW |