| OLD | NEW |
| 1 // Copyright 2006-2008 the V8 project authors. All rights reserved. | 1 // Copyright 2006-2008 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 41 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 52 // CodeGenerator | 52 // CodeGenerator |
| 53 // ~CodeGenerator | 53 // ~CodeGenerator |
| 54 // ProcessDeferred | 54 // ProcessDeferred |
| 55 // ClearDeferred | 55 // ClearDeferred |
| 56 // GenCode | 56 // GenCode |
| 57 // BuildBoilerplate | 57 // BuildBoilerplate |
| 58 // ComputeCallInitialize | 58 // ComputeCallInitialize |
| 59 // ComputeCallInitializeInLoop | 59 // ComputeCallInitializeInLoop |
| 60 // ProcessDeclarations | 60 // ProcessDeclarations |
| 61 // DeclareGlobals | 61 // DeclareGlobals |
| 62 // FindInlineRuntimeLUT |
| 62 // CheckForInlineRuntimeCall | 63 // CheckForInlineRuntimeCall |
| 64 // PatchInlineRuntimeEntry |
| 63 // GenerateFastCaseSwitchStatement | 65 // GenerateFastCaseSwitchStatement |
| 64 // GenerateFastCaseSwitchCases | 66 // GenerateFastCaseSwitchCases |
| 65 // TryGenerateFastCaseSwitchStatement | 67 // TryGenerateFastCaseSwitchStatement |
| 66 // GenerateFastCaseSwitchJumpTable | 68 // GenerateFastCaseSwitchJumpTable |
| 67 // FastCaseSwitchMinCaseCount | 69 // FastCaseSwitchMinCaseCount |
| 68 // FastCaseSwitchMaxOverheadFactor | 70 // FastCaseSwitchMaxOverheadFactor |
| 69 // CodeForFunctionPosition | 71 // CodeForFunctionPosition |
| 70 // CodeForReturnPosition | 72 // CodeForReturnPosition |
| 71 // CodeForStatementPosition | 73 // CodeForStatementPosition |
| 72 // CodeForSourcePosition | 74 // CodeForSourcePosition |
| (...skipping 239 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 312 PrintF("ArgumentsAccessStub (type %d)\n", type_); | 314 PrintF("ArgumentsAccessStub (type %d)\n", type_); |
| 313 } | 315 } |
| 314 #endif | 316 #endif |
| 315 }; | 317 }; |
| 316 | 318 |
| 317 | 319 |
| 318 } // namespace internal | 320 } // namespace internal |
| 319 } // namespace v8 | 321 } // namespace v8 |
| 320 | 322 |
| 321 #endif // V8_CODEGEN_H_ | 323 #endif // V8_CODEGEN_H_ |
| OLD | NEW |