< prev index next >

src/jdk.vm.ci/share/classes/jdk.vm.ci.code/src/jdk/vm/ci/code/CallingConvention.java

Print this page

        

*** 20,32 **** * or visit www.oracle.com if you need additional information or have any * questions. */ package jdk.vm.ci.code; ! import static jdk.vm.ci.code.ValueUtil.*; ! ! import jdk.vm.ci.meta.*; /** * A calling convention describes the locations in which the arguments for a call are placed and the * location in which the return value is placed if the call is not void. */ --- 20,33 ---- * or visit www.oracle.com if you need additional information or have any * questions. */ package jdk.vm.ci.code; ! import static jdk.vm.ci.code.ValueUtil.isAllocatableValue; ! import static jdk.vm.ci.code.ValueUtil.isStackSlot; ! import jdk.vm.ci.meta.AllocatableValue; ! import jdk.vm.ci.meta.Value; /** * A calling convention describes the locations in which the arguments for a call are placed and the * location in which the return value is placed if the call is not void. */
< prev index next >