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

Opaque Pointers Integration #730

Merged

Conversation

fabianbs96
Copy link
Member

@fabianbs96 fabianbs96 commented Aug 6, 2024

This PR adds the following changes:

  • Integrate Opaque pointers into Call-graph resolvers and unittests
  • Disable the DTAResolver (to be removed for the next release).
  • Replace the LLVMTypeHierarchy with DIBasedTypeHierarchy for all our analysis interfaces.
  • Sets the default LLVM toolchain from 14 to 15
    • Also sets the CI to use LLVM 15

const auto *LhsI = llvm::dyn_cast<llvm::Instruction>(Lhs);
const auto *RhsI = llvm::dyn_cast<llvm::Instruction>(Rhs);
return LhsI->isSameOperationAs(RhsI);
return llvm::equal(Lhs->indices(), Rhs->indices());
Copy link
Member

Choose a reason for hiding this comment

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

also need to check scalar type here.

Copy link
Member Author

Choose a reason for hiding this comment

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

done

fabianbs96 added a commit that referenced this pull request Oct 7, 2024
@fabianbs96 fabianbs96 added this to the March Release 2025 milestone Dec 2, 2024
@fabianbs96 fabianbs96 merged commit 751a984 into secure-software-engineering:development Mar 4, 2025
8 checks passed
@fabianbs96 fabianbs96 deleted the f-clang-15 branch March 4, 2025 18:36
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Projects
None yet
Development

Successfully merging this pull request may close these issues.

5 participants