comparison graal/com.oracle.graal.hotspot/src/com/oracle/graal/hotspot/nodes/NewMultiArrayStubCall.java @ 11959:23ccaa863eda

made CodeCacheProvider independent of MetaAccessProvider (GRAAL-511)
author Doug Simon <doug.simon@oracle.com>
date Thu, 10 Oct 2013 16:14:55 +0200
parents b4f12c603be5
children ec57cc36371e
comparison
equal deleted inserted replaced
11958:a0f5be106e67 11959:23ccaa863eda
41 @Input private ValueNode dims; 41 @Input private ValueNode dims;
42 private final int rank; 42 private final int rank;
43 43
44 public static final ForeignCallDescriptor NEW_MULTI_ARRAY = new ForeignCallDescriptor("new_multi_array", Object.class, Word.class, int.class, Word.class); 44 public static final ForeignCallDescriptor NEW_MULTI_ARRAY = new ForeignCallDescriptor("new_multi_array", Object.class, Word.class, int.class, Word.class);
45 45
46 public NewMultiArrayStubCall(MetaAccessProvider runtime, ValueNode hub, int rank, ValueNode dims) { 46 public NewMultiArrayStubCall(MetaAccessProvider metaAccess, ValueNode hub, int rank, ValueNode dims) {
47 super(runtime, NEW_MULTI_ARRAY, defaultStamp); 47 super(metaAccess, NEW_MULTI_ARRAY, defaultStamp);
48 this.hub = hub; 48 this.hub = hub;
49 this.rank = rank; 49 this.rank = rank;
50 this.dims = dims; 50 this.dims = dims;
51 } 51 }
52 52