comparison graal/com.oracle.max.cri/src/com/oracle/max/cri/ri/RiSignature.java @ 5503:438ab53efdd0

Renaming CiKind => RiKind.
author Thomas Wuerthinger <thomas.wuerthinger@oracle.com>
date Thu, 07 Jun 2012 17:08:33 +0200
parents 14a00ee82980
children 452f91ebdb54
comparison
equal deleted inserted replaced
5502:13aee5aba8cc 5503:438ab53efdd0
56 * @param index the index into the parameters, with {@code 0} indicating the first parameter 56 * @param index the index into the parameters, with {@code 0} indicating the first parameter
57 * @param architecture When true, the architecture-specific kind used for emitting machine code is returned. 57 * @param architecture When true, the architecture-specific kind used for emitting machine code is returned.
58 * When false, the kind according to the Java specification is returned. 58 * When false, the kind according to the Java specification is returned.
59 * @return the kind of the argument at the specified position 59 * @return the kind of the argument at the specified position
60 */ 60 */
61 CiKind argumentKindAt(int index, boolean architecture); 61 RiKind argumentKindAt(int index, boolean architecture);
62 62
63 /** 63 /**
64 * Gets the return type of this signature. This method will return a 64 * Gets the return type of this signature. This method will return a
65 * {@linkplain RiResolvedType resolved} type if possible but without 65 * {@linkplain RiResolvedType resolved} type if possible but without
66 * triggering any class loading or resolution. 66 * triggering any class loading or resolution.
76 * Gets the return kind of this signature. 76 * Gets the return kind of this signature.
77 * @param architectureSpecific When true, the architecture-specific kind used for emitting machine code is returned. 77 * @param architectureSpecific When true, the architecture-specific kind used for emitting machine code is returned.
78 * When false, the kind according to the Java specification is returned. 78 * When false, the kind according to the Java specification is returned.
79 * @return the return kind 79 * @return the return kind
80 */ 80 */
81 CiKind returnKind(boolean architectureSpecific); 81 RiKind returnKind(boolean architectureSpecific);
82 82
83 /** 83 /**
84 * Converts this signature to a string. 84 * Converts this signature to a string.
85 * @return the signature as a string 85 * @return the signature as a string
86 */ 86 */