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

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: Merge with 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 39 matching lines...) Expand 10 before | Expand all | Expand 10 after
50 #include "src/compiler/scheduler.h" 50 #include "src/compiler/scheduler.h"
51 #include "src/compiler/select-lowering.h" 51 #include "src/compiler/select-lowering.h"
52 #include "src/compiler/simplified-lowering.h" 52 #include "src/compiler/simplified-lowering.h"
53 #include "src/compiler/simplified-operator-reducer.h" 53 #include "src/compiler/simplified-operator-reducer.h"
54 #include "src/compiler/tail-call-optimization.h" 54 #include "src/compiler/tail-call-optimization.h"
55 #include "src/compiler/typer.h" 55 #include "src/compiler/typer.h"
56 #include "src/compiler/value-numbering-reducer.h" 56 #include "src/compiler/value-numbering-reducer.h"
57 #include "src/compiler/verifier.h" 57 #include "src/compiler/verifier.h"
58 #include "src/compiler/zone-pool.h" 58 #include "src/compiler/zone-pool.h"
59 #include "src/ostreams.h" 59 #include "src/ostreams.h"
60 #include "src/register-configuration.h"
60 #include "src/type-info.h" 61 #include "src/type-info.h"
61 #include "src/utils.h" 62 #include "src/utils.h"
62 63
63 namespace v8 { 64 namespace v8 {
64 namespace internal { 65 namespace internal {
65 namespace compiler { 66 namespace compiler {
66 67
67 class PipelineData { 68 class PipelineData {
68 public: 69 public:
69 // For main entry point. 70 // For main entry point.
(...skipping 1339 matching lines...) Expand 10 before | Expand all | Expand 10 after
1409 tcf << AsC1VRegisterAllocationData("CodeGen", 1410 tcf << AsC1VRegisterAllocationData("CodeGen",
1410 data->register_allocation_data()); 1411 data->register_allocation_data());
1411 } 1412 }
1412 1413
1413 data->DeleteRegisterAllocationZone(); 1414 data->DeleteRegisterAllocationZone();
1414 } 1415 }
1415 1416
1416 } // namespace compiler 1417 } // namespace compiler
1417 } // namespace internal 1418 } // namespace internal
1418 } // namespace v8 1419 } // namespace v8
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698