| 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 54 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 65 // GenerateFastCaseSwitchStatement | 65 // GenerateFastCaseSwitchStatement |
| 66 // GenerateFastCaseSwitchCases | 66 // GenerateFastCaseSwitchCases |
| 67 // TryGenerateFastCaseSwitchStatement | 67 // TryGenerateFastCaseSwitchStatement |
| 68 // GenerateFastCaseSwitchJumpTable | 68 // GenerateFastCaseSwitchJumpTable |
| 69 // FastCaseSwitchMinCaseCount | 69 // FastCaseSwitchMinCaseCount |
| 70 // FastCaseSwitchMaxOverheadFactor | 70 // FastCaseSwitchMaxOverheadFactor |
| 71 // CodeForFunctionPosition | 71 // CodeForFunctionPosition |
| 72 // CodeForReturnPosition | 72 // CodeForReturnPosition |
| 73 // CodeForStatementPosition | 73 // CodeForStatementPosition |
| 74 // CodeForSourcePosition | 74 // CodeForSourcePosition |
| 75 // LoadAndSpill |
| 76 // VisitAndSpill |
| 77 // VisitStatementsAndSpill |
| 75 | 78 |
| 76 | 79 |
| 77 // Mode to overwrite BinaryExpression values. | 80 // Mode to overwrite BinaryExpression values. |
| 78 enum OverwriteMode { NO_OVERWRITE, OVERWRITE_LEFT, OVERWRITE_RIGHT }; | 81 enum OverwriteMode { NO_OVERWRITE, OVERWRITE_LEFT, OVERWRITE_RIGHT }; |
| 79 | 82 |
| 80 | 83 |
| 81 #if V8_TARGET_ARCH_IA32 | 84 #if V8_TARGET_ARCH_IA32 |
| 82 #include "ia32/codegen-ia32.h" | 85 #include "ia32/codegen-ia32.h" |
| 83 #elif V8_TARGET_ARCH_X64 | 86 #elif V8_TARGET_ARCH_X64 |
| 84 #include "x64/codegen-x64.h" | 87 #include "x64/codegen-x64.h" |
| (...skipping 229 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 314 PrintF("ArgumentsAccessStub (type %d)\n", type_); | 317 PrintF("ArgumentsAccessStub (type %d)\n", type_); |
| 315 } | 318 } |
| 316 #endif | 319 #endif |
| 317 }; | 320 }; |
| 318 | 321 |
| 319 | 322 |
| 320 } // namespace internal | 323 } // namespace internal |
| 321 } // namespace v8 | 324 } // namespace v8 |
| 322 | 325 |
| 323 #endif // V8_CODEGEN_H_ | 326 #endif // V8_CODEGEN_H_ |
| OLD | NEW |