| OLD | NEW |
| 1 // Copyright 2009 the V8 project authors. All rights reserved. | 1 // Copyright 2009 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 50 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 61 // ----------------------------------------------------------------------------- | 61 // ----------------------------------------------------------------------------- |
| 62 // Full code generator. | 62 // Full code generator. |
| 63 | 63 |
| 64 class FullCodeGenerator: public AstVisitor { | 64 class FullCodeGenerator: public AstVisitor { |
| 65 public: | 65 public: |
| 66 enum Mode { | 66 enum Mode { |
| 67 PRIMARY, | 67 PRIMARY, |
| 68 SECONDARY | 68 SECONDARY |
| 69 }; | 69 }; |
| 70 | 70 |
| 71 FullCodeGenerator(MacroAssembler* masm) | 71 explicit FullCodeGenerator(MacroAssembler* masm) |
| 72 : masm_(masm), | 72 : masm_(masm), |
| 73 info_(NULL), | 73 info_(NULL), |
| 74 nesting_stack_(NULL), | 74 nesting_stack_(NULL), |
| 75 loop_depth_(0), | 75 loop_depth_(0), |
| 76 location_(kStack), | 76 location_(kStack), |
| 77 true_label_(NULL), | 77 true_label_(NULL), |
| 78 false_label_(NULL) { | 78 false_label_(NULL) { |
| 79 } | 79 } |
| 80 | 80 |
| 81 static Handle<Code> MakeCode(CompilationInfo* info); | 81 static Handle<Code> MakeCode(CompilationInfo* info); |
| (...skipping 360 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 442 | 442 |
| 443 friend class NestedStatement; | 443 friend class NestedStatement; |
| 444 | 444 |
| 445 DISALLOW_COPY_AND_ASSIGN(FullCodeGenerator); | 445 DISALLOW_COPY_AND_ASSIGN(FullCodeGenerator); |
| 446 }; | 446 }; |
| 447 | 447 |
| 448 | 448 |
| 449 } } // namespace v8::internal | 449 } } // namespace v8::internal |
| 450 | 450 |
| 451 #endif // V8_FULL_CODEGEN_H_ | 451 #endif // V8_FULL_CODEGEN_H_ |
| OLD | NEW |