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

Side by Side Diff: src/heap.h

Issue 6728022: Merge r7454 from bleeding edge. (Closed) Base URL: http://v8.googlecode.com/svn/branches/3.1/
Patch Set: Created 9 years, 8 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 | « no previous file | src/ic.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 2010 the V8 project authors. All rights reserved. 1 // Copyright 2010 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 145 matching lines...) Expand 10 before | Expand all | Expand 10 after
156 V(code_symbol, ".code") \ 156 V(code_symbol, ".code") \
157 V(result_symbol, ".result") \ 157 V(result_symbol, ".result") \
158 V(catch_var_symbol, ".catch-var") \ 158 V(catch_var_symbol, ".catch-var") \
159 V(empty_symbol, "") \ 159 V(empty_symbol, "") \
160 V(eval_symbol, "eval") \ 160 V(eval_symbol, "eval") \
161 V(function_symbol, "function") \ 161 V(function_symbol, "function") \
162 V(length_symbol, "length") \ 162 V(length_symbol, "length") \
163 V(name_symbol, "name") \ 163 V(name_symbol, "name") \
164 V(number_symbol, "number") \ 164 V(number_symbol, "number") \
165 V(Number_symbol, "Number") \ 165 V(Number_symbol, "Number") \
166 V(nan_symbol, "NaN") \
166 V(RegExp_symbol, "RegExp") \ 167 V(RegExp_symbol, "RegExp") \
167 V(source_symbol, "source") \ 168 V(source_symbol, "source") \
168 V(global_symbol, "global") \ 169 V(global_symbol, "global") \
169 V(ignore_case_symbol, "ignoreCase") \ 170 V(ignore_case_symbol, "ignoreCase") \
170 V(multiline_symbol, "multiline") \ 171 V(multiline_symbol, "multiline") \
171 V(input_symbol, "input") \ 172 V(input_symbol, "input") \
172 V(index_symbol, "index") \ 173 V(index_symbol, "index") \
173 V(last_index_symbol, "lastIndex") \ 174 V(last_index_symbol, "lastIndex") \
174 V(object_symbol, "object") \ 175 V(object_symbol, "object") \
175 V(prototype_symbol, "prototype") \ 176 V(prototype_symbol, "prototype") \
(...skipping 2033 matching lines...) Expand 10 before | Expand all | Expand 10 after
2209 AssertNoAllocation no_alloc; // i.e. no gc allowed. 2210 AssertNoAllocation no_alloc; // i.e. no gc allowed.
2210 2211
2211 DISALLOW_IMPLICIT_CONSTRUCTORS(PathTracer); 2212 DISALLOW_IMPLICIT_CONSTRUCTORS(PathTracer);
2212 }; 2213 };
2213 #endif // DEBUG || LIVE_OBJECT_LIST 2214 #endif // DEBUG || LIVE_OBJECT_LIST
2214 2215
2215 2216
2216 } } // namespace v8::internal 2217 } } // namespace v8::internal
2217 2218
2218 #endif // V8_HEAP_H_ 2219 #endif // V8_HEAP_H_
OLDNEW
« no previous file with comments | « no previous file | src/ic.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698