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

Side by Side Diff: src/objects.h

Issue 349703002: MIPS: Support LiveEdit. (Closed) Base URL: https://v8.googlecode.com/svn/branches/bleeding_edge
Patch Set: Fix comment. Created 6 years, 6 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/mips/debug-mips.cc ('k') | test/mjsunit/mjsunit.status » ('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 // 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/builtins.h" 10 #include "src/builtins.h"
(...skipping 1135 matching lines...) Expand 10 before | Expand all | Expand 10 after
1146 "JSGlobalObject::native_context should be a native context") \ 1146 "JSGlobalObject::native_context should be a native context") \
1147 V(kJSGlobalProxyContextShouldNotBeNull, \ 1147 V(kJSGlobalProxyContextShouldNotBeNull, \
1148 "JSGlobalProxy::context() should not be null") \ 1148 "JSGlobalProxy::context() should not be null") \
1149 V(kJSObjectWithFastElementsMapHasSlowElements, \ 1149 V(kJSObjectWithFastElementsMapHasSlowElements, \
1150 "JSObject with fast elements map has slow elements") \ 1150 "JSObject with fast elements map has slow elements") \
1151 V(kLetBindingReInitialization, "Let binding re-initialization") \ 1151 V(kLetBindingReInitialization, "Let binding re-initialization") \
1152 V(kLhsHasBeenClobbered, "lhs has been clobbered") \ 1152 V(kLhsHasBeenClobbered, "lhs has been clobbered") \
1153 V(kLiveBytesCountOverflowChunkSize, "Live Bytes Count overflow chunk size") \ 1153 V(kLiveBytesCountOverflowChunkSize, "Live Bytes Count overflow chunk size") \
1154 V(kLiveEditFrameDroppingIsNotSupportedOnARM64, \ 1154 V(kLiveEditFrameDroppingIsNotSupportedOnARM64, \
1155 "LiveEdit frame dropping is not supported on arm64") \ 1155 "LiveEdit frame dropping is not supported on arm64") \
1156 V(kLiveEditFrameDroppingIsNotSupportedOnMips, \
1157 "LiveEdit frame dropping is not supported on mips") \
1158 V(kLiveEdit, "LiveEdit") \ 1156 V(kLiveEdit, "LiveEdit") \
1159 V(kLookupVariableInCountOperation, \ 1157 V(kLookupVariableInCountOperation, \
1160 "Lookup variable in count operation") \ 1158 "Lookup variable in count operation") \
1161 V(kMapBecameDeprecated, "Map became deprecated") \ 1159 V(kMapBecameDeprecated, "Map became deprecated") \
1162 V(kMapBecameUnstable, "Map became unstable") \ 1160 V(kMapBecameUnstable, "Map became unstable") \
1163 V(kMapIsNoLongerInEax, "Map is no longer in eax") \ 1161 V(kMapIsNoLongerInEax, "Map is no longer in eax") \
1164 V(kModuleDeclaration, "Module declaration") \ 1162 V(kModuleDeclaration, "Module declaration") \
1165 V(kModuleLiteral, "Module literal") \ 1163 V(kModuleLiteral, "Module literal") \
1166 V(kModulePath, "Module path") \ 1164 V(kModulePath, "Module path") \
1167 V(kModuleStatement, "Module statement") \ 1165 V(kModuleStatement, "Module statement") \
(...skipping 10079 matching lines...) Expand 10 before | Expand all | Expand 10 after
11247 } else { 11245 } else {
11248 value &= ~(1 << bit_position); 11246 value &= ~(1 << bit_position);
11249 } 11247 }
11250 return value; 11248 return value;
11251 } 11249 }
11252 }; 11250 };
11253 11251
11254 } } // namespace v8::internal 11252 } } // namespace v8::internal
11255 11253
11256 #endif // V8_OBJECTS_H_ 11254 #endif // V8_OBJECTS_H_
OLDNEW
« no previous file with comments | « src/mips/debug-mips.cc ('k') | test/mjsunit/mjsunit.status » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698