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

Open
wants to merge 42 commits into
base: development
Choose a base branch
from

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

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.

3 participants