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

Side by Side Diff: src/deoptimizer.h

Issue 1670813005: Revert of Type Feedback Vector lives in the closure (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: Created 4 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/debug/liveedit.cc ('k') | src/factory.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_DEOPTIMIZER_H_ 5 #ifndef V8_DEOPTIMIZER_H_
6 #define V8_DEOPTIMIZER_H_ 6 #define V8_DEOPTIMIZER_H_
7 7
8 #include "src/allocation.h" 8 #include "src/allocation.h"
9 #include "src/macro-assembler.h" 9 #include "src/macro-assembler.h"
10 10
(...skipping 322 matching lines...) Expand 10 before | Expand all | Expand 10 after
333 "Insufficient type feedback for generic named access") \ 333 "Insufficient type feedback for generic named access") \
334 V(kInsufficientTypeFeedbackForKeyedLoad, \ 334 V(kInsufficientTypeFeedbackForKeyedLoad, \
335 "Insufficient type feedback for keyed load") \ 335 "Insufficient type feedback for keyed load") \
336 V(kInsufficientTypeFeedbackForKeyedStore, \ 336 V(kInsufficientTypeFeedbackForKeyedStore, \
337 "Insufficient type feedback for keyed store") \ 337 "Insufficient type feedback for keyed store") \
338 V(kInsufficientTypeFeedbackForLHSOfBinaryOperation, \ 338 V(kInsufficientTypeFeedbackForLHSOfBinaryOperation, \
339 "Insufficient type feedback for LHS of binary operation") \ 339 "Insufficient type feedback for LHS of binary operation") \
340 V(kInsufficientTypeFeedbackForRHSOfBinaryOperation, \ 340 V(kInsufficientTypeFeedbackForRHSOfBinaryOperation, \
341 "Insufficient type feedback for RHS of binary operation") \ 341 "Insufficient type feedback for RHS of binary operation") \
342 V(kKeyIsNegative, "key is negative") \ 342 V(kKeyIsNegative, "key is negative") \
343 V(kLiteralsWereDisposed, "literals have been disposed") \
343 V(kLostPrecision, "lost precision") \ 344 V(kLostPrecision, "lost precision") \
344 V(kLostPrecisionOrNaN, "lost precision or NaN") \ 345 V(kLostPrecisionOrNaN, "lost precision or NaN") \
345 V(kMementoFound, "memento found") \ 346 V(kMementoFound, "memento found") \
346 V(kMinusZero, "minus zero") \ 347 V(kMinusZero, "minus zero") \
347 V(kNaN, "NaN") \ 348 V(kNaN, "NaN") \
348 V(kNegativeKeyEncountered, "Negative key encountered") \ 349 V(kNegativeKeyEncountered, "Negative key encountered") \
349 V(kNegativeValue, "negative value") \ 350 V(kNegativeValue, "negative value") \
350 V(kNoCache, "no cache") \ 351 V(kNoCache, "no cache") \
351 V(kNonStrictElementsInKeyedLoadGenericStub, \ 352 V(kNonStrictElementsInKeyedLoadGenericStub, \
352 "non-strict elements in KeyedLoadGenericStub") \ 353 "non-strict elements in KeyedLoadGenericStub") \
(...skipping 784 matching lines...) Expand 10 before | Expand all | Expand 10 after
1137 Object** expression_stack_; 1138 Object** expression_stack_;
1138 int source_position_; 1139 int source_position_;
1139 1140
1140 friend class Deoptimizer; 1141 friend class Deoptimizer;
1141 }; 1142 };
1142 1143
1143 } // namespace internal 1144 } // namespace internal
1144 } // namespace v8 1145 } // namespace v8
1145 1146
1146 #endif // V8_DEOPTIMIZER_H_ 1147 #endif // V8_DEOPTIMIZER_H_
OLDNEW
« no previous file with comments | « src/debug/liveedit.cc ('k') | src/factory.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698