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

Side by Side Diff: src/bailout-reason.h

Issue 2266823002: [turbofan] Insert dummy values when changing from None type. (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: Rebase Created 4 years, 3 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/arm/code-generator-arm.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 2014 the V8 project authors. All rights reserved. 1 // Copyright 2014 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_BAILOUT_REASON_H_ 5 #ifndef V8_BAILOUT_REASON_H_
6 #define V8_BAILOUT_REASON_H_ 6 #define V8_BAILOUT_REASON_H_
7 7
8 namespace v8 { 8 namespace v8 {
9 namespace internal { 9 namespace internal {
10 10
(...skipping 249 matching lines...) Expand 10 before | Expand all | Expand 10 after
260 V(kVariableResolvedToWithContext, "Variable resolved to with context") \ 260 V(kVariableResolvedToWithContext, "Variable resolved to with context") \
261 V(kWeShouldNotHaveAnEmptyLexicalContext, \ 261 V(kWeShouldNotHaveAnEmptyLexicalContext, \
262 "We should not have an empty lexical context") \ 262 "We should not have an empty lexical context") \
263 V(kWithStatement, "WithStatement") \ 263 V(kWithStatement, "WithStatement") \
264 V(kWrongFunctionContext, "Wrong context passed to function") \ 264 V(kWrongFunctionContext, "Wrong context passed to function") \
265 V(kWrongAddressOrValuePassedToRecordWrite, \ 265 V(kWrongAddressOrValuePassedToRecordWrite, \
266 "Wrong address or value passed to RecordWrite") \ 266 "Wrong address or value passed to RecordWrite") \
267 V(kWrongArgumentCountForInvokeIntrinsic, \ 267 V(kWrongArgumentCountForInvokeIntrinsic, \
268 "Wrong number of arguments for intrinsic") \ 268 "Wrong number of arguments for intrinsic") \
269 V(kShouldNotDirectlyEnterOsrFunction, \ 269 V(kShouldNotDirectlyEnterOsrFunction, \
270 "Should not directly enter OSR-compiled function") \ 270 "Should not directly enter OSR-compiled function")
271 V(kConversionFromImpossibleValue, \
272 "Reached conversion from value with empty type (i.e., impossible type)")
273 271
274 #define ERROR_MESSAGES_CONSTANTS(C, T) C, 272 #define ERROR_MESSAGES_CONSTANTS(C, T) C,
275 enum BailoutReason { 273 enum BailoutReason {
276 ERROR_MESSAGES_LIST(ERROR_MESSAGES_CONSTANTS) kLastErrorMessage 274 ERROR_MESSAGES_LIST(ERROR_MESSAGES_CONSTANTS) kLastErrorMessage
277 }; 275 };
278 #undef ERROR_MESSAGES_CONSTANTS 276 #undef ERROR_MESSAGES_CONSTANTS
279 277
280 278
281 const char* GetBailoutReason(BailoutReason reason); 279 const char* GetBailoutReason(BailoutReason reason);
282 280
283 } // namespace internal 281 } // namespace internal
284 } // namespace v8 282 } // namespace v8
285 283
286 #endif // V8_BAILOUT_REASON_H_ 284 #endif // V8_BAILOUT_REASON_H_
OLDNEW
« no previous file with comments | « no previous file | src/compiler/arm/code-generator-arm.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698