Skip to content
  1. Sep 17, 2019
  2. Sep 13, 2019
  3. Sep 12, 2019
  4. Sep 11, 2019
  5. Sep 10, 2019
  6. Sep 09, 2019
    • Francis Visoiu Mistrih's avatar
      [Remarks] Add parser for bitstream remarks · a85d9ef1
      Francis Visoiu Mistrih authored
      The bitstream remark serializer landed in r367372.
      
      This adds a bitstream remark parser that parser bitstream remark files
      to llvm::remarks::Remark objects through the RemarkParser interface.
      
      A few interesting things to point out:
      
      * There are parsing helpers to parse the different types of blocks
      * The main parsing helper allows us to parse remark metadata and open an
      external file containing the encoded remarks
      * This adds a dependency from the Remarks library to the BitstreamReader
      library
      * The testing strategy is to create a remark entry through YAML, parse
      it, serialize it to bitstream, parse that back and compare the objects.
      * There are close to no tests for malformed bitstream remarks, due to
      the lack of textual format for the bitstream format.
      * This adds a new C API for parsing bitstream remarks:
      LLVMRemarkParserCreateBitstream.
      * This bumps the REMARKS_API_VERSION to 1.
      
      Differential Revision: https://reviews.llvm.org/D67134
      
      llvm-svn: 371429
      a85d9ef1
  7. Sep 07, 2019
    • Teresa Johnson's avatar
      Change TargetLibraryInfo analysis passes to always require Function · 9c27b59c
      Teresa Johnson authored
      Summary:
      This is the first change to enable the TLI to be built per-function so
      that -fno-builtin* handling can be migrated to use function attributes.
      See discussion on D61634 for background. This is an enabler for fixing
      handling of these options for LTO, for example.
      
      This change should not affect behavior, as the provided function is not
      yet used to build a specifically per-function TLI, but rather enables
      that migration.
      
      Most of the changes were very mechanical, e.g. passing a Function to the
      legacy analysis pass's getTLI interface, or in Module level cases,
      adding a callback. This is similar to the way the per-function TTI
      analysis works.
      
      There was one place where we were looking for builtins but not in the
      context of a specific function. See FindCXAAtExit in
      lib/Transforms/IPO/GlobalOpt.cpp. I'm somewhat concerned my workaround
      could provide the wrong behavior in some corner cases. Suggestions
      welcome.
      
      Reviewers: chandlerc, hfinkel
      
      Subscribers: arsenm, dschuff, jvesely, nhaehnle, mehdi_amini, javed.absar, sbc100, jgravelle-google, eraman, aheejin, steven_wu, george.burgess.iv, dexonsmith, jfb, asbirlea, gchatelet, llvm-commits
      
      Tags: #llvm
      
      Differential Revision: https://reviews.llvm.org/D66428
      
      llvm-svn: 371284
      9c27b59c
  8. Sep 06, 2019
    • Lang Hames's avatar
      [ORC][RPC] Join server thread before checking condition in unit test. · 88cddb7a
      Lang Hames authored
      Otherwise we have a race on the sent-messages count.
      
      llvm-svn: 371263
      88cddb7a
    • Nick Desaulniers's avatar
      [IR] CallBrInst: scan+update arg list when indirect dest list changes · 7a7bba28
      Nick Desaulniers authored
      Summary:
      There's an unspoken invariant of callbr that the list of BlockAddress
      Constants in the "function args" list match the BasicBlocks in the
      "other labels" list. (This invariant is being added to the LangRef in
      https://reviews.llvm.org/D67196).
      
      When modifying the any of the indirect destinations of a callbr
      instruction (possible jump targets), we need to update the function
      arguments if the argument is a BlockAddress whose BasicBlock refers to
      the indirect destination BasicBlock being replaced.  Otherwise, many
      transforms that modify successors will end up violating that invariant.
      A recent change to the arm64 Linux kernel exposed this bug, which
      prevents the kernel from booting.
      
      I considered maintaining a mapping from indirect destination BasicBlock
      to argument operand BlockAddress, but this ends up being a one to
      potentially many (though usually one) mapping.  Also, the list of
      arguments to a function (or more typically inline assembly) ends up
      being less than 10.  The implementation is significantly simpler to just
      rescan the full list of arguments. Because of the one to potentially
      many relationship, the full arg list must be scanned (we can't stop at
      the first instance).
      
      Thanks to the following folks that reported the issue and helped debug
      it:
      * Nathan Chancellor
      * Will Deacon
      * Andrew Murray
      * Craig Topper
      
      Link: https://bugs.llvm.org/show_bug.cgi?id=43222
      Link: https://github.com/ClangBuiltLinux/linux/issues/649
      Link: https://lists.infradead.org/pipermail/linux-arm-kernel/2019-September/678330.html
      
      Reviewers: craig.topper, chandlerc
      
      Reviewed By: craig.topper
      
      Subscribers: void, javed.absar, kristof.beyls, hiraditya, llvm-commits, nathanchance, srhines
      
      Tags: #llvm
      
      Differential Revision: https://reviews.llvm.org/D67252
      
      llvm-svn: 371262
      7a7bba28
    • Lang Hames's avatar
      [ORC] Add a missing #include atomic. · 7c848acf
      Lang Hames authored
      Hopefully this will fix the bot build failures from r371245.
      
      llvm-svn: 371255
      7c848acf
    • Matt Arsenault's avatar
      GlobalISel: Add G_FMAD instruction · cf103721
      Matt Arsenault authored
      llvm-svn: 371254
      cf103721
    • Lang Hames's avatar
      [ORC] Make sure RPC channel-send is called in blocking calls and responses. · c1105111
      Lang Hames authored
      ORC-RPC batches calls by default, and the channel's send method must be called
      to transfer any buffered calls to the remote. The call to send was missing on
      responses and blocking calls in the SingleThreadedRPCEndpoint. This patch adds
      the necessary calls and modifies the RPC unit test to check for them.
      
      llvm-svn: 371245
      c1105111
    • Kevin P. Neal's avatar
      [FPEnv] Teach the IRBuilder about constrained FPToSI and FPToUI. · fab40fce
      Kevin P. Neal authored
      The IRBuilder doesn't know that the two floating point to integer instructions
      have constrained equivalents. This patch adds the support by building on
      the strict FP mode now present in the IRBuilder.
      
      Reviewed by:	John McCall
      Approved by:	John McCall
      Differential Revision:	https://reviews.llvm.org/D67291
      
      llvm-svn: 371235
      fab40fce
    • Francis Visoiu Mistrih's avatar
      [Remarks] Add support for internalizing a remark in a string table · e14c0c5a
      Francis Visoiu Mistrih authored
      In order to keep remarks around, we need to make them tied to a string
      table.
      
      Users then can delete the parser and rely on the string table to keep
      the memory of the strings alive and deduplicated.
      
      llvm-svn: 371233
      e14c0c5a
    • Jonas Devlieghere's avatar
      [MC] Fix undefined behavior in MCInstPrinter::formatHex · bee0f7dd
      Jonas Devlieghere authored
      Passing INT64_MIN to MCInstPrinter::formatHex triggers undefined
      behavior because the negation of -9223372036854775808 cannot be
      represented in type 'int64_t' (aka 'long long'). This patch puts a
      workaround in place to just print the hex value directly.
      
      A possible alternative involves using a small helper functions that uses
      (implementation) defined conversions to achieve the desirable value:
      
        static int64_t helper(int64_t V) {
          auto U = static_cast<uint64_t>(V);
          return V < 0 ? -U : U;
        }
      
      The underlying problem is that MCInstPrinter::formatHex(int64_t) returns
      a format_object<int64_t> and should really return a
      format_object<uint64_t>. However, that's not possible because formatImm
      needs to be able to print both as decimal (where a signed is required)
      and hex (where we'd prefer to always have an unsigned).
      
        format_object<int64_t> formatImm(int64_t Value) const {
          return PrintImmHex ? formatHex(Value) : formatDec(Value);
        }
      
      Differential revision: https://reviews.llvm.org/D67236
      
      llvm-svn: 371159
      bee0f7dd
    • Francis Visoiu Mistrih's avatar
      [Remarks] Add comparison operators to the Remark object · d3972039
      Francis Visoiu Mistrih authored
      and related structs.
      
      This also adds tests for the remarks::Remark object in general.
      
      llvm-svn: 371134
      d3972039
  9. Sep 05, 2019
  10. Sep 04, 2019
  11. Sep 03, 2019
  12. Sep 02, 2019
    • Thomas Preud'homme's avatar
      [FileCheck] Forbid using var defined on same line · a291b950
      Thomas Preud'homme authored
      Summary:
      Commit r366897 introduced the possibility to set a variable from an
      expression, such as [[#VAR2:VAR1+3]]. While introducing this feature, it
      introduced extra logic to allow using such a variable on the same line
      later on. Unfortunately that extra logic is flawed as it relies on a
      mapping from variable to expression defining it when the mapping is from
      variable definition to expression. This flaw causes among other issues
      PR42896.
      
      This commit avoids the problem by forbidding all use of a variable
      defined on the same line, and removes the now useless logic. Redesign
      will be done in a later commit because it will require some amount of
      refactoring first for the solution to be clean. One example is the need
      for some sort of transaction mechanism to set a variable temporarily and
      from an expression and rollback if the CHECK pattern does not match so
      that diagnostics show the right variable values.
      
      Reviewers: jhenderson, chandlerc, jdenny, probinson, grimar, arichardson, rnk
      
      Subscribers: JonChesterfield, rogfer01, hfinkel, kristina, rnk, tra, arichardson, grimar, dblaikie, probinson, llvm-commits, hiraditya
      
      Tags: #llvm
      
      Differential Revision: https://reviews.llvm.org/D66141
      
      llvm-svn: 370663
      a291b950
  13. Aug 31, 2019
    • Wei Mi's avatar
      [SampleFDO] Add profile symbol list section to discriminate function being · 798e59b8
      Wei Mi authored
      cold versus function being newly added.
      
      This is the second half of https://reviews.llvm.org/D66374.
      
      Profile symbol list is the collection of function symbols showing up in
      the binary which generates the current profile. It is used to discriminate
      function being cold versus function being newly added. Profile symbol list
      is only added for profile with ExtBinary format.
      
      During profile use compilation, when profile-sample-accurate is enabled,
      a function without profile will be regarded as cold only when it is
      contained in that list.
      
      Differential Revision: https://reviews.llvm.org/D66766
      
      llvm-svn: 370563
      798e59b8
  14. Aug 30, 2019
    • Dmitri Gribenko's avatar
      [ADT] Removed VariadicFunction · 4fc0d3bd
      Dmitri Gribenko authored
      Summary:
      It is not used. It uses macro-based unrolling instead of variadic
      templates, so it is not idiomatic anymore, and therefore it is a
      questionable API to keep "just in case".
      
      Subscribers: mgorny, dmgreen, dexonsmith, llvm-commits
      
      Tags: #llvm
      
      Differential Revision: https://reviews.llvm.org/D66961
      
      llvm-svn: 370441
      4fc0d3bd
  15. Aug 29, 2019
  16. Aug 28, 2019
    • Artur Pilipenko's avatar
      Fix for "DICompileUnit not listed in llvm.dbg.cu" verification error after ... · 925afc1c
      Artur Pilipenko authored
      ...cloning a function from a different module
      
      Currently when a function with debug info is cloned from a different module, the 
      cloned function may have hanging DICompileUnits, so that the module with the 
      cloned function fails debug info verification.
      
      The proposed fix inserts all DICompileUnits reachable from the cloned function 
      to "llvm.dbg.cu" metadata operands of the cloned function module. 
      
      Reviewed By: aprantl, efriedma
      
      Differential Revision: https://reviews.llvm.org/D66510
      
      Patch by Oleg Pliss (Oleg.Pliss@azul.com)
      
      llvm-svn: 370265
      925afc1c
  17. Aug 27, 2019
    • Cullen Rhodes's avatar
      [IntrinsicEmitter] Support scalable vectors in intrinsics · 2ba5d64a
      Cullen Rhodes authored
      Summary:
      This patch adds support for scalable vectors in intrinsics, enabling
      intrinsics such as the following to be defined:
      
          declare <vscale x 4 x i32> @llvm.something.nxv4i32(<vscale x 4 x i32>)
      
      Support for this is implemented by defining a new type descriptor for
      scalable vectors and adding mangling support for scalable vector types
      in the name mangling scheme used by 'any' types in intrinsic signatures.
      
      Tests have been added for IRBuilder to test scalable vectors work as
      expected when using intrinsics through this interface. This required
      implementing an intrinsic that is explicitly defined with scalable
      vectors, e.g.  LLVMType<nxv4i32>, an SVE floating-point convert
      intrinsic was used for this.  The behaviour of the overloaded type
      LLVMScalarOrSameVectorWidth with scalable vectors is tested using the
      existing masked load intrinsic. Also added an .ll test to test the
      Verifier catches a bad intrinsic argument when passing a fixed-width
      predicate (mask) to the masked.load intrinsic where a scalable is
      expected.
      
      Patch by Paul Walker
      
      Reviewed By: sdesmalen
      
      Differential Revision: https://reviews.llvm.org/D65930
      
      llvm-svn: 370053
      2ba5d64a
    • Pavel Labath's avatar
      Add error handling to the DataExtractor class · b1f29cec
      Pavel Labath authored
      Summary:
      This is motivated by D63591, where we realized that there isn't a really
      good way of telling whether a DataExtractor is reading actual data, or
      is it just returning default values because it reached the end of the
      buffer.
      
      This patch resolves that by providing a new "Cursor" class. A Cursor
      object encapsulates two things:
      - the current position/offset in the DataExtractor
      - an error object
      
      Storing the error object inside the Cursor enables one to use the same
      pattern as the std::{io}stream API, where one can blindly perform a
      sequence of reads and only check for errors once at the end of the
      operation. Similarly to the stream API, as soon as we encounter one
      error, all of the subsequent operations are skipped (return default
      values) too, even if the would suceed with clear error state. Unlike the
      std::stream API (but in line with other llvm APIs), we force the error
      state to be checked through usage of llvm::Error.
      
      Reviewers: probinson, dblaikie, JDevlieghere, aprantl, echristo
      
      Subscribers: kristina, llvm-commits
      
      Tags: #llvm
      
      Differential Revision: https://reviews.llvm.org/D63713
      
      llvm-svn: 370042
      b1f29cec
  18. Aug 26, 2019
    • Lang Hames's avatar
      [ORC] Make sure that queries on emitted-but-not-ready symbols fail correctly. · 8853ac7e
      Lang Hames authored
      In r369808 the failure scheme for ORC symbols was changed to make
      MaterializationResponsibility objects responsible for failing the symbols
      they represented. This simplifies error logic in the case where symbols are
      still covered by a MaterializationResponsibility, but left a gap in error
      handling: Symbols that have been emitted but are not yet ready (due to a
      dependence on some unemitted symbol) are not covered by a
      MaterializationResponsibility object. Under the scheme introduced in r369808
      such symbols would be moved to the error state, but queries on those symbols
      were never notified. This led to deadlocks when such symbols were failed.
      
      This commit updates error logic to immediately fail queries on any symbol that
      has already been emitted if one of its dependencies fails.
      
      llvm-svn: 369976
      8853ac7e
    • Lang Hames's avatar
      [ORC] Fix an overly aggressive assert. · 8ec96618
      Lang Hames authored
      Symbols that have not been queried will not have MaterializingInfo entries,
      so remove the assert that all failed symbols should have these entries.
      Also updates the loop to only remove entries that were found earlier.
      
      llvm-svn: 369975
      8ec96618
Loading