[Lldb-commits] [lldb] r334745 - Add remaining fixed-point types and saturated equivalents to fix -Wswitch of r334718

2018-07-06 Thread Fangrui Song via lldb-commits
Author: maskray Date: Thu Jun 14 11:19:40 2018 New Revision: 334745 URL: http://llvm.org/viewvc/llvm-project?rev=334745=rev Log: Add remaining fixed-point types and saturated equivalents to fix -Wswitch of r334718 Modified: lldb/trunk/source/Symbol/ClangASTContext.cpp Modified:

[Lldb-commits] [lldb] r319869 - Do not use default arguments of DataLayout::getPointer*. NFC

2018-07-06 Thread Fangrui Song via lldb-commits
Author: maskray Date: Tue Dec 5 17:32:06 2017 New Revision: 319869 URL: http://llvm.org/viewvc/llvm-project?rev=319869=rev Log: Do not use default arguments of DataLayout::getPointer*. NFC Summary: There are "FIXME"s in include/llvm/IR/DataLayout.h to remove the default arguments. Reviewers:

[Lldb-commits] [lldb] r337063 - Fix -Wswitch after introduction of clang; :Type::DependentVector in r337036

2018-07-13 Thread Fangrui Song via lldb-commits
Author: maskray Date: Fri Jul 13 15:40:40 2018 New Revision: 337063 URL: http://llvm.org/viewvc/llvm-project?rev=337063=rev Log: Fix -Wswitch after introduction of clang;:Type::DependentVector in r337036 Modified: lldb/trunk/source/Symbol/ClangASTContext.cpp Modified:

[Lldb-commits] [lldb] r343164 - llvm::sort(C.begin(), C.end(), ...) -> llvm::sort(C, ...)

2018-09-26 Thread Fangrui Song via lldb-commits
Author: maskray Date: Wed Sep 26 20:35:05 2018 New Revision: 343164 URL: http://llvm.org/viewvc/llvm-project?rev=343164=rev Log: llvm::sort(C.begin(), C.end(), ...) -> llvm::sort(C, ...) The convenience wrapper in STLExtras is available since rL342102. Modified:

[Lldb-commits] [lldb] r358249 - [IRMemoryMap] Fix -Wimplicit-fallthrough in -DLLVM_ENABLE_ASSERTIONS=off build

2019-04-11 Thread Fangrui Song via lldb-commits
Author: maskray Date: Thu Apr 11 19:38:17 2019 New Revision: 358249 URL: http://llvm.org/viewvc/llvm-project?rev=358249=rev Log: [IRMemoryMap] Fix -Wimplicit-fallthrough in -DLLVM_ENABLE_ASSERTIONS=off build Modified: lldb/trunk/source/Expression/IRMemoryMap.cpp Modified:

[Lldb-commits] [lldb] r360557 - [CMake] Add lli to LLDB_TEST_DEPS

2019-05-12 Thread Fangrui Song via lldb-commits
Author: maskray Date: Sun May 12 22:05:46 2019 New Revision: 360557 URL: http://llvm.org/viewvc/llvm-project?rev=360557=rev Log: [CMake] Add lli to LLDB_TEST_DEPS lli is used by lit/Breakpoint/jitbp_elf.test I had a test failure when running check-lldb-lit because my lli was stale. Modified:

[Lldb-commits] [lldb] r360562 - Remove declaratons of deleted structs/classes

2019-05-13 Thread Fangrui Song via lldb-commits
Author: maskray Date: Mon May 13 01:25:53 2019 New Revision: 360562 URL: http://llvm.org/viewvc/llvm-project?rev=360562=rev Log: Remove declaratons of deleted structs/classes Modified: lldb/trunk/include/lldb/lldb-forward.h Modified: lldb/trunk/include/lldb/lldb-forward.h URL:

[Lldb-commits] [lldb] r360554 - Fix file names in file headers. NFC

2019-05-12 Thread Fangrui Song via lldb-commits
Author: maskray Date: Sun May 12 21:42:32 2019 New Revision: 360554 URL: http://llvm.org/viewvc/llvm-project?rev=360554=rev Log: Fix file names in file headers. NFC Modified: lldb/trunk/include/lldb/API/SBExpressionOptions.h lldb/trunk/include/lldb/API/SBThreadPlan.h

[Lldb-commits] [lldb] r362570 - Fix -Wsign-compare by explicit cast after r362557

2019-06-04 Thread Fangrui Song via lldb-commits
Author: maskray Date: Tue Jun 4 18:49:06 2019 New Revision: 362570 URL: http://llvm.org/viewvc/llvm-project?rev=362570=rev Log: Fix -Wsign-compare by explicit cast after r362557 Modified: lldb/trunk/source/Plugins/UnwindAssembly/x86/x86AssemblyInspectionEngine.cpp Modified:

[Lldb-commits] [lldb] r362049 - DWARFDebugInfoEntry: delete unused Extract() and rename FastExtract() to Extract()

2019-05-29 Thread Fangrui Song via lldb-commits
Author: maskray Date: Wed May 29 18:51:16 2019 New Revision: 362049 URL: http://llvm.org/viewvc/llvm-project?rev=362049=rev Log: DWARFDebugInfoEntry: delete unused Extract() and rename FastExtract() to Extract() The function Extract() is almost a duplicate of FastExtract() but is not used.

[Lldb-commits] [lldb] r361962 - Clean up DWARFDebugInfoEntry

2019-05-29 Thread Fangrui Song via lldb-commits
Author: maskray Date: Wed May 29 07:36:11 2019 New Revision: 361962 URL: http://llvm.org/viewvc/llvm-project?rev=361962=rev Log: Clean up DWARFDebugInfoEntry Modified: lldb/trunk/source/Plugins/SymbolFile/DWARF/DWARFDebugInfoEntry.cpp

[Lldb-commits] [lldb] r360646 - ARMDefines.h: fix -Wimplicit-fallthrough in -DLLVM_ENABLE_ASSERTIONS=OFF builds

2019-05-13 Thread Fangrui Song via lldb-commits
Author: maskray Date: Mon May 13 21:09:52 2019 New Revision: 360646 URL: http://llvm.org/viewvc/llvm-project?rev=360646=rev Log: ARMDefines.h: fix -Wimplicit-fallthrough in -DLLVM_ENABLE_ASSERTIONS=OFF builds Reviewed By: JDevlieghere Differential Revision: https://reviews.llvm.org/D61844

[Lldb-commits] [lldb] r360654 - typedef enum -> enum

2019-05-14 Thread Fangrui Song via lldb-commits
Author: maskray Date: Tue May 14 01:55:50 2019 New Revision: 360654 URL: http://llvm.org/viewvc/llvm-project?rev=360654=rev Log: typedef enum -> enum Reviewed By: labath Differential Revision: https://reviews.llvm.org/D61883 Modified: lldb/trunk/include/lldb/Breakpoint/Breakpoint.h

[Lldb-commits] [lldb] r360757 - Group forward declarations in one namespace lldb_private {}

