id stringlengths 22 129 | text stringlengths 60 19.5k | arch stringclasses 9
values | syntax stringclasses 5
values | kind stringclasses 4
values | repo stringclasses 32
values | path stringlengths 7 108 | license stringclasses 10
values | commit stringlengths 40 40 | source_host stringclasses 1
value | category stringclasses 15
values | source_url stringlengths 85 192 | line_start int64 1 5.48k | line_end int64 4 5.5k |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
bminor/glibc:sysdeps/alpha/alphaev6/stxcpy.S:3 | beq t10, $a_loop # U : (stall for t10)
/* Take care of the final (partial) word store.
On entry to this basic block we have:
t1 == the source word containing the null
t10 == the cmpbge mask that found it. */
$a_eos:
negq t10, t6 # E : find low bit set
and t10, t6, t8 # E : (stall)
/* For the sake of ... | arm64 | gas-like | handwritten | bminor/glibc | sysdeps/alpha/alphaev6/stxcpy.S | LGPL-2.1 | 04e750e75b73957cf1c791535a3f4319534a52fc | github | libc | https://github.com/bminor/glibc/blob/04e750e75b73957cf1c791535a3f4319534a52fc/sysdeps/alpha/alphaev6/stxcpy.S | 81 | 140 |
bminor/glibc:sysdeps/alpha/alphaev6/stxcpy.S:4 | ldq_u t1, 0(a1) # L : load first src word
and a0, 7, t0 # E : take care not to load a word ...
addq a1, 8, a1 # E :
beq t0, stxcpy_aligned # U : ... if we wont need it (stall)
ldq_u t0, 0(a0) # L :
br stxcpy_aligned # L0 : Latency=3
nop
nop
/* The source and destination are not co-aligned. Align the desti... | arm64 | gas-like | handwritten | bminor/glibc | sysdeps/alpha/alphaev6/stxcpy.S | LGPL-2.1 | 04e750e75b73957cf1c791535a3f4319534a52fc | github | libc | https://github.com/bminor/glibc/blob/04e750e75b73957cf1c791535a3f4319534a52fc/sysdeps/alpha/alphaev6/stxcpy.S | 121 | 180 |
bminor/glibc:sysdeps/alpha/alphaev6/stxcpy.S:5 | mskql t6, a1, t6 # U : mask out the bits we have
or t6, t2, t2 # E : already extracted before (stall)
cmpbge zero, t2, t10 # E : testing eos (stall)
bne t10, $u_late_head_exit # U : (stall)
/* Finally, we've got all the stupid leading edge cases taken care
of and we can set up to enter the main loop. *... | arm64 | gas-like | handwritten | bminor/glibc | sysdeps/alpha/alphaev6/stxcpy.S | LGPL-2.1 | 04e750e75b73957cf1c791535a3f4319534a52fc | github | libc | https://github.com/bminor/glibc/blob/04e750e75b73957cf1c791535a3f4319534a52fc/sysdeps/alpha/alphaev6/stxcpy.S | 161 | 220 |
bminor/glibc:sysdeps/alpha/alphaev6/stxcpy.S:6 | ldq_u t2, 0(a1) # L : Latency=3 load high word for next time
stq_u t1, -8(a0) # L : save the current word (stall)
mov t3, t0 # E :
cmpbge zero, t2, t10 # E : test new word for eos
beq t10, $u_loop # U : (stall)
nop
nop
/* We've found a zero somewhere in the source word we just read.
If it resides in the l... | arm64 | gas-like | handwritten | bminor/glibc | sysdeps/alpha/alphaev6/stxcpy.S | LGPL-2.1 | 04e750e75b73957cf1c791535a3f4319534a52fc | github | libc | https://github.com/bminor/glibc/blob/04e750e75b73957cf1c791535a3f4319534a52fc/sysdeps/alpha/alphaev6/stxcpy.S | 201 | 260 |
bminor/glibc:sysdeps/alpha/alphaev6/stxcpy.S:7 | subq t8, 1, t6 # E :
or t6, t8, t10 # E : (stall)
zapnot t1, t6, t1 # U : kill source bytes >= null (stall)
zap t0, t10, t0 # U : kill dest bytes <= null (2 cycle data stall)
or t0, t1, t1 # E : (stall)
nop
nop
1: stq_u t1, 0(a0) # L :
ret (t9) # L0 : Latency=3
nop
nop
/* Unaligned copy entry point. */
... | arm64 | gas-like | handwritten | bminor/glibc | sysdeps/alpha/alphaev6/stxcpy.S | LGPL-2.1 | 04e750e75b73957cf1c791535a3f4319534a52fc | github | libc | https://github.com/bminor/glibc/blob/04e750e75b73957cf1c791535a3f4319534a52fc/sysdeps/alpha/alphaev6/stxcpy.S | 241 | 300 |
bminor/glibc:sysdeps/alpha/alphaev6/stxcpy.S:8 | lda t2, -1 # E : mask out leading garbage in source
mskqh t2, t5, t2 # U :
ornot t1, t2, t3 # E : (stall)
cmpbge zero, t3, t10 # E : is there a zero? (stall)
beq t10, $u_head # U : (stall)
/* At this point we've found a zero in the first partial word of
the source. We need to isolate the valid source data ... | arm64 | gas-like | handwritten | bminor/glibc | sysdeps/alpha/alphaev6/stxcpy.S | LGPL-2.1 | 04e750e75b73957cf1c791535a3f4319534a52fc | github | libc | https://github.com/bminor/glibc/blob/04e750e75b73957cf1c791535a3f4319534a52fc/sysdeps/alpha/alphaev6/stxcpy.S | 281 | 312 |
bminor/glibc:sysdeps/alpha/alphaev6/stxcpy.S:1 | /* Copyright (C) 2000-2025 Free Software Foundation, Inc.
This file is part of the GNU C Library.
The GNU C Library is free software; you can redistribute it and/or
modify it under the terms of the GNU Lesser General Public
License as published by the Free Software Foundation; either
version 2.1 of the ... | arm64 | gas-like | handwritten | bminor/glibc | sysdeps/alpha/alphaev6/stxcpy.S | LGPL-2.1 | 2642002380aafb71a1d3b569b6d7ebeab3284816 | github | libc | https://github.com/bminor/glibc/blob/2642002380aafb71a1d3b569b6d7ebeab3284816/sysdeps/alpha/alphaev6/stxcpy.S | 1 | 60 |
bminor/glibc:sysdeps/alpha/alphaev6/stxcpy.S:1 | /* Copyright (C) 2000-2024 Free Software Foundation, Inc.
This file is part of the GNU C Library.
The GNU C Library is free software; you can redistribute it and/or
modify it under the terms of the GNU Lesser General Public
License as published by the Free Software Foundation; either
version 2.1 of the ... | arm64 | gas-like | handwritten | bminor/glibc | sysdeps/alpha/alphaev6/stxcpy.S | LGPL-2.1 | dff8da6b3e89b986bb7f6b1ec18cf65d5972e307 | github | libc | https://github.com/bminor/glibc/blob/dff8da6b3e89b986bb7f6b1ec18cf65d5972e307/sysdeps/alpha/alphaev6/stxcpy.S | 1 | 60 |
bminor/glibc:sysdeps/alpha/alphaev6/stxcpy.S:1 | /* Copyright (C) 2000-2023 Free Software Foundation, Inc.
This file is part of the GNU C Library.
The GNU C Library is free software; you can redistribute it and/or
modify it under the terms of the GNU Lesser General Public
License as published by the Free Software Foundation; either
version 2.1 of the ... | arm64 | gas-like | handwritten | bminor/glibc | sysdeps/alpha/alphaev6/stxcpy.S | LGPL-2.1 | 6d7e8eda9b85b08f207a6dc6f187e94e4817270f | github | libc | https://github.com/bminor/glibc/blob/6d7e8eda9b85b08f207a6dc6f187e94e4817270f/sysdeps/alpha/alphaev6/stxcpy.S | 1 | 60 |
bminor/glibc:sysdeps/alpha/alphaev6/stxcpy.S:1 | /* Copyright (C) 2000-2022 Free Software Foundation, Inc.
This file is part of the GNU C Library.
The GNU C Library is free software; you can redistribute it and/or
modify it under the terms of the GNU Lesser General Public
License as published by the Free Software Foundation; either
version 2.1 of the ... | arm64 | gas-like | handwritten | bminor/glibc | sysdeps/alpha/alphaev6/stxcpy.S | LGPL-2.1 | 581c785bf31bc74430320c7856bbfa3875d025fe | github | libc | https://github.com/bminor/glibc/blob/581c785bf31bc74430320c7856bbfa3875d025fe/sysdeps/alpha/alphaev6/stxcpy.S | 1 | 60 |
bminor/glibc:sysdeps/alpha/alphaev6/stxcpy.S:1 | /* Copyright (C) 2000-2021 Free Software Foundation, Inc.
This file is part of the GNU C Library.
The GNU C Library is free software; you can redistribute it and/or
modify it under the terms of the GNU Lesser General Public
License as published by the Free Software Foundation; either
version 2.1 of the ... | arm64 | gas-like | handwritten | bminor/glibc | sysdeps/alpha/alphaev6/stxcpy.S | LGPL-2.1 | 30891f35fa7da832b66d80d0807610df361851f3 | github | libc | https://github.com/bminor/glibc/blob/30891f35fa7da832b66d80d0807610df361851f3/sysdeps/alpha/alphaev6/stxcpy.S | 1 | 60 |
bminor/glibc:sysdeps/alpha/alphaev6/stxcpy.S:1 | /* Copyright (C) 2000-2021 Free Software Foundation, Inc.
Contributed by Richard Henderson (rth@tamu.edu)
EV6 optimized by Rick Gorton <rick.gorton@alpha-processor.com>.
This file is part of the GNU C Library.
The GNU C Library is free software; you can redistribute it and/or
modify it under the terms o... | arm64 | gas-like | handwritten | bminor/glibc | sysdeps/alpha/alphaev6/stxcpy.S | LGPL-2.1 | 2b778ceb4010c28d70de9b8eab20e8d88eed586b | github | libc | https://github.com/bminor/glibc/blob/2b778ceb4010c28d70de9b8eab20e8d88eed586b/sysdeps/alpha/alphaev6/stxcpy.S | 1 | 60 |
bminor/glibc:sysdeps/alpha/alphaev6/stxcpy.S:2 | .arch ev6
.set noat
.set noreorder
.text
.type __stxcpy, @function
.globl __stxcpy
.usepv __stxcpy, no
cfi_startproc
cfi_return_column (t9)
/* On entry to this basic block:
t0 == the first destination word for masking back in
t1 == the first source word. */
.align 4
stxcpy_aligned:
/* Create the ... | arm64 | gas-like | handwritten | bminor/glibc | sysdeps/alpha/alphaev6/stxcpy.S | LGPL-2.1 | 2b778ceb4010c28d70de9b8eab20e8d88eed586b | github | libc | https://github.com/bminor/glibc/blob/2b778ceb4010c28d70de9b8eab20e8d88eed586b/sysdeps/alpha/alphaev6/stxcpy.S | 41 | 100 |
bminor/glibc:sysdeps/alpha/alphaev6/stxcpy.S:3 | addq a1, 8, a1 # E :
cmpbge zero, t1, t10 # E : (3 cycle stall)
beq t10, $a_loop # U : (stall for t10)
/* Take care of the final (partial) word store.
On entry to this basic block we have:
t1 == the source word containing the null
t10 == the cmpbge mask that found it. */
$a_eos:
negq t10, t6 # E : fi... | arm64 | gas-like | handwritten | bminor/glibc | sysdeps/alpha/alphaev6/stxcpy.S | LGPL-2.1 | 2b778ceb4010c28d70de9b8eab20e8d88eed586b | github | libc | https://github.com/bminor/glibc/blob/2b778ceb4010c28d70de9b8eab20e8d88eed586b/sysdeps/alpha/alphaev6/stxcpy.S | 81 | 140 |
bminor/glibc:sysdeps/alpha/alphaev6/stxcpy.S:4 | /* We are co-aligned; take care of a partial first word. */
ldq_u t1, 0(a1) # L : load first src word
and a0, 7, t0 # E : take care not to load a word ...
addq a1, 8, a1 # E :
beq t0, stxcpy_aligned # U : ... if we wont need it (stall)
ldq_u t0, 0(a0) # L :
br stxcpy_aligned # L0 : Latency=3
nop
nop
/* T... | arm64 | gas-like | handwritten | bminor/glibc | sysdeps/alpha/alphaev6/stxcpy.S | LGPL-2.1 | 2b778ceb4010c28d70de9b8eab20e8d88eed586b | github | libc | https://github.com/bminor/glibc/blob/2b778ceb4010c28d70de9b8eab20e8d88eed586b/sysdeps/alpha/alphaev6/stxcpy.S | 121 | 180 |
bminor/glibc:sysdeps/alpha/alphaev6/stxcpy.S:5 | lda t6, -1 # E : for masking just below
bne t10, $u_final # U : (stall)
mskql t6, a1, t6 # U : mask out the bits we have
or t6, t2, t2 # E : already extracted before (stall)
cmpbge zero, t2, t10 # E : testing eos (stall)
bne t10, $u_late_head_exit # U : (stall)
/* Finally, we've got all the stupid leadi... | arm64 | gas-like | handwritten | bminor/glibc | sysdeps/alpha/alphaev6/stxcpy.S | LGPL-2.1 | 2b778ceb4010c28d70de9b8eab20e8d88eed586b | github | libc | https://github.com/bminor/glibc/blob/2b778ceb4010c28d70de9b8eab20e8d88eed586b/sysdeps/alpha/alphaev6/stxcpy.S | 161 | 220 |
bminor/glibc:sysdeps/alpha/alphaev6/stxcpy.S:6 | or t0, t1, t1 # E : current dst word now complete
ldq_u t2, 0(a1) # L : Latency=3 load high word for next time
stq_u t1, -8(a0) # L : save the current word (stall)
mov t3, t0 # E :
cmpbge zero, t2, t10 # E : test new word for eos
beq t10, $u_loop # U : (stall)
nop
nop
/* We've found a zero somewhere in the s... | arm64 | gas-like | handwritten | bminor/glibc | sysdeps/alpha/alphaev6/stxcpy.S | LGPL-2.1 | 2b778ceb4010c28d70de9b8eab20e8d88eed586b | github | libc | https://github.com/bminor/glibc/blob/2b778ceb4010c28d70de9b8eab20e8d88eed586b/sysdeps/alpha/alphaev6/stxcpy.S | 201 | 260 |
bminor/glibc:sysdeps/alpha/alphaev6/stxcpy.S:7 | ldq_u t0, 0(a0) # E :
subq t8, 1, t6 # E :
or t6, t8, t10 # E : (stall)
zapnot t1, t6, t1 # U : kill source bytes >= null (stall)
zap t0, t10, t0 # U : kill dest bytes <= null (2 cycle data stall)
or t0, t1, t1 # E : (stall)
nop
nop
1: stq_u t1, 0(a0) # L :
ret (t9) # L0 : Latency=3
nop
nop
/* Unaligned ... | arm64 | gas-like | handwritten | bminor/glibc | sysdeps/alpha/alphaev6/stxcpy.S | LGPL-2.1 | 2b778ceb4010c28d70de9b8eab20e8d88eed586b | github | libc | https://github.com/bminor/glibc/blob/2b778ceb4010c28d70de9b8eab20e8d88eed586b/sysdeps/alpha/alphaev6/stxcpy.S | 241 | 300 |
bminor/glibc:sysdeps/alpha/alphaev6/stxcpy.S:8 | cmplt t4, t5, t8 # E :
beq t8, $u_head # U :
lda t2, -1 # E : mask out leading garbage in source
mskqh t2, t5, t2 # U :
ornot t1, t2, t3 # E : (stall)
cmpbge zero, t3, t10 # E : is there a zero? (stall)
beq t10, $u_head # U : (stall)
/* At this point we've found a zero in the first partial word of
the sou... | arm64 | gas-like | handwritten | bminor/glibc | sysdeps/alpha/alphaev6/stxcpy.S | LGPL-2.1 | 2b778ceb4010c28d70de9b8eab20e8d88eed586b | github | libc | https://github.com/bminor/glibc/blob/2b778ceb4010c28d70de9b8eab20e8d88eed586b/sysdeps/alpha/alphaev6/stxcpy.S | 281 | 314 |
bminor/glibc:sysdeps/alpha/alphaev6/stxcpy.S:1 | /* Copyright (C) 2000-2020 Free Software Foundation, Inc.
Contributed by Richard Henderson (rth@tamu.edu)
EV6 optimized by Rick Gorton <rick.gorton@alpha-processor.com>.
This file is part of the GNU C Library.
The GNU C Library is free software; you can redistribute it and/or
modify it under the terms o... | arm64 | gas-like | handwritten | bminor/glibc | sysdeps/alpha/alphaev6/stxcpy.S | LGPL-2.1 | d614a7539657941a9201c236b2f15afac18e1213 | github | libc | https://github.com/bminor/glibc/blob/d614a7539657941a9201c236b2f15afac18e1213/sysdeps/alpha/alphaev6/stxcpy.S | 1 | 60 |
bminor/glibc:sysdeps/alpha/alphaev6/stxcpy.S:1 | /* Copyright (C) 2000-2019 Free Software Foundation, Inc.
Contributed by Richard Henderson (rth@tamu.edu)
EV6 optimized by Rick Gorton <rick.gorton@alpha-processor.com>.
This file is part of the GNU C Library.
The GNU C Library is free software; you can redistribute it and/or
modify it under the terms o... | arm64 | gas-like | handwritten | bminor/glibc | sysdeps/alpha/alphaev6/stxcpy.S | LGPL-2.1 | 5a82c74822d3272df2f5929133680478c0cfb4bd | github | libc | https://github.com/bminor/glibc/blob/5a82c74822d3272df2f5929133680478c0cfb4bd/sysdeps/alpha/alphaev6/stxcpy.S | 1 | 60 |
bminor/glibc:sysdeps/alpha/alphaev6/stxcpy.S:1 | /* Copyright (C) 2000-2019 Free Software Foundation, Inc.
Contributed by Richard Henderson (rth@tamu.edu)
EV6 optimized by Rick Gorton <rick.gorton@alpha-processor.com>.
This file is part of the GNU C Library.
The GNU C Library is free software; you can redistribute it and/or
modify it under the terms o... | arm64 | gas-like | handwritten | bminor/glibc | sysdeps/alpha/alphaev6/stxcpy.S | LGPL-2.1 | 04277e02d7f54d3582bebcf8386b317018cd5e1d | github | libc | https://github.com/bminor/glibc/blob/04277e02d7f54d3582bebcf8386b317018cd5e1d/sysdeps/alpha/alphaev6/stxcpy.S | 1 | 60 |
bminor/glibc:sysdeps/alpha/alphaev6/stxcpy.S:1 | /* Copyright (C) 2000-2018 Free Software Foundation, Inc.
Contributed by Richard Henderson (rth@tamu.edu)
EV6 optimized by Rick Gorton <rick.gorton@alpha-processor.com>.
This file is part of the GNU C Library.
The GNU C Library is free software; you can redistribute it and/or
modify it under the terms o... | arm64 | gas-like | handwritten | bminor/glibc | sysdeps/alpha/alphaev6/stxcpy.S | LGPL-2.1 | 688903eb3ef01301d239ab753d309d45720610a7 | github | libc | https://github.com/bminor/glibc/blob/688903eb3ef01301d239ab753d309d45720610a7/sysdeps/alpha/alphaev6/stxcpy.S | 1 | 60 |
bminor/glibc:sysdeps/alpha/alphaev6/stxcpy.S:1 | /* Copyright (C) 2000-2017 Free Software Foundation, Inc.
Contributed by Richard Henderson (rth@tamu.edu)
EV6 optimized by Rick Gorton <rick.gorton@alpha-processor.com>.
This file is part of the GNU C Library.
The GNU C Library is free software; you can redistribute it and/or
modify it under the terms o... | arm64 | gas-like | handwritten | bminor/glibc | sysdeps/alpha/alphaev6/stxcpy.S | LGPL-2.1 | bfff8b1becd7d01c074177df7196ab327cd8c844 | github | libc | https://github.com/bminor/glibc/blob/bfff8b1becd7d01c074177df7196ab327cd8c844/sysdeps/alpha/alphaev6/stxcpy.S | 1 | 60 |
bminor/glibc:sysdeps/alpha/alphaev6/stxcpy.S:1 | /* Copyright (C) 2000-2016 Free Software Foundation, Inc.
Contributed by Richard Henderson (rth@tamu.edu)
EV6 optimized by Rick Gorton <rick.gorton@alpha-processor.com>.
This file is part of the GNU C Library.
The GNU C Library is free software; you can redistribute it and/or
modify it under the terms o... | arm64 | gas-like | handwritten | bminor/glibc | sysdeps/alpha/alphaev6/stxcpy.S | LGPL-2.1 | f7a9f785e547bd599dee496fd906a28bcb4ec7fe | github | libc | https://github.com/bminor/glibc/blob/f7a9f785e547bd599dee496fd906a28bcb4ec7fe/sysdeps/alpha/alphaev6/stxcpy.S | 1 | 60 |
bminor/glibc:sysdeps/alpha/alphaev6/stxcpy.S:1 | /* Copyright (C) 2000-2015 Free Software Foundation, Inc.
Contributed by Richard Henderson (rth@tamu.edu)
EV6 optimized by Rick Gorton <rick.gorton@alpha-processor.com>.
This file is part of the GNU C Library.
The GNU C Library is free software; you can redistribute it and/or
modify it under the terms o... | arm64 | gas-like | handwritten | bminor/glibc | sysdeps/alpha/alphaev6/stxcpy.S | LGPL-2.1 | 890b7a4b33d482b5c768ab47d70758b80227e9bc | github | libc | https://github.com/bminor/glibc/blob/890b7a4b33d482b5c768ab47d70758b80227e9bc/sysdeps/alpha/alphaev6/stxcpy.S | 1 | 60 |
bminor/glibc:sysdeps/alpha/alphaev6/stxncpy.S:1 | /* Copyright (C) 2000-2026 Free Software Foundation, Inc.
This file is part of the GNU C Library.
The GNU C Library is free software; you can redistribute it and/or
modify it under the terms of the GNU Lesser General Public
License as published by the Free Software Foundation; either
version 2.1 of the ... | x86_64 | gas-like | handwritten | bminor/glibc | sysdeps/alpha/alphaev6/stxncpy.S | LGPL-2.1 | 04e750e75b73957cf1c791535a3f4319534a52fc | github | libc | https://github.com/bminor/glibc/blob/04e750e75b73957cf1c791535a3f4319534a52fc/sysdeps/alpha/alphaev6/stxncpy.S | 1 | 60 |
bminor/glibc:sysdeps/alpha/alphaev6/stxncpy.S:2 | Furthermore, v0, a3-a5, t11, and t12 are untouched.
*/
#include <sysdep.h>
.arch ev6
.set noat
.set noreorder
.text
.type __stxncpy, @function
.globl __stxncpy
.usepv __stxncpy, no
cfi_startproc
cfi_return_column (t9)
/* On entry to this basic block:
t0 == the first destination word for masking back ... | x86_64 | gas-like | handwritten | bminor/glibc | sysdeps/alpha/alphaev6/stxncpy.S | LGPL-2.1 | 04e750e75b73957cf1c791535a3f4319534a52fc | github | libc | https://github.com/bminor/glibc/blob/04e750e75b73957cf1c791535a3f4319534a52fc/sysdeps/alpha/alphaev6/stxncpy.S | 41 | 100 |
bminor/glibc:sysdeps/alpha/alphaev6/stxncpy.S:3 | /*
* nops here to:
* separate store quads from load quads
* limit of 1 bcond/quad to permit training
*/
$a_loop:
stq_u t0, 0(a0) # L :
addq a0, 8, a0 # E :
subq a2, 1, a2 # E :
nop
ldq_u t0, 0(a1) # L :
addq a1, 8, a1 # E :
cmpbge zero, t0, t7 # E :
beq a2, $a_eoc # U :
beq t7, $a_loop # U :
no... | x86_64 | gas-like | handwritten | bminor/glibc | sysdeps/alpha/alphaev6/stxncpy.S | LGPL-2.1 | 04e750e75b73957cf1c791535a3f4319534a52fc | github | libc | https://github.com/bminor/glibc/blob/04e750e75b73957cf1c791535a3f4319534a52fc/sysdeps/alpha/alphaev6/stxncpy.S | 81 | 140 |
bminor/glibc:sysdeps/alpha/alphaev6/stxncpy.S:4 | or t8, t6, t7 # E : (stall)
zapnot t0, t7, t0 # U : clear src bytes > null (stall)
zap t1, t7, t1 # .. e1 : clear dst bytes <= null
or t0, t1, t0 # e1 : (stall)
nop
nop
1: stq_u t0, 0(a0) # L :
ret (t9) # L0 : Latency=3
nop
nop
/* Add the end-of-count bit to the eos detection bitmask. */
$a_eoc:
or t1... | x86_64 | gas-like | handwritten | bminor/glibc | sysdeps/alpha/alphaev6/stxncpy.S | LGPL-2.1 | 04e750e75b73957cf1c791535a3f4319534a52fc | github | libc | https://github.com/bminor/glibc/blob/04e750e75b73957cf1c791535a3f4319534a52fc/sysdeps/alpha/alphaev6/stxncpy.S | 121 | 180 |
bminor/glibc:sysdeps/alpha/alphaev6/stxncpy.S:5 | nop # E :
bne t1, $unaligned # U : (stall)
/* We are co-aligned; take care of a partial first word. */
ldq_u t1, 0(a1) # L : load first src word
addq a1, 8, a1 # E :
beq t0, stxncpy_aligned # U : avoid loading dest word if not needed
ldq_u t0, 0(a0) # L :
br stxncpy_aligned # U :
nop
nop
nop
/* The so... | x86_64 | gas-like | handwritten | bminor/glibc | sysdeps/alpha/alphaev6/stxncpy.S | LGPL-2.1 | 04e750e75b73957cf1c791535a3f4319534a52fc | github | libc | https://github.com/bminor/glibc/blob/04e750e75b73957cf1c791535a3f4319534a52fc/sysdeps/alpha/alphaev6/stxncpy.S | 161 | 220 |
bminor/glibc:sysdeps/alpha/alphaev6/stxncpy.S:6 | cmpbge zero, t6, t7 # E :
beq a2, $u_eocfin # U :
lda t6, -1 # E :
nop
bne t7, $u_final # U :
mskql t6, a1, t6 # U : mask out bits already seen
stq_u t0, 0(a0) # L : store first output word
or t6, t2, t2 # E :
cmpbge zero, t2, t7 # E : find nulls in second partial
addq a0, 8, a0 # E :
subq a2, 1, a2 #... | x86_64 | gas-like | handwritten | bminor/glibc | sysdeps/alpha/alphaev6/stxncpy.S | LGPL-2.1 | 04e750e75b73957cf1c791535a3f4319534a52fc | github | libc | https://github.com/bminor/glibc/blob/04e750e75b73957cf1c791535a3f4319534a52fc/sysdeps/alpha/alphaev6/stxncpy.S | 201 | 260 |
bminor/glibc:sysdeps/alpha/alphaev6/stxncpy.S:7 | We further know that t2 does not contain a null terminator. */
.align 4
$u_loop:
or t0, t1, t0 # E : current dst word now complete
subq a2, 1, a2 # E : decrement word count
extql t2, a1, t1 # U : extract high bits for next time
addq a0, 8, a0 # E :
stq_u t0, -8(a0) # L : save the current word
beq a2, $u_eoc #... | x86_64 | gas-like | handwritten | bminor/glibc | sysdeps/alpha/alphaev6/stxncpy.S | LGPL-2.1 | 04e750e75b73957cf1c791535a3f4319534a52fc | github | libc | https://github.com/bminor/glibc/blob/04e750e75b73957cf1c791535a3f4319534a52fc/sysdeps/alpha/alphaev6/stxncpy.S | 241 | 300 |
bminor/glibc:sysdeps/alpha/alphaev6/stxncpy.S:8 | extql t2, a1, t0 # U :
cmpbge zero, t0, t7 # E :
or t7, t10, t6 # E : (stall)
cmoveq a2, t6, t7 # E : Latency=2, extra map slot (stall)
/* Take care of a final (probably partial) result word.
On entry to this basic block:
t0 == assembled source word
t7 == cmpbge mask that found the null. */
$u_final:
... | x86_64 | gas-like | handwritten | bminor/glibc | sysdeps/alpha/alphaev6/stxncpy.S | LGPL-2.1 | 04e750e75b73957cf1c791535a3f4319534a52fc | github | libc | https://github.com/bminor/glibc/blob/04e750e75b73957cf1c791535a3f4319534a52fc/sysdeps/alpha/alphaev6/stxncpy.S | 281 | 340 |
bminor/glibc:sysdeps/alpha/alphaev6/stxncpy.S:9 | or t1, t0, t1 # E : (stall)
1: cmpbge zero, t1, t7 # E :
mov t1, t0
$u_eocfin: # end-of-count, final word
or t10, t7, t7 # E :
br $u_final # L0 : Latency=3
/* Unaligned copy entry point. */
.align 4
$unaligned:
ldq_u t1, 0(a1) # L : load first source word
and a0, 7, t4 # E : find dest misalignment
and a1... | x86_64 | gas-like | handwritten | bminor/glibc | sysdeps/alpha/alphaev6/stxncpy.S | LGPL-2.1 | 04e750e75b73957cf1c791535a3f4319534a52fc | github | libc | https://github.com/bminor/glibc/blob/04e750e75b73957cf1c791535a3f4319534a52fc/sysdeps/alpha/alphaev6/stxncpy.S | 321 | 380 |
bminor/glibc:sysdeps/alpha/alphaev6/stxncpy.S:10 | extql t2, a1, t2 # U :
or t7, t10, t5 # E : test for end-of-count too
cmpbge zero, t2, t3 # E :
cmoveq a2, t5, t7 # E : Latency=2, extra map slot
nop # E : keep with cmoveq
andnot t7, t3, t7 # E : (stall)
beq t7, $u_head # U :
/* At this point we've found a zero in the first partial word of
the source. ... | x86_64 | gas-like | handwritten | bminor/glibc | sysdeps/alpha/alphaev6/stxncpy.S | LGPL-2.1 | 04e750e75b73957cf1c791535a3f4319534a52fc | github | libc | https://github.com/bminor/glibc/blob/04e750e75b73957cf1c791535a3f4319534a52fc/sysdeps/alpha/alphaev6/stxncpy.S | 361 | 390 |
bminor/glibc:sysdeps/alpha/alphaev6/stxncpy.S:1 | /* Copyright (C) 2000-2025 Free Software Foundation, Inc.
This file is part of the GNU C Library.
The GNU C Library is free software; you can redistribute it and/or
modify it under the terms of the GNU Lesser General Public
License as published by the Free Software Foundation; either
version 2.1 of the ... | x86_64 | gas-like | handwritten | bminor/glibc | sysdeps/alpha/alphaev6/stxncpy.S | LGPL-2.1 | 2642002380aafb71a1d3b569b6d7ebeab3284816 | github | libc | https://github.com/bminor/glibc/blob/2642002380aafb71a1d3b569b6d7ebeab3284816/sysdeps/alpha/alphaev6/stxncpy.S | 1 | 60 |
bminor/glibc:sysdeps/alpha/alphaev6/stxncpy.S:1 | /* Copyright (C) 2000-2024 Free Software Foundation, Inc.
This file is part of the GNU C Library.
The GNU C Library is free software; you can redistribute it and/or
modify it under the terms of the GNU Lesser General Public
License as published by the Free Software Foundation; either
version 2.1 of the ... | x86_64 | gas-like | handwritten | bminor/glibc | sysdeps/alpha/alphaev6/stxncpy.S | LGPL-2.1 | dff8da6b3e89b986bb7f6b1ec18cf65d5972e307 | github | libc | https://github.com/bminor/glibc/blob/dff8da6b3e89b986bb7f6b1ec18cf65d5972e307/sysdeps/alpha/alphaev6/stxncpy.S | 1 | 60 |
bminor/glibc:sysdeps/alpha/alphaev6/stxncpy.S:1 | /* Copyright (C) 2000-2023 Free Software Foundation, Inc.
This file is part of the GNU C Library.
The GNU C Library is free software; you can redistribute it and/or
modify it under the terms of the GNU Lesser General Public
License as published by the Free Software Foundation; either
version 2.1 of the ... | x86_64 | gas-like | handwritten | bminor/glibc | sysdeps/alpha/alphaev6/stxncpy.S | LGPL-2.1 | 6d7e8eda9b85b08f207a6dc6f187e94e4817270f | github | libc | https://github.com/bminor/glibc/blob/6d7e8eda9b85b08f207a6dc6f187e94e4817270f/sysdeps/alpha/alphaev6/stxncpy.S | 1 | 60 |
bminor/glibc:sysdeps/alpha/alphaev6/stxncpy.S:1 | /* Copyright (C) 2000-2022 Free Software Foundation, Inc.
This file is part of the GNU C Library.
The GNU C Library is free software; you can redistribute it and/or
modify it under the terms of the GNU Lesser General Public
License as published by the Free Software Foundation; either
version 2.1 of the ... | x86_64 | gas-like | handwritten | bminor/glibc | sysdeps/alpha/alphaev6/stxncpy.S | LGPL-2.1 | 581c785bf31bc74430320c7856bbfa3875d025fe | github | libc | https://github.com/bminor/glibc/blob/581c785bf31bc74430320c7856bbfa3875d025fe/sysdeps/alpha/alphaev6/stxncpy.S | 1 | 60 |
bminor/glibc:sysdeps/alpha/alphaev6/stxncpy.S:1 | /* Copyright (C) 2000-2021 Free Software Foundation, Inc.
This file is part of the GNU C Library.
The GNU C Library is free software; you can redistribute it and/or
modify it under the terms of the GNU Lesser General Public
License as published by the Free Software Foundation; either
version 2.1 of the ... | x86_64 | gas-like | handwritten | bminor/glibc | sysdeps/alpha/alphaev6/stxncpy.S | LGPL-2.1 | 30891f35fa7da832b66d80d0807610df361851f3 | github | libc | https://github.com/bminor/glibc/blob/30891f35fa7da832b66d80d0807610df361851f3/sysdeps/alpha/alphaev6/stxncpy.S | 1 | 60 |
bminor/glibc:sysdeps/alpha/alphaev6/stxncpy.S:1 | /* Copyright (C) 2000-2021 Free Software Foundation, Inc.
Contributed by Richard Henderson (rth@tamu.edu)
EV6 optimized by Rick Gorton <rick.gorton@alpha-processor.com>.
This file is part of the GNU C Library.
The GNU C Library is free software; you can redistribute it and/or
modify it under the terms o... | x86_64 | gas-like | handwritten | bminor/glibc | sysdeps/alpha/alphaev6/stxncpy.S | LGPL-2.1 | 2b778ceb4010c28d70de9b8eab20e8d88eed586b | github | libc | https://github.com/bminor/glibc/blob/2b778ceb4010c28d70de9b8eab20e8d88eed586b/sysdeps/alpha/alphaev6/stxncpy.S | 1 | 60 |
bminor/glibc:sysdeps/alpha/alphaev6/stxncpy.S:2 | a2 = the number of full words left in COUNT
Furthermore, v0, a3-a5, t11, and t12 are untouched.
*/
#include <sysdep.h>
.arch ev6
.set noat
.set noreorder
.text
.type __stxncpy, @function
.globl __stxncpy
.usepv __stxncpy, no
cfi_startproc
cfi_return_column (t9)
/* On entry to this basic block:
t... | x86_64 | gas-like | handwritten | bminor/glibc | sysdeps/alpha/alphaev6/stxncpy.S | LGPL-2.1 | 2b778ceb4010c28d70de9b8eab20e8d88eed586b | github | libc | https://github.com/bminor/glibc/blob/2b778ceb4010c28d70de9b8eab20e8d88eed586b/sysdeps/alpha/alphaev6/stxncpy.S | 41 | 100 |
bminor/glibc:sysdeps/alpha/alphaev6/stxncpy.S:3 | /* On entry to this basic block:
t0 == a source word not containing a null. */
/*
* nops here to:
* separate store quads from load quads
* limit of 1 bcond/quad to permit training
*/
$a_loop:
stq_u t0, 0(a0) # L :
addq a0, 8, a0 # E :
subq a2, 1, a2 # E :
nop
ldq_u t0, 0(a1) # L :
addq a1, 8, a1 #... | x86_64 | gas-like | handwritten | bminor/glibc | sysdeps/alpha/alphaev6/stxncpy.S | LGPL-2.1 | 2b778ceb4010c28d70de9b8eab20e8d88eed586b | github | libc | https://github.com/bminor/glibc/blob/2b778ceb4010c28d70de9b8eab20e8d88eed586b/sysdeps/alpha/alphaev6/stxncpy.S | 81 | 140 |
bminor/glibc:sysdeps/alpha/alphaev6/stxncpy.S:4 | ldq_u t1, 0(a0) # L :
subq t8, 1, t6 # E :
or t8, t6, t7 # E : (stall)
zapnot t0, t7, t0 # U : clear src bytes > null (stall)
zap t1, t7, t1 # .. e1 : clear dst bytes <= null
or t0, t1, t0 # e1 : (stall)
nop
nop
1: stq_u t0, 0(a0) # L :
ret (t9) # L0 : Latency=3
nop
nop
/* Add the end-of-count bit to ... | x86_64 | gas-like | handwritten | bminor/glibc | sysdeps/alpha/alphaev6/stxncpy.S | LGPL-2.1 | 2b778ceb4010c28d70de9b8eab20e8d88eed586b | github | libc | https://github.com/bminor/glibc/blob/2b778ceb4010c28d70de9b8eab20e8d88eed586b/sysdeps/alpha/alphaev6/stxncpy.S | 121 | 180 |
bminor/glibc:sysdeps/alpha/alphaev6/stxncpy.S:5 | srl a2, 3, a2 # U : a2 = loop counter = (count - 1)/8
sll t10, t2, t10 # U : t10 = bitmask of last count byte
nop # E :
bne t1, $unaligned # U : (stall)
/* We are co-aligned; take care of a partial first word. */
ldq_u t1, 0(a1) # L : load first src word
addq a1, 8, a1 # E :
beq t0, stxncpy_aligned # U : avo... | x86_64 | gas-like | handwritten | bminor/glibc | sysdeps/alpha/alphaev6/stxncpy.S | LGPL-2.1 | 2b778ceb4010c28d70de9b8eab20e8d88eed586b | github | libc | https://github.com/bminor/glibc/blob/2b778ceb4010c28d70de9b8eab20e8d88eed586b/sysdeps/alpha/alphaev6/stxncpy.S | 161 | 220 |
bminor/glibc:sysdeps/alpha/alphaev6/stxncpy.S:6 | or t0, t1, t0 # E : first output word complete (stall)
or t0, t6, t6 # E : mask original data for zero test (stall)
cmpbge zero, t6, t7 # E :
beq a2, $u_eocfin # U :
lda t6, -1 # E :
nop
bne t7, $u_final # U :
mskql t6, a1, t6 # U : mask out bits already seen
stq_u t0, 0(a0) # L : store first output word
or... | x86_64 | gas-like | handwritten | bminor/glibc | sysdeps/alpha/alphaev6/stxncpy.S | LGPL-2.1 | 2b778ceb4010c28d70de9b8eab20e8d88eed586b | github | libc | https://github.com/bminor/glibc/blob/2b778ceb4010c28d70de9b8eab20e8d88eed586b/sysdeps/alpha/alphaev6/stxncpy.S | 201 | 260 |
bminor/glibc:sysdeps/alpha/alphaev6/stxncpy.S:7 | t2 == the unshifted current source word
We further know that t2 does not contain a null terminator. */
.align 4
$u_loop:
or t0, t1, t0 # E : current dst word now complete
subq a2, 1, a2 # E : decrement word count
extql t2, a1, t1 # U : extract high bits for next time
addq a0, 8, a0 # E :
stq_u t0, -8(a0) ... | x86_64 | gas-like | handwritten | bminor/glibc | sysdeps/alpha/alphaev6/stxncpy.S | LGPL-2.1 | 2b778ceb4010c28d70de9b8eab20e8d88eed586b | github | libc | https://github.com/bminor/glibc/blob/2b778ceb4010c28d70de9b8eab20e8d88eed586b/sysdeps/alpha/alphaev6/stxncpy.S | 241 | 300 |
bminor/glibc:sysdeps/alpha/alphaev6/stxncpy.S:8 | $u_late_head_exit:
extql t2, a1, t0 # U :
cmpbge zero, t0, t7 # E :
or t7, t10, t6 # E : (stall)
cmoveq a2, t6, t7 # E : Latency=2, extra map slot (stall)
/* Take care of a final (probably partial) result word.
On entry to this basic block:
t0 == assembled source word
t7 == cmpbge mask that found the ... | x86_64 | gas-like | handwritten | bminor/glibc | sysdeps/alpha/alphaev6/stxncpy.S | LGPL-2.1 | 2b778ceb4010c28d70de9b8eab20e8d88eed586b | github | libc | https://github.com/bminor/glibc/blob/2b778ceb4010c28d70de9b8eab20e8d88eed586b/sysdeps/alpha/alphaev6/stxncpy.S | 281 | 340 |
bminor/glibc:sysdeps/alpha/alphaev6/stxncpy.S:9 | nop
extqh t2, a1, t0 # U : extract low bits for last word (stall)
or t1, t0, t1 # E : (stall)
1: cmpbge zero, t1, t7 # E :
mov t1, t0
$u_eocfin: # end-of-count, final word
or t10, t7, t7 # E :
br $u_final # L0 : Latency=3
/* Unaligned copy entry point. */
.align 4
$unaligned:
ldq_u t1, 0(a1) # L : load f... | x86_64 | gas-like | handwritten | bminor/glibc | sysdeps/alpha/alphaev6/stxncpy.S | LGPL-2.1 | 2b778ceb4010c28d70de9b8eab20e8d88eed586b | github | libc | https://github.com/bminor/glibc/blob/2b778ceb4010c28d70de9b8eab20e8d88eed586b/sysdeps/alpha/alphaev6/stxncpy.S | 321 | 380 |
bminor/glibc:sysdeps/alpha/alphaev6/stxncpy.S:10 | mskqh t2, t5, t2 # U : begin src byte validity mask
cmpbge zero, t1, t7 # E : is there a zero?
extql t2, a1, t2 # U :
or t7, t10, t5 # E : test for end-of-count too
cmpbge zero, t2, t3 # E :
cmoveq a2, t5, t7 # E : Latency=2, extra map slot
nop # E : keep with cmoveq
andnot t7, t3, t7 # E : (stall)
beq t7, ... | x86_64 | gas-like | handwritten | bminor/glibc | sysdeps/alpha/alphaev6/stxncpy.S | LGPL-2.1 | 2b778ceb4010c28d70de9b8eab20e8d88eed586b | github | libc | https://github.com/bminor/glibc/blob/2b778ceb4010c28d70de9b8eab20e8d88eed586b/sysdeps/alpha/alphaev6/stxncpy.S | 361 | 392 |
bminor/glibc:sysdeps/alpha/alphaev6/stxncpy.S:1 | /* Copyright (C) 2000-2020 Free Software Foundation, Inc.
Contributed by Richard Henderson (rth@tamu.edu)
EV6 optimized by Rick Gorton <rick.gorton@alpha-processor.com>.
This file is part of the GNU C Library.
The GNU C Library is free software; you can redistribute it and/or
modify it under the terms o... | x86_64 | gas-like | handwritten | bminor/glibc | sysdeps/alpha/alphaev6/stxncpy.S | LGPL-2.1 | d614a7539657941a9201c236b2f15afac18e1213 | github | libc | https://github.com/bminor/glibc/blob/d614a7539657941a9201c236b2f15afac18e1213/sysdeps/alpha/alphaev6/stxncpy.S | 1 | 60 |
bminor/glibc:sysdeps/alpha/alphaev6/stxncpy.S:1 | /* Copyright (C) 2000-2019 Free Software Foundation, Inc.
Contributed by Richard Henderson (rth@tamu.edu)
EV6 optimized by Rick Gorton <rick.gorton@alpha-processor.com>.
This file is part of the GNU C Library.
The GNU C Library is free software; you can redistribute it and/or
modify it under the terms o... | x86_64 | gas-like | handwritten | bminor/glibc | sysdeps/alpha/alphaev6/stxncpy.S | LGPL-2.1 | 5a82c74822d3272df2f5929133680478c0cfb4bd | github | libc | https://github.com/bminor/glibc/blob/5a82c74822d3272df2f5929133680478c0cfb4bd/sysdeps/alpha/alphaev6/stxncpy.S | 1 | 60 |
bminor/glibc:sysdeps/alpha/alphaev6/stxncpy.S:1 | /* Copyright (C) 2000-2019 Free Software Foundation, Inc.
Contributed by Richard Henderson (rth@tamu.edu)
EV6 optimized by Rick Gorton <rick.gorton@alpha-processor.com>.
This file is part of the GNU C Library.
The GNU C Library is free software; you can redistribute it and/or
modify it under the terms o... | x86_64 | gas-like | handwritten | bminor/glibc | sysdeps/alpha/alphaev6/stxncpy.S | LGPL-2.1 | 04277e02d7f54d3582bebcf8386b317018cd5e1d | github | libc | https://github.com/bminor/glibc/blob/04277e02d7f54d3582bebcf8386b317018cd5e1d/sysdeps/alpha/alphaev6/stxncpy.S | 1 | 60 |
bminor/glibc:sysdeps/alpha/alphaev6/stxncpy.S:1 | /* Copyright (C) 2000-2018 Free Software Foundation, Inc.
Contributed by Richard Henderson (rth@tamu.edu)
EV6 optimized by Rick Gorton <rick.gorton@alpha-processor.com>.
This file is part of the GNU C Library.
The GNU C Library is free software; you can redistribute it and/or
modify it under the terms o... | x86_64 | gas-like | handwritten | bminor/glibc | sysdeps/alpha/alphaev6/stxncpy.S | LGPL-2.1 | 688903eb3ef01301d239ab753d309d45720610a7 | github | libc | https://github.com/bminor/glibc/blob/688903eb3ef01301d239ab753d309d45720610a7/sysdeps/alpha/alphaev6/stxncpy.S | 1 | 60 |
bminor/glibc:sysdeps/alpha/alphaev6/stxncpy.S:1 | /* Copyright (C) 2000-2017 Free Software Foundation, Inc.
Contributed by Richard Henderson (rth@tamu.edu)
EV6 optimized by Rick Gorton <rick.gorton@alpha-processor.com>.
This file is part of the GNU C Library.
The GNU C Library is free software; you can redistribute it and/or
modify it under the terms o... | x86_64 | gas-like | handwritten | bminor/glibc | sysdeps/alpha/alphaev6/stxncpy.S | LGPL-2.1 | bfff8b1becd7d01c074177df7196ab327cd8c844 | github | libc | https://github.com/bminor/glibc/blob/bfff8b1becd7d01c074177df7196ab327cd8c844/sysdeps/alpha/alphaev6/stxncpy.S | 1 | 60 |
bminor/glibc:sysdeps/alpha/alphaev6/stxncpy.S:1 | /* Copyright (C) 2000-2016 Free Software Foundation, Inc.
Contributed by Richard Henderson (rth@tamu.edu)
EV6 optimized by Rick Gorton <rick.gorton@alpha-processor.com>.
This file is part of the GNU C Library.
The GNU C Library is free software; you can redistribute it and/or
modify it under the terms o... | x86_64 | gas-like | handwritten | bminor/glibc | sysdeps/alpha/alphaev6/stxncpy.S | LGPL-2.1 | f7a9f785e547bd599dee496fd906a28bcb4ec7fe | github | libc | https://github.com/bminor/glibc/blob/f7a9f785e547bd599dee496fd906a28bcb4ec7fe/sysdeps/alpha/alphaev6/stxncpy.S | 1 | 60 |
bminor/glibc:sysdeps/alpha/alphaev6/stxncpy.S:1 | /* Copyright (C) 2000-2015 Free Software Foundation, Inc.
Contributed by Richard Henderson (rth@tamu.edu)
EV6 optimized by Rick Gorton <rick.gorton@alpha-processor.com>.
This file is part of the GNU C Library.
The GNU C Library is free software; you can redistribute it and/or
modify it under the terms o... | x86_64 | gas-like | handwritten | bminor/glibc | sysdeps/alpha/alphaev6/stxncpy.S | LGPL-2.1 | 890b7a4b33d482b5c768ab47d70758b80227e9bc | github | libc | https://github.com/bminor/glibc/blob/890b7a4b33d482b5c768ab47d70758b80227e9bc/sysdeps/alpha/alphaev6/stxncpy.S | 1 | 60 |
bminor/glibc:sysdeps/alpha/alphaev67/ffs.S:1 | /* Copyright (C) 2000-2024 Free Software Foundation, Inc.
This file is part of the GNU C Library.
The GNU C Library is free software; you can redistribute it and/or
modify it under the terms of the GNU Lesser General Public
License as published by the Free Software Foundation; either
version 2.1 of the ... | arm64 | gas-like | handwritten | bminor/glibc | sysdeps/alpha/alphaev67/ffs.S | LGPL-2.1 | dff8da6b3e89b986bb7f6b1ec18cf65d5972e307 | github | libc | https://github.com/bminor/glibc/blob/dff8da6b3e89b986bb7f6b1ec18cf65d5972e307/sysdeps/alpha/alphaev67/ffs.S | 1 | 51 |
bminor/glibc:sysdeps/alpha/alphaev67/ffs.S:1 | /* Copyright (C) 2000-2023 Free Software Foundation, Inc.
This file is part of the GNU C Library.
The GNU C Library is free software; you can redistribute it and/or
modify it under the terms of the GNU Lesser General Public
License as published by the Free Software Foundation; either
version 2.1 of the ... | arm64 | gas-like | handwritten | bminor/glibc | sysdeps/alpha/alphaev67/ffs.S | LGPL-2.1 | 6d7e8eda9b85b08f207a6dc6f187e94e4817270f | github | libc | https://github.com/bminor/glibc/blob/6d7e8eda9b85b08f207a6dc6f187e94e4817270f/sysdeps/alpha/alphaev67/ffs.S | 1 | 51 |
bminor/glibc:sysdeps/alpha/alphaev67/ffs.S:1 | /* Copyright (C) 2000-2022 Free Software Foundation, Inc.
This file is part of the GNU C Library.
The GNU C Library is free software; you can redistribute it and/or
modify it under the terms of the GNU Lesser General Public
License as published by the Free Software Foundation; either
version 2.1 of the ... | arm64 | gas-like | handwritten | bminor/glibc | sysdeps/alpha/alphaev67/ffs.S | LGPL-2.1 | 581c785bf31bc74430320c7856bbfa3875d025fe | github | libc | https://github.com/bminor/glibc/blob/581c785bf31bc74430320c7856bbfa3875d025fe/sysdeps/alpha/alphaev67/ffs.S | 1 | 51 |
bminor/glibc:sysdeps/alpha/alphaev67/ffs.S:1 | /* Copyright (C) 2000-2021 Free Software Foundation, Inc.
This file is part of the GNU C Library.
The GNU C Library is free software; you can redistribute it and/or
modify it under the terms of the GNU Lesser General Public
License as published by the Free Software Foundation; either
version 2.1 of the ... | arm64 | gas-like | handwritten | bminor/glibc | sysdeps/alpha/alphaev67/ffs.S | LGPL-2.1 | 2b778ceb4010c28d70de9b8eab20e8d88eed586b | github | libc | https://github.com/bminor/glibc/blob/2b778ceb4010c28d70de9b8eab20e8d88eed586b/sysdeps/alpha/alphaev67/ffs.S | 1 | 51 |
bminor/glibc:sysdeps/alpha/alphaev67/ffs.S:1 | /* Copyright (C) 2000-2020 Free Software Foundation, Inc.
This file is part of the GNU C Library.
The GNU C Library is free software; you can redistribute it and/or
modify it under the terms of the GNU Lesser General Public
License as published by the Free Software Foundation; either
version 2.1 of the ... | arm64 | gas-like | handwritten | bminor/glibc | sysdeps/alpha/alphaev67/ffs.S | LGPL-2.1 | d614a7539657941a9201c236b2f15afac18e1213 | github | libc | https://github.com/bminor/glibc/blob/d614a7539657941a9201c236b2f15afac18e1213/sysdeps/alpha/alphaev67/ffs.S | 1 | 51 |
bminor/glibc:sysdeps/alpha/alphaev67/ffs.S:1 | /* Copyright (C) 2000-2019 Free Software Foundation, Inc.
This file is part of the GNU C Library.
The GNU C Library is free software; you can redistribute it and/or
modify it under the terms of the GNU Lesser General Public
License as published by the Free Software Foundation; either
version 2.1 of the ... | arm64 | gas-like | handwritten | bminor/glibc | sysdeps/alpha/alphaev67/ffs.S | LGPL-2.1 | 5a82c74822d3272df2f5929133680478c0cfb4bd | github | libc | https://github.com/bminor/glibc/blob/5a82c74822d3272df2f5929133680478c0cfb4bd/sysdeps/alpha/alphaev67/ffs.S | 1 | 51 |
bminor/glibc:sysdeps/alpha/alphaev67/ffs.S:1 | /* Copyright (C) 2000-2019 Free Software Foundation, Inc.
This file is part of the GNU C Library.
The GNU C Library is free software; you can redistribute it and/or
modify it under the terms of the GNU Lesser General Public
License as published by the Free Software Foundation; either
version 2.1 of the ... | arm64 | gas-like | handwritten | bminor/glibc | sysdeps/alpha/alphaev67/ffs.S | LGPL-2.1 | 04277e02d7f54d3582bebcf8386b317018cd5e1d | github | libc | https://github.com/bminor/glibc/blob/04277e02d7f54d3582bebcf8386b317018cd5e1d/sysdeps/alpha/alphaev67/ffs.S | 1 | 51 |
bminor/glibc:sysdeps/alpha/alphaev67/ffs.S:1 | /* Copyright (C) 2000-2018 Free Software Foundation, Inc.
This file is part of the GNU C Library.
The GNU C Library is free software; you can redistribute it and/or
modify it under the terms of the GNU Lesser General Public
License as published by the Free Software Foundation; either
version 2.1 of the ... | arm64 | gas-like | handwritten | bminor/glibc | sysdeps/alpha/alphaev67/ffs.S | LGPL-2.1 | 688903eb3ef01301d239ab753d309d45720610a7 | github | libc | https://github.com/bminor/glibc/blob/688903eb3ef01301d239ab753d309d45720610a7/sysdeps/alpha/alphaev67/ffs.S | 1 | 51 |
bminor/glibc:sysdeps/alpha/alphaev67/ffs.S:1 | /* Copyright (C) 2000-2017 Free Software Foundation, Inc.
This file is part of the GNU C Library.
The GNU C Library is free software; you can redistribute it and/or
modify it under the terms of the GNU Lesser General Public
License as published by the Free Software Foundation; either
version 2.1 of the ... | arm64 | gas-like | handwritten | bminor/glibc | sysdeps/alpha/alphaev67/ffs.S | LGPL-2.1 | bfff8b1becd7d01c074177df7196ab327cd8c844 | github | libc | https://github.com/bminor/glibc/blob/bfff8b1becd7d01c074177df7196ab327cd8c844/sysdeps/alpha/alphaev67/ffs.S | 1 | 51 |
bminor/glibc:sysdeps/alpha/alphaev67/ffs.S:1 | /* Copyright (C) 2000-2016 Free Software Foundation, Inc.
This file is part of the GNU C Library.
The GNU C Library is free software; you can redistribute it and/or
modify it under the terms of the GNU Lesser General Public
License as published by the Free Software Foundation; either
version 2.1 of the ... | arm64 | gas-like | handwritten | bminor/glibc | sysdeps/alpha/alphaev67/ffs.S | LGPL-2.1 | f7a9f785e547bd599dee496fd906a28bcb4ec7fe | github | libc | https://github.com/bminor/glibc/blob/f7a9f785e547bd599dee496fd906a28bcb4ec7fe/sysdeps/alpha/alphaev67/ffs.S | 1 | 51 |
bminor/glibc:sysdeps/alpha/alphaev67/ffs.S:1 | /* Copyright (C) 2000-2015 Free Software Foundation, Inc.
This file is part of the GNU C Library.
The GNU C Library is free software; you can redistribute it and/or
modify it under the terms of the GNU Lesser General Public
License as published by the Free Software Foundation; either
version 2.1 of the ... | arm64 | gas-like | handwritten | bminor/glibc | sysdeps/alpha/alphaev67/ffs.S | LGPL-2.1 | 890b7a4b33d482b5c768ab47d70758b80227e9bc | github | libc | https://github.com/bminor/glibc/blob/890b7a4b33d482b5c768ab47d70758b80227e9bc/sysdeps/alpha/alphaev67/ffs.S | 1 | 51 |
bminor/glibc:sysdeps/alpha/alphaev67/ffsll.S:1 | /* Copyright (C) 2000-2024 Free Software Foundation, Inc.
This file is part of the GNU C Library.
The GNU C Library is free software; you can redistribute it and/or
modify it under the terms of the GNU Lesser General Public
License as published by the Free Software Foundation; either
version 2.1 of the ... | arm64 | gas-like | handwritten | bminor/glibc | sysdeps/alpha/alphaev67/ffsll.S | LGPL-2.1 | dff8da6b3e89b986bb7f6b1ec18cf65d5972e307 | github | libc | https://github.com/bminor/glibc/blob/dff8da6b3e89b986bb7f6b1ec18cf65d5972e307/sysdeps/alpha/alphaev67/ffsll.S | 1 | 44 |
bminor/glibc:sysdeps/alpha/alphaev67/ffsll.S:1 | /* Copyright (C) 2000-2023 Free Software Foundation, Inc.
This file is part of the GNU C Library.
The GNU C Library is free software; you can redistribute it and/or
modify it under the terms of the GNU Lesser General Public
License as published by the Free Software Foundation; either
version 2.1 of the ... | arm64 | gas-like | handwritten | bminor/glibc | sysdeps/alpha/alphaev67/ffsll.S | LGPL-2.1 | 6d7e8eda9b85b08f207a6dc6f187e94e4817270f | github | libc | https://github.com/bminor/glibc/blob/6d7e8eda9b85b08f207a6dc6f187e94e4817270f/sysdeps/alpha/alphaev67/ffsll.S | 1 | 44 |
bminor/glibc:sysdeps/alpha/alphaev67/ffsll.S:1 | /* Copyright (C) 2000-2022 Free Software Foundation, Inc.
This file is part of the GNU C Library.
The GNU C Library is free software; you can redistribute it and/or
modify it under the terms of the GNU Lesser General Public
License as published by the Free Software Foundation; either
version 2.1 of the ... | arm64 | gas-like | handwritten | bminor/glibc | sysdeps/alpha/alphaev67/ffsll.S | LGPL-2.1 | 581c785bf31bc74430320c7856bbfa3875d025fe | github | libc | https://github.com/bminor/glibc/blob/581c785bf31bc74430320c7856bbfa3875d025fe/sysdeps/alpha/alphaev67/ffsll.S | 1 | 44 |
bminor/glibc:sysdeps/alpha/alphaev67/ffsll.S:1 | /* Copyright (C) 2000-2021 Free Software Foundation, Inc.
This file is part of the GNU C Library.
The GNU C Library is free software; you can redistribute it and/or
modify it under the terms of the GNU Lesser General Public
License as published by the Free Software Foundation; either
version 2.1 of the ... | arm64 | gas-like | handwritten | bminor/glibc | sysdeps/alpha/alphaev67/ffsll.S | LGPL-2.1 | 2b778ceb4010c28d70de9b8eab20e8d88eed586b | github | libc | https://github.com/bminor/glibc/blob/2b778ceb4010c28d70de9b8eab20e8d88eed586b/sysdeps/alpha/alphaev67/ffsll.S | 1 | 44 |
bminor/glibc:sysdeps/alpha/alphaev67/ffsll.S:1 | /* Copyright (C) 2000-2020 Free Software Foundation, Inc.
This file is part of the GNU C Library.
The GNU C Library is free software; you can redistribute it and/or
modify it under the terms of the GNU Lesser General Public
License as published by the Free Software Foundation; either
version 2.1 of the ... | arm64 | gas-like | handwritten | bminor/glibc | sysdeps/alpha/alphaev67/ffsll.S | LGPL-2.1 | d614a7539657941a9201c236b2f15afac18e1213 | github | libc | https://github.com/bminor/glibc/blob/d614a7539657941a9201c236b2f15afac18e1213/sysdeps/alpha/alphaev67/ffsll.S | 1 | 44 |
bminor/glibc:sysdeps/alpha/alphaev67/ffsll.S:1 | /* Copyright (C) 2000-2019 Free Software Foundation, Inc.
This file is part of the GNU C Library.
The GNU C Library is free software; you can redistribute it and/or
modify it under the terms of the GNU Lesser General Public
License as published by the Free Software Foundation; either
version 2.1 of the ... | arm64 | gas-like | handwritten | bminor/glibc | sysdeps/alpha/alphaev67/ffsll.S | LGPL-2.1 | 5a82c74822d3272df2f5929133680478c0cfb4bd | github | libc | https://github.com/bminor/glibc/blob/5a82c74822d3272df2f5929133680478c0cfb4bd/sysdeps/alpha/alphaev67/ffsll.S | 1 | 44 |
bminor/glibc:sysdeps/alpha/alphaev67/ffsll.S:1 | /* Copyright (C) 2000-2019 Free Software Foundation, Inc.
This file is part of the GNU C Library.
The GNU C Library is free software; you can redistribute it and/or
modify it under the terms of the GNU Lesser General Public
License as published by the Free Software Foundation; either
version 2.1 of the ... | arm64 | gas-like | handwritten | bminor/glibc | sysdeps/alpha/alphaev67/ffsll.S | LGPL-2.1 | 04277e02d7f54d3582bebcf8386b317018cd5e1d | github | libc | https://github.com/bminor/glibc/blob/04277e02d7f54d3582bebcf8386b317018cd5e1d/sysdeps/alpha/alphaev67/ffsll.S | 1 | 44 |
bminor/glibc:sysdeps/alpha/alphaev67/ffsll.S:1 | /* Copyright (C) 2000-2018 Free Software Foundation, Inc.
This file is part of the GNU C Library.
The GNU C Library is free software; you can redistribute it and/or
modify it under the terms of the GNU Lesser General Public
License as published by the Free Software Foundation; either
version 2.1 of the ... | arm64 | gas-like | handwritten | bminor/glibc | sysdeps/alpha/alphaev67/ffsll.S | LGPL-2.1 | 688903eb3ef01301d239ab753d309d45720610a7 | github | libc | https://github.com/bminor/glibc/blob/688903eb3ef01301d239ab753d309d45720610a7/sysdeps/alpha/alphaev67/ffsll.S | 1 | 44 |
bminor/glibc:sysdeps/alpha/alphaev67/ffsll.S:1 | /* Copyright (C) 2000-2017 Free Software Foundation, Inc.
This file is part of the GNU C Library.
The GNU C Library is free software; you can redistribute it and/or
modify it under the terms of the GNU Lesser General Public
License as published by the Free Software Foundation; either
version 2.1 of the ... | arm64 | gas-like | handwritten | bminor/glibc | sysdeps/alpha/alphaev67/ffsll.S | LGPL-2.1 | bfff8b1becd7d01c074177df7196ab327cd8c844 | github | libc | https://github.com/bminor/glibc/blob/bfff8b1becd7d01c074177df7196ab327cd8c844/sysdeps/alpha/alphaev67/ffsll.S | 1 | 44 |
bminor/glibc:sysdeps/alpha/alphaev67/ffsll.S:1 | /* Copyright (C) 2000-2016 Free Software Foundation, Inc.
This file is part of the GNU C Library.
The GNU C Library is free software; you can redistribute it and/or
modify it under the terms of the GNU Lesser General Public
License as published by the Free Software Foundation; either
version 2.1 of the ... | arm64 | gas-like | handwritten | bminor/glibc | sysdeps/alpha/alphaev67/ffsll.S | LGPL-2.1 | f7a9f785e547bd599dee496fd906a28bcb4ec7fe | github | libc | https://github.com/bminor/glibc/blob/f7a9f785e547bd599dee496fd906a28bcb4ec7fe/sysdeps/alpha/alphaev67/ffsll.S | 1 | 44 |
bminor/glibc:sysdeps/alpha/alphaev67/ffsll.S:1 | /* Copyright (C) 2000-2015 Free Software Foundation, Inc.
This file is part of the GNU C Library.
The GNU C Library is free software; you can redistribute it and/or
modify it under the terms of the GNU Lesser General Public
License as published by the Free Software Foundation; either
version 2.1 of the ... | arm64 | gas-like | handwritten | bminor/glibc | sysdeps/alpha/alphaev67/ffsll.S | LGPL-2.1 | 890b7a4b33d482b5c768ab47d70758b80227e9bc | github | libc | https://github.com/bminor/glibc/blob/890b7a4b33d482b5c768ab47d70758b80227e9bc/sysdeps/alpha/alphaev67/ffsll.S | 1 | 44 |
bminor/glibc:sysdeps/alpha/alphaev67/rawmemchr.S:1 | /* Copyright (C) 2000-2026 Free Software Foundation, Inc.
This file is part of the GNU C Library.
The GNU C Library is free software; you can redistribute it and/or
modify it under the terms of the GNU Lesser General Public
License as published by the Free Software Foundation; either
version 2.1 of the ... | arm64 | gas-like | handwritten | bminor/glibc | sysdeps/alpha/alphaev67/rawmemchr.S | LGPL-2.1 | 04e750e75b73957cf1c791535a3f4319534a52fc | github | libc | https://github.com/bminor/glibc/blob/04e750e75b73957cf1c791535a3f4319534a52fc/sysdeps/alpha/alphaev67/rawmemchr.S | 1 | 60 |
bminor/glibc:sysdeps/alpha/alphaev67/rawmemchr.S:2 | insbl t3, 6, a3 # U : 00ch000000000000
or t5, t3, a1 # E : 000000000000chch
andnot a0, 7, v0 # E : align our loop pointer
lda t4, -1 # E : build garbage mask
mskqh t4, a0, t4 # U : only want relevant part of first quad
or a2, a3, a2 # E : chch000000000000
inswl a1, 2, t5 # E : 00000000chch0000
inswl a1, 4, a3... | arm64 | gas-like | handwritten | bminor/glibc | sysdeps/alpha/alphaev67/rawmemchr.S | LGPL-2.1 | 04e750e75b73957cf1c791535a3f4319534a52fc | github | libc | https://github.com/bminor/glibc/blob/04e750e75b73957cf1c791535a3f4319534a52fc/sysdeps/alpha/alphaev67/rawmemchr.S | 41 | 92 |
bminor/glibc:sysdeps/alpha/alphaev67/rawmemchr.S:3 | beq t0, $loop # U :
$found:
negq t0, t1 # E : clear all but least set bit
and t0, t1, t0 # E :
addq v0, a2, v0 # E : Add in the bit number from above
ret # L0 :
END(__rawmemchr)
libc_hidden_def (__rawmemchr)
weak_alias (__rawmemchr, rawmemchr) | arm64 | gas-like | handwritten | bminor/glibc | sysdeps/alpha/alphaev67/rawmemchr.S | LGPL-2.1 | 04e750e75b73957cf1c791535a3f4319534a52fc | github | libc | https://github.com/bminor/glibc/blob/04e750e75b73957cf1c791535a3f4319534a52fc/sysdeps/alpha/alphaev67/rawmemchr.S | 81 | 92 |
bminor/glibc:sysdeps/alpha/alphaev67/rawmemchr.S:1 | /* Copyright (C) 2000-2025 Free Software Foundation, Inc.
This file is part of the GNU C Library.
The GNU C Library is free software; you can redistribute it and/or
modify it under the terms of the GNU Lesser General Public
License as published by the Free Software Foundation; either
version 2.1 of the ... | arm64 | gas-like | handwritten | bminor/glibc | sysdeps/alpha/alphaev67/rawmemchr.S | LGPL-2.1 | 2642002380aafb71a1d3b569b6d7ebeab3284816 | github | libc | https://github.com/bminor/glibc/blob/2642002380aafb71a1d3b569b6d7ebeab3284816/sysdeps/alpha/alphaev67/rawmemchr.S | 1 | 60 |
bminor/glibc:sysdeps/alpha/alphaev67/rawmemchr.S:1 | /* Copyright (C) 2000-2024 Free Software Foundation, Inc.
This file is part of the GNU C Library.
The GNU C Library is free software; you can redistribute it and/or
modify it under the terms of the GNU Lesser General Public
License as published by the Free Software Foundation; either
version 2.1 of the ... | arm64 | gas-like | handwritten | bminor/glibc | sysdeps/alpha/alphaev67/rawmemchr.S | LGPL-2.1 | dff8da6b3e89b986bb7f6b1ec18cf65d5972e307 | github | libc | https://github.com/bminor/glibc/blob/dff8da6b3e89b986bb7f6b1ec18cf65d5972e307/sysdeps/alpha/alphaev67/rawmemchr.S | 1 | 60 |
bminor/glibc:sysdeps/alpha/alphaev67/rawmemchr.S:1 | /* Copyright (C) 2000-2023 Free Software Foundation, Inc.
This file is part of the GNU C Library.
The GNU C Library is free software; you can redistribute it and/or
modify it under the terms of the GNU Lesser General Public
License as published by the Free Software Foundation; either
version 2.1 of the ... | arm64 | gas-like | handwritten | bminor/glibc | sysdeps/alpha/alphaev67/rawmemchr.S | LGPL-2.1 | 6d7e8eda9b85b08f207a6dc6f187e94e4817270f | github | libc | https://github.com/bminor/glibc/blob/6d7e8eda9b85b08f207a6dc6f187e94e4817270f/sysdeps/alpha/alphaev67/rawmemchr.S | 1 | 60 |
bminor/glibc:sysdeps/alpha/alphaev67/rawmemchr.S:1 | /* Copyright (C) 2000-2022 Free Software Foundation, Inc.
This file is part of the GNU C Library.
The GNU C Library is free software; you can redistribute it and/or
modify it under the terms of the GNU Lesser General Public
License as published by the Free Software Foundation; either
version 2.1 of the ... | arm64 | gas-like | handwritten | bminor/glibc | sysdeps/alpha/alphaev67/rawmemchr.S | LGPL-2.1 | 581c785bf31bc74430320c7856bbfa3875d025fe | github | libc | https://github.com/bminor/glibc/blob/581c785bf31bc74430320c7856bbfa3875d025fe/sysdeps/alpha/alphaev67/rawmemchr.S | 1 | 60 |
bminor/glibc:sysdeps/alpha/alphaev67/rawmemchr.S:1 | /* Copyright (C) 2000-2021 Free Software Foundation, Inc.
This file is part of the GNU C Library.
The GNU C Library is free software; you can redistribute it and/or
modify it under the terms of the GNU Lesser General Public
License as published by the Free Software Foundation; either
version 2.1 of the ... | arm64 | gas-like | handwritten | bminor/glibc | sysdeps/alpha/alphaev67/rawmemchr.S | LGPL-2.1 | 2b778ceb4010c28d70de9b8eab20e8d88eed586b | github | libc | https://github.com/bminor/glibc/blob/2b778ceb4010c28d70de9b8eab20e8d88eed586b/sysdeps/alpha/alphaev67/rawmemchr.S | 1 | 60 |
bminor/glibc:sysdeps/alpha/alphaev67/rawmemchr.S:1 | /* Copyright (C) 2000-2020 Free Software Foundation, Inc.
This file is part of the GNU C Library.
The GNU C Library is free software; you can redistribute it and/or
modify it under the terms of the GNU Lesser General Public
License as published by the Free Software Foundation; either
version 2.1 of the ... | arm64 | gas-like | handwritten | bminor/glibc | sysdeps/alpha/alphaev67/rawmemchr.S | LGPL-2.1 | d614a7539657941a9201c236b2f15afac18e1213 | github | libc | https://github.com/bminor/glibc/blob/d614a7539657941a9201c236b2f15afac18e1213/sysdeps/alpha/alphaev67/rawmemchr.S | 1 | 60 |
bminor/glibc:sysdeps/alpha/alphaev67/rawmemchr.S:1 | /* Copyright (C) 2000-2019 Free Software Foundation, Inc.
This file is part of the GNU C Library.
The GNU C Library is free software; you can redistribute it and/or
modify it under the terms of the GNU Lesser General Public
License as published by the Free Software Foundation; either
version 2.1 of the ... | arm64 | gas-like | handwritten | bminor/glibc | sysdeps/alpha/alphaev67/rawmemchr.S | LGPL-2.1 | 5a82c74822d3272df2f5929133680478c0cfb4bd | github | libc | https://github.com/bminor/glibc/blob/5a82c74822d3272df2f5929133680478c0cfb4bd/sysdeps/alpha/alphaev67/rawmemchr.S | 1 | 60 |
bminor/glibc:sysdeps/alpha/alphaev67/rawmemchr.S:1 | /* Copyright (C) 2000-2019 Free Software Foundation, Inc.
This file is part of the GNU C Library.
The GNU C Library is free software; you can redistribute it and/or
modify it under the terms of the GNU Lesser General Public
License as published by the Free Software Foundation; either
version 2.1 of the ... | arm64 | gas-like | handwritten | bminor/glibc | sysdeps/alpha/alphaev67/rawmemchr.S | LGPL-2.1 | 04277e02d7f54d3582bebcf8386b317018cd5e1d | github | libc | https://github.com/bminor/glibc/blob/04277e02d7f54d3582bebcf8386b317018cd5e1d/sysdeps/alpha/alphaev67/rawmemchr.S | 1 | 60 |
bminor/glibc:sysdeps/alpha/alphaev67/rawmemchr.S:1 | /* Copyright (C) 2000-2018 Free Software Foundation, Inc.
This file is part of the GNU C Library.
The GNU C Library is free software; you can redistribute it and/or
modify it under the terms of the GNU Lesser General Public
License as published by the Free Software Foundation; either
version 2.1 of the ... | arm64 | gas-like | handwritten | bminor/glibc | sysdeps/alpha/alphaev67/rawmemchr.S | LGPL-2.1 | 688903eb3ef01301d239ab753d309d45720610a7 | github | libc | https://github.com/bminor/glibc/blob/688903eb3ef01301d239ab753d309d45720610a7/sysdeps/alpha/alphaev67/rawmemchr.S | 1 | 60 |
bminor/glibc:sysdeps/alpha/alphaev67/rawmemchr.S:1 | /* Copyright (C) 2000-2017 Free Software Foundation, Inc.
This file is part of the GNU C Library.
The GNU C Library is free software; you can redistribute it and/or
modify it under the terms of the GNU Lesser General Public
License as published by the Free Software Foundation; either
version 2.1 of the ... | arm64 | gas-like | handwritten | bminor/glibc | sysdeps/alpha/alphaev67/rawmemchr.S | LGPL-2.1 | bfff8b1becd7d01c074177df7196ab327cd8c844 | github | libc | https://github.com/bminor/glibc/blob/bfff8b1becd7d01c074177df7196ab327cd8c844/sysdeps/alpha/alphaev67/rawmemchr.S | 1 | 60 |
bminor/glibc:sysdeps/alpha/alphaev67/rawmemchr.S:1 | /* Copyright (C) 2000-2016 Free Software Foundation, Inc.
This file is part of the GNU C Library.
The GNU C Library is free software; you can redistribute it and/or
modify it under the terms of the GNU Lesser General Public
License as published by the Free Software Foundation; either
version 2.1 of the ... | arm64 | gas-like | handwritten | bminor/glibc | sysdeps/alpha/alphaev67/rawmemchr.S | LGPL-2.1 | f7a9f785e547bd599dee496fd906a28bcb4ec7fe | github | libc | https://github.com/bminor/glibc/blob/f7a9f785e547bd599dee496fd906a28bcb4ec7fe/sysdeps/alpha/alphaev67/rawmemchr.S | 1 | 60 |
bminor/glibc:sysdeps/alpha/alphaev67/rawmemchr.S:1 | /* Copyright (C) 2000-2015 Free Software Foundation, Inc.
This file is part of the GNU C Library.
The GNU C Library is free software; you can redistribute it and/or
modify it under the terms of the GNU Lesser General Public
License as published by the Free Software Foundation; either
version 2.1 of the ... | arm64 | gas-like | handwritten | bminor/glibc | sysdeps/alpha/alphaev67/rawmemchr.S | LGPL-2.1 | 890b7a4b33d482b5c768ab47d70758b80227e9bc | github | libc | https://github.com/bminor/glibc/blob/890b7a4b33d482b5c768ab47d70758b80227e9bc/sysdeps/alpha/alphaev67/rawmemchr.S | 1 | 60 |
bminor/glibc:sysdeps/alpha/alphaev67/stpcpy.S:1 | /* Copyright (C) 2000-2026 Free Software Foundation, Inc.
This file is part of the GNU C Library.
The GNU C Library is free software; you can redistribute it and/or
modify it under the terms of the GNU Lesser General Public
License as published by the Free Software Foundation; either
version 2.1 of the ... | arm64 | gas-like | handwritten | bminor/glibc | sysdeps/alpha/alphaev67/stpcpy.S | LGPL-2.1 | 04e750e75b73957cf1c791535a3f4319534a52fc | github | libc | https://github.com/bminor/glibc/blob/04e750e75b73957cf1c791535a3f4319534a52fc/sysdeps/alpha/alphaev67/stpcpy.S | 1 | 52 |
bminor/glibc:sysdeps/alpha/alphaev67/stpcpy.S:1 | /* Copyright (C) 2000-2025 Free Software Foundation, Inc.
This file is part of the GNU C Library.
The GNU C Library is free software; you can redistribute it and/or
modify it under the terms of the GNU Lesser General Public
License as published by the Free Software Foundation; either
version 2.1 of the ... | arm64 | gas-like | handwritten | bminor/glibc | sysdeps/alpha/alphaev67/stpcpy.S | LGPL-2.1 | 2642002380aafb71a1d3b569b6d7ebeab3284816 | github | libc | https://github.com/bminor/glibc/blob/2642002380aafb71a1d3b569b6d7ebeab3284816/sysdeps/alpha/alphaev67/stpcpy.S | 1 | 52 |
bminor/glibc:sysdeps/alpha/alphaev67/stpcpy.S:1 | /* Copyright (C) 2000-2024 Free Software Foundation, Inc.
This file is part of the GNU C Library.
The GNU C Library is free software; you can redistribute it and/or
modify it under the terms of the GNU Lesser General Public
License as published by the Free Software Foundation; either
version 2.1 of the ... | arm64 | gas-like | handwritten | bminor/glibc | sysdeps/alpha/alphaev67/stpcpy.S | LGPL-2.1 | dff8da6b3e89b986bb7f6b1ec18cf65d5972e307 | github | libc | https://github.com/bminor/glibc/blob/dff8da6b3e89b986bb7f6b1ec18cf65d5972e307/sysdeps/alpha/alphaev67/stpcpy.S | 1 | 52 |
bminor/glibc:sysdeps/alpha/alphaev67/stpcpy.S:1 | /* Copyright (C) 2000-2023 Free Software Foundation, Inc.
This file is part of the GNU C Library.
The GNU C Library is free software; you can redistribute it and/or
modify it under the terms of the GNU Lesser General Public
License as published by the Free Software Foundation; either
version 2.1 of the ... | arm64 | gas-like | handwritten | bminor/glibc | sysdeps/alpha/alphaev67/stpcpy.S | LGPL-2.1 | 6d7e8eda9b85b08f207a6dc6f187e94e4817270f | github | libc | https://github.com/bminor/glibc/blob/6d7e8eda9b85b08f207a6dc6f187e94e4817270f/sysdeps/alpha/alphaev67/stpcpy.S | 1 | 52 |
bminor/glibc:sysdeps/alpha/alphaev67/stpcpy.S:1 | /* Copyright (C) 2000-2022 Free Software Foundation, Inc.
This file is part of the GNU C Library.
The GNU C Library is free software; you can redistribute it and/or
modify it under the terms of the GNU Lesser General Public
License as published by the Free Software Foundation; either
version 2.1 of the ... | arm64 | gas-like | handwritten | bminor/glibc | sysdeps/alpha/alphaev67/stpcpy.S | LGPL-2.1 | 581c785bf31bc74430320c7856bbfa3875d025fe | github | libc | https://github.com/bminor/glibc/blob/581c785bf31bc74430320c7856bbfa3875d025fe/sysdeps/alpha/alphaev67/stpcpy.S | 1 | 52 |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.