| OLD | NEW |
| 1 // Copyright 2012 the V8 project authors. All rights reserved. | 1 // Copyright 2012 the V8 project authors. All rights reserved. |
| 2 // Redistribution and use in source and binary forms, with or without | 2 // Redistribution and use in source and binary forms, with or without |
| 3 // modification, are permitted provided that the following conditions are | 3 // modification, are permitted provided that the following conditions are |
| 4 // met: | 4 // met: |
| 5 // | 5 // |
| 6 // * Redistributions of source code must retain the above copyright | 6 // * Redistributions of source code must retain the above copyright |
| 7 // notice, this list of conditions and the following disclaimer. | 7 // notice, this list of conditions and the following disclaimer. |
| 8 // * Redistributions in binary form must reproduce the above | 8 // * Redistributions in binary form must reproduce the above |
| 9 // copyright notice, this list of conditions and the following | 9 // copyright notice, this list of conditions and the following |
| 10 // disclaimer in the documentation and/or other materials provided | 10 // disclaimer in the documentation and/or other materials provided |
| (...skipping 19 matching lines...) Expand all Loading... |
| 30 | 30 |
| 31 #include "allocation.h" | 31 #include "allocation.h" |
| 32 #include "assert-scope.h" | 32 #include "assert-scope.h" |
| 33 #include "builtins.h" | 33 #include "builtins.h" |
| 34 #include "elements-kind.h" | 34 #include "elements-kind.h" |
| 35 #include "flags.h" | 35 #include "flags.h" |
| 36 #include "list.h" | 36 #include "list.h" |
| 37 #include "property-details.h" | 37 #include "property-details.h" |
| 38 #include "smart-pointers.h" | 38 #include "smart-pointers.h" |
| 39 #include "unicode-inl.h" | 39 #include "unicode-inl.h" |
| 40 #if V8_TARGET_ARCH_A64 | 40 #if V8_TARGET_ARCH_ARM64 |
| 41 #include "a64/constants-a64.h" | 41 #include "arm64/constants-arm64.h" |
| 42 #elif V8_TARGET_ARCH_ARM | 42 #elif V8_TARGET_ARCH_ARM |
| 43 #include "arm/constants-arm.h" | 43 #include "arm/constants-arm.h" |
| 44 #elif V8_TARGET_ARCH_MIPS | 44 #elif V8_TARGET_ARCH_MIPS |
| 45 #include "mips/constants-mips.h" | 45 #include "mips/constants-mips.h" |
| 46 #endif | 46 #endif |
| 47 #include "v8checks.h" | 47 #include "v8checks.h" |
| 48 #include "zone.h" | 48 #include "zone.h" |
| 49 | 49 |
| 50 | 50 |
| 51 // | 51 // |
| (...skipping 1187 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1239 V(kInvalidMinLength, "Invalid min_length") \ | 1239 V(kInvalidMinLength, "Invalid min_length") \ |
| 1240 V(kJSGlobalObjectNativeContextShouldBeANativeContext, \ | 1240 V(kJSGlobalObjectNativeContextShouldBeANativeContext, \ |
| 1241 "JSGlobalObject::native_context should be a native context") \ | 1241 "JSGlobalObject::native_context should be a native context") \ |
| 1242 V(kJSGlobalProxyContextShouldNotBeNull, \ | 1242 V(kJSGlobalProxyContextShouldNotBeNull, \ |
| 1243 "JSGlobalProxy::context() should not be null") \ | 1243 "JSGlobalProxy::context() should not be null") \ |
| 1244 V(kJSObjectWithFastElementsMapHasSlowElements, \ | 1244 V(kJSObjectWithFastElementsMapHasSlowElements, \ |
| 1245 "JSObject with fast elements map has slow elements") \ | 1245 "JSObject with fast elements map has slow elements") \ |
| 1246 V(kLetBindingReInitialization, "Let binding re-initialization") \ | 1246 V(kLetBindingReInitialization, "Let binding re-initialization") \ |
| 1247 V(kLhsHasBeenClobbered, "lhs has been clobbered") \ | 1247 V(kLhsHasBeenClobbered, "lhs has been clobbered") \ |
| 1248 V(kLiveBytesCountOverflowChunkSize, "Live Bytes Count overflow chunk size") \ | 1248 V(kLiveBytesCountOverflowChunkSize, "Live Bytes Count overflow chunk size") \ |
| 1249 V(kLiveEditFrameDroppingIsNotSupportedOnA64, \ | 1249 V(kLiveEditFrameDroppingIsNotSupportedOnARM64, \ |
| 1250 "LiveEdit frame dropping is not supported on a64") \ | 1250 "LiveEdit frame dropping is not supported on arm64") \ |
| 1251 V(kLiveEditFrameDroppingIsNotSupportedOnArm, \ | 1251 V(kLiveEditFrameDroppingIsNotSupportedOnArm, \ |
| 1252 "LiveEdit frame dropping is not supported on arm") \ | 1252 "LiveEdit frame dropping is not supported on arm") \ |
| 1253 V(kLiveEditFrameDroppingIsNotSupportedOnMips, \ | 1253 V(kLiveEditFrameDroppingIsNotSupportedOnMips, \ |
| 1254 "LiveEdit frame dropping is not supported on mips") \ | 1254 "LiveEdit frame dropping is not supported on mips") \ |
| 1255 V(kLiveEdit, "LiveEdit") \ | 1255 V(kLiveEdit, "LiveEdit") \ |
| 1256 V(kLookupVariableInCountOperation, \ | 1256 V(kLookupVariableInCountOperation, \ |
| 1257 "Lookup variable in count operation") \ | 1257 "Lookup variable in count operation") \ |
| 1258 V(kMapIsNoLongerInEax, "Map is no longer in eax") \ | 1258 V(kMapIsNoLongerInEax, "Map is no longer in eax") \ |
| 1259 V(kModuleDeclaration, "Module declaration") \ | 1259 V(kModuleDeclaration, "Module declaration") \ |
| 1260 V(kModuleLiteral, "Module literal") \ | 1260 V(kModuleLiteral, "Module literal") \ |
| (...skipping 9538 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 10799 } else { | 10799 } else { |
| 10800 value &= ~(1 << bit_position); | 10800 value &= ~(1 << bit_position); |
| 10801 } | 10801 } |
| 10802 return value; | 10802 return value; |
| 10803 } | 10803 } |
| 10804 }; | 10804 }; |
| 10805 | 10805 |
| 10806 } } // namespace v8::internal | 10806 } } // namespace v8::internal |
| 10807 | 10807 |
| 10808 #endif // V8_OBJECTS_H_ | 10808 #endif // V8_OBJECTS_H_ |
| OLD | NEW |