annotate graal/com.oracle.graal.replacements.amd64/src/com/oracle/graal/replacements/amd64/AMD64Substitutions.java @ 20001:0e7bb9cced6b

ignore forced MethodSubstitutions during graph builder inlining (it breaks economy compiler configuration)
author Doug Simon <doug.simon@oracle.com>
date Mon, 23 Mar 2015 14:18:32 +0100
parents 3f63ea587d2b
children
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
13541
63bb635911ab String.equals method substitution
twisti
parents:
diff changeset
1 /*
13973
faa6fda7ee36 added Arrays.equals substitutions
twisti
parents: 13541
diff changeset
2 * Copyright (c) 2013, 2014, Oracle and/or its affiliates. All rights reserved.
13541
63bb635911ab String.equals method substitution
twisti
parents:
diff changeset
3 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
63bb635911ab String.equals method substitution
twisti
parents:
diff changeset
4 *
63bb635911ab String.equals method substitution
twisti
parents:
diff changeset
5 * This code is free software; you can redistribute it and/or modify it
63bb635911ab String.equals method substitution
twisti
parents:
diff changeset
6 * under the terms of the GNU General Public License version 2 only, as
63bb635911ab String.equals method substitution
twisti
parents:
diff changeset
7 * published by the Free Software Foundation.
63bb635911ab String.equals method substitution
twisti
parents:
diff changeset
8 *
63bb635911ab String.equals method substitution
twisti
parents:
diff changeset
9 * This code is distributed in the hope that it will be useful, but WITHOUT
63bb635911ab String.equals method substitution
twisti
parents:
diff changeset
10 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
63bb635911ab String.equals method substitution
twisti
parents:
diff changeset
11 * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
63bb635911ab String.equals method substitution
twisti
parents:
diff changeset
12 * version 2 for more details (a copy is included in the LICENSE file that
63bb635911ab String.equals method substitution
twisti
parents:
diff changeset
13 * accompanied this code).
63bb635911ab String.equals method substitution
twisti
parents:
diff changeset
14 *
63bb635911ab String.equals method substitution
twisti
parents:
diff changeset
15 * You should have received a copy of the GNU General Public License version
63bb635911ab String.equals method substitution
twisti
parents:
diff changeset
16 * 2 along with this work; if not, write to the Free Software Foundation,
63bb635911ab String.equals method substitution
twisti
parents:
diff changeset
17 * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
63bb635911ab String.equals method substitution
twisti
parents:
diff changeset
18 *
63bb635911ab String.equals method substitution
twisti
parents:
diff changeset
19 * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
63bb635911ab String.equals method substitution
twisti
parents:
diff changeset
20 * or visit www.oracle.com if you need additional information or have any
63bb635911ab String.equals method substitution
twisti
parents:
diff changeset
21 * questions.
63bb635911ab String.equals method substitution
twisti
parents:
diff changeset
22 */
63bb635911ab String.equals method substitution
twisti
parents:
diff changeset
23
63bb635911ab String.equals method substitution
twisti
parents:
diff changeset
24 package com.oracle.graal.replacements.amd64;
63bb635911ab String.equals method substitution
twisti
parents:
diff changeset
25
15259
d90e5c22ba55 Move GraalOptions to graal.compiler.common.
Josef Eisl <josef.eisl@jku.at>
parents: 13973
diff changeset
26 import static com.oracle.graal.compiler.common.GraalOptions.*;
13541
63bb635911ab String.equals method substitution
twisti
parents:
diff changeset
27
18498
a65cbe5432dd only register AMD64Substitutions if the target architecture is AMD64
Doug Simon <doug.simon@oracle.com>
parents: 18495
diff changeset
28 import com.oracle.graal.amd64.*;
13541
63bb635911ab String.equals method substitution
twisti
parents:
diff changeset
29 import com.oracle.graal.api.code.*;
63bb635911ab String.equals method substitution
twisti
parents:
diff changeset
30 import com.oracle.graal.api.meta.*;
15357
89db561851d1 Add SnippetReflectionProvider to ReplacementsProvider interface.
Roland Schatz <roland.schatz@oracle.com>
parents: 13973
diff changeset
31 import com.oracle.graal.api.replacements.*;
13541
63bb635911ab String.equals method substitution
twisti
parents:
diff changeset
32 import com.oracle.graal.api.runtime.*;
63bb635911ab String.equals method substitution
twisti
parents:
diff changeset
33 import com.oracle.graal.nodes.spi.*;
63bb635911ab String.equals method substitution
twisti
parents:
diff changeset
34
63bb635911ab String.equals method substitution
twisti
parents:
diff changeset
35 /**
63bb635911ab String.equals method substitution
twisti
parents:
diff changeset
36 * Method substitutions that are VM-independent but AMD64-dependent.
63bb635911ab String.equals method substitution
twisti
parents:
diff changeset
37 */
63bb635911ab String.equals method substitution
twisti
parents:
diff changeset
38 @ServiceProvider(ReplacementsProvider.class)
63bb635911ab String.equals method substitution
twisti
parents:
diff changeset
39 public class AMD64Substitutions implements ReplacementsProvider {
63bb635911ab String.equals method substitution
twisti
parents:
diff changeset
40
15357
89db561851d1 Add SnippetReflectionProvider to ReplacementsProvider interface.
Roland Schatz <roland.schatz@oracle.com>
parents: 13973
diff changeset
41 public void registerReplacements(MetaAccessProvider metaAccess, LoweringProvider lowerer, SnippetReflectionProvider snippetReflection, Replacements replacements, TargetDescription target) {
18498
a65cbe5432dd only register AMD64Substitutions if the target architecture is AMD64
Doug Simon <doug.simon@oracle.com>
parents: 18495
diff changeset
42 if (Intrinsify.getValue() && target.arch instanceof AMD64) {
18495
fe0db662e982 adds ability for substitution guards to have a constructor with an Architecture argument
Doug Simon <doug.simon@oracle.com>
parents: 15942
diff changeset
43 replacements.registerSubstitutions(Integer.class, AMD64IntegerSubstitutions.class);
fe0db662e982 adds ability for substitution guards to have a constructor with an Architecture argument
Doug Simon <doug.simon@oracle.com>
parents: 15942
diff changeset
44 replacements.registerSubstitutions(Long.class, AMD64LongSubstitutions.class);
13541
63bb635911ab String.equals method substitution
twisti
parents:
diff changeset
45 }
63bb635911ab String.equals method substitution
twisti
parents:
diff changeset
46 }
63bb635911ab String.equals method substitution
twisti
parents:
diff changeset
47
63bb635911ab String.equals method substitution
twisti
parents:
diff changeset
48 }