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

Side by Side Diff: src/objects.h

Issue 256303007: Don't add code dependencies on transitioning stores eagerly. (Closed) Base URL: https://v8.googlecode.com/svn/branches/bleeding_edge
Patch Set: Created 6 years, 7 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
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 "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 1138 matching lines...) Expand 10 before | Expand all | Expand 10 after
1149 V(kLiveBytesCountOverflowChunkSize, "Live Bytes Count overflow chunk size") \ 1149 V(kLiveBytesCountOverflowChunkSize, "Live Bytes Count overflow chunk size") \
1150 V(kLiveEditFrameDroppingIsNotSupportedOnARM64, \ 1150 V(kLiveEditFrameDroppingIsNotSupportedOnARM64, \
1151 "LiveEdit frame dropping is not supported on arm64") \ 1151 "LiveEdit frame dropping is not supported on arm64") \
1152 V(kLiveEditFrameDroppingIsNotSupportedOnArm, \ 1152 V(kLiveEditFrameDroppingIsNotSupportedOnArm, \
1153 "LiveEdit frame dropping is not supported on arm") \ 1153 "LiveEdit frame dropping is not supported on arm") \
1154 V(kLiveEditFrameDroppingIsNotSupportedOnMips, \ 1154 V(kLiveEditFrameDroppingIsNotSupportedOnMips, \
1155 "LiveEdit frame dropping is not supported on mips") \ 1155 "LiveEdit frame dropping is not supported on mips") \
1156 V(kLiveEdit, "LiveEdit") \ 1156 V(kLiveEdit, "LiveEdit") \
1157 V(kLookupVariableInCountOperation, \ 1157 V(kLookupVariableInCountOperation, \
1158 "Lookup variable in count operation") \ 1158 "Lookup variable in count operation") \
1159 V(kMapBecameDeprecated, "Map became deprecated") \
1159 V(kMapIsNoLongerInEax, "Map is no longer in eax") \ 1160 V(kMapIsNoLongerInEax, "Map is no longer in eax") \
1160 V(kModuleDeclaration, "Module declaration") \ 1161 V(kModuleDeclaration, "Module declaration") \
1161 V(kModuleLiteral, "Module literal") \ 1162 V(kModuleLiteral, "Module literal") \
1162 V(kModulePath, "Module path") \ 1163 V(kModulePath, "Module path") \
1163 V(kModuleStatement, "Module statement") \ 1164 V(kModuleStatement, "Module statement") \
1164 V(kModuleVariable, "Module variable") \ 1165 V(kModuleVariable, "Module variable") \
1165 V(kModuleUrl, "Module url") \ 1166 V(kModuleUrl, "Module url") \
1166 V(kNativeFunctionLiteral, "Native function literal") \ 1167 V(kNativeFunctionLiteral, "Native function literal") \
1167 V(kNoCasesLeft, "No cases left") \ 1168 V(kNoCasesLeft, "No cases left") \
1168 V(kNoEmptyArraysHereInEmitFastAsciiArrayJoin, \ 1169 V(kNoEmptyArraysHereInEmitFastAsciiArrayJoin, \
(...skipping 9925 matching lines...) Expand 10 before | Expand all | Expand 10 after
11094 } else { 11095 } else {
11095 value &= ~(1 << bit_position); 11096 value &= ~(1 << bit_position);
11096 } 11097 }
11097 return value; 11098 return value;
11098 } 11099 }
11099 }; 11100 };
11100 11101
11101 } } // namespace v8::internal 11102 } } // namespace v8::internal
11102 11103
11103 #endif // V8_OBJECTS_H_ 11104 #endif // V8_OBJECTS_H_
OLDNEW
« src/handles.h ('K') | « src/mips/lithium-mips.cc ('k') | src/x64/lithium-codegen-x64.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698