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

Side by Side Diff: src/heap.h

Issue 6597029: [Isolates] Merge r 6300:6500 from bleeding_edge to isolates. (Closed) Base URL: http://v8.googlecode.com/svn/branches/experimental/isolates/
Patch Set: Created 9 years, 10 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/gdb-jit.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 2010 the V8 project authors. All rights reserved. 1 // Copyright 2010 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 191 matching lines...) Expand 10 before | Expand all | Expand 10 after
202 V(illegal_break_symbol, "illegal_break") \ 202 V(illegal_break_symbol, "illegal_break") \
203 V(illegal_continue_symbol, "illegal_continue") \ 203 V(illegal_continue_symbol, "illegal_continue") \
204 V(unknown_label_symbol, "unknown_label") \ 204 V(unknown_label_symbol, "unknown_label") \
205 V(redeclaration_symbol, "redeclaration") \ 205 V(redeclaration_symbol, "redeclaration") \
206 V(failure_symbol, "<failure>") \ 206 V(failure_symbol, "<failure>") \
207 V(space_symbol, " ") \ 207 V(space_symbol, " ") \
208 V(exec_symbol, "exec") \ 208 V(exec_symbol, "exec") \
209 V(zero_symbol, "0") \ 209 V(zero_symbol, "0") \
210 V(global_eval_symbol, "GlobalEval") \ 210 V(global_eval_symbol, "GlobalEval") \
211 V(identity_hash_symbol, "v8::IdentityHash") \ 211 V(identity_hash_symbol, "v8::IdentityHash") \
212 V(closure_symbol, "(closure)") 212 V(closure_symbol, "(closure)") \
213 V(use_strict, "use strict") \
214 V(KeyedLoadExternalArray_symbol, "KeyedLoadExternalArray") \
215 V(KeyedStoreExternalArray_symbol, "KeyedStoreExternalArray")
213 216
214 217
215 // Forward declarations. 218 // Forward declarations.
216 class GCTracer; 219 class GCTracer;
217 class HeapStats; 220 class HeapStats;
218 class Isolate; 221 class Isolate;
219 class WeakObjectRetainer; 222 class WeakObjectRetainer;
220 223
221 224
222 typedef String* (*ExternalStringTableUpdaterCallback)(Heap* heap, 225 typedef String* (*ExternalStringTableUpdaterCallback)(Heap* heap,
(...skipping 1936 matching lines...) Expand 10 before | Expand all | Expand 10 after
2159 // should be returned as in some GC situations the object has been moved. 2162 // should be returned as in some GC situations the object has been moved.
2160 virtual Object* RetainAs(Object* object) = 0; 2163 virtual Object* RetainAs(Object* object) = 0;
2161 }; 2164 };
2162 2165
2163 2166
2164 } } // namespace v8::internal 2167 } } // namespace v8::internal
2165 2168
2166 #undef HEAP 2169 #undef HEAP
2167 2170
2168 #endif // V8_HEAP_H_ 2171 #endif // V8_HEAP_H_
OLDNEW
« no previous file with comments | « src/gdb-jit.cc ('k') | src/heap.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698