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

Side by Side Diff: src/objects.h

Issue 207823003: Rename A64 port to ARM64 port (Closed) Base URL: https://v8.googlecode.com/svn/branches/bleeding_edge
Patch Set: retry Created 6 years, 9 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 | Annotate | Revision Log
« no previous file with comments | « src/macro-assembler.h ('k') | src/platform-posix.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 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
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
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
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_
OLDNEW
« no previous file with comments | « src/macro-assembler.h ('k') | src/platform-posix.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698