annotate truffle/com.oracle.truffle.api.test/src/com/oracle/truffle/api/profiles/BranchProfileTest.java @ 22548:6b76a24fffbd default tip

Use all variables: a, b, u,v and x, y
author Jaroslav Tulach <jaroslav.tulach@oracle.com>
date Thu, 14 Jan 2016 14:20:57 +0100
parents 4ba1aa33fda4
children
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;
22530
4ba1aa33fda4 Run all tests with SeparateClassLoaderRunner to ensure package private methods are accessible even if the truffle.jar is on bootclasspath.
Jaroslav Tulach <jaroslav.tulach@oracle.com>
parents: 22526
diff changeset
29 import org.junit.runner.RunWith;
13335
8531c47138dc Truffle: introduced new profiling utility BranchProfile.
Christian Humer <christian.humer@gmail.com>
parents:
diff changeset
30
22530
4ba1aa33fda4 Run all tests with SeparateClassLoaderRunner to ensure package private methods are accessible even if the truffle.jar is on bootclasspath.
Jaroslav Tulach <jaroslav.tulach@oracle.com>
parents: 22526
diff changeset
31 @RunWith(SeparateClassloaderTestRunner.class)
13335
8531c47138dc Truffle: introduced new profiling utility BranchProfile.
Christian Humer <christian.humer@gmail.com>
parents:
diff changeset
32 public class BranchProfileTest {
8531c47138dc Truffle: introduced new profiling utility BranchProfile.
Christian Humer <christian.humer@gmail.com>
parents:
diff changeset
33
8531c47138dc Truffle: introduced new profiling utility BranchProfile.
Christian Humer <christian.humer@gmail.com>
parents:
diff changeset
34 @Test
8531c47138dc Truffle: introduced new profiling utility BranchProfile.
Christian Humer <christian.humer@gmail.com>
parents:
diff changeset
35 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
36 BranchProfile profile = BranchProfile.Enabled.create0();
13335
8531c47138dc Truffle: introduced new profiling utility BranchProfile.
Christian Humer <christian.humer@gmail.com>
parents:
diff changeset
37 profile.enter();
8531c47138dc Truffle: introduced new profiling utility BranchProfile.
Christian Humer <christian.humer@gmail.com>
parents:
diff changeset
38 profile.enter();
8531c47138dc Truffle: introduced new profiling utility BranchProfile.
Christian Humer <christian.humer@gmail.com>
parents:
diff changeset
39 }
8531c47138dc Truffle: introduced new profiling utility BranchProfile.
Christian Humer <christian.humer@gmail.com>
parents:
diff changeset
40
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
41 @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
42 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
43 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
44 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
45 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
46 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
47 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
48 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
49 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
50 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
51 }
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
52
22526
a5e58793bbca BranchProfile Javadoc sample was uncompilable. Fixed with the help of codesnippet tag.
Jaroslav Tulach <jaroslav.tulach@oracle.com>
parents: 22501
diff changeset
53 // 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
54 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
55 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
56
a5e58793bbca BranchProfile Javadoc sample was uncompilable. Fixed with the help of codesnippet tag.
Jaroslav Tulach <jaroslav.tulach@oracle.com>
parents: 22501
diff changeset
57 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
58 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
59 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
60 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
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 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
63 }
a5e58793bbca BranchProfile Javadoc sample was uncompilable. Fixed with the help of codesnippet tag.
Jaroslav Tulach <jaroslav.tulach@oracle.com>
parents: 22501
diff changeset
64 }
a5e58793bbca BranchProfile Javadoc sample was uncompilable. Fixed with the help of codesnippet tag.
Jaroslav Tulach <jaroslav.tulach@oracle.com>
parents: 22501
diff changeset
65 // END: BranchProfileSample
13335
8531c47138dc Truffle: introduced new profiling utility BranchProfile.
Christian Humer <christian.humer@gmail.com>
parents:
diff changeset
66 }