repo_id
stringlengths
5
115
size
int64
590
5.01M
file_path
stringlengths
4
212
content
stringlengths
590
5.01M
acidanthera/audk
2,130
ArmPkg/Drivers/ArmGicDxe/GicV3/Arm/ArmGicV3.S
# # Copyright (c) 2014, ARM Limited. All rights reserved. # # SPDX-License-Identifier: BSD-2-Clause-Patent # # #include <AsmMacroLib.h> #include <Library/ArmLib.h> // For the moment we assume this will run in SVC mode on ARMv7 //UINT32 //EFIAPI //ArmGicGetControlSystemRegisterEnable ( // VOID // ); ASM_FUNC(ArmG...
acidanthera/audk
3,747
UefiCpuPkg/Library/BaseRiscV64CpuExceptionHandlerLib/SupervisorTrapHandler.S
/** @file RISC-V Processor supervisor mode trap handler Copyright (c) 2019, Hewlett Packard Enterprise Development LP. All rights reserved.<BR> SPDX-License-Identifier: BSD-2-Clause-Patent **/ #include <Base.h> #include "CpuExceptionHandlerLib.h" .align 3 .section .entry, "ax", %progbits .globl Supervi...
acidanthera/audk
1,371
UefiCpuPkg/Library/CpuMmuLib/LoongArch64/TlbExceptionHandle.S
#------------------------------------------------------------------------------ # # TLB refill exception handler # # Copyright (c) 2024 Loongson Technology Corporation Limited. All rights reserved.<BR> # # SPDX-License-Identifier: BSD-2-Clause-Patent # #------------------------------------------------------------------...
acidanthera/audk
10,736
UefiCpuPkg/Library/CpuExceptionHandlerLib/LoongArch/LoongArch64/ExceptionHandlerAsm.S
#------------------------------------------------------------------------------ # # LoongArch64 ASM exception handler # # Copyright (c) 2024, Loongson Technology Corporation Limited. All rights reserved.<BR> # # SPDX-License-Identifier: BSD-2-Clause-Patent # #------------------------------------------------------------...
acidanthera/audk
1,486
BaseTools/Bin/GccLto/liblto-arm.s
// // Copyright (c) 2016, Linaro Ltd. All rights reserved.<BR> // // SPDX-License-Identifier: BSD-2-Clause-Patent // // // GCC in LTO mode interoperates poorly with non-standard libraries that // provide implementations of compiler intrinsics such as memcpy/memset // or the stack protector entry points. // // By refer...
aclements/go-misc
7,027
varint/asm_amd64.s
// Copyright 2016 The Go Authors. All rights reserved. // Use of this source code is governed by a BSD-style // license that can be found in the LICENSE file. #include "textflag.h" GLOBL ·hasBMI2(SB),NOPTR,$1 TEXT ·queryBMI2(SB),NOSPLIT,$0-1 // TODO: Check validity of query. MOVQ $0x07, AX MOVQ $0, CX CPUID // ...
aclements/sv6
7,588
kernel/trapasm.S
#include "mmu.h" #include "asmdefines.h" #define NOEC pushq $0 #define EC #define _TRAP(x, code) \ .globl trap ## x; \ .align 8; \ trap ## x: \ code; \ pushq $x; \ jmp trapcommon; \ .data; \ .quad trap ## x; \ .previous ...
aclements/sv6
2,016
kernel/bootother.S
# Each non-boot CPU ("AP") is started up in response to a STARTUP # IPI from the boot CPU. Section B.4.2 of the Multi-Processor # Specification says that the AP will start in real mode with CS:IP # set to XY00:0000, where XY is an 8-bit value sent with the # STARTUP. Thus this code must start at a 4096-byte boundary. ...
aclements/sv6
3,046
kernel/uaccess.S
#include "mmu.h" #include "asmdefines.h" #define ENTRY(name) .globl name ; .align 8; name : // We aren't allowed to touch rbx,rsp,rbp,r12-r15 .code64 // rdi user src // rsi kernel dst ENTRY(__uaccess_int64) push %rbp // For stack traces mov %rsp, %rbp mov %gs:0x...
aclements/sv6
7,608
kernel/boot.S
# x86-64 bootstrap, assuming load by MultiBoot-compliant loader. # The MutliBoot specification is at: # http://www.gnu.org/software/grub/manual/multiboot/multiboot.html # GRUB is a MultiBoot loader, as is qemu's -kernel option. #include "mmu.h" # KCODE is the kernel virtual address of the first byte of physical memor...
aclements/mtrace
1,319
tests/test-i386-code16.S
.code16 .globl code16_start .globl code16_end CS_SEG = 0xf code16_start: .globl code16_func1 /* basic test */ code16_func1 = . - code16_start mov $1, %eax data32 lret /* test push/pop in 16 bit mode */ .globl code16_func2 code16_func2 = . - code16_sta...
aclements/mtrace
1,816
tests/test-i386-vm86.S
.code16 .globl vm86_code_start .globl vm86_code_end #define GET_OFFSET(x) ((x) - vm86_code_start + 0x100) vm86_code_start: movw $GET_OFFSET(hello_world), %dx movb $0x09, %ah int $0x21 /* prepare int 0x90 vector */ xorw %ax, %ax movw %ax, %es ...
aclements/mtrace
2,945
pc-bios/optionrom/linuxboot.S
/* * Linux Boot Option ROM * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation; either version 2 of the License, or * (at your option) any later version. * * This program is distributed in ...
aclements/mtrace
4,118
pc-bios/optionrom/multiboot.S
/* * Multiboot Option ROM * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation; either version 2 of the License, or * (at your option) any later version. * * This program is distributed in t...
aclements/mtrace
1,874
tests/cris/check_boundr.s
# mach: crisv0 crisv3 crisv8 crisv10 crisv32 # output: 2\n2\nffff\nffffffff\n5432f789\n2\n2\nffff\nffff\nffff\nf789\n2\n2\nff\nff\n89\nfeda4953\nfeda4962\n0\n0\n .include "testutils.inc" start moveq -1,r3 moveq 2,r4 bound.d r4,r3 test_move_cc 0 0 0 0 checkr3 2 moveq 2,r3 moveq -1,r4 bound.d r4,r3 test_move...
aclements/mtrace
1,165
tests/cris/check_movemr.s
# mach: crisv3 crisv8 crisv10 crisv32 # output: 12345678\n10234567\n12345678\n12344567\n12344523\n76543210\nffffffaa\naa\n9911\nffff9911\n78\n56\n3456\n6712\n .include "testutils.inc" start .data mem1: .dword 0x12345678 mem2: .word 0x4567 mem3: .byte 0x23 .dword 0x76543210 .byte 0xaa,0x11,0x99 .text move.d...
aclements/mtrace
1,160
tests/cris/check_movemrv32.s
# mach: crisv32 # output: 15\n7\n2\nffff1234\nb\n16\nf\n2\nffffffef\nf\nffff1234\nf\nfffffff4\nd\nfffffff2\n10\nfffffff2\nd\n .include "testutils.inc" .data x: .dword 8,9,10,11 y: .dword -12,13,-14,15,16 start moveq 7,r0 moveq 2,r1 move.d 0xffff1234,r2 moveq 21,r3 move.d x,r4 setf zcvn movem r2,[r4+] tes...
aclements/mtrace
3,358
tests/cris/check_lsl.s
# mach: crisv0 crisv3 crisv8 crisv10 crisv32 # output: ffffffff\n4\n80000000\nffff8000\n7f19f000\n80000000\n0\n0\n699fc67c\nffffffff\n4\n80000000\nffff8000\n7f19f000\nda670000\nda670000\nda670000\nda67c67c\nffffffff\nfffafffe\n4\nffff0000\nffff8000\n5a67f000\nda67f100\nda67f100\nda67f100\nda67f17c\nfff3faff\nfff3fafe\n...
aclements/mtrace
1,084
tests/cris/check_orm.s
# mach: crisv0 crisv3 crisv8 crisv10 crisv32 # output: 3\n3\nffff\nffffffff\n7c33f7db\nffff0003\n3\nfedaffff\n7813f7db\n3\n3\nfeb\n781344db\n .include "testutils.inc" .data x: .dword 2,1,0xff0f,-1,0x5432f789 .word 2,1,0xff5f,0xf789 .byte 2,1,0x4a,0x89 start moveq 1,r3 move.d x,r5 or.d [r5+],r3 checkr3 3 m...
aclements/mtrace
2,223
tests/cris/check_movmp.s
# mach: crisv3 crisv8 crisv10 crisv32 # output: ffffff00\nffff0000\n0\nffffff00\nffff0000\n0\nffffff00\nffff0000\n0\nbb113344\n664433aa\ncc557788\nabcde012\nabcde000\n77880000\n0\n # Test generic "move Ps,[]" and "move [],Pd" insns; the ones with # functionality common to all models. .include "testutils.inc" start ...
aclements/mtrace
1,230
tests/cris/check_andc.s
# mach: crisv0 crisv3 crisv8 crisv10 crisv32 # output: 2\n2\nffff\nffffffff\n50124400\nffff0002\n2\nfffff\nfedaff0f\n78134400\nffffff02\n2\nf02\n78134401\n78134400\n .include "testutils.inc" start moveq -1,r3 and.d 2,r3 test_move_cc 0 0 0 0 checkr3 2 moveq 2,r3 and.d -1,r3 test_move_cc 0 0 0 0 checkr3 2 m...
aclements/mtrace
1,752
tests/cris/check_bcc.s
.global main .type main, @function main: clearf nzvc setf nzv bcc 0f addq 1, $r3 jump dofail 0: clearf nzvc setf nzv bcs dofail addq 1,$r3 clearf nzvc setf ncv bne 1f addq 1, $r3 fail: dofail: jump _fail 1: clearf nzvc setf ncv beq dofail addq 1,$r3 clearf nzvc setf ncz...
aclements/mtrace
1,521
tests/cris/check_cmpr.s
# mach: crisv0 crisv3 crisv8 crisv10 crisv32 # output: ffffffff\n2\nffff\nffffffff\n78134452\nffffffff\n2\nffff\nfedaffff\n78134452\nffffffff\n2\nff\nfeda49ff\n78134452\n85649222\n .include "testutils.inc" start moveq -1,r3 moveq -2,r4 cmp.d r4,r3 test_cc 0 0 0 0 checkr3 ffffffff moveq 2,r3 moveq 1,r4 cmp.d...
aclements/mtrace
3,636
tests/cris/check_mulx.s
# mach: crisv10 crisv32 # output: fffffffe\nffffffff\nfffffffe\n1\nfffffffe\nffffffff\nfffffffe\n1\nfffe0001\n0\nfffe0001\n0\n1\n0\n1\nfffffffe\n193eade2\n277e3a49\n193eade2\n277e3a49\nfffffffe\nffffffff\n1fffe\n0\nfffffffe\nffffffff\n1fffe\n0\n1\n0\nfffe0001\n0\nfdbdade2\nffffffff\n420fade2\n0\nfffffffe\nffffffff\n1fe...
aclements/mtrace
1,374
tests/cris/check_addxr.s
# mach: crisv0 crisv3 crisv8 crisv10 crisv32 # output: 1\n1\n1fffe\nfffffffe\ncc463bdb\nffff0001\n1\nfffe\nfedafffe\n78133bdb\nffffff01\n1\nfe\nfeda49fe\n781344db\n .include "testutils.inc" start moveq -1,r3 moveq 2,r4 add.d r4,r3 test_cc 0 0 0 1 checkr3 1 moveq 2,r3 moveq -1,r4 add.d r4,r3 test_cc 0 0 0 1...
aclements/mtrace
1,507
tests/cris/check_addxm.s
# mach: crisv0 crisv3 crisv8 crisv10 crisv32 # output: 1\n1\n101\n10001\n100fe\n1fffe\nfffe\nfffe\nfffffffe\nfe\nfffffffe\n781344db\n781343db\n78143bdb\n78133bdb\n800000ed\n0\n .include "testutils.inc" .data x: .byte 0xff .word 0xffff .word 0xff .word 0xffff .byte 0x89 .word 0xf789 .byte 0xff .word 0xffff ...
aclements/mtrace
1,551
tests/cris/check_neg.s
# mach: crisv0 crisv3 crisv8 crisv10 crisv32 # output: ffffffff\nffffffff\n0\n80000000\n1\nba987655\nffff\nffff\n0\n89ab8000\nffff0001\n45677655\nff\nff\n0\n89abae80\nffffff01\n45678955\n .include "testutils.inc" start moveq 0,r3 moveq 1,r4 neg.d r4,r3 test_move_cc 1 0 0 0 checkr3 ffffffff moveq 1,r3 moveq ...
aclements/mtrace
1,509
tests/cris/check_subr.s
# mach: crisv0 crisv3 crisv8 crisv10 crisv32 # output: 1\n1\n1fffe\nfffffffe\ncc463bdb\nffff0001\n1\nfffe\nfedafffe\n78133bdb\nffffff01\n1\nfe\nfeda49fe\n781344db\n85649200\n .include "testutils.inc" start moveq -1,r3 moveq -2,r4 sub.d r4,r3 test_cc 0 0 0 0 checkr3 1 moveq 2,r3 moveq 1,r4 sub.d r4,r3 test_...
aclements/mtrace
1,513
tests/cris/check_cmpxm.s
# mach: crisv0 crisv3 crisv8 crisv10 crisv32 # output: 2\n2\n2\n2\nffff\nffff\nffff\nffff\nffffffff\nffffffff\nffffffff\n78134452\n78134452\n78134452\n78134452\n4452\n80000032\n .include "testutils.inc" .data x: .byte 0xff .word 0xffff .word 0xff .word 0xffff .byte 0x89 .word 0xf789 .word 0x8002 .word 0x764 ...
aclements/mtrace
3,557
tests/cris/check_asr.s
# mach: crisv0 crisv3 crisv8 crisv10 crisv32 # output: ffffffff\n1\nffffffff\nffffffff\n5a67f\nffffffff\nffffffff\nffffffff\nf699fc67\nffffffff\n1\nffffffff\nffffffff\n5a67f\nda67ffff\nda67ffff\nda67ffff\nda67fc67\nffffffff\nffffffff\n1\nffffffff\nffffffff\n5a670007\nda67f1ff\nda67f1ff\nda67f1ff\nda67f1e7\nffffffff\nff...
aclements/mtrace
1,395
tests/cris/check_andm.s
# mach: crisv0 crisv3 crisv8 crisv10 crisv32 # output: 2\n2\nffff\nffffffff\n50124400\nffff0002\n2\nfffff\nfedaff0f\n78134400\nffffff02\n2\nf02\n78134401\n78134400\n .include "testutils.inc" .data x: .dword 2,-1,0xffff,-1,0x5432f789 .word 2,-1,0xffff,0xff5f,0xf789 .byte 2,-1,0x5a,0x89,0 start moveq -1,r3 move...
aclements/mtrace
1,091
tests/cris/check_scc.s
# mach: crisv0 crisv3 crisv8 crisv10 crisv32 # output: 1\n0\n1\n0\n1\n0\n1\n0\n0\n1\n1\n0\n1\n0\n1\n0\n1\n0\n0\n1\n0\n1\n1\n0\n1\n0\n0\n1\n1\n0\n1\n1\n0\n .include "testutils.inc" .macro lcheckr3 v move $ccs, $r9 checkr3 \v move $r9, $ccs .endm start clearf nzvc scc r3 lcheckr3 1 scs r3 lcheckr3 0 sne ...
aclements/mtrace
1,370
tests/cris/check_cmpxc.s
# mach: crisv0 crisv3 crisv8 crisv10 crisv32 # output: 2\n2\n2\n2\nffff\nffff\nffff\nffff\nffffffff\nffffffff\nffffffff\n78134452\n78134452\n78134452\n78134452\n4452\n80000032\n .include "testutils.inc" start moveq 2,r3 cmps.b 0xff,r3 test_cc 0 0 0 1 checkr3 2 moveq 2,r3 cmps.w 0xffff,r3 test_cc 0 0 0 1 che...
aclements/mtrace
1,255
tests/cris/check_cmpc.s
# mach: crisv0 crisv3 crisv8 crisv10 crisv32 # output: ffffffff\n2\nffff\nffffffff\n78134452\nffffffff\n2\nffff\nfedaffff\n78134452\nffffffff\n2\nff\nfeda49ff\n78134452\n85649282\n .include "testutils.inc" start moveq -1,r3 cmp.d -2,r3 test_cc 0 0 0 0 checkr3 ffffffff moveq 2,r3 cmp.d 1,r3 test_cc 0 0 0 0 c...
aclements/mtrace
1,402
tests/cris/check_subm.s
# mach: crisv0 crisv3 crisv8 crisv10 crisv32 # output: 1\n1\n1fffe\nfffffffe\ncc463bdb\nffff0001\n1\nfffe\nfedafffe\n78133bdb\nffffff01\n1\nfe\nfeda49fe\n781344db\n85649200\n .include "testutils.inc" .data x: .dword -2,1,-0xffff,1,-0x5432f789 .word -2,1,1,0x877 .byte -2,1,0x77 .byte 0x22 start moveq -1,r3 mo...
aclements/mtrace
1,409
tests/cris/check_addm.s
# mach: crisv0 crisv3 crisv8 crisv10 crisv32 # output: 1\n1\n1fffe\nfffffffe\ncc463bdb\nffff0001\n1\nfffe\nfedafffe\n78133bdb\nffffff01\n1\nfe\nfeda49fe\n781344db\n781344d0\n .include "testutils.inc" .data x: .dword 2,-1,0xffff,-1,0x5432f789 .word 2,-1,0xffff,0xf789 .byte 2,0xff,0x89 .byte 0x7e start moveq -1...
aclements/mtrace
1,250
tests/cris/check_btst.s
# mach: crisv0 crisv3 crisv8 crisv10 crisv32 # output: 1111\n .include "testutils.inc" start clearf nzvc moveq -1,r3 .if 1 ;..asm.arch.cris.v32 .else setf vc .endif btstq 0,r3 test_cc 1 0 0 0 moveq 2,r3 btstq 1,r3 test_cc 1 0 0 0 moveq 4,r3 btstq 1,r3 test_cc 0 1 0 0 moveq -1,r3 btstq 31,r3 test_...
aclements/mtrace
1,244
tests/cris/check_subc.s
# mach: crisv0 crisv3 crisv8 crisv10 crisv32 # output: 1\n1\n1fffe\nfffffffe\ncc463bdb\nffff0001\n1\nfffe\nfedafffe\n78133bdb\nffffff01\n1\nfe\nfeda49fe\n781344db\n85649200\n .include "testutils.inc" start moveq -1,r3 sub.d -2,r3 test_cc 0 0 0 0 checkr3 1 moveq 2,r3 sub.d 1,r3 test_cc 0 0 0 0 checkr3 1 m...
aclements/mtrace
1,414
tests/cris/check_cmpm.s
# mach: crisv0 crisv3 crisv8 crisv10 crisv32 # output: ffffffff\n2\nffff\nffffffff\n78134452\nffffffff\n2\nffff\nfedaffff\n78134452\nffffffff\n2\nff\nfeda49ff\n78134452\n85649222\n .include "testutils.inc" .data x: .dword -2,1,-0xffff,1,-0x5432f789 .word -2,1,1,0x877 .byte -2,1,0x77 .byte 0x22 start moveq -1,...
aclements/mtrace
1,273
tests/cris/check_orr.s
# mach: crisv0 crisv3 crisv8 crisv10 crisv32 # output: 3\n3\nffff\nffffffff\n7c33f7db\nffff0003\n3\nfedaffff\n7813f7db\n3\n3\nfeb\n781344db\n .include "testutils.inc" start moveq 1,r3 moveq 2,r4 or.d r4,r3 test_move_cc 0 0 0 0 checkr3 3 moveq 2,r3 moveq 1,r4 or.d r4,r3 test_move_cc 0 0 0 0 checkr3 3 mov...
aclements/mtrace
1,374
tests/cris/check_addr.s
# mach: crisv0 crisv3 crisv8 crisv10 crisv32 # output: 1\n1\n1fffe\nfffffffe\ncc463bdb\nffff0001\n1\nfffe\nfedafffe\n78133bdb\nffffff01\n1\nfe\nfeda49fe\n781344db\n .include "testutils.inc" start moveq -1,r3 moveq 2,r4 add.d r4,r3 test_cc 0 0 0 1 checkr3 1 moveq 2,r3 moveq -1,r4 add.d r4,r3 test_cc 0 0 0 1...
aclements/mtrace
1,347
tests/cris/check_addxc.s
# mach: crisv0 crisv3 crisv8 crisv10 crisv32 # output: 1\n1\n101\n10001\n100fe\n1fffe\nfffe\nfffe\nfffffffe\nfe\nfffffffe\n781344db\n781343db\n78143bdb\n78133bdb\n800000ed\n0\n .include "testutils.inc" start moveq 2,r3 adds.b 0xff,r3 test_cc 0 0 0 1 checkr3 1 moveq 2,r3 adds.w 0xffff,r3 test_cc 0 0 0 1 chec...
aclements/mtrace
1,063
tests/cris/check_orc.s
# mach: crisv0 crisv3 crisv8 crisv10 crisv32 # output: 3\n3\nffff\nffffffff\n7c33f7db\nffff0003\n3\nfedaffff\n7813f7db\n3\n3\nfeb\n781344db\n .include "testutils.inc" start moveq 1,r3 or.d 2,r3 test_move_cc 0 0 0 0 checkr3 3 moveq 2,r3 or.d 1,r3 test_move_cc 0 0 0 0 checkr3 3 move.d 0xf0ff,r3 or.d 0xff0f...
aclements/mtrace
1,512
tests/cris/check_boundc.s
# mach: crisv0 crisv3 crisv8 crisv10 crisv32 # output: 2\n2\nffff\nffffffff\n5432f789\n2\nffff\n2\nffff\nffff\nf789\n2\n2\nff\nff\nff\n89\n0\nff\n .include "testutils.inc" start moveq -1,r3 moveq 2,r4 bound.d 2,r3 test_move_cc 0 0 0 0 checkr3 2 moveq 2,r3 bound.d 0xffffffff,r3 test_move_cc 0 0 0 0 checkr3 ...
aclements/mtrace
1,439
tests/cris/check_andr.s
# mach: crisv0 crisv3 crisv8 crisv10 crisv32 # output: 2\n2\nffff\nffffffff\n50124400\nffff0002\n2\nfffff\nfedaff0f\n78134400\nffffff02\n2\nf02\n78134401\n78134400\n .include "testutils.inc" start moveq -1,r3 moveq 2,r4 and.d r4,r3 test_move_cc 0 0 0 0 checkr3 2 moveq 2,r3 moveq -1,r4 and.d r4,r3 test_move...
aclements/mtrace
3,308
tests/cris/check_lsr.s
# mach: crisv0 crisv3 crisv8 crisv10 crisv32 # output: ffffffff\n1\n1\n1ffff\n5a67f\n1\n0\n0\n3699fc67\nffffffff\n1\n1\n1ffff\n5a67f\nda670000\nda670000\nda670000\nda673c67\nffffffff\nffff7fff\n1\nffff0000\nffff0001\n5a67000f\nda67f100\nda67f100\nda67f100\nda67f127\nffffffff\nffffff7f\n1\nffffff00\nffffff00\nffffff01\n...
acl-dev/acl
2,930
lib_fiber/c/src/fiber/exp/setjmp_rv64g.S
/*- * Copyright (c) 2015-2016 Ruslan Bukin <br@bsdpad.com> * All rights reserved. * * Portions of this software were developed by SRI International and the * University of Cambridge Computer Laboratory under DARPA/AFRL contract * FA8750-10-C-0237 ("CTSRD"), as part of the DARPA CRASH research programme. * * Por...
acl-dev/acl
1,813
lib_fiber/c/src/fiber/exp/setjmp_x86_64.S
/* * CDDL HEADER START * * The contents of this file are subject to the terms of the * Common Development and Distribution License (the "License"). * You may not use this file except in compliance with the License. * * You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE * or http://www.opensolar...
acl-dev/acl
1,981
lib_fiber/c/src/fiber/exp/setjmp_i386.S
/* * CDDL HEADER START * * The contents of this file are subject to the terms of the * Common Development and Distribution License (the "License"). * You may not use this file except in compliance with the License. * * You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE * or http://www.opensolar...
acl-dev/acl
1,763
lib_fiber/c/src/fiber/exp/setjmp_s390x.S
/* * Copyright (c) 2005-2014 Rich Felker, et al. * * Permission is hereby granted, free of charge, to any person obtaining * a copy of this software and associated documentation files (the * "Software"), to deal in the Software without restriction, including * without limitation the rights to use, copy, modify, m...
acl-dev/acl
3,378
lib_fiber/c/src/fiber/exp/setjmp_ppc.S
/* $FreeBSD$ */ /* from: NetBSD: setjmp.S,v 1.1 1998/01/27 15:13:12 sakamoto Exp $ */ /* from: OpenBSD: setjmp.S,v 1.2 1996/12/28 06:22:18 rahnds Exp */ /* kernel version of this file, does not have signal goop */ /* int setjmp(jmp_buf env) */ #define _ASM #include <asm/types.h> #ifdef __powerpc64__ #if !defined(P...
acl-dev/acl
2,919
lib_fiber/c/src/fiber/exp/setjmp_sparc64.S
/* * Copyright (c) 1992, 1993 * The Regents of the University of California. All rights reserved. * * This software was developed by the Computer Systems Engineering group * at Lawrence Berkeley Laboratory under DARPA contract BG 91-66 and * contributed to Berkeley. * * Redistribution and use in source and bin...
acl-dev/acl
2,428
lib_fiber/c/src/fiber/exp/setjmp_aarch64.S
/*- * Copyright (c) 2014 Andrew Turner * Copyright (c) 2014-2015 The FreeBSD Foundation * All rights reserved. * * Portions of this software were developed by Andrew Turner * under sponsorship from the FreeBSD Foundation * * Redistribution and use in source and binary forms, with or without * modification, are...
acl-dev/acl
3,538
lib_fiber/c/src/fiber/exp/setjmp_mips.S
/* * Copyright (c) 2000, 2001, 2002, 2003, 2004, 2005, 2008, 2009 * The President and Fellows of Harvard College. * Copyright (c) 2017 MIPS Technologies, Inc. * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions * are met: * ...
acl-dev/acl
2,313
lib_fiber/c/src/fiber/exp/setjmp_arm.S
/*- * Copyright 2004-2014 Olivier Houchard <cognet@FreeBSD.org> * Copyright 2012-2014 Ian Lepore <ian@FreeBSD.org> * Copyright 2013-2014 Andrew Turner <andrew@FreeBSD.org> * Copyright 2014 Svatopluk Kraus <onwahe@gmail.com> * Copyright 2014 Michal Meloun <meloun@miracle.cz> * All rights reserved. * * Redistribu...
acl-dev/acl
6,312
lib_fiber/c/src/fiber/boost/ontop_ppc32_sysv_elf_gas.S
/* Copyright Oliver Kowalke 2009. Distributed under the Boost Software License, Version 1.0. (See accompanying file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt) */ /******************************************************* * ...
acl-dev/acl
3,177
lib_fiber/c/src/fiber/boost/ontop_arm_aapcs_elf_gas.S
/* Copyright Oliver Kowalke 2009. Distributed under the Boost Software License, Version 1.0. (See accompanying file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt) */ /******************************************************* * ...
acl-dev/acl
2,783
lib_fiber/c/src/fiber/boost/make_arm_aapcs_macho_gas.S
/* Copyright Oliver Kowalke 2009. Distributed under the Boost Software License, Version 1.0. (See accompanying file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt) */ /******************************************************* * ...
acl-dev/acl
1,930
lib_fiber/c/src/fiber/boost/ontop_ppc64_sysv_xcoff_gas.S
.align 2 .globl .ontop_fcontext .ontop_fcontext: # reserve space on stack subi 1, 1, 184 std 13, 0(1) # save R13 std 14, 8(1) # save R14 std 15, 16(1) # save R15 std 16, 24(1) # save R16 std 17, 32(1) # save R17 std 18, 40(1) # save R18 std 19, 48(1) # save R19 st...
acl-dev/acl
3,283
lib_fiber/c/src/fiber/boost/ontop_arm_aapcs_macho_gas.S
/* Copyright Oliver Kowalke 2009. Distributed under the Boost Software License, Version 1.0. (See accompanying file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt) */ /******************************************************* * ...
acl-dev/acl
3,421
lib_fiber/c/src/fiber/boost/make_x86_64_sysv_elf_gas.S
/* Copyright Oliver Kowalke 2009. Distributed under the Boost Software License, Version 1.0. (See accompanying file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt) */ /**************************************************************************************** * ...
acl-dev/acl
7,783
lib_fiber/c/src/fiber/boost/ontop_ppc64_sysv_elf_gas.S
/* Copyright Oliver Kowalke 2009. Distributed under the Boost Software License, Version 1.0. (See accompanying file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt) */ /******************************************************* * ...
acl-dev/acl
7,558
lib_fiber/c/src/fiber/boost/jump_ppc32_sysv_macho_gas.S
/* Copyright Oliver Kowalke 2009. Distributed under the Boost Software License, Version 1.0. (See accompanying file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt) */ /****************************************************** * ...
acl-dev/acl
1,065
lib_fiber/c/src/fiber/boost/make_gas.S
// Stub file for universal binary #if defined(__APPLE__) #include "make_combined_sysv_macho_gas.S" #elif defined(_WIN32) || defined(__MINGW32__) || defined(__MINGW64__) || defined(__CYGWIN__) || defined(__MSYS__) #if defined(__x86_64__) #include "make_x86_64_ms_pe_gas.asm" #elif defined(__i386__) ...
acl-dev/acl
4,051
lib_fiber/c/src/fiber/boost/make_riscv64_sysv_elf_gas.S
/* Distributed under the Boost Software License, Version 1.0. (See accompanying file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt) */ /******************************************************* * * * ------------------------------...
acl-dev/acl
4,376
lib_fiber/c/src/fiber/boost/ontop_mips64_n64_elf_gas.S
/* Copyright Jiaxun Yang 2018. Distributed under the Boost Software License, Version 1.0. (See accompanying file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE */ /******************************************************* * * *...
acl-dev/acl
6,297
lib_fiber/c/src/fiber/boost/jump_ppc32_sysv_elf_gas.S
/* Copyright Oliver Kowalke 2009. Distributed under the Boost Software License, Version 1.0. (See accompanying file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt) */ /******************************************************* * ...
acl-dev/acl
3,714
lib_fiber/c/src/fiber/boost/make_mips64_n64_elf_gas.S
/* Copyright Jiaxun Yang 2018. Distributed under the Boost Software License, Version 1.0. (See accompanying file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt) */ /******************************************************* * ...
acl-dev/acl
4,211
lib_fiber/c/src/fiber/boost/jump_mips32_o32_elf_gas.S
/* Copyright Oliver Kowalke 2009. Distributed under the Boost Software License, Version 1.0. (See accompanying file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt) */ /******************************************************* * ...
acl-dev/acl
3,040
lib_fiber/c/src/fiber/boost/make_arm_aapcs_elf_gas.S
/* Copyright Oliver Kowalke 2009. Distributed under the Boost Software License, Version 1.0. (See accompanying file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt) */ /******************************************************* * ...
acl-dev/acl
3,808
lib_fiber/c/src/fiber/boost/make_arm64_aapcs_macho_gas.S
/* Copyright Edward Nevill + Oliver Kowalke 2015 Distributed under the Boost Software License, Version 1.0. (See accompanying file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt) */ /******************************************************* * ...
acl-dev/acl
5,227
lib_fiber/c/src/fiber/boost/make_ppc32_sysv_elf_gas.S
/* Copyright Oliver Kowalke 2009. Distributed under the Boost Software License, Version 1.0. (See accompanying file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt) */ /******************************************************* * ...
acl-dev/acl
3,716
lib_fiber/c/src/fiber/boost/make_arm64_aapcs_elf_gas.S
/* Copyright Edward Nevill + Oliver Kowalke 2015 Distributed under the Boost Software License, Version 1.0. (See accompanying file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt) */ /******************************************************* * ...
acl-dev/acl
4,090
lib_fiber/c/src/fiber/boost/jump_arm64_aapcs_macho_gas.S
/* Copyright Edward Nevill + Oliver Kowalke 2015 Distributed under the Boost Software License, Version 1.0. (See accompanying file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt) */ /******************************************************* * ...
acl-dev/acl
3,595
lib_fiber/c/src/fiber/boost/ontop_i386_sysv_elf_gas.S
/* Copyright Oliver Kowalke 2009. Distributed under the Boost Software License, Version 1.0. (See accompanying file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt) */ /**************************************************************************************** * ...
acl-dev/acl
4,275
lib_fiber/c/src/fiber/boost/jump_arm64_aapcs_elf_gas.S
/* Copyright Edward Nevill + Oliver Kowalke 2015 Distributed under the Boost Software License, Version 1.0. (See accompanying file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt) */ /******************************************************* * ...
acl-dev/acl
7,548
lib_fiber/c/src/fiber/boost/ontop_ppc32_sysv_macho_gas.S
/* Copyright Oliver Kowalke 2009. Distributed under the Boost Software License, Version 1.0. (See accompanying file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt) */ /****************************************************** * ...
acl-dev/acl
5,103
lib_fiber/c/src/fiber/boost/jump_riscv64_sysv_elf_gas.S
/* Distributed under the Boost Software License, Version 1.0. (See accompanying file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt) */ /******************************************************* * * * ------------------------------...
acl-dev/acl
7,635
lib_fiber/c/src/fiber/boost/ontop_ppc32_sysv_xcoff_gas.S
/* Copyright Oliver Kowalke 2009. Distributed under the Boost Software License, Version 1.0. (See accompanying file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt) */ /****************************************************** * ...
acl-dev/acl
2,161
lib_fiber/c/src/fiber/boost/jump_ppc64_sysv_xcoff_gas.S
/* Copyright Oliver Kowalke 2009. Distributed under the Boost Software License, Version 1.0. (See accompanying file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt) */ .align 2 .globl .jump_fcontext .jump_fcontext: # reserve space on stack subi 1, 1, 184 st...
acl-dev/acl
3,231
lib_fiber/c/src/fiber/boost/make_x86_64_sysv_macho_gas.S
/* Copyright Oliver Kowalke 2009. Distributed under the Boost Software License, Version 1.0. (See accompanying file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt) */ /**************************************************************************************** * ...
acl-dev/acl
5,000
lib_fiber/c/src/fiber/boost/ontop_s390x_sysv_elf_gas.S
/******************************************************* * ------------------------------------------------- * * | 0 | 1 | 2 | 3 | 4 | 5 | 6 | 7 | * * ------------------------------------------------- * * | 0 | 8 | 16 | 24 | * * -------------------------------...
acl-dev/acl
5,522
lib_fiber/c/src/fiber/boost/make_ppc32_sysv_xcoff_gas.S
/* Copyright Oliver Kowalke 2009. Distributed under the Boost Software License, Version 1.0. (See accompanying file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt) */ /****************************************************** * ...
acl-dev/acl
1,065
lib_fiber/c/src/fiber/boost/jump_gas.S
// Stub file for universal binary #if defined(__APPLE__) #include "jump_combined_sysv_macho_gas.S" #elif defined(_WIN32) || defined(__MINGW32__) || defined(__MINGW64__) || defined(__CYGWIN__) || defined(__MSYS__) #if defined(__x86_64__) #include "jump_x86_64_ms_pe_gas.asm" #elif defined(__i386__) ...
acl-dev/acl
4,284
lib_fiber/c/src/fiber/boost/ontop_arm64_aapcs_elf_gas.S
/* Copyright Edward Nevill + Oliver Kowalke 2015 Distributed under the Boost Software License, Version 1.0. (See accompanying file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt) */ /******************************************************* * ...
acl-dev/acl
5,249
lib_fiber/c/src/fiber/boost/jump_s390x_sysv_elf_gas.S
/******************************************************* * ------------------------------------------------- * * | 0 | 1 | 2 | 3 | 4 | 5 | 6 | 7 | * * ------------------------------------------------- * * | 0 | 8 | 16 | 24 | * * -------------------------------...
acl-dev/acl
5,865
lib_fiber/c/src/fiber/boost/jump_ppc64_sysv_macho_gas.S
/* Copyright Oliver Kowalke 2009. Distributed under the Boost Software License, Version 1.0. (See accompanying file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt) */ /******************************************************* * ...
acl-dev/acl
4,055
lib_fiber/c/src/fiber/boost/make_i386_sysv_elf_gas.S
/* Copyright Oliver Kowalke 2009. Distributed under the Boost Software License, Version 1.0. (See accompanying file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt) */ /**************************************************************************************** * ...
acl-dev/acl
4,459
lib_fiber/c/src/fiber/boost/jump_mips64_n64_elf_gas.S
/* Copyright Jiaxun Yang 2018. Distributed under the Boost Software License, Version 1.0. (See accompanying file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt) */ /******************************************************* * ...
acl-dev/acl
3,181
lib_fiber/c/src/fiber/boost/jump_i386_sysv_macho_gas.S
/* Copyright Oliver Kowalke 2009. Distributed under the Boost Software License, Version 1.0. (See accompanying file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt) */ /**************************************************************************************** * ...
acl-dev/acl
3,078
lib_fiber/c/src/fiber/boost/jump_arm_aapcs_elf_gas.S
/* Copyright Oliver Kowalke 2009. Distributed under the Boost Software License, Version 1.0. (See accompanying file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt) */ /******************************************************* * ...
acl-dev/acl
3,189
lib_fiber/c/src/fiber/boost/jump_arm_aapcs_macho_gas.S
/* Copyright Oliver Kowalke 2009. Distributed under the Boost Software License, Version 1.0. (See accompanying file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt) */ /******************************************************* * ...
acl-dev/acl
5,116
lib_fiber/c/src/fiber/boost/ontop_riscv64_sysv_elf_gas.S
/* Distributed under the Boost Software License, Version 1.0. (See accompanying file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt) */ /******************************************************* * * * ------------------------------...
acl-dev/acl
4,095
lib_fiber/c/src/fiber/boost/ontop_arm64_aapcs_macho_gas.S
/* Copyright Edward Nevill + Oliver Kowalke 2015 Distributed under the Boost Software License, Version 1.0. (See accompanying file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt) */ /******************************************************* * ...
acl-dev/acl
1,651
lib_fiber/c/src/fiber/boost/make_ppc64_sysv_xcoff_gas.S
/* Copyright Oliver Kowalke 2009. Distributed under the Boost Software License, Version 1.0. (See accompanying file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt) */ .globl make_fcontext[DS] .globl .make_fcontext[PR] .align 2 .csect .make_fcontext[PR], 3 .globl _ma...
acl-dev/acl
7,302
lib_fiber/c/src/fiber/boost/jump_ppc64_sysv_elf_gas.S
/* Copyright Oliver Kowalke 2009. Distributed under the Boost Software License, Version 1.0. (See accompanying file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt) */ /******************************************************* * ...
acl-dev/acl
3,661
lib_fiber/c/src/fiber/boost/make_mips32_o32_elf_gas.S
/* Copyright Oliver Kowalke 2009. Distributed under the Boost Software License, Version 1.0. (See accompanying file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt) */ /******************************************************* * ...
acl-dev/acl
4,959
lib_fiber/c/src/fiber/boost/make_ppc64_sysv_macho_gas.S
/* Copyright Oliver Kowalke 2009. Distributed under the Boost Software License, Version 1.0. (See accompanying file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt) */ /******************************************************* * ...
acl-dev/acl
3,592
lib_fiber/c/src/fiber/boost/make_i386_sysv_macho_gas.S
/* Copyright Oliver Kowalke 2009. Distributed under the Boost Software License, Version 1.0. (See accompanying file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt) */ /**************************************************************************************** * ...
acl-dev/acl
5,619
lib_fiber/c/src/fiber/boost/ontop_ppc64_sysv_macho_gas.S
/* Copyright Oliver Kowalke 2009. Distributed under the Boost Software License, Version 1.0. (See accompanying file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt) */ /******************************************************* * ...