comparison graal/com.oracle.max.cri/src/com/oracle/max/cri/ci/CiRuntimeCall.java @ 5503:438ab53efdd0

Renaming CiKind => RiKind.
author Thomas Wuerthinger <thomas.wuerthinger@oracle.com>
date Thu, 07 Jun 2012 17:08:33 +0200
parents cd298550a597
children 452f91ebdb54
comparison
equal deleted inserted replaced
5502:13aee5aba8cc 5503:438ab53efdd0
20 * or visit www.oracle.com if you need additional information or have any 20 * or visit www.oracle.com if you need additional information or have any
21 * questions. 21 * questions.
22 */ 22 */
23 package com.oracle.max.cri.ci; 23 package com.oracle.max.cri.ci;
24 24
25 import static com.oracle.max.cri.ci.CiKind.*; 25 import static com.oracle.max.cri.ci.RiKind.*;
26 26
27 /** 27 /**
28 * Enumerates the calls that must be provided by the runtime system. The compiler 28 * Enumerates the calls that must be provided by the runtime system. The compiler
29 * may generate code that calls the runtime services for unresolved and slow cases of some 29 * may generate code that calls the runtime services for unresolved and slow cases of some
30 * bytecodes. 30 * bytecodes.
44 ArithmeticCos(Double, Double), 44 ArithmeticCos(Double, Double),
45 ArithmeticTan(Double, Double), 45 ArithmeticTan(Double, Double),
46 ArithmeticSin(Double, Double), 46 ArithmeticSin(Double, Double),
47 GenericCallback(Object, Object, Object); 47 GenericCallback(Object, Object, Object);
48 48
49 public final CiKind resultKind; 49 public final RiKind resultKind;
50 public final CiKind[] arguments; 50 public final RiKind[] arguments;
51 51
52 private CiRuntimeCall(CiKind resultKind, CiKind... args) { 52 private CiRuntimeCall(RiKind resultKind, RiKind... args) {
53 this.resultKind = resultKind; 53 this.resultKind = resultKind;
54 this.arguments = args; 54 this.arguments = args;
55 } 55 }
56 } 56 }