-
Notifications
You must be signed in to change notification settings - Fork 82
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'release-2.8.0' into main
- Loading branch information
Showing
74 changed files
with
902 additions
and
468 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,10 +1,10 @@ | ||
Z3_VERSION="4.8.10" | ||
Z3_VERSION="4.8.12" | ||
CVC4_VERSION="1.8" | ||
YICES2_VERSION="2.6.2" | ||
BOOGIE_VERSION="2.9.1" | ||
BOOGIE_VERSION="2.9.6" | ||
CORRAL_VERSION="1.1.8" | ||
SYMBOOGLIX_COMMIT="ccb2e7f2b3" | ||
LOCKPWN_COMMIT="12ba58f1ec" | ||
LLVM_SHORT_VERSION="11" | ||
LLVM_FULL_VERSION="11.1.0" | ||
LLVM_SHORT_VERSION="12" | ||
LLVM_FULL_VERSION="12.0.1" | ||
RUST_VERSION="nightly-2021-03-01" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,29 @@ | ||
// | ||
// This file is distributed under the MIT License. See LICENSE for details. | ||
// | ||
#ifndef ANNOTATELOOPEXITS_H | ||
#define ANNOTATELOOPEXITS_H | ||
|
||
#include "llvm/IR/Function.h" | ||
#include "llvm/IR/Instructions.h" | ||
#include "llvm/IR/Module.h" | ||
#include "llvm/Pass.h" | ||
#include <map> | ||
|
||
namespace smack { | ||
|
||
class AnnotateLoopExits : public llvm::FunctionPass { | ||
private: | ||
llvm::Function *LoopExitFunction; | ||
|
||
public: | ||
static char ID; // Pass identification, replacement for typeid | ||
AnnotateLoopExits() : llvm::FunctionPass(ID) {} | ||
bool doInitialization(llvm::Module &M) override; | ||
virtual llvm::StringRef getPassName() const override; | ||
virtual bool runOnFunction(llvm::Function &F) override; | ||
virtual void getAnalysisUsage(llvm::AnalysisUsage &) const override; | ||
}; | ||
} // namespace smack | ||
|
||
#endif // ANNOTATELOOPEXITS_H |
Oops, something went wrong.