Package: android-platform-art / 10.0.0+r36-3
Metadata
Package | Version | Patches format |
---|---|---|
android-platform-art | 10.0.0+r36-3 | 3.0 (quilt) |
Patch series
view the series filePatch | File delta | Description |
---|---|---|
use android dlmalloc.patch | (download) |
runtime/gc/allocator/dlmalloc.cc |
2 1 + 1 - 0 ! |
--- |
missing system includes.patch | (download) |
libartbase/arch/instruction_set.cc |
1 1 + 0 - 0 ! |
somehow upstream builds don't need these headers :-/ |
ucontext.patch | (download) |
runtime/arch/arm/fault_handler_arm.cc |
8 4 + 4 - 0 ! |
use `ucontext_t` instead of `ucontext` Both Bionic and glibc define a struct called `ucontext_t` but only Bionic defines an alias `ucontext_t`. Let's use the more standardized one. |
atomic exception specification.patch | (download) |
runtime/gc_root.h |
2 1 + 1 - 0 ! |
conforms with the exception specification of `std::atomic` All constructors of `std::atomic` require `noexcept`. As a result, its members must also be able to instantiate without any exception throwing. |
image space dereference.patch | (download) |
runtime/gc/space/image_space.cc |
4 2 + 2 - 0 ! |
--- |
storage mode concat.patch | (download) |
runtime/image.cc |
2 1 + 1 - 0 ! |
--- |
method reference std ns.patch | (download) |
libdexfile/dex/method_reference.h |
8 4 + 4 - 0 ! |
--- |
python3 gen_mterp.patch | (download) |
runtime/interpreter/mterp/common/gen_setup.py |
2 1 + 1 - 0 ! |
--- |
stats incomplete def.patch | (download) |
libartbase/base/stats.h |
8 4 + 4 - 0 ! |
--- |
fix build on non x86.patch | (download) |
libartbase/base/safe_copy.cc |
7 4 + 3 - 0 ! |
non-x86 arches do not have page_size |
workaround cacheflush on arm.patch | (download) |
libartbase/base/utils.cc |
5 4 + 1 - 0 ! |
workaround cacheflush on arm |
adapt asm output of clang that no is placed before data.patch | (download) |
tools/cpp-define-generator/make_header.py |
2 1 + 1 - 0 ! |
adapt asm output of clang that no #/$ is placed before data |
arm asm instruction.patch | (download) |
runtime/interpreter/mterp/arm/main.S |
2 1 + 1 - 0 ! |
arm asm instruction |
fix mterp assembly to use uxtw instead of lsl where needed.patch | (download) |
runtime/interpreter/mterp/arm64/array.S |
6 3 + 3 - 0 ! |
[patch] fix mterp assembly to use uxtw instead of lsl where needed. Bug: https://bugs.llvm.org/show_bug.cgi?id=41504 |