| 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 "allocation.h" | 8 #include "allocation.h" |
| 9 #include "assert-scope.h" | 9 #include "assert-scope.h" |
| 10 #include "builtins.h" | 10 #include "builtins.h" |
| (...skipping 1053 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1064 V(kExpectedFixedArrayInFeedbackVector, \ | 1064 V(kExpectedFixedArrayInFeedbackVector, \ |
| 1065 "Expected fixed array in feedback vector") \ | 1065 "Expected fixed array in feedback vector") \ |
| 1066 V(kExpectedFixedArrayInRegisterA2, \ | 1066 V(kExpectedFixedArrayInRegisterA2, \ |
| 1067 "Expected fixed array in register a2") \ | 1067 "Expected fixed array in register a2") \ |
| 1068 V(kExpectedFixedArrayInRegisterEbx, \ | 1068 V(kExpectedFixedArrayInRegisterEbx, \ |
| 1069 "Expected fixed array in register ebx") \ | 1069 "Expected fixed array in register ebx") \ |
| 1070 V(kExpectedFixedArrayInRegisterR2, \ | 1070 V(kExpectedFixedArrayInRegisterR2, \ |
| 1071 "Expected fixed array in register r2") \ | 1071 "Expected fixed array in register r2") \ |
| 1072 V(kExpectedFixedArrayInRegisterRbx, \ | 1072 V(kExpectedFixedArrayInRegisterRbx, \ |
| 1073 "Expected fixed array in register rbx") \ | 1073 "Expected fixed array in register rbx") \ |
| 1074 V(kExpectedNewSpaceObject, "Expected new space object") \ |
| 1074 V(kExpectedSmiOrHeapNumber, "Expected smi or HeapNumber") \ | 1075 V(kExpectedSmiOrHeapNumber, "Expected smi or HeapNumber") \ |
| 1075 V(kExpectedUndefinedOrCell, \ | 1076 V(kExpectedUndefinedOrCell, \ |
| 1076 "Expected undefined or cell in register") \ | 1077 "Expected undefined or cell in register") \ |
| 1077 V(kExpectingAlignmentForCopyBytes, \ | 1078 V(kExpectingAlignmentForCopyBytes, \ |
| 1078 "Expecting alignment for CopyBytes") \ | 1079 "Expecting alignment for CopyBytes") \ |
| 1079 V(kExportDeclaration, "Export declaration") \ | 1080 V(kExportDeclaration, "Export declaration") \ |
| 1080 V(kExternalStringExpectedButNotFound, \ | 1081 V(kExternalStringExpectedButNotFound, \ |
| 1081 "External string expected, but not found") \ | 1082 "External string expected, but not found") \ |
| 1082 V(kFailedBailedOutLastTime, "Failed/bailed out last time") \ | 1083 V(kFailedBailedOutLastTime, "Failed/bailed out last time") \ |
| 1083 V(kForInStatementIsNotFastCase, "ForInStatement is not fast case") \ | 1084 V(kForInStatementIsNotFastCase, "ForInStatement is not fast case") \ |
| (...skipping 9985 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 11069 } else { | 11070 } else { |
| 11070 value &= ~(1 << bit_position); | 11071 value &= ~(1 << bit_position); |
| 11071 } | 11072 } |
| 11072 return value; | 11073 return value; |
| 11073 } | 11074 } |
| 11074 }; | 11075 }; |
| 11075 | 11076 |
| 11076 } } // namespace v8::internal | 11077 } } // namespace v8::internal |
| 11077 | 11078 |
| 11078 #endif // V8_OBJECTS_H_ | 11079 #endif // V8_OBJECTS_H_ |
| OLD | NEW |