| OLD | NEW |
| 1 // Copyright 2010 the V8 project authors. All rights reserved. | 1 // Copyright 2010 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 40 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 51 // RecordPositions | 51 // RecordPositions |
| 52 // | 52 // |
| 53 // These methods are either used privately by the shared code or implemented as | 53 // These methods are either used privately by the shared code or implemented as |
| 54 // shared code: | 54 // shared code: |
| 55 // CodeGenerator | 55 // CodeGenerator |
| 56 // ~CodeGenerator | 56 // ~CodeGenerator |
| 57 // ProcessDeferred | 57 // ProcessDeferred |
| 58 // Generate | 58 // Generate |
| 59 // ComputeLazyCompile | 59 // ComputeLazyCompile |
| 60 // BuildFunctionInfo | 60 // BuildFunctionInfo |
| 61 // ComputeCallInitialize | |
| 62 // ComputeCallInitializeInLoop | |
| 63 // ProcessDeclarations | 61 // ProcessDeclarations |
| 64 // DeclareGlobals | 62 // DeclareGlobals |
| 65 // CheckForInlineRuntimeCall | 63 // CheckForInlineRuntimeCall |
| 66 // AnalyzeCondition | 64 // AnalyzeCondition |
| 67 // CodeForFunctionPosition | 65 // CodeForFunctionPosition |
| 68 // CodeForReturnPosition | 66 // CodeForReturnPosition |
| 69 // CodeForStatementPosition | 67 // CodeForStatementPosition |
| 70 // CodeForDoWhileConditionPosition | 68 // CodeForDoWhileConditionPosition |
| 71 // CodeForSourcePosition | 69 // CodeForSourcePosition |
| 72 | 70 |
| (...skipping 162 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 235 #ifdef DEBUG | 233 #ifdef DEBUG |
| 236 const char* comment_; | 234 const char* comment_; |
| 237 #endif | 235 #endif |
| 238 DISALLOW_COPY_AND_ASSIGN(DeferredCode); | 236 DISALLOW_COPY_AND_ASSIGN(DeferredCode); |
| 239 }; | 237 }; |
| 240 | 238 |
| 241 | 239 |
| 242 } } // namespace v8::internal | 240 } } // namespace v8::internal |
| 243 | 241 |
| 244 #endif // V8_CODEGEN_H_ | 242 #endif // V8_CODEGEN_H_ |
| OLD | NEW |