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

Side by Side Diff: src/heap.h

Issue 8872060: Reland 10216 - 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
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 227 matching lines...) Expand 10 before | Expand all | Expand 10 after
238 V(failure_symbol, "<failure>") \ 238 V(failure_symbol, "<failure>") \
239 V(space_symbol, " ") \ 239 V(space_symbol, " ") \
240 V(exec_symbol, "exec") \ 240 V(exec_symbol, "exec") \
241 V(zero_symbol, "0") \ 241 V(zero_symbol, "0") \
242 V(global_eval_symbol, "GlobalEval") \ 242 V(global_eval_symbol, "GlobalEval") \
243 V(identity_hash_symbol, "v8::IdentityHash") \ 243 V(identity_hash_symbol, "v8::IdentityHash") \
244 V(closure_symbol, "(closure)") \ 244 V(closure_symbol, "(closure)") \
245 V(use_strict, "use strict") \ 245 V(use_strict, "use strict") \
246 V(dot_symbol, ".") \ 246 V(dot_symbol, ".") \
247 V(anonymous_function_symbol, "(anonymous function)") \ 247 V(anonymous_function_symbol, "(anonymous function)") \
248 V(compare_ic_symbol, ".compare_ic") \
248 V(infinity_symbol, "Infinity") \ 249 V(infinity_symbol, "Infinity") \
249 V(minus_infinity_symbol, "-Infinity") 250 V(minus_infinity_symbol, "-Infinity")
250 251
251 // Forward declarations. 252 // Forward declarations.
252 class GCTracer; 253 class GCTracer;
253 class HeapStats; 254 class HeapStats;
254 class Isolate; 255 class Isolate;
255 class WeakObjectRetainer; 256 class WeakObjectRetainer;
256 257
257 258
(...skipping 2345 matching lines...) Expand 10 before | Expand all | Expand 10 after
2603 2604
2604 DISALLOW_IMPLICIT_CONSTRUCTORS(PathTracer); 2605 DISALLOW_IMPLICIT_CONSTRUCTORS(PathTracer);
2605 }; 2606 };
2606 #endif // DEBUG || LIVE_OBJECT_LIST 2607 #endif // DEBUG || LIVE_OBJECT_LIST
2607 2608
2608 } } // namespace v8::internal 2609 } } // namespace v8::internal
2609 2610
2610 #undef HEAP 2611 #undef HEAP
2611 2612
2612 #endif // V8_HEAP_H_ 2613 #endif // V8_HEAP_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698