annotate truffle/com.oracle.truffle.sl/src/com/oracle/truffle/sl/nodes/access/SLReadPropertyCacheNode.java @ 22157:dc83cc1f94f2

Using fully qualified imports
author Jaroslav Tulach <jaroslav.tulach@oracle.com>
date Wed, 16 Sep 2015 11:33:22 +0200
parents 503529c65456
children 15c9dda91e50
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
18412
997bc9764a9a SL: use the truffle object storage model to represent SL objects
Andreas Woess <andreas.woess@jku.at>
parents:
diff changeset
1 /*
20954
73211b2c7c7a SL: use DSL for property reads.
Christian Humer <christian.humer@gmail.com>
parents: 18764
diff changeset
2 * Copyright (c) 2013, 2015, Oracle and/or its affiliates. All rights reserved.
18412
997bc9764a9a SL: use the truffle object storage model to represent SL objects
Andreas Woess <andreas.woess@jku.at>
parents:
diff changeset
3 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
997bc9764a9a SL: use the truffle object storage model to represent SL objects
Andreas Woess <andreas.woess@jku.at>
parents:
diff changeset
4 *
21997
c07e64ecb528 Update SL copyright headers to use UPL
Gilles Duboscq <gilles.m.duboscq@oracle.com>
parents: 21951
diff changeset
5 * The Universal Permissive License (UPL), Version 1.0
22065
503529c65456 Remove trailing whitespace from UPL license
Tom Rodriguez <tom.rodriguez@oracle.com>
parents: 22003
diff changeset
6 *
21997
c07e64ecb528 Update SL copyright headers to use UPL
Gilles Duboscq <gilles.m.duboscq@oracle.com>
parents: 21951
diff changeset
7 * Subject to the condition set forth below, permission is hereby granted to any
c07e64ecb528 Update SL copyright headers to use UPL
Gilles Duboscq <gilles.m.duboscq@oracle.com>
parents: 21951
diff changeset
8 * person obtaining a copy of this software, associated documentation and/or
c07e64ecb528 Update SL copyright headers to use UPL
Gilles Duboscq <gilles.m.duboscq@oracle.com>
parents: 21951
diff changeset
9 * data (collectively the "Software"), free of charge and under any and all
c07e64ecb528 Update SL copyright headers to use UPL
Gilles Duboscq <gilles.m.duboscq@oracle.com>
parents: 21951
diff changeset
10 * copyright rights in the Software, and any and all patent rights owned or
c07e64ecb528 Update SL copyright headers to use UPL
Gilles Duboscq <gilles.m.duboscq@oracle.com>
parents: 21951
diff changeset
11 * freely licensable by each licensor hereunder covering either (i) the
c07e64ecb528 Update SL copyright headers to use UPL
Gilles Duboscq <gilles.m.duboscq@oracle.com>
parents: 21951
diff changeset
12 * unmodified Software as contributed to or provided by such licensor, or (ii)
c07e64ecb528 Update SL copyright headers to use UPL
Gilles Duboscq <gilles.m.duboscq@oracle.com>
parents: 21951
diff changeset
13 * the Larger Works (as defined below), to deal in both
22065
503529c65456 Remove trailing whitespace from UPL license
Tom Rodriguez <tom.rodriguez@oracle.com>
parents: 22003
diff changeset
14 *
21997
c07e64ecb528 Update SL copyright headers to use UPL
Gilles Duboscq <gilles.m.duboscq@oracle.com>
parents: 21951
diff changeset
15 * (a) the Software, and
22065
503529c65456 Remove trailing whitespace from UPL license
Tom Rodriguez <tom.rodriguez@oracle.com>
parents: 22003
diff changeset
16 *
21997
c07e64ecb528 Update SL copyright headers to use UPL
Gilles Duboscq <gilles.m.duboscq@oracle.com>
parents: 21951
diff changeset
17 * (b) any piece of software and/or hardware listed in the lrgrwrks.txt file if
c07e64ecb528 Update SL copyright headers to use UPL
Gilles Duboscq <gilles.m.duboscq@oracle.com>
parents: 21951
diff changeset
18 * one is included with the Software each a "Larger Work" to which the Software
c07e64ecb528 Update SL copyright headers to use UPL
Gilles Duboscq <gilles.m.duboscq@oracle.com>
parents: 21951
diff changeset
19 * is contributed by such licensors),
22065
503529c65456 Remove trailing whitespace from UPL license
Tom Rodriguez <tom.rodriguez@oracle.com>
parents: 22003
diff changeset
20 *
21997
c07e64ecb528 Update SL copyright headers to use UPL
Gilles Duboscq <gilles.m.duboscq@oracle.com>
parents: 21951
diff changeset
21 * without restriction, including without limitation the rights to copy, create
c07e64ecb528 Update SL copyright headers to use UPL
Gilles Duboscq <gilles.m.duboscq@oracle.com>
parents: 21951
diff changeset
22 * derivative works of, display, perform, and distribute the Software and make,
c07e64ecb528 Update SL copyright headers to use UPL
Gilles Duboscq <gilles.m.duboscq@oracle.com>
parents: 21951
diff changeset
23 * use, sell, offer for sale, import, export, have made, and have sold the
c07e64ecb528 Update SL copyright headers to use UPL
Gilles Duboscq <gilles.m.duboscq@oracle.com>
parents: 21951
diff changeset
24 * Software and the Larger Work(s), and to sublicense the foregoing rights on
c07e64ecb528 Update SL copyright headers to use UPL
Gilles Duboscq <gilles.m.duboscq@oracle.com>
parents: 21951
diff changeset
25 * either these or other terms.
22065
503529c65456 Remove trailing whitespace from UPL license
Tom Rodriguez <tom.rodriguez@oracle.com>
parents: 22003
diff changeset
26 *
21997
c07e64ecb528 Update SL copyright headers to use UPL
Gilles Duboscq <gilles.m.duboscq@oracle.com>
parents: 21951
diff changeset
27 * This license is subject to the following condition:
22065
503529c65456 Remove trailing whitespace from UPL license
Tom Rodriguez <tom.rodriguez@oracle.com>
parents: 22003
diff changeset
28 *
21997
c07e64ecb528 Update SL copyright headers to use UPL
Gilles Duboscq <gilles.m.duboscq@oracle.com>
parents: 21951
diff changeset
29 * The above copyright notice and either this complete permission notice or at a
c07e64ecb528 Update SL copyright headers to use UPL
Gilles Duboscq <gilles.m.duboscq@oracle.com>
parents: 21951
diff changeset
30 * minimum a reference to the UPL must be included in all copies or substantial
c07e64ecb528 Update SL copyright headers to use UPL
Gilles Duboscq <gilles.m.duboscq@oracle.com>
parents: 21951
diff changeset
31 * portions of the Software.
22065
503529c65456 Remove trailing whitespace from UPL license
Tom Rodriguez <tom.rodriguez@oracle.com>
parents: 22003
diff changeset
32 *
21997
c07e64ecb528 Update SL copyright headers to use UPL
Gilles Duboscq <gilles.m.duboscq@oracle.com>
parents: 21951
diff changeset
33 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
c07e64ecb528 Update SL copyright headers to use UPL
Gilles Duboscq <gilles.m.duboscq@oracle.com>
parents: 21951
diff changeset
34 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
c07e64ecb528 Update SL copyright headers to use UPL
Gilles Duboscq <gilles.m.duboscq@oracle.com>
parents: 21951
diff changeset
35 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
c07e64ecb528 Update SL copyright headers to use UPL
Gilles Duboscq <gilles.m.duboscq@oracle.com>
parents: 21951
diff changeset
36 * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
c07e64ecb528 Update SL copyright headers to use UPL
Gilles Duboscq <gilles.m.duboscq@oracle.com>
parents: 21951
diff changeset
37 * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
c07e64ecb528 Update SL copyright headers to use UPL
Gilles Duboscq <gilles.m.duboscq@oracle.com>
parents: 21951
diff changeset
38 * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
c07e64ecb528 Update SL copyright headers to use UPL
Gilles Duboscq <gilles.m.duboscq@oracle.com>
parents: 21951
diff changeset
39 * SOFTWARE.
18412
997bc9764a9a SL: use the truffle object storage model to represent SL objects
Andreas Woess <andreas.woess@jku.at>
parents:
diff changeset
40 */
997bc9764a9a SL: use the truffle object storage model to represent SL objects
Andreas Woess <andreas.woess@jku.at>
parents:
diff changeset
41 package com.oracle.truffle.sl.nodes.access;
997bc9764a9a SL: use the truffle object storage model to represent SL objects
Andreas Woess <andreas.woess@jku.at>
parents:
diff changeset
42
20954
73211b2c7c7a SL: use DSL for property reads.
Christian Humer <christian.humer@gmail.com>
parents: 18764
diff changeset
43 import com.oracle.truffle.api.CompilerDirectives.TruffleBoundary;
22157
dc83cc1f94f2 Using fully qualified imports
Jaroslav Tulach <jaroslav.tulach@oracle.com>
parents: 22065
diff changeset
44 import com.oracle.truffle.api.dsl.Cached;
dc83cc1f94f2 Using fully qualified imports
Jaroslav Tulach <jaroslav.tulach@oracle.com>
parents: 22065
diff changeset
45 import com.oracle.truffle.api.dsl.Specialization;
dc83cc1f94f2 Using fully qualified imports
Jaroslav Tulach <jaroslav.tulach@oracle.com>
parents: 22065
diff changeset
46 import com.oracle.truffle.api.nodes.Node;
dc83cc1f94f2 Using fully qualified imports
Jaroslav Tulach <jaroslav.tulach@oracle.com>
parents: 22065
diff changeset
47 import com.oracle.truffle.api.nodes.UnexpectedResultException;
dc83cc1f94f2 Using fully qualified imports
Jaroslav Tulach <jaroslav.tulach@oracle.com>
parents: 22065
diff changeset
48 import com.oracle.truffle.api.object.DynamicObject;
dc83cc1f94f2 Using fully qualified imports
Jaroslav Tulach <jaroslav.tulach@oracle.com>
parents: 22065
diff changeset
49 import com.oracle.truffle.api.object.LongLocation;
dc83cc1f94f2 Using fully qualified imports
Jaroslav Tulach <jaroslav.tulach@oracle.com>
parents: 22065
diff changeset
50 import com.oracle.truffle.api.object.Property;
dc83cc1f94f2 Using fully qualified imports
Jaroslav Tulach <jaroslav.tulach@oracle.com>
parents: 22065
diff changeset
51 import com.oracle.truffle.api.object.Shape;
dc83cc1f94f2 Using fully qualified imports
Jaroslav Tulach <jaroslav.tulach@oracle.com>
parents: 22065
diff changeset
52 import com.oracle.truffle.sl.runtime.SLNull;
18412
997bc9764a9a SL: use the truffle object storage model to represent SL objects
Andreas Woess <andreas.woess@jku.at>
parents:
diff changeset
53
997bc9764a9a SL: use the truffle object storage model to represent SL objects
Andreas Woess <andreas.woess@jku.at>
parents:
diff changeset
54 public abstract class SLReadPropertyCacheNode extends Node {
997bc9764a9a SL: use the truffle object storage model to represent SL objects
Andreas Woess <andreas.woess@jku.at>
parents:
diff changeset
55
20954
73211b2c7c7a SL: use DSL for property reads.
Christian Humer <christian.humer@gmail.com>
parents: 18764
diff changeset
56 protected static final int CACHE_LIMIT = 3;
73211b2c7c7a SL: use DSL for property reads.
Christian Humer <christian.humer@gmail.com>
parents: 18764
diff changeset
57
73211b2c7c7a SL: use DSL for property reads.
Christian Humer <christian.humer@gmail.com>
parents: 18764
diff changeset
58 protected final String propertyName;
73211b2c7c7a SL: use DSL for property reads.
Christian Humer <christian.humer@gmail.com>
parents: 18764
diff changeset
59
73211b2c7c7a SL: use DSL for property reads.
Christian Humer <christian.humer@gmail.com>
parents: 18764
diff changeset
60 public SLReadPropertyCacheNode(String propertyName) {
73211b2c7c7a SL: use DSL for property reads.
Christian Humer <christian.humer@gmail.com>
parents: 18764
diff changeset
61 this.propertyName = propertyName;
73211b2c7c7a SL: use DSL for property reads.
Christian Humer <christian.humer@gmail.com>
parents: 18764
diff changeset
62 }
73211b2c7c7a SL: use DSL for property reads.
Christian Humer <christian.humer@gmail.com>
parents: 18764
diff changeset
63
18412
997bc9764a9a SL: use the truffle object storage model to represent SL objects
Andreas Woess <andreas.woess@jku.at>
parents:
diff changeset
64 public static SLReadPropertyCacheNode create(String propertyName) {
20954
73211b2c7c7a SL: use DSL for property reads.
Christian Humer <christian.humer@gmail.com>
parents: 18764
diff changeset
65 return SLReadPropertyCacheNodeGen.create(propertyName);
18412
997bc9764a9a SL: use the truffle object storage model to represent SL objects
Andreas Woess <andreas.woess@jku.at>
parents:
diff changeset
66 }
997bc9764a9a SL: use the truffle object storage model to represent SL objects
Andreas Woess <andreas.woess@jku.at>
parents:
diff changeset
67
997bc9764a9a SL: use the truffle object storage model to represent SL objects
Andreas Woess <andreas.woess@jku.at>
parents:
diff changeset
68 public abstract Object executeObject(DynamicObject receiver);
997bc9764a9a SL: use the truffle object storage model to represent SL objects
Andreas Woess <andreas.woess@jku.at>
parents:
diff changeset
69
997bc9764a9a SL: use the truffle object storage model to represent SL objects
Andreas Woess <andreas.woess@jku.at>
parents:
diff changeset
70 public abstract long executeLong(DynamicObject receiver) throws UnexpectedResultException;
997bc9764a9a SL: use the truffle object storage model to represent SL objects
Andreas Woess <andreas.woess@jku.at>
parents:
diff changeset
71
20954
73211b2c7c7a SL: use DSL for property reads.
Christian Humer <christian.humer@gmail.com>
parents: 18764
diff changeset
72 /*
73211b2c7c7a SL: use DSL for property reads.
Christian Humer <christian.humer@gmail.com>
parents: 18764
diff changeset
73 * We use a separate long specialization to avoid boxing for long.
73211b2c7c7a SL: use DSL for property reads.
Christian Humer <christian.humer@gmail.com>
parents: 18764
diff changeset
74 */
73211b2c7c7a SL: use DSL for property reads.
Christian Humer <christian.humer@gmail.com>
parents: 18764
diff changeset
75 @Specialization(limit = "CACHE_LIMIT", guards = {"longLocation != null", "shape.check(receiver)"}, assumptions = "shape.getValidAssumption()")
73211b2c7c7a SL: use DSL for property reads.
Christian Humer <christian.humer@gmail.com>
parents: 18764
diff changeset
76 @SuppressWarnings("unused")
22003
5bc7f7b867ab Making debugger always on for each TruffleVM execution. Introducing EventConsumer to process such debugger events. Requesting each RootNode to be associated with a TruffleLanguage, so debugger can find out proper context for each Node where executions gets suspended.
Jaroslav Tulach <jaroslav.tulach@oracle.com>
parents: 21997
diff changeset
77 protected long doCachedLong(DynamicObject receiver, //
5bc7f7b867ab Making debugger always on for each TruffleVM execution. Introducing EventConsumer to process such debugger events. Requesting each RootNode to be associated with a TruffleLanguage, so debugger can find out proper context for each Node where executions gets suspended.
Jaroslav Tulach <jaroslav.tulach@oracle.com>
parents: 21997
diff changeset
78 @Cached("receiver.getShape()") Shape shape, //
20954
73211b2c7c7a SL: use DSL for property reads.
Christian Humer <christian.humer@gmail.com>
parents: 18764
diff changeset
79 @Cached("getLongLocation(shape)") LongLocation longLocation) {
73211b2c7c7a SL: use DSL for property reads.
Christian Humer <christian.humer@gmail.com>
parents: 18764
diff changeset
80 return longLocation.getLong(receiver, true);
73211b2c7c7a SL: use DSL for property reads.
Christian Humer <christian.humer@gmail.com>
parents: 18764
diff changeset
81 }
18412
997bc9764a9a SL: use the truffle object storage model to represent SL objects
Andreas Woess <andreas.woess@jku.at>
parents:
diff changeset
82
20954
73211b2c7c7a SL: use DSL for property reads.
Christian Humer <christian.humer@gmail.com>
parents: 18764
diff changeset
83 protected LongLocation getLongLocation(Shape shape) {
73211b2c7c7a SL: use DSL for property reads.
Christian Humer <christian.humer@gmail.com>
parents: 18764
diff changeset
84 Property property = shape.getProperty(propertyName);
73211b2c7c7a SL: use DSL for property reads.
Christian Humer <christian.humer@gmail.com>
parents: 18764
diff changeset
85 if (property != null && property.getLocation() instanceof LongLocation) {
73211b2c7c7a SL: use DSL for property reads.
Christian Humer <christian.humer@gmail.com>
parents: 18764
diff changeset
86 return (LongLocation) property.getLocation();
18412
997bc9764a9a SL: use the truffle object storage model to represent SL objects
Andreas Woess <andreas.woess@jku.at>
parents:
diff changeset
87 }
20954
73211b2c7c7a SL: use DSL for property reads.
Christian Humer <christian.humer@gmail.com>
parents: 18764
diff changeset
88 return null;
73211b2c7c7a SL: use DSL for property reads.
Christian Humer <christian.humer@gmail.com>
parents: 18764
diff changeset
89 }
18412
997bc9764a9a SL: use the truffle object storage model to represent SL objects
Andreas Woess <andreas.woess@jku.at>
parents:
diff changeset
90
20954
73211b2c7c7a SL: use DSL for property reads.
Christian Humer <christian.humer@gmail.com>
parents: 18764
diff changeset
91 /*
73211b2c7c7a SL: use DSL for property reads.
Christian Humer <christian.humer@gmail.com>
parents: 18764
diff changeset
92 * As soon as we have seen an object read, we cannot avoid boxing long anymore therefore we can
73211b2c7c7a SL: use DSL for property reads.
Christian Humer <christian.humer@gmail.com>
parents: 18764
diff changeset
93 * contain all long cache entries.
73211b2c7c7a SL: use DSL for property reads.
Christian Humer <christian.humer@gmail.com>
parents: 18764
diff changeset
94 */
73211b2c7c7a SL: use DSL for property reads.
Christian Humer <christian.humer@gmail.com>
parents: 18764
diff changeset
95 @Specialization(limit = "CACHE_LIMIT", contains = "doCachedLong", guards = "shape.check(receiver)", assumptions = "shape.getValidAssumption()")
22003
5bc7f7b867ab Making debugger always on for each TruffleVM execution. Introducing EventConsumer to process such debugger events. Requesting each RootNode to be associated with a TruffleLanguage, so debugger can find out proper context for each Node where executions gets suspended.
Jaroslav Tulach <jaroslav.tulach@oracle.com>
parents: 21997
diff changeset
96 protected static Object doCachedObject(DynamicObject receiver, //
5bc7f7b867ab Making debugger always on for each TruffleVM execution. Introducing EventConsumer to process such debugger events. Requesting each RootNode to be associated with a TruffleLanguage, so debugger can find out proper context for each Node where executions gets suspended.
Jaroslav Tulach <jaroslav.tulach@oracle.com>
parents: 21997
diff changeset
97 @Cached("receiver.getShape()") Shape shape, //
20954
73211b2c7c7a SL: use DSL for property reads.
Christian Humer <christian.humer@gmail.com>
parents: 18764
diff changeset
98 @Cached("shape.getProperty(propertyName)") Property property) {
73211b2c7c7a SL: use DSL for property reads.
Christian Humer <christian.humer@gmail.com>
parents: 18764
diff changeset
99 if (property == null) {
73211b2c7c7a SL: use DSL for property reads.
Christian Humer <christian.humer@gmail.com>
parents: 18764
diff changeset
100 return SLNull.SINGLETON;
73211b2c7c7a SL: use DSL for property reads.
Christian Humer <christian.humer@gmail.com>
parents: 18764
diff changeset
101 } else {
73211b2c7c7a SL: use DSL for property reads.
Christian Humer <christian.humer@gmail.com>
parents: 18764
diff changeset
102 return property.get(receiver, shape);
18412
997bc9764a9a SL: use the truffle object storage model to represent SL objects
Andreas Woess <andreas.woess@jku.at>
parents:
diff changeset
103 }
997bc9764a9a SL: use the truffle object storage model to represent SL objects
Andreas Woess <andreas.woess@jku.at>
parents:
diff changeset
104 }
997bc9764a9a SL: use the truffle object storage model to represent SL objects
Andreas Woess <andreas.woess@jku.at>
parents:
diff changeset
105
20954
73211b2c7c7a SL: use DSL for property reads.
Christian Humer <christian.humer@gmail.com>
parents: 18764
diff changeset
106 /*
73211b2c7c7a SL: use DSL for property reads.
Christian Humer <christian.humer@gmail.com>
parents: 18764
diff changeset
107 * The generic case is used if the number of shapes accessed overflows the limit.
73211b2c7c7a SL: use DSL for property reads.
Christian Humer <christian.humer@gmail.com>
parents: 18764
diff changeset
108 */
73211b2c7c7a SL: use DSL for property reads.
Christian Humer <christian.humer@gmail.com>
parents: 18764
diff changeset
109 @Specialization(contains = "doCachedObject")
73211b2c7c7a SL: use DSL for property reads.
Christian Humer <christian.humer@gmail.com>
parents: 18764
diff changeset
110 @TruffleBoundary
73211b2c7c7a SL: use DSL for property reads.
Christian Humer <christian.humer@gmail.com>
parents: 18764
diff changeset
111 protected Object doGeneric(DynamicObject receiver, @Cached("new()") LRUPropertyLookup lruCache) {
73211b2c7c7a SL: use DSL for property reads.
Christian Humer <christian.humer@gmail.com>
parents: 18764
diff changeset
112 if (!lruCache.shape.check(receiver)) {
73211b2c7c7a SL: use DSL for property reads.
Christian Humer <christian.humer@gmail.com>
parents: 18764
diff changeset
113 Shape receiverShape = receiver.getShape();
73211b2c7c7a SL: use DSL for property reads.
Christian Humer <christian.humer@gmail.com>
parents: 18764
diff changeset
114 lruCache.shape = receiverShape;
73211b2c7c7a SL: use DSL for property reads.
Christian Humer <christian.humer@gmail.com>
parents: 18764
diff changeset
115 lruCache.property = receiverShape.getProperty(propertyName);
18412
997bc9764a9a SL: use the truffle object storage model to represent SL objects
Andreas Woess <andreas.woess@jku.at>
parents:
diff changeset
116 }
20954
73211b2c7c7a SL: use DSL for property reads.
Christian Humer <christian.humer@gmail.com>
parents: 18764
diff changeset
117 if (lruCache.property != null) {
73211b2c7c7a SL: use DSL for property reads.
Christian Humer <christian.humer@gmail.com>
parents: 18764
diff changeset
118 return lruCache.property.get(receiver, true);
73211b2c7c7a SL: use DSL for property reads.
Christian Humer <christian.humer@gmail.com>
parents: 18764
diff changeset
119 } else {
18412
997bc9764a9a SL: use the truffle object storage model to represent SL objects
Andreas Woess <andreas.woess@jku.at>
parents:
diff changeset
120 return SLNull.SINGLETON;
997bc9764a9a SL: use the truffle object storage model to represent SL objects
Andreas Woess <andreas.woess@jku.at>
parents:
diff changeset
121 }
997bc9764a9a SL: use the truffle object storage model to represent SL objects
Andreas Woess <andreas.woess@jku.at>
parents:
diff changeset
122 }
997bc9764a9a SL: use the truffle object storage model to represent SL objects
Andreas Woess <andreas.woess@jku.at>
parents:
diff changeset
123
20954
73211b2c7c7a SL: use DSL for property reads.
Christian Humer <christian.humer@gmail.com>
parents: 18764
diff changeset
124 protected static class LRUPropertyLookup {
18412
997bc9764a9a SL: use the truffle object storage model to represent SL objects
Andreas Woess <andreas.woess@jku.at>
parents:
diff changeset
125
20954
73211b2c7c7a SL: use DSL for property reads.
Christian Humer <christian.humer@gmail.com>
parents: 18764
diff changeset
126 private Shape shape;
73211b2c7c7a SL: use DSL for property reads.
Christian Humer <christian.humer@gmail.com>
parents: 18764
diff changeset
127 private Property property;
73211b2c7c7a SL: use DSL for property reads.
Christian Humer <christian.humer@gmail.com>
parents: 18764
diff changeset
128
73211b2c7c7a SL: use DSL for property reads.
Christian Humer <christian.humer@gmail.com>
parents: 18764
diff changeset
129 public LRUPropertyLookup() {
18412
997bc9764a9a SL: use the truffle object storage model to represent SL objects
Andreas Woess <andreas.woess@jku.at>
parents:
diff changeset
130 }
997bc9764a9a SL: use the truffle object storage model to represent SL objects
Andreas Woess <andreas.woess@jku.at>
parents:
diff changeset
131
20954
73211b2c7c7a SL: use DSL for property reads.
Christian Humer <christian.humer@gmail.com>
parents: 18764
diff changeset
132 }
18412
997bc9764a9a SL: use the truffle object storage model to represent SL objects
Andreas Woess <andreas.woess@jku.at>
parents:
diff changeset
133
997bc9764a9a SL: use the truffle object storage model to represent SL objects
Andreas Woess <andreas.woess@jku.at>
parents:
diff changeset
134 }