-
Notifications
You must be signed in to change notification settings - Fork 28
Lab Exercise 3
Jiawei Wang edited this page May 27, 2024
·
21 revisions
$tree Lab-Exercise-3
├── AEMgr.cpp
├── AEMgr.h
├── CMakeLists.txt
├── test.cpp
* Before coding, please type cd $HOME/Software-Security-Analysis
and git pull
in your terminal to make sure you always have the latest version of the code template before coding.
If git pull
fails due to the conflict with your local changes, type git stash
to store your current code in a temporal branch and type git pull
again. If you want to retrieve your code back, type git stash pop
.
1.1 launch.json
To enable debugging and running, switch your executable by setting the program
and args
fields as described here or follow the below screenshot.
- Implement methods from
AbstractExecutionMgr::test1()
toAbstractExecutionMgr::test8()
in classAbstractExecutionMgr
inAEMgr.cpp
- Pass the test without any assertion by
test.cpp
. - Upload
AEMgr.cpp
to UNSWWebCMS
for your submission when you are finished with this lab. Your implementation will be evaluated against our internal tests. You will get the full marks if your code can pass them all. We have providedAEExampleMgr::test0()
inAEMgr.cpp
as an example to help get started.
*You will be working on AEMgr.cpp
only and there is NO need to modify other files under the Lab-Exercise-3 folder
SVF AEMgr APIs to help with your implementation SVF AEMgr API.
If you want to see the value of AbstractValue
. You can also call toString()
to print the value (either Interval Value or Address Value).
int main() {
AbstractValue a = IntervalValue(1, 1);
std::cout << a.toString() << std::end;
}