Skip to content
Snippets Groups Projects
  1. Jul 07, 2017
  2. Jul 05, 2017
  3. Jun 08, 2017
  4. Jun 07, 2017
  5. May 09, 2017
  6. Mar 08, 2017
    • David L. Jones's avatar
      [Driver] Consolidate tools and toolchains by target platform. (NFC) · 1c814d10
      David L. Jones authored
      Summary:
      (This is a move-only refactoring patch. There are no functionality changes.)
      
      This patch splits apart the Clang driver's tool and toolchain implementation
      files. Each target platform toolchain is moved to its own file, along with the
      closest-related tools. Each target platform toolchain has separate headers and
      implementation files, so the hierarchy of classes is unchanged.
      
      There are some remaining shared free functions, mostly from Tools.cpp. Several
      of these move to their own architecture-specific files, similar to r296056. Some
      of them are only used by a single target platform; since the tools and
      toolchains are now together, some helpers now live in a platform-specific file.
      The balance are helpers related to manipulating argument lists, so they are now
      in a new file pair, CommonArgs.h and .cpp.
      
      I've tried to cluster the code logically, which is fairly straightforward for
      most of the target platforms and shared architectures. I think I've made
      reasonable choices for these, as well as the various shared helpers; but of
      course, I'm happy to hear feedback in the review.
      
      There are some particular things I don't like about this patch, but haven't been
      able to find a better overall solution. The first is the proliferation of files:
      there are several files that are tiny because the toolchain is not very
      different from its base (usually the Gnu tools/toolchain). I think this is
      mostly a reflection of the true complexity, though, so it may not be "fixable"
      in any reasonable sense. The second thing I don't like are the includes like
      "../Something.h". I've avoided this largely by clustering into the current file
      structure. However, a few of these includes remain, and in those cases it
      doesn't make sense to me to sink an existing file any deeper.
      
      Reviewers: rsmith, mehdi_amini, compnerd, rnk, javed.absar
      
      Subscribers: emaste, jfb, danalbert, srhines, dschuff, jyknight, nemanjai, nhaehnle, mgorny, cfe-commits
      
      Differential Revision: https://reviews.llvm.org/D30372
      
      git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@297250 91177308-0d34-0410-b5e6-96231b3b80d8
      1c814d10
  7. Feb 24, 2017
    • David L. Jones's avatar
      [Driver] Move architecture-specific free helper functions to their own files. · 9049fa85
      David L. Jones authored
      This patch moves helper functions that are CPU-specific out of Driver.cpp and to
      separate implementation files. The new files are named for the architecture,
      e.g. ARMArch.cpp.
      
      The next step after this will be to move OS-specific code, which I expect will
      include many of the tool implementations, to similarly separate files.
      
      Some CPU-specific functions are not being moved just yet. In cases where the
      only caller is the platform-specific tools, I plan to move them together. An
      example is Hexagon, where the only caller of the architecture-specific functions
      are the tools themselves. (I'm happy to revise this choice, it just seems like
      less churn to me.)
      
      This does mean that some functions which were previously static are now exposed
      through the library header Driver.h.
      
      Reviewers: rsmith, javed.absar
      
      Subscribers: aemerson, danalbert, srhines, dschuff, jyknight, nemanjai, mgorny, cfe-commits
      
      Differential Revision: https://reviews.llvm.org/D30315
      
      git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@296056 91177308-0d34-0410-b5e6-96231b3b80d8
      9049fa85
Loading