| OLD | NEW |
| 1 // Copyright 2012 the V8 project authors. All rights reserved. | 1 // Copyright 2012 the V8 project authors. All rights reserved. |
| 2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
| 3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
| 4 | 4 |
| 5 #ifndef V8_FULL_CODEGEN_H_ | 5 #ifndef V8_FULL_CODEGEN_H_ |
| 6 #define V8_FULL_CODEGEN_H_ | 6 #define V8_FULL_CODEGEN_H_ |
| 7 | 7 |
| 8 #include "src/v8.h" | 8 #include "src/v8.h" |
| 9 | 9 |
| 10 #include "src/allocation.h" | 10 #include "src/allocation.h" |
| (...skipping 97 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 108 static const int kBootCodeSizeMultiplier = 140; | 108 static const int kBootCodeSizeMultiplier = 140; |
| 109 #elif V8_TARGET_ARCH_ARM | 109 #elif V8_TARGET_ARCH_ARM |
| 110 static const int kCodeSizeMultiplier = 149; | 110 static const int kCodeSizeMultiplier = 149; |
| 111 static const int kBootCodeSizeMultiplier = 110; | 111 static const int kBootCodeSizeMultiplier = 110; |
| 112 #elif V8_TARGET_ARCH_ARM64 | 112 #elif V8_TARGET_ARCH_ARM64 |
| 113 // TODO(all): Copied ARM value. Check this is sensible for ARM64. | 113 // TODO(all): Copied ARM value. Check this is sensible for ARM64. |
| 114 static const int kCodeSizeMultiplier = 149; | 114 static const int kCodeSizeMultiplier = 149; |
| 115 static const int kBootCodeSizeMultiplier = 110; | 115 static const int kBootCodeSizeMultiplier = 110; |
| 116 #elif V8_TARGET_ARCH_PPC64 | 116 #elif V8_TARGET_ARCH_PPC64 |
| 117 static const int kCodeSizeMultiplier = 200; | 117 static const int kCodeSizeMultiplier = 200; |
| 118 static const int kBootCodeSizeMultiplier = 120; | 118 static const int kBootCodeSizeMultiplier = 170; |
| 119 #elif V8_TARGET_ARCH_PPC | 119 #elif V8_TARGET_ARCH_PPC |
| 120 static const int kCodeSizeMultiplier = 200; | 120 static const int kCodeSizeMultiplier = 200; |
| 121 static const int kBootCodeSizeMultiplier = 120; | 121 static const int kBootCodeSizeMultiplier = 120; |
| 122 #elif V8_TARGET_ARCH_MIPS | 122 #elif V8_TARGET_ARCH_MIPS |
| 123 static const int kCodeSizeMultiplier = 149; | 123 static const int kCodeSizeMultiplier = 149; |
| 124 static const int kBootCodeSizeMultiplier = 120; | 124 static const int kBootCodeSizeMultiplier = 120; |
| 125 #elif V8_TARGET_ARCH_MIPS64 | 125 #elif V8_TARGET_ARCH_MIPS64 |
| 126 static const int kCodeSizeMultiplier = 149; | 126 static const int kCodeSizeMultiplier = 149; |
| 127 static const int kBootCodeSizeMultiplier = 170; | 127 static const int kBootCodeSizeMultiplier = 170; |
| 128 #else | 128 #else |
| (...skipping 918 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1047 | 1047 |
| 1048 Address start_; | 1048 Address start_; |
| 1049 Address instruction_start_; | 1049 Address instruction_start_; |
| 1050 uint32_t length_; | 1050 uint32_t length_; |
| 1051 }; | 1051 }; |
| 1052 | 1052 |
| 1053 | 1053 |
| 1054 } } // namespace v8::internal | 1054 } } // namespace v8::internal |
| 1055 | 1055 |
| 1056 #endif // V8_FULL_CODEGEN_H_ | 1056 #endif // V8_FULL_CODEGEN_H_ |
| OLD | NEW |