Skip to content
  1. Aug 20, 2018
    • Simon Pilgrim's avatar
      [X86][SSE] Add PACKSS test showing ComputeNumSignBits failure to handle a... · cee9c648
      Simon Pilgrim authored
      [X86][SSE] Add PACKSS test showing ComputeNumSignBits failure to handle a partial sign bits extension through a bitcast
      
      llvm-svn: 340166
      cee9c648
    • Simon Pilgrim's avatar
      [X86] Drop unnecessary exact qualifier from packss test · 686090a4
      Simon Pilgrim authored
      llvm-svn: 340165
      686090a4
    • George Rimar's avatar
      [LLD][ELF] - Fix warning. · 20f994d3
      George Rimar authored
      This fixes the following warning when compiling with gcc version 8.0.1 20180319 (experimental) (GCC):
      
      /home/umb/LLVM/llvm/tools/lld/ELF/SyntheticSections.cpp:1951:46: warning: enumeral and non-enumeral type in conditional expression [-Wextra]
           return OS->SectionIndex >= SHN_LORESERVE ? SHN_XINDEX : OS->SectionIndex;
      
      llvm-svn: 340164
      20f994d3
    • Victor Leschuk's avatar
      [DWARF] Refactor DWARF classes to use unified error reporting. NFC. · cba595da
      Victor Leschuk authored
      DWARF-related classes in lib/DebugInfo/DWARF contained 
      duplicating code for creating StringError instances, like:
      
      template <typename... Ts>
      static Error createError(char const *Fmt, const Ts &... Vals) {
        std::string Buffer;
        raw_string_ostream Stream(Buffer);
        Stream << format(Fmt, Vals...);
        return make_error<StringError>(Stream.str(), inconvertibleErrorCode());
      }
      
      Similar function was placed in Support lib in https://reviews.llvm.org/D49824
      
      This revision makes DWARF classes use this function
      instead of their local implementation of it.
      
      Reviewers: aprantl, dblaikie, probinson, wolfgangp, JDevlieghere, jhenderson
      
      Reviewed By: JDevlieghere, jhenderson
      
      Differential Revision: https://reviews.llvm.org/D49964
      
      llvm-svn: 340163
      cba595da
    • Simon Pilgrim's avatar
      bbd2d15d
    • Haojian Wu's avatar
      [clangd] Simplify the code using UniqueStringSaver, NFC. · 931b2262
      Haojian Wu authored
      llvm-svn: 340161
      931b2262
    • Peter Smith's avatar
      [ELF] Add support for Armv5 and Armv6 compatible Thunks · a8656c62
      Peter Smith authored
      Older Arm architectures do not support the MOVT and MOVW instructions so we
      must use an alternative sequence of instructions to transfer control to the
      destination.
      
      Assuming at least Armv5 this patch adds support for Thunks that load or add
      to the program counter. Note that there are no Armv5 Thumb Thunks as there
      is no Thumb branch instruction in Armv5 that supports Thunks. These thunks
      will not work for Armv4t (arm7tdmi) as this architecture cannot change state
      from using the LDR or ADD instruction.
      
      Differential Revision: https://reviews.llvm.org/D50077
      
      llvm-svn: 340160
      a8656c62
    • Peter Smith's avatar
      [ELF] Add support for older Arm Architectures with smaller branch range · d1be026e
      Peter Smith authored
      The Thumb BL and BLX instructions on older Arm Architectures such as v5 and
      v6 have a constrained encoding J1 and J2 must equal 1, later Architectures
      relaxed this restriction allowing J1 and J2 to be used to calculate a larger
      immediate.
      
      This patch adds support for the old encoding, it is used when the build
      attributes for the input objects only contain older architectures.
      
      Differential Revision: https://reviews.llvm.org/D50076
      
      llvm-svn: 340159
      d1be026e
    • Sander de Smalen's avatar
      [AArch64][SVE] Asm: Add SVE System registers · 07db4322
      Sander de Smalen authored
      This patch adds system registers for controlling aspects of SVE:
      - ZCR_EL1  (r/w)   visible at EL1 and EL0.
      - ZCR_EL2  (r/w)   visible at EL2 and Non-secure EL1 and EL0.
      - ZCR_EL3  (r/w)   visible at all exception levels.
      
      and a system register identifying SVE:
      - ID_AA64ZFR0_EL1  (r)  SVE Feature identifier.
      
      Reviewers: SjoerdMeijer, samparker, pbarrio, fhahn, javed.absar
      
      Reviewed By: SjoerdMeijer
      
      Differential Revision: https://reviews.llvm.org/D50885
      
      llvm-svn: 340158
      07db4322
    • Kirill Bobyrev's avatar
      [clangd] NFC: Cleanup Dex Iterator comments and simplify tests · 6d8bd7f5
      Kirill Bobyrev authored
      Proposed changes:
      
      * Cleanup comments in `clangd/index/dex/Iterator.h`: Vim's `gq`
        formatting added redundant spaces instead of newlines in few
        places
      * Few comments in `OrIterator` are wrong
      * Use `EXPECT_TRUE(Condition)` instead of
        `EXPECT_THAT(Condition, true)` (same with `EXPECT_FALSE`)
      * Don't expose `dump()` method to the public by misplacing
        `private:`
      
      This patch does not affect functionality.
      
      Reviewed by: ioeric
      
      Differential Revision: https://reviews.llvm.org/D50956
      
      llvm-svn: 340157
      6d8bd7f5
    • Haojian Wu's avatar
      [clangd] Add missing lock in the lookup. · 02465bae
      Haojian Wu authored
      Reviewers: ioeric
      
      Subscribers: ilya-biryukov, MaskRay, jkorous, arphaman, kadircet, cfe-commits
      
      Differential Revision: https://reviews.llvm.org/D50960
      
      llvm-svn: 340156
      02465bae
    • Kirill Bobyrev's avatar
      [clangd] Implement TRUE Iterator · 30ffdf42
      Kirill Bobyrev authored
      This patch introduces TRUE Iterator which efficiently handles posting
      lists containing all items within `[0, Size)` range.
      
      Reviewed by: ioeric
      
      Differential Revision: https://reviews.llvm.org/D50955
      
      llvm-svn: 340155
      30ffdf42
    • Kirill Bobyrev's avatar
      [llvm] Make YAML serialization up to 2.5 times faster · 5f26a642
      Kirill Bobyrev authored
      This patch significantly improves performance of the YAML serializer by
      optimizing `YAML::isNumeric` function. This function is called on the
      most strings and is highly inefficient for two reasons:
      
      * It uses `Regex`, which is parsed and compiled each time this
        function is called
      * It uses multiple passes which are not necessary
      
      This patch introduces stateful ad hoc YAML number parser which does not
      rely on `Regex`. It also fixes YAML number format inconsistency: current
      implementation supports C-stile octal number format (`01234567`) which
      was present in YAML 1.0 specialization (http://yaml.org/spec/1.0/),
      [Section 2.4. Tags, Example 2.19] but was deprecated and is no longer
      present in latest YAML 1.2 specification
      (http://yaml.org/spec/1.2/spec.html), see [Section 10.3.2. Tag
      Resolution]. Since the rest of the rest of the implementation does not
      support other deprecated YAML 1.0 numeric features such as sexagecimal
      numbers, commas as delimiters it is treated as inconsistency and not
      longer supported. This patch also adds unit tests to ensure the validity
      of proposed implementation.
      
      This performance bottleneck was identified while profiling Clangd's
      global-symbol-builder tool with my colleague @ilya-biryukov. The
      substantial part of the runtime was spent during a single-thread Reduce
      phase, which concludes with YAML serialization of collected symbol
      collection. Regex matching was accountable for approximately 45% of the
      whole runtime (which involves sharded Map phase), now it is reduced to
      18% (which is spent in `clang::clangd::CanonicalIncludes` and can be
      also optimized because all used regexes are in fact either suffix
      matches or exact matches).
      
      `llvm-yaml-numeric-parser-fuzzer` was used to ensure the validity of the
      proposed regex replacement. Fuzzing for ~60 hours using 10 threads did
      not expose any bugs.
      
      Benchmarking `global-symbol-builder` (using `hyperfine --warmup 2
      --min-runs 5 'command 1' 'command 2'`) tool by processing a reasonable
      amount of code (26 source files matched by
      `clang-tools-extra/clangd/*.cpp` with all transitive includes) confirmed
      our understanding of the performance bottleneck nature as it speeds up
      the command by the factor of 1.6x:
      
      | Command | Mean [s] | Min…Max [s] |
      | this patch (D50839) | 84.7 ± 0.6 | 83.3…84.7 |
      | master (rL339849) | 133.1 ± 0.8 | 132.4…134.6 |
      
      Using smaller samples (e.g. by collecting symbols from
      `clang-tools-extra/clangd/AST.cpp` only) yields even better performance
      improvement, which is expected because Map phase takes less time
      compared to Reduce and is 2.05x faster and therefore would significantly
      improve the performance of standalone YAML serializations.
      
      | Command | Mean [ms] | Min…Max [ms] |
      | this patch (D50839) | 3702.2 ± 48.7 | 3635.1…3752.3 |
      | master (rL339849) | 7607.6 ± 109.5 | 7533.3…7796.4 |
      
      Reviewed by: zturner, ilya-biryukov
      
      Differential revision: https://reviews.llvm.org/D50839
      
      llvm-svn: 340154
      5f26a642
    • Justin Bogner's avatar
      [SimplifyCFG] Replace some uses of bitwise or with logical or · 6f1740d5
      Justin Bogner authored
      It's clearer to use logical or for boolean values. Thanks to Steven
      Zhang for noticing!
      
      llvm-svn: 340153
      6f1740d5
    • Rui Ueyama's avatar
      Remove unnecessary applyMask() application. · 4c7d6beb
      Rui Ueyama authored
      applyMask(0xffffffff, x) is an identity function.
      
      llvm-svn: 340152
      4c7d6beb
    • Aleksandr Urakov's avatar
      [NFC] Minor update to comment · ff701727
      Aleksandr Urakov authored
      Update comment after rLLDB339994
      
      Differential Revision: https://reviews.llvm.org/D49980
      
      llvm-svn: 340151
      ff701727
    • Craig Topper's avatar
      24674ca7
    • QingShan Zhang's avatar
      [PowerPC] Add a peephole post RA to transform the inst that fed by add · f8f9af7b
      QingShan Zhang authored
      If the arch is P8, we will select XFLOAD to load the floating point, and then, expand it to vsx and non-vsx X-form instruction post RA. This patch is trying to convert the X-form to D-form if it meets the requirement that one operand of the x-form inst is the special Zero register, and another operand fed by add inst. i.e.
      y = add imm, reg
      LFDX. 0, y
      -->
      LFD imm(reg)
      
      Reviewers: Nemanjai
      Differential Revision: https://reviews.llvm.org/D49007
      
      llvm-svn: 340149
      f8f9af7b
    • whitequark's avatar
      [bindings/go] Add coroutine passes · fdca0c6d
      whitequark authored
      Add Go bindings for CoroEarly, CoroSplit, CoroElide and CoroCleanup.
      
      Differential Revision: https://reviews.llvm.org/D50951
      
      llvm-svn: 340148
      fdca0c6d
    • whitequark's avatar
      [LLVM-C] Add coroutine passes · c438ac23
      whitequark authored
      Differential Revision: https://reviews.llvm.org/D50950
      
      llvm-svn: 340147
      c438ac23
    • whitequark's avatar
      [C-API][DIBuilder] Added DIFlags in LLVMDIBuilderCreateBasicType · b56a4d31
      whitequark authored
      Added DIFlags in LLVMDIBuilderCreateBasicType to add optional DWARF
      attributes, such as DW_AT_endianity.
      
      Patch by Chirag Patel.
      
      Differential Revision: https://reviews.llvm.org/D50832
      
      llvm-svn: 340146
      b56a4d31
    • Fangrui Song's avatar
      d0a07e21
  2. Aug 19, 2018
  3. Aug 18, 2018
Loading