OLD | NEW |
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_OBJECTS_H_ | 5 #ifndef V8_OBJECTS_H_ |
6 #define V8_OBJECTS_H_ | 6 #define V8_OBJECTS_H_ |
7 | 7 |
8 #include "src/allocation.h" | 8 #include "src/allocation.h" |
9 #include "src/assert-scope.h" | 9 #include "src/assert-scope.h" |
10 #include "src/base/bits.h" | 10 #include "src/base/bits.h" |
(...skipping 998 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1009 V(kBailedOutDueToDependencyChange, "Bailed out due to dependency change") \ | 1009 V(kBailedOutDueToDependencyChange, "Bailed out due to dependency change") \ |
1010 V(kBailoutWasNotPrepared, "Bailout was not prepared") \ | 1010 V(kBailoutWasNotPrepared, "Bailout was not prepared") \ |
1011 V(kBinaryStubGenerateFloatingPointCode, \ | 1011 V(kBinaryStubGenerateFloatingPointCode, \ |
1012 "BinaryStub_GenerateFloatingPointCode") \ | 1012 "BinaryStub_GenerateFloatingPointCode") \ |
1013 V(kBothRegistersWereSmisInSelectNonSmi, \ | 1013 V(kBothRegistersWereSmisInSelectNonSmi, \ |
1014 "Both registers were smis in SelectNonSmi") \ | 1014 "Both registers were smis in SelectNonSmi") \ |
1015 V(kCallToAJavaScriptRuntimeFunction, \ | 1015 V(kCallToAJavaScriptRuntimeFunction, \ |
1016 "Call to a JavaScript runtime function") \ | 1016 "Call to a JavaScript runtime function") \ |
1017 V(kCannotTranslatePositionInChangedArea, \ | 1017 V(kCannotTranslatePositionInChangedArea, \ |
1018 "Cannot translate position in changed area") \ | 1018 "Cannot translate position in changed area") \ |
| 1019 V(kClassLiteral, "Class literal") \ |
1019 V(kCodeGenerationFailed, "Code generation failed") \ | 1020 V(kCodeGenerationFailed, "Code generation failed") \ |
1020 V(kCodeObjectNotProperlyPatched, "Code object not properly patched") \ | 1021 V(kCodeObjectNotProperlyPatched, "Code object not properly patched") \ |
1021 V(kCompoundAssignmentToLookupSlot, "Compound assignment to lookup slot") \ | 1022 V(kCompoundAssignmentToLookupSlot, "Compound assignment to lookup slot") \ |
1022 V(kContextAllocatedArguments, "Context-allocated arguments") \ | 1023 V(kContextAllocatedArguments, "Context-allocated arguments") \ |
1023 V(kCopyBuffersOverlap, "Copy buffers overlap") \ | 1024 V(kCopyBuffersOverlap, "Copy buffers overlap") \ |
1024 V(kCouldNotGenerateZero, "Could not generate +0.0") \ | 1025 V(kCouldNotGenerateZero, "Could not generate +0.0") \ |
1025 V(kCouldNotGenerateNegativeZero, "Could not generate -0.0") \ | 1026 V(kCouldNotGenerateNegativeZero, "Could not generate -0.0") \ |
1026 V(kDebuggerHasBreakPoints, "Debugger has break points") \ | 1027 V(kDebuggerHasBreakPoints, "Debugger has break points") \ |
1027 V(kDebuggerStatement, "DebuggerStatement") \ | 1028 V(kDebuggerStatement, "DebuggerStatement") \ |
1028 V(kDeclarationInCatchContext, "Declaration in catch context") \ | 1029 V(kDeclarationInCatchContext, "Declaration in catch context") \ |
(...skipping 10106 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
11135 } else { | 11136 } else { |
11136 value &= ~(1 << bit_position); | 11137 value &= ~(1 << bit_position); |
11137 } | 11138 } |
11138 return value; | 11139 return value; |
11139 } | 11140 } |
11140 }; | 11141 }; |
11141 | 11142 |
11142 } } // namespace v8::internal | 11143 } } // namespace v8::internal |
11143 | 11144 |
11144 #endif // V8_OBJECTS_H_ | 11145 #endif // V8_OBJECTS_H_ |
OLD | NEW |