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

Side by Side Diff: src/compiler/pipeline.cc

Issue 1287383003: Re-reland: Remove register index/code indirection (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: Updated to ToT Created 5 years, 3 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
OLDNEW
1 // Copyright 2014 the V8 project authors. All rights reserved. 1 // Copyright 2014 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/pipeline.h" 5 #include "src/compiler/pipeline.h"
6 6
7 #include <fstream> // NOLINT(readability/streams) 7 #include <fstream> // NOLINT(readability/streams)
8 #include <sstream> 8 #include <sstream>
9 9
10 #include "src/base/adapters.h" 10 #include "src/base/adapters.h"
(...skipping 38 matching lines...) Expand 10 before | Expand all | Expand 10 after
49 #include "src/compiler/scheduler.h" 49 #include "src/compiler/scheduler.h"
50 #include "src/compiler/select-lowering.h" 50 #include "src/compiler/select-lowering.h"
51 #include "src/compiler/simplified-lowering.h" 51 #include "src/compiler/simplified-lowering.h"
52 #include "src/compiler/simplified-operator-reducer.h" 52 #include "src/compiler/simplified-operator-reducer.h"
53 #include "src/compiler/tail-call-optimization.h" 53 #include "src/compiler/tail-call-optimization.h"
54 #include "src/compiler/typer.h" 54 #include "src/compiler/typer.h"
55 #include "src/compiler/value-numbering-reducer.h" 55 #include "src/compiler/value-numbering-reducer.h"
56 #include "src/compiler/verifier.h" 56 #include "src/compiler/verifier.h"
57 #include "src/compiler/zone-pool.h" 57 #include "src/compiler/zone-pool.h"
58 #include "src/ostreams.h" 58 #include "src/ostreams.h"
59 #include "src/register-configuration.h"
59 #include "src/type-info.h" 60 #include "src/type-info.h"
60 #include "src/utils.h" 61 #include "src/utils.h"
61 62
62 namespace v8 { 63 namespace v8 {
63 namespace internal { 64 namespace internal {
64 namespace compiler { 65 namespace compiler {
65 66
66 class PipelineData { 67 class PipelineData {
67 public: 68 public:
68 // For main entry point. 69 // For main entry point.
(...skipping 1329 matching lines...) Expand 10 before | Expand all | Expand 10 after
1398 tcf << AsC1VRegisterAllocationData("CodeGen", 1399 tcf << AsC1VRegisterAllocationData("CodeGen",
1399 data->register_allocation_data()); 1400 data->register_allocation_data());
1400 } 1401 }
1401 1402
1402 data->DeleteRegisterAllocationZone(); 1403 data->DeleteRegisterAllocationZone();
1403 } 1404 }
1404 1405
1405 } // namespace compiler 1406 } // namespace compiler
1406 } // namespace internal 1407 } // namespace internal
1407 } // namespace v8 1408 } // namespace v8
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698