2019-05-15 Thread Fangrui Song via lldb-commits
Author: maskray Date: Wed May 15 02:15:13 2019 New Revision: 360757 URL: http://llvm.org/viewvc/llvm-project?rev=360757=rev Log: Group forward declarations in one namespace lldb_private {} Modified: lldb/trunk/include/lldb/Core/Address.h lldb/trunk/include/lldb/Core/AddressRange.h

[Lldb-commits] [lldb] r361358 - Delete unnecessary copy ctors

2019-05-22 Thread Fangrui Song via lldb-commits
Author: maskray Date: Wed May 22 01:38:23 2019 New Revision: 361358 URL: http://llvm.org/viewvc/llvm-project?rev=361358=rev Log: Delete unnecessary copy ctors Modified: lldb/trunk/include/lldb/Core/SearchFilter.h lldb/trunk/include/lldb/Utility/FileSpec.h

[Lldb-commits] [lldb] r360865 - Simplify ArchSpec::IsMIPS()

2019-05-16 Thread Fangrui Song via lldb-commits
Author: maskray Date: Thu May 16 01:37:32 2019 New Revision: 360865 URL: http://llvm.org/viewvc/llvm-project?rev=360865=rev Log: Simplify ArchSpec::IsMIPS() Modified: lldb/trunk/source/Plugins/ABI/SysV-mips64/ABISysV_mips64.cpp

[Lldb-commits] [lldb] r360868 - Simplify Triple::ppc64{, le} checks with Triple::isPPC64()

2019-05-16 Thread Fangrui Song via lldb-commits
Author: maskray Date: Thu May 16 02:07:33 2019 New Revision: 360868 URL: http://llvm.org/viewvc/llvm-project?rev=360868=rev Log: Simplify Triple::ppc64{,le} checks with Triple::isPPC64() While here, update some ppc64le specific check to isPPC64(), if it applies to big-endian as well, in the hope

[Lldb-commits] [lldb] r360762 - Delete unnecessary copy ctors/copy assignment operators

2019-05-15 Thread Fangrui Song via lldb-commits
Author: maskray Date: Wed May 15 04:23:54 2019 New Revision: 360762 URL: http://llvm.org/viewvc/llvm-project?rev=360762=rev Log: Delete unnecessary copy ctors/copy assignment operators It's the simplest and gives the cleanest semantics. Modified: lldb/trunk/include/lldb/Core/ModuleChild.h

[Lldb-commits] [lldb] r365295 - Change LaunchThread interface to return an Expected for non-Apple-non-Windows

2019-07-08 Thread Fangrui Song via lldb-commits
Author: maskray Date: Mon Jul 8 00:07:05 2019 New Revision: 365295 URL: http://llvm.org/viewvc/llvm-project?rev=365295=rev Log: Change LaunchThread interface to return an Expected for non-Apple-non-Windows Fixes Linux build errors after D64163/r365226 Modified:

[Lldb-commits] [lldb] r364702 - Use const auto *

2019-06-28 Thread Fangrui Song via lldb-commits
Author: maskray Date: Fri Jun 28 17:55:13 2019 New Revision: 364702 URL: http://llvm.org/viewvc/llvm-project?rev=364702=rev Log: Use const auto * Modified: lldb/trunk/source/Plugins/SymbolFile/DWARF/DWARFDebugInfoEntry.cpp lldb/trunk/source/Symbol/Block.cpp Modified:

[Lldb-commits] [lldb] r371962 - [test] Add -z separate-code to fix tests that ae sensitive to exact addresses after r371958

2019-09-16 Thread Fangrui Song via lldb-commits
Author: maskray Date: Mon Sep 16 00:52:30 2019 New Revision: 371962 URL: http://llvm.org/viewvc/llvm-project?rev=371962=rev Log: [test] Add -z separate-code to fix tests that ae sensitive to exact addresses after r371958 Modified: lldb/trunk/lit/SymbolFile/DWARF/debug-types-address-ranges.s

[Lldb-commits] [lldb] r367800 - Rename F_{None, Text, Append} to OF_{None, Text, Append}. NFC

2019-08-04 Thread Fangrui Song via lldb-commits
Author: maskray Date: Sun Aug 4 22:43:48 2019 New Revision: 367800 URL: http://llvm.org/viewvc/llvm-project?rev=367800=rev Log: Rename F_{None,Text,Append} to OF_{None,Text,Append}. NFC F_{None,Text,Append} are kept for compatibility since r334221. Modified:

[Lldb-commits] [lldb] r367549 - [lit] Use ld.lld -z separate-code to work around a debug_line parsing bug

2019-08-01 Thread Fangrui Song via lldb-commits
Author: maskray Date: Thu Aug 1 05:34:43 2019 New Revision: 367549 URL: http://llvm.org/viewvc/llvm-project?rev=367549=rev Log: [lit] Use ld.lld -z separate-code to work around a debug_line parsing bug The issue was exposed by D64903/r367537.

[Lldb-commits] [lldb] r366983 - cli-wrapper-mpxtable.cpp: fix file header

2019-07-24 Thread Fangrui Song via lldb-commits
Author: maskray Date: Wed Jul 24 22:15:50 2019 New Revision: 366983 URL: http://llvm.org/viewvc/llvm-project?rev=366983=rev Log: cli-wrapper-mpxtable.cpp: fix file header Modified: lldb/trunk/tools/intel-features/intel-mpx/cli-wrapper-mpxtable.cpp Modified:

[Lldb-commits] [lldb] r367001 - SymbolFile: Fix -Wunused-variable in -DLLVM_ENABLE_ASSERTIONS=off builds after D65089/r366791

2019-07-25 Thread Fangrui Song via lldb-commits
Author: maskray Date: Thu Jul 25 02:56:45 2019 New Revision: 367001 URL: http://llvm.org/viewvc/llvm-project?rev=367001=rev Log: SymbolFile: Fix -Wunused-variable in -DLLVM_ENABLE_ASSERTIONS=off builds after D65089/r366791 Modified: lldb/trunk/source/Symbol/SymbolFile.cpp Modified:

[Lldb-commits] [lldb] r367090 - ObjectFileELF: Use llvm::JamCRC to refactor CRC32 computation

2019-07-26 Thread Fangrui Song via lldb-commits
Author: maskray Date: Fri Jul 26 01:33:36 2019 New Revision: 367090 URL: http://llvm.org/viewvc/llvm-project?rev=367090=rev Log: ObjectFileELF: Use llvm::JamCRC to refactor CRC32 computation Reviewed By: labath Differential Revision: https://reviews.llvm.org/D65318 Modified:

[Lldb-commits] [lldb] r375072 - SBCommandReturnObject: change LLDB_RECORD_METHOD(..., FILE *, ...) to use LLDB_RECORD_DUMMY

2019-10-16 Thread Fangrui Song via lldb-commits
Author: maskray Date: Wed Oct 16 18:28:07 2019 New Revision: 375072 URL: http://llvm.org/viewvc/llvm-project?rev=375072=rev Log: SBCommandReturnObject: change LLDB_RECORD_METHOD(..., FILE *, ...) to use LLDB_RECORD_DUMMY POSIX says FILE is a typedef to a structure containing information about a

