| OLD | NEW |
| 1 // Copyright 2013 the V8 project authors. All rights reserved. | 1 // Copyright 2013 the V8 project authors. All rights reserved. |
| 2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
| 3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
| 4 | 4 |
| 5 #include "src/profiler/heap-snapshot-generator.h" | 5 #include "src/profiler/heap-snapshot-generator.h" |
| 6 | 6 |
| 7 #include "src/code-stubs.h" | 7 #include "src/code-stubs.h" |
| 8 #include "src/conversions.h" | 8 #include "src/conversions.h" |
| 9 #include "src/debug/debug.h" | 9 #include "src/debug/debug.h" |
| 10 #include "src/objects-body-descriptors.h" | 10 #include "src/objects-body-descriptors.h" |
| (...skipping 1230 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1241 Context::index == Context::MAP_CACHE_INDEX) { \ | 1241 Context::index == Context::MAP_CACHE_INDEX) { \ |
| 1242 SetInternalReference(context, entry, #name, context->get(Context::index), \ | 1242 SetInternalReference(context, entry, #name, context->get(Context::index), \ |
| 1243 FixedArray::OffsetOfElementAt(Context::index)); \ | 1243 FixedArray::OffsetOfElementAt(Context::index)); \ |
| 1244 } else { \ | 1244 } else { \ |
| 1245 SetWeakReference(context, entry, #name, context->get(Context::index), \ | 1245 SetWeakReference(context, entry, #name, context->get(Context::index), \ |
| 1246 FixedArray::OffsetOfElementAt(Context::index)); \ | 1246 FixedArray::OffsetOfElementAt(Context::index)); \ |
| 1247 } | 1247 } |
| 1248 EXTRACT_CONTEXT_FIELD(CLOSURE_INDEX, JSFunction, closure); | 1248 EXTRACT_CONTEXT_FIELD(CLOSURE_INDEX, JSFunction, closure); |
| 1249 EXTRACT_CONTEXT_FIELD(PREVIOUS_INDEX, Context, previous); | 1249 EXTRACT_CONTEXT_FIELD(PREVIOUS_INDEX, Context, previous); |
| 1250 EXTRACT_CONTEXT_FIELD(EXTENSION_INDEX, Object, extension); | 1250 EXTRACT_CONTEXT_FIELD(EXTENSION_INDEX, Object, extension); |
| 1251 EXTRACT_CONTEXT_FIELD(GLOBAL_OBJECT_INDEX, JSGlobalObject, global); | 1251 EXTRACT_CONTEXT_FIELD(NATIVE_CONTEXT_INDEX, Context, native_context); |
| 1252 if (context->IsNativeContext()) { | 1252 if (context->IsNativeContext()) { |
| 1253 TagObject(context->normalized_map_cache(), "(context norm. map cache)"); | 1253 TagObject(context->normalized_map_cache(), "(context norm. map cache)"); |
| 1254 TagObject(context->runtime_context(), "(runtime context)"); | |
| 1255 TagObject(context->embedder_data(), "(context data)"); | 1254 TagObject(context->embedder_data(), "(context data)"); |
| 1256 NATIVE_CONTEXT_FIELDS(EXTRACT_CONTEXT_FIELD) | 1255 NATIVE_CONTEXT_FIELDS(EXTRACT_CONTEXT_FIELD) |
| 1257 EXTRACT_CONTEXT_FIELD(OPTIMIZED_FUNCTIONS_LIST, unused, | 1256 EXTRACT_CONTEXT_FIELD(OPTIMIZED_FUNCTIONS_LIST, unused, |
| 1258 optimized_functions_list); | 1257 optimized_functions_list); |
| 1259 EXTRACT_CONTEXT_FIELD(OPTIMIZED_CODE_LIST, unused, optimized_code_list); | 1258 EXTRACT_CONTEXT_FIELD(OPTIMIZED_CODE_LIST, unused, optimized_code_list); |
| 1260 EXTRACT_CONTEXT_FIELD(DEOPTIMIZED_CODE_LIST, unused, deoptimized_code_list); | 1259 EXTRACT_CONTEXT_FIELD(DEOPTIMIZED_CODE_LIST, unused, deoptimized_code_list); |
| 1261 EXTRACT_CONTEXT_FIELD(NEXT_CONTEXT_LINK, unused, next_context_link); | 1260 EXTRACT_CONTEXT_FIELD(NEXT_CONTEXT_LINK, unused, next_context_link); |
| 1262 #undef EXTRACT_CONTEXT_FIELD | 1261 #undef EXTRACT_CONTEXT_FIELD |
| 1263 STATIC_ASSERT(Context::OPTIMIZED_FUNCTIONS_LIST == | 1262 STATIC_ASSERT(Context::OPTIMIZED_FUNCTIONS_LIST == |
| 1264 Context::FIRST_WEAK_SLOT); | 1263 Context::FIRST_WEAK_SLOT); |
| (...skipping 1903 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 3168 for (int i = 1; i < sorted_strings.length(); ++i) { | 3167 for (int i = 1; i < sorted_strings.length(); ++i) { |
| 3169 writer_->AddCharacter(','); | 3168 writer_->AddCharacter(','); |
| 3170 SerializeString(sorted_strings[i]); | 3169 SerializeString(sorted_strings[i]); |
| 3171 if (writer_->aborted()) return; | 3170 if (writer_->aborted()) return; |
| 3172 } | 3171 } |
| 3173 } | 3172 } |
| 3174 | 3173 |
| 3175 | 3174 |
| 3176 } // namespace internal | 3175 } // namespace internal |
| 3177 } // namespace v8 | 3176 } // namespace v8 |
| OLD | NEW |