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

Add CoreCLR personality function and EH table emission #43

Merged
merged 2 commits into from
Jun 8, 2015

Commits on Jun 5, 2015

  1. Add classifyEHPersonality(StringRef) overload

    For callers that have the name of the personality routine but not a
    corresponding Value.
    JosephTremoulet committed Jun 5, 2015
    Configuration menu
    Copy the full SHA
    5a29c57 View commit details
    Browse the repository at this point in the history

Commits on Jun 8, 2015

  1. Add CoreCLR EH personality

    Processing happens in two stages (as for other WinEH personalities):
     - FunctionLoweringInfo::set computes the parent relation on handler
       actions.  ClrEHFuncInfo is added to MachineModuleInfo to facilitate
       this.
     - WinException::endFunction reports funclet begin/end offsets in .xdata
       after unwind info, and reports EH clauses after the final funclet's
       unwind info.
    
    Note: this is a provisional change to facilitate exploring exception
    handling in LLILC, and will need to be reworked when LLVM's EH
    representation is changed for Windows-style targets  -- see
    http://thread.gmane.org/gmane.comp.compilers.llvm.devel/85783
    JosephTremoulet committed Jun 8, 2015
    Configuration menu
    Copy the full SHA
    b289459 View commit details
    Browse the repository at this point in the history