[Lldb-commits] [lldb] 041fa5a - [lldb] Fix file header of Host/posix/FileSystemPosix.cpp

2020-01-24 Thread Fangrui Song via lldb-commits
Author: Fangrui Song Date: 2020-01-24T00:29:53-08:00 New Revision: 041fa5ad7c3c61b2253efaa049326ea7e98752ab URL: https://github.com/llvm/llvm-project/commit/041fa5ad7c3c61b2253efaa049326ea7e98752ab DIFF: https://github.com/llvm/llvm-project/commit/041fa5ad7c3c61b2253efaa049326ea7e98752ab.diff

[Lldb-commits] [lldb] 77519b6 - [test] yaml2obj -docnum => --docnum=

2020-02-05 Thread Fangrui Song via lldb-commits
Author: Fangrui Song Date: 2020-02-05T10:25:04-08:00 New Revision: 77519b60d99233ccea2622ea3e40b30018d2f228 URL: https://github.com/llvm/llvm-project/commit/77519b60d99233ccea2622ea3e40b30018d2f228 DIFF: https://github.com/llvm/llvm-project/commit/77519b60d99233ccea2622ea3e40b30018d2f228.diff

[Lldb-commits] [lldb] 512c03b - [DebugInfo] Add a DWARFDataExtractor constructor that takes ArrayRef

2020-02-09 Thread Fangrui Song via lldb-commits
Author: Fangrui Song Date: 2020-02-09T17:45:32-08:00 New Revision: 512c03bac449d8d40c5fc8d0ff1719f887c7fdc3 URL: https://github.com/llvm/llvm-project/commit/512c03bac449d8d40c5fc8d0ff1719f887c7fdc3 DIFF: https://github.com/llvm/llvm-project/commit/512c03bac449d8d40c5fc8d0ff1719f887c7fdc3.diff

[Lldb-commits] [lldb] ebee131 - [lldb][test] Fix sh_type of .debug_cu_index and .debug_tu_index

2020-02-21 Thread Fangrui Song via lldb-commits
Author: Fangrui Song Date: 2020-02-21T17:38:39-08:00 New Revision: ebee131259719fa9c06cd346e21ace3fa8ac0888 URL: https://github.com/llvm/llvm-project/commit/ebee131259719fa9c06cd346e21ace3fa8ac0888 DIFF: https://github.com/llvm/llvm-project/commit/ebee131259719fa9c06cd346e21ace3fa8ac0888.diff

[Lldb-commits] [lldb] e29065a - [lldb][test] Fix sh_flags and sh_entsize of .debug_str.dwo

2020-02-21 Thread Fangrui Song via lldb-commits
Author: Fangrui Song Date: 2020-02-21T18:51:05-08:00 New Revision: e29065a105342a904871437d18a4e6fab09e5bc1 URL: https://github.com/llvm/llvm-project/commit/e29065a105342a904871437d18a4e6fab09e5bc1 DIFF: https://github.com/llvm/llvm-project/commit/e29065a105342a904871437d18a4e6fab09e5bc1.diff

[Lldb-commits] [lldb] 6fdd6a7 - [Disassembler] Delete the VStream parameter of MCDisassembler::getInstruction()

2020-01-11 Thread Fangrui Song via lldb-commits
Author: Fangrui Song Date: 2020-01-11T13:34:52-08:00 New Revision: 6fdd6a7b3f696972edc244488f59532d05136a27 URL: https://github.com/llvm/llvm-project/commit/6fdd6a7b3f696972edc244488f59532d05136a27 DIFF: https://github.com/llvm/llvm-project/commit/6fdd6a7b3f696972edc244488f59532d05136a27.diff

[Lldb-commits] [lldb] bbfebd7 - [CMake] Add $ORIGIN/../../../../lib to rpath if BUILD_SHARED_LIBS or LLVM_LINK_LLVM_DYLIB on *nix

2020-01-06 Thread Fangrui Song via lldb-commits
Author: Fangrui Song Date: 2020-01-06T10:01:55-08:00 New Revision: bbfebd7b8a671c9649305b8a5f72e93dd1ef60e1 URL: https://github.com/llvm/llvm-project/commit/bbfebd7b8a671c9649305b8a5f72e93dd1ef60e1 DIFF: https://github.com/llvm/llvm-project/commit/bbfebd7b8a671c9649305b8a5f72e93dd1ef60e1.diff

[Lldb-commits] [lldb] 71269a1 - [lldb] Add .clang-tidy with customization to disable readability-identifier-naming

2020-03-09 Thread Fangrui Song via lldb-commits
Author: Fangrui Song Date: 2020-03-09T12:50:28-07:00 New Revision: 71269a1f172cdad1cc0d7e2e6c94a7ece11ddb27 URL: https://github.com/llvm/llvm-project/commit/71269a1f172cdad1cc0d7e2e6c94a7ece11ddb27 DIFF: https://github.com/llvm/llvm-project/commit/71269a1f172cdad1cc0d7e2e6c94a7ece11ddb27.diff

[Lldb-commits] [lldb] 95bfeb5 - [lldb] Delete two unneeded

2020-09-21 Thread Fangrui Song via lldb-commits
Author: Fangrui Song Date: 2020-09-21T18:11:26-07:00 New Revision: 95bfeb5903c7b75a0a9ddf5c4b53e4308bb05486 URL: https://github.com/llvm/llvm-project/commit/95bfeb5903c7b75a0a9ddf5c4b53e4308bb05486 DIFF: https://github.com/llvm/llvm-project/commit/95bfeb5903c7b75a0a9ddf5c4b53e4308bb05486.diff

[Lldb-commits] [lldb] 0b9f9ec - Include sstream after D85705

2020-09-21 Thread Fangrui Song via lldb-commits
Author: Fangrui Song Date: 2020-09-21T17:41:59-07:00 New Revision: 0b9f9eced9c532ee9bbf320216a2e85b314eb5f0 URL: https://github.com/llvm/llvm-project/commit/0b9f9eced9c532ee9bbf320216a2e85b314eb5f0 DIFF: https://github.com/llvm/llvm-project/commit/0b9f9eced9c532ee9bbf320216a2e85b314eb5f0.diff

[Lldb-commits] [lldb] f212122 - [lldb][test] Remove accidental import pdb in 783dc7dc7ed7487d0782c2feb8854df949b98e69

2020-09-22 Thread Fangrui Song via lldb-commits
Author: Fangrui Song Date: 2020-09-22T13:08:12-07:00 New Revision: f21212215031e5871c38daf3b06b1a6250fd URL: https://github.com/llvm/llvm-project/commit/f21212215031e5871c38daf3b06b1a6250fd DIFF: https://github.com/llvm/llvm-project/commit/f21212215031e5871c38daf3b06b1a6250fd.diff

[Lldb-commits] [lldb] 67782a0 - [lldb/bindings] Fix -Wformat after D88123

