mirror of
https://github.com/jart/cosmopolitan.git
synced 2025-07-22 18:40:29 +00:00
Auto-generate some documentation
This commit is contained in:
parent
117d0111ab
commit
13437dd19b
97 changed files with 2033 additions and 661 deletions
|
@ -38,8 +38,8 @@
|
|||
/ @asyncsignalsafe
|
||||
ffs: .leafprologue
|
||||
.profilable
|
||||
bsf %edi,%eax
|
||||
or $-1,%edx
|
||||
bsf %edi,%eax
|
||||
cmovz %edx,%eax
|
||||
inc %eax
|
||||
.leafepilogue
|
||||
|
|
|
@ -3,9 +3,29 @@
|
|||
#if !(__ASSEMBLER__ + __LINKER__ + 0)
|
||||
COSMOPOLITAN_C_START_
|
||||
|
||||
/*
|
||||
* BIT SCANNING 101
|
||||
* ctz(𝑥) 31^clz(𝑥) clz(𝑥)
|
||||
* uint32 𝑥 bsf(𝑥) tzcnt(𝑥) ffs(𝑥) bsr(𝑥) lzcnt(𝑥)
|
||||
* 0x00000000 wut 32 0 wut 32
|
||||
* 0x00000001 0 0 1 0 31
|
||||
* 0x80000001 0 0 1 31 0
|
||||
* 0x80000000 31 31 32 31 0
|
||||
* 0x00000010 4 4 5 4 27
|
||||
* 0x08000010 4 4 5 27 4
|
||||
* 0x08000000 27 27 28 27 4
|
||||
* 0xffffffff 0 0 1 31 0
|
||||
*/
|
||||
|
||||
int ffs(int) pureconst;
|
||||
int ffsl(long int) pureconst;
|
||||
int ffsll(long long int) pureconst;
|
||||
int ffsl(long) pureconst;
|
||||
int ffsll(long long) pureconst;
|
||||
|
||||
#ifdef __GNUC__
|
||||
#define ffs(u) __builtin_ffs(u)
|
||||
#define ffsl(u) __builtin_ffsl(u)
|
||||
#define ffsll(u) __builtin_ffsll(u)
|
||||
#endif
|
||||
|
||||
COSMOPOLITAN_C_END_
|
||||
#endif /* !(__ASSEMBLER__ + __LINKER__ + 0) */
|
||||
|
|
|
@ -38,8 +38,8 @@
|
|||
/ @asyncsignalsafe
|
||||
ffsl: .leafprologue
|
||||
.profilable
|
||||
bsf %rdi,%rax
|
||||
or $-1,%edx
|
||||
bsf %rdi,%rax
|
||||
cmovz %edx,%eax
|
||||
inc %eax
|
||||
.leafepilogue
|
||||
|
|
|
@ -29,13 +29,6 @@
|
|||
#if !(__ASSEMBLER__ + __LINKER__ + 0)
|
||||
COSMOPOLITAN_C_START_
|
||||
|
||||
/**
|
||||
* Globally precomputed x86 CPUID values.
|
||||
*
|
||||
* @note Referencing Is Initialization (RII)
|
||||
* @note Protected with PIRO
|
||||
* @see X86_HAVE()
|
||||
*/
|
||||
extern const unsigned kCpuids[KCPUIDS_LEN][4];
|
||||
|
||||
COSMOPOLITAN_C_END_
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue