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

Side by Side Diff: src/heap.h

Issue 46089: Revert 1469 and 1472 on trunk. (Closed) Base URL: http://v8.googlecode.com/svn/trunk/
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 149 matching lines...) Expand 10 before | Expand all | Expand 10 after
160 V(object_symbol, "object") \ 160 V(object_symbol, "object") \
161 V(prototype_symbol, "prototype") \ 161 V(prototype_symbol, "prototype") \
162 V(string_symbol, "string") \ 162 V(string_symbol, "string") \
163 V(String_symbol, "String") \ 163 V(String_symbol, "String") \
164 V(Date_symbol, "Date") \ 164 V(Date_symbol, "Date") \
165 V(this_symbol, "this") \ 165 V(this_symbol, "this") \
166 V(to_string_symbol, "toString") \ 166 V(to_string_symbol, "toString") \
167 V(char_at_symbol, "CharAt") \ 167 V(char_at_symbol, "CharAt") \
168 V(undefined_symbol, "undefined") \ 168 V(undefined_symbol, "undefined") \
169 V(value_of_symbol, "valueOf") \ 169 V(value_of_symbol, "valueOf") \
170 V(CreateObjectLiteralBoilerplate_symbol, "CreateObjectLiteralBoilerplate") \
171 V(CreateArrayLiteral_symbol, "CreateArrayLiteral") \
170 V(InitializeVarGlobal_symbol, "InitializeVarGlobal") \ 172 V(InitializeVarGlobal_symbol, "InitializeVarGlobal") \
171 V(InitializeConstGlobal_symbol, "InitializeConstGlobal") \ 173 V(InitializeConstGlobal_symbol, "InitializeConstGlobal") \
172 V(stack_overflow_symbol, "kStackOverflowBoilerplate") \ 174 V(stack_overflow_symbol, "kStackOverflowBoilerplate") \
173 V(illegal_access_symbol, "illegal access") \ 175 V(illegal_access_symbol, "illegal access") \
174 V(out_of_memory_symbol, "out-of-memory") \ 176 V(out_of_memory_symbol, "out-of-memory") \
175 V(illegal_execution_state_symbol, "illegal execution state") \ 177 V(illegal_execution_state_symbol, "illegal execution state") \
176 V(get_symbol, "get") \ 178 V(get_symbol, "get") \
177 V(set_symbol, "set") \ 179 V(set_symbol, "set") \
178 V(function_class_symbol, "Function") \ 180 V(function_class_symbol, "Function") \
179 V(illegal_argument_symbol, "illegal argument") \ 181 V(illegal_argument_symbol, "illegal argument") \
(...skipping 1110 matching lines...) Expand 10 before | Expand all | Expand 10 after
1290 int marked_count_; 1292 int marked_count_;
1291 1293
1292 // The count from the end of the previous full GC. Will be zero if there 1294 // The count from the end of the previous full GC. Will be zero if there
1293 // was no previous full GC. 1295 // was no previous full GC.
1294 int previous_marked_count_; 1296 int previous_marked_count_;
1295 }; 1297 };
1296 1298
1297 } } // namespace v8::internal 1299 } } // namespace v8::internal
1298 1300
1299 #endif // V8_HEAP_H_ 1301 #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