annotate truffle/com.oracle.truffle.sl/src/com/oracle/truffle/sl/nodes/access/SLWritePropertyCacheNode.java @ 22520:20ce790acc30

SL write node: rename update shape specialization for clarity
author Benoit Daloze <benoit.daloze@jku.at>
date Fri, 18 Dec 2015 16:41:31 +0100
parents e7c2d89ddf20
children
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 /*
20955
f7bc60c3a8f6 SL: use DSL for property writes.
Christian Humer <christian.humer@gmail.com>
parents: 18412
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
22410
ee2f300d47be SL: minor improvements to write property cache node specializations
Andreas Woess <andreas.woess@oracle.com>
parents: 22349
diff changeset
43 import com.oracle.truffle.api.CompilerDirectives;
21554
b1530a6cce8c renamed com.oracle.graal.[debug|options|hotspotvmconfig]* modules to com.oracle.jvmci.[debug|options|hotspotvmconfig]* modules (JBS:GRAAL-53)
Doug Simon <doug.simon@oracle.com>
parents: 20955
diff changeset
44 import com.oracle.truffle.api.CompilerDirectives.TruffleBoundary;
22157
dc83cc1f94f2 Using fully qualified imports
Jaroslav Tulach <jaroslav.tulach@oracle.com>
parents: 22065
diff changeset
45 import com.oracle.truffle.api.dsl.Cached;
dc83cc1f94f2 Using fully qualified imports
Jaroslav Tulach <jaroslav.tulach@oracle.com>
parents: 22065
diff changeset
46 import com.oracle.truffle.api.dsl.Specialization;
dc83cc1f94f2 Using fully qualified imports
Jaroslav Tulach <jaroslav.tulach@oracle.com>
parents: 22065
diff changeset
47 import com.oracle.truffle.api.nodes.Node;
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.FinalLocationException;
dc83cc1f94f2 Using fully qualified imports
Jaroslav Tulach <jaroslav.tulach@oracle.com>
parents: 22065
diff changeset
50 import com.oracle.truffle.api.object.IncompatibleLocationException;
dc83cc1f94f2 Using fully qualified imports
Jaroslav Tulach <jaroslav.tulach@oracle.com>
parents: 22065
diff changeset
51 import com.oracle.truffle.api.object.Location;
dc83cc1f94f2 Using fully qualified imports
Jaroslav Tulach <jaroslav.tulach@oracle.com>
parents: 22065
diff changeset
52 import com.oracle.truffle.api.object.Property;
dc83cc1f94f2 Using fully qualified imports
Jaroslav Tulach <jaroslav.tulach@oracle.com>
parents: 22065
diff changeset
53 import com.oracle.truffle.api.object.Shape;
18412
997bc9764a9a SL: use the truffle object storage model to represent SL objects
Andreas Woess <andreas.woess@jku.at>
parents:
diff changeset
54
997bc9764a9a SL: use the truffle object storage model to represent SL objects
Andreas Woess <andreas.woess@jku.at>
parents:
diff changeset
55 public abstract class SLWritePropertyCacheNode extends Node {
22338
15c9dda91e50 SL: simplify write property cache node
Andreas Woess <andreas.woess@oracle.com>
parents: 22157
diff changeset
56 protected static final int CACHE_LIMIT = 3;
18412
997bc9764a9a SL: use the truffle object storage model to represent SL objects
Andreas Woess <andreas.woess@jku.at>
parents:
diff changeset
57
20955
f7bc60c3a8f6 SL: use DSL for property writes.
Christian Humer <christian.humer@gmail.com>
parents: 18412
diff changeset
58 protected final String propertyName;
f7bc60c3a8f6 SL: use DSL for property writes.
Christian Humer <christian.humer@gmail.com>
parents: 18412
diff changeset
59
f7bc60c3a8f6 SL: use DSL for property writes.
Christian Humer <christian.humer@gmail.com>
parents: 18412
diff changeset
60 public SLWritePropertyCacheNode(String propertyName) {
f7bc60c3a8f6 SL: use DSL for property writes.
Christian Humer <christian.humer@gmail.com>
parents: 18412
diff changeset
61 this.propertyName = propertyName;
18412
997bc9764a9a SL: use the truffle object storage model to represent SL objects
Andreas Woess <andreas.woess@jku.at>
parents:
diff changeset
62 }
997bc9764a9a SL: use the truffle object storage model to represent SL objects
Andreas Woess <andreas.woess@jku.at>
parents:
diff changeset
63
997bc9764a9a SL: use the truffle object storage model to represent SL objects
Andreas Woess <andreas.woess@jku.at>
parents:
diff changeset
64 public abstract void executeObject(DynamicObject receiver, Object value);
997bc9764a9a SL: use the truffle object storage model to represent SL objects
Andreas Woess <andreas.woess@jku.at>
parents:
diff changeset
65
22412
e7c2d89ddf20 SL write property node: simplify further
Benoit Daloze <benoit.daloze@jku.at>
parents: 22410
diff changeset
66 @Specialization(guards = {"location != null", "shape.check(receiver)", "canSet(location, receiver, value)"}, assumptions = "shape.getValidAssumption()", limit = "CACHE_LIMIT")
22338
15c9dda91e50 SL: simplify write property cache node
Andreas Woess <andreas.woess@oracle.com>
parents: 22157
diff changeset
67 public void writeExistingPropertyCached(DynamicObject receiver, Object value, //
15c9dda91e50 SL: simplify write property cache node
Andreas Woess <andreas.woess@oracle.com>
parents: 22157
diff changeset
68 @Cached("lookupLocation(receiver, value)") Location location, //
22410
ee2f300d47be SL: minor improvements to write property cache node specializations
Andreas Woess <andreas.woess@oracle.com>
parents: 22349
diff changeset
69 @Cached("receiver.getShape()") Shape shape) {
22338
15c9dda91e50 SL: simplify write property cache node
Andreas Woess <andreas.woess@oracle.com>
parents: 22157
diff changeset
70 try {
15c9dda91e50 SL: simplify write property cache node
Andreas Woess <andreas.woess@oracle.com>
parents: 22157
diff changeset
71 location.set(receiver, value, shape);
15c9dda91e50 SL: simplify write property cache node
Andreas Woess <andreas.woess@oracle.com>
parents: 22157
diff changeset
72 } catch (IncompatibleLocationException | FinalLocationException e) {
15c9dda91e50 SL: simplify write property cache node
Andreas Woess <andreas.woess@oracle.com>
parents: 22157
diff changeset
73 throw new IllegalStateException(e);
18412
997bc9764a9a SL: use the truffle object storage model to represent SL objects
Andreas Woess <andreas.woess@jku.at>
parents:
diff changeset
74 }
997bc9764a9a SL: use the truffle object storage model to represent SL objects
Andreas Woess <andreas.woess@jku.at>
parents:
diff changeset
75 }
997bc9764a9a SL: use the truffle object storage model to represent SL objects
Andreas Woess <andreas.woess@jku.at>
parents:
diff changeset
76
22412
e7c2d89ddf20 SL write property node: simplify further
Benoit Daloze <benoit.daloze@jku.at>
parents: 22410
diff changeset
77 @Specialization(guards = {"existingLocation == null", "oldShape.check(receiver)", "canSet(newLocation, receiver, value)"}, assumptions = {"oldShape.getValidAssumption()",
e7c2d89ddf20 SL write property node: simplify further
Benoit Daloze <benoit.daloze@jku.at>
parents: 22410
diff changeset
78 "newShape.getValidAssumption()"}, limit = "CACHE_LIMIT")
22338
15c9dda91e50 SL: simplify write property cache node
Andreas Woess <andreas.woess@oracle.com>
parents: 22157
diff changeset
79 public void writeNewPropertyCached(DynamicObject receiver, Object value, //
22412
e7c2d89ddf20 SL write property node: simplify further
Benoit Daloze <benoit.daloze@jku.at>
parents: 22410
diff changeset
80 @Cached("lookupLocation(receiver, value)") @SuppressWarnings("unused") Location existingLocation, //
e7c2d89ddf20 SL write property node: simplify further
Benoit Daloze <benoit.daloze@jku.at>
parents: 22410
diff changeset
81 @Cached("receiver.getShape()") Shape oldShape, //
e7c2d89ddf20 SL write property node: simplify further
Benoit Daloze <benoit.daloze@jku.at>
parents: 22410
diff changeset
82 @Cached("defineProperty(oldShape, value)") Shape newShape, //
e7c2d89ddf20 SL write property node: simplify further
Benoit Daloze <benoit.daloze@jku.at>
parents: 22410
diff changeset
83 @Cached("getLocation(newShape)") Location newLocation) {
22338
15c9dda91e50 SL: simplify write property cache node
Andreas Woess <andreas.woess@oracle.com>
parents: 22157
diff changeset
84 try {
22412
e7c2d89ddf20 SL write property node: simplify further
Benoit Daloze <benoit.daloze@jku.at>
parents: 22410
diff changeset
85 newLocation.set(receiver, value, oldShape, newShape);
22338
15c9dda91e50 SL: simplify write property cache node
Andreas Woess <andreas.woess@oracle.com>
parents: 22157
diff changeset
86 } catch (IncompatibleLocationException e) {
15c9dda91e50 SL: simplify write property cache node
Andreas Woess <andreas.woess@oracle.com>
parents: 22157
diff changeset
87 throw new IllegalStateException(e);
18412
997bc9764a9a SL: use the truffle object storage model to represent SL objects
Andreas Woess <andreas.woess@jku.at>
parents:
diff changeset
88 }
997bc9764a9a SL: use the truffle object storage model to represent SL objects
Andreas Woess <andreas.woess@jku.at>
parents:
diff changeset
89 }
997bc9764a9a SL: use the truffle object storage model to represent SL objects
Andreas Woess <andreas.woess@jku.at>
parents:
diff changeset
90
22412
e7c2d89ddf20 SL write property node: simplify further
Benoit Daloze <benoit.daloze@jku.at>
parents: 22410
diff changeset
91 @Specialization(guards = "updateShape(receiver)")
22520
20ce790acc30 SL write node: rename update shape specialization for clarity
Benoit Daloze <benoit.daloze@jku.at>
parents: 22412
diff changeset
92 public void updateShapeAndWrite(DynamicObject receiver, Object value) {
22412
e7c2d89ddf20 SL write property node: simplify further
Benoit Daloze <benoit.daloze@jku.at>
parents: 22410
diff changeset
93 executeObject(receiver, value);
22410
ee2f300d47be SL: minor improvements to write property cache node specializations
Andreas Woess <andreas.woess@oracle.com>
parents: 22349
diff changeset
94 }
ee2f300d47be SL: minor improvements to write property cache node specializations
Andreas Woess <andreas.woess@oracle.com>
parents: 22349
diff changeset
95
22338
15c9dda91e50 SL: simplify write property cache node
Andreas Woess <andreas.woess@oracle.com>
parents: 22157
diff changeset
96 @TruffleBoundary
22520
20ce790acc30 SL write node: rename update shape specialization for clarity
Benoit Daloze <benoit.daloze@jku.at>
parents: 22412
diff changeset
97 @Specialization(contains = {"writeExistingPropertyCached", "writeNewPropertyCached", "updateShapeAndWrite"})
22338
15c9dda91e50 SL: simplify write property cache node
Andreas Woess <andreas.woess@oracle.com>
parents: 22157
diff changeset
98 public void writeUncached(DynamicObject receiver, Object value) {
15c9dda91e50 SL: simplify write property cache node
Andreas Woess <andreas.woess@oracle.com>
parents: 22157
diff changeset
99 receiver.define(propertyName, value);
18412
997bc9764a9a SL: use the truffle object storage model to represent SL objects
Andreas Woess <andreas.woess@jku.at>
parents:
diff changeset
100 }
997bc9764a9a SL: use the truffle object storage model to represent SL objects
Andreas Woess <andreas.woess@jku.at>
parents:
diff changeset
101
22338
15c9dda91e50 SL: simplify write property cache node
Andreas Woess <andreas.woess@oracle.com>
parents: 22157
diff changeset
102 protected final Location lookupLocation(DynamicObject object, Object value) {
22412
e7c2d89ddf20 SL write property node: simplify further
Benoit Daloze <benoit.daloze@jku.at>
parents: 22410
diff changeset
103 final Property property = object.getShape().getProperty(propertyName);
22338
15c9dda91e50 SL: simplify write property cache node
Andreas Woess <andreas.woess@oracle.com>
parents: 22157
diff changeset
104
15c9dda91e50 SL: simplify write property cache node
Andreas Woess <andreas.woess@oracle.com>
parents: 22157
diff changeset
105 if (property != null && property.getLocation().canSet(object, value)) {
15c9dda91e50 SL: simplify write property cache node
Andreas Woess <andreas.woess@oracle.com>
parents: 22157
diff changeset
106 return property.getLocation();
15c9dda91e50 SL: simplify write property cache node
Andreas Woess <andreas.woess@oracle.com>
parents: 22157
diff changeset
107 } else {
15c9dda91e50 SL: simplify write property cache node
Andreas Woess <andreas.woess@oracle.com>
parents: 22157
diff changeset
108 return null;
15c9dda91e50 SL: simplify write property cache node
Andreas Woess <andreas.woess@oracle.com>
parents: 22157
diff changeset
109 }
15c9dda91e50 SL: simplify write property cache node
Andreas Woess <andreas.woess@oracle.com>
parents: 22157
diff changeset
110 }
15c9dda91e50 SL: simplify write property cache node
Andreas Woess <andreas.woess@oracle.com>
parents: 22157
diff changeset
111
22412
e7c2d89ddf20 SL write property node: simplify further
Benoit Daloze <benoit.daloze@jku.at>
parents: 22410
diff changeset
112 protected final Shape defineProperty(Shape oldShape, Object value) {
e7c2d89ddf20 SL write property node: simplify further
Benoit Daloze <benoit.daloze@jku.at>
parents: 22410
diff changeset
113 return oldShape.defineProperty(propertyName, value, 0);
22338
15c9dda91e50 SL: simplify write property cache node
Andreas Woess <andreas.woess@oracle.com>
parents: 22157
diff changeset
114 }
15c9dda91e50 SL: simplify write property cache node
Andreas Woess <andreas.woess@oracle.com>
parents: 22157
diff changeset
115
15c9dda91e50 SL: simplify write property cache node
Andreas Woess <andreas.woess@oracle.com>
parents: 22157
diff changeset
116 protected final Location getLocation(Shape newShape) {
15c9dda91e50 SL: simplify write property cache node
Andreas Woess <andreas.woess@oracle.com>
parents: 22157
diff changeset
117 return newShape.getProperty(propertyName).getLocation();
15c9dda91e50 SL: simplify write property cache node
Andreas Woess <andreas.woess@oracle.com>
parents: 22157
diff changeset
118 }
15c9dda91e50 SL: simplify write property cache node
Andreas Woess <andreas.woess@oracle.com>
parents: 22157
diff changeset
119
22339
559087369317 SL: work around findbugs warnings in generated code
Andreas Woess <andreas.woess@oracle.com>
parents: 22338
diff changeset
120 protected static boolean canSet(Location location, DynamicObject receiver, Object value) {
559087369317 SL: work around findbugs warnings in generated code
Andreas Woess <andreas.woess@oracle.com>
parents: 22338
diff changeset
121 return location.canSet(receiver, value);
559087369317 SL: work around findbugs warnings in generated code
Andreas Woess <andreas.woess@oracle.com>
parents: 22338
diff changeset
122 }
559087369317 SL: work around findbugs warnings in generated code
Andreas Woess <andreas.woess@oracle.com>
parents: 22338
diff changeset
123
22410
ee2f300d47be SL: minor improvements to write property cache node specializations
Andreas Woess <andreas.woess@oracle.com>
parents: 22349
diff changeset
124 protected static boolean updateShape(DynamicObject object) {
ee2f300d47be SL: minor improvements to write property cache node specializations
Andreas Woess <andreas.woess@oracle.com>
parents: 22349
diff changeset
125 CompilerDirectives.transferToInterpreter();
ee2f300d47be SL: minor improvements to write property cache node specializations
Andreas Woess <andreas.woess@oracle.com>
parents: 22349
diff changeset
126 return object.updateShape();
ee2f300d47be SL: minor improvements to write property cache node specializations
Andreas Woess <andreas.woess@oracle.com>
parents: 22349
diff changeset
127 }
22412
e7c2d89ddf20 SL write property node: simplify further
Benoit Daloze <benoit.daloze@jku.at>
parents: 22410
diff changeset
128
18412
997bc9764a9a SL: use the truffle object storage model to represent SL objects
Andreas Woess <andreas.woess@jku.at>
parents:
diff changeset
129 }