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

Side by Side Diff: src/heap.h

Issue 11035054: Make sure that names of temporaries do not clash with real variables. (Closed) Base URL: https://v8.googlecode.com/svn/branches/bleeding_edge
Patch Set: Addressed Michael's comments. Created 8 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 | « include/v8.h ('k') | src/parser.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 158 matching lines...) Expand 10 before | Expand all | Expand 10 after
169 V(Arguments_symbol, "Arguments") \ 169 V(Arguments_symbol, "Arguments") \
170 V(call_symbol, "call") \ 170 V(call_symbol, "call") \
171 V(apply_symbol, "apply") \ 171 V(apply_symbol, "apply") \
172 V(caller_symbol, "caller") \ 172 V(caller_symbol, "caller") \
173 V(boolean_symbol, "boolean") \ 173 V(boolean_symbol, "boolean") \
174 V(Boolean_symbol, "Boolean") \ 174 V(Boolean_symbol, "Boolean") \
175 V(callee_symbol, "callee") \ 175 V(callee_symbol, "callee") \
176 V(constructor_symbol, "constructor") \ 176 V(constructor_symbol, "constructor") \
177 V(code_symbol, ".code") \ 177 V(code_symbol, ".code") \
178 V(result_symbol, ".result") \ 178 V(result_symbol, ".result") \
179 V(dot_for_symbol, ".for.") \
179 V(catch_var_symbol, ".catch-var") \ 180 V(catch_var_symbol, ".catch-var") \
180 V(empty_symbol, "") \ 181 V(empty_symbol, "") \
181 V(eval_symbol, "eval") \ 182 V(eval_symbol, "eval") \
182 V(function_symbol, "function") \ 183 V(function_symbol, "function") \
183 V(length_symbol, "length") \ 184 V(length_symbol, "length") \
184 V(module_symbol, "module") \ 185 V(module_symbol, "module") \
185 V(name_symbol, "name") \ 186 V(name_symbol, "name") \
186 V(native_symbol, "native") \ 187 V(native_symbol, "native") \
187 V(null_symbol, "null") \ 188 V(null_symbol, "null") \
188 V(number_symbol, "number") \ 189 V(number_symbol, "number") \
(...skipping 2604 matching lines...) Expand 10 before | Expand all | Expand 10 after
2793 AssertNoAllocation no_alloc; // i.e. no gc allowed. 2794 AssertNoAllocation no_alloc; // i.e. no gc allowed.
2794 2795
2795 private: 2796 private:
2796 DISALLOW_IMPLICIT_CONSTRUCTORS(PathTracer); 2797 DISALLOW_IMPLICIT_CONSTRUCTORS(PathTracer);
2797 }; 2798 };
2798 #endif // DEBUG || LIVE_OBJECT_LIST 2799 #endif // DEBUG || LIVE_OBJECT_LIST
2799 2800
2800 } } // namespace v8::internal 2801 } } // namespace v8::internal
2801 2802
2802 #endif // V8_HEAP_H_ 2803 #endif // V8_HEAP_H_
OLDNEW
« no previous file with comments | « include/v8.h ('k') | src/parser.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698