Skip to content
  1. May 31, 2017
  2. May 30, 2017
    • Zachary Turner's avatar
      [CodeView] Move CodeView YAML code to ObjectYAML. · d427383c
      Zachary Turner authored
      This is the beginning of an effort to move the codeview yaml
      reader / writer into ObjectYAML so that it can be shared.
      Currently the only consumer / producer of CodeView YAML is
      llvm-pdbdump, but CodeView can exist outside of PDB files, and
      indeed is put into object files and passed to the linker to
      produce PDB files.  Furthermore, there are subtle differences
      in the types of records that show up in object file CodeView
      vs PDB file CodeView, but they are otherwise 99% the same.
      
      By having this code in ObjectYAML, we can have llvm-pdbdump
      reuse this code, while teaching obj2yaml and yaml2obj to use
      this syntax for dealing with object files that can contain
      CodeView.
      
      This patch only adds support for CodeView type information
      to ObjectYAML.  Subsequent patches will add support for
      CodeView symbol information.
      
      llvm-svn: 304248
      d427383c
    • Matthias Braun's avatar
      TargetPassConfig: Keep a reference to an LLVMTargetMachine; NFC · 5e394c3d
      Matthias Braun authored
      TargetPassConfig is not useful for targets that do not use the CodeGen
      library, so we may just as well store a pointer to an
      LLVMTargetMachine instead of just to a TargetMachine.
      
      While at it, also change the constructor to take a reference instead of a
      pointer as the TM must not be nullptr.
      
      llvm-svn: 304247
      5e394c3d
    • Tim Northover's avatar
      MIR: remove explicit "noVRegs" property. · fb26d9a2
      Tim Northover authored
      We can infer this from the incoming MIR, so there's no reason to
      represent it with a special flag.
      
      llvm-svn: 304246
      fb26d9a2
    • Xinliang David Li's avatar
      74480ada
    • Quentin Colombet's avatar
      [Localizer] Don't trick to be smart for the insertion point · 73141d5b
      Quentin Colombet authored
      There is no guarantee that the first use of a constant that is traversed
      is actually the first in the related basic block. Thus, if we use that
      as the insertion point we may end up with definitions that don't
      dominate there use.
      
      llvm-svn: 304244
      73141d5b
    • Ben Langmuir's avatar
      [llvm-config] Fix cflags test looking for "warning" · a8217afe
      Ben Langmuir authored
      This will fail if you configure with e.g. -Wno-unknown-warning-option.
      Change it to check for 'warning:' just like we did for 'error:' in
      r289484.
      
      llvm-svn: 304239
      a8217afe
    • Matthew Simpson's avatar
      [LV] Reapply r303763 with fix for PR33193 · 646475a9
      Matthew Simpson authored
      r303763 caused build failures in some out-of-tree tests due to an assertion in
      TTI. The original patch updated cost estimates for induction variable update
      instructions marked for scalarization. However, it didn't consider that the
      incoming value of an induction variable phi node could be a cast instruction.
      This caused queries for cast instruction costs with a mix of vector and scalar
      types. This patch includes a fix for cast instructions and the test case from
      PR33193.
      
      The fix was suggested by Jonas Paulsson <paulsson@linux.vnet.ibm.com>.
      
      Reference: https://bugs.llvm.org/show_bug.cgi?id=33193
      Original Differential Revision: https://reviews.llvm.org/D33457
      
      llvm-svn: 304235
      646475a9
Loading