Many resources are needed to download a project. Please understand that we have to compensate our server costs. Thank you in advance. Project price only 1 $
You can buy this project and download/modify it how often you want.
/*
* Copyright (c) 2021, 2021, Oracle and/or its affiliates. All rights reserved.
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
*
* This code is free software; you can redistribute it and/or modify it
* under the terms of the GNU General Public License version 2 only, as
* published by the Free Software Foundation. Oracle designates this
* particular file as subject to the "Classpath" exception as provided
* by Oracle in the LICENSE file that accompanied this code.
*
* This code is distributed in the hope that it will be useful, but WITHOUT
* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
* FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
* version 2 for more details (a copy is included in the LICENSE file that
* accompanied this code).
*
* You should have received a copy of the GNU General Public License version
* 2 along with this work; if not, write to the Free Software Foundation,
* Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
*
* Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
* or visit www.oracle.com if you need additional information or have any
* questions.
*/
package com.oracle.svm.truffle.api;
import static com.oracle.svm.core.graal.snippets.SubstrateAllocationSnippets.GC_LOCATIONS;
import static jdk.graal.compiler.replacements.SnippetTemplate.DEFAULT_REPLACER;
import java.util.Arrays;
import java.util.Map;
import jdk.graal.compiler.api.replacements.Snippet;
import jdk.graal.compiler.core.common.spi.ForeignCallDescriptor;
import jdk.graal.compiler.graph.Node;
import jdk.graal.compiler.graph.Node.ConstantNodeParameter;
import jdk.graal.compiler.graph.Node.NodeIntrinsic;
import jdk.graal.compiler.nodes.StructuredGraph;
import jdk.graal.compiler.nodes.extended.BranchProbabilityNode;
import jdk.graal.compiler.nodes.extended.ForeignCallNode;
import jdk.graal.compiler.nodes.spi.LoweringTool;
import jdk.graal.compiler.options.OptionValues;
import jdk.graal.compiler.phases.util.Providers;
import jdk.graal.compiler.replacements.SnippetTemplate;
import jdk.graal.compiler.replacements.SnippetTemplate.Arguments;
import jdk.graal.compiler.replacements.SnippetTemplate.SnippetInfo;
import jdk.graal.compiler.replacements.Snippets;
import jdk.graal.compiler.truffle.nodes.TruffleSafepointNode;
import org.graalvm.word.LocationIdentity;
import com.oracle.svm.core.graal.snippets.NodeLoweringProvider;
import com.oracle.svm.core.graal.snippets.SubstrateTemplates;
public final class SubstrateThreadLocalHandshakeSnippets extends SubstrateTemplates implements Snippets {
@Snippet
private static void pollSnippet(Object node) {
if (BranchProbabilityNode.probability(BranchProbabilityNode.VERY_SLOW_PATH_PROBABILITY,
SubstrateThreadLocalHandshake.PENDING.get() != 0)) {
foreignPoll(SubstrateThreadLocalHandshake.FOREIGN_POLL, node);
}
}
@NodeIntrinsic(value = ForeignCallNode.class)
private static native void foreignPoll(@ConstantNodeParameter ForeignCallDescriptor descriptor, Object location);
private final SnippetInfo pollSnippet;
public SubstrateThreadLocalHandshakeSnippets(OptionValues options, Providers providers,
Map, NodeLoweringProvider>> lowerings) {
super(options, providers);
this.pollSnippet = snippet(providers,
SubstrateThreadLocalHandshakeSnippets.class,
"pollSnippet",
getPollKilledLocations());
lowerings.put(TruffleSafepointNode.class, new SafepointLowering());
}
private static LocationIdentity[] getPollKilledLocations() {
int newLength = GC_LOCATIONS.length + 1;
LocationIdentity[] locations = Arrays.copyOf(GC_LOCATIONS, newLength);
locations[newLength - 1] = SubstrateThreadLocalHandshake.PENDING.getLocationIdentity();
return locations;
}
class SafepointLowering implements NodeLoweringProvider {
@Override
public void lower(TruffleSafepointNode node, LoweringTool tool) {
if (tool.getLoweringStage() == LoweringTool.StandardLoweringStage.LOW_TIER) {
StructuredGraph graph = node.graph();
Arguments args = new Arguments(pollSnippet, graph.getGuardsStage(), tool.getLoweringStage());
args.add("node", node.location());
SnippetTemplate template = template(tool, node, args);
template.instantiate(tool.getMetaAccess(), node, DEFAULT_REPLACER, args);
}
}
}
}