use of com.dat3m.dartagnan.parsers.program.utils.ProgramBuilder in project Dat3M by hernanponcedeleon.
the class AnalysisTest method program2.
private void program2(Alias method, Result... expect) throws InvalidConfigurationException {
ProgramBuilder b = new ProgramBuilder(SourceLanguage.LITMUS);
MemoryObject x = b.newObject("x", 3);
b.initThread(0);
Register r0 = b.getOrCreateRegister(0, "r0", ARCH_PRECISION);
b.addChild(0, newLocal(r0, new INonDet(INonDetTypes.INT, ARCH_PRECISION)));
Label l0 = b.getOrCreateLabel("l0");
b.addChild(0, newJump(new BExprBin(new Atom(r0, GT, ONE), BOpBin.OR, new Atom(r0, LT, ZERO)), l0));
Store e0 = newStore(x);
b.addChild(0, e0);
Store e1 = newStore(plus(x, 1));
b.addChild(0, e1);
Store e2 = newStore(plus(x, 2));
b.addChild(0, e2);
Register r1 = b.getOrCreateRegister(0, "r1", ARCH_PRECISION);
b.addChild(0, newLocal(r1, ZERO));
Store e3 = newStore(new IExprBin(new IExprBin(x, PLUS, mult(r0, 2)), PLUS, mult(r1, 4)));
b.addChild(0, e3);
b.addChild(0, l0);
AliasAnalysis a = analyze(b, method);
assertAlias(expect[0], a, e0, e1);
assertAlias(expect[1], a, e0, e2);
assertAlias(expect[2], a, e1, e2);
assertAlias(expect[3], a, e0, e3);
assertAlias(expect[4], a, e1, e3);
assertAlias(expect[5], a, e2, e3);
}
use of com.dat3m.dartagnan.parsers.program.utils.ProgramBuilder in project Dat3M by hernanponcedeleon.
the class AnalysisTest method program5.
private void program5(Alias method, Result... expect) throws InvalidConfigurationException {
ProgramBuilder b = new ProgramBuilder(SourceLanguage.LITMUS);
MemoryObject x = b.getOrNewObject("x");
MemoryObject y = b.getOrNewObject("y");
MemoryObject z = b.getOrNewObject("z");
b.initThread(0);
Register r0 = b.getOrCreateRegister(0, "r0", ARCH_PRECISION);
b.addChild(0, newLocal(r0, y));
Store e0 = newStore(r0);
b.addChild(0, e0);
b.addChild(0, newLocal(r0, mult(x, 0)));
Store e1 = newStore(x);
b.addChild(0, e1);
Store e2 = newStore(y);
b.addChild(0, e2);
Store e3 = newStore(z);
b.addChild(0, e3);
AliasAnalysis a = analyze(b, method);
// precisely no
assertAlias(expect[0], a, e0, e1);
// precisely must
assertAlias(expect[1], a, e0, e2);
assertAlias(expect[2], a, e1, e2);
assertAlias(expect[3], a, e0, e3);
assertAlias(expect[4], a, e1, e3);
assertAlias(expect[5], a, e2, e3);
}
use of com.dat3m.dartagnan.parsers.program.utils.ProgramBuilder in project Dat3M by hernanponcedeleon.
the class AnalysisTest method program1.
private void program1(Alias method, Result... expect) throws InvalidConfigurationException {
ProgramBuilder b = new ProgramBuilder(SourceLanguage.LITMUS);
MemoryObject x = b.newObject("x", 3);
x.setInitialValue(0, x);
b.initThread(0);
Store e0 = newStore(plus(x, 1));
b.addChild(0, e0);
Register r0 = b.getOrCreateRegister(0, "r0", ARCH_PRECISION);
Load e1 = newLoad(r0, x);
b.addChild(0, e1);
Store e2 = newStore(r0);
b.addChild(0, e2);
Store e3 = newStore(plus(r0, 1), r0);
b.addChild(0, e3);
AliasAnalysis a = analyze(b, method);
assertAlias(expect[0], a, e0, e1);
assertAlias(expect[1], a, e0, e2);
assertAlias(expect[2], a, e1, e2);
assertAlias(expect[3], a, e0, e3);
assertAlias(expect[4], a, e1, e3);
assertAlias(expect[5], a, e2, e3);
}
use of com.dat3m.dartagnan.parsers.program.utils.ProgramBuilder in project Dat3M by hernanponcedeleon.
the class ExceptionsTest method initializedBeforeCompileException.
@Test(expected = IllegalArgumentException.class)
public void initializedBeforeCompileException() throws Exception {
ProgramBuilder pb = new ProgramBuilder(SourceLanguage.LITMUS);
pb.initThread(0);
Program p = pb.build();
Wmm cat = new ParserCat().parse(new File(ResourceHelper.CAT_RESOURCE_PATH + "cat/tso.cat"));
Configuration config = Configuration.defaultConfiguration();
VerificationTask task = VerificationTask.builder().withConfig(config).build(p, cat, EnumSet.of(Property.getDefault()));
// The program must be compiled before being able to construct an Encoder for it
ProgramEncoder.fromConfig(task.getProgram(), Context.create(), config);
}
use of com.dat3m.dartagnan.parsers.program.utils.ProgramBuilder in project Dat3M by hernanponcedeleon.
the class ExceptionsTest method noThread.
@Test(expected = MalformedProgramException.class)
public void noThread() throws Exception {
ProgramBuilder pb = new ProgramBuilder(SourceLanguage.LITMUS);
// Thread 1 does not exists
pb.addChild(1, new Skip());
}
Aggregations