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

Side by Side Diff: src/codegen.h

Issue 1206263002: Revert of Reland "Keep a canonical list of shared function infos." (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: Created 5 years, 5 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/bootstrapper.cc ('k') | src/compiler.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_CODEGEN_H_ 5 #ifndef V8_CODEGEN_H_
6 #define V8_CODEGEN_H_ 6 #define V8_CODEGEN_H_
7 7
8 #include "src/code-stubs.h" 8 #include "src/code-stubs.h"
9 #include "src/runtime/runtime.h" 9 #include "src/runtime/runtime.h"
10 10
(...skipping 14 matching lines...) Expand all
25 // in_spilled_code 25 // in_spilled_code
26 // set_in_spilled_code 26 // set_in_spilled_code
27 // RecordPositions 27 // RecordPositions
28 // 28 //
29 // These methods are either used privately by the shared code or implemented as 29 // These methods are either used privately by the shared code or implemented as
30 // shared code: 30 // shared code:
31 // CodeGenerator 31 // CodeGenerator
32 // ~CodeGenerator 32 // ~CodeGenerator
33 // Generate 33 // Generate
34 // ComputeLazyCompile 34 // ComputeLazyCompile
35 // BuildFunctionInfo
35 // ProcessDeclarations 36 // ProcessDeclarations
36 // DeclareGlobals 37 // DeclareGlobals
37 // CheckForInlineRuntimeCall 38 // CheckForInlineRuntimeCall
38 // AnalyzeCondition 39 // AnalyzeCondition
39 // CodeForFunctionPosition 40 // CodeForFunctionPosition
40 // CodeForReturnPosition 41 // CodeForReturnPosition
41 // CodeForStatementPosition 42 // CodeForStatementPosition
42 // CodeForDoWhileConditionPosition 43 // CodeForDoWhileConditionPosition
43 // CodeForSourcePosition 44 // CodeForSourcePosition
44 45
(...skipping 128 matching lines...) Expand 10 before | Expand all | Expand 10 after
173 #ifdef DEBUG 174 #ifdef DEBUG
174 #ifdef V8_TARGET_ARCH_ARM64 175 #ifdef V8_TARGET_ARCH_ARM64
175 const EmbeddedVector<byte, kNoCodeAgeSequenceLength> old_sequence_; 176 const EmbeddedVector<byte, kNoCodeAgeSequenceLength> old_sequence_;
176 #endif 177 #endif
177 #endif 178 #endif
178 }; 179 };
179 180
180 } } // namespace v8::internal 181 } } // namespace v8::internal
181 182
182 #endif // V8_CODEGEN_H_ 183 #endif // V8_CODEGEN_H_
OLDNEW
« no previous file with comments | « src/bootstrapper.cc ('k') | src/compiler.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698