Skip to content
  1. Oct 03, 2019
  2. Oct 02, 2019
  3. Oct 01, 2019
  4. Sep 30, 2019
  5. Sep 28, 2019
  6. Sep 27, 2019
  7. Sep 26, 2019
    • Clement Courbet's avatar
      [llvm-exegesis][NFC] Remove dead code. · 06f9ce84
      Clement Courbet authored
      Summary: `hasAliasingImplicitRegistersThrough()` is no longer used.
      
      Reviewers: gchatelet
      
      Subscribers: tschuett, llvm-commits
      
      Tags: #llvm
      
      Differential Revision: https://reviews.llvm.org/D68078
      
      llvm-svn: 372968
      06f9ce84
    • Nick Lewycky's avatar
      Improve C API support for atomicrmw and cmpxchg. · f57e968d
      Nick Lewycky authored
      atomicrmw and cmpxchg have a volatile flag, so allow them to be get and set with LLVM{Get,Set}Volatile. atomicrmw and fence have orderings, so allow them to be get and set with LLVM{Get,Set}Ordering. Add missing LLVMAtomicRMWBinOpFAdd and LLVMAtomicRMWBinOpFSub enum constants. AtomicCmpXchg also has a weak flag, add a getter/setter for that too. Add a getter/setter for the binary-op of an atomicrmw.
      
      atomicrmw and cmpxchg have a volatile flag, so allow it to be set/get with LLVMGetVolatile and LLVMSetVolatile. Add missing LLVMAtomicRMWBinOpFAdd and LLVMAtomicRMWBinOpFSub enum constants. AtomicCmpXchg also has a weak flag, add a getter/setter for that too. Add a getter/setter for the binary-op of an atomicrmw.
      
      Add LLVMIsA## for CatchSwitchInst, CallBrInst and FenceInst, as well as AtomicCmpXchgInst and AtomicRMWInst.
      
      Update llvm-c-test to include atomicrmw and fence, and to copy volatile for the four applicable instructions.
      
      Differential Revision: https://reviews.llvm.org/D67132
      
      llvm-svn: 372938
      f57e968d
  8. Sep 25, 2019
    • George Rimar's avatar
      [llvm-readobj/llvm-readelf] - .stack_sizes: demangle symbol names in warnings reported. · 79152608
      George Rimar authored
      I started this patch as a refactoring, tried to make a helper for
      getting symbol names, similar to how we get section names
      used in warning messages.
      
      So this patch cleanups the code and fixes an issue: symbol names
      in warning messages were not demangled.
      
      Differential revision: https://reviews.llvm.org/D68012
      
      llvm-svn: 372867
      79152608
    • George Rimar's avatar
      [llvm-readobj] - Don't crash when dumping .stack_sizes and unable to find a relocation resolver. · 5b9a4081
      George Rimar authored
      The crash might happen when we have either a broken or unsupported object
      and trying to resolve relocations when dumping the .stack_sizes section.
      
      For the test case I used a 32-bits ELF header and a 64-bit relocation.
      In this case a null pointer is returned by the code instead of the relocation
      resolver function and then we crash.
      
      Differential revision: https://reviews.llvm.org/D67962
      
      llvm-svn: 372838
      5b9a4081
    • Huihui Zhang's avatar
      [NFC] Add { } to silence compiler warning [-Wmissing-braces]. · a18b00c8
      Huihui Zhang authored
      /local/mnt/workspace/huihuiz/llvm-comm-git-2/llvm-project/llvm/lib/Object/MachOObjectFile.cpp:2731:7: warning: suggest braces around initialization of subobject [-Wmissing-braces]
            "i386",   "x86_64", "x86_64h",  "armv4t",  "arm",    "armv5e",
            ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
            {
      1 warning generated.
      
      /local/mnt/workspace/huihuiz/llvm-comm-git-2/llvm-project/llvm/lib/Target/AMDGPU/AMDGPURegisterBankInfo.cpp:355:46: warning: suggest braces around initialization of subobject [-Wmissing-braces]
          return addMappingFromTable<1>(MI, MRI, { 0 }, Table);
                                                   ^
                                                   {}
      1 warning generated.
      
      /local/mnt/workspace/huihuiz/llvm-comm-git-2/llvm-project/llvm/tools/llvm-objcopy/ELF/Object.cpp:400:57: warning: suggest braces around initialization of subobject [-Wmissing-braces]
      static constexpr std::array<uint8_t, 4> ZlibGnuMagic = {'Z', 'L', 'I', 'B'};
                                                              ^~~~~~~~~~~~~~~~~~
                                                              {                 }
      1 warning generated.
      
      llvm-svn: 372811
      a18b00c8
  9. Sep 24, 2019
  10. Sep 23, 2019
  11. Sep 21, 2019
Loading