comparison truffle/com.oracle.truffle.api/src/com/oracle/truffle/api/utilities/BranchProfile.java @ 22157:dc83cc1f94f2

Using fully qualified imports
author Jaroslav Tulach <jaroslav.tulach@oracle.com>
date Wed, 16 Sep 2015 11:33:22 +0200
parents 9c8c0937da41
children a63bda98cfdb
comparison
equal deleted inserted replaced
22156:50056a161d7f 22157:dc83cc1f94f2
22 * or visit www.oracle.com if you need additional information or have any 22 * or visit www.oracle.com if you need additional information or have any
23 * questions. 23 * questions.
24 */ 24 */
25 package com.oracle.truffle.api.utilities; 25 package com.oracle.truffle.api.utilities;
26 26
27 import com.oracle.truffle.api.*; 27 import com.oracle.truffle.api.CompilerDirectives;
28 import com.oracle.truffle.api.CompilerDirectives.CompilationFinal; 28 import com.oracle.truffle.api.CompilerDirectives.CompilationFinal;
29 import com.oracle.truffle.api.nodes.*; 29 import com.oracle.truffle.api.nodes.NodeCloneable;
30 30
31 /** 31 /**
32 * Utility class to speculate on branches to be never visited. If the {@link #enter()} method is 32 * Utility class to speculate on branches to be never visited. If the {@link #enter()} method is
33 * invoked first the optimized code is invalidated and the branch where {@link #enter()} is invoked 33 * invoked first the optimized code is invalidated and the branch where {@link #enter()} is invoked
34 * is enabled for compilation. Otherwise if the {@link #enter()} method was never invoked the branch 34 * is enabled for compilation. Otherwise if the {@link #enter()} method was never invoked the branch