Skip to content
  1. Jan 11, 2019
    • Martin Storsjö's avatar
      [llvm-objcopy] [COFF] Fix writing object files without symbols/string table · d1cc64fe
      Martin Storsjö authored
      Previously, this was broken - by setting PointerToSymbolTable to zero
      but still actually writing the string table length, the object file
      header was corrupted.
      
      Differential Revision: https://reviews.llvm.org/D56584
      
      llvm-svn: 350926
      d1cc64fe
    • Dmitry Venikov's avatar
      [llvm-symbolizer] Add -exe, -e as aliases to -obj · 37c1e2e7
      Dmitry Venikov authored
      Summary: Provides -exe, -e as aliases to -obj. Motivation: https://bugs.llvm.org/show_bug.cgi?id=40071
      
      Reviewers: ruiu, rnk, fjricci, jhenderson
      
      Reviewed By: jhenderson
      
      Subscribers: llvm-commits
      
      Differential Revision: https://reviews.llvm.org/D56580
      
      llvm-svn: 350925
      37c1e2e7
    • Craig Topper's avatar
      [X86] Change vXi1 extract_vector_elt lowering to be legal if the index is 0.... · b97885cc
      Craig Topper authored
      [X86] Change vXi1 extract_vector_elt lowering to be legal if the index is 0. Add DAG combine to turn scalar_to_vector+extract_vector_elt into extract_subvector.
      
      We were lowering the last step extract_vector_elt to a bitcast+truncate. Change it to use an extract_vector_elt of index 0 instead. Add isel patterns to do the equivalent of what the bitcast would have done. Plus an isel pattern for an any_extend+extract to prevent some regressions.
      
      Finally add a DAG combine to turn v1i1 scalar_to_vector+extract_vector_elt of 0 into an extract_subvector.
      
      This fixes some of the regressions from D350800.
      
      llvm-svn: 350918
      b97885cc
    • Francis Visoiu Mistrih's avatar
      [llvm-objdump][MachO] Disable some invalid input tests · f57a247d
      Francis Visoiu Mistrih authored
      It causes some (but not all) bots to fail. I'll look into it tomorrow
      morning. Remove the tests for now to make the bots green.
      
      llvm-svn: 350908
      f57a247d
    • Heejin Ahn's avatar
      [WebAssembly] Fix stack pointer store check in RegStackify · e73c7a1a
      Heejin Ahn authored
      Summary:
      We now use __stack_pointer global and global.get/global.set instruction.
      This fixes the checking routine for stack_pointer writes accordingly.
      
      This also fixes the existing __stack_pointer test in reg-stackify.ll:
      That test used to pass not because of __stack_pointer clashes but
      because the function `stackpointer_callee` was not marked as `readnone`,
      so it was assumed to possibly write to memory arbitraily, and
      `global.set` instruction was marked as `mayStore` in the .td definition,
      so they were identified as intervening writes. After we added `readnone`
      to its attribute, this test fails without this patch.
      
      Reviewers: dschuff, sunfish
      
      Subscribers: jgravelle-google, sbc100, llvm-commits
      
      Differential Revision: https://reviews.llvm.org/D56094
      
      llvm-svn: 350906
      e73c7a1a
  2. Jan 10, 2019
  3. Jan 09, 2019
Loading