comparison graal/com.oracle.truffle.dsl.processor/src/com/oracle/truffle/dsl/processor/typesystem/TypeSystemData.java @ 16755:bd28da642eea

Truffle-DSL: Several new features implemented: Implementation of a new code generation layout which shares code between generated nodes. Declaration order of specializations is now used as specialization order. Specializations do no longer perform fallthrough on respecialization, they now always respecialize from the first specialization. Implemented support for contains relations between specializations. Improved reachability error messages. Preliminary support for @Implies.
author Christian Humer <christian.humer@gmail.com>
date Mon, 11 Aug 2014 15:53:05 +0200
parents 2fb276f5e3e9
children
comparison
equal deleted inserted replaced
16754:55fd5be68a52 16755:bd28da642eea
41 private List<TypeCheckData> checks; 41 private List<TypeCheckData> checks;
42 42
43 private TypeMirror genericType; 43 private TypeMirror genericType;
44 private TypeData voidType; 44 private TypeData voidType;
45 45
46 public TypeSystemData(TypeElement templateType, AnnotationMirror annotation) { 46 public TypeSystemData(ProcessorContext context, TypeElement templateType, AnnotationMirror annotation) {
47 super(templateType, null, annotation); 47 super(context, templateType, null, annotation);
48 } 48 }
49 49
50 @Override 50 @Override
51 public TypeSystemData getTypeSystem() { 51 public TypeSystemData getTypeSystem() {
52 return this; 52 return this;