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

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

Issue 2081733004: Rip out most of our outdated modules implementation. (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: Rebase. Created 4 years, 5 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/ast/scopes.cc ('k') | src/compiler/ast-graph-builder.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 54 matching lines...) Expand 10 before | Expand all | Expand 10 after
65 V(kExpectedBooleanValue, "Expected boolean value") \ 65 V(kExpectedBooleanValue, "Expected boolean value") \
66 V(kExpectedFunctionObject, "Expected function object in register") \ 66 V(kExpectedFunctionObject, "Expected function object in register") \
67 V(kExpectedHeapNumber, "Expected HeapNumber") \ 67 V(kExpectedHeapNumber, "Expected HeapNumber") \
68 V(kExpectedNativeContext, "Expected native context") \ 68 V(kExpectedNativeContext, "Expected native context") \
69 V(kExpectedNonIdenticalObjects, "Expected non-identical objects") \ 69 V(kExpectedNonIdenticalObjects, "Expected non-identical objects") \
70 V(kExpectedNonNullContext, "Expected non-null context") \ 70 V(kExpectedNonNullContext, "Expected non-null context") \
71 V(kExpectedPositiveZero, "Expected +0.0") \ 71 V(kExpectedPositiveZero, "Expected +0.0") \
72 V(kExpectedNewSpaceObject, "Expected new space object") \ 72 V(kExpectedNewSpaceObject, "Expected new space object") \
73 V(kExpectedUndefinedOrCell, "Expected undefined or cell in register") \ 73 V(kExpectedUndefinedOrCell, "Expected undefined or cell in register") \
74 V(kExpectingAlignmentForCopyBytes, "Expecting alignment for CopyBytes") \ 74 V(kExpectingAlignmentForCopyBytes, "Expecting alignment for CopyBytes") \
75 V(kExportDeclaration, "Export declaration") \
76 V(kExternalStringExpectedButNotFound, \ 75 V(kExternalStringExpectedButNotFound, \
77 "External string expected, but not found") \ 76 "External string expected, but not found") \
78 V(kForInStatementWithNonLocalEachVariable, \ 77 V(kForInStatementWithNonLocalEachVariable, \
79 "ForInStatement with non-local each variable") \ 78 "ForInStatement with non-local each variable") \
80 V(kForOfStatement, "ForOfStatement") \ 79 V(kForOfStatement, "ForOfStatement") \
81 V(kFunctionBeingDebugged, "Function is being debugged") \ 80 V(kFunctionBeingDebugged, "Function is being debugged") \
82 V(kFunctionCallsEval, "Function calls eval") \ 81 V(kFunctionCallsEval, "Function calls eval") \
83 V(kFunctionDataShouldBeBytecodeArrayOnInterpreterEntry, \ 82 V(kFunctionDataShouldBeBytecodeArrayOnInterpreterEntry, \
84 "The function_data field should be a BytecodeArray on interpreter entry") \ 83 "The function_data field should be a BytecodeArray on interpreter entry") \
85 V(kGeneratedCodeIsTooLarge, "Generated code is too large") \ 84 V(kGeneratedCodeIsTooLarge, "Generated code is too large") \
(...skipping 189 matching lines...) Expand 10 before | Expand all | Expand 10 after
275 }; 274 };
276 #undef ERROR_MESSAGES_CONSTANTS 275 #undef ERROR_MESSAGES_CONSTANTS
277 276
278 277
279 const char* GetBailoutReason(BailoutReason reason); 278 const char* GetBailoutReason(BailoutReason reason);
280 279
281 } // namespace internal 280 } // namespace internal
282 } // namespace v8 281 } // namespace v8
283 282
284 #endif // V8_BAILOUT_REASON_H_ 283 #endif // V8_BAILOUT_REASON_H_
OLDNEW
« no previous file with comments | « src/ast/scopes.cc ('k') | src/compiler/ast-graph-builder.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698