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

Side by Side Diff: src/heap.h

Issue 6529055: [Isolates] Merge crankshaft (r5922 from bleeding_edge). (Closed)
Patch Set: Win32 port 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
« no previous file with comments | « src/handles.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 50 matching lines...) Expand 10 before | Expand all | Expand 10 after
61 V(Object, false_value, FalseValue) \ 61 V(Object, false_value, FalseValue) \
62 V(Map, heap_number_map, HeapNumberMap) \ 62 V(Map, heap_number_map, HeapNumberMap) \
63 V(Map, global_context_map, GlobalContextMap) \ 63 V(Map, global_context_map, GlobalContextMap) \
64 V(Map, fixed_array_map, FixedArrayMap) \ 64 V(Map, fixed_array_map, FixedArrayMap) \
65 V(Map, fixed_cow_array_map, FixedCOWArrayMap) \ 65 V(Map, fixed_cow_array_map, FixedCOWArrayMap) \
66 V(Object, no_interceptor_result_sentinel, NoInterceptorResultSentinel) \ 66 V(Object, no_interceptor_result_sentinel, NoInterceptorResultSentinel) \
67 V(Map, meta_map, MetaMap) \ 67 V(Map, meta_map, MetaMap) \
68 V(Object, termination_exception, TerminationException) \ 68 V(Object, termination_exception, TerminationException) \
69 V(Map, hash_table_map, HashTableMap) \ 69 V(Map, hash_table_map, HashTableMap) \
70 V(FixedArray, empty_fixed_array, EmptyFixedArray) \ 70 V(FixedArray, empty_fixed_array, EmptyFixedArray) \
71 V(ByteArray, empty_byte_array, EmptyByteArray) \
71 V(Map, string_map, StringMap) \ 72 V(Map, string_map, StringMap) \
72 V(Map, ascii_string_map, AsciiStringMap) \ 73 V(Map, ascii_string_map, AsciiStringMap) \
73 V(Map, symbol_map, SymbolMap) \ 74 V(Map, symbol_map, SymbolMap) \
74 V(Map, ascii_symbol_map, AsciiSymbolMap) \ 75 V(Map, ascii_symbol_map, AsciiSymbolMap) \
75 V(Map, cons_symbol_map, ConsSymbolMap) \ 76 V(Map, cons_symbol_map, ConsSymbolMap) \
76 V(Map, cons_ascii_symbol_map, ConsAsciiSymbolMap) \ 77 V(Map, cons_ascii_symbol_map, ConsAsciiSymbolMap) \
77 V(Map, external_symbol_map, ExternalSymbolMap) \ 78 V(Map, external_symbol_map, ExternalSymbolMap) \
78 V(Map, external_symbol_with_ascii_data_map, ExternalSymbolWithAsciiDataMap) \ 79 V(Map, external_symbol_with_ascii_data_map, ExternalSymbolWithAsciiDataMap) \
79 V(Map, external_ascii_symbol_map, ExternalAsciiSymbolMap) \ 80 V(Map, external_ascii_symbol_map, ExternalAsciiSymbolMap) \
80 V(Map, cons_string_map, ConsStringMap) \ 81 V(Map, cons_string_map, ConsStringMap) \
(...skipping 91 matching lines...) Expand 10 before | Expand all | Expand 10 after
172 V(string_symbol, "string") \ 173 V(string_symbol, "string") \
173 V(String_symbol, "String") \ 174 V(String_symbol, "String") \
174 V(Date_symbol, "Date") \ 175 V(Date_symbol, "Date") \
175 V(this_symbol, "this") \ 176 V(this_symbol, "this") \
176 V(to_string_symbol, "toString") \ 177 V(to_string_symbol, "toString") \
177 V(char_at_symbol, "CharAt") \ 178 V(char_at_symbol, "CharAt") \
178 V(undefined_symbol, "undefined") \ 179 V(undefined_symbol, "undefined") \
179 V(value_of_symbol, "valueOf") \ 180 V(value_of_symbol, "valueOf") \
180 V(InitializeVarGlobal_symbol, "InitializeVarGlobal") \ 181 V(InitializeVarGlobal_symbol, "InitializeVarGlobal") \
181 V(InitializeConstGlobal_symbol, "InitializeConstGlobal") \ 182 V(InitializeConstGlobal_symbol, "InitializeConstGlobal") \
183 V(KeyedLoadSpecialized_symbol, "KeyedLoadSpecialized") \
184 V(KeyedStoreSpecialized_symbol, "KeyedStoreSpecialized") \
182 V(stack_overflow_symbol, "kStackOverflowBoilerplate") \ 185 V(stack_overflow_symbol, "kStackOverflowBoilerplate") \
183 V(illegal_access_symbol, "illegal access") \ 186 V(illegal_access_symbol, "illegal access") \
184 V(out_of_memory_symbol, "out-of-memory") \ 187 V(out_of_memory_symbol, "out-of-memory") \
185 V(illegal_execution_state_symbol, "illegal execution state") \ 188 V(illegal_execution_state_symbol, "illegal execution state") \
186 V(get_symbol, "get") \ 189 V(get_symbol, "get") \
187 V(set_symbol, "set") \ 190 V(set_symbol, "set") \
188 V(function_class_symbol, "Function") \ 191 V(function_class_symbol, "Function") \
189 V(illegal_argument_symbol, "illegal argument") \ 192 V(illegal_argument_symbol, "illegal argument") \
190 V(MakeReferenceError_symbol, "MakeReferenceError") \ 193 V(MakeReferenceError_symbol, "MakeReferenceError") \
191 V(MakeSyntaxError_symbol, "MakeSyntaxError") \ 194 V(MakeSyntaxError_symbol, "MakeSyntaxError") \
(...skipping 1966 matching lines...) Expand 10 before | Expand all | Expand 10 after
2158 // should be returned as in some GC situations the object has been moved. 2161 // should be returned as in some GC situations the object has been moved.
2159 virtual Object* RetainAs(Object* object) = 0; 2162 virtual Object* RetainAs(Object* object) = 0;
2160 }; 2163 };
2161 2164
2162 2165
2163 } } // namespace v8::internal 2166 } } // namespace v8::internal
2164 2167
2165 #undef HEAP 2168 #undef HEAP
2166 2169
2167 #endif // V8_HEAP_H_ 2170 #endif // V8_HEAP_H_
OLDNEW
« no previous file with comments | « src/handles.cc ('k') | src/heap.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698