Chromium Code Reviews

Side by Side Diff: src/heap.h

Issue 196103004: Add support for per-isolate private symbols (Closed) Base URL: https://v8.googlecode.com/svn/branches/bleeding_edge
Patch Set: Rebased Created 6 years, 9 months ago
Use n/p to move between diff chunks; N/P to move between comments.
Jump to:
View unified diff | | Annotate | Revision Log
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 288 matching lines...)
299 V(input_string, "input") \ 299 V(input_string, "input") \
300 V(index_string, "index") \ 300 V(index_string, "index") \
301 V(last_index_string, "lastIndex") \ 301 V(last_index_string, "lastIndex") \
302 V(object_string, "object") \ 302 V(object_string, "object") \
303 V(literals_string, "literals") \ 303 V(literals_string, "literals") \
304 V(prototype_string, "prototype") \ 304 V(prototype_string, "prototype") \
305 V(string_string, "string") \ 305 V(string_string, "string") \
306 V(String_string, "String") \ 306 V(String_string, "String") \
307 V(symbol_string, "symbol") \ 307 V(symbol_string, "symbol") \
308 V(Symbol_string, "Symbol") \ 308 V(Symbol_string, "Symbol") \
309 V(private_intern_string, "private_intern") \
310 V(private_api_string, "private_api") \
309 V(Date_string, "Date") \ 311 V(Date_string, "Date") \
310 V(this_string, "this") \ 312 V(this_string, "this") \
311 V(to_string_string, "toString") \ 313 V(to_string_string, "toString") \
312 V(char_at_string, "CharAt") \ 314 V(char_at_string, "CharAt") \
313 V(undefined_string, "undefined") \ 315 V(undefined_string, "undefined") \
314 V(value_of_string, "valueOf") \ 316 V(value_of_string, "valueOf") \
315 V(stack_string, "stack") \ 317 V(stack_string, "stack") \
316 V(toJSON_string, "toJSON") \ 318 V(toJSON_string, "toJSON") \
317 V(InitializeVarGlobal_string, "InitializeVarGlobal") \ 319 V(InitializeVarGlobal_string, "InitializeVarGlobal") \
318 V(InitializeConstGlobal_string, "InitializeConstGlobal") \ 320 V(InitializeConstGlobal_string, "InitializeConstGlobal") \
(...skipping 2804 matching lines...)
3123 DisallowHeapAllocation no_allocation; // i.e. no gc allowed. 3125 DisallowHeapAllocation no_allocation; // i.e. no gc allowed.
3124 3126
3125 private: 3127 private:
3126 DISALLOW_IMPLICIT_CONSTRUCTORS(PathTracer); 3128 DISALLOW_IMPLICIT_CONSTRUCTORS(PathTracer);
3127 }; 3129 };
3128 #endif // DEBUG 3130 #endif // DEBUG
3129 3131
3130 } } // namespace v8::internal 3132 } } // namespace v8::internal
3131 3133
3132 #endif // V8_HEAP_H_ 3134 #endif // V8_HEAP_H_
OLDNEW

Powered by Google App Engine