repo_id string | size int64 | file_path string | content string |
|---|---|---|---|
I-asked/api-daemon | 3,979 | third-party/rustix-0.37.27/src/backend/linux_raw/arch/outline/arm.s | // Assembly code for making arm syscalls.
//
// arm syscall argument register ordering is the similar to the arm
// userspace argument register ordering except that the syscall number
// (nr) is passed in r7.
//
// nr_last.rs takes care of reordering the nr argument to the end for us,
// so we only need to move nr into... |
I-asked/api-daemon | 12,301 | third-party/rustix-0.37.27/src/backend/linux_raw/arch/outline/x86.s | // Assembly code for making x86 syscalls.
//
// On x86 we use the "fastcall" convention which passes the first two
// arguments in ecx and edx. Outline.rs reorders the arguments to put
// a1 and a2 in those registers so they we don't have to move them to
// set up the kernel convention.
//
// "fastcall" expects callee ... |
I-asked/api-daemon | 5,751 | third-party/rustix-0.37.27/src/backend/linux_raw/arch/outline/mips64.s | # Assembly code for making mips64 syscalls.
#
# mips64 syscall argument register ordering is the same as the mips64
# userspace argument register ordering except that the syscall number
# (nr) is passed in v0.
#
# outline.rs takes care of reordering the nr argument to the end for us,
# so we only need to move nr into v... |
I-asked/api-daemon | 3,525 | third-party/rustix-0.37.27/src/backend/linux_raw/arch/outline/aarch64.s | // Assembly code for making aarch64 syscalls.
//
// aarch64 syscall argument register ordering is the same as the aarch64
// userspace argument register ordering except that the syscall number
// (nr) is passed in w8.
//
// outline.rs takes care of reordering the nr argument to the end for us,
// so we only need to mov... |
I-asked/api-daemon | 3,592 | third-party/rustix-0.37.27/src/backend/linux_raw/arch/outline/powerpc64.s | # Assembly code for making powerpc64le syscalls.
#
# powerpc64le syscall argument register ordering is the same as the
# powerpc64le userspace argument register ordering except that the syscall
# number (nr) is passed in r0.
#
# outline.rs takes care of reordering the nr argument to the end for us,
# so we only need to... |
icaruss1/c_compiler | 444 | src/c_files/return_2.s | .file "return_2.c"
.text
.section .text.startup,"ax",@progbits
.p2align 4
.globl main
.type main, @function
main:
endbr64
movl $2, %eax
ret
.size main, .-main
.ident "GCC: (Ubuntu 9.4.0-1ubuntu1~20.04.2) 9.4.0"
.section .note.GNU-stack,"",@progbits
.section .note.gnu.property,"a"
.align 8
.long 1f - 0f
... |
iCodeIN/pathos-rs | 554 | src/asm/boot.s | .option norvc
.section .text.boot
.global _start
_start:
csrw satp, zero # Disable paging
la a0, _bss_start # Initialize BSS section to zero
la a1, _bss_end
bgeu a0, a1, 2f
1:
sd zero, (a0)
addi a0, a0, 8
bltu a0, a1, 1b
2:
... |
iCodeIN/pathos-rs | 1,081 | src/asm/mem.s | .section .rodata
.global HEAP_START
HEAP_START:
.dword _heap_start
.global HEAP_SIZE
HEAP_SIZE:
.dword _heap_size
# .global HEAP_END
# HEAP_END:
# .dword _heap_end
.global ALLOC_START
ALLOC_START:
.dword _alloc_start
.global ALLOC_SIZE
ALLOC_SIZE:
.dword _alloc_size
... |
idlab-discover/masters-lin-tian | 194 | examples/golang/components/sqldb-postgres-query/gen/wasi/sockets/udp/empty.s | // This file exists for testing this package without WebAssembly,
// allowing empty function bodies with a //go:wasmimport directive.
// See https://pkg.go.dev/cmd/compile for more information.
|
idlab-discover/masters-lin-tian | 194 | examples/golang/components/sqldb-postgres-query/gen/wasi/sockets/ip-name-lookup/empty.s | // This file exists for testing this package without WebAssembly,
// allowing empty function bodies with a //go:wasmimport directive.
// See https://pkg.go.dev/cmd/compile for more information.
|
idlab-discover/masters-lin-tian | 194 | examples/golang/components/sqldb-postgres-query/gen/wasi/sockets/instance-network/empty.s | // This file exists for testing this package without WebAssembly,
// allowing empty function bodies with a //go:wasmimport directive.
// See https://pkg.go.dev/cmd/compile for more information.
|
idlab-discover/masters-lin-tian | 194 | examples/golang/components/sqldb-postgres-query/gen/wasi/sockets/network/empty.s | // This file exists for testing this package without WebAssembly,
// allowing empty function bodies with a //go:wasmimport directive.
// See https://pkg.go.dev/cmd/compile for more information.
|
idlab-discover/masters-lin-tian | 194 | examples/golang/components/sqldb-postgres-query/gen/wasi/sockets/tcp-create-socket/empty.s | // This file exists for testing this package without WebAssembly,
// allowing empty function bodies with a //go:wasmimport directive.
// See https://pkg.go.dev/cmd/compile for more information.
|
idlab-discover/masters-lin-tian | 194 | examples/golang/components/sqldb-postgres-query/gen/wasi/sockets/tcp/empty.s | // This file exists for testing this package without WebAssembly,
// allowing empty function bodies with a //go:wasmimport directive.
// See https://pkg.go.dev/cmd/compile for more information.
|
idlab-discover/masters-lin-tian | 194 | examples/golang/components/sqldb-postgres-query/gen/wasi/sockets/udp-create-socket/empty.s | // This file exists for testing this package without WebAssembly,
// allowing empty function bodies with a //go:wasmimport directive.
// See https://pkg.go.dev/cmd/compile for more information.
|
idlab-discover/masters-lin-tian | 194 | examples/golang/components/sqldb-postgres-query/gen/wasi/io/error/empty.s | // This file exists for testing this package without WebAssembly,
// allowing empty function bodies with a //go:wasmimport directive.
// See https://pkg.go.dev/cmd/compile for more information.
|
idlab-discover/masters-lin-tian | 194 | examples/golang/components/sqldb-postgres-query/gen/wasi/io/streams/empty.s | // This file exists for testing this package without WebAssembly,
// allowing empty function bodies with a //go:wasmimport directive.
// See https://pkg.go.dev/cmd/compile for more information.
|
idlab-discover/masters-lin-tian | 194 | examples/golang/components/sqldb-postgres-query/gen/wasi/io/poll/empty.s | // This file exists for testing this package without WebAssembly,
// allowing empty function bodies with a //go:wasmimport directive.
// See https://pkg.go.dev/cmd/compile for more information.
|
idlab-discover/masters-lin-tian | 194 | examples/golang/components/sqldb-postgres-query/gen/wasi/http/types/empty.s | // This file exists for testing this package without WebAssembly,
// allowing empty function bodies with a //go:wasmimport directive.
// See https://pkg.go.dev/cmd/compile for more information.
|
idlab-discover/masters-lin-tian | 194 | examples/golang/components/sqldb-postgres-query/gen/wasi/http/outgoing-handler/empty.s | // This file exists for testing this package without WebAssembly,
// allowing empty function bodies with a //go:wasmimport directive.
// See https://pkg.go.dev/cmd/compile for more information.
|
idlab-discover/masters-lin-tian | 194 | examples/golang/components/sqldb-postgres-query/gen/wasi/cli/stderr/empty.s | // This file exists for testing this package without WebAssembly,
// allowing empty function bodies with a //go:wasmimport directive.
// See https://pkg.go.dev/cmd/compile for more information.
|
idlab-discover/masters-lin-tian | 194 | examples/golang/components/sqldb-postgres-query/gen/wasi/cli/terminal-stderr/empty.s | // This file exists for testing this package without WebAssembly,
// allowing empty function bodies with a //go:wasmimport directive.
// See https://pkg.go.dev/cmd/compile for more information.
|
idlab-discover/masters-lin-tian | 194 | examples/golang/components/sqldb-postgres-query/gen/wasi/cli/terminal-output/empty.s | // This file exists for testing this package without WebAssembly,
// allowing empty function bodies with a //go:wasmimport directive.
// See https://pkg.go.dev/cmd/compile for more information.
|
idlab-discover/masters-lin-tian | 194 | examples/golang/components/sqldb-postgres-query/gen/wasi/cli/terminal-input/empty.s | // This file exists for testing this package without WebAssembly,
// allowing empty function bodies with a //go:wasmimport directive.
// See https://pkg.go.dev/cmd/compile for more information.
|
idlab-discover/masters-lin-tian | 194 | examples/golang/components/sqldb-postgres-query/gen/wasi/cli/stdout/empty.s | // This file exists for testing this package without WebAssembly,
// allowing empty function bodies with a //go:wasmimport directive.
// See https://pkg.go.dev/cmd/compile for more information.
|
idlab-discover/masters-lin-tian | 194 | examples/golang/components/sqldb-postgres-query/gen/wasi/cli/terminal-stdout/empty.s | // This file exists for testing this package without WebAssembly,
// allowing empty function bodies with a //go:wasmimport directive.
// See https://pkg.go.dev/cmd/compile for more information.
|
idlab-discover/masters-lin-tian | 194 | examples/golang/components/sqldb-postgres-query/gen/wasi/cli/exit/empty.s | // This file exists for testing this package without WebAssembly,
// allowing empty function bodies with a //go:wasmimport directive.
// See https://pkg.go.dev/cmd/compile for more information.
|
idlab-discover/masters-lin-tian | 194 | examples/golang/components/sqldb-postgres-query/gen/wasi/cli/terminal-stdin/empty.s | // This file exists for testing this package without WebAssembly,
// allowing empty function bodies with a //go:wasmimport directive.
// See https://pkg.go.dev/cmd/compile for more information.
|
idlab-discover/masters-lin-tian | 194 | examples/golang/components/sqldb-postgres-query/gen/wasi/cli/environment/empty.s | // This file exists for testing this package without WebAssembly,
// allowing empty function bodies with a //go:wasmimport directive.
// See https://pkg.go.dev/cmd/compile for more information.
|
idlab-discover/masters-lin-tian | 194 | examples/golang/components/sqldb-postgres-query/gen/wasi/cli/stdin/empty.s | // This file exists for testing this package without WebAssembly,
// allowing empty function bodies with a //go:wasmimport directive.
// See https://pkg.go.dev/cmd/compile for more information.
|
idlab-discover/masters-lin-tian | 194 | examples/golang/components/sqldb-postgres-query/gen/wasi/config/runtime/empty.s | // This file exists for testing this package without WebAssembly,
// allowing empty function bodies with a //go:wasmimport directive.
// See https://pkg.go.dev/cmd/compile for more information.
|
idlab-discover/masters-lin-tian | 194 | examples/golang/components/sqldb-postgres-query/gen/wasi/filesystem/types/empty.s | // This file exists for testing this package without WebAssembly,
// allowing empty function bodies with a //go:wasmimport directive.
// See https://pkg.go.dev/cmd/compile for more information.
|
idlab-discover/masters-lin-tian | 194 | examples/golang/components/sqldb-postgres-query/gen/wasi/filesystem/preopens/empty.s | // This file exists for testing this package without WebAssembly,
// allowing empty function bodies with a //go:wasmimport directive.
// See https://pkg.go.dev/cmd/compile for more information.
|
idlab-discover/masters-lin-tian | 194 | examples/golang/components/sqldb-postgres-query/gen/wasi/random/insecure/empty.s | // This file exists for testing this package without WebAssembly,
// allowing empty function bodies with a //go:wasmimport directive.
// See https://pkg.go.dev/cmd/compile for more information.
|
idlab-discover/masters-lin-tian | 194 | examples/golang/components/sqldb-postgres-query/gen/wasi/random/random/empty.s | // This file exists for testing this package without WebAssembly,
// allowing empty function bodies with a //go:wasmimport directive.
// See https://pkg.go.dev/cmd/compile for more information.
|
idlab-discover/masters-lin-tian | 194 | examples/golang/components/sqldb-postgres-query/gen/wasi/random/insecure-seed/empty.s | // This file exists for testing this package without WebAssembly,
// allowing empty function bodies with a //go:wasmimport directive.
// See https://pkg.go.dev/cmd/compile for more information.
|
idlab-discover/masters-lin-tian | 194 | examples/golang/components/sqldb-postgres-query/gen/wasi/clocks/wall-clock/empty.s | // This file exists for testing this package without WebAssembly,
// allowing empty function bodies with a //go:wasmimport directive.
// See https://pkg.go.dev/cmd/compile for more information.
|
idlab-discover/masters-lin-tian | 194 | examples/golang/components/sqldb-postgres-query/gen/wasi/clocks/monotonic-clock/empty.s | // This file exists for testing this package without WebAssembly,
// allowing empty function bodies with a //go:wasmimport directive.
// See https://pkg.go.dev/cmd/compile for more information.
|
idlab-discover/masters-lin-tian | 194 | examples/golang/components/sqldb-postgres-query/gen/wasi/logging/logging/empty.s | // This file exists for testing this package without WebAssembly,
// allowing empty function bodies with a //go:wasmimport directive.
// See https://pkg.go.dev/cmd/compile for more information.
|
idlab-discover/masters-lin-tian | 194 | examples/golang/components/sqldb-postgres-query/gen/wasmcloud/postgres/query/empty.s | // This file exists for testing this package without WebAssembly,
// allowing empty function bodies with a //go:wasmimport directive.
// See https://pkg.go.dev/cmd/compile for more information.
|
idlab-discover/masters-lin-tian | 194 | examples/golang/components/sqldb-postgres-query/gen/wasmcloud/secrets/reveal/empty.s | // This file exists for testing this package without WebAssembly,
// allowing empty function bodies with a //go:wasmimport directive.
// See https://pkg.go.dev/cmd/compile for more information.
|
idlab-discover/masters-lin-tian | 194 | examples/golang/components/sqldb-postgres-query/gen/wasmcloud/secrets/store/empty.s | // This file exists for testing this package without WebAssembly,
// allowing empty function bodies with a //go:wasmimport directive.
// See https://pkg.go.dev/cmd/compile for more information.
|
idlab-discover/masters-lin-tian | 194 | examples/golang/components/sqldb-postgres-query/gen/wasmcloud/bus/lattice/empty.s | // This file exists for testing this package without WebAssembly,
// allowing empty function bodies with a //go:wasmimport directive.
// See https://pkg.go.dev/cmd/compile for more information.
|
idlab-discover/masters-lin-tian | 194 | examples/golang/components/sqldb-postgres-query/gen/wasmcloud/examples/invoke/empty.s | // This file exists for testing this package without WebAssembly,
// allowing empty function bodies with a //go:wasmimport directive.
// See https://pkg.go.dev/cmd/compile for more information.
|
idlab-discover/masters-lin-tian | 194 | examples/golang/components/http-client-tinygo/gen/wasi/sockets/udp/empty.s | // This file exists for testing this package without WebAssembly,
// allowing empty function bodies with a //go:wasmimport directive.
// See https://pkg.go.dev/cmd/compile for more information.
|
idlab-discover/masters-lin-tian | 194 | examples/golang/components/http-client-tinygo/gen/wasi/sockets/ip-name-lookup/empty.s | // This file exists for testing this package without WebAssembly,
// allowing empty function bodies with a //go:wasmimport directive.
// See https://pkg.go.dev/cmd/compile for more information.
|
idlab-discover/masters-lin-tian | 194 | examples/golang/components/http-client-tinygo/gen/wasi/sockets/instance-network/empty.s | // This file exists for testing this package without WebAssembly,
// allowing empty function bodies with a //go:wasmimport directive.
// See https://pkg.go.dev/cmd/compile for more information.
|
idlab-discover/masters-lin-tian | 194 | examples/golang/components/http-client-tinygo/gen/wasi/sockets/network/empty.s | // This file exists for testing this package without WebAssembly,
// allowing empty function bodies with a //go:wasmimport directive.
// See https://pkg.go.dev/cmd/compile for more information.
|
idlab-discover/masters-lin-tian | 194 | examples/golang/components/http-client-tinygo/gen/wasi/sockets/tcp-create-socket/empty.s | // This file exists for testing this package without WebAssembly,
// allowing empty function bodies with a //go:wasmimport directive.
// See https://pkg.go.dev/cmd/compile for more information.
|
idlab-discover/masters-lin-tian | 194 | examples/golang/components/http-client-tinygo/gen/wasi/sockets/tcp/empty.s | // This file exists for testing this package without WebAssembly,
// allowing empty function bodies with a //go:wasmimport directive.
// See https://pkg.go.dev/cmd/compile for more information.
|
idlab-discover/masters-lin-tian | 194 | examples/golang/components/http-client-tinygo/gen/wasi/sockets/udp-create-socket/empty.s | // This file exists for testing this package without WebAssembly,
// allowing empty function bodies with a //go:wasmimport directive.
// See https://pkg.go.dev/cmd/compile for more information.
|
idlab-discover/masters-lin-tian | 194 | examples/golang/components/http-client-tinygo/gen/wasi/io/error/empty.s | // This file exists for testing this package without WebAssembly,
// allowing empty function bodies with a //go:wasmimport directive.
// See https://pkg.go.dev/cmd/compile for more information.
|
idlab-discover/masters-lin-tian | 194 | examples/golang/components/http-client-tinygo/gen/wasi/io/streams/empty.s | // This file exists for testing this package without WebAssembly,
// allowing empty function bodies with a //go:wasmimport directive.
// See https://pkg.go.dev/cmd/compile for more information.
|
idlab-discover/masters-lin-tian | 194 | examples/golang/components/http-client-tinygo/gen/wasi/io/poll/empty.s | // This file exists for testing this package without WebAssembly,
// allowing empty function bodies with a //go:wasmimport directive.
// See https://pkg.go.dev/cmd/compile for more information.
|
idlab-discover/masters-lin-tian | 194 | examples/golang/components/http-client-tinygo/gen/wasi/http/types/empty.s | // This file exists for testing this package without WebAssembly,
// allowing empty function bodies with a //go:wasmimport directive.
// See https://pkg.go.dev/cmd/compile for more information.
|
idlab-discover/masters-lin-tian | 194 | examples/golang/components/http-client-tinygo/gen/wasi/http/outgoing-handler/empty.s | // This file exists for testing this package without WebAssembly,
// allowing empty function bodies with a //go:wasmimport directive.
// See https://pkg.go.dev/cmd/compile for more information.
|
idlab-discover/masters-lin-tian | 194 | examples/golang/components/http-client-tinygo/gen/wasi/http/incoming-handler/empty.s | // This file exists for testing this package without WebAssembly,
// allowing empty function bodies with a //go:wasmimport directive.
// See https://pkg.go.dev/cmd/compile for more information.
|
idlab-discover/masters-lin-tian | 194 | examples/golang/components/http-client-tinygo/gen/wasi/cli/stderr/empty.s | // This file exists for testing this package without WebAssembly,
// allowing empty function bodies with a //go:wasmimport directive.
// See https://pkg.go.dev/cmd/compile for more information.
|
idlab-discover/masters-lin-tian | 194 | examples/golang/components/http-client-tinygo/gen/wasi/cli/terminal-stderr/empty.s | // This file exists for testing this package without WebAssembly,
// allowing empty function bodies with a //go:wasmimport directive.
// See https://pkg.go.dev/cmd/compile for more information.
|
idlab-discover/masters-lin-tian | 194 | examples/golang/components/http-client-tinygo/gen/wasi/cli/terminal-output/empty.s | // This file exists for testing this package without WebAssembly,
// allowing empty function bodies with a //go:wasmimport directive.
// See https://pkg.go.dev/cmd/compile for more information.
|
idlab-discover/masters-lin-tian | 194 | examples/golang/components/http-client-tinygo/gen/wasi/cli/terminal-input/empty.s | // This file exists for testing this package without WebAssembly,
// allowing empty function bodies with a //go:wasmimport directive.
// See https://pkg.go.dev/cmd/compile for more information.
|
idlab-discover/masters-lin-tian | 194 | examples/golang/components/http-client-tinygo/gen/wasi/cli/stdout/empty.s | // This file exists for testing this package without WebAssembly,
// allowing empty function bodies with a //go:wasmimport directive.
// See https://pkg.go.dev/cmd/compile for more information.
|
idlab-discover/masters-lin-tian | 194 | examples/golang/components/http-client-tinygo/gen/wasi/cli/terminal-stdout/empty.s | // This file exists for testing this package without WebAssembly,
// allowing empty function bodies with a //go:wasmimport directive.
// See https://pkg.go.dev/cmd/compile for more information.
|
idlab-discover/masters-lin-tian | 194 | examples/golang/components/http-client-tinygo/gen/wasi/cli/exit/empty.s | // This file exists for testing this package without WebAssembly,
// allowing empty function bodies with a //go:wasmimport directive.
// See https://pkg.go.dev/cmd/compile for more information.
|
idlab-discover/masters-lin-tian | 194 | examples/golang/components/http-client-tinygo/gen/wasi/cli/terminal-stdin/empty.s | // This file exists for testing this package without WebAssembly,
// allowing empty function bodies with a //go:wasmimport directive.
// See https://pkg.go.dev/cmd/compile for more information.
|
idlab-discover/masters-lin-tian | 194 | examples/golang/components/http-client-tinygo/gen/wasi/cli/environment/empty.s | // This file exists for testing this package without WebAssembly,
// allowing empty function bodies with a //go:wasmimport directive.
// See https://pkg.go.dev/cmd/compile for more information.
|
idlab-discover/masters-lin-tian | 194 | examples/golang/components/http-client-tinygo/gen/wasi/cli/stdin/empty.s | // This file exists for testing this package without WebAssembly,
// allowing empty function bodies with a //go:wasmimport directive.
// See https://pkg.go.dev/cmd/compile for more information.
|
idlab-discover/masters-lin-tian | 194 | examples/golang/components/http-client-tinygo/gen/wasi/config/runtime/empty.s | // This file exists for testing this package without WebAssembly,
// allowing empty function bodies with a //go:wasmimport directive.
// See https://pkg.go.dev/cmd/compile for more information.
|
idlab-discover/masters-lin-tian | 194 | examples/golang/components/http-client-tinygo/gen/wasi/filesystem/types/empty.s | // This file exists for testing this package without WebAssembly,
// allowing empty function bodies with a //go:wasmimport directive.
// See https://pkg.go.dev/cmd/compile for more information.
|
idlab-discover/masters-lin-tian | 194 | examples/golang/components/http-client-tinygo/gen/wasi/filesystem/preopens/empty.s | // This file exists for testing this package without WebAssembly,
// allowing empty function bodies with a //go:wasmimport directive.
// See https://pkg.go.dev/cmd/compile for more information.
|
idlab-discover/masters-lin-tian | 194 | examples/golang/components/http-client-tinygo/gen/wasi/random/insecure/empty.s | // This file exists for testing this package without WebAssembly,
// allowing empty function bodies with a //go:wasmimport directive.
// See https://pkg.go.dev/cmd/compile for more information.
|
idlab-discover/masters-lin-tian | 194 | examples/golang/components/http-client-tinygo/gen/wasi/random/random/empty.s | // This file exists for testing this package without WebAssembly,
// allowing empty function bodies with a //go:wasmimport directive.
// See https://pkg.go.dev/cmd/compile for more information.
|
idlab-discover/masters-lin-tian | 194 | examples/golang/components/http-client-tinygo/gen/wasi/random/insecure-seed/empty.s | // This file exists for testing this package without WebAssembly,
// allowing empty function bodies with a //go:wasmimport directive.
// See https://pkg.go.dev/cmd/compile for more information.
|
idlab-discover/masters-lin-tian | 194 | examples/golang/components/http-client-tinygo/gen/wasi/clocks/wall-clock/empty.s | // This file exists for testing this package without WebAssembly,
// allowing empty function bodies with a //go:wasmimport directive.
// See https://pkg.go.dev/cmd/compile for more information.
|
idlab-discover/masters-lin-tian | 194 | examples/golang/components/http-client-tinygo/gen/wasi/clocks/monotonic-clock/empty.s | // This file exists for testing this package without WebAssembly,
// allowing empty function bodies with a //go:wasmimport directive.
// See https://pkg.go.dev/cmd/compile for more information.
|
idlab-discover/masters-lin-tian | 194 | examples/golang/components/http-client-tinygo/gen/wasi/logging/logging/empty.s | // This file exists for testing this package without WebAssembly,
// allowing empty function bodies with a //go:wasmimport directive.
// See https://pkg.go.dev/cmd/compile for more information.
|
idlab-discover/masters-lin-tian | 194 | examples/golang/components/http-client-tinygo/gen/wasmcloud/secrets/reveal/empty.s | // This file exists for testing this package without WebAssembly,
// allowing empty function bodies with a //go:wasmimport directive.
// See https://pkg.go.dev/cmd/compile for more information.
|
idlab-discover/masters-lin-tian | 194 | examples/golang/components/http-client-tinygo/gen/wasmcloud/secrets/store/empty.s | // This file exists for testing this package without WebAssembly,
// allowing empty function bodies with a //go:wasmimport directive.
// See https://pkg.go.dev/cmd/compile for more information.
|
idlab-discover/masters-lin-tian | 194 | examples/golang/components/http-client-tinygo/gen/wasmcloud/bus/lattice/empty.s | // This file exists for testing this package without WebAssembly,
// allowing empty function bodies with a //go:wasmimport directive.
// See https://pkg.go.dev/cmd/compile for more information.
|
IEEE-UCF/2025-AMDHardware-GPU | 573 | sw/shader_asm/peak_detector.s | // setup registers
addi r1, r0, 0x2000 // input buffer base
addi r2, r0, 0x3000 // output buffer base
addi r3, r0, 256 // input buffer size
addi r4, r0, 0 // loop counter i = 0
addi r5, r0, 128 // threshold value
loop:
// calculate address of in[i] and load it
add r11, r1, r4
load r6, r11, 0
// compare and branch if ... |
IEEE-UCF/2025-AMDHardware-GPU | 445 | sw/shader_asm/triangle_shader.s | // load vertex coordinates
addi r1, r0, 100
addi r2, r0, 100
addi r3, r0, 200
addi r4, r0, 100
addi r5, r0, 150
addi r6, r0, 200
// load command buffer base address
addi r10, r0, 0x1000
// store vertex data into the command buffer
store r1, r10, 0
store r2, r10, 4
store r3, r10, 8
store r4, r10, 12
store r5, r10, 16
... |
ifd3f/astridos | 5,583 | kernel/arch/x86_64/start.S | /*
* Rust BareBones OS
* - By John Hodge (Mutabah/thePowersGang)
* - Modified Slightly by Astrid Yu
* (see https://github.com/thepowersgang/rust-barebones-kernel/blob/master/Kernel/arch/amd64/start.S)
*
* arcm/amd64/start.S
* - AMD64 Entrypoint
*/
/* The kernel is linked to run at -2GB. This allows efficient ... |
iMAGRAY/Shelldone | 184 | deps/cairo/pixman/arm-simd-test.S | .text
.arch armv6
.object_arch armv4
.arm
.altmacro
#ifndef __ARM_EABI__
#error EABI is required (to be sure that calling conventions are compatible)
#endif
pld [r0]
uqadd8 r0, r0, r0
|
iMAGRAY/Shelldone | 68 | deps/cairo/pixman/a64-neon-test.S | .text
.arch armv8-a
.altmacro
prfm pldl2strm, [x0]
xtn v0.8b, v0.8h
|
iMAGRAY/Shelldone | 216 | deps/cairo/pixman/neon-test.S | .text
.fpu neon
.arch armv7a
.object_arch armv4
.eabi_attribute 10, 0
.arm
.altmacro
#ifndef __ARM_EABI__
#error EABI is required (to be sure that calling conventions are compatible)
#endif
pld [r0]
vmovn.u16 d0, q0
|
iMAGRAY/Shelldone | 10,556 | deps/cairo/pixman/pixman/pixman-mips-memcpy-asm.S | /*
* Copyright (c) 2012
* MIPS Technologies, Inc., California.
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions
* are met:
* 1. Redistributions of source code must retain the above copyright
* notice, this list of... |
iMAGRAY/Shelldone | 43,257 | deps/cairo/pixman/pixman/pixman-arm-simd-asm.S | /*
* Copyright © 2012 Raspberry Pi Foundation
* Copyright © 2012 RISC OS Open Ltd
*
* Permission to use, copy, modify, distribute, and sell this software and its
* documentation for any purpose is hereby granted without fee, provided that
* the above copyright notice appear in all copies and that both that
* cop... |
iMAGRAY/Shelldone | 128,848 | deps/cairo/pixman/pixman/pixman-arm-neon-asm.S | /*
* Copyright © 2009 Nokia Corporation
*
* 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, merge, pub... |
iMAGRAY/Shelldone | 43,532 | deps/cairo/pixman/pixman/pixman-arma64-neon-asm-bilinear.S | /*
* Copyright © 2011 SCore Corporation
*
* 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, merge, pub... |
iMAGRAY/Shelldone | 139,688 | deps/cairo/pixman/pixman/pixman-arma64-neon-asm.S | /*
* Copyright © 2009 Nokia Corporation
*
* 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, merge, pub... |
iMAGRAY/Shelldone | 45,185 | deps/cairo/pixman/pixman/pixman-arm-neon-asm-bilinear.S | /*
* Copyright © 2011 SCore Corporation
*
* 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, merge, pub... |
iMAGRAY/Shelldone | 4,651 | deps/cairo/pixman/pixman/pixman-arm-simd-asm-scaled.S | /*
* Copyright © 2008 Mozilla Corporation
* Copyright © 2010 Nokia Corporation
*
* Permission to use, copy, modify, distribute, and sell this software and its
* documentation for any purpose is hereby granted without fee, provided that
* the above copyright notice appear in all copies and that both that
* copyri... |
iMAGRAY/Shelldone | 120,733 | deps/cairo/pixman/pixman/pixman-mips-dspr2-asm.S | /*
* Copyright (c) 2012
* MIPS Technologies, Inc., California.
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions
* are met:
* 1. Redistributions of source code must retain the above copyright
* notice, this list of... |
imishinist/green-thread | 949 | asm/context.S | #ifdef __APPLE__
#define SET_CONTEXT _set_context
#define SWITCH_CONTEXT _switch_context
#else
#define SET_CONTEXT set_context
#define SWITCH_CONTEXT switch_context
#endif
.global SET_CONTEXT
.global SWITCH_CONTEXT
SET_CONTEXT:
stp d8, d9, [x0]
stp d10, d11, [x0, #16]
stp d12, d13, [x0, #... |
imnotluoluo/banishrcore | 676 | os/src/task/switch.S | .altmacro
.macro SAVE_SN n
sd s\n, (\n+2)*8(a0)
.endm
.macro LOAD_SN n
ld s\n, (\n+2)*8(a1)
.endm
.section .text
.globl __switch
__switch:
# __switch(
# current_task_cx_ptr: *mut TaskContext,
# next_task_cx_ptr: *const TaskContext
# )
# save kernel stack of current task
s... |
imnotluoluo/banishrcore | 1,488 | os/src/trap/trap.S | .altmacro
.macro SAVE_GP n
sd x\n, \n*8(sp)
.endm
.macro LOAD_GP n
ld x\n, \n*8(sp)
.endm
.section .text
.globl __alltraps
.globl __restore
.align 2
__alltraps:
csrrw sp, sscratch, sp
# now sp->kernel stack, sscratch->user stack
# allocate a TrapContext on kernel stack
addi sp, s... |
IncalaCode/fid-what-you-see | 10,494 | cpp_code.s | .file "test1.cpp"
.section .rdata,"dr"
__ZStL19piecewise_construct:
.space 1
.lcomm __ZStL8__ioinit,1,1
LC0:
.ascii "\0"
LC1:
.ascii "<\0"
LC2:
.ascii ">\0"
LC3:
.ascii "|\0"
.text
.globl __Z10printTableNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEES4_
.def __Z10printTableNSt7__cxx1112basic_stringIcSt11... |
Inco-fhevm/inco-sgx-enclave-poc | 2,830 | sgxvm/sgx-sdk/sgx_unwind/libunwind/src/x86_64/setcontext.S | /* libunwind - a platform-independent unwind library
Copyright (C) 2007 Google, Inc
Contributed by Arun Sharma <arun.sharma@google.com>
Copyright (C) 2010 Konstantin Belousov <kib@freebsd.org>
This file is part of libunwind.
Permission is hereby granted, free of charge, to any person obtaining
a copy of this s... |
Inco-fhevm/inco-sgx-enclave-poc | 1,438 | sgxvm/sgx-sdk/sgx_unwind/libunwind/src/x86_64/siglongjmp.S | /* libunwind - a platform-independent unwind library
Copyright (C) 2004 Hewlett-Packard Co
Contributed by David Mosberger-Tang <davidm@hpl.hp.com>
This file is part of libunwind.
Permission is hereby granted, free of charge, to any person obtaining
a copy of this software and associated documentation files (the
"... |
Inco-fhevm/inco-sgx-enclave-poc | 4,427 | sgxvm/sgx-sdk/sgx_unwind/libunwind/src/x86_64/getcontext.S | /* libunwind - a platform-independent unwind library
Copyright (C) 2008 Google, Inc
Contributed by Paul Pluzhnikov <ppluzhnikov@google.com>
Copyright (C) 2010 Konstantin Belousov <kib@freebsd.org>
This file is part of libunwind.
Permission is hereby granted, free of charge, to any person obtaining
a copy of th... |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.