comparison graal/com.oracle.truffle.dsl.processor/src/com/oracle/truffle/dsl/processor/node/SpecializationData.java @ 12395:8e8347ecabbc

Truffle-DSL: implemented new polymorphic more compact generation strategy
author Christian Humer <christian.humer@gmail.com>
date Fri, 11 Oct 2013 20:05:55 +0200
parents b77721210bd6
children 980db6c0bcd3
comparison
equal deleted inserted replaced
12394:df3af5e007ad 12395:8e8347ecabbc
186 186
187 public int getOrder() { 187 public int getOrder() {
188 return order; 188 return order;
189 } 189 }
190 190
191 public boolean isSpecialized() {
192 return !isGeneric() && !isUninitialized() && !isPolymorphic();
193 }
194
191 public boolean isGeneric() { 195 public boolean isGeneric() {
192 return generic; 196 return generic;
193 } 197 }
194 198
195 public boolean isUninitialized() { 199 public boolean isUninitialized() {