2020-09-25 Thread Fangrui Song via lldb-commits
Author: Fangrui Song Date: 2020-09-25T17:33:12-07:00 New Revision: 67782a0f99c6a792c9d60267d42b21f7335814ba URL: https://github.com/llvm/llvm-project/commit/67782a0f99c6a792c9d60267d42b21f7335814ba DIFF: https://github.com/llvm/llvm-project/commit/67782a0f99c6a792c9d60267d42b21f7335814ba.diff

[Lldb-commits] [lldb] a6db64e - [ELF] Allow sections after a non-SHF_ALLOC section to be covered by PT_LOAD

2020-08-06 Thread Fangrui Song via lldb-commits
Author: Fangrui Song Date: 2020-08-06T08:27:15-07:00 New Revision: a6db64ef4a9906c96ef5652739ac15aefaa7827c URL: https://github.com/llvm/llvm-project/commit/a6db64ef4a9906c96ef5652739ac15aefaa7827c DIFF: https://github.com/llvm/llvm-project/commit/a6db64ef4a9906c96ef5652739ac15aefaa7827c.diff

[Lldb-commits] [lldb] 53880b8 - [CMake] Make `intrinsics_gen` dependency unconditional.

2020-07-17 Thread Fangrui Song via lldb-commits
Author: Michele Scandale Date: 2020-07-17T16:43:17-07:00 New Revision: 53880b8cb9c61e81457d13c0adefe51ff41664fa URL: https://github.com/llvm/llvm-project/commit/53880b8cb9c61e81457d13c0adefe51ff41664fa DIFF:

[Lldb-commits] [lldb] ce5e218 - [lldb] Fix build after found_decls was removed by 1f40d60a3b7f310ff3f77bb8643a27d979a703cb

2020-12-01 Thread Fangrui Song via lldb-commits
Author: Fangrui Song Date: 2020-12-01T19:14:35-08:00 New Revision: ce5e21868c22479df62ebd8884adc1bd7c964433 URL: https://github.com/llvm/llvm-project/commit/ce5e21868c22479df62ebd8884adc1bd7c964433 DIFF: https://github.com/llvm/llvm-project/commit/ce5e21868c22479df62ebd8884adc1bd7c964433.diff

[Lldb-commits] [lldb] 9bb9b73 - Remove HAVE_VCS_VERSION_INC, not needed

2020-10-29 Thread Fangrui Song via lldb-commits
Author: Marcel Hlopko Date: 2020-10-29T13:09:05-07:00 New Revision: 9bb9b737c5573cf3850230bc4db8dac7be0e1e85 URL: https://github.com/llvm/llvm-project/commit/9bb9b737c5573cf3850230bc4db8dac7be0e1e85 DIFF: https://github.com/llvm/llvm-project/commit/9bb9b737c5573cf3850230bc4db8dac7be0e1e85.diff

[Lldb-commits] [lldb] 6afdf13 - Makefile.rules: Avoid redundant .d generation (make restart) and inline archive rule to the only test

2021-01-20 Thread Fangrui Song via lldb-commits
Author: Fangrui Song Date: 2021-01-20T14:22:33-08:00 New Revision: 6afdf13ae4ccf00296065960a0b311c87e6f8dd5 URL: https://github.com/llvm/llvm-project/commit/6afdf13ae4ccf00296065960a0b311c87e6f8dd5 DIFF: https://github.com/llvm/llvm-project/commit/6afdf13ae4ccf00296065960a0b311c87e6f8dd5.diff

[Lldb-commits] [lldb] 95d1461 - Makefile.rules: Delete GCC 4.6 workaround

2021-01-17 Thread Fangrui Song via lldb-commits
Author: Fangrui Song Date: 2021-01-17T13:16:38-08:00 New Revision: 95d146182fdf2315e74943b93fb3bb0cbafc5d89 URL: https://github.com/llvm/llvm-project/commit/95d146182fdf2315e74943b93fb3bb0cbafc5d89 DIFF: https://github.com/llvm/llvm-project/commit/95d146182fdf2315e74943b93fb3bb0cbafc5d89.diff

[Lldb-commits] [lldb] b74ae43 - Makefile.rules: Make HOST_OS/OS simply expanded variable to avoid excess uname -s invocations

2021-01-17 Thread Fangrui Song via lldb-commits
Author: Fangrui Song Date: 2021-01-17T17:19:29-08:00 New Revision: b74ae43c44b1c954508149409d3cfe6477be4079 URL: https://github.com/llvm/llvm-project/commit/b74ae43c44b1c954508149409d3cfe6477be4079 DIFF: https://github.com/llvm/llvm-project/commit/b74ae43c44b1c954508149409d3cfe6477be4079.diff

[Lldb-commits] [lldb] 45db9d4 - [test] Fix unused FileCheck prefixes in lldb

2021-02-01 Thread Fangrui Song via lldb-commits
Author: Fangrui Song Date: 2021-02-01T21:45:51-08:00 New Revision: 45db9d4594bdbb4a304c16f6ad61b87c60eeb300 URL: https://github.com/llvm/llvm-project/commit/45db9d4594bdbb4a304c16f6ad61b87c60eeb300 DIFF: https://github.com/llvm/llvm-project/commit/45db9d4594bdbb4a304c16f6ad61b87c60eeb300.diff

[Lldb-commits] [lldb] f1e2d58 - [OptTable] Rename PrintHelp to printHelp

2021-06-24 Thread Fangrui Song via lldb-commits
Author: Fangrui Song Date: 2021-06-24T14:47:03-07:00 New Revision: f1e2d5851bf869685971d5acb894b39a89ea2d49 URL: https://github.com/llvm/llvm-project/commit/f1e2d5851bf869685971d5acb894b39a89ea2d49 DIFF: https://github.com/llvm/llvm-project/commit/f1e2d5851bf869685971d5acb894b39a89ea2d49.diff

[Lldb-commits] [lldb] c2f819a - [MC] Refactor MCObjectFileInfo initialization and allow targets to create MCObjectFileInfo

2021-05-23 Thread Fangrui Song via lldb-commits
Author: Philipp Krones Date: 2021-05-23T14:15:23-07:00 New Revision: c2f819af73c54a8cf923e5a25099ca95dbe76312 URL: https://github.com/llvm/llvm-project/commit/c2f819af73c54a8cf923e5a25099ca95dbe76312 DIFF:

[Lldb-commits] [lldb] 632ebc4 - [MC] Untangle MCContext and MCObjectFileInfo

2021-05-05 Thread Fangrui Song via lldb-commits
Author: Philipp Krones Date: 2021-05-05T10:03:02-07:00 New Revision: 632ebc4ab4374e53fce1ec870465c587e0a33668 URL: https://github.com/llvm/llvm-project/commit/632ebc4ab4374e53fce1ec870465c587e0a33668 DIFF:

[Lldb-commits] [lldb] 50830e5 - [lldb] Add -Wl, -rpath to make tests run with fresh built libc++

