Skip to content
Snippets Groups Projects
Commit d58971d4 authored by Lukas Stadler's avatar Lukas Stadler
Browse files

pass shape to Location.get

parent fab604d3
No related branches found
No related tags found
No related merge requests found
/*
* Copyright (c) 2016, Oracle and/or its affiliates. All rights reserved.
* Copyright (c) 2016, 2017, 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
......@@ -35,5 +35,4 @@ public abstract class FixedAttributeAccessNode extends AttributeAccessNode {
assert name.intern() == name;
this.name = name;
}
}
/*
* Copyright (c) 2016, Oracle and/or its affiliates. All rights reserved.
* Copyright (c) 2016, 2017, 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
......@@ -57,12 +57,11 @@ public abstract class GetAttributeNode extends AttributeAccessNode {
@Specialization(limit = "3", //
guards = {"cachedName.equals(name)", "shapeCheck(shape, attrs)"}, //
assumptions = {"shape.getValidAssumption()"})
@SuppressWarnings("unused")
protected Object getAttrCached(DynamicObject attrs, String name,
@Cached("name") String cachedName,
protected Object getAttrCached(DynamicObject attrs, @SuppressWarnings("unused") String name,
@SuppressWarnings("unused") @Cached("name") String cachedName,
@Cached("lookupShape(attrs)") Shape shape,
@Cached("lookupLocation(shape, name)") Location location) {
return location == null ? null : location.get(attrs);
return location == null ? null : location.get(attrs, shape);
}
@TruffleBoundary
......@@ -96,5 +95,4 @@ public abstract class GetAttributeNode extends AttributeAccessNode {
return recursive.execute(attributes, name);
}
}
/*
* Copyright (c) 2016, Oracle and/or its affiliates. All rights reserved.
* Copyright (c) 2016, 2017, 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
......@@ -81,11 +81,10 @@ public abstract class GetFixedAttributeNode extends FixedAttributeAccessNode {
@Specialization(limit = "3", //
guards = {"shapeCheck(shape, attrs)"}, //
assumptions = {"shape.getValidAssumption()"})
@SuppressWarnings("unused")
protected Object getAttrCached(DynamicObject attrs,
@Cached("lookupShape(attrs)") Shape shape,
@Cached("lookupLocation(shape, name)") Location location) {
return location == null ? null : location.get(attrs);
return location == null ? null : location.get(attrs, shape);
}
@Specialization(contains = "getAttrCached")
......@@ -119,5 +118,4 @@ public abstract class GetFixedAttributeNode extends FixedAttributeAccessNode {
return recursive.execute(attributes);
}
}
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment