Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(210)

Side by Side Diff: src/full-codegen.h

Issue 882443004: Revert of Only use FreeSpace objects in the free list. (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: Created 5 years, 10 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « src/api.cc ('k') | src/heap/heap.h » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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 106 matching lines...) Expand 10 before | Expand all | Expand 10 after
117 static const int kCodeSizeMultiplier = 200; 117 static const int kCodeSizeMultiplier = 200;
118 static const int kBootCodeSizeMultiplier = 120; 118 static const int kBootCodeSizeMultiplier = 120;
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 = 120;
128 #else 128 #else
129 #error Unsupported target architecture. 129 #error Unsupported target architecture.
130 #endif 130 #endif
131 131
132 private: 132 private:
133 class Breakable; 133 class Breakable;
134 class Iteration; 134 class Iteration;
135 135
136 class TestContext; 136 class TestContext;
137 137
(...skipping 912 matching lines...) Expand 10 before | Expand all | Expand 10 after
1050 1050
1051 Address start_; 1051 Address start_;
1052 Address instruction_start_; 1052 Address instruction_start_;
1053 uint32_t length_; 1053 uint32_t length_;
1054 }; 1054 };
1055 1055
1056 1056
1057 } } // namespace v8::internal 1057 } } // namespace v8::internal
1058 1058
1059 #endif // V8_FULL_CODEGEN_H_ 1059 #endif // V8_FULL_CODEGEN_H_
OLDNEW
« no previous file with comments | « src/api.cc ('k') | src/heap/heap.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698