Methods Summary |
---|
public abstract int | getNewRegisterCount()Gets the count of registers (really, the total register width, since
category width is counted) in the new namespace.
|
public abstract com.android.dx.rop.code.RegisterSpec | map(com.android.dx.rop.code.RegisterSpec registerSpec)
|
public final com.android.dx.rop.code.RegisterSpecList | map(com.android.dx.rop.code.RegisterSpecList sources)
int sz = sources.size();
RegisterSpecList newSources = new RegisterSpecList(sz);
for (int i = 0; i < sz; i++) {
newSources.set(i, map(sources.get(i)));
}
newSources.setImmutable();
// Return the old sources if nothing has changed.
return newSources.equals(sources) ? sources : newSources;
|
public final com.android.dx.rop.code.RegisterSpecSet | map(com.android.dx.rop.code.RegisterSpecSet sources)
int sz = sources.getMaxSize();
RegisterSpecSet newSources = new RegisterSpecSet(getNewRegisterCount());
for (int i = 0; i < sz; i++) {
RegisterSpec registerSpec = sources.get(i);
if (registerSpec != null) {
newSources.put(map(registerSpec));
}
}
newSources.setImmutable();
// Return the old sources if nothing has changed.
return newSources.equals(sources) ? sources : newSources;
|