annotate truffle/com.oracle.truffle.api/src/com/oracle/truffle/api/utilities/IdentityValueProfile.java @ 22064:02015aac6be9

Removing IdentityValueProfile and ExactClassValueProfile classes from the API
author Jaroslav Tulach <jaroslav.tulach@oracle.com>
date Wed, 05 Aug 2015 16:47:04 +0200
parents 9c8c0937da41
children dc83cc1f94f2
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
17039
1e542561783e Truffle: new value profiles prototype.
Christian Humer <christian.humer@gmail.com>
parents:
diff changeset
1 /*
1e542561783e Truffle: new value profiles prototype.
Christian Humer <christian.humer@gmail.com>
parents:
diff changeset
2 * Copyright (c) 2014, Oracle and/or its affiliates. All rights reserved.
1e542561783e Truffle: new value profiles prototype.
Christian Humer <christian.humer@gmail.com>
parents:
diff changeset
3 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
1e542561783e Truffle: new value profiles prototype.
Christian Humer <christian.humer@gmail.com>
parents:
diff changeset
4 *
1e542561783e Truffle: new value profiles prototype.
Christian Humer <christian.humer@gmail.com>
parents:
diff changeset
5 * This code is free software; you can redistribute it and/or modify it
1e542561783e Truffle: new value profiles prototype.
Christian Humer <christian.humer@gmail.com>
parents:
diff changeset
6 * under the terms of the GNU General Public License version 2 only, as
1e542561783e Truffle: new value profiles prototype.
Christian Humer <christian.humer@gmail.com>
parents:
diff changeset
7 * published by the Free Software Foundation. Oracle designates this
1e542561783e Truffle: new value profiles prototype.
Christian Humer <christian.humer@gmail.com>
parents:
diff changeset
8 * particular file as subject to the "Classpath" exception as provided
1e542561783e Truffle: new value profiles prototype.
Christian Humer <christian.humer@gmail.com>
parents:
diff changeset
9 * by Oracle in the LICENSE file that accompanied this code.
1e542561783e Truffle: new value profiles prototype.
Christian Humer <christian.humer@gmail.com>
parents:
diff changeset
10 *
1e542561783e Truffle: new value profiles prototype.
Christian Humer <christian.humer@gmail.com>
parents:
diff changeset
11 * This code is distributed in the hope that it will be useful, but WITHOUT
1e542561783e Truffle: new value profiles prototype.
Christian Humer <christian.humer@gmail.com>
parents:
diff changeset
12 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
1e542561783e Truffle: new value profiles prototype.
Christian Humer <christian.humer@gmail.com>
parents:
diff changeset
13 * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
1e542561783e Truffle: new value profiles prototype.
Christian Humer <christian.humer@gmail.com>
parents:
diff changeset
14 * version 2 for more details (a copy is included in the LICENSE file that
1e542561783e Truffle: new value profiles prototype.
Christian Humer <christian.humer@gmail.com>
parents:
diff changeset
15 * accompanied this code).
1e542561783e Truffle: new value profiles prototype.
Christian Humer <christian.humer@gmail.com>
parents:
diff changeset
16 *
1e542561783e Truffle: new value profiles prototype.
Christian Humer <christian.humer@gmail.com>
parents:
diff changeset
17 * You should have received a copy of the GNU General Public License version
1e542561783e Truffle: new value profiles prototype.
Christian Humer <christian.humer@gmail.com>
parents:
diff changeset
18 * 2 along with this work; if not, write to the Free Software Foundation,
1e542561783e Truffle: new value profiles prototype.
Christian Humer <christian.humer@gmail.com>
parents:
diff changeset
19 * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
1e542561783e Truffle: new value profiles prototype.
Christian Humer <christian.humer@gmail.com>
parents:
diff changeset
20 *
1e542561783e Truffle: new value profiles prototype.
Christian Humer <christian.humer@gmail.com>
parents:
diff changeset
21 * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
1e542561783e Truffle: new value profiles prototype.
Christian Humer <christian.humer@gmail.com>
parents:
diff changeset
22 * or visit www.oracle.com if you need additional information or have any
1e542561783e Truffle: new value profiles prototype.
Christian Humer <christian.humer@gmail.com>
parents:
diff changeset
23 * questions.
1e542561783e Truffle: new value profiles prototype.
Christian Humer <christian.humer@gmail.com>
parents:
diff changeset
24 */
1e542561783e Truffle: new value profiles prototype.
Christian Humer <christian.humer@gmail.com>
parents:
diff changeset
25 package com.oracle.truffle.api.utilities;
1e542561783e Truffle: new value profiles prototype.
Christian Humer <christian.humer@gmail.com>
parents:
diff changeset
26
1e542561783e Truffle: new value profiles prototype.
Christian Humer <christian.humer@gmail.com>
parents:
diff changeset
27 import java.util.*;
1e542561783e Truffle: new value profiles prototype.
Christian Humer <christian.humer@gmail.com>
parents:
diff changeset
28
1e542561783e Truffle: new value profiles prototype.
Christian Humer <christian.humer@gmail.com>
parents:
diff changeset
29 import com.oracle.truffle.api.*;
1e542561783e Truffle: new value profiles prototype.
Christian Humer <christian.humer@gmail.com>
parents:
diff changeset
30 import com.oracle.truffle.api.CompilerDirectives.CompilationFinal;
1e542561783e Truffle: new value profiles prototype.
Christian Humer <christian.humer@gmail.com>
parents:
diff changeset
31
1e542561783e Truffle: new value profiles prototype.
Christian Humer <christian.humer@gmail.com>
parents:
diff changeset
32 /**
1e542561783e Truffle: new value profiles prototype.
Christian Humer <christian.humer@gmail.com>
parents:
diff changeset
33 * Represents a {@link ValueProfile} that speculates on the object identity of a value.
1e542561783e Truffle: new value profiles prototype.
Christian Humer <christian.humer@gmail.com>
parents:
diff changeset
34 */
22064
02015aac6be9 Removing IdentityValueProfile and ExactClassValueProfile classes from the API
Jaroslav Tulach <jaroslav.tulach@oracle.com>
parents: 21951
diff changeset
35 final class IdentityValueProfile extends ValueProfile {
17039
1e542561783e Truffle: new value profiles prototype.
Christian Humer <christian.humer@gmail.com>
parents:
diff changeset
36
1e542561783e Truffle: new value profiles prototype.
Christian Humer <christian.humer@gmail.com>
parents:
diff changeset
37 private static final Object UNINITIALIZED = new Object();
1e542561783e Truffle: new value profiles prototype.
Christian Humer <christian.humer@gmail.com>
parents:
diff changeset
38 private static final Object GENERIC = new Object();
1e542561783e Truffle: new value profiles prototype.
Christian Humer <christian.humer@gmail.com>
parents:
diff changeset
39
1e542561783e Truffle: new value profiles prototype.
Christian Humer <christian.humer@gmail.com>
parents:
diff changeset
40 @CompilationFinal protected Object cachedValue = UNINITIALIZED;
1e542561783e Truffle: new value profiles prototype.
Christian Humer <christian.humer@gmail.com>
parents:
diff changeset
41
1e542561783e Truffle: new value profiles prototype.
Christian Humer <christian.humer@gmail.com>
parents:
diff changeset
42 IdentityValueProfile() {
1e542561783e Truffle: new value profiles prototype.
Christian Humer <christian.humer@gmail.com>
parents:
diff changeset
43 }
1e542561783e Truffle: new value profiles prototype.
Christian Humer <christian.humer@gmail.com>
parents:
diff changeset
44
1e542561783e Truffle: new value profiles prototype.
Christian Humer <christian.humer@gmail.com>
parents:
diff changeset
45 @Override
1e542561783e Truffle: new value profiles prototype.
Christian Humer <christian.humer@gmail.com>
parents:
diff changeset
46 @SuppressWarnings("unchecked")
1e542561783e Truffle: new value profiles prototype.
Christian Humer <christian.humer@gmail.com>
parents:
diff changeset
47 public <T> T profile(T value) {
1e542561783e Truffle: new value profiles prototype.
Christian Humer <christian.humer@gmail.com>
parents:
diff changeset
48 if (cachedValue != GENERIC) {
1e542561783e Truffle: new value profiles prototype.
Christian Humer <christian.humer@gmail.com>
parents:
diff changeset
49 if (cachedValue == value) {
1e542561783e Truffle: new value profiles prototype.
Christian Humer <christian.humer@gmail.com>
parents:
diff changeset
50 return (T) cachedValue;
1e542561783e Truffle: new value profiles prototype.
Christian Humer <christian.humer@gmail.com>
parents:
diff changeset
51 } else {
1e542561783e Truffle: new value profiles prototype.
Christian Humer <christian.humer@gmail.com>
parents:
diff changeset
52 CompilerDirectives.transferToInterpreterAndInvalidate();
1e542561783e Truffle: new value profiles prototype.
Christian Humer <christian.humer@gmail.com>
parents:
diff changeset
53 if (cachedValue == UNINITIALIZED) {
1e542561783e Truffle: new value profiles prototype.
Christian Humer <christian.humer@gmail.com>
parents:
diff changeset
54 cachedValue = value;
1e542561783e Truffle: new value profiles prototype.
Christian Humer <christian.humer@gmail.com>
parents:
diff changeset
55 } else {
1e542561783e Truffle: new value profiles prototype.
Christian Humer <christian.humer@gmail.com>
parents:
diff changeset
56 cachedValue = GENERIC;
1e542561783e Truffle: new value profiles prototype.
Christian Humer <christian.humer@gmail.com>
parents:
diff changeset
57 }
1e542561783e Truffle: new value profiles prototype.
Christian Humer <christian.humer@gmail.com>
parents:
diff changeset
58 }
1e542561783e Truffle: new value profiles prototype.
Christian Humer <christian.humer@gmail.com>
parents:
diff changeset
59 }
1e542561783e Truffle: new value profiles prototype.
Christian Humer <christian.humer@gmail.com>
parents:
diff changeset
60 return value;
1e542561783e Truffle: new value profiles prototype.
Christian Humer <christian.humer@gmail.com>
parents:
diff changeset
61 }
1e542561783e Truffle: new value profiles prototype.
Christian Humer <christian.humer@gmail.com>
parents:
diff changeset
62
1e542561783e Truffle: new value profiles prototype.
Christian Humer <christian.humer@gmail.com>
parents:
diff changeset
63 public boolean isGeneric() {
1e542561783e Truffle: new value profiles prototype.
Christian Humer <christian.humer@gmail.com>
parents:
diff changeset
64 return getCachedValue() == GENERIC;
1e542561783e Truffle: new value profiles prototype.
Christian Humer <christian.humer@gmail.com>
parents:
diff changeset
65 }
1e542561783e Truffle: new value profiles prototype.
Christian Humer <christian.humer@gmail.com>
parents:
diff changeset
66
1e542561783e Truffle: new value profiles prototype.
Christian Humer <christian.humer@gmail.com>
parents:
diff changeset
67 public boolean isUninitialized() {
1e542561783e Truffle: new value profiles prototype.
Christian Humer <christian.humer@gmail.com>
parents:
diff changeset
68 return getCachedValue() == UNINITIALIZED;
1e542561783e Truffle: new value profiles prototype.
Christian Humer <christian.humer@gmail.com>
parents:
diff changeset
69 }
1e542561783e Truffle: new value profiles prototype.
Christian Humer <christian.humer@gmail.com>
parents:
diff changeset
70
1e542561783e Truffle: new value profiles prototype.
Christian Humer <christian.humer@gmail.com>
parents:
diff changeset
71 public Object getCachedValue() {
1e542561783e Truffle: new value profiles prototype.
Christian Humer <christian.humer@gmail.com>
parents:
diff changeset
72 return cachedValue;
1e542561783e Truffle: new value profiles prototype.
Christian Humer <christian.humer@gmail.com>
parents:
diff changeset
73 }
1e542561783e Truffle: new value profiles prototype.
Christian Humer <christian.humer@gmail.com>
parents:
diff changeset
74
1e542561783e Truffle: new value profiles prototype.
Christian Humer <christian.humer@gmail.com>
parents:
diff changeset
75 @Override
1e542561783e Truffle: new value profiles prototype.
Christian Humer <christian.humer@gmail.com>
parents:
diff changeset
76 public String toString() {
1e542561783e Truffle: new value profiles prototype.
Christian Humer <christian.humer@gmail.com>
parents:
diff changeset
77 return String.format("%s(%s)@%x", getClass().getSimpleName(), isUninitialized() ? "uninitialized" : (isGeneric() ? "generic" : String.format("@%x", Objects.hash(cachedValue))), hashCode());
1e542561783e Truffle: new value profiles prototype.
Christian Humer <christian.humer@gmail.com>
parents:
diff changeset
78 }
1e542561783e Truffle: new value profiles prototype.
Christian Humer <christian.humer@gmail.com>
parents:
diff changeset
79
1e542561783e Truffle: new value profiles prototype.
Christian Humer <christian.humer@gmail.com>
parents:
diff changeset
80 }