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/objects.cc

Issue 443933002: Move objects-visiting into heap. (Closed) Base URL: https://v8.googlecode.com/svn/branches/bleeding_edge
Patch Set: Created 6 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/heap/objects-visiting-inl.h ('k') | src/objects-debug.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 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/v8.h" 5 #include "src/v8.h"
6 6
7 #include "src/accessors.h" 7 #include "src/accessors.h"
8 #include "src/allocation-site-scopes.h" 8 #include "src/allocation-site-scopes.h"
9 #include "src/api.h" 9 #include "src/api.h"
10 #include "src/arguments.h" 10 #include "src/arguments.h"
11 #include "src/bootstrapper.h" 11 #include "src/bootstrapper.h"
12 #include "src/code-stubs.h" 12 #include "src/code-stubs.h"
13 #include "src/codegen.h" 13 #include "src/codegen.h"
14 #include "src/cpu-profiler.h" 14 #include "src/cpu-profiler.h"
15 #include "src/date.h" 15 #include "src/date.h"
16 #include "src/debug.h" 16 #include "src/debug.h"
17 #include "src/deoptimizer.h" 17 #include "src/deoptimizer.h"
18 #include "src/elements.h" 18 #include "src/elements.h"
19 #include "src/execution.h" 19 #include "src/execution.h"
20 #include "src/field-index-inl.h" 20 #include "src/field-index-inl.h"
21 #include "src/field-index.h" 21 #include "src/field-index.h"
22 #include "src/full-codegen.h" 22 #include "src/full-codegen.h"
23 #include "src/heap/mark-compact.h" 23 #include "src/heap/mark-compact.h"
24 #include "src/heap/objects-visiting-inl.h"
24 #include "src/hydrogen.h" 25 #include "src/hydrogen.h"
25 #include "src/isolate-inl.h" 26 #include "src/isolate-inl.h"
26 #include "src/log.h" 27 #include "src/log.h"
27 #include "src/lookup.h" 28 #include "src/lookup.h"
28 #include "src/macro-assembler.h" 29 #include "src/macro-assembler.h"
29 #include "src/objects-inl.h" 30 #include "src/objects-inl.h"
30 #include "src/objects-visiting-inl.h"
31 #include "src/prototype.h" 31 #include "src/prototype.h"
32 #include "src/safepoint-table.h" 32 #include "src/safepoint-table.h"
33 #include "src/string-search.h" 33 #include "src/string-search.h"
34 #include "src/string-stream.h" 34 #include "src/string-stream.h"
35 #include "src/utils.h" 35 #include "src/utils.h"
36 36
37 #ifdef ENABLE_DISASSEMBLER 37 #ifdef ENABLE_DISASSEMBLER
38 #include "src/disasm.h" 38 #include "src/disasm.h"
39 #include "src/disassembler.h" 39 #include "src/disassembler.h"
40 #endif 40 #endif
(...skipping 16849 matching lines...) Expand 10 before | Expand all | Expand 10 after
16890 #define ERROR_MESSAGES_TEXTS(C, T) T, 16890 #define ERROR_MESSAGES_TEXTS(C, T) T,
16891 static const char* error_messages_[] = { 16891 static const char* error_messages_[] = {
16892 ERROR_MESSAGES_LIST(ERROR_MESSAGES_TEXTS) 16892 ERROR_MESSAGES_LIST(ERROR_MESSAGES_TEXTS)
16893 }; 16893 };
16894 #undef ERROR_MESSAGES_TEXTS 16894 #undef ERROR_MESSAGES_TEXTS
16895 return error_messages_[reason]; 16895 return error_messages_[reason];
16896 } 16896 }
16897 16897
16898 16898
16899 } } // namespace v8::internal 16899 } } // namespace v8::internal
OLDNEW
« no previous file with comments | « src/heap/objects-visiting-inl.h ('k') | src/objects-debug.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698