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

[pull] master from llvm:master #18

Merged
merged 3 commits into from
Aug 28, 2019
Merged

[pull] master from llvm:master #18

merged 3 commits into from
Aug 28, 2019

Commits on Aug 28, 2019

  1. [mach-o] Extend LC_DATA_IN_CODE support to x86_64

    Patch by LemonBoy
    
    Differential Revision: https://reviews.llvm.org/D62185
    
    llvm-svn: 370183
    rui314 committed Aug 28, 2019
    Configuration menu
    Copy the full SHA
    91864f8 View commit details
    Browse the repository at this point in the history
  2. [MVE] VMOVX patterns

    This adds fp16 VMOVX patterns, using the same patterns as rL362482 with some
    adjustments for MVE. It allows us to move fp16 registers without going into and
    out of gprs.
    
    VMOVX is able to move the top bits from a fp16 in a fp reg into the bottom bits
    of another register, zeroing the rest. This can be used for odd MVE register
    lanes. The top bits are not read by fp16 instructions, so no move is required
    there if we are dealing with even lanes.
    
    Differential revision: https://reviews.llvm.org/D66793
    
    llvm-svn: 370184
    davemgreen committed Aug 28, 2019
    Configuration menu
    Copy the full SHA
    1c5b143 View commit details
    Browse the repository at this point in the history
  3. [lldb] Fix and test completion for ambiguous long options

    The refactoring patch for the option completion broke the completion
    for ambiguous long options. As this feature was also untested (as
    testing ambiguous options with the current test methods is impossible),
    I just noticed now. This patch restores the old behavior and adds a
    test for this feature.
    
    llvm-svn: 370185
    Teemperor committed Aug 28, 2019
    Configuration menu
    Copy the full SHA
    efb8b7b View commit details
    Browse the repository at this point in the history