Files
vasilito facf0c92e0 feat: track all source trees in git — full fork offline-first model
Red Bear OS is a full fork. All sources must be available from git clone
with zero network access. Removed gitignore rules that excluded fetched
source trees under recipes/*/source/, local/recipes/kde/*/source/,
local/recipes/qt/*/source/, and vendor source trees.

Build artifacts (target/, build/, source.tar, *.o, *.so) remain excluded.

127291 files added — kernel, relibc, base, bootloader, pkgar, all KDE/Qt
frameworks, mesa, wayland, DRM drivers, and every other recipe source.
2026-05-14 10:55:53 +01:00

53 lines
1006 B
ArmAsm

.section .toc,"aw"
x4t:
.quad x4
x5t:
.quad x5
x6t:
.quad x6
.section .sdata,"aw"
x1:
.byte 1
x2:
.byte 2
x3:
.byte 3
x4:
.byte 4
x5:
.byte 5
x6:
.byte 6
.globl _start
.text
_start:
# no need for got entry, optimise to nop,addi
# note that due to unexpected toc/got insns the full optimisation is
# not done. see tocopt5 for test without unexpected insns.
addis 9,2,x1@got@ha
ld 9,x1@got@l(9)
# must keep got entry, optimise to nop,addi,ld
addis 4,2,x2@got@ha
addi 5,4,x2@got@l
ld 6,0(5)
# must keep got entry, optimise to nop,li,ldx
lis 29,x3@got@ha
addi 29,29,x3@got@l
ldx 3,2,29
# no need for toc entry, optimise to nop,addi
addis 9,2,x4t@toc@ha
ld 9,x4t@toc@l(9)
# must keep toc entry, optimise to nop,addi,ld
# if we had a reloc tying the ld to x5/x5t then we could throw away
# the toc entry and optimise to nop,nop,addi
addis 4,2,x5t@toc@ha
addi 5,4,x5t@toc@l
ld 6,0(5)
# must keep toc entry, optimise to nop,li,ldx
lis 29,x6t@toc@ha
addi 29,29,x6t@toc@l
ldx 3,2,29