2022-04-25 15:30:14 +00:00
|
|
|
/*-*- mode:unix-assembly; indent-tabs-mode:t; tab-width:8; coding:utf-8 -*-│
|
|
|
|
│vi: set et ft=asm ts=8 tw=8 fenc=utf-8 :vi│
|
|
|
|
╞══════════════════════════════════════════════════════════════════════════════╡
|
|
|
|
│ Copyright 2021 Justine Alexandra Roberts Tunney │
|
|
|
|
│ │
|
|
|
|
│ Permission to use, copy, modify, and/or distribute this software for │
|
|
|
|
│ any purpose with or without fee is hereby granted, provided that the │
|
|
|
|
│ above copyright notice and this permission notice appear in all copies. │
|
|
|
|
│ │
|
|
|
|
│ THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL │
|
|
|
|
│ WARRANTIES WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED │
|
|
|
|
│ WARRANTIES OF MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE │
|
|
|
|
│ AUTHOR BE LIABLE FOR ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL │
|
|
|
|
│ DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR │
|
|
|
|
│ PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER │
|
|
|
|
│ TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR │
|
|
|
|
│ PERFORMANCE OF THIS SOFTWARE. │
|
|
|
|
╚─────────────────────────────────────────────────────────────────────────────*/
|
|
|
|
#include "libc/fmt/magnumstrs.internal.h"
|
|
|
|
#include "libc/macros.internal.h"
|
|
|
|
|
|
|
|
.macro .e e s
|
|
|
|
.long \e - kClockNames
|
2022-09-09 15:59:59 +00:00
|
|
|
.long .L\@ - kClockNames
|
2022-04-25 15:30:14 +00:00
|
|
|
.rodata.str1.1
|
2022-09-09 15:59:59 +00:00
|
|
|
.L\@: .string "\s"
|
2022-04-25 15:30:14 +00:00
|
|
|
.previous
|
|
|
|
.endm
|
|
|
|
|
2022-09-09 15:59:59 +00:00
|
|
|
.section .rodata,"a",@progbits
|
2022-04-25 15:30:14 +00:00
|
|
|
.align 4
|
|
|
|
.underrun
|
|
|
|
kClockNames:
|
|
|
|
.e CLOCK_REALTIME,"REALTIME"
|
2022-11-08 18:09:47 +00:00
|
|
|
.e CLOCK_REALTIME_FAST,"REALTIME_FAST" # order matters
|
|
|
|
.e CLOCK_REALTIME_PRECISE,"REALTIME_PRECISE" # order matters
|
|
|
|
.e CLOCK_REALTIME_COARSE,"REALTIME_COARSE" # order matters
|
2022-04-25 15:30:14 +00:00
|
|
|
.e CLOCK_MONOTONIC,"MONOTONIC"
|
2022-11-08 18:09:47 +00:00
|
|
|
.e CLOCK_MONOTONIC_FAST,"MONOTONIC_FAST" # order matters
|
|
|
|
.e CLOCK_MONOTONIC_RAW,"MONOTONIC_RAW" # order matters
|
|
|
|
.e CLOCK_MONOTONIC_PRECISE,"MONOTONIC_PRECISE" # order matters
|
|
|
|
.e CLOCK_MONOTONIC_COARSE,"MONOTONIC_COARSE" # order matters
|
2022-04-25 15:30:14 +00:00
|
|
|
.e CLOCK_PROCESS_CPUTIME_ID,"PROCESS_CPUTIME_ID"
|
2022-09-15 04:29:50 +00:00
|
|
|
.e CLOCK_THREAD_CPUTIME_ID,"THREAD_CPUTIME_ID"
|
2022-04-25 15:30:14 +00:00
|
|
|
.e CLOCK_TAI,"TAI"
|
|
|
|
.e CLOCK_PROF,"PROF"
|
|
|
|
.e CLOCK_BOOTTIME,"BOOTTIME"
|
|
|
|
.e CLOCK_REALTIME_ALARM,"REALTIME_ALARM"
|
|
|
|
.e CLOCK_BOOTTIME_ALARM,"BOOTTIME_ALARM"
|
2022-09-15 04:29:50 +00:00
|
|
|
.e CLOCK_UPTIME,"UPTIME"
|
|
|
|
.e CLOCK_UPTIME_FAST,"UPTIME_FAST"
|
|
|
|
.e CLOCK_UPTIME_PRECISE,"UPTIME_PRECISE"
|
|
|
|
.e CLOCK_SECOND,"SECOND"
|
2022-04-25 15:30:14 +00:00
|
|
|
.long MAGNUM_TERMINATOR
|
|
|
|
.endobj kClockNames,globl,hidden
|
|
|
|
.overrun
|