X-Git-Url: http://plrg.eecs.uci.edu/git/?p=IRC.git;a=blobdiff_plain;f=Robust%2Fsrc%2FAnalysis%2FDisjoint%2FAllocSite.java;h=b41a5405918cbe62005ed066ec65c4f447b1d515;hp=7c1961b139fce9a558a3679fbbbc76a2dc1d95d4;hb=bdc086e2ec7fcc674a604906627b52e16fba7eb3;hpb=eb17be02c22191b3fc7bdc335d9434ada68278de diff --git a/Robust/src/Analysis/Disjoint/AllocSite.java b/Robust/src/Analysis/Disjoint/AllocSite.java index 7c1961b1..b41a5405 100644 --- a/Robust/src/Analysis/Disjoint/AllocSite.java +++ b/Robust/src/Analysis/Disjoint/AllocSite.java @@ -184,7 +184,7 @@ public class AllocSite extends Canonical implements Alloc { for( int i = 0; i < allocationDepth - 1; ++i ) { if( id.equals(ithOldest.get(i) ) ) { - return AGE_in_I; + return AGE_in_I; } } @@ -194,7 +194,7 @@ public class AllocSite extends Canonical implements Alloc { public Integer getAge(Integer id) { for( int i = 0; i < allocationDepth; ++i ) { if( id.equals(ithOldest.get(i) ) ) { - return new Integer(i); + return new Integer(i); } } @@ -212,7 +212,7 @@ public class AllocSite extends Canonical implements Alloc { for( int i = 0; i < allocationDepth - 1; ++i ) { if( id.equals(getIthOldestShadow(i) ) ) { - return SHADOWAGE_in_I; + return SHADOWAGE_in_I; } } @@ -222,7 +222,7 @@ public class AllocSite extends Canonical implements Alloc { public Integer getShadowAge(Integer id) { for( int i = 0; i < allocationDepth - 1; ++i ) { if( id.equals(getIthOldestShadow(i) ) ) { - return new Integer(-i); + return new Integer(-i); } }