2021-01-24 Thread Fangrui Song via lldb-commits
Author: Fangrui Song Date: 2021-01-24T20:21:57Z New Revision: 50830e50031b5420f09f79e82cf6ec984fb8328d URL: https://github.com/llvm/llvm-project/commit/50830e50031b5420f09f79e82cf6ec984fb8328d DIFF: https://github.com/llvm/llvm-project/commit/50830e50031b5420f09f79e82cf6ec984fb8328d.diff LOG:

[Lldb-commits] [lldb] a2cd6d0 - [lldb] Fix demangler leaks in the DWARF AST parser

2021-04-19 Thread Fangrui Song via lldb-commits
Author: Fangrui Song Date: 2021-04-19T16:36:54-07:00 New Revision: a2cd6d07691a645bfb8fb5eeeba2eb5970312c7f URL: https://github.com/llvm/llvm-project/commit/a2cd6d07691a645bfb8fb5eeeba2eb5970312c7f DIFF: https://github.com/llvm/llvm-project/commit/a2cd6d07691a645bfb8fb5eeeba2eb5970312c7f.diff

[Lldb-commits] [lldb] cdae6d7 - [lldb] Fix one leak in reproducer

2021-04-19 Thread Fangrui Song via lldb-commits
Author: Fangrui Song Date: 2021-04-19T19:39:10-07:00 New Revision: cdae6d7711d621c19623ae4fbfdde9e0301260c7 URL: https://github.com/llvm/llvm-project/commit/cdae6d7711d621c19623ae4fbfdde9e0301260c7 DIFF: https://github.com/llvm/llvm-project/commit/cdae6d7711d621c19623ae4fbfdde9e0301260c7.diff

[Lldb-commits] [lldb] 135d07f - [lldb][test] Fix Shell/SymbolFile/symbol-binding.test

2021-02-13 Thread Fangrui Song via lldb-commits
Author: Fangrui Song Date: 2021-02-13T11:10:29-08:00 New Revision: 135d07fb0d8f7fed37c4f8cebb42c70cd05bfa84 URL: https://github.com/llvm/llvm-project/commit/135d07fb0d8f7fed37c4f8cebb42c70cd05bfa84 DIFF: https://github.com/llvm/llvm-project/commit/135d07fb0d8f7fed37c4f8cebb42c70cd05bfa84.diff

[Lldb-commits] [lldb] 40aab04 - [test] Migrate -gcc-toolchain with space separator to --gcc-toolchain=

2021-08-20 Thread Fangrui Song via lldb-commits
Author: Fangrui Song Date: 2021-08-20T15:24:58-07:00 New Revision: 40aab0412fe7a14781e133627c2bb0a22761eac8 URL: https://github.com/llvm/llvm-project/commit/40aab0412fe7a14781e133627c2bb0a22761eac8 DIFF: https://github.com/llvm/llvm-project/commit/40aab0412fe7a14781e133627c2bb0a22761eac8.diff

[Lldb-commits] [lldb] 5a95ff2 - [lldb] Fix -Wunused-but-set-variable

2021-08-16 Thread Fangrui Song via lldb-commits
Author: Fangrui Song Date: 2021-08-16T16:41:17-07:00 New Revision: 5a95ff2bfcc191f3ffecb69ac1d762a93b149eee URL: https://github.com/llvm/llvm-project/commit/5a95ff2bfcc191f3ffecb69ac1d762a93b149eee DIFF: https://github.com/llvm/llvm-project/commit/5a95ff2bfcc191f3ffecb69ac1d762a93b149eee.diff

[Lldb-commits] [lldb] e69d359 - [lldb] Actually fix format specifier after D108233

2021-09-13 Thread Fangrui Song via lldb-commits
Author: Fangrui Song Date: 2021-09-13T13:40:37-07:00 New Revision: e69d359841b6358f1d17569212ef8cf91244ca11 URL: https://github.com/llvm/llvm-project/commit/e69d359841b6358f1d17569212ef8cf91244ca11 DIFF: https://github.com/llvm/llvm-project/commit/e69d359841b6358f1d17569212ef8cf91244ca11.diff

[Lldb-commits] [lldb] 172a55e - [lldb] Fix FunctionDecl::Create after D102343

2021-07-29 Thread Fangrui Song via lldb-commits
Author: Fangrui Song Date: 2021-07-29T09:57:10-07:00 New Revision: 172a55e7a40d27c7882be2e86d515696d8e12427 URL: https://github.com/llvm/llvm-project/commit/172a55e7a40d27c7882be2e86d515696d8e12427 DIFF: https://github.com/llvm/llvm-project/commit/172a55e7a40d27c7882be2e86d515696d8e12427.diff

[Lldb-commits] [lldb] 72a8367 - Replace LLVM_ATTRIBUTE_NORETURN with C++11 [[noreturn]]. NFC

2021-07-29 Thread Fangrui Song via lldb-commits
Author: Fangrui Song Date: 2021-07-29T09:59:45-07:00 New Revision: 72a83674dd3a13b59442cd7cb07b53902f7d6a33 URL: https://github.com/llvm/llvm-project/commit/72a83674dd3a13b59442cd7cb07b53902f7d6a33 DIFF: https://github.com/llvm/llvm-project/commit/72a83674dd3a13b59442cd7cb07b53902f7d6a33.diff

[Lldb-commits] [lldb] 1b81581 - [lldb][test] Remove Intel MPX tests

2021-10-12 Thread Fangrui Song via lldb-commits
Author: Fangrui Song Date: 2021-10-12T16:16:58-07:00 New Revision: 1b81581feec8cb6361d898dea17ed2f0ad7e5b13 URL: https://github.com/llvm/llvm-project/commit/1b81581feec8cb6361d898dea17ed2f0ad7e5b13 DIFF: https://github.com/llvm/llvm-project/commit/1b81581feec8cb6361d898dea17ed2f0ad7e5b13.diff

[Lldb-commits] [lldb] b71b250 - [test] Fix PayloadString: in lldb tests

2021-07-26 Thread Fangrui Song via lldb-commits
Author: Fangrui Song Date: 2021-07-26T10:00:05-07:00 New Revision: b71b25008f2a746d11ed1db1f49a6461b387cc8a URL: https://github.com/llvm/llvm-project/commit/b71b25008f2a746d11ed1db1f49a6461b387cc8a DIFF: https://github.com/llvm/llvm-project/commit/b71b25008f2a746d11ed1db1f49a6461b387cc8a.diff

[Lldb-commits] [lldb] d0fb3ea - [lldb] Fix use-after-move in SymbolFile/NativePDB

2022-02-14 Thread Fangrui Song via lldb-commits
Author: Fangrui Song Date: 2022-02-14T11:03:26-08:00 New Revision: d0fb3eab74aaa357037fd2632f912e71222c5586 URL: https://github.com/llvm/llvm-project/commit/d0fb3eab74aaa357037fd2632f912e71222c5586 DIFF: https://github.com/llvm/llvm-project/commit/d0fb3eab74aaa357037fd2632f912e71222c5586.diff

[Lldb-commits] [lldb] 385f5c4 - [lldb][CMake] Fix linking of gdb-remote when LLVM_ENABLE_ZLIB is ON

