annotate graal/com.oracle.graal.phases/src/com/oracle/graal/phases/tiers/HighTierContext.java @ 12045:0fc653a9e019

made GraalCodeCacheProvider independent of CodeCacheProvider and renamed the former to LoweringProvider (GRAAL-511)
author Doug Simon <doug.simon@oracle.com>
date Thu, 10 Oct 2013 20:50:54 +0200
parents 23ccaa863eda
children 0afe7370260c
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
9001
94583d9eead8 HighTier phase suite.
Roland Schatz <roland.schatz@oracle.com>
parents:
diff changeset
1 /*
94583d9eead8 HighTier phase suite.
Roland Schatz <roland.schatz@oracle.com>
parents:
diff changeset
2 * Copyright (c) 2013, Oracle and/or its affiliates. All rights reserved.
94583d9eead8 HighTier phase suite.
Roland Schatz <roland.schatz@oracle.com>
parents:
diff changeset
3 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
94583d9eead8 HighTier phase suite.
Roland Schatz <roland.schatz@oracle.com>
parents:
diff changeset
4 *
94583d9eead8 HighTier phase suite.
Roland Schatz <roland.schatz@oracle.com>
parents:
diff changeset
5 * This code is free software; you can redistribute it and/or modify it
94583d9eead8 HighTier phase suite.
Roland Schatz <roland.schatz@oracle.com>
parents:
diff changeset
6 * under the terms of the GNU General Public License version 2 only, as
94583d9eead8 HighTier phase suite.
Roland Schatz <roland.schatz@oracle.com>
parents:
diff changeset
7 * published by the Free Software Foundation.
94583d9eead8 HighTier phase suite.
Roland Schatz <roland.schatz@oracle.com>
parents:
diff changeset
8 *
94583d9eead8 HighTier phase suite.
Roland Schatz <roland.schatz@oracle.com>
parents:
diff changeset
9 * This code is distributed in the hope that it will be useful, but WITHOUT
94583d9eead8 HighTier phase suite.
Roland Schatz <roland.schatz@oracle.com>
parents:
diff changeset
10 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
94583d9eead8 HighTier phase suite.
Roland Schatz <roland.schatz@oracle.com>
parents:
diff changeset
11 * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
94583d9eead8 HighTier phase suite.
Roland Schatz <roland.schatz@oracle.com>
parents:
diff changeset
12 * version 2 for more details (a copy is included in the LICENSE file that
94583d9eead8 HighTier phase suite.
Roland Schatz <roland.schatz@oracle.com>
parents:
diff changeset
13 * accompanied this code).
94583d9eead8 HighTier phase suite.
Roland Schatz <roland.schatz@oracle.com>
parents:
diff changeset
14 *
94583d9eead8 HighTier phase suite.
Roland Schatz <roland.schatz@oracle.com>
parents:
diff changeset
15 * You should have received a copy of the GNU General Public License version
94583d9eead8 HighTier phase suite.
Roland Schatz <roland.schatz@oracle.com>
parents:
diff changeset
16 * 2 along with this work; if not, write to the Free Software Foundation,
94583d9eead8 HighTier phase suite.
Roland Schatz <roland.schatz@oracle.com>
parents:
diff changeset
17 * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
94583d9eead8 HighTier phase suite.
Roland Schatz <roland.schatz@oracle.com>
parents:
diff changeset
18 *
94583d9eead8 HighTier phase suite.
Roland Schatz <roland.schatz@oracle.com>
parents:
diff changeset
19 * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
94583d9eead8 HighTier phase suite.
Roland Schatz <roland.schatz@oracle.com>
parents:
diff changeset
20 * or visit www.oracle.com if you need additional information or have any
94583d9eead8 HighTier phase suite.
Roland Schatz <roland.schatz@oracle.com>
parents:
diff changeset
21 * questions.
94583d9eead8 HighTier phase suite.
Roland Schatz <roland.schatz@oracle.com>
parents:
diff changeset
22 */
94583d9eead8 HighTier phase suite.
Roland Schatz <roland.schatz@oracle.com>
parents:
diff changeset
23 package com.oracle.graal.phases.tiers;
94583d9eead8 HighTier phase suite.
Roland Schatz <roland.schatz@oracle.com>
parents:
diff changeset
24
94583d9eead8 HighTier phase suite.
Roland Schatz <roland.schatz@oracle.com>
parents:
diff changeset
25 import com.oracle.graal.api.code.*;
94583d9eead8 HighTier phase suite.
Roland Schatz <roland.schatz@oracle.com>
parents:
diff changeset
26 import com.oracle.graal.api.meta.*;
9265
bff0abdbc8b6 Restructure phase context hierarchy.
Roland Schatz <roland.schatz@oracle.com>
parents: 9048
diff changeset
27 import com.oracle.graal.nodes.spi.*;
10931
a9db73ccb7b9 Add more fields to HighTierContext.
Roland Schatz <roland.schatz@oracle.com>
parents: 9916
diff changeset
28 import com.oracle.graal.phases.*;
9001
94583d9eead8 HighTier phase suite.
Roland Schatz <roland.schatz@oracle.com>
parents:
diff changeset
29
9048
5ca15f09106c Base class for phase context.
Roland Schatz <roland.schatz@oracle.com>
parents: 9001
diff changeset
30 public class HighTierContext extends PhaseContext {
9001
94583d9eead8 HighTier phase suite.
Roland Schatz <roland.schatz@oracle.com>
parents:
diff changeset
31
10931
a9db73ccb7b9 Add more fields to HighTierContext.
Roland Schatz <roland.schatz@oracle.com>
parents: 9916
diff changeset
32 private final PhasePlan plan;
a9db73ccb7b9 Add more fields to HighTierContext.
Roland Schatz <roland.schatz@oracle.com>
parents: 9916
diff changeset
33
a9db73ccb7b9 Add more fields to HighTierContext.
Roland Schatz <roland.schatz@oracle.com>
parents: 9916
diff changeset
34 private final GraphCache cache;
a9db73ccb7b9 Add more fields to HighTierContext.
Roland Schatz <roland.schatz@oracle.com>
parents: 9916
diff changeset
35 private final OptimisticOptimizations optimisticOpts;
a9db73ccb7b9 Add more fields to HighTierContext.
Roland Schatz <roland.schatz@oracle.com>
parents: 9916
diff changeset
36
12045
0fc653a9e019 made GraalCodeCacheProvider independent of CodeCacheProvider and renamed the former to LoweringProvider (GRAAL-511)
Doug Simon <doug.simon@oracle.com>
parents: 11959
diff changeset
37 public HighTierContext(MetaAccessProvider metaAccess, CodeCacheProvider codeCache, LoweringProvider lowerer, Assumptions assumptions, Replacements replacements, GraphCache cache, PhasePlan plan,
11959
23ccaa863eda made CodeCacheProvider independent of MetaAccessProvider (GRAAL-511)
Doug Simon <doug.simon@oracle.com>
parents: 11567
diff changeset
38 OptimisticOptimizations optimisticOpts) {
12045
0fc653a9e019 made GraalCodeCacheProvider independent of CodeCacheProvider and renamed the former to LoweringProvider (GRAAL-511)
Doug Simon <doug.simon@oracle.com>
parents: 11959
diff changeset
39 super(metaAccess, codeCache, lowerer, assumptions, replacements);
10931
a9db73ccb7b9 Add more fields to HighTierContext.
Roland Schatz <roland.schatz@oracle.com>
parents: 9916
diff changeset
40 this.plan = plan;
a9db73ccb7b9 Add more fields to HighTierContext.
Roland Schatz <roland.schatz@oracle.com>
parents: 9916
diff changeset
41 this.cache = cache;
a9db73ccb7b9 Add more fields to HighTierContext.
Roland Schatz <roland.schatz@oracle.com>
parents: 9916
diff changeset
42 this.optimisticOpts = optimisticOpts;
a9db73ccb7b9 Add more fields to HighTierContext.
Roland Schatz <roland.schatz@oracle.com>
parents: 9916
diff changeset
43 }
a9db73ccb7b9 Add more fields to HighTierContext.
Roland Schatz <roland.schatz@oracle.com>
parents: 9916
diff changeset
44
a9db73ccb7b9 Add more fields to HighTierContext.
Roland Schatz <roland.schatz@oracle.com>
parents: 9916
diff changeset
45 public PhasePlan getPhasePlan() {
a9db73ccb7b9 Add more fields to HighTierContext.
Roland Schatz <roland.schatz@oracle.com>
parents: 9916
diff changeset
46 return plan;
a9db73ccb7b9 Add more fields to HighTierContext.
Roland Schatz <roland.schatz@oracle.com>
parents: 9916
diff changeset
47 }
a9db73ccb7b9 Add more fields to HighTierContext.
Roland Schatz <roland.schatz@oracle.com>
parents: 9916
diff changeset
48
a9db73ccb7b9 Add more fields to HighTierContext.
Roland Schatz <roland.schatz@oracle.com>
parents: 9916
diff changeset
49 public GraphCache getGraphCache() {
a9db73ccb7b9 Add more fields to HighTierContext.
Roland Schatz <roland.schatz@oracle.com>
parents: 9916
diff changeset
50 return cache;
a9db73ccb7b9 Add more fields to HighTierContext.
Roland Schatz <roland.schatz@oracle.com>
parents: 9916
diff changeset
51 }
a9db73ccb7b9 Add more fields to HighTierContext.
Roland Schatz <roland.schatz@oracle.com>
parents: 9916
diff changeset
52
a9db73ccb7b9 Add more fields to HighTierContext.
Roland Schatz <roland.schatz@oracle.com>
parents: 9916
diff changeset
53 public OptimisticOptimizations getOptimisticOptimizations() {
a9db73ccb7b9 Add more fields to HighTierContext.
Roland Schatz <roland.schatz@oracle.com>
parents: 9916
diff changeset
54 return optimisticOpts;
9001
94583d9eead8 HighTier phase suite.
Roland Schatz <roland.schatz@oracle.com>
parents:
diff changeset
55 }
11567
c69df2e602f4 Use CanonicalizerPhase.applyIncremental in InliningPhase.
Roland Schatz <roland.schatz@oracle.com>
parents: 10931
diff changeset
56
c69df2e602f4 Use CanonicalizerPhase.applyIncremental in InliningPhase.
Roland Schatz <roland.schatz@oracle.com>
parents: 10931
diff changeset
57 public HighTierContext replaceAssumptions(Assumptions newAssumptions) {
12045
0fc653a9e019 made GraalCodeCacheProvider independent of CodeCacheProvider and renamed the former to LoweringProvider (GRAAL-511)
Doug Simon <doug.simon@oracle.com>
parents: 11959
diff changeset
58 return new HighTierContext(getMetaAccess(), getCodeCache(), getLowerer(), newAssumptions, getReplacements(), getGraphCache(), getPhasePlan(), getOptimisticOptimizations());
11567
c69df2e602f4 Use CanonicalizerPhase.applyIncremental in InliningPhase.
Roland Schatz <roland.schatz@oracle.com>
parents: 10931
diff changeset
59 }
9001
94583d9eead8 HighTier phase suite.
Roland Schatz <roland.schatz@oracle.com>
parents:
diff changeset
60 }