Skip to content
  1. Aug 03, 2017
    • Rafael Espindola's avatar
      Delete Default and JITDefault code models · 79e238af
      Rafael Espindola authored
      IMHO it is an antipattern to have a enum value that is Default.
      
      At any given piece of code it is not clear if we have to handle
      Default or if has already been mapped to a concrete value. In this
      case in particular, only the target can do the mapping and it is nice
      to make sure it is always done.
      
      This deletes the two default enum values of CodeModel and uses an
      explicit Optional<CodeModel> when it is possible that it is
      unspecified.
      
      llvm-svn: 309911
      79e238af
    • Vedant Kumar's avatar
      [Coverage] Add an API to retrive all instantiations of a function (NFC) · dde19c5a
      Vedant Kumar authored
      The CoverageMapping::getInstantiations() API retrieved all function
      records corresponding to functions with more than one instantiation (e.g
      template functions with multiple specializations). However, there was no
      simple way to determine *which* function a given record was an
      instantiation of. This was an oversight, since it's useful to aggregate
      coverage information over all instantiations of a function.
      
      llvm-cov works around this by building a mapping of source locations to
      instantiation sets, but this duplicates logic that libCoverage already
      has (see FunctionInstantiationSetCollector).
      
      This change adds a new API, CoverageMapping::getInstantiationGroups(),
      which returns a list of InstantiationGroups. A group contains records
      for each instantiation of some particular function, and also provides
      utilities to get the total execution count within the group, the source
      location of the common definition, etc.
      
      This lets removes some hacky logic in llvm-cov by reusing
      FunctionInstantiationSetCollector and makes the CoverageMapping API
      friendlier for other clients.
      
      llvm-svn: 309904
      dde19c5a
    • Vedant Kumar's avatar
      [llvm-cov] Respect the value of the -show-instantiations option · 79554e45
      Vedant Kumar authored
      Make `-show-instantiations=false` actually skip displaying instantiation
      sub-views, instead of simply ignoring the option.
      
      llvm-svn: 309903
      79554e45
    • Zachary Turner's avatar
      [pdbutil] Add a command to dump the FPM. · c3d8eec9
      Zachary Turner authored
      Recently problems have been discovered in the way we write the FPM
      (free page map).  In order to fix this, we first need to establish
      a baseline about what a correct FPM looks like using an MSVC
      generated PDB, so that we can then make our own generated PDBs
      match.  And in order to do this, the dumper needs a mode where it
      can dump an FPM so that we can write tests for it.
      
      This patch adds a command to dump the FPM, as well as a test against
      a known-good PDB.
      
      llvm-svn: 309894
      c3d8eec9
  2. Aug 02, 2017
    • Rafael Espindola's avatar
      Don't pass the code model to MC · 9f929957
      Rafael Espindola authored
      I was surprised to see the code model being passed to MC. After all,
      it assembles code, it doesn't create it.
      
      The one place it is used is in the expansion of .cfi directives to
      handle .eh_frame being more that 2gb away from the code.
      
      As far as I can tell, gnu assembler doesn't even have an option to
      enable this. Compiling a c file with gcc -mcmodel=large produces a
      regular looking .eh_frame. This is probably because in practice linker
      parse and recreate .eh_frames.
      
      In llvm this is used because the JIT can place the code and .eh_frame
      very far apart. Ideally we would fix the jit and delete this
      option. This is hard.
      
      Apart from confusion another problem with the current interface is
      that most callers pass CodeModel::Default, which is bad since MC has
      no way to map it to the target default if it actually needed to.
      
      This patch then replaces the argument with a boolean with a default
      value. The vast majority of users don't ever need to look at it. In
      fact, only CodeGen and llvm-mc use it and llvm-mc just to enable more
      testing.
      
      llvm-svn: 309884
      9f929957
    • Dehao Chen's avatar
      Fix the bug that parseAAPipeline is not invoked in runNewPMPasses in release compiler. · 3246dc3d
      Dehao Chen authored
      Summary: The logic is guarded by "assert".
      
      Reviewers: davidxl, davide, chandlerc
      
      Reviewed By: davide, chandlerc
      
      Subscribers: sanjoy, llvm-commits, mehdi_amini
      
      Differential Revision: https://reviews.llvm.org/D36195
      
      llvm-svn: 309787
      3246dc3d
    • Petr Hosek's avatar
      Revert "Reland "[llvm][llvm-objcopy] Added support for outputting to binary in llvm-objcopy"" · 37c052f5
      Petr Hosek authored
      This is failing to compile on 32-bit ARM bots.
      
      This reverts commit r309768.
      
      llvm-svn: 309771
      37c052f5
    • Petr Hosek's avatar
      Reland "[llvm][llvm-objcopy] Added support for outputting to binary in llvm-objcopy" · 0e60b2e7
      Petr Hosek authored
      This change adds the "-O binary" flag which directs llvm-objcopy to
      output the object file to the same format as GNU objcopy does when given
      the flag "-O binary". This was done by splitting the Object class into
      two subclasses ObjectELF and ObjectBianry which each output a different
      format but relay on the same code to read in the Object in Object.
      
      Patch by Jake Ehrlich
      
      Differential Revision: https://reviews.llvm.org/D34480
      
      llvm-svn: 309768
      0e60b2e7
  3. Aug 01, 2017
  4. Jul 31, 2017
  5. Jul 30, 2017
    • David Blaikie's avatar
      DebugInfo: Provide option for explicitly specifying the name of the DWP file · e5adb68e
      David Blaikie authored
      If you've archived the DWP file somewhere it's probably useful to be
      able to just tell llvm-symbolizer where it is when you're symbolizing
      stack traces from the binary.
      
      This only provides a mechanism for specifying a single DWP file, good if
      you're symbolizing a program with a single DWP file, but it's likely if
      the program is dynamically linked that you might have a DWP for each
      dynamic library - in which case this feature won't help (at least as
      it's surfaced in llvm-symbolizer for now) - in theory it could be
      extended to specify a collection of DWP files that could all be
      consulted for split CU hash resolution.
      
      llvm-svn: 309498
      e5adb68e
  6. Jul 29, 2017
  7. Jul 28, 2017
  8. Jul 27, 2017
  9. Jul 26, 2017
  10. Jul 25, 2017
Loading