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

Side by Side Diff: src/objects.h

Issue 140963004: Array constructor shouldn't require a Cell, just an AllocationSite. (Closed) Base URL: https://v8.googlecode.com/svn/branches/bleeding_edge
Patch Set: Code comments. Created 6 years, 11 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/code-stubs-mips.cc ('k') | src/runtime.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 // 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 1128 matching lines...) Expand 10 before | Expand all | Expand 10 after
1139 V(kDontDeleteCellsCannotContainTheHole, \ 1139 V(kDontDeleteCellsCannotContainTheHole, \
1140 "DontDelete cells can't contain the hole") \ 1140 "DontDelete cells can't contain the hole") \
1141 V(kDoPushArgumentNotImplementedForDoubleType, \ 1141 V(kDoPushArgumentNotImplementedForDoubleType, \
1142 "DoPushArgument not implemented for double type") \ 1142 "DoPushArgument not implemented for double type") \
1143 V(kEmitLoadRegisterUnsupportedDoubleImmediate, \ 1143 V(kEmitLoadRegisterUnsupportedDoubleImmediate, \
1144 "EmitLoadRegister: Unsupported double immediate") \ 1144 "EmitLoadRegister: Unsupported double immediate") \
1145 V(kEval, "eval") \ 1145 V(kEval, "eval") \
1146 V(kExpected0AsASmiSentinel, "Expected 0 as a Smi sentinel") \ 1146 V(kExpected0AsASmiSentinel, "Expected 0 as a Smi sentinel") \
1147 V(kExpectedAlignmentMarker, "expected alignment marker") \ 1147 V(kExpectedAlignmentMarker, "expected alignment marker") \
1148 V(kExpectedAllocationSite, "expected allocation site") \ 1148 V(kExpectedAllocationSite, "expected allocation site") \
1149 V(kExpectedAllocationSiteInCell, \
1150 "Expected AllocationSite in property cell") \
1151 V(kExpectedPropertyCellInRegisterA2, \ 1149 V(kExpectedPropertyCellInRegisterA2, \
1152 "Expected property cell in register a2") \ 1150 "Expected property cell in register a2") \
1153 V(kExpectedPropertyCellInRegisterEbx, \ 1151 V(kExpectedPropertyCellInRegisterEbx, \
1154 "Expected property cell in register ebx") \ 1152 "Expected property cell in register ebx") \
1155 V(kExpectedPropertyCellInRegisterRbx, \ 1153 V(kExpectedPropertyCellInRegisterRbx, \
1156 "Expected property cell in register rbx") \ 1154 "Expected property cell in register rbx") \
1157 V(kExpectingAlignmentForCopyBytes, \ 1155 V(kExpectingAlignmentForCopyBytes, \
1158 "Expecting alignment for CopyBytes") \ 1156 "Expecting alignment for CopyBytes") \
1159 V(kExportDeclaration, "Export declaration") \ 1157 V(kExportDeclaration, "Export declaration") \
1160 V(kExternalStringExpectedButNotFound, \ 1158 V(kExternalStringExpectedButNotFound, \
(...skipping 9594 matching lines...) Expand 10 before | Expand all | Expand 10 after
10755 } else { 10753 } else {
10756 value &= ~(1 << bit_position); 10754 value &= ~(1 << bit_position);
10757 } 10755 }
10758 return value; 10756 return value;
10759 } 10757 }
10760 }; 10758 };
10761 10759
10762 } } // namespace v8::internal 10760 } } // namespace v8::internal
10763 10761
10764 #endif // V8_OBJECTS_H_ 10762 #endif // V8_OBJECTS_H_
OLDNEW
« no previous file with comments | « src/mips/code-stubs-mips.cc ('k') | src/runtime.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698