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

Side by Side Diff: src/heap.h

Issue 8520006: Optimize the equality check case of ICCompare stubs. (Closed) Base URL: http://v8.googlecode.com/svn/branches/bleeding_edge/
Patch Set: '' Created 9 years 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/code-stubs.cc ('k') | src/heap.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 2011 the V8 project authors. All rights reserved. 1 // Copyright 2011 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 217 matching lines...) Expand 10 before | Expand all | Expand 10 after
228 V(failure_symbol, "<failure>") \ 228 V(failure_symbol, "<failure>") \
229 V(space_symbol, " ") \ 229 V(space_symbol, " ") \
230 V(exec_symbol, "exec") \ 230 V(exec_symbol, "exec") \
231 V(zero_symbol, "0") \ 231 V(zero_symbol, "0") \
232 V(global_eval_symbol, "GlobalEval") \ 232 V(global_eval_symbol, "GlobalEval") \
233 V(identity_hash_symbol, "v8::IdentityHash") \ 233 V(identity_hash_symbol, "v8::IdentityHash") \
234 V(closure_symbol, "(closure)") \ 234 V(closure_symbol, "(closure)") \
235 V(use_strict, "use strict") \ 235 V(use_strict, "use strict") \
236 V(dot_symbol, ".") \ 236 V(dot_symbol, ".") \
237 V(anonymous_function_symbol, "(anonymous function)") \ 237 V(anonymous_function_symbol, "(anonymous function)") \
238 V(compare_ic_symbol, "(compare_ic)") \
Kevin Millikin (Chromium) 2011/12/08 16:07:40 I think the ones just above are print names. We s
238 V(infinity_symbol, "Infinity") \ 239 V(infinity_symbol, "Infinity") \
239 V(minus_infinity_symbol, "-Infinity") 240 V(minus_infinity_symbol, "-Infinity")
240 241
241 // Forward declarations. 242 // Forward declarations.
242 class GCTracer; 243 class GCTracer;
243 class HeapStats; 244 class HeapStats;
244 class Isolate; 245 class Isolate;
245 class WeakObjectRetainer; 246 class WeakObjectRetainer;
246 247
247 248
(...skipping 2281 matching lines...) Expand 10 before | Expand all | Expand 10 after
2529 2530
2530 DISALLOW_IMPLICIT_CONSTRUCTORS(PathTracer); 2531 DISALLOW_IMPLICIT_CONSTRUCTORS(PathTracer);
2531 }; 2532 };
2532 #endif // DEBUG || LIVE_OBJECT_LIST 2533 #endif // DEBUG || LIVE_OBJECT_LIST
2533 2534
2534 } } // namespace v8::internal 2535 } } // namespace v8::internal
2535 2536
2536 #undef HEAP 2537 #undef HEAP
2537 2538
2538 #endif // V8_HEAP_H_ 2539 #endif // V8_HEAP_H_
OLDNEW
« no previous file with comments | « src/code-stubs.cc ('k') | src/heap.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698