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

Side by Side Diff: src/objects.h

Issue 132963012: Pretenure call new support. (Closed) Base URL: https://v8.googlecode.com/svn/branches/bleeding_edge
Patch Set: Comment response. Created 6 years, 10 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 // 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 1153 matching lines...) Expand 10 before | Expand all | Expand 10 after
1164 "Expected fixed array in feedback vector") \ 1164 "Expected fixed array in feedback vector") \
1165 V(kExpectedFixedArrayInRegisterA2, \ 1165 V(kExpectedFixedArrayInRegisterA2, \
1166 "Expected fixed array in register a2") \ 1166 "Expected fixed array in register a2") \
1167 V(kExpectedFixedArrayInRegisterEbx, \ 1167 V(kExpectedFixedArrayInRegisterEbx, \
1168 "Expected fixed array in register ebx") \ 1168 "Expected fixed array in register ebx") \
1169 V(kExpectedFixedArrayInRegisterR2, \ 1169 V(kExpectedFixedArrayInRegisterR2, \
1170 "Expected fixed array in register r2") \ 1170 "Expected fixed array in register r2") \
1171 V(kExpectedFixedArrayInRegisterRbx, \ 1171 V(kExpectedFixedArrayInRegisterRbx, \
1172 "Expected fixed array in register rbx") \ 1172 "Expected fixed array in register rbx") \
1173 V(kExpectedSmiOrHeapNumber, "Expected smi or HeapNumber") \ 1173 V(kExpectedSmiOrHeapNumber, "Expected smi or HeapNumber") \
1174 V(kExpectedUndefinedOrCell, \
1175 "Expected undefined or cell in register") \
1174 V(kExpectingAlignmentForCopyBytes, \ 1176 V(kExpectingAlignmentForCopyBytes, \
1175 "Expecting alignment for CopyBytes") \ 1177 "Expecting alignment for CopyBytes") \
1176 V(kExportDeclaration, "Export declaration") \ 1178 V(kExportDeclaration, "Export declaration") \
1177 V(kExternalStringExpectedButNotFound, \ 1179 V(kExternalStringExpectedButNotFound, \
1178 "External string expected, but not found") \ 1180 "External string expected, but not found") \
1179 V(kFailedBailedOutLastTime, "Failed/bailed out last time") \ 1181 V(kFailedBailedOutLastTime, "Failed/bailed out last time") \
1180 V(kForInStatementIsNotFastCase, "ForInStatement is not fast case") \ 1182 V(kForInStatementIsNotFastCase, "ForInStatement is not fast case") \
1181 V(kForInStatementOptimizationIsDisabled, \ 1183 V(kForInStatementOptimizationIsDisabled, \
1182 "ForInStatement optimization is disabled") \ 1184 "ForInStatement optimization is disabled") \
1183 V(kForInStatementWithNonLocalEachVariable, \ 1185 V(kForInStatementWithNonLocalEachVariable, \
(...skipping 9573 matching lines...) Expand 10 before | Expand all | Expand 10 after
10757 } else { 10759 } else {
10758 value &= ~(1 << bit_position); 10760 value &= ~(1 << bit_position);
10759 } 10761 }
10760 return value; 10762 return value;
10761 } 10763 }
10762 }; 10764 };
10763 10765
10764 } } // namespace v8::internal 10766 } } // namespace v8::internal
10765 10767
10766 #endif // V8_OBJECTS_H_ 10768 #endif // V8_OBJECTS_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698