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

Side by Side Diff: src/objects.cc

Issue 2784793002: [builtins] Extract builtin definitions (Closed)
Patch Set: Fixes Created 3 years, 8 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/objects.h ('k') | src/v8.gyp » ('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 2015 the V8 project authors. All rights reserved. 1 // Copyright 2015 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/objects.h" 5 #include "src/objects.h"
6 6
7 #include <cmath> 7 #include <cmath>
8 #include <iomanip> 8 #include <iomanip>
9 #include <memory> 9 #include <memory>
10 #include <sstream> 10 #include <sstream>
11 #include <unordered_map> 11 #include <unordered_map>
12 #include <unordered_set> 12 #include <unordered_set>
13 13
14 #include "src/objects-inl.h" 14 #include "src/objects-inl.h"
15 15
16 #include "src/accessors.h" 16 #include "src/accessors.h"
17 #include "src/allocation-site-scopes.h" 17 #include "src/allocation-site-scopes.h"
18 #include "src/api-arguments-inl.h" 18 #include "src/api-arguments-inl.h"
19 #include "src/api-natives.h" 19 #include "src/api-natives.h"
20 #include "src/api.h" 20 #include "src/api.h"
21 #include "src/arguments.h" 21 #include "src/arguments.h"
22 #include "src/base/bits.h" 22 #include "src/base/bits.h"
23 #include "src/base/utils/random-number-generator.h" 23 #include "src/base/utils/random-number-generator.h"
24 #include "src/bootstrapper.h" 24 #include "src/bootstrapper.h"
25 #include "src/builtins/builtins.h"
25 #include "src/code-stubs.h" 26 #include "src/code-stubs.h"
26 #include "src/codegen.h" 27 #include "src/codegen.h"
27 #include "src/compilation-dependencies.h" 28 #include "src/compilation-dependencies.h"
28 #include "src/compiler.h" 29 #include "src/compiler.h"
29 #include "src/counters-inl.h" 30 #include "src/counters-inl.h"
30 #include "src/counters.h" 31 #include "src/counters.h"
31 #include "src/date.h" 32 #include "src/date.h"
32 #include "src/debug/debug-evaluate.h" 33 #include "src/debug/debug-evaluate.h"
33 #include "src/debug/debug.h" 34 #include "src/debug/debug.h"
34 #include "src/deoptimizer.h" 35 #include "src/deoptimizer.h"
(...skipping 20306 matching lines...) Expand 10 before | Expand all | Expand 10 after
20341 // depend on this. 20342 // depend on this.
20342 return DICTIONARY_ELEMENTS; 20343 return DICTIONARY_ELEMENTS;
20343 } 20344 }
20344 DCHECK_LE(kind, LAST_ELEMENTS_KIND); 20345 DCHECK_LE(kind, LAST_ELEMENTS_KIND);
20345 return kind; 20346 return kind;
20346 } 20347 }
20347 } 20348 }
20348 20349
20349 } // namespace internal 20350 } // namespace internal
20350 } // namespace v8 20351 } // namespace v8
OLDNEW
« no previous file with comments | « src/objects.h ('k') | src/v8.gyp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698