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

Side by Side Diff: src/deoptimizer.h

Issue 1508703002: Use WeakCells in the optimized code map rather than traversing in pause. (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: Fixed nit. Created 5 years 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/contexts.h ('k') | src/factory.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 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 317 matching lines...) Expand 10 before | Expand all | Expand 10 after
328 "Insufficient type feedback for generic named access") \ 328 "Insufficient type feedback for generic named access") \
329 V(kInsufficientTypeFeedbackForKeyedLoad, \ 329 V(kInsufficientTypeFeedbackForKeyedLoad, \
330 "Insufficient type feedback for keyed load") \ 330 "Insufficient type feedback for keyed load") \
331 V(kInsufficientTypeFeedbackForKeyedStore, \ 331 V(kInsufficientTypeFeedbackForKeyedStore, \
332 "Insufficient type feedback for keyed store") \ 332 "Insufficient type feedback for keyed store") \
333 V(kInsufficientTypeFeedbackForLHSOfBinaryOperation, \ 333 V(kInsufficientTypeFeedbackForLHSOfBinaryOperation, \
334 "Insufficient type feedback for LHS of binary operation") \ 334 "Insufficient type feedback for LHS of binary operation") \
335 V(kInsufficientTypeFeedbackForRHSOfBinaryOperation, \ 335 V(kInsufficientTypeFeedbackForRHSOfBinaryOperation, \
336 "Insufficient type feedback for RHS of binary operation") \ 336 "Insufficient type feedback for RHS of binary operation") \
337 V(kKeyIsNegative, "key is negative") \ 337 V(kKeyIsNegative, "key is negative") \
338 V(kLiteralsWereDisposed, "literals have been disposed") \
338 V(kLostPrecision, "lost precision") \ 339 V(kLostPrecision, "lost precision") \
339 V(kLostPrecisionOrNaN, "lost precision or NaN") \ 340 V(kLostPrecisionOrNaN, "lost precision or NaN") \
340 V(kMementoFound, "memento found") \ 341 V(kMementoFound, "memento found") \
341 V(kMinusZero, "minus zero") \ 342 V(kMinusZero, "minus zero") \
342 V(kNaN, "NaN") \ 343 V(kNaN, "NaN") \
343 V(kNegativeKeyEncountered, "Negative key encountered") \ 344 V(kNegativeKeyEncountered, "Negative key encountered") \
344 V(kNegativeValue, "negative value") \ 345 V(kNegativeValue, "negative value") \
345 V(kNoCache, "no cache") \ 346 V(kNoCache, "no cache") \
346 V(kNonStrictElementsInKeyedLoadGenericStub, \ 347 V(kNonStrictElementsInKeyedLoadGenericStub, \
347 "non-strict elements in KeyedLoadGenericStub") \ 348 "non-strict elements in KeyedLoadGenericStub") \
(...skipping 782 matching lines...) Expand 10 before | Expand all | Expand 10 after
1130 Object** expression_stack_; 1131 Object** expression_stack_;
1131 int source_position_; 1132 int source_position_;
1132 1133
1133 friend class Deoptimizer; 1134 friend class Deoptimizer;
1134 }; 1135 };
1135 1136
1136 } // namespace internal 1137 } // namespace internal
1137 } // namespace v8 1138 } // namespace v8
1138 1139
1139 #endif // V8_DEOPTIMIZER_H_ 1140 #endif // V8_DEOPTIMIZER_H_
OLDNEW
« no previous file with comments | « src/contexts.h ('k') | src/factory.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698