8067767: type inference performance regression

Overhaul implememntation of inference incorporation

Reviewed-by: vromero
This commit is contained in:
Maurizio Cimadamore 2015-11-19 16:43:11 +00:00
parent 54029caa26
commit 875bccb11e
11 changed files with 641 additions and 762 deletions

View file

@ -1304,7 +1304,7 @@ public class DPrinter {
for (UndetVar.InferenceBound ib: UndetVar.InferenceBound.values())
printList("bounds." + ib, type.getBounds(ib));
printInt("declaredCount", type.declaredCount);
printType("inst", type.inst, Details.SUMMARY);
printType("inst", type.getInst(), Details.SUMMARY);
return visitDelegatedType(type);
}