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

Side by Side Diff: src/objects.cc

Issue 437993003: Move a bunch of GC related files to heap/ subdirectory (Closed) Base URL: https://v8.googlecode.com/svn/branches/bleeding_edge
Patch Set: make presubmit happy 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/messages.cc ('k') | src/objects-inl.h » ('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/hydrogen.h" 24 #include "src/hydrogen.h"
24 #include "src/isolate-inl.h" 25 #include "src/isolate-inl.h"
25 #include "src/log.h" 26 #include "src/log.h"
26 #include "src/lookup.h" 27 #include "src/lookup.h"
27 #include "src/macro-assembler.h" 28 #include "src/macro-assembler.h"
28 #include "src/mark-compact.h"
29 #include "src/objects-inl.h" 29 #include "src/objects-inl.h"
30 #include "src/objects-visiting-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"
(...skipping 17012 matching lines...) Expand 10 before | Expand all | Expand 10 after
17051 #define ERROR_MESSAGES_TEXTS(C, T) T, 17051 #define ERROR_MESSAGES_TEXTS(C, T) T,
17052 static const char* error_messages_[] = { 17052 static const char* error_messages_[] = {
17053 ERROR_MESSAGES_LIST(ERROR_MESSAGES_TEXTS) 17053 ERROR_MESSAGES_LIST(ERROR_MESSAGES_TEXTS)
17054 }; 17054 };
17055 #undef ERROR_MESSAGES_TEXTS 17055 #undef ERROR_MESSAGES_TEXTS
17056 return error_messages_[reason]; 17056 return error_messages_[reason];
17057 } 17057 }
17058 17058
17059 17059
17060 } } // namespace v8::internal 17060 } } // namespace v8::internal
OLDNEW
« no previous file with comments | « src/messages.cc ('k') | src/objects-inl.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698