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

Side by Side Diff: src/objects.h

Issue 264973013: Don't add code dependencies eagerly for HCheckMaps. (Closed) Base URL: https://v8.googlecode.com/svn/branches/bleeding_edge
Patch Set: REBASE 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
« no previous file with comments | « src/mips/lithium-mips.cc ('k') | src/x64/lithium-codegen-x64.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 // 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 1139 matching lines...) Expand 10 before | Expand all | Expand 10 after
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(kMapBecameDeprecated, "Map became deprecated") \
1160 V(kMapBecameUnstable, "Map became unstable") \
1160 V(kMapIsNoLongerInEax, "Map is no longer in eax") \ 1161 V(kMapIsNoLongerInEax, "Map is no longer in eax") \
1161 V(kModuleDeclaration, "Module declaration") \ 1162 V(kModuleDeclaration, "Module declaration") \
1162 V(kModuleLiteral, "Module literal") \ 1163 V(kModuleLiteral, "Module literal") \
1163 V(kModulePath, "Module path") \ 1164 V(kModulePath, "Module path") \
1164 V(kModuleStatement, "Module statement") \ 1165 V(kModuleStatement, "Module statement") \
1165 V(kModuleVariable, "Module variable") \ 1166 V(kModuleVariable, "Module variable") \
1166 V(kModuleUrl, "Module url") \ 1167 V(kModuleUrl, "Module url") \
1167 V(kNativeFunctionLiteral, "Native function literal") \ 1168 V(kNativeFunctionLiteral, "Native function literal") \
1168 V(kNoCasesLeft, "No cases left") \ 1169 V(kNoCasesLeft, "No cases left") \
1169 V(kNoEmptyArraysHereInEmitFastAsciiArrayJoin, \ 1170 V(kNoEmptyArraysHereInEmitFastAsciiArrayJoin, \
(...skipping 9944 matching lines...) Expand 10 before | Expand all | Expand 10 after
11114 } else { 11115 } else {
11115 value &= ~(1 << bit_position); 11116 value &= ~(1 << bit_position);
11116 } 11117 }
11117 return value; 11118 return value;
11118 } 11119 }
11119 }; 11120 };
11120 11121
11121 } } // namespace v8::internal 11122 } } // namespace v8::internal
11122 11123
11123 #endif // V8_OBJECTS_H_ 11124 #endif // V8_OBJECTS_H_
OLDNEW
« no previous file with comments | « 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