Skip to content
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

Update LibAFL concolic #1634

Merged
merged 9 commits into from
Oct 22, 2023
Merged

Update LibAFL concolic #1634

merged 9 commits into from
Oct 22, 2023

Conversation

tokatoka
Copy link
Member

@@ -204,6 +205,7 @@ impl<R: Read> MessageFileReader<R> {
}
}
SymExpr::Call { .. } | SymExpr::Return { .. } | SymExpr::BasicBlock { .. } => {}
SymExpr::Ite { .. } => todo!(), // I don't know what i should put here..
Copy link
Member Author

@tokatoka tokatoka Oct 20, 2023

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

do you know what i should put here?
@julihoh
i don't know what to do for this "Ite"

Copy link
Collaborator

@julihoh julihoh Oct 21, 2023

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

something like this:

SymExpr::Ite { cond, a, b } => {
    *cond = self.make_absolute(*cond);
    *a = self.make_absolute(*a);
    *b = self.make_absolute(*b);
    self.current_id += 1;
}

Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

ok thanks 👍

@tokatoka tokatoka merged commit 02cd260 into main Oct 22, 2023
16 of 17 checks passed
@tokatoka tokatoka deleted the upd_concolic branch October 22, 2023 11:44
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

2 participants