summaryrefslogtreecommitdiff
path: root/Source
diff options
context:
space:
mode:
authorGravatar qadeer <unknown>2010-09-03 15:16:11 +0000
committerGravatar qadeer <unknown>2010-09-03 15:16:11 +0000
commitc3a0562a1e4b713690b6d78d59316f9df41bc99f (patch)
treea743d12877daecf9a022d12c1c5a734d4c2e00be /Source
parent2cb457d3ce46e12450117f8e36f801fd50cd05bf (diff)
Added a fix to extract loops code so that it returns a more comprehensive map of block names to original blocks.
Diffstat (limited to 'Source')
-rw-r--r--Source/BoogieDriver/BoogieDriver.csproj4
-rw-r--r--Source/Core/Absy.cs33
2 files changed, 23 insertions, 14 deletions
diff --git a/Source/BoogieDriver/BoogieDriver.csproj b/Source/BoogieDriver/BoogieDriver.csproj
index e5c52add..96d68bec 100644
--- a/Source/BoogieDriver/BoogieDriver.csproj
+++ b/Source/BoogieDriver/BoogieDriver.csproj
@@ -136,10 +136,6 @@
<Project>{9B163AA3-36BC-4AFB-88AB-79BC9E97E401}</Project>
<Name>SMTLib</Name>
</ProjectReference>
- <ProjectReference Include="..\Provers\Z3api\Z3api.csproj">
- <Project>{966DD87B-A29D-4F3C-9406-F680A61DC0E0}</Project>
- <Name>Z3api</Name>
- </ProjectReference>
<ProjectReference Include="..\Provers\Z3\Z3.csproj">
<Project>{BB49B90B-BE21-4BE8-85BA-359FDB55F4DF}</Project>
<Name>Z3</Name>
diff --git a/Source/Core/Absy.cs b/Source/Core/Absy.cs
index 52b802a8..338f08a6 100644
--- a/Source/Core/Absy.cs
+++ b/Source/Core/Absy.cs
@@ -359,7 +359,9 @@ namespace Microsoft.Boogie {
}
}
- void CreateProceduresForLoops(Implementation impl, Graph<Block/*!*/>/*!*/ g, List<Implementation/*!*/>/*!*/ loopImpls) {
+ void CreateProceduresForLoops(Implementation impl, Graph<Block/*!*/>/*!*/ g,
+ List<Implementation/*!*/>/*!*/ loopImpls,
+ Dictionary<string, Dictionary<string, Block>> fullMap) {
Contract.Requires(impl != null);
Contract.Requires(cce.NonNullElements(loopImpls));
// Enumerate the headers
@@ -568,21 +570,30 @@ namespace Microsoft.Boogie {
loopImpls.Add(loopImpl);
// Finally, add call to the loop in the containing procedure
- CmdSeq cmdSeq = new CmdSeq();
- cmdSeq.Add(loopHeaderToCallCmd[header]);
- cmdSeq.AddRange(header.Cmds);
- header.Cmds = cmdSeq;
+ string lastIterBlockName = header.Label + "_last";
+ Block lastIterBlock = new Block(Token.NoToken, lastIterBlockName, header.Cmds, header.TransferCmd);
+ header.Cmds = new CmdSeq(loopHeaderToCallCmd[header]);
+ header.TransferCmd = new GotoCmd(Token.NoToken, new StringSeq(lastIterBlockName), new BlockSeq(lastIterBlock));
+ impl.Blocks.Add(lastIterBlock);
+ blockMap[lastIterBlock] = blockMap[header];
+ dummyBlocks.Add(header);
- Dictionary<Block, Block> reverseBlockMap = new Dictionary<Block, Block>();
foreach (Block block in blockMap.Keys)
{
if (dummyBlocks.Contains(block)) continue;
- reverseBlockMap[blockMap[block]] = block;
+ AddToFullMap(fullMap, impl.Name, block.Label, block);
+ AddToFullMap(fullMap, loopProc.Name, blockMap[block].Label, block);
}
- loopProc.setBlockMap(reverseBlockMap);
}
}
+ private void AddToFullMap(Dictionary<string, Dictionary<string, Block>> fullMap, string procName, string blockName, Block block)
+ {
+ if (!fullMap.ContainsKey(procName))
+ fullMap[procName] = new Dictionary<string, Block>();
+ fullMap[procName][blockName] = block;
+ }
+
public static Graph<Block/*!*/>/*!*/ GraphFromImpl(Implementation impl) {
Contract.Requires(impl != null);
Contract.Ensures(cce.NonNullElements(Contract.Result<Graph<Block>>().TopologicalSort()));
@@ -603,8 +614,9 @@ namespace Microsoft.Boogie {
return g;
}
- public void ExtractLoops() {
+ public Dictionary<string, Dictionary<string, Block>> ExtractLoops() {
List<Implementation/*!*/>/*!*/ loopImpls = new List<Implementation/*!*/>();
+ Dictionary<string, Dictionary<string, Block>> fullMap = new Dictionary<string, Dictionary<string, Block>>();
foreach (Declaration d in this.TopLevelDeclarations) {
Implementation impl = d as Implementation;
if (impl != null && impl.Blocks != null && impl.Blocks.Count > 0) {
@@ -613,13 +625,14 @@ namespace Microsoft.Boogie {
if (!g.Reducible) {
throw new Exception("Irreducible flow graphs are unsupported.");
}
- CreateProceduresForLoops(impl, g, loopImpls);
+ CreateProceduresForLoops(impl, g, loopImpls, fullMap);
}
}
foreach (Implementation/*!*/ loopImpl in loopImpls) {
Contract.Assert(loopImpl != null);
TopLevelDeclarations.Add(loopImpl);
}
+ return fullMap;
}
public override Absy StdDispatch(StandardVisitor visitor) {