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

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

Issue 1399893002: [es7] implement |do| expressions proposal (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: fix AST numbering issue + add simple TF impl Created 5 years, 2 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
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 37 matching lines...) Expand 10 before | Expand all | Expand 10 after
48 V(kCopyBuffersOverlap, "Copy buffers overlap") \ 48 V(kCopyBuffersOverlap, "Copy buffers overlap") \
49 V(kCouldNotGenerateZero, "Could not generate +0.0") \ 49 V(kCouldNotGenerateZero, "Could not generate +0.0") \
50 V(kCouldNotGenerateNegativeZero, "Could not generate -0.0") \ 50 V(kCouldNotGenerateNegativeZero, "Could not generate -0.0") \
51 V(kDebuggerStatement, "DebuggerStatement") \ 51 V(kDebuggerStatement, "DebuggerStatement") \
52 V(kDeclarationInCatchContext, "Declaration in catch context") \ 52 V(kDeclarationInCatchContext, "Declaration in catch context") \
53 V(kDeclarationInWithContext, "Declaration in with context") \ 53 V(kDeclarationInWithContext, "Declaration in with context") \
54 V(kDefaultNaNModeNotSet, "Default NaN mode not set") \ 54 V(kDefaultNaNModeNotSet, "Default NaN mode not set") \
55 V(kDeleteWithGlobalVariable, "Delete with global variable") \ 55 V(kDeleteWithGlobalVariable, "Delete with global variable") \
56 V(kDeleteWithNonGlobalVariable, "Delete with non-global variable") \ 56 V(kDeleteWithNonGlobalVariable, "Delete with non-global variable") \
57 V(kDestinationOfCopyNotAligned, "Destination of copy not aligned") \ 57 V(kDestinationOfCopyNotAligned, "Destination of copy not aligned") \
58 V(kDoExpression, "Do expression") \
58 V(kDontDeleteCellsCannotContainTheHole, \ 59 V(kDontDeleteCellsCannotContainTheHole, \
59 "DontDelete cells can't contain the hole") \ 60 "DontDelete cells can't contain the hole") \
60 V(kDoPushArgumentNotImplementedForDoubleType, \ 61 V(kDoPushArgumentNotImplementedForDoubleType, \
61 "DoPushArgument not implemented for double type") \ 62 "DoPushArgument not implemented for double type") \
62 V(kEliminatedBoundsCheckFailed, "Eliminated bounds check failed") \ 63 V(kEliminatedBoundsCheckFailed, "Eliminated bounds check failed") \
63 V(kEmitLoadRegisterUnsupportedDoubleImmediate, \ 64 V(kEmitLoadRegisterUnsupportedDoubleImmediate, \
64 "EmitLoadRegister: Unsupported double immediate") \ 65 "EmitLoadRegister: Unsupported double immediate") \
65 V(kEval, "eval") \ 66 V(kEval, "eval") \
66 V(kExpectedAlignmentMarker, "Expected alignment marker") \ 67 V(kExpectedAlignmentMarker, "Expected alignment marker") \
67 V(kExpectedAllocationSite, "Expected allocation site") \ 68 V(kExpectedAllocationSite, "Expected allocation site") \
(...skipping 197 matching lines...) Expand 10 before | Expand all | Expand 10 after
265 }; 266 };
266 #undef ERROR_MESSAGES_CONSTANTS 267 #undef ERROR_MESSAGES_CONSTANTS
267 268
268 269
269 const char* GetBailoutReason(BailoutReason reason); 270 const char* GetBailoutReason(BailoutReason reason);
270 271
271 } // namespace internal 272 } // namespace internal
272 } // namespace v8 273 } // namespace v8
273 274
274 #endif // V8_BAILOUT_REASON_H_ 275 #endif // V8_BAILOUT_REASON_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698