forked from cil-project/cil
-
Notifications
You must be signed in to change notification settings - Fork 20
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Support for parsing extended assembly code including asm goto
#161
Open
WernerDrasche
wants to merge
27
commits into
goblint:develop
Choose a base branch
from
N0W0RK:second_try
base: develop
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Open
Changes from all commits
Commits
Show all changes
27 commits
Select commit
Hold shift + click to select a range
3ff22e8
support for asm goto; untested but compiles
a76f439
intermidiary commit, so that everyone has same type definition
f1e3be5
todo: move all asm instr matches to stmt matches
26cc002
ich hab absolut keinen bock mehr
d01d6ec
proposal to solve dInstr problem
d0dcf8c
why goblint no work???
7e5435d
normal gobint-cil main.exe works but from gobint --justcil doesn't
a339860
fixed most complaints; (dummy instruction still todo)
7236437
Update cparser.mly
WernerDrasche 8037c21
Update cparser.mly
WernerDrasche cb96966
have to commit to test in goblint I think
5de562b
test
9e02615
Merge branch 'second_try' of github.com:N0W0RK/goblint-cil into secon…
ced0532
apparently asm goto ("nop") compiles
35969c6
to test inside analyzer
5871101
testing cprint because bug I think??????????
4cb1f6b
???????????????????????????????????/
cb4d68c
!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
c31ad66
wtf
1928ed7
I think I found the bug?
bddb076
suicide commit (debugging ocaml is so fun :) :) :) :) :)
c81580c
fixed the expected : before bug; todo fix label printing in cil.ml
24d806c
commiting to test in goblint
da74c6c
repo is broken?
d54ca43
fixed bug
39a4d1b
dummy instruction deleted, revert if necessary
2030d40
removed zrapp asm; revert if necessary
File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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
Oops, something went wrong.
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
If
Asm
now includes labels, shouldn't CFG construction do something with those?There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
see below.