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

Side by Side Diff: src/heap.h

Issue 40295: Optimizing generation of nested literals for both object and array literals. (Closed) Base URL: http://v8.googlecode.com/svn/branches/bleeding_edge/
Patch Set: '' Created 11 years, 9 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/codegen-ia32.cc ('k') | src/parser.h » ('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 2006-2008 the V8 project authors. All rights reserved. 1 // Copyright 2006-2008 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 148 matching lines...) Expand 10 before | Expand all | Expand 10 after
159 V(object_symbol, "object") \ 159 V(object_symbol, "object") \
160 V(prototype_symbol, "prototype") \ 160 V(prototype_symbol, "prototype") \
161 V(string_symbol, "string") \ 161 V(string_symbol, "string") \
162 V(String_symbol, "String") \ 162 V(String_symbol, "String") \
163 V(Date_symbol, "Date") \ 163 V(Date_symbol, "Date") \
164 V(this_symbol, "this") \ 164 V(this_symbol, "this") \
165 V(to_string_symbol, "toString") \ 165 V(to_string_symbol, "toString") \
166 V(char_at_symbol, "CharAt") \ 166 V(char_at_symbol, "CharAt") \
167 V(undefined_symbol, "undefined") \ 167 V(undefined_symbol, "undefined") \
168 V(value_of_symbol, "valueOf") \ 168 V(value_of_symbol, "valueOf") \
169 V(CreateObjectLiteralBoilerplate_symbol, "CreateObjectLiteralBoilerplate") \
170 V(CreateArrayLiteral_symbol, "CreateArrayLiteral") \
171 V(InitializeVarGlobal_symbol, "InitializeVarGlobal") \ 169 V(InitializeVarGlobal_symbol, "InitializeVarGlobal") \
172 V(InitializeConstGlobal_symbol, "InitializeConstGlobal") \ 170 V(InitializeConstGlobal_symbol, "InitializeConstGlobal") \
173 V(stack_overflow_symbol, "kStackOverflowBoilerplate") \ 171 V(stack_overflow_symbol, "kStackOverflowBoilerplate") \
174 V(illegal_access_symbol, "illegal access") \ 172 V(illegal_access_symbol, "illegal access") \
175 V(out_of_memory_symbol, "out-of-memory") \ 173 V(out_of_memory_symbol, "out-of-memory") \
176 V(illegal_execution_state_symbol, "illegal execution state") \ 174 V(illegal_execution_state_symbol, "illegal execution state") \
177 V(get_symbol, "get") \ 175 V(get_symbol, "get") \
178 V(set_symbol, "set") \ 176 V(set_symbol, "set") \
179 V(function_class_symbol, "Function") \ 177 V(function_class_symbol, "Function") \
180 V(illegal_argument_symbol, "illegal argument") \ 178 V(illegal_argument_symbol, "illegal argument") \
(...skipping 1107 matching lines...) Expand 10 before | Expand all | Expand 10 after
1288 int marked_count_; 1286 int marked_count_;
1289 1287
1290 // The count from the end of the previous full GC. Will be zero if there 1288 // The count from the end of the previous full GC. Will be zero if there
1291 // was no previous full GC. 1289 // was no previous full GC.
1292 int previous_marked_count_; 1290 int previous_marked_count_;
1293 }; 1291 };
1294 1292
1295 } } // namespace v8::internal 1293 } } // namespace v8::internal
1296 1294
1297 #endif // V8_HEAP_H_ 1295 #endif // V8_HEAP_H_
OLDNEW
« no previous file with comments | « src/codegen-ia32.cc ('k') | src/parser.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698