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

Side by Side Diff: src/objects.h

Issue 297203002: Skip write barriers in the fast case when setting up local context. (Closed) Base URL: git@github.com:v8/v8.git@master
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
« no previous file with comments | « src/ia32/lithium-codegen-ia32.cc ('k') | src/x64/full-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 1053 matching lines...) Expand 10 before | Expand all | Expand 10 after
1064 V(kExpectedFixedArrayInFeedbackVector, \ 1064 V(kExpectedFixedArrayInFeedbackVector, \
1065 "Expected fixed array in feedback vector") \ 1065 "Expected fixed array in feedback vector") \
1066 V(kExpectedFixedArrayInRegisterA2, \ 1066 V(kExpectedFixedArrayInRegisterA2, \
1067 "Expected fixed array in register a2") \ 1067 "Expected fixed array in register a2") \
1068 V(kExpectedFixedArrayInRegisterEbx, \ 1068 V(kExpectedFixedArrayInRegisterEbx, \
1069 "Expected fixed array in register ebx") \ 1069 "Expected fixed array in register ebx") \
1070 V(kExpectedFixedArrayInRegisterR2, \ 1070 V(kExpectedFixedArrayInRegisterR2, \
1071 "Expected fixed array in register r2") \ 1071 "Expected fixed array in register r2") \
1072 V(kExpectedFixedArrayInRegisterRbx, \ 1072 V(kExpectedFixedArrayInRegisterRbx, \
1073 "Expected fixed array in register rbx") \ 1073 "Expected fixed array in register rbx") \
1074 V(kExpectedNewSpaceObject, "Expected new space object") \
1074 V(kExpectedSmiOrHeapNumber, "Expected smi or HeapNumber") \ 1075 V(kExpectedSmiOrHeapNumber, "Expected smi or HeapNumber") \
1075 V(kExpectedUndefinedOrCell, \ 1076 V(kExpectedUndefinedOrCell, \
1076 "Expected undefined or cell in register") \ 1077 "Expected undefined or cell in register") \
1077 V(kExpectingAlignmentForCopyBytes, \ 1078 V(kExpectingAlignmentForCopyBytes, \
1078 "Expecting alignment for CopyBytes") \ 1079 "Expecting alignment for CopyBytes") \
1079 V(kExportDeclaration, "Export declaration") \ 1080 V(kExportDeclaration, "Export declaration") \
1080 V(kExternalStringExpectedButNotFound, \ 1081 V(kExternalStringExpectedButNotFound, \
1081 "External string expected, but not found") \ 1082 "External string expected, but not found") \
1082 V(kFailedBailedOutLastTime, "Failed/bailed out last time") \ 1083 V(kFailedBailedOutLastTime, "Failed/bailed out last time") \
1083 V(kForInStatementIsNotFastCase, "ForInStatement is not fast case") \ 1084 V(kForInStatementIsNotFastCase, "ForInStatement is not fast case") \
(...skipping 9985 matching lines...) Expand 10 before | Expand all | Expand 10 after
11069 } else { 11070 } else {
11070 value &= ~(1 << bit_position); 11071 value &= ~(1 << bit_position);
11071 } 11072 }
11072 return value; 11073 return value;
11073 } 11074 }
11074 }; 11075 };
11075 11076
11076 } } // namespace v8::internal 11077 } } // namespace v8::internal
11077 11078
11078 #endif // V8_OBJECTS_H_ 11079 #endif // V8_OBJECTS_H_
OLDNEW
« no previous file with comments | « src/ia32/lithium-codegen-ia32.cc ('k') | src/x64/full-codegen-x64.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698