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

Side by Side Diff: src/heap/heap.h

Issue 1449473005: [V8] Unify get function name for debugging purpose (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: Created 5 years, 1 month 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
« no previous file with comments | « src/debug/mirrors.js ('k') | src/messages.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 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 #ifndef V8_HEAP_HEAP_H_ 5 #ifndef V8_HEAP_HEAP_H_
6 #define V8_HEAP_HEAP_H_ 6 #define V8_HEAP_HEAP_H_
7 7
8 #include <cmath> 8 #include <cmath>
9 #include <map> 9 #include <map>
10 10
(...skipping 220 matching lines...) Expand 10 before | Expand all | Expand 10 after
231 V(char_at_string, "CharAt") \ 231 V(char_at_string, "CharAt") \
232 V(closure_string, "(closure)") \ 232 V(closure_string, "(closure)") \
233 V(compare_ic_string, "==") \ 233 V(compare_ic_string, "==") \
234 V(configurable_string, "configurable") \ 234 V(configurable_string, "configurable") \
235 V(constructor_string, "constructor") \ 235 V(constructor_string, "constructor") \
236 V(construct_string, "construct") \ 236 V(construct_string, "construct") \
237 V(Date_string, "Date") \ 237 V(Date_string, "Date") \
238 V(default_string, "default") \ 238 V(default_string, "default") \
239 V(defineProperty_string, "defineProperty") \ 239 V(defineProperty_string, "defineProperty") \
240 V(deleteProperty_string, "deleteProperty") \ 240 V(deleteProperty_string, "deleteProperty") \
241 V(display_name_string, "displayName") \
241 V(done_string, "done") \ 242 V(done_string, "done") \
242 V(dot_result_string, ".result") \ 243 V(dot_result_string, ".result") \
243 V(dot_string, ".") \ 244 V(dot_string, ".") \
244 V(enumerable_string, "enumerable") \ 245 V(enumerable_string, "enumerable") \
245 V(enumerate_string, "enumerate") \ 246 V(enumerate_string, "enumerate") \
246 V(Error_string, "Error") \ 247 V(Error_string, "Error") \
247 V(eval_string, "eval") \ 248 V(eval_string, "eval") \
248 V(false_string, "false") \ 249 V(false_string, "false") \
249 V(float32x4_string, "float32x4") \ 250 V(float32x4_string, "float32x4") \
250 V(Float32x4_string, "Float32x4") \ 251 V(Float32x4_string, "Float32x4") \
(...skipping 2475 matching lines...) Expand 10 before | Expand all | Expand 10 after
2726 DisallowHeapAllocation no_allocation; // i.e. no gc allowed. 2727 DisallowHeapAllocation no_allocation; // i.e. no gc allowed.
2727 2728
2728 private: 2729 private:
2729 DISALLOW_IMPLICIT_CONSTRUCTORS(PathTracer); 2730 DISALLOW_IMPLICIT_CONSTRUCTORS(PathTracer);
2730 }; 2731 };
2731 #endif // DEBUG 2732 #endif // DEBUG
2732 } // namespace internal 2733 } // namespace internal
2733 } // namespace v8 2734 } // namespace v8
2734 2735
2735 #endif // V8_HEAP_HEAP_H_ 2736 #endif // V8_HEAP_HEAP_H_
OLDNEW
« no previous file with comments | « src/debug/mirrors.js ('k') | src/messages.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698