13,281,474 commits found in 7 milliseconds
LLVM /project 7ac94f8 — llvm/lib/Target/AMDGPU AMDGPURegBankLegalizeRules.cpp, llvm/test/CodeGen/AMDGPU/GlobalISel minmaxabs-i64.ll AMDGPU/GlobalISel: RegBankLegalize rules for 64 bit s_min/max and u_min/max
LLVM /project 5605eb0 — llvm/lib/Target/AMDGPU AMDGPURegBankLegalizeRules.cpp, llvm/test/CodeGen/AMDGPU packed-fp32.ll AMDGPU/GlobalISel: RegBankLegalize rules for v_pk_add/mul_f32
LLVM /project 969481c — llvm/lib/Target/AMDGPU AMDGPURegBankLegalizeRules.cpp, llvm/test/CodeGen/AMDGPU llvm.amdgcn.cvt.scalef32.pk.gfx950.ll llvm.amdgcn.cvt.scale.pk.ll AMDGPU/GlobalISel: RegBankLegalize rules for cvt_scale intrinsics
LLVM /project 731dd05 — lldb/source/API SBDebugger.cpp, lldb/test/API/python_api/default-constructor sb_debugger.py [lldb] Add nullptr check in GetBroadcaster (#201769)
I recently noticed LLDB crash during execution of `script
print(lldb.SBDebugger().GetBroadcaster().GetName())` command:
```
PLEASE submit a bug report to https://github.com/llvm/llvm-project/issues/ and include the crash backtrace.
Stack dump:
0. Program arguments: /home/sergei/llvm-project/build/bin/lldb-dap
#0 0x000062735c3403d2 llvm::sys::PrintStackTrace(llvm::raw_ostream&, int) (/home/sergei/llvm-project/build/bin/lldb-dap+0x7c3d2)
#1 0x000062735c33d7ec llvm::sys::RunSignalHandlers() (/home/sergei/llvm-project/build/bin/lldb-dap+0x797ec)
#2 0x000062735c33d94c SignalHandler(int, siginfo_t*, void*) Signals.cpp:0:0
#3 0x00007eaa6aa45330 (/lib/x86_64-linux-gnu/libc.so.6+0x45330)
#4 0x00007eaa6bb0c092 lldb::SBBroadcaster::GetName() const (/home/sergei/llvm-project/build/bin/../lib/liblldb.so.23.0git+0x90c092)
#5 0x00007eaa6bcb9a5d _wrap_SBBroadcaster_GetName LLDBWrapPython.cpp:0:0
#6 0x00007eaa6a1df5f5 (/lib/x86_64-linux-gnu/libpython3.12.so.1.0+0x1df5f5)
#7 0x00007eaa6a182b2c PyObject_Vectorcall (/lib/x86_64-linux-gnu/libpython3.12.so.1.0+0x182b2c)
#8 0x00007eaa6a11d5ee _PyEval_EvalFrameDefault (/lib/x86_64-linux-gnu/libpython3.12.so.1.0+0x11d5ee)
#9 0x00007eaa6a2a091f PyEval_EvalCode (/lib/x86_64-linux-gnu/libpython3.12.so.1.0+0x2a091f)
#10 0x00007eaa6a29c8b0 (/lib/x86_64-linux-gnu/libpython3.12.so.1.0+0x29c8b0)
[17 lines not shown ] Update llvm/lib/TargetParser/RISCVISAInfo.cpp
Co-authored-by: Craig Topper <craig.topper at sifive.com> doc: Added sysutils/tuptime version 5.2.6
tuptime: remove, imported to pkgsrc
sysutils/Makefile: + tuptime
NetBSD /pkgsrc u4sjPk9 — sysutils/tuptime Makefile PLIST, sysutils/tuptime/files tuptime.sh README.pkgsrc sysutils/tuptime: import tuptime-5.2.6
Packaged in wip by Ricardo Fraile.
tuptime reports historical and statistical real time of the system,
preserving it between restarts. Like uptime, but with extended
information about the system startups, shutdowns and up/down times.
15.1: Slightly behind schedule
The builds for 15.1-RC3 (recently added to the schedule) started a
day late so that a critical boot loader fix could land.
FreeBSD /ports b812f09 — math/nlopt Makefile distinfo, math/nlopt/files patch-src_swig_CMakeLists.txt math/nlopt: Update to 1.11.0
- New CCSA and MMA parameters inner_gradients and always_improve
- Various minor bugfixes
Changelog: https://github.com/stevengj/nlopt/compare/v2.10.1...v2.11.0
Reported by: portscout, Repology
[ASan] Skip high-shadow and gap setup when HighMem region is empty (#202037)
On targets where the shadow offset sits above all addressable user
memory (e.g. Alpha with ASAN_SHADOW_OFFSET=0x70000000000 and a 42-bit
user VAS), kHighMemBeg is set above kHighMemEnd so the HighMem region is
empty. Since MEM_TO_SHADOW is monotonically increasing, kHighMemBeg >
kHighMemEnd implies kHighShadowBeg > kHighShadowEnd. Calling
ReserveShadowMemoryRange(kHighShadowBeg, kHighShadowEnd) passes size =
kHighShadowEnd - kHighShadowBeg + 1, which underflows to a large
negative value, and mmap() fails with ENOMEM.
ProtectGap is also skipped: there is no meaningful shadow gap between
LowShadow and an empty HighShadow.
Guard both operations on kHighMemBeg <= kHighMemEnd. devel/p5-Storable: Add CPE information
devel/orc: Add CPE information
devel/p5-Avro: Add CPE information
devel/opencl: Add CPE information
devel/open62541: Add CPE information
devel/nanopb: Add CPE information
devel/log4cxx: Add CPE information
devel/linux-rl9-orc: Add CPE information
devel/nlohmann-json: Add CPE information
devel/linux-rl9-libevent: Add CPE information
devel/lief: Add CPE information
devel/libkiwix: Add CPE information
devel/linenoise: Add CPE information
devel/libkiwix13: Add CPE information
devel/libfastcommon: Add CPE information
devel/libiec61850: Add CPE information
LLVM /project 7ef1b22 — llvm/test/CodeGen/AMDGPU vector-reduce-fmax.ll vector-reduce-fmin.ll [AMDGPU][GISel] Fold 'min(min(x,y),z)' and 'max(max(x,y),z)' into min3 and max3 (#200410)
Original PR: https://github.com/llvm/llvm-project/pull/124263
Fixes: https://github.com/llvm/llvm-project/issues/123079 tuptime: remove superfluous GITHUB_PROJECT