2022-02-07 Thread Fangrui Song via lldb-commits
Author: Mariusz Ceier Date: 2022-02-07T23:26:22-08:00 New Revision: 385f5c4d33799df25a85ceb54b6232499cb8a78d URL: https://github.com/llvm/llvm-project/commit/385f5c4d33799df25a85ceb54b6232499cb8a78d DIFF: https://github.com/llvm/llvm-project/commit/385f5c4d33799df25a85ceb54b6232499cb8a78d.diff

[Lldb-commits] [lldb] ca68038 - Reland "[Driver] Default CLANG_DEFAULT_PIE_ON_LINUX to ON""

2022-04-09 Thread Fangrui Song via lldb-commits
Author: Fangrui Song Date: 2022-04-08T23:40:18-07:00 New Revision: ca68038d12a23fa7ebb2b1ccbda93c321635e6bf URL: https://github.com/llvm/llvm-project/commit/ca68038d12a23fa7ebb2b1ccbda93c321635e6bf DIFF: https://github.com/llvm/llvm-project/commit/ca68038d12a23fa7ebb2b1ccbda93c321635e6bf.diff

[Lldb-commits] [lldb] Support target names with dots in more utilities (PR #65812)

2023-09-15 Thread Fangrui Song via lldb-commits
https://github.com/MaskRay edited https://github.com/llvm/llvm-project/pull/65812 ___ lldb-commits mailing list lldb-commits@lists.llvm.org https://lists.llvm.org/cgi-bin/mailman/listinfo/lldb-commits

[Lldb-commits] [lldb] Support target names with dots in more utilities (PR #65812)

2023-09-15 Thread Fangrui Song via lldb-commits
@@ -390,6 +390,21 @@ StringRef stem(StringRef path, Style style = Style::native); /// @result The extension of \a path. StringRef extension(StringRef path, Style style = Style::native); +/// Get the program's name +/// +/// If the path ends with the string .exe, returns the

[Lldb-commits] [lldb] Support target names with dots in more utilities (PR #65812)

2023-09-15 Thread Fangrui Song via lldb-commits
https://github.com/MaskRay approved this pull request. LGTM, but @jh7370 usually wants to have an eye on such changes. https://github.com/llvm/llvm-project/pull/65812 ___ lldb-commits mailing list lldb-commits@lists.llvm.org

[Lldb-commits] [compiler-rt] [flang] [clang] [libc] [llvm] [clang-tools-extra] [libcxx] [lldb] [PowerPC] Support mcmodel=large for AIX (PR #70652)

2023-11-02 Thread Fangrui Song via lldb-commits
@@ -5723,16 +5723,14 @@ void Clang::ConstructJob(Compilation , const JobAction , if (Arg *A = Args.getLastArg(options::OPT_mcmodel_EQ)) { StringRef CM = A->getValue(); bool Ok = false; -if (Triple.isOSAIX() && CM == "medium") { +if (Triple.isOSAIX() && CM ==

[Lldb-commits] [lldb] 34ee53c - [lldb][test] Fix TestCallBuiltinFunction.py

2023-09-27 Thread Fangrui Song via lldb-commits
Author: Fangrui Song Date: 2023-09-27T22:37:24-07:00 New Revision: 34ee53c9e390019d757b453ceba9cc3e47ab0df1 URL: https://github.com/llvm/llvm-project/commit/34ee53c9e390019d757b453ceba9cc3e47ab0df1 DIFF: https://github.com/llvm/llvm-project/commit/34ee53c9e390019d757b453ceba9cc3e47ab0df1.diff

[Lldb-commits] [lldb] c129220 - [lldb/gdb-remote] Fix -Wswitch after D116462

2022-04-19 Thread Fangrui Song via lldb-commits
Author: Fangrui Song Date: 2022-04-19T18:01:06-07:00 New Revision: c129220eaa983d111c1432763db9da4526b405e3 URL: https://github.com/llvm/llvm-project/commit/c129220eaa983d111c1432763db9da4526b405e3 DIFF: https://github.com/llvm/llvm-project/commit/c129220eaa983d111c1432763db9da4526b405e3.diff

[Lldb-commits] [lldb] 2aca33b - Reland "[Driver] Default CLANG_DEFAULT_PIE_ON_LINUX to ON""

2022-04-06 Thread Fangrui Song via lldb-commits
Author: Fangrui Song Date: 2022-04-06T20:19:07-07:00 New Revision: 2aca33baf15926afe2520a06b1427a9894226fd2 URL: https://github.com/llvm/llvm-project/commit/2aca33baf15926afe2520a06b1427a9894226fd2 DIFF: https://github.com/llvm/llvm-project/commit/2aca33baf15926afe2520a06b1427a9894226fd2.diff

[Lldb-commits] [clang-tools-extra] [compiler-rt] [flang] [llvm] [lldb] [mlir] [clang] [Profile] Add binary profile correlation to offload profile metadata at runtime. (PR #69493)

2023-11-09 Thread Fangrui Song via lldb-commits
@@ -1331,6 +1336,18 @@ static int merge_main(int argc, const char *argv[]) { "(default: 1)")); cl::ParseCommandLineOptions(argc, argv, "LLVM profile data merger\n"); + if (!DebugInfoFilename.empty() && !BinaryFilename.empty()) { +

[Lldb-commits] [compiler-rt] [clang-tools-extra] [lldb] [clang] [flang] [mlir] [llvm] [Profile] Add binary profile correlation to offload profile metadata at runtime. (PR #69493)

2023-11-09 Thread Fangrui Song via lldb-commits
@@ -0,0 +1,11 @@ +; RUN: opt < %s -passes=instrprof -profile-correlate=binary -S | FileCheck %s MaskRay wrote: This isn't clear how `__profd_foo` is different from `-profile-correlate=none`. This test can be added to `coverage.ll` as a new RUN line

[Lldb-commits] [clang] [clang-tools-extra] [mlir] [lldb] [llvm] [flang] [compiler-rt] [Profile] Add binary profile correlation to offload profile metadata at runtime. (PR #69493)

2023-11-09 Thread Fangrui Song via lldb-commits
https://github.com/MaskRay edited https://github.com/llvm/llvm-project/pull/69493 ___ lldb-commits mailing list lldb-commits@lists.llvm.org https://lists.llvm.org/cgi-bin/mailman/listinfo/lldb-commits

[Lldb-commits] [lldb] [clang-tools-extra] [flang] [mlir] [clang] [llvm] [compiler-rt] [Profile] Add binary profile correlation to offload profile metadata at runtime. (PR #69493)

2023-11-09 Thread Fangrui Song via lldb-commits
@@ -0,0 +1,46 @@ +// REQUIRES: linux || windows MaskRay wrote: Add `// REQUIRES: lld-available` https://github.com/llvm/llvm-project/pull/69493 ___ lldb-commits mailing list lldb-commits@lists.llvm.org

[Lldb-commits] [compiler-rt] [llvm] [flang] [clang-tools-extra] [mlir] [lldb] [clang] [Profile] Add binary profile correlation to offload profile metadata at runtime. (PR #69493)

2023-11-09 Thread Fangrui Song via lldb-commits
https://github.com/MaskRay commented: The comment `The data and names sections are omitted in lightweight mode.` in compiler-rt should be updated since binary correlation is different from the lightweight mode https://github.com/llvm/llvm-project/pull/69493

[Lldb-commits] [clang-tools-extra] [clang] [lldb] [compiler-rt] [flang] [mlir] [llvm] [Profile] Add binary profile correlation to offload profile metadata at runtime. (PR #69493)

2023-11-09 Thread Fangrui Song via lldb-commits
https://github.com/MaskRay edited https://github.com/llvm/llvm-project/pull/69493 ___ lldb-commits mailing list lldb-commits@lists.llvm.org https://lists.llvm.org/cgi-bin/mailman/listinfo/lldb-commits

[Lldb-commits] [lldb] [compiler-rt] [flang] [llvm] [clang] [clang-tools-extra] [mlir] [Profile] Add binary profile correlation to offload profile metadata at runtime. (PR #69493)

2023-11-09 Thread Fangrui Song via lldb-commits
@@ -0,0 +1,46 @@ +// REQUIRES: linux || windows +// Default +// RUN: %clang -o %t.normal -fprofile-instr-generate -fcoverage-mapping -fuse-ld=lld %S/Inputs/instrprof-debug-info-correlate-main.cpp %S/Inputs/instrprof-debug-info-correlate-foo.cpp +// RUN: env

[Lldb-commits] [flang] [clang] [mlir] [lldb] [clang-tools-extra] [llvm] [compiler-rt] [Profile] Add binary profile correlation to offload profile metadata at runtime. (PR #69493)

2023-11-09 Thread Fangrui Song via lldb-commits
@@ -46,14 +73,38 @@ const char *InstrProfCorrelator::NumCountersAttributeName = "Num Counters"; llvm::Expected> InstrProfCorrelator::Context::get(std::unique_ptr Buffer, - const object::ObjectFile ) { + const

[Lldb-commits] [compiler-rt] [lldb] [llvm] [flang] [clang] [mlir] [clang-tools-extra] [Profile] Add binary profile correlation to offload profile metadata at runtime. (PR #69493)

2023-11-09 Thread Fangrui Song via lldb-commits
@@ -1331,6 +1336,18 @@ static int merge_main(int argc, const char *argv[]) { "(default: 1)")); cl::ParseCommandLineOptions(argc, argv, "LLVM profile data merger\n"); + if (!DebugInfoFilename.empty() && !BinaryFilename.empty()) { +

[Lldb-commits] [compiler-rt] [mlir] [llvm] [clang] [clang-tools-extra] [flang] [lldb] [Profile] Add binary profile correlation to offload profile metadata at runtime. (PR #69493)

2023-11-09 Thread Fangrui Song via lldb-commits
@@ -0,0 +1,9 @@ +// RUN: %clang_cc1 -fprofile-instrument=clang -fcoverage-mapping -emit-llvm -o - %s | FileCheck %s +// RUN: %clang_cc1 -mllvm -profile-correlate=binary -fprofile-instrument=clang -fcoverage-mapping -emit-llvm -o - %s | FileCheck %s

[Lldb-commits] [lldb] [clang-tools-extra] [flang] [mlir] [clang] [llvm] [compiler-rt] [Profile] Add binary profile correlation to offload profile metadata at runtime. (PR #69493)

2023-11-09 Thread Fangrui Song via lldb-commits
MaskRay wrote: The patch does not apply cleanly at HEAD. The fix-up commit `resolve conflict` contains the rebased part and a lot of unrelated changes. I think in this case, it's cleaner to squash all the commits and force push to `binary-correlate`. (Force push is fine with me:

[Lldb-commits] [flang] [compiler-rt] [lldb] [clang] [llvm] [mlir] [clang-tools-extra] [Profile] Add binary profile correlation to offload profile metadata at runtime. (PR #69493)

2023-11-09 Thread Fangrui Song via lldb-commits
@@ -195,8 +195,14 @@ OPTIONS .. option:: --debug-info= Specify the executable or ``.dSYM`` that contains debug info for the raw profile. - When ``-debug-info-correlate`` was used for instrumentation, use this option - to correlate the raw profile. + When

[Lldb-commits] [clang-tools-extra] [llvm] [lldb] [flang] [mlir] [clang] [compiler-rt] [Profile] Add binary profile correlation to offload profile metadata at runtime. (PR #69493)

2023-11-09 Thread Fangrui Song via lldb-commits
@@ -1341,20 +1344,26 @@ void InstrProfiling::createDataVariable(InstrProfCntrInstBase *Inc, } auto *Data = new GlobalVariable(*M, DataTy, false, Linkage, nullptr, DataVarName); - // Reference the counter variable with a label difference (link-time - // constant).

[Lldb-commits] [clang-tools-extra] [compiler-rt] [flang] [llvm] [lldb] [mlir] [clang] [Profile] Add binary profile correlation to offload profile metadata at runtime. (PR #69493)

2023-11-09 Thread Fangrui Song via lldb-commits
@@ -1829,6 +1833,22 @@ void CoverageMappingModuleGen::emit() { llvm::GlobalValue::InternalLinkage, NamesArrVal, llvm::getCoverageUnusedNamesVarName()); } + const StringRef

[Lldb-commits] [clang-tools-extra] [libcxx] [lldb] [flang] [lld] [llvm] [libc] [clang] [compiler-rt] [asan] Report executable/DSO name for report_globals=2 and odr-violation checking (PR #71879)

2023-11-10 Thread Fangrui Song via lldb-commits
https://github.com/MaskRay closed https://github.com/llvm/llvm-project/pull/71879 ___ lldb-commits mailing list lldb-commits@lists.llvm.org https://lists.llvm.org/cgi-bin/mailman/listinfo/lldb-commits

[Lldb-commits] [libc] [lldb] [compiler-rt] [clang-tools-extra] [flang] [lld] [libcxx] [llvm] [clang] [asan] Report executable/DSO name for report_globals=2 and odr-violation checking (PR #71879)

2023-11-10 Thread Fangrui Song via lldb-commits
https://github.com/MaskRay updated https://github.com/llvm/llvm-project/pull/71879 >From 573a5c0ea74284f572cb1cff7e8d3e2d9cac210b Mon Sep 17 00:00:00 2001 From: Fangrui Song Date: Thu, 9 Nov 2023 15:17:25 -0800 Subject: [PATCH 1/3] [asan] Report executable/DSO name for report_globals=2 and

[Lldb-commits] [lldb] b1aed14 - [llvm][lldb] use FindLibEdit.cmake everywhere

2022-05-12 Thread Fangrui Song via lldb-commits
Author: Tobias Ribizel Date: 2022-05-12T15:59:41-07:00 New Revision: b1aed14bfea07508e4b9d864168c1ae6b5b5c665 URL: https://github.com/llvm/llvm-project/commit/b1aed14bfea07508e4b9d864168c1ae6b5b5c665 DIFF:

[Lldb-commits] [lldb] ecfaf48 - [lldb] Remove ELF .zdebug support

2022-07-14 Thread Fangrui Song via lldb-commits
Author: Fangrui Song Date: 2022-07-14T10:12:48-07:00 New Revision: ecfaf4801cd0cc85fdced820110652f0281765fa URL: https://github.com/llvm/llvm-project/commit/ecfaf4801cd0cc85fdced820110652f0281765fa DIFF: https://github.com/llvm/llvm-project/commit/ecfaf4801cd0cc85fdced820110652f0281765fa.diff

[Lldb-commits] [lldb] e690137 - [Support] Change compression::zlib::{compress, uncompress} to use uint8_t *

2022-07-13 Thread Fangrui Song via lldb-commits
Author: Fangrui Song Date: 2022-07-13T16:26:54-07:00 New Revision: e690137dde1c9b037e0c987d393da054d86eeeab URL: https://github.com/llvm/llvm-project/commit/e690137dde1c9b037e0c987d393da054d86eeeab DIFF: https://github.com/llvm/llvm-project/commit/e690137dde1c9b037e0c987d393da054d86eeeab.diff

[Lldb-commits] [lldb] 3c849d0 - Modernize Optional::{getValueOr, hasValue}

2022-07-15 Thread Fangrui Song via lldb-commits
Author: Fangrui Song Date: 2022-07-15T01:20:39-07:00 New Revision: 3c849d0aefa1101cf38586449c2105a97797c414 URL: https://github.com/llvm/llvm-project/commit/3c849d0aefa1101cf38586449c2105a97797c414 DIFF: https://github.com/llvm/llvm-project/commit/3c849d0aefa1101cf38586449c2105a97797c414.diff

[Lldb-commits] [lldb] 67854f9 - Use value_or instead of getValueOr. NFC

2022-06-29 Thread Fangrui Song via lldb-commits
Author: Fangrui Song Date: 2022-06-29T21:55:02-07:00 New Revision: 67854f9ed0cd512f59736730f4c05de25501ae54 URL: https://github.com/llvm/llvm-project/commit/67854f9ed0cd512f59736730f4c05de25501ae54 DIFF: https://github.com/llvm/llvm-project/commit/67854f9ed0cd512f59736730f4c05de25501ae54.diff

[Lldb-commits] [lldb] 115b189 - [lldb][ARC] Fix -Wtautological-bitwise-compare warning

2022-08-13 Thread Fangrui Song via lldb-commits
Author: Fangrui Song Date: 2022-08-13T00:18:37-07:00 New Revision: 115b1899a114285981814a641587e9704c2b9eb9 URL: https://github.com/llvm/llvm-project/commit/115b1899a114285981814a641587e9704c2b9eb9 DIFF: https://github.com/llvm/llvm-project/commit/115b1899a114285981814a641587e9704c2b9eb9.diff

[Lldb-commits] [lldb] cdeb50c - [lldb] Remove include/lldb/lldb-private.h

2022-08-08 Thread Fangrui Song via lldb-commits
Author: Fangrui Song Date: 2022-08-08T12:03:53-07:00 New Revision: cdeb50c3215593bffe9e5a46bdc9a9e34fd93dcc URL: https://github.com/llvm/llvm-project/commit/cdeb50c3215593bffe9e5a46bdc9a9e34fd93dcc DIFF: https://github.com/llvm/llvm-project/commit/cdeb50c3215593bffe9e5a46bdc9a9e34fd93dcc.diff

[Lldb-commits] [lldb] 59d2495 - [lldb] LLVM_FALLTHROUGH => [[fallthrough]]. NFC

2022-08-08 Thread Fangrui Song via lldb-commits
Author: Fangrui Song Date: 2022-08-08T11:31:49-07:00 New Revision: 59d2495fe2c1254f84ad4d2bd61a41e79ff0d44d URL: https://github.com/llvm/llvm-project/commit/59d2495fe2c1254f84ad4d2bd61a41e79ff0d44d DIFF: https://github.com/llvm/llvm-project/commit/59d2495fe2c1254f84ad4d2bd61a41e79ff0d44d.diff

[Lldb-commits] [lldb] 5146f84 - LLVM_NODISCARD => [[nodiscard]]. NFC

2022-08-09 Thread Fangrui Song via lldb-commits
Author: Fangrui Song Date: 2022-08-09T07:16:34Z New Revision: 5146f84fd616084fb63025a3e8a172179137b1ce URL: https://github.com/llvm/llvm-project/commit/5146f84fd616084fb63025a3e8a172179137b1ce DIFF: https://github.com/llvm/llvm-project/commit/5146f84fd616084fb63025a3e8a172179137b1ce.diff LOG:

[Lldb-commits] [lldb] 4215a84 - [lldb] Remove unneeded .get() NFC

2023-01-04 Thread Fangrui Song via lldb-commits
Author: Fangrui Song Date: 2023-01-04T22:05:40-08:00 New Revision: 4215a84559bb872363eaa4ac724be8ef86c2e683 URL: https://github.com/llvm/llvm-project/commit/4215a84559bb872363eaa4ac724be8ef86c2e683 DIFF: https://github.com/llvm/llvm-project/commit/4215a84559bb872363eaa4ac724be8ef86c2e683.diff

[Lldb-commits] [lldb] 3dfacc0 - CheckedArithmetic: llvm::Optional => std::optional

2022-12-04 Thread Fangrui Song via lldb-commits
Author: Fangrui Song Date: 2022-12-05T04:30:54Z New Revision: 3dfacc0a56e9d5718f51b1d3ce63070e79fc2608 URL: https://github.com/llvm/llvm-project/commit/3dfacc0a56e9d5718f51b1d3ce63070e79fc2608 DIFF: https://github.com/llvm/llvm-project/commit/3dfacc0a56e9d5718f51b1d3ce63070e79fc2608.diff LOG:

[Lldb-commits] [lldb] a996cc2 - Remove unused #include "llvm/ADT/Optional.h"

2022-12-04 Thread Fangrui Song via lldb-commits
Author: Fangrui Song Date: 2022-12-05T06:31:11Z New Revision: a996cc217cefb9071888de38c6f05e5742d0106f URL: https://github.com/llvm/llvm-project/commit/a996cc217cefb9071888de38c6f05e5742d0106f DIFF: https://github.com/llvm/llvm-project/commit/a996cc217cefb9071888de38c6f05e5742d0106f.diff LOG:

[Lldb-commits] [lldb] 95ec1a6 - [trace] Change /sys/bus const char * variables to const char []

2022-12-16 Thread Fangrui Song via lldb-commits
Author: Fangrui Song Date: 2022-12-16T08:07:07Z New Revision: 95ec1a60986c13628c6f608fc0ed1f1fafb1b033 URL: https://github.com/llvm/llvm-project/commit/95ec1a60986c13628c6f608fc0ed1f1fafb1b033 DIFF: https://github.com/llvm/llvm-project/commit/95ec1a60986c13628c6f608fc0ed1f1fafb1b033.diff LOG:

  1   2   3   >