source stringlengths 2 165 | c stringlengths 5 7.72M | risc_o0 stringlengths 125 23.7M | risc_o1 stringlengths 125 23.7M | risc_o2 stringlengths 0 23.7M | risc_o3 stringlengths 0 23.7M | arm_o0 stringlengths 127 23.7M | arm_o1 stringlengths 127 23.7M | arm_o2 stringlengths 0 23.7M | arm_o3 stringlengths 0 23.7M |
|---|---|---|---|---|---|---|---|---|---|
hello.c | /****************************************************************
Copyright (C) 2015 Sean Guo. All rights reserved.
> File Name: < hello.c >
> Author: < Sean Guo >
> Mail: < iseanxp+code@gmail.com >
> Created Time: < 2015/11/07 >
> Last... | .file "hello.c"
.option pic
.text
.section .rodata
.align 3
.LC0:
.string "hello arm!"
.text
.align 1
.globl main
.type main, @function
main:
addi sp,sp,-16
sd ra,8(sp)
sd s0,0(sp)
addi s0,sp,16
lla a0,.LC0
call puts@plt
li a5,0
mv a0,a5
ld ra,8(sp)
ld s0,0(sp)
addi sp,sp,16
jr ra
.size main, .-m... | .file "hello.c"
.option pic
.text
.section .rodata.str1.8,"aMS",@progbits,1
.align 3
.LC0:
.string "hello arm!"
.text
.align 1
.globl main
.type main, @function
main:
addi sp,sp,-16
sd ra,8(sp)
lla a0,.LC0
call puts@plt
li a0,0
ld ra,8(sp)
addi sp,sp,16
jr ra
.size main, .-main
.ident "GCC: (Ubuntu ... | .file "hello.c"
.option pic
.text
.section .rodata.str1.8,"aMS",@progbits,1
.align 3
.LC0:
.string "hello arm!"
.section .text.startup,"ax",@progbits
.align 1
.globl main
.type main, @function
main:
addi sp,sp,-16
lla a0,.LC0
sd ra,8(sp)
call puts@plt
ld ra,8(sp)
li a0,0
addi sp,sp,16
jr ra
.size mai... | .file "hello.c"
.option pic
.text
.section .rodata.str1.8,"aMS",@progbits,1
.align 3
.LC0:
.string "hello arm!"
.section .text.startup,"ax",@progbits
.align 1
.globl main
.type main, @function
main:
addi sp,sp,-16
lla a0,.LC0
sd ra,8(sp)
call puts@plt
ld ra,8(sp)
li a0,0
addi sp,sp,16
jr ra
.size mai... | .arch armv8-a
.file "hello.c"
.text
.section .rodata
.align 3
.LC0:
.string "hello arm!"
.text
.align 2
.global main
.type main, %function
main:
.LFB0:
.cfi_startproc
stp x29, x30, [sp, -16]!
.cfi_def_cfa_offset 16
.cfi_offset 29, -16
.cfi_offset 30, -8
mov x29, sp
adrp x0, .LC0
add x0, x0, :lo12:.LC0... | .arch armv8-a
.file "hello.c"
.text
.section .rodata.str1.8,"aMS",@progbits,1
.align 3
.LC0:
.string "hello arm!"
.text
.align 2
.global main
.type main, %function
main:
.LFB23:
.cfi_startproc
stp x29, x30, [sp, -16]!
.cfi_def_cfa_offset 16
.cfi_offset 29, -16
.cfi_offset 30, -8
mov x29, sp
adrp x0, .L... | .arch armv8-a
.file "hello.c"
.text
.section .rodata.str1.8,"aMS",@progbits,1
.align 3
.LC0:
.string "hello arm!"
.section .text.startup,"ax",@progbits
.align 2
.p2align 4,,11
.global main
.type main, %function
main:
.LFB23:
.cfi_startproc
stp x29, x30, [sp, -16]!
.cfi_def_cfa_offset 16
.cfi_offset 29, -... | .arch armv8-a
.file "hello.c"
.text
.section .rodata.str1.8,"aMS",@progbits,1
.align 3
.LC0:
.string "hello arm!"
.section .text.startup,"ax",@progbits
.align 2
.p2align 4,,11
.global main
.type main, %function
main:
.LFB23:
.cfi_startproc
stp x29, x30, [sp, -16]!
.cfi_def_cfa_offset 16
.cfi_offset 29, -... |
posix-sched.c | /**
* A simple pthread program illustrating POSIX scheduling.
*
* Figure 5.10
*
* To compile:
*
* gcc posix-sched.c -o posix-sched -lpthread
*
* @author Gagne, Galvin, Silberschatz
* Operating System Concepts - Tenth Edition
* Copyright John Wiley & Sons - 2018.
*/
#include <pthread.h>
#include <stdio.h>
... | .file "posix-sched.c"
.option pic
.text
.section .rodata
.align 3
.LC0:
.string "Unable to get scheduling scope.\n"
.align 3
.LC1:
.string "PTHREAD_SCOPE_PROCESS"
.align 3
.LC2:
.string "PTHREAD_SCOPE_SYSTEM"
.align 3
.LC3:
.string "Illegal scope value.\n"
.align 3
.LC4:
.string "unable to set scheduling ... | .file "posix-sched.c"
.option pic
.text
.align 1
.globl runner
.type runner, @function
runner:
addi sp,sp,-16
sd ra,8(sp)
li a0,0
call pthread_exit@plt
.size runner, .-runner
.section .rodata.str1.8,"aMS",@progbits,1
.align 3
.LC0:
.string "Unable to get scheduling scope.\n"
.align 3
.LC1:
.string "PTHR... | .file "posix-sched.c"
.option pic
.text
.align 1
.globl runner
.type runner, @function
runner:
addi sp,sp,-16
li a0,0
sd ra,8(sp)
call pthread_exit@plt
.size runner, .-runner
.section .rodata.str1.8,"aMS",@progbits,1
.align 3
.LC0:
.string "Unable to get scheduling scope.\n"
.align 3
.LC1:
.string "PTHR... | .file "posix-sched.c"
.option pic
.text
.align 1
.globl runner
.type runner, @function
runner:
addi sp,sp,-16
li a0,0
sd ra,8(sp)
call pthread_exit@plt
.size runner, .-runner
.section .rodata.str1.8,"aMS",@progbits,1
.align 3
.LC0:
.string "Unable to get scheduling scope.\n"
.align 3
.LC1:
.string "PTHR... | .arch armv8-a
.file "posix-sched.c"
.text
.section .rodata
.align 3
.LC0:
.string "Unable to get scheduling scope.\n"
.align 3
.LC1:
.string "PTHREAD_SCOPE_PROCESS"
.align 3
.LC2:
.string "PTHREAD_SCOPE_SYSTEM"
.align 3
.LC3:
.string "Illegal scope value.\n"
.align 3
.LC4:
.string "unable to set schedulin... | .arch armv8-a
.file "posix-sched.c"
.text
.align 2
.global runner
.type runner, %function
runner:
.LFB25:
.cfi_startproc
stp x29, x30, [sp, -16]!
.cfi_def_cfa_offset 16
.cfi_offset 29, -16
.cfi_offset 30, -8
mov x29, sp
mov x0, 0
bl pthread_exit
.cfi_endproc
.LFE25:
.size runner, .-runner
.section .rod... | .arch armv8-a
.file "posix-sched.c"
.text
.align 2
.p2align 4,,11
.global runner
.type runner, %function
runner:
.LFB25:
.cfi_startproc
stp x29, x30, [sp, -16]!
.cfi_def_cfa_offset 16
.cfi_offset 29, -16
.cfi_offset 30, -8
mov x0, 0
mov x29, sp
bl pthread_exit
.cfi_endproc
.LFE25:
.size runner, .-runne... | .arch armv8-a
.file "posix-sched.c"
.text
.align 2
.p2align 4,,11
.global runner
.type runner, %function
runner:
.LFB25:
.cfi_startproc
stp x29, x30, [sp, -16]!
.cfi_def_cfa_offset 16
.cfi_offset 29, -16
.cfi_offset 30, -8
mov x0, 0
mov x29, sp
bl pthread_exit
.cfi_endproc
.LFE25:
.size runner, .-runne... |
posix-sched.c | /**
* A simple pthread program illustrating POSIX scheduling.
*
* Figure 5.10
*
* To compile:
*
* gcc posix-sched.c -o posix-sched -lpthread
*
* @author Gagne, Galvin, Silberschatz
* Operating System Concepts - Tenth Edition
* Copyright John Wiley & Sons - 2018.
*/
#include <pthread.h>
#include <stdio.h>
... | .file "posix-sched.c"
.option pic
.text
.section .rodata
.align 3
.LC0:
.string "Unable to get scheduling scope.\n"
.align 3
.LC1:
.string "PTHREAD_SCOPE_PROCESS"
.align 3
.LC2:
.string "PTHREAD_SCOPE_SYSTEM"
.align 3
.LC3:
.string "Illegal scope value.\n"
.align 3
.LC4:
.string "unable to set scheduling ... | .file "posix-sched.c"
.option pic
.text
.align 1
.globl runner
.type runner, @function
runner:
addi sp,sp,-16
sd ra,8(sp)
li a0,0
call pthread_exit@plt
.size runner, .-runner
.section .rodata.str1.8,"aMS",@progbits,1
.align 3
.LC0:
.string "Unable to get scheduling scope.\n"
.align 3
.LC1:
.string "PTHR... | .file "posix-sched.c"
.option pic
.text
.align 1
.globl runner
.type runner, @function
runner:
addi sp,sp,-16
li a0,0
sd ra,8(sp)
call pthread_exit@plt
.size runner, .-runner
.section .rodata.str1.8,"aMS",@progbits,1
.align 3
.LC0:
.string "Unable to get scheduling scope.\n"
.align 3
.LC1:
.string "PTHR... | .file "posix-sched.c"
.option pic
.text
.align 1
.globl runner
.type runner, @function
runner:
addi sp,sp,-16
li a0,0
sd ra,8(sp)
call pthread_exit@plt
.size runner, .-runner
.section .rodata.str1.8,"aMS",@progbits,1
.align 3
.LC0:
.string "Unable to get scheduling scope.\n"
.align 3
.LC1:
.string "PTHR... | .arch armv8-a
.file "posix-sched.c"
.text
.section .rodata
.align 3
.LC0:
.string "Unable to get scheduling scope.\n"
.align 3
.LC1:
.string "PTHREAD_SCOPE_PROCESS"
.align 3
.LC2:
.string "PTHREAD_SCOPE_SYSTEM"
.align 3
.LC3:
.string "Illegal scope value.\n"
.align 3
.LC4:
.string "unable to set schedulin... | .arch armv8-a
.file "posix-sched.c"
.text
.align 2
.global runner
.type runner, %function
runner:
.LFB25:
.cfi_startproc
stp x29, x30, [sp, -16]!
.cfi_def_cfa_offset 16
.cfi_offset 29, -16
.cfi_offset 30, -8
mov x29, sp
mov x0, 0
bl pthread_exit
.cfi_endproc
.LFE25:
.size runner, .-runner
.section .rod... | .arch armv8-a
.file "posix-sched.c"
.text
.align 2
.p2align 4,,11
.global runner
.type runner, %function
runner:
.LFB25:
.cfi_startproc
stp x29, x30, [sp, -16]!
.cfi_def_cfa_offset 16
.cfi_offset 29, -16
.cfi_offset 30, -8
mov x0, 0
mov x29, sp
bl pthread_exit
.cfi_endproc
.LFE25:
.size runner, .-runne... | .arch armv8-a
.file "posix-sched.c"
.text
.align 2
.p2align 4,,11
.global runner
.type runner, %function
runner:
.LFB25:
.cfi_startproc
stp x29, x30, [sp, -16]!
.cfi_def_cfa_offset 16
.cfi_offset 29, -16
.cfi_offset 30, -8
mov x0, 0
mov x29, sp
bl pthread_exit
.cfi_endproc
.LFE25:
.size runner, .-runne... |
ibm2ieee_py.c | #include <sys/types.h>
#include <sys/ioctl.h>
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <math.h>
#include <fcntl.h>
#include <sys/file.h>
#include <sys/stat.h>
/*********************************************************************/
/* ibm2ieee(in_ibm,out_ieee) ... | .file "ibm2ieee_py.c"
.option pic
.text
.align 1
.globl ibm2ieee
.type ibm2ieee, @function
ibm2ieee:
addi sp,sp,-80
sd ra,72(sp)
sd s0,64(sp)
addi s0,sp,80
sd a0,-72(s0)
sd a1,-80(s0)
la a5,__stack_chk_guard
ld a4, 0(a5)
sd a4, -24(s0)
li a4, 0
li a5,8388608
sw a5,-44(s0)
sw zero,-56(s0)
ld a5,-72(s... | .file "ibm2ieee_py.c"
.option pic
.text
.align 1
.globl ibm2ieee
.type ibm2ieee, @function
ibm2ieee:
lw a2,0(a0)
sext.w a5,a2
beq a2,zero,.L2
andi a2,a5,1
srli a3,a5,1
andi a3,a3,127
addiw a3,a3,-64
slliw a3,a3,2
srliw a4,a5,8
blt a5,zero,.L3
li a0,16777216
addi a0,a0,-1
li a6,8388608
.L4:
slliw a4,... | .file "ibm2ieee_py.c"
.option pic
.text
.align 1
.globl ibm2ieee
.type ibm2ieee, @function
ibm2ieee:
lw a5,0(a0)
sext.w a4,a5
beq a5,zero,.L2
li a2,16777216
srli a5,a5,8
addi a2,a2,-1
and a5,a5,a2
srli a3,a4,1
sext.w a5,a5
andi a3,a3,127
srli a0,a5,23
addiw a3,a3,-64
andi a0,a0,1
andi a6,a4,1
slliw... | .file "ibm2ieee_py.c"
.option pic
.text
.align 1
.globl ibm2ieee
.type ibm2ieee, @function
ibm2ieee:
lw a5,0(a0)
sext.w a4,a5
beq a5,zero,.L2
li a2,16777216
srli a5,a5,8
addi a2,a2,-1
and a5,a5,a2
srli a3,a4,1
sext.w a5,a5
andi a3,a3,127
srli a0,a5,23
addiw a3,a3,-64
andi a0,a0,1
andi a6,a4,1
slliw... | .arch armv8-a
.file "ibm2ieee_py.c"
.text
.align 2
.global ibm2ieee
.type ibm2ieee, %function
ibm2ieee:
.LFB6:
.cfi_startproc
stp x29, x30, [sp, -80]!
.cfi_def_cfa_offset 80
.cfi_offset 29, -80
.cfi_offset 30, -72
mov x29, sp
str x0, [sp, 24]
str x1, [sp, 16]
adrp x0, :got:__stack_chk_guard
ldr x0, [x0,... | .arch armv8-a
.file "ibm2ieee_py.c"
.text
.align 2
.global ibm2ieee
.type ibm2ieee, %function
ibm2ieee:
.LFB53:
.cfi_startproc
mov w4, 0
ldr w0, [x0]
cbz w0, .L2
bfi w4, w0, 0, 1
ubfx x2, x0, 1, 7
sub w2, w2, #64
lsl w2, w2, 2
lsr w3, w0, 8
tbnz x0, 31, .L3
.L4:
lsl w0, w3, 1
and w3, w0, 16777215
sub... | .arch armv8-a
.file "ibm2ieee_py.c"
.text
.align 2
.p2align 4,,11
.global ibm2ieee
.type ibm2ieee, %function
ibm2ieee:
.LFB53:
.cfi_startproc
ldr w2, [x0]
mov w4, 0
cbz w2, .L2
ubfx x0, x2, 1, 7
bfi w4, w2, 0, 1
sub w0, w0, #64
lsr w3, w2, 8
lsl w0, w0, 2
tbnz x2, 31, .L3
.p2align 3,,7
.L4:
lsl w2, w... | .arch armv8-a
.file "ibm2ieee_py.c"
.text
.align 2
.p2align 4,,11
.global ibm2ieee
.type ibm2ieee, %function
ibm2ieee:
.LFB53:
.cfi_startproc
ldr w2, [x0]
mov w4, 0
cbz w2, .L2
ubfx x0, x2, 1, 7
bfi w4, w2, 0, 1
sub w0, w0, #64
lsr w3, w2, 8
lsl w0, w0, 2
tbnz x2, 31, .L3
.p2align 3,,7
.L4:
lsl w2, w... |
26300586_ua_16_212ms_9660k_noO2.c | #include <stdio.h>
#include <ctype.h>
struct Node {
int h, dis, vis;
} nodes[1000001];
struct Edge {
int to, nex, w;
} edges[4000001];
struct Heap {
int dis, num;
} heap[1000001];
int n, m, s, cnt, cnth;
struct Heap top() {
return heap[1];
}
void shiftdown(int x) {
if(x << 1 > cnth) return ;
... | .file "26300586_ua_16_212ms_9660k_noO2.c"
.option pic
.text
.globl nodes
.bss
.align 3
.type nodes, @object
.size nodes, 12000012
nodes:
.zero 12000012
.globl edges
.align 3
.type edges, @object
.size edges, 48000012
edges:
.zero 48000012
.globl heap
.align 3
.type heap, @object
.size heap, 8000008
he... | .file "26300586_ua_16_212ms_9660k_noO2.c"
.option pic
.text
.align 1
.globl top
.type top, @function
top:
addi sp,sp,-16
ld a5,heap+8
srli a0,a5,32
slli a0,a0,32
slli a5,a5,32
srli a5,a5,32
or a0,a5,a0
addi sp,sp,16
jr ra
.size top, .-top
.align 1
.globl shiftdown
.type shiftdown, @function
shiftdown... | .file "26300586_ua_16_212ms_9660k_noO2.c"
.option pic
.text
.align 1
.globl top
.type top, @function
top:
addi sp,sp,-16
ld a0,heap+8
addi sp,sp,16
jr ra
.size top, .-top
.align 1
.globl shiftdown
.type shiftdown, @function
shiftdown:
slliw a3,a0,1
lw t3,.LANCHOR0
lla a5,heap
bgt a3,t3,.L4
.L5:
slli ... | .file "26300586_ua_16_212ms_9660k_noO2.c"
.option pic
.text
.align 1
.globl top
.type top, @function
top:
addi sp,sp,-16
ld a0,heap+8
addi sp,sp,16
jr ra
.size top, .-top
.align 1
.globl shiftdown
.type shiftdown, @function
shiftdown:
slliw a3,a0,1
lw t6,.LANCHOR0
bgt a3,t6,.L4
li t3,-1
lla a2,heap
... | .arch armv8-a
.file "26300586_ua_16_212ms_9660k_noO2.c"
.text
.global nodes
.bss
.align 3
.type nodes, %object
.size nodes, 12000012
nodes:
.zero 12000012
.global edges
.align 3
.type edges, %object
.size edges, 48000012
edges:
.zero 48000012
.global heap
.align 3
.type heap, %object
.size heap, 80000... | .arch armv8-a
.file "26300586_ua_16_212ms_9660k_noO2.c"
.text
.align 2
.global top
.type top, %function
top:
.LFB25:
.cfi_startproc
adrp x0, heap+8
ldr x0, [x0, #:lo12:heap+8]
ret
.cfi_endproc
.LFE25:
.size top, .-top
.align 2
.global shiftdown
.type shiftdown, %function
shiftdown:
.LFB26:
.cfi_startpro... | .arch armv8-a
.file "26300586_ua_16_212ms_9660k_noO2.c"
.text
.align 2
.p2align 4,,11
.global top
.type top, %function
top:
.LFB25:
.cfi_startproc
adrp x0, heap+8
ldr x0, [x0, #:lo12:heap+8]
ret
.cfi_endproc
.LFE25:
.size top, .-top
.align 2
.p2align 4,,11
.global shiftdown
.type shiftdown, %function
s... | .arch armv8-a
.file "26300586_ua_16_212ms_9660k_noO2.c"
.text
.align 2
.p2align 4,,11
.global top
.type top, %function
top:
.LFB25:
.cfi_startproc
adrp x0, heap+8
ldr x0, [x0, #:lo12:heap+8]
ret
.cfi_endproc
.LFE25:
.size top, .-top
.align 2
.p2align 4,,11
.global shiftdown
.type shiftdown, %function
s... |
Homework5-2.c | "#include <stdio.h>\n#include <math.h>\n\n#define len 3\n\nstruct list\n{\n\tint id;\n\tdouble x;\n\(...TRUNCATED) | "\t.file\t\"Homework5-2.c\"\n\t.option pic\n\t.text\n\t.section\t.rodata\n\t.align\t3\n.LC0:\n\t.str(...TRUNCATED) | "\t.file\t\"Homework5-2.c\"\n\t.option pic\n\t.text\n\t.section\t.rodata.str1.8,\"aMS\",@progbits,1\(...TRUNCATED) | "\t.file\t\"Homework5-2.c\"\n\t.option pic\n\t.text\n\t.section\t.rodata.str1.8,\"aMS\",@progbits,1\(...TRUNCATED) | "\t.file\t\"Homework5-2.c\"\n\t.option pic\n\t.text\n\t.section\t.rodata.str1.8,\"aMS\",@progbits,1\(...TRUNCATED) | "\t.arch armv8-a\n\t.file\t\"Homework5-2.c\"\n\t.text\n\t.section\t.rodata\n\t.align\t3\n.LC0:\n\t.s(...TRUNCATED) | "\t.arch armv8-a\n\t.file\t\"Homework5-2.c\"\n\t.text\n\t.section\t.rodata.str1.8,\"aMS\",@progbits,(...TRUNCATED) | "\t.arch armv8-a\n\t.file\t\"Homework5-2.c\"\n\t.text\n\t.section\t.rodata.str1.8,\"aMS\",@progbits,(...TRUNCATED) | "\t.arch armv8-a\n\t.file\t\"Homework5-2.c\"\n\t.text\n\t.section\t.rodata.str1.8,\"aMS\",@progbits,(...TRUNCATED) |
Homework5-2.c | "#include <stdio.h>\n#include <math.h>\n\n#define len 2\n\nstruct list\n{\n\tint id;\n\tdouble x;\n\(...TRUNCATED) | "\t.file\t\"Homework5-2.c\"\n\t.option pic\n\t.text\n\t.section\t.rodata\n\t.align\t3\n.LC0:\n\t.str(...TRUNCATED) | "\t.file\t\"Homework5-2.c\"\n\t.option pic\n\t.text\n\t.section\t.rodata.str1.8,\"aMS\",@progbits,1\(...TRUNCATED) | "\t.file\t\"Homework5-2.c\"\n\t.option pic\n\t.text\n\t.section\t.rodata.str1.8,\"aMS\",@progbits,1\(...TRUNCATED) | "\t.file\t\"Homework5-2.c\"\n\t.option pic\n\t.text\n\t.section\t.rodata.str1.8,\"aMS\",@progbits,1\(...TRUNCATED) | "\t.arch armv8-a\n\t.file\t\"Homework5-2.c\"\n\t.text\n\t.section\t.rodata\n\t.align\t3\n.LC0:\n\t.s(...TRUNCATED) | "\t.arch armv8-a\n\t.file\t\"Homework5-2.c\"\n\t.text\n\t.section\t.rodata.str1.8,\"aMS\",@progbits,(...TRUNCATED) | "\t.arch armv8-a\n\t.file\t\"Homework5-2.c\"\n\t.text\n\t.section\t.rodata.str1.8,\"aMS\",@progbits,(...TRUNCATED) | "\t.arch armv8-a\n\t.file\t\"Homework5-2.c\"\n\t.text\n\t.section\t.rodata.str1.8,\"aMS\",@progbits,(...TRUNCATED) |
50_standard_password_true-unreach-call_ground.c | "extern void __VERIFIER_error() __attribute__ ((__noreturn__));\nvoid __VERIFIER_assert(int cond) { (...TRUNCATED) | "\t.file\t\"50_standard_password_true-unreach-call_ground.c\"\n\t.option pic\n\t.text\n\t.align\t1\n(...TRUNCATED) | "\t.file\t\"50_standard_password_true-unreach-call_ground.c\"\n\t.option pic\n\t.text\n\t.align\t1\n(...TRUNCATED) | "\t.file\t\"50_standard_password_true-unreach-call_ground.c\"\n\t.option pic\n\t.text\n\t.align\t1\n(...TRUNCATED) | "\t.file\t\"50_standard_password_true-unreach-call_ground.c\"\n\t.option pic\n\t.text\n\t.align\t1\n(...TRUNCATED) | "\t.arch armv8-a\n\t.file\t\"50_standard_password_true-unreach-call_ground.c\"\n\t.text\n\t.align\t2(...TRUNCATED) | "\t.arch armv8-a\n\t.file\t\"50_standard_password_true-unreach-call_ground.c\"\n\t.text\n\t.align\t2(...TRUNCATED) | "\t.arch armv8-a\n\t.file\t\"50_standard_password_true-unreach-call_ground.c\"\n\t.text\n\t.align\t2(...TRUNCATED) | "\t.arch armv8-a\n\t.file\t\"50_standard_password_true-unreach-call_ground.c\"\n\t.text\n\t.align\t2(...TRUNCATED) |
50_standard_password_true-unreach-call_ground.c | "extern void __VERIFIER_error() __attribute__ ((__noreturn__));\nvoid __VERIFIER_assert(int cond) { (...TRUNCATED) | "\t.file\t\"50_standard_password_true-unreach-call_ground.c\"\n\t.option pic\n\t.text\n\t.align\t1\n(...TRUNCATED) | "\t.file\t\"50_standard_password_true-unreach-call_ground.c\"\n\t.option pic\n\t.text\n\t.align\t1\n(...TRUNCATED) | "\t.file\t\"50_standard_password_true-unreach-call_ground.c\"\n\t.option pic\n\t.text\n\t.align\t1\n(...TRUNCATED) | "\t.file\t\"50_standard_password_true-unreach-call_ground.c\"\n\t.option pic\n\t.text\n\t.align\t1\n(...TRUNCATED) | "\t.arch armv8-a\n\t.file\t\"50_standard_password_true-unreach-call_ground.c\"\n\t.text\n\t.align\t2(...TRUNCATED) | "\t.arch armv8-a\n\t.file\t\"50_standard_password_true-unreach-call_ground.c\"\n\t.text\n\t.align\t2(...TRUNCATED) | "\t.arch armv8-a\n\t.file\t\"50_standard_password_true-unreach-call_ground.c\"\n\t.text\n\t.align\t2(...TRUNCATED) | "\t.arch armv8-a\n\t.file\t\"50_standard_password_true-unreach-call_ground.c\"\n\t.text\n\t.align\t2(...TRUNCATED) |
BuoyTS_vers.c | " extern const unsigned char BuoyTSVersionString[];\n extern const double BuoyTSVersionNumber;\n\n c(...TRUNCATED) | "\t.file\t\"BuoyTS_vers.c\"\n\t.option pic\n\t.text\n\t.globl\tBuoyTSVersionString\n\t.section\t.rod(...TRUNCATED) | "\t.file\t\"BuoyTS_vers.c\"\n\t.option pic\n\t.text\n\t.globl\tBuoyTSVersionNumber\n\t.globl\tBuoyTS(...TRUNCATED) | "\t.file\t\"BuoyTS_vers.c\"\n\t.option pic\n\t.text\n\t.globl\tBuoyTSVersionNumber\n\t.globl\tBuoyTS(...TRUNCATED) | "\t.file\t\"BuoyTS_vers.c\"\n\t.option pic\n\t.text\n\t.globl\tBuoyTSVersionNumber\n\t.globl\tBuoyTS(...TRUNCATED) | "\t.arch armv8-a\n\t.file\t\"BuoyTS_vers.c\"\n\t.text\n\t.global\tBuoyTSVersionString\n\t.section\t.(...TRUNCATED) | "\t.arch armv8-a\n\t.file\t\"BuoyTS_vers.c\"\n\t.text\n\t.global\tBuoyTSVersionNumber\n\t.global\tBu(...TRUNCATED) | "\t.arch armv8-a\n\t.file\t\"BuoyTS_vers.c\"\n\t.text\n\t.global\tBuoyTSVersionNumber\n\t.global\tBu(...TRUNCATED) | "\t.arch armv8-a\n\t.file\t\"BuoyTS_vers.c\"\n\t.text\n\t.global\tBuoyTSVersionNumber\n\t.global\tBu(...TRUNCATED) |
End of preview. Expand in Data Studio
- Downloads last month
- 14