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

Side by Side Diff: src/heap.h

Issue 6531: - Added %IsArrayClass, %IsDateClass, and %IsStringClass.... (Closed) Base URL: http://v8.googlecode.com/svn/branches/bleeding_edge/
Patch Set: Created 12 years, 2 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/date-delay.js ('k') | src/macros.py » ('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 136 matching lines...) Expand 10 before | Expand all | Expand 10 after
147 V(catch_var_symbol, ".catch-var") \ 147 V(catch_var_symbol, ".catch-var") \
148 V(empty_symbol, "") \ 148 V(empty_symbol, "") \
149 V(eval_symbol, "eval") \ 149 V(eval_symbol, "eval") \
150 V(function_symbol, "function") \ 150 V(function_symbol, "function") \
151 V(length_symbol, "length") \ 151 V(length_symbol, "length") \
152 V(name_symbol, "name") \ 152 V(name_symbol, "name") \
153 V(number_symbol, "number") \ 153 V(number_symbol, "number") \
154 V(object_symbol, "object") \ 154 V(object_symbol, "object") \
155 V(prototype_symbol, "prototype") \ 155 V(prototype_symbol, "prototype") \
156 V(string_symbol, "string") \ 156 V(string_symbol, "string") \
157 V(String_symbol, "String") \
158 V(Date_symbol, "Date") \
157 V(this_symbol, "this") \ 159 V(this_symbol, "this") \
158 V(to_string_symbol, "toString") \ 160 V(to_string_symbol, "toString") \
159 V(char_at_symbol, "CharAt") \ 161 V(char_at_symbol, "CharAt") \
160 V(undefined_symbol, "undefined") \ 162 V(undefined_symbol, "undefined") \
161 V(value_of_symbol, "valueOf") \ 163 V(value_of_symbol, "valueOf") \
162 V(CreateObjectLiteralBoilerplate_symbol, "CreateObjectLiteralBoilerplate") \ 164 V(CreateObjectLiteralBoilerplate_symbol, "CreateObjectLiteralBoilerplate") \
163 V(CreateArrayLiteral_symbol, "CreateArrayLiteral") \ 165 V(CreateArrayLiteral_symbol, "CreateArrayLiteral") \
164 V(InitializeVarGlobal_symbol, "InitializeVarGlobal") \ 166 V(InitializeVarGlobal_symbol, "InitializeVarGlobal") \
165 V(InitializeConstGlobal_symbol, "InitializeConstGlobal") \ 167 V(InitializeConstGlobal_symbol, "InitializeConstGlobal") \
166 V(stack_overflow_symbol, "kStackOverflowBoilerplate") \ 168 V(stack_overflow_symbol, "kStackOverflowBoilerplate") \
(...skipping 996 matching lines...) Expand 10 before | Expand all | Expand 10 after
1163 int marked_count_; 1165 int marked_count_;
1164 1166
1165 // The count from the end of the previous full GC. Will be zero if there 1167 // The count from the end of the previous full GC. Will be zero if there
1166 // was no previous full GC. 1168 // was no previous full GC.
1167 int previous_marked_count_; 1169 int previous_marked_count_;
1168 }; 1170 };
1169 1171
1170 } } // namespace v8::internal 1172 } } // namespace v8::internal
1171 1173
1172 #endif // V8_HEAP_H_ 1174 #endif // V8_HEAP_H_
OLDNEW
« no previous file with comments | « src/date-delay.js ('k') | src/macros.py » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698