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

Side by Side Diff: src/code-stub-assembler.h

Issue 2672363002: Link type feedback vectors to the shared function info. (Closed)
Patch Set: rebase Created 3 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 | « no previous file | src/compiler.cc » ('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 2016 the V8 project authors. All rights reserved. 1 // Copyright 2016 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_CODE_STUB_ASSEMBLER_H_ 5 #ifndef V8_CODE_STUB_ASSEMBLER_H_
6 #define V8_CODE_STUB_ASSEMBLER_H_ 6 #define V8_CODE_STUB_ASSEMBLER_H_
7 7
8 #include <functional> 8 #include <functional>
9 9
10 #include "src/compiler/code-assembler.h" 10 #include "src/compiler/code-assembler.h"
(...skipping 10 matching lines...) Expand all
21 21
22 enum class PrimitiveType { kBoolean, kNumber, kString, kSymbol }; 22 enum class PrimitiveType { kBoolean, kNumber, kString, kSymbol };
23 23
24 #define HEAP_CONSTANT_LIST(V) \ 24 #define HEAP_CONSTANT_LIST(V) \
25 V(AccessorInfoMap, AccessorInfoMap) \ 25 V(AccessorInfoMap, AccessorInfoMap) \
26 V(AllocationSiteMap, AllocationSiteMap) \ 26 V(AllocationSiteMap, AllocationSiteMap) \
27 V(BooleanMap, BooleanMap) \ 27 V(BooleanMap, BooleanMap) \
28 V(CodeMap, CodeMap) \ 28 V(CodeMap, CodeMap) \
29 V(empty_string, EmptyString) \ 29 V(empty_string, EmptyString) \
30 V(EmptyFixedArray, EmptyFixedArray) \ 30 V(EmptyFixedArray, EmptyFixedArray) \
31 V(EmptyFeedbackVector, EmptyFeedbackVector) \
32 V(FalseValue, False) \ 31 V(FalseValue, False) \
33 V(FixedArrayMap, FixedArrayMap) \ 32 V(FixedArrayMap, FixedArrayMap) \
34 V(FixedCOWArrayMap, FixedCOWArrayMap) \ 33 V(FixedCOWArrayMap, FixedCOWArrayMap) \
35 V(FixedDoubleArrayMap, FixedDoubleArrayMap) \ 34 V(FixedDoubleArrayMap, FixedDoubleArrayMap) \
36 V(FunctionTemplateInfoMap, FunctionTemplateInfoMap) \ 35 V(FunctionTemplateInfoMap, FunctionTemplateInfoMap) \
37 V(HeapNumberMap, HeapNumberMap) \ 36 V(HeapNumberMap, HeapNumberMap) \
38 V(MinusZeroValue, MinusZero) \ 37 V(MinusZeroValue, MinusZero) \
39 V(NanValue, Nan) \ 38 V(NanValue, Nan) \
40 V(NullValue, Null) \ 39 V(NullValue, Null) \
41 V(SymbolMap, SymbolMap) \ 40 V(SymbolMap, SymbolMap) \
(...skipping 1284 matching lines...) Expand 10 before | Expand all | Expand 10 after
1326 } 1325 }
1327 #else 1326 #else
1328 #define CSA_SLOW_ASSERT(csa, x) ((void)0) 1327 #define CSA_SLOW_ASSERT(csa, x) ((void)0)
1329 #endif 1328 #endif
1330 1329
1331 DEFINE_OPERATORS_FOR_FLAGS(CodeStubAssembler::AllocationFlags); 1330 DEFINE_OPERATORS_FOR_FLAGS(CodeStubAssembler::AllocationFlags);
1332 1331
1333 } // namespace internal 1332 } // namespace internal
1334 } // namespace v8 1333 } // namespace v8
1335 #endif // V8_CODE_STUB_ASSEMBLER_H_ 1334 #endif // V8_CODE_STUB_ASSEMBLER_H_
OLDNEW
« no previous file with comments | « no previous file | src/compiler.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698