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

Side by Side Diff: src/compiler/wasm-compiler.cc

Issue 2401173002: Version 5.6.1.1 (cherry-pick) (Closed)
Patch Set: Created 4 years, 2 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/compiler/scheduler.h ('k') | src/compiler/zone-pool.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 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/compiler/wasm-compiler.h" 5 #include "src/compiler/wasm-compiler.h"
6 6
7 #include <memory> 7 #include <memory>
8 8
9 #include "src/isolate-inl.h" 9 #include "src/isolate-inl.h"
10 10
11 #include "src/base/platform/elapsed-timer.h" 11 #include "src/base/platform/elapsed-timer.h"
12 #include "src/base/platform/platform.h" 12 #include "src/base/platform/platform.h"
13 13
14 #include "src/compiler/access-builder.h" 14 #include "src/compiler/access-builder.h"
15 #include "src/compiler/common-operator.h" 15 #include "src/compiler/common-operator.h"
16 #include "src/compiler/diamond.h" 16 #include "src/compiler/diamond.h"
17 #include "src/compiler/graph-visualizer.h" 17 #include "src/compiler/graph-visualizer.h"
18 #include "src/compiler/graph.h" 18 #include "src/compiler/graph.h"
19 #include "src/compiler/instruction-selector.h" 19 #include "src/compiler/instruction-selector.h"
20 #include "src/compiler/int64-lowering.h" 20 #include "src/compiler/int64-lowering.h"
21 #include "src/compiler/js-graph.h" 21 #include "src/compiler/js-graph.h"
22 #include "src/compiler/js-operator.h" 22 #include "src/compiler/js-operator.h"
23 #include "src/compiler/linkage.h" 23 #include "src/compiler/linkage.h"
24 #include "src/compiler/machine-operator.h" 24 #include "src/compiler/machine-operator.h"
25 #include "src/compiler/node-matchers.h" 25 #include "src/compiler/node-matchers.h"
26 #include "src/compiler/pipeline.h" 26 #include "src/compiler/pipeline.h"
27 #include "src/compiler/source-position.h" 27 #include "src/compiler/source-position.h"
28 #include "src/compiler/zone-stats.h" 28 #include "src/compiler/zone-pool.h"
29 29
30 #include "src/code-factory.h" 30 #include "src/code-factory.h"
31 #include "src/code-stubs.h" 31 #include "src/code-stubs.h"
32 #include "src/factory.h" 32 #include "src/factory.h"
33 #include "src/log-inl.h" 33 #include "src/log-inl.h"
34 34
35 #include "src/wasm/ast-decoder.h" 35 #include "src/wasm/ast-decoder.h"
36 #include "src/wasm/wasm-module.h" 36 #include "src/wasm/wasm-module.h"
37 #include "src/wasm/wasm-opcodes.h" 37 #include "src/wasm/wasm-opcodes.h"
38 38
(...skipping 3363 matching lines...) Expand 10 before | Expand all | Expand 10 after
3402 function_->code_start_offset), 3402 function_->code_start_offset),
3403 compile_ms); 3403 compile_ms);
3404 } 3404 }
3405 3405
3406 return code; 3406 return code;
3407 } 3407 }
3408 3408
3409 } // namespace compiler 3409 } // namespace compiler
3410 } // namespace internal 3410 } // namespace internal
3411 } // namespace v8 3411 } // namespace v8
OLDNEW
« no previous file with comments | « src/compiler/scheduler.h ('k') | src/compiler/zone-pool.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698