annotate truffle/com.oracle.truffle.api.test/src/com/oracle/truffle/api/profiles/BranchProfileTest.java @ 22526:a5e58793bbca

BranchProfile Javadoc sample was uncompilable. Fixed with the help of codesnippet tag.
author Jaroslav Tulach <jaroslav.tulach@oracle.com>
date Wed, 30 Dec 2015 11:06:33 +0100
parents a63bda98cfdb
children 4ba1aa33fda4
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
13335
8531c47138dc Truffle: introduced new profiling utility BranchProfile.
Christian Humer <christian.humer@gmail.com>
parents:
diff changeset
1 /*
8531c47138dc Truffle: introduced new profiling utility BranchProfile.
Christian Humer <christian.humer@gmail.com>
parents:
diff changeset
2 * Copyright (c) 2013, Oracle and/or its affiliates. All rights reserved.
8531c47138dc Truffle: introduced new profiling utility BranchProfile.
Christian Humer <christian.humer@gmail.com>
parents:
diff changeset
3 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
8531c47138dc Truffle: introduced new profiling utility BranchProfile.
Christian Humer <christian.humer@gmail.com>
parents:
diff changeset
4 *
8531c47138dc Truffle: introduced new profiling utility BranchProfile.
Christian Humer <christian.humer@gmail.com>
parents:
diff changeset
5 * This code is free software; you can redistribute it and/or modify it
8531c47138dc Truffle: introduced new profiling utility BranchProfile.
Christian Humer <christian.humer@gmail.com>
parents:
diff changeset
6 * under the terms of the GNU General Public License version 2 only, as
8531c47138dc Truffle: introduced new profiling utility BranchProfile.
Christian Humer <christian.humer@gmail.com>
parents:
diff changeset
7 * published by the Free Software Foundation.
8531c47138dc Truffle: introduced new profiling utility BranchProfile.
Christian Humer <christian.humer@gmail.com>
parents:
diff changeset
8 *
8531c47138dc Truffle: introduced new profiling utility BranchProfile.
Christian Humer <christian.humer@gmail.com>
parents:
diff changeset
9 * This code is distributed in the hope that it will be useful, but WITHOUT
8531c47138dc Truffle: introduced new profiling utility BranchProfile.
Christian Humer <christian.humer@gmail.com>
parents:
diff changeset
10 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
8531c47138dc Truffle: introduced new profiling utility BranchProfile.
Christian Humer <christian.humer@gmail.com>
parents:
diff changeset
11 * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
8531c47138dc Truffle: introduced new profiling utility BranchProfile.
Christian Humer <christian.humer@gmail.com>
parents:
diff changeset
12 * version 2 for more details (a copy is included in the LICENSE file that
8531c47138dc Truffle: introduced new profiling utility BranchProfile.
Christian Humer <christian.humer@gmail.com>
parents:
diff changeset
13 * accompanied this code).
8531c47138dc Truffle: introduced new profiling utility BranchProfile.
Christian Humer <christian.humer@gmail.com>
parents:
diff changeset
14 *
8531c47138dc Truffle: introduced new profiling utility BranchProfile.
Christian Humer <christian.humer@gmail.com>
parents:
diff changeset
15 * You should have received a copy of the GNU General Public License version
8531c47138dc Truffle: introduced new profiling utility BranchProfile.
Christian Humer <christian.humer@gmail.com>
parents:
diff changeset
16 * 2 along with this work; if not, write to the Free Software Foundation,
8531c47138dc Truffle: introduced new profiling utility BranchProfile.
Christian Humer <christian.humer@gmail.com>
parents:
diff changeset
17 * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
8531c47138dc Truffle: introduced new profiling utility BranchProfile.
Christian Humer <christian.humer@gmail.com>
parents:
diff changeset
18 *
8531c47138dc Truffle: introduced new profiling utility BranchProfile.
Christian Humer <christian.humer@gmail.com>
parents:
diff changeset
19 * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
8531c47138dc Truffle: introduced new profiling utility BranchProfile.
Christian Humer <christian.humer@gmail.com>
parents:
diff changeset
20 * or visit www.oracle.com if you need additional information or have any
8531c47138dc Truffle: introduced new profiling utility BranchProfile.
Christian Humer <christian.humer@gmail.com>
parents:
diff changeset
21 * questions.
8531c47138dc Truffle: introduced new profiling utility BranchProfile.
Christian Humer <christian.humer@gmail.com>
parents:
diff changeset
22 */
22501
a63bda98cfdb Extract profiles into separate package. Add isProfilingEnabled in TruffleRuntime to disable profiling in the default runtime; Add low overhead profiles for primitives; Add LoopConditionProfile; Profile footprint/threadsafety improvements; Make toString implementations more consistent; Greatly enhanced javadoc documentation for profiles; Deprecate old profiles
Christian Humer <christian.humer@oracle.com>
parents: 22425
diff changeset
23 package com.oracle.truffle.api.profiles;
13335
8531c47138dc Truffle: introduced new profiling utility BranchProfile.
Christian Humer <christian.humer@gmail.com>
parents:
diff changeset
24
22526
a5e58793bbca BranchProfile Javadoc sample was uncompilable. Fixed with the help of codesnippet tag.
Jaroslav Tulach <jaroslav.tulach@oracle.com>
parents: 22501
diff changeset
25 import com.oracle.truffle.api.nodes.Node;
22157
dc83cc1f94f2 Using fully qualified imports
Jaroslav Tulach <jaroslav.tulach@oracle.com>
parents: 21951
diff changeset
26 import static org.junit.Assert.assertTrue;
22425
b39b603e2a1e Organize imports after rename.
Christian Humer <christian.humer@oracle.com>
parents: 22424
diff changeset
27
22157
dc83cc1f94f2 Using fully qualified imports
Jaroslav Tulach <jaroslav.tulach@oracle.com>
parents: 21951
diff changeset
28 import org.junit.Test;
13335
8531c47138dc Truffle: introduced new profiling utility BranchProfile.
Christian Humer <christian.humer@gmail.com>
parents:
diff changeset
29
8531c47138dc Truffle: introduced new profiling utility BranchProfile.
Christian Humer <christian.humer@gmail.com>
parents:
diff changeset
30 public class BranchProfileTest {
8531c47138dc Truffle: introduced new profiling utility BranchProfile.
Christian Humer <christian.humer@gmail.com>
parents:
diff changeset
31
8531c47138dc Truffle: introduced new profiling utility BranchProfile.
Christian Humer <christian.humer@gmail.com>
parents:
diff changeset
32 @Test
8531c47138dc Truffle: introduced new profiling utility BranchProfile.
Christian Humer <christian.humer@gmail.com>
parents:
diff changeset
33 public void testEnter() {
22501
a63bda98cfdb Extract profiles into separate package. Add isProfilingEnabled in TruffleRuntime to disable profiling in the default runtime; Add low overhead profiles for primitives; Add LoopConditionProfile; Profile footprint/threadsafety improvements; Make toString implementations more consistent; Greatly enhanced javadoc documentation for profiles; Deprecate old profiles
Christian Humer <christian.humer@oracle.com>
parents: 22425
diff changeset
34 BranchProfile profile = BranchProfile.Enabled.create0();
13335
8531c47138dc Truffle: introduced new profiling utility BranchProfile.
Christian Humer <christian.humer@gmail.com>
parents:
diff changeset
35 profile.enter();
8531c47138dc Truffle: introduced new profiling utility BranchProfile.
Christian Humer <christian.humer@gmail.com>
parents:
diff changeset
36 profile.enter();
8531c47138dc Truffle: introduced new profiling utility BranchProfile.
Christian Humer <christian.humer@gmail.com>
parents:
diff changeset
37 }
8531c47138dc Truffle: introduced new profiling utility BranchProfile.
Christian Humer <christian.humer@gmail.com>
parents:
diff changeset
38
14990
a0200c215fb2 Include the visited state in BranchProfile#toString, so it shows up in printed ASTs.
Chris Seaton <chris.seaton@oracle.com>
parents: 13335
diff changeset
39 @Test
a0200c215fb2 Include the visited state in BranchProfile#toString, so it shows up in printed ASTs.
Chris Seaton <chris.seaton@oracle.com>
parents: 13335
diff changeset
40 public void testToString() {
22501
a63bda98cfdb Extract profiles into separate package. Add isProfilingEnabled in TruffleRuntime to disable profiling in the default runtime; Add low overhead profiles for primitives; Add LoopConditionProfile; Profile footprint/threadsafety improvements; Make toString implementations more consistent; Greatly enhanced javadoc documentation for profiles; Deprecate old profiles
Christian Humer <christian.humer@oracle.com>
parents: 22425
diff changeset
41 BranchProfile profile = BranchProfile.Enabled.create0();
a63bda98cfdb Extract profiles into separate package. Add isProfilingEnabled in TruffleRuntime to disable profiling in the default runtime; Add low overhead profiles for primitives; Add LoopConditionProfile; Profile footprint/threadsafety improvements; Make toString implementations more consistent; Greatly enhanced javadoc documentation for profiles; Deprecate old profiles
Christian Humer <christian.humer@oracle.com>
parents: 22425
diff changeset
42 assertTrue(profile.toString().contains(BranchProfile.class.getSimpleName()));
a63bda98cfdb Extract profiles into separate package. Add isProfilingEnabled in TruffleRuntime to disable profiling in the default runtime; Add low overhead profiles for primitives; Add LoopConditionProfile; Profile footprint/threadsafety improvements; Make toString implementations more consistent; Greatly enhanced javadoc documentation for profiles; Deprecate old profiles
Christian Humer <christian.humer@oracle.com>
parents: 22425
diff changeset
43 assertTrue(profile.toString().contains("UNINITIALIZED"));
14990
a0200c215fb2 Include the visited state in BranchProfile#toString, so it shows up in printed ASTs.
Chris Seaton <chris.seaton@oracle.com>
parents: 13335
diff changeset
44 assertTrue(profile.toString().contains(Integer.toHexString(profile.hashCode())));
a0200c215fb2 Include the visited state in BranchProfile#toString, so it shows up in printed ASTs.
Chris Seaton <chris.seaton@oracle.com>
parents: 13335
diff changeset
45 profile.enter();
22501
a63bda98cfdb Extract profiles into separate package. Add isProfilingEnabled in TruffleRuntime to disable profiling in the default runtime; Add low overhead profiles for primitives; Add LoopConditionProfile; Profile footprint/threadsafety improvements; Make toString implementations more consistent; Greatly enhanced javadoc documentation for profiles; Deprecate old profiles
Christian Humer <christian.humer@oracle.com>
parents: 22425
diff changeset
46 assertTrue(profile.toString().contains(BranchProfile.class.getSimpleName()));
a63bda98cfdb Extract profiles into separate package. Add isProfilingEnabled in TruffleRuntime to disable profiling in the default runtime; Add low overhead profiles for primitives; Add LoopConditionProfile; Profile footprint/threadsafety improvements; Make toString implementations more consistent; Greatly enhanced javadoc documentation for profiles; Deprecate old profiles
Christian Humer <christian.humer@oracle.com>
parents: 22425
diff changeset
47 assertTrue(profile.toString().contains("VISITED"));
14990
a0200c215fb2 Include the visited state in BranchProfile#toString, so it shows up in printed ASTs.
Chris Seaton <chris.seaton@oracle.com>
parents: 13335
diff changeset
48 assertTrue(profile.toString().contains(Integer.toHexString(profile.hashCode())));
a0200c215fb2 Include the visited state in BranchProfile#toString, so it shows up in printed ASTs.
Chris Seaton <chris.seaton@oracle.com>
parents: 13335
diff changeset
49 }
a0200c215fb2 Include the visited state in BranchProfile#toString, so it shows up in printed ASTs.
Chris Seaton <chris.seaton@oracle.com>
parents: 13335
diff changeset
50
22526
a5e58793bbca BranchProfile Javadoc sample was uncompilable. Fixed with the help of codesnippet tag.
Jaroslav Tulach <jaroslav.tulach@oracle.com>
parents: 22501
diff changeset
51 // BEGIN: BranchProfileSample
a5e58793bbca BranchProfile Javadoc sample was uncompilable. Fixed with the help of codesnippet tag.
Jaroslav Tulach <jaroslav.tulach@oracle.com>
parents: 22501
diff changeset
52 class SampleNode extends Node {
a5e58793bbca BranchProfile Javadoc sample was uncompilable. Fixed with the help of codesnippet tag.
Jaroslav Tulach <jaroslav.tulach@oracle.com>
parents: 22501
diff changeset
53 final BranchProfile errorProfile = BranchProfile.create();
a5e58793bbca BranchProfile Javadoc sample was uncompilable. Fixed with the help of codesnippet tag.
Jaroslav Tulach <jaroslav.tulach@oracle.com>
parents: 22501
diff changeset
54
a5e58793bbca BranchProfile Javadoc sample was uncompilable. Fixed with the help of codesnippet tag.
Jaroslav Tulach <jaroslav.tulach@oracle.com>
parents: 22501
diff changeset
55 int execute(int value) {
a5e58793bbca BranchProfile Javadoc sample was uncompilable. Fixed with the help of codesnippet tag.
Jaroslav Tulach <jaroslav.tulach@oracle.com>
parents: 22501
diff changeset
56 if (value == Integer.MAX_VALUE) {
a5e58793bbca BranchProfile Javadoc sample was uncompilable. Fixed with the help of codesnippet tag.
Jaroslav Tulach <jaroslav.tulach@oracle.com>
parents: 22501
diff changeset
57 errorProfile.enter();
a5e58793bbca BranchProfile Javadoc sample was uncompilable. Fixed with the help of codesnippet tag.
Jaroslav Tulach <jaroslav.tulach@oracle.com>
parents: 22501
diff changeset
58 throw new Error("Invalid input value");
a5e58793bbca BranchProfile Javadoc sample was uncompilable. Fixed with the help of codesnippet tag.
Jaroslav Tulach <jaroslav.tulach@oracle.com>
parents: 22501
diff changeset
59 }
a5e58793bbca BranchProfile Javadoc sample was uncompilable. Fixed with the help of codesnippet tag.
Jaroslav Tulach <jaroslav.tulach@oracle.com>
parents: 22501
diff changeset
60 return value;
a5e58793bbca BranchProfile Javadoc sample was uncompilable. Fixed with the help of codesnippet tag.
Jaroslav Tulach <jaroslav.tulach@oracle.com>
parents: 22501
diff changeset
61 }
a5e58793bbca BranchProfile Javadoc sample was uncompilable. Fixed with the help of codesnippet tag.
Jaroslav Tulach <jaroslav.tulach@oracle.com>
parents: 22501
diff changeset
62 }
a5e58793bbca BranchProfile Javadoc sample was uncompilable. Fixed with the help of codesnippet tag.
Jaroslav Tulach <jaroslav.tulach@oracle.com>
parents: 22501
diff changeset
63 // END: BranchProfileSample
13335
8531c47138dc Truffle: introduced new profiling utility BranchProfile.
Christian Humer <christian.humer@gmail.com>
parents:
diff changeset
64 }