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

Side by Side Diff: src/heap.h

Issue 10830334: Fix bug in compare IC. BUG=2291 (Closed) Base URL: http://v8.googlecode.com/svn/branches/bleeding_edge/
Patch Set: Created 8 years, 4 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 | « src/code-stubs.cc ('k') | test/mjsunit/regress/regress-2291.js » ('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 222 matching lines...) Expand 10 before | Expand all | Expand 10 after
233 V(failure_symbol, "<failure>") \ 233 V(failure_symbol, "<failure>") \
234 V(space_symbol, " ") \ 234 V(space_symbol, " ") \
235 V(exec_symbol, "exec") \ 235 V(exec_symbol, "exec") \
236 V(zero_symbol, "0") \ 236 V(zero_symbol, "0") \
237 V(global_eval_symbol, "GlobalEval") \ 237 V(global_eval_symbol, "GlobalEval") \
238 V(identity_hash_symbol, "v8::IdentityHash") \ 238 V(identity_hash_symbol, "v8::IdentityHash") \
239 V(closure_symbol, "(closure)") \ 239 V(closure_symbol, "(closure)") \
240 V(use_strict, "use strict") \ 240 V(use_strict, "use strict") \
241 V(dot_symbol, ".") \ 241 V(dot_symbol, ".") \
242 V(anonymous_function_symbol, "(anonymous function)") \ 242 V(anonymous_function_symbol, "(anonymous function)") \
243 V(compare_ic_symbol, ".compare_ic") \ 243 V(compare_ic_symbol, "==") \
244 V(strict_compare_ic_symbol, "===") \
244 V(infinity_symbol, "Infinity") \ 245 V(infinity_symbol, "Infinity") \
245 V(minus_infinity_symbol, "-Infinity") \ 246 V(minus_infinity_symbol, "-Infinity") \
246 V(hidden_stack_trace_symbol, "v8::hidden_stack_trace") \ 247 V(hidden_stack_trace_symbol, "v8::hidden_stack_trace") \
247 V(query_colon_symbol, "(?:)") 248 V(query_colon_symbol, "(?:)")
248 249
249 // Forward declarations. 250 // Forward declarations.
250 class GCTracer; 251 class GCTracer;
251 class HeapStats; 252 class HeapStats;
252 class Isolate; 253 class Isolate;
253 class WeakObjectRetainer; 254 class WeakObjectRetainer;
(...skipping 2518 matching lines...) Expand 10 before | Expand all | Expand 10 after
2772 AssertNoAllocation no_alloc; // i.e. no gc allowed. 2773 AssertNoAllocation no_alloc; // i.e. no gc allowed.
2773 2774
2774 private: 2775 private:
2775 DISALLOW_IMPLICIT_CONSTRUCTORS(PathTracer); 2776 DISALLOW_IMPLICIT_CONSTRUCTORS(PathTracer);
2776 }; 2777 };
2777 #endif // DEBUG || LIVE_OBJECT_LIST 2778 #endif // DEBUG || LIVE_OBJECT_LIST
2778 2779
2779 } } // namespace v8::internal 2780 } } // namespace v8::internal
2780 2781
2781 #endif // V8_HEAP_H_ 2782 #endif // V8_HEAP_H_
OLDNEW
« no previous file with comments | « src/code-stubs.cc ('k') | test/mjsunit/regress/regress-2291.js » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698