max_stars_repo_path
stringlengths
4
261
max_stars_repo_name
stringlengths
6
106
max_stars_count
int64
0
38.8k
id
stringlengths
1
6
text
stringlengths
7
1.05M
src/firmware-tests/Door/InitialiseAfterDoorDummy.asm
pete-restall/Cluck2Sesame-Prototype
1
15909
#include "Platform.inc" #include "InitialisationChain.inc" radix decimal InitialiseAfterDoorDummy code global INITIALISE_AFTER_DOOR INITIALISE_AFTER_DOOR: return end
savefile/maps/0932_WorriedExplorer.asm
stranck/fools2018-1
35
176879
SECTION "Map_0932", ROM0[$B800] Map_0932_Header: hdr_tileset 0 hdr_dimensions 7, 10 hdr_pointers_a Map_0932_Blocks, Map_0932_TextPointers hdr_pointers_b Map_0932_Script, Map_0932_Objects hdr_pointers_c Map_0932_InitScript, Map_0932_RAMScript hdr_palette $06 hdr_music MUSIC_ROUTES2, AUDIO_1 hdr_connection NORTH, $0B2D, 7, 8 hdr_connection SOUTH, $0A32, 7, 1 hdr_connection WEST, $0C2C, 8, 5 hdr_connection EAST, $0824, 1, 3 Map_0932_Objects: hdr_border $0f hdr_warp_count 1 hdr_warp 3, 9, 2, 7, $096B hdr_sign_count 0 hdr_object_count 2 hdr_object SPRITE_LASS, 5, 14, STAY, NONE, $01 hdr_object SPRITE_GUARD, 8, 5, STAY, NONE, $02 Map_0932_RAMScript: rs_write_1 $c6fb, $0a rs_write_1 $c708, $0a rs_fill_byte $0a rs_fill_3 $c733 rs_fill_byte $01 rs_fill_3 $c740 rs_fill_byte $0a rs_fill_len $c74d, 6 rs_fill_byte $01 rs_fill_3 $c75d rs_fill_byte $52 rs_fill_3 $c76a rs_write_1 $c797, $01 rs_write_1 $c7a4, $01 rs_end Map_0932_Blocks: db $0f,$0f,$0f,$0a,$0f,$0f,$0f db $0f,$51,$51,$0a,$51,$51,$0f db $0f,$0a,$0a,$0a,$0a,$0a,$0a db $0f,$38,$39,$01,$01,$01,$01 db $0f,$3c,$3d,$0a,$0a,$0a,$0a db $0a,$0a,$0a,$0a,$0a,$0b,$0f db $01,$01,$01,$01,$0a,$0b,$0f db $52,$41,$0a,$01,$0a,$0b,$0f db $0f,$50,$52,$01,$52,$0b,$0f db $0f,$0f,$0f,$01,$0f,$0f,$0f Map_0932_TextPointers: dw Map_0932_TX1 dw Map_0932_TX2 Map_0932_InitScript: ret Map_0932_Script: ret Map_0932_TX1: TX_ASM jp EnhancedTextOnly text "Here lives the Worried" next "Explorer." para "Why such a name? Because" next "he's worried, and he's also" cont "an explorer!" done Map_0932_TX2: TX_ASM jp EnhancedTextOnly text "There's a rumor about a" next "giant cave system hidden" cont "somewhere in this area." para "The explorer here has" next "been searching for it for" cont "quite a while, but never" cont "found it." done
BigNum/Mod/Base/bnMulDw.asm
FloydZ/Crypto-Hash
11
13733
.686 .model flat,stdcall option casemap:none include .\bnlib.inc include .\bignum.inc .code bnMulDw proc uses edi esi ebx bn:dword,dwVal:dword mov esi,bn mov edi,dwVal bnSCreateX ebx mov eax,[esi].BN.dwSize inc eax .if eax <= BN_MAX_DWORD mov [ebx],eax call _bn_muldw_basecase mov ecx,[esi].BN.dwSize mov edi,ebx inc ecx call _bn_normalize invoke bnMov,bn,ebx .endif bnSDestroyX ret bnMulDw endp end
Assembler/AssemblyCode/JNZ1.asm
KPU-RISC/KPU
8
176189
<reponame>KPU-RISC/KPU MOV D, 00000100b MOV E, 00000001b :START SUB D, E ; Conditional Jump if the Zero-Flag from the ALU is 1 JNZ :START ; Stops the CPU execution HLT
hires2a.asm
visy/c64demo2017
0
175190
<gh_stars>0 .var part_lo = $c1 .var part_hi = $c2 .macro StabilizeRaster() { // // Register a new irq handler for the next line. // lda #<stabilizedirq sta $fffe lda #>stabilizedirq sta $ffff inc $d012 // // ACK the current IRQ // lda #$ff sta $d019 // Save the old stack pointer so we can just restore the stack as it was // before the stabilizing got in the way. tsx // Enable interrupts and call nop's until the end of the current line // should be reached cli nop nop nop nop nop nop nop nop // Add one more nop if NTSC // Here's or second irq handler stabilizedirq: // Reset the SP so it looks like the extra irq stuff never happened txs // // Wait for line to finish. // // PAL-63 // NTSC-64 // NTSC-65 //---------//------------//----------- ldx #$08 // ldx #$08 // ldx #$09 dex // dex // dex bne *-1 // bne *-1 // bne *-1 bit $00 // nop // nop // // Check at exactly what point we go to the next line // lda $d012 cmp $d012 beq *+2 // If we haven't changed line yet, wait an extra cycle. // Here our real logic can start running. } .macro FillBitmap(addr, value) { ldx #$00 lda #value !loop: sta addr,x sta (addr + $100),x sta (addr + $200),x sta (addr + $300),x sta (addr + $400),x sta (addr + $500),x sta (addr + $600),x sta (addr + $700),x sta (addr + $800),x sta (addr + $900),x sta (addr + $a00),x sta (addr + $b00),x sta (addr + $c00),x sta (addr + $d00),x sta (addr + $e00),x sta (addr + $f00),x sta (addr + $1000),x sta (addr + $1100),x sta (addr + $1200),x sta (addr + $1300),x sta (addr + $1400),x sta (addr + $1500),x sta (addr + $1600),x sta (addr + $1700),x sta (addr + $1800),x sta (addr + $1900),x sta (addr + $1a00),x sta (addr + $1b00),x sta (addr + $1c00),x sta (addr + $1d00),x sta (addr + $1e00),x sta (addr + $1f00),x dex bne !loop- } .macro PNGtoHIRES(PNGpicture,BMPData,ColData) { .var Graphics = LoadPicture(PNGpicture) // Graphics RGB Colors. Must be adapted to the graphics .const C64Black = 000 * 65536 + 000 * 256 + 000 .const C64White = 255 * 65536 + 255 * 256 + 255 .const C64Red = 104 * 65536 + 055 * 256 + 043 .const C64Cyan = 112 * 65536 + 164 * 256 + 178 .const C64Purple = 111 * 65536 + 061 * 256 + 134 .const C64Green = 088 * 65536 + 141 * 256 + 067 .const C64Blue = 053 * 65536 + 040 * 256 + 121 .const C64Yellow = 184 * 65536 + 199 * 256 + 111 .const C64L_brown = 111 * 65536 + 079 * 256 + 037 .const C64D_brown = 067 * 65536 + 057 * 256 + 000 .const C64L_red = 154 * 65536 + 103 * 256 + 089 .const C64D_grey = 068 * 65536 + 068 * 256 + 068 .const C64Grey = 108 * 65536 + 108 * 256 + 108 .const C64L_green = 154 * 65536 + 210 * 256 + 132 .const C64L_blue = 108 * 65536 + 094 * 256 + 181 .const C64L_grey = 149 * 65536 + 149 * 256 + 149 // Add the colors neatly into a Hashtable for easy lookup reference .var ColorTable = Hashtable() .eval ColorTable.put(C64Black,0) .eval ColorTable.put(C64White,1) .eval ColorTable.put(C64Red,2) .eval ColorTable.put(C64Cyan,3) .eval ColorTable.put(C64Purple,4) .eval ColorTable.put(C64Green,5) .eval ColorTable.put(C64Blue,6) .eval ColorTable.put(C64Yellow,7) .eval ColorTable.put(C64L_brown,8) .eval ColorTable.put(C64D_brown,9) .eval ColorTable.put(C64L_red,10) .eval ColorTable.put(C64D_grey,11) .eval ColorTable.put(C64Grey,12) .eval ColorTable.put(C64L_green,13) .eval ColorTable.put(C64L_blue,14) .eval ColorTable.put(C64L_grey,15) .pc = BMPData "Hires Bitmap" .var ScreenMem = List() .for (var Line = 0 ; Line < 200 ; Line = Line + 8) { .for (var Block = 0 ; Block < 320 ; Block=Block+8) { .var Coll1 = Graphics.getPixel(Block,Line) .var Coll2 = 0 .for (var j = 0 ; j < 8 ; j++ ) { .var ByteValue = 0 .for (var i = 0 ; i < 8 ; i++ ) { .if (Graphics.getPixel(Block,Line) != Graphics.getPixel(Block+i,Line+j)) .eval ByteValue = ByteValue + pow(2,7-i) .if (Graphics.getPixel(Block,Line) != Graphics.getPixel(Block+i,Line+j)) .eval Coll2 = Graphics.getPixel(Block+i,Line+j) } .byte ByteValue } .var BlockColor = [ColorTable.get(Coll2)]*16+ColorTable.get(Coll1) .eval ScreenMem.add(BlockColor) } } .pc = ColData "Hires Color Data" ScreenMemColors: .for (var i = 0 ; i < 1000 ; i++ ) { .byte ScreenMem.get(i) } } .macro SetScreenMemory(address) { .var bits = (address / $0400) << 4 lda $d018 and #%00001111 ora #bits sta $d018 } .macro FillScreenMemory(address, value) { // // Screen memory is 40 * 25 = 1000 bytes ($3E8 bytes) // ldx #$00 lda #value !loop: sta address,x sta (address + $100),x sta (address + $200),x dex bne !loop- ldx #$e8 !loop: sta (address + $2ff),x // Start one byte below the area we're clearing // That way we can bail directly when zero without an additional comparison dex bne !loop- } .macro copymem_add(src,src2,dst,size) { lda #<src // set our source memory address to copy from, $6000 clc adc $E0 sta $EB lda #>src sta $EC lda #<src2 // set our source memory address to copy from, $6000 sta $E8 lda #>src2 sta $E9 lda #<dst // set our destination memory to copy to, $5000 sta $ED lda #>dst sta $EE ldx #size // size of copy ldy #$00 copyloop: lda ($E8),y // indirect index source memory address, starting at $00 clc adc $E3 sbc ($FB),y // indirect index source memory address, starting at $00 cmp #32 bcs toobig sta ($ED),y // indirect index dest memory address, starting at $00 toobig: iny bne copyloop // loop until our dest goes over 255 inc $E9 // increment high order source memory address inc $EC // increment high order source memory address inc $EE // increment high order dest memory address dex bne copyloop // if we're not there yet, loop } .macro copymem(src,dst,size) { lda #<src // set our source memory address to copy from, $6000 sta $EB lda #>src sta $EC lda #<dst // set our destination memory to copy to, $5000 sta $ED lda #>dst sta $EE ldx #size // size of copy ldy #$00 copyloop: lda ($EB),y // indirect index source memory address, starting at $00 sta ($ED),y // indirect index dest memory address, starting at $00 iny bne copyloop // loop until our dest goes over 255 inc $EC // increment high order source memory address inc $EE // increment high order dest memory address dex bne copyloop // if we're not there yet, loop } .macro copymem_inc(src,dst,size) { lda #<src // set our source memory address to copy from, $6000 sta $EB lda #>src sta $EC lda #<dst // set our destination memory to copy to, $5000 sta $ED lda #>dst sta $EE ldx #size // size of copy ldy #$00 copyloop: lda ($EB),y // indirect index source memory address, starting at $00 clc sbc $F2 cmp #38 bcs no_over cmp #0 bcc no_over //eor ($FD),y // indirect index dest memory address, starting at $00 sta ($ED),y // indirect index dest memory address, starting at $00 no_over: iny bne copyloop // loop until our dest goes over 255 inc $EC // increment high order source memory address inc $EE // increment high order dest memory address dex bne copyloop // if we're not there yet, loop } .macro copymem_eor_short(src,dst,size) { lda #<src // set our source memory address to copy from, $6000 sta $EB lda #>src sta $EC lda #<dst // set our destination memory to copy to, $5000 sta $ED lda #>dst sta $EE ldx #size // size of copy ldy #$00 copyloop: lda ($EB),y // indirect index source memory address, starting at $00 eor ($ED),y // indirect index dest memory address, starting at $00 sta ($ED),y // indirect index dest memory address, starting at $00 iny bne copyloop // loop until our dest goes over 255 inc $EC // increment high order source memory address inc $EE // increment high order dest memory address dex bne copyloop // if we're not there yet, loop ldy #$00 copyloop2: lda ($EB),y // indirect index source memory address, starting at $00 eor ($ED),y // indirect index dest memory address, starting at $00 sta ($ED),y // indirect index dest memory address, starting at $00 iny cpy #190 bne copyloop2 // loop until our dest goes over 255 } .macro set_line(dst,val) { lda #<dst // set our destination memory to copy to, $5000 sta $ED lda #>dst sta $EE ldy #$00 copyloop: lda #val sta ($ED),y // indirect index dest memory address, starting at $00 iny cpy #40 bne copyloop // loop until our dest goes over 255 } .plugin "se.triad.kickass.CruncherPlugins" .var music = LoadSid("intromusre.sid") .pc = $f00 "democode" start: FillScreenMemory($d800,0) lda #%00001000 sta $d016 lda #%01111011 sta $d011 lda #0 sta $F0 sta $F1 lda #30 sta $F2 sei lda #<short_irq sta $fffe lda #>short_irq sta $ffff lda #$ff sta $d012 cli lda #0 sta $d020 sta $d021 lda #0 sta $d021 lda #0 sta $E1 copymem($6400,$4400,8) copymem($6800,$4800,8) lda #1 sta $a8 lda #247 sta $a9 forever: lda #%00010000 sta $d011 lda #248 clc sbc $a9 waitfor: cmp $d012 bne waitfor lda #%01111011 sta $d011 lda $a8 cmp #0 beq no_fuller FillScreenMemory($d800,1) lda #0 sta $a8 no_fuller: lda #252 waitfor2: cmp $d012 bne waitfor2 dec $a9 lda $a9 cmp #0 beq jumpout jmp forever jumpout: lda #%00010000 sta $d011 ldy #164 jsr wait loop_envmap: lda #2 sta $E3 // load 6400, sub envmap, store 5400 lda #<$6400 sta lx1+1 lda #>$6400 sta lx1+2 lda #<$9000 adc $f0 sta lx2+1 lda #>$9000 sta lx2+2 lda #<$4400 sta lx3+1 lda #>$4400 sta lx3+2 ldy #0 xl: ldx #0 xl1: lx1: lda $6400,x clc lx2: sbc $9000,x cmp #64 bcs no_x1 lx3: sta $4400,x no_x1: inx cpx #0 bne xl1 inc lx1+2 inc lx2+2 inc lx3+2 iny cpy #4 bne xl // load 6800, sub envmap, store 5800 lda #<$6800 sta lx21+1 lda #>$6800 sta lx21+2 lda #<$9000 adc $f0 sta lx22+1 lda #>$9000 sta lx22+2 lda #<$4800 sta lx23+1 lda #>$4800 sta lx23+2 ldy #0 x2l: ldx #0 x2l1: lx21: lda $6800,x clc lx22: sbc $9000,x cmp #64 bcs no_x21 lx23: sta $4800,x no_x21: inx cpx #0 bne x2l1 inc lx21+2 inc lx22+2 inc lx23+2 iny cpy #4 bne x2l inc $F1 ldx $f1 lda $9500,x lsr adc #10 sta $F0 lda part_hi cmp #$33 bcs loop_fadetowhite11 jmp loop_envmap loop_fadetowhite11: lda #30 sta $F2 lda #0 sta $f0 loop_fadetowhite: lda #<$6400 sta flx1+1 lda #>$6400 sta flx1+2 lda #<$4400 sta flx3+1 lda #>$4400 sta flx3+2 ldy #0 fxl: ldx #0 fxl1: flx1: lda $6400,x clc sbc $F2 cmp #38 bcs no_over1 cmp #0 bcc no_over1 flx3: sta $4400,x no_over1: fno_x1: inx cpx #0 bne fxl1 inc flx1+2 inc flx3+2 iny cpy #4 bne fxl // load 6800, sub envmap, store 5800 lda #<$6800 sta flx21+1 lda #>$6800 sta flx21+2 lda #<$4800 sta flx23+1 lda #>$4800 sta flx23+2 ldy #0 fx2l: ldx #0 fx2l1: flx21: lda $6800,x clc sbc $F2 cmp #38 bcs no_over2 cmp #0 bcc no_over2 flx23: sta $4800,x no_over2: fno_x21: inx cpx #0 bne fx2l1 inc flx21+2 inc flx23+2 iny cpy #4 bne fx2l lda $F2 cmp #210 bne no_reset_color0 jmp to_partswitch no_reset_color0: jmp loop_fadetowhite to_partswitch: lda #0 sta $F1 btow: ldx $F1 lda towhite,x sta $d020 ldy #8 jsr wait3 inc $F1 lda $F1 cmp #8 bne btow ldy #64 jsr wait3 lda #%00000000 sta $d011 lda #$0d sta $d020 ldy #16 jsr wait3 lda #$0f sta $d020 ldy #16 jsr wait3 lda #$0e sta $d020 ldy #16 jsr wait3 lda #$04 sta $d020 ldy #16 jsr wait3 lda #$0b sta $d020 jmp partswitch towhite: .byte $00, $06, $0b, $04, $0c, $03, $0d, $01 flipper: .byte 0 short_irq: sta restorea+1 stx restorex+1 sty restorey+1 inc $d019 inc part_lo lda part_lo bne no_part_hi_add inc part_hi no_part_hi_add: lda part_hi cmp #$31 bcc no_inc inc $F0 lda $F0 cmp #4 bne no_inc lda #0 sta $F0 /* ldx $F1 lda sintab,x lsr */ dec $F2 no_inc: lda flipper cmp #1 beq show_offsetted lda #%00010100 // $400 sta $d018 lda #%00000000 sta $d016 jmp do_flipper show_offsetted: lda #%00100100 // $800 sta $d018 lda #%00000100 sta $d016 do_flipper: inc flipper lda flipper cmp #2 bne no_resetflip lda #0 sta flipper no_resetflip: jsr $c003 // le musica restorea: lda #$00 restorex: ldx #$00 restorey: ldy #$00 rti waitforpart: dey waiter0: cpy part_hi bcs waiter0 rts wait: waiter1: lda #64 cmp $D012 bne *-3 dey cpy #0 bne wait rts wait3: waiter2: lda #0 cmp $D012 bne *-3 dey cpy #0 bne wait3 rts .pc = $3f00 "next part irq" nextirq: sta restoreaa+1 stx restorexa+1 sty restoreya+1 inc part_lo lda part_lo bne no_part_hi_add2 inc part_hi no_part_hi_add2: jsr $c003 // le musica lda #$ff sta $d019 restoreaa: lda #$00 restorexa: ldx #$00 restoreya: ldy #$00 rti .pc = $3fc0 "partswitch" partswitch: lda #<nextirq sta $fffe lda #>nextirq sta $ffff jsr $c90 // load part2 -> hires3.asm partswitch2: jmp $f00
src/main/antlr4/com/tistory/hskimsky/sparser/SimpleC.g4
HaNeul-Kim/SParser
0
2956
<filename>src/main/antlr4/com/tistory/hskimsky/sparser/SimpleC.g4 grammar SimpleC; program : declaration+ ; /** In this rule, the functionHeader left prefix on the last two * alternatives is not LL(k) for a fixed k. However, it is * LL(*). The LL(*) algorithm simply scans ahead until it sees * either the ';' or the '{' of the block and then it picks * the appropriate alternative. Lookhead can be arbitrarily * long in theory, but is <=10 in most cases. Works great. * Use ANTLRWorks to see the lookahead use (step by Location) * and look for blue tokens in the input window pane. :) */ declaration : variable | functionHeader ';' {System.out.println($functionHeader.name+" is a declaration");} | functionHeader block {System.out.println($functionHeader.name+" is a definition");} ; variable : type declarator ';' | type assignStat ';' ; declarator : ID ; functionHeader returns [String name] @init { name=null; // for now you must init here rather than in 'returns' } : type ID '(' ( formalParameter ( ',' formalParameter )* )? ')' {$name = $ID.text;} ; formalParameter : type declarator ; type : 'int'|'char'|'void'|ID ; block : '{' variable* stat* '}' ; stat : forStat | expr ';' | block | assignStat ';' | ';' ; forStat : 'for' '(' assignStat ';' expr ';' assignStat ')' block ; assignStat : ID '=' expr ; expr: condExpr ; condExpr : aexpr ( ('==' | '<') aexpr )? ; aexpr : atom ( '+' atom )* ; atom : ID | INT | '(' expr ')' ; ID : ('a'..'z' | 'A'..'Z' | '_')('a'..'z' | 'A'..'Z' | '0'..'9' | '_')* ; INT : ('0'..'9')+ ; WS : (' '|'\t'|'\r'|'\n')+ -> skip ;
Code/Characters/Malloc/malloc.asm
InvisibleUp/SonicReduxSHC2017
1
105424
.intel_syntax noprefix .text #; Malloc-D3D_DisplayPlayerModel .org 0x463773 lea eax, [edx*2 + edx] mov edx, dword ptr [CharModel_QuadStart] .org 0x4637BA lea eax, [edx*2 + edx] mov edx, dword ptr [AnimFrames_BasePtr] mov [ebp-0xF8], ecx .org 0x463FBE add ebx, dword ptr [CharModel_BasePtr] .org 0x4640BC add ebx, dword ptr [CharModel_VertexStart] .org 0x4640D4 movzx eax, word ptr [ebx+0x20] mov edi, dword ptr [CharModel_BasePtr] .org 0x4640FA movzx eax, word ptr [ebx+0x22] mov ecx, dword ptr [CharModel_BasePtr] .org 0x46412C movzx eax, word ptr [ebx+0x24] mov esi, dword ptr [CharModel_BasePtr] .org 0x464164 movzx eax, word ptr [ebx+0x26] mov edx, dword ptr [CharModel_BasePtr] .org 0x464E14 mov esi, [ebp-0x54] add esi, [eax] shl esi, 6 add esi, dword ptr [CharModel_BasePtr] .intel_syntax noprefix .org 0x464E4E mov edx, [ebp-0x54] add edx, [eax] shl edx, 6 add edx, dword ptr [CharModel_BasePtr] .org 0x464E91 mov edx, [ebp-0x54] add edx, [eax] shl edx, 6 add edx, dword ptr [CharModel_BasePtr] .org 0x464EE0 add edi, dword ptr [CharModel_BasePtr] #; Malloc-DDraw_DisplayCharacterModel .org 0x0044CDB3 shl eax, 4 lea edx, [eax + eax*4] add edx, [Sonic_ModelAttribBasePtr] mov edx, dword ptr [edx] add edi, 0x23000 sub edi, ebx .org 0x0044D60A lea edx, [edx*2 + edx] shl edx, 3 add edx, [CharModel_QuadStart] mov edx, dword ptr [edx] sar ebx, 0x0C .org 0x0044D658 lea edx, [edx+edx*2] shl edx, 3 add edx, [AnimFrames_BasePtr] mov edx, dword ptr [edx] mov dword ptr [ebp-0xB8], esi xor esi, esi .org 0x44DE51 add ebx, dword ptr [CharModel_BasePtr] .org 0x44DF3C imul edx, [eax+8], 0x30 add edx, [0x00713E68] mov edx, [edx] imul eax, [0x8FB358], 0x78 .org 0x44DF8D add eax, dword ptr [CharModel_BasePtr] .org 0x44DF9C mov ebx, [ebp-0x100] movzx edx, word ptr [ebx+0x22] add ebx, edx shl ebx, 6 add ebx, dword ptr [CharModel_BasePtr] .org 0x44DFBC mov ecx, [ebp-0x100] movzx edx, word ptr [ecx+0x24] add ecx, edx add ecx, dword ptr [CharModel_BasePtr] .org 0x44DFFB add edx, dword ptr [CharModel_BasePtr] .org 0x44E50E add edx, dword ptr [CharModel_BasePtr] .org 0x44E52C mov esi, [ebp-0x30] add esi, [ebx] shl esi, 6 add esi, dword ptr [CharModel_BasePtr] .org 0x44E564 add ebx, dword ptr [CharModel_BasePtr] .org 0x44E593 add ecx, dword ptr [CharModel_BasePtr] #; Malloc-InitCharacterSelect .org 0x48C9B3 add eax, dword ptr [CharModel_VertexStart] .org 0x48C9E3 add eax, dword ptr [CharModel_VertexStart] .org 0x48CA15 add eax, dword ptr [CharModel_VertexStart] #; Malloc-InitResultsScreen .org 0x4C730F add eax, dword ptr [CharModel_VertexStart] .org 0x4C7341 add eax, dword ptr [CharModel_VertexStart] .org 0x4C7373 add eax, dword ptr [CharModel_VertexStart] #; Malloc-Parse3DAnimations .org 0x0042E796 mov [ebp+OwnerChara], edx imul esi, edx, 80 add esi, dword ptr [0x00713080] mov [ebp-0x14], esi imul esi, ds:Game_AnimFrameCount, 24 add esi, dword ptr [0x00713074] mov edx, offset 0x005201A0 call Malloc_Parse3DAnimations_Call .org 0x4E0CEB Malloc_Parse3DAnimations_Call: #; Malloc-Parse3DCharacters .org 0x42E053 imul eax, [0x00713060], 80 add eax, [0x00713080] mov eax, [eax] mov [ebp-52], eax imul eax, [0x00713064], 24 add eax, [0x007133A0] mov eax, [eax] mov [ebp-36], eax imul edi, [0x00713070], 48 add edi, [0x00713E68] mov edi, [edi] mov eax, [0x00713068] shl eax, 6 add eax, [0x0072A5D8] mov eax, [eax] mov [ebp-32], edx #; Malloc-Parse3DGourads .org 0x42E85E imul esi, 384 add esi, dword ptr [Sonic_GouradOffset] xor edi, edi #; Malloc-sub_4217F8 .org 0x42186E add eax, dword ptr [CharModel_VertexStart] .org 0x4218DA add eax, dword ptr [CharModel_VertexStart] .org 0x42194F add eax, dword ptr [CharModel_VertexStart] #; Malloc-sub_421968 .org 0x4219CA lea edx, [eax*2 + eax] mov eax, dword ptr [CharModel_VertexStart] add ebx, 0x7F inc ebx #; Malloc-sub_4219FC .org 0x421A5E lea edx, [eax*2 + eax] mov eax, dword ptr [CharModel_VertexStart] add ebx, 0x7F inc ebx #; Malloc-sub_421A90 .org 0x421AB2 lea edx, [eax*2 + eax] mov eax, dword ptr [CharModel_VertexStart] add ebx, 0x7F inc ebx #; Malloc-sub_430638 .org 0x430651 imul edx, 80 add edx, [Sonic_ModelAttribBasePtr] .org 0x430678 shl eax, 7 add esi, dword ptr [Sonic_GouradOffset] imul eax, ecx, 12 mov edx, [edx+0x24] add edx, dword ptr [CharModel_BasePtr] add eax, esi #; Malloc-sub_430ED4 .org 0x430F1B imul ecx, ebx, 80 add ecx, dword ptr [Sonic_ModelAttrib_BasePtr] .org 0x430F37 imul esi, 512 add esi, dword ptr [Sonic_GouradOffset] .org 0x430F5F add eax, dword ptr [CharModel_BasePtr] cmp dword ptr ds:Game_Course, 5 #; Malloc-sub_4437FC .org 0x4439A3 add ecx, dword ptr [Sonic_ModelAttribBasePtr] .org 0x4439B4 imul edx, 24 add edx, dword ptr [CharModel_QuadStart] sar edi, 8 .org 0x4439E7 imul edx, 24 add edx, dword ptr [AnimFrames_BasePtr] .org 0x443BDD add ecx, dword ptr [CharModel_BasePtr] .org 0x443D5B imul edx, [eax+8], 0x32 add edx, dword ptr [CharModel_VertexStart] .org 0x443D94 add eax, dword ptr [CharModel_BasePtr] .org 0x443DA6 xor ebx, ebx imul bx, word ptr [ebx+0x22], 64 add ebx, dword ptr [CharModel_BasePtr] .org 0x443DCC add ecx, dword ptr [CharModel_BasePtr] .org 0x443DF2 add edx, dword ptr [CharModel_BasePtr] .org 0x4441D5 mov ebx, [edx] add ebx, [ebp-0x1C] shl ebx, 6 add ebx, dword ptr [CharModel_BasePtr] .org 0x4441FF mov esi, [edx] add esi, [ebp-0x1C] shl esi, 6 add esi, dword ptr [CharModel_BasePtr] .org 0x444234 add ecx, dword ptr [CharModel_BasePtr] .org 0x444269 add edx, dword ptr [CharModel_BasePtr] #; Malloc-sub_4555B8 .org 0x45571A add edx, dword ptr [Sonic_ModelAttribBasePtr] .org 0x45572B lea eax, [ebx*2 + ebx] mov ebx, dword ptr [CharModel_QuadStart] .org 0x455755 lea eax, [ebx*2 + ebx] mov ebx, dword ptr [AnimFrames_BasePtr] .org 0x455A8A add ebx, dword ptr [CharModel_VertexStart] .org 0x455A90 movzx eax, word ptr [ebx+0x20] mov edi, dword ptr [CharModel_BasePtr] .org 0x455ABA movzx eax, word ptr [ebx+0x22] mov edi, dword ptr [CharModel_BasePtr] .org 0x455ADE movzx eax, word ptr [ebx+0x24] mov edx, dword ptr [CharModel_BasePtr] .org 0x455B18 movzx eax, word ptr [ebx+0x26] mov edx, dword ptr [CharModel_BasePtr] .org 0x45667B add esi, dword ptr [CharModel_BasePtr] .org 0x4566A2 mov edx, [ebp-0x6C] add edx, [eax] shl edx, 6 add edx, dword ptr [CharModel_BasePtr] .org 0x4566DC mov edi, [ebp-0x6C] add edi, [eax] shl edi, 6 add edi, dword ptr [CharModel_BasePtr] .org 0x456717 mov edx, [ebp-0x6C] add edx, [eax] shl edx, 6 add edx, dword ptr [CharModel_BasePtr] #; Malloc-sub_469AE0 .org 0x469B01 lea eax, [edx*4 + edx] mov edx, dword ptr [Sonic_ModelAttribBasePtr] .org 0x46A34A lea eax, [edx*2 + edx] mov edx, dword ptr [CharModel_QuadStart] .org 0x46A38B lea eax, [edx*2 + edx] mov edx, dword ptr [AnimFrames_BasePtr] .org 0x46A6B8 add ebx, dword ptr [CharModel_BasePtr] .org 0x46A910 mov edx, [esp+0xAC] imul edx, [edx+8], 0x30 add edx, dword ptr [CharModel_VertexStart] .org 0x46A954 movzx eax, word ptr [edx+0x20] mov edx, [esp+0xAC] add eax, [edx] mov esi, dword ptr [CharModel_BasePtr] .org 0x46A980 movzx eax, word ptr [edx+0x22] mov edx, [esp+0xAC] add eax, [edx] mov ecx, dword ptr [CharModel_BasePtr] .org 0x46A9AA movzx eax, word ptr [edx+0x24] mov edx, [esp+0xAC] add eax, [edx] mov ebx, dword ptr [CharModel_BasePtr] .org 0x46A9E7 movzx eax, word ptr [edx+0x26] mov edx, [esp+0xAC] add eax, [edx] mov edi, dword ptr [CharModel_BasePtr] #; Malloc-sub_470460 .org 0x470460 push ebx push edx push esi mov esi, ds:Game_QuadCount mov edx, dword ptr [CharModel_VertexStart] .org 0x4704D5 cmp word ptr [ebx], 0 .org 0x4704EB pop esi pop edx pop ebx ret #; Malloc-sub_47FD04 .org 0x47FD27 add eax, dword ptr [CharModel_VertexStart] #; Malloc-Tint3DGourads .org 0x430cb7 add eax, 0x1000 shl edx, 5 mov [ebp-0x18], eax mov eax, dword ptr [Sonic_GouradOffset] cmp dword ptr ds:Game_RenderMode, 2
audio/sfx/fly_3.asm
etdv-thevoid/pokemon-rgb-enhanced
1
12503
<gh_stars>1-10 SFX_Fly_3_Ch7: unknownnoise0x20 2, 241, 18 unknownnoise0x20 2, 0, 0 unknownnoise0x20 2, 161, 18 unknownnoise0x20 2, 0, 0 unknownnoise0x20 2, 209, 18 unknownnoise0x20 2, 0, 0 unknownnoise0x20 2, 129, 18 unknownnoise0x20 2, 0, 0 unknownnoise0x20 2, 177, 18 unknownnoise0x20 2, 0, 0 unknownnoise0x20 2, 97, 18 unknownnoise0x20 2, 0, 0 unknownnoise0x20 2, 145, 18 unknownnoise0x20 2, 0, 0 unknownnoise0x20 2, 65, 18 unknownnoise0x20 2, 0, 0 endchannel
flowlog.applescript
sandstorm/oh-my-zsh-flow-plugin
21
3406
-- iTerm launching script for samo9789 set flow_path to system attribute "flow_path" tell application "iTerm" activate -- talk to the new terminal tell the first terminal -- create the project tab launch session "Default" tell the last session set name to "SystemLog" write text "tail -f " & flow_path & "/Data/Logs/System_Development.log" end tell tell i term application "System Events" to keystroke "d" using command down tell the last session set name to "SecurityLog" write text "tail -f " & flow_path & "/Data/Logs/Security_Development.log" end tell end tell end tell
data/pokemon/base_stats/doduo.asm
opiter09/ASM-Machina
1
21765
<gh_stars>1-10 db DEX_DODUO ; pokedex id db 35, 85, 45, 75, 35 ; hp atk def spd spc db GROUND, FLYING ; type db 190 ; catch rate db 96 ; base exp INCBIN "gfx/pokemon/front/doduo.pic", 0, 1 ; sprite dimensions dw DoduoPicFront, DoduoPicBack db PECK, SAND_ATTACK, NO_MOVE, NO_MOVE ; level 1 learnset db GROWTH_MEDIUM_FAST ; growth rate ; tm/hm learnset tmhm WHIRLWIND, TOXIC, BODY_SLAM, TAKE_DOWN, DOUBLE_EDGE, \ RAGE, MIMIC, DOUBLE_TEAM, REFLECT, BIDE, \ SKULL_BASH, SKY_ATTACK, REST, TRI_ATTACK, SUBSTITUTE, \ DIG ; end db 0 ; padding
oeis/176/A176496.asm
neoneye/loda-programs
11
165975
<gh_stars>10-100 ; A176496: a(n) = Sum_{k=1..n} 2^nonprime(k). ; Submitted by <NAME> ; 2,18,82,338,850,1874,5970,22354,55122,120658,382802,1431378,3528530,7722834,24500050,58054482,125163346,259381074,527816530,1601558354,5896525650,14486460242,31666329426,66026067794,134745544530,409623451474,959379265362,2058890893138,6456937404242,24049123448658,59233495537490,129602239715154,411077216425810,974027169847122,2099927076689746,4351726890374994,8855326517745490,26869725027227474,62898522046191442,134956116084119378,279071304159975250,567301680311686994,1720223184918533970 lpb $0 sub $0,1 mov $2,$0 max $2,0 seq $2,73718 ; Powers of 2 with composite exponents. add $1,$2 lpe mov $0,$1 add $0,2
eapli.base (20210331)/eapli.base/base.grammars/src/main/java/gramaticaformulario/grammar/GramaticaFormulario.g4
fabioalvesilva/Help-Desk-App
0
4173
grammar GramaticaFormulario; prog: init; // Prologo de XML Ignorado init: Prologo formularioID atributos epilogo # printAtributo ; // Nome do Formulario formularioID: '<formulario><nome>' TEXTO '</nome><atributos>' ; // Atributos atributos: atributo |atributo (atributo)* ; //Estrutura do atributo atributo: abrirAtributo campos fecharAtributo # atributoSingular ; //Tag abertura abrirAtributo: '<atributo>' ; //Tag fecho fecharAtributo: '</atributo>' ; //Campos de atributo campos: nome titulo descricao validadores ; nome:'<nome>' TEXTO '</nome>' ; titulo: '<titulo>' TEXTO '</titulo>' ; descricao: '<descricao>' TEXTO '</descricao>' ; //Validacao: Valida se o preenhcimento vai de acordo com o o TIPODADOS definido pelo colaborador validadores: TIPOSTRING validador? '</validador><preenchimento>' preenchimentoString? (error)? '</preenchimento>' | TIPOBOOLEANO validador? '</validador><preenchimento>' preenchimentoBooleano? (error)? '</preenchimento>' | TIPONUMERICO validador? '</validador><preenchimento>' preenchimentoNumerico? (error)? '</preenchimento>' | TIPODATA validador? '</validador><preenchimento>' preenchimentoData? (error)? '</preenchimento>' ; //Validacao de Preenchimento consoante o tipo de dados validador: TEXTO | REGEX #regex; preenchimentoString: TEXTO #userInputString; preenchimentoBooleano: BOOLEANO #userInputBoolean; preenchimentoNumerico: NUMERICO #userInputNumerico; preenchimentoData: DATA #userInputData; error: .; epilogo: Epilogo #scriptValidacao; // get script validacao WS : [ \t\n\r] + -> skip; NEWLINE : [2\r\n]+ -> skip; TIPOSTRING:'<tipoDados>String</tipoDados><validador>'; TIPOBOOLEANO:'<tipoDados>Boolean</tipoDados><validador>'; TIPONUMERICO: '<tipoDados>Numerico</tipoDados><validador>'; TIPODATA:'<tipoDados>Data</tipoDados><validador>'; Prologo:'<?xml version="1.0" encoding="UTF-8" standalone="yes"?>'; Epilogo: '</atributos><scriptvalidacao/></formulario>' |'</atributos><scriptvalidacao>'(.)*?'</scriptvalidacao></formulario>' //ignorar o script de validacao dentro do formuulario ; DATA: (YEAR'-'MONTH'-'DAY); NUMERICO: [0-9]+; YEAR: ('20'([0-9][0-9]|[3-9][0-9])); MONTH: ('0'[1-9]|'1'[1-2]); DAY: ('0'[1-9]|[1-2][0-9]|'3'[1-2]); BOOLEANO: TRUE | FALSE; TRUE: 'true' | 'TRUE' | 'True'; FALSE: 'false' | 'FALSE' | 'False'; TEXTO: [a-zA-Z0-9 -]+; REGEX: ('['* TEXTO ']'* '|'* ('*'|'+'|'?')* ('{'[0-9]*'}')*)+;
Transynther/x86/_processed/NONE/_xt_/i7-7700_9_0x48.log_21829_2233.asm
ljhsiun2/medusa
9
85275
<reponame>ljhsiun2/medusa<filename>Transynther/x86/_processed/NONE/_xt_/i7-7700_9_0x48.log_21829_2233.asm .global s_prepare_buffers s_prepare_buffers: push %r11 push %r14 push %r8 push %r9 push %rcx push %rdi push %rsi lea addresses_WT_ht+0x2f7c, %rsi lea addresses_WC_ht+0xd164, %rdi nop nop nop dec %r11 mov $18, %rcx rep movsw nop nop nop nop add %r14, %r14 lea addresses_UC_ht+0x12364, %rsi lea addresses_UC_ht+0x1ebc8, %rdi nop nop cmp $24959, %r9 mov $22, %rcx rep movsb nop nop nop nop nop add %rsi, %rsi lea addresses_WT_ht+0x15a0c, %r9 nop nop nop nop nop sub $27656, %rcx mov $0x6162636465666768, %r11 movq %r11, %xmm0 movups %xmm0, (%r9) nop nop nop nop and %r9, %r9 lea addresses_A_ht+0x13cc4, %rsi lea addresses_UC_ht+0x380, %rdi nop nop nop inc %r8 mov $93, %rcx rep movsq nop nop cmp %r14, %r14 lea addresses_WC_ht+0x6be4, %rcx cmp $13937, %r14 movw $0x6162, (%rcx) nop nop nop dec %rdi pop %rsi pop %rdi pop %rcx pop %r9 pop %r8 pop %r14 pop %r11 ret .global s_faulty_load s_faulty_load: push %r11 push %r12 push %rbx push %rcx push %rdi push %rdx push %rsi // Store mov $0xf48, %rdx nop nop nop nop and %rbx, %rbx movw $0x5152, (%rdx) nop nop nop nop inc %rdi // Store lea addresses_UC+0xa464, %rcx nop nop dec %r11 movb $0x51, (%rcx) nop sub %rbx, %rbx // Load lea addresses_PSE+0xaed4, %rdi clflush (%rdi) nop nop nop xor $502, %rdx mov (%rdi), %cx nop nop xor $65187, %r12 // Store lea addresses_A+0x139c2, %rsi nop nop nop nop xor $25604, %r11 movl $0x51525354, (%rsi) nop nop nop nop nop sub $54910, %rsi // Store mov $0xc159c0000000564, %rcx nop nop nop and $15846, %r12 movl $0x51525354, (%rcx) xor $3463, %r12 // Store lea addresses_US+0xc76c, %r12 nop nop nop inc %rbx mov $0x5152535455565758, %rdi movq %rdi, %xmm1 vmovups %ymm1, (%r12) cmp $40585, %rsi // Load lea addresses_WC+0x149e4, %r12 nop nop nop nop nop add %rsi, %rsi mov (%r12), %edi nop nop sub $50517, %rbx // Store lea addresses_WC+0x10cb4, %rcx nop nop nop nop nop and $43312, %r12 mov $0x5152535455565758, %rdx movq %rdx, (%rcx) nop nop xor $28884, %rdi // Store lea addresses_WT+0xed64, %rdi nop nop nop nop and %rdx, %rdx mov $0x5152535455565758, %rsi movq %rsi, %xmm6 vmovups %ymm6, (%rdi) nop add $12153, %rdi // Faulty Load lea addresses_normal+0x19164, %rsi nop nop nop nop nop dec %rdi mov (%rsi), %ebx lea oracles, %rcx and $0xff, %rbx shlq $12, %rbx mov (%rcx,%rbx,1), %rbx pop %rsi pop %rdx pop %rdi pop %rcx pop %rbx pop %r12 pop %r11 ret /* <gen_faulty_load> [REF] {'OP': 'LOAD', 'src': {'type': 'addresses_normal', 'AVXalign': False, 'congruent': 0, 'size': 8, 'same': False, 'NT': False}} {'OP': 'STOR', 'dst': {'type': 'addresses_P', 'AVXalign': False, 'congruent': 2, 'size': 2, 'same': False, 'NT': False}} {'OP': 'STOR', 'dst': {'type': 'addresses_UC', 'AVXalign': False, 'congruent': 8, 'size': 1, 'same': False, 'NT': False}} {'OP': 'LOAD', 'src': {'type': 'addresses_PSE', 'AVXalign': False, 'congruent': 4, 'size': 2, 'same': False, 'NT': False}} {'OP': 'STOR', 'dst': {'type': 'addresses_A', 'AVXalign': False, 'congruent': 1, 'size': 4, 'same': False, 'NT': True}} {'OP': 'STOR', 'dst': {'type': 'addresses_NC', 'AVXalign': False, 'congruent': 10, 'size': 4, 'same': False, 'NT': False}} {'OP': 'STOR', 'dst': {'type': 'addresses_US', 'AVXalign': False, 'congruent': 3, 'size': 32, 'same': False, 'NT': False}} {'OP': 'LOAD', 'src': {'type': 'addresses_WC', 'AVXalign': False, 'congruent': 7, 'size': 4, 'same': False, 'NT': False}} {'OP': 'STOR', 'dst': {'type': 'addresses_WC', 'AVXalign': False, 'congruent': 4, 'size': 8, 'same': False, 'NT': False}} {'OP': 'STOR', 'dst': {'type': 'addresses_WT', 'AVXalign': False, 'congruent': 10, 'size': 32, 'same': False, 'NT': False}} [Faulty Load] {'OP': 'LOAD', 'src': {'type': 'addresses_normal', 'AVXalign': False, 'congruent': 0, 'size': 4, 'same': True, 'NT': False}} <gen_prepare_buffer> {'OP': 'REPM', 'src': {'type': 'addresses_WT_ht', 'congruent': 3, 'same': False}, 'dst': {'type': 'addresses_WC_ht', 'congruent': 11, 'same': False}} {'OP': 'REPM', 'src': {'type': 'addresses_UC_ht', 'congruent': 8, 'same': False}, 'dst': {'type': 'addresses_UC_ht', 'congruent': 2, 'same': False}} {'OP': 'STOR', 'dst': {'type': 'addresses_WT_ht', 'AVXalign': False, 'congruent': 3, 'size': 16, 'same': False, 'NT': False}} {'OP': 'REPM', 'src': {'type': 'addresses_A_ht', 'congruent': 5, 'same': False}, 'dst': {'type': 'addresses_UC_ht', 'congruent': 2, 'same': False}} {'OP': 'STOR', 'dst': {'type': 'addresses_WC_ht', 'AVXalign': True, 'congruent': 7, 'size': 2, 'same': False, 'NT': False}} {'34': 21829} 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 */
P6/data_P6/testpoint/testpoint83.asm
alxzzhou/BUAA_CO_2020
1
176330
<filename>P6/data_P6/testpoint/testpoint83.asm ori $1, $0, 4 ori $2, $0, 5 ori $3, $0, 12 ori $4, $0, 1 sw $4, 0($0) sw $2, 4($0) sw $4, 8($0) sw $2, 12($0) sw $4, 16($0) sw $1, 20($0) sw $2, 24($0) sw $1, 28($0) sw $2, 32($0) sw $4, 36($0) sw $2, 40($0) sw $4, 44($0) sw $4, 48($0) sw $3, 52($0) sw $1, 56($0) sw $2, 60($0) sw $4, 64($0) sw $4, 68($0) sw $1, 72($0) sw $2, 76($0) sw $3, 80($0) sw $2, 84($0) sw $2, 88($0) sw $4, 92($0) sw $3, 96($0) sw $2, 100($0) sw $4, 104($0) sw $4, 108($0) sw $1, 112($0) sw $4, 116($0) sw $2, 120($0) sw $3, 124($0) divu $2, $2 bgez $2, TAG1 sll $1, $2, 1 mthi $1 TAG1: srl $3, $1, 6 lb $1, 0($3) mtlo $1 ori $3, $1, 14 TAG2: lui $4, 14 mfhi $3 srav $1, $4, $3 sll $0, $0, 0 TAG3: bgez $1, TAG4 div $1, $1 sh $1, 0($1) mflo $4 TAG4: addiu $4, $4, 10 sll $0, $0, 0 mflo $4 or $2, $4, $4 TAG5: mfhi $3 subu $3, $3, $3 bgez $3, TAG6 mthi $3 TAG6: mflo $2 bgez $2, TAG7 mflo $4 or $3, $2, $4 TAG7: sh $3, 0($3) sra $4, $3, 9 nor $2, $3, $4 bne $3, $3, TAG8 TAG8: mtlo $2 sw $2, 1($2) sw $2, 1($2) or $1, $2, $2 TAG9: beq $1, $1, TAG10 lui $2, 11 lb $2, 0($2) mthi $1 TAG10: lui $3, 1 addiu $1, $3, 1 sll $0, $0, 0 addiu $4, $1, 1 TAG11: lui $2, 13 sll $0, $0, 0 mult $2, $2 sll $0, $0, 0 TAG12: srl $2, $2, 11 beq $2, $2, TAG13 div $2, $2 mfhi $3 TAG13: mult $3, $3 xori $2, $3, 15 divu $3, $3 multu $3, $2 TAG14: mult $2, $2 sll $0, $0, 0 div $2, $2 sll $0, $0, 0 TAG15: nor $3, $4, $4 mtlo $4 mflo $3 or $2, $3, $4 TAG16: blez $2, TAG17 or $2, $2, $2 srlv $4, $2, $2 beq $2, $2, TAG17 TAG17: mfhi $4 lui $4, 4 slti $4, $4, 8 mfhi $1 TAG18: mtlo $1 mtlo $1 bgez $1, TAG19 lui $2, 2 TAG19: lui $3, 10 lui $2, 1 nor $1, $3, $2 sll $0, $0, 0 TAG20: bgez $2, TAG21 mtlo $2 mult $2, $2 beq $2, $2, TAG21 TAG21: mthi $2 lui $3, 7 mfhi $4 blez $4, TAG22 TAG22: sll $0, $0, 0 lui $1, 4 bne $1, $1, TAG23 lui $3, 14 TAG23: beq $3, $3, TAG24 sll $0, $0, 0 div $3, $3 andi $3, $3, 12 TAG24: sll $0, $0, 0 and $1, $3, $1 mthi $3 sll $0, $0, 0 TAG25: beq $1, $1, TAG26 mtlo $1 bltz $1, TAG26 div $1, $1 TAG26: sll $0, $0, 0 beq $1, $1, TAG27 sll $0, $0, 0 sw $1, 0($3) TAG27: sll $0, $0, 0 addu $3, $3, $3 sll $0, $0, 0 bltz $3, TAG28 TAG28: mult $3, $3 mtlo $3 sll $0, $0, 0 multu $3, $3 TAG29: lui $3, 14 srl $3, $3, 8 mflo $3 lui $4, 6 TAG30: lui $3, 6 mthi $3 sll $0, $0, 0 bne $4, $1, TAG31 TAG31: sll $0, $0, 0 sll $0, $0, 0 bgtz $1, TAG32 divu $1, $1 TAG32: lui $1, 5 bgtz $1, TAG33 sll $0, $0, 0 mult $1, $2 TAG33: beq $2, $2, TAG34 lui $2, 12 lui $1, 6 mthi $1 TAG34: sll $0, $0, 0 srl $3, $1, 15 mtlo $1 divu $1, $1 TAG35: beq $3, $3, TAG36 div $3, $3 mfhi $2 and $4, $2, $3 TAG36: beq $4, $4, TAG37 mult $4, $4 mult $4, $4 multu $4, $4 TAG37: mthi $4 sll $0, $0, 0 blez $4, TAG38 sllv $3, $4, $4 TAG38: bgtz $3, TAG39 mthi $3 subu $4, $3, $3 beq $3, $4, TAG39 TAG39: sll $0, $0, 0 sll $0, $0, 0 sll $0, $0, 0 sll $0, $0, 0 TAG40: sll $0, $0, 0 lui $1, 10 mthi $1 sll $0, $0, 0 TAG41: bgtz $1, TAG42 mthi $1 mult $1, $1 nor $3, $1, $1 TAG42: beq $3, $3, TAG43 addu $2, $3, $3 mflo $2 divu $3, $3 TAG43: bltz $2, TAG44 sll $0, $0, 0 sll $0, $0, 0 mthi $1 TAG44: mflo $3 lbu $1, 0($3) divu $3, $1 lb $2, 0($3) TAG45: mfhi $2 lui $2, 10 or $1, $2, $2 sll $0, $0, 0 TAG46: sll $0, $0, 0 blez $1, TAG47 mfhi $1 mfhi $2 TAG47: srlv $1, $2, $2 bgtz $1, TAG48 mfhi $1 multu $2, $1 TAG48: add $2, $1, $1 sh $2, 0($1) multu $2, $2 beq $2, $1, TAG49 TAG49: slt $1, $2, $2 mflo $1 bltz $1, TAG50 mflo $4 TAG50: lw $4, 0($4) sll $0, $0, 0 div $4, $4 lui $3, 10 TAG51: sll $0, $0, 0 bgez $3, TAG52 lui $4, 2 sltiu $1, $3, 11 TAG52: mult $1, $1 mtlo $1 sw $1, 0($1) bltz $1, TAG53 TAG53: lui $1, 9 sll $0, $0, 0 sll $0, $0, 0 lui $4, 4 TAG54: beq $4, $4, TAG55 ori $2, $4, 6 lw $2, 0($2) sw $2, 0($2) TAG55: sll $0, $0, 0 addu $2, $2, $3 subu $2, $3, $2 lui $2, 5 TAG56: lui $1, 2 bgez $1, TAG57 addiu $2, $1, 3 lui $3, 12 TAG57: divu $3, $3 mthi $3 lui $2, 9 mflo $3 TAG58: ori $3, $3, 10 bne $3, $3, TAG59 xori $2, $3, 5 srl $1, $3, 6 TAG59: lui $2, 0 bgtz $2, TAG60 multu $2, $1 lui $2, 10 TAG60: sll $0, $0, 0 mthi $2 sll $0, $0, 0 lui $2, 5 TAG61: sll $0, $0, 0 bgtz $3, TAG62 sll $0, $0, 0 lh $1, 0($4) TAG62: mtlo $1 lh $4, 0($1) sw $1, 0($1) bne $4, $1, TAG63 TAG63: multu $4, $4 bgez $4, TAG64 mfhi $1 lui $3, 11 TAG64: slti $1, $3, 7 lh $1, 0($1) mult $1, $1 mthi $1 TAG65: bgtz $1, TAG66 slti $4, $1, 2 blez $4, TAG66 mtlo $4 TAG66: mult $4, $4 sllv $2, $4, $4 mflo $3 subu $2, $2, $2 TAG67: sh $2, 0($2) addiu $1, $2, 8 beq $1, $1, TAG68 srl $4, $1, 2 TAG68: mtlo $4 beq $4, $4, TAG69 mfhi $1 sltiu $4, $4, 12 TAG69: mflo $2 mfhi $4 bne $4, $4, TAG70 mflo $1 TAG70: lhu $3, 0($1) lui $1, 1 beq $3, $1, TAG71 mthi $1 TAG71: lui $2, 0 bne $2, $2, TAG72 multu $2, $2 nor $4, $2, $2 TAG72: bne $4, $4, TAG73 andi $4, $4, 10 mult $4, $4 addiu $2, $4, 7 TAG73: mfhi $3 lui $1, 11 bgtz $2, TAG74 addu $1, $2, $1 TAG74: mtlo $1 and $2, $1, $1 div $2, $2 slt $3, $1, $2 TAG75: lbu $3, 0($3) lhu $4, 0($3) bne $3, $4, TAG76 mtlo $3 TAG76: lui $4, 11 slt $2, $4, $4 mult $2, $2 lui $1, 14 TAG77: sll $0, $0, 0 beq $1, $1, TAG78 div $1, $1 div $1, $1 TAG78: slti $3, $1, 9 mflo $3 div $3, $3 mthi $1 TAG79: multu $3, $3 sb $3, 0($3) mtlo $3 mflo $3 TAG80: bne $3, $3, TAG81 lui $4, 15 sll $3, $3, 15 mflo $2 TAG81: sb $2, 0($2) or $3, $2, $2 mfhi $2 lbu $1, 0($3) TAG82: slti $1, $1, 15 addiu $4, $1, 11 multu $4, $1 bne $1, $1, TAG83 TAG83: mflo $4 lui $1, 7 lui $1, 3 addiu $2, $4, 0 TAG84: div $2, $2 mflo $4 sb $4, 0($4) sh $4, 0($2) TAG85: sb $4, 0($4) lui $4, 13 mflo $3 lui $3, 13 TAG86: addiu $2, $3, 0 slt $4, $3, $3 subu $3, $3, $4 sw $3, 0($4) TAG87: lui $1, 10 sra $2, $3, 5 sll $0, $0, 0 addiu $3, $4, 12 TAG88: addu $1, $3, $3 mflo $1 mtlo $1 mult $3, $1 TAG89: mtlo $1 addu $1, $1, $1 bne $1, $1, TAG90 mthi $1 TAG90: bgtz $1, TAG91 sh $1, 0($1) lbu $2, 0($1) lb $3, 0($1) TAG91: lui $3, 13 addu $4, $3, $3 mult $4, $4 subu $2, $3, $4 TAG92: divu $2, $2 mflo $1 lui $2, 5 sll $0, $0, 0 TAG93: addu $4, $2, $2 lui $1, 12 sll $0, $0, 0 bne $2, $4, TAG94 TAG94: nor $1, $4, $4 beq $1, $1, TAG95 divu $1, $4 mfhi $2 TAG95: mthi $2 mfhi $4 sll $0, $0, 0 andi $3, $4, 3 TAG96: mflo $1 mflo $4 beq $1, $1, TAG97 mtlo $3 TAG97: div $4, $4 bltz $4, TAG98 mflo $2 mtlo $2 TAG98: and $3, $2, $2 sb $3, 0($2) lui $1, 12 sll $0, $0, 0 TAG99: sll $0, $0, 0 mflo $1 mthi $1 mflo $3 TAG100: blez $3, TAG101 lui $3, 1 addiu $1, $3, 10 sll $0, $0, 0 TAG101: multu $1, $1 sll $0, $0, 0 sllv $4, $1, $1 mult $4, $1 TAG102: sll $0, $0, 0 sll $0, $0, 0 sllv $1, $4, $4 multu $4, $1 TAG103: srl $3, $1, 6 sll $0, $0, 0 blez $4, TAG104 mtlo $1 TAG104: bgez $4, TAG105 mthi $4 sltiu $4, $4, 12 addiu $3, $4, 4 TAG105: sll $0, $0, 0 mult $3, $3 addiu $2, $3, 11 lui $1, 5 TAG106: mfhi $2 andi $4, $2, 14 lw $3, 0($4) mtlo $4 TAG107: mtlo $3 and $2, $3, $3 bne $2, $3, TAG108 sll $0, $0, 0 TAG108: mthi $2 mthi $2 bltz $2, TAG109 mthi $2 TAG109: mfhi $2 div $2, $2 lui $4, 12 div $2, $2 TAG110: subu $3, $4, $4 mflo $1 mtlo $1 divu $1, $1 TAG111: bgez $1, TAG112 sllv $4, $1, $1 divu $4, $1 addiu $4, $4, 3 TAG112: lh $2, 0($4) lui $3, 12 bltz $2, TAG113 mflo $3 TAG113: ori $4, $3, 5 lui $4, 14 multu $4, $4 bgtz $3, TAG114 TAG114: slti $4, $4, 11 mthi $4 bgtz $4, TAG115 lui $2, 12 TAG115: blez $2, TAG116 mfhi $1 bne $2, $1, TAG116 mfhi $1 TAG116: mflo $3 lbu $1, 0($3) beq $1, $3, TAG117 mult $1, $1 TAG117: mthi $1 lui $2, 15 mult $1, $2 and $1, $2, $1 TAG118: mfhi $2 mtlo $1 mthi $1 mthi $2 TAG119: add $3, $2, $2 bgez $3, TAG120 multu $2, $3 beq $2, $3, TAG120 TAG120: addu $2, $3, $3 bne $2, $3, TAG121 multu $3, $2 sh $2, 0($3) TAG121: lhu $4, 0($2) lw $4, 0($4) mtlo $4 lui $3, 8 TAG122: sll $0, $0, 0 sllv $2, $1, $3 multu $3, $2 mflo $2 TAG123: bltz $2, TAG124 sb $2, 0($2) sltu $4, $2, $2 addiu $3, $4, 14 TAG124: sll $1, $3, 7 lui $1, 9 mflo $2 srav $3, $1, $1 TAG125: srav $3, $3, $3 mthi $3 multu $3, $3 srl $2, $3, 3 TAG126: andi $4, $2, 14 lbu $1, 0($4) sh $2, 0($4) mflo $4 TAG127: add $3, $4, $4 lui $3, 4 ori $3, $3, 7 bne $3, $4, TAG128 TAG128: mflo $2 sll $0, $0, 0 subu $1, $1, $3 mfhi $4 TAG129: divu $4, $4 mthi $4 beq $4, $4, TAG130 lbu $1, 0($4) TAG130: sltiu $1, $1, 9 mtlo $1 lui $1, 14 bltz $1, TAG131 TAG131: mthi $1 blez $1, TAG132 mfhi $1 beq $1, $1, TAG132 TAG132: sltiu $4, $1, 12 sll $0, $0, 0 mflo $4 lui $4, 9 TAG133: mtlo $4 sll $0, $0, 0 mult $4, $4 xori $3, $4, 0 TAG134: mfhi $4 mthi $3 slt $1, $3, $3 sll $0, $0, 0 TAG135: mthi $1 beq $1, $1, TAG136 slti $3, $1, 7 sh $1, 0($3) TAG136: sra $1, $3, 5 lw $1, 0($1) bgtz $1, TAG137 srlv $1, $1, $1 TAG137: lui $4, 10 lui $4, 3 addu $2, $4, $4 xori $3, $1, 0 TAG138: bgez $3, TAG139 mthi $3 div $3, $3 lh $2, 0($3) TAG139: sltiu $1, $2, 12 mthi $2 mflo $3 sll $4, $2, 12 TAG140: mflo $4 mflo $1 lui $4, 13 and $1, $4, $1 TAG141: lbu $4, 0($1) mtlo $4 lhu $3, 0($1) lb $4, -8192($3) TAG142: mflo $2 sw $4, 0($2) mtlo $2 sra $1, $2, 4 TAG143: bltz $1, TAG144 lh $3, 0($1) bne $1, $3, TAG144 mfhi $4 TAG144: bgez $4, TAG145 mtlo $4 sb $4, 0($4) sllv $1, $4, $4 TAG145: sll $1, $1, 15 lui $2, 10 sw $1, 0($1) sh $2, 0($1) TAG146: mtlo $2 sll $0, $0, 0 lui $4, 14 mult $2, $4 TAG147: mthi $4 addiu $1, $4, 14 lui $2, 9 bltz $2, TAG148 TAG148: mtlo $2 bgez $2, TAG149 mflo $1 lui $2, 14 TAG149: xori $3, $2, 9 sll $0, $0, 0 mult $2, $3 srav $3, $1, $1 TAG150: sll $2, $3, 14 addiu $4, $3, 0 sll $0, $0, 0 bgtz $2, TAG151 TAG151: lui $4, 11 bne $2, $2, TAG152 divu $2, $2 sra $4, $2, 5 TAG152: sltiu $3, $4, 1 mfhi $4 lw $2, 0($4) lui $1, 7 TAG153: mflo $4 lui $3, 9 sll $4, $1, 11 lui $4, 6 TAG154: addu $1, $4, $4 addu $3, $1, $4 nor $4, $3, $4 sll $0, $0, 0 TAG155: beq $4, $4, TAG156 ori $3, $4, 2 beq $4, $4, TAG156 and $4, $4, $4 TAG156: sll $0, $0, 0 lui $4, 9 divu $4, $4 ori $3, $4, 14 TAG157: mtlo $3 or $1, $3, $3 sltiu $4, $1, 15 lbu $2, 0($4) TAG158: beq $2, $2, TAG159 and $3, $2, $2 multu $3, $2 sh $3, 0($2) TAG159: sw $3, 0($3) mthi $3 lh $3, 0($3) bne $3, $3, TAG160 TAG160: lui $4, 11 mthi $4 mfhi $1 sll $0, $0, 0 TAG161: div $1, $1 sltiu $4, $1, 5 ori $3, $1, 14 andi $3, $4, 12 TAG162: slt $1, $3, $3 mtlo $1 subu $3, $1, $3 bne $3, $3, TAG163 TAG163: multu $3, $3 beq $3, $3, TAG164 sh $3, 0($3) and $4, $3, $3 TAG164: sllv $4, $4, $4 bne $4, $4, TAG165 lw $4, 0($4) lui $4, 0 TAG165: addi $4, $4, 14 addu $2, $4, $4 beq $2, $4, TAG166 srlv $1, $4, $4 TAG166: lui $2, 2 sll $0, $0, 0 multu $2, $1 mtlo $1 TAG167: lhu $3, 0($3) mult $3, $3 bltz $3, TAG168 mtlo $3 TAG168: addu $3, $3, $3 mtlo $3 addiu $1, $3, 4 sh $3, 0($3) TAG169: bgez $1, TAG170 mfhi $2 beq $2, $1, TAG170 mfhi $2 TAG170: lhu $1, 0($2) blez $2, TAG171 sw $2, 0($2) blez $1, TAG171 TAG171: sh $1, 0($1) lw $4, 0($1) addi $3, $4, 9 addiu $2, $4, 5 TAG172: mflo $2 lui $1, 6 mfhi $2 beq $1, $2, TAG173 TAG173: mthi $2 bne $2, $2, TAG174 lbu $2, 0($2) slti $4, $2, 1 TAG174: beq $4, $4, TAG175 mflo $2 divu $2, $4 beq $2, $2, TAG175 TAG175: ori $3, $2, 3 subu $1, $3, $3 multu $2, $1 bne $3, $3, TAG176 TAG176: slti $2, $1, 0 mflo $1 mult $1, $2 lui $2, 1 TAG177: ori $4, $2, 2 beq $2, $2, TAG178 sll $0, $0, 0 lw $4, 0($2) TAG178: bne $4, $4, TAG179 lui $3, 3 mflo $2 lui $4, 13 TAG179: sll $0, $0, 0 multu $4, $1 beq $1, $1, TAG180 and $4, $1, $1 TAG180: sltu $3, $4, $4 mult $4, $3 lw $3, 0($4) mflo $2 TAG181: nor $2, $2, $2 ori $1, $2, 10 bne $1, $2, TAG182 lh $1, 1($2) TAG182: multu $1, $1 mtlo $1 lui $2, 4 ori $1, $1, 13 TAG183: sb $1, 0($1) lb $4, 0($1) lui $4, 6 beq $4, $4, TAG184 TAG184: sll $0, $0, 0 sll $0, $0, 0 mthi $2 bne $4, $4, TAG185 TAG185: sltu $2, $2, $2 sh $2, 0($2) sltiu $2, $2, 12 sltiu $2, $2, 4 TAG186: mfhi $3 mtlo $3 mtlo $3 addiu $2, $2, 5 TAG187: sb $2, 0($2) lhu $2, 0($2) bne $2, $2, TAG188 lui $2, 0 TAG188: ori $1, $2, 11 xor $1, $2, $2 sb $2, 0($1) mthi $1 TAG189: sw $1, 0($1) sh $1, 0($1) multu $1, $1 sra $3, $1, 13 TAG190: mfhi $4 subu $4, $3, $4 mfhi $4 bgtz $4, TAG191 TAG191: sw $4, 0($4) lbu $3, 0($4) sw $4, 0($3) or $3, $3, $4 TAG192: mthi $3 multu $3, $3 sra $4, $3, 11 bgez $3, TAG193 TAG193: multu $4, $4 mult $4, $4 lui $4, 7 bne $4, $4, TAG194 TAG194: mtlo $4 lui $4, 6 bgtz $4, TAG195 sll $0, $0, 0 TAG195: sb $2, 0($2) lb $1, 0($2) bne $1, $1, TAG196 add $4, $2, $1 TAG196: sh $4, 0($4) bltz $4, TAG197 xori $1, $4, 15 mthi $4 TAG197: mflo $3 slt $1, $1, $3 mthi $3 lui $1, 12 TAG198: mthi $1 div $1, $1 bne $1, $1, TAG199 divu $1, $1 TAG199: blez $1, TAG200 multu $1, $1 and $3, $1, $1 sll $0, $0, 0 TAG200: sll $0, $0, 0 sll $0, $0, 0 mult $3, $3 lui $3, 13 TAG201: addiu $4, $3, 2 bltz $3, TAG202 lui $1, 1 mtlo $4 TAG202: mtlo $1 xor $3, $1, $1 sltu $1, $1, $3 sll $4, $3, 14 TAG203: bltz $4, TAG204 or $4, $4, $4 lhu $1, 0($4) andi $3, $4, 14 TAG204: bltz $3, TAG205 sb $3, 0($3) sh $3, 0($3) lbu $3, 0($3) TAG205: sllv $1, $3, $3 sllv $2, $3, $1 multu $1, $3 bne $2, $3, TAG206 TAG206: mult $2, $2 srav $3, $2, $2 mtlo $3 addi $1, $2, 8 TAG207: bne $1, $1, TAG208 sltiu $3, $1, 13 lui $3, 15 lui $4, 8 TAG208: mthi $4 mtlo $4 mflo $3 lui $4, 9 TAG209: lui $3, 13 bltz $3, TAG210 sll $0, $0, 0 addu $4, $3, $3 TAG210: sll $0, $0, 0 lui $1, 8 addiu $4, $1, 2 sll $0, $0, 0 TAG211: mflo $4 sb $2, 0($2) bne $4, $4, TAG212 mtlo $4 TAG212: divu $4, $4 multu $4, $4 mtlo $4 sll $0, $0, 0 TAG213: lhu $4, 0($2) addi $2, $2, 12 mtlo $4 bne $2, $2, TAG214 TAG214: lui $3, 5 lui $4, 11 mflo $4 mflo $2 TAG215: mult $2, $2 srlv $1, $2, $2 andi $1, $2, 5 beq $1, $2, TAG216 TAG216: mflo $3 ori $4, $3, 11 subu $3, $1, $4 sltu $4, $1, $3 TAG217: sb $4, 0($4) sltu $2, $4, $4 multu $4, $2 bne $2, $2, TAG218 TAG218: mthi $2 sra $2, $2, 14 mtlo $2 lui $4, 13 TAG219: sll $0, $0, 0 bgtz $4, TAG220 multu $4, $1 lhu $4, 0($4) TAG220: mult $4, $4 beq $4, $4, TAG221 and $4, $4, $4 div $4, $4 TAG221: subu $2, $4, $4 nor $1, $2, $4 multu $1, $2 lw $2, 0($2) TAG222: sll $0, $0, 0 mult $1, $1 xor $4, $1, $1 lui $3, 15 TAG223: sll $0, $0, 0 sll $0, $0, 0 slti $4, $3, 15 mtlo $3 TAG224: sw $4, 0($4) bltz $4, TAG225 sb $4, 0($4) mfhi $4 TAG225: slti $3, $4, 11 mult $4, $3 sw $4, 0($3) bltz $4, TAG226 TAG226: mthi $3 lui $3, 13 beq $3, $3, TAG227 lui $3, 15 TAG227: sll $0, $0, 0 lui $3, 5 mfhi $3 sw $3, 0($3) TAG228: beq $3, $3, TAG229 mult $3, $3 sw $3, 0($3) srl $2, $3, 14 TAG229: div $2, $2 subu $4, $2, $2 andi $3, $2, 11 andi $4, $3, 5 TAG230: mflo $2 lhu $1, 0($4) mult $1, $1 bgez $1, TAG231 TAG231: andi $3, $1, 1 mtlo $3 xor $3, $3, $3 sra $3, $3, 0 TAG232: lui $2, 2 bne $3, $2, TAG233 addiu $2, $2, 15 sw $3, 0($3) TAG233: div $2, $2 mtlo $2 addiu $2, $2, 13 bgez $2, TAG234 TAG234: ori $1, $2, 7 mthi $2 mfhi $3 addiu $1, $3, 15 TAG235: slt $4, $1, $1 lui $2, 3 bne $4, $1, TAG236 sll $0, $0, 0 TAG236: lw $3, 0($4) lw $4, 0($4) bne $3, $4, TAG237 mflo $1 TAG237: sll $0, $0, 0 sll $0, $0, 0 mtlo $1 lui $2, 10 TAG238: mfhi $4 srl $2, $4, 6 lui $2, 7 mtlo $2 TAG239: lui $3, 3 srav $2, $2, $3 mtlo $3 mflo $3 TAG240: sltu $4, $3, $3 srlv $3, $4, $4 mult $3, $4 andi $2, $4, 13 TAG241: srlv $2, $2, $2 blez $2, TAG242 lui $1, 6 bne $1, $2, TAG242 TAG242: sll $0, $0, 0 div $4, $1 lui $2, 12 sll $0, $0, 0 TAG243: srl $4, $4, 9 lui $2, 2 mult $2, $4 bne $2, $4, TAG244 TAG244: sll $0, $0, 0 sll $0, $0, 0 mflo $4 divu $4, $1 TAG245: multu $4, $4 sra $3, $4, 13 beq $4, $4, TAG246 multu $4, $3 TAG246: mult $3, $3 beq $3, $3, TAG247 mflo $1 ori $1, $3, 5 TAG247: multu $1, $1 addiu $4, $1, 15 and $1, $4, $4 multu $1, $1 TAG248: div $1, $1 lui $3, 8 sb $1, 0($1) xor $2, $1, $3 TAG249: addu $3, $2, $2 sll $0, $0, 0 sll $0, $0, 0 addu $4, $2, $3 TAG250: beq $4, $4, TAG251 sll $0, $0, 0 mthi $4 bgez $4, TAG251 TAG251: divu $4, $4 sll $0, $0, 0 sll $0, $0, 0 mflo $1 TAG252: lb $4, 0($1) sra $4, $1, 11 subu $3, $4, $4 bgez $1, TAG253 TAG253: lb $3, 0($3) multu $3, $3 mthi $3 sllv $3, $3, $3 TAG254: sh $3, 0($3) ori $2, $3, 9 mflo $3 mflo $4 TAG255: sll $2, $4, 5 bltz $2, TAG256 and $3, $2, $2 mflo $2 TAG256: lui $3, 3 divu $3, $3 ori $3, $3, 7 lhu $4, 0($2) TAG257: multu $4, $4 mult $4, $4 sra $1, $4, 0 addi $2, $4, 2 TAG258: sb $2, 0($2) lhu $3, 0($2) blez $3, TAG259 subu $3, $2, $2 TAG259: mflo $1 xori $3, $3, 10 bgez $3, TAG260 mtlo $1 TAG260: bgtz $3, TAG261 sltiu $4, $3, 15 beq $4, $4, TAG261 mtlo $3 TAG261: beq $4, $4, TAG262 slti $3, $4, 0 bltz $4, TAG262 lh $3, 0($3) TAG262: mult $3, $3 mflo $3 bgtz $3, TAG263 mthi $3 TAG263: lui $1, 6 lui $4, 12 lui $4, 11 sll $0, $0, 0 TAG264: beq $4, $4, TAG265 div $4, $4 sw $4, 0($4) bne $4, $4, TAG265 TAG265: mflo $4 addu $4, $4, $4 mthi $4 mthi $4 TAG266: sb $4, 0($4) mfhi $2 lhu $4, 0($2) bgtz $2, TAG267 TAG267: lbu $1, 0($4) bgtz $4, TAG268 mtlo $1 mflo $3 TAG268: lui $1, 10 add $1, $3, $1 blez $3, TAG269 sllv $2, $3, $3 TAG269: mfhi $1 mfhi $2 xori $1, $2, 8 mflo $3 TAG270: lh $1, 0($3) bne $1, $1, TAG271 or $3, $1, $1 bgez $1, TAG271 TAG271: nor $3, $3, $3 bne $3, $3, TAG272 mtlo $3 div $3, $3 TAG272: bgtz $3, TAG273 sh $3, 0($3) mflo $4 mthi $3 TAG273: sh $4, 0($4) bne $4, $4, TAG274 mult $4, $4 subu $2, $4, $4 TAG274: srlv $2, $2, $2 sh $2, 0($2) mthi $2 lw $2, 0($2) TAG275: andi $1, $2, 13 sll $0, $0, 0 sub $4, $2, $1 mflo $3 TAG276: lbu $3, 0($3) mtlo $3 div $3, $3 bgez $3, TAG277 TAG277: lui $4, 2 mtlo $3 addiu $1, $3, 13 xori $1, $4, 15 TAG278: lui $4, 0 beq $1, $1, TAG279 lui $2, 3 lbu $2, 0($2) TAG279: mtlo $2 and $3, $2, $2 beq $2, $2, TAG280 mtlo $2 TAG280: sll $0, $0, 0 bgez $3, TAG281 mult $3, $3 sra $1, $3, 7 TAG281: or $3, $1, $1 lui $4, 8 srlv $1, $1, $4 mfhi $3 TAG282: sltiu $3, $3, 13 beq $3, $3, TAG283 lui $2, 4 beq $2, $2, TAG283 TAG283: sll $0, $0, 0 mflo $2 mtlo $2 addiu $3, $2, 8 TAG284: lui $4, 6 sb $3, 0($3) beq $4, $4, TAG285 mfhi $1 TAG285: sltiu $4, $1, 1 mfhi $3 mfhi $3 or $1, $1, $1 TAG286: lui $4, 8 beq $1, $4, TAG287 addiu $4, $4, 7 mfhi $2 TAG287: sll $4, $2, 8 lui $4, 8 bltz $2, TAG288 mtlo $4 TAG288: mult $4, $4 sll $0, $0, 0 mthi $4 sll $0, $0, 0 TAG289: sra $4, $4, 7 divu $4, $4 lhu $1, -4096($4) or $1, $4, $4 TAG290: beq $1, $1, TAG291 sh $1, -4096($1) lh $4, 0($1) div $1, $4 TAG291: slti $3, $4, 11 bgtz $4, TAG292 mult $3, $3 lui $2, 1 TAG292: xori $4, $2, 7 mfhi $1 addiu $1, $2, 9 bltz $1, TAG293 TAG293: and $1, $1, $1 sb $1, 0($1) mtlo $1 beq $1, $1, TAG294 TAG294: mtlo $1 addu $3, $1, $1 beq $3, $1, TAG295 subu $3, $1, $1 TAG295: sw $3, 0($3) mflo $4 lhu $1, 0($3) div $1, $4 TAG296: mflo $1 beq $1, $1, TAG297 sra $3, $1, 1 bne $1, $3, TAG297 TAG297: mflo $4 sh $4, 0($4) multu $3, $4 andi $1, $3, 6 TAG298: multu $1, $1 mult $1, $1 beq $1, $1, TAG299 mtlo $1 TAG299: nor $3, $1, $1 lui $4, 6 bne $3, $3, TAG300 mthi $3 TAG300: beq $4, $4, TAG301 mtlo $4 mthi $4 lui $2, 12 TAG301: mfhi $3 addu $1, $2, $3 lhu $2, 1($3) slti $4, $3, 12 TAG302: addiu $4, $4, 7 or $3, $4, $4 mfhi $2 sb $4, 0($3) TAG303: bgtz $2, TAG304 slt $4, $2, $2 lb $1, 1($2) sra $3, $1, 0 TAG304: mthi $3 xori $3, $3, 4 mthi $3 addiu $2, $3, 15 TAG305: lbu $3, 0($2) lui $3, 5 lui $1, 15 mfhi $4 TAG306: lui $3, 5 lb $4, 0($4) mtlo $4 srav $3, $4, $3 TAG307: sll $1, $3, 5 sh $3, -160($1) addu $1, $3, $3 mthi $3 TAG308: lb $3, 0($1) mfhi $2 divu $1, $2 mthi $3 TAG309: mflo $1 bgez $2, TAG310 mtlo $2 beq $1, $2, TAG310 TAG310: mtlo $1 bltz $1, TAG311 srl $2, $1, 15 mfhi $4 TAG311: mflo $3 bltz $3, TAG312 sw $3, 0($4) lui $1, 0 TAG312: slti $2, $1, 7 sh $1, 0($1) lb $4, 0($2) bgtz $4, TAG313 TAG313: mult $4, $4 mflo $2 slt $4, $4, $2 multu $4, $2 TAG314: nor $3, $4, $4 sw $4, 0($4) bgtz $3, TAG315 lh $1, 0($4) TAG315: blez $1, TAG316 mfhi $4 mthi $1 lui $1, 8 TAG316: mthi $1 mfhi $1 sw $1, 0($1) ori $4, $1, 6 TAG317: mtlo $4 bgtz $4, TAG318 div $4, $4 lhu $1, 0($4) TAG318: sh $1, 0($1) lw $1, 0($1) sltiu $4, $1, 11 xori $2, $4, 7 TAG319: bne $2, $2, TAG320 addu $3, $2, $2 srav $3, $3, $2 divu $3, $2 TAG320: bgez $3, TAG321 sw $3, 0($3) mtlo $3 divu $3, $3 TAG321: mthi $3 lh $3, 0($3) addi $4, $3, 2 bgez $4, TAG322 TAG322: divu $4, $4 addiu $3, $4, 13 divu $3, $3 blez $4, TAG323 TAG323: addu $2, $3, $3 mfhi $2 multu $2, $3 mtlo $2 TAG324: beq $2, $2, TAG325 mtlo $2 mfhi $4 ori $3, $4, 5 TAG325: lb $3, 0($3) mult $3, $3 beq $3, $3, TAG326 sll $2, $3, 8 TAG326: mthi $2 bgez $2, TAG327 lui $1, 7 mthi $2 TAG327: srlv $4, $1, $1 mflo $3 lui $4, 3 mflo $3 TAG328: lui $4, 14 mfhi $4 mfhi $3 sb $3, -3840($4) TAG329: lui $1, 12 div $1, $1 mthi $3 mfhi $2 TAG330: sll $0, $0, 0 mtlo $2 sw $3, -3840($3) sltiu $2, $3, 0 TAG331: beq $2, $2, TAG332 slt $3, $2, $2 sw $2, 0($2) mfhi $2 TAG332: beq $2, $2, TAG333 ori $1, $2, 12 bltz $1, TAG333 lh $1, 0($2) TAG333: nor $2, $1, $1 addiu $2, $2, 7 sra $1, $1, 5 mflo $1 TAG334: bltz $1, TAG335 lhu $2, -3840($1) lb $1, -3840($1) multu $1, $2 TAG335: lhu $4, 0($1) lhu $1, -3840($4) bne $1, $1, TAG336 mfhi $4 TAG336: sb $4, 0($4) mflo $4 bgez $4, TAG337 multu $4, $4 TAG337: ori $2, $4, 11 mflo $4 bgez $2, TAG338 sw $4, 0($4) TAG338: mfhi $4 sll $1, $4, 13 bgez $1, TAG339 sub $1, $4, $4 TAG339: sb $1, 0($1) sh $1, 0($1) mflo $4 mtlo $4 TAG340: sw $4, 0($4) mflo $2 sh $2, 0($4) multu $4, $2 TAG341: lui $2, 12 mthi $2 mfhi $2 sll $0, $0, 0 TAG342: sll $0, $0, 0 bgtz $2, TAG343 sll $0, $0, 0 bne $2, $2, TAG343 TAG343: andi $4, $4, 8 lh $1, 0($4) bgez $4, TAG344 multu $1, $4 TAG344: sb $1, 0($1) lb $1, 0($1) mult $1, $1 lh $2, 0($1) TAG345: mthi $2 mflo $1 lb $2, 0($2) mfhi $3 TAG346: lw $2, 0($3) mfhi $3 lb $1, 0($3) subu $1, $1, $3 TAG347: mflo $1 xori $1, $1, 1 sb $1, 0($1) lui $4, 3 TAG348: bgtz $4, TAG349 sll $0, $0, 0 mtlo $1 lw $3, 0($4) TAG349: mfhi $1 lbu $1, 0($3) mtlo $3 srl $1, $1, 8 TAG350: mtlo $1 lui $3, 5 lui $4, 6 bgez $1, TAG351 TAG351: mfhi $4 mtlo $4 sltiu $2, $4, 11 bne $4, $4, TAG352 TAG352: mflo $3 mflo $2 bgez $2, TAG353 mfhi $4 TAG353: sb $4, 0($4) bgtz $4, TAG354 lui $1, 1 divu $4, $1 TAG354: lui $3, 15 slti $1, $3, 8 bltz $1, TAG355 mtlo $1 TAG355: mfhi $1 blez $1, TAG356 lui $4, 7 beq $1, $1, TAG356 TAG356: ori $1, $4, 7 multu $1, $4 srl $4, $1, 1 divu $4, $1 TAG357: bgez $4, TAG358 sll $0, $0, 0 beq $4, $4, TAG358 addi $2, $4, 3 TAG358: bltz $2, TAG359 mtlo $2 bne $2, $2, TAG359 sw $2, 0($2) TAG359: lui $3, 10 lui $4, 3 subu $4, $2, $3 mthi $3 TAG360: beq $4, $4, TAG361 sll $0, $0, 0 lbu $4, 0($4) mflo $2 TAG361: lui $3, 7 sll $0, $0, 0 blez $2, TAG362 mfhi $1 TAG362: mult $1, $1 sltiu $1, $1, 8 mflo $1 sltu $2, $1, $1 TAG363: lui $2, 4 bgtz $2, TAG364 lui $3, 2 lui $2, 10 TAG364: sltiu $3, $2, 12 bne $2, $2, TAG365 sll $0, $0, 0 lui $1, 7 TAG365: andi $1, $1, 6 mult $1, $1 ori $2, $1, 2 sw $1, 0($1) TAG366: multu $2, $2 mflo $2 sw $2, 0($2) lw $3, 0($2) TAG367: divu $3, $3 lui $1, 13 lb $3, 0($3) subu $2, $3, $3 TAG368: bgez $2, TAG369 slti $3, $2, 5 lui $3, 12 slt $2, $3, $2 TAG369: lb $3, 0($2) bgez $3, TAG370 mfhi $4 sra $3, $2, 7 TAG370: bltz $3, TAG371 lhu $2, 0($3) bne $2, $3, TAG371 lui $3, 10 TAG371: addu $4, $3, $3 slt $2, $3, $3 bgez $3, TAG372 srav $4, $3, $4 TAG372: div $4, $4 mthi $4 sltu $2, $4, $4 mflo $3 TAG373: sra $2, $3, 0 lbu $1, 0($2) sra $4, $1, 3 mthi $4 TAG374: addu $2, $4, $4 sw $4, 0($2) mthi $4 xor $3, $2, $4 TAG375: sh $3, 0($3) add $3, $3, $3 mthi $3 lui $4, 0 TAG376: lui $2, 13 xori $4, $4, 2 divu $4, $4 lui $1, 0 TAG377: xori $3, $1, 8 andi $2, $1, 1 beq $2, $1, TAG378 sb $2, 0($2) TAG378: bgez $2, TAG379 lhu $3, 0($2) mflo $1 lui $4, 5 TAG379: bgez $4, TAG380 nor $4, $4, $4 mflo $4 mfhi $1 TAG380: sw $1, 0($1) mtlo $1 xori $3, $1, 8 mult $3, $1 TAG381: mfhi $3 mtlo $3 sltiu $4, $3, 8 lh $2, 0($3) TAG382: mthi $2 mult $2, $2 lui $3, 12 mthi $2 TAG383: srl $3, $3, 6 xor $1, $3, $3 lbu $2, -12288($3) lbu $2, 0($2) TAG384: mtlo $2 sub $2, $2, $2 sb $2, 0($2) sb $2, 0($2) TAG385: beq $2, $2, TAG386 mthi $2 sw $2, 0($2) lh $3, 0($2) TAG386: xor $4, $3, $3 mthi $3 beq $3, $4, TAG387 div $4, $3 TAG387: sh $4, 0($4) sllv $4, $4, $4 bltz $4, TAG388 mult $4, $4 TAG388: sh $4, 0($4) srlv $3, $4, $4 sltu $3, $4, $3 mfhi $3 TAG389: sh $3, 0($3) mult $3, $3 bne $3, $3, TAG390 mthi $3 TAG390: mfhi $1 blez $1, TAG391 sh $1, 0($3) blez $1, TAG391 TAG391: mthi $1 sub $3, $1, $1 beq $1, $3, TAG392 subu $1, $3, $1 TAG392: lui $2, 7 bltz $1, TAG393 lui $1, 6 subu $4, $2, $1 TAG393: mfhi $3 lb $2, 0($3) bne $4, $2, TAG394 sw $3, 0($3) TAG394: addiu $2, $2, 11 lbu $3, 0($2) lh $3, 0($3) mflo $2 TAG395: beq $2, $2, TAG396 lui $1, 7 beq $1, $2, TAG396 lui $1, 10 TAG396: lui $4, 0 srav $3, $1, $4 mthi $3 bgtz $1, TAG397 TAG397: sll $0, $0, 0 bne $3, $3, TAG398 xori $4, $3, 3 lui $3, 7 TAG398: blez $3, TAG399 sltiu $2, $3, 8 addi $4, $2, 8 bltz $4, TAG399 TAG399: mflo $3 xor $1, $3, $3 bltz $1, TAG400 lw $3, 0($4) TAG400: divu $3, $3 lbu $4, 0($3) lb $4, 0($4) addiu $2, $4, 14 TAG401: sb $2, 0($2) mfhi $3 bne $2, $2, TAG402 mult $3, $3 TAG402: mult $3, $3 andi $4, $3, 6 multu $3, $3 lui $1, 0 TAG403: lbu $4, 0($1) slti $3, $1, 15 mult $3, $1 mthi $3 TAG404: multu $3, $3 subu $1, $3, $3 lui $3, 8 mflo $3 TAG405: mtlo $3 lbu $4, 0($3) lbu $1, 0($3) mtlo $4 TAG406: lhu $2, 0($1) mfhi $4 addu $3, $4, $1 mthi $1 TAG407: sh $3, 0($3) addiu $3, $3, 13 lbu $4, 0($3) sb $3, 0($3) TAG408: bne $4, $4, TAG409 lui $4, 14 mthi $4 mthi $4 TAG409: mfhi $2 sll $2, $2, 6 subu $1, $2, $2 mthi $2 TAG410: mthi $1 mthi $1 multu $1, $1 sw $1, 0($1) TAG411: sb $1, 0($1) sb $1, 0($1) mfhi $2 beq $1, $2, TAG412 TAG412: xori $1, $2, 1 or $2, $2, $1 mflo $4 srl $4, $2, 7 TAG413: sh $4, 0($4) bne $4, $4, TAG414 lw $2, 0($4) multu $4, $4 TAG414: lui $3, 8 add $2, $2, $2 mfhi $3 lh $3, 0($2) TAG415: mult $3, $3 lui $3, 15 bgtz $3, TAG416 mtlo $3 TAG416: andi $3, $3, 15 bne $3, $3, TAG417 sb $3, 0($3) bne $3, $3, TAG417 TAG417: mflo $3 sra $1, $3, 0 sll $0, $0, 0 addiu $1, $3, 15 TAG418: mult $1, $1 mtlo $1 beq $1, $1, TAG419 mtlo $1 TAG419: sll $0, $0, 0 mthi $1 lui $3, 6 sll $0, $0, 0 TAG420: sltiu $3, $4, 7 lui $3, 8 bne $3, $3, TAG421 mfhi $4 TAG421: srav $4, $4, $4 div $4, $4 bgez $4, TAG422 lui $3, 4 TAG422: sll $0, $0, 0 lui $4, 15 sll $0, $0, 0 sll $0, $0, 0 TAG423: sll $0, $0, 0 lui $2, 0 bgez $1, TAG424 lui $1, 10 TAG424: lui $4, 4 bgez $4, TAG425 lui $1, 3 blez $4, TAG425 TAG425: mtlo $1 sll $0, $0, 0 mthi $1 sra $1, $4, 3 TAG426: divu $1, $1 mfhi $2 mtlo $1 mtlo $1 TAG427: multu $2, $2 mthi $2 lbu $1, 0($2) blez $1, TAG428 TAG428: mflo $1 bne $1, $1, TAG429 xori $3, $1, 4 lui $4, 5 TAG429: lui $1, 9 srl $2, $1, 8 div $4, $4 sb $2, -2304($2) TAG430: mflo $1 sb $1, 0($1) lui $2, 12 bne $2, $2, TAG431 TAG431: mult $2, $2 mtlo $2 mfhi $4 mtlo $2 TAG432: blez $4, TAG433 lui $2, 2 mthi $4 sw $4, -144($4) TAG433: bgtz $2, TAG434 mult $2, $2 mult $2, $2 mtlo $2 TAG434: bltz $2, TAG435 lui $3, 1 bgtz $2, TAG435 sll $0, $0, 0 TAG435: mflo $3 srlv $1, $3, $3 lw $2, 0($1) lhu $3, -144($2) TAG436: mtlo $3 divu $3, $3 mflo $1 lui $4, 2 TAG437: mtlo $4 beq $4, $4, TAG438 slti $4, $4, 1 mthi $4 TAG438: mflo $2 mfhi $2 lui $2, 3 sll $0, $0, 0 TAG439: bgez $2, TAG440 sllv $1, $2, $2 mtlo $2 divu $1, $2 TAG440: sll $0, $0, 0 divu $1, $1 andi $4, $1, 8 sll $0, $0, 0 TAG441: addiu $3, $2, 9 blez $3, TAG442 mthi $3 mflo $3 TAG442: mflo $3 bne $3, $3, TAG443 divu $3, $3 sb $3, 0($3) TAG443: mtlo $3 nor $2, $3, $3 lui $2, 5 bgtz $2, TAG444 TAG444: sll $0, $0, 0 beq $2, $2, TAG445 mfhi $1 beq $1, $1, TAG445 TAG445: lbu $1, 0($1) bgtz $1, TAG446 sb $1, -144($1) lui $1, 12 TAG446: lui $3, 10 beq $1, $3, TAG447 sll $0, $0, 0 mfhi $4 TAG447: sw $4, 0($4) mfhi $3 beq $3, $3, TAG448 sb $3, 0($3) TAG448: lui $4, 4 bne $3, $3, TAG449 mthi $3 mult $4, $4 TAG449: blez $4, TAG450 subu $1, $4, $4 beq $4, $1, TAG450 sll $4, $1, 9 TAG450: lui $1, 11 add $2, $4, $4 mfhi $1 blez $2, TAG451 TAG451: mfhi $4 ori $1, $1, 13 addiu $1, $1, 1 srlv $2, $1, $4 TAG452: mtlo $2 mthi $2 sb $2, 0($2) sub $2, $2, $2 TAG453: sb $2, 0($2) sltiu $4, $2, 15 beq $4, $2, TAG454 multu $4, $2 TAG454: lui $2, 15 sltiu $3, $2, 8 lui $4, 4 bne $2, $4, TAG455 TAG455: sll $0, $0, 0 lui $3, 3 divu $3, $4 mflo $3 TAG456: mfhi $4 mult $3, $3 or $4, $3, $3 lh $2, 0($4) TAG457: bgez $2, TAG458 lh $1, 0($2) mtlo $1 mfhi $1 TAG458: lhu $3, 0($1) addiu $1, $3, 6 sh $1, 0($1) slti $2, $1, 7 TAG459: div $2, $2 mtlo $2 sll $1, $2, 8 multu $1, $1 TAG460: xori $1, $1, 8 bne $1, $1, TAG461 sltiu $2, $1, 7 blez $1, TAG461 TAG461: lbu $4, 0($2) lbu $3, 0($4) sra $3, $3, 14 bne $2, $4, TAG462 TAG462: mtlo $3 mflo $1 bne $3, $1, TAG463 xor $1, $1, $1 TAG463: blez $1, TAG464 mfhi $4 lhu $2, 0($4) bne $4, $4, TAG464 TAG464: lbu $4, 0($2) multu $4, $4 lui $3, 11 lui $4, 14 TAG465: addiu $2, $4, 11 bgez $2, TAG466 sll $0, $0, 0 lb $3, 0($4) TAG466: mtlo $3 xor $3, $3, $3 sb $3, 0($3) lhu $4, 0($3) TAG467: addi $3, $4, 11 andi $4, $4, 3 lui $1, 7 mthi $1 TAG468: lui $4, 13 mflo $4 bgez $4, TAG469 mtlo $4 TAG469: beq $4, $4, TAG470 sll $0, $0, 0 sh $2, 0($2) bne $2, $2, TAG470 TAG470: lui $4, 13 bgtz $2, TAG471 mflo $2 sb $2, 0($2) TAG471: sll $0, $0, 0 mthi $2 sltiu $2, $2, 11 mflo $4 TAG472: sll $0, $0, 0 mflo $2 multu $2, $2 ori $1, $4, 13 TAG473: bne $1, $1, TAG474 andi $1, $1, 5 lui $4, 2 mtlo $4 TAG474: bgtz $4, TAG475 addu $1, $4, $4 beq $1, $1, TAG475 mult $1, $1 TAG475: beq $1, $1, TAG476 sra $4, $1, 4 mtlo $4 multu $4, $4 TAG476: bne $4, $4, TAG477 divu $4, $4 lui $4, 9 srav $4, $4, $4 TAG477: blez $4, TAG478 lui $2, 12 mfhi $4 beq $4, $4, TAG478 TAG478: mflo $3 lbu $1, 0($3) lbu $1, 0($4) blez $4, TAG479 TAG479: mfhi $2 mfhi $1 multu $1, $1 slti $1, $2, 2 TAG480: sllv $4, $1, $1 divu $4, $1 lui $2, 7 sb $1, 0($4) TAG481: mtlo $2 bltz $2, TAG482 mfhi $4 mtlo $2 TAG482: andi $3, $4, 7 sll $1, $3, 6 beq $1, $4, TAG483 mtlo $4 TAG483: srlv $3, $1, $1 sllv $1, $1, $3 lb $3, 0($3) sh $1, 0($1) TAG484: beq $3, $3, TAG485 mtlo $3 lbu $2, 0($3) bne $3, $2, TAG485 TAG485: mfhi $1 lui $2, 1 sll $0, $0, 0 mfhi $2 TAG486: sh $2, 0($2) mtlo $2 blez $2, TAG487 lw $4, 0($2) TAG487: sltu $3, $4, $4 lui $4, 14 multu $4, $3 beq $4, $4, TAG488 TAG488: multu $4, $4 lui $2, 3 mfhi $2 lui $2, 7 TAG489: lui $2, 11 nor $4, $2, $2 srav $2, $2, $2 bne $2, $2, TAG490 TAG490: xor $2, $2, $2 mfhi $3 sh $2, 0($2) lui $4, 6 TAG491: lui $1, 9 mfhi $3 bne $3, $1, TAG492 lui $2, 9 TAG492: bne $2, $2, TAG493 lui $3, 14 divu $3, $3 ori $1, $2, 7 TAG493: mtlo $1 divu $1, $1 div $1, $1 bne $1, $1, TAG494 TAG494: divu $1, $1 ori $1, $1, 3 addu $4, $1, $1 mtlo $1 TAG495: sll $0, $0, 0 slti $3, $4, 13 sll $0, $0, 0 sll $0, $0, 0 TAG496: sllv $4, $2, $2 bgtz $2, TAG497 xor $4, $2, $2 beq $4, $2, TAG497 TAG497: mult $4, $4 sw $4, 0($4) mfhi $3 add $4, $4, $3 TAG498: bgtz $4, TAG499 mthi $4 multu $4, $4 xori $3, $4, 2 TAG499: mfhi $1 lhu $2, 0($1) lb $2, 0($3) mtlo $2 TAG500: bgez $2, TAG501 addi $1, $2, 0 add $2, $2, $2 sh $1, 0($2) TAG501: mflo $3 slti $1, $2, 2 bne $3, $3, TAG502 sw $3, 0($2) TAG502: lbu $4, 0($1) beq $1, $1, TAG503 lui $2, 11 mfhi $4 TAG503: srl $2, $4, 14 bne $4, $2, TAG504 sh $2, 0($4) bgtz $4, TAG504 TAG504: lui $3, 0 mflo $3 sra $2, $3, 10 bltz $2, TAG505 TAG505: subu $1, $2, $2 bne $1, $2, TAG506 lui $3, 3 mthi $1 TAG506: sll $0, $0, 0 sll $0, $0, 0 mfhi $3 mfhi $4 TAG507: bne $4, $4, TAG508 lui $3, 13 lui $2, 10 lui $2, 7 TAG508: mult $2, $2 divu $2, $2 bne $2, $2, TAG509 mfhi $4 TAG509: sb $4, 0($4) lui $4, 6 srav $4, $4, $4 mfhi $4 TAG510: sll $1, $4, 11 beq $4, $4, TAG511 sw $4, 0($1) mthi $4 TAG511: sw $1, 0($1) lui $4, 10 mfhi $4 mtlo $4 TAG512: lh $1, 0($4) bltz $4, TAG513 sh $4, 0($1) lui $1, 13 TAG513: sll $0, $0, 0 multu $1, $1 sra $2, $1, 3 slti $1, $2, 4 TAG514: bgtz $1, TAG515 sb $1, 0($1) beq $1, $1, TAG515 lui $2, 0 TAG515: mthi $2 srl $4, $2, 2 lw $2, 0($4) sw $4, 0($2) TAG516: bgtz $2, TAG517 lui $2, 14 sll $2, $2, 10 mthi $2 TAG517: mflo $4 slti $1, $4, 4 mthi $1 beq $2, $2, TAG518 TAG518: mult $1, $1 bgtz $1, TAG519 and $3, $1, $1 lui $2, 12 TAG519: mfhi $1 subu $1, $2, $2 mult $2, $2 bne $2, $1, TAG520 TAG520: mfhi $4 mflo $1 bgtz $4, TAG521 lui $3, 15 TAG521: mthi $3 beq $3, $3, TAG522 sll $0, $0, 0 andi $1, $3, 10 TAG522: bgtz $1, TAG523 subu $1, $1, $1 lw $4, 0($1) mult $4, $4 TAG523: lui $4, 0 sb $4, 0($4) sltiu $3, $4, 14 beq $4, $4, TAG524 TAG524: sb $3, 0($3) blez $3, TAG525 sll $2, $3, 13 mult $3, $3 TAG525: srav $3, $2, $2 mfhi $1 subu $3, $3, $2 lui $2, 5 TAG526: mtlo $2 mthi $2 multu $2, $2 mtlo $2 TAG527: bgtz $2, TAG528 mult $2, $2 beq $2, $2, TAG528 lui $1, 14 TAG528: mult $1, $1 mfhi $2 lh $1, 0($1) mthi $1 TAG529: multu $1, $1 lb $3, -256($1) add $1, $3, $3 subu $4, $3, $1 TAG530: lhu $3, 0($4) mtlo $3 sra $1, $4, 15 bltz $1, TAG531 TAG531: mtlo $1 mult $1, $1 add $4, $1, $1 mtlo $1 TAG532: bgtz $4, TAG533 sh $4, 0($4) srlv $4, $4, $4 lui $2, 0 TAG533: sll $1, $2, 10 bne $2, $1, TAG534 lh $3, 0($1) bgtz $1, TAG534 TAG534: mfhi $4 sw $4, 0($3) srl $4, $4, 14 multu $3, $3 TAG535: bgez $4, TAG536 lw $1, 0($4) beq $1, $4, TAG536 lui $2, 9 TAG536: bne $2, $2, TAG537 lb $3, 0($2) bne $3, $2, TAG537 multu $2, $2 TAG537: sll $4, $3, 10 mtlo $4 slti $2, $4, 1 bgtz $4, TAG538 TAG538: mult $2, $2 andi $1, $2, 7 lb $1, 0($2) blez $1, TAG539 TAG539: sb $1, 0($1) and $1, $1, $1 bgez $1, TAG540 mthi $1 TAG540: lui $4, 7 mtlo $4 bgez $1, TAG541 mflo $1 TAG541: sll $0, $0, 0 mthi $1 sll $0, $0, 0 bgez $1, TAG542 TAG542: multu $1, $1 lui $1, 3 mfhi $2 bgez $1, TAG543 TAG543: lb $2, 0($2) mfhi $4 bgez $4, TAG544 mtlo $4 TAG544: mfhi $1 bne $1, $4, TAG545 sb $4, 0($1) mult $4, $4 TAG545: mfhi $1 xor $3, $1, $1 beq $1, $1, TAG546 srl $2, $1, 8 TAG546: lui $4, 7 sltu $1, $4, $2 mflo $4 mult $1, $1 TAG547: lui $1, 7 sra $4, $1, 9 mtlo $4 sb $4, -896($4) TAG548: srl $4, $4, 11 lui $1, 12 bltz $4, TAG549 mtlo $4 TAG549: sll $0, $0, 0 xori $3, $1, 15 lui $2, 8 lui $2, 9 TAG550: bne $2, $2, TAG551 sll $0, $0, 0 addiu $1, $2, 8 bgtz $1, TAG551 TAG551: sll $0, $0, 0 sll $0, $0, 0 mtlo $4 lui $2, 13 TAG552: bltz $2, TAG553 sll $0, $0, 0 mthi $2 bne $3, $2, TAG553 TAG553: mfhi $3 sll $0, $0, 0 divu $3, $3 blez $3, TAG554 TAG554: mthi $3 sll $0, $0, 0 mflo $2 subu $4, $4, $3 TAG555: sra $2, $4, 7 srav $1, $2, $4 lui $3, 0 addiu $2, $1, 12 TAG556: bgtz $2, TAG557 mtlo $2 blez $2, TAG557 mult $2, $2 TAG557: sll $0, $0, 0 mtlo $2 lui $2, 5 mthi $2 TAG558: sra $2, $2, 0 lui $2, 6 mfhi $4 mtlo $4 TAG559: mfhi $4 div $4, $4 sll $0, $0, 0 mthi $2 TAG560: sll $0, $0, 0 mfhi $2 bltz $2, TAG561 div $2, $2 TAG561: and $4, $2, $2 mthi $2 or $3, $2, $4 mtlo $4 TAG562: lui $4, 11 lui $3, 11 sll $0, $0, 0 mthi $3 TAG563: sll $3, $3, 12 lui $3, 6 sll $0, $0, 0 bne $3, $3, TAG564 TAG564: mflo $4 mthi $4 mflo $4 sll $0, $0, 0 TAG565: mfhi $2 sll $0, $0, 0 xor $1, $3, $2 lui $1, 10 TAG566: bne $1, $1, TAG567 mthi $1 bne $1, $1, TAG567 lui $3, 5 TAG567: xori $4, $3, 1 addiu $1, $3, 9 nor $2, $3, $1 slti $1, $4, 2 TAG568: mtlo $1 beq $1, $1, TAG569 lui $1, 11 lui $4, 1 TAG569: mthi $4 blez $4, TAG570 sltu $1, $4, $4 bgtz $1, TAG570 TAG570: mtlo $1 mflo $1 bne $1, $1, TAG571 lbu $3, 0($1) TAG571: beq $3, $3, TAG572 mfhi $3 mthi $3 sb $3, 0($3) TAG572: mult $3, $3 lui $3, 1 mult $3, $3 mfhi $1 TAG573: mflo $2 slti $1, $1, 11 mfhi $4 sb $2, 0($1) TAG574: addu $2, $4, $4 mtlo $2 srav $1, $2, $2 mfhi $4 TAG575: bgtz $4, TAG576 sb $4, 0($4) mflo $4 lui $1, 15 TAG576: sh $1, 0($1) sb $1, 0($1) mthi $1 slti $2, $1, 14 TAG577: beq $2, $2, TAG578 lui $3, 14 sllv $4, $3, $3 blez $2, TAG578 TAG578: slti $3, $4, 7 nor $4, $4, $4 mtlo $3 bgtz $3, TAG579 TAG579: lui $4, 13 mult $4, $4 sll $0, $0, 0 mfhi $4 TAG580: mflo $4 mflo $4 multu $4, $4 bne $4, $4, TAG581 TAG581: mfhi $2 mthi $4 mflo $4 blez $4, TAG582 TAG582: lbu $4, 0($4) srl $1, $4, 6 blez $1, TAG583 lbu $1, 0($1) TAG583: mfhi $1 lui $4, 11 sw $1, 0($1) lhu $3, 0($1) TAG584: sw $3, 0($3) addu $2, $3, $3 mtlo $2 mfhi $3 TAG585: mult $3, $3 multu $3, $3 sll $3, $3, 7 lui $2, 3 TAG586: sll $0, $0, 0 sll $0, $0, 0 mflo $1 sb $2, 0($1) TAG587: sra $1, $1, 3 lhu $1, 0($1) sub $4, $1, $1 blez $1, TAG588 TAG588: mult $4, $4 bne $4, $4, TAG589 srav $4, $4, $4 bne $4, $4, TAG589 TAG589: sh $4, 0($4) sw $4, 0($4) lw $1, 0($4) ori $4, $1, 7 TAG590: mult $4, $4 sb $4, 0($4) slti $2, $4, 8 lui $2, 4 TAG591: ori $4, $2, 11 sll $0, $0, 0 mult $4, $2 slti $2, $2, 12 TAG592: multu $2, $2 beq $2, $2, TAG593 slt $3, $2, $2 sw $3, 0($3) TAG593: mtlo $3 mthi $3 slt $1, $3, $3 beq $3, $1, TAG594 TAG594: mult $1, $1 mfhi $3 mfhi $3 mtlo $3 TAG595: mfhi $4 lui $3, 8 mult $3, $3 slt $4, $3, $3 TAG596: mflo $1 srlv $4, $1, $1 mfhi $2 bgez $4, TAG597 TAG597: mthi $2 div $2, $2 lbu $4, 0($2) slt $2, $4, $4 TAG598: beq $2, $2, TAG599 mtlo $2 bne $2, $2, TAG599 mflo $2 TAG599: lui $4, 6 sll $0, $0, 0 lui $4, 0 mtlo $4 TAG600: mfhi $4 multu $4, $4 lui $2, 1 addiu $1, $2, 13 TAG601: addiu $2, $1, 3 blez $1, TAG602 sll $0, $0, 0 sll $0, $0, 0 TAG602: lw $3, 0($4) mtlo $4 mthi $3 sllv $1, $4, $3 TAG603: lb $4, 0($1) mult $1, $4 bne $4, $4, TAG604 sh $1, 0($1) TAG604: mfhi $1 bltz $4, TAG605 lhu $4, 0($4) sh $4, 0($4) TAG605: addiu $1, $4, 8 lui $2, 15 multu $2, $1 multu $1, $4 TAG606: sll $0, $0, 0 multu $2, $2 bltz $2, TAG607 mflo $4 TAG607: mflo $2 beq $2, $4, TAG608 lui $3, 15 bne $2, $4, TAG608 TAG608: mult $3, $3 bgtz $3, TAG609 addiu $4, $3, 11 bgtz $4, TAG609 TAG609: sll $0, $0, 0 sll $0, $0, 0 lui $1, 2 mfhi $4 TAG610: mtlo $4 lui $4, 3 sll $0, $0, 0 sll $0, $0, 0 TAG611: blez $3, TAG612 div $3, $3 sltiu $1, $3, 0 lbu $4, 0($1) TAG612: lbu $4, 0($4) bltz $4, TAG613 lbu $3, 0($4) lui $1, 11 TAG613: bne $1, $1, TAG614 mfhi $2 bgtz $1, TAG614 srl $3, $2, 15 TAG614: mflo $2 bne $3, $3, TAG615 lb $2, 0($2) nor $2, $2, $3 TAG615: sh $2, 1($2) srav $3, $2, $2 multu $3, $2 mult $2, $2 TAG616: beq $3, $3, TAG617 sllv $1, $3, $3 sltu $4, $1, $3 slt $4, $3, $4 TAG617: bgtz $4, TAG618 lui $3, 13 bltz $3, TAG618 mult $3, $3 TAG618: sll $0, $0, 0 sll $0, $0, 0 mtlo $3 or $4, $3, $3 TAG619: bne $4, $4, TAG620 divu $4, $4 sll $0, $0, 0 bltz $4, TAG620 TAG620: lui $4, 6 sll $0, $0, 0 slti $4, $4, 14 mfhi $1 TAG621: multu $1, $1 mflo $3 beq $1, $3, TAG622 lui $2, 5 TAG622: lui $2, 11 sltiu $3, $2, 13 mfhi $2 beq $2, $3, TAG623 TAG623: mfhi $4 multu $2, $2 mfhi $2 sw $2, 0($2) TAG624: sb $2, 0($2) multu $2, $2 sw $2, 0($2) sh $2, 0($2) TAG625: addu $3, $2, $2 add $2, $2, $2 lui $4, 0 mthi $2 TAG626: mthi $4 multu $4, $4 lui $2, 4 lh $2, 0($4) TAG627: lhu $4, 0($2) bne $2, $2, TAG628 andi $4, $2, 9 bgtz $4, TAG628 TAG628: lbu $4, 0($4) lbu $1, 0($4) slt $4, $4, $1 lhu $3, 0($4) TAG629: mthi $3 sb $3, 0($3) xor $1, $3, $3 sb $1, 0($1) TAG630: mult $1, $1 lui $1, 5 beq $1, $1, TAG631 sll $0, $0, 0 TAG631: srlv $4, $1, $1 mtlo $1 bne $1, $4, TAG632 mflo $1 TAG632: lui $3, 14 sll $0, $0, 0 lui $4, 3 sll $0, $0, 0 TAG633: beq $4, $4, TAG634 divu $4, $4 bne $4, $4, TAG634 lw $2, 0($4) TAG634: lui $4, 5 divu $4, $4 lui $2, 11 lui $2, 7 TAG635: subu $3, $2, $2 and $1, $3, $2 blez $1, TAG636 nor $2, $3, $2 TAG636: sll $1, $2, 13 lui $1, 13 xori $1, $1, 13 lui $4, 5 TAG637: multu $4, $4 andi $2, $4, 10 sll $0, $0, 0 multu $1, $2 TAG638: beq $1, $1, TAG639 mflo $1 lb $4, 0($1) mtlo $4 TAG639: div $4, $4 sll $0, $0, 0 sllv $1, $4, $4 mtlo $4 TAG640: lui $4, 7 lui $4, 7 div $4, $4 divu $4, $4 TAG641: subu $2, $4, $4 addiu $2, $2, 11 multu $2, $2 bltz $2, TAG642 TAG642: mfhi $1 mult $1, $1 xori $2, $2, 9 lui $3, 8 TAG643: sltiu $2, $3, 11 sll $4, $2, 2 multu $4, $3 mfhi $4 TAG644: mfhi $2 bgtz $2, TAG645 add $3, $4, $4 sb $2, 0($4) TAG645: mflo $4 mthi $4 mfhi $1 sub $2, $1, $4 TAG646: addu $3, $2, $2 bltz $3, TAG647 sub $2, $3, $2 bne $2, $3, TAG647 TAG647: multu $2, $2 sra $1, $2, 11 multu $1, $1 xori $2, $2, 8 TAG648: lw $3, 0($2) mthi $2 multu $2, $3 blez $3, TAG649 TAG649: divu $3, $3 lui $4, 11 div $4, $3 nor $4, $4, $3 TAG650: xori $4, $4, 2 bne $4, $4, TAG651 multu $4, $4 div $4, $4 TAG651: xori $1, $4, 11 sll $0, $0, 0 beq $1, $4, TAG652 mfhi $2 TAG652: mfhi $3 lui $2, 8 xor $2, $2, $3 slti $2, $2, 5 TAG653: nor $3, $2, $2 mfhi $4 div $3, $3 bgez $3, TAG654 TAG654: mflo $4 sltu $4, $4, $4 sllv $4, $4, $4 mflo $1 TAG655: blez $1, TAG656 sb $1, 0($1) lbu $1, 0($1) multu $1, $1 TAG656: lui $4, 7 bne $1, $1, TAG657 sll $0, $0, 0 mthi $4 TAG657: blez $4, TAG658 sll $0, $0, 0 sllv $3, $1, $1 sb $1, 0($3) TAG658: blez $3, TAG659 subu $4, $3, $3 lhu $4, 0($3) lb $2, 0($3) TAG659: divu $2, $2 mthi $2 slt $2, $2, $2 sb $2, 0($2) TAG660: lui $1, 5 sb $1, 0($2) mthi $2 mult $2, $2 TAG661: sll $0, $0, 0 multu $1, $2 sw $2, 0($2) mflo $3 TAG662: and $1, $3, $3 sra $1, $1, 2 bne $3, $1, TAG663 add $2, $3, $1 TAG663: mthi $2 bgez $2, TAG664 lui $2, 3 bgtz $2, TAG664 TAG664: addu $4, $2, $2 lui $2, 8 mflo $2 multu $2, $2 TAG665: lh $1, 0($2) mult $2, $2 mthi $2 mflo $3 TAG666: beq $3, $3, TAG667 mult $3, $3 mthi $3 srlv $4, $3, $3 TAG667: bgtz $4, TAG668 sllv $3, $4, $4 addi $1, $4, 4 sw $4, 0($3) TAG668: sb $1, 0($1) mfhi $3 sw $1, 0($3) mflo $1 TAG669: xori $1, $1, 1 bgtz $1, TAG670 lbu $3, 0($1) mfhi $2 TAG670: addiu $4, $2, 10 sb $4, 0($4) mult $4, $2 blez $2, TAG671 TAG671: lhu $2, 0($4) sh $4, 0($2) mflo $1 lui $2, 15 TAG672: sll $0, $0, 0 mthi $2 bne $2, $2, TAG673 mtlo $2 TAG673: sltiu $1, $2, 10 lh $3, 0($1) xori $3, $1, 6 sll $0, $0, 0 TAG674: sh $3, 0($3) lui $3, 9 mthi $3 lui $1, 15 TAG675: sll $0, $0, 0 sll $0, $0, 0 div $1, $3 sll $0, $0, 0 TAG676: bgez $3, TAG677 sll $0, $0, 0 lw $4, 0($2) bne $2, $2, TAG677 TAG677: mfhi $3 mflo $3 lui $1, 15 bltz $3, TAG678 TAG678: sll $0, $0, 0 mtlo $3 mthi $3 bltz $1, TAG679 TAG679: or $4, $3, $3 addiu $3, $4, 9 nor $2, $3, $3 andi $3, $3, 2 TAG680: mthi $3 sh $3, 0($3) lui $2, 0 mflo $2 TAG681: bgtz $2, TAG682 mfhi $3 mtlo $3 bgtz $3, TAG682 TAG682: mthi $3 sllv $4, $3, $3 mthi $4 lbu $3, 0($3) TAG683: sh $3, 0($3) lui $4, 8 beq $3, $3, TAG684 sh $3, 0($3) TAG684: bltz $4, TAG685 sll $0, $0, 0 mflo $3 sll $0, $0, 0 TAG685: sra $2, $3, 15 mthi $3 bne $2, $2, TAG686 sb $2, 0($3) TAG686: beq $2, $2, TAG687 mtlo $2 blez $2, TAG687 srl $4, $2, 12 TAG687: ori $3, $4, 6 mflo $1 xor $1, $4, $1 sll $0, $0, 0 TAG688: nor $2, $1, $1 multu $1, $1 mthi $1 div $2, $1 TAG689: mult $2, $2 sll $1, $2, 0 slti $2, $1, 13 sb $2, 0($2) TAG690: divu $2, $2 andi $4, $2, 14 lui $3, 12 lb $3, 0($2) TAG691: lui $3, 1 lui $2, 12 bgtz $2, TAG692 sllv $2, $3, $3 TAG692: bgez $2, TAG693 srlv $3, $2, $2 mthi $2 mthi $2 TAG693: blez $3, TAG694 sll $0, $0, 0 bne $3, $3, TAG694 sll $0, $0, 0 TAG694: lui $3, 15 and $1, $1, $3 ori $1, $1, 12 div $3, $3 TAG695: andi $1, $1, 8 sw $1, 0($1) mult $1, $1 lbu $2, 0($1) TAG696: bgez $2, TAG697 mflo $4 div $2, $4 sh $4, 0($4) TAG697: mflo $2 bgtz $2, TAG698 sh $2, 0($4) divu $4, $4 TAG698: lui $1, 6 bgez $2, TAG699 subu $3, $1, $2 lhu $3, 0($2) TAG699: sll $0, $0, 0 mfhi $2 mult $2, $3 mflo $1 TAG700: multu $1, $1 lui $1, 11 mflo $1 lh $3, 0($1) TAG701: bgez $3, TAG702 mfhi $3 mtlo $3 div $3, $3 TAG702: mflo $2 addiu $2, $3, 15 div $2, $2 mult $2, $2 TAG703: and $2, $2, $2 multu $2, $2 bltz $2, TAG704 mfhi $3 TAG704: mtlo $3 lui $2, 5 lw $1, 0($3) addu $4, $2, $3 TAG705: beq $4, $4, TAG706 xor $2, $4, $4 ori $3, $4, 10 lui $1, 10 TAG706: sll $0, $0, 0 mult $1, $1 sll $0, $0, 0 div $1, $1 TAG707: lui $1, 15 sllv $3, $1, $1 slt $2, $3, $3 bltz $1, TAG708 TAG708: andi $1, $2, 7 lui $2, 10 slti $2, $2, 0 sltiu $4, $1, 7 TAG709: lui $2, 15 mtlo $2 multu $2, $2 divu $2, $4 TAG710: bltz $2, TAG711 multu $2, $2 ori $3, $2, 2 mfhi $4 TAG711: sw $4, -225($4) lui $4, 2 lui $2, 14 bltz $4, TAG712 TAG712: sll $0, $0, 0 div $1, $2 subu $2, $2, $1 beq $2, $2, TAG713 TAG713: or $2, $2, $2 beq $2, $2, TAG714 srav $3, $2, $2 lui $3, 10 TAG714: mult $3, $3 addiu $3, $3, 0 mthi $3 mflo $3 TAG715: mult $3, $3 mflo $2 bgez $2, TAG716 sltu $4, $2, $3 TAG716: multu $4, $4 sub $1, $4, $4 mthi $1 bltz $1, TAG717 TAG717: mthi $1 mfhi $4 mfhi $3 sw $3, 0($3) TAG718: ori $1, $3, 10 bne $3, $3, TAG719 sh $3, 0($3) sh $1, 0($1) TAG719: multu $1, $1 bne $1, $1, TAG720 lui $3, 1 addiu $2, $1, 1 TAG720: multu $2, $2 mthi $2 mtlo $2 or $4, $2, $2 TAG721: sb $4, 0($4) mflo $1 blez $4, TAG722 ori $1, $1, 15 TAG722: bgez $1, TAG723 mthi $1 lui $4, 10 mtlo $4 TAG723: sb $4, 0($4) mthi $4 bgez $4, TAG724 lbu $3, 0($4) TAG724: mtlo $3 mtlo $3 lb $3, 0($3) bne $3, $3, TAG725 TAG725: lbu $1, 0($3) sb $3, 0($3) beq $1, $3, TAG726 srlv $4, $3, $3 TAG726: mthi $4 mult $4, $4 mthi $4 sltu $3, $4, $4 TAG727: multu $3, $3 bne $3, $3, TAG728 mflo $2 bgez $3, TAG728 TAG728: lui $4, 9 bne $2, $4, TAG729 sltiu $1, $2, 15 lui $2, 0 TAG729: mflo $3 slt $2, $3, $2 multu $3, $2 lb $1, 0($2) TAG730: sh $1, 0($1) lui $3, 3 sll $0, $0, 0 mfhi $1 TAG731: lui $3, 12 mflo $2 lui $1, 4 div $3, $1 TAG732: sll $0, $0, 0 srlv $3, $3, $3 multu $1, $3 bne $1, $3, TAG733 TAG733: slt $4, $3, $3 div $3, $3 sw $3, 0($4) sltiu $1, $4, 6 TAG734: lui $1, 10 mthi $1 sll $0, $0, 0 sll $0, $0, 0 TAG735: beq $3, $3, TAG736 sll $0, $0, 0 mult $3, $3 lui $1, 15 TAG736: slt $2, $1, $1 mthi $2 sll $0, $0, 0 lui $1, 15 TAG737: lui $2, 4 lui $4, 0 sll $0, $0, 0 mthi $4 TAG738: sb $4, 0($4) mthi $4 xori $2, $4, 4 mflo $1 TAG739: lbu $4, 0($1) or $4, $1, $1 sb $4, 0($4) xori $3, $1, 11 TAG740: mtlo $3 multu $3, $3 mthi $3 mflo $3 TAG741: lh $1, 0($3) bltz $3, TAG742 lbu $2, 0($1) sra $1, $1, 4 TAG742: nor $2, $1, $1 ori $3, $2, 2 mflo $3 xor $1, $2, $3 TAG743: multu $1, $1 lui $2, 4 beq $1, $1, TAG744 mthi $2 TAG744: sltu $4, $2, $2 mthi $2 lbu $3, 0($4) bltz $2, TAG745 TAG745: mthi $3 mflo $1 sh $1, 0($3) bltz $1, TAG746 TAG746: multu $1, $1 lw $3, -10201($1) lui $2, 12 div $1, $1 TAG747: mult $2, $2 and $3, $2, $2 div $2, $2 addu $4, $2, $3 TAG748: or $3, $4, $4 mflo $3 bne $3, $3, TAG749 mthi $3 TAG749: sltu $3, $3, $3 bltz $3, TAG750 mfhi $1 mthi $3 TAG750: nop nop test_end: beq $0, $0, test_end nop
programs/oeis/256/A256666.asm
jmorken/loda
1
160633
; A256666: a(n) = ( 2*n*(2*n^2 + 11*n + 26) - (-1)^n + 1 )/16. ; 0,5,14,29,51,82,123,176,242,323,420,535,669,824,1001,1202,1428,1681,1962,2273,2615,2990,3399,3844,4326,4847,5408,6011,6657,7348,8085,8870,9704,10589,11526,12517,13563,14666,15827,17048,18330,19675,21084,22559,24101,25712,27393,29146,30972,32873,34850,36905,39039,41254,43551,45932,48398,50951,53592,56323,59145,62060,65069,68174,71376,74677,78078,81581,85187,88898,92715,96640,100674,104819,109076,113447,117933,122536,127257,132098,137060,142145,147354,152689,158151,163742,169463,175316,181302,187423,193680,200075,206609,213284,220101,227062,234168,241421,248822,256373,264075,271930,279939,288104,296426,304907,313548,322351,331317,340448,349745,359210,368844,378649,388626,398777,409103,419606,430287,441148,452190,463415,474824,486419,498201,510172,522333,534686,547232,559973,572910,586045,599379,612914,626651,640592,654738,669091,683652,698423,713405,728600,744009,759634,775476,791537,807818,824321,841047,857998,875175,892580,910214,928079,946176,964507,983073,1001876,1020917,1040198,1059720,1079485,1099494,1119749,1140251,1161002,1182003,1203256,1224762,1246523,1268540,1290815,1313349,1336144,1359201,1382522,1406108,1429961,1454082,1478473,1503135,1528070,1553279,1578764,1604526,1630567,1656888,1683491,1710377,1737548,1765005,1792750,1820784,1849109,1877726,1906637,1935843,1965346,1995147,2025248,2055650,2086355,2117364,2148679,2180301,2212232,2244473,2277026,2309892,2343073,2376570,2410385,2444519,2478974,2513751,2548852,2584278,2620031,2656112,2692523,2729265,2766340,2803749,2841494,2879576,2917997,2956758,2995861,3035307,3075098,3115235,3155720,3196554,3237739,3279276,3321167,3363413,3406016,3448977,3492298,3535980,3580025,3624434,3669209,3714351,3759862,3805743,3851996,3898622,3945623 mov $4,$0 pow $0,2 add $0,5 mov $1,$0 mov $2,$0 add $2,$4 mov $3,7 lpb $0 add $0,$1 sub $0,1 add $3,$4 sub $0,$3 div $1,2 add $1,$0 mov $0,$4 mul $2,$3 sub $2,$1 mov $1,1 mul $2,24 lpe add $1,$2 sub $1,721 div $1,96
oeis/010/A010638.asm
neoneye/loda-programs
11
18441
; A010638: Decimal expansion of cube root of 68. ; Submitted by <NAME> ; 4,0,8,1,6,5,5,1,0,1,9,1,7,3,4,8,0,7,0,5,6,5,7,8,1,6,1,3,2,2,6,0,4,2,9,6,5,2,0,7,2,7,6,5,8,2,4,5,3,4,3,8,9,5,5,2,0,9,3,3,9,4,0,1,3,0,2,6,5,2,7,2,8,2,2,3,3,5,6,9,6,4,4,6,3,8,1,1,3,0,9,8,7,5,0,9,9,3,3,3 mov $3,$0 mul $3,2 lpb $3 add $6,$2 add $1,$6 add $1,$2 add $1,64 mov $2,$1 mul $2,16 sub $3,1 add $5,$2 add $6,$5 lpe mov $1,$5 mov $4,10 pow $4,$0 mul $4,4 div $2,$4 add $2,1 div $1,$2 mov $0,$1 add $0,$4 mod $0,10
test/fail/NoTerminationCheck3.agda
asr/agda-kanso
1
16503
<reponame>asr/agda-kanso -- 2012-03-08 Andreas module NoTerminationCheck3 where data Bool : Set where true false : Bool f : Bool -> Bool f true = true {-# NO_TERMINATION_CHECK #-} f false = false -- error: cannot place pragma inbetween clauses
apps/breakfast/pde_fw/toast/examples/Assembly (CCE)/msp430x24x_uscib0_i2c_04.asm
tp-freeforall/breakfast
1
20735
;******************************************************************************* ; MSP430x24x Demo - USCI_B0 I2C Master RX single bytes from MSP430 Slave ; ; Description: This demo connects two MSP430's via the I2C bus. The master ; reads from the slave. This is the MASTER code. The data from the slave ; transmitter begins at 0 and increments with each transfer. The received ; data is in R5 and is checked for validity. If the received data is ; incorrect, the CPU is trapped and the P1.0 LED will stay on. The USCI_B0 ; RX interrupt is used to know when new data has been received. ; ACLK = n/a, MCLK = SMCLK = BRCLK = default DCO = ~1.045MHz ; ; /|\ /|\ ; MSP430F249 10k 10k MSP430F249 ; slave | | master ; ----------------- | | ----------------- ; -|XIN P3.1/UCB0SDA|<-|---+->|P3.1/UCB0SDA XIN|- ; | | | | | 32kHz ; -|XOUT | | | XOUT|- ; | P3.2/UCB0SCL|<-+----->|P3.2/UCB0SCL | ; | | | P1.0|--> LED ; ; <NAME> ; Texas Instruments Inc. ; May 2008 ; Built Code Composer Essentials: v3 FET ;******************************************************************************* .cdecls C,LIST, "msp430x24x.h" ;------------------------------------------------------------------------------- .text ;Program Start ;------------------------------------------------------------------------------- RESET mov.w #0500h,SP ; Initialize stackpointer StopWDT mov.w #WDTPW+WDTHOLD,&WDTCTL ; Stop WDT SetupP1 bic.b #01h,&P1OUT ; P1.0 = 0 bis.b #01h,&P1DIR ; P1.0 output SetupP3 bis.b #06h,&P3SEL ; Assign I2C pins to USCI_B0 SetupUCB0 bis.b #UCSWRST,&UCB0CTL1 ; Enable SW reset mov.b #UCMST+UCMODE_3+UCSYNC,&UCB0CTL0 ; I2C Master, synchronous mode mov.b #UCSSEL_2+UCSWRST,&UCB0CTL1 ; Use SMCLK, keep SW reset mov.b #12,&UCB0BR0 ; fSCL = SMCLK/12 = ~100kHz mov.b #00,&UCB0BR1 mov.w #048h,&UCB0I2CSA ; Slave Address is 048h bic.b #UCSWRST,&UCB0CTL1 ; Clear SW reset, resume operation bis.b #UCB0RXIE,&IE2 ; Enable RX interrupt clr.b R6 ; Uses R6 to check incoming data Main bit.b #UCTXSTP,&UCB0CTL1 ; Ensure stop condition got sent jc Main bis.b #UCTXSTT,&UCB0CTL1 ; I2C start condition Main_1 bit.b #UCTXSTT,&UCB0CTL1 ; Start condition sent? jc Main_1 bis.b #UCTXSTP,&UCB0CTL1 ; I2C stop condition bis.b #LPM0+GIE,SR ; Enter LPM0, enable interrupts cmp.b R5,R6 ; Test received data jne Trap ; Trap CPU if wrong inc.b R6 ; Increment correct RX value jmp Main ; Repeat Trap bis.b #01h,&P1OUT ; P1.0 = 1 jmp $ ; Trap CPU ;------------------------------------------------------------------------------- USCIAB0TX_ISR; USCI_B0 Data ISR ;------------------------------------------------------------------------------- mov.b &UCB0RXBUF,R5 ; RX data in R5 bic.w #LPM0,0(SP) ; Clear LPM0 reti ;------------------------------------------------------------------------------- ; Interrupt Vectors ;------------------------------------------------------------------------------- .sect ".int22" ; USCI_B0 I2C Data Int Vector .short USCIAB0TX_ISR .sect ".reset" ; POR, ext. Reset, Watchdog .short RESET .end
libsrc/oz/ozserial/ozserinton.asm
andydansby/z88dk-mk2
1
242850
; ; Sharp OZ family functions ; ; ported from the OZ-7xx SDK by by <NAME> ; by <NAME> - Oct. 2003 ; ; Serial libraries ; ; ; ------ ; $Id: ozserinton.asm,v 1.2 2003/10/23 10:42:50 stefano Exp $ ; XLIB ozserinton LIB ozcustomisr XREF serial_hook XREF rxxoff_hook LIB ozintwait XREF serial_check_hook LIB serial_int XREF serial_int_check XREF rxxoff_handler ozserinton: ld hl,serial_int ld (serial_hook+1),hl ld hl,serial_int_check ld (serial_check_hook+1),hl ld hl,rxxoff_handler ld (rxxoff_hook+1),hl in a,(7) and 0ffh-4 out (7),a ld a,1 out (41h),a ret
demo/src/demo_single.adb
mosteo/yeison
6
13934
with Ada.Text_IO; use Ada.Text_IO; with Yeison_Single; procedure Demo_Single is package Yeison renames Yeison_Single; use Yeison.Operators; A1 : constant Yeison.Any := 1; -- An integer atom; A2 : constant Yeison.Any := "string"; -- A string atom A3 : constant Yeison.Any := Yeison.True; -- A Boolean atom A4 : constant Yeison.Any := 3.14; -- A real atom M1 : constant Yeison.Any := ("one" => A1, "two" => A2); -- A map initialized with yeison atoms M2 : constant Yeison.Any := ("one" => 1, "two" => "two"); -- A map initialized with literals M3 : constant Yeison.Any := ("one" => A1, "two" => "two", "three" => M2); -- A map containing other maps V1 : constant Yeison.Any := +(A1, A2); -- A vector initialized with atoms V2 : constant Yeison.Any := +(1, 2, 3) with Unreferenced; -- A vector initialized with integer literals V3 : constant Yeison.Any := +("one", "two", "three") with Unreferenced; -- A vector initialized with string literals V4 : constant Yeison.Any := ("one", 2, "three", 4.0); -- A vector made of mixed atoms/literals M4 : constant Yeison.Any := ("one" => A1, "two" => 2, "three" => M3, "four" => V4); -- A map initialized with all kinds of elements V5 : constant Yeison.Any := (A1, 2, M3, V4, "five"); -- A vector initialized with all kinds of elements M5 : constant Yeison.Any := ("one" => 1, "two" => ("two" => 2, "three" => M3), "zri" => +(1, 2, 3)); -- Inline declaration of nested maps/vectors. Unfortunately the qualification is mandatory. V6 : constant Yeison.Any := (1, +(1, 2), ("one" => 1, "two" => M2)); -- A vector with a nested vector/map. Same problem as with maps. X0 : Yeison.Any; X1 : constant Yeison.Any := 1; X2 : constant Yeison.Any := "two"; X3 : constant Yeison.Any := M4; X4 : constant Yeison.Any := V5; -- Storing any kind of value in a variable begin X0 := 1; Put_Line (X0.Image); X0 := "one"; Put_Line (X0.Image); Put_Line (M1.Image); Put_Line (V1.Image); Put_Line (M5.Image); Put_Line (M4 ("one").Image); Put_Line (V6 (1).Image); end Demo_Single;
src/clic-subcommand-instance.ads
reznikmm/clic
0
25921
<gh_stars>0 -- Instantiate this package to create a sub-command parser/executor generic Main_Command_Name : String; -- Name of the main command or program Version : String; -- Version of the program with procedure Set_Global_Switches (Config : in out CLIC.Subcommand.Switches_Configuration); -- This procedure should define the global switches using the -- Register_Switch procedures of the CLIC.Subcommand package. with procedure Put (Str : String); -- Used to print help and usage with procedure Put_Line (Str : String); -- Used to print help and usage with procedure Put_Error (Str : String); -- Used to print errors with procedure Error_Exit (Code : Integer); -- Used to signal that the program should terminate with the give error -- code. Typicaly use GNAT.OS_Lib.OS_Exit. -- The procedures below are used to format the output such as usage and -- help. Use CLIC.Subcommand.No_TTY if you don't want or need formating. with function TTY_Chapter (Str : String) return String; with function TTY_Description (Str : String) return String; with function TTY_Version (Str : String) return String; with function TTY_Underline (Str : String) return String; with function TTY_Emph (Str : String) return String; package CLIC.Subcommand.Instance is procedure Register (Cmd : not null Command_Access); -- Register a sub-command procedure Register (Group : String; Cmd : not null Command_Access); -- Register a sub-command in a group procedure Register (Topic : not null Help_Topic_Access); -- Register an help topic procedure Execute; -- Parse the command line and execute a sub-command or display help/usage -- depending on command line args. procedure Parse_Global_Switches; -- Optional. Call this procedure before Execute to get only global switches -- parsed. This can be useful to check the values of global switches before -- running a sub-command or change the behavior of your program based on -- these (e.g. verbosity, output color, etc.). function What_Command return String; procedure Display_Usage (Displayed_Error : Boolean := False); procedure Display_Help (Keyword : String); Error_No_Command : exception; Command_Already_Defined : exception; type Builtin_Help is new Command with private; -- Use Register (new Builtin_Help); to provide a build-in help command private -- Built-in Help Command -- type Builtin_Help is new Command with null record; overriding function Name (This : Builtin_Help) return Identifier is ("help"); overriding procedure Execute (This : in out Builtin_Help; Args : AAA.Strings.Vector); overriding function Long_Description (This : Builtin_Help) return AAA.Strings.Vector is (AAA.Strings.Empty_Vector .Append ("Shows information about commands and topics.") .Append ("See available commands with '" & Main_Command_Name & " help commands'") .Append ("See available topics with '" & Main_Command_Name & " help topics'.")); overriding procedure Setup_Switches (This : in out Builtin_Help; Config : in out CLIC.Subcommand.Switches_Configuration) is null; overriding function Short_Description (This : Builtin_Help) return String is ("Shows help on the given command/topic"); overriding function Usage_Custom_Parameters (This : Builtin_Help) return String is ("[<command>|<topic>]"); end CLIC.Subcommand.Instance;
block-3/pp/block3/cc/antlr/CC5/CC3Vocab.g4
tcoenraad/compiler-construction
1
3453
<reponame>tcoenraad/compiler-construction lexer grammar CC3Vocab; @header{package pp.block3.cc.antlr.CC5;} POWER : '^'; PLUS : '+'; EQUAL : '='; LPAR : '('; RPAR : ')'; NUM : [0-9]+; BOOL : 'true' | 'false'; STR : '\'' [a-zA-Z]+ '\''; // ignore whitespace WS : [ \t\n\r] -> skip;
pkgs/tools/yasm/src/modules/arch/x86/tests/far64.asm
manggoguy/parsec-modified
2,151
95247
[bits 64] call far dword [0] call far qword [0] call far [0] jmp far dword [0] jmp far qword [0] jmp far [0]
libsrc/compress/zx7/dzx7_smart_rcs_callee.asm
jpoikela/z88dk
38
104993
<reponame>jpoikela/z88dk ; void dzx7_smart_rcs_callee(void *src, void *dst) SECTION code_clib SECTION code_compress_zx7 PUBLIC _dzx7_smart_rcs_callee EXTERN asm_dzx7_smart_rcs _dzx7_smart_rcs_callee: pop hl pop de ex (sp),hl jp asm_dzx7_smart_rcs
programs/oeis/178/A178881.asm
karttu/loda
0
165522
<reponame>karttu/loda<filename>programs/oeis/178/A178881.asm ; A178881: Sum of all pairs of greater common divisors for (i,j) where 1 <= i < j <= n. ; 0,1,3,7,11,20,26,38,50,67,77,105,117,142,172,204,220,265,283,335,379,420,442,518,558,607,661,737,765,870,900,980,1052,1117,1199,1331,1367,1440,1526,1666,1706,1859,1901,2025,2169,2258,2304,2496,2580,2725,2839,2987,3039,3228,3362,3566,3694,3807,3865,4165,4225,4346,4556,4748,4908,5157,5223,5419,5575,5856,5926,6274,6346,6491,6741,6961,7157,7454,7532,7884,8100,8261,8343,8779,8991,9160,9358,9690,9778,10255,10489,10757,10969,11154,11392,11856,11952,12253,12595,13015,13115,13508,13610,14006,14486,14695,14801,15341,15449,15906,16160,16672,16784,17225,17515,17855,18263,18496,18806,19586,19806,20047,20329,20693,20993,21686,21812,22260,22556,23101,23231,23939,24287,24552,25146,25670,25806,26343,26481,27277,27601,27882,28264,29128,29496,29785,30303,30739,30887,31712,31862,32450,32990,33655,34049,34893,35049,35362,35728,36576,37000,37729,37891,38375,39155,39484,39650,40782,41094,41815,42421,42929,43101,43782,44452,45284,45692,46045,46223,47555,47735,48528,48950,49666,50138,50867,51373,51929,52793,53602,53792,54880,55072,55457,56387,57255,57451,58576,58774,59874,60338,60739,61277,62393,62917,63326,64064,65056,65624,67169,67379,68007,68499,68924,69474,70878,71454,71887,72393,73685,74289,75162,75384,76616,77756,78205,78431,79683,79911,80896,82030,82938,83170,84511,85113,85813,86361,87410,87648,89568,89808,90589,91399,92123,93075,94044,94722,95694,96270,97295 mov $16,$0 mov $18,$0 lpb $18,1 clr $0,16 mov $0,$16 sub $18,1 sub $0,$18 lpb $0,1 add $2,1 mov $1,$2 gcd $1,$0 sub $0,1 add $4,$1 lpe add $17,$4 lpe mov $1,$17
programs/oeis/192/A192758.asm
neoneye/loda
22
80013
; A192758: Coefficient of x in the reduction by x^2->x+1 of the polynomial p(n,x) defined below in Comments. ; 0,1,2,4,7,13,22,37,61,101,165,269,437,710,1151,1865,3020,4890,7915,12810,20730,33546,54282,87834,142122,229963,372092,602062,974161,1576231,2550400,4126639,6677047,10803695,17480751,28284455,45765215 lpb $0 mov $2,$0 trn $0,4 add $2,1 seq $2,71 ; a(n) = Fibonacci(n) - 1. add $1,$2 lpe mov $0,$1
programs/oeis/062/A062708.asm
jmorken/loda
1
10226
; A062708: Write 0,1,2,3,4,... in a triangular spiral; then a(n) is the sequence found by reading the terms along the line from 0 in the direction 0,2,... ; 0,2,13,33,62,100,147,203,268,342,425,517,618,728,847,975,1112,1258,1413,1577,1750,1932,2123,2323,2532,2750,2977,3213,3458,3712,3975,4247,4528,4818,5117,5425,5742,6068,6403,6747,7100,7462,7833,8213,8602,9000,9407,9823,10248,10682,11125,11577,12038,12508,12987,13475,13972,14478,14993,15517,16050,16592,17143,17703,18272,18850,19437,20033,20638,21252,21875,22507,23148,23798,24457,25125,25802,26488,27183,27887,28600,29322,30053,30793,31542,32300,33067,33843,34628,35422,36225,37037,37858,38688,39527,40375,41232,42098,42973,43857,44750,45652,46563,47483,48412,49350,50297,51253,52218,53192,54175,55167,56168,57178,58197,59225,60262,61308,62363,63427,64500,65582,66673,67773,68882,70000,71127,72263,73408,74562,75725,76897,78078,79268,80467,81675,82892,84118,85353,86597,87850,89112,90383,91663,92952,94250,95557,96873,98198,99532,100875,102227,103588,104958,106337,107725,109122,110528,111943,113367,114800,116242,117693,119153,120622,122100,123587,125083,126588,128102,129625,131157,132698,134248,135807,137375,138952,140538,142133,143737,145350,146972,148603,150243,151892,153550,155217,156893,158578,160272,161975,163687,165408,167138,168877,170625,172382,174148,175923,177707,179500,181302,183113,184933,186762,188600,190447,192303,194168,196042,197925,199817,201718,203628,205547,207475,209412,211358,213313,215277,217250,219232,221223,223223,225232,227250,229277,231313,233358,235412,237475,239547,241628,243718,245817,247925,250042,252168,254303,256447,258600,260762,262933,265113,267302,269500,271707,273923,276148,278382 sub $1,$0 mul $0,3 bin $0,2 add $1,$0
kernel.asm
miles-canfield/Lassen-Peak
0
105205
bits 64 default rel org 0xffffff7fbf800000 %include "kernel_data.asm" kernel_entry: mov eax, 0x00000001 cpuid and edx, 0x00000100 jnz cpu_has_apic mov rsi, no_apic_message call panic cpu_has_apic: ;; Get CPU Vendor ID String mov eax, 0x00000000 cpuid mov rdi, cpu_vendor_string mov [rdi], ebx mov [rdi+0x04], edx mov [rdi+0x08], ecx mov rsi, cpu_vendor_string mov rbx, 0x07 call print cli hlt interrupt_routine: mov rsi, interrupt_message mov rbx, 0x07 call print iretq page_fault_isr: mov rsi, page_fault_message mov rbx, 0x4f call print mov r15, cr2 call print_r15 cli hlt print_newline: push rdx push rbx push rax xor edx, edx mov eax, [cursor_location] mov ebx, 0x000000a0 div bx add [cursor_location], dword 0xa0 sub [cursor_location], edx pop rax pop rbx pop rdx ret print_space: mov [cursor_location + 0xb8000], word 0x2002 add [cursor_location], dword 0x02 ret panic: mov eax, 0x4f call clear_screen mov [cursor_location], dword 0xf00 mov ebx, 0x4f call print cli hlt ;;; Prints string in rsi using rbx for color. print: mov rdi, 0xb8000 add edi, [cursor_location] mov ah, bl cld .loop: lodsb or al, al jz .end stosw add [cursor_location], dword 0x02 jmp .loop .end: ret ; Clear screen with color in eax clear_screen: mov ecx, 0xfa0 ;80*50 columns*rows mov rdi, 0xb8000 shl eax, 8 .loop: stosw loop .loop mov [cursor_location], dword 0 ret ;;; Prints r15 in hex using rbx for color. print_r15: push rcx mov rdi, 0xb8000 add edi, [cursor_location] mov ecx, 0x10 mov r8d, 0x30 mov r9d, 0x57 cld .loop: mov rdx, r15 shr rdx, 0x3c cmp dl, 0x09 cmovle eax, r8d cmovg eax, r9d add rax, rdx mov ah, bl stosw shl r15, 4 add [cursor_location], dword 0x02 sub rcx, 0x01 jnz .loop pop rcx ret cursor_location: dd 0x00000000 ebda_location: dq 0 cpu_vendor_string: times 3 dd 0 db 0x00 ;cpu_vendor_string trailing null. interrupt_message: db "Encountered interrupt!", 0x00 page_fault_message: db "Page fault! CR2:", 0x00 message: db "Miles rocks!", 0x00 no_apic_message: db \ " Sorry, your CPU doesn't have an APIC! ", 0x00 rsdp_not_found_message: db \ " Sorry, we couldn't find the RSDP! ", 0x00 bad_acpi_checksum_message: db \ " Sorry, an ACPI table had an invalid checksum! ", 0x00 xsdt_not_supported_message: db \ " Sorry, your computer uses an XSDT! ", 0x00 madt_not_found_message: db \ " Sorry, we couldn't find the MADT! ", 0x00 times 0x3000-($-kernel_entry) db 0
old/Metalogic/Constructive/Provability.agda
Lolirofle/stuff-in-agda
6
60
module Metalogic.Constructive.Provability where open import Sets.BoolSet open import Functional import Lvl open import Type -- Structural rules record Structural {ℓ ℓₘ} {Formula : Type{ℓ}} (_⊢_ : BoolSet(Formula) → Formula → Type{ℓₘ}) : Type{ℓₘ Lvl.⊔ ℓ} where field assumption : ∀{Γ}{φ} → (φ ∈ Γ) → (Γ ⊢ φ) module Propositional {ℓ ℓₘ} {Formula : Type{ℓ}} (_⊢_ : BoolSet(Formula) → Formula → Type{ℓₘ}) where -- Rules of bottom record Bottom : Type{ℓₘ Lvl.⊔ ℓ} where field ⊥ : Formula field intro : ∀{Γ}{φ} → (Γ ⊢ φ) → ((Γ ∪ singleton(φ)) ⊢ ⊥) → (Γ ⊢ ⊥) elim : ∀{Γ}{φ} → (⊥ ∈ Γ) → (Γ ⊢ φ) -- Rules of top record Top : Type{ℓₘ Lvl.⊔ ℓ} where field ⊤ : Formula field intro : ∀{Γ} → (Γ ⊢ ⊤) -- Rules of conjunction record Conjunction : Type{ℓₘ Lvl.⊔ ℓ} where infixl 1005 _∧_ field _∧_ : Formula → Formula → Formula field intro : ∀{Γ}{φ₁ φ₂} → (Γ ⊢ φ₁) → (Γ ⊢ φ₂) → (Γ ⊢ (φ₁ ∧ φ₂)) elimₗ : ∀{Γ}{φ₁ φ₂} → (Γ ⊢ (φ₁ ∧ φ₂)) → (Γ ⊢ φ₁) elimᵣ : ∀{Γ}{φ₁ φ₂} → (Γ ⊢ (φ₁ ∧ φ₂)) → (Γ ⊢ φ₂) -- Rules of implication record Implication : Type{ℓₘ Lvl.⊔ ℓ} where infixl 1000 _⟶_ field _⟶_ : Formula → Formula → Formula field intro : ∀{Γ}{φ₁ φ₂} → ((Γ ∪ singleton(φ₁)) ⊢ φ₂) → (Γ ⊢ (φ₁ ⟶ φ₂)) elim : ∀{Γ}{φ₁ φ₂} → (Γ ⊢ (φ₁ ⟶ φ₂)) → (Γ ⊢ φ₁) → (Γ ⊢ φ₂) -- Rules of reversed implication record Consequence : Type{ℓₘ Lvl.⊔ ℓ} where infixl 1000 _⟵_ field _⟵_ : Formula → Formula → Formula field intro : ∀{Γ}{φ₁ φ₂} → ((Γ ∪ singleton(φ₁)) ⊢ φ₂) → (Γ ⊢ (φ₂ ⟵ φ₁)) elim : ∀{Γ}{φ₁ φ₂} → (Γ ⊢ (φ₂ ⟵ φ₁)) → (Γ ⊢ φ₁) → (Γ ⊢ φ₂) -- Rules of equivalence record Equivalence : Type{ℓₘ Lvl.⊔ ℓ} where infixl 1000 _⟷_ field _⟷_ : Formula → Formula → Formula field intro : ∀{Γ}{φ₁ φ₂} → ((Γ ∪ singleton(φ₂)) ⊢ φ₁) → ((Γ ∪ singleton(φ₁)) ⊢ φ₂) → (Γ ⊢ (φ₁ ⟷ φ₂)) elimₗ : ∀{Γ}{φ₁ φ₂} → (Γ ⊢ (φ₁ ⟷ φ₂)) → (Γ ⊢ φ₂) → (Γ ⊢ φ₁) elimᵣ : ∀{Γ}{φ₁ φ₂} → (Γ ⊢ (φ₁ ⟷ φ₂)) → (Γ ⊢ φ₁) → (Γ ⊢ φ₂) -- Rules of disjunction record Disjunction : Type{ℓₘ Lvl.⊔ ℓ} where infixl 1004 _∨_ field _∨_ : Formula → Formula → Formula field introₗ : ∀{Γ}{φ₁ φ₂} → (Γ ⊢ φ₁) → (Γ ⊢ (φ₁ ∨ φ₂)) introᵣ : ∀{Γ}{φ₁ φ₂} → (Γ ⊢ φ₂) → (Γ ⊢ (φ₁ ∨ φ₂)) elim : ∀{Γ}{φ₁ φ₂ φ₃} → (Γ ⊢ (φ₁ ∨ φ₂)) → ((Γ ∪ singleton(φ₁)) ⊢ φ₃) → ((Γ ∪ singleton(φ₂)) ⊢ φ₃) → (Γ ⊢ φ₃) -- Rules of negation record Negation ⦃ _ : Bottom ⦄ : Type{ℓₘ Lvl.⊔ ℓ} where open Bottom ⦃ ... ⦄ infixl 1010 ¬_ field ¬_ : Formula → Formula field intro : ∀{Γ}{φ} → ((Γ ∪ singleton(φ)) ⊢ ⊥) → (Γ ⊢ (¬ φ)) elim : ∀{Γ}{φ} → (Γ ⊢ (¬ φ)) → (Γ ⊢ φ) → (Γ ⊢ ⊥) -- A theory of constructive propositional logic expressed using natural deduction rules record Theory : Type{ℓₘ Lvl.⊔ ℓ} where open Structural ⦃ ... ⦄ public open Conjunction ⦃ ... ⦄ renaming (intro to [∧]-intro ; elimₗ to [∧]-elimₗ ; elimᵣ to [∧]-elimᵣ) public open Disjunction ⦃ ... ⦄ renaming (introₗ to [∨]-introₗ ; introᵣ to [∨]-introᵣ ; elim to [∨]-elim) public open Implication ⦃ ... ⦄ renaming (intro to [→]-intro ; elim to [→]-elim) public open Consequence ⦃ ... ⦄ renaming (intro to [←]-intro ; elim to [←]-elim) public open Equivalence ⦃ ... ⦄ renaming (intro to [↔]-intro ; elimₗ to [↔]-elimₗ ; elimᵣ to [↔]-elimᵣ) public open Negation ⦃ ... ⦄ renaming (intro to [¬]-intro ; elim to [¬]-elim) public open Bottom ⦃ ... ⦄ renaming (intro to [⊥]-intro ; elim to [⊥]-elim) public open Top ⦃ ... ⦄ renaming (intro to [⊤]-intro) public field ⦃ bottom ⦄ : Bottom ⦃ top ⦄ : Top ⦃ conjunction ⦄ : Conjunction ⦃ disjunction ⦄ : Disjunction ⦃ implication ⦄ : Implication ⦃ consequence ⦄ : Consequence ⦃ equivalence ⦄ : Equivalence ⦃ negation ⦄ : Negation module Predicate {ℓₘₗₛ ℓₘₒₛ ℓₘₗ ℓₘₒ} {Formula : Type{ℓₘₗₛ Lvl.⊔ ℓₘₒₛ}} {Domain : Type{ℓₘₒₛ}} (Proof : Formula → Type{ℓₘₗ Lvl.⊔ ℓₘₒ}) (Construct : Domain → Type{ℓₘₒ}) where open Propositional(Proof) renaming (Theory to PropositionalTheory) record UniversalQuantification : Type{(ℓₘₗ Lvl.⊔ ℓₘₒ) Lvl.⊔ (ℓₘₗₛ Lvl.⊔ ℓₘₒₛ)} where field ∀ₗ : (Domain → Formula) → Formula field intro : ∀{P : Domain → Formula} → (∀{x : Domain} → Proof(P(x))) → Proof(∀ₗ P) elim : ∀{P : Domain → Formula} → Proof(∀ₗ P) → (∀{x : Domain} → Proof(P(x))) record ExistentialQuantification : Type{(ℓₘₗ Lvl.⊔ ℓₘₒ) Lvl.⊔ (ℓₘₗₛ Lvl.⊔ ℓₘₒₛ)} where field ∃ₗ : (Domain → Formula) → Formula field intro : ∀{P : Domain → Formula}{a} → Proof(P(a)) → Proof(∃ₗ P) elim : ∀{P : Domain → Formula}{Z : Formula} → (∀{x : Domain} → Proof(P(x)) → Proof(Z)) → Proof(∃ₗ P) → Proof(Z) -- A theory of constructive predicate/(first-order) logic expressed using natural deduction rules record Theory : Type{(ℓₘₗ Lvl.⊔ ℓₘₒ) Lvl.⊔ (ℓₘₗₛ Lvl.⊔ ℓₘₒₛ)} where open Propositional.Theory ⦃ ... ⦄ public open UniversalQuantification ⦃ ... ⦄ renaming (intro to [∀]-intro ; elim to [∀]-elim) public open ExistentialQuantification ⦃ ... ⦄ renaming (intro to [∃]-intro ; elim to [∃]-elim) public field ⦃ propositional ⦄ : PropositionalTheory ⦃ universalQuantification ⦄ : UniversalQuantification ⦃ existentialQuantification ⦄ : ExistentialQuantification
oeis/164/A164602.asm
neoneye/loda-programs
11
85618
<reponame>neoneye/loda-programs<filename>oeis/164/A164602.asm ; A164602: a(n) = ((1+4*sqrt(2))*(1+2*sqrt(2))^n + (1-4*sqrt(2))*(1-2*sqrt(2))^n)/2. ; Submitted by <NAME>(s2) ; 1,17,41,201,689,2785,10393,40281,153313,588593,2250377,8620905,32994449,126335233,483631609,1851609849,7088640961,27138550865,103897588457,397765032969,1522813185137,5829981601057,22319655498073,85449182203545,327135952893601,1252416181212017,4794784032679241,18356481333842601,70276450896439889,269048271129777985,1030031698534635193,3943401294977716281,15097024479697878913,57797858024239771793,221274887406364695977,847134780982407794505,3243193773809368460849,12416331014495591483233 mov $1,1 lpb $0 sub $0,1 mov $3,$1 mov $1,$2 mul $1,7 add $3,1 mul $4,2 add $4,$3 mov $2,$4 lpe mov $0,$4 mul $0,8 add $0,1
src/PJ/rexlib/syslib/free.asm
AnimatorPro/Animator-Pro
119
9586
<gh_stars>100-1000 include aasyslib.i CGROUP group code code segment dword 'CODE' assume cs:CGROUP,ds:CGROUP SYSLIB_JUMP free sysl_free code ends end
regtests/jason-projects-tests.adb
stcarrez/jason
2
21933
----------------------------------------------------------------------- -- jason-projects-tests -- Tests for projects -- Copyright (C) 2016, 2019 Stephane.Carrez -- Written by Stephane.Carrez (<EMAIL>) -- -- Licensed under the Apache License, Version 2.0 (the "License"); -- you may not use this file except in compliance with the License. -- You may obtain a copy of the License at -- -- http://www.apache.org/licenses/LICENSE-2.0 -- -- Unless required by applicable law or agreed to in writing, software -- distributed under the License is distributed on an "AS IS" BASIS, -- WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -- See the License for the specific language governing permissions and -- limitations under the License. ----------------------------------------------------------------------- with Ada.Strings.Unbounded; with Util.Test_Caller; with AWA.Tests.Helpers.Users; with Security.Contexts; with AWA.Services.Contexts; with Jason.Projects.Beans; with Jason.Projects.Modules; with Jason.Projects.Models; package body Jason.Projects.Tests is package Caller is new Util.Test_Caller (Test, "projects"); procedure Add_Tests (Suite : in Util.Tests.Access_Test_Suite) is begin Caller.Add_Test (Suite, "Test jason.projects.Foo", Test_Create'Access); end Add_Tests; -- Test project creation. procedure Test_Create (T : in out Test) is Sec_Ctx : Security.Contexts.Security_Context; Context : AWA.Services.Contexts.Service_Context; P : Jason.Projects.Beans.Project_Bean; Outcome : Ada.Strings.Unbounded.Unbounded_String; begin AWA.Tests.Helpers.Users.Login (Context, Sec_Ctx, "<EMAIL>"); P.Module := Jason.Projects.Modules.Get_Project_Module; P.Set_Name ("test-project"); P.Set_Status (Jason.Projects.Models.OPEN); P.Create (Outcome); T.Assert (P.Is_Inserted, "Project was created"); end Test_Create; end Jason.Projects.Tests;
fp/agda/plfa/Naturals.agda
lonelyhentai/workspace
2
6457
module plfa.Naturals where data ℕ : Set where zero : ℕ suc : ℕ → ℕ {-# BUILTIN NATURAL ℕ #-} import Relation.Binary.PropositionalEquality as Eq open Eq using (_≡_; refl) open Eq.≡-Reasoning using (begin_; _≡⟨⟩_; _∎) _+_ : ℕ → ℕ → ℕ zero + n = n suc m + n = suc (m + n) infixl 6 _+_ -- @practice: exercise `seven` start _ : 7 ≡ suc (suc (suc (suc (suc (suc (suc zero)))))) _ = refl -- @practice: exercise `seven` end _ : 2 + 3 ≡ 5 _ = begin 2 + 3 ≡⟨⟩ (suc (suc zero)) + (suc (suc (suc zero))) ≡⟨⟩ suc ((suc zero) + (suc (suc (suc zero)))) ≡⟨⟩ suc (suc (zero + (suc (suc (suc zero))))) ≡⟨⟩ suc (suc (suc (suc (suc zero)))) ≡⟨⟩ 5 ∎ -- @practice: exercise `+-example` start _ : 3 + 4 ≡ 7 _ = begin 3 + 4 ≡⟨⟩ suc (2 + 4) ≡⟨⟩ suc ( suc ( 1 + 4 )) ≡⟨⟩ suc ( suc ( suc ( 0 + 4 ))) ≡⟨⟩ suc ( suc ( suc 4 )) ≡⟨⟩ 7 ∎ -- @practice: exercise `+-example` end _*_ : ℕ → ℕ → ℕ zero * ℕ = zero (suc m) * n = n + ( m * n ) infixl 7 _*_ _ = begin 2 * 3 ≡⟨⟩ 3 + ( 1 * 3 ) ≡⟨⟩ 3 + ( 3 + ( 0 * 3 )) ≡⟨⟩ 3 + (3 + 0) ≡⟨⟩ 6 ∎ -- @practice: exercise `*-example` start _ = begin 3 * 4 ≡⟨⟩ 4 + ( 2 * 4) ≡⟨⟩ 4 + ( 4 + (1 * 4)) ≡⟨⟩ 4 + ( 4 + (4 + (0 * 4))) ≡⟨⟩ 4 + (4 + (4 + 0)) ≡⟨⟩ 12 ∎ -- @practice: exercise `*-example` end -- @recommend: exercise `_^_` start _^_ : ℕ → ℕ → ℕ m ^ zero = 1 m ^ (suc n) = m * (m ^ n) infixl 8 _^_ _ : 3 ^ 4 ≡ 81 _ = refl -- @recommend: exercise `_^_` end _∸_ : ℕ → ℕ → ℕ m ∸ zero = m zero ∸ n = zero suc m ∸ suc n = m ∸ n infixl 6 _∸_ _ = begin 3 ∸ 2 ≡⟨⟩ 2 ∸ 1 ≡⟨⟩ 1 ∸ 0 ≡⟨⟩ 1 ∎ _ = begin 2 ∸ 3 ≡⟨⟩ 1 ∸ 2 ≡⟨⟩ 0 ∸ 1 ≡⟨⟩ 0 ∎ -- @recommend: exercise `∸-examples` start _ = begin 5 ∸ 3 ≡⟨⟩ 4 ∸ 2 ≡⟨⟩ 3 ∸ 1 ≡⟨⟩ 2 ∸ 0 ≡⟨⟩ 2 ∎ _ = begin 2 ∸ 5 ≡⟨⟩ 1 ∸ 4 ≡⟨⟩ 0 ∸ 3 ≡⟨⟩ 0 ∎ -- @recommend: exercise `∸-examples` end -- infixl 6 _+_ _∸_ -- infixl 7 _⋆_ -- infixl indicates an operator associates to the left -- infixr indicates an operator associates to the right -- infix indicates that parentheses are always required -- C-c + C-l convert `?` to `{}#` -- C-c + C-f jump to next hole -- C-c + C-c pattern variables to case -- C-c + C-, the target type and the context -- C-c + C-. the target type and the context and the inferred type -- C-c + C-r recommendation -- C-c + C-SPA fill up the hole -- C-c + C-a auto fill up the holes {-# BUILTIN NATPLUS _+_ #-} {-# BUILTIN NATTIMES _*_ #-} {-# BUILTIN NATMINUS _∸_ #-} -- @stretch: exercise `Bin` start data Bin : Set where ⟨⟩ : Bin _O : Bin → Bin _I : Bin → Bin inc : Bin → Bin inc (m O) = m I inc (m I) = (inc m) O inc ⟨⟩ = ⟨⟩ I -- inc unit test start _ = begin inc (⟨⟩) ≡⟨⟩ ⟨⟩ I ∎ _ = begin inc (⟨⟩ I) ≡⟨⟩ ⟨⟩ I O ∎ _ = begin inc (⟨⟩ I O) ≡⟨⟩ ⟨⟩ I I ∎ _ = begin inc (⟨⟩ I O I I) ≡⟨⟩ (inc (⟨⟩ I O I)) O ≡⟨⟩ ( (inc (⟨⟩ I O)) O ) O ≡⟨⟩ ((⟨⟩ I I) O ) O ≡⟨⟩ ⟨⟩ I I O O ∎ -- inc unit test end to : ℕ → Bin to zero = ⟨⟩ O to (suc n) = inc (to n) from : Bin -> ℕ from (m O) = 2 * (from m) from (m I) = 2 * (from m) + 1 from ⟨⟩ = 0 -- from & to unit test start _ : (to 11) ≡ (⟨⟩ I O I I) _ = refl _ : (from (⟨⟩ I O I I)) ≡ 11 _ = refl _ : (to 0) ≡ (⟨⟩ O) _ = refl _ : (to 1) ≡ (⟨⟩ I) _ = refl _ : (from (⟨⟩ I)) ≡ 1 _ = refl _ : (from (⟨⟩ O)) ≡ 0 _ = refl -- from & to unit test end -- @stretch: exercise `Bin` end -- import Data.Nat using (ℕ; zero; suc; _+_; _*_; _^_; _∸_)
badge/fw/src/main.asm
AshleyRoll/HamProjects
1
169277
<filename>badge/fw/src/main.asm ;******************************************************************************* ; Amateur Radio Licence Badge ; --------------------------- ; ; This code generates a periodic morse code signal sending the configured ; call sign. ; ; The PIC is left in sleep for most of the time, and we use the Watch Dog to wake ; us to move to the next state. Eventually we stop sending the Morse and sleep ; forever. The user will need to reset (pushbutton) the PIC to begin the ; sending process again. ; ; The Morse signalling will be on RA2, High (1) = On, Low (0) = Off ; ; NOTE: ; Run on A4 or higher hardware revision of the PIC10LF322 or the power ; consumption will be higher than documented. (see Errata) ; ; Morse Code timing and generation ; -------------------------------- ; ; Morse words per minute is calculated off the PARIS word, resulting in ; 50 periods (dit times) per word. at 5 wpm, that is 250 periods per minute ; or 250/60 = 240ms per period. ; ; We have to use the WDT to allow for sleeping, this has a nominal ; period of between 1 millisecond and 256 seconds, with a doubling ; each setting (powers of 2). ; ; We can choose 128ms for about 10 WPM or 256ms for about 5WPM ; ; <NAME>. VK4ASH. 2020-04-09 ; ;******************************************************************************* list r=dec #include <p10lf322.inc> #include <morsecode.inc> ; number of times to send the call sign constant CallSignRepeatCountBeforeShutdown = 5 ; watchdog period prescaler ; ; 10010 = 1:8388608 (223) (Interval 256s nominal) ; 10001 = 1:4194304 (222) (Interval 128s nominal) ; 10000 = 1:2097152 (221) (Interval 64s nominal) ; 01111 = 1:1048576 (220) (Interval 32s nominal) ; 01110 = 1:524288 (219) (Interval 16s nominal) ; 01101 = 1:262144 (218) (Interval 8s nominal) ; 01100 = 1:131072 (217) (Interval 4s nominal) ; 01011 = 1:65536 (Interval 2s nominal) (Reset value) ; 01010 = 1:32768 (Interval 1s nominal) ; 01001 = 1:16384 (Interval 512 ms nominal) ; 01000 = 1:8192 (Interval 256 ms nominal) ; 00111 = 1:4096 (Interval 128 ms nominal) ; 00110 = 1:2048 (Interval 64 ms nominal) ; 00101 = 1:1024 (Interval 32 ms nominal) ; 00100 = 1:512 (Interval 16 ms nominal) ; 00011 = 1:256 (Interval 8 ms nominal) ; 00010 = 1:128 (Interval 4 ms nominal) ; 00001 = 1:64 (Interval 2 ms nominal) ; 00000 = 1:32 (Interval 1 ms nominal) ; ; NOTE: bit 0 is SW ENABLE bit and must be zero ; which is why we left shift constant WDTPrescaleMorse = b'00111' << 1 ; 128ms ~10PWM constant WDTPrescaleSendDelay = b'01011' << 1 ; 2s constant WDTPrescaleForeverSleep = b'10000' << 1 ; 64s ;******************************************************************************* ; Call Sign ; --------- ; ; Define the Call sign or message here. One symbol per line to keep the ; macro assembler happy. This macro is then used in the main loop ; ; Letters and Numbers: _A, _B, ... _0, _1, _2, ... ; ; Symbols: ; _Space _Period _Comma _QuestionMark _Slash ; _Plus _Minus _DoubleDash ; ;******************************************************************************* CALL_SIGN macro ;------------------------ _V _K _4 _A _S _H ;------------------------ endm ; CONFIG __CONFIG _FOSC_INTOSC & _BOREN_OFF & _WDTE_SWDTEN & _PWRTE_OFF & _MCLRE_ON & _CP_OFF & _LVP_ON & _LPBOR_OFF & _BORV_LO & _WRT_OFF ;******************************************************************************* ; MAIN DATA (Variables) ;******************************************************************************* MAIN_DATA UDATA ; let linker place main RAM data Repeats RES 1 ; The number of times to send the callsign before ; sleeping forever PeriodCount RES 1 ; temp storage for counting the number of ; WDT loops for the current symbol ;******************************************************************************* ; Reset Vector ;******************************************************************************* RES_VECT CODE 0x0000 ; processor reset vector GOTO START ; go to beginning of program ;******************************************************************************* ; Interrupt Vector - currently not in use, but if it is hit, we disable interrupts ;******************************************************************************* ISR CODE 0x0004 ; interrupt vector location RETURN ; leave interrupts disabled. ;******************************************************************************* ; MAIN PROGRAM ;******************************************************************************* MAIN_PROG CODE ; let linker place main program ; ; Power on reset ; ; Initialise hardware ; START ; 31KHz LFINTOSC clock mode seems to need more current than using the ; HFINTOSC and dividing it down. Chosen the slowest HF divider output ; to minimise the power consumption while awake MOVLW b'00010000' ; 250KHz divided HFINTOSC MOVWF OSCCON ; Power config BSF VREGCON,VREGPM1 ; Put voltage regulator in Power Save mode ; for lowest sleep current ; make all pins digital outputs (MCLR is configured input by config bits) ; Note that MCLR is enabled and therefore it has its weak pullup enabled by config CLRF ANSELA CLRF LATA CLRF TRISA CLRF INTCON ; Disable all interrupts and clear flags ; And now start the main loop GOTO MAIN ; ; Main Code ; MAIN MOVLW CallSignRepeatCountBeforeShutdown MOVWF Repeats Loop ; ; Set the Watch dog timer prescaller, this controls the morse code ; sending rate CLRWDT MOVLW WDTPrescaleMorse MOVWF WDTCON ; Send call sign CALL_SIGN ; Long delay between sending callsign ; we do this by extending the WDT delay and using the ; Morse delay to wait for that to expire once CLRWDT MOVLW WDTPrescaleSendDelay MOVWF WDTCON MOVLW 1 CALL WaitMorsePeriods DECFSZ Repeats,F ; Loop until Repeats is zero GOTO Loop ; sleep here forever, we have finished sending the callsign, so ; now we wait to be reset forever ; Prepare for eternal sleep by setting the slow WDT CLRWDT MOVLW WDTPrescaleForeverSleep MOVWF WDTCON Forever SLEEP NOP GOTO Forever ; Sleep for the number of morse periods in the W register ; This uses Watchdog timer expiration to time things so speed is controlled by ; its prescaller WaitMorsePeriods MOVWF PeriodCount ; Save the count BSF WDTCON, SWDTEN ; Enable WDT _MorseTimerLoop SLEEP ; Wait for WDT expiry NOP DECFSZ PeriodCount, F ; Loop until we exhaust the loop count GOTO _MorseTimerLoop BCF WDTCON, SWDTEN ; Disable WDT RETLW 0 ; Send a Morse "Dit" Dit BSF LATA, LATA2 ; On MOVLW 1 ; Delay 1 period CALL WaitMorsePeriods BCF LATA, LATA2 ; Off MOVLW 1 ; Delay 1 period for intra-symbol delay CALL WaitMorsePeriods RETLW 0 ; Send a Morse "Dah" Dah BSF LATA, LATA2 ; On MOVLW 3 ; Delay 1 period CALL WaitMorsePeriods BCF LATA, LATA2 ; Off MOVLW 1 ; Delay 1 period for intra-symbol delay CALL WaitMorsePeriods RETLW 0 ; End of file END
gcc-gcc-7_3_0-release/gcc/testsuite/gnat.dg/discr39.adb
best08618/asylo
7
59
<reponame>best08618/asylo<gh_stars>1-10 -- { dg-do run } with System.Storage_Elements; use System.Storage_Elements; procedure Discr39 is type Rec (Has_Src : Boolean) is record case Has_Src is when True => Src : aliased Integer; when False => null; end case; end record; pragma Pack(Rec); for Rec'Alignment use Integer'Alignment; R : Rec (Has_Src => True); begin if R.Src'Address mod Integer'Alignment /= 0 then raise Program_Error; end if; end;
lib/keys.asm
sikorama/still_scrolling
0
175184
; Definition des touches ; et macro pour executer des actions si les symboles existent KEY_UP_L0BIT EQU 0 KEY_DOWN_L0BIT EQU 2 KEY_LEFT_L1BIT EQU 0 KEY_RIGHT_L0BIT EQU 1 KEY_KP0_L1BIT EQU 7 KEY_KP1_L1BIT EQU 5 KEY_KP2_L1BIT EQU 6 KEY_KP3_L0BIT EQU 5 KEY_KP4_L2BIT EQU 4 KEY_KP5_L1BIT EQU 4 KEY_KP6_L0BIT EQU 4 KEY_KP7_L1BIT EQU 2 KEY_KP8_L1BIT EQU 3 KEY_KP9_L0BIT EQU 3 KEY_KPRET_L0BIT EQU 6 KEY_RET_L2BIT EQU 2 KEY_SHIFT_L2BIT EQU 5 KEY_CTRL_L2BIT EQU 7 KEYCLR_L2BIT EQU 0 MACRO CHECK_ACTION action,actionkey ifdef {action} bit {actionkey},a jp z,{action} endif MEND MACRO CHECK_ACTION_KEYS kbstate ld HL,end_actions push hl ; Ligne 0 LD a,({kbstate}+0) cp #ff jr z,@kbline1 CHECK_ACTION ACTION_KEYUP,KEY_UP_L0BIT CHECK_ACTION ACTION_KEYDOWN,KEY_DOWN_L0BIT CHECK_ACTION ACTION_KEYRIGHT,KEY_RIGHT_L0BIT CHECK_ACTION ACTION_KP3,KEY_KP3_L0BIT CHECK_ACTION ACTION_KP6,KEY_KP6_L0BIT CHECK_ACTION ACTION_KPRET,KEY_KPRET_L0BIT CHECK_ACTION ACTION_KP9,KEY_KP9_L0BIT @kbline1: ; Ligne 0 LD a,({kbstate}+1) cp #ff jr z,@nxtline2 CHECK_ACTION ACTION_KEYLEFT,KEY_LEFT_L1BIT CHECK_ACTION ACTION_KP0,KEY_KP0_L1BIT CHECK_ACTION ACTION_KP1,KEY_KP1_L1BIT CHECK_ACTION ACTION_KP2,KEY_KP2_L1BIT CHECK_ACTION ACTION_KP5,KEY_KP5_L1BIT CHECK_ACTION ACTION_KP7,KEY_KP7_L1BIT CHECK_ACTION ACTION_KP8,KEY_KP8_L1BIT @nxtline2: LD a,({kbstate}+2) cp #ff jr z,@nxtline3 CHECK_ACTION ACTION_KP4, KEY_KP4_L2BIT CHECK_ACTION ACTION_RET, KEY_RET_L2BIT CHECK_ACTION ACTION_SHIFT, KEY_SHIFT_L2BIT CHECK_ACTION ACTION_CTRL, KEY_CTRL_L2BIT @nxtline3: @lastline: pop hl xor a jr @nokey end_actions: ld a,1 @nokey: MEND ; On pourrait aussi avoir un ret si l'action a ete appelee par un call MACRO ACTION_END ret ; jp end_actions MEND
programs/oeis/295/A295515.asm
jmorken/loda
1
240271
<filename>programs/oeis/295/A295515.asm<gh_stars>1-10 ; A295515: The Euclid tree, read across levels. ; 0,1,1,1,1,2,2,1,1,3,3,2,2,3,3,1,1,4,4,3,3,5,5,2,2,5,5,3,3,4,4,1,1,5,5,4,4,7,7,3,3,8,8,5,5,7,7,2,2,7,7,5,5,8,8,3,3,7,7,4,4,5,5,1,1,6,6,5,5,9,9,4,4,11,11,7,7,10,10,3,3,11,11,8,8,13,13,5,5,12,12,7,7,9,9,2,2,9,9,7,7,12,12,5,5,13,13,8,8,11,11,3,3,10,10,7,7,11,11,4,4,9,9,5,5,6,6,1,1,7,7,6,6,11,11,5,5,14,14,9,9,13,13,4,4,15,15,11,11,18,18,7,7,17,17,10,10,13,13,3,3,14,14,11,11,19,19,8,8,21,21,13,13,18,18,5,5,17,17,12,12,19,19,7,7,16,16,9,9,11,11,2,2,11,11,9,9,16,16,7,7,19,19,12,12,17,17,5,5,18,18,13,13,21,21,8,8,19,19,11,11,14,14,3,3,13,13,10,10,17,17,7,7,18,18,11,11,15,15,4,4,13,13,9,9,14,14,5,5,11 add $0,1 div $0,2 mov $2,1 mul $2,$0 mov $0,2 add $0,$2 sub $0,2 mov $1,2916 cal $0,2487 ; Stern's diatomic series (or Stern-Brocot sequence): a(0) = 0, a(1) = 1; for n > 0: a(2*n) = a(n), a(2*n+1) = a(n) + a(n+1). add $1,$0 sub $1,2916
oeis/293/A293469.asm
neoneye/loda-programs
11
167738
; A293469: a(n) = Sum_{k=0..n} (2*k-1)!!*binomial(2*n-k, n). ; Submitted by <NAME> ; 1,3,12,57,330,2436,23226,277389,3966534,65517210,1220999208,25279328958,575024187192,14247595540542,381846383109030,11004598454925405,339324532631899110,11146022446431209490,388535338484934710040,14324570939127320452350,556887682690152668745660,22767614352972393763818960,976506019726520486550778740,43841123242150779351501993090,2056196838973306593613975649100,100559936975325371879715616863276,5119512325551943031137402339578216,270893634655001669667916103974230864 mov $4,$0 add $0,1 lpb $0 sub $0,1 mov $3,$4 bin $3,$1 add $1,1 add $3,$2 mul $2,$0 mul $2,2 add $2,$3 add $4,1 lpe mov $0,$2
alloy4fun_models/trashltl/models/5/5qLSTKWo9tJRNrWY7.als
Kaixi26/org.alloytools.alloy
0
2065
<reponame>Kaixi26/org.alloytools.alloy open main pred id5qLSTKWo9tJRNrWY7_prop6 { some f: File | once f in Trash implies always f in Trash } pred __repair { id5qLSTKWo9tJRNrWY7_prop6 } check __repair { id5qLSTKWo9tJRNrWY7_prop6 <=> prop6o }
middleware/src/utils/logging.ads
rocher/Ada_Drivers_Library
192
3571
------------------------------------------------------------------------------ -- -- -- Copyright (C) 2017, AdaCore -- -- -- -- Redistribution and use in source and binary forms, with or without -- -- modification, are permitted provided that the following conditions are -- -- met: -- -- 1. Redistributions of source code must retain the above copyright -- -- notice, this list of conditions and the following disclaimer. -- -- 2. Redistributions in binary form must reproduce the above copyright -- -- notice, this list of conditions and the following disclaimer in -- -- the documentation and/or other materials provided with the -- -- distribution. -- -- 3. Neither the name of the copyright holder nor the names of its -- -- contributors may be used to endorse or promote products derived -- -- from this software without specific prior written permission. -- -- -- -- THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS -- -- "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT -- -- LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR -- -- A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT -- -- HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -- -- SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT -- -- LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, -- -- DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY -- -- THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT -- -- (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE -- -- OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. -- -- -- ------------------------------------------------------------------------------ -- This package is based on two features implemented in different packages: -- - Logging_With_Categories -- - Logging_With_Priorities -- -- You can directly use one of those pacakge if you are not interested by the -- other feature. generic type Categories is (<>); -- Logging categories -- Typicaly an enum type, example: -- type My_Log_Categories is (Debug, Warning, Error); type Priorities is (<>); -- Logging priority type Default_Category : Categories; -- Category used when the category is not specified as parameter Default_Priority : Priorities := Priorities'First; -- Priority value used at initialization Categories_Enabled_By_Default : Boolean := True; -- If this value is true, all logging categories are enabled at -- initialization. Otherwise, they are all disabled. Prefix_Enabled_By_Default : Boolean := True; -- If this value is true, prefix is enabled for all categories at -- initialization. Otherwise, it is diabled for all. Maximum_Message_Length : Positive; -- Maximum number of Characters in a message. Messages longer than this -- limit will be rejected. Maximum_Number_Of_Messages : Positive; -- Maximum number of messages in the queue. When the queue is filled the -- lower priority will be discared. package Logging is procedure Log_Line (Cat : Categories; Str : String); procedure Log_Line (Str : String); -- Log under the Default_Category ---------------------- -- Category Control -- ---------------------- function Enabled (Cat : Categories) return Boolean; -- Is logging enabled for the given category? procedure Enable (Cat : Categories) with Post => Enabled (Cat); -- Enable logging for the given category. -- Messages for this category will printed using the Log_Line_Backend -- procedure. procedure Disable (Cat : Categories) with Post => not Enabled (Cat); -- Disable logging for the given category. -- Messages for this category will be ignored. -------------------- -- Prefix Control -- -------------------- -- Insert the name of the category in front of the log messages. -- The format is: Catergory'Image (Cat) & ": " & Str -- This feature works best when the Categories type is an enum and when -- 'Image is available for enum type (native or ravenscar-full run-times). procedure Enable_Prefix (Cat : Categories); -- Enable the prefix for the given category procedure Disable_Prefix (Cat : Categories); -- Disable the prefix for the given category ---------------------- -- Priority Control -- ---------------------- function Priority (Cat : Categories) return Priorities; -- Return the proirity associated with the given category procedure Set_Priority (Cat : Categories; Prio : Priorities) with Post => Priority (Cat) = Prio; -- Set the proirity associated with the given category. -- The value is just passed to the Log_Line procedure, there is no -- filtering or sorting in this implementation. ------------ -- Output -- ------------ procedure Pop (Str : out String; Length : out Natural; Prio : out Priorities) with Pre => Str'Length = Maximum_Message_Length; -- Remove the top priority message from the queue function Full return Boolean; -- Return True if the message queue is full function Empty return Boolean; -- Return True if the message queue is empty end Logging;
alloy4fun_models/trashltl/models/9/Ljx6TqkijRprpQTuD.als
Kaixi26/org.alloytools.alloy
0
3302
<filename>alloy4fun_models/trashltl/models/9/Ljx6TqkijRprpQTuD.als open main pred idLjx6TqkijRprpQTuD_prop10 { always Protected' in Protected } pred __repair { idLjx6TqkijRprpQTuD_prop10 } check __repair { idLjx6TqkijRprpQTuD_prop10 <=> prop10o }
arch/ARM/RP/svd/rp2040/rp_svd-sio.ads
morbos/Ada_Drivers_Library
2
25506
-- Copyright (c) 2020 Raspberry Pi (Trading) Ltd. -- -- SPDX-License-Identifier: BSD-3-Clause -- This spec has been automatically generated from rp2040.svd pragma Restrictions (No_Elaboration_Code); pragma Ada_2012; pragma Style_Checks (Off); with HAL; with System; -- Single-cycle IO block\n -- Provides core-local and inter-core hardware for the two processors, -- with single-cycle access. package RP_SVD.SIO is pragma Preelaborate; --------------- -- Registers -- --------------- subtype GPIO_IN_GPIO_IN_Field is HAL.UInt30; -- Input value for GPIO pins type GPIO_IN_Register is record -- Read-only. Input value for GPIO0...29 GPIO_IN : GPIO_IN_GPIO_IN_Field; -- unspecified Reserved_30_31 : HAL.UInt2; end record with Volatile_Full_Access, Object_Size => 32, Bit_Order => System.Low_Order_First; for GPIO_IN_Register use record GPIO_IN at 0 range 0 .. 29; Reserved_30_31 at 0 range 30 .. 31; end record; subtype GPIO_HI_IN_GPIO_HI_IN_Field is HAL.UInt6; -- Input value for QSPI pins type GPIO_HI_IN_Register is record -- Read-only. Input value on QSPI IO in order 0..5: SCLK, SSn, SD0, SD1, -- SD2, SD3 GPIO_HI_IN : GPIO_HI_IN_GPIO_HI_IN_Field; -- unspecified Reserved_6_31 : HAL.UInt26; end record with Volatile_Full_Access, Object_Size => 32, Bit_Order => System.Low_Order_First; for GPIO_HI_IN_Register use record GPIO_HI_IN at 0 range 0 .. 5; Reserved_6_31 at 0 range 6 .. 31; end record; subtype GPIO_OUT_GPIO_OUT_Field is HAL.UInt30; -- GPIO output value type GPIO_OUT_Register is record -- Set output level (1/0 -> high/low) for GPIO0...29.\n Reading back -- gives the last value written, NOT the input value from the pins.\n If -- core 0 and core 1 both write to GPIO_OUT simultaneously (or to a -- SET/CLR/XOR alias),\n the result is as though the write from core 0 -- took place first,\n and the write from core 1 was then applied to -- that intermediate result. GPIO_OUT : GPIO_OUT_GPIO_OUT_Field := 16#0#; -- unspecified Reserved_30_31 : HAL.UInt2 := 16#0#; end record with Volatile_Full_Access, Object_Size => 32, Bit_Order => System.Low_Order_First; for GPIO_OUT_Register use record GPIO_OUT at 0 range 0 .. 29; Reserved_30_31 at 0 range 30 .. 31; end record; subtype GPIO_OUT_SET_GPIO_OUT_SET_Field is HAL.UInt30; -- GPIO output value set type GPIO_OUT_SET_Register is record -- Perform an atomic bit-set on GPIO_OUT, i.e. `GPIO_OUT |= wdata` GPIO_OUT_SET : GPIO_OUT_SET_GPIO_OUT_SET_Field := 16#0#; -- unspecified Reserved_30_31 : HAL.UInt2 := 16#0#; end record with Volatile_Full_Access, Object_Size => 32, Bit_Order => System.Low_Order_First; for GPIO_OUT_SET_Register use record GPIO_OUT_SET at 0 range 0 .. 29; Reserved_30_31 at 0 range 30 .. 31; end record; subtype GPIO_OUT_CLR_GPIO_OUT_CLR_Field is HAL.UInt30; -- GPIO output value clear type GPIO_OUT_CLR_Register is record -- Perform an atomic bit-clear on GPIO_OUT, i.e. `GPIO_OUT &= ~wdata` GPIO_OUT_CLR : GPIO_OUT_CLR_GPIO_OUT_CLR_Field := 16#0#; -- unspecified Reserved_30_31 : HAL.UInt2 := 16#0#; end record with Volatile_Full_Access, Object_Size => 32, Bit_Order => System.Low_Order_First; for GPIO_OUT_CLR_Register use record GPIO_OUT_CLR at 0 range 0 .. 29; Reserved_30_31 at 0 range 30 .. 31; end record; subtype GPIO_OUT_XOR_GPIO_OUT_XOR_Field is HAL.UInt30; -- GPIO output value XOR type GPIO_OUT_XOR_Register is record -- Perform an atomic bitwise XOR on GPIO_OUT, i.e. `GPIO_OUT ^= wdata` GPIO_OUT_XOR : GPIO_OUT_XOR_GPIO_OUT_XOR_Field := 16#0#; -- unspecified Reserved_30_31 : HAL.UInt2 := 16#0#; end record with Volatile_Full_Access, Object_Size => 32, Bit_Order => System.Low_Order_First; for GPIO_OUT_XOR_Register use record GPIO_OUT_XOR at 0 range 0 .. 29; Reserved_30_31 at 0 range 30 .. 31; end record; subtype GPIO_OE_GPIO_OE_Field is HAL.UInt30; -- GPIO output enable type GPIO_OE_Register is record -- Set output enable (1/0 -> output/input) for GPIO0...29.\n Reading -- back gives the last value written.\n If core 0 and core 1 both write -- to GPIO_OE simultaneously (or to a SET/CLR/XOR alias),\n the result -- is as though the write from core 0 took place first,\n and the write -- from core 1 was then applied to that intermediate result. GPIO_OE : GPIO_OE_GPIO_OE_Field := 16#0#; -- unspecified Reserved_30_31 : HAL.UInt2 := 16#0#; end record with Volatile_Full_Access, Object_Size => 32, Bit_Order => System.Low_Order_First; for GPIO_OE_Register use record GPIO_OE at 0 range 0 .. 29; Reserved_30_31 at 0 range 30 .. 31; end record; subtype GPIO_OE_SET_GPIO_OE_SET_Field is HAL.UInt30; -- GPIO output enable set type GPIO_OE_SET_Register is record -- Perform an atomic bit-set on GPIO_OE, i.e. `GPIO_OE |= wdata` GPIO_OE_SET : GPIO_OE_SET_GPIO_OE_SET_Field := 16#0#; -- unspecified Reserved_30_31 : HAL.UInt2 := 16#0#; end record with Volatile_Full_Access, Object_Size => 32, Bit_Order => System.Low_Order_First; for GPIO_OE_SET_Register use record GPIO_OE_SET at 0 range 0 .. 29; Reserved_30_31 at 0 range 30 .. 31; end record; subtype GPIO_OE_CLR_GPIO_OE_CLR_Field is HAL.UInt30; -- GPIO output enable clear type GPIO_OE_CLR_Register is record -- Perform an atomic bit-clear on GPIO_OE, i.e. `GPIO_OE &= ~wdata` GPIO_OE_CLR : GPIO_OE_CLR_GPIO_OE_CLR_Field := 16#0#; -- unspecified Reserved_30_31 : HAL.UInt2 := 16#0#; end record with Volatile_Full_Access, Object_Size => 32, Bit_Order => System.Low_Order_First; for GPIO_OE_CLR_Register use record GPIO_OE_CLR at 0 range 0 .. 29; Reserved_30_31 at 0 range 30 .. 31; end record; subtype GPIO_OE_XOR_GPIO_OE_XOR_Field is HAL.UInt30; -- GPIO output enable XOR type GPIO_OE_XOR_Register is record -- Perform an atomic bitwise XOR on GPIO_OE, i.e. `GPIO_OE ^= wdata` GPIO_OE_XOR : GPIO_OE_XOR_GPIO_OE_XOR_Field := 16#0#; -- unspecified Reserved_30_31 : HAL.UInt2 := 16#0#; end record with Volatile_Full_Access, Object_Size => 32, Bit_Order => System.Low_Order_First; for GPIO_OE_XOR_Register use record GPIO_OE_XOR at 0 range 0 .. 29; Reserved_30_31 at 0 range 30 .. 31; end record; subtype GPIO_HI_OUT_GPIO_HI_OUT_Field is HAL.UInt6; -- QSPI output value type GPIO_HI_OUT_Register is record -- Set output level (1/0 -> high/low) for QSPI IO0...5.\n Reading back -- gives the last value written, NOT the input value from the pins.\n If -- core 0 and core 1 both write to GPIO_HI_OUT simultaneously (or to a -- SET/CLR/XOR alias),\n the result is as though the write from core 0 -- took place first,\n and the write from core 1 was then applied to -- that intermediate result. GPIO_HI_OUT : GPIO_HI_OUT_GPIO_HI_OUT_Field := 16#0#; -- unspecified Reserved_6_31 : HAL.UInt26 := 16#0#; end record with Volatile_Full_Access, Object_Size => 32, Bit_Order => System.Low_Order_First; for GPIO_HI_OUT_Register use record GPIO_HI_OUT at 0 range 0 .. 5; Reserved_6_31 at 0 range 6 .. 31; end record; subtype GPIO_HI_OUT_SET_GPIO_HI_OUT_SET_Field is HAL.UInt6; -- QSPI output value set type GPIO_HI_OUT_SET_Register is record -- Perform an atomic bit-set on GPIO_HI_OUT, i.e. `GPIO_HI_OUT |= wdata` GPIO_HI_OUT_SET : GPIO_HI_OUT_SET_GPIO_HI_OUT_SET_Field := 16#0#; -- unspecified Reserved_6_31 : HAL.UInt26 := 16#0#; end record with Volatile_Full_Access, Object_Size => 32, Bit_Order => System.Low_Order_First; for GPIO_HI_OUT_SET_Register use record GPIO_HI_OUT_SET at 0 range 0 .. 5; Reserved_6_31 at 0 range 6 .. 31; end record; subtype GPIO_HI_OUT_CLR_GPIO_HI_OUT_CLR_Field is HAL.UInt6; -- QSPI output value clear type GPIO_HI_OUT_CLR_Register is record -- Perform an atomic bit-clear on GPIO_HI_OUT, i.e. `GPIO_HI_OUT &= -- ~wdata` GPIO_HI_OUT_CLR : GPIO_HI_OUT_CLR_GPIO_HI_OUT_CLR_Field := 16#0#; -- unspecified Reserved_6_31 : HAL.UInt26 := 16#0#; end record with Volatile_Full_Access, Object_Size => 32, Bit_Order => System.Low_Order_First; for GPIO_HI_OUT_CLR_Register use record GPIO_HI_OUT_CLR at 0 range 0 .. 5; Reserved_6_31 at 0 range 6 .. 31; end record; subtype GPIO_HI_OUT_XOR_GPIO_HI_OUT_XOR_Field is HAL.UInt6; -- QSPI output value XOR type GPIO_HI_OUT_XOR_Register is record -- Perform an atomic bitwise XOR on GPIO_HI_OUT, i.e. `GPIO_HI_OUT ^= -- wdata` GPIO_HI_OUT_XOR : GPIO_HI_OUT_XOR_GPIO_HI_OUT_XOR_Field := 16#0#; -- unspecified Reserved_6_31 : HAL.UInt26 := 16#0#; end record with Volatile_Full_Access, Object_Size => 32, Bit_Order => System.Low_Order_First; for GPIO_HI_OUT_XOR_Register use record GPIO_HI_OUT_XOR at 0 range 0 .. 5; Reserved_6_31 at 0 range 6 .. 31; end record; subtype GPIO_HI_OE_GPIO_HI_OE_Field is HAL.UInt6; -- QSPI output enable type GPIO_HI_OE_Register is record -- Set output enable (1/0 -> output/input) for QSPI IO0...5.\n Reading -- back gives the last value written.\n If core 0 and core 1 both write -- to GPIO_HI_OE simultaneously (or to a SET/CLR/XOR alias),\n the -- result is as though the write from core 0 took place first,\n and the -- write from core 1 was then applied to that intermediate result. GPIO_HI_OE : GPIO_HI_OE_GPIO_HI_OE_Field := 16#0#; -- unspecified Reserved_6_31 : HAL.UInt26 := 16#0#; end record with Volatile_Full_Access, Object_Size => 32, Bit_Order => System.Low_Order_First; for GPIO_HI_OE_Register use record GPIO_HI_OE at 0 range 0 .. 5; Reserved_6_31 at 0 range 6 .. 31; end record; subtype GPIO_HI_OE_SET_GPIO_HI_OE_SET_Field is HAL.UInt6; -- QSPI output enable set type GPIO_HI_OE_SET_Register is record -- Perform an atomic bit-set on GPIO_HI_OE, i.e. `GPIO_HI_OE |= wdata` GPIO_HI_OE_SET : GPIO_HI_OE_SET_GPIO_HI_OE_SET_Field := 16#0#; -- unspecified Reserved_6_31 : HAL.UInt26 := 16#0#; end record with Volatile_Full_Access, Object_Size => 32, Bit_Order => System.Low_Order_First; for GPIO_HI_OE_SET_Register use record GPIO_HI_OE_SET at 0 range 0 .. 5; Reserved_6_31 at 0 range 6 .. 31; end record; subtype GPIO_HI_OE_CLR_GPIO_HI_OE_CLR_Field is HAL.UInt6; -- QSPI output enable clear type GPIO_HI_OE_CLR_Register is record -- Perform an atomic bit-clear on GPIO_HI_OE, i.e. `GPIO_HI_OE &= -- ~wdata` GPIO_HI_OE_CLR : GPIO_HI_OE_CLR_GPIO_HI_OE_CLR_Field := 16#0#; -- unspecified Reserved_6_31 : HAL.UInt26 := 16#0#; end record with Volatile_Full_Access, Object_Size => 32, Bit_Order => System.Low_Order_First; for GPIO_HI_OE_CLR_Register use record GPIO_HI_OE_CLR at 0 range 0 .. 5; Reserved_6_31 at 0 range 6 .. 31; end record; subtype GPIO_HI_OE_XOR_GPIO_HI_OE_XOR_Field is HAL.UInt6; -- QSPI output enable XOR type GPIO_HI_OE_XOR_Register is record -- Perform an atomic bitwise XOR on GPIO_HI_OE, i.e. `GPIO_HI_OE ^= -- wdata` GPIO_HI_OE_XOR : GPIO_HI_OE_XOR_GPIO_HI_OE_XOR_Field := 16#0#; -- unspecified Reserved_6_31 : HAL.UInt26 := 16#0#; end record with Volatile_Full_Access, Object_Size => 32, Bit_Order => System.Low_Order_First; for GPIO_HI_OE_XOR_Register use record GPIO_HI_OE_XOR at 0 range 0 .. 5; Reserved_6_31 at 0 range 6 .. 31; end record; -- Status register for inter-core FIFOs (mailboxes).\n There is one FIFO in -- the core 0 -> core 1 direction, and one core 1 -> core 0. Both are 32 -- bits wide and 8 words deep.\n Core 0 can see the read side of the 1->0 -- FIFO (RX), and the write side of 0->1 FIFO (TX).\n Core 1 can see the -- read side of the 0->1 FIFO (RX), and the write side of 1->0 FIFO (TX).\n -- The SIO IRQ for each core is the logical OR of the VLD, WOF and ROE -- fields of its FIFO_ST register. type FIFO_ST_Register is record -- Read-only. Value is 1 if this core's RX FIFO is not empty (i.e. if -- FIFO_RD is valid) VLD : Boolean := False; -- Read-only. Value is 1 if this core's TX FIFO is not full (i.e. if -- FIFO_WR is ready for more data) RDY : Boolean := True; -- Write data bit of one shall clear (set to zero) the corresponding bit -- in the field. Sticky flag indicating the TX FIFO was written when -- full. This write was ignored by the FIFO. WOF : Boolean := False; -- Write data bit of one shall clear (set to zero) the corresponding bit -- in the field. Sticky flag indicating the RX FIFO was read when empty. -- This read was ignored by the FIFO. ROE : Boolean := False; -- unspecified Reserved_4_31 : HAL.UInt28 := 16#0#; end record with Volatile_Full_Access, Object_Size => 32, Bit_Order => System.Low_Order_First; for FIFO_ST_Register use record VLD at 0 range 0 .. 0; RDY at 0 range 1 .. 1; WOF at 0 range 2 .. 2; ROE at 0 range 3 .. 3; Reserved_4_31 at 0 range 4 .. 31; end record; -- Control and status register for divider. type DIV_CSR_Register is record -- Read-only. Reads as 0 when a calculation is in progress, 1 -- otherwise.\n Writing an operand (xDIVIDEND, xDIVISOR) will -- immediately start a new calculation, no\n matter if one is already in -- progress.\n Writing to a result register will immediately terminate -- any in-progress calculation\n and set the READY and DIRTY flags. READY : Boolean; -- Read-only. Changes to 1 when any register is written, and back to 0 -- when QUOTIENT is read.\n Software can use this flag to make -- save/restore more efficient (skip if not DIRTY).\n If the flag is -- used in this way, it's recommended to either read QUOTIENT only,\n or -- REMAINDER and then QUOTIENT, to prevent data loss on context switch. DIRTY : Boolean; -- unspecified Reserved_2_31 : HAL.UInt30; end record with Volatile_Full_Access, Object_Size => 32, Bit_Order => System.Low_Order_First; for DIV_CSR_Register use record READY at 0 range 0 .. 0; DIRTY at 0 range 1 .. 1; Reserved_2_31 at 0 range 2 .. 31; end record; subtype INTERP0_CTRL_LANE0_SHIFT_Field is HAL.UInt5; subtype INTERP0_CTRL_LANE0_MASK_LSB_Field is HAL.UInt5; subtype INTERP0_CTRL_LANE0_MASK_MSB_Field is HAL.UInt5; subtype INTERP0_CTRL_LANE0_FORCE_MSB_Field is HAL.UInt2; -- INTERP0_CTRL_LANE0_OVERF array type INTERP0_CTRL_LANE0_OVERF_Field_Array is array (0 .. 2) of Boolean with Component_Size => 1, Size => 3; -- Type definition for INTERP0_CTRL_LANE0_OVERF type INTERP0_CTRL_LANE0_OVERF_Field (As_Array : Boolean := False) is record case As_Array is when False => -- OVERF as a value Val : HAL.UInt3; when True => -- OVERF as an array Arr : INTERP0_CTRL_LANE0_OVERF_Field_Array; end case; end record with Unchecked_Union, Size => 3; for INTERP0_CTRL_LANE0_OVERF_Field use record Val at 0 range 0 .. 2; Arr at 0 range 0 .. 2; end record; -- Control register for lane 0 type INTERP0_CTRL_LANE0_Register is record -- Logical right-shift applied to accumulator before masking SHIFT : INTERP0_CTRL_LANE0_SHIFT_Field := 16#0#; -- The least-significant bit allowed to pass by the mask (inclusive) MASK_LSB : INTERP0_CTRL_LANE0_MASK_LSB_Field := 16#0#; -- The most-significant bit allowed to pass by the mask (inclusive)\n -- Setting MSB < LSB may cause chip to turn inside-out MASK_MSB : INTERP0_CTRL_LANE0_MASK_MSB_Field := 16#0#; -- If SIGNED is set, the shifted and masked accumulator value is -- sign-extended to 32 bits\n before adding to BASE0, and LANE0 PEEK/POP -- appear extended to 32 bits when read by processor. SIGNED : Boolean := False; -- If 1, feed the opposite lane's accumulator into this lane's shift + -- mask hardware.\n Takes effect even if ADD_RAW is set (the CROSS_INPUT -- mux is before the shift+mask bypass) CROSS_INPUT : Boolean := False; -- If 1, feed the opposite lane's result into this lane's accumulator on -- POP. CROSS_RESULT : Boolean := False; -- If 1, mask + shift is bypassed for LANE0 result. This does not affect -- FULL result. ADD_RAW : Boolean := False; -- ORed into bits 29:28 of the lane result presented to the processor on -- the bus.\n No effect on the internal 32-bit datapath. Handy for using -- a lane to generate sequence\n of pointers into flash or SRAM. FORCE_MSB : INTERP0_CTRL_LANE0_FORCE_MSB_Field := 16#0#; -- Only present on INTERP0 on each core. If BLEND mode is enabled:\n - -- LANE1 result is a linear interpolation between BASE0 and BASE1, -- controlled\n by the 8 LSBs of lane 1 shift and mask value (a -- fractional number between\n 0 and 255/256ths)\n - LANE0 result does -- not have BASE0 added (yields only the 8 LSBs of lane 1 shift+mask -- value)\n - FULL result does not have lane 1 shift+mask value added -- (BASE2 + lane 0 shift+mask)\n LANE1 SIGNED flag controls whether the -- interpolation is signed or unsigned. BLEND : Boolean := False; -- unspecified Reserved_22_22 : HAL.Bit := 16#0#; -- Read-only. Indicates if any masked-off MSBs in ACCUM0 are set. OVERF : INTERP0_CTRL_LANE0_OVERF_Field := (As_Array => False, Val => 16#0#); -- unspecified Reserved_26_31 : HAL.UInt6 := 16#0#; end record with Volatile_Full_Access, Object_Size => 32, Bit_Order => System.Low_Order_First; for INTERP0_CTRL_LANE0_Register use record SHIFT at 0 range 0 .. 4; MASK_LSB at 0 range 5 .. 9; MASK_MSB at 0 range 10 .. 14; SIGNED at 0 range 15 .. 15; CROSS_INPUT at 0 range 16 .. 16; CROSS_RESULT at 0 range 17 .. 17; ADD_RAW at 0 range 18 .. 18; FORCE_MSB at 0 range 19 .. 20; BLEND at 0 range 21 .. 21; Reserved_22_22 at 0 range 22 .. 22; OVERF at 0 range 23 .. 25; Reserved_26_31 at 0 range 26 .. 31; end record; subtype INTERP0_CTRL_LANE1_SHIFT_Field is HAL.UInt5; subtype INTERP0_CTRL_LANE1_MASK_LSB_Field is HAL.UInt5; subtype INTERP0_CTRL_LANE1_MASK_MSB_Field is HAL.UInt5; subtype INTERP0_CTRL_LANE1_FORCE_MSB_Field is HAL.UInt2; -- Control register for lane 1 type INTERP0_CTRL_LANE1_Register is record -- Logical right-shift applied to accumulator before masking SHIFT : INTERP0_CTRL_LANE1_SHIFT_Field := 16#0#; -- The least-significant bit allowed to pass by the mask (inclusive) MASK_LSB : INTERP0_CTRL_LANE1_MASK_LSB_Field := 16#0#; -- The most-significant bit allowed to pass by the mask (inclusive)\n -- Setting MSB < LSB may cause chip to turn inside-out MASK_MSB : INTERP0_CTRL_LANE1_MASK_MSB_Field := 16#0#; -- If SIGNED is set, the shifted and masked accumulator value is -- sign-extended to 32 bits\n before adding to BASE1, and LANE1 PEEK/POP -- appear extended to 32 bits when read by processor. SIGNED : Boolean := False; -- If 1, feed the opposite lane's accumulator into this lane's shift + -- mask hardware.\n Takes effect even if ADD_RAW is set (the CROSS_INPUT -- mux is before the shift+mask bypass) CROSS_INPUT : Boolean := False; -- If 1, feed the opposite lane's result into this lane's accumulator on -- POP. CROSS_RESULT : Boolean := False; -- If 1, mask + shift is bypassed for LANE1 result. This does not affect -- FULL result. ADD_RAW : Boolean := False; -- ORed into bits 29:28 of the lane result presented to the processor on -- the bus.\n No effect on the internal 32-bit datapath. Handy for using -- a lane to generate sequence\n of pointers into flash or SRAM. FORCE_MSB : INTERP0_CTRL_LANE1_FORCE_MSB_Field := 16#0#; -- unspecified Reserved_21_31 : HAL.UInt11 := 16#0#; end record with Volatile_Full_Access, Object_Size => 32, Bit_Order => System.Low_Order_First; for INTERP0_CTRL_LANE1_Register use record SHIFT at 0 range 0 .. 4; MASK_LSB at 0 range 5 .. 9; MASK_MSB at 0 range 10 .. 14; SIGNED at 0 range 15 .. 15; CROSS_INPUT at 0 range 16 .. 16; CROSS_RESULT at 0 range 17 .. 17; ADD_RAW at 0 range 18 .. 18; FORCE_MSB at 0 range 19 .. 20; Reserved_21_31 at 0 range 21 .. 31; end record; subtype INTERP0_ACCUM0_ADD_INTERP0_ACCUM0_ADD_Field is HAL.UInt24; -- Values written here are atomically added to ACCUM0\n Reading yields lane -- 0's raw shift and mask value (BASE0 not added). type INTERP0_ACCUM0_ADD_Register is record INTERP0_ACCUM0_ADD : INTERP0_ACCUM0_ADD_INTERP0_ACCUM0_ADD_Field := 16#0#; -- unspecified Reserved_24_31 : HAL.UInt8 := 16#0#; end record with Volatile_Full_Access, Object_Size => 32, Bit_Order => System.Low_Order_First; for INTERP0_ACCUM0_ADD_Register use record INTERP0_ACCUM0_ADD at 0 range 0 .. 23; Reserved_24_31 at 0 range 24 .. 31; end record; subtype INTERP0_ACCUM1_ADD_INTERP0_ACCUM1_ADD_Field is HAL.UInt24; -- Values written here are atomically added to ACCUM1\n Reading yields lane -- 1's raw shift and mask value (BASE1 not added). type INTERP0_ACCUM1_ADD_Register is record INTERP0_ACCUM1_ADD : INTERP0_ACCUM1_ADD_INTERP0_ACCUM1_ADD_Field := 16#0#; -- unspecified Reserved_24_31 : HAL.UInt8 := 16#0#; end record with Volatile_Full_Access, Object_Size => 32, Bit_Order => System.Low_Order_First; for INTERP0_ACCUM1_ADD_Register use record INTERP0_ACCUM1_ADD at 0 range 0 .. 23; Reserved_24_31 at 0 range 24 .. 31; end record; subtype INTERP1_CTRL_LANE0_SHIFT_Field is HAL.UInt5; subtype INTERP1_CTRL_LANE0_MASK_LSB_Field is HAL.UInt5; subtype INTERP1_CTRL_LANE0_MASK_MSB_Field is HAL.UInt5; subtype INTERP1_CTRL_LANE0_FORCE_MSB_Field is HAL.UInt2; -- INTERP1_CTRL_LANE0_OVERF array type INTERP1_CTRL_LANE0_OVERF_Field_Array is array (0 .. 2) of Boolean with Component_Size => 1, Size => 3; -- Type definition for INTERP1_CTRL_LANE0_OVERF type INTERP1_CTRL_LANE0_OVERF_Field (As_Array : Boolean := False) is record case As_Array is when False => -- OVERF as a value Val : HAL.UInt3; when True => -- OVERF as an array Arr : INTERP1_CTRL_LANE0_OVERF_Field_Array; end case; end record with Unchecked_Union, Size => 3; for INTERP1_CTRL_LANE0_OVERF_Field use record Val at 0 range 0 .. 2; Arr at 0 range 0 .. 2; end record; -- Control register for lane 0 type INTERP1_CTRL_LANE0_Register is record -- Logical right-shift applied to accumulator before masking SHIFT : INTERP1_CTRL_LANE0_SHIFT_Field := 16#0#; -- The least-significant bit allowed to pass by the mask (inclusive) MASK_LSB : INTERP1_CTRL_LANE0_MASK_LSB_Field := 16#0#; -- The most-significant bit allowed to pass by the mask (inclusive)\n -- Setting MSB < LSB may cause chip to turn inside-out MASK_MSB : INTERP1_CTRL_LANE0_MASK_MSB_Field := 16#0#; -- If SIGNED is set, the shifted and masked accumulator value is -- sign-extended to 32 bits\n before adding to BASE0, and LANE0 PEEK/POP -- appear extended to 32 bits when read by processor. SIGNED : Boolean := False; -- If 1, feed the opposite lane's accumulator into this lane's shift + -- mask hardware.\n Takes effect even if ADD_RAW is set (the CROSS_INPUT -- mux is before the shift+mask bypass) CROSS_INPUT : Boolean := False; -- If 1, feed the opposite lane's result into this lane's accumulator on -- POP. CROSS_RESULT : Boolean := False; -- If 1, mask + shift is bypassed for LANE0 result. This does not affect -- FULL result. ADD_RAW : Boolean := False; -- ORed into bits 29:28 of the lane result presented to the processor on -- the bus.\n No effect on the internal 32-bit datapath. Handy for using -- a lane to generate sequence\n of pointers into flash or SRAM. FORCE_MSB : INTERP1_CTRL_LANE0_FORCE_MSB_Field := 16#0#; -- unspecified Reserved_21_21 : HAL.Bit := 16#0#; -- Only present on INTERP1 on each core. If CLAMP mode is enabled:\n - -- LANE0 result is shifted and masked ACCUM0, clamped by a lower bound -- of\n BASE0 and an upper bound of BASE1.\n - Signedness of these -- comparisons is determined by LANE0_CTRL_SIGNED CLAMP : Boolean := False; -- Read-only. Indicates if any masked-off MSBs in ACCUM0 are set. OVERF : INTERP1_CTRL_LANE0_OVERF_Field := (As_Array => False, Val => 16#0#); -- unspecified Reserved_26_31 : HAL.UInt6 := 16#0#; end record with Volatile_Full_Access, Object_Size => 32, Bit_Order => System.Low_Order_First; for INTERP1_CTRL_LANE0_Register use record SHIFT at 0 range 0 .. 4; MASK_LSB at 0 range 5 .. 9; MASK_MSB at 0 range 10 .. 14; SIGNED at 0 range 15 .. 15; CROSS_INPUT at 0 range 16 .. 16; CROSS_RESULT at 0 range 17 .. 17; ADD_RAW at 0 range 18 .. 18; FORCE_MSB at 0 range 19 .. 20; Reserved_21_21 at 0 range 21 .. 21; CLAMP at 0 range 22 .. 22; OVERF at 0 range 23 .. 25; Reserved_26_31 at 0 range 26 .. 31; end record; subtype INTERP1_CTRL_LANE1_SHIFT_Field is HAL.UInt5; subtype INTERP1_CTRL_LANE1_MASK_LSB_Field is HAL.UInt5; subtype INTERP1_CTRL_LANE1_MASK_MSB_Field is HAL.UInt5; subtype INTERP1_CTRL_LANE1_FORCE_MSB_Field is HAL.UInt2; -- Control register for lane 1 type INTERP1_CTRL_LANE1_Register is record -- Logical right-shift applied to accumulator before masking SHIFT : INTERP1_CTRL_LANE1_SHIFT_Field := 16#0#; -- The least-significant bit allowed to pass by the mask (inclusive) MASK_LSB : INTERP1_CTRL_LANE1_MASK_LSB_Field := 16#0#; -- The most-significant bit allowed to pass by the mask (inclusive)\n -- Setting MSB < LSB may cause chip to turn inside-out MASK_MSB : INTERP1_CTRL_LANE1_MASK_MSB_Field := 16#0#; -- If SIGNED is set, the shifted and masked accumulator value is -- sign-extended to 32 bits\n before adding to BASE1, and LANE1 PEEK/POP -- appear extended to 32 bits when read by processor. SIGNED : Boolean := False; -- If 1, feed the opposite lane's accumulator into this lane's shift + -- mask hardware.\n Takes effect even if ADD_RAW is set (the CROSS_INPUT -- mux is before the shift+mask bypass) CROSS_INPUT : Boolean := False; -- If 1, feed the opposite lane's result into this lane's accumulator on -- POP. CROSS_RESULT : Boolean := False; -- If 1, mask + shift is bypassed for LANE1 result. This does not affect -- FULL result. ADD_RAW : Boolean := False; -- ORed into bits 29:28 of the lane result presented to the processor on -- the bus.\n No effect on the internal 32-bit datapath. Handy for using -- a lane to generate sequence\n of pointers into flash or SRAM. FORCE_MSB : INTERP1_CTRL_LANE1_FORCE_MSB_Field := 16#0#; -- unspecified Reserved_21_31 : HAL.UInt11 := 16#0#; end record with Volatile_Full_Access, Object_Size => 32, Bit_Order => System.Low_Order_First; for INTERP1_CTRL_LANE1_Register use record SHIFT at 0 range 0 .. 4; MASK_LSB at 0 range 5 .. 9; MASK_MSB at 0 range 10 .. 14; SIGNED at 0 range 15 .. 15; CROSS_INPUT at 0 range 16 .. 16; CROSS_RESULT at 0 range 17 .. 17; ADD_RAW at 0 range 18 .. 18; FORCE_MSB at 0 range 19 .. 20; Reserved_21_31 at 0 range 21 .. 31; end record; subtype INTERP1_ACCUM0_ADD_INTERP1_ACCUM0_ADD_Field is HAL.UInt24; -- Values written here are atomically added to ACCUM0\n Reading yields lane -- 0's raw shift and mask value (BASE0 not added). type INTERP1_ACCUM0_ADD_Register is record INTERP1_ACCUM0_ADD : INTERP1_ACCUM0_ADD_INTERP1_ACCUM0_ADD_Field := 16#0#; -- unspecified Reserved_24_31 : HAL.UInt8 := 16#0#; end record with Volatile_Full_Access, Object_Size => 32, Bit_Order => System.Low_Order_First; for INTERP1_ACCUM0_ADD_Register use record INTERP1_ACCUM0_ADD at 0 range 0 .. 23; Reserved_24_31 at 0 range 24 .. 31; end record; subtype INTERP1_ACCUM1_ADD_INTERP1_ACCUM1_ADD_Field is HAL.UInt24; -- Values written here are atomically added to ACCUM1\n Reading yields lane -- 1's raw shift and mask value (BASE1 not added). type INTERP1_ACCUM1_ADD_Register is record INTERP1_ACCUM1_ADD : INTERP1_ACCUM1_ADD_INTERP1_ACCUM1_ADD_Field := 16#0#; -- unspecified Reserved_24_31 : HAL.UInt8 := 16#0#; end record with Volatile_Full_Access, Object_Size => 32, Bit_Order => System.Low_Order_First; for INTERP1_ACCUM1_ADD_Register use record INTERP1_ACCUM1_ADD at 0 range 0 .. 23; Reserved_24_31 at 0 range 24 .. 31; end record; ----------------- -- Peripherals -- ----------------- -- Single-cycle IO block\n Provides core-local and inter-core hardware for -- the two processors, with single-cycle access. type SIO_Peripheral is record -- Processor core identifier\n Value is 0 when read from processor core -- 0, and 1 when read from processor core 1. CPUID : aliased HAL.UInt32; -- Input value for GPIO pins GPIO_IN : aliased GPIO_IN_Register; -- Input value for QSPI pins GPIO_HI_IN : aliased GPIO_HI_IN_Register; -- GPIO output value GPIO_OUT : aliased GPIO_OUT_Register; -- GPIO output value set GPIO_OUT_SET : aliased GPIO_OUT_SET_Register; -- GPIO output value clear GPIO_OUT_CLR : aliased GPIO_OUT_CLR_Register; -- GPIO output value XOR GPIO_OUT_XOR : aliased GPIO_OUT_XOR_Register; -- GPIO output enable GPIO_OE : aliased GPIO_OE_Register; -- GPIO output enable set GPIO_OE_SET : aliased GPIO_OE_SET_Register; -- GPIO output enable clear GPIO_OE_CLR : aliased GPIO_OE_CLR_Register; -- GPIO output enable XOR GPIO_OE_XOR : aliased GPIO_OE_XOR_Register; -- QSPI output value GPIO_HI_OUT : aliased GPIO_HI_OUT_Register; -- QSPI output value set GPIO_HI_OUT_SET : aliased GPIO_HI_OUT_SET_Register; -- QSPI output value clear GPIO_HI_OUT_CLR : aliased GPIO_HI_OUT_CLR_Register; -- QSPI output value XOR GPIO_HI_OUT_XOR : aliased GPIO_HI_OUT_XOR_Register; -- QSPI output enable GPIO_HI_OE : aliased GPIO_HI_OE_Register; -- QSPI output enable set GPIO_HI_OE_SET : aliased GPIO_HI_OE_SET_Register; -- QSPI output enable clear GPIO_HI_OE_CLR : aliased GPIO_HI_OE_CLR_Register; -- QSPI output enable XOR GPIO_HI_OE_XOR : aliased GPIO_HI_OE_XOR_Register; -- Status register for inter-core FIFOs (mailboxes).\n There is one FIFO -- in the core 0 -> core 1 direction, and one core 1 -> core 0. Both are -- 32 bits wide and 8 words deep.\n Core 0 can see the read side of the -- 1->0 FIFO (RX), and the write side of 0->1 FIFO (TX).\n Core 1 can -- see the read side of the 0->1 FIFO (RX), and the write side of 1->0 -- FIFO (TX).\n The SIO IRQ for each core is the logical OR of the VLD, -- WOF and ROE fields of its FIFO_ST register. FIFO_ST : aliased FIFO_ST_Register; -- Write access to this core's TX FIFO FIFO_WR : aliased HAL.UInt32; -- Read access to this core's RX FIFO FIFO_RD : aliased HAL.UInt32; -- Spinlock state\n A bitmap containing the state of all 32 spinlocks -- (1=locked).\n Mainly intended for debugging. SPINLOCK_ST : aliased HAL.UInt32; -- Divider unsigned dividend\n Write to the DIVIDEND operand of the -- divider, i.e. the p in `p / q`.\n Any operand write starts a new -- calculation. The results appear in QUOTIENT, REMAINDER.\n -- UDIVIDEND/SDIVIDEND are aliases of the same internal register. The U -- alias starts an\n unsigned calculation, and the S alias starts a -- signed calculation. DIV_UDIVIDEND : aliased HAL.UInt32; -- Divider unsigned divisor\n Write to the DIVISOR operand of the -- divider, i.e. the q in `p / q`.\n Any operand write starts a new -- calculation. The results appear in QUOTIENT, REMAINDER.\n -- UDIVIDEND/SDIVIDEND are aliases of the same internal register. The U -- alias starts an\n unsigned calculation, and the S alias starts a -- signed calculation. DIV_UDIVISOR : aliased HAL.UInt32; -- Divider signed dividend\n The same as UDIVIDEND, but starts a signed -- calculation, rather than unsigned. DIV_SDIVIDEND : aliased HAL.UInt32; -- Divider signed divisor\n The same as UDIVISOR, but starts a signed -- calculation, rather than unsigned. DIV_SDIVISOR : aliased HAL.UInt32; -- Divider result quotient\n The result of `DIVIDEND / DIVISOR` -- (division). Contents undefined while CSR_READY is low.\n For signed -- calculations, QUOTIENT is negative when the signs of DIVIDEND and -- DIVISOR differ.\n This register can be written to directly, for -- context save/restore purposes. This halts any\n in-progress -- calculation and sets the CSR_READY and CSR_DIRTY flags.\n Reading -- from QUOTIENT clears the CSR_DIRTY flag, so should read results in -- the order\n REMAINDER, QUOTIENT if CSR_DIRTY is used. DIV_QUOTIENT : aliased HAL.UInt32; -- Divider result remainder\n The result of `DIVIDEND % DIVISOR` -- (modulo). Contents undefined while CSR_READY is low.\n For signed -- calculations, REMAINDER is negative only when DIVIDEND is negative.\n -- This register can be written to directly, for context save/restore -- purposes. This halts any\n in-progress calculation and sets the -- CSR_READY and CSR_DIRTY flags. DIV_REMAINDER : aliased HAL.UInt32; -- Control and status register for divider. DIV_CSR : aliased DIV_CSR_Register; -- Read/write access to accumulator 0 INTERP0_ACCUM0 : aliased HAL.UInt32; -- Read/write access to accumulator 1 INTERP0_ACCUM1 : aliased HAL.UInt32; -- Read/write access to BASE0 register. INTERP0_BASE0 : aliased HAL.UInt32; -- Read/write access to BASE1 register. INTERP0_BASE1 : aliased HAL.UInt32; -- Read/write access to BASE2 register. INTERP0_BASE2 : aliased HAL.UInt32; -- Read LANE0 result, and simultaneously write lane results to both -- accumulators (POP). INTERP0_POP_LANE0 : aliased HAL.UInt32; -- Read LANE1 result, and simultaneously write lane results to both -- accumulators (POP). INTERP0_POP_LANE1 : aliased HAL.UInt32; -- Read FULL result, and simultaneously write lane results to both -- accumulators (POP). INTERP0_POP_FULL : aliased HAL.UInt32; -- Read LANE0 result, without altering any internal state (PEEK). INTERP0_PEEK_LANE0 : aliased HAL.UInt32; -- Read LANE1 result, without altering any internal state (PEEK). INTERP0_PEEK_LANE1 : aliased HAL.UInt32; -- Read FULL result, without altering any internal state (PEEK). INTERP0_PEEK_FULL : aliased HAL.UInt32; -- Control register for lane 0 INTERP0_CTRL_LANE0 : aliased INTERP0_CTRL_LANE0_Register; -- Control register for lane 1 INTERP0_CTRL_LANE1 : aliased INTERP0_CTRL_LANE1_Register; -- Values written here are atomically added to ACCUM0\n Reading yields -- lane 0's raw shift and mask value (BASE0 not added). INTERP0_ACCUM0_ADD : aliased INTERP0_ACCUM0_ADD_Register; -- Values written here are atomically added to ACCUM1\n Reading yields -- lane 1's raw shift and mask value (BASE1 not added). INTERP0_ACCUM1_ADD : aliased INTERP0_ACCUM1_ADD_Register; -- On write, the lower 16 bits go to BASE0, upper bits to BASE1 -- simultaneously.\n Each half is sign-extended to 32 bits if that -- lane's SIGNED flag is set. INTERP0_BASE_1AND0 : aliased HAL.UInt32; -- Read/write access to accumulator 0 INTERP1_ACCUM0 : aliased HAL.UInt32; -- Read/write access to accumulator 1 INTERP1_ACCUM1 : aliased HAL.UInt32; -- Read/write access to BASE0 register. INTERP1_BASE0 : aliased HAL.UInt32; -- Read/write access to BASE1 register. INTERP1_BASE1 : aliased HAL.UInt32; -- Read/write access to BASE2 register. INTERP1_BASE2 : aliased HAL.UInt32; -- Read LANE0 result, and simultaneously write lane results to both -- accumulators (POP). INTERP1_POP_LANE0 : aliased HAL.UInt32; -- Read LANE1 result, and simultaneously write lane results to both -- accumulators (POP). INTERP1_POP_LANE1 : aliased HAL.UInt32; -- Read FULL result, and simultaneously write lane results to both -- accumulators (POP). INTERP1_POP_FULL : aliased HAL.UInt32; -- Read LANE0 result, without altering any internal state (PEEK). INTERP1_PEEK_LANE0 : aliased HAL.UInt32; -- Read LANE1 result, without altering any internal state (PEEK). INTERP1_PEEK_LANE1 : aliased HAL.UInt32; -- Read FULL result, without altering any internal state (PEEK). INTERP1_PEEK_FULL : aliased HAL.UInt32; -- Control register for lane 0 INTERP1_CTRL_LANE0 : aliased INTERP1_CTRL_LANE0_Register; -- Control register for lane 1 INTERP1_CTRL_LANE1 : aliased INTERP1_CTRL_LANE1_Register; -- Values written here are atomically added to ACCUM0\n Reading yields -- lane 0's raw shift and mask value (BASE0 not added). INTERP1_ACCUM0_ADD : aliased INTERP1_ACCUM0_ADD_Register; -- Values written here are atomically added to ACCUM1\n Reading yields -- lane 1's raw shift and mask value (BASE1 not added). INTERP1_ACCUM1_ADD : aliased INTERP1_ACCUM1_ADD_Register; -- On write, the lower 16 bits go to BASE0, upper bits to BASE1 -- simultaneously.\n Each half is sign-extended to 32 bits if that -- lane's SIGNED flag is set. INTERP1_BASE_1AND0 : aliased HAL.UInt32; -- Reading from a spinlock address will:\n - Return 0 if lock is already -- locked\n - Otherwise return nonzero, and simultaneously claim the -- lock\n\n Writing (any value) releases the lock.\n If core 0 and core -- 1 attempt to claim the same lock simultaneously, core 0 wins.\n The -- value returned on success is 0x1 << lock number. SPINLOCK0 : aliased HAL.UInt32; -- Reading from a spinlock address will:\n - Return 0 if lock is already -- locked\n - Otherwise return nonzero, and simultaneously claim the -- lock\n\n Writing (any value) releases the lock.\n If core 0 and core -- 1 attempt to claim the same lock simultaneously, core 0 wins.\n The -- value returned on success is 0x1 << lock number. SPINLOCK1 : aliased HAL.UInt32; -- Reading from a spinlock address will:\n - Return 0 if lock is already -- locked\n - Otherwise return nonzero, and simultaneously claim the -- lock\n\n Writing (any value) releases the lock.\n If core 0 and core -- 1 attempt to claim the same lock simultaneously, core 0 wins.\n The -- value returned on success is 0x1 << lock number. SPINLOCK2 : aliased HAL.UInt32; -- Reading from a spinlock address will:\n - Return 0 if lock is already -- locked\n - Otherwise return nonzero, and simultaneously claim the -- lock\n\n Writing (any value) releases the lock.\n If core 0 and core -- 1 attempt to claim the same lock simultaneously, core 0 wins.\n The -- value returned on success is 0x1 << lock number. SPINLOCK3 : aliased HAL.UInt32; -- Reading from a spinlock address will:\n - Return 0 if lock is already -- locked\n - Otherwise return nonzero, and simultaneously claim the -- lock\n\n Writing (any value) releases the lock.\n If core 0 and core -- 1 attempt to claim the same lock simultaneously, core 0 wins.\n The -- value returned on success is 0x1 << lock number. SPINLOCK4 : aliased HAL.UInt32; -- Reading from a spinlock address will:\n - Return 0 if lock is already -- locked\n - Otherwise return nonzero, and simultaneously claim the -- lock\n\n Writing (any value) releases the lock.\n If core 0 and core -- 1 attempt to claim the same lock simultaneously, core 0 wins.\n The -- value returned on success is 0x1 << lock number. SPINLOCK5 : aliased HAL.UInt32; -- Reading from a spinlock address will:\n - Return 0 if lock is already -- locked\n - Otherwise return nonzero, and simultaneously claim the -- lock\n\n Writing (any value) releases the lock.\n If core 0 and core -- 1 attempt to claim the same lock simultaneously, core 0 wins.\n The -- value returned on success is 0x1 << lock number. SPINLOCK6 : aliased HAL.UInt32; -- Reading from a spinlock address will:\n - Return 0 if lock is already -- locked\n - Otherwise return nonzero, and simultaneously claim the -- lock\n\n Writing (any value) releases the lock.\n If core 0 and core -- 1 attempt to claim the same lock simultaneously, core 0 wins.\n The -- value returned on success is 0x1 << lock number. SPINLOCK7 : aliased HAL.UInt32; -- Reading from a spinlock address will:\n - Return 0 if lock is already -- locked\n - Otherwise return nonzero, and simultaneously claim the -- lock\n\n Writing (any value) releases the lock.\n If core 0 and core -- 1 attempt to claim the same lock simultaneously, core 0 wins.\n The -- value returned on success is 0x1 << lock number. SPINLOCK8 : aliased HAL.UInt32; -- Reading from a spinlock address will:\n - Return 0 if lock is already -- locked\n - Otherwise return nonzero, and simultaneously claim the -- lock\n\n Writing (any value) releases the lock.\n If core 0 and core -- 1 attempt to claim the same lock simultaneously, core 0 wins.\n The -- value returned on success is 0x1 << lock number. SPINLOCK9 : aliased HAL.UInt32; -- Reading from a spinlock address will:\n - Return 0 if lock is already -- locked\n - Otherwise return nonzero, and simultaneously claim the -- lock\n\n Writing (any value) releases the lock.\n If core 0 and core -- 1 attempt to claim the same lock simultaneously, core 0 wins.\n The -- value returned on success is 0x1 << lock number. SPINLOCK10 : aliased HAL.UInt32; -- Reading from a spinlock address will:\n - Return 0 if lock is already -- locked\n - Otherwise return nonzero, and simultaneously claim the -- lock\n\n Writing (any value) releases the lock.\n If core 0 and core -- 1 attempt to claim the same lock simultaneously, core 0 wins.\n The -- value returned on success is 0x1 << lock number. SPINLOCK11 : aliased HAL.UInt32; -- Reading from a spinlock address will:\n - Return 0 if lock is already -- locked\n - Otherwise return nonzero, and simultaneously claim the -- lock\n\n Writing (any value) releases the lock.\n If core 0 and core -- 1 attempt to claim the same lock simultaneously, core 0 wins.\n The -- value returned on success is 0x1 << lock number. SPINLOCK12 : aliased HAL.UInt32; -- Reading from a spinlock address will:\n - Return 0 if lock is already -- locked\n - Otherwise return nonzero, and simultaneously claim the -- lock\n\n Writing (any value) releases the lock.\n If core 0 and core -- 1 attempt to claim the same lock simultaneously, core 0 wins.\n The -- value returned on success is 0x1 << lock number. SPINLOCK13 : aliased HAL.UInt32; -- Reading from a spinlock address will:\n - Return 0 if lock is already -- locked\n - Otherwise return nonzero, and simultaneously claim the -- lock\n\n Writing (any value) releases the lock.\n If core 0 and core -- 1 attempt to claim the same lock simultaneously, core 0 wins.\n The -- value returned on success is 0x1 << lock number. SPINLOCK14 : aliased HAL.UInt32; -- Reading from a spinlock address will:\n - Return 0 if lock is already -- locked\n - Otherwise return nonzero, and simultaneously claim the -- lock\n\n Writing (any value) releases the lock.\n If core 0 and core -- 1 attempt to claim the same lock simultaneously, core 0 wins.\n The -- value returned on success is 0x1 << lock number. SPINLOCK15 : aliased HAL.UInt32; -- Reading from a spinlock address will:\n - Return 0 if lock is already -- locked\n - Otherwise return nonzero, and simultaneously claim the -- lock\n\n Writing (any value) releases the lock.\n If core 0 and core -- 1 attempt to claim the same lock simultaneously, core 0 wins.\n The -- value returned on success is 0x1 << lock number. SPINLOCK16 : aliased HAL.UInt32; -- Reading from a spinlock address will:\n - Return 0 if lock is already -- locked\n - Otherwise return nonzero, and simultaneously claim the -- lock\n\n Writing (any value) releases the lock.\n If core 0 and core -- 1 attempt to claim the same lock simultaneously, core 0 wins.\n The -- value returned on success is 0x1 << lock number. SPINLOCK17 : aliased HAL.UInt32; -- Reading from a spinlock address will:\n - Return 0 if lock is already -- locked\n - Otherwise return nonzero, and simultaneously claim the -- lock\n\n Writing (any value) releases the lock.\n If core 0 and core -- 1 attempt to claim the same lock simultaneously, core 0 wins.\n The -- value returned on success is 0x1 << lock number. SPINLOCK18 : aliased HAL.UInt32; -- Reading from a spinlock address will:\n - Return 0 if lock is already -- locked\n - Otherwise return nonzero, and simultaneously claim the -- lock\n\n Writing (any value) releases the lock.\n If core 0 and core -- 1 attempt to claim the same lock simultaneously, core 0 wins.\n The -- value returned on success is 0x1 << lock number. SPINLOCK19 : aliased HAL.UInt32; -- Reading from a spinlock address will:\n - Return 0 if lock is already -- locked\n - Otherwise return nonzero, and simultaneously claim the -- lock\n\n Writing (any value) releases the lock.\n If core 0 and core -- 1 attempt to claim the same lock simultaneously, core 0 wins.\n The -- value returned on success is 0x1 << lock number. SPINLOCK20 : aliased HAL.UInt32; -- Reading from a spinlock address will:\n - Return 0 if lock is already -- locked\n - Otherwise return nonzero, and simultaneously claim the -- lock\n\n Writing (any value) releases the lock.\n If core 0 and core -- 1 attempt to claim the same lock simultaneously, core 0 wins.\n The -- value returned on success is 0x1 << lock number. SPINLOCK21 : aliased HAL.UInt32; -- Reading from a spinlock address will:\n - Return 0 if lock is already -- locked\n - Otherwise return nonzero, and simultaneously claim the -- lock\n\n Writing (any value) releases the lock.\n If core 0 and core -- 1 attempt to claim the same lock simultaneously, core 0 wins.\n The -- value returned on success is 0x1 << lock number. SPINLOCK22 : aliased HAL.UInt32; -- Reading from a spinlock address will:\n - Return 0 if lock is already -- locked\n - Otherwise return nonzero, and simultaneously claim the -- lock\n\n Writing (any value) releases the lock.\n If core 0 and core -- 1 attempt to claim the same lock simultaneously, core 0 wins.\n The -- value returned on success is 0x1 << lock number. SPINLOCK23 : aliased HAL.UInt32; -- Reading from a spinlock address will:\n - Return 0 if lock is already -- locked\n - Otherwise return nonzero, and simultaneously claim the -- lock\n\n Writing (any value) releases the lock.\n If core 0 and core -- 1 attempt to claim the same lock simultaneously, core 0 wins.\n The -- value returned on success is 0x1 << lock number. SPINLOCK24 : aliased HAL.UInt32; -- Reading from a spinlock address will:\n - Return 0 if lock is already -- locked\n - Otherwise return nonzero, and simultaneously claim the -- lock\n\n Writing (any value) releases the lock.\n If core 0 and core -- 1 attempt to claim the same lock simultaneously, core 0 wins.\n The -- value returned on success is 0x1 << lock number. SPINLOCK25 : aliased HAL.UInt32; -- Reading from a spinlock address will:\n - Return 0 if lock is already -- locked\n - Otherwise return nonzero, and simultaneously claim the -- lock\n\n Writing (any value) releases the lock.\n If core 0 and core -- 1 attempt to claim the same lock simultaneously, core 0 wins.\n The -- value returned on success is 0x1 << lock number. SPINLOCK26 : aliased HAL.UInt32; -- Reading from a spinlock address will:\n - Return 0 if lock is already -- locked\n - Otherwise return nonzero, and simultaneously claim the -- lock\n\n Writing (any value) releases the lock.\n If core 0 and core -- 1 attempt to claim the same lock simultaneously, core 0 wins.\n The -- value returned on success is 0x1 << lock number. SPINLOCK27 : aliased HAL.UInt32; -- Reading from a spinlock address will:\n - Return 0 if lock is already -- locked\n - Otherwise return nonzero, and simultaneously claim the -- lock\n\n Writing (any value) releases the lock.\n If core 0 and core -- 1 attempt to claim the same lock simultaneously, core 0 wins.\n The -- value returned on success is 0x1 << lock number. SPINLOCK28 : aliased HAL.UInt32; -- Reading from a spinlock address will:\n - Return 0 if lock is already -- locked\n - Otherwise return nonzero, and simultaneously claim the -- lock\n\n Writing (any value) releases the lock.\n If core 0 and core -- 1 attempt to claim the same lock simultaneously, core 0 wins.\n The -- value returned on success is 0x1 << lock number. SPINLOCK29 : aliased HAL.UInt32; -- Reading from a spinlock address will:\n - Return 0 if lock is already -- locked\n - Otherwise return nonzero, and simultaneously claim the -- lock\n\n Writing (any value) releases the lock.\n If core 0 and core -- 1 attempt to claim the same lock simultaneously, core 0 wins.\n The -- value returned on success is 0x1 << lock number. SPINLOCK30 : aliased HAL.UInt32; -- Reading from a spinlock address will:\n - Return 0 if lock is already -- locked\n - Otherwise return nonzero, and simultaneously claim the -- lock\n\n Writing (any value) releases the lock.\n If core 0 and core -- 1 attempt to claim the same lock simultaneously, core 0 wins.\n The -- value returned on success is 0x1 << lock number. SPINLOCK31 : aliased HAL.UInt32; end record with Volatile; for SIO_Peripheral use record CPUID at 16#0# range 0 .. 31; GPIO_IN at 16#4# range 0 .. 31; GPIO_HI_IN at 16#8# range 0 .. 31; GPIO_OUT at 16#10# range 0 .. 31; GPIO_OUT_SET at 16#14# range 0 .. 31; GPIO_OUT_CLR at 16#18# range 0 .. 31; GPIO_OUT_XOR at 16#1C# range 0 .. 31; GPIO_OE at 16#20# range 0 .. 31; GPIO_OE_SET at 16#24# range 0 .. 31; GPIO_OE_CLR at 16#28# range 0 .. 31; GPIO_OE_XOR at 16#2C# range 0 .. 31; GPIO_HI_OUT at 16#30# range 0 .. 31; GPIO_HI_OUT_SET at 16#34# range 0 .. 31; GPIO_HI_OUT_CLR at 16#38# range 0 .. 31; GPIO_HI_OUT_XOR at 16#3C# range 0 .. 31; GPIO_HI_OE at 16#40# range 0 .. 31; GPIO_HI_OE_SET at 16#44# range 0 .. 31; GPIO_HI_OE_CLR at 16#48# range 0 .. 31; GPIO_HI_OE_XOR at 16#4C# range 0 .. 31; FIFO_ST at 16#50# range 0 .. 31; FIFO_WR at 16#54# range 0 .. 31; FIFO_RD at 16#58# range 0 .. 31; SPINLOCK_ST at 16#5C# range 0 .. 31; DIV_UDIVIDEND at 16#60# range 0 .. 31; DIV_UDIVISOR at 16#64# range 0 .. 31; DIV_SDIVIDEND at 16#68# range 0 .. 31; DIV_SDIVISOR at 16#6C# range 0 .. 31; DIV_QUOTIENT at 16#70# range 0 .. 31; DIV_REMAINDER at 16#74# range 0 .. 31; DIV_CSR at 16#78# range 0 .. 31; INTERP0_ACCUM0 at 16#80# range 0 .. 31; INTERP0_ACCUM1 at 16#84# range 0 .. 31; INTERP0_BASE0 at 16#88# range 0 .. 31; INTERP0_BASE1 at 16#8C# range 0 .. 31; INTERP0_BASE2 at 16#90# range 0 .. 31; INTERP0_POP_LANE0 at 16#94# range 0 .. 31; INTERP0_POP_LANE1 at 16#98# range 0 .. 31; INTERP0_POP_FULL at 16#9C# range 0 .. 31; INTERP0_PEEK_LANE0 at 16#A0# range 0 .. 31; INTERP0_PEEK_LANE1 at 16#A4# range 0 .. 31; INTERP0_PEEK_FULL at 16#A8# range 0 .. 31; INTERP0_CTRL_LANE0 at 16#AC# range 0 .. 31; INTERP0_CTRL_LANE1 at 16#B0# range 0 .. 31; INTERP0_ACCUM0_ADD at 16#B4# range 0 .. 31; INTERP0_ACCUM1_ADD at 16#B8# range 0 .. 31; INTERP0_BASE_1AND0 at 16#BC# range 0 .. 31; INTERP1_ACCUM0 at 16#C0# range 0 .. 31; INTERP1_ACCUM1 at 16#C4# range 0 .. 31; INTERP1_BASE0 at 16#C8# range 0 .. 31; INTERP1_BASE1 at 16#CC# range 0 .. 31; INTERP1_BASE2 at 16#D0# range 0 .. 31; INTERP1_POP_LANE0 at 16#D4# range 0 .. 31; INTERP1_POP_LANE1 at 16#D8# range 0 .. 31; INTERP1_POP_FULL at 16#DC# range 0 .. 31; INTERP1_PEEK_LANE0 at 16#E0# range 0 .. 31; INTERP1_PEEK_LANE1 at 16#E4# range 0 .. 31; INTERP1_PEEK_FULL at 16#E8# range 0 .. 31; INTERP1_CTRL_LANE0 at 16#EC# range 0 .. 31; INTERP1_CTRL_LANE1 at 16#F0# range 0 .. 31; INTERP1_ACCUM0_ADD at 16#F4# range 0 .. 31; INTERP1_ACCUM1_ADD at 16#F8# range 0 .. 31; INTERP1_BASE_1AND0 at 16#FC# range 0 .. 31; SPINLOCK0 at 16#100# range 0 .. 31; SPINLOCK1 at 16#104# range 0 .. 31; SPINLOCK2 at 16#108# range 0 .. 31; SPINLOCK3 at 16#10C# range 0 .. 31; SPINLOCK4 at 16#110# range 0 .. 31; SPINLOCK5 at 16#114# range 0 .. 31; SPINLOCK6 at 16#118# range 0 .. 31; SPINLOCK7 at 16#11C# range 0 .. 31; SPINLOCK8 at 16#120# range 0 .. 31; SPINLOCK9 at 16#124# range 0 .. 31; SPINLOCK10 at 16#128# range 0 .. 31; SPINLOCK11 at 16#12C# range 0 .. 31; SPINLOCK12 at 16#130# range 0 .. 31; SPINLOCK13 at 16#134# range 0 .. 31; SPINLOCK14 at 16#138# range 0 .. 31; SPINLOCK15 at 16#13C# range 0 .. 31; SPINLOCK16 at 16#140# range 0 .. 31; SPINLOCK17 at 16#144# range 0 .. 31; SPINLOCK18 at 16#148# range 0 .. 31; SPINLOCK19 at 16#14C# range 0 .. 31; SPINLOCK20 at 16#150# range 0 .. 31; SPINLOCK21 at 16#154# range 0 .. 31; SPINLOCK22 at 16#158# range 0 .. 31; SPINLOCK23 at 16#15C# range 0 .. 31; SPINLOCK24 at 16#160# range 0 .. 31; SPINLOCK25 at 16#164# range 0 .. 31; SPINLOCK26 at 16#168# range 0 .. 31; SPINLOCK27 at 16#16C# range 0 .. 31; SPINLOCK28 at 16#170# range 0 .. 31; SPINLOCK29 at 16#174# range 0 .. 31; SPINLOCK30 at 16#178# range 0 .. 31; SPINLOCK31 at 16#17C# range 0 .. 31; end record; -- Single-cycle IO block\n Provides core-local and inter-core hardware for -- the two processors, with single-cycle access. SIO_Periph : aliased SIO_Peripheral with Import, Address => SIO_Base; end RP_SVD.SIO;
other.7z/SFC.7z/SFC/ソースデータ/ヨッシーアイランド/日本_Ver1/sfc/ys_data.asm
prismotizm/gigaleak
0
101959
<filename>other.7z/SFC.7z/SFC/ソースデータ/ヨッシーアイランド/日本_Ver1/sfc/ys_data.asm Name: ys_data.asm Type: file Size: 12690 Last-Modified: '2016-05-13T04:51:17Z' SHA-1: 5D2B7E6C5E7B1B77A908E04C8FB8696B6D3EA492 Description: null
linear_algebra/qr_symmetric_eigen_tst_1.adb
jscparker/math_packages
30
10048
<reponame>jscparker/math_packages -- Test Eigendecomposition of Real valued square matrices. with Test_Matrices; with QR_Symmetric_Eigen; with Text_IO; use Text_IO; procedure qr_symmetric_eigen_tst_1 is type Real is digits 15; --type Real is digits 18; --Matrix_Size : constant := 7000; --Matrix_Size : constant := 1303; Matrix_Size : constant := 137; --Matrix_Size : constant := 57; Padding : constant := 1; subtype Index is Integer range 1 .. Matrix_Size + Padding; -- the test matrix is square-shaped matrix on: Index x Index. -- Can't change: Starting_Col : constant Index := Index'First; Final_Col : constant Index := Index'Last - Padding; subtype Submatrix_Range is Index range Starting_Col .. Final_Col; type Matrix is array(Index, Index) of Real; pragma Convention (fortran, Matrix); package QR_Method is new QR_Symmetric_Eigen (Real, Index, Matrix); use QR_Method; A : Matrix; Eigvals : Col_Vector; package Make_Square_Matrix is new Test_Matrices (Real, Index, Matrix); use Make_Square_Matrix; package rio is new Float_IO(Real); use rio; --subtype Real_e is Real; -- general case, works fine type Real_e is digits 18; -- 18 ok on intel type Col_Vector_e is array (Index) of Real_e; Min_Exp : constant Integer := Real'Machine_Emin - Real'Machine_Emin/4; Min_Allowed_Real : constant Real := 2.0**Min_Exp; ------------- -- Product -- ------------- function Product (A : in Matrix; Vector : in Col_Vector_e; Starting_Col : in Index; Final_Col : in Index) return Col_Vector_e is Result : Col_Vector_e := (others => 0.0); Sum : Real_e; begin for Row in Starting_Col .. Final_Col loop Sum := +0.0; for c in Starting_Col .. Final_Col loop Sum := Sum + Real_e (A(Row, c)) * Vector(c); end loop; Result (Row) := Sum; end loop; return Result; end Product; ---------------------------- -- Error_in_Decomposition -- ---------------------------- -- rough estimate, relative err. -- most of this only works for A'Range, not sub range. procedure Error_in_Decomposition (A : in Matrix; W_r : in Col_Vector; Q : in Matrix; Starting_Col : in Index; Final_Col : in Index; Max_Err : out Real; Max_id : out Index) is Err, Max_Eig, Vec_Norm, tst : Real; A_times_Eig_r : Col_Vector_e := (others => 0.0); Eigvec_r : Col_Vector_e := (others => 0.0); Err_Vec_r : Col_Vector := (others => 0.0); W_times_EigVec_r : Col_Vector_e := (others => 0.0); begin Max_id := Submatrix_Range'First; Max_Err := 0.0; Max_Eig := 0.0; for Col_id in Submatrix_Range loop tst := Abs (W_r(Col_id)); if tst > Max_Eig then Max_Eig := tst; end if; end loop; for Col_id in Submatrix_Range loop for j in Submatrix_Range loop Eigvec_r(j) := Real_e (Q(j, Col_id)); end loop; A_times_Eig_r := Product (A, Eigvec_r, Starting_Col, Final_Col); for j in Submatrix_Range loop W_times_EigVec_r(j) := Real_e(W_r(Col_id)) * Eigvec_r(j); Err_Vec_r(j) := Real (A_times_Eig_r(j) - W_times_EigVec_r(j)); end loop; -- The vectors Eigvec are already normalized Vec_Norm := Norm (Err_Vec_r, Starting_Col, Final_Col); if Max_Eig > 2.0**(-Real'Machine_Emax) * Vec_Norm then Err := Vec_Norm / (Max_Eig + Min_Allowed_Real); else Err := 0.0; end if; -- ||A*v - lambda*v|| / ||lambda_max|| over all normalized v if Err > Max_Err then Max_Err := Err; Max_id := Col_id; end if; end loop; end Error_in_Decomposition; ----------- -- Pause -- ----------- procedure Pause (s0,s1,s2,s3,s4,s5,s6,s7 : string := "") is Continue : Character := ' '; begin new_line; if S0 /= "" then put_line (S0); end if; if S1 /= "" then put_line (S1); end if; if S2 /= "" then put_line (S2); end if; if S3 /= "" then put_line (S3); end if; if S4 /= "" then put_line (S4); end if; if S5 /= "" then put_line (S5); end if; if S6 /= "" then put_line (S6); end if; if S7 /= "" then put_line (S7); end if; new_line; begin put ("Type a character to continue: "); get_immediate (Continue); exception when others => null; end; end pause; Q : Matrix; A_true : Matrix; x, Max_Error : Real := 0.0; Max_Id : Index; begin Pause( "Test1: Eigen-decomposition of matrix A.", "Error is estimated by measuring Max value of", " ", " |A*v - lambda*v| / |max_eigenvalue_of_A|", " ", "over all normalized eigenvectors v. If 15 digit Reals are used, then", "if all goes well, expect the error to be a few parts per 10**15." ); new_line(2); put ("Testing QR_Symmetric_Eigen on the following"); put (Integer'Image (Matrix_Size)); put (" x"); put (Integer'Image (Matrix_Size)); put (" matrices:"); new_line(2); for Chosen_Matrix in Matrix_Id loop --for Chosen_Matrix in Ding_Dong .. Ding_Dong loop --for Chosen_Matrix in All_Ones .. All_Ones loop --for Chosen_Matrix in Lower_Ones .. Lower_Ones loop --for Chosen_Matrix in vandermonde .. vandermonde loop --for Chosen_Matrix in Companion_2 .. Companion_2 loop --for Chosen_Matrix in hilbert .. hilbert loop --for Chosen_Matrix in random_32_bit .. random_32_bit loop --for Chosen_Matrix in Pas_Fib .. Pascal loop Init_Matrix (A, Chosen_Matrix, Submatrix_Range'First, Submatrix_Range'Last); -- Want to reuse (unchanged) the error calculation used for Peters_Eigen. -- So now we have 2 types of matrices: type Matrix, and type Real_Matrix. -- for c in Submatrix_Range'First .. Submatrix_Range'Last-1 loop -- for r in c+1 .. Submatrix_Range'Last loop -- --A(r, c) := A(c, r); -- A(c, r) := A(r, c); -- end loop; -- end loop; -- MUST be symmetric for c in Submatrix_Range loop for r in Submatrix_Range loop A_true(r, c) := 0.5 * (A(c, r) + A(r, c)); end loop; end loop; A := A_true; --for i in 1..100 loop QR_Method.Eigen_Decompose (A => A, Q => Q, Eigenvals => Eigvals, Start_Col => Starting_Col, Final_Col => Final_Col, Eigenvectors_Desired => True); --A := A_true; --end loop; x := x + Q(2,2) + A(2,2); if true then Error_in_Decomposition (A_true, Eigvals, Q, Starting_Col, Final_Col, Max_Error, Max_id); put ("Error in decomposition ~"); put (Real'Image(Max_Error)); put (" for matrix "); put (Matrix_id'Image(Chosen_Matrix)); new_line; end if; if false then put (0.0); put (A(Starting_Col, Starting_Col)); new_line(1); for r in Submatrix_Range'First .. Submatrix_Range'Last-1 loop put (A(r+1, r)); put (A(r+1, r+1)); new_line(1); end loop; end if; if false then New_Line; for I in Submatrix_Range loop put (Eigvals(I)); New_Line(1); end loop; end if; if true then declare Sum : Real_e := +0.0; --Product : Real := +1.0; begin for I in Submatrix_Range loop Sum := Sum + Real_e (Eigvals(I)); --Product := Product * Eigvals(I); end loop; put ("Eigval sum:"); put (Real (Sum)); New_Line; --put (Product); end; end if; end loop; put (x); end qr_symmetric_eigen_tst_1;
disorderly/binary_rank.ads
jscparker/math_packages
30
22198
generic No_of_Bits_per_Segment : Integer; Segments_per_Vector : Integer; package Binary_Rank is type Unsigned_64 is mod 2**64; Bits_per_Segment : constant Integer := No_of_Bits_per_Segment; Bits_per_Vector : constant Integer := Bits_per_Segment*Segments_per_Vector; subtype Unsigned_Segment is Unsigned_64 range 0 .. 2**Bits_per_Segment-1; subtype Matrix_Index is Integer range 1 .. Bits_per_Vector; subtype Segments is Matrix_Index range 1 .. Segments_Per_Vector; type Vector is array (Segments) of Unsigned_Segment; type Binary_Matrix is array(Matrix_Index) of Vector; procedure Get_Rank (r : in out Binary_Matrix; Max_Row : in Matrix_Index; Max_Col : in Matrix_Index; Rank : out Integer); subtype Bit_Index is Integer range Matrix_Index'First .. Matrix_Index'First+63; type Binary_Matrix_Block is array(Bit_Index) of Unsigned_64; Bit_is_1_at : constant Binary_Matrix_Block := (2**00, 2**01, 2**02, 2**03, 2**04, 2**05, 2**06, 2**07, 2**08, 2**09, 2**10, 2**11, 2**12, 2**13, 2**14, 2**15, 2**16, 2**17, 2**18, 2**19, 2**20, 2**21, 2**22, 2**23, 2**24, 2**25, 2**26, 2**27, 2**28, 2**29, 2**30, 2**31, 2**32, 2**33, 2**34, 2**35, 2**36, 2**37, 2**38, 2**39, 2**40, 2**41, 2**42, 2**43, 2**44, 2**45, 2**46, 2**47, 2**48, 2**49, 2**50, 2**51, 2**52, 2**53, 2**54, 2**55, 2**56, 2**57, 2**58, 2**59, 2**60, 2**61, 2**62, 2**63); end Binary_Rank;
vector_table.asm
jwestfall69/ddragon-diag
0
98641
; vector table that exists at ; the end of the rom file section vectors,"rodata" word handle_swi word handle_swi word handle_firq word handle_irq word handle_swi word handle_nmi word handle_reset
lib/gunzip/src/deflate/FixedAlphabets.asm
sharksym/vgmplay-sharksym
6
165567
; ; The fixed alphabets ; FixedAlphabets: MACRO literalLengthAlphabet: Alphabet distanceAlphabet: Alphabet _size: ENDM FixedAlphabets_class: Class FixedAlphabets, FixedAlphabets_template, Heap_main FixedAlphabets_template: FixedAlphabets ; hl = literal/length symbol handlers table ; de = distance symbol handlers table ; ix = this ; ix <- this ; de <- this FixedAlphabets_Construct: push de push ix call FixedAlphabets_GetLiteralLengthAlphabet ld bc,FixedAlphabets_literalLengthCodeLengthsCount ld de,FixedAlphabets_literalLengthCodeLengths call Alphabet_Construct pop ix pop hl push ix call FixedAlphabets_GetDistanceAlphabet ld bc,FixedAlphabets_distanceCodeLengthsCount ld de,FixedAlphabets_distanceCodeLengths call Alphabet_Construct pop ix ld e,ixl ld d,ixh ret ; ix = this ; ix <- this FixedAlphabets_Destruct: push ix call FixedAlphabets_GetDistanceAlphabet call Alphabet_Destruct pop ix push ix call FixedAlphabets_GetLiteralLengthAlphabet call Alphabet_Destruct pop ix ret ; ix = this FixedAlphabets_GetLiteralLengthAlphabet: ld de,FixedAlphabets.literalLengthAlphabet add ix,de ret ; ix = this FixedAlphabets_GetDistanceAlphabet: ld de,FixedAlphabets.distanceAlphabet add ix,de ret ; ix = this ; hl <- literal/length alphabet root ; de <- distance alphabet root FixedAlphabets_GetRoots: push ix call FixedAlphabets_GetDistanceAlphabet ld e,(ix + Alphabet.root) ld d,(ix + Alphabet.root + 1) pop ix push de push ix call FixedAlphabets_GetLiteralLengthAlphabet ld l,(ix + Alphabet.root) ld h,(ix + Alphabet.root + 1) pop ix pop de ret ; FixedAlphabets_literalLengthCodeLengths: db 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8 ; 0-143: 8 db 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8 db 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8 db 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8 db 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8 db 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8 db 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9 ; 144-255: 9 db 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9 db 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9 db 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9 db 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 7, 7, 7, 7, 7, 7, 7, 7 ; 256-279: 7 db 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 8, 8, 8, 8, 8, 8, 8, 8 ; 280-287: 8 FixedAlphabets_literalLengthCodeLengthsCount: equ $ - FixedAlphabets_literalLengthCodeLengths FixedAlphabets_distanceCodeLengths: db 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5 db 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5 FixedAlphabets_distanceCodeLengthsCount: equ $ - FixedAlphabets_distanceCodeLengths
src/ADC_1713.asm
larsve/pic-intervalltorkare
0
27080
<reponame>larsve/pic-intervalltorkare ;********************************************************************** ; Description: ; A/D Conversion routines. ; ;********************************************************************** ; Configuration points: ; ADC_OS Enable ADC oversampling ; ADC_OS_CNT Set oversampling value (4, 8, 16, 32, 64, default 64) ; ADC_OS_AVG Turn the oversampled ADC value to a average without any decimals ; ;********************************************************************** ; Notes: ; ; ;********************************************************************** #include "MCU_Defines.inc" #include "Defines.inc" #include "ADC.inc" #include "ISR_Timer.inc" #include "Macros.inc" ;***** Global declarations ******************************************** ; Methods Global Init_ADC Global Do_ADC ; Variables Global AdcState Global ANchn #ifndef ADC_OS Global AdcChn #endif GLOBAL AdcFlags Global AdcResets Global AN0 ; RA0 Global AN1 ; RA1 Global AN2 ; RA2 Global AN3 ; RA3 Global AN4 ; RA5 Global AN8 ; RB2 Global AN9 ; RB3 Global AN10 ; RB1 Global AN11 ; RB4 Global AN12 ; RB0 Global AN13 ; RB5 Global AN14 ; RC2 Global AN15 ; RC3 Global AN16 ; RC4 Global AN17 ; RC5 Global AN18 ; RC6 Global AN19 ; RC7 Global ANDac2 ; RA5/RB7 Global ANTemp Global ANDac1 ; RA2/RB7 Global ANFvr1 Global ANFvr2 Global ANFvr4 Global ANRef1 Global ANRef2 Global ANRef3 Global ANRef4 Global ANRef5 ;***** Extern declarations ******************************************** ; From ISR_Timer.asm Extern Timer_Tick ;***** Variables ****************************************************** ; Allocate RAM addresses in unbanked memory ;AdcData udata gprbank0 udata AdcState res 1 ; ADC status bits AdcChn res 1 ; Channel for ADC value AdcHi res 1 ; ADC value (high bits) AdcLo res 1 ; ADC value (low bits) AdcFlags res 1 ; ADC flags sent to I2C master to help parse ADC block AdcResets res 1 ; No of ADC reset / re-initializations AdcTmp res 1 ; Temporary value ANchn res 1 ; Analog Channel AN0 res 2 ; AN0 AN1 res 2 ; AN1 AN2 res 2 ; AN2 AN3 res 2 ; AN3 AN4 res 2 ; AN4 AN8 res 2 ; AN8 AN9 res 2 ; AN9 AN10 res 2 ; AN10 AN11 res 2 ; AN11 AN12 res 2 ; AN12 AN13 res 2 ; AN13 AN14 res 2 ; AN14 AN15 res 2 ; AN15 AN16 res 2 ; AN16 AN17 res 2 ; AN17 AN18 res 2 ; AN18 AN19 res 2 ; AN19 ANDac2 res 2 ; AN DAC 2 output ANTemp res 2 ; AN Temperature ANDac1 res 2 ; AN DAC 1 output ANFvr1 res 2 ; AN Fvr 1.024V ANFvr2 res 2 ; AN Fvr 2.048V ANFvr4 res 2 ; AN Fvr 4.069V ANRef1 res 1 ; VREF+ for AN0 to AN3 ANRef2 res 1 ; VREF+ for AN4, AN8 to AN10 ANRef3 res 1 ; VREF+ for AN11 to AN14 ANRef4 res 1 ; VREF+ for AN15 to AN18 ANRef5 res 1 ; VREF+ for AN19, ANTemp, ANFvr_1024, ANFvr_2048 #ifdef ADC_OS AvgCnt res 1 ; Avg count #endif ;Temp_Data udata_ovr 0x6e ;Temp res 1 ;ISRTemp res 1 ; gprbank1 udata ChnRef res 1 ; Copy of reference selection in bank 1 (where ADCON1 is) gprbank2 udata FvrRef res 1 ; Copy of reference selection in bank 2 (where FVRCON is) #ifdef ADC_OS AdcAvgData udata AN0avg res 2 ; AN0 avg AN1avg res 2 ; AN1 avg AN2avg res 2 ; AN2 avg AN3avg res 2 ; AN3 avg AN4avg res 2 ; AN4 avg AN8avg res 2 ; AN8 avg AN9avg res 2 ; AN9 avg AN10avg res 2 ; AN10 avg AN11avg res 2 ; AN11 avg AN12avg res 2 ; AN12 avg AN13avg res 2 ; AN13 avg AN14avg res 2 ; AN14 avg AN15avg res 2 ; AN15 avg AN16avg res 2 ; AN16 avg AN17avg res 2 ; AN17 avg AN18avg res 2 ; AN18 avg AN19avg res 2 ; AN19 avg ANDac2avg res 2 ; AN DAC 2 output avg ANTempavg res 2 ; AN Temperature avg ANDac1avg res 2 ; AN DAC 2 output ANFvr1avg res 2 ; AN Fvr 1,024V avg ANFvr2avg res 2 ; AN Fvr 2,048V avg ANFvr4avg res 2 ; AN Fvr 4,096V avg #endif #ifdef ADC_OS #ifndef ADC_OS_CNT #define ADC_OS_CNT .64 ; No of sampels to calc average values on (Valid values: 4, 8, 16, 32, 64) #endif #endif ;***** Code Section *************************************************** PROG0 code ;********************************************************************** ; Init ADC ; Initialize A/D conversion parameters (Assumes that Init_IO already ; has been executed). ;********************************************************************** Init_ADC banksel AdcResets clrf AdcResets ReInitADC banksel AdcFlags clrf AdcFlags ; Set ADC flag bits ; 7-6 Unused ; 5-3 ADC bits: ; 0 = 8bit ADC ; 1 = 10bit ADC ; 2 = 11bit ADC ; 3 = 12bit ADC ; 4 = 13bit ADC ; 5 = 14bit ADC ; 6 = 15bit ADC ; 7 = 16bit ADC ; 2-0 ADC oversampling: ; 0 = No oversampling (8 to 16bit ADC) ; 1 = 2x oversampling (8 to 15bit ADC) ; 2 = 4x oversampling (8 to 14bit ADC) ; 3 = 8x oversampling (8 to 13bit ADC) ; 4 = 16x oversampling (8 to 12bit ADC) ; 5 = 32x oversampling (8 to 11bit ADC) ; 6 = 64x oversampling (8 to 10bit ADC) ; 7 = 128x oversampling (only 8bit ADC) movlw B'00001000' ; Default to 10bit ADC values and no oversampling #ifdef ADC_OS if ADC_OS_CNT == 64 movlw B'00001110' ; 10bit ADC, 64x oversampling else if ADC_OS_CNT == 32 movlw B'00001101' ; 10bit ADC, 32x oversampling else if ADC_OS_CNT == 16 movlw B'00001100' ; 10bit ADC, 16x oversampling else if ADC_OS_CNT == 8 movlw B'00001011' ; 10bit ADC, 8x oversampling else if ADC_OS_CNT == 4 movlw B'00001010' ; 10bit ADC, 4x oversampling endif endif endif endif endif #endif movwf AdcFlags clrf AdcState clrf AdcHi clrf AdcLo clrf ANRef1 clrf ANRef2 clrf ANRef3 clrf ANRef4 clrf ANRef5 movlw High AN0 movwf FSR0H movlw AN0 movwf FSR0L movlw ANRef5 - AN0 + 1 movwf ANchn movlw 0x00 ClearAdcData movwi FSR0++ decfsz ANchn, f goto ClearAdcData clrf ANchn #ifdef ADC_OS ; Clear AN0avg to AN11avg movlw High AN0avg movwf FSR0H movlw AN0avg movwf FSR0L movlw ANFvr4avg - AN0avg + 2 movwf AvgCnt movlw 0x00 ClearAdcAvgData movwi FSR0++ decfsz AvgCnt, f goto ClearAdcAvgData movlw ADC_OS_CNT movwf AvgCnt #endif ; AdcRef bits: ; 00: Use Vdd as Vref+ ; 01: Use FVR 1,024V as Vref+ ; 10: Use FVR 2,048V as Vref+ ; 11: Use FVR 4,096V as Vref+ ; ; AdcRef1 bits: ; 0x07:0x06 - AN0/RA0 ref select ; 0x05:0x04 - AN1/RA1 ref select ; 0x03:0x02 - AN2/RA2 ref select ; 0x01:0x00 - AN3/RA3 ref select ; ; AdcRef2 bits: ; 0x07:0x06 - AN4/RA5 ref select ; 0x05:0x04 - AN8/RB2 ref select ; 0x03:0x02 - AN9/RB3 ref select ; 0x01:0x00 - AN10/RB1 ref select ; ; AdcRef3 bits: ; 0x07:0x06 - AN11/RB4 ref select ; 0x05:0x04 - AN12/RB0 ref select ; 0x03:0x02 - AN13/RB5 ref select ; 0x01:0x00 - AN14/RC2 ref select ; ; AdcRef4 bits: ; 0x07:0x06 - AN15/RC3 ref select ; 0x05:0x04 - AN16/RC4 ref select ; 0x03:0x02 - AN17/RC5 ref select ; 0x01:0x00 - AN18/RC6 ref select ; ; AdcRef5 bits: ; 0x07:0x06 - AN19/RC7 ref select ; 0x05:0x04 - AN DAC 2 ref select ; 0x03:0x02 - AN Temperature ref select ; 0x01:0x00 - AN DAC 1 ref select movlw AdcRef1 movwf ANRef1 movlw AdcRef2 movwf ANRef2 movlw AdcRef3 movwf ANRef3 movlw AdcRef4 movwf ANRef4 movlw AdcRef5 movwf ANRef5 ; Initialize PIC ADC registers banksel ADCON0 movlw B'11000001' ; Channel #0, AD ON movwf ADCON0 movlw b'11110000' ; FRC, Right justified, Vref- to Vss, Vref+ to Vdd #if OSC == 32 movlw b'10100000' ; Fosc/32, Right justified, Vref- to Vss, Vref+ to Vdd #endif #if OSC == 16 movlw b'11010000' ; Fosc/16, Right justified, Vref- to Vss, Vref+ to Vdd #endif #if OSC == 8 movlw b'10010000' ; Fosc/8, Right justified, Vref- to Vss, Vref+ to Vdd #endif #if OSC == 4 movlw b'11000000' ; Fosc/4, Right justified, Vref- to Vss, Vref+ to Vdd #endif #if OSC == 2 movlw b'10000000' ; Fosc/2, Right justified, Vref- to Vss, Vref+ to Vdd #endif #if OSC == 1 movlw b'10000000' ; Fosc/2, Right justified, Vref- to Vss, Vref+ to Vdd #endif movwf ADCON1 return ;********************************************************************** ; Do ADC ; Handles (starts) A/D conversion. ;********************************************************************** Do_ADC banksel AdcState bcf AdcState, adcDone banksel PIR1 btfsc PIR1, ADIF ; Check ADC done interrupt flag. call ReadAdcValue #ifdef ADC_OS ; Check if we should calc average values now? banksel AvgCnt movfw AvgCnt skpz goto SkipAdcAvg #ifdef ADC_OS_AVG ; Save ADC averages... if ADC_OS_CNT == 64 movlw 6 else if ADC_OS_CNT == 32 movlw 5 else if ADC_OS_CNT == 16 movlw 4 else if ADC_OS_CNT == 8 movlw 3 else if ADC_OS_CNT == 4 movlw 2 else error "Invalid ADC_OS_CNT set, must be one of the following values: 4, 8, 16, 32, 64." endif endif endif endif endif movwf AdcHi ; Borrow AdcHi as a counter for the outer loop movlw High AN0avg movwf FSR0H ; Start outer loop.. movlw AN0avg movwf FSR0L movlw 23 ; 23 channels to roll movwf AvgCnt ; Start inner loop lsrf INDF0, F incf FSR0L, F rrf INDF0, F incf FSR0L, F decfsz AvgCnt, F goto $-5 ; Inner loop decfsz AdcHi, F goto $-0x0b ; Outer loop #endif ; Save ADC values movlw High AN0avg ; FSR0 = Source movwf FSR0H movlw AN0avg movwf FSR0L movlw High AN0 ; FSR1 = Destination movwf FSR1H movlw AN0 movwf FSR1L movlw 23 * 2 ; 23 channels * 2 bytes each movwf AvgCnt ; Start inner loop moviw FSR0++ movwi FSR1++ decfsz AvgCnt, F goto $-3 ; Inner loop ; Clear AN0avg to AN11avg movlw 23 * 2 ; 23 channels x 2 bytes each movwf AvgCnt movlw AN0avg movlw High AN0avg movwf FSR0H movlw AN0avg movwf FSR0L movlw 0x00 movwi FSR0++ decfsz AvgCnt, F goto $-2 movlw ADC_OS_CNT movwf AvgCnt bsf AdcState, adcDone SkipAdcAvg #endif ; Start to check if the ADC result is ready btfss Timer_Tick, TimerTick_1ms return ; Check the ADC reinit flag.. banksel AdcState btfsc AdcState, adcReInit goto ReInitADC banksel ADCON0 btfss ADCON0, GO ; Have we started ADC yet? goto StartADC ; No, Start ADC ; Assume that something is very wrong here, try to re initialize ADC bcf ADCON0, ADON ; Shutdown ADC banksel AdcState bsf AdcState, adcReInit ; Set resetflag incf AdcResets, F ; Inc no of resets return StartADC bsf ADCON0, GO ; Start ADC and return return ;********************************************************************** ; Read Adc Value ; Read the newly converted value, and setup next channel to be ; converted. ;********************************************************************** ReadAdcValue banksel PIR1 bcf PIR1, ADIF ; Clear ADC interrupt flag ; Save ADC result to AdcHi & AdcLo banksel ANchn movfw ANchn movwf AdcChn ; Save ADC values #ifndef ADC_OS movlw High ADRESH ; FSR0 = source movwf FSR0H movlw ADRESH movwf FSR0L movlw High AN0 ; FSR1 = destination movwf FSR1H movfw ANchn andlw 0x1f lslf WREG, F ; ANchn * 2 addlw AN0 movwf FSR1L moviw FSR0-- ; Read AD result High (2-bits) movwi FSR1++ moviw FSR0-- ; Read AD result Low (8-bits) movwi FSR1++ bsf AdcState, adcDone #endif #ifdef ADC_OS movlw High ADRESL ; FSR0 = source movwf FSR0H movlw ADRESL movwf FSR0L movlw High AN0avg ; FSR1 = destination movwf FSR1H movfw ANchn andlw 0x1f lslf WREG, F ; ANchn * 2 addlw AN0avg + 1 movwf FSR1L moviw FSR0++ ; Read AD result Low (8-bits) addwf INDF1, F decf FSR1, F skpnc incf INDF1, F ; LSB carry moviw FSR0++ ; Read AD result High (2-bits) addwf INDF1, F #endif ; Get next channel number... incf ANchn, F ; Inc ANchn movfw ANchn sublw 22 btfss STATUS, C ; if ANchn > 22 clrf ANchn ; Yes, set ANchn to 0 #ifdef ADC_OS btfss STATUS, C ; if ANchn > 22 decf AvgCnt, F #endif SETUP_NEXT_ADC_CHANNEL ; Setup AD for next channel movfw ANchn andlw 0x1f brw goto SetupAN0 ; 0x00 goto SetupAN1 ; 0x01 goto SetupAN2 ; 0x02 goto SetupAN3 ; 0x03 goto SetupAN4 ; 0x04 goto SetupAN8 ; 0x05 goto SetupAN9 ; 0x06 goto SetupAN10 ; 0x07 goto SetupAN11 ; 0x08 goto SetupAN12 ; 0x09 goto SetupAN13 ; 0x0a goto SetupAN14 ; 0x0b goto SetupAN15 ; 0x0c goto SetupAN16 ; 0x0d goto SetupAN17 ; 0x0e goto SetupAN18 ; 0x0f goto SetupAN19 ; 0x10 goto SetupANDac2 ; 0x11 goto SetupANTemp ; 0x12 goto SetupANDac1 ; 0x13 goto SetupANFvr1 ; 0x14 goto SetupANFvr2 ; 0x15 goto SetupANFvr4 ; 0x16 goto SetupOvf ; 0x17 goto SetupOvf ; 0x18 goto SetupOvf ; 0x19 goto SetupOvf ; 0x1a goto SetupOvf ; 0x1b goto SetupOvf ; 0x1c goto SetupOvf ; 0x1d goto SetupOvf ; 0x1e goto SetupOvf ; 0x1f SetupAN0 ; ANchn = 0 movfw ANRef1 lsrf WREG, F lsrf WREG, F lsrf WREG, F lsrf WREG, F lsrf WREG, F lsrf WREG, F andlw 0x03 iorlw B'00000000' << 2 ; AN0 / RA0 goto SET_ADC_CHN SetupAN1 ; ANchn = 1 movfw ANRef1 lsrf WREG, F lsrf WREG, F lsrf WREG, F lsrf WREG, F andlw 0x03 iorlw B'00000001' << 2 ; AN1 / RA1 goto SET_ADC_CHN SetupAN2 ; ANchn = 2 movfw ANRef1 lsrf WREG, F lsrf WREG, F andlw 0x03 iorlw B'00000010' << 2 ; AN2 / Vref- / RA2 goto SET_ADC_CHN SetupAN3 ; ANchn = 3 movfw ANRef1 andlw 0x03 iorlw B'00000011' << 2 ; AN3 / Vref+ / RA3 goto SET_ADC_CHN SetupAN4 ; ANchn = 4 movfw ANRef2 lsrf WREG, F lsrf WREG, F lsrf WREG, F lsrf WREG, F lsrf WREG, F lsrf WREG, F andlw 0x03 iorlw B'00000100' << 2 ; AN4 / RA5 goto SET_ADC_CHN SetupAN8 ; ANchn = 5 movfw ANRef2 lsrf WREG, F lsrf WREG, F lsrf WREG, F lsrf WREG, F andlw 0x03 iorlw B'00001000' << 2 ; AN8 / RB2 goto SET_ADC_CHN SetupAN9 ; ANchn = 6 movfw ANRef2 lsrf WREG, F lsrf WREG, F andlw 0x03 iorlw B'00001001' << 2 ; AN9 / RB3 goto SET_ADC_CHN SetupAN10 ; ANchn = 7 movfw ANRef2 andlw 0x03 iorlw B'00001010' << 2 ; AN10 / RB1 goto SET_ADC_CHN SetupAN11 ; ANchn = 8 movfw ANRef3 lsrf WREG, F lsrf WREG, F lsrf WREG, F lsrf WREG, F lsrf WREG, F lsrf WREG, F andlw 0x03 iorlw B'00001011' << 2 ; AN11 / RB4 goto SET_ADC_CHN SetupAN12 ; ANchn = 9 movfw ANRef3 lsrf WREG, F lsrf WREG, F lsrf WREG, F lsrf WREG, F andlw 0x03 iorlw B'00001100' << 2 ; AN12 / RB0 goto SET_ADC_CHN SetupAN13 ; ANchn = 10 movfw ANRef3 lsrf WREG, F lsrf WREG, F andlw 0x03 iorlw B'00001101' << 2 ; AN13 / RB5 goto SET_ADC_CHN SetupAN14 ; ANchn = 11 movfw ANRef3 andlw 0x03 iorlw B'00001110' << 2 ; AN14 / RC2 goto SET_ADC_CHN SetupAN15 ; ANchn = 12 movfw ANRef4 lsrf WREG, F lsrf WREG, F lsrf WREG, F lsrf WREG, F lsrf WREG, F lsrf WREG, F andlw 0x03 iorlw B'00001111' << 2 ; AN15 / RC3 goto SET_ADC_CHN SetupAN16 ; ANchn = 13 movfw ANRef4 lsrf WREG, F lsrf WREG, F lsrf WREG, F lsrf WREG, F andlw 0x03 iorlw B'00010000' << 2 ; AN16 / RC4 goto SET_ADC_CHN SetupAN17 ; ANchn = 14 movfw ANRef4 lsrf WREG, F lsrf WREG, F andlw 0x03 iorlw B'00010001' << 2 ; AN17 / RC5 goto SET_ADC_CHN SetupAN18 ; ANchn = 15 movfw ANRef4 andlw 0x03 iorlw B'00010010' << 2 ; AN18 / RC6 goto SET_ADC_CHN SetupAN19 ; ANchn = 16 movfw ANRef5 lsrf WREG, F lsrf WREG, F lsrf WREG, F lsrf WREG, F lsrf WREG, F lsrf WREG, F andlw 0x03 iorlw B'00010011' << 2 ; AN19 / RC7 goto SET_ADC_CHN SetupANDac2 ; ANchn = 17 movfw ANRef5 lsrf WREG, F lsrf WREG, F lsrf WREG, F lsrf WREG, F andlw 0x03 iorlw B'00011100' << 2 ; AN DAC 2 output goto SET_ADC_CHN SetupANTemp ; ANchn = 18 movfw ANRef5 lsrf WREG, F lsrf WREG, F andlw 0x03 iorlw B'00011101' << 2 ; AN Temperature goto SET_ADC_CHN SetupANDac1 ; ANchn = 19 movfw ANRef5 andlw 0x03 iorlw B'00011110' << 2 ; AN DAC 1 output goto SET_ADC_CHN SetupANFvr1 ; ANchn = 20 banksel FVRCON movfw FVRCON andlw 0xfc iorlw 0x01 movwf FVRCON movlw B'00011111' << 2 ; AN Fixed Voltage Reference (1.024V) goto SET_ADC_CHN SetupANFvr2 ; ANchn = 21 banksel FVRCON movfw FVRCON andlw 0xfc iorlw 0x02 movwf FVRCON movlw B'00011111' << 2 ; AN Fixed Voltage Reference (2.048V) goto SET_ADC_CHN SetupANFvr4 ; ANchn = 22 banksel FVRCON movfw FVRCON andlw 0xfc iorlw 0x03 movwf FVRCON movlw B'00011111' << 2 ; AN Fixed Voltage Reference (4.096V) goto SET_ADC_CHN SetupOvf ; ANchn = Overflow clrf ANchn ; ANchn overflow, reset value any try again goto SETUP_NEXT_ADC_CHANNEL SET_ADC_CHN banksel ADCON1 movwf ChnRef andlw 0x03 skpz goto SetupFvr ; Clear ADPREF in ADCON1 to set Vdd as Vref+ movfw ADCON1 andlw B'11111100' movwf ADCON1 goto SetupAdcChn SetupFvr ; Set ADPREF in ADCON1 to 0x03, to set FVR as Vref+ movfw ADCON1 iorlw B'00000011' movwf ADCON1 ; Set FVRCON to desired FVR value movfw ChnRef andlw 0x03 banksel FVRCON movwf FvrRef movfw FVRCON andlw B'11111100' iorwf FvrRef, W movwf FVRCON banksel ADCON1 SetupAdcChn movfw ChnRef andlw 0x1f << 2 iorlw 0x01 ; Keep ADON bit on banksel ADCON0 movwf ADCON0 return ; Let holding capacitator settle before we trigger the next conversion... END
tools-src/gnu/gcc/gcc/ada/prj-ext.adb
enfoTek/tomato.linksys.e2000.nvram-mod
80
15074
------------------------------------------------------------------------------ -- -- -- GNAT COMPILER COMPONENTS -- -- -- -- P R J . E X T -- -- -- -- B o d y -- -- -- -- $Revision$ -- -- -- Copyright (C) 2000 Free Software Foundation, Inc. -- -- -- -- GNAT is free software; you can redistribute it and/or modify it under -- -- terms of the GNU General Public License as published by the Free Soft- -- -- ware Foundation; either version 2, or (at your option) any later ver- -- -- sion. GNAT is distributed in the hope that it will be useful, but WITH- -- -- OUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY -- -- or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License -- -- for more details. You should have received a copy of the GNU General -- -- Public License distributed with GNAT; see file COPYING. If not, write -- -- to the Free Software Foundation, 59 Temple Place - Suite 330, Boston, -- -- MA 02111-1307, USA. -- -- -- -- GNAT was originally developed by the GNAT team at New York University. -- -- Extensive contributions were provided by Ada Core Technologies Inc. -- -- -- ------------------------------------------------------------------------------ with GNAT.HTable; with GNAT.OS_Lib; use GNAT.OS_Lib; with Namet; use Namet; with Prj.Com; use Prj.Com; with Stringt; use Stringt; with Types; use Types; package body Prj.Ext is package Htable is new GNAT.HTable.Simple_HTable (Header_Num => Header_Num, Element => String_Id, No_Element => No_String, Key => Name_Id, Hash => Hash, Equal => "="); --------- -- Add -- --------- procedure Add (External_Name : String; Value : String) is The_Key : Name_Id; The_Value : String_Id; begin Start_String; Store_String_Chars (Value); The_Value := End_String; Name_Len := External_Name'Length; Name_Buffer (1 .. Name_Len) := External_Name; The_Key := Name_Find; Htable.Set (The_Key, The_Value); end Add; ----------- -- Check -- ----------- function Check (Declaration : String) return Boolean is begin for Equal_Pos in Declaration'Range loop if Declaration (Equal_Pos) = '=' then exit when Equal_Pos = Declaration'First; exit when Equal_Pos = Declaration'Last; Add (External_Name => Declaration (Declaration'First .. Equal_Pos - 1), Value => Declaration (Equal_Pos + 1 .. Declaration'Last)); return True; end if; end loop; return False; end Check; -------------- -- Value_Of -- -------------- function Value_Of (External_Name : Name_Id; With_Default : String_Id := No_String) return String_Id is The_Value : String_Id; begin The_Value := Htable.Get (External_Name); if The_Value /= No_String then return The_Value; end if; -- Find if it is an environment. -- If it is, put the value in the hash table. declare Env_Value : constant String_Access := Getenv (Get_Name_String (External_Name)); begin if Env_Value /= null and then Env_Value'Length > 0 then Start_String; Store_String_Chars (Env_Value.all); The_Value := End_String; Htable.Set (External_Name, The_Value); return The_Value; else return With_Default; end if; end; end Value_Of; end Prj.Ext;
rheem-core/src/main/antlr4/org/qcri/rheem/core/mathex/MathEx.g4
atroudi/Rheem
0
7624
<reponame>atroudi/Rheem<filename>rheem-core/src/main/antlr4/org/qcri/rheem/core/mathex/MathEx.g4 grammar MathEx; options { language = Java; } expression : '(' expression ')' #parensExpression | executionOperator=('-' | '+') expression #unaryOperation | operand0=expression executionOperator='^' operand1=expression #binaryOperation | operand0=expression executionOperator=('*' | '%' | '/') operand1=expression #binaryOperation | operand0=expression executionOperator=('+' | '-') operand1=expression #binaryOperation | variableName=IDENTIFIER #variable | value=NUMBER #constant | name=IDENTIFIER '(' ( expression (',' expression )* )? ')' #function ; fragment CHAR : [a-zA-Z] ; fragment DIGIT : [0-9] ; fragment INT : [1-9] DIGIT* | DIGIT ; fragment EXP : [Ee] [+\-]? INT ; NUMBER : '-'? INT? '.' [0-9]+ EXP? // 1.35, 1.35E-9, 0.3, -4.5 | '-'? INT EXP // 1e10 -3e4 | '-'? INT // -3, 45 ; WS : [ \t\n\r]+ -> skip ; PREC0_OP : [+\-] ; PREC1_OP : [*%/] ; PREC2_OP : '^' ; IDENTIFIER : IDENTIFIER_START ( IDENTIFIER_MIDDLE* IDENTIFIER_END )? ; fragment IDENTIFIER_START : '_' | [a-zA-Z] ; fragment IDENTIFIER_MIDDLE : '_' | '.' | CHAR | DIGIT ; fragment IDENTIFIER_END : '_' | CHAR | DIGIT ;
P6/data_P6/testpoint/testpoint23.asm
alxzzhou/BUAA_CO_2020
1
89932
ori $1, $0, 5 ori $2, $0, 9 ori $3, $0, 7 ori $4, $0, 2 sw $3, 0($0) sw $2, 4($0) sw $2, 8($0) sw $3, 12($0) sw $4, 16($0) sw $2, 20($0) sw $2, 24($0) sw $3, 28($0) sw $4, 32($0) sw $3, 36($0) sw $2, 40($0) sw $2, 44($0) sw $1, 48($0) sw $3, 52($0) sw $3, 56($0) sw $1, 60($0) sw $4, 64($0) sw $3, 68($0) sw $3, 72($0) sw $2, 76($0) sw $1, 80($0) sw $1, 84($0) sw $4, 88($0) sw $4, 92($0) sw $1, 96($0) sw $3, 100($0) sw $3, 104($0) sw $2, 108($0) sw $1, 112($0) sw $3, 116($0) sw $2, 120($0) sw $2, 124($0) lui $2, 4 mfhi $4 sll $0, $0, 0 mtlo $2 TAG1: lui $3, 6 slti $2, $2, 10 multu $2, $2 andi $4, $2, 4 TAG2: mflo $3 srav $1, $3, $3 sltiu $2, $4, 6 lb $1, 0($2) TAG3: lui $4, 12 srav $2, $4, $1 mtlo $1 bgez $1, TAG4 TAG4: addiu $4, $2, 11 lui $2, 12 mthi $4 bgtz $2, TAG5 TAG5: sllv $3, $2, $2 mfhi $2 sll $0, $0, 0 beq $3, $2, TAG6 TAG6: mfhi $4 addu $3, $2, $4 mthi $4 bgez $4, TAG7 TAG7: sll $0, $0, 0 sll $0, $0, 0 lui $3, 12 mult $3, $3 TAG8: sll $0, $0, 0 sll $0, $0, 0 mflo $1 slt $2, $1, $3 TAG9: mtlo $2 mthi $2 sb $2, 0($2) mtlo $2 TAG10: sb $2, 0($2) addu $3, $2, $2 slti $1, $2, 0 sll $4, $1, 15 TAG11: mflo $4 lbu $4, 0($4) bne $4, $4, TAG12 lui $4, 12 TAG12: div $4, $4 mfhi $4 lbu $2, 0($4) mtlo $4 TAG13: lbu $4, 0($2) ori $3, $4, 7 lui $2, 8 sll $0, $0, 0 TAG14: div $3, $3 mtlo $3 mult $3, $3 mtlo $3 TAG15: or $3, $3, $3 addu $4, $3, $3 blez $3, TAG16 mtlo $3 TAG16: lui $2, 5 mfhi $2 lui $4, 15 beq $4, $4, TAG17 TAG17: sll $0, $0, 0 sll $0, $0, 0 bgtz $4, TAG18 sll $0, $0, 0 TAG18: mthi $4 sll $0, $0, 0 sll $0, $0, 0 sll $0, $0, 0 TAG19: mflo $3 divu $3, $4 bgez $3, TAG20 mfhi $3 TAG20: lbu $4, 0($3) and $1, $3, $3 or $1, $3, $4 slti $2, $1, 4 TAG21: lhu $3, 0($2) bgez $2, TAG22 and $1, $3, $2 mthi $1 TAG22: srl $3, $1, 13 sllv $4, $3, $3 lui $3, 2 sll $0, $0, 0 TAG23: lui $4, 11 mfhi $4 bne $3, $3, TAG24 xor $2, $4, $3 TAG24: sll $0, $0, 0 subu $1, $2, $2 multu $2, $2 sb $2, 0($1) TAG25: blez $1, TAG26 lui $1, 15 slti $2, $1, 5 mfhi $2 TAG26: mfhi $3 mthi $3 sw $2, 0($3) bne $3, $3, TAG27 TAG27: subu $4, $3, $3 mflo $1 slt $4, $3, $1 div $4, $3 TAG28: multu $4, $4 lb $3, 0($4) lbu $1, 0($4) div $4, $1 TAG29: andi $3, $1, 7 mfhi $4 mfhi $2 beq $2, $1, TAG30 TAG30: mult $2, $2 mtlo $2 lui $2, 11 bltz $2, TAG31 TAG31: mtlo $2 mflo $3 sll $0, $0, 0 sll $0, $0, 0 TAG32: beq $3, $3, TAG33 mult $3, $3 slti $1, $3, 9 mtlo $3 TAG33: bltz $1, TAG34 mult $1, $1 srl $3, $1, 9 sh $1, 0($3) TAG34: sw $3, 0($3) mult $3, $3 lw $3, 0($3) sb $3, 0($3) TAG35: srav $2, $3, $3 mfhi $1 bgez $3, TAG36 xor $3, $1, $2 TAG36: beq $3, $3, TAG37 slti $1, $3, 14 lui $3, 15 slt $1, $1, $3 TAG37: sb $1, 0($1) or $1, $1, $1 lbu $3, 0($1) mult $3, $3 TAG38: divu $3, $3 lbu $4, 0($3) xor $4, $3, $3 or $3, $4, $3 TAG39: sll $2, $3, 9 beq $3, $3, TAG40 sllv $4, $2, $3 lui $3, 5 TAG40: beq $3, $3, TAG41 mult $3, $3 mfhi $1 bgtz $1, TAG41 TAG41: mfhi $4 blez $1, TAG42 sb $1, 0($4) sw $1, 0($4) TAG42: sw $4, 0($4) bne $4, $4, TAG43 subu $2, $4, $4 beq $4, $4, TAG43 TAG43: multu $2, $2 slti $4, $2, 15 lh $2, 0($2) and $1, $2, $2 TAG44: mflo $1 lui $1, 8 sll $0, $0, 0 lui $3, 0 TAG45: mfhi $1 sltiu $2, $3, 6 lui $3, 2 bne $2, $1, TAG46 TAG46: sll $0, $0, 0 mult $2, $3 mfhi $2 slti $3, $2, 2 TAG47: blez $3, TAG48 mult $3, $3 mflo $3 lui $1, 10 TAG48: mtlo $1 addu $3, $1, $1 beq $1, $3, TAG49 andi $1, $3, 5 TAG49: beq $1, $1, TAG50 multu $1, $1 xori $3, $1, 8 addiu $4, $3, 0 TAG50: bltz $4, TAG51 mtlo $4 multu $4, $4 sllv $4, $4, $4 TAG51: mtlo $4 bgtz $4, TAG52 sh $4, 0($4) lbu $2, 0($4) TAG52: mtlo $2 multu $2, $2 beq $2, $2, TAG53 lui $1, 8 TAG53: mflo $3 mflo $2 andi $2, $2, 0 mult $3, $2 TAG54: lui $1, 0 mult $1, $1 mthi $1 addi $1, $2, 0 TAG55: beq $1, $1, TAG56 lui $2, 7 mult $2, $2 mfhi $4 TAG56: slti $1, $4, 11 beq $1, $1, TAG57 srl $2, $4, 4 bgtz $4, TAG57 TAG57: mflo $1 mult $2, $1 lui $3, 2 sra $1, $3, 12 TAG58: beq $1, $1, TAG59 addu $3, $1, $1 mflo $2 subu $4, $2, $1 TAG59: sh $4, 0($4) and $4, $4, $4 beq $4, $4, TAG60 addiu $2, $4, 11 TAG60: mthi $2 div $2, $2 lui $2, 7 mfhi $2 TAG61: subu $1, $2, $2 bltz $2, TAG62 srav $3, $1, $1 sltiu $3, $1, 15 TAG62: beq $3, $3, TAG63 lbu $3, 0($3) div $3, $3 mtlo $3 TAG63: bne $3, $3, TAG64 lui $1, 13 lui $1, 6 sll $0, $0, 0 TAG64: bne $1, $1, TAG65 sll $0, $0, 0 mtlo $1 bltz $1, TAG65 TAG65: sll $0, $0, 0 mtlo $3 sw $1, 0($3) sll $1, $3, 13 TAG66: multu $1, $1 multu $1, $1 lui $3, 13 beq $3, $1, TAG67 TAG67: nor $4, $3, $3 subu $3, $4, $4 mfhi $3 mult $3, $3 TAG68: multu $3, $3 srlv $3, $3, $3 lw $2, 0($3) bne $3, $3, TAG69 TAG69: srl $2, $2, 0 mfhi $2 sb $2, 0($2) bne $2, $2, TAG70 TAG70: lui $1, 15 multu $1, $1 xori $2, $1, 13 sll $0, $0, 0 TAG71: lui $4, 3 sll $0, $0, 0 mflo $2 xori $4, $2, 13 TAG72: srlv $4, $4, $4 lui $1, 9 mfhi $2 mthi $4 TAG73: mtlo $2 sltu $4, $2, $2 mflo $3 bne $3, $3, TAG74 TAG74: and $3, $3, $3 sra $3, $3, 6 addu $1, $3, $3 mtlo $3 TAG75: andi $1, $1, 9 mthi $1 lw $4, 0($1) bltz $4, TAG76 TAG76: mthi $4 lui $1, 15 or $2, $4, $4 andi $3, $2, 0 TAG77: srl $3, $3, 2 bne $3, $3, TAG78 mult $3, $3 mtlo $3 TAG78: mfhi $3 sub $3, $3, $3 lui $3, 15 div $3, $3 TAG79: mfhi $3 mflo $1 mthi $3 mtlo $1 TAG80: mfhi $2 multu $1, $2 xori $4, $2, 4 lui $2, 4 TAG81: divu $2, $2 beq $2, $2, TAG82 sll $0, $0, 0 lui $4, 3 TAG82: xor $4, $4, $4 sh $4, 0($4) sh $4, 0($4) lhu $4, 0($4) TAG83: bgtz $4, TAG84 mfhi $2 mfhi $1 blez $1, TAG84 TAG84: multu $1, $1 bne $1, $1, TAG85 multu $1, $1 mult $1, $1 TAG85: sub $3, $1, $1 sh $3, 0($3) bne $1, $3, TAG86 mflo $1 TAG86: mult $1, $1 lui $1, 1 beq $1, $1, TAG87 multu $1, $1 TAG87: bne $1, $1, TAG88 mthi $1 lui $4, 0 mflo $1 TAG88: sltiu $3, $1, 3 lui $3, 7 addi $4, $1, 4 mfhi $1 TAG89: bne $1, $1, TAG90 slti $1, $1, 0 srav $1, $1, $1 srav $4, $1, $1 TAG90: mtlo $4 addu $4, $4, $4 nor $4, $4, $4 sw $4, 1($4) TAG91: sll $0, $0, 0 mfhi $4 subu $3, $4, $4 bgtz $3, TAG92 TAG92: sra $4, $3, 12 mthi $3 bne $4, $3, TAG93 mflo $4 TAG93: multu $4, $4 srlv $2, $4, $4 lb $3, 0($4) srav $4, $4, $3 TAG94: mflo $4 nor $1, $4, $4 mthi $4 mtlo $4 TAG95: sw $1, 1($1) lui $2, 15 lbu $2, 1($1) beq $2, $1, TAG96 TAG96: addiu $2, $2, 4 bgez $2, TAG97 mfhi $4 mflo $3 TAG97: beq $3, $3, TAG98 lhu $1, 1($3) beq $1, $3, TAG98 lui $2, 3 TAG98: mflo $1 lw $2, 0($1) bne $2, $2, TAG99 multu $2, $2 TAG99: divu $2, $2 bltz $2, TAG100 divu $2, $2 beq $2, $2, TAG100 TAG100: mflo $2 sb $2, 0($2) mthi $2 lui $4, 15 TAG101: mtlo $4 lui $3, 13 addiu $1, $3, 13 lui $3, 2 TAG102: sll $0, $0, 0 slt $4, $4, $4 sb $4, 0($4) mflo $2 TAG103: mfhi $4 sb $4, 0($4) mult $2, $4 mflo $2 TAG104: sll $0, $0, 0 divu $2, $2 bgtz $2, TAG105 mult $2, $2 TAG105: addiu $3, $2, 11 ori $1, $2, 13 mtlo $3 lui $2, 11 TAG106: mthi $2 addu $4, $2, $2 mtlo $4 sll $2, $4, 3 TAG107: sll $0, $0, 0 lui $4, 6 lui $1, 11 mfhi $3 TAG108: addiu $2, $3, 5 bltz $3, TAG109 mtlo $2 bgez $2, TAG109 TAG109: sll $0, $0, 0 slt $1, $4, $2 bgtz $4, TAG110 mtlo $2 TAG110: sra $4, $1, 12 bgtz $4, TAG111 mflo $1 bltz $4, TAG111 TAG111: andi $4, $1, 12 ori $4, $1, 14 addiu $4, $4, 10 ori $4, $1, 13 TAG112: mfhi $3 addiu $2, $3, 7 sll $0, $0, 0 lui $3, 14 TAG113: div $3, $3 mfhi $3 mtlo $3 mult $3, $3 TAG114: mflo $1 bgtz $1, TAG115 mflo $4 bgez $1, TAG115 TAG115: mtlo $4 mthi $4 blez $4, TAG116 lb $2, 0($4) TAG116: add $2, $2, $2 slti $1, $2, 0 multu $1, $1 mult $1, $1 TAG117: lui $4, 12 sra $3, $1, 11 bgez $3, TAG118 andi $1, $1, 10 TAG118: mult $1, $1 bltz $1, TAG119 mflo $1 addiu $3, $1, 3 TAG119: sb $3, 0($3) sb $3, 0($3) sb $3, 0($3) mfhi $1 TAG120: xori $2, $1, 14 bne $1, $1, TAG121 mflo $3 mflo $2 TAG121: mflo $2 mtlo $2 add $2, $2, $2 lui $1, 1 TAG122: sllv $1, $1, $1 mthi $1 beq $1, $1, TAG123 sll $0, $0, 0 TAG123: mult $2, $2 mtlo $2 mfhi $2 lui $4, 10 TAG124: sll $0, $0, 0 sll $4, $4, 6 bne $4, $4, TAG125 divu $4, $4 TAG125: mthi $4 sll $0, $0, 0 addu $3, $4, $4 lui $4, 8 TAG126: srl $1, $4, 0 slti $1, $1, 14 sb $1, 0($1) lui $1, 4 TAG127: mflo $4 slt $4, $1, $1 mflo $1 bltz $1, TAG128 TAG128: mflo $2 mthi $2 mthi $1 sll $2, $1, 6 TAG129: mthi $2 mtlo $2 lw $1, 0($2) mfhi $1 TAG130: addiu $4, $1, 5 mflo $2 subu $4, $2, $4 divu $1, $4 TAG131: sw $4, 5($4) mfhi $3 bgez $4, TAG132 mfhi $1 TAG132: addu $3, $1, $1 multu $3, $3 mfhi $1 blez $1, TAG133 TAG133: mthi $1 bne $1, $1, TAG134 mult $1, $1 lui $3, 3 TAG134: sll $0, $0, 0 sll $0, $0, 0 addiu $2, $1, 15 lui $2, 1 TAG135: mtlo $2 mflo $4 divu $2, $4 lui $1, 4 TAG136: mflo $3 bne $1, $1, TAG137 mfhi $3 mthi $1 TAG137: lh $3, 0($3) ori $3, $3, 14 andi $2, $3, 6 sb $2, 1($3) TAG138: mfhi $4 bne $4, $4, TAG139 sra $2, $4, 10 lbu $2, -256($2) TAG139: beq $2, $2, TAG140 sh $2, 0($2) mthi $2 mult $2, $2 TAG140: sra $1, $2, 8 addiu $4, $2, 14 xori $4, $2, 0 srav $4, $4, $1 TAG141: beq $4, $4, TAG142 nor $2, $4, $4 lui $3, 7 sra $2, $4, 2 TAG142: divu $2, $2 bltz $2, TAG143 lui $4, 7 mult $4, $4 TAG143: mflo $3 bgez $4, TAG144 lui $4, 15 bne $4, $4, TAG144 TAG144: mflo $3 addu $4, $3, $4 lui $4, 5 lbu $3, 0($3) TAG145: mult $3, $3 lui $1, 10 blez $3, TAG146 sll $0, $0, 0 TAG146: blez $3, TAG147 subu $1, $3, $3 mfhi $4 mthi $4 TAG147: lhu $4, 0($4) bne $4, $4, TAG148 mflo $2 blez $4, TAG148 TAG148: sll $0, $0, 0 mthi $2 bgtz $3, TAG149 srl $1, $3, 6 TAG149: lbu $4, 0($1) sb $4, 0($1) lhu $4, -255($4) sb $1, 0($1) TAG150: sll $0, $0, 0 lui $1, 3 blez $3, TAG151 multu $1, $1 TAG151: mult $1, $1 bne $1, $1, TAG152 mtlo $1 sll $0, $0, 0 TAG152: divu $1, $1 beq $1, $1, TAG153 lui $3, 13 mfhi $4 TAG153: beq $4, $4, TAG154 mflo $1 mult $1, $1 andi $1, $1, 1 TAG154: andi $1, $1, 11 slti $4, $1, 3 divu $1, $4 addu $4, $4, $1 TAG155: divu $4, $4 sh $4, 0($4) andi $4, $4, 1 mthi $4 TAG156: lui $2, 10 mtlo $2 sll $0, $0, 0 divu $2, $2 TAG157: sll $0, $0, 0 sll $0, $0, 0 sll $0, $0, 0 sll $0, $0, 0 TAG158: div $3, $3 lui $3, 4 sll $0, $0, 0 xori $3, $3, 9 TAG159: mthi $3 sll $0, $0, 0 bltz $3, TAG160 sll $0, $0, 0 TAG160: bgtz $3, TAG161 addu $2, $3, $3 lbu $1, 0($2) sh $3, 0($2) TAG161: divu $1, $1 beq $1, $1, TAG162 mtlo $1 lw $4, 0($1) TAG162: lbu $1, 0($4) beq $1, $4, TAG163 nor $1, $4, $1 lui $3, 12 TAG163: mthi $3 mtlo $3 multu $3, $3 mthi $3 TAG164: mtlo $3 mflo $4 sll $0, $0, 0 srlv $3, $4, $3 TAG165: beq $3, $3, TAG166 sll $0, $0, 0 beq $2, $3, TAG166 nor $1, $2, $3 TAG166: mult $1, $1 lui $3, 8 sll $0, $0, 0 srl $2, $1, 10 TAG167: sra $2, $2, 11 nor $3, $2, $2 mflo $1 sb $2, 2048($3) TAG168: addiu $3, $1, 12 divu $1, $1 mthi $1 bltz $3, TAG169 TAG169: mtlo $3 bgez $3, TAG170 lb $2, 0($3) mtlo $2 TAG170: lw $1, 0($2) mfhi $4 blez $1, TAG171 andi $2, $1, 6 TAG171: mult $2, $2 mult $2, $2 mfhi $1 divu $1, $2 TAG172: mult $1, $1 mtlo $1 sll $3, $1, 10 bgez $1, TAG173 TAG173: mtlo $3 mthi $3 sb $3, 0($3) beq $3, $3, TAG174 TAG174: mthi $3 sub $3, $3, $3 addiu $4, $3, 4 sw $3, 0($3) TAG175: sw $4, 0($4) sw $4, 0($4) mthi $4 slt $4, $4, $4 TAG176: ori $2, $4, 6 sh $4, 0($4) lhu $4, 0($2) and $4, $2, $4 TAG177: multu $4, $4 lb $1, 0($4) lhu $3, 0($1) sb $3, 0($1) TAG178: beq $3, $3, TAG179 mthi $3 mtlo $3 lw $4, 0($3) TAG179: bltz $4, TAG180 mflo $4 srav $4, $4, $4 sh $4, 0($4) TAG180: lh $2, 0($4) mtlo $2 mtlo $4 lui $3, 14 TAG181: addu $1, $3, $3 sll $0, $0, 0 sltiu $2, $1, 11 mthi $4 TAG182: lui $4, 0 sh $2, 0($4) slti $2, $2, 2 subu $4, $2, $4 TAG183: sb $4, 0($4) mthi $4 mult $4, $4 mtlo $4 TAG184: slt $2, $4, $4 mthi $4 mtlo $4 beq $2, $2, TAG185 TAG185: lh $3, 0($2) beq $3, $2, TAG186 sh $3, -256($3) sw $2, -256($3) TAG186: lui $4, 12 mfhi $2 mult $2, $4 mtlo $2 TAG187: mthi $2 addu $1, $2, $2 mfhi $4 sb $4, 0($2) TAG188: mthi $4 bgez $4, TAG189 lb $3, 0($4) srlv $2, $4, $4 TAG189: lbu $3, 0($2) subu $3, $2, $3 bgez $3, TAG190 sb $3, 0($3) TAG190: beq $3, $3, TAG191 mthi $3 sh $3, 0($3) div $3, $3 TAG191: bltz $3, TAG192 multu $3, $3 bne $3, $3, TAG192 mthi $3 TAG192: mthi $3 lh $3, 0($3) lui $1, 8 srl $2, $1, 11 TAG193: lui $1, 6 sll $0, $0, 0 div $1, $2 bne $1, $1, TAG194 TAG194: mfhi $3 mult $3, $3 mtlo $3 sll $0, $0, 0 TAG195: multu $3, $3 lui $4, 12 bne $3, $3, TAG196 addu $3, $3, $3 TAG196: lh $2, 0($3) sw $2, -256($2) lhu $3, 0($3) sw $3, -256($3) TAG197: nor $3, $3, $3 slt $3, $3, $3 sub $4, $3, $3 lui $3, 6 TAG198: mtlo $3 mflo $2 sll $0, $0, 0 bgtz $3, TAG199 TAG199: addu $3, $1, $1 sll $0, $0, 0 slt $4, $3, $3 lb $2, 0($4) TAG200: mtlo $2 sb $2, 0($2) sltu $4, $2, $2 xor $3, $4, $4 TAG201: sb $3, 0($3) bne $3, $3, TAG202 or $1, $3, $3 sh $3, 0($1) TAG202: lui $1, 3 lui $2, 12 addu $2, $1, $2 sll $0, $0, 0 TAG203: subu $1, $2, $2 ori $2, $1, 5 mfhi $3 lui $4, 14 TAG204: slt $4, $4, $4 sh $4, 0($4) sh $4, 0($4) sra $4, $4, 14 TAG205: bgez $4, TAG206 mflo $4 sw $4, 0($4) lb $1, 0($4) TAG206: lbu $4, 0($1) slti $4, $4, 3 sb $4, 0($4) addu $2, $1, $4 TAG207: mfhi $4 sw $4, 0($4) srav $2, $4, $4 bgez $2, TAG208 TAG208: lb $2, 0($2) multu $2, $2 mult $2, $2 mult $2, $2 TAG209: multu $2, $2 add $4, $2, $2 lui $3, 0 mfhi $2 TAG210: bltz $2, TAG211 mult $2, $2 andi $2, $2, 9 sw $2, 0($2) TAG211: addi $3, $2, 6 addiu $2, $3, 11 sb $3, 0($2) sb $2, 0($2) TAG212: mult $2, $2 lui $2, 0 mflo $2 mthi $2 TAG213: mflo $3 bltz $2, TAG214 mfhi $2 beq $3, $2, TAG214 TAG214: mult $2, $2 sb $2, -289($2) lw $2, -289($2) sb $2, 0($2) TAG215: lb $1, 0($2) srav $2, $1, $1 sh $1, 0($2) sll $1, $1, 8 TAG216: sll $0, $0, 0 lb $3, -8448($1) mult $1, $1 sltiu $1, $1, 0 TAG217: lui $4, 13 mfhi $3 lui $4, 10 lui $1, 5 TAG218: lui $2, 3 mthi $2 bne $1, $1, TAG219 sll $0, $0, 0 TAG219: mfhi $3 bgez $3, TAG220 xor $2, $3, $2 xori $2, $2, 6 TAG220: lbu $2, 0($2) bne $2, $2, TAG221 sb $2, 0($2) bltz $2, TAG221 TAG221: lbu $2, 0($2) sb $2, 0($2) mult $2, $2 lbu $2, 0($2) TAG222: div $2, $2 sltu $4, $2, $2 ori $4, $2, 15 lui $4, 2 TAG223: bgez $4, TAG224 divu $4, $4 sll $4, $4, 6 div $4, $4 TAG224: sll $0, $0, 0 sll $0, $0, 0 multu $4, $4 lui $3, 5 TAG225: sll $0, $0, 0 multu $4, $3 sll $0, $0, 0 sll $0, $0, 0 TAG226: sltiu $2, $4, 13 and $2, $2, $4 srlv $3, $2, $2 beq $4, $2, TAG227 TAG227: multu $3, $3 bltz $3, TAG228 mult $3, $3 mult $3, $3 TAG228: bltz $3, TAG229 subu $4, $3, $3 add $2, $4, $4 mflo $4 TAG229: mfhi $2 addu $4, $2, $2 mtlo $4 bne $4, $4, TAG230 TAG230: lui $2, 10 lhu $4, 0($4) xori $3, $2, 10 lb $2, 0($4) TAG231: sll $1, $2, 12 mult $2, $2 sll $0, $0, 0 lb $3, 0($4) TAG232: lb $3, 0($3) beq $3, $3, TAG233 lb $3, 0($3) ori $3, $3, 15 TAG233: mult $3, $3 bne $3, $3, TAG234 sltiu $1, $3, 11 mfhi $1 TAG234: bltz $1, TAG235 srlv $4, $1, $1 mult $1, $4 bltz $4, TAG235 TAG235: multu $4, $4 addu $2, $4, $4 multu $4, $2 addu $3, $2, $4 TAG236: bltz $3, TAG237 lui $3, 11 mflo $2 slt $2, $2, $3 TAG237: multu $2, $2 beq $2, $2, TAG238 mfhi $2 div $2, $2 TAG238: slt $3, $2, $2 sltu $3, $3, $3 mthi $3 mult $3, $3 TAG239: lh $4, 0($3) addi $1, $3, 0 mult $3, $3 beq $4, $3, TAG240 TAG240: mflo $3 sh $3, 0($1) lui $3, 0 srl $3, $3, 4 TAG241: xori $4, $3, 13 lui $4, 4 lui $3, 2 sll $0, $0, 0 TAG242: srav $2, $4, $4 mthi $2 addiu $4, $4, 12 sll $0, $0, 0 TAG243: sll $0, $0, 0 blez $4, TAG244 lui $3, 3 sll $2, $1, 10 TAG244: mflo $3 bgtz $2, TAG245 multu $2, $2 mtlo $2 TAG245: srav $3, $3, $3 beq $3, $3, TAG246 mflo $1 lui $3, 13 TAG246: addu $4, $3, $3 sw $3, 0($4) mfhi $4 lb $4, 0($4) TAG247: addu $3, $4, $4 add $2, $4, $3 mtlo $2 mflo $4 TAG248: sb $4, 0($4) addu $2, $4, $4 mthi $4 mtlo $2 TAG249: beq $2, $2, TAG250 slti $2, $2, 11 bne $2, $2, TAG250 lui $4, 3 TAG250: sw $4, 0($4) lui $1, 0 sh $4, 0($1) lh $2, 0($4) TAG251: bne $2, $2, TAG252 sw $2, 0($2) beq $2, $2, TAG252 addu $1, $2, $2 TAG252: lui $4, 1 multu $4, $1 lui $1, 8 mthi $1 TAG253: beq $1, $1, TAG254 srl $1, $1, 2 srav $1, $1, $1 sw $1, 0($1) TAG254: sll $0, $0, 0 mthi $3 sll $0, $0, 0 multu $3, $3 TAG255: xori $2, $3, 0 andi $1, $3, 1 sw $2, 0($1) mthi $1 TAG256: sh $1, 0($1) andi $1, $1, 11 srl $3, $1, 10 mult $3, $3 TAG257: mthi $3 lui $2, 15 beq $2, $2, TAG258 multu $2, $3 TAG258: mtlo $2 srlv $1, $2, $2 sll $0, $0, 0 sll $0, $0, 0 TAG259: addiu $1, $1, 9 sltiu $4, $1, 2 sll $0, $0, 0 mthi $2 TAG260: ori $1, $2, 0 srav $2, $2, $2 lui $4, 12 sll $0, $0, 0 TAG261: blez $3, TAG262 lui $2, 7 beq $2, $3, TAG262 lui $4, 1 TAG262: sll $0, $0, 0 beq $1, $4, TAG263 sll $0, $0, 0 sll $0, $0, 0 TAG263: slti $2, $1, 9 mult $1, $2 mtlo $1 srav $2, $1, $1 TAG264: beq $2, $2, TAG265 sll $0, $0, 0 mthi $1 bne $1, $1, TAG265 TAG265: sll $0, $0, 0 mtlo $1 sll $0, $0, 0 mfhi $4 TAG266: and $2, $4, $4 lb $1, 0($2) mtlo $1 lui $1, 4 TAG267: mthi $1 subu $4, $1, $1 addu $4, $4, $4 mthi $4 TAG268: mflo $1 lui $1, 5 addu $1, $1, $4 bltz $1, TAG269 TAG269: addiu $4, $1, 3 mtlo $1 mtlo $1 blez $1, TAG270 TAG270: mflo $3 lui $2, 0 mflo $4 subu $1, $3, $2 TAG271: bgtz $1, TAG272 sll $0, $0, 0 nor $1, $1, $1 sb $1, 0($1) TAG272: slti $2, $1, 14 addiu $1, $1, 9 mtlo $2 mflo $2 TAG273: lw $2, 0($2) mflo $3 mfhi $2 mfhi $2 TAG274: bltz $2, TAG275 lhu $1, 0($2) lui $3, 10 beq $2, $3, TAG275 TAG275: sll $0, $0, 0 bltz $3, TAG276 lui $3, 12 lui $1, 3 TAG276: bgez $1, TAG277 lui $3, 4 sw $3, 0($1) addi $1, $1, 2 TAG277: ori $1, $1, 6 sll $0, $0, 0 sll $0, $0, 0 lhu $2, 0($2) TAG278: addi $4, $2, 9 lui $3, 8 lb $2, 0($4) beq $2, $2, TAG279 TAG279: mfhi $3 sub $1, $3, $2 beq $3, $3, TAG280 mtlo $1 TAG280: mthi $1 sw $1, 0($1) sb $1, 0($1) multu $1, $1 TAG281: multu $1, $1 mtlo $1 sb $1, 0($1) mtlo $1 TAG282: sub $2, $1, $1 mult $1, $2 lui $3, 13 mthi $3 TAG283: addiu $4, $3, 9 mfhi $2 sll $0, $0, 0 mthi $4 TAG284: multu $2, $2 mfhi $2 mthi $2 bgtz $2, TAG285 TAG285: lui $4, 3 sll $0, $0, 0 mult $2, $2 sll $2, $2, 3 TAG286: sb $2, -1352($2) divu $2, $2 nor $3, $2, $2 lui $4, 4 TAG287: sll $0, $0, 0 bne $3, $4, TAG288 sll $0, $0, 0 mthi $4 TAG288: sh $3, 1353($3) lhu $2, 1353($3) lhu $2, 1353($3) sll $0, $0, 0 TAG289: addu $4, $2, $2 addiu $4, $4, 0 addu $1, $4, $4 lui $2, 12 TAG290: srav $4, $2, $2 mult $2, $4 sll $0, $0, 0 lui $3, 12 TAG291: lui $2, 12 srav $4, $2, $2 lui $4, 4 sll $1, $3, 13 TAG292: bltz $1, TAG293 mflo $3 mflo $3 sb $3, 0($3) TAG293: mflo $2 srlv $2, $3, $3 lui $1, 1 mflo $1 TAG294: sh $1, 0($1) lui $2, 2 mfhi $2 div $2, $2 TAG295: bgez $2, TAG296 lui $1, 12 mfhi $2 blez $1, TAG296 TAG296: ori $3, $2, 5 lb $2, -149($3) lui $4, 11 sltiu $1, $3, 10 TAG297: blez $1, TAG298 multu $1, $1 lw $4, 0($1) mthi $1 TAG298: divu $4, $4 bne $4, $4, TAG299 mflo $1 slt $1, $4, $1 TAG299: slti $2, $1, 12 bgez $2, TAG300 mflo $2 beq $2, $1, TAG300 TAG300: sb $2, 0($2) div $2, $2 mtlo $2 lb $1, 0($2) TAG301: lb $1, 0($1) bltz $1, TAG302 mfhi $4 lui $4, 7 TAG302: sll $0, $0, 0 mfhi $2 mflo $1 blez $2, TAG303 TAG303: lui $3, 15 mflo $1 bgtz $1, TAG304 mfhi $3 TAG304: andi $3, $3, 6 mtlo $3 lui $1, 10 bltz $3, TAG305 TAG305: mflo $4 nor $1, $1, $4 bgez $1, TAG306 lui $4, 3 TAG306: sll $0, $0, 0 mtlo $4 mfhi $3 xori $2, $4, 4 TAG307: bgez $2, TAG308 sll $4, $2, 4 sltiu $3, $4, 0 div $2, $4 TAG308: sltu $1, $3, $3 mult $1, $1 bgez $1, TAG309 addiu $3, $3, 8 TAG309: lui $4, 3 mthi $4 bltz $3, TAG310 sltu $3, $3, $3 TAG310: mthi $3 sh $3, 0($3) sll $4, $3, 14 sll $1, $3, 5 TAG311: mtlo $1 mtlo $1 mthi $1 sb $1, 0($1) TAG312: mult $1, $1 sb $1, 0($1) sub $2, $1, $1 mfhi $1 TAG313: mthi $1 addiu $2, $1, 14 bne $1, $1, TAG314 mflo $4 TAG314: sb $4, 0($4) srlv $4, $4, $4 mfhi $2 mtlo $2 TAG315: lw $1, 0($2) blez $2, TAG316 mfhi $3 addiu $4, $1, 6 TAG316: bltz $4, TAG317 mthi $4 mfhi $1 bne $1, $1, TAG317 TAG317: addu $4, $1, $1 bne $4, $4, TAG318 lui $4, 15 sll $0, $0, 0 TAG318: lui $2, 2 mthi $4 bne $4, $4, TAG319 sll $0, $0, 0 TAG319: sll $0, $0, 0 mfhi $4 lui $2, 4 mult $4, $4 TAG320: lui $3, 2 bltz $3, TAG321 multu $2, $2 div $3, $3 TAG321: bne $3, $3, TAG322 sll $0, $0, 0 sll $0, $0, 0 mfhi $4 TAG322: mflo $2 lb $4, 0($4) lui $1, 12 sllv $1, $1, $2 TAG323: bne $1, $1, TAG324 sll $0, $0, 0 mult $1, $1 addiu $1, $1, 13 TAG324: sll $0, $0, 0 srl $3, $1, 14 sll $0, $0, 0 sll $0, $0, 0 TAG325: divu $3, $3 mtlo $3 blez $3, TAG326 mflo $1 TAG326: sllv $4, $1, $1 nor $1, $4, $4 sw $1, 97($1) multu $1, $4 TAG327: mtlo $1 divu $1, $1 bgez $1, TAG328 mfhi $3 TAG328: mult $3, $3 multu $3, $3 blez $3, TAG329 sb $3, 0($3) TAG329: sub $1, $3, $3 addi $3, $3, 14 mthi $3 lui $4, 1 TAG330: sll $0, $0, 0 slt $4, $4, $4 slt $1, $4, $4 bne $4, $4, TAG331 TAG331: ori $4, $1, 10 mfhi $2 sra $1, $4, 3 sh $1, 0($2) TAG332: sllv $2, $1, $1 lbu $4, 0($1) sh $4, 0($2) sltiu $3, $4, 14 TAG333: or $3, $3, $3 sw $3, 0($3) lhu $4, 0($3) sb $4, 0($3) TAG334: addi $1, $4, 14 sh $1, 0($1) mtlo $4 lui $3, 12 TAG335: addiu $4, $3, 2 multu $4, $4 sll $1, $3, 4 sll $0, $0, 0 TAG336: divu $1, $1 sll $0, $0, 0 mthi $2 div $1, $2 TAG337: mfhi $3 lb $3, 0($2) sub $3, $2, $3 mfhi $3 TAG338: beq $3, $3, TAG339 sltu $3, $3, $3 mflo $3 mfhi $2 TAG339: bgez $2, TAG340 divu $2, $2 mthi $2 lh $2, 0($2) TAG340: or $3, $2, $2 blez $3, TAG341 lui $3, 4 mflo $2 TAG341: lb $3, 0($2) srav $4, $2, $2 lui $2, 10 mfhi $4 TAG342: srav $3, $4, $4 bne $3, $3, TAG343 lui $1, 1 mult $4, $1 TAG343: ori $2, $1, 3 bgtz $1, TAG344 mtlo $1 sltu $1, $2, $1 TAG344: mthi $1 lui $1, 5 sll $0, $0, 0 lui $2, 5 TAG345: lui $2, 8 mflo $1 ori $3, $2, 2 bne $3, $2, TAG346 TAG346: mthi $3 addiu $4, $3, 1 or $2, $4, $3 mfhi $2 TAG347: mfhi $3 sll $0, $0, 0 mfhi $4 beq $3, $4, TAG348 TAG348: sll $0, $0, 0 lui $3, 3 sll $0, $0, 0 divu $4, $4 TAG349: bgez $2, TAG350 sll $0, $0, 0 sltiu $1, $2, 13 sub $1, $2, $2 TAG350: sll $0, $0, 0 blez $1, TAG351 mfhi $1 mthi $1 TAG351: bltz $1, TAG352 lui $1, 5 bgez $1, TAG352 mflo $1 TAG352: lb $3, 0($1) lui $3, 2 mflo $4 beq $4, $4, TAG353 TAG353: or $4, $4, $4 mtlo $4 lbu $4, 0($4) bne $4, $4, TAG354 TAG354: mthi $4 mult $4, $4 multu $4, $4 bne $4, $4, TAG355 TAG355: or $1, $4, $4 multu $4, $1 mflo $4 bgez $1, TAG356 TAG356: srlv $4, $4, $4 mthi $4 lui $4, 8 lui $4, 11 TAG357: sltu $3, $4, $4 div $3, $4 lui $3, 12 bltz $4, TAG358 TAG358: srlv $2, $3, $3 nor $1, $3, $3 sll $0, $0, 0 bgtz $3, TAG359 TAG359: sll $0, $0, 0 slt $4, $3, $3 andi $2, $3, 0 lui $4, 14 TAG360: mfhi $3 bne $4, $4, TAG361 nor $4, $3, $3 mult $3, $4 TAG361: bgez $4, TAG362 div $4, $4 addiu $1, $4, 15 lui $1, 0 TAG362: lh $3, 0($1) lui $2, 1 sll $0, $0, 0 bgez $3, TAG363 TAG363: div $2, $2 blez $2, TAG364 sll $0, $0, 0 div $2, $2 TAG364: sll $0, $0, 0 sh $2, 1($4) lui $4, 7 multu $4, $4 TAG365: divu $4, $4 sll $0, $0, 0 lui $1, 1 mflo $4 TAG366: bne $4, $4, TAG367 mflo $4 subu $3, $4, $4 sllv $3, $4, $4 TAG367: lhu $4, 0($3) bltz $4, TAG368 sw $3, 0($4) beq $4, $4, TAG368 TAG368: mtlo $4 mtlo $4 lb $1, 0($4) mflo $4 TAG369: bne $4, $4, TAG370 mthi $4 multu $4, $4 lw $4, 0($4) TAG370: sh $4, 0($4) xor $2, $4, $4 sh $4, 0($4) lui $4, 15 TAG371: sll $0, $0, 0 div $4, $4 slti $2, $4, 6 sb $4, 0($2) TAG372: sb $2, 0($2) lw $3, 0($2) blez $3, TAG373 multu $3, $2 TAG373: lui $1, 7 bltz $1, TAG374 mfhi $1 sll $0, $0, 0 TAG374: sltiu $1, $1, 12 mflo $3 mflo $4 bgez $1, TAG375 TAG375: multu $4, $4 mthi $4 multu $4, $4 mfhi $3 TAG376: lui $1, 8 mult $3, $3 bne $1, $3, TAG377 multu $1, $3 TAG377: xori $3, $1, 7 and $4, $1, $1 addiu $3, $3, 15 bgez $3, TAG378 TAG378: nor $1, $3, $3 mthi $1 sll $0, $0, 0 bgtz $1, TAG379 TAG379: lui $1, 15 slti $2, $1, 1 lui $4, 12 lui $2, 11 TAG380: blez $2, TAG381 mult $2, $2 sltiu $3, $2, 10 multu $2, $3 TAG381: mult $3, $3 mtlo $3 sra $2, $3, 13 sh $2, 0($2) TAG382: mthi $2 mthi $2 or $4, $2, $2 lui $3, 2 TAG383: lui $3, 10 bne $3, $3, TAG384 sll $0, $0, 0 ori $4, $3, 15 TAG384: sll $1, $4, 1 sll $0, $0, 0 sll $0, $0, 0 div $4, $1 TAG385: beq $1, $1, TAG386 andi $1, $1, 9 mult $1, $1 mult $1, $1 TAG386: ori $2, $1, 10 lui $3, 6 divu $3, $3 sltiu $3, $2, 10 TAG387: mthi $3 lui $3, 6 subu $2, $3, $3 beq $3, $3, TAG388 TAG388: subu $2, $2, $2 mfhi $3 multu $2, $2 mfhi $3 TAG389: lhu $3, 0($3) sh $3, 0($3) mfhi $3 beq $3, $3, TAG390 TAG390: sll $4, $3, 11 mfhi $4 bltz $4, TAG391 mthi $4 TAG391: slti $3, $4, 1 lbu $3, 0($3) lui $3, 6 mtlo $3 TAG392: sll $0, $0, 0 sh $4, 0($4) lui $1, 1 nor $4, $4, $3 TAG393: and $2, $4, $4 lui $2, 10 bne $4, $2, TAG394 sll $0, $0, 0 TAG394: bne $2, $2, TAG395 andi $1, $2, 11 lui $2, 4 multu $2, $1 TAG395: sll $0, $0, 0 mflo $4 mfhi $2 sub $3, $4, $4 TAG396: srav $2, $3, $3 lui $2, 7 mtlo $3 sll $0, $0, 0 TAG397: subu $4, $2, $2 mtlo $2 mthi $2 srlv $3, $4, $4 TAG398: mflo $3 mflo $2 blez $3, TAG399 sll $0, $0, 0 TAG399: mthi $2 sll $0, $0, 0 sll $0, $0, 0 mthi $2 TAG400: bne $4, $4, TAG401 mfhi $2 slt $4, $4, $2 multu $2, $4 TAG401: lui $3, 5 sll $0, $0, 0 blez $3, TAG402 sll $0, $0, 0 TAG402: blez $4, TAG403 lb $2, 0($4) lbu $1, 0($2) lw $1, 0($1) TAG403: bne $1, $1, TAG404 srav $1, $1, $1 lui $4, 9 lui $3, 3 TAG404: sll $0, $0, 0 lui $4, 3 lui $2, 10 divu $3, $3 TAG405: mtlo $2 lui $2, 11 lui $1, 7 lui $4, 5 TAG406: divu $4, $4 bne $4, $4, TAG407 div $4, $4 mthi $4 TAG407: bne $4, $4, TAG408 div $4, $4 sll $0, $0, 0 beq $4, $4, TAG408 TAG408: or $4, $3, $3 sll $0, $0, 0 beq $4, $4, TAG409 mtlo $3 TAG409: slti $1, $4, 9 mult $1, $1 div $4, $4 addu $4, $4, $1 TAG410: blez $4, TAG411 divu $4, $4 sll $0, $0, 0 mtlo $4 TAG411: multu $4, $4 sll $0, $0, 0 andi $1, $4, 6 mflo $3 TAG412: lbu $3, 0($3) srlv $2, $3, $3 sw $2, 0($3) mult $3, $2 TAG413: bgez $2, TAG414 lui $3, 10 xor $2, $3, $2 or $1, $2, $2 TAG414: bne $1, $1, TAG415 xor $3, $1, $1 beq $3, $3, TAG415 mthi $1 TAG415: lui $4, 12 mult $4, $4 xori $4, $4, 12 mult $3, $3 TAG416: beq $4, $4, TAG417 lui $1, 15 sb $4, 0($4) mthi $1 TAG417: mult $1, $1 beq $1, $1, TAG418 lui $2, 3 sllv $3, $1, $1 TAG418: lui $4, 2 beq $3, $3, TAG419 lbu $4, 0($3) lhu $4, 0($4) TAG419: lui $3, 12 xor $1, $4, $4 sh $1, 0($1) bgez $1, TAG420 TAG420: mthi $1 beq $1, $1, TAG421 sb $1, 0($1) beq $1, $1, TAG421 TAG421: lui $1, 15 xor $4, $1, $1 mtlo $4 lui $2, 9 TAG422: mthi $2 bltz $2, TAG423 or $3, $2, $2 lui $4, 7 TAG423: mtlo $4 mult $4, $4 bne $4, $4, TAG424 mflo $2 TAG424: mfhi $3 sb $2, 0($2) mthi $2 multu $2, $3 TAG425: bne $3, $3, TAG426 mfhi $1 mtlo $1 mfhi $4 TAG426: mflo $2 lui $1, 11 lui $1, 11 lw $2, 0($4) TAG427: sb $2, 0($2) beq $2, $2, TAG428 lw $2, 0($2) sw $2, 0($2) TAG428: mthi $2 beq $2, $2, TAG429 mtlo $2 xori $4, $2, 2 TAG429: mult $4, $4 mult $4, $4 mult $4, $4 mtlo $4 TAG430: sub $4, $4, $4 bltz $4, TAG431 lui $2, 2 sh $2, 0($4) TAG431: ori $1, $2, 1 mthi $1 sll $0, $0, 0 sll $0, $0, 0 TAG432: sll $0, $0, 0 sll $0, $0, 0 beq $1, $1, TAG433 nor $3, $1, $1 TAG433: bgez $3, TAG434 sll $0, $0, 0 lui $3, 14 multu $3, $4 TAG434: sll $0, $0, 0 lui $2, 13 mflo $1 sub $1, $3, $1 TAG435: multu $1, $1 sll $0, $0, 0 sll $0, $0, 0 beq $1, $1, TAG436 TAG436: sll $0, $0, 0 mtlo $1 mthi $1 sll $0, $0, 0 TAG437: lui $2, 9 addiu $3, $1, 0 lui $2, 1 sll $0, $0, 0 TAG438: srl $2, $2, 9 lui $4, 9 bltz $2, TAG439 lui $1, 12 TAG439: multu $1, $1 mult $1, $1 sll $0, $0, 0 bgez $1, TAG440 TAG440: mflo $4 sll $0, $0, 0 add $1, $4, $1 mflo $4 TAG441: blez $4, TAG442 mflo $2 sltiu $4, $4, 15 bgez $4, TAG442 TAG442: sw $4, 0($4) bgtz $4, TAG443 mfhi $1 lui $1, 11 TAG443: sll $0, $0, 0 bltz $1, TAG444 sltu $2, $3, $1 beq $1, $1, TAG444 TAG444: sw $2, 0($2) multu $2, $2 mtlo $2 mflo $1 TAG445: lui $2, 1 mflo $3 or $2, $2, $3 lhu $4, 0($3) TAG446: sra $4, $4, 14 lui $2, 9 mtlo $4 sh $2, 0($4) TAG447: beq $2, $2, TAG448 divu $2, $2 div $2, $2 multu $2, $2 TAG448: multu $2, $2 xori $3, $2, 14 mflo $1 srav $3, $1, $2 TAG449: lb $3, 0($3) mult $3, $3 mult $3, $3 srl $4, $3, 15 TAG450: sb $4, 0($4) lui $1, 5 mult $1, $4 mthi $4 TAG451: beq $1, $1, TAG452 ori $2, $1, 15 lui $2, 4 lh $2, 0($2) TAG452: bne $2, $2, TAG453 ori $1, $2, 5 lui $1, 5 sll $0, $0, 0 TAG453: mtlo $2 sll $0, $0, 0 mtlo $1 beq $2, $1, TAG454 TAG454: mult $1, $1 sll $0, $0, 0 beq $1, $1, TAG455 subu $4, $1, $1 TAG455: mthi $4 mtlo $4 sllv $1, $4, $4 xori $1, $1, 4 TAG456: sb $1, 0($1) lhu $4, 0($1) mult $4, $4 mflo $3 TAG457: mflo $3 bne $3, $3, TAG458 mtlo $3 div $3, $3 TAG458: div $3, $3 srlv $2, $3, $3 srlv $4, $2, $2 mflo $2 TAG459: lb $4, 0($2) mflo $1 mflo $2 addu $3, $4, $4 TAG460: lhu $3, 0($3) bltz $3, TAG461 lui $4, 14 mfhi $2 TAG461: beq $2, $2, TAG462 mthi $2 sw $2, 0($2) bne $2, $2, TAG462 TAG462: lui $3, 1 mthi $3 lui $1, 1 lui $1, 5 TAG463: mthi $1 blez $1, TAG464 lui $1, 7 sll $0, $0, 0 TAG464: divu $1, $1 sll $0, $0, 0 sll $0, $0, 0 sll $0, $0, 0 TAG465: addu $2, $3, $3 divu $2, $3 ori $3, $2, 10 mfhi $1 TAG466: sw $1, 0($1) multu $1, $1 bgez $1, TAG467 lb $2, 0($1) TAG467: lbu $1, 0($2) srl $1, $2, 14 xor $2, $1, $2 lw $1, 0($2) TAG468: mflo $2 mthi $2 bne $2, $1, TAG469 xor $1, $2, $2 TAG469: lui $2, 1 lui $2, 4 sll $0, $0, 0 mtlo $2 TAG470: mtlo $2 mfhi $1 bne $1, $2, TAG471 lh $4, 0($1) TAG471: sh $4, 0($4) lh $1, 0($4) lui $3, 11 sub $1, $4, $1 TAG472: lb $2, 0($1) mult $1, $1 sb $1, 0($2) sw $2, 0($2) TAG473: sw $2, 0($2) blez $2, TAG474 lui $4, 1 bgez $2, TAG474 TAG474: nor $4, $4, $4 multu $4, $4 or $3, $4, $4 mflo $2 TAG475: lui $1, 9 bgtz $1, TAG476 sll $0, $0, 0 mtlo $1 TAG476: sll $0, $0, 0 slt $2, $3, $3 addiu $4, $3, 9 mtlo $3 TAG477: bgez $4, TAG478 mtlo $4 sll $0, $0, 0 mfhi $1 TAG478: sll $0, $0, 0 lui $1, 7 sra $1, $1, 12 lh $3, 0($1) TAG479: sll $3, $3, 7 div $3, $3 subu $3, $3, $3 sh $3, 0($3) TAG480: mfhi $2 sw $3, 0($3) sh $2, 0($3) sb $3, 0($3) TAG481: andi $3, $2, 4 mtlo $2 bltz $3, TAG482 lw $2, 0($3) TAG482: xor $3, $2, $2 lui $2, 3 mflo $2 sb $3, 0($2) TAG483: xor $4, $2, $2 addiu $3, $2, 15 addiu $3, $2, 10 bgez $3, TAG484 TAG484: ori $3, $3, 9 mtlo $3 sb $3, 0($3) sb $3, 0($3) TAG485: mtlo $3 bne $3, $3, TAG486 sb $3, 0($3) sb $3, 0($3) TAG486: lbu $1, 0($3) mfhi $2 ori $2, $3, 5 bgtz $2, TAG487 TAG487: mfhi $4 sb $4, 0($4) mfhi $4 sw $4, 0($4) TAG488: bne $4, $4, TAG489 lui $2, 7 mflo $2 sb $4, 0($2) TAG489: mtlo $2 mfhi $1 bne $2, $2, TAG490 mtlo $1 TAG490: multu $1, $1 lui $1, 11 sllv $1, $1, $1 blez $1, TAG491 TAG491: sltiu $1, $1, 12 lui $4, 7 multu $4, $4 mfhi $4 TAG492: lb $2, 0($4) sb $4, 0($4) bgtz $2, TAG493 mthi $4 TAG493: bltz $2, TAG494 mthi $2 sllv $1, $2, $2 lui $4, 5 TAG494: sll $0, $0, 0 andi $2, $4, 6 sll $0, $0, 0 beq $2, $1, TAG495 TAG495: sb $1, 0($1) mtlo $1 lbu $4, 0($1) beq $1, $1, TAG496 TAG496: mtlo $4 sub $3, $4, $4 lh $4, 0($4) multu $4, $3 TAG497: lbu $1, 0($4) lhu $3, 0($1) lui $3, 8 beq $1, $4, TAG498 TAG498: sll $0, $0, 0 divu $3, $3 sll $0, $0, 0 ori $1, $1, 0 TAG499: mthi $1 mthi $1 lui $2, 4 ori $3, $2, 5 TAG500: lui $3, 2 bne $3, $3, TAG501 mfhi $4 multu $4, $4 TAG501: lb $4, 0($4) srlv $1, $4, $4 lbu $4, 0($1) mthi $4 TAG502: lui $2, 3 lui $1, 3 or $4, $2, $4 sll $0, $0, 0 TAG503: lui $4, 14 sll $0, $0, 0 bne $4, $4, TAG504 sll $0, $0, 0 TAG504: sll $0, $0, 0 mtlo $2 bne $2, $2, TAG505 div $2, $2 TAG505: bne $2, $2, TAG506 nor $2, $2, $2 sll $0, $0, 0 slti $2, $2, 6 TAG506: lui $1, 7 addiu $1, $1, 9 sll $0, $0, 0 mtlo $1 TAG507: bgez $4, TAG508 sll $0, $0, 0 mflo $2 ori $3, $2, 4 TAG508: sll $0, $0, 0 bltz $3, TAG509 sll $0, $0, 0 beq $3, $3, TAG509 TAG509: div $3, $3 sll $0, $0, 0 sll $0, $0, 0 bgtz $3, TAG510 TAG510: sll $0, $0, 0 mtlo $3 sll $0, $0, 0 beq $3, $3, TAG511 TAG511: mtlo $3 sra $1, $3, 2 blez $3, TAG512 subu $4, $3, $3 TAG512: sh $4, 0($4) sh $4, 0($4) bgez $4, TAG513 mtlo $4 TAG513: xori $3, $4, 12 or $3, $4, $3 mflo $4 sh $4, 0($3) TAG514: blez $4, TAG515 lui $1, 2 mflo $1 bne $1, $1, TAG515 TAG515: sll $0, $0, 0 mflo $1 lhu $2, 0($3) mthi $2 TAG516: mflo $2 bne $2, $2, TAG517 mthi $2 sll $3, $2, 15 TAG517: mult $3, $3 mtlo $3 or $1, $3, $3 mthi $3 TAG518: sb $1, 0($1) mfhi $1 beq $1, $1, TAG519 and $1, $1, $1 TAG519: blez $1, TAG520 lui $2, 12 bne $1, $1, TAG520 mthi $1 TAG520: divu $2, $2 mthi $2 mfhi $1 mfhi $1 TAG521: bgez $1, TAG522 lui $2, 10 blez $1, TAG522 addiu $3, $1, 8 TAG522: lbu $4, 0($3) mthi $4 lui $1, 7 multu $3, $3 TAG523: lui $1, 10 sll $0, $0, 0 sll $0, $0, 0 bgtz $1, TAG524 TAG524: sll $0, $0, 0 sll $0, $0, 0 add $1, $4, $1 sll $0, $0, 0 TAG525: lhu $4, 0($4) mflo $4 slti $3, $4, 3 andi $4, $4, 15 TAG526: mflo $1 mfhi $4 mflo $4 mtlo $4 TAG527: beq $4, $4, TAG528 sh $4, 0($4) bgez $4, TAG528 sb $4, 0($4) TAG528: bne $4, $4, TAG529 lui $2, 13 or $2, $2, $4 mfhi $1 TAG529: bgez $1, TAG530 and $3, $1, $1 multu $1, $3 mthi $1 TAG530: srl $2, $3, 6 blez $3, TAG531 mthi $2 lw $3, 0($2) TAG531: bne $3, $3, TAG532 lui $3, 11 slt $2, $3, $3 mult $3, $3 TAG532: mfhi $3 lbu $2, 0($3) mtlo $3 mfhi $2 TAG533: sltu $4, $2, $2 multu $4, $4 mthi $4 addiu $4, $2, 0 TAG534: addiu $3, $4, 1 bne $3, $3, TAG535 mtlo $3 divu $3, $3 TAG535: sb $3, 0($3) lhu $4, 0($3) lui $2, 7 sll $0, $0, 0 TAG536: addiu $3, $2, 11 sll $0, $0, 0 addu $3, $3, $2 sll $0, $0, 0 TAG537: sll $0, $0, 0 srav $4, $3, $3 bltz $3, TAG538 addiu $4, $3, 6 TAG538: lui $4, 3 sll $4, $4, 2 sll $0, $0, 0 slti $2, $4, 0 TAG539: bgtz $2, TAG540 andi $4, $2, 2 bne $4, $2, TAG540 and $4, $4, $4 TAG540: mfhi $4 srlv $2, $4, $4 slt $1, $4, $4 and $2, $4, $4 TAG541: lb $4, 0($2) bgtz $2, TAG542 slti $4, $2, 0 sb $4, 0($4) TAG542: sw $4, 0($4) lui $4, 15 sll $0, $0, 0 blez $4, TAG543 TAG543: mtlo $4 sll $0, $0, 0 lui $1, 11 lui $4, 1 TAG544: sll $0, $0, 0 lui $2, 13 beq $4, $2, TAG545 sll $0, $0, 0 TAG545: bgtz $4, TAG546 mthi $4 beq $4, $4, TAG546 mflo $4 TAG546: sll $0, $0, 0 bgtz $4, TAG547 addiu $4, $4, 4 lui $1, 3 TAG547: sll $0, $0, 0 blez $1, TAG548 sll $0, $0, 0 mflo $3 TAG548: mflo $4 mthi $3 lui $1, 13 srav $2, $3, $1 TAG549: beq $2, $2, TAG550 mtlo $2 mthi $2 div $2, $2 TAG550: mfhi $4 bne $4, $4, TAG551 sll $0, $0, 0 sll $0, $0, 0 TAG551: sll $0, $0, 0 mthi $4 bne $4, $4, TAG552 mthi $4 TAG552: bgtz $4, TAG553 srlv $3, $4, $4 bgtz $3, TAG553 sh $4, 0($4) TAG553: multu $3, $3 bne $3, $3, TAG554 sll $2, $3, 11 lui $1, 5 TAG554: lui $2, 2 mthi $2 sll $0, $0, 0 sll $0, $0, 0 TAG555: beq $2, $2, TAG556 lui $3, 9 beq $2, $3, TAG556 lb $1, 0($3) TAG556: mtlo $1 sll $0, $0, 0 sltiu $2, $2, 3 lui $3, 12 TAG557: lui $3, 14 beq $3, $3, TAG558 sll $0, $0, 0 bne $1, $3, TAG558 TAG558: lui $3, 10 sll $0, $0, 0 sll $0, $0, 0 bne $1, $3, TAG559 TAG559: div $3, $3 beq $3, $3, TAG560 div $3, $3 lui $4, 1 TAG560: mthi $4 bgtz $4, TAG561 xori $4, $4, 2 sw $4, 0($4) TAG561: lui $3, 14 lui $1, 12 bne $3, $4, TAG562 sll $0, $0, 0 TAG562: mfhi $4 addu $1, $1, $4 lui $4, 15 bgez $1, TAG563 TAG563: lui $4, 4 bltz $4, TAG564 sltu $2, $4, $4 mflo $4 TAG564: mtlo $4 mflo $4 sb $4, 0($4) beq $4, $4, TAG565 TAG565: mfhi $2 mtlo $2 bgtz $4, TAG566 lui $3, 6 TAG566: srlv $1, $3, $3 divu $1, $1 beq $3, $3, TAG567 sll $0, $0, 0 TAG567: subu $1, $1, $1 bgez $1, TAG568 lui $3, 5 lhu $3, 0($1) TAG568: div $3, $3 mult $3, $3 lui $4, 4 mthi $4 TAG569: subu $1, $4, $4 lh $3, 0($1) mthi $4 sra $3, $4, 7 TAG570: sll $0, $0, 0 addi $3, $1, 3 mtlo $3 sb $3, 0($3) TAG571: sll $1, $3, 4 sb $1, 0($3) mtlo $3 srl $3, $3, 11 TAG572: add $4, $3, $3 lui $3, 7 mfhi $2 ori $3, $3, 7 TAG573: multu $3, $3 mfhi $3 or $3, $3, $3 multu $3, $3 TAG574: lui $3, 6 sll $0, $0, 0 blez $3, TAG575 mthi $3 TAG575: div $3, $3 bgtz $3, TAG576 lui $4, 10 ori $4, $3, 1 TAG576: sll $0, $0, 0 mfhi $3 lw $2, 0($3) lui $3, 4 TAG577: sll $1, $3, 2 bne $1, $3, TAG578 mult $3, $3 beq $3, $1, TAG578 TAG578: sltiu $1, $1, 12 slti $3, $1, 0 sh $1, 0($3) sb $1, 0($1) TAG579: sltiu $3, $3, 0 lui $3, 5 sll $0, $0, 0 bgtz $3, TAG580 TAG580: lui $1, 6 lui $3, 9 sll $0, $0, 0 mflo $2 TAG581: lui $4, 5 lui $1, 10 mtlo $2 srav $2, $2, $4 TAG582: mtlo $2 addu $4, $2, $2 beq $2, $2, TAG583 mult $2, $2 TAG583: lui $1, 0 bltz $1, TAG584 xor $2, $4, $4 bgtz $1, TAG584 TAG584: mtlo $2 lui $4, 15 sll $0, $0, 0 addi $1, $2, 3 TAG585: subu $4, $1, $1 beq $4, $1, TAG586 lb $2, 0($1) sll $2, $4, 6 TAG586: sltu $1, $2, $2 xori $4, $1, 5 mtlo $4 lui $3, 7 TAG587: sltu $3, $3, $3 beq $3, $3, TAG588 mtlo $3 lh $2, 0($3) TAG588: mthi $2 sltiu $1, $2, 14 bne $1, $2, TAG589 mflo $3 TAG589: sh $3, 0($3) addiu $4, $3, 15 lb $1, 0($3) lh $3, 0($3) TAG590: bgtz $3, TAG591 ori $2, $3, 6 lbu $4, 0($3) mthi $3 TAG591: multu $4, $4 bgtz $4, TAG592 srav $4, $4, $4 sb $4, 0($4) TAG592: mflo $1 beq $1, $1, TAG593 multu $4, $1 mult $4, $1 TAG593: sw $1, 0($1) multu $1, $1 sh $1, 0($1) lui $3, 3 TAG594: sll $0, $0, 0 lui $4, 11 sll $0, $0, 0 xor $2, $4, $4 TAG595: mtlo $2 lui $4, 14 sllv $4, $4, $2 divu $4, $4 TAG596: multu $4, $4 mult $4, $4 sra $3, $4, 15 lw $1, 0($3) TAG597: addu $2, $1, $1 andi $2, $1, 6 sb $2, 0($1) bne $1, $1, TAG598 TAG598: sh $2, 0($2) lhu $2, 0($2) lhu $3, 0($2) bgez $2, TAG599 TAG599: lui $4, 12 mfhi $3 mflo $4 mtlo $3 TAG600: lhu $3, 0($4) sub $2, $4, $4 mtlo $3 lb $2, 0($2) TAG601: xori $4, $2, 15 sra $3, $4, 5 mfhi $4 mflo $4 TAG602: mult $4, $4 lui $3, 1 mult $4, $4 mthi $4 TAG603: beq $3, $3, TAG604 slt $2, $3, $3 lh $2, 0($2) mthi $3 TAG604: slti $1, $2, 6 sb $2, 0($2) mtlo $2 lui $4, 10 TAG605: mtlo $4 mflo $1 lui $4, 11 sll $0, $0, 0 TAG606: mthi $1 xori $3, $1, 5 beq $1, $3, TAG607 addu $1, $1, $3 TAG607: mthi $1 sll $0, $0, 0 xor $1, $1, $3 sll $0, $0, 0 TAG608: sll $0, $0, 0 beq $1, $1, TAG609 mthi $1 bne $1, $1, TAG609 TAG609: lui $3, 14 mtlo $3 srav $1, $1, $3 bgtz $1, TAG610 TAG610: sll $3, $1, 12 srl $4, $3, 12 blez $1, TAG611 srlv $2, $4, $1 TAG611: mtlo $2 lui $2, 6 sll $0, $0, 0 bgtz $2, TAG612 TAG612: lui $2, 10 andi $3, $2, 0 bne $3, $3, TAG613 lui $3, 14 TAG613: blez $3, TAG614 mfhi $1 lui $3, 13 sll $0, $0, 0 TAG614: sltiu $3, $3, 1 lui $3, 4 multu $3, $3 addiu $3, $3, 13 TAG615: sll $0, $0, 0 bltz $3, TAG616 mtlo $3 bltz $3, TAG616 TAG616: mfhi $1 mfhi $2 blez $2, TAG617 addiu $2, $1, 14 TAG617: sb $2, 0($2) div $2, $2 sll $2, $2, 15 bne $2, $2, TAG618 TAG618: sll $0, $0, 0 slti $2, $3, 8 sll $0, $0, 0 mthi $2 TAG619: sll $0, $0, 0 ori $2, $3, 11 addiu $4, $1, 8 beq $4, $2, TAG620 TAG620: sb $4, 0($4) sw $4, 0($4) beq $4, $4, TAG621 lhu $2, 0($4) TAG621: sh $2, 0($2) mthi $2 nor $4, $2, $2 lui $2, 1 TAG622: sll $0, $0, 0 mthi $2 sll $0, $0, 0 lui $3, 9 TAG623: mtlo $3 or $3, $3, $3 mtlo $3 mtlo $3 TAG624: mtlo $3 lui $1, 11 blez $3, TAG625 or $2, $3, $1 TAG625: bne $2, $2, TAG626 mthi $2 bltz $2, TAG626 mthi $2 TAG626: andi $2, $2, 5 bne $2, $2, TAG627 lh $3, 0($2) mult $3, $2 TAG627: sh $3, 0($3) ori $1, $3, 3 mult $1, $1 lb $2, 0($1) TAG628: mthi $2 mtlo $2 mult $2, $2 beq $2, $2, TAG629 TAG629: sw $2, 0($2) mtlo $2 lb $2, 0($2) lbu $4, 0($2) TAG630: multu $4, $4 mflo $2 xor $2, $4, $4 mtlo $2 TAG631: mflo $1 lhu $2, 0($2) mfhi $4 srlv $4, $2, $1 TAG632: sub $4, $4, $4 bne $4, $4, TAG633 srl $1, $4, 12 srl $3, $4, 4 TAG633: sub $4, $3, $3 bne $4, $3, TAG634 srav $3, $3, $4 beq $3, $4, TAG634 TAG634: mfhi $2 beq $3, $2, TAG635 lui $4, 14 lui $2, 11 TAG635: and $4, $2, $2 multu $4, $4 slti $4, $2, 15 blez $2, TAG636 TAG636: mfhi $1 bgez $4, TAG637 mult $1, $4 bne $4, $1, TAG637 TAG637: lui $3, 14 sll $0, $0, 0 beq $4, $1, TAG638 lui $2, 2 TAG638: blez $2, TAG639 mthi $2 sll $0, $0, 0 bne $2, $2, TAG639 TAG639: sll $0, $0, 0 slt $1, $2, $3 sll $0, $0, 0 lb $2, 0($1) TAG640: mtlo $2 sw $2, 0($2) slt $1, $2, $2 beq $2, $2, TAG641 TAG641: mfhi $4 blez $4, TAG642 nor $3, $4, $4 mflo $4 TAG642: lw $2, 0($4) addu $2, $4, $4 addu $2, $2, $4 addi $3, $4, 9 TAG643: sllv $2, $3, $3 lui $4, 8 lui $2, 7 andi $2, $3, 5 TAG644: beq $2, $2, TAG645 mfhi $4 beq $2, $2, TAG645 mthi $2 TAG645: bgez $4, TAG646 sltu $4, $4, $4 srlv $4, $4, $4 divu $4, $4 TAG646: srl $1, $4, 9 mflo $4 bne $1, $4, TAG647 or $2, $1, $1 TAG647: sh $2, 0($2) addiu $2, $2, 1 lui $2, 5 bne $2, $2, TAG648 TAG648: and $3, $2, $2 bltz $2, TAG649 slt $4, $3, $2 subu $2, $3, $2 TAG649: sh $2, 0($2) sb $2, 0($2) blez $2, TAG650 sw $2, 0($2) TAG650: bgez $2, TAG651 mfhi $3 sh $3, 0($3) sb $2, 0($2) TAG651: sll $0, $0, 0 mult $3, $3 mflo $2 multu $3, $2 TAG652: bltz $2, TAG653 mfhi $1 bgtz $2, TAG653 lui $2, 7 TAG653: multu $2, $2 slti $1, $2, 7 blez $1, TAG654 sb $2, 0($1) TAG654: beq $1, $1, TAG655 sb $1, 0($1) sltu $3, $1, $1 mfhi $1 TAG655: mthi $1 blez $1, TAG656 multu $1, $1 bgtz $1, TAG656 TAG656: mthi $1 sw $1, 0($1) blez $1, TAG657 lhu $4, 0($1) TAG657: subu $2, $4, $4 mult $4, $4 lui $1, 15 subu $4, $2, $1 TAG658: sll $0, $0, 0 or $2, $4, $4 srlv $1, $2, $4 blez $1, TAG659 TAG659: multu $1, $1 sll $0, $0, 0 div $4, $4 mfhi $3 TAG660: multu $3, $3 bne $3, $3, TAG661 mult $3, $3 lui $3, 15 TAG661: mtlo $3 bne $3, $3, TAG662 mfhi $1 mflo $4 TAG662: bne $4, $4, TAG663 mfhi $2 sb $2, 0($2) bne $2, $2, TAG663 TAG663: mtlo $2 blez $2, TAG664 sb $2, 0($2) mfhi $3 TAG664: ori $1, $3, 7 beq $3, $3, TAG665 sll $0, $0, 0 and $2, $3, $4 TAG665: bgtz $2, TAG666 mult $2, $2 mthi $2 sltiu $2, $2, 9 TAG666: sb $2, 0($2) divu $2, $2 or $3, $2, $2 bne $3, $3, TAG667 TAG667: sb $3, 0($3) multu $3, $3 mtlo $3 or $3, $3, $3 TAG668: beq $3, $3, TAG669 mfhi $1 mfhi $3 sh $3, 0($3) TAG669: mthi $3 subu $4, $3, $3 sll $2, $3, 2 mthi $4 TAG670: xori $2, $2, 8 xori $3, $2, 13 lui $3, 11 mtlo $3 TAG671: mtlo $3 sll $2, $3, 14 mflo $1 mult $1, $2 TAG672: beq $1, $1, TAG673 lui $3, 15 lhu $2, 0($3) lui $2, 9 TAG673: sll $0, $0, 0 bgtz $2, TAG674 slti $4, $2, 9 bltz $4, TAG674 TAG674: lb $2, 0($4) lbu $2, 0($4) bne $4, $4, TAG675 mult $4, $2 TAG675: lbu $2, 0($2) sb $2, 0($2) mflo $2 bne $2, $2, TAG676 TAG676: mthi $2 lbu $3, 0($2) mfhi $3 mflo $3 TAG677: mtlo $3 bne $3, $3, TAG678 srav $3, $3, $3 multu $3, $3 TAG678: mfhi $2 lui $4, 8 srl $1, $4, 12 lui $2, 8 TAG679: lui $2, 8 mult $2, $2 sltiu $4, $2, 2 bltz $4, TAG680 TAG680: and $2, $4, $4 beq $4, $2, TAG681 lui $3, 3 sb $4, 0($3) TAG681: div $3, $3 mflo $2 sll $0, $0, 0 sra $1, $2, 2 TAG682: mult $1, $1 lui $1, 8 bne $1, $1, TAG683 and $2, $1, $1 TAG683: beq $2, $2, TAG684 sll $0, $0, 0 sh $2, 0($2) lhu $4, 0($2) TAG684: bne $4, $4, TAG685 xori $4, $4, 2 blez $4, TAG685 lhu $3, 0($4) TAG685: lw $3, 0($3) mflo $4 mflo $3 bgez $3, TAG686 TAG686: mult $3, $3 mult $3, $3 multu $3, $3 lui $4, 6 TAG687: mtlo $4 mflo $2 sllv $3, $4, $2 mflo $3 TAG688: mtlo $3 mflo $3 bne $3, $3, TAG689 lui $1, 7 TAG689: lui $4, 6 srlv $1, $4, $1 blez $1, TAG690 mtlo $1 TAG690: xor $3, $1, $1 sll $0, $0, 0 or $1, $3, $3 beq $3, $3, TAG691 TAG691: sub $4, $1, $1 lui $1, 1 bltz $4, TAG692 mfhi $2 TAG692: srav $3, $2, $2 sra $2, $2, 6 sh $3, 0($2) srlv $2, $2, $2 TAG693: srl $3, $2, 3 mfhi $1 mthi $3 mtlo $3 TAG694: bgez $1, TAG695 lw $1, 0($1) mfhi $4 xor $1, $4, $1 TAG695: sh $1, 0($1) mthi $1 xor $3, $1, $1 sra $3, $1, 8 TAG696: andi $3, $3, 14 mflo $2 sltiu $1, $3, 9 sltiu $4, $3, 3 TAG697: lui $1, 14 mthi $4 addu $4, $1, $1 beq $4, $4, TAG698 TAG698: mtlo $4 beq $4, $4, TAG699 lui $3, 2 mfhi $2 TAG699: or $2, $2, $2 sw $2, 0($2) beq $2, $2, TAG700 lw $3, 0($2) TAG700: slti $1, $3, 2 lui $3, 2 beq $1, $3, TAG701 sll $0, $0, 0 TAG701: xori $3, $1, 3 mthi $3 mflo $4 lui $4, 12 TAG702: multu $4, $4 lui $2, 6 sll $0, $0, 0 mult $4, $2 TAG703: divu $2, $2 multu $2, $2 sll $0, $0, 0 mflo $1 TAG704: lui $3, 6 lui $2, 6 or $2, $1, $1 lw $3, 0($2) TAG705: mthi $3 mult $3, $3 bne $3, $3, TAG706 multu $3, $3 TAG706: mtlo $3 sub $2, $3, $3 sh $3, 0($3) mthi $3 TAG707: beq $2, $2, TAG708 addi $4, $2, 4 beq $4, $4, TAG708 lui $1, 13 TAG708: mflo $4 and $4, $1, $4 beq $4, $4, TAG709 mtlo $4 TAG709: lh $2, 0($4) sllv $3, $4, $4 xori $1, $3, 15 sw $1, 0($2) TAG710: bne $1, $1, TAG711 addiu $2, $1, 5 sw $1, 0($2) slt $3, $1, $1 TAG711: sll $2, $3, 8 sh $3, 0($2) mtlo $3 mfhi $1 TAG712: mfhi $1 sh $1, 0($1) lui $4, 10 sw $1, 0($1) TAG713: xor $2, $4, $4 mflo $2 lui $2, 7 multu $2, $4 TAG714: mthi $2 mtlo $2 mtlo $2 mtlo $2 TAG715: addiu $2, $2, 2 sll $0, $0, 0 sltiu $1, $2, 10 lui $4, 9 TAG716: mult $4, $4 mthi $4 srav $1, $4, $4 mult $1, $1 TAG717: lui $2, 12 sll $0, $0, 0 mfhi $3 mflo $3 TAG718: bgtz $3, TAG719 mfhi $4 beq $3, $3, TAG719 multu $4, $3 TAG719: sb $4, 0($4) bltz $4, TAG720 mult $4, $4 blez $4, TAG720 TAG720: nor $1, $4, $4 lui $1, 4 mtlo $1 addu $1, $1, $1 TAG721: beq $1, $1, TAG722 addiu $3, $1, 2 mtlo $3 sll $1, $3, 4 TAG722: bne $1, $1, TAG723 srlv $2, $1, $1 multu $2, $1 lui $3, 1 TAG723: lui $1, 14 bgez $3, TAG724 srav $2, $1, $3 lui $2, 9 TAG724: mult $2, $2 lui $1, 3 beq $1, $1, TAG725 srl $1, $2, 2 TAG725: mtlo $1 lui $4, 3 multu $4, $4 mfhi $3 TAG726: mthi $3 lbu $4, 0($3) sllv $2, $4, $4 lh $3, 0($2) TAG727: mfhi $2 mult $3, $3 lui $3, 10 addiu $2, $2, 4 TAG728: and $3, $2, $2 lb $3, 0($2) sb $2, 0($2) addiu $4, $2, 12 TAG729: mflo $1 mthi $1 mtlo $4 div $4, $4 TAG730: lw $2, 0($1) beq $1, $2, TAG731 mult $1, $2 mfhi $2 TAG731: lhu $1, 0($2) multu $1, $2 bltz $1, TAG732 nor $3, $2, $1 TAG732: mtlo $3 lhu $4, 1($3) multu $4, $3 mthi $3 TAG733: mult $4, $4 xori $1, $4, 15 lui $1, 12 xori $1, $1, 6 TAG734: sll $0, $0, 0 sll $0, $0, 0 div $1, $3 blez $3, TAG735 TAG735: mfhi $2 mthi $2 bne $2, $2, TAG736 mflo $4 TAG736: mthi $4 beq $4, $4, TAG737 mfhi $1 mtlo $1 TAG737: sll $0, $0, 0 sll $0, $0, 0 sll $0, $0, 0 bgez $4, TAG738 TAG738: div $1, $1 lui $4, 7 mfhi $4 or $1, $1, $4 TAG739: xor $4, $1, $1 sll $1, $1, 10 ori $2, $1, 1 slti $4, $2, 8 TAG740: multu $4, $4 lb $2, 0($4) mthi $2 blez $4, TAG741 TAG741: multu $2, $2 sh $2, 0($2) mtlo $2 nor $1, $2, $2 TAG742: sll $0, $0, 0 bne $1, $4, TAG743 addiu $2, $4, 10 mthi $1 TAG743: mflo $1 lb $1, 0($1) mult $1, $1 lbu $4, 0($2) TAG744: bgtz $4, TAG745 sb $4, 0($4) lui $3, 13 mult $3, $3 TAG745: multu $3, $3 nor $2, $3, $3 mfhi $1 lui $2, 1 TAG746: bgtz $2, TAG747 xori $3, $2, 9 mthi $2 bgez $3, TAG747 TAG747: sll $0, $0, 0 blez $3, TAG748 lh $1, 0($4) bgez $1, TAG748 TAG748: xori $2, $1, 0 lh $4, 0($1) and $3, $2, $1 multu $4, $3 TAG749: addu $2, $3, $3 add $4, $3, $3 mflo $2 lui $4, 4 TAG750: nop nop test_end: beq $0, $0, test_end nop
constants.asm
MaxLeiter/KIMP
3
246328
<gh_stars>1-10 corelibPath: .db "/lib/core", 0 windowTitle: .db "KIMP: Welcome", 0 newImageTitle: .db "KIMP: New Image", 0 newImageStr: .db "New Image\n", 0 loadImageStr: .db "Load Image\n", 0 backStr: .db "Back", 0 quitStr: .db "Exit", 0 size: ;Image size, will need to be configurable with new image screen at some point, currently unused .db 20 item: .db 0 caretIcon: ;Just a line atm, maybe go back to the 'default' cursor? .db 0b00000000 .db 0b00000000 .db 0b11111000 .db 0b00000000 cursor_y: .db 0 cursor_x: .db 0 menu: .db 3 .db "New", 0 .db "Open", 0 .db "Exit", 0 menu_functions: .dw new_image .dw load_image .dw exit file_buffer: .dw 0 file_buffer_length: .dw 0 file_name: .dw 0 file_length: .dw 0 index: .dw 0 current: .dw 1 cursorPos: ;Really shouldn't hardcode this... ;x .db 29, 55 .db 33, 55 .db 37, 55 .db 41, 55 .db 45, 55 .db 49, 55 .db 53, 55 .db 57, 55 .db 61, 55 .db 65, 55 .db 29, 51 .db 33, 51 .db 37, 51 .db 41, 51 .db 45, 51 .db 49, 51 .db 53, 51 .db 57, 51 .db 61, 51 .db 65, 51 .db 29, 47 .db 33, 47 .db 37, 47 .db 41, 47 .db 45, 47 .db 49, 47 .db 53, 47 .db 57, 47 .db 61, 47 .db 65, 47 .db 29, 43 .db 33, 43 .db 37, 43 .db 41, 43 .db 45, 43 .db 49, 43 .db 53, 43 .db 57, 43 .db 61, 43 .db 65, 43 .db 29, 39 .db 33, 39 .db 37, 39 .db 41, 39 .db 45, 39 .db 49, 39 .db 53, 39 .db 57, 39 .db 61, 39 .db 65, 39 .db 29, 35 .db 33, 35 .db 37, 35 .db 41, 35 .db 45, 35 .db 49, 35 .db 53, 35 .db 57, 35 .db 61, 35 .db 65, 35 .db 29, 31 .db 33, 31 .db 37, 31 .db 41, 31 .db 45, 31 .db 49, 31 .db 53, 31 .db 57, 31 .db 61, 31 .db 65, 31 .db 29, 27 .db 33, 27 .db 37, 27 .db 41, 27 .db 45, 27 .db 49, 27 .db 53, 27 .db 57, 27 .db 61, 27 .db 65, 27 .db 29, 23 .db 33, 23 .db 37, 23 .db 41, 23 .db 45, 23 .db 49, 23 .db 53, 23 .db 57, 23 .db 61, 23 .db 65, 23 .db 29, 19 .db 33, 19 .db 37, 19 .db 41, 19 .db 45, 19 .db 49, 19 .db 53, 19 .db 57, 19 .db 61, 19 .db 65, 19 cursorPos_end: .db 0
programs/oeis/059/A059482.asm
neoneye/loda
22
88106
; A059482: a(0)=1, a(n) = a(n-1) + 8*10^(n-1). ; 1,9,89,889,8889,88889,888889,8888889,88888889,888888889,8888888889,88888888889,888888888889,8888888888889,88888888888889,888888888888889,8888888888888889,88888888888888889,888888888888888889,8888888888888888889,88888888888888888889,888888888888888888889,8888888888888888888889,88888888888888888888889,888888888888888888888889,8888888888888888888888889,88888888888888888888888889,888888888888888888888888889,8888888888888888888888888889,88888888888888888888888888889,888888888888888888888888888889,8888888888888888888888888888889,88888888888888888888888888888889,888888888888888888888888888888889,8888888888888888888888888888888889,88888888888888888888888888888888889,888888888888888888888888888888888889 mov $1,10 pow $1,$0 div $1,9 mul $1,8 add $1,1 mov $0,$1
Engines/Graphics/Classes/asm.asm
duhone/HeadstoneHarry
1
88053
TTL C:\Documents and Settings\administrator.HPT-OFFICE\Desktop\HPT Graphics\asm.asm EXPORT HPTMemCpyFastSARM EXPORT HPTMemCpyFastXSCALE EXPORT PageFlip EXPORT HPTPartialBlt EXPORT HPTPartialBltH EXPORT HPTPartialBltV EXPORT HPTPartialBltHV EXPORT HPTPartialBltO EXPORT HPTPartialBltHO EXPORT HPTPartialBltVO EXPORT HPTPartialBltHVO EXPORT HPTBlt16x16O EXPORT MemCpyFastLandscape AREA .code,CODE HPTMemCpyFastSARM PROC stmdb sp!,{r4-r11,r14} cmp r2,#0 beq SKIPLOOP BEGINLOOP2 mov r4,r1 ldrsb r5,[r4],#32 ldrsb r5,[r4],#32 ldrsb r5,[r4],#32 ldrsb r5,[r4],#32 ldrsb r5,[r4],#32 ldrsb r5,[r4],#32 ldrsb r5,[r4],#32 ldrsb r5,[r4],#32 ldrsb r5,[r4],#32 ldrsb r5,[r4],#32 ldrsb r5,[r4],#32 ldrsb r5,[r4],#32 ldrsb r5,[r4],#32 ldrsb r5,[r4],#32 ldrsb r5,[r4],#32 ldrsb r5,[r4],#32 mov r3,#16 BEGINLOOP ldmia r1!,{r4-r11} ;stmia r0!,{r4-r11} subs r3,r3,#1 ;ldmia r1!,{r4-r11} stmia r0!,{r4-r11} bne BEGINLOOP subs r2,r2,#1 bne BEGINLOOP2 SKIPLOOP ldmia sp!,{r4-r11,r15} endp HPTMemCpyFastXSCALE PROC stmdb sp!,{r4-r11,r14} pld [r1] pld [r1,#32] pld [r1,#64] ;pld [r1,#96] cmp r2,#0 beq SKIPLOOP4 BEGINLOOP4 pld [r1,#96] ;ldmia r1!,{r4-r11} ;stmia r0!,{r4-r11} ldr r4,[r1] , #4 ldr r5,[r1] , #4 ldr r6,[r1] , #4 ldr r7,[r1] , #4 str r4,[r0] , #4 str r5,[r0] , #4 str r6,[r0] , #4 str r7,[r0] , #4 ldr r8,[r1] , #4 ldr r9,[r1] , #4 ldr r10,[r1] , #4 ldr r11,[r1] , #4 str r8,[r0] , #4 str r9,[r0] , #4 str r10,[r0] , #4 str r11,[r0] , #4 subs r2,r2,#1 pld [r1,#96] ;ldmia r1!,{r4-r11} ;stmia r0!,{r4-r11} ldr r4,[r1] , #4 ldr r5,[r1] , #4 ldr r6,[r1] , #4 ldr r7,[r1] , #4 str r4,[r0] , #4 str r5,[r0] , #4 str r6,[r0] , #4 str r7,[r0] , #4 ldr r8,[r1] , #4 ldr r9,[r1] , #4 ldr r10,[r1] , #4 ldr r11,[r1] , #4 str r8,[r0] , #4 str r9,[r0] , #4 str r10,[r0] , #4 str r11,[r0] , #4 bne BEGINLOOP4 SKIPLOOP4 ldmia sp!,{r4-r11,r15} endp PageFlip PROC stmdb sp!,{r4-r9,r14} pld [r1] pld [r1,#32] pld [r1,#64] ;pld [r1,#96] mov r8,#320 BEGINLOOPPFY mov r9,#15 BEGINLOOPPFX pld [r1,#96] ldr r4,[r1] , #4 ldr r5,[r1] , #4 ldr r6,[r1] , #4 ldr r7,[r1] , #4 str r4,[r0] , #4 str r5,[r0] , #4 str r6,[r0] , #4 str r7,[r0] , #4 subs r9,r9,#1 ldr r4,[r1] , #4 ldr r5,[r1] , #4 ldr r6,[r1] , #4 ldr r7,[r1] , #4 str r4,[r0] , #4 str r5,[r0] , #4 str r6,[r0] , #4 str r7,[r0] , #4 bne BEGINLOOPPFX subs r8,r8,#1 add r1,r1,r2 bne BEGINLOOPPFY ldmia sp!,{r4-r9,r15} endp HPTPartialBlt PROC ;r0 destination ;r1 source ;r2 x size ;r3 y size ;r4 color ;r5 ystep ;r6 current x size for current line ;r7 current pixel ;r8 amount to get to next line in back buffer ;r9 prefetch distance mov r12,sp stmdb sp!,{r4-r9,r14} ldmia r12!,{r4,r5} pld [r1] mov r2,r2, lsl #1 mov r5,r5, lsl #1 rsb r8,r2,#480 mov r9,r5 sub r5,r5,r2 BEGINY mov r6,r2 pld [r1,r9] BEGINX ldrh r7,[r1] , #2 cmp r7,r4 strneh r7,[r0] subs r6,r6,#2 add r0,r0,#2 bne BEGINX subs r3,r3,#1 add r0,r0,r8 add r1,r1,r5 bne BEGINY ldmia sp!,{r4-r9,r15} endp HPTPartialBltH PROC ;r0 destination ;r1 source ;r2 x size ;r3 y size ;r4 color ;r5 ystep ;r6 current x size for current line ;r7 current pixel ;r8 amount to get to next line in back buffer ;r9 prefetch distance mov r12,sp stmdb sp!,{r4-r9,r14} ldmia r12!,{r4,r5} pld [r1] ;pld [r1,#32] mov r2,r2, lsl #1 mov r5,r5, lsl #1 rsb r8,r2,#480 mov r9,r5 sub r9,r9,r2 add r5,r5,r2 BEGINYH mov r6,r2 pld [r1,r9] BEGINXH ldrh r7,[r1], #-2 cmp r7,r4 strneh r7,[r0] subs r6,r6,#2 add r0,r0,#2 ;sub r1,r1,#2 bne BEGINXH subs r3,r3,#1 add r0,r0,r8 add r1,r1,r5 bne BEGINYH ldmia sp!,{r4-r9,r15} endp HPTPartialBltV PROC ;r0 destination ;r1 source ;r2 x size ;r3 y size ;r4 color ;r5 ystep ;r6 current x size for current line ;r7 current pixel ;r8 amount to get to next line in back buffer ;r9 prefetch distance mov r12,sp stmdb sp!,{r4-r9,r14} ldmia r12!,{r4,r5} pld [r1] mov r2,r2, lsl #1 mov r5,r5, lsl #1 rsb r8,r2,#480 mov r9,r5 add r5,r5,r2 BEGINYV mov r6,r2 pld [r1,-r9] BEGINXV ldrh r7,[r1] , #2 cmp r7,r4 strneh r7,[r0] subs r6,r6,#2 add r0,r0,#2 bne BEGINXV subs r3,r3,#1 add r0,r0,r8 sub r1,r1,r5 bne BEGINYV ldmia sp!,{r4-r9,r15} endp HPTPartialBltHV PROC ;r0 destination ;r1 source ;r2 x size ;r3 y size ;r4 color ;r5 ystep ;r6 current x size for current line ;r7 current pixel ;r8 amount to get to next line in back buffer ;r9 prefetch distance mov r12,sp stmdb sp!,{r4-r9,r14} ldmia r12!,{r4,r5} pld [r1] mov r2,r2, lsl #1 mov r5,r5, lsl #1 rsb r8,r2,#480 add r9,r5,r2 sub r5,r5,r2 BEGINYHV mov r6,r2 pld [r1,-r9] BEGINXHV ldrh r7,[r1] , #-2 cmp r7,r4 strneh r7,[r0] subs r6,r6,#2 add r0,r0,#2 bne BEGINXHV subs r3,r3,#1 add r0,r0,r8 sub r1,r1,r5 bne BEGINYHV ldmia sp!,{r4-r9,r15} endp HPTPartialBltO PROC ;r0 destination ;r1 source ;r2 x size ;r3 y size ;r4 ystep ;r6 current x size for current line ;r7 current pixel ;r8 amount to get to next line in back buffer ;r9 prefetch distance mov r12,sp stmdb sp!,{r4-r9,r14} ldmia r12!,{r4,r5} pld [r1] mov r2,r2, lsl #1 mov r4,r4, lsl #1 rsb r8,r2,#480 mov r9,r4 sub r4,r4,r2 BEGINYO mov r6,r2 pld [r1,r9] BEGINXO ldrh r7,[r1] , #2 subs r6,r6,#2 ;cmp r7,r4 strh r7,[r0] add r0,r0,#2 bne BEGINXO subs r3,r3,#1 add r0,r0,r8 add r1,r1,r4 bne BEGINYO ldmia sp!,{r4-r9,r15} endp HPTPartialBltHO PROC ;r0 destination ;r1 source ;r2 x size ;r3 y size ;r4 ystep ;r6 current x size for current line ;r7 current pixel ;r8 amount to get to next line in back buffer ;r9 prefetch distance mov r12,sp stmdb sp!,{r4-r9,r14} ldmia r12!,{r4} pld [r1] mov r2,r2, lsl #1 mov r4,r4, lsl #1 rsb r8,r2,#480 sub r9,r4,r2 add r4,r4,r2 BEGINYHO mov r6,r2 pld [r1,r9] BEGINXHO ldrh r7,[r1] , #-2 subs r6,r6,#2 strh r7,[r0] add r0,r0,#2 bne BEGINXHO subs r3,r3,#1 add r0,r0,r8 add r1,r1,r4 bne BEGINYHO ldmia sp!,{r4-r9,r15} endp HPTPartialBltVO PROC ;r0 destination ;r1 source ;r2 x size ;r3 y size ;r4 ystep ;r6 current x size for current line ;r7 current pixel ;r8 amount to get to next line in back buffer ;r9 prefetch distance mov r12,sp stmdb sp!,{r4-r9,r14} ldmia r12!,{r4} pld [r1] mov r2,r2, lsl #1 mov r4,r4, lsl #1 rsb r8,r2,#480 mov r9,r4 add r4,r4,r2 BLITOBEGINYVO mov r6,r2 pld [r1,-r9] BLITOBEGINXVO ldrh r7,[r1] , #2 subs r6,r6,#2 strh r7,[r0] add r0,r0,#2 bne BLITOBEGINXVO subs r3,r3,#1 add r0,r0,r8 sub r1,r1,r4 bne BLITOBEGINYVO ldmia sp!,{r4-r9,r15} endp HPTPartialBltHVO PROC ;r0 destination ;r1 source ;r2 x size ;r3 y size ;r4 ystep ;r6 current x size for current line ;r7 current pixel ;r8 amount to get to next line in back buffer ;r9 prefetch distance mov r12,sp stmdb sp!,{r4-r9,r14} ldmia r12!,{r4} pld [r1] mov r2,r2, lsl #1 mov r4,r4, lsl #1 rsb r8,r2,#480 add r9,r4,r2 sub r4,r4,r2 BLITOBEGINYHVO mov r6,r2 pld [r1,-r9] BLITOBEGINXHVO ldrh r7,[r1] , #-2 subs r6,r6,#2 strh r7,[r0] add r0,r0,#2 bne BLITOBEGINXHVO subs r3,r3,#1 add r0,r0,r8 sub r1,r1,r4 bne BLITOBEGINYHVO ldmia sp!,{r4-r9,r15} endp HPTBlt16x16O PROC ;r0 destination ;r1 source ;r2 ystep ;r3 y size ;r4 color ;r5 ystep ;r6 current x size for current line ;r7 current pixel ;r8 amount to get to next line in back buffer ;r9 prefetch distance stmdb sp!,{r4-r11,r14} pld [r1] mov r3,#16 mov r2,r2 LSL #1 BEGIN16x16O pld [r1,#32] ldrh r4,[r1] ldrh r5,[r1,#2] strh r4,[r0] ldrh r6,[r1,#4] strh r5,[r0,#2] ldrh r7,[r1,#6] strh r6,[r0,#4] ldrh r8,[r1,#8] strh r7,[r0,#6] ldrh r9,[r1,#10] strh r8,[r0,#8] ldrh r10,[r1,#12] strh r9,[r0,#10] ldrh r11,[r1,#14] strh r10,[r0,#12] strh r11,[r0,#14] ldrh r4,[r1,#16] ldrh r5,[r1,#18] strh r4,[r0,#16] ldrh r6,[r1,#20] strh r5,[r0,#18] ldrh r7,[r1,#22] strh r6,[r0,#20] ldrh r8,[r1,#24] subs r3,r3,#1 strh r7,[r0,#22] ldrh r9,[r1,#26] strh r8,[r0,#24] ldrh r10,[r1,#28] strh r9,[r0,#26] ldrh r11,[r1,#30] strh r10,[r0,#28] strh r11,[r0,#30] add r1,r1,r2 add r0,r0,#480 bne BEGIN16x16O ldmia sp!,{r4-r11,r15} endp MemCpyFastLandscape PROC ;r0 destination ;r1 source ;r2 current destination ;r3 y count ;r4 x count ;r5-r8 registers to hold data ;r9-r11 registers to hold output offsets stmdb sp!,{r4-r11,r14} mov r3,#0 ;sub r3,r3,#2 mov r4,#60 ;mov r9,#640 add r9,r2,#640 mov r10,r9 LSL #1 add r11,r9,r10 ;mov r2,r0 BEGINLANDSCAPEY sub r2,r0,r3 add r3,r3,#2 pld [r1,#64] BEGINLANDSCAPEX ldrh r5,[r1] ldrh r6,[r1,#2] ldrh r7,[r1,#4] ldrh r8,[r1,#6] add r1,r1,#8 subs r4,r4,#1 strh r5,[r2] strh r6,[r2,r9] strh r7,[r2,r10] strh r8,[r2,r11] add r2,r2,r11 add r2,r2,r9 bne BEGINLANDSCAPEX cmp r3,#640 mov r4,#60 bne BEGINLANDSCAPEY ldmia sp!,{r4-r11,r15} endp END
programs/oeis/063/A063077.asm
neoneye/loda
22
10372
<gh_stars>10-100 ; A063077: a(n) = phi(n^2 + 1) - 2n. ; -1,0,-2,8,2,24,6,32,22,80,38,88,38,168,82,224,78,204,142,360,150,340,162,528,262,624,234,568,362,772,370,736,366,988,542,1224,470,1012,682,1520,730,1324,634,1688,922,1924,674,1744,1102,2300,1198,2056,1014,2808,1298,3024,1086,2572,1622,3192,1738,2948,1458,3712,1982,4224,1658,3464,2242,4228,2378,3696,1774,5328,2538,5464,2214,4708,2962,6032,2910,5196,2330,6888,3442,6644,2850,6016,3534,7920,3818,6584,3254,8648,4322,8304,3566,6972,4170,9592 mov $2,$0 add $0,1 pow $0,2 mov $3,$0 seq $0,10 ; Euler totient function phi(n): count numbers <= n and prime to n. add $0,1 sub $0,$3 sub $0,2 mov $4,$2 mul $4,$2 add $0,$4
oeis/337/A337370.asm
neoneye/loda-programs
11
165268
<reponame>neoneye/loda-programs ; A337370: Expansion of sqrt(2 / ( (1-12*x+4*x^2) * (1-2*x+sqrt(1-12*x+4*x^2)) )). ; Submitted by <NAME>(w2) ; 1,8,74,736,7606,80464,864772,9400192,103061158,1137528688,12623082284,140697113792,1574005263676,17663830073504,198760191043784,2241743315230208,25335473017856774,286850379192127664,3252960763923781276,36942512756224955456,420084161646913792724,4782503490794450753632,54505137267988973013944,621788564349189460134656,7099636916643066889841756,81130995872206244439300704,927827877334409907773861432,10618267701948157674739198336,121597278936838364688875096504,1393344474160366747505449150784 mov $1,1 mov $2,1 mov $3,$0 add $3,1 add $3,$0 mov $4,1 lpb $3 mul $1,$3 sub $3,1 mul $1,$3 sub $3,1 add $5,$4 div $1,$5 mul $2,2 add $2,$1 add $4,2 lpe mov $0,$2
test/Fail/UselessPrivateImportAs.agda
redfish64/autonomic-agda
3
14680
module UselessPrivateImportAs where private import Common.Prelude as P
uw2/keyAndMouseBindings.asm
JohnGlassmyer/UltimaHacks
68
21132
%include "../UltimaPatcher.asm" %include "include/uw2.asm" %include "include/uw2-eop.asm" %include "include/additionalCharacterCodes.asm" %include "include/bindKeyOrMouse.asm" defineAddress 143, 0x01AD, bindsBegin defineAddress 143, 0x071F, bindsEnd %include "../uw1/keyAndMouseBindings.asm"
programs/oeis/255/A255185.asm
karttu/loda
1
246025
; A255185: 26-gonal numbers: a(n) = n*(12*n-11). ; 0,1,26,75,148,245,366,511,680,873,1090,1331,1596,1885,2198,2535,2896,3281,3690,4123,4580,5061,5566,6095,6648,7225,7826,8451,9100,9773,10470,11191,11936,12705,13498,14315,15156,16021,16910,17823,18760,19721,20706,21715,22748,23805,24886,25991,27120,28273,29450,30651,31876,33125,34398,35695,37016,38361,39730,41123,42540,43981,45446,46935,48448,49985,51546,53131,54740,56373,58030,59711,61416,63145,64898,66675,68476,70301,72150,74023,75920,77841,79786,81755,83748,85765,87806,89871,91960,94073,96210,98371,100556,102765,104998,107255,109536,111841,114170,116523,118900,121301,123726,126175,128648,131145,133666,136211,138780,141373,143990,146631,149296,151985,154698,157435,160196,162981,165790,168623,171480,174361,177266,180195,183148,186125,189126,192151,195200,198273,201370,204491,207636,210805,213998,217215,220456,223721,227010,230323,233660,237021,240406,243815,247248,250705,254186,257691,261220,264773,268350,271951,275576,279225,282898,286595,290316,294061,297830,301623,305440,309281,313146,317035,320948,324885,328846,332831,336840,340873,344930,349011,353116,357245,361398,365575,369776,374001,378250,382523,386820,391141,395486,399855,404248,408665,413106,417571,422060,426573,431110,435671,440256,444865,449498,454155,458836,463541,468270,473023,477800,482601,487426,492275,497148,502045,506966,511911,516880,521873,526890,531931,536996,542085,547198,552335,557496,562681,567890,573123,578380,583661,588966,594295,599648,605025,610426,615851,621300,626773,632270,637791,643336,648905,654498,660115,665756,671421,677110,682823,688560,694321,700106,705915,711748,717605,723486,729391,735320,741273 mov $1,$0 bin $0,2 mul $0,24 add $1,$0
alloy4fun_models/trashltl/models/3/rBzzeza7rEDD52hjx.als
Kaixi26/org.alloytools.alloy
0
1786
open main pred idrBzzeza7rEDD52hjx_prop4 { some f:File | eventually f in Trash } pred __repair { idrBzzeza7rEDD52hjx_prop4 } check __repair { idrBzzeza7rEDD52hjx_prop4 <=> prop4o }
experiments/test-suite/mutation-based/10/5/fullTree.als
kaiyuanw/AlloyFLCore
1
590
<gh_stars>1-10 pred test29 { some disj Node0: Node { Node = Node0 no left no right makeFull[] } } run test29 for 3 expect 1 pred test3 { no Node no left no right } run test3 for 3 expect 1 pred test39 { some disj Node0, Node1: Node { Node = Node0 + Node1 left = Node1->Node1 right = Node1->Node0 + Node1->Node1 } } run test39 for 3 expect 0 pred test7 { some disj Node0, Node1: Node { Node = Node0 + Node1 left = Node1->Node1 no right } } run test7 for 3 expect 1
Transynther/x86/_processed/AVXALIGN/_zr_/i7-7700_9_0xca.log_21829_256.asm
ljhsiun2/medusa
9
103594
<reponame>ljhsiun2/medusa .global s_prepare_buffers s_prepare_buffers: push %r11 push %r12 push %r8 push %rbp push %rcx push %rdi push %rdx push %rsi lea addresses_WC_ht+0x19415, %rsi lea addresses_normal_ht+0x12a15, %rdi nop nop nop nop inc %rbp mov $3, %rcx rep movsq nop nop cmp %r11, %r11 lea addresses_normal_ht+0x6a15, %rsi lea addresses_A_ht+0x9ca1, %rdi nop nop nop dec %r8 mov $8, %rcx rep movsl nop nop nop nop sub %rsi, %rsi lea addresses_A_ht+0x15315, %rsi lea addresses_UC_ht+0x1ba15, %rdi and $49942, %rdx mov $101, %rcx rep movsq nop nop nop nop nop add %rsi, %rsi lea addresses_normal_ht+0x1aad5, %r8 nop nop nop xor %rsi, %rsi movb $0x61, (%r8) nop add %rdx, %rdx lea addresses_A_ht+0x33c5, %r8 nop nop nop nop nop inc %rsi and $0xffffffffffffffc0, %r8 movntdqa (%r8), %xmm6 vpextrq $1, %xmm6, %r11 nop nop inc %rcx lea addresses_A_ht+0x18295, %rdx sub $10873, %rsi movw $0x6162, (%rdx) dec %rsi lea addresses_normal_ht+0x77a5, %rsi lea addresses_WT_ht+0xda15, %rdi nop nop and $42318, %r12 mov $3, %rcx rep movsl nop nop nop nop nop xor $28676, %rdi lea addresses_WC_ht+0x12f35, %rbp nop nop nop nop nop and %r12, %r12 movups (%rbp), %xmm7 vpextrq $1, %xmm7, %rcx sub %rdi, %rdi lea addresses_normal_ht+0x5435, %r12 and $62477, %r11 movups (%r12), %xmm4 vpextrq $0, %xmm4, %rsi nop nop inc %rcx lea addresses_WT_ht+0x11195, %rsi lea addresses_normal_ht+0x14015, %rdi inc %rbp mov $65, %rcx rep movsb nop nop nop add %r12, %r12 lea addresses_UC_ht+0x14a15, %rcx add %rbp, %rbp vmovups (%rcx), %ymm1 vextracti128 $0, %ymm1, %xmm1 vpextrq $1, %xmm1, %rdx nop nop cmp $63093, %r11 lea addresses_D_ht+0x10a15, %rcx nop nop nop nop nop add $49767, %rbp movw $0x6162, (%rcx) nop nop nop nop and %rsi, %rsi lea addresses_D_ht+0x5fb5, %rdx nop xor %r12, %r12 mov (%rdx), %r11w nop nop sub $16050, %r12 pop %rsi pop %rdx pop %rdi pop %rcx pop %rbp pop %r8 pop %r12 pop %r11 ret .global s_faulty_load s_faulty_load: push %r10 push %r11 push %r8 push %rbp push %rbx push %rdi push %rdx // Store lea addresses_UC+0x1fa5, %rdi nop nop nop nop cmp %r10, %r10 mov $0x5152535455565758, %rdx movq %rdx, (%rdi) nop sub $26973, %r11 // Faulty Load lea addresses_WC+0xba15, %rbx clflush (%rbx) sub $27466, %r8 movb (%rbx), %dl lea oracles, %rbp and $0xff, %rdx shlq $12, %rdx mov (%rbp,%rdx,1), %rdx pop %rdx pop %rdi pop %rbx pop %rbp pop %r8 pop %r11 pop %r10 ret /* <gen_faulty_load> [REF] {'src': {'congruent': 0, 'AVXalign': False, 'same': False, 'size': 1, 'NT': False, 'type': 'addresses_WC'}, 'OP': 'LOAD'} {'OP': 'STOR', 'dst': {'congruent': 3, 'AVXalign': True, 'same': False, 'size': 8, 'NT': False, 'type': 'addresses_UC'}} [Faulty Load] {'src': {'congruent': 0, 'AVXalign': False, 'same': True, 'size': 1, 'NT': True, 'type': 'addresses_WC'}, 'OP': 'LOAD'} <gen_prepare_buffer> {'src': {'congruent': 8, 'same': False, 'type': 'addresses_WC_ht'}, 'OP': 'REPM', 'dst': {'congruent': 9, 'same': False, 'type': 'addresses_normal_ht'}} {'src': {'congruent': 10, 'same': False, 'type': 'addresses_normal_ht'}, 'OP': 'REPM', 'dst': {'congruent': 2, 'same': False, 'type': 'addresses_A_ht'}} {'src': {'congruent': 8, 'same': False, 'type': 'addresses_A_ht'}, 'OP': 'REPM', 'dst': {'congruent': 11, 'same': False, 'type': 'addresses_UC_ht'}} {'OP': 'STOR', 'dst': {'congruent': 6, 'AVXalign': True, 'same': False, 'size': 1, 'NT': True, 'type': 'addresses_normal_ht'}} {'src': {'congruent': 3, 'AVXalign': False, 'same': False, 'size': 16, 'NT': True, 'type': 'addresses_A_ht'}, 'OP': 'LOAD'} {'OP': 'STOR', 'dst': {'congruent': 6, 'AVXalign': False, 'same': False, 'size': 2, 'NT': False, 'type': 'addresses_A_ht'}} {'src': {'congruent': 3, 'same': False, 'type': 'addresses_normal_ht'}, 'OP': 'REPM', 'dst': {'congruent': 10, 'same': False, 'type': 'addresses_WT_ht'}} {'src': {'congruent': 2, 'AVXalign': False, 'same': False, 'size': 16, 'NT': False, 'type': 'addresses_WC_ht'}, 'OP': 'LOAD'} {'src': {'congruent': 3, 'AVXalign': False, 'same': False, 'size': 16, 'NT': False, 'type': 'addresses_normal_ht'}, 'OP': 'LOAD'} {'src': {'congruent': 7, 'same': False, 'type': 'addresses_WT_ht'}, 'OP': 'REPM', 'dst': {'congruent': 8, 'same': False, 'type': 'addresses_normal_ht'}} {'src': {'congruent': 10, 'AVXalign': False, 'same': False, 'size': 32, 'NT': False, 'type': 'addresses_UC_ht'}, 'OP': 'LOAD'} {'OP': 'STOR', 'dst': {'congruent': 8, 'AVXalign': False, 'same': False, 'size': 2, 'NT': False, 'type': 'addresses_D_ht'}} {'src': {'congruent': 4, 'AVXalign': False, 'same': False, 'size': 2, 'NT': False, 'type': 'addresses_D_ht'}, 'OP': 'LOAD'} {'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 */
source/textengine.asm
tragicmuffin/untitledarpg-nes
0
87898
;; Text Engine ;; Renders tiles from a stream onto background name table. ;; Notes: ; entrance for rendering text, text_draw ; entrances for rendering custom images and layouts ; ; text will be read from a ram location(?) in a stream, terminated with $FF ; opcodes for text starting position and newline (newline = add $20) ; $FD will indicate the start of an (optional) attribute table stream ; we may need to clone all text onto all nametables to handle scrolling ;;; Text stream format ;;; ; Text stream will always start with the starting location for the text, followed by an opcode. ; If the opcode is $F0, the next byte will give another number of bytes to read. ; After we finish reading a string of text bytes, another opcode will follow. ; Read bytes -> Opcode(s) -> ... cycle will continue until $FF opcode is reached. ; -- Opcodes -- ; $FF: End of stream ; $FE: New line ; $F0: Read a text string (followed by number of bytes to read) ; Store text engine variables starting at $0400 .rsset $0400 ;; Text stream txstream_startaddr_LO .rs 1 ; low byte of text starting position txstream_startaddr_HI .rs 1 ; high byte of text starting position ;;; Entrances (text engine accessor functions) ;;; ; text_draw reads a text stream and renders the text on screen. ; input A: index of text stream text_draw: ASL A ; multiply by 2 to index into a table of pointers (words) TAY LDA text_streams, y STA text_ptr ; initialize ptr variables (on zero-page) with start of text stream LDA text_streams+1, y STA text_ptr+1 JSR te_read_stream ; process text stream at txstream_ptr .done: RTS ; go back to main program ;;; Internal Subroutines ;;; ; te_read_stream reads through the text stream, getting tiles and handling opcodes ; It is assumed that text will not wrap, otherwise we will have possibly unexpected behavior. te_read_stream: LDY #$00 ; Read first two bytes to get drawing location LDA [text_ptr], y STA txstream_startaddr_HI JSR .update_pointer LDA [text_ptr], y STA txstream_startaddr_LO JSR .update_pointer JSR te_set_draw_location ; set PPU with initial drawing location .opcode: LDA [text_ptr], y ; check next opcode JSR .update_pointer .opcode_endofstream: CMP #$FF ; end of stream BNE .opcode_newline JMP .end .opcode_newline: CMP #$FE ; new line BNE .opcode_readtext JMP .newline .opcode_readtext: CMP #$F0 ; set length of text string BNE .opcode_undefined JMP .textstart .opcode_undefined: JSR Debug_Probe JMP .end ; unrecognized opcode .textstart ; Read next byte to get length of text string, store in X LDA [text_ptr], y TAX JSR .update_pointer .textloop: LDA [text_ptr], y ; get next tile number in text string STA $2007 ; write tile number into name table JSR .update_pointer DEX BNE .textloop ; continue reading bytes until X reaches 0 JMP .opcode ; text string is finished, read next opcode .newline: LDA txstream_startaddr_LO CLC ADC #$20 ; add $0020 to address to go to next row of name table BCC .newline_nowrap ; if we didn't wrap past $00, just store new LO byte INC txstream_startaddr_HI ; if we did wrap past $00, increment HI byte as well .newline_nowrap: STA txstream_startaddr_LO JSR te_set_draw_location ; set PPU with next drawing location JMP .opcode .end: RTS ; Careful: JSR here only! .update_pointer: INY ; go to next byte in stream BNE .update_pointer_done ; if Y (LO byte) didn't wrap, we're done INC text_ptr+1 ; if LO byte wrapped, increment HI byte .update_pointer_done: RTS ; te_set_draw_location sets the PPU address of the starting tile for subsequent text bytes te_set_draw_location: LDA $2002 ; reset PPU write flipflop LDA txstream_startaddr_HI STA $2006 ; write MSB of stream address LDA txstream_startaddr_LO STA $2006 ; write LSB of stream address RTS ;;; Tables and Includes ;;; ;; Text streams .include "tx_text_streams.i" ;; Text streams (from included file) text_streams: .dw txhead_Test0 .dw txhead_Test1 .dw txhead_Test2 .dw txhead_Test3 .dw txhead_TestText_NT0 .dw txhead_TestText_NT1 ;; Text stream aliases tx_Test0 = $00 tx_Test1 = $01 tx_Test2 = $02 tx_Test3 = $03 tx_TestText_NT0 = $04 tx_TestText_NT1 = $05
mc-sema/validator/x86/tests/ADD8rr.asm
randolphwong/mcsema
2
94353
<filename>mc-sema/validator/x86/tests/ADD8rr.asm<gh_stars>1-10 BITS 32 ;TEST_FILE_META_BEGIN ;TEST_TYPE=TEST_F ;TEST_IGNOREFLAGS= ;TEST_FILE_META_END ; ADD8rr mov ch, 0x2 mov dh, 0x3 ;TEST_BEGIN_RECORDING add ch, dh ;TEST_END_RECORDING
examples/src/examples-ast.ads
TNO/Rejuvenation-Ada
1
26421
<filename>examples/src/examples-ast.ads package Examples.Ast is procedure Demo (Project_Name : String; File_Name : String); end Examples.Ast;
oeis/249/A249457.asm
neoneye/loda-programs
11
5549
; A249457: The numerator of curvatures of touching circles inscribed in a special way in the larger segment of a unit circle divided by a chord of length sqrt(84)5. ; Submitted by <NAME> ; 10,100,2890,96100,3237610,109202500,3683712490,124263300100,4191798484810,141402777864100,4769968258260490,160906295771812900,5427884341892493610,183099910962324064900,6176546013641762558890,208354665265158340802500 mov $1,3 pow $1,$0 seq $0,249862 ; A special solution of X(n)^2 - 280*Y(n)^2 = 3^(2*n), n >= 0; here the X member. add $0,$1 mul $0,5
module-06/src/oedipus.adb
morellam-dev/cs-4308-concepts-of-programming-languages
0
23708
-- FILE: oedipus.adb -- LICENSE: MIT © 2021 <NAME> package body Oedipus is function Create_Complex (A, B : in Float) return Complex is C : Complex; begin C.Real := A; C.Imaginary := B; return C; end Create_Complex; function Get_Real (C : in Complex) return Float is begin return C.Real; end Get_Real; function Get_Imaginary (C : in Complex) return Float is begin return C.Imaginary; end Get_Imaginary; end Oedipus;
oeis/225/A225203.asm
neoneye/loda-programs
11
22662
; A225203: Table T(n,k) composed of rows equal to: n * (the characteristic function of the multiples of (n+1)), read by downwards antidiagonals. ; Submitted by <NAME>(s1) ; 1,0,2,1,0,3,0,0,0,4,1,2,0,0,5,0,0,0,0,0,6,1,0,3,0,0,0,7,0,2,0,0,0,0,0,8,1,0,0,4,0,0,0,0,9,0,0,0,0,0,0,0,0,0,10 lpb $0 add $2,1 sub $0,$2 lpe add $0,2 lpb $0 add $2,2 gcd $0,$2 mov $2,3 lpe sub $0,1
parsing-course/02/Descending/Postfix.g4
ChShersh/university-courses
0
4663
grammar Postfix; postfix : NUM aux | EPS ; aux : NUM aux sign aux | EPS ; sign : SIGN ; NUM : '-'?[0-9]+ ; SIGN : '-' | '+' | '*' ; WS : [ \t\r\n]+ -> skip ; EPS : '' ;
unused/FileIOEffect.agda
Zalastax/thesis
1
1957
module FileIOEffect where open import Effect import IO.Primitive as IO open import Data.String using (String) open import Data.Bool using (Bool ; if_then_else_ ; false ; true) open import Data.Unit using (⊤ ; tt) open import Category.Monad using (RawMonad) open import Level using (zero) open import Data.List using (List ; _∷_ ; []) open import Data.List.All using (All ; lookup ; _∷_ ; []) open import Data.List.Any using (here ; there) open import Relation.Binary.PropositionalEquality using (_≡_ ; refl) open import Membership-equality using (_∈_) open import Data.Product using (Σ ; _,_ ; _×_) data FileIOState : Set where opened closed : FileIOState data FileHandle : Set where FH : String → FileHandle data FileIOEff : Effect zero where `openFile : String → FileIOEff Bool ⊤ λ ok → if ok then FileHandle else ⊤ `closeFile : FileIOEff ⊤ FileHandle λ h → ⊤ -- Should we really use this now? FileIO : EFFECT zero FileIO = mkEff ⊤ FileIOEff IOMonad : RawMonad IO.IO IOMonad = record { return = IO.return ; _>>=_ = IO._>>=_ {zero} {zero}} myOpClose : ∀ {m} → String → EffM m ⊤ (FileIO ∷ []) λ _ → (FileIO ∷ []) myOpClose file = effect (here refl) (`openFile file) >>= λ { true → effect (here refl) `closeFile ; false → return tt} main : IO.IO ⊤ main = run IO.IO (record { return = IO.return ; _>>=_ = IO._>>=_ }) (myOpClose ".gitignore") myEnv where FileIOHandler : Handler IO.IO FileIOEff FileIOHandler v (`openFile x) k = k true (FH x) FileIOHandler (FH x) `closeFile k = k tt tt myEnv : Env IO.IO (FileIO ∷ []) myEnv = (FileIOHandler , tt) ∷ []
java/monasca-common-model/src/main/resources/monasca/common/model/alarm/AlarmExpression.g4
icclab/monasca-common
0
1473
<filename>java/monasca-common-model/src/main/resources/monasca/common/model/alarm/AlarmExpression.g4 /* * Copyright (c) 2014 Hewlett-Packard Development Company, L.P. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or * implied. * See the License for the specific language governing permissions and * limitations under the License. */ grammar AlarmExpression; start : expression EOF ; expression : compoundIdentifier relational_operator literal # relationalExprFwd | function relational_operator literal ('times' repeat)? # relationalExprFuncFwd | literal relational_operator compoundIdentifier # relationalExprBwd | literal relational_operator function ('times' repeat)? # relationalExprFuncBwd | expression and expression # andExpr | expression or expression # orExpr | '(' expression ')' # parenExpr ; function : functionType '(' compoundIdentifier (',' period)? ')' ; relational_operator : lt | lte | gt | gte | eq | neq | like | regexp ; lt : LT_S | LT ; lte : LTE | LTE_S ; gt : GT | GT_S ; gte : GTE | GTE_S ; eq : EQ | EQ_S ; neq : NEQ | NEQ_S ; like : LIKE ; regexp : REGEXP ; and : AND | AND_S ; or : OR | OR_S ; functionType : MIN | MAX | SUM | CNT | AVG | CONCAT ; primary : literal | compoundIdentifier ; compoundIdentifier : namespace ('{' (dimensionList)? '}')? ; namespace : txt ; dimensionList : dimension (',' dimension)* ; dimension : txt '=' txt ; keyword : LT | LTE | GT | GTE | EQ | NEQ | LIKE | REGEXP | AND | OR | MIN | MAX | SUM | CNT | AVG | CONCAT ; period : INTEGER ; literal : DECIMAL | INTEGER | STRING ; repeat : INTEGER ; txt : TXT | keyword | INTEGER | STRING ; LT : [lL][tT] ; LT_S : '<' ; LTE : [lL][tT][eE] ; LTE_S : '<=' ; GT : [gG][tT] ; GT_S : '>' ; GTE : [gG][tT][eE] ; GTE_S : '>=' ; EQ : [eE][qQ] ; EQ_S : '==' ; NEQ : [nN][eE][qQ] ; NEQ_S : '!=' ; LIKE : [lL][iI][kK][eE] ; REGEXP : [rR][eE][gG][eE][xX][pP] ; AND : [aA][nN][dD] ; AND_S : '&&' ; OR : [oO][rR] ; OR_S : '||' ; MIN : [mM][iI][nN] ; MAX : [mM][aA][xX] ; SUM : [sS][uU][mM] ; CNT : [cC][oO][uU][nN][tT] ; AVG : [aA][vV][gG] ; CONCAT : [cC][oO][nN][cC][aA][tT] ; INTEGER : DIGIT+ ; DECIMAL : '-'?[0-9]+('.'[0-9]+)? ; TXT : [//a-zA-Z_$/\\0-9]~('\''|';' | '}' | '{' | '=' | ','| '&' | ')' | '(' |' '| '"' )+ ; STRING : '"' .*? '"' ; fragment LETTER : '\u0041'..'\u005a' // A-Z | '\u0061'..'\u007a' // a-z ; fragment DIGIT : '\u0030'..'\u0039' // 0-9 ; fragment UNDERSCORE : '\u005f' // _ ; fragment DASH : '-' ; fragment PERIOD : '.' ; WS : [ \t\r\n]+ -> skip ;
tests/XSharp.Tests/ExpectedOutput/Test.asm
marcelocaetano/XSharp
168
163564
<filename>tests/XSharp.Tests/ExpectedOutput/Test.asm ; namespace DebugStub ; Temp Test Area ; //! nop nop ; AH = 0 Mov AH, 0x0 ; AX = 0 Mov AX, 0x0 ; EAX = 0 Mov EAX, 0x0 ; NOP NOP ; return Ret ; EAX = $FFFF Mov EAX, 0xFFFF ; EAX = $FFFFFFFF Mov EAX, 0xFFFFFFFF ; +All PushAD ; -All PopAD ; Modifies: AL, DX (ComReadAL) ; Returns: AL
data/pokemon/base_stats/hoenn/hariyama.asm
Dev727/ancientplatinum
0
87783
<reponame>Dev727/ancientplatinum<gh_stars>0 db 0 ; 297 DEX NO db 144, 120, 60, 50, 40, 60 ; hp atk def spd sat sdf db FIGHTING, FIGHTING ; type db 200 ; catch rate db 184 ; base exp db NO_ITEM, NO_ITEM ; items db GENDER_F25 ; gender ratio db 100 ; unknown 1 db 20 ; step cycles to hatch db 5 ; unknown 2 INCBIN "gfx/pokemon/hoenn/hariyama/front.dimensions" db 0, 0, 0, 0 ; padding db GROWTH_FLUCTUATING ; growth rate dn EGG_HUMANSHAPE, EGG_HUMANSHAPE ; egg groups ; tm/hm learnset tmhm ; end
third_party/antlr_grammars_v4/b/b.g4
mikhan808/rsyntaxtextarea-antlr4-extension
4
2983
<reponame>mikhan808/rsyntaxtextarea-antlr4-extension<gh_stars>1-10 /* BSD License Copyright (c) 2018, <NAME> All rights reserved. Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: 1. Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer. 2. Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. 3. Neither the name of Tom Everett nor the names of its contributors may be used to endorse or promote products derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. */ grammar b; program : definition* ; definition : (name constant? (ival (',' ival)*)* ';') | (name '(' (name (',' name)*)? ')' statement) ; ival : constant | name ; statement : externsmt | autosmt | (name ':' statement) | casestmt | blockstmt | ifstmt | whilestmt | switchstmt | gotostmt | returnstmt | expressionstmt | nullstmt ; nullstmt : ';' ; expressionstmt : rvalue ';' ; blockstmt : '{' statement* '}' ; returnstmt : 'return' ('(' rvalue ')')? ';' ; gotostmt : 'goto' rvalue ';' ; switchstmt : 'switch' rvalue statement ; whilestmt : 'while' '(' rvalue ')' statement ; ifstmt : 'if' '(' rvalue ')' statement ('else' statement)? ; casestmt : 'case' constant ':' statement ; externsmt : 'extrn' name (',' name)* ';' ; autosmt : 'auto' name constant? (',' name constant?)* ';' ; rvalue : expression | comparison | ternary | assignment ; ternary : expression '?' rvalue ':' rvalue ; comparison : expression binary rvalue ; assignment : name assign rvalue ; expression : ('(' rvalue ')') | name | constant | (incdec name) | (name incdec) | (unary rvalue) | ('&' name) | functioninvocation ; functioninvocation : name '(' functionparameters? ')' ; functionparameters : rvalue (',' rvalue)* ; assign : '=' binary? ; incdec : '++' | '--' ; unary : '-' | '!' ; binary : '|' | '&' | '==' | '!=' | '<' | '<=' | '>' | '>=' | '<<' | '>>' | '-' | '+' | '%' | '*' | '/' ; lvalue : name | ('*' rvalue) | (rvalue '[' rvalue ']') ; constant : INT | STRING1 | STRING2 ; name : NAME ; NAME : [a-zA-Z] [a-zA-Z0-9_]* ; INT : [0-9] + ; STRING1 : '"' ~ ["\r\n]* '"' ; STRING2 : '\'' ~ ['\r\n]* '\'' ; BLOCKCOMMENT : '/*' .*? '*/' -> skip ; WS : [ \t\r\n] -> skip ;
src/loop.asm
mckenney5/x86-intel-code-snips
0
15604
; Writes msg X times ; x86 32bit Linux kernel only SECTION .data ; initalized data msg: db "Hi",10,0 ; the mesg to display msg_len equ $ - msg ; msg's length SECTION .text ; the code global main ; main used so gcc can be linker ; can be changed to _start for ld main: push ebp ; prolog mov ebp, esp mov ecx, 10 ; loop for 10 times (i=10) L1: ; for(i=10; i > 0; i--) push ecx ; save the loop counter (int i) mov ecx, msg ; display hi mov edx, msg_len ; with len of 4 call write ; sys_call write(msg, len) pop ecx ; retreive loop counter (i) loop L1 ; loop ; end of loop call done ; exit write: ; write(msg, len) ; ecx, edx push ebp ; prolog mov ebp, esp mov eax, 4 ; sys_call write mov ebx, 1 ; stdout int 0x80 ; call kernel mov esp, ebp ; epilog pop ebp ret done: ; Revert stack pointer to the base ; Then tell the kernel that we are done mov esp, ebp pop ebp mov eax, 1 mov ebx, 0 int 0x80 ret
oeis/286/A286298.asm
neoneye/loda-programs
11
84888
<filename>oeis/286/A286298.asm ; A286298: a(0) = 0, a(1) = 1; thereafter, a(2n) = a(n) + 1 + (n mod 2), a(2n+1) = a(n) + 2 - (n mod 2). ; Submitted by <NAME> ; 0,1,3,2,4,5,4,3,5,6,7,6,5,6,5,4,6,7,8,7,8,9,8,7,6,7,8,7,6,7,6,5,7,8,9,8,9,10,9,8,9,10,11,10,9,10,9,8,7,8,9,8,9,10,9,8,7,8,9,8,7,8,7,6,8,9,10,9,10,11,10,9,10,11,12,11,10,11,10,9,10,11,12,11,12,13,12,11,10,11,12,11,10,11,10,9,8,9,10,9 lpb $0 add $1,$2 mov $2,$0 div $0,2 add $2,$0 mod $2,2 add $1,$2 add $1,2 lpe div $1,2 mov $0,$1
tests/covered/exampleTypeAbbreviations.agda
andrejtokarcik/agda-semantics
3
3011
module exampleTypeAbbreviations where postulate A : Set A2 : Set A2 = A -> A A3 : Set A3 = A2 -> A2 a2 : A2 a2 = \x -> x a3 : A3 a3 = \x -> x
src/asf-security-filters.ads
jquorning/ada-asf
12
10783
----------------------------------------------------------------------- -- security-filters -- Security filter -- Copyright (C) 2011, 2012, 2015, 2018 <NAME> -- Written by <NAME> (<EMAIL>) -- -- Licensed under the Apache License, Version 2.0 (the "License"); -- you may not use this file except in compliance with the License. -- You may obtain a copy of the License at -- -- http://www.apache.org/licenses/LICENSE-2.0 -- -- Unless required by applicable law or agreed to in writing, software -- distributed under the License is distributed on an "AS IS" BASIS, -- WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -- See the License for the specific language governing permissions and -- limitations under the License. ----------------------------------------------------------------------- with Servlet.Security.Filters; -- The <b>Security.Filters</b> package defines a servlet filter that can be activated -- on requests to authenticate users and verify they have the permission to view -- a page. package ASF.Security.Filters is SID_COOKIE : constant String := "SID"; AID_COOKIE : constant String := "AID"; subtype Auth_Filter is Servlet.Security.Filters.Auth_Filter; end ASF.Security.Filters;
src/Algebra.g4
myarichuk/antlr4-demo
0
5226
<reponame>myarichuk/antlr4-demo<gh_stars>0 grammar Algebra; //token definitions //fragment is a kind of a function fragment DIGIT: [0-9]; PLUS: '+'; MINUS: '-'; MULTIPLY: '*'; DIVIDE: '/'; POWER: '^'; WS: ' ' -> skip; //token definition for integer number. Recognizes number of any length INTEGER: DIGIT+; //token definition for floating point number FLOAT: DIGIT+ '.' DIGIT+; //parsing rules definitions //root expression to parse, this is the starting point of the parser root: expression EOF; //recusive rule to parse types of expressions we support expression: (INTEGER | FLOAT) #NumberExpression | '-' num = expression #NegativeNumberExpression | num = expression POWER pow = expression #PowerExpression | '(' expression ')' #ParenthesisExpression | //notice that we put handling of multiplication and division first and then addition and substraction //this is needed to establish operator precedence //In this way, for expression '2 + 3 * 5', first 3*5 will be evaluated and then 'result' + 2 left = expression op = (MULTIPLY | DIVIDE) right = expression #MultOrDivideExpression | left = expression op = (PLUS | MINUS) right = expression #PlusOrMinusExpression ;
Cubical/Algebra/CommAlgebra/Properties.agda
lpw25/cubical
0
8649
{-# OPTIONS --safe --experimental-lossy-unification #-} module Cubical.Algebra.CommAlgebra.Properties where open import Cubical.Foundations.Prelude open import Cubical.Foundations.Equiv open import Cubical.Foundations.HLevels open import Cubical.Foundations.Isomorphism open import Cubical.Foundations.Equiv.HalfAdjoint open import Cubical.Foundations.SIP open import Cubical.Data.Sigma open import Cubical.Reflection.StrictEquiv open import Cubical.Structures.Axioms open import Cubical.Algebra.Semigroup open import Cubical.Algebra.Monoid open import Cubical.Algebra.CommRing open import Cubical.Algebra.Ring open import Cubical.Algebra.Algebra open import Cubical.Algebra.CommAlgebra.Base private variable ℓ ℓ′ : Level -- An R-algebra is the same as a CommRing A with a CommRingHom φ : R → A module CommAlgChar (R : CommRing ℓ) where open Iso open IsRingHom open CommRingTheory CommRingWithHom : Type (ℓ-suc ℓ) CommRingWithHom = Σ[ A ∈ CommRing ℓ ] CommRingHom R A toCommAlg : CommRingWithHom → CommAlgebra R ℓ toCommAlg (A , φ , φIsHom) = ⟨ A ⟩ , ACommAlgStr where open CommRingStr (snd A) ACommAlgStr : CommAlgebraStr R ⟨ A ⟩ CommAlgebraStr.0a ACommAlgStr = 0r CommAlgebraStr.1a ACommAlgStr = 1r CommAlgebraStr._+_ ACommAlgStr = _+_ CommAlgebraStr._·_ ACommAlgStr = _·_ CommAlgebraStr.- ACommAlgStr = -_ CommAlgebraStr._⋆_ ACommAlgStr r a = (φ r) · a CommAlgebraStr.isCommAlgebra ACommAlgStr = makeIsCommAlgebra is-set +Assoc +Rid +Rinv +Comm ·Assoc ·Lid ·Ldist+ ·Comm (λ _ _ x → cong (λ y → y · x) (pres· φIsHom _ _) ∙ sym (·Assoc _ _ _)) (λ _ _ x → cong (λ y → y · x) (pres+ φIsHom _ _) ∙ ·Ldist+ _ _ _) (λ _ _ _ → ·Rdist+ _ _ _) (λ x → cong (λ y → y · x) (pres1 φIsHom) ∙ ·Lid x) (λ _ _ _ → sym (·Assoc _ _ _)) fromCommAlg : CommAlgebra R ℓ → CommRingWithHom fromCommAlg A = (CommAlgebra→CommRing A) , φ , φIsHom where open CommRingStr (snd R) renaming (_·_ to _·r_) hiding (·Lid) open CommAlgebraStr (snd A) open AlgebraTheory (CommRing→Ring R) (CommAlgebra→Algebra A) φ : ⟨ R ⟩ → ⟨ A ⟩ φ r = r ⋆ 1a φIsHom : IsRingHom (CommRing→Ring R .snd) φ (CommRing→Ring (CommAlgebra→CommRing A) .snd) φIsHom = makeIsRingHom (⋆-lid _) (λ _ _ → ⋆-ldist _ _ _) λ x y → cong (λ a → (x ·r y) ⋆ a) (sym (·Lid _)) ∙ ⋆Dist· _ _ _ _ CommRingWithHomRoundTrip : (Aφ : CommRingWithHom) → fromCommAlg (toCommAlg Aφ) ≡ Aφ CommRingWithHomRoundTrip (A , φ) = ΣPathP (APath , φPathP) where open CommRingStr -- note that the proofs of the axioms might differ! APath : fst (fromCommAlg (toCommAlg (A , φ))) ≡ A fst (APath i) = ⟨ A ⟩ 0r (snd (APath i)) = 0r (snd A) 1r (snd (APath i)) = 1r (snd A) _+_ (snd (APath i)) = _+_ (snd A) _·_ (snd (APath i)) = _·_ (snd A) -_ (snd (APath i)) = -_ (snd A) isCommRing (snd (APath i)) = isProp→PathP (λ i → isPropIsCommRing _ _ _ _ _ ) (isCommRing (snd (fst (fromCommAlg (toCommAlg (A , φ)))))) (isCommRing (snd A)) i -- this only works because fst (APath i) = fst A definitionally! φPathP : PathP (λ i → CommRingHom R (APath i)) (snd (fromCommAlg (toCommAlg (A , φ)))) φ φPathP = RingHomPathP _ _ _ _ _ _ λ i x → ·Rid (snd A) (fst φ x) i CommAlgRoundTrip : (A : CommAlgebra R ℓ) → toCommAlg (fromCommAlg A) ≡ A CommAlgRoundTrip A = ΣPathP (refl , AlgStrPathP) where open CommAlgebraStr ⦃...⦄ instance _ = snd A AlgStrPathP : PathP (λ i → CommAlgebraStr R ⟨ A ⟩) (snd (toCommAlg (fromCommAlg A))) (snd A) CommAlgebraStr.0a (AlgStrPathP i) = 0a CommAlgebraStr.1a (AlgStrPathP i) = 1a CommAlgebraStr._+_ (AlgStrPathP i) = _+_ CommAlgebraStr._·_ (AlgStrPathP i) = _·_ CommAlgebraStr.-_ (AlgStrPathP i) = -_ CommAlgebraStr._⋆_ (AlgStrPathP i) r x = (⋆-lassoc r 1a x ∙ cong (r ⋆_) (·Lid x)) i CommAlgebraStr.isCommAlgebra (AlgStrPathP i) = isProp→PathP (λ i → isPropIsCommAlgebra _ _ _ _ _ _ (CommAlgebraStr._⋆_ (AlgStrPathP i))) (CommAlgebraStr.isCommAlgebra (snd (toCommAlg (fromCommAlg A)))) isCommAlgebra i CommAlgIso : Iso (CommAlgebra R ℓ) CommRingWithHom fun CommAlgIso = fromCommAlg inv CommAlgIso = toCommAlg rightInv CommAlgIso = CommRingWithHomRoundTrip leftInv CommAlgIso = CommAlgRoundTrip
bb-runtimes/runtimes/ravenscar-full-stm32g474/gnat/a-stbubo.ads
JCGobbi/Nucleo-STM32G474RE
0
24864
<filename>bb-runtimes/runtimes/ravenscar-full-stm32g474/gnat/a-stbubo.ads ------------------------------------------------------------------------------ -- -- -- GNAT RUN-TIME COMPONENTS -- -- -- -- ADA.STRINGS.TEXT_BUFFERS.BOUNDED -- -- -- -- S p e c -- -- -- -- Copyright (C) 2020-2021, Free Software Foundation, Inc. -- -- -- -- This specification is derived from the Ada Reference Manual for use with -- -- GNAT. In accordance with the copyright of that document, you can freely -- -- copy and modify this specification, provided that if you redistribute a -- -- modified version, any changes that you have made are clearly indicated. -- -- -- ------------------------------------------------------------------------------ package Ada.Strings.Text_Buffers.Bounded with Pure is type Buffer_Type (Max_Characters : Text_Buffer_Count) is new Root_Buffer_Type with private with Default_Initial_Condition => not Text_Truncated (Buffer_Type); function Text_Truncated (Buffer : Buffer_Type) return Boolean; function Get (Buffer : in out Buffer_Type) return String with Post'Class => Get'Result'First = 1 and then Current_Indent (Buffer) = 0; function Wide_Get (Buffer : in out Buffer_Type) return Wide_String with Post'Class => Wide_Get'Result'First = 1 and then Current_Indent (Buffer) = 0; function Wide_Wide_Get (Buffer : in out Buffer_Type) return Wide_Wide_String with Post'Class => Wide_Wide_Get'Result'First = 1 and then Current_Indent (Buffer) = 0; function Get_UTF_8 (Buffer : in out Buffer_Type) return UTF_Encoding.UTF_8_String with Post'Class => Get_UTF_8'Result'First = 1 and then Current_Indent (Buffer) = 0; function Wide_Get_UTF_16 (Buffer : in out Buffer_Type) return UTF_Encoding.UTF_16_Wide_String with Post'Class => Wide_Get_UTF_16'Result'First = 1 and then Current_Indent (Buffer) = 0; private procedure Put_UTF_8_Implementation (Buffer : in out Root_Buffer_Type'Class; Item : UTF_Encoding.UTF_8_String) with Pre => Buffer in Buffer_Type'Class; package Mapping is new Output_Mapping (Put_UTF_8_Implementation); subtype Positive_Text_Buffer_Count is Text_Buffer_Count range 1 .. Text_Buffer_Count'Last; type Convertible_To_UTF_8_String is array (Positive_Text_Buffer_Count range <>) of Character; type Buffer_Type (Max_Characters : Text_Buffer_Count) is new Mapping.Buffer_Type with record Truncated : Boolean := False; -- True if we ran out of space on a Put Chars : Convertible_To_UTF_8_String (1 .. Max_Characters); end record; end Ada.Strings.Text_Buffers.Bounded;
tests/vice-tests/VIC20/viavarious/via1.asm
PhylumChordata/chips-test
330
241740
!to "via1.prg", cbm TESTID = 1 tmp=$fc addr=$fd add2=$f9 ERRBUF = $1f00 TMP = $2000 ; measured data on C64 side DATA = $3000 ; reference data TESTLEN = $20 NUMTESTS = 14 - 6 TESTSLOC = $1800 DTMP=screenmem !src "common.asm" * = TESTSLOC ;------------------------------------------------------------------------------- ; before: ; --- ; in the loop: ; read [Timer A lo | Timer A hi | Timer A lo latch | Timer A hi latch | Timer B lo | Timer B hi] !zone { ; A .test ldx #0 .t1b lda viabase+$4 ; Timer A lo sta DTMP,x inx bne .t1b rts * = .test+TESTLEN } !zone { ; B .test ldx #0 .t1b lda viabase+$5 ; Timer A hi sta DTMP,x inx bne .t1b rts * = .test+TESTLEN } !zone { ; C .test ldx #0 .t1b lda viabase+$6 ; Timer A latch lo sta DTMP,x inx bne .t1b rts * = .test+TESTLEN } !zone { ; D .test ldx #0 .t1b lda viabase+$7 ; Timer A latch hi sta DTMP,x inx bne .t1b rts * = .test+TESTLEN } !zone { ; E .test ldx #0 .t1b lda viabase+$8 ; Timer B lo sta DTMP,x inx bne .t1b rts * = .test+TESTLEN } !zone { ; F .test ldx #0 .t1b lda viabase+$9 ; Timer B hi sta DTMP,x inx bne .t1b rts * = .test+TESTLEN } ;------------------------------------------------------------------------------- ; before: ; start Timer B (switch to count clock cycles) ; in the loop: ; read [Timer B lo | Timer B hi] !zone { ; G .test ;lda #$1 ;sta $dc0f ; start timer B continuous lda #%00000000 sta viabase+$b ldx #0 .t1b lda viabase+$8 ; Timer B lo sta DTMP,x inx bne .t1b rts * = .test+TESTLEN } !zone { ; H .test ;lda #$1 ;sta $dc0f ; start timer B continuous lda #%00000000 sta viabase+$b ldx #0 .t1b lda viabase+$9 ; Timer B hi sta DTMP,x inx bne .t1b rts * = .test+TESTLEN } ;------------------------------------------------------------------------------- * = DATA !bin "via1ref.bin", NUMTESTS * $0100, 2
oeis/271/A271997.asm
neoneye/loda-programs
11
15925
<filename>oeis/271/A271997.asm ; A271997: The icosagen sequence : a(n) = A018227(n)-5, for n >= 2. ; Submitted by <NAME>(s4) ; 5,13,31,49,81,113,163,213,285,357,455,553,681,809,971,1133,1333,1533,1775,2017,2305,2593,2931,3269,3661,4053,4503,4953,5465,5977,6555,7133,7781,8429,9151,9873,10673,11473,12355,13237,14205,15173,16231,17289,18441,19593,20843,22093,23445,24797,26255,27713,29281,30849,32531,34213,36013,37813,39735,41657,43705,45753,47931,50109,52421,54733,57183,59633,62225,64817,67555,70293,73181,76069,79111,82153,85353,88553,91915,95277,98805,102333,106031,109729,113601,117473,121523,125573,129805,134037,138455 add $0,4 mov $1,$0 pow $0,2 mov $2,4 gcd $2,$0 add $0,$2 sub $0,2 mul $1,$0 mov $0,$1 div $0,6 sub $0,7
other.7z/NEWS.7z/NEWS/テープリストア/NEWS_05/NEWS_05.tar/home/kimura/kart/risc.lzh/risc/mak/kart-main-p.asm
prismotizm/gigaleak
0
12725
Name: kart-main-p.asm Type: file Size: 18794 Last-Modified: '1992-08-06T06:35:52Z' SHA-1: 3245C308906FE40A2D7C3F9492D79C83D95A4678 Description: null
src/test/ref/varmodel-ma_mem.asm
jbrandwood/kickc
2
97828
<gh_stars>1-10 // Test memory model multiple-assignment/main memory for all variables (here local variables) // Commodore 64 PRG executable file .file [name="varmodel-ma_mem.prg", type="prg", segments="Program"] .segmentdef Program [segments="Basic, Code, Data"] .segmentdef Basic [start=$0801] .segmentdef Code [start=$80d] .segmentdef Data [startAfter="Code"] .segment Basic :BasicUpstart(main) .segment Code main: { // char* screen = (char*)0x0400 // A local pointer lda #<$400 sta screen lda #>$400 sta screen+1 // for( char i: 0..5 ) lda #0 sta i // A local counter __b1: // *(screen++) = 'a' lda #'a' ldy screen sty.z $fe ldy screen+1 sty.z $ff ldy #0 sta ($fe),y // *(screen++) = 'a'; inc screen bne !+ inc screen+1 !: // for( char i: 0..5 ) inc i lda #6 cmp i bne __b1 // } rts .segment Data screen: .word 0 i: .byte 0 }
Transynther/x86/_processed/NONE/_xt_/i3-7100_9_0x84_notsx.log_21829_1746.asm
ljhsiun2/medusa
9
244543
.global s_prepare_buffers s_prepare_buffers: push %r10 push %r14 push %r8 push %r9 push %rax push %rcx push %rdi push %rsi lea addresses_D_ht+0x117e6, %rsi lea addresses_normal_ht+0xb0e6, %rdi nop nop nop nop nop dec %r10 mov $85, %rcx rep movsw nop nop nop nop nop and %r14, %r14 lea addresses_A_ht+0xa926, %r9 nop nop nop nop nop add %rcx, %rcx movl $0x61626364, (%r9) nop nop xor $24872, %rcx lea addresses_WT_ht+0x1ed26, %r9 nop nop nop nop dec %r8 movb (%r9), %cl inc %r9 lea addresses_normal_ht+0x1e926, %rcx nop nop inc %rsi movb (%rcx), %r8b nop nop nop nop sub $32679, %r8 lea addresses_normal_ht+0xa326, %rcx nop nop nop xor $1921, %r8 mov (%rcx), %edi cmp %rsi, %rsi lea addresses_WT_ht+0x4326, %rsi lea addresses_UC_ht+0xf203, %rdi nop dec %rax mov $12, %rcx rep movsw nop nop nop inc %r8 lea addresses_UC_ht+0x56f2, %r14 nop nop nop nop lfence mov (%r14), %rdi xor %r10, %r10 lea addresses_UC_ht+0xf326, %rsi lea addresses_UC_ht+0xb89a, %rdi nop nop and $32134, %r8 mov $4, %rcx rep movsb nop nop cmp %r10, %r10 lea addresses_normal_ht+0x45f2, %rdi nop lfence movb $0x61, (%rdi) mfence lea addresses_D_ht+0x20e6, %rsi lea addresses_WC_ht+0x12626, %rdi nop nop nop and $33782, %r9 mov $126, %rcx rep movsw nop nop nop nop nop and $23207, %rdi lea addresses_normal_ht+0xed26, %rsi lea addresses_UC_ht+0x9a6, %rdi clflush (%rdi) nop nop nop nop nop sub $28423, %r14 mov $34, %rcx rep movsq nop nop nop nop and $64399, %r10 lea addresses_normal_ht+0xae26, %rsi lea addresses_D_ht+0x10846, %rdi nop nop xor $6569, %r10 mov $122, %rcx rep movsl nop nop nop sub %r8, %r8 lea addresses_UC_ht+0x18f26, %r9 nop nop nop nop nop sub $6719, %rdi mov $0x6162636465666768, %rcx movq %rcx, (%r9) nop and $1020, %r10 lea addresses_WT_ht+0x83e6, %r8 xor %r9, %r9 vmovups (%r8), %ymm2 vextracti128 $0, %ymm2, %xmm2 vpextrq $1, %xmm2, %r10 nop add $65172, %r9 lea addresses_WT_ht+0x16c86, %r8 xor %r9, %r9 vmovups (%r8), %ymm5 vextracti128 $1, %ymm5, %xmm5 vpextrq $0, %xmm5, %rsi sub %r9, %r9 pop %rsi pop %rdi pop %rcx pop %rax pop %r9 pop %r8 pop %r14 pop %r10 ret .global s_faulty_load s_faulty_load: push %r11 push %r13 push %r14 push %r15 push %rcx push %rdi // Faulty Load lea addresses_UC+0x17b26, %rcx nop mfence movups (%rcx), %xmm6 vpextrq $1, %xmm6, %r15 lea oracles, %r11 and $0xff, %r15 shlq $12, %r15 mov (%r11,%r15,1), %r15 pop %rdi pop %rcx pop %r15 pop %r14 pop %r13 pop %r11 ret /* <gen_faulty_load> [REF] {'src': {'type': 'addresses_UC', 'same': False, 'size': 16, 'congruent': 0, 'NT': False, 'AVXalign': False}, 'OP': 'LOAD'} [Faulty Load] {'src': {'type': 'addresses_UC', 'same': True, 'size': 16, 'congruent': 0, 'NT': False, 'AVXalign': False}, 'OP': 'LOAD'} <gen_prepare_buffer> {'src': {'type': 'addresses_D_ht', 'congruent': 5, 'same': False}, 'dst': {'type': 'addresses_normal_ht', 'congruent': 6, 'same': False}, 'OP': 'REPM'} {'dst': {'type': 'addresses_A_ht', 'same': False, 'size': 4, 'congruent': 8, 'NT': False, 'AVXalign': False}, 'OP': 'STOR'} {'src': {'type': 'addresses_WT_ht', 'same': False, 'size': 1, 'congruent': 8, 'NT': False, 'AVXalign': False}, 'OP': 'LOAD'} {'src': {'type': 'addresses_normal_ht', 'same': False, 'size': 1, 'congruent': 9, 'NT': False, 'AVXalign': False}, 'OP': 'LOAD'} {'src': {'type': 'addresses_normal_ht', 'same': False, 'size': 4, 'congruent': 9, 'NT': True, 'AVXalign': False}, 'OP': 'LOAD'} {'src': {'type': 'addresses_WT_ht', 'congruent': 7, 'same': False}, 'dst': {'type': 'addresses_UC_ht', 'congruent': 0, 'same': False}, 'OP': 'REPM'} {'src': {'type': 'addresses_UC_ht', 'same': False, 'size': 8, 'congruent': 0, 'NT': True, 'AVXalign': False}, 'OP': 'LOAD'} {'src': {'type': 'addresses_UC_ht', 'congruent': 11, 'same': False}, 'dst': {'type': 'addresses_UC_ht', 'congruent': 0, 'same': False}, 'OP': 'REPM'} {'dst': {'type': 'addresses_normal_ht', 'same': False, 'size': 1, 'congruent': 1, 'NT': False, 'AVXalign': False}, 'OP': 'STOR'} {'src': {'type': 'addresses_D_ht', 'congruent': 6, 'same': False}, 'dst': {'type': 'addresses_WC_ht', 'congruent': 4, 'same': False}, 'OP': 'REPM'} {'src': {'type': 'addresses_normal_ht', 'congruent': 9, 'same': False}, 'dst': {'type': 'addresses_UC_ht', 'congruent': 7, 'same': False}, 'OP': 'REPM'} {'src': {'type': 'addresses_normal_ht', 'congruent': 7, 'same': False}, 'dst': {'type': 'addresses_D_ht', 'congruent': 4, 'same': False}, 'OP': 'REPM'} {'dst': {'type': 'addresses_UC_ht', 'same': False, 'size': 8, 'congruent': 10, 'NT': False, 'AVXalign': False}, 'OP': 'STOR'} {'src': {'type': 'addresses_WT_ht', 'same': False, 'size': 32, 'congruent': 5, 'NT': False, 'AVXalign': False}, 'OP': 'LOAD'} {'src': {'type': 'addresses_WT_ht', 'same': False, 'size': 32, 'congruent': 3, 'NT': False, 'AVXalign': False}, 'OP': 'LOAD'} {'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 */
gcc-gcc-7_3_0-release/gcc/testsuite/ada/acats/tests/c8/c87b45c.ada
best08618/asylo
7
28324
-- C87B45C.ADA -- Grant of Unlimited Rights -- -- Under contracts F33600-87-D-0337, F33600-84-D-0280, MDA903-79-C-0687, -- F08630-91-C-0015, and DCA100-97-D-0025, the U.S. Government obtained -- unlimited rights in the software and documentation contained herein. -- Unlimited rights are defined in DFAR 252.227-7013(a)(19). By making -- this public release, the Government intends to confer upon all -- recipients unlimited rights equal to those held by the Government. -- These rights include rights to use, duplicate, release or disclose the -- released technical data and computer software in whole or in part, in -- any manner and for any purpose whatsoever, and to have or permit others -- to do so. -- -- DISCLAIMER -- -- ALL MATERIALS OR INFORMATION HEREIN RELEASED, MADE AVAILABLE OR -- DISCLOSED ARE AS IS. THE GOVERNMENT MAKES NO EXPRESS OR IMPLIED -- WARRANTY AS TO ANY MATTER WHATSOEVER, INCLUDING THE CONDITIONS OF THE -- SOFTWARE, DOCUMENTATION OR OTHER INFORMATION RELEASED, MADE AVAILABLE -- OR DISCLOSED, OR THE OWNERSHIP, MERCHANTABILITY, OR FITNESS FOR A -- PARTICULAR PURPOSE OF SAID MATERIAL. --* -- CHECK THAT OVERLOADING RESOLUTION USES THE RULE THAT: -- -- FOR A DEFAULT ENTRY PARAMETER, THE TYPE OF THE INITIALIZATION -- EXPRESSION MUST MATCH THE PARAMETERS'S EXPLICIT TYPEMARK. -- -- THE FOUR KINDS OF EXPRESSIONS TESTED HERE ARE: -- -- (A): A CALL TO AN OVERLOADED FUNCTION. -- (B): AN OVERLOADED OPERATOR SYMBOL. -- (C): AN OVERLOADED (INFIX) OPERATOR. -- (D): AN OVERLOADED ENUMERATION LITERAL. -- TRH 7 JULY 82 WITH REPORT; USE REPORT; PROCEDURE C87B45C IS TYPE WHOLE IS NEW INTEGER RANGE 0..INTEGER'LAST; TYPE CITRUS IS (LEMON, LIME, ORANGE); TYPE HUE IS (RED, ORANGE, YELLOW); FUNCTION F1 (X, Y : INTEGER) RETURN INTEGER IS BEGIN RETURN -1; END F1; FUNCTION F1 (X, Y : WHOLE) RETURN WHOLE IS BEGIN RETURN 0; END F1; FUNCTION F1 (X, Y : INTEGER) RETURN HUE IS BEGIN RETURN ORANGE; END F1; FUNCTION F1 (X, Y : INTEGER) RETURN CITRUS IS BEGIN RETURN ORANGE; END F1; BEGIN TEST ("C87B45C","OVERLOADED INITIALIZATION EXPRESSIONS" & " IN DEFAULT ENTRY PARAMETERS"); DECLARE FUNCTION "*" (X, Y : INTEGER) RETURN INTEGER RENAMES F1; FUNCTION "*" (X, Y : WHOLE) RETURN WHOLE RENAMES F1; FUNCTION "*" (X, Y : INTEGER) RETURN HUE RENAMES F1; FUNCTION "*" (X, Y : INTEGER) RETURN CITRUS RENAMES F1; TASK T1 IS ENTRY E1 (I1 : INTEGER := F1 (0, 0); W1 : WHOLE := F1 (0, 0); C1 : CITRUS := F1 (0, 0); H1 : HUE := F1 (0, 0); I2 : INTEGER := "*" (0, 0); W2 : WHOLE := "*" (0, 0); C2 : CITRUS := "*" (0, 0); H2 : HUE := "*" (0, 0); I3 : INTEGER := (0 * 0); W3 : WHOLE := (0 * 0); C3 : CITRUS := (0 * 0); H3 : HUE := (0 * 0); C4 : CITRUS := ORANGE; H4 : HUE := ORANGE); END T1; TASK BODY T1 IS BEGIN ACCEPT E1 (I1 : INTEGER := F1 (0, 0); W1 : WHOLE := F1 (0, 0); C1 : CITRUS := F1 (0, 0); H1 : HUE := F1 (0, 0); I2 : INTEGER := "*" (0, 0); W2 : WHOLE := "*" (0, 0); C2 : CITRUS := "*" (0, 0); H2 : HUE := "*" (0, 0); I3 : INTEGER := (0 * 0); W3 : WHOLE := (0 * 0); C3 : CITRUS := (0 * 0); H3 : HUE := (0 * 0); C4 : CITRUS := ORANGE; H4 : HUE := ORANGE) DO IF I1 /= -1 OR W1 /= 0 OR CITRUS'POS (C1) /= 2 OR HUE'POS (H1) /= 1 THEN FAILED ("(A): RESOLUTION INCORRECT - FUNCTION"); END IF; IF I2 /= -1 OR W2 /= 0 OR CITRUS'POS (C2) /= 2 OR HUE'POS (H2) /= 1 THEN FAILED ("(B): RESOLUTION INCORRECT " & "- OPERATOR SYMBOL"); END IF; IF I3 /= -1 OR W3 /= 0 OR CITRUS'POS (C3) /= 2 OR HUE'POS (H3) /= 1 THEN FAILED ("(C): RESOLUTION INCORRECT - INFIX " & "OPERATOR"); END IF; IF CITRUS'POS (C4) /= 2 OR HUE'POS (H4) /= 1 THEN FAILED ("(D): RESOLUTION INCORRECT - " & "ENUMERATION LITERAL"); END IF; END E1; END T1; BEGIN T1.E1; END; RESULT; END C87B45C;
src/ymodem.asm
codebje/cpmsuite
0
95023
<reponame>codebje/cpmsuite .z180 #target bin #code TEXT, $100 #data DATA, * YM_SOH equ $01 ; start of a 128-byte packet YM_STX equ $02 ; start of a 1024-byte packet YM_EOT equ $04 ; end of transmission YM_ACK equ $06 ; received ok YM_NAK equ $15 ; receive error YM_CAN equ $18 ; cancel transmission YM_CRC equ 'C' ; request CRC-16 mode #include "src/z180registers.z80" #include "src/tbios.z80" #code TEXT org $100 start: ld de, welcome ld c, CPM_WRITESTR call 5 call receive rst 0 welcome: .text 'YModem receive ready',13,10,'$' ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; ;; receive ;; ;; Receive files and write to current disk #local receive:: receive_file: ld c, YM_CRC ld hl, recvbuf call recv_packet jp z, abort cp a, YM_EOT jp z, ack_eot ; a NUL filename indicates all done ld a, (hl) or a jp z, complete ;; set up the FCB for file creation xor a ld (fcb), a ; default drive ld (fcb+12), a ; EX=0 ld (fcb+14), a ; S2=0 ld (fcb+15), a ; RC=0 ld (fcb+32), a ; CR=0 ;; erase the filename in the FCB push hl ld a, $20 ld (fcb+1), a ld hl, fcb+1 ld de, fcb+2 ld bc, 10 ldir pop hl ;; extract filename from YModem metadata block to FCB ld b, 9 ld de, fcb+1 loadfn: ld a, (hl) or a jr z, fndone cp a, '.' jr z, loadext dec b jp z, fnbad1 ld a, (hl) call checkfn jp c, fnbad2 ld (de), a inc de inc hl jr loadfn loadext: ld bc, 4 ld de, fcb+9 inc hl extloop: ld a, (hl) or a jr z, fndone dec bc ld a, b or c jp z, fnbad3 ld a, (hl) call checkfn jp c, fnbad4 ld (de), a inc de inc hl jr extloop fndone: ld de, fcb ld c, CPM_FDELETE ; delete the file, if it exists call 5 ; ignore result ld de, fcb ld c, CPM_FMAKE call 5 inc a jr z, ferror ld e, YM_ACK ld c, ERAWOUT rst $30 ld e, YM_CRC ld c, ERAWOUT rst $30 ld a, 1 ld (block_nr), a ld c, YM_CRC receive_data: ld hl, recvbuf call recv_packet cp a, YM_EOT ; EOT indicates file transfer complete jr z, eot_file ld b, a ld a, (block_nr) cp a, c jr nz, block_error inc a ld (block_nr), a ; update block number ld a, b ;; SOH writes one 128-byte sector, STX writes 8 sectors ld b, 1 cp a, YM_SOH jr z, $+4 ld b, 8 ld de, recvbuf ld hl, 128 write_file: push bc push de push hl ld c, CPM_DMAOFF call 5 ld de, fcb ld c, CPM_FWRITE call 5 pop hl pop de pop bc ex de, hl add hl, de ex de, hl djnz write_file ld e, YM_ACK ld c, ERAWOUT rst $30 ld c, YM_ACK jr receive_data ; go back for next block eot_file: ld de, fcb ld c, CPM_FCLOSE call 5 ack_eot: ld e, YM_ACK ld c, ERAWOUT rst $30 ld e, YM_CRC ld c, ERAWOUT rst $30 jp receive_file ferror: ld e, YM_CAN ld c, ERAWOUT rst $30 ld e, YM_CAN ld c, ERAWOUT rst $30 call flush_rx ld de, msg_ferror jr print abort: ld e, YM_CAN ld c, ERAWOUT rst $30 ld e, YM_CAN ld c, ERAWOUT rst $30 call flush_rx ld de, msg_aborted jr print block_error: dec a ; might be last block re-sent? cp a, c jr nz, abort ; alas no, give up ld e, YM_ACK ; if yes, re-ACK it ld c, ERAWOUT rst $30 jp receive_data complete: ld e, YM_ACK ld c, ERAWOUT rst $30 call flush_rx ld de, msg_complete print: ld c, CPM_WRITESTR call 5 ret fnbad1: ld de, msg_badfn1 ld (badmsg), de jr fnbad fnbad2: ld de, msg_badfn2 ld (badmsg), de jr fnbad fnbad3: ld de, msg_badfn3 ld (badmsg), de jr fnbad fnbad4: ld de, msg_badfn4 ld (badmsg), de fnbad: ld e, YM_CAN ld c, ERAWOUT rst $30 ld e, YM_CAN ld c, ERAWOUT rst $30 call flush_rx ld de, (badmsg) jr print bail: ld e, YM_CAN ld c, ERAWOUT rst $30 ld e, YM_CAN ld c, ERAWOUT rst $30 rst 0 badmsg .dw msg_badfn1 msg_aborted: .text 'aborted', 13, 10, '$' msg_complete: .text 'complete', 13, 10, '$' msg_badfn1: .text 'invalid filename 1', 13, 10, '$' msg_badfn2: .text 'invalid filename 2', 13, 10, '$' msg_badfn3: .text 'invalid filename 3', 13, 10, '$' msg_badfn4: .text 'invalid filename 4', 13, 10, '$' msg_ferror: .text 'file system error', 13, 10, '$' cmd .ds 1 ; the received command byte block_nr .ds 1 ; the expected block number #endlocal ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; ;; checkfn - check character for validity in a file name ;; ;; in a the character to test ;; out a the modified character ;; f CF set on invalid #local checkfn:: cp ' '+1 ; space and control chars ret c cp ':' ; ':' to '?' are illegal jr c, digit cp '?'+1 ret c digit: cp '.' jr z, bad cp ',' jr z, bad cp '*' jr z, bad cp '_' jr z, bad cp 'a' jr c, good cp 'z'+1 jr nc, good ; convert a-z to upper case and 01011111b good: and 01111111b ret bad: scf ret #endlocal ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; ;; recv_packet ;; ;; Receive a Y-Modem packet, retrying up to ten times. ;; ;; in: hl destination of packet (1026 bytes required) ;; c the byte to send in case of timeout ;; out: zf set on error ;; a the command code received ;; c the packet sequence number ;; b the number of retries remaining #local recv_packet:: push de push hl ld a, c ld (metadata+1), a ld b, 10 ; retry ten times jr read_cmd metadata: ld e, 0 ld c, ERAWOUT rst $30 read_cmd: ld de, 5*100 call recv_byte jr z, retry cp a, YM_CAN ; Cancel? jr z, cancel cp a, YM_EOT ; End of transmission? jr z, eot cp a, YM_SOH jr z, recv_body cp a, YM_STX jr z, recv_body call flush_rx ; anything else, clear it out and retry retry: djnz metadata xor a ; djnz doesn't set zf, so set it here done: pop hl pop de ret cancel: ld de, 5*100 call recv_byte jr z, retry cp a, YM_CAN jr z, done jr retry eot: or a ; clear zf - a contains a non-zero value jr done recv_body: ld (cmd), a ld de, 1*100 call recv_byte jr z, retry ld c, a call recv_byte jr z, retry cpl cp a, c jr nz, retry ld (seq), a pop hl push hl push bc ld bc, 130 ld a, (cmd) cp a, YM_SOH jr z, $+5 ld bc, 1026 push hl push bc ld de, 1*100 call recv_wait pop bc pop hl jr z, body_retry ld de, 0 call ym_crc ; CRC should be zero pop bc ld a, d or e jr nz, retry ld a, (seq) ld c, a ld a, (cmd) or a ; clear zf jr done body_retry: pop bc jr retry cmd: .db 0 seq: .db 0 #endlocal #local recv_byte:: push bc push de push hl ; reset PRT0 counter flag in0 a, (TCR) in0 a, (TMDR0L) in0 a, (TMDR0H) waitc: push de ld c, ERAWIN rst $30 pop de jr nz, return in0 a, (TCR) ; check if timer has fired tst 01000000b jr z, waitc in0 a, (TMDR0L) in0 a, (TMDR0H) dec de ld a, d or e jr nz, waitc return: pop hl pop de pop bc ret #endlocal ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; ;; recv_wait - read a data buffer, with max. delay ;; ;; in: bc count of bytes to read ;; de timeout, in 100Hz units ;; hl destination buffer ;; out: f zf set on timeout #local recv_wait:: ld (pblock), bc ld (pblock+2), de ld (pblock+4), hl loop: call recv_byte ret z ld (hl), a inc hl dec bc ld a, b or c jr nz, loop or 1 ; clear zf ret db $de, $ad, $be, $ef pblock: dw 0, 0, 0 #endlocal ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; ;; flush_rx ;; ;; Flush the RX pipeline ;; ;; in: none ;; out: none #local flush_rx:: push af push de ld de, 10 ; brief timeout only loop: call recv_byte jr nz, loop pop de pop af ret #endlocal #include "src/ymcrc.z80" #data DATA .org TEXT_end fcb .ds 36 recvbuf .ds 1026 #end
src/gen/pcap-low_level-pcap_bpf_h.ads
persan/a-libpcap
0
5141
-- begin read only pragma Ada_2012; pragma Style_Checks (Off); pragma Warnings (Off); -- Since this is automaticly generated with Interfaces.C; use Interfaces.C; package PCAP.Low_Level.pcap_bpf_h is BPF_RELEASE : constant := 199606; -- /usr/include/pcap/bpf.h:79 -- unsupported macro: BPF_ALIGNMENT sizeof(bpf_int32) -- arg-macro: function BPF_WORDALIGN (x) -- return ((x)+(BPF_ALIGNMENT-1))and~(BPF_ALIGNMENT-1); DLT_NULL : constant := 0; -- /usr/include/pcap/bpf.h:132 DLT_EN10MB : constant := 1; -- /usr/include/pcap/bpf.h:133 DLT_EN3MB : constant := 2; -- /usr/include/pcap/bpf.h:134 DLT_AX25 : constant := 3; -- /usr/include/pcap/bpf.h:135 DLT_PRONET : constant := 4; -- /usr/include/pcap/bpf.h:136 DLT_CHAOS : constant := 5; -- /usr/include/pcap/bpf.h:137 DLT_IEEE802 : constant := 6; -- /usr/include/pcap/bpf.h:138 DLT_ARCNET : constant := 7; -- /usr/include/pcap/bpf.h:139 DLT_SLIP : constant := 8; -- /usr/include/pcap/bpf.h:140 DLT_PPP : constant := 9; -- /usr/include/pcap/bpf.h:141 DLT_FDDI : constant := 10; -- /usr/include/pcap/bpf.h:142 DLT_ATM_RFC1483 : constant := 11; -- /usr/include/pcap/bpf.h:153 DLT_RAW : constant := 12; -- /usr/include/pcap/bpf.h:158 DLT_SLIP_BSDOS : constant := 15; -- /usr/include/pcap/bpf.h:173 DLT_PPP_BSDOS : constant := 16; -- /usr/include/pcap/bpf.h:174 DLT_ATM_CLIP : constant := 19; -- /usr/include/pcap/bpf.h:209 DLT_REDBACK_SMARTEDGE : constant := 32; -- /usr/include/pcap/bpf.h:215 DLT_PPP_SERIAL : constant := 50; -- /usr/include/pcap/bpf.h:222 DLT_PPP_ETHER : constant := 51; -- /usr/include/pcap/bpf.h:223 DLT_SYMANTEC_FIREWALL : constant := 99; -- /usr/include/pcap/bpf.h:232 DLT_MATCHING_MIN : constant := 104; -- /usr/include/pcap/bpf.h:251 DLT_C_HDLC : constant := 104; -- /usr/include/pcap/bpf.h:267 -- unsupported macro: DLT_CHDLC DLT_C_HDLC DLT_IEEE802_11 : constant := 105; -- /usr/include/pcap/bpf.h:270 DLT_FRELAY : constant := 107; -- /usr/include/pcap/bpf.h:285 DLT_LOOP : constant := 108; -- /usr/include/pcap/bpf.h:297 DLT_ENC : constant := 109; -- /usr/include/pcap/bpf.h:308 DLT_LINUX_SLL : constant := 113; -- /usr/include/pcap/bpf.h:321 DLT_LTALK : constant := 114; -- /usr/include/pcap/bpf.h:326 DLT_ECONET : constant := 115; -- /usr/include/pcap/bpf.h:331 DLT_IPFILTER : constant := 116; -- /usr/include/pcap/bpf.h:336 DLT_PFLOG : constant := 117; -- /usr/include/pcap/bpf.h:341 DLT_CISCO_IOS : constant := 118; -- /usr/include/pcap/bpf.h:346 DLT_PRISM_HEADER : constant := 119; -- /usr/include/pcap/bpf.h:353 DLT_AIRONET_HEADER : constant := 120; -- /usr/include/pcap/bpf.h:359 DLT_HHDLC : constant := 121; -- /usr/include/pcap/bpf.h:402 DLT_IP_OVER_FC : constant := 122; -- /usr/include/pcap/bpf.h:413 DLT_SUNATM : constant := 123; -- /usr/include/pcap/bpf.h:429 DLT_RIO : constant := 124; -- /usr/include/pcap/bpf.h:435 DLT_PCI_EXP : constant := 125; -- /usr/include/pcap/bpf.h:436 DLT_AURORA : constant := 126; -- /usr/include/pcap/bpf.h:437 DLT_IEEE802_11_RADIO : constant := 127; -- /usr/include/pcap/bpf.h:444 DLT_TZSP : constant := 128; -- /usr/include/pcap/bpf.h:454 DLT_ARCNET_LINUX : constant := 129; -- /usr/include/pcap/bpf.h:467 DLT_JUNIPER_MLPPP : constant := 130; -- /usr/include/pcap/bpf.h:475 DLT_JUNIPER_MLFR : constant := 131; -- /usr/include/pcap/bpf.h:476 DLT_JUNIPER_ES : constant := 132; -- /usr/include/pcap/bpf.h:477 DLT_JUNIPER_GGSN : constant := 133; -- /usr/include/pcap/bpf.h:478 DLT_JUNIPER_MFR : constant := 134; -- /usr/include/pcap/bpf.h:479 DLT_JUNIPER_ATM2 : constant := 135; -- /usr/include/pcap/bpf.h:480 DLT_JUNIPER_SERVICES : constant := 136; -- /usr/include/pcap/bpf.h:481 DLT_JUNIPER_ATM1 : constant := 137; -- /usr/include/pcap/bpf.h:482 DLT_APPLE_IP_OVER_IEEE1394 : constant := 138; -- /usr/include/pcap/bpf.h:499 DLT_MTP2_WITH_PHDR : constant := 139; -- /usr/include/pcap/bpf.h:505 DLT_MTP2 : constant := 140; -- /usr/include/pcap/bpf.h:506 DLT_MTP3 : constant := 141; -- /usr/include/pcap/bpf.h:507 DLT_SCCP : constant := 142; -- /usr/include/pcap/bpf.h:508 DLT_DOCSIS : constant := 143; -- /usr/include/pcap/bpf.h:513 DLT_LINUX_IRDA : constant := 144; -- /usr/include/pcap/bpf.h:530 DLT_IBM_SP : constant := 145; -- /usr/include/pcap/bpf.h:535 DLT_IBM_SN : constant := 146; -- /usr/include/pcap/bpf.h:536 DLT_USER0 : constant := 147; -- /usr/include/pcap/bpf.h:563 DLT_USER1 : constant := 148; -- /usr/include/pcap/bpf.h:564 DLT_USER2 : constant := 149; -- /usr/include/pcap/bpf.h:565 DLT_USER3 : constant := 150; -- /usr/include/pcap/bpf.h:566 DLT_USER4 : constant := 151; -- /usr/include/pcap/bpf.h:567 DLT_USER5 : constant := 152; -- /usr/include/pcap/bpf.h:568 DLT_USER6 : constant := 153; -- /usr/include/pcap/bpf.h:569 DLT_USER7 : constant := 154; -- /usr/include/pcap/bpf.h:570 DLT_USER8 : constant := 155; -- /usr/include/pcap/bpf.h:571 DLT_USER9 : constant := 156; -- /usr/include/pcap/bpf.h:572 DLT_USER10 : constant := 157; -- /usr/include/pcap/bpf.h:573 DLT_USER11 : constant := 158; -- /usr/include/pcap/bpf.h:574 DLT_USER12 : constant := 159; -- /usr/include/pcap/bpf.h:575 DLT_USER13 : constant := 160; -- /usr/include/pcap/bpf.h:576 DLT_USER14 : constant := 161; -- /usr/include/pcap/bpf.h:577 DLT_USER15 : constant := 162; -- /usr/include/pcap/bpf.h:578 DLT_IEEE802_11_RADIO_AVS : constant := 163; -- /usr/include/pcap/bpf.h:590 DLT_JUNIPER_MONITOR : constant := 164; -- /usr/include/pcap/bpf.h:598 DLT_BACNET_MS_TP : constant := 165; -- /usr/include/pcap/bpf.h:603 DLT_PPP_PPPD : constant := 166; -- /usr/include/pcap/bpf.h:619 -- unsupported macro: DLT_PPP_WITH_DIRECTION DLT_PPP_PPPD -- unsupported macro: DLT_LINUX_PPP_WITHDIRECTION DLT_PPP_PPPD DLT_JUNIPER_PPPOE : constant := 167; -- /usr/include/pcap/bpf.h:634 DLT_JUNIPER_PPPOE_ATM : constant := 168; -- /usr/include/pcap/bpf.h:635 DLT_GPRS_LLC : constant := 169; -- /usr/include/pcap/bpf.h:637 DLT_GPF_T : constant := 170; -- /usr/include/pcap/bpf.h:638 DLT_GPF_F : constant := 171; -- /usr/include/pcap/bpf.h:639 DLT_GCOM_T1E1 : constant := 172; -- /usr/include/pcap/bpf.h:645 DLT_GCOM_SERIAL : constant := 173; -- /usr/include/pcap/bpf.h:646 DLT_JUNIPER_PIC_PEER : constant := 174; -- /usr/include/pcap/bpf.h:653 DLT_ERF_ETH : constant := 175; -- /usr/include/pcap/bpf.h:661 DLT_ERF_POS : constant := 176; -- /usr/include/pcap/bpf.h:662 DLT_LINUX_LAPD : constant := 177; -- /usr/include/pcap/bpf.h:670 DLT_JUNIPER_ETHER : constant := 178; -- /usr/include/pcap/bpf.h:679 DLT_JUNIPER_PPP : constant := 179; -- /usr/include/pcap/bpf.h:680 DLT_JUNIPER_FRELAY : constant := 180; -- /usr/include/pcap/bpf.h:681 DLT_JUNIPER_CHDLC : constant := 181; -- /usr/include/pcap/bpf.h:682 DLT_MFR : constant := 182; -- /usr/include/pcap/bpf.h:687 DLT_JUNIPER_VP : constant := 183; -- /usr/include/pcap/bpf.h:695 DLT_A429 : constant := 184; -- /usr/include/pcap/bpf.h:704 DLT_A653_ICM : constant := 185; -- /usr/include/pcap/bpf.h:711 DLT_USB : constant := 186; -- /usr/include/pcap/bpf.h:717 DLT_BLUETOOTH_HCI_H4 : constant := 187; -- /usr/include/pcap/bpf.h:723 DLT_IEEE802_16_MAC_CPS : constant := 188; -- /usr/include/pcap/bpf.h:729 DLT_USB_LINUX : constant := 189; -- /usr/include/pcap/bpf.h:735 DLT_CAN20B : constant := 190; -- /usr/include/pcap/bpf.h:744 DLT_IEEE802_15_4_LINUX : constant := 191; -- /usr/include/pcap/bpf.h:750 DLT_PPI : constant := 192; -- /usr/include/pcap/bpf.h:756 DLT_IEEE802_16_MAC_CPS_RADIO : constant := 193; -- /usr/include/pcap/bpf.h:762 DLT_JUNIPER_ISM : constant := 194; -- /usr/include/pcap/bpf.h:770 DLT_IEEE802_15_4 : constant := 195; -- /usr/include/pcap/bpf.h:778 DLT_SITA : constant := 196; -- /usr/include/pcap/bpf.h:784 DLT_ERF : constant := 197; -- /usr/include/pcap/bpf.h:791 DLT_RAIF1 : constant := 198; -- /usr/include/pcap/bpf.h:798 DLT_IPMB : constant := 199; -- /usr/include/pcap/bpf.h:805 DLT_JUNIPER_ST : constant := 200; -- /usr/include/pcap/bpf.h:812 DLT_BLUETOOTH_HCI_H4_WITH_PHDR : constant := 201; -- /usr/include/pcap/bpf.h:818 DLT_AX25_KISS : constant := 202; -- /usr/include/pcap/bpf.h:827 DLT_LAPD : constant := 203; -- /usr/include/pcap/bpf.h:834 DLT_PPP_WITH_DIR : constant := 204; -- /usr/include/pcap/bpf.h:842 DLT_C_HDLC_WITH_DIR : constant := 205; -- /usr/include/pcap/bpf.h:843 DLT_FRELAY_WITH_DIR : constant := 206; -- /usr/include/pcap/bpf.h:844 DLT_LAPB_WITH_DIR : constant := 207; -- /usr/include/pcap/bpf.h:845 DLT_IPMB_LINUX : constant := 209; -- /usr/include/pcap/bpf.h:856 DLT_FLEXRAY : constant := 210; -- /usr/include/pcap/bpf.h:862 DLT_MOST : constant := 211; -- /usr/include/pcap/bpf.h:869 DLT_LIN : constant := 212; -- /usr/include/pcap/bpf.h:876 DLT_X2E_SERIAL : constant := 213; -- /usr/include/pcap/bpf.h:882 DLT_X2E_XORAYA : constant := 214; -- /usr/include/pcap/bpf.h:888 DLT_IEEE802_15_4_NONASK_PHY : constant := 215; -- /usr/include/pcap/bpf.h:899 DLT_LINUX_EVDEV : constant := 216; -- /usr/include/pcap/bpf.h:907 DLT_GSMTAP_UM : constant := 217; -- /usr/include/pcap/bpf.h:914 DLT_GSMTAP_ABIS : constant := 218; -- /usr/include/pcap/bpf.h:915 DLT_MPLS : constant := 219; -- /usr/include/pcap/bpf.h:922 DLT_USB_LINUX_MMAPPED : constant := 220; -- /usr/include/pcap/bpf.h:928 DLT_DECT : constant := 221; -- /usr/include/pcap/bpf.h:934 DLT_AOS : constant := 222; -- /usr/include/pcap/bpf.h:945 DLT_WIHART : constant := 223; -- /usr/include/pcap/bpf.h:954 DLT_FC_2 : constant := 224; -- /usr/include/pcap/bpf.h:960 DLT_FC_2_WITH_FRAME_DELIMS : constant := 225; -- /usr/include/pcap/bpf.h:974 DLT_IPNET : constant := 226; -- /usr/include/pcap/bpf.h:1022 DLT_CAN_SOCKETCAN : constant := 227; -- /usr/include/pcap/bpf.h:1031 DLT_IPV4 : constant := 228; -- /usr/include/pcap/bpf.h:1037 DLT_IPV6 : constant := 229; -- /usr/include/pcap/bpf.h:1038 DLT_IEEE802_15_4_NOFCS : constant := 230; -- /usr/include/pcap/bpf.h:1045 DLT_DBUS : constant := 231; -- /usr/include/pcap/bpf.h:1063 DLT_JUNIPER_VS : constant := 232; -- /usr/include/pcap/bpf.h:1069 DLT_JUNIPER_SRX_E2E : constant := 233; -- /usr/include/pcap/bpf.h:1070 DLT_JUNIPER_FIBRECHANNEL : constant := 234; -- /usr/include/pcap/bpf.h:1071 DLT_DVB_CI : constant := 235; -- /usr/include/pcap/bpf.h:1083 DLT_MUX27010 : constant := 236; -- /usr/include/pcap/bpf.h:1090 DLT_STANAG_5066_D_PDU : constant := 237; -- /usr/include/pcap/bpf.h:1096 DLT_JUNIPER_ATM_CEMIC : constant := 238; -- /usr/include/pcap/bpf.h:1102 DLT_NFLOG : constant := 239; -- /usr/include/pcap/bpf.h:1110 DLT_NETANALYZER : constant := 240; -- /usr/include/pcap/bpf.h:1120 DLT_NETANALYZER_TRANSPARENT : constant := 241; -- /usr/include/pcap/bpf.h:1131 DLT_IPOIB : constant := 242; -- /usr/include/pcap/bpf.h:1138 DLT_MPEG_2_TS : constant := 243; -- /usr/include/pcap/bpf.h:1145 DLT_NG40 : constant := 244; -- /usr/include/pcap/bpf.h:1153 DLT_NFC_LLCP : constant := 245; -- /usr/include/pcap/bpf.h:1163 DLT_PFSYNC : constant := 246; -- /usr/include/pcap/bpf.h:1173 DLT_INFINIBAND : constant := 247; -- /usr/include/pcap/bpf.h:1181 DLT_SCTP : constant := 248; -- /usr/include/pcap/bpf.h:1188 DLT_USBPCAP : constant := 249; -- /usr/include/pcap/bpf.h:1195 DLT_RTAC_SERIAL : constant := 250; -- /usr/include/pcap/bpf.h:1203 DLT_BLUETOOTH_LE_LL : constant := 251; -- /usr/include/pcap/bpf.h:1210 DLT_WIRESHARK_UPPER_PDU : constant := 252; -- /usr/include/pcap/bpf.h:1223 DLT_NETLINK : constant := 253; -- /usr/include/pcap/bpf.h:1228 DLT_BLUETOOTH_LINUX_MONITOR : constant := 254; -- /usr/include/pcap/bpf.h:1233 DLT_BLUETOOTH_BREDR_BB : constant := 255; -- /usr/include/pcap/bpf.h:1239 DLT_BLUETOOTH_LE_LL_WITH_PHDR : constant := 256; -- /usr/include/pcap/bpf.h:1244 DLT_PROFIBUS_DL : constant := 257; -- /usr/include/pcap/bpf.h:1249 DLT_PKTAP : constant := 258; -- /usr/include/pcap/bpf.h:1298 DLT_EPON : constant := 259; -- /usr/include/pcap/bpf.h:1306 DLT_IPMI_HPM_2 : constant := 260; -- /usr/include/pcap/bpf.h:1312 DLT_MATCHING_MAX : constant := 260; -- /usr/include/pcap/bpf.h:1314 -- arg-macro: function DLT_CLASS (x) -- return (x) and 16#03ff0000#; DLT_CLASS_NETBSD_RAWAF : constant := 16#02240000#; -- /usr/include/pcap/bpf.h:1330 -- arg-macro: function DLT_NETBSD_RAWAF (af) -- return DLT_CLASS_NETBSD_RAWAF or (af); -- arg-macro: function DLT_NETBSD_RAWAF_AF (x) -- return (x) and 16#0000ffff#; -- arg-macro: function DLT_IS_NETBSD_RAWAF (x) -- return DLT_CLASS(x) = DLT_CLASS_NETBSD_RAWAF; -- arg-macro: function BPF_CLASS (code) -- return (code) and 16#07#; BPF_LD : constant := 16#00#; -- /usr/include/pcap/bpf.h:1351 BPF_LDX : constant := 16#01#; -- /usr/include/pcap/bpf.h:1352 BPF_ST : constant := 16#02#; -- /usr/include/pcap/bpf.h:1353 BPF_STX : constant := 16#03#; -- /usr/include/pcap/bpf.h:1354 BPF_ALU : constant := 16#04#; -- /usr/include/pcap/bpf.h:1355 BPF_JMP : constant := 16#05#; -- /usr/include/pcap/bpf.h:1356 BPF_RET : constant := 16#06#; -- /usr/include/pcap/bpf.h:1357 BPF_MISC : constant := 16#07#; -- /usr/include/pcap/bpf.h:1358 -- arg-macro: function BPF_SIZE (code) -- return (code) and 16#18#; BPF_W : constant := 16#00#; -- /usr/include/pcap/bpf.h:1362 BPF_H : constant := 16#08#; -- /usr/include/pcap/bpf.h:1363 BPF_B : constant := 16#10#; -- /usr/include/pcap/bpf.h:1364 -- arg-macro: function BPF_MODE (code) -- return (code) and 16#e0#; BPF_IMM : constant := 16#00#; -- /usr/include/pcap/bpf.h:1367 BPF_ABS : constant := 16#20#; -- /usr/include/pcap/bpf.h:1368 BPF_IND : constant := 16#40#; -- /usr/include/pcap/bpf.h:1369 BPF_MEM : constant := 16#60#; -- /usr/include/pcap/bpf.h:1370 BPF_LEN : constant := 16#80#; -- /usr/include/pcap/bpf.h:1371 BPF_MSH : constant := 16#a0#; -- /usr/include/pcap/bpf.h:1372 -- arg-macro: function BPF_OP (code) -- return (code) and 16#f0#; BPF_ADD : constant := 16#00#; -- /usr/include/pcap/bpf.h:1378 BPF_SUB : constant := 16#10#; -- /usr/include/pcap/bpf.h:1379 BPF_MUL : constant := 16#20#; -- /usr/include/pcap/bpf.h:1380 BPF_DIV : constant := 16#30#; -- /usr/include/pcap/bpf.h:1381 BPF_OR : constant := 16#40#; -- /usr/include/pcap/bpf.h:1382 BPF_AND : constant := 16#50#; -- /usr/include/pcap/bpf.h:1383 BPF_LSH : constant := 16#60#; -- /usr/include/pcap/bpf.h:1384 BPF_RSH : constant := 16#70#; -- /usr/include/pcap/bpf.h:1385 BPF_NEG : constant := 16#80#; -- /usr/include/pcap/bpf.h:1386 BPF_MOD : constant := 16#90#; -- /usr/include/pcap/bpf.h:1387 BPF_XOR : constant := 16#a0#; -- /usr/include/pcap/bpf.h:1388 BPF_JA : constant := 16#00#; -- /usr/include/pcap/bpf.h:1395 BPF_JEQ : constant := 16#10#; -- /usr/include/pcap/bpf.h:1396 BPF_JGT : constant := 16#20#; -- /usr/include/pcap/bpf.h:1397 BPF_JGE : constant := 16#30#; -- /usr/include/pcap/bpf.h:1398 BPF_JSET : constant := 16#40#; -- /usr/include/pcap/bpf.h:1399 -- arg-macro: function BPF_SRC (code) -- return (code) and 16#08#; BPF_K : constant := 16#00#; -- /usr/include/pcap/bpf.h:1412 BPF_X : constant := 16#08#; -- /usr/include/pcap/bpf.h:1413 -- arg-macro: function BPF_RVAL (code) -- return (code) and 16#18#; BPF_A : constant := 16#10#; -- /usr/include/pcap/bpf.h:1417 -- arg-macro: function BPF_MISCOP (code) -- return (code) and 16#f8#; BPF_TAX : constant := 16#00#; -- /usr/include/pcap/bpf.h:1422 BPF_TXA : constant := 16#80#; -- /usr/include/pcap/bpf.h:1439 -- arg-macro: procedure BPF_STMT (code, k) -- { (u_short)(code), 0, 0, k } -- arg-macro: procedure BPF_JUMP (code, k, jt, jf) -- { (u_short)(code), jt, jf, k } BPF_MEMWORDS : constant := 16; -- /usr/include/pcap/bpf.h:1483 --- -- * Copyright (c) 1990, 1991, 1992, 1993, 1994, 1995, 1996, 1997 -- * The Regents of the University of California. All rights reserved. -- * -- * This code is derived from the Stanford/CMU enet packet filter, -- * (net/enet.c) distributed as part of 4.3BSD, and code contributed -- * to Berkeley by <NAME> and <NAME> both of Lawrence -- * Berkeley Laboratory. -- * -- * Redistribution and use in source and binary forms, with or without -- * modification, are permitted provided that the following conditions -- * are met: -- * 1. Redistributions of source code must retain the above copyright -- * notice, this list of conditions and the following disclaimer. -- * 2. Redistributions in binary form must reproduce the above copyright -- * notice, this list of conditions and the following disclaimer in the -- * documentation and/or other materials provided with the distribution. -- * 3. All advertising materials mentioning features or use of this software -- * must display the following acknowledgement: -- * This product includes software developed by the University of -- * California, Berkeley and its contributors. -- * 4. Neither the name of the University nor the names of its contributors -- * may be used to endorse or promote products derived from this software -- * without specific prior written permission. -- * -- * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND -- * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE -- * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE -- * ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE -- * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL -- * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS -- * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) -- * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT -- * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY -- * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF -- * SUCH DAMAGE. -- * -- * @(#)bpf.h 7.1 (Berkeley) 5/7/91 -- -- * This is libpcap's cut-down version of bpf.h; it includes only -- * the stuff needed for the code generator and the userland BPF -- * interpreter, and the libpcap APIs for setting filters, etc.. -- * -- * "pcap-bpf.c" will include the native OS version, as it deals with -- * the OS's BPF implementation. -- * -- * At least two programs found by Google Code Search explicitly includes -- * <pcap/bpf.h> (even though <pcap.h>/<pcap/pcap.h> includes it for you), -- * so moving that stuff to <pcap/pcap.h> would break the build for some -- * programs. -- -- * If we've already included <net/bpf.h>, don't re-define this stuff. -- * We assume BSD-style multiple-include protection in <net/bpf.h>, -- * which is true of all but the oldest versions of FreeBSD and NetBSD, -- * or Tru64 UNIX-style multiple-include protection (or, at least, -- * Tru64 UNIX 5.x-style; I don't have earlier versions available to check), -- * or AIX-style multiple-include protection (or, at least, AIX 5.x-style; -- * I don't have earlier versions available to check). -- * -- * We do not check for BPF_MAJOR_VERSION, as that's defined by -- * <linux/filter.h>, which is directly or indirectly included in some -- * programs that also include pcap.h, and <linux/filter.h> doesn't -- * define stuff we need. -- * -- * This also provides our own multiple-include protection. -- -- BSD style release date subtype bpf_int32 is int; -- /usr/include/pcap/bpf.h:85 subtype bpf_u_int32 is unsigned; -- /usr/include/pcap/bpf.h:86 -- * Alignment macros. BPF_WORDALIGN rounds up to the next -- * even multiple of BPF_ALIGNMENT. -- * -- * Tcpdump's print-pflog.c uses this, so we define it here. -- -- * Structure for "pcap_compile()", "pcap_setfilter()", etc.. -- type bpf_insn; type bpf_program is record bf_len : aliased unsigned; -- /usr/include/pcap/bpf.h:106 bf_insns : access bpf_insn; -- /usr/include/pcap/bpf.h:107 end record with Convention => C_Pass_By_Copy; -- /usr/include/pcap/bpf.h:105 -- * Link-layer header type codes. -- * -- * Do *NOT* add new values to this list without asking -- * "<EMAIL>" for a value. Otherwise, you run -- * the risk of using a value that's already being used for some other -- * purpose, and of having tools that read libpcap-format captures not -- * being able to handle captures with your new DLT_ value, with no hope -- * that they will ever be changed to do so (as that would destroy their -- * ability to read captures using that value for that other purpose). -- * -- * See -- * -- * http://www.tcpdump.org/linktypes.html -- * -- * for detailed descriptions of some of these link-layer header types. -- -- * These are the types that are the same on all platforms, and that -- * have been defined by <net/bpf.h> for ages. -- -- * These are types that are different on some platforms, and that -- * have been defined by <net/bpf.h> for ages. We use #ifdefs to -- * detect the BSDs that define them differently from the traditional -- * libpcap <net/bpf.h> -- * -- * XXX - DLT_ATM_RFC1483 is 13 in BSD/OS, and DLT_RAW is 14 in BSD/OS, -- * but I don't know what the right #define is for BSD/OS. -- -- * Given that the only OS that currently generates BSD/OS SLIP or PPP -- * is, well, BSD/OS, arguably everybody should have chosen its values -- * for DLT_SLIP_BSDOS and DLT_PPP_BSDOS, which are 15 and 16, but they -- * didn't. So it goes. -- -- * 17 was used for DLT_PFLOG in OpenBSD; it no longer is. -- * -- * It was DLT_LANE8023 in SuSE 6.3, so we defined LINKTYPE_PFLOG -- * as 117 so that pflog captures would use a link-layer header type -- * value that didn't collide with any other values. On all -- * platforms other than OpenBSD, we defined DLT_PFLOG as 117, -- * and we mapped between LINKTYPE_PFLOG and DLT_PFLOG. -- * -- * OpenBSD eventually switched to using 117 for DLT_PFLOG as well. -- * -- * Don't use 17 for anything else. -- -- * 18 is used for DLT_PFSYNC in OpenBSD, NetBSD, DragonFly BSD and -- * Mac OS X; don't use it for anything else. (FreeBSD uses 121, -- * which collides with DLT_HHDLC, even though it doesn't use 18 -- * for anything and doesn't appear to have ever used it for anything.) -- * -- * We define it as 18 on those platforms; it is, unfortunately, used -- * for DLT_CIP in Suse 6.3, so we don't define it as DLT_PFSYNC -- * in general. As the packet format for it, like that for -- * DLT_PFLOG, is not only OS-dependent but OS-version-dependent, -- * we don't support printing it in tcpdump except on OSes that -- * have the relevant header files, so it's not that useful on -- * other platforms. -- -- * Apparently Redback uses this for its SmartEdge 400/800. I hope -- * nobody else decided to use it, too. -- -- * These values are defined by NetBSD; other platforms should refrain from -- * using them for other purposes, so that NetBSD savefiles with link -- * types of 50 or 51 can be read as this type on all platforms. -- -- * The Axent Raptor firewall - now the Symantec Enterprise Firewall - uses -- * a link-layer type of 99 for the tcpdump it supplies. The link-layer -- * header has 6 bytes of unknown data, something that appears to be an -- * Ethernet type, and 36 bytes that appear to be 0 in at least one capture -- * I've seen. -- -- * Values between 100 and 103 are used in capture file headers as -- * link-layer header type LINKTYPE_ values corresponding to DLT_ types -- * that differ between platforms; don't use those values for new DLT_ -- * new types. -- -- * Values starting with 104 are used for newly-assigned link-layer -- * header type values; for those link-layer header types, the DLT_ -- * value returned by pcap_datalink() and passed to pcap_open_dead(), -- * and the LINKTYPE_ value that appears in capture files, are the -- * same. -- * -- * DLT_MATCHING_MIN is the lowest such value; DLT_MATCHING_MAX is -- * the highest such value. -- -- * This value was defined by libpcap 0.5; platforms that have defined -- * it with a different value should define it here with that value - -- * a link type of 104 in a save file will be mapped to DLT_C_HDLC, -- * whatever value that happens to be, so programs will correctly -- * handle files with that link type regardless of the value of -- * DLT_C_HDLC. -- * -- * The name DLT_C_HDLC was used by BSD/OS; we use that name for source -- * compatibility with programs written for BSD/OS. -- * -- * libpcap 0.5 defined it as DLT_CHDLC; we define DLT_CHDLC as well, -- * for source compatibility with programs written for libpcap 0.5. -- -- * 106 is reserved for Linux Classical IP over ATM; it's like DLT_RAW, -- * except when it isn't. (I.e., sometimes it's just raw IP, and -- * sometimes it isn't.) We currently handle it as DLT_LINUX_SLL, -- * so that we don't have to worry about the link-layer header.) -- -- * Frame Relay; BSD/OS has a DLT_FR with a value of 11, but that collides -- * with other values. -- * DLT_FR and DLT_FRELAY packets start with the Q.922 Frame Relay header -- * (DLCI, etc.). -- -- * OpenBSD DLT_LOOP, for loopback devices; it's like DLT_NULL, except -- * that the AF_ type in the link-layer header is in network byte order. -- * -- * DLT_LOOP is 12 in OpenBSD, but that's DLT_RAW in other OSes, so -- * we don't use 12 for it in OSes other than OpenBSD. -- -- * Encapsulated packets for IPsec; DLT_ENC is 13 in OpenBSD, but that's -- * DLT_SLIP_BSDOS in NetBSD, so we don't use 13 for it in OSes other -- * than OpenBSD. -- -- * Values between 110 and 112 are reserved for use in capture file headers -- * as link-layer types corresponding to DLT_ types that might differ -- * between platforms; don't use those values for new DLT_ types -- * other than the corresponding DLT_ types. -- -- * This is for Linux cooked sockets. -- -- * Apple LocalTalk hardware. -- -- * Acorn Econet. -- -- * Reserved for use with OpenBSD ipfilter. -- -- * OpenBSD DLT_PFLOG. -- -- * Registered for Cisco-internal use. -- -- * For 802.11 cards using the Prism II chips, with a link-layer -- * header including Prism monitor mode information plus an 802.11 -- * header. -- -- * Reserved for Aironet 802.11 cards, with an Aironet link-layer header -- * (see Doug Ambrisko's FreeBSD patches). -- -- * Sigh. -- * -- * This was reserved for Siemens HiPath HDLC on 2002-01-25, as -- * requested by <NAME>. -- * -- * On 2004-02-25, a FreeBSD checkin to sys/net/bpf.h was made that -- * assigned 121 as DLT_PFSYNC. Its libpcap does DLT_ <-> LINKTYPE_ -- * mapping, so it probably supports capturing on the pfsync device -- * but not saving the captured data to a pcap file. -- * -- * OpenBSD, from which pf came, however, uses 18 for DLT_PFSYNC; -- * their libpcap does no DLT_ <-> LINKTYPE_ mapping, so it would -- * use 18 in pcap files as well. -- * -- * NetBSD and DragonFly BSD also use 18 for DLT_PFSYNC; their -- * libpcaps do DLT_ <-> LINKTYPE_ mapping, and neither has an entry -- * for DLT_PFSYNC, so it might not be able to write out dump files -- * with 18 as the link-layer header type. (Earlier versions might -- * not have done mapping, in which case they'd work the same way -- * OpenBSD does.) -- * -- * Mac OS X defines it as 18, but doesn't appear to use it as of -- * Mac OS X 10.7.3. Its libpcap does DLT_ <-> LINKTYPE_ mapping. -- * -- * We'll define DLT_PFSYNC as 121 on FreeBSD and define it as 18 on -- * all other platforms. We'll define DLT_HHDLC as 121 on everything -- * except for FreeBSD; anybody who wants to compile, on FreeBSD, code -- * that uses DLT_HHDLC is out of luck. -- * -- * We'll define LINKTYPE_PFSYNC as 18, *even on FreeBSD*, and map -- * it, so that savefiles won't use 121 for PFSYNC - they'll all -- * use 18. Code that uses pcap_datalink() to determine the link-layer -- * header type of a savefile won't, when built and run on FreeBSD, -- * be able to distinguish between LINKTYPE_PFSYNC and LINKTYPE_HHDLC -- * capture files; code that doesn't, such as the code in Wireshark, -- * will be able to distinguish between them. -- -- * This is for RFC 2625 IP-over-Fibre Channel. -- * -- * This is not for use with raw Fibre Channel, where the link-layer -- * header starts with a Fibre Channel frame header; it's for IP-over-FC, -- * where the link-layer header starts with an RFC 2625 Network_Header -- * field. -- -- * This is for Full Frontal ATM on Solaris with SunATM, with a -- * pseudo-header followed by an AALn PDU. -- * -- * There may be other forms of Full Frontal ATM on other OSes, -- * with different pseudo-headers. -- * -- * If ATM software returns a pseudo-header with VPI/VCI information -- * (and, ideally, packet type information, e.g. signalling, ILMI, -- * LANE, LLC-multiplexed traffic, etc.), it should not use -- * DLT_ATM_RFC1483, but should get a new DLT_ value, so tcpdump -- * and the like don't have to infer the presence or absence of a -- * pseudo-header and the form of the pseudo-header. -- -- -- * Reserved as per request from <NAME> <<EMAIL>> -- * for private use. -- -- * Header for 802.11 plus a number of bits of link-layer information -- * including radio information, used by some recent BSD drivers as -- * well as the madwifi Atheros driver for Linux. -- -- * Reserved for the TZSP encapsulation, as per request from -- * <NAME> <<EMAIL>> -- * TZSP is a generic encapsulation for any other link type, -- * which includes a means to include meta-information -- * with the packet, e.g. signal strength and channel -- * for 802.11 packets. -- -- * BSD's ARCNET headers have the source host, destination host, -- * and type at the beginning of the packet; that's what's handed -- * up to userland via BPF. -- * -- * Linux's ARCNET headers, however, have a 2-byte offset field -- * between the host IDs and the type; that's what's handed up -- * to userland via PF_PACKET sockets. -- * -- * We therefore have to have separate DLT_ values for them. -- -- * Juniper-private data link types, as per request from -- * <NAME> <<EMAIL>>. The DLT_s are used -- * for passing on chassis-internal metainformation such as -- * QOS profiles, etc.. -- -- * Apple IP-over-IEEE 1394, as per a request from <NAME> -- * <<EMAIL>>. The header that's presented is an Ethernet-like -- * header: -- * -- * #define FIREWIRE_EUI64_LEN 8 -- * struct firewire_header { -- * u_char firewire_dhost[FIREWIRE_EUI64_LEN]; -- * u_char firewire_shost[FIREWIRE_EUI64_LEN]; -- * u_short firewire_type; -- * }; -- * -- * with "firewire_type" being an Ethernet type value, rather than, -- * for example, raw GASP frames being handed up. -- -- * Various SS7 encapsulations, as per a request from <NAME> -- * <jeff.morriss[AT]ulticom.com> and subsequent discussions. -- -- * DOCSIS MAC frames. -- -- * Linux-IrDA packets. Protocol defined at http://www.irda.org. -- * Those packets include IrLAP headers and above (IrLMP...), but -- * don't include Phy framing (SOF/EOF/CRC & byte stuffing), because Phy -- * framing can be handled by the hardware and depend on the bitrate. -- * This is exactly the format you would get capturing on a Linux-IrDA -- * interface (irdaX), but not on a raw serial port. -- * Note the capture is done in "Linux-cooked" mode, so each packet include -- * a fake packet header (struct sll_header). This is because IrDA packet -- * decoding is dependant on the direction of the packet (incomming or -- * outgoing). -- * When/if other platform implement IrDA capture, we may revisit the -- * issue and define a real DLT_IRDA... -- * Jean II -- -- * Reserved for IBM SP switch and IBM Next Federation switch. -- -- * Reserved for private use. If you have some link-layer header type -- * that you want to use within your organization, with the capture files -- * using that link-layer header type not ever be sent outside your -- * organization, you can use these values. -- * -- * No libpcap release will use these for any purpose, nor will any -- * tcpdump release use them, either. -- * -- * Do *NOT* use these in capture files that you expect anybody not using -- * your private versions of capture-file-reading tools to read; in -- * particular, do *NOT* use them in products, otherwise you may find that -- * people won't be able to use tcpdump, or snort, or Ethereal, or... to -- * read capture files from your firewall/intrusion detection/traffic -- * monitoring/etc. appliance, or whatever product uses that DLT_ value, -- * and you may also find that the developers of those applications will -- * not accept patches to let them read those files. -- * -- * Also, do not use them if somebody might send you a capture using them -- * for *their* private type and tools using them for *your* private type -- * would have to read them. -- * -- * Instead, ask "<EMAIL>" for a new DLT_ value, -- * as per the comment above, and use the type you're given. -- -- * For future use with 802.11 captures - defined by AbsoluteValue -- * Systems to store a number of bits of link-layer information -- * including radio information: -- * -- * http://www.shaftnet.org/~pizza/software/capturefrm.txt -- * -- * but it might be used by some non-AVS drivers now or in the -- * future. -- -- * Juniper-private data link type, as per request from -- * <NAME> <<EMAIL>>. The DLT_s are used -- * for passing on chassis-internal metainformation such as -- * QOS profiles, etc.. -- -- * BACnet MS/TP frames. -- -- * Another PPP variant as per request from <NAME> <<EMAIL>>. -- * -- * This is used in some OSes to allow a kernel socket filter to distinguish -- * between incoming and outgoing packets, on a socket intended to -- * supply pppd with outgoing packets so it can do dial-on-demand and -- * hangup-on-lack-of-demand; incoming packets are filtered out so they -- * don't cause pppd to hold the connection up (you don't want random -- * input packets such as port scans, packets from old lost connections, -- * etc. to force the connection to stay up). -- * -- * The first byte of the PPP header (0xff03) is modified to accomodate -- * the direction - 0x00 = IN, 0x01 = OUT. -- -- * Names for backwards compatibility with older versions of some PPP -- * software; new software should use DLT_PPP_PPPD. -- -- * Juniper-private data link type, as per request from -- * <NAME> <<EMAIL>>. The DLT_s are used -- * for passing on chassis-internal metainformation such as -- * QOS profiles, cookies, etc.. -- -- * Requested by <NAME> <<EMAIL>> for use in Gcom's T1/E1 line -- * monitoring equipment. -- -- * Juniper-private data link type, as per request from -- * <NAME> <<EMAIL>>. The DLT_ is used -- * for internal communication to Physical Interface Cards (PIC) -- -- * Link types requested by <NAME> <<EMAIL>> of Endace -- * Measurement Systems. They add an ERF header (see -- * http://www.endace.com/support/EndaceRecordFormat.pdf) in front of -- * the link-layer header. -- -- * Requested by <NAME> <<EMAIL>> for raw LAPD -- * for vISDN (http://www.orlandi.com/visdn/). Its link-layer header -- * includes additional information before the LAPD header, so it's -- * not necessarily a generic LAPD header. -- -- * Juniper-private data link type, as per request from -- * <NAME> <<EMAIL>>. -- * The DLT_ are used for prepending meta-information -- * like interface index, interface name -- * before standard Ethernet, PPP, Frelay & C-HDLC Frames -- -- * Multi Link Frame Relay (FRF.16) -- -- * Juniper-private data link type, as per request from -- * <NAME> <<EMAIL>>. -- * The DLT_ is used for internal communication with a -- * voice Adapter Card (PIC) -- -- * Arinc 429 frames. -- * DLT_ requested by <NAME> <<EMAIL>>. -- * Every frame contains a 32bit A429 label. -- * More documentation on Arinc 429 can be found at -- * http://www.condoreng.com/support/downloads/tutorials/ARINCTutorial.pdf -- -- * Arinc 653 Interpartition Communication messages. -- * DLT_ requested by <NAME> <<EMAIL>>. -- * Please refer to the A653-1 standard for more information. -- -- * USB packets, beginning with a USB setup header; requested by -- * P<NAME> <<EMAIL>>. -- -- * Bluetooth HCI UART transport layer (part H:4); requested by -- * Paolo Abeni. -- -- * IEEE 802.16 MAC Common Part Sublayer; requested by <NAME> -- * <<EMAIL>>. -- -- * USB packets, beginning with a Linux USB header; requested by -- * Paolo Abeni <<EMAIL>>. -- -- * Controller Area Network (CAN) v. 2.0B packets. -- * DLT_ requested by <NAME> <<EMAIL>>. -- * Used to dump CAN packets coming from a CAN Vector board. -- * More documentation on the CAN v2.0B frames can be found at -- * http://www.can-cia.org/downloads/?269 -- -- * IEEE 802.15.4, with address fields padded, as is done by Linux -- * drivers; requested by <NAME>. -- -- * Per Packet Information encapsulated packets. -- * DLT_ requested by <NAME> <<EMAIL>>. -- -- * Header for 802.16 MAC Common Part Sublayer plus a radiotap radio header; -- * requested by <NAME>. -- -- * Juniper-private data link type, as per request from -- * <NAME> <<EMAIL>>. -- * The DLT_ is used for internal communication with a -- * integrated service module (ISM). -- -- * IEEE 802.15.4, exactly as it appears in the spec (no padding, no -- * nothing); requested by <NAME> <<EMAIL>>. -- * For this one, we expect the FCS to be present at the end of the frame; -- * if the frame has no FCS, DLT_IEEE802_15_4_NOFCS should be used. -- -- * Various link-layer types, with a pseudo-header, for SITA -- * (http://www.sita.aero/); requested by <NAME> (<EMAIL>). -- -- * Various link-layer types, with a pseudo-header, for Endace DAG cards; -- * encapsulates Endace ERF records. Requested by <NAME> -- * <<EMAIL>>. -- -- * Special header prepended to Ethernet packets when capturing from a -- * u10 Networks board. Requested by <NAME> -- * <<EMAIL>>. -- -- * IPMB packet for IPMI, beginning with the I2C slave address, followed -- * by the netFn and LUN, etc.. Requested by <NAME> -- * <<EMAIL>>. -- -- * Juniper-private data link type, as per request from -- * <NAME> <<EMAIL>>. -- * The DLT_ is used for capturing data on a secure tunnel interface. -- -- * Bluetooth HCI UART transport layer (part H:4), with pseudo-header -- * that includes direction information; requested by Paolo Abeni. -- -- * AX.25 packet with a 1-byte KISS header; see -- * -- * http://www.ax25.net/kiss.htm -- * -- * as per <NAME> <<EMAIL>>. -- -- * LAPD packets from an ISDN channel, starting with the address field, -- * with no pseudo-header. -- * Requested by <NAME> <<EMAIL>>. -- -- * Variants of various link-layer headers, with a one-byte direction -- * pseudo-header prepended - zero means "received by this host", -- * non-zero (any non-zero value) means "sent by this host" - as per -- * <NAME> <<EMAIL>>. -- -- * 208 is reserved for an as-yet-unspecified proprietary link-layer -- * type, as requested by <NAME>. -- -- * IPMB with a Linux-specific pseudo-header; as requested by <NAME> -- * <<EMAIL>>. -- -- * FlexRay automotive bus - http://www.flexray.com/ - as requested -- * by <NAME> <<EMAIL>>. -- -- * Media Oriented Systems Transport (MOST) bus for multimedia -- * transport - http://www.mostcooperation.com/ - as requested -- * by <NAME> <<EMAIL>>. -- -- * Local Interconnect Network (LIN) bus for vehicle networks - -- * http://www.lin-subbus.org/ - as requested by <NAME> -- * <<EMAIL>>. -- -- * X2E-private data link type used for serial line capture, -- * as requested by <NAME> <<EMAIL>>. -- -- * X2E-private data link type used for the Xoraya data logger -- * family, as requested by <NAME> <<EMAIL>>. -- -- * IEEE 802.15.4, exactly as it appears in the spec (no padding, no -- * nothing), but with the PHY-level data for non-ASK PHYs (4 octets -- * of 0 as preamble, one octet of SFD, one octet of frame length+ -- * reserved bit, and then the MAC-layer data, starting with the -- * frame control field). -- * -- * Requested by <NAME> <<EMAIL>>. -- -- -- * <NAME> <<EMAIL>> requested this for -- * captures from the Linux kernel /dev/input/eventN devices. This -- * is used to communicate keystrokes and mouse movements from the -- * Linux kernel to display systems, such as Xorg. -- -- * GSM Um and Abis interfaces, preceded by a "gsmtap" header. -- * -- * Requested by <NAME> <<EMAIL>>. -- -- * MPLS, with an MPLS label as the link-layer header. -- * Requested by <NAME> <<EMAIL>> on behalf -- * of OpenBSD. -- -- * USB packets, beginning with a Linux USB header, with the USB header -- * padded to 64 bytes; required for memory-mapped access. -- -- * DECT packets, with a pseudo-header; requested by -- * <NAME> <<EMAIL>>. -- -- * From: "<NAME> (GSFC-582.0)[SGT INC]" <<EMAIL>> -- * Date: Mon, 11 May 2009 11:18:30 -0500 -- * -- * DLT_AOS. We need it for AOS Space Data Link Protocol. -- * I have already written dissectors for but need an OK from -- * legal before I can submit a patch. -- * -- -- * Wireless HART (Highway Addressable Remote Transducer) -- * From the HART Communication Foundation -- * IES/PAS 62591 -- * -- * Requested by <NAME> <<EMAIL>>. -- -- * Fibre Channel FC-2 frames, beginning with a Frame_Header. -- * Requested by <NAME> <<EMAIL>>. -- -- * Fibre Channel FC-2 frames, beginning with an encoding of the -- * SOF, and ending with an encoding of the EOF. -- * -- * The encodings represent the frame delimiters as 4-byte sequences -- * representing the corresponding ordered sets, with K28.5 -- * represented as 0xBC, and the D symbols as the corresponding -- * byte values; for example, SOFi2, which is K28.5 - D21.5 - D1.2 - D21.2, -- * is represented as 0xBC 0xB5 0x55 0x55. -- * -- * Requested by <NAME> <<EMAIL>>. -- -- * Solaris ipnet pseudo-header; requested by <NAME> <<EMAIL>>. -- * -- * The pseudo-header starts with a one-byte version number; for version 2, -- * the pseudo-header is: -- * -- * struct dl_ipnetinfo { -- * u_int8_t dli_version; -- * u_int8_t dli_family; -- * u_int16_t dli_htype; -- * u_int32_t dli_pktlen; -- * u_int32_t dli_ifindex; -- * u_int32_t dli_grifindex; -- * u_int32_t dli_zsrc; -- * u_int32_t dli_zdst; -- * }; -- * -- * dli_version is 2 for the current version of the pseudo-header. -- * -- * dli_family is a Solaris address family value, so it's 2 for IPv4 -- * and 26 for IPv6. -- * -- * dli_htype is a "hook type" - 0 for incoming packets, 1 for outgoing -- * packets, and 2 for packets arriving from another zone on the same -- * machine. -- * -- * dli_pktlen is the length of the packet data following the pseudo-header -- * (so the captured length minus dli_pktlen is the length of the -- * pseudo-header, assuming the entire pseudo-header was captured). -- * -- * dli_ifindex is the interface index of the interface on which the -- * packet arrived. -- * -- * dli_grifindex is the group interface index number (for IPMP interfaces). -- * -- * dli_zsrc is the zone identifier for the source of the packet. -- * -- * dli_zdst is the zone identifier for the destination of the packet. -- * -- * A zone number of 0 is the global zone; a zone number of 0xffffffff -- * means that the packet arrived from another host on the network, not -- * from another zone on the same machine. -- * -- * An IPv4 or IPv6 datagram follows the pseudo-header; dli_family indicates -- * which of those it is. -- -- * CAN (Controller Area Network) frames, with a pseudo-header as supplied -- * by Linux SocketCAN. See Documentation/networking/can.txt in the Linux -- * source. -- * -- * Requested by <NAME> <<EMAIL>>. -- -- * Raw IPv4/IPv6; different from DLT_RAW in that the DLT_ value specifies -- * whether it's v4 or v6. Requested by <NAME> <<EMAIL>>. -- -- * IEEE 802.15.4, exactly as it appears in the spec (no padding, no -- * nothing), and with no FCS at the end of the frame; requested by -- * <NAME> <<EMAIL>>. -- -- * Raw D-Bus: -- * -- * http://www.freedesktop.org/wiki/Software/dbus -- * -- * messages: -- * -- * http://dbus.freedesktop.org/doc/dbus-specification.html#message-protocol-messages -- * -- * starting with the endianness flag, followed by the message type, etc., -- * but without the authentication handshake before the message sequence: -- * -- * http://dbus.freedesktop.org/doc/dbus-specification.html#auth-protocol -- * -- * Requested by <NAME> <<EMAIL>>. -- -- * Juniper-private data link type, as per request from -- * <NAME> <<EMAIL>>. -- -- * DVB-CI (DVB Common Interface for communication between a PC Card -- * module and a DVB receiver). See -- * -- * http://www.kaiser.cx/pcap-dvbci.html -- * -- * for the specification. -- * -- * Requested by <NAME> <<EMAIL>>. -- -- * Variant of 3GPP TS 27.010 multiplexing protocol (similar to, but -- * *not* the same as, 27.010). Requested by <NAME> -- * <<EMAIL>>. -- -- * STANAG 5066 D_PDUs. Requested by <NAME> -- * <<EMAIL>>. -- -- * Juniper-private data link type, as per request from -- * <NAME> <<EMAIL>>. -- -- * NetFilter LOG messages -- * (payload of netlink NFNL_SUBSYS_ULOG/NFULNL_MSG_PACKET packets) -- * -- * Requested by <NAME> <<EMAIL>> -- -- * Hilscher Gesellschaft fuer Systemautomation mbH link-layer type -- * for Ethernet packets with a 4-byte pseudo-header and always -- * with the payload including the FCS, as supplied by their -- * netANALYZER hardware and software. -- * -- * Requested by <NAME> <<EMAIL>> -- -- * Hilscher Gesellschaft fuer Systemautomation mbH link-layer type -- * for Ethernet packets with a 4-byte pseudo-header and FCS and -- * with the Ethernet header preceded by 7 bytes of preamble and -- * 1 byte of SFD, as supplied by their netANALYZER hardware and -- * software. -- * -- * Requested by <NAME> <<EMAIL>> -- -- * IP-over-InfiniBand, as specified by RFC 4391. -- * -- * Requested by <NAME> <<EMAIL>>. -- -- * MPEG-2 transport stream (ISO 13818-1/ITU-T H.222.0). -- * -- * Requested by <NAME> <<EMAIL>>. -- -- * ng4T GmbH's UMTS Iub/Iur-over-ATM and Iub/Iur-over-IP format as -- * used by their ng40 protocol tester. -- * -- * Requested by <NAME> <<EMAIL>>. -- -- * Pseudo-header giving adapter number and flags, followed by an NFC -- * (Near-Field Communications) Logical Link Control Protocol (LLCP) PDU, -- * as specified by NFC Forum Logical Link Control Protocol Technical -- * Specification LLCP 1.1. -- * -- * Requested by <NAME> <<EMAIL>>. -- -- * 245 is used as LINKTYPE_PFSYNC; do not use it for any other purpose. -- * -- * DLT_PFSYNC has different values on different platforms, and all of -- * them collide with something used elsewhere. On platforms that -- * don't already define it, define it as 245. -- -- * Raw InfiniBand packets, starting with the Local Routing Header. -- * -- * Requested by <NAME> <<EMAIL>>. -- -- * SCTP, with no lower-level protocols (i.e., no IPv4 or IPv6). -- * -- * Requested by <NAME> <<EMAIL>>. -- -- * USB packets, beginning with a USBPcap header. -- * -- * Requested by <NAME> <<EMAIL>> -- -- * Schweitzer Engineering Laboratories "RTAC" product serial-line -- * packets. -- * -- * Requested by <NAME> <<EMAIL>>. -- -- * Bluetooth Low Energy air interface link-layer packets. -- * -- * Requested by <NAME> <<EMAIL>>. -- -- * DLT type for upper-protocol layer PDU saves from wireshark. -- * -- * the actual contents are determined by two TAGs stored with each -- * packet: -- * EXP_PDU_TAG_LINKTYPE the link type (LINKTYPE_ value) of the -- * original packet. -- * -- * EXP_PDU_TAG_PROTO_NAME the name of the wireshark dissector -- * that can make sense of the data stored. -- -- * DLT type for the netlink protocol (nlmon devices). -- -- * Bluetooth Linux Monitor headers for the BlueZ stack. -- -- * Bluetooth Basic Rate/Enhanced Data Rate baseband packets, as -- * captured by Ubertooth. -- -- * Bluetooth Low Energy link layer packets, as captured by Ubertooth. -- -- * PROFIBUS data link layer. -- -- * Apple's DLT_PKTAP headers. -- * -- * Sadly, the folks at Apple either had no clue that the DLT_USERn values -- * are for internal use within an organization and partners only, and -- * didn't know that the right way to get a link-layer header type is to -- * ask tcpdump.org for one, or knew and didn't care, so they just -- * used DLT_USER2, which causes problems for everything except for -- * their version of tcpdump. -- * -- * So I'll just give them one; hopefully this will show up in a -- * libpcap release in time for them to get this into 10.10 Big Sur -- * or whatever Mavericks' successor is called. LINKTYPE_PKTAP -- * will be 258 *even on OS X*; that is *intentional*, so that -- * PKTAP files look the same on *all* OSes (different OSes can have -- * different numerical values for a given DLT_, but *MUST NOT* have -- * different values for what goes in a file, as files can be moved -- * between OSes!). -- * -- * When capturing, on a system with a Darwin-based OS, on a device -- * that returns 149 (DLT_USER2 and Apple's DLT_PKTAP) with this -- * version of libpcap, the DLT_ value for the pcap_t will be DLT_PKTAP, -- * and that will continue to be DLT_USER2 on Darwin-based OSes. That way, -- * binary compatibility with Mavericks is preserved for programs using -- * this version of libpcap. This does mean that if you were using -- * DLT_USER2 for some capture device on OS X, you can't do so with -- * this version of libpcap, just as you can't with Apple's libpcap - -- * on OS X, they define DLT_PKTAP to be DLT_USER2, so programs won't -- * be able to distinguish between PKTAP and whatever you were using -- * DLT_USER2 for. -- * -- * If the program saves the capture to a file using this version of -- * libpcap's pcap_dump code, the LINKTYPE_ value in the file will be -- * LINKTYPE_PKTAP, which will be 258, even on Darwin-based OSes. -- * That way, the file will *not* be a DLT_USER2 file. That means -- * that the latest version of tcpdump, when built with this version -- * of libpcap, and sufficiently recent versions of Wireshark will -- * be able to read those files and interpret them correctly; however, -- * Apple's version of tcpdump in OS X 10.9 won't be able to handle -- * them. (Hopefully, Apple will pick up this version of libpcap, -- * and the corresponding version of tcpdump, so that tcpdump will -- * be able to handle the old LINKTYPE_USER2 captures *and* the new -- * LINKTYPE_PKTAP captures.) -- -- * Ethernet packets preceded by a header giving the last 6 octets -- * of the preamble specified by 802.3-2012 Clause 65, section -- * 192.168.127.12 "Transmit". -- -- * IPMI trace packets, as specified by Table 3-20 "Trace Data Block Format" -- * in the PICMG HPM.2 specification. -- -- * DLT and savefile link type values are split into a class and -- * a member of that class. A class value of 0 indicates a regular -- * DLT_/LINKTYPE_ value. -- -- * NetBSD-specific generic "raw" link type. The class value indicates -- * that this is the generic raw type, and the lower 16 bits are the -- * address family we're dealing with. Those values are NetBSD-specific; -- * do not assume that they correspond to AF_ values for your operating -- * system. -- -- * The instruction encodings. -- * -- * Please inform <EMAIL> if you use any -- * of the reserved values, so that we can note that they're used -- * (and perhaps implement it in the reference BPF implementation -- * and encourage its implementation elsewhere). -- -- * The upper 8 bits of the opcode aren't used. BSD/OS used 0x8000. -- -- instruction classes -- ld/ldx fields -- 0x18 reserved; used by BSD/OS -- 0xc0 reserved; used by BSD/OS -- 0xe0 reserved; used by BSD/OS -- alu/jmp fields -- 0xb0 reserved -- 0xc0 reserved -- 0xd0 reserved -- 0xe0 reserved -- 0xf0 reserved -- 0x50 reserved; used on BSD/OS -- 0x60 reserved -- 0x70 reserved -- 0x80 reserved -- 0x90 reserved -- 0xa0 reserved -- 0xb0 reserved -- 0xc0 reserved -- 0xd0 reserved -- 0xe0 reserved -- 0xf0 reserved -- ret - BPF_K and BPF_X also apply -- 0x18 reserved -- misc -- 0x08 reserved -- 0x10 reserved -- 0x18 reserved -- #define BPF_COP 0x20 NetBSD "coprocessor" extensions -- 0x28 reserved -- 0x30 reserved -- 0x38 reserved -- #define BPF_COPX 0x40 NetBSD "coprocessor" extensions -- also used on BSD/OS -- 0x48 reserved -- 0x50 reserved -- 0x58 reserved -- 0x60 reserved -- 0x68 reserved -- 0x70 reserved -- 0x78 reserved -- 0x88 reserved -- 0x90 reserved -- 0x98 reserved -- 0xa0 reserved -- 0xa8 reserved -- 0xb0 reserved -- 0xb8 reserved -- 0xc0 reserved; used on BSD/OS -- 0xc8 reserved -- 0xd0 reserved -- 0xd8 reserved -- 0xe0 reserved -- 0xe8 reserved -- 0xf0 reserved -- 0xf8 reserved -- * The instruction data structure. -- type bpf_insn is record code : aliased unsigned_short; -- /usr/include/pcap/bpf.h:1460 jt : aliased unsigned_char; -- /usr/include/pcap/bpf.h:1461 jf : aliased unsigned_char; -- /usr/include/pcap/bpf.h:1462 k : aliased bpf_u_int32; -- /usr/include/pcap/bpf.h:1463 end record with Convention => C_Pass_By_Copy; -- /usr/include/pcap/bpf.h:1459 -- * Macros for insn array initializers. -- -- * Number of scratch memory words (for BPF_LD|BPF_MEM and BPF_ST). -- end PCAP.Low_Level.pcap_bpf_h; -- end read only
Univalence/CPermCat.agda
JacquesCarette/pi-dual
14
13932
{-# OPTIONS --without-K #-} module CPermCat where open import Level using (zero) open import Data.Nat using (ℕ; _+_; _*_) open import Data.Fin using () renaming (zero to 0F) open import Data.Product using (_,_; uncurry) import Relation.Binary.PropositionalEquality as P using (_≡_; refl; sym; cong₂; isEquivalence) open import Categories.Category using (Category) open import Categories.Groupoid using (Groupoid) open import Categories.Monoidal using (Monoidal) open import Categories.Monoidal.Helpers using (module MonoidalHelperFunctors) open import Categories.Bifunctor using (Bifunctor) open import Categories.NaturalIsomorphism using (NaturalIsomorphism) open import Categories.Monoidal.Braided using (Braided) open import Categories.Monoidal.Symmetric using (Symmetric) open import Categories.RigCategory using (RigCategory; module BimonoidalHelperFunctors) -- open import ConcretePermutation using (CPerm) open import Permutation using (idp; symp; _●p_; _⊎p_; _×p_) open import PermutationProperties using (assocp; lidp; ridp; rinv; linv; 1p⊎1p≡1p; ⊎p●p≡●p⊎p) ------------------------------------------------------------------------------ -- CPerm is is a category -- Permutations can be compared by strict propositional equality CPermCat : Category zero zero zero CPermCat = record { Obj = ℕ ; _⇒_ = CPerm ; _≡_ = P._≡_ ; id = idp ; _∘_ = _●p_ ; assoc = λ {_} {_} {_} {_} {f} {g} {h} → assocp {p₁ = h} {g} {f} ; identityˡ = lidp ; identityʳ = ridp ; equiv = P.isEquivalence ; ∘-resp-≡ = λ { {_} {_} {_} {f} {.f} {g} {.g} P.refl P.refl → P.refl} } -- ... and a groupoid CPermGroupoid : Groupoid CPermCat CPermGroupoid = record { _⁻¹ = symp ; iso = λ {_} {_} {f} → record { isoˡ = linv f ; isoʳ = rinv f } } -- additive bifunctor and monoidal structure ⊎p-bifunctor : Bifunctor CPermCat CPermCat CPermCat ⊎p-bifunctor = record { F₀ = uncurry _+_ ; F₁ = uncurry _⊎p_ ; identity = 1p⊎1p≡1p -- perhaps the weird order below means the underlying combinators should be fixed? ; homomorphism = λ { {_} {_} {_} {p₁ , p₂} {q₁ , q₂} → ⊎p●p≡●p⊎p {f = q₁} {q₂} {p₁} {p₂}} ; F-resp-≡ = uncurry (P.cong₂ _⊎p_) } -- the 0 below is the id from CPermMonoidal module ⊎h = MonoidalHelperFunctors CPermCat ⊎p-bifunctor 0 {- these are all commented out because unite+p and companions are no longer defined! 0⊕x≡x : NaturalIsomorphism ⊎h.id⊗x ⊎h.x 0⊕x≡x = record { F⇒G = record { η = λ _ → unite+p ; commute = λ f → unite+p∘[0⊎x]≡x∘unite+p (f 0F) } ; F⇐G = record { η = λ _ → uniti+p ; commute = λ f → uniti+p∘x≡[0⊎x]∘uniti+p (f 0F) } ; iso = λ X → record { isoˡ = linv uniti+p ; isoʳ = linv unite+p } } x⊕0≡x : NaturalIsomorphism ⊎h.x⊗id ⊎h.x x⊕0≡x = record { F⇒G = record { η = λ _ → uniti+rp ; commute = λ f → uniti+rp∘[x⊎0]≡x∘uniti+rp (f 0F) } ; F⇐G = record { η = λ _ → unite+rp ; commute = λ f → unite+rp∘[x⊎0]≡x∘unite+rp (f 0F) } ; iso = λ X → record { isoˡ = linv unite+rp ; isoʳ = linv uniti+rp } } -} {-- [x⊕y]⊕z≡x⊕[y⊕z] : NaturalIsomorphism ⊎h.[x⊗y]⊗z ⊎h.x⊗[y⊗z] [x⊕y]⊕z≡x⊕[y⊕z] = record { F⇒G = record { η = {!!} ; commute = {!!} } ; F⇐G = record { η = {!!} ; commute = {!!} } ; iso = λ X → record { isoˡ = {!!} ; isoʳ = {!!} } } -- and a monoidal category (additive) M⊕ : Monoidal CPermCat M⊕ = record { ⊗ = ⊎p-bifunctor ; id = 0 ; identityˡ = 0⊕x≡x ; identityʳ = x⊕0≡x ; assoc = [x⊕y]⊕z≡x⊕[y⊕z] ; triangle = {!!} ; pentagon = {!!} } -- multiplicative bifunctor and monoidal structure ×p-bifunctor : Bifunctor CPermCat CPermCat CPermCat ×p-bifunctor = record { F₀ = λ { (m , n) → m * n} ; F₁ = λ { (p₁ , p₂) → p₁ ×p p₂ } ; identity = λ { {m , n} → 1p×1p≡1p {m} } ; homomorphism = λ { {_} {_} {_} {p₁ , p₂} {q₁ , q₂} → ×p-distrib {p₁ = q₁} {q₂} {p₁} {p₂}} ; F-resp-≡ = λ {(p₁≡p₃ , p₂≡p₄) → P.cong₂ _×p_ p₁≡p₃ p₂≡p₄ } } module ×h = MonoidalHelperFunctors CPermCat ×p-bifunctor 1 1⊗x≡x : NaturalIsomorphism ×h.id⊗x ×h.x 1⊗x≡x = record { F⇒G = record { η = {!!} ; commute = {!!} } ; F⇐G = record { η = {!!} ; commute = {!!} } ; iso = λ X → record { isoˡ = {!!} ; isoʳ = {!!} } } x⊗1≡x : NaturalIsomorphism ×h.x⊗id ×h.x x⊗1≡x = record { F⇒G = record { η = {!!} ; commute = {!!} } ; F⇐G = record { η = {!!} ; commute = {!!} } ; iso = λ X → record { isoˡ = {!!} ; isoʳ = {!!} } } [x⊗y]⊗z≡x⊗[y⊗z] : NaturalIsomorphism ×h.[x⊗y]⊗z ×h.x⊗[y⊗z] [x⊗y]⊗z≡x⊗[y⊗z] = record { F⇒G = record { η = {!!} ; commute = {!!} } ; F⇐G = record { η = {!!} ; commute = {!!} } ; iso = λ X → record { isoˡ = {!!} ; isoʳ = {!!} } } -- and a monoidal category (multiplicative) M⊗ : Monoidal CPermCat M⊗ = record { ⊗ = ×p-bifunctor ; id = 1 ; identityˡ = 1⊗x≡x ; identityʳ = x⊗1≡x ; assoc = [x⊗y]⊗z≡x⊗[y⊗z] ; triangle = {!!} ; pentagon = {!!} } x⊕y≡y⊕x : NaturalIsomorphism ⊎h.x⊗y ⊎h.y⊗x x⊕y≡y⊕x = record { F⇒G = record { η = {!!} ; commute = {!!} } ; F⇐G = record { η = {!!} ; commute = {!!} } ; iso = λ X → record { isoˡ = {!!} ; isoʳ = {!!} } } BM⊕ : Braided M⊕ BM⊕ = record { braid = x⊕y≡y⊕x ; hexagon₁ = {!!} ; hexagon₂ = {!!} } x⊗y≡y⊗x : NaturalIsomorphism ×h.x⊗y ×h.y⊗x x⊗y≡y⊗x = record { F⇒G = record { η = {!!} ; commute = {!!} } ; F⇐G = record { η = {!!} ; commute = {!!} } ; iso = λ X → record { isoˡ = {!!} ; isoʳ = {!!} } } BM⊗ : Braided M⊗ BM⊗ = record { braid = x⊗y≡y⊗x ; hexagon₁ = {!!} ; hexagon₂ = {!!} } -- with both monoidal structures being symmetric SBM⊕ : Symmetric BM⊕ SBM⊕ = record { symmetry = {!!} } SBM⊗ : Symmetric BM⊗ SBM⊗ = record { symmetry = {!!} } module r = BimonoidalHelperFunctors BM⊕ BM⊗ x⊗0≡0 : NaturalIsomorphism r.x⊗0 r.0↑ x⊗0≡0 = record { F⇒G = record { η = {!!} ; commute = {!!} } ; F⇐G = record { η = {!!} ; commute = {!!} } ; iso = λ X → record { isoˡ = {!!} ; isoʳ = {!!} } } 0⊗x≡0 : NaturalIsomorphism r.0⊗x r.0↑ 0⊗x≡0 = record { F⇒G = record { η = {!!} ; commute = {!!} } ; F⇐G = record { η = {!!} ; commute = {!!} } ; iso = λ X → record { isoˡ = {!!} ; isoʳ = {!!} } } x⊗[y⊕z]≡[x⊗y]⊕[x⊗z] : NaturalIsomorphism r.x⊗[y⊕z] r.[x⊗y]⊕[x⊗z] x⊗[y⊕z]≡[x⊗y]⊕[x⊗z] = record { F⇒G = record { η = {!!} ; commute = {!!} } ; F⇐G = record { η = {!!} ; commute = {!!} } ; iso = λ X → record { isoˡ = {!!} ; isoʳ = {!!} } } [x⊕y]⊗z≡[x⊗z]⊕[y⊗z] : NaturalIsomorphism r.[x⊕y]⊗z r.[x⊗z]⊕[y⊗z] [x⊕y]⊗z≡[x⊗z]⊕[y⊗z] = record { F⇒G = record { η = {!!} ; commute = {!!} } ; F⇐G = record { η = {!!} ; commute = {!!} } ; iso = λ X → record { isoˡ = {!!} ; isoʳ = {!!} } } -- and the multiplicative structure distributing over the additive one Pi1Rig : RigCategory SBM⊕ SBM⊗ Pi1Rig = record { distribₗ = x⊗[y⊕z]≡[x⊗y]⊕[x⊗z] ; distribᵣ = [x⊕y]⊗z≡[x⊗z]⊕[y⊗z] ; annₗ = 0⊗x≡0 ; annᵣ = x⊗0≡0 ; laplazaI = {!!} ; laplazaII = {!!} ; laplazaIV = {!!} ; laplazaVI = {!!} ; laplazaIX = {!!} ; laplazaX = {!!} ; laplazaXI = {!!} ; laplazaXIII = {!!} ; laplazaXV = {!!} ; laplazaXVI = {!!} ; laplazaXVII = {!!} ; laplazaXIX = {!!} ; laplazaXXIII = {!!} } --} ------------------------------------------------------------------------------
test/filters-cases/bug-1307.asm
OfekShilon/compiler-explorer
4,668
103098
.file "example.cpp" .intel_syntax noprefix .text .Ltext0: .p2align 4 .globl _Z8testfuncf .type _Z8testfuncf, @function _Z8testfuncf: .LFB904: .file 1 "/tmp/compiler-explorer-compiler119330-53-13nkrqq.iz3ii/example.cpp" .loc 1 4 1 .cfi_startproc .LVL0: .loc 1 5 5 .LBB4: .LBB5: .file 2 "/opt/compiler-explorer/gcc-trunk-20190430/include/c++/10.0.0/cmath" .loc 2 261 5 .loc 2 261 28 is_stmt 0 movss xmm3, DWORD PTR .LC1[rip] movss xmm4, DWORD PTR .LC0[rip] movaps xmm2, xmm0 movaps xmm1, xmm0 andps xmm2, xmm3 ucomiss xmm4, xmm2 jbe .L2 cvttss2si eax, xmm0 pxor xmm2, xmm2 movss xmm4, DWORD PTR .LC2[rip] andnps xmm3, xmm0 cvtsi2ss xmm2, eax movaps xmm5, xmm2 cmpnless xmm5, xmm0 movaps xmm1, xmm5 andps xmm1, xmm4 subss xmm2, xmm1 movaps xmm1, xmm2 orps xmm1, xmm3 .L2: .LVL1: .LBE5: .LBE4: .loc 1 5 24 cvttss2si eax, xmm1 .loc 1 6 1 ret .cfi_endproc .LFE904: .size _Z8testfuncf, .-_Z8testfuncf .section .rodata.cst4,"aM",@progbits,4 .align 4 .LC0: .long 1258291200 .section .rodata.cst16,"aM",@progbits,16 .align 16 .LC1: .long 2147483647 .long 0 .long 0 .long 0 .section .rodata.cst4 .align 4 .LC2: .long 1065353216 .text .Letext0: .file 3 "/opt/compiler-explorer/gcc-trunk-20190430/include/c++/10.0.0/type_traits" .file 4 "/opt/compiler-explorer/gcc-trunk-20190430/include/c++/10.0.0/x86_64-linux-gnu/bits/c++config.h" .file 5 "/opt/compiler-explorer/gcc-trunk-20190430/include/c++/10.0.0/bits/stl_pair.h" .file 6 "/opt/compiler-explorer/gcc-trunk-20190430/include/c++/10.0.0/debug/debug.h" .file 7 "/opt/compiler-explorer/gcc-trunk-20190430/include/c++/10.0.0/limits" .file 8 "/opt/compiler-explorer/gcc-trunk-20190430/include/c++/10.0.0/tr1/special_function_util.h" .file 9 "/opt/compiler-explorer/gcc-trunk-20190430/include/c++/10.0.0/bits/predefined_ops.h" .file 10 "/usr/include/math.h" .file 11 "<built-in>" .section .debug_info,"",@progbits .Ldebug_info0: .long 0x3acc .value 0x4 .long .Ldebug_abbrev0 .byte 0x8 .uleb128 0x1 .long .LASF720 .byte 0x4 .long .LASF721 .long .LASF722 .quad .Ltext0 .quad .Letext0-.Ltext0 .long .Ldebug_line0 .uleb128 0x2 .string "std" .byte 0xb .byte 0 .long 0x29a2 .uleb128 0x3 .long .LASF250 .byte 0x4 .value 0x114 .byte 0x41 .uleb128 0x4 .byte 0x4 .value 0x114 .byte 0x41 .long 0x38 .uleb128 0x5 .byte 0x2 .value 0x429 .byte 0xb .long 0x2a50 .uleb128 0x5 .byte 0x2 .value 0x42a .byte 0xb .long 0x2a44 .uleb128 0x6 .long .LASF4 .byte 0x1 .byte 0x3 .byte 0x39 .byte 0xc .long 0xd2 .uleb128 0x7 .long .LASF6 .byte 0x3 .byte 0x3b .byte 0x2d .long 0x2a70 .byte 0x1 .uleb128 0x8 .long .LASF7 .byte 0x3 .byte 0x3c .byte 0x2d .long 0x2a69 .uleb128 0x9 .long .LASF0 .byte 0x3 .byte 0x3e .byte 0x11 .long .LASF2 .long 0x76 .long 0x9a .long 0xa0 .uleb128 0xa .long 0x2a7f .byte 0 .uleb128 0x9 .long .LASF1 .byte 0x3 .byte 0x43 .byte 0x1c .long .LASF3 .long 0x76 .long 0xb8 .long 0xbe .uleb128 0xa .long 0x2a7f .byte 0 .uleb128 0xb .string "_Tp" .long 0x2a69 .uleb128 0xc .string "__v" .long 0x2a69 .byte 0 .byte 0 .uleb128 0xd .long 0x5c .uleb128 0x6 .long .LASF5 .byte 0x1 .byte 0x3 .byte 0x39 .byte 0xc .long 0x14d .uleb128 0x7 .long .LASF6 .byte 0x3 .byte 0x3b .byte 0x2d .long 0x2a70 .byte 0x1 .uleb128 0x8 .long .LASF7 .byte 0x3 .byte 0x3c .byte 0x2d .long 0x2a69 .uleb128 0x9 .long .LASF8 .byte 0x3 .byte 0x3e .byte 0x11 .long .LASF9 .long 0xf1 .long 0x115 .long 0x11b .uleb128 0xa .long 0x2a8f .byte 0 .uleb128 0x9 .long .LASF1 .byte 0x3 .byte 0x43 .byte 0x1c .long .LASF10 .long 0xf1 .long 0x133 .long 0x139 .uleb128 0xa .long 0x2a8f .byte 0 .uleb128 0xb .string "_Tp" .long 0x2a69 .uleb128 0xc .string "__v" .long 0x2a69 .byte 0x1 .byte 0 .uleb128 0xd .long 0xd7 .uleb128 0x6 .long .LASF11 .byte 0x1 .byte 0x3 .byte 0x39 .byte 0xc .long 0x1c8 .uleb128 0x7 .long .LASF6 .byte 0x3 .byte 0x3b .byte 0x2d .long 0x29e6 .byte 0x1 .uleb128 0x8 .long .LASF7 .byte 0x3 .byte 0x3c .byte 0x2d .long 0x29df .uleb128 0x9 .long .LASF12 .byte 0x3 .byte 0x3e .byte 0x11 .long .LASF13 .long 0x16c .long 0x190 .long 0x196 .uleb128 0xa .long 0x2a9e .byte 0 .uleb128 0x9 .long .LASF1 .byte 0x3 .byte 0x43 .byte 0x1c .long .LASF14 .long 0x16c .long 0x1ae .long 0x1b4 .uleb128 0xa .long 0x2a9e .byte 0 .uleb128 0xb .string "_Tp" .long 0x29df .uleb128 0xc .string "__v" .long 0x29df .byte 0 .byte 0 .uleb128 0xd .long 0x152 .uleb128 0xe .long .LASF723 .byte 0x1 .byte 0x3 .value 0x673 .byte 0x9 .long 0x2a2 .uleb128 0xf .long .LASF15 .byte 0x1 .byte 0x3 .value 0x676 .byte 0x22 .byte 0x2 .long 0x1ec .uleb128 0x10 .byte 0 .uleb128 0xf .long .LASF16 .byte 0x1 .byte 0x3 .value 0x679 .byte 0xe .byte 0x2 .long 0x211 .uleb128 0x11 .long 0x1db .byte 0 .uleb128 0x12 .long .LASF17 .byte 0x3 .value 0x67a .byte 0x21 .long 0x2ae .byte 0x1 .uleb128 0x10 .byte 0 .uleb128 0xf .long .LASF18 .byte 0x1 .byte 0x3 .value 0x679 .byte 0xe .byte 0x2 .long 0x236 .uleb128 0x11 .long 0x1ec .byte 0 .uleb128 0x12 .long .LASF17 .byte 0x3 .value 0x67a .byte 0x21 .long 0x2ae .byte 0x1 .uleb128 0x10 .byte 0 .uleb128 0xf .long .LASF19 .byte 0x1 .byte 0x3 .value 0x679 .byte 0xe .byte 0x2 .long 0x25b .uleb128 0x11 .long 0x211 .byte 0 .uleb128 0x12 .long .LASF17 .byte 0x3 .value 0x67a .byte 0x21 .long 0x2ae .byte 0x1 .uleb128 0x10 .byte 0 .uleb128 0xf .long .LASF20 .byte 0x1 .byte 0x3 .value 0x679 .byte 0xe .byte 0x2 .long 0x280 .uleb128 0x11 .long 0x236 .byte 0 .uleb128 0x12 .long .LASF17 .byte 0x3 .value 0x67a .byte 0x21 .long 0x2ae .byte 0x1 .uleb128 0x10 .byte 0 .uleb128 0x13 .long .LASF21 .byte 0x1 .byte 0x3 .value 0x679 .byte 0xe .byte 0x2 .uleb128 0x11 .long 0x25b .byte 0 .uleb128 0x12 .long .LASF17 .byte 0x3 .value 0x67a .byte 0x21 .long 0x2ae .byte 0x1 .uleb128 0x10 .byte 0 .byte 0 .uleb128 0x8 .long .LASF22 .byte 0x4 .byte 0xfe .byte 0x1a .long 0x29df .uleb128 0xd .long 0x2a2 .uleb128 0x14 .long .LASF23 .byte 0x3 .value 0x9ed .byte 0xd .uleb128 0x14 .long .LASF24 .byte 0x3 .value 0xa3b .byte 0xd .uleb128 0x6 .long .LASF25 .byte 0x1 .byte 0x5 .byte 0x4c .byte 0xa .long 0x2ea .uleb128 0x15 .long .LASF25 .byte 0x5 .byte 0x4c .byte 0x2b .long .LASF26 .byte 0x1 .long 0x2e3 .uleb128 0xa .long 0x2ae9 .byte 0 .byte 0 .uleb128 0xd .long 0x2c5 .uleb128 0x16 .long .LASF724 .byte 0x5 .byte 0x4f .byte 0x35 .long .LASF725 .long 0x2ea .byte 0x1 .byte 0 .byte 0x3 .uleb128 0x17 .long .LASF27 .byte 0x6 .byte 0x32 .byte 0xd .uleb128 0x18 .long .LASF33 .byte 0x5 .byte 0x4 .long 0x2a00 .byte 0x7 .byte 0xa7 .byte 0x8 .long 0x33b .uleb128 0x19 .long .LASF28 .sleb128 -1 .uleb128 0x1a .long .LASF29 .byte 0 .uleb128 0x1a .long .LASF30 .byte 0x1 .uleb128 0x1a .long .LASF31 .byte 0x2 .uleb128 0x1a .long .LASF32 .byte 0x3 .byte 0 .uleb128 0xd .long 0x30a .uleb128 0x18 .long .LASF34 .byte 0x5 .byte 0x4 .long 0x2a00 .byte 0x7 .byte 0xb6 .byte 0x8 .long 0x365 .uleb128 0x19 .long .LASF35 .sleb128 -1 .uleb128 0x1a .long .LASF36 .byte 0 .uleb128 0x1a .long .LASF37 .byte 0x1 .byte 0 .uleb128 0xd .long 0x340 .uleb128 0x6 .long .LASF38 .byte 0x1 .byte 0x7 .byte 0xca .byte 0xa .long 0x4c4 .uleb128 0x1b .long .LASF39 .byte 0x7 .byte 0xce .byte 0x28 .long 0x2a70 .byte 0 .byte 0x1 .uleb128 0x1b .long .LASF40 .byte 0x7 .byte 0xd3 .byte 0x27 .long 0x2a07 .byte 0 .byte 0x1 .uleb128 0x1b .long .LASF41 .byte 0x7 .byte 0xd6 .byte 0x27 .long 0x2a07 .byte 0 .byte 0x1 .uleb128 0x1b .long .LASF42 .byte 0x7 .byte 0xdb .byte 0x1a .long 0x2a07 .byte 0 .byte 0x1 .uleb128 0x1b .long .LASF43 .byte 0x7 .byte 0xdf .byte 0x28 .long 0x2a70 .byte 0 .byte 0x1 .uleb128 0x1b .long .LASF44 .byte 0x7 .byte 0xe2 .byte 0x28 .long 0x2a70 .byte 0 .byte 0x1 .uleb128 0x1b .long .LASF45 .byte 0x7 .byte 0xe7 .byte 0x28 .long 0x2a70 .byte 0 .byte 0x1 .uleb128 0x1b .long .LASF46 .byte 0x7 .byte 0xeb .byte 0x27 .long 0x2a07 .byte 0 .byte 0x1 .uleb128 0x1b .long .LASF47 .byte 0x7 .byte 0xef .byte 0x27 .long 0x2a07 .byte 0 .byte 0x1 .uleb128 0x1b .long .LASF48 .byte 0x7 .byte 0xf3 .byte 0x27 .long 0x2a07 .byte 0 .byte 0x1 .uleb128 0x1b .long .LASF49 .byte 0x7 .byte 0xf8 .byte 0x27 .long 0x2a07 .byte 0 .byte 0x1 .uleb128 0x1b .long .LASF50 .byte 0x7 .byte 0xfc .byte 0x27 .long 0x2a07 .byte 0 .byte 0x1 .uleb128 0x1b .long .LASF51 .byte 0x7 .byte 0xff .byte 0x28 .long 0x2a70 .byte 0 .byte 0x1 .uleb128 0x1c .long .LASF52 .byte 0x7 .value 0x103 .byte 0x28 .long 0x2a70 .byte 0 .byte 0x1 .uleb128 0x1c .long .LASF53 .byte 0x7 .value 0x107 .byte 0x28 .long 0x2a70 .byte 0 .byte 0x1 .uleb128 0x1c .long .LASF54 .byte 0x7 .value 0x10a .byte 0x36 .long 0x365 .byte 0 .byte 0x1 .uleb128 0x1c .long .LASF55 .byte 0x7 .value 0x10e .byte 0x28 .long 0x2a70 .byte 0 .byte 0x1 .uleb128 0x1c .long .LASF56 .byte 0x7 .value 0x112 .byte 0x28 .long 0x2a70 .byte 0 .byte 0x1 .uleb128 0x1c .long .LASF57 .byte 0x7 .value 0x117 .byte 0x28 .long 0x2a70 .byte 0 .byte 0x1 .uleb128 0x1c .long .LASF58 .byte 0x7 .value 0x120 .byte 0x28 .long 0x2a70 .byte 0 .byte 0x1 .uleb128 0x1c .long .LASF59 .byte 0x7 .value 0x123 .byte 0x28 .long 0x2a70 .byte 0 .byte 0x1 .uleb128 0x1c .long .LASF60 .byte 0x7 .value 0x126 .byte 0x28 .long 0x2a70 .byte 0 .byte 0x1 .uleb128 0x1c .long .LASF61 .byte 0x7 .value 0x12b .byte 0x35 .long 0x33b .byte 0 .byte 0x1 .byte 0 .uleb128 0x1d .long .LASF62 .byte 0x1 .byte 0x7 .value 0x180 .byte 0xc .long 0x6ce .uleb128 0x1c .long .LASF39 .byte 0x7 .value 0x182 .byte 0x2a .long 0x2a70 .byte 0x1 .byte 0x1 .uleb128 0x1e .string "min" .byte 0x7 .value 0x185 .byte 0x7 .long .LASF63 .long 0x2a69 .uleb128 0x1e .string "max" .byte 0x7 .value 0x188 .byte 0x7 .long .LASF64 .long 0x2a69 .uleb128 0x1f .long .LASF65 .byte 0x7 .value 0x18c .byte 0x7 .long .LASF67 .long 0x2a69 .uleb128 0x1c .long .LASF40 .byte 0x7 .value 0x18e .byte 0x29 .long 0x2a07 .byte 0x1 .byte 0x1 .uleb128 0x1c .long .LASF41 .byte 0x7 .value 0x18f .byte 0x29 .long 0x2a07 .byte 0 .byte 0x1 .uleb128 0x1c .long .LASF42 .byte 0x7 .value 0x191 .byte 0x1c .long 0x2a07 .byte 0 .byte 0x1 .uleb128 0x1c .long .LASF43 .byte 0x7 .value 0x193 .byte 0x2a .long 0x2a70 .byte 0 .byte 0x1 .uleb128 0x1c .long .LASF44 .byte 0x7 .value 0x194 .byte 0x2a .long 0x2a70 .byte 0x1 .byte 0x1 .uleb128 0x1c .long .LASF45 .byte 0x7 .value 0x195 .byte 0x2a .long 0x2a70 .byte 0x1 .byte 0x1 .uleb128 0x1c .long .LASF46 .byte 0x7 .value 0x196 .byte 0x29 .long 0x2a07 .byte 0x2 .byte 0x1 .uleb128 0x1f .long .LASF66 .byte 0x7 .value 0x199 .byte 0x7 .long .LASF68 .long 0x2a69 .uleb128 0x1f .long .LASF69 .byte 0x7 .value 0x19c .byte 0x7 .long .LASF70 .long 0x2a69 .uleb128 0x1c .long .LASF47 .byte 0x7 .value 0x19e .byte 0x29 .long 0x2a07 .byte 0 .byte 0x1 .uleb128 0x1c .long .LASF48 .byte 0x7 .value 0x19f .byte 0x29 .long 0x2a07 .byte 0 .byte 0x1 .uleb128 0x1c .long .LASF49 .byte 0x7 .value 0x1a0 .byte 0x29 .long 0x2a07 .byte 0 .byte 0x1 .uleb128 0x1c .long .LASF50 .byte 0x7 .value 0x1a1 .byte 0x29 .long 0x2a07 .byte 0 .byte 0x1 .uleb128 0x1c .long .LASF51 .byte 0x7 .value 0x1a3 .byte 0x2a .long 0x2a70 .byte 0 .byte 0x1 .uleb128 0x1c .long .LASF52 .byte 0x7 .value 0x1a4 .byte 0x2a .long 0x2a70 .byte 0 .byte 0x1 .uleb128 0x1c .long .LASF53 .byte 0x7 .value 0x1a5 .byte 0x2a .long 0x2a70 .byte 0 .byte 0x1 .uleb128 0x1c .long .LASF54 .byte 0x7 .value 0x1a6 .byte 0x38 .long 0x365 .byte 0 .byte 0x1 .uleb128 0x1c .long .LASF55 .byte 0x7 .value 0x1a8 .byte 0x2a .long 0x2a70 .byte 0 .byte 0x1 .uleb128 0x1f .long .LASF71 .byte 0x7 .value 0x1ab .byte 0x7 .long .LASF72 .long 0x2a69 .uleb128 0x1f .long .LASF73 .byte 0x7 .value 0x1ae .byte 0x7 .long .LASF74 .long 0x2a69 .uleb128 0x1f .long .LASF75 .byte 0x7 .value 0x1b1 .byte 0x7 .long .LASF76 .long 0x2a69 .uleb128 0x1f .long .LASF77 .byte 0x7 .value 0x1b4 .byte 0x7 .long .LASF78 .long 0x2a69 .uleb128 0x1c .long .LASF56 .byte 0x7 .value 0x1b6 .byte 0x2a .long 0x2a70 .byte 0 .byte 0x1 .uleb128 0x1c .long .LASF57 .byte 0x7 .value 0x1b7 .byte 0x2a .long 0x2a70 .byte 0x1 .byte 0x1 .uleb128 0x1c .long .LASF58 .byte 0x7 .value 0x1b8 .byte 0x2a .long 0x2a70 .byte 0 .byte 0x1 .uleb128 0x1c .long .LASF59 .byte 0x7 .value 0x1bd .byte 0x2a .long 0x2a70 .byte 0x1 .byte 0x1 .uleb128 0x1c .long .LASF60 .byte 0x7 .value 0x1be .byte 0x2a .long 0x2a70 .byte 0 .byte 0x1 .uleb128 0x1c .long .LASF61 .byte 0x7 .value 0x1bf .byte 0x37 .long 0x33b .byte 0 .byte 0x1 .uleb128 0xb .string "_Tp" .long 0x2a69 .byte 0 .uleb128 0x1d .long .LASF79 .byte 0x1 .byte 0x7 .value 0x1c5 .byte 0xc .long 0x8d8 .uleb128 0x1c .long .LASF39 .byte 0x7 .value 0x1c7 .byte 0x2a .long 0x2a70 .byte 0x1 .byte 0x1 .uleb128 0x1e .string "min" .byte 0x7 .value 0x1ca .byte 0x7 .long .LASF80 .long 0x2a2f .uleb128 0x1e .string "max" .byte 0x7 .value 0x1cd .byte 0x7 .long .LASF81 .long 0x2a2f .uleb128 0x1f .long .LASF65 .byte 0x7 .value 0x1d1 .byte 0x7 .long .LASF82 .long 0x2a2f .uleb128 0x1c .long .LASF40 .byte 0x7 .value 0x1d4 .byte 0x29 .long 0x2a07 .byte 0x7 .byte 0x1 .uleb128 0x1c .long .LASF41 .byte 0x7 .value 0x1d5 .byte 0x29 .long 0x2a07 .byte 0x2 .byte 0x1 .uleb128 0x1c .long .LASF42 .byte 0x7 .value 0x1d7 .byte 0x1c .long 0x2a07 .byte 0 .byte 0x1 .uleb128 0x1c .long .LASF43 .byte 0x7 .value 0x1d9 .byte 0x2a .long 0x2a70 .byte 0x1 .byte 0x1 .uleb128 0x1c .long .LASF44 .byte 0x7 .value 0x1da .byte 0x2a .long 0x2a70 .byte 0x1 .byte 0x1 .uleb128 0x1c .long .LASF45 .byte 0x7 .value 0x1db .byte 0x2a .long 0x2a70 .byte 0x1 .byte 0x1 .uleb128 0x1c .long .LASF46 .byte 0x7 .value 0x1dc .byte 0x29 .long 0x2a07 .byte 0x2 .byte 0x1 .uleb128 0x1f .long .LASF66 .byte 0x7 .value 0x1df .byte 0x7 .long .LASF83 .long 0x2a2f .uleb128 0x1f .long .LASF69 .byte 0x7 .value 0x1e2 .byte 0x7 .long .LASF84 .long 0x2a2f .uleb128 0x1c .long .LASF47 .byte 0x7 .value 0x1e4 .byte 0x29 .long 0x2a07 .byte 0 .byte 0x1 .uleb128 0x1c .long .LASF48 .byte 0x7 .value 0x1e5 .byte 0x29 .long 0x2a07 .byte 0 .byte 0x1 .uleb128 0x1c .long .LASF49 .byte 0x7 .value 0x1e6 .byte 0x29 .long 0x2a07 .byte 0 .byte 0x1 .uleb128 0x1c .long .LASF50 .byte 0x7 .value 0x1e7 .byte 0x29 .long 0x2a07 .byte 0 .byte 0x1 .uleb128 0x1c .long .LASF51 .byte 0x7 .value 0x1e9 .byte 0x2a .long 0x2a70 .byte 0 .byte 0x1 .uleb128 0x1c .long .LASF52 .byte 0x7 .value 0x1ea .byte 0x2a .long 0x2a70 .byte 0 .byte 0x1 .uleb128 0x1c .long .LASF53 .byte 0x7 .value 0x1eb .byte 0x2a .long 0x2a70 .byte 0 .byte 0x1 .uleb128 0x1c .long .LASF54 .byte 0x7 .value 0x1ec .byte 0x38 .long 0x365 .byte 0 .byte 0x1 .uleb128 0x1c .long .LASF55 .byte 0x7 .value 0x1ee .byte 0x2a .long 0x2a70 .byte 0 .byte 0x1 .uleb128 0x1f .long .LASF71 .byte 0x7 .value 0x1f1 .byte 0xc .long .LASF85 .long 0x2a2f .uleb128 0x1f .long .LASF73 .byte 0x7 .value 0x1f4 .byte 0x7 .long .LASF86 .long 0x2a2f .uleb128 0x1f .long .LASF75 .byte 0x7 .value 0x1f7 .byte 0x7 .long .LASF87 .long 0x2a2f .uleb128 0x1f .long .LASF77 .byte 0x7 .value 0x1fa .byte 0x7 .long .LASF88 .long 0x2a2f .uleb128 0x1c .long .LASF56 .byte 0x7 .value 0x1fc .byte 0x2a .long 0x2a70 .byte 0 .byte 0x1 .uleb128 0x1c .long .LASF57 .byte 0x7 .value 0x1fd .byte 0x2a .long 0x2a70 .byte 0x1 .byte 0x1 .uleb128 0x1c .long .LASF58 .byte 0x7 .value 0x1fe .byte 0x2a .long 0x2a70 .byte 0 .byte 0x1 .uleb128 0x1c .long .LASF59 .byte 0x7 .value 0x200 .byte 0x2a .long 0x2a70 .byte 0x1 .byte 0x1 .uleb128 0x1c .long .LASF60 .byte 0x7 .value 0x201 .byte 0x2a .long 0x2a70 .byte 0 .byte 0x1 .uleb128 0x1c .long .LASF61 .byte 0x7 .value 0x202 .byte 0x37 .long 0x33b .byte 0 .byte 0x1 .uleb128 0xb .string "_Tp" .long 0x2a2f .byte 0 .uleb128 0x1d .long .LASF89 .byte 0x1 .byte 0x7 .value 0x208 .byte 0xc .long 0xae2 .uleb128 0x1c .long .LASF39 .byte 0x7 .value 0x20a .byte 0x2a .long 0x2a70 .byte 0x1 .byte 0x1 .uleb128 0x1e .string "min" .byte 0x7 .value 0x20d .byte 0x7 .long .LASF90 .long 0x29f2 .uleb128 0x1e .string "max" .byte 0x7 .value 0x210 .byte 0x7 .long .LASF91 .long 0x29f2 .uleb128 0x1f .long .LASF65 .byte 0x7 .value 0x214 .byte 0x7 .long .LASF92 .long 0x29f2 .uleb128 0x1c .long .LASF40 .byte 0x7 .value 0x217 .byte 0x29 .long 0x2a07 .byte 0x7 .byte 0x1 .uleb128 0x1c .long .LASF41 .byte 0x7 .value 0x218 .byte 0x29 .long 0x2a07 .byte 0x2 .byte 0x1 .uleb128 0x1c .long .LASF42 .byte 0x7 .value 0x21b .byte 0x1c .long 0x2a07 .byte 0 .byte 0x1 .uleb128 0x1c .long .LASF43 .byte 0x7 .value 0x21d .byte 0x2a .long 0x2a70 .byte 0x1 .byte 0x1 .uleb128 0x1c .long .LASF44 .byte 0x7 .value 0x21e .byte 0x2a .long 0x2a70 .byte 0x1 .byte 0x1 .uleb128 0x1c .long .LASF45 .byte 0x7 .value 0x21f .byte 0x2a .long 0x2a70 .byte 0x1 .byte 0x1 .uleb128 0x1c .long .LASF46 .byte 0x7 .value 0x220 .byte 0x29 .long 0x2a07 .byte 0x2 .byte 0x1 .uleb128 0x1f .long .LASF66 .byte 0x7 .value 0x223 .byte 0x7 .long .LASF93 .long 0x29f2 .uleb128 0x1f .long .LASF69 .byte 0x7 .value 0x226 .byte 0x7 .long .LASF94 .long 0x29f2 .uleb128 0x1c .long .LASF47 .byte 0x7 .value 0x228 .byte 0x29 .long 0x2a07 .byte 0 .byte 0x1 .uleb128 0x1c .long .LASF48 .byte 0x7 .value 0x229 .byte 0x29 .long 0x2a07 .byte 0 .byte 0x1 .uleb128 0x1c .long .LASF49 .byte 0x7 .value 0x22a .byte 0x29 .long 0x2a07 .byte 0 .byte 0x1 .uleb128 0x1c .long .LASF50 .byte 0x7 .value 0x22b .byte 0x29 .long 0x2a07 .byte 0 .byte 0x1 .uleb128 0x1c .long .LASF51 .byte 0x7 .value 0x22d .byte 0x2a .long 0x2a70 .byte 0 .byte 0x1 .uleb128 0x1c .long .LASF52 .byte 0x7 .value 0x22e .byte 0x2a .long 0x2a70 .byte 0 .byte 0x1 .uleb128 0x1c .long .LASF53 .byte 0x7 .value 0x22f .byte 0x2a .long 0x2a70 .byte 0 .byte 0x1 .uleb128 0x1c .long .LASF54 .byte 0x7 .value 0x230 .byte 0x38 .long 0x365 .byte 0 .byte 0x1 .uleb128 0x1c .long .LASF55 .byte 0x7 .value 0x232 .byte 0x2a .long 0x2a70 .byte 0 .byte 0x1 .uleb128 0x1f .long .LASF71 .byte 0x7 .value 0x235 .byte 0x7 .long .LASF95 .long 0x29f2 .uleb128 0x1f .long .LASF73 .byte 0x7 .value 0x238 .byte 0x7 .long .LASF96 .long 0x29f2 .uleb128 0x1f .long .LASF75 .byte 0x7 .value 0x23b .byte 0x7 .long .LASF97 .long 0x29f2 .uleb128 0x1f .long .LASF77 .byte 0x7 .value 0x23f .byte 0x7 .long .LASF98 .long 0x29f2 .uleb128 0x1c .long .LASF56 .byte 0x7 .value 0x242 .byte 0x2a .long 0x2a70 .byte 0 .byte 0x1 .uleb128 0x1c .long .LASF57 .byte 0x7 .value 0x243 .byte 0x2a .long 0x2a70 .byte 0x1 .byte 0x1 .uleb128 0x1c .long .LASF58 .byte 0x7 .value 0x244 .byte 0x2a .long 0x2a70 .byte 0 .byte 0x1 .uleb128 0x1c .long .LASF59 .byte 0x7 .value 0x246 .byte 0x2a .long 0x2a70 .byte 0x1 .byte 0x1 .uleb128 0x1c .long .LASF60 .byte 0x7 .value 0x247 .byte 0x2a .long 0x2a70 .byte 0 .byte 0x1 .uleb128 0x1c .long .LASF61 .byte 0x7 .value 0x248 .byte 0x37 .long 0x33b .byte 0 .byte 0x1 .uleb128 0xb .string "_Tp" .long 0x29f2 .byte 0 .uleb128 0x1d .long .LASF99 .byte 0x1 .byte 0x7 .value 0x24e .byte 0xc .long 0xcec .uleb128 0x1c .long .LASF39 .byte 0x7 .value 0x250 .byte 0x2a .long 0x2a70 .byte 0x1 .byte 0x1 .uleb128 0x1e .string "min" .byte 0x7 .value 0x253 .byte 0x7 .long .LASF100 .long 0x29d1 .uleb128 0x1e .string "max" .byte 0x7 .value 0x256 .byte 0x7 .long .LASF101 .long 0x29d1 .uleb128 0x1f .long .LASF65 .byte 0x7 .value 0x25a .byte 0x7 .long .LASF102 .long 0x29d1 .uleb128 0x1c .long .LASF40 .byte 0x7 .value 0x25d .byte 0x29 .long 0x2a07 .byte 0x8 .byte 0x1 .uleb128 0x1c .long .LASF41 .byte 0x7 .value 0x25f .byte 0x29 .long 0x2a07 .byte 0x2 .byte 0x1 .uleb128 0x1c .long .LASF42 .byte 0x7 .value 0x262 .byte 0x1c .long 0x2a07 .byte 0 .byte 0x1 .uleb128 0x1c .long .LASF43 .byte 0x7 .value 0x264 .byte 0x2a .long 0x2a70 .byte 0 .byte 0x1 .uleb128 0x1c .long .LASF44 .byte 0x7 .value 0x265 .byte 0x2a .long 0x2a70 .byte 0x1 .byte 0x1 .uleb128 0x1c .long .LASF45 .byte 0x7 .value 0x266 .byte 0x2a .long 0x2a70 .byte 0x1 .byte 0x1 .uleb128 0x1c .long .LASF46 .byte 0x7 .value 0x267 .byte 0x29 .long 0x2a07 .byte 0x2 .byte 0x1 .uleb128 0x1f .long .LASF66 .byte 0x7 .value 0x26a .byte 0x7 .long .LASF103 .long 0x29d1 .uleb128 0x1f .long .LASF69 .byte 0x7 .value 0x26d .byte 0x7 .long .LASF104 .long 0x29d1 .uleb128 0x1c .long .LASF47 .byte 0x7 .value 0x26f .byte 0x29 .long 0x2a07 .byte 0 .byte 0x1 .uleb128 0x1c .long .LASF48 .byte 0x7 .value 0x270 .byte 0x29 .long 0x2a07 .byte 0 .byte 0x1 .uleb128 0x1c .long .LASF49 .byte 0x7 .value 0x271 .byte 0x29 .long 0x2a07 .byte 0 .byte 0x1 .uleb128 0x1c .long .LASF50 .byte 0x7 .value 0x272 .byte 0x29 .long 0x2a07 .byte 0 .byte 0x1 .uleb128 0x1c .long .LASF51 .byte 0x7 .value 0x274 .byte 0x2a .long 0x2a70 .byte 0 .byte 0x1 .uleb128 0x1c .long .LASF52 .byte 0x7 .value 0x275 .byte 0x2a .long 0x2a70 .byte 0 .byte 0x1 .uleb128 0x1c .long .LASF53 .byte 0x7 .value 0x276 .byte 0x2a .long 0x2a70 .byte 0 .byte 0x1 .uleb128 0x1c .long .LASF54 .byte 0x7 .value 0x277 .byte 0x38 .long 0x365 .byte 0 .byte 0x1 .uleb128 0x1c .long .LASF55 .byte 0x7 .value 0x279 .byte 0x2a .long 0x2a70 .byte 0 .byte 0x1 .uleb128 0x1f .long .LASF71 .byte 0x7 .value 0x27c .byte 0x7 .long .LASF105 .long 0x29d1 .uleb128 0x1f .long .LASF73 .byte 0x7 .value 0x280 .byte 0x7 .long .LASF106 .long 0x29d1 .uleb128 0x1f .long .LASF75 .byte 0x7 .value 0x284 .byte 0x7 .long .LASF107 .long 0x29d1 .uleb128 0x1f .long .LASF77 .byte 0x7 .value 0x288 .byte 0x7 .long .LASF108 .long 0x29d1 .uleb128 0x1c .long .LASF56 .byte 0x7 .value 0x28b .byte 0x2a .long 0x2a70 .byte 0 .byte 0x1 .uleb128 0x1c .long .LASF57 .byte 0x7 .value 0x28c .byte 0x2a .long 0x2a70 .byte 0x1 .byte 0x1 .uleb128 0x1c .long .LASF58 .byte 0x7 .value 0x28d .byte 0x2a .long 0x2a70 .byte 0x1 .byte 0x1 .uleb128 0x1c .long .LASF59 .byte 0x7 .value 0x28f .byte 0x2a .long 0x2a70 .byte 0x1 .byte 0x1 .uleb128 0x1c .long .LASF60 .byte 0x7 .value 0x290 .byte 0x2a .long 0x2a70 .byte 0 .byte 0x1 .uleb128 0x1c .long .LASF61 .byte 0x7 .value 0x291 .byte 0x37 .long 0x33b .byte 0 .byte 0x1 .uleb128 0xb .string "_Tp" .long 0x29d1 .byte 0 .uleb128 0x1d .long .LASF109 .byte 0x1 .byte 0x7 .value 0x297 .byte 0xc .long 0xef6 .uleb128 0x1c .long .LASF39 .byte 0x7 .value 0x299 .byte 0x2a .long 0x2a70 .byte 0x1 .byte 0x1 .uleb128 0x1e .string "min" .byte 0x7 .value 0x29c .byte 0x7 .long .LASF110 .long 0x2ad4 .uleb128 0x1e .string "max" .byte 0x7 .value 0x29f .byte 0x7 .long .LASF111 .long 0x2ad4 .uleb128 0x1f .long .LASF65 .byte 0x7 .value 0x2a3 .byte 0x7 .long .LASF112 .long 0x2ad4 .uleb128 0x1c .long .LASF40 .byte 0x7 .value 0x2a6 .byte 0x29 .long 0x2a07 .byte 0x1f .byte 0x1 .uleb128 0x1c .long .LASF41 .byte 0x7 .value 0x2a7 .byte 0x29 .long 0x2a07 .byte 0x9 .byte 0x1 .uleb128 0x1c .long .LASF42 .byte 0x7 .value 0x2aa .byte 0x1c .long 0x2a07 .byte 0 .byte 0x1 .uleb128 0x1c .long .LASF43 .byte 0x7 .value 0x2ac .byte 0x2a .long 0x2a70 .byte 0x1 .byte 0x1 .uleb128 0x1c .long .LASF44 .byte 0x7 .value 0x2ad .byte 0x2a .long 0x2a70 .byte 0x1 .byte 0x1 .uleb128 0x1c .long .LASF45 .byte 0x7 .value 0x2ae .byte 0x2a .long 0x2a70 .byte 0x1 .byte 0x1 .uleb128 0x1c .long .LASF46 .byte 0x7 .value 0x2af .byte 0x29 .long 0x2a07 .byte 0x2 .byte 0x1 .uleb128 0x1f .long .LASF66 .byte 0x7 .value 0x2b2 .byte 0x7 .long .LASF113 .long 0x2ad4 .uleb128 0x1f .long .LASF69 .byte 0x7 .value 0x2b5 .byte 0x7 .long .LASF114 .long 0x2ad4 .uleb128 0x1c .long .LASF47 .byte 0x7 .value 0x2b7 .byte 0x29 .long 0x2a07 .byte 0 .byte 0x1 .uleb128 0x1c .long .LASF48 .byte 0x7 .value 0x2b8 .byte 0x29 .long 0x2a07 .byte 0 .byte 0x1 .uleb128 0x1c .long .LASF49 .byte 0x7 .value 0x2b9 .byte 0x29 .long 0x2a07 .byte 0 .byte 0x1 .uleb128 0x1c .long .LASF50 .byte 0x7 .value 0x2ba .byte 0x29 .long 0x2a07 .byte 0 .byte 0x1 .uleb128 0x1c .long .LASF51 .byte 0x7 .value 0x2bc .byte 0x2a .long 0x2a70 .byte 0 .byte 0x1 .uleb128 0x1c .long .LASF52 .byte 0x7 .value 0x2bd .byte 0x2a .long 0x2a70 .byte 0 .byte 0x1 .uleb128 0x1c .long .LASF53 .byte 0x7 .value 0x2be .byte 0x2a .long 0x2a70 .byte 0 .byte 0x1 .uleb128 0x1c .long .LASF54 .byte 0x7 .value 0x2bf .byte 0x38 .long 0x365 .byte 0 .byte 0x1 .uleb128 0x1c .long .LASF55 .byte 0x7 .value 0x2c1 .byte 0x2a .long 0x2a70 .byte 0 .byte 0x1 .uleb128 0x1f .long .LASF71 .byte 0x7 .value 0x2c4 .byte 0x7 .long .LASF115 .long 0x2ad4 .uleb128 0x1f .long .LASF73 .byte 0x7 .value 0x2c7 .byte 0x7 .long .LASF116 .long 0x2ad4 .uleb128 0x1f .long .LASF75 .byte 0x7 .value 0x2ca .byte 0x7 .long .LASF117 .long 0x2ad4 .uleb128 0x1f .long .LASF77 .byte 0x7 .value 0x2cd .byte 0x7 .long .LASF118 .long 0x2ad4 .uleb128 0x1c .long .LASF56 .byte 0x7 .value 0x2cf .byte 0x2a .long 0x2a70 .byte 0 .byte 0x1 .uleb128 0x1c .long .LASF57 .byte 0x7 .value 0x2d0 .byte 0x2a .long 0x2a70 .byte 0x1 .byte 0x1 .uleb128 0x1c .long .LASF58 .byte 0x7 .value 0x2d1 .byte 0x2a .long 0x2a70 .byte 0 .byte 0x1 .uleb128 0x1c .long .LASF59 .byte 0x7 .value 0x2d3 .byte 0x2a .long 0x2a70 .byte 0x1 .byte 0x1 .uleb128 0x1c .long .LASF60 .byte 0x7 .value 0x2d4 .byte 0x2a .long 0x2a70 .byte 0 .byte 0x1 .uleb128 0x1c .long .LASF61 .byte 0x7 .value 0x2d5 .byte 0x37 .long 0x33b .byte 0 .byte 0x1 .uleb128 0xb .string "_Tp" .long 0x2ad4 .byte 0 .uleb128 0x1d .long .LASF119 .byte 0x1 .byte 0x7 .value 0x31d .byte 0xc .long 0x1100 .uleb128 0x1c .long .LASF39 .byte 0x7 .value 0x31f .byte 0x1d .long 0x2a70 .byte 0x1 .byte 0x1 .uleb128 0x1e .string "min" .byte 0x7 .value 0x322 .byte 0x7 .long .LASF120 .long 0x2adb .uleb128 0x1e .string "max" .byte 0x7 .value 0x325 .byte 0x7 .long .LASF121 .long 0x2adb .uleb128 0x1f .long .LASF65 .byte 0x7 .value 0x328 .byte 0x7 .long .LASF122 .long 0x2adb .uleb128 0x1c .long .LASF40 .byte 0x7 .value 0x32a .byte 0x1c .long 0x2a07 .byte 0x10 .byte 0x1 .uleb128 0x1c .long .LASF41 .byte 0x7 .value 0x32b .byte 0x1c .long 0x2a07 .byte 0x4 .byte 0x1 .uleb128 0x1c .long .LASF42 .byte 0x7 .value 0x32c .byte 0x1c .long 0x2a07 .byte 0 .byte 0x1 .uleb128 0x1c .long .LASF43 .byte 0x7 .value 0x32d .byte 0x1d .long 0x2a70 .byte 0 .byte 0x1 .uleb128 0x1c .long .LASF44 .byte 0x7 .value 0x32e .byte 0x1d .long 0x2a70 .byte 0x1 .byte 0x1 .uleb128 0x1c .long .LASF45 .byte 0x7 .value 0x32f .byte 0x1d .long 0x2a70 .byte 0x1 .byte 0x1 .uleb128 0x1c .long .LASF46 .byte 0x7 .value 0x330 .byte 0x1c .long 0x2a07 .byte 0x2 .byte 0x1 .uleb128 0x1f .long .LASF66 .byte 0x7 .value 0x333 .byte 0x7 .long .LASF123 .long 0x2adb .uleb128 0x1f .long .LASF69 .byte 0x7 .value 0x336 .byte 0x7 .long .LASF124 .long 0x2adb .uleb128 0x1c .long .LASF47 .byte 0x7 .value 0x338 .byte 0x1c .long 0x2a07 .byte 0 .byte 0x1 .uleb128 0x1c .long .LASF48 .byte 0x7 .value 0x339 .byte 0x1c .long 0x2a07 .byte 0 .byte 0x1 .uleb128 0x1c .long .LASF49 .byte 0x7 .value 0x33a .byte 0x1c .long 0x2a07 .byte 0 .byte 0x1 .uleb128 0x1c .long .LASF50 .byte 0x7 .value 0x33b .byte 0x1c .long 0x2a07 .byte 0 .byte 0x1 .uleb128 0x1c .long .LASF51 .byte 0x7 .value 0x33d .byte 0x1d .long 0x2a70 .byte 0 .byte 0x1 .uleb128 0x1c .long .LASF52 .byte 0x7 .value 0x33e .byte 0x1d .long 0x2a70 .byte 0 .byte 0x1 .uleb128 0x1c .long .LASF53 .byte 0x7 .value 0x33f .byte 0x1d .long 0x2a70 .byte 0 .byte 0x1 .uleb128 0x1c .long .LASF54 .byte 0x7 .value 0x340 .byte 0x2b .long 0x365 .byte 0 .byte 0x1 .uleb128 0x1c .long .LASF55 .byte 0x7 .value 0x341 .byte 0x1d .long 0x2a70 .byte 0 .byte 0x1 .uleb128 0x1f .long .LASF71 .byte 0x7 .value 0x344 .byte 0x7 .long .LASF125 .long 0x2adb .uleb128 0x1f .long .LASF73 .byte 0x7 .value 0x347 .byte 0x7 .long .LASF126 .long 0x2adb .uleb128 0x1f .long .LASF75 .byte 0x7 .value 0x34a .byte 0x7 .long .LASF127 .long 0x2adb .uleb128 0x1f .long .LASF77 .byte 0x7 .value 0x34d .byte 0x7 .long .LASF128 .long 0x2adb .uleb128 0x1c .long .LASF56 .byte 0x7 .value 0x34f .byte 0x1d .long 0x2a70 .byte 0 .byte 0x1 .uleb128 0x1c .long .LASF57 .byte 0x7 .value 0x350 .byte 0x1d .long 0x2a70 .byte 0x1 .byte 0x1 .uleb128 0x1c .long .LASF58 .byte 0x7 .value 0x351 .byte 0x1d .long 0x2a70 .byte 0x1 .byte 0x1 .uleb128 0x1c .long .LASF59 .byte 0x7 .value 0x353 .byte 0x1d .long 0x2a70 .byte 0x1 .byte 0x1 .uleb128 0x1c .long .LASF60 .byte 0x7 .value 0x354 .byte 0x1d .long 0x2a70 .byte 0 .byte 0x1 .uleb128 0x1c .long .LASF61 .byte 0x7 .value 0x355 .byte 0x2a .long 0x33b .byte 0 .byte 0x1 .uleb128 0xb .string "_Tp" .long 0x2adb .byte 0 .uleb128 0x1d .long .LASF129 .byte 0x1 .byte 0x7 .value 0x35a .byte 0xc .long 0x130a .uleb128 0x1c .long .LASF39 .byte 0x7 .value 0x35c .byte 0x1d .long 0x2a70 .byte 0x1 .byte 0x1 .uleb128 0x1e .string "min" .byte 0x7 .value 0x35f .byte 0x7 .long .LASF130 .long 0x2ae2 .uleb128 0x1e .string "max" .byte 0x7 .value 0x362 .byte 0x7 .long .LASF131 .long 0x2ae2 .uleb128 0x1f .long .LASF65 .byte 0x7 .value 0x365 .byte 0x7 .long .LASF132 .long 0x2ae2 .uleb128 0x1c .long .LASF40 .byte 0x7 .value 0x367 .byte 0x1c .long 0x2a07 .byte 0x20 .byte 0x1 .uleb128 0x1c .long .LASF41 .byte 0x7 .value 0x368 .byte 0x1c .long 0x2a07 .byte 0x9 .byte 0x1 .uleb128 0x1c .long .LASF42 .byte 0x7 .value 0x369 .byte 0x1c .long 0x2a07 .byte 0 .byte 0x1 .uleb128 0x1c .long .LASF43 .byte 0x7 .value 0x36a .byte 0x1d .long 0x2a70 .byte 0 .byte 0x1 .uleb128 0x1c .long .LASF44 .byte 0x7 .value 0x36b .byte 0x1d .long 0x2a70 .byte 0x1 .byte 0x1 .uleb128 0x1c .long .LASF45 .byte 0x7 .value 0x36c .byte 0x1d .long 0x2a70 .byte 0x1 .byte 0x1 .uleb128 0x1c .long .LASF46 .byte 0x7 .value 0x36d .byte 0x1c .long 0x2a07 .byte 0x2 .byte 0x1 .uleb128 0x1f .long .LASF66 .byte 0x7 .value 0x370 .byte 0x7 .long .LASF133 .long 0x2ae2 .uleb128 0x1f .long .LASF69 .byte 0x7 .value 0x373 .byte 0x7 .long .LASF134 .long 0x2ae2 .uleb128 0x1c .long .LASF47 .byte 0x7 .value 0x375 .byte 0x1c .long 0x2a07 .byte 0 .byte 0x1 .uleb128 0x1c .long .LASF48 .byte 0x7 .value 0x376 .byte 0x1c .long 0x2a07 .byte 0 .byte 0x1 .uleb128 0x1c .long .LASF49 .byte 0x7 .value 0x377 .byte 0x1c .long 0x2a07 .byte 0 .byte 0x1 .uleb128 0x1c .long .LASF50 .byte 0x7 .value 0x378 .byte 0x1c .long 0x2a07 .byte 0 .byte 0x1 .uleb128 0x1c .long .LASF51 .byte 0x7 .value 0x37a .byte 0x1d .long 0x2a70 .byte 0 .byte 0x1 .uleb128 0x1c .long .LASF52 .byte 0x7 .value 0x37b .byte 0x1d .long 0x2a70 .byte 0 .byte 0x1 .uleb128 0x1c .long .LASF53 .byte 0x7 .value 0x37c .byte 0x1d .long 0x2a70 .byte 0 .byte 0x1 .uleb128 0x1c .long .LASF54 .byte 0x7 .value 0x37d .byte 0x2b .long 0x365 .byte 0 .byte 0x1 .uleb128 0x1c .long .LASF55 .byte 0x7 .value 0x37e .byte 0x1d .long 0x2a70 .byte 0 .byte 0x1 .uleb128 0x1f .long .LASF71 .byte 0x7 .value 0x381 .byte 0x7 .long .LASF135 .long 0x2ae2 .uleb128 0x1f .long .LASF73 .byte 0x7 .value 0x384 .byte 0x7 .long .LASF136 .long 0x2ae2 .uleb128 0x1f .long .LASF75 .byte 0x7 .value 0x387 .byte 0x7 .long .LASF137 .long 0x2ae2 .uleb128 0x1f .long .LASF77 .byte 0x7 .value 0x38a .byte 0x7 .long .LASF138 .long 0x2ae2 .uleb128 0x1c .long .LASF56 .byte 0x7 .value 0x38c .byte 0x1d .long 0x2a70 .byte 0 .byte 0x1 .uleb128 0x1c .long .LASF57 .byte 0x7 .value 0x38d .byte 0x1d .long 0x2a70 .byte 0x1 .byte 0x1 .uleb128 0x1c .long .LASF58 .byte 0x7 .value 0x38e .byte 0x1d .long 0x2a70 .byte 0x1 .byte 0x1 .uleb128 0x1c .long .LASF59 .byte 0x7 .value 0x390 .byte 0x1d .long 0x2a70 .byte 0x1 .byte 0x1 .uleb128 0x1c .long .LASF60 .byte 0x7 .value 0x391 .byte 0x1d .long 0x2a70 .byte 0 .byte 0x1 .uleb128 0x1c .long .LASF61 .byte 0x7 .value 0x392 .byte 0x2a .long 0x33b .byte 0 .byte 0x1 .uleb128 0xb .string "_Tp" .long 0x2ae2 .byte 0 .uleb128 0x1d .long .LASF139 .byte 0x1 .byte 0x7 .value 0x398 .byte 0xc .long 0x1514 .uleb128 0x1c .long .LASF39 .byte 0x7 .value 0x39a .byte 0x2a .long 0x2a70 .byte 0x1 .byte 0x1 .uleb128 0x1e .string "min" .byte 0x7 .value 0x39d .byte 0x7 .long .LASF140 .long 0x29f9 .uleb128 0x1e .string "max" .byte 0x7 .value 0x3a0 .byte 0x7 .long .LASF141 .long 0x29f9 .uleb128 0x1f .long .LASF65 .byte 0x7 .value 0x3a4 .byte 0x7 .long .LASF142 .long 0x29f9 .uleb128 0x1c .long .LASF40 .byte 0x7 .value 0x3a7 .byte 0x29 .long 0x2a07 .byte 0xf .byte 0x1 .uleb128 0x1c .long .LASF41 .byte 0x7 .value 0x3a8 .byte 0x29 .long 0x2a07 .byte 0x4 .byte 0x1 .uleb128 0x1c .long .LASF42 .byte 0x7 .value 0x3aa .byte 0x1c .long 0x2a07 .byte 0 .byte 0x1 .uleb128 0x1c .long .LASF43 .byte 0x7 .value 0x3ac .byte 0x2a .long 0x2a70 .byte 0x1 .byte 0x1 .uleb128 0x1c .long .LASF44 .byte 0x7 .value 0x3ad .byte 0x2a .long 0x2a70 .byte 0x1 .byte 0x1 .uleb128 0x1c .long .LASF45 .byte 0x7 .value 0x3ae .byte 0x2a .long 0x2a70 .byte 0x1 .byte 0x1 .uleb128 0x1c .long .LASF46 .byte 0x7 .value 0x3af .byte 0x29 .long 0x2a07 .byte 0x2 .byte 0x1 .uleb128 0x1f .long .LASF66 .byte 0x7 .value 0x3b2 .byte 0x7 .long .LASF143 .long 0x29f9 .uleb128 0x1f .long .LASF69 .byte 0x7 .value 0x3b5 .byte 0x7 .long .LASF144 .long 0x29f9 .uleb128 0x1c .long .LASF47 .byte 0x7 .value 0x3b7 .byte 0x29 .long 0x2a07 .byte 0 .byte 0x1 .uleb128 0x1c .long .LASF48 .byte 0x7 .value 0x3b8 .byte 0x29 .long 0x2a07 .byte 0 .byte 0x1 .uleb128 0x1c .long .LASF49 .byte 0x7 .value 0x3b9 .byte 0x29 .long 0x2a07 .byte 0 .byte 0x1 .uleb128 0x1c .long .LASF50 .byte 0x7 .value 0x3ba .byte 0x29 .long 0x2a07 .byte 0 .byte 0x1 .uleb128 0x1c .long .LASF51 .byte 0x7 .value 0x3bc .byte 0x2a .long 0x2a70 .byte 0 .byte 0x1 .uleb128 0x1c .long .LASF52 .byte 0x7 .value 0x3bd .byte 0x2a .long 0x2a70 .byte 0 .byte 0x1 .uleb128 0x1c .long .LASF53 .byte 0x7 .value 0x3be .byte 0x2a .long 0x2a70 .byte 0 .byte 0x1 .uleb128 0x1c .long .LASF54 .byte 0x7 .value 0x3bf .byte 0x38 .long 0x365 .byte 0 .byte 0x1 .uleb128 0x1c .long .LASF55 .byte 0x7 .value 0x3c1 .byte 0x2a .long 0x2a70 .byte 0 .byte 0x1 .uleb128 0x1f .long .LASF71 .byte 0x7 .value 0x3c4 .byte 0x7 .long .LASF145 .long 0x29f9 .uleb128 0x1f .long .LASF73 .byte 0x7 .value 0x3c7 .byte 0x7 .long .LASF146 .long 0x29f9 .uleb128 0x1f .long .LASF75 .byte 0x7 .value 0x3ca .byte 0x7 .long .LASF147 .long 0x29f9 .uleb128 0x1f .long .LASF77 .byte 0x7 .value 0x3cd .byte 0x7 .long .LASF148 .long 0x29f9 .uleb128 0x1c .long .LASF56 .byte 0x7 .value 0x3cf .byte 0x2a .long 0x2a70 .byte 0 .byte 0x1 .uleb128 0x1c .long .LASF57 .byte 0x7 .value 0x3d0 .byte 0x2a .long 0x2a70 .byte 0x1 .byte 0x1 .uleb128 0x1c .long .LASF58 .byte 0x7 .value 0x3d1 .byte 0x2a .long 0x2a70 .byte 0 .byte 0x1 .uleb128 0x1c .long .LASF59 .byte 0x7 .value 0x3d3 .byte 0x2a .long 0x2a70 .byte 0x1 .byte 0x1 .uleb128 0x1c .long .LASF60 .byte 0x7 .value 0x3d4 .byte 0x2a .long 0x2a70 .byte 0 .byte 0x1 .uleb128 0x1c .long .LASF61 .byte 0x7 .value 0x3d5 .byte 0x37 .long 0x33b .byte 0 .byte 0x1 .uleb128 0xb .string "_Tp" .long 0x29f9 .byte 0 .uleb128 0x1d .long .LASF149 .byte 0x1 .byte 0x7 .value 0x3db .byte 0xc .long 0x171e .uleb128 0x1c .long .LASF39 .byte 0x7 .value 0x3dd .byte 0x2a .long 0x2a70 .byte 0x1 .byte 0x1 .uleb128 0x1e .string "min" .byte 0x7 .value 0x3e0 .byte 0x7 .long .LASF150 .long 0x29d8 .uleb128 0x1e .string "max" .byte 0x7 .value 0x3e3 .byte 0x7 .long .LASF151 .long 0x29d8 .uleb128 0x1f .long .LASF65 .byte 0x7 .value 0x3e7 .byte 0x7 .long .LASF152 .long 0x29d8 .uleb128 0x1c .long .LASF40 .byte 0x7 .value 0x3ea .byte 0x29 .long 0x2a07 .byte 0x10 .byte 0x1 .uleb128 0x1c .long .LASF41 .byte 0x7 .value 0x3ec .byte 0x29 .long 0x2a07 .byte 0x4 .byte 0x1 .uleb128 0x1c .long .LASF42 .byte 0x7 .value 0x3ef .byte 0x1c .long 0x2a07 .byte 0 .byte 0x1 .uleb128 0x1c .long .LASF43 .byte 0x7 .value 0x3f1 .byte 0x2a .long 0x2a70 .byte 0 .byte 0x1 .uleb128 0x1c .long .LASF44 .byte 0x7 .value 0x3f2 .byte 0x2a .long 0x2a70 .byte 0x1 .byte 0x1 .uleb128 0x1c .long .LASF45 .byte 0x7 .value 0x3f3 .byte 0x2a .long 0x2a70 .byte 0x1 .byte 0x1 .uleb128 0x1c .long .LASF46 .byte 0x7 .value 0x3f4 .byte 0x29 .long 0x2a07 .byte 0x2 .byte 0x1 .uleb128 0x1f .long .LASF66 .byte 0x7 .value 0x3f7 .byte 0x7 .long .LASF153 .long 0x29d8 .uleb128 0x1f .long .LASF69 .byte 0x7 .value 0x3fa .byte 0x7 .long .LASF154 .long 0x29d8 .uleb128 0x1c .long .LASF47 .byte 0x7 .value 0x3fc .byte 0x29 .long 0x2a07 .byte 0 .byte 0x1 .uleb128 0x1c .long .LASF48 .byte 0x7 .value 0x3fd .byte 0x29 .long 0x2a07 .byte 0 .byte 0x1 .uleb128 0x1c .long .LASF49 .byte 0x7 .value 0x3fe .byte 0x29 .long 0x2a07 .byte 0 .byte 0x1 .uleb128 0x1c .long .LASF50 .byte 0x7 .value 0x3ff .byte 0x29 .long 0x2a07 .byte 0 .byte 0x1 .uleb128 0x1c .long .LASF51 .byte 0x7 .value 0x401 .byte 0x2a .long 0x2a70 .byte 0 .byte 0x1 .uleb128 0x1c .long .LASF52 .byte 0x7 .value 0x402 .byte 0x2a .long 0x2a70 .byte 0 .byte 0x1 .uleb128 0x1c .long .LASF53 .byte 0x7 .value 0x403 .byte 0x2a .long 0x2a70 .byte 0 .byte 0x1 .uleb128 0x1c .long .LASF54 .byte 0x7 .value 0x404 .byte 0x38 .long 0x365 .byte 0 .byte 0x1 .uleb128 0x1c .long .LASF55 .byte 0x7 .value 0x406 .byte 0x2a .long 0x2a70 .byte 0 .byte 0x1 .uleb128 0x1f .long .LASF71 .byte 0x7 .value 0x409 .byte 0x7 .long .LASF155 .long 0x29d8 .uleb128 0x1f .long .LASF73 .byte 0x7 .value 0x40d .byte 0x7 .long .LASF156 .long 0x29d8 .uleb128 0x1f .long .LASF75 .byte 0x7 .value 0x411 .byte 0x7 .long .LASF157 .long 0x29d8 .uleb128 0x1f .long .LASF77 .byte 0x7 .value 0x415 .byte 0x7 .long .LASF158 .long 0x29d8 .uleb128 0x1c .long .LASF56 .byte 0x7 .value 0x418 .byte 0x2a .long 0x2a70 .byte 0 .byte 0x1 .uleb128 0x1c .long .LASF57 .byte 0x7 .value 0x419 .byte 0x2a .long 0x2a70 .byte 0x1 .byte 0x1 .uleb128 0x1c .long .LASF58 .byte 0x7 .value 0x41a .byte 0x2a .long 0x2a70 .byte 0x1 .byte 0x1 .uleb128 0x1c .long .LASF59 .byte 0x7 .value 0x41c .byte 0x2a .long 0x2a70 .byte 0x1 .byte 0x1 .uleb128 0x1c .long .LASF60 .byte 0x7 .value 0x41d .byte 0x2a .long 0x2a70 .byte 0 .byte 0x1 .uleb128 0x1c .long .LASF61 .byte 0x7 .value 0x41e .byte 0x37 .long 0x33b .byte 0 .byte 0x1 .uleb128 0xb .string "_Tp" .long 0x29d8 .byte 0 .uleb128 0x1d .long .LASF159 .byte 0x1 .byte 0x7 .value 0x424 .byte 0xc .long 0x1928 .uleb128 0x1c .long .LASF39 .byte 0x7 .value 0x426 .byte 0x2a .long 0x2a70 .byte 0x1 .byte 0x1 .uleb128 0x1e .string "min" .byte 0x7 .value 0x429 .byte 0x7 .long .LASF160 .long 0x2a00 .uleb128 0x1e .string "max" .byte 0x7 .value 0x42c .byte 0x7 .long .LASF161 .long 0x2a00 .uleb128 0x1f .long .LASF65 .byte 0x7 .value 0x430 .byte 0x7 .long .LASF162 .long 0x2a00 .uleb128 0x1c .long .LASF40 .byte 0x7 .value 0x433 .byte 0x29 .long 0x2a07 .byte 0x1f .byte 0x1 .uleb128 0x1c .long .LASF41 .byte 0x7 .value 0x434 .byte 0x29 .long 0x2a07 .byte 0x9 .byte 0x1 .uleb128 0x1c .long .LASF42 .byte 0x7 .value 0x436 .byte 0x1c .long 0x2a07 .byte 0 .byte 0x1 .uleb128 0x1c .long .LASF43 .byte 0x7 .value 0x438 .byte 0x2a .long 0x2a70 .byte 0x1 .byte 0x1 .uleb128 0x1c .long .LASF44 .byte 0x7 .value 0x439 .byte 0x2a .long 0x2a70 .byte 0x1 .byte 0x1 .uleb128 0x1c .long .LASF45 .byte 0x7 .value 0x43a .byte 0x2a .long 0x2a70 .byte 0x1 .byte 0x1 .uleb128 0x1c .long .LASF46 .byte 0x7 .value 0x43b .byte 0x29 .long 0x2a07 .byte 0x2 .byte 0x1 .uleb128 0x1f .long .LASF66 .byte 0x7 .value 0x43e .byte 0x7 .long .LASF163 .long 0x2a00 .uleb128 0x1f .long .LASF69 .byte 0x7 .value 0x441 .byte 0x7 .long .LASF164 .long 0x2a00 .uleb128 0x1c .long .LASF47 .byte 0x7 .value 0x443 .byte 0x29 .long 0x2a07 .byte 0 .byte 0x1 .uleb128 0x1c .long .LASF48 .byte 0x7 .value 0x444 .byte 0x29 .long 0x2a07 .byte 0 .byte 0x1 .uleb128 0x1c .long .LASF49 .byte 0x7 .value 0x445 .byte 0x29 .long 0x2a07 .byte 0 .byte 0x1 .uleb128 0x1c .long .LASF50 .byte 0x7 .value 0x446 .byte 0x29 .long 0x2a07 .byte 0 .byte 0x1 .uleb128 0x1c .long .LASF51 .byte 0x7 .value 0x448 .byte 0x2a .long 0x2a70 .byte 0 .byte 0x1 .uleb128 0x1c .long .LASF52 .byte 0x7 .value 0x449 .byte 0x2a .long 0x2a70 .byte 0 .byte 0x1 .uleb128 0x1c .long .LASF53 .byte 0x7 .value 0x44a .byte 0x2a .long 0x2a70 .byte 0 .byte 0x1 .uleb128 0x1c .long .LASF54 .byte 0x7 .value 0x44b .byte 0x38 .long 0x365 .byte 0 .byte 0x1 .uleb128 0x1c .long .LASF55 .byte 0x7 .value 0x44d .byte 0x2a .long 0x2a70 .byte 0 .byte 0x1 .uleb128 0x1f .long .LASF71 .byte 0x7 .value 0x450 .byte 0x7 .long .LASF165 .long 0x2a00 .uleb128 0x1f .long .LASF73 .byte 0x7 .value 0x453 .byte 0x7 .long .LASF166 .long 0x2a00 .uleb128 0x1f .long .LASF75 .byte 0x7 .value 0x456 .byte 0x7 .long .LASF167 .long 0x2a00 .uleb128 0x1f .long .LASF77 .byte 0x7 .value 0x459 .byte 0x7 .long .LASF168 .long 0x2a00 .uleb128 0x1c .long .LASF56 .byte 0x7 .value 0x45b .byte 0x2a .long 0x2a70 .byte 0 .byte 0x1 .uleb128 0x1c .long .LASF57 .byte 0x7 .value 0x45c .byte 0x2a .long 0x2a70 .byte 0x1 .byte 0x1 .uleb128 0x1c .long .LASF58 .byte 0x7 .value 0x45d .byte 0x2a .long 0x2a70 .byte 0 .byte 0x1 .uleb128 0x1c .long .LASF59 .byte 0x7 .value 0x45f .byte 0x2a .long 0x2a70 .byte 0x1 .byte 0x1 .uleb128 0x1c .long .LASF60 .byte 0x7 .value 0x460 .byte 0x2a .long 0x2a70 .byte 0 .byte 0x1 .uleb128 0x1c .long .LASF61 .byte 0x7 .value 0x461 .byte 0x37 .long 0x33b .byte 0 .byte 0x1 .uleb128 0xb .string "_Tp" .long 0x2a00 .byte 0 .uleb128 0x1d .long .LASF169 .byte 0x1 .byte 0x7 .value 0x467 .byte 0xc .long 0x1b32 .uleb128 0x1c .long .LASF39 .byte 0x7 .value 0x469 .byte 0x2a .long 0x2a70 .byte 0x1 .byte 0x1 .uleb128 0x1e .string "min" .byte 0x7 .value 0x46c .byte 0x7 .long .LASF170 .long 0x29ca .uleb128 0x1e .string "max" .byte 0x7 .value 0x46f .byte 0x7 .long .LASF171 .long 0x29ca .uleb128 0x1f .long .LASF65 .byte 0x7 .value 0x473 .byte 0x7 .long .LASF172 .long 0x29ca .uleb128 0x1c .long .LASF40 .byte 0x7 .value 0x476 .byte 0x29 .long 0x2a07 .byte 0x20 .byte 0x1 .uleb128 0x1c .long .LASF41 .byte 0x7 .value 0x478 .byte 0x29 .long 0x2a07 .byte 0x9 .byte 0x1 .uleb128 0x1c .long .LASF42 .byte 0x7 .value 0x47b .byte 0x1c .long 0x2a07 .byte 0 .byte 0x1 .uleb128 0x1c .long .LASF43 .byte 0x7 .value 0x47d .byte 0x2a .long 0x2a70 .byte 0 .byte 0x1 .uleb128 0x1c .long .LASF44 .byte 0x7 .value 0x47e .byte 0x2a .long 0x2a70 .byte 0x1 .byte 0x1 .uleb128 0x1c .long .LASF45 .byte 0x7 .value 0x47f .byte 0x2a .long 0x2a70 .byte 0x1 .byte 0x1 .uleb128 0x1c .long .LASF46 .byte 0x7 .value 0x480 .byte 0x29 .long 0x2a07 .byte 0x2 .byte 0x1 .uleb128 0x1f .long .LASF66 .byte 0x7 .value 0x483 .byte 0x7 .long .LASF173 .long 0x29ca .uleb128 0x1f .long .LASF69 .byte 0x7 .value 0x486 .byte 0x7 .long .LASF174 .long 0x29ca .uleb128 0x1c .long .LASF47 .byte 0x7 .value 0x488 .byte 0x29 .long 0x2a07 .byte 0 .byte 0x1 .uleb128 0x1c .long .LASF48 .byte 0x7 .value 0x489 .byte 0x29 .long 0x2a07 .byte 0 .byte 0x1 .uleb128 0x1c .long .LASF49 .byte 0x7 .value 0x48a .byte 0x29 .long 0x2a07 .byte 0 .byte 0x1 .uleb128 0x1c .long .LASF50 .byte 0x7 .value 0x48b .byte 0x29 .long 0x2a07 .byte 0 .byte 0x1 .uleb128 0x1c .long .LASF51 .byte 0x7 .value 0x48d .byte 0x2a .long 0x2a70 .byte 0 .byte 0x1 .uleb128 0x1c .long .LASF52 .byte 0x7 .value 0x48e .byte 0x2a .long 0x2a70 .byte 0 .byte 0x1 .uleb128 0x1c .long .LASF53 .byte 0x7 .value 0x48f .byte 0x2a .long 0x2a70 .byte 0 .byte 0x1 .uleb128 0x1c .long .LASF54 .byte 0x7 .value 0x490 .byte 0x38 .long 0x365 .byte 0 .byte 0x1 .uleb128 0x1c .long .LASF55 .byte 0x7 .value 0x492 .byte 0x2a .long 0x2a70 .byte 0 .byte 0x1 .uleb128 0x1f .long .LASF71 .byte 0x7 .value 0x495 .byte 0x7 .long .LASF175 .long 0x29ca .uleb128 0x1f .long .LASF73 .byte 0x7 .value 0x498 .byte 0x7 .long .LASF176 .long 0x29ca .uleb128 0x1f .long .LASF75 .byte 0x7 .value 0x49c .byte 0x7 .long .LASF177 .long 0x29ca .uleb128 0x1f .long .LASF77 .byte 0x7 .value 0x4a0 .byte 0x7 .long .LASF178 .long 0x29ca .uleb128 0x1c .long .LASF56 .byte 0x7 .value 0x4a3 .byte 0x2a .long 0x2a70 .byte 0 .byte 0x1 .uleb128 0x1c .long .LASF57 .byte 0x7 .value 0x4a4 .byte 0x2a .long 0x2a70 .byte 0x1 .byte 0x1 .uleb128 0x1c .long .LASF58 .byte 0x7 .value 0x4a5 .byte 0x2a .long 0x2a70 .byte 0x1 .byte 0x1 .uleb128 0x1c .long .LASF59 .byte 0x7 .value 0x4a7 .byte 0x2a .long 0x2a70 .byte 0x1 .byte 0x1 .uleb128 0x1c .long .LASF60 .byte 0x7 .value 0x4a8 .byte 0x2a .long 0x2a70 .byte 0 .byte 0x1 .uleb128 0x1c .long .LASF61 .byte 0x7 .value 0x4a9 .byte 0x37 .long 0x33b .byte 0 .byte 0x1 .uleb128 0xb .string "_Tp" .long 0x29ca .byte 0 .uleb128 0x1d .long .LASF179 .byte 0x1 .byte 0x7 .value 0x4af .byte 0xc .long 0x1d3c .uleb128 0x1c .long .LASF39 .byte 0x7 .value 0x4b1 .byte 0x2a .long 0x2a70 .byte 0x1 .byte 0x1 .uleb128 0x1e .string "min" .byte 0x7 .value 0x4b4 .byte 0x7 .long .LASF180 .long 0x2a0c .uleb128 0x1e .string "max" .byte 0x7 .value 0x4b7 .byte 0x7 .long .LASF181 .long 0x2a0c .uleb128 0x1f .long .LASF65 .byte 0x7 .value 0x4bb .byte 0x7 .long .LASF182 .long 0x2a0c .uleb128 0x1c .long .LASF40 .byte 0x7 .value 0x4be .byte 0x29 .long 0x2a07 .byte 0x3f .byte 0x1 .uleb128 0x1c .long .LASF41 .byte 0x7 .value 0x4bf .byte 0x29 .long 0x2a07 .byte 0x12 .byte 0x1 .uleb128 0x1c .long .LASF42 .byte 0x7 .value 0x4c1 .byte 0x1c .long 0x2a07 .byte 0 .byte 0x1 .uleb128 0x1c .long .LASF43 .byte 0x7 .value 0x4c3 .byte 0x2a .long 0x2a70 .byte 0x1 .byte 0x1 .uleb128 0x1c .long .LASF44 .byte 0x7 .value 0x4c4 .byte 0x2a .long 0x2a70 .byte 0x1 .byte 0x1 .uleb128 0x1c .long .LASF45 .byte 0x7 .value 0x4c5 .byte 0x2a .long 0x2a70 .byte 0x1 .byte 0x1 .uleb128 0x1c .long .LASF46 .byte 0x7 .value 0x4c6 .byte 0x29 .long 0x2a07 .byte 0x2 .byte 0x1 .uleb128 0x1f .long .LASF66 .byte 0x7 .value 0x4c9 .byte 0x7 .long .LASF183 .long 0x2a0c .uleb128 0x1f .long .LASF69 .byte 0x7 .value 0x4cc .byte 0x7 .long .LASF184 .long 0x2a0c .uleb128 0x1c .long .LASF47 .byte 0x7 .value 0x4ce .byte 0x29 .long 0x2a07 .byte 0 .byte 0x1 .uleb128 0x1c .long .LASF48 .byte 0x7 .value 0x4cf .byte 0x29 .long 0x2a07 .byte 0 .byte 0x1 .uleb128 0x1c .long .LASF49 .byte 0x7 .value 0x4d0 .byte 0x29 .long 0x2a07 .byte 0 .byte 0x1 .uleb128 0x1c .long .LASF50 .byte 0x7 .value 0x4d1 .byte 0x29 .long 0x2a07 .byte 0 .byte 0x1 .uleb128 0x1c .long .LASF51 .byte 0x7 .value 0x4d3 .byte 0x2a .long 0x2a70 .byte 0 .byte 0x1 .uleb128 0x1c .long .LASF52 .byte 0x7 .value 0x4d4 .byte 0x2a .long 0x2a70 .byte 0 .byte 0x1 .uleb128 0x1c .long .LASF53 .byte 0x7 .value 0x4d5 .byte 0x2a .long 0x2a70 .byte 0 .byte 0x1 .uleb128 0x1c .long .LASF54 .byte 0x7 .value 0x4d6 .byte 0x38 .long 0x365 .byte 0 .byte 0x1 .uleb128 0x1c .long .LASF55 .byte 0x7 .value 0x4d8 .byte 0x2a .long 0x2a70 .byte 0 .byte 0x1 .uleb128 0x1f .long .LASF71 .byte 0x7 .value 0x4db .byte 0x7 .long .LASF185 .long 0x2a0c .uleb128 0x1f .long .LASF73 .byte 0x7 .value 0x4de .byte 0x7 .long .LASF186 .long 0x2a0c .uleb128 0x1f .long .LASF75 .byte 0x7 .value 0x4e1 .byte 0x7 .long .LASF187 .long 0x2a0c .uleb128 0x1f .long .LASF77 .byte 0x7 .value 0x4e4 .byte 0x7 .long .LASF188 .long 0x2a0c .uleb128 0x1c .long .LASF56 .byte 0x7 .value 0x4e6 .byte 0x2a .long 0x2a70 .byte 0 .byte 0x1 .uleb128 0x1c .long .LASF57 .byte 0x7 .value 0x4e7 .byte 0x2a .long 0x2a70 .byte 0x1 .byte 0x1 .uleb128 0x1c .long .LASF58 .byte 0x7 .value 0x4e8 .byte 0x2a .long 0x2a70 .byte 0 .byte 0x1 .uleb128 0x1c .long .LASF59 .byte 0x7 .value 0x4ea .byte 0x2a .long 0x2a70 .byte 0x1 .byte 0x1 .uleb128 0x1c .long .LASF60 .byte 0x7 .value 0x4eb .byte 0x2a .long 0x2a70 .byte 0 .byte 0x1 .uleb128 0x1c .long .LASF61 .byte 0x7 .value 0x4ec .byte 0x37 .long 0x33b .byte 0 .byte 0x1 .uleb128 0xb .string "_Tp" .long 0x2a0c .byte 0 .uleb128 0x1d .long .LASF189 .byte 0x1 .byte 0x7 .value 0x4f2 .byte 0xc .long 0x1f46 .uleb128 0x1c .long .LASF39 .byte 0x7 .value 0x4f4 .byte 0x2a .long 0x2a70 .byte 0x1 .byte 0x1 .uleb128 0x1e .string "min" .byte 0x7 .value 0x4f7 .byte 0x7 .long .LASF190 .long 0x29df .uleb128 0x1e .string "max" .byte 0x7 .value 0x4fa .byte 0x7 .long .LASF191 .long 0x29df .uleb128 0x1f .long .LASF65 .byte 0x7 .value 0x4fe .byte 0x7 .long .LASF192 .long 0x29df .uleb128 0x1c .long .LASF40 .byte 0x7 .value 0x501 .byte 0x29 .long 0x2a07 .byte 0x40 .byte 0x1 .uleb128 0x1c .long .LASF41 .byte 0x7 .value 0x503 .byte 0x29 .long 0x2a07 .byte 0x13 .byte 0x1 .uleb128 0x1c .long .LASF42 .byte 0x7 .value 0x506 .byte 0x1c .long 0x2a07 .byte 0 .byte 0x1 .uleb128 0x1c .long .LASF43 .byte 0x7 .value 0x508 .byte 0x2a .long 0x2a70 .byte 0 .byte 0x1 .uleb128 0x1c .long .LASF44 .byte 0x7 .value 0x509 .byte 0x2a .long 0x2a70 .byte 0x1 .byte 0x1 .uleb128 0x1c .long .LASF45 .byte 0x7 .value 0x50a .byte 0x2a .long 0x2a70 .byte 0x1 .byte 0x1 .uleb128 0x1c .long .LASF46 .byte 0x7 .value 0x50b .byte 0x29 .long 0x2a07 .byte 0x2 .byte 0x1 .uleb128 0x1f .long .LASF66 .byte 0x7 .value 0x50e .byte 0x7 .long .LASF193 .long 0x29df .uleb128 0x1f .long .LASF69 .byte 0x7 .value 0x511 .byte 0x7 .long .LASF194 .long 0x29df .uleb128 0x1c .long .LASF47 .byte 0x7 .value 0x513 .byte 0x29 .long 0x2a07 .byte 0 .byte 0x1 .uleb128 0x1c .long .LASF48 .byte 0x7 .value 0x514 .byte 0x29 .long 0x2a07 .byte 0 .byte 0x1 .uleb128 0x1c .long .LASF49 .byte 0x7 .value 0x515 .byte 0x29 .long 0x2a07 .byte 0 .byte 0x1 .uleb128 0x1c .long .LASF50 .byte 0x7 .value 0x516 .byte 0x29 .long 0x2a07 .byte 0 .byte 0x1 .uleb128 0x1c .long .LASF51 .byte 0x7 .value 0x518 .byte 0x2a .long 0x2a70 .byte 0 .byte 0x1 .uleb128 0x1c .long .LASF52 .byte 0x7 .value 0x519 .byte 0x2a .long 0x2a70 .byte 0 .byte 0x1 .uleb128 0x1c .long .LASF53 .byte 0x7 .value 0x51a .byte 0x2a .long 0x2a70 .byte 0 .byte 0x1 .uleb128 0x1c .long .LASF54 .byte 0x7 .value 0x51b .byte 0x38 .long 0x365 .byte 0 .byte 0x1 .uleb128 0x1c .long .LASF55 .byte 0x7 .value 0x51d .byte 0x2a .long 0x2a70 .byte 0 .byte 0x1 .uleb128 0x1f .long .LASF71 .byte 0x7 .value 0x520 .byte 0x7 .long .LASF195 .long 0x29df .uleb128 0x1f .long .LASF73 .byte 0x7 .value 0x524 .byte 0x7 .long .LASF196 .long 0x29df .uleb128 0x1f .long .LASF75 .byte 0x7 .value 0x528 .byte 0x7 .long .LASF197 .long 0x29df .uleb128 0x1f .long .LASF77 .byte 0x7 .value 0x52c .byte 0x7 .long .LASF198 .long 0x29df .uleb128 0x1c .long .LASF56 .byte 0x7 .value 0x52f .byte 0x2a .long 0x2a70 .byte 0 .byte 0x1 .uleb128 0x1c .long .LASF57 .byte 0x7 .value 0x530 .byte 0x2a .long 0x2a70 .byte 0x1 .byte 0x1 .uleb128 0x1c .long .LASF58 .byte 0x7 .value 0x531 .byte 0x2a .long 0x2a70 .byte 0x1 .byte 0x1 .uleb128 0x1c .long .LASF59 .byte 0x7 .value 0x533 .byte 0x2a .long 0x2a70 .byte 0x1 .byte 0x1 .uleb128 0x1c .long .LASF60 .byte 0x7 .value 0x534 .byte 0x2a .long 0x2a70 .byte 0 .byte 0x1 .uleb128 0x1c .long .LASF61 .byte 0x7 .value 0x535 .byte 0x37 .long 0x33b .byte 0 .byte 0x1 .uleb128 0xb .string "_Tp" .long 0x29df .byte 0 .uleb128 0x1d .long .LASF199 .byte 0x1 .byte 0x7 .value 0x53b .byte 0xc .long 0x2150 .uleb128 0x1c .long .LASF39 .byte 0x7 .value 0x53d .byte 0x2a .long 0x2a70 .byte 0x1 .byte 0x1 .uleb128 0x1e .string "min" .byte 0x7 .value 0x540 .byte 0x7 .long .LASF200 .long 0x2a13 .uleb128 0x1e .string "max" .byte 0x7 .value 0x543 .byte 0x7 .long .LASF201 .long 0x2a13 .uleb128 0x1f .long .LASF65 .byte 0x7 .value 0x547 .byte 0x7 .long .LASF202 .long 0x2a13 .uleb128 0x1c .long .LASF40 .byte 0x7 .value 0x54a .byte 0x29 .long 0x2a07 .byte 0x3f .byte 0x1 .uleb128 0x1c .long .LASF41 .byte 0x7 .value 0x54c .byte 0x29 .long 0x2a07 .byte 0x12 .byte 0x1 .uleb128 0x1c .long .LASF42 .byte 0x7 .value 0x54f .byte 0x1c .long 0x2a07 .byte 0 .byte 0x1 .uleb128 0x1c .long .LASF43 .byte 0x7 .value 0x551 .byte 0x2a .long 0x2a70 .byte 0x1 .byte 0x1 .uleb128 0x1c .long .LASF44 .byte 0x7 .value 0x552 .byte 0x2a .long 0x2a70 .byte 0x1 .byte 0x1 .uleb128 0x1c .long .LASF45 .byte 0x7 .value 0x553 .byte 0x2a .long 0x2a70 .byte 0x1 .byte 0x1 .uleb128 0x1c .long .LASF46 .byte 0x7 .value 0x554 .byte 0x29 .long 0x2a07 .byte 0x2 .byte 0x1 .uleb128 0x1f .long .LASF66 .byte 0x7 .value 0x557 .byte 0x7 .long .LASF203 .long 0x2a13 .uleb128 0x1f .long .LASF69 .byte 0x7 .value 0x55a .byte 0x7 .long .LASF204 .long 0x2a13 .uleb128 0x1c .long .LASF47 .byte 0x7 .value 0x55c .byte 0x29 .long 0x2a07 .byte 0 .byte 0x1 .uleb128 0x1c .long .LASF48 .byte 0x7 .value 0x55d .byte 0x29 .long 0x2a07 .byte 0 .byte 0x1 .uleb128 0x1c .long .LASF49 .byte 0x7 .value 0x55e .byte 0x29 .long 0x2a07 .byte 0 .byte 0x1 .uleb128 0x1c .long .LASF50 .byte 0x7 .value 0x55f .byte 0x29 .long 0x2a07 .byte 0 .byte 0x1 .uleb128 0x1c .long .LASF51 .byte 0x7 .value 0x561 .byte 0x2a .long 0x2a70 .byte 0 .byte 0x1 .uleb128 0x1c .long .LASF52 .byte 0x7 .value 0x562 .byte 0x2a .long 0x2a70 .byte 0 .byte 0x1 .uleb128 0x1c .long .LASF53 .byte 0x7 .value 0x563 .byte 0x2a .long 0x2a70 .byte 0 .byte 0x1 .uleb128 0x1c .long .LASF54 .byte 0x7 .value 0x564 .byte 0x38 .long 0x365 .byte 0 .byte 0x1 .uleb128 0x1c .long .LASF55 .byte 0x7 .value 0x566 .byte 0x2a .long 0x2a70 .byte 0 .byte 0x1 .uleb128 0x1f .long .LASF71 .byte 0x7 .value 0x569 .byte 0x7 .long .LASF205 .long 0x2a13 .uleb128 0x1f .long .LASF73 .byte 0x7 .value 0x56c .byte 0x7 .long .LASF206 .long 0x2a13 .uleb128 0x1f .long .LASF75 .byte 0x7 .value 0x56f .byte 0x7 .long .LASF207 .long 0x2a13 .uleb128 0x1f .long .LASF77 .byte 0x7 .value 0x573 .byte 0x7 .long .LASF208 .long 0x2a13 .uleb128 0x1c .long .LASF56 .byte 0x7 .value 0x575 .byte 0x2a .long 0x2a70 .byte 0 .byte 0x1 .uleb128 0x1c .long .LASF57 .byte 0x7 .value 0x576 .byte 0x2a .long 0x2a70 .byte 0x1 .byte 0x1 .uleb128 0x1c .long .LASF58 .byte 0x7 .value 0x577 .byte 0x2a .long 0x2a70 .byte 0 .byte 0x1 .uleb128 0x1c .long .LASF59 .byte 0x7 .value 0x579 .byte 0x2a .long 0x2a70 .byte 0x1 .byte 0x1 .uleb128 0x1c .long .LASF60 .byte 0x7 .value 0x57a .byte 0x2a .long 0x2a70 .byte 0 .byte 0x1 .uleb128 0x1c .long .LASF61 .byte 0x7 .value 0x57b .byte 0x37 .long 0x33b .byte 0 .byte 0x1 .uleb128 0xb .string "_Tp" .long 0x2a13 .byte 0 .uleb128 0x1d .long .LASF209 .byte 0x1 .byte 0x7 .value 0x581 .byte 0xc .long 0x235a .uleb128 0x1c .long .LASF39 .byte 0x7 .value 0x583 .byte 0x2a .long 0x2a70 .byte 0x1 .byte 0x1 .uleb128 0x1e .string "min" .byte 0x7 .value 0x586 .byte 0x7 .long .LASF210 .long 0x29eb .uleb128 0x1e .string "max" .byte 0x7 .value 0x589 .byte 0x7 .long .LASF211 .long 0x29eb .uleb128 0x1f .long .LASF65 .byte 0x7 .value 0x58d .byte 0x7 .long .LASF212 .long 0x29eb .uleb128 0x1c .long .LASF40 .byte 0x7 .value 0x590 .byte 0x29 .long 0x2a07 .byte 0x40 .byte 0x1 .uleb128 0x1c .long .LASF41 .byte 0x7 .value 0x592 .byte 0x29 .long 0x2a07 .byte 0x13 .byte 0x1 .uleb128 0x1c .long .LASF42 .byte 0x7 .value 0x595 .byte 0x1c .long 0x2a07 .byte 0 .byte 0x1 .uleb128 0x1c .long .LASF43 .byte 0x7 .value 0x597 .byte 0x2a .long 0x2a70 .byte 0 .byte 0x1 .uleb128 0x1c .long .LASF44 .byte 0x7 .value 0x598 .byte 0x2a .long 0x2a70 .byte 0x1 .byte 0x1 .uleb128 0x1c .long .LASF45 .byte 0x7 .value 0x599 .byte 0x2a .long 0x2a70 .byte 0x1 .byte 0x1 .uleb128 0x1c .long .LASF46 .byte 0x7 .value 0x59a .byte 0x29 .long 0x2a07 .byte 0x2 .byte 0x1 .uleb128 0x1f .long .LASF66 .byte 0x7 .value 0x59d .byte 0x7 .long .LASF213 .long 0x29eb .uleb128 0x1f .long .LASF69 .byte 0x7 .value 0x5a0 .byte 0x7 .long .LASF214 .long 0x29eb .uleb128 0x1c .long .LASF47 .byte 0x7 .value 0x5a2 .byte 0x29 .long 0x2a07 .byte 0 .byte 0x1 .uleb128 0x1c .long .LASF48 .byte 0x7 .value 0x5a3 .byte 0x29 .long 0x2a07 .byte 0 .byte 0x1 .uleb128 0x1c .long .LASF49 .byte 0x7 .value 0x5a4 .byte 0x29 .long 0x2a07 .byte 0 .byte 0x1 .uleb128 0x1c .long .LASF50 .byte 0x7 .value 0x5a5 .byte 0x29 .long 0x2a07 .byte 0 .byte 0x1 .uleb128 0x1c .long .LASF51 .byte 0x7 .value 0x5a7 .byte 0x2a .long 0x2a70 .byte 0 .byte 0x1 .uleb128 0x1c .long .LASF52 .byte 0x7 .value 0x5a8 .byte 0x2a .long 0x2a70 .byte 0 .byte 0x1 .uleb128 0x1c .long .LASF53 .byte 0x7 .value 0x5a9 .byte 0x2a .long 0x2a70 .byte 0 .byte 0x1 .uleb128 0x1c .long .LASF54 .byte 0x7 .value 0x5aa .byte 0x38 .long 0x365 .byte 0 .byte 0x1 .uleb128 0x1c .long .LASF55 .byte 0x7 .value 0x5ac .byte 0x2a .long 0x2a70 .byte 0 .byte 0x1 .uleb128 0x1f .long .LASF71 .byte 0x7 .value 0x5af .byte 0x7 .long .LASF215 .long 0x29eb .uleb128 0x1f .long .LASF73 .byte 0x7 .value 0x5b3 .byte 0x7 .long .LASF216 .long 0x29eb .uleb128 0x1f .long .LASF75 .byte 0x7 .value 0x5b7 .byte 0x7 .long .LASF217 .long 0x29eb .uleb128 0x1f .long .LASF77 .byte 0x7 .value 0x5bb .byte 0x7 .long .LASF218 .long 0x29eb .uleb128 0x1c .long .LASF56 .byte 0x7 .value 0x5be .byte 0x2a .long 0x2a70 .byte 0 .byte 0x1 .uleb128 0x1c .long .LASF57 .byte 0x7 .value 0x5bf .byte 0x2a .long 0x2a70 .byte 0x1 .byte 0x1 .uleb128 0x1c .long .LASF58 .byte 0x7 .value 0x5c0 .byte 0x2a .long 0x2a70 .byte 0x1 .byte 0x1 .uleb128 0x1c .long .LASF59 .byte 0x7 .value 0x5c2 .byte 0x2a .long 0x2a70 .byte 0x1 .byte 0x1 .uleb128 0x1c .long .LASF60 .byte 0x7 .value 0x5c3 .byte 0x2a .long 0x2a70 .byte 0 .byte 0x1 .uleb128 0x1c .long .LASF61 .byte 0x7 .value 0x5c4 .byte 0x37 .long 0x33b .byte 0 .byte 0x1 .uleb128 0xb .string "_Tp" .long 0x29eb .byte 0 .uleb128 0x1d .long .LASF219 .byte 0x1 .byte 0x7 .value 0x67c .byte 0xc .long 0x2565 .uleb128 0x1c .long .LASF39 .byte 0x7 .value 0x67e .byte 0x2a .long 0x2a70 .byte 0x1 .byte 0x1 .uleb128 0x1e .string "min" .byte 0x7 .value 0x681 .byte 0x7 .long .LASF220 .long 0x2a28 .uleb128 0x1e .string "max" .byte 0x7 .value 0x684 .byte 0x7 .long .LASF221 .long 0x2a28 .uleb128 0x1f .long .LASF65 .byte 0x7 .value 0x688 .byte 0x7 .long .LASF222 .long 0x2a28 .uleb128 0x1c .long .LASF40 .byte 0x7 .value 0x68b .byte 0x29 .long 0x2a07 .byte 0x18 .byte 0x1 .uleb128 0x1c .long .LASF41 .byte 0x7 .value 0x68c .byte 0x29 .long 0x2a07 .byte 0x6 .byte 0x1 .uleb128 0x1c .long .LASF42 .byte 0x7 .value 0x68e .byte 0x1c .long 0x2a07 .byte 0x9 .byte 0x1 .uleb128 0x1c .long .LASF43 .byte 0x7 .value 0x691 .byte 0x2a .long 0x2a70 .byte 0x1 .byte 0x1 .uleb128 0x1c .long .LASF44 .byte 0x7 .value 0x692 .byte 0x2a .long 0x2a70 .byte 0 .byte 0x1 .uleb128 0x1c .long .LASF45 .byte 0x7 .value 0x693 .byte 0x2a .long 0x2a70 .byte 0 .byte 0x1 .uleb128 0x1c .long .LASF46 .byte 0x7 .value 0x694 .byte 0x29 .long 0x2a07 .byte 0x2 .byte 0x1 .uleb128 0x1f .long .LASF66 .byte 0x7 .value 0x697 .byte 0x7 .long .LASF223 .long 0x2a28 .uleb128 0x1f .long .LASF69 .byte 0x7 .value 0x69a .byte 0x7 .long .LASF224 .long 0x2a28 .uleb128 0x20 .long .LASF47 .byte 0x7 .value 0x69c .byte 0x29 .long 0x2a07 .sleb128 -125 .byte 0x1 .uleb128 0x20 .long .LASF48 .byte 0x7 .value 0x69d .byte 0x29 .long 0x2a07 .sleb128 -37 .byte 0x1 .uleb128 0x1c .long .LASF49 .byte 0x7 .value 0x69e .byte 0x29 .long 0x2a07 .byte 0x80 .byte 0x1 .uleb128 0x1c .long .LASF50 .byte 0x7 .value 0x69f .byte 0x29 .long 0x2a07 .byte 0x26 .byte 0x1 .uleb128 0x1c .long .LASF51 .byte 0x7 .value 0x6a1 .byte 0x2a .long 0x2a70 .byte 0x1 .byte 0x1 .uleb128 0x1c .long .LASF52 .byte 0x7 .value 0x6a2 .byte 0x2a .long 0x2a70 .byte 0x1 .byte 0x1 .uleb128 0x1c .long .LASF53 .byte 0x7 .value 0x6a3 .byte 0x2a .long 0x2a70 .byte 0x1 .byte 0x1 .uleb128 0x1c .long .LASF54 .byte 0x7 .value 0x6a4 .byte 0x38 .long 0x365 .byte 0x1 .byte 0x1 .uleb128 0x1c .long .LASF55 .byte 0x7 .value 0x6a6 .byte 0x2a .long 0x2a70 .byte 0 .byte 0x1 .uleb128 0x1f .long .LASF71 .byte 0x7 .value 0x6aa .byte 0x7 .long .LASF225 .long 0x2a28 .uleb128 0x1f .long .LASF73 .byte 0x7 .value 0x6ad .byte 0x7 .long .LASF226 .long 0x2a28 .uleb128 0x1f .long .LASF75 .byte 0x7 .value 0x6b0 .byte 0x7 .long .LASF227 .long 0x2a28 .uleb128 0x1f .long .LASF77 .byte 0x7 .value 0x6b3 .byte 0x7 .long .LASF228 .long 0x2a28 .uleb128 0x1c .long .LASF56 .byte 0x7 .value 0x6b5 .byte 0x2a .long 0x2a70 .byte 0x1 .byte 0x1 .uleb128 0x1c .long .LASF57 .byte 0x7 .value 0x6b7 .byte 0x2a .long 0x2a70 .byte 0x1 .byte 0x1 .uleb128 0x1c .long .LASF58 .byte 0x7 .value 0x6b8 .byte 0x2a .long 0x2a70 .byte 0 .byte 0x1 .uleb128 0x1c .long .LASF59 .byte 0x7 .value 0x6ba .byte 0x2a .long 0x2a70 .byte 0 .byte 0x1 .uleb128 0x1c .long .LASF60 .byte 0x7 .value 0x6bb .byte 0x2a .long 0x2a70 .byte 0 .byte 0x1 .uleb128 0x1c .long .LASF61 .byte 0x7 .value 0x6bd .byte 0x37 .long 0x33b .byte 0x1 .byte 0x1 .uleb128 0xb .string "_Tp" .long 0x2a28 .byte 0 .uleb128 0x1d .long .LASF229 .byte 0x1 .byte 0x7 .value 0x6c7 .byte 0xc .long 0x2773 .uleb128 0x1c .long .LASF39 .byte 0x7 .value 0x6c9 .byte 0x2a .long 0x2a70 .byte 0x1 .byte 0x1 .uleb128 0x1e .string "min" .byte 0x7 .value 0x6cc .byte 0x7 .long .LASF230 .long 0x2a21 .uleb128 0x1e .string "max" .byte 0x7 .value 0x6cf .byte 0x7 .long .LASF231 .long 0x2a21 .uleb128 0x1f .long .LASF65 .byte 0x7 .value 0x6d3 .byte 0x7 .long .LASF232 .long 0x2a21 .uleb128 0x1c .long .LASF40 .byte 0x7 .value 0x6d6 .byte 0x29 .long 0x2a07 .byte 0x35 .byte 0x1 .uleb128 0x1c .long .LASF41 .byte 0x7 .value 0x6d7 .byte 0x29 .long 0x2a07 .byte 0xf .byte 0x1 .uleb128 0x1c .long .LASF42 .byte 0x7 .value 0x6d9 .byte 0x1c .long 0x2a07 .byte 0x11 .byte 0x1 .uleb128 0x1c .long .LASF43 .byte 0x7 .value 0x6dc .byte 0x2a .long 0x2a70 .byte 0x1 .byte 0x1 .uleb128 0x1c .long .LASF44 .byte 0x7 .value 0x6dd .byte 0x2a .long 0x2a70 .byte 0 .byte 0x1 .uleb128 0x1c .long .LASF45 .byte 0x7 .value 0x6de .byte 0x2a .long 0x2a70 .byte 0 .byte 0x1 .uleb128 0x1c .long .LASF46 .byte 0x7 .value 0x6df .byte 0x29 .long 0x2a07 .byte 0x2 .byte 0x1 .uleb128 0x1f .long .LASF66 .byte 0x7 .value 0x6e2 .byte 0x7 .long .LASF233 .long 0x2a21 .uleb128 0x1f .long .LASF69 .byte 0x7 .value 0x6e5 .byte 0x7 .long .LASF234 .long 0x2a21 .uleb128 0x20 .long .LASF47 .byte 0x7 .value 0x6e7 .byte 0x29 .long 0x2a07 .sleb128 -1021 .byte 0x1 .uleb128 0x20 .long .LASF48 .byte 0x7 .value 0x6e8 .byte 0x29 .long 0x2a07 .sleb128 -307 .byte 0x1 .uleb128 0x21 .long .LASF49 .byte 0x7 .value 0x6e9 .byte 0x29 .long 0x2a07 .value 0x400 .byte 0x1 .uleb128 0x21 .long .LASF50 .byte 0x7 .value 0x6ea .byte 0x29 .long 0x2a07 .value 0x134 .byte 0x1 .uleb128 0x1c .long .LASF51 .byte 0x7 .value 0x6ec .byte 0x2a .long 0x2a70 .byte 0x1 .byte 0x1 .uleb128 0x1c .long .LASF52 .byte 0x7 .value 0x6ed .byte 0x2a .long 0x2a70 .byte 0x1 .byte 0x1 .uleb128 0x1c .long .LASF53 .byte 0x7 .value 0x6ee .byte 0x2a .long 0x2a70 .byte 0x1 .byte 0x1 .uleb128 0x1c .long .LASF54 .byte 0x7 .value 0x6ef .byte 0x38 .long 0x365 .byte 0x1 .byte 0x1 .uleb128 0x1c .long .LASF55 .byte 0x7 .value 0x6f1 .byte 0x2a .long 0x2a70 .byte 0 .byte 0x1 .uleb128 0x1f .long .LASF71 .byte 0x7 .value 0x6f5 .byte 0x7 .long .LASF235 .long 0x2a21 .uleb128 0x1f .long .LASF73 .byte 0x7 .value 0x6f8 .byte 0x7 .long .LASF236 .long 0x2a21 .uleb128 0x1f .long .LASF75 .byte 0x7 .value 0x6fb .byte 0x7 .long .LASF237 .long 0x2a21 .uleb128 0x1f .long .LASF77 .byte 0x7 .value 0x6fe .byte 0x7 .long .LASF238 .long 0x2a21 .uleb128 0x1c .long .LASF56 .byte 0x7 .value 0x700 .byte 0x2a .long 0x2a70 .byte 0x1 .byte 0x1 .uleb128 0x1c .long .LASF57 .byte 0x7 .value 0x702 .byte 0x2a .long 0x2a70 .byte 0x1 .byte 0x1 .uleb128 0x1c .long .LASF58 .byte 0x7 .value 0x703 .byte 0x2a .long 0x2a70 .byte 0 .byte 0x1 .uleb128 0x1c .long .LASF59 .byte 0x7 .value 0x705 .byte 0x2a .long 0x2a70 .byte 0 .byte 0x1 .uleb128 0x1c .long .LASF60 .byte 0x7 .value 0x706 .byte 0x2a .long 0x2a70 .byte 0 .byte 0x1 .uleb128 0x1c .long .LASF61 .byte 0x7 .value 0x708 .byte 0x37 .long 0x33b .byte 0x1 .byte 0x1 .uleb128 0xb .string "_Tp" .long 0x2a21 .byte 0 .uleb128 0x1d .long .LASF239 .byte 0x1 .byte 0x7 .value 0x712 .byte 0xc .long 0x2982 .uleb128 0x1c .long .LASF39 .byte 0x7 .value 0x714 .byte 0x2a .long 0x2a70 .byte 0x1 .byte 0x1 .uleb128 0x1e .string "min" .byte 0x7 .value 0x717 .byte 0x7 .long .LASF240 .long 0x2a1a .uleb128 0x1e .string "max" .byte 0x7 .value 0x71a .byte 0x7 .long .LASF241 .long 0x2a1a .uleb128 0x1f .long .LASF65 .byte 0x7 .value 0x71e .byte 0x7 .long .LASF242 .long 0x2a1a .uleb128 0x1c .long .LASF40 .byte 0x7 .value 0x721 .byte 0x29 .long 0x2a07 .byte 0x40 .byte 0x1 .uleb128 0x1c .long .LASF41 .byte 0x7 .value 0x722 .byte 0x29 .long 0x2a07 .byte 0x12 .byte 0x1 .uleb128 0x1c .long .LASF42 .byte 0x7 .value 0x724 .byte 0x29 .long 0x2a07 .byte 0x15 .byte 0x1 .uleb128 0x1c .long .LASF43 .byte 0x7 .value 0x727 .byte 0x2a .long 0x2a70 .byte 0x1 .byte 0x1 .uleb128 0x1c .long .LASF44 .byte 0x7 .value 0x728 .byte 0x2a .long 0x2a70 .byte 0 .byte 0x1 .uleb128 0x1c .long .LASF45 .byte 0x7 .value 0x729 .byte 0x2a .long 0x2a70 .byte 0 .byte 0x1 .uleb128 0x1c .long .LASF46 .byte 0x7 .value 0x72a .byte 0x29 .long 0x2a07 .byte 0x2 .byte 0x1 .uleb128 0x1f .long .LASF66 .byte 0x7 .value 0x72d .byte 0x7 .long .LASF243 .long 0x2a1a .uleb128 0x1f .long .LASF69 .byte 0x7 .value 0x730 .byte 0x7 .long .LASF244 .long 0x2a1a .uleb128 0x20 .long .LASF47 .byte 0x7 .value 0x732 .byte 0x29 .long 0x2a07 .sleb128 -16381 .byte 0x1 .uleb128 0x20 .long .LASF48 .byte 0x7 .value 0x733 .byte 0x29 .long 0x2a07 .sleb128 -4931 .byte 0x1 .uleb128 0x21 .long .LASF49 .byte 0x7 .value 0x734 .byte 0x29 .long 0x2a07 .value 0x4000 .byte 0x1 .uleb128 0x21 .long .LASF50 .byte 0x7 .value 0x735 .byte 0x29 .long 0x2a07 .value 0x1344 .byte 0x1 .uleb128 0x1c .long .LASF51 .byte 0x7 .value 0x737 .byte 0x2a .long 0x2a70 .byte 0x1 .byte 0x1 .uleb128 0x1c .long .LASF52 .byte 0x7 .value 0x738 .byte 0x2a .long 0x2a70 .byte 0x1 .byte 0x1 .uleb128 0x1c .long .LASF53 .byte 0x7 .value 0x739 .byte 0x2a .long 0x2a70 .byte 0x1 .byte 0x1 .uleb128 0x1c .long .LASF54 .byte 0x7 .value 0x73a .byte 0x38 .long 0x365 .byte 0x1 .byte 0x1 .uleb128 0x1c .long .LASF55 .byte 0x7 .value 0x73c .byte 0x2a .long 0x2a70 .byte 0 .byte 0x1 .uleb128 0x1f .long .LASF71 .byte 0x7 .value 0x740 .byte 0x7 .long .LASF245 .long 0x2a1a .uleb128 0x1f .long .LASF73 .byte 0x7 .value 0x743 .byte 0x7 .long .LASF246 .long 0x2a1a .uleb128 0x1f .long .LASF75 .byte 0x7 .value 0x746 .byte 0x7 .long .LASF247 .long 0x2a1a .uleb128 0x1f .long .LASF77 .byte 0x7 .value 0x749 .byte 0x7 .long .LASF248 .long 0x2a1a .uleb128 0x1c .long .LASF56 .byte 0x7 .value 0x74b .byte 0x2a .long 0x2a70 .byte 0x1 .byte 0x1 .uleb128 0x1c .long .LASF57 .byte 0x7 .value 0x74d .byte 0x2a .long 0x2a70 .byte 0x1 .byte 0x1 .uleb128 0x1c .long .LASF58 .byte 0x7 .value 0x74e .byte 0x2a .long 0x2a70 .byte 0 .byte 0x1 .uleb128 0x1c .long .LASF59 .byte 0x7 .value 0x750 .byte 0x2a .long 0x2a70 .byte 0 .byte 0x1 .uleb128 0x1c .long .LASF60 .byte 0x7 .value 0x751 .byte 0x2a .long 0x2a70 .byte 0 .byte 0x1 .uleb128 0x1c .long .LASF61 .byte 0x7 .value 0x753 .byte 0x37 .long 0x33b .byte 0x1 .byte 0x1 .uleb128 0xb .string "_Tp" .long 0x2a1a .byte 0 .uleb128 0x17 .long .LASF249 .byte 0x8 .byte 0x32 .byte 0xd .uleb128 0x22 .long .LASF726 .byte 0x2 .value 0x104 .byte 0x3 .long .LASF727 .long 0x2a28 .uleb128 0x23 .long 0x2a28 .byte 0 .byte 0 .uleb128 0x24 .long .LASF281 .byte 0x4 .value 0x116 .byte 0xb .long 0x29ca .uleb128 0x3 .long .LASF250 .byte 0x4 .value 0x118 .byte 0x41 .uleb128 0x4 .byte 0x4 .value 0x118 .byte 0x41 .long 0x29af .uleb128 0x17 .long .LASF251 .byte 0x9 .byte 0x23 .byte 0xb .byte 0 .uleb128 0x25 .byte 0x4 .byte 0x7 .long .LASF252 .uleb128 0x25 .byte 0x1 .byte 0x8 .long .LASF253 .uleb128 0x25 .byte 0x2 .byte 0x7 .long .LASF254 .uleb128 0x25 .byte 0x8 .byte 0x7 .long .LASF255 .uleb128 0xd .long 0x29df .uleb128 0x25 .byte 0x8 .byte 0x7 .long .LASF256 .uleb128 0x25 .byte 0x1 .byte 0x6 .long .LASF257 .uleb128 0x25 .byte 0x2 .byte 0x5 .long .LASF258 .uleb128 0x26 .byte 0x4 .byte 0x5 .string "int" .uleb128 0xd .long 0x2a00 .uleb128 0x25 .byte 0x8 .byte 0x5 .long .LASF259 .uleb128 0x25 .byte 0x8 .byte 0x5 .long .LASF260 .uleb128 0x25 .byte 0x10 .byte 0x4 .long .LASF261 .uleb128 0x25 .byte 0x8 .byte 0x4 .long .LASF262 .uleb128 0x25 .byte 0x4 .byte 0x4 .long .LASF263 .uleb128 0x25 .byte 0x1 .byte 0x6 .long .LASF264 .uleb128 0x25 .byte 0x20 .byte 0x3 .long .LASF265 .uleb128 0x25 .byte 0x10 .byte 0x4 .long .LASF266 .uleb128 0x8 .long .LASF267 .byte 0xa .byte 0x95 .byte 0xf .long 0x2a28 .uleb128 0x8 .long .LASF268 .byte 0xa .byte 0x96 .byte 0x10 .long 0x2a21 .uleb128 0x27 .long .LASF728 .byte 0xa .value 0x1e9 .byte 0xc .long 0x2a00 .uleb128 0x25 .byte 0x1 .byte 0x2 .long .LASF269 .uleb128 0xd .long 0x2a69 .uleb128 0x28 .long .LASF270 .long 0x69 .byte 0 .uleb128 0x29 .byte 0x8 .long 0xd2 .uleb128 0x28 .long .LASF271 .long 0xe4 .byte 0x1 .uleb128 0x29 .byte 0x8 .long 0x14d .uleb128 0x2a .long .LASF272 .long 0x15f .uleb128 0x29 .byte 0x8 .long 0x1c8 .uleb128 0x2a .long .LASF273 .long 0x201 .uleb128 0x2a .long .LASF274 .long 0x226 .uleb128 0x28 .long .LASF275 .long 0x24b .byte 0x4 .uleb128 0x28 .long .LASF276 .long 0x270 .byte 0x2 .uleb128 0x28 .long .LASF277 .long 0x291 .byte 0x1 .uleb128 0x25 .byte 0x4 .byte 0x5 .long .LASF278 .uleb128 0x25 .byte 0x2 .byte 0x10 .long .LASF279 .uleb128 0x25 .byte 0x4 .byte 0x10 .long .LASF280 .uleb128 0x29 .byte 0x8 .long 0x2c5 .uleb128 0x2b .long 0x2ef .uleb128 0x2c .long .LASF282 .byte 0x6 .byte 0x38 .byte 0xb .long 0x2b09 .uleb128 0x2d .byte 0x6 .byte 0x3a .byte 0x18 .long 0x302 .byte 0 .uleb128 0x2a .long .LASF283 .long 0x377 .uleb128 0x2a .long .LASF284 .long 0x385 .uleb128 0x2a .long .LASF285 .long 0x393 .uleb128 0x2a .long .LASF286 .long 0x3a1 .uleb128 0x2a .long .LASF287 .long 0x3af .uleb128 0x2a .long .LASF288 .long 0x3bd .uleb128 0x2a .long .LASF289 .long 0x3cb .uleb128 0x2a .long .LASF290 .long 0x3d9 .uleb128 0x2a .long .LASF291 .long 0x3e7 .uleb128 0x2a .long .LASF292 .long 0x3f5 .uleb128 0x2a .long .LASF293 .long 0x403 .uleb128 0x2a .long .LASF294 .long 0x411 .uleb128 0x2a .long .LASF295 .long 0x41f .uleb128 0x2a .long .LASF296 .long 0x42d .uleb128 0x2a .long .LASF297 .long 0x43c .uleb128 0x2a .long .LASF298 .long 0x44b .uleb128 0x2a .long .LASF299 .long 0x45a .uleb128 0x2a .long .LASF300 .long 0x469 .uleb128 0x2a .long .LASF301 .long 0x478 .uleb128 0x2a .long .LASF302 .long 0x487 .uleb128 0x2a .long .LASF303 .long 0x496 .uleb128 0x2a .long .LASF304 .long 0x4a5 .uleb128 0x2a .long .LASF305 .long 0x4b4 .uleb128 0x2a .long .LASF306 .long 0x4d2 .uleb128 0x2a .long .LASF307 .long 0x514 .uleb128 0x2a .long .LASF308 .long 0x523 .uleb128 0x2a .long .LASF309 .long 0x532 .uleb128 0x2a .long .LASF310 .long 0x541 .uleb128 0x2a .long .LASF311 .long 0x550 .uleb128 0x2a .long .LASF312 .long 0x55f .uleb128 0x2a .long .LASF313 .long 0x56e .uleb128 0x2a .long .LASF314 .long 0x59f .uleb128 0x2a .long .LASF315 .long 0x5ae .uleb128 0x2a .long .LASF316 .long 0x5bd .uleb128 0x2a .long .LASF317 .long 0x5cc .uleb128 0x2a .long .LASF318 .long 0x5db .uleb128 0x2a .long .LASF319 .long 0x5ea .uleb128 0x2a .long .LASF320 .long 0x5f9 .uleb128 0x2a .long .LASF321 .long 0x608 .uleb128 0x2a .long .LASF322 .long 0x617 .uleb128 0x2a .long .LASF323 .long 0x66a .uleb128 0x2a .long .LASF324 .long 0x679 .uleb128 0x2a .long .LASF325 .long 0x688 .uleb128 0x2a .long .LASF326 .long 0x697 .uleb128 0x2a .long .LASF327 .long 0x6a6 .uleb128 0x2a .long .LASF328 .long 0x6b5 .uleb128 0x2a .long .LASF329 .long 0x6dc .uleb128 0x2a .long .LASF330 .long 0x71e .uleb128 0x2a .long .LASF331 .long 0x72d .uleb128 0x2a .long .LASF332 .long 0x73c .uleb128 0x2a .long .LASF333 .long 0x74b .uleb128 0x2a .long .LASF334 .long 0x75a .uleb128 0x2a .long .LASF335 .long 0x769 .uleb128 0x2a .long .LASF336 .long 0x778 .uleb128 0x2a .long .LASF337 .long 0x7a9 .uleb128 0x2a .long .LASF338 .long 0x7b8 .uleb128 0x2a .long .LASF339 .long 0x7c7 .uleb128 0x2a .long .LASF340 .long 0x7d6 .uleb128 0x2a .long .LASF341 .long 0x7e5 .uleb128 0x2a .long .LASF342 .long 0x7f4 .uleb128 0x2a .long .LASF343 .long 0x803 .uleb128 0x2a .long .LASF344 .long 0x812 .uleb128 0x2a .long .LASF345 .long 0x821 .uleb128 0x2a .long .LASF346 .long 0x874 .uleb128 0x2a .long .LASF347 .long 0x883 .uleb128 0x2a .long .LASF348 .long 0x892 .uleb128 0x2a .long .LASF349 .long 0x8a1 .uleb128 0x2a .long .LASF350 .long 0x8b0 .uleb128 0x2a .long .LASF351 .long 0x8bf .uleb128 0x2a .long .LASF352 .long 0x8e6 .uleb128 0x2a .long .LASF353 .long 0x928 .uleb128 0x2a .long .LASF354 .long 0x937 .uleb128 0x2a .long .LASF355 .long 0x946 .uleb128 0x2a .long .LASF356 .long 0x955 .uleb128 0x2a .long .LASF357 .long 0x964 .uleb128 0x2a .long .LASF358 .long 0x973 .uleb128 0x2a .long .LASF359 .long 0x982 .uleb128 0x2a .long .LASF360 .long 0x9b3 .uleb128 0x2a .long .LASF361 .long 0x9c2 .uleb128 0x2a .long .LASF362 .long 0x9d1 .uleb128 0x2a .long .LASF363 .long 0x9e0 .uleb128 0x2a .long .LASF364 .long 0x9ef .uleb128 0x2a .long .LASF365 .long 0x9fe .uleb128 0x2a .long .LASF366 .long 0xa0d .uleb128 0x2a .long .LASF367 .long 0xa1c .uleb128 0x2a .long .LASF368 .long 0xa2b .uleb128 0x2a .long .LASF369 .long 0xa7e .uleb128 0x2a .long .LASF370 .long 0xa8d .uleb128 0x2a .long .LASF371 .long 0xa9c .uleb128 0x2a .long .LASF372 .long 0xaab .uleb128 0x2a .long .LASF373 .long 0xaba .uleb128 0x2a .long .LASF374 .long 0xac9 .uleb128 0x2a .long .LASF375 .long 0xaf0 .uleb128 0x2a .long .LASF376 .long 0xb32 .uleb128 0x2a .long .LASF377 .long 0xb41 .uleb128 0x2a .long .LASF378 .long 0xb50 .uleb128 0x2a .long .LASF379 .long 0xb5f .uleb128 0x2a .long .LASF380 .long 0xb6e .uleb128 0x2a .long .LASF381 .long 0xb7d .uleb128 0x2a .long .LASF382 .long 0xb8c .uleb128 0x2a .long .LASF383 .long 0xbbd .uleb128 0x2a .long .LASF384 .long 0xbcc .uleb128 0x2a .long .LASF385 .long 0xbdb .uleb128 0x2a .long .LASF386 .long 0xbea .uleb128 0x2a .long .LASF387 .long 0xbf9 .uleb128 0x2a .long .LASF388 .long 0xc08 .uleb128 0x2a .long .LASF389 .long 0xc17 .uleb128 0x2a .long .LASF390 .long 0xc26 .uleb128 0x2a .long .LASF391 .long 0xc35 .uleb128 0x2a .long .LASF392 .long 0xc88 .uleb128 0x2a .long .LASF393 .long 0xc97 .uleb128 0x2a .long .LASF394 .long 0xca6 .uleb128 0x2a .long .LASF395 .long 0xcb5 .uleb128 0x2a .long .LASF396 .long 0xcc4 .uleb128 0x2a .long .LASF397 .long 0xcd3 .uleb128 0x2a .long .LASF398 .long 0xcfa .uleb128 0x2a .long .LASF399 .long 0xd3c .uleb128 0x2a .long .LASF400 .long 0xd4b .uleb128 0x2a .long .LASF401 .long 0xd5a .uleb128 0x2a .long .LASF402 .long 0xd69 .uleb128 0x2a .long .LASF403 .long 0xd78 .uleb128 0x2a .long .LASF404 .long 0xd87 .uleb128 0x2a .long .LASF405 .long 0xd96 .uleb128 0x2a .long .LASF406 .long 0xdc7 .uleb128 0x2a .long .LASF407 .long 0xdd6 .uleb128 0x2a .long .LASF408 .long 0xde5 .uleb128 0x2a .long .LASF409 .long 0xdf4 .uleb128 0x2a .long .LASF410 .long 0xe03 .uleb128 0x2a .long .LASF411 .long 0xe12 .uleb128 0x2a .long .LASF412 .long 0xe21 .uleb128 0x2a .long .LASF413 .long 0xe30 .uleb128 0x2a .long .LASF414 .long 0xe3f .uleb128 0x2a .long .LASF415 .long 0xe92 .uleb128 0x2a .long .LASF416 .long 0xea1 .uleb128 0x2a .long .LASF417 .long 0xeb0 .uleb128 0x2a .long .LASF418 .long 0xebf .uleb128 0x2a .long .LASF419 .long 0xece .uleb128 0x2a .long .LASF420 .long 0xedd .uleb128 0x2a .long .LASF421 .long 0xf04 .uleb128 0x2a .long .LASF422 .long 0xf46 .uleb128 0x2a .long .LASF423 .long 0xf55 .uleb128 0x2a .long .LASF424 .long 0xf64 .uleb128 0x2a .long .LASF425 .long 0xf73 .uleb128 0x2a .long .LASF426 .long 0xf82 .uleb128 0x2a .long .LASF427 .long 0xf91 .uleb128 0x2a .long .LASF428 .long 0xfa0 .uleb128 0x2a .long .LASF429 .long 0xfd1 .uleb128 0x2a .long .LASF430 .long 0xfe0 .uleb128 0x2a .long .LASF431 .long 0xfef .uleb128 0x2a .long .LASF432 .long 0xffe .uleb128 0x2a .long .LASF433 .long 0x100d .uleb128 0x2a .long .LASF434 .long 0x101c .uleb128 0x2a .long .LASF435 .long 0x102b .uleb128 0x2a .long .LASF436 .long 0x103a .uleb128 0x2a .long .LASF437 .long 0x1049 .uleb128 0x2a .long .LASF438 .long 0x109c .uleb128 0x2a .long .LASF439 .long 0x10ab .uleb128 0x2a .long .LASF440 .long 0x10ba .uleb128 0x2a .long .LASF441 .long 0x10c9 .uleb128 0x2a .long .LASF442 .long 0x10d8 .uleb128 0x2a .long .LASF443 .long 0x10e7 .uleb128 0x2a .long .LASF444 .long 0x110e .uleb128 0x2a .long .LASF445 .long 0x1150 .uleb128 0x2a .long .LASF446 .long 0x115f .uleb128 0x2a .long .LASF447 .long 0x116e .uleb128 0x2a .long .LASF448 .long 0x117d .uleb128 0x2a .long .LASF449 .long 0x118c .uleb128 0x2a .long .LASF450 .long 0x119b .uleb128 0x2a .long .LASF451 .long 0x11aa .uleb128 0x2a .long .LASF452 .long 0x11db .uleb128 0x2a .long .LASF453 .long 0x11ea .uleb128 0x2a .long .LASF454 .long 0x11f9 .uleb128 0x2a .long .LASF455 .long 0x1208 .uleb128 0x2a .long .LASF456 .long 0x1217 .uleb128 0x2a .long .LASF457 .long 0x1226 .uleb128 0x2a .long .LASF458 .long 0x1235 .uleb128 0x2a .long .LASF459 .long 0x1244 .uleb128 0x2a .long .LASF460 .long 0x1253 .uleb128 0x2a .long .LASF461 .long 0x12a6 .uleb128 0x2a .long .LASF462 .long 0x12b5 .uleb128 0x2a .long .LASF463 .long 0x12c4 .uleb128 0x2a .long .LASF464 .long 0x12d3 .uleb128 0x2a .long .LASF465 .long 0x12e2 .uleb128 0x2a .long .LASF466 .long 0x12f1 .uleb128 0x2a .long .LASF467 .long 0x1318 .uleb128 0x2a .long .LASF468 .long 0x135a .uleb128 0x2a .long .LASF469 .long 0x1369 .uleb128 0x2a .long .LASF470 .long 0x1378 .uleb128 0x2a .long .LASF471 .long 0x1387 .uleb128 0x2a .long .LASF472 .long 0x1396 .uleb128 0x2a .long .LASF473 .long 0x13a5 .uleb128 0x2a .long .LASF474 .long 0x13b4 .uleb128 0x2a .long .LASF475 .long 0x13e5 .uleb128 0x2a .long .LASF476 .long 0x13f4 .uleb128 0x2a .long .LASF477 .long 0x1403 .uleb128 0x2a .long .LASF478 .long 0x1412 .uleb128 0x2a .long .LASF479 .long 0x1421 .uleb128 0x2a .long .LASF480 .long 0x1430 .uleb128 0x2a .long .LASF481 .long 0x143f .uleb128 0x2a .long .LASF482 .long 0x144e .uleb128 0x2a .long .LASF483 .long 0x145d .uleb128 0x2a .long .LASF484 .long 0x14b0 .uleb128 0x2a .long .LASF485 .long 0x14bf .uleb128 0x2a .long .LASF486 .long 0x14ce .uleb128 0x2a .long .LASF487 .long 0x14dd .uleb128 0x2a .long .LASF488 .long 0x14ec .uleb128 0x2a .long .LASF489 .long 0x14fb .uleb128 0x2a .long .LASF490 .long 0x1522 .uleb128 0x2a .long .LASF491 .long 0x1564 .uleb128 0x2a .long .LASF492 .long 0x1573 .uleb128 0x2a .long .LASF493 .long 0x1582 .uleb128 0x2a .long .LASF494 .long 0x1591 .uleb128 0x2a .long .LASF495 .long 0x15a0 .uleb128 0x2a .long .LASF496 .long 0x15af .uleb128 0x2a .long .LASF497 .long 0x15be .uleb128 0x2a .long .LASF498 .long 0x15ef .uleb128 0x2a .long .LASF499 .long 0x15fe .uleb128 0x2a .long .LASF500 .long 0x160d .uleb128 0x2a .long .LASF501 .long 0x161c .uleb128 0x2a .long .LASF502 .long 0x162b .uleb128 0x2a .long .LASF503 .long 0x163a .uleb128 0x2a .long .LASF504 .long 0x1649 .uleb128 0x2a .long .LASF505 .long 0x1658 .uleb128 0x2a .long .LASF506 .long 0x1667 .uleb128 0x2a .long .LASF507 .long 0x16ba .uleb128 0x2a .long .LASF508 .long 0x16c9 .uleb128 0x2a .long .LASF509 .long 0x16d8 .uleb128 0x2a .long .LASF510 .long 0x16e7 .uleb128 0x2a .long .LASF511 .long 0x16f6 .uleb128 0x2a .long .LASF512 .long 0x1705 .uleb128 0x2a .long .LASF513 .long 0x172c .uleb128 0x2a .long .LASF514 .long 0x176e .uleb128 0x2a .long .LASF515 .long 0x177d .uleb128 0x2a .long .LASF516 .long 0x178c .uleb128 0x2a .long .LASF517 .long 0x179b .uleb128 0x2a .long .LASF518 .long 0x17aa .uleb128 0x2a .long .LASF519 .long 0x17b9 .uleb128 0x2a .long .LASF520 .long 0x17c8 .uleb128 0x2a .long .LASF521 .long 0x17f9 .uleb128 0x2a .long .LASF522 .long 0x1808 .uleb128 0x2a .long .LASF523 .long 0x1817 .uleb128 0x2a .long .LASF524 .long 0x1826 .uleb128 0x2a .long .LASF525 .long 0x1835 .uleb128 0x2a .long .LASF526 .long 0x1844 .uleb128 0x2a .long .LASF527 .long 0x1853 .uleb128 0x2a .long .LASF528 .long 0x1862 .uleb128 0x2a .long .LASF529 .long 0x1871 .uleb128 0x2a .long .LASF530 .long 0x18c4 .uleb128 0x2a .long .LASF531 .long 0x18d3 .uleb128 0x2a .long .LASF532 .long 0x18e2 .uleb128 0x2a .long .LASF533 .long 0x18f1 .uleb128 0x2a .long .LASF534 .long 0x1900 .uleb128 0x2a .long .LASF535 .long 0x190f .uleb128 0x2a .long .LASF536 .long 0x1936 .uleb128 0x2a .long .LASF537 .long 0x1978 .uleb128 0x2a .long .LASF538 .long 0x1987 .uleb128 0x2a .long .LASF539 .long 0x1996 .uleb128 0x2a .long .LASF540 .long 0x19a5 .uleb128 0x2a .long .LASF541 .long 0x19b4 .uleb128 0x2a .long .LASF542 .long 0x19c3 .uleb128 0x2a .long .LASF543 .long 0x19d2 .uleb128 0x2a .long .LASF544 .long 0x1a03 .uleb128 0x2a .long .LASF545 .long 0x1a12 .uleb128 0x2a .long .LASF546 .long 0x1a21 .uleb128 0x2a .long .LASF547 .long 0x1a30 .uleb128 0x2a .long .LASF548 .long 0x1a3f .uleb128 0x2a .long .LASF549 .long 0x1a4e .uleb128 0x2a .long .LASF550 .long 0x1a5d .uleb128 0x2a .long .LASF551 .long 0x1a6c .uleb128 0x2a .long .LASF552 .long 0x1a7b .uleb128 0x2a .long .LASF553 .long 0x1ace .uleb128 0x2a .long .LASF554 .long 0x1add .uleb128 0x2a .long .LASF555 .long 0x1aec .uleb128 0x2a .long .LASF556 .long 0x1afb .uleb128 0x2a .long .LASF557 .long 0x1b0a .uleb128 0x2a .long .LASF558 .long 0x1b19 .uleb128 0x2a .long .LASF559 .long 0x1b40 .uleb128 0x2a .long .LASF560 .long 0x1b82 .uleb128 0x2a .long .LASF561 .long 0x1b91 .uleb128 0x2a .long .LASF562 .long 0x1ba0 .uleb128 0x2a .long .LASF563 .long 0x1baf .uleb128 0x2a .long .LASF564 .long 0x1bbe .uleb128 0x2a .long .LASF565 .long 0x1bcd .uleb128 0x2a .long .LASF566 .long 0x1bdc .uleb128 0x2a .long .LASF567 .long 0x1c0d .uleb128 0x2a .long .LASF568 .long 0x1c1c .uleb128 0x2a .long .LASF569 .long 0x1c2b .uleb128 0x2a .long .LASF570 .long 0x1c3a .uleb128 0x2a .long .LASF571 .long 0x1c49 .uleb128 0x2a .long .LASF572 .long 0x1c58 .uleb128 0x2a .long .LASF573 .long 0x1c67 .uleb128 0x2a .long .LASF574 .long 0x1c76 .uleb128 0x2a .long .LASF575 .long 0x1c85 .uleb128 0x2a .long .LASF576 .long 0x1cd8 .uleb128 0x2a .long .LASF577 .long 0x1ce7 .uleb128 0x2a .long .LASF578 .long 0x1cf6 .uleb128 0x2a .long .LASF579 .long 0x1d05 .uleb128 0x2a .long .LASF580 .long 0x1d14 .uleb128 0x2a .long .LASF581 .long 0x1d23 .uleb128 0x2a .long .LASF582 .long 0x1d4a .uleb128 0x2a .long .LASF583 .long 0x1d8c .uleb128 0x2a .long .LASF584 .long 0x1d9b .uleb128 0x2a .long .LASF585 .long 0x1daa .uleb128 0x2a .long .LASF586 .long 0x1db9 .uleb128 0x2a .long .LASF587 .long 0x1dc8 .uleb128 0x2a .long .LASF588 .long 0x1dd7 .uleb128 0x2a .long .LASF589 .long 0x1de6 .uleb128 0x2a .long .LASF590 .long 0x1e17 .uleb128 0x2a .long .LASF591 .long 0x1e26 .uleb128 0x2a .long .LASF592 .long 0x1e35 .uleb128 0x2a .long .LASF593 .long 0x1e44 .uleb128 0x2a .long .LASF594 .long 0x1e53 .uleb128 0x2a .long .LASF595 .long 0x1e62 .uleb128 0x2a .long .LASF596 .long 0x1e71 .uleb128 0x2a .long .LASF597 .long 0x1e80 .uleb128 0x2a .long .LASF598 .long 0x1e8f .uleb128 0x2a .long .LASF599 .long 0x1ee2 .uleb128 0x2a .long .LASF600 .long 0x1ef1 .uleb128 0x2a .long .LASF601 .long 0x1f00 .uleb128 0x2a .long .LASF602 .long 0x1f0f .uleb128 0x2a .long .LASF603 .long 0x1f1e .uleb128 0x2a .long .LASF604 .long 0x1f2d .uleb128 0x2a .long .LASF605 .long 0x1f54 .uleb128 0x2a .long .LASF606 .long 0x1f96 .uleb128 0x2a .long .LASF607 .long 0x1fa5 .uleb128 0x2a .long .LASF608 .long 0x1fb4 .uleb128 0x2a .long .LASF609 .long 0x1fc3 .uleb128 0x2a .long .LASF610 .long 0x1fd2 .uleb128 0x2a .long .LASF611 .long 0x1fe1 .uleb128 0x2a .long .LASF612 .long 0x1ff0 .uleb128 0x2a .long .LASF613 .long 0x2021 .uleb128 0x2a .long .LASF614 .long 0x2030 .uleb128 0x2a .long .LASF615 .long 0x203f .uleb128 0x2a .long .LASF616 .long 0x204e .uleb128 0x2a .long .LASF617 .long 0x205d .uleb128 0x2a .long .LASF618 .long 0x206c .uleb128 0x2a .long .LASF619 .long 0x207b .uleb128 0x2a .long .LASF620 .long 0x208a .uleb128 0x2a .long .LASF621 .long 0x2099 .uleb128 0x2a .long .LASF622 .long 0x20ec .uleb128 0x2a .long .LASF623 .long 0x20fb .uleb128 0x2a .long .LASF624 .long 0x210a .uleb128 0x2a .long .LASF625 .long 0x2119 .uleb128 0x2a .long .LASF626 .long 0x2128 .uleb128 0x2a .long .LASF627 .long 0x2137 .uleb128 0x2a .long .LASF628 .long 0x215e .uleb128 0x2a .long .LASF629 .long 0x21a0 .uleb128 0x2a .long .LASF630 .long 0x21af .uleb128 0x2a .long .LASF631 .long 0x21be .uleb128 0x2a .long .LASF632 .long 0x21cd .uleb128 0x2a .long .LASF633 .long 0x21dc .uleb128 0x2a .long .LASF634 .long 0x21eb .uleb128 0x2a .long .LASF635 .long 0x21fa .uleb128 0x2a .long .LASF636 .long 0x222b .uleb128 0x2a .long .LASF637 .long 0x223a .uleb128 0x2a .long .LASF638 .long 0x2249 .uleb128 0x2a .long .LASF639 .long 0x2258 .uleb128 0x2a .long .LASF640 .long 0x2267 .uleb128 0x2a .long .LASF641 .long 0x2276 .uleb128 0x2a .long .LASF642 .long 0x2285 .uleb128 0x2a .long .LASF643 .long 0x2294 .uleb128 0x2a .long .LASF644 .long 0x22a3 .uleb128 0x2a .long .LASF645 .long 0x22f6 .uleb128 0x2a .long .LASF646 .long 0x2305 .uleb128 0x2a .long .LASF647 .long 0x2314 .uleb128 0x2a .long .LASF648 .long 0x2323 .uleb128 0x2a .long .LASF649 .long 0x2332 .uleb128 0x2a .long .LASF650 .long 0x2341 .uleb128 0x2a .long .LASF651 .long 0x2368 .uleb128 0x2a .long .LASF652 .long 0x23aa .uleb128 0x2a .long .LASF653 .long 0x23b9 .uleb128 0x2a .long .LASF654 .long 0x23c8 .uleb128 0x2a .long .LASF655 .long 0x23d7 .uleb128 0x2a .long .LASF656 .long 0x23e6 .uleb128 0x2a .long .LASF657 .long 0x23f5 .uleb128 0x2a .long .LASF658 .long 0x2404 .uleb128 0x2a .long .LASF659 .long 0x2435 .uleb128 0x2a .long .LASF660 .long 0x2445 .uleb128 0x2a .long .LASF661 .long 0x2454 .uleb128 0x2a .long .LASF662 .long 0x2463 .uleb128 0x2a .long .LASF663 .long 0x2472 .uleb128 0x2a .long .LASF664 .long 0x2481 .uleb128 0x2a .long .LASF665 .long 0x2490 .uleb128 0x2a .long .LASF666 .long 0x249f .uleb128 0x2a .long .LASF667 .long 0x24ae .uleb128 0x2a .long .LASF668 .long 0x2501 .uleb128 0x2a .long .LASF669 .long 0x2510 .uleb128 0x2a .long .LASF670 .long 0x251f .uleb128 0x2a .long .LASF671 .long 0x252e .uleb128 0x2a .long .LASF672 .long 0x253d .uleb128 0x2a .long .LASF673 .long 0x254c .uleb128 0x2a .long .LASF674 .long 0x2573 .uleb128 0x2a .long .LASF675 .long 0x25b5 .uleb128 0x2a .long .LASF676 .long 0x25c4 .uleb128 0x2a .long .LASF677 .long 0x25d3 .uleb128 0x2a .long .LASF678 .long 0x25e2 .uleb128 0x2a .long .LASF679 .long 0x25f1 .uleb128 0x2a .long .LASF680 .long 0x2600 .uleb128 0x2a .long .LASF681 .long 0x260f .uleb128 0x2a .long .LASF682 .long 0x2640 .uleb128 0x2a .long .LASF683 .long 0x2650 .uleb128 0x2a .long .LASF684 .long 0x2660 .uleb128 0x2a .long .LASF685 .long 0x2670 .uleb128 0x2a .long .LASF686 .long 0x2680 .uleb128 0x2a .long .LASF687 .long 0x268f .uleb128 0x2a .long .LASF688 .long 0x269e .uleb128 0x2a .long .LASF689 .long 0x26ad .uleb128 0x2a .long .LASF690 .long 0x26bc .uleb128 0x2a .long .LASF691 .long 0x270f .uleb128 0x2a .long .LASF692 .long 0x271e .uleb128 0x2a .long .LASF693 .long 0x272d .uleb128 0x2a .long .LASF694 .long 0x273c .uleb128 0x2a .long .LASF695 .long 0x274b .uleb128 0x2a .long .LASF696 .long 0x275a .uleb128 0x2a .long .LASF697 .long 0x2781 .uleb128 0x2a .long .LASF698 .long 0x27c3 .uleb128 0x2a .long .LASF699 .long 0x27d2 .uleb128 0x2a .long .LASF700 .long 0x27e1 .uleb128 0x2a .long .LASF701 .long 0x27f0 .uleb128 0x2a .long .LASF702 .long 0x27ff .uleb128 0x2a .long .LASF703 .long 0x280e .uleb128 0x2a .long .LASF704 .long 0x281d .uleb128 0x2a .long .LASF705 .long 0x284e .uleb128 0x2a .long .LASF706 .long 0x285f .uleb128 0x2a .long .LASF707 .long 0x286f .uleb128 0x2a .long .LASF708 .long 0x287f .uleb128 0x2a .long .LASF709 .long 0x288f .uleb128 0x2a .long .LASF710 .long 0x289e .uleb128 0x2a .long .LASF711 .long 0x28ad .uleb128 0x2a .long .LASF712 .long 0x28bc .uleb128 0x2a .long .LASF713 .long 0x28cb .uleb128 0x2a .long .LASF714 .long 0x291e .uleb128 0x2a .long .LASF715 .long 0x292d .uleb128 0x2a .long .LASF716 .long 0x293c .uleb128 0x2a .long .LASF717 .long 0x294b .uleb128 0x2a .long .LASF718 .long 0x295a .uleb128 0x2a .long .LASF719 .long 0x2969 .uleb128 0x2e .long .LASF729 .byte 0x1 .byte 0x3 .byte 0x5 .long .LASF730 .long 0x2a00 .quad .LFB904 .quad .LFE904-.LFB904 .uleb128 0x1 .byte 0x9c .long 0x3abb .uleb128 0x2f .string "x" .byte 0x1 .byte 0x3 .byte 0x15 .long 0x2a28 .uleb128 0x1 .byte 0x61 .uleb128 0x30 .long 0x3abb .quad .LBB4 .quad .LBE4-.LBB4 .byte 0x1 .byte 0x5 .byte 0x16 .uleb128 0x31 .long 0x3ac1 .long .LLST0 .byte 0 .byte 0 .uleb128 0x32 .long 0x298a .byte 0x3 .uleb128 0x33 .string "__x" .byte 0x2 .value 0x104 .byte 0xf .long 0x2a28 .byte 0 .byte 0 .section .debug_abbrev,"",@progbits .Ldebug_abbrev0: .uleb128 0x1 .uleb128 0x11 .byte 0x1 .uleb128 0x25 .uleb128 0xe .uleb128 0x13 .uleb128 0xb .uleb128 0x3 .uleb128 0xe .uleb128 0x1b .uleb128 0xe .uleb128 0x11 .uleb128 0x1 .uleb128 0x12 .uleb128 0x7 .uleb128 0x10 .uleb128 0x17 .byte 0 .byte 0 .uleb128 0x2 .uleb128 0x39 .byte 0x1 .uleb128 0x3 .uleb128 0x8 .uleb128 0x3a .uleb128 0xb .uleb128 0x3b .uleb128 0xb .uleb128 0x1 .uleb128 0x13 .byte 0 .byte 0 .uleb128 0x3 .uleb128 0x39 .byte 0 .uleb128 0x3 .uleb128 0xe .uleb128 0x3a .uleb128 0xb .uleb128 0x3b .uleb128 0x5 .uleb128 0x39 .uleb128 0xb .uleb128 0x89 .uleb128 0x19 .byte 0 .byte 0 .uleb128 0x4 .uleb128 0x3a .byte 0 .uleb128 0x3a .uleb128 0xb .uleb128 0x3b .uleb128 0x5 .uleb128 0x39 .uleb128 0xb .uleb128 0x18 .uleb128 0x13 .byte 0 .byte 0 .uleb128 0x5 .uleb128 0x8 .byte 0 .uleb128 0x3a .uleb128 0xb .uleb128 0x3b .uleb128 0x5 .uleb128 0x39 .uleb128 0xb .uleb128 0x18 .uleb128 0x13 .byte 0 .byte 0 .uleb128 0x6 .uleb128 0x13 .byte 0x1 .uleb128 0x3 .uleb128 0xe .uleb128 0xb .uleb128 0xb .uleb128 0x3a .uleb128 0xb .uleb128 0x3b .uleb128 0xb .uleb128 0x39 .uleb128 0xb .uleb128 0x1 .uleb128 0x13 .byte 0 .byte 0 .uleb128 0x7 .uleb128 0xd .byte 0 .uleb128 0x3 .uleb128 0xe .uleb128 0x3a .uleb128 0xb .uleb128 0x3b .uleb128 0xb .uleb128 0x39 .uleb128 0xb .uleb128 0x49 .uleb128 0x13 .uleb128 0x3f .uleb128 0x19 .uleb128 0x3c .uleb128 0x19 .uleb128 0x6c .uleb128 0x19 .uleb128 0x20 .uleb128 0xb .byte 0 .byte 0 .uleb128 0x8 .uleb128 0x16 .byte 0 .uleb128 0x3 .uleb128 0xe .uleb128 0x3a .uleb128 0xb .uleb128 0x3b .uleb128 0xb .uleb128 0x39 .uleb128 0xb .uleb128 0x49 .uleb128 0x13 .byte 0 .byte 0 .uleb128 0x9 .uleb128 0x2e .byte 0x1 .uleb128 0x3f .uleb128 0x19 .uleb128 0x3 .uleb128 0xe .uleb128 0x3a .uleb128 0xb .uleb128 0x3b .uleb128 0xb .uleb128 0x39 .uleb128 0xb .uleb128 0x6e .uleb128 0xe .uleb128 0x49 .uleb128 0x13 .uleb128 0x3c .uleb128 0x19 .uleb128 0x64 .uleb128 0x13 .uleb128 0x1 .uleb128 0x13 .byte 0 .byte 0 .uleb128 0xa .uleb128 0x5 .byte 0 .uleb128 0x49 .uleb128 0x13 .uleb128 0x34 .uleb128 0x19 .byte 0 .byte 0 .uleb128 0xb .uleb128 0x2f .byte 0 .uleb128 0x3 .uleb128 0x8 .uleb128 0x49 .uleb128 0x13 .byte 0 .byte 0 .uleb128 0xc .uleb128 0x30 .byte 0 .uleb128 0x3 .uleb128 0x8 .uleb128 0x49 .uleb128 0x13 .uleb128 0x1c .uleb128 0xb .byte 0 .byte 0 .uleb128 0xd .uleb128 0x26 .byte 0 .uleb128 0x49 .uleb128 0x13 .byte 0 .byte 0 .uleb128 0xe .uleb128 0x2 .byte 0x1 .uleb128 0x3 .uleb128 0xe .uleb128 0xb .uleb128 0xb .uleb128 0x3a .uleb128 0xb .uleb128 0x3b .uleb128 0x5 .uleb128 0x39 .uleb128 0xb .uleb128 0x1 .uleb128 0x13 .byte 0 .byte 0 .uleb128 0xf .uleb128 0x13 .byte 0x1 .uleb128 0x3 .uleb128 0xe .uleb128 0xb .uleb128 0xb .uleb128 0x3a .uleb128 0xb .uleb128 0x3b .uleb128 0x5 .uleb128 0x39 .uleb128 0xb .uleb128 0x32 .uleb128 0xb .uleb128 0x1 .uleb128 0x13 .byte 0 .byte 0 .uleb128 0x10 .uleb128 0x4107 .byte 0 .byte 0 .byte 0 .uleb128 0x11 .uleb128 0x1c .byte 0 .uleb128 0x49 .uleb128 0x13 .uleb128 0x38 .uleb128 0xb .byte 0 .byte 0 .uleb128 0x12 .uleb128 0xd .byte 0 .uleb128 0x3 .uleb128 0xe .uleb128 0x3a .uleb128 0xb .uleb128 0x3b .uleb128 0x5 .uleb128 0x39 .uleb128 0xb .uleb128 0x49 .uleb128 0x13 .uleb128 0x3f .uleb128 0x19 .uleb128 0x3c .uleb128 0x19 .uleb128 0x6c .uleb128 0x19 .uleb128 0x20 .uleb128 0xb .byte 0 .byte 0 .uleb128 0x13 .uleb128 0x13 .byte 0x1 .uleb128 0x3 .uleb128 0xe .uleb128 0xb .uleb128 0xb .uleb128 0x3a .uleb128 0xb .uleb128 0x3b .uleb128 0x5 .uleb128 0x39 .uleb128 0xb .uleb128 0x32 .uleb128 0xb .byte 0 .byte 0 .uleb128 0x14 .uleb128 0x39 .byte 0 .uleb128 0x3 .uleb128 0xe .uleb128 0x3a .uleb128 0xb .uleb128 0x3b .uleb128 0x5 .uleb128 0x39 .uleb128 0xb .byte 0 .byte 0 .uleb128 0x15 .uleb128 0x2e .byte 0x1 .uleb128 0x3f .uleb128 0x19 .uleb128 0x3 .uleb128 0xe .uleb128 0x3a .uleb128 0xb .uleb128 0x3b .uleb128 0xb .uleb128 0x39 .uleb128 0xb .uleb128 0x6e .uleb128 0xe .uleb128 0x3c .uleb128 0x19 .uleb128 0x63 .uleb128 0x19 .uleb128 0x8b .uleb128 0xb .uleb128 0x64 .uleb128 0x13 .byte 0 .byte 0 .uleb128 0x16 .uleb128 0x34 .byte 0 .uleb128 0x3 .uleb128 0xe .uleb128 0x3a .uleb128 0xb .uleb128 0x3b .uleb128 0xb .uleb128 0x39 .uleb128 0xb .uleb128 0x6e .uleb128 0xe .uleb128 0x49 .uleb128 0x13 .uleb128 0x3f .uleb128 0x19 .uleb128 0x3c .uleb128 0x19 .uleb128 0x1c .uleb128 0xa .uleb128 0x6c .uleb128 0x19 .uleb128 0x20 .uleb128 0xb .byte 0 .byte 0 .uleb128 0x17 .uleb128 0x39 .byte 0 .uleb128 0x3 .uleb128 0xe .uleb128 0x3a .uleb128 0xb .uleb128 0x3b .uleb128 0xb .uleb128 0x39 .uleb128 0xb .byte 0 .byte 0 .uleb128 0x18 .uleb128 0x4 .byte 0x1 .uleb128 0x3 .uleb128 0xe .uleb128 0x3e .uleb128 0xb .uleb128 0xb .uleb128 0xb .uleb128 0x49 .uleb128 0x13 .uleb128 0x3a .uleb128 0xb .uleb128 0x3b .uleb128 0xb .uleb128 0x39 .uleb128 0xb .uleb128 0x1 .uleb128 0x13 .byte 0 .byte 0 .uleb128 0x19 .uleb128 0x28 .byte 0 .uleb128 0x3 .uleb128 0xe .uleb128 0x1c .uleb128 0xd .byte 0 .byte 0 .uleb128 0x1a .uleb128 0x28 .byte 0 .uleb128 0x3 .uleb128 0xe .uleb128 0x1c .uleb128 0xb .byte 0 .byte 0 .uleb128 0x1b .uleb128 0xd .byte 0 .uleb128 0x3 .uleb128 0xe .uleb128 0x3a .uleb128 0xb .uleb128 0x3b .uleb128 0xb .uleb128 0x39 .uleb128 0xb .uleb128 0x49 .uleb128 0x13 .uleb128 0x3f .uleb128 0x19 .uleb128 0x3c .uleb128 0x19 .uleb128 0x1c .uleb128 0xb .uleb128 0x6c .uleb128 0x19 .uleb128 0x20 .uleb128 0xb .byte 0 .byte 0 .uleb128 0x1c .uleb128 0xd .byte 0 .uleb128 0x3 .uleb128 0xe .uleb128 0x3a .uleb128 0xb .uleb128 0x3b .uleb128 0x5 .uleb128 0x39 .uleb128 0xb .uleb128 0x49 .uleb128 0x13 .uleb128 0x3f .uleb128 0x19 .uleb128 0x3c .uleb128 0x19 .uleb128 0x1c .uleb128 0xb .uleb128 0x6c .uleb128 0x19 .uleb128 0x20 .uleb128 0xb .byte 0 .byte 0 .uleb128 0x1d .uleb128 0x13 .byte 0x1 .uleb128 0x3 .uleb128 0xe .uleb128 0xb .uleb128 0xb .uleb128 0x3a .uleb128 0xb .uleb128 0x3b .uleb128 0x5 .uleb128 0x39 .uleb128 0xb .uleb128 0x1 .uleb128 0x13 .byte 0 .byte 0 .uleb128 0x1e .uleb128 0x2e .byte 0 .uleb128 0x3f .uleb128 0x19 .uleb128 0x3 .uleb128 0x8 .uleb128 0x3a .uleb128 0xb .uleb128 0x3b .uleb128 0x5 .uleb128 0x39 .uleb128 0xb .uleb128 0x6e .uleb128 0xe .uleb128 0x49 .uleb128 0x13 .uleb128 0x3c .uleb128 0x19 .byte 0 .byte 0 .uleb128 0x1f .uleb128 0x2e .byte 0 .uleb128 0x3f .uleb128 0x19 .uleb128 0x3 .uleb128 0xe .uleb128 0x3a .uleb128 0xb .uleb128 0x3b .uleb128 0x5 .uleb128 0x39 .uleb128 0xb .uleb128 0x6e .uleb128 0xe .uleb128 0x49 .uleb128 0x13 .uleb128 0x3c .uleb128 0x19 .byte 0 .byte 0 .uleb128 0x20 .uleb128 0xd .byte 0 .uleb128 0x3 .uleb128 0xe .uleb128 0x3a .uleb128 0xb .uleb128 0x3b .uleb128 0x5 .uleb128 0x39 .uleb128 0xb .uleb128 0x49 .uleb128 0x13 .uleb128 0x3f .uleb128 0x19 .uleb128 0x3c .uleb128 0x19 .uleb128 0x1c .uleb128 0xd .uleb128 0x6c .uleb128 0x19 .uleb128 0x20 .uleb128 0xb .byte 0 .byte 0 .uleb128 0x21 .uleb128 0xd .byte 0 .uleb128 0x3 .uleb128 0xe .uleb128 0x3a .uleb128 0xb .uleb128 0x3b .uleb128 0x5 .uleb128 0x39 .uleb128 0xb .uleb128 0x49 .uleb128 0x13 .uleb128 0x3f .uleb128 0x19 .uleb128 0x3c .uleb128 0x19 .uleb128 0x1c .uleb128 0x5 .uleb128 0x6c .uleb128 0x19 .uleb128 0x20 .uleb128 0xb .byte 0 .byte 0 .uleb128 0x22 .uleb128 0x2e .byte 0x1 .uleb128 0x3f .uleb128 0x19 .uleb128 0x3 .uleb128 0xe .uleb128 0x3a .uleb128 0xb .uleb128 0x3b .uleb128 0x5 .uleb128 0x39 .uleb128 0xb .uleb128 0x6e .uleb128 0xe .uleb128 0x49 .uleb128 0x13 .uleb128 0x3c .uleb128 0x19 .byte 0 .byte 0 .uleb128 0x23 .uleb128 0x5 .byte 0 .uleb128 0x49 .uleb128 0x13 .byte 0 .byte 0 .uleb128 0x24 .uleb128 0x39 .byte 0x1 .uleb128 0x3 .uleb128 0xe .uleb128 0x3a .uleb128 0xb .uleb128 0x3b .uleb128 0x5 .uleb128 0x39 .uleb128 0xb .uleb128 0x1 .uleb128 0x13 .byte 0 .byte 0 .uleb128 0x25 .uleb128 0x24 .byte 0 .uleb128 0xb .uleb128 0xb .uleb128 0x3e .uleb128 0xb .uleb128 0x3 .uleb128 0xe .byte 0 .byte 0 .uleb128 0x26 .uleb128 0x24 .byte 0 .uleb128 0xb .uleb128 0xb .uleb128 0x3e .uleb128 0xb .uleb128 0x3 .uleb128 0x8 .byte 0 .byte 0 .uleb128 0x27 .uleb128 0x34 .byte 0 .uleb128 0x3 .uleb128 0xe .uleb128 0x3a .uleb128 0xb .uleb128 0x3b .uleb128 0x5 .uleb128 0x39 .uleb128 0xb .uleb128 0x49 .uleb128 0x13 .uleb128 0x3f .uleb128 0x19 .uleb128 0x3c .uleb128 0x19 .byte 0 .byte 0 .uleb128 0x28 .uleb128 0x34 .byte 0 .uleb128 0x6e .uleb128 0xe .uleb128 0x47 .uleb128 0x13 .uleb128 0x1c .uleb128 0xb .byte 0 .byte 0 .uleb128 0x29 .uleb128 0xf .byte 0 .uleb128 0xb .uleb128 0xb .uleb128 0x49 .uleb128 0x13 .byte 0 .byte 0 .uleb128 0x2a .uleb128 0x34 .byte 0 .uleb128 0x6e .uleb128 0xe .uleb128 0x47 .uleb128 0x13 .byte 0 .byte 0 .uleb128 0x2b .uleb128 0x34 .byte 0 .uleb128 0x47 .uleb128 0x13 .byte 0 .byte 0 .uleb128 0x2c .uleb128 0x39 .byte 0x1 .uleb128 0x3 .uleb128 0xe .uleb128 0x3a .uleb128 0xb .uleb128 0x3b .uleb128 0xb .uleb128 0x39 .uleb128 0xb .uleb128 0x1 .uleb128 0x13 .byte 0 .byte 0 .uleb128 0x2d .uleb128 0x3a .byte 0 .uleb128 0x3a .uleb128 0xb .uleb128 0x3b .uleb128 0xb .uleb128 0x39 .uleb128 0xb .uleb128 0x18 .uleb128 0x13 .byte 0 .byte 0 .uleb128 0x2e .uleb128 0x2e .byte 0x1 .uleb128 0x3f .uleb128 0x19 .uleb128 0x3 .uleb128 0xe .uleb128 0x3a .uleb128 0xb .uleb128 0x3b .uleb128 0xb .uleb128 0x39 .uleb128 0xb .uleb128 0x6e .uleb128 0xe .uleb128 0x49 .uleb128 0x13 .uleb128 0x11 .uleb128 0x1 .uleb128 0x12 .uleb128 0x7 .uleb128 0x40 .uleb128 0x18 .uleb128 0x2117 .uleb128 0x19 .uleb128 0x1 .uleb128 0x13 .byte 0 .byte 0 .uleb128 0x2f .uleb128 0x5 .byte 0 .uleb128 0x3 .uleb128 0x8 .uleb128 0x3a .uleb128 0xb .uleb128 0x3b .uleb128 0xb .uleb128 0x39 .uleb128 0xb .uleb128 0x49 .uleb128 0x13 .uleb128 0x2 .uleb128 0x18 .byte 0 .byte 0 .uleb128 0x30 .uleb128 0x1d .byte 0x1 .uleb128 0x31 .uleb128 0x13 .uleb128 0x11 .uleb128 0x1 .uleb128 0x12 .uleb128 0x7 .uleb128 0x58 .uleb128 0xb .uleb128 0x59 .uleb128 0xb .uleb128 0x57 .uleb128 0xb .byte 0 .byte 0 .uleb128 0x31 .uleb128 0x5 .byte 0 .uleb128 0x31 .uleb128 0x13 .uleb128 0x2 .uleb128 0x17 .byte 0 .byte 0 .uleb128 0x32 .uleb128 0x2e .byte 0x1 .uleb128 0x47 .uleb128 0x13 .uleb128 0x20 .uleb128 0xb .byte 0 .byte 0 .uleb128 0x33 .uleb128 0x5 .byte 0 .uleb128 0x3 .uleb128 0x8 .uleb128 0x3a .uleb128 0xb .uleb128 0x3b .uleb128 0x5 .uleb128 0x39 .uleb128 0xb .uleb128 0x49 .uleb128 0x13 .byte 0 .byte 0 .byte 0 .section .debug_loc,"",@progbits .Ldebug_loc0: .LLST0: .quad .LVL0-.Ltext0 .quad .LVL1-.Ltext0 .value 0x1 .byte 0x61 .quad 0 .quad 0 .section .debug_aranges,"",@progbits .long 0x2c .value 0x2 .long .Ldebug_info0 .byte 0x8 .byte 0 .value 0 .value 0 .quad .Ltext0 .quad .Letext0-.Ltext0 .quad 0 .quad 0 .section .debug_line,"",@progbits .Ldebug_line0: .section .debug_str,"MS",@progbits,1 .LASF196: .string "_ZNSt14numeric_limitsImE9quiet_NaNEv" .LASF130: .string "_ZNSt14numeric_limitsIDiE3minEv" .LASF72: .string "_ZNSt14numeric_limitsIbE8infinityEv" .LASF543: .string "_ZNSt14numeric_limitsIjE5radixE" .LASF57: .string "is_bounded" .LASF341: .string "_ZNSt14numeric_limitsIcE12has_infinityE" .LASF483: .string "_ZNSt14numeric_limitsIsE15has_denorm_lossE" .LASF176: .string "_ZNSt14numeric_limitsIjE9quiet_NaNEv" .LASF99: .string "numeric_limits<unsigned char>" .LASF22: .string "size_t" .LASF82: .string "_ZNSt14numeric_limitsIcE6lowestEv" .LASF649: .string "_ZNSt14numeric_limitsIyE15tinyness_beforeE" .LASF402: .string "_ZNSt14numeric_limitsIwE9is_signedE" .LASF580: .string "_ZNSt14numeric_limitsIlE15tinyness_beforeE" .LASF730: .string "_Z8testfuncf" .LASF634: .string "_ZNSt14numeric_limitsIyE8is_exactE" .LASF412: .string "_ZNSt14numeric_limitsIwE17has_signaling_NaNE" .LASF345: .string "_ZNSt14numeric_limitsIcE15has_denorm_lossE" .LASF430: .string "_ZNSt14numeric_limitsIDsE14min_exponent10E" .LASF526: .string "_ZNSt14numeric_limitsIiE13has_quiet_NaNE" .LASF189: .string "numeric_limits<long unsigned int>" .LASF547: .string "_ZNSt14numeric_limitsIjE14max_exponent10E" .LASF203: .string "_ZNSt14numeric_limitsIxE7epsilonEv" .LASF357: .string "_ZNSt14numeric_limitsIaE10is_integerE" .LASF638: .string "_ZNSt14numeric_limitsIyE12max_exponentE" .LASF39: .string "is_specialized" .LASF257: .string "signed char" .LASF217: .string "_ZNSt14numeric_limitsIyE13signaling_NaNEv" .LASF444: .string "_ZNSt14numeric_limitsIDiE14is_specializedE" .LASF716: .string "_ZNSt14numeric_limitsIeE9is_moduloE" .LASF420: .string "_ZNSt14numeric_limitsIwE11round_styleE" .LASF318: .string "_ZNSt14numeric_limitsIbE12has_infinityE" .LASF482: .string "_ZNSt14numeric_limitsIsE10has_denormE" .LASF115: .string "_ZNSt14numeric_limitsIwE8infinityEv" .LASF75: .string "signaling_NaN" .LASF108: .string "_ZNSt14numeric_limitsIhE10denorm_minEv" .LASF158: .string "_ZNSt14numeric_limitsItE10denorm_minEv" .LASF145: .string "_ZNSt14numeric_limitsIsE8infinityEv" .LASF275: .string "_ZNSt29__make_unsigned_selector_base5_ListIJjmyEE6__sizeE" .LASF605: .string "_ZNSt14numeric_limitsIxE14is_specializedE" .LASF224: .string "_ZNSt14numeric_limitsIfE11round_errorEv" .LASF40: .string "digits" .LASF295: .string "_ZNSt21__numeric_limits_base12has_infinityE" .LASF208: .string "_ZNSt14numeric_limitsIxE10denorm_minEv" .LASF324: .string "_ZNSt14numeric_limitsIbE10is_boundedE" .LASF661: .string "_ZNSt14numeric_limitsIfE12max_exponentE" .LASF18: .string "_List<long unsigned int, long long unsigned int>" .LASF89: .string "numeric_limits<signed char>" .LASF473: .string "_ZNSt14numeric_limitsIsE8is_exactE" .LASF537: .string "_ZNSt14numeric_limitsIjE6digitsE" .LASF194: .string "_ZNSt14numeric_limitsImE11round_errorEv" .LASF116: .string "_ZNSt14numeric_limitsIwE9quiet_NaNEv" .LASF722: .string "/tmp/compiler-explorer-compiler119330-53-13nkrqq.iz3ii" .LASF462: .string "_ZNSt14numeric_limitsIDiE10is_boundedE" .LASF545: .string "_ZNSt14numeric_limitsIjE14min_exponent10E" .LASF552: .string "_ZNSt14numeric_limitsIjE15has_denorm_lossE" .LASF156: .string "_ZNSt14numeric_limitsItE9quiet_NaNEv" .LASF134: .string "_ZNSt14numeric_limitsIDiE11round_errorEv" .LASF390: .string "_ZNSt14numeric_limitsIhE10has_denormE" .LASF56: .string "is_iec559" .LASF350: .string "_ZNSt14numeric_limitsIcE15tinyness_beforeE" .LASF103: .string "_ZNSt14numeric_limitsIhE7epsilonEv" .LASF553: .string "_ZNSt14numeric_limitsIjE9is_iec559E" .LASF637: .string "_ZNSt14numeric_limitsIyE14min_exponent10E" .LASF579: .string "_ZNSt14numeric_limitsIlE5trapsE" .LASF619: .string "_ZNSt14numeric_limitsIxE17has_signaling_NaNE" .LASF668: .string "_ZNSt14numeric_limitsIfE9is_iec559E" .LASF612: .string "_ZNSt14numeric_limitsIxE5radixE" .LASF595: .string "_ZNSt14numeric_limitsImE13has_quiet_NaNE" .LASF289: .string "_ZNSt21__numeric_limits_base8is_exactE" .LASF657: .string "_ZNSt14numeric_limitsIfE8is_exactE" .LASF718: .string "_ZNSt14numeric_limitsIeE15tinyness_beforeE" .LASF349: .string "_ZNSt14numeric_limitsIcE5trapsE" .LASF138: .string "_ZNSt14numeric_limitsIDiE10denorm_minEv" .LASF302: .string "_ZNSt21__numeric_limits_base9is_moduloE" .LASF437: .string "_ZNSt14numeric_limitsIDsE15has_denorm_lossE" .LASF272: .string "_ZNSt17integral_constantImLm0EE5valueE" .LASF403: .string "_ZNSt14numeric_limitsIwE10is_integerE" .LASF9: .string "_ZNKSt17integral_constantIbLb1EEcvbEv" .LASF161: .string "_ZNSt14numeric_limitsIiE3maxEv" .LASF133: .string "_ZNSt14numeric_limitsIDiE7epsilonEv" .LASF243: .string "_ZNSt14numeric_limitsIeE7epsilonEv" .LASF658: .string "_ZNSt14numeric_limitsIfE5radixE" .LASF276: .string "_ZNSt29__make_unsigned_selector_base5_ListIJtjmyEE6__sizeE" .LASF696: .string "_ZNSt14numeric_limitsIdE11round_styleE" .LASF569: .string "_ZNSt14numeric_limitsIlE12max_exponentE" .LASF522: .string "_ZNSt14numeric_limitsIiE14min_exponent10E" .LASF563: .string "_ZNSt14numeric_limitsIlE9is_signedE" .LASF98: .string "_ZNSt14numeric_limitsIaE10denorm_minEv" .LASF468: .string "_ZNSt14numeric_limitsIsE6digitsE" .LASF144: .string "_ZNSt14numeric_limitsIsE11round_errorEv" .LASF335: .string "_ZNSt14numeric_limitsIcE8is_exactE" .LASF450: .string "_ZNSt14numeric_limitsIDiE8is_exactE" .LASF429: .string "_ZNSt14numeric_limitsIDsE12min_exponentE" .LASF512: .string "_ZNSt14numeric_limitsItE11round_styleE" .LASF630: .string "_ZNSt14numeric_limitsIyE8digits10E" .LASF477: .string "_ZNSt14numeric_limitsIsE12max_exponentE" .LASF706: .string "_ZNSt14numeric_limitsIeE14min_exponent10E" .LASF441: .string "_ZNSt14numeric_limitsIDsE5trapsE" .LASF614: .string "_ZNSt14numeric_limitsIxE14min_exponent10E" .LASF419: .string "_ZNSt14numeric_limitsIwE15tinyness_beforeE" .LASF160: .string "_ZNSt14numeric_limitsIiE3minEv" .LASF557: .string "_ZNSt14numeric_limitsIjE15tinyness_beforeE" .LASF415: .string "_ZNSt14numeric_limitsIwE9is_iec559E" .LASF705: .string "_ZNSt14numeric_limitsIeE12min_exponentE" .LASF259: .string "long int" .LASF707: .string "_ZNSt14numeric_limitsIeE12max_exponentE" .LASF484: .string "_ZNSt14numeric_limitsIsE9is_iec559E" .LASF16: .string "_List<long long unsigned int>" .LASF675: .string "_ZNSt14numeric_limitsIdE6digitsE" .LASF74: .string "_ZNSt14numeric_limitsIbE9quiet_NaNEv" .LASF567: .string "_ZNSt14numeric_limitsIlE12min_exponentE" .LASF273: .string "_ZNSt29__make_unsigned_selector_base5_ListIJyEE6__sizeE" .LASF283: .string "_ZNSt21__numeric_limits_base14is_specializedE" .LASF290: .string "_ZNSt21__numeric_limits_base5radixE" .LASF442: .string "_ZNSt14numeric_limitsIDsE15tinyness_beforeE" .LASF422: .string "_ZNSt14numeric_limitsIDsE6digitsE" .LASF496: .string "_ZNSt14numeric_limitsItE8is_exactE" .LASF407: .string "_ZNSt14numeric_limitsIwE14min_exponent10E" .LASF301: .string "_ZNSt21__numeric_limits_base10is_boundedE" .LASF466: .string "_ZNSt14numeric_limitsIDiE11round_styleE" .LASF621: .string "_ZNSt14numeric_limitsIxE15has_denorm_lossE" .LASF700: .string "_ZNSt14numeric_limitsIeE12max_digits10E" .LASF149: .string "numeric_limits<short unsigned int>" .LASF515: .string "_ZNSt14numeric_limitsIiE8digits10E" .LASF62: .string "numeric_limits<bool>" .LASF603: .string "_ZNSt14numeric_limitsImE15tinyness_beforeE" .LASF712: .string "_ZNSt14numeric_limitsIeE10has_denormE" .LASF633: .string "_ZNSt14numeric_limitsIyE10is_integerE" .LASF143: .string "_ZNSt14numeric_limitsIsE7epsilonEv" .LASF42: .string "max_digits10" .LASF210: .string "_ZNSt14numeric_limitsIyE3minEv" .LASF15: .string "_List<>" .LASF299: .string "_ZNSt21__numeric_limits_base15has_denorm_lossE" .LASF215: .string "_ZNSt14numeric_limitsIyE8infinityEv" .LASF229: .string "numeric_limits<double>" .LASF694: .string "_ZNSt14numeric_limitsIdE5trapsE" .LASF604: .string "_ZNSt14numeric_limitsImE11round_styleE" .LASF583: .string "_ZNSt14numeric_limitsImE6digitsE" .LASF395: .string "_ZNSt14numeric_limitsIhE5trapsE" .LASF164: .string "_ZNSt14numeric_limitsIiE11round_errorEv" .LASF497: .string "_ZNSt14numeric_limitsItE5radixE" .LASF690: .string "_ZNSt14numeric_limitsIdE15has_denorm_lossE" .LASF178: .string "_ZNSt14numeric_limitsIjE10denorm_minEv" .LASF373: .string "_ZNSt14numeric_limitsIaE15tinyness_beforeE" .LASF495: .string "_ZNSt14numeric_limitsItE10is_integerE" .LASF285: .string "_ZNSt21__numeric_limits_base8digits10E" .LASF653: .string "_ZNSt14numeric_limitsIfE8digits10E" .LASF389: .string "_ZNSt14numeric_limitsIhE17has_signaling_NaNE" .LASF311: .string "_ZNSt14numeric_limitsIbE10is_integerE" .LASF729: .string "testfunc" .LASF287: .string "_ZNSt21__numeric_limits_base9is_signedE" .LASF223: .string "_ZNSt14numeric_limitsIfE7epsilonEv" .LASF677: .string "_ZNSt14numeric_limitsIdE12max_digits10E" .LASF253: .string "unsigned char" .LASF199: .string "numeric_limits<long long int>" .LASF186: .string "_ZNSt14numeric_limitsIlE9quiet_NaNEv" .LASF220: .string "_ZNSt14numeric_limitsIfE3minEv" .LASF356: .string "_ZNSt14numeric_limitsIaE9is_signedE" .LASF313: .string "_ZNSt14numeric_limitsIbE5radixE" .LASF102: .string "_ZNSt14numeric_limitsIhE6lowestEv" .LASF166: .string "_ZNSt14numeric_limitsIiE9quiet_NaNEv" .LASF279: .string "char16_t" .LASF411: .string "_ZNSt14numeric_limitsIwE13has_quiet_NaNE" .LASF70: .string "_ZNSt14numeric_limitsIbE11round_errorEv" .LASF353: .string "_ZNSt14numeric_limitsIaE6digitsE" .LASF154: .string "_ZNSt14numeric_limitsItE11round_errorEv" .LASF624: .string "_ZNSt14numeric_limitsIxE9is_moduloE" .LASF577: .string "_ZNSt14numeric_limitsIlE10is_boundedE" .LASF347: .string "_ZNSt14numeric_limitsIcE10is_boundedE" .LASF83: .string "_ZNSt14numeric_limitsIcE7epsilonEv" .LASF660: .string "_ZNSt14numeric_limitsIfE14min_exponent10E" .LASF41: .string "digits10" .LASF391: .string "_ZNSt14numeric_limitsIhE15has_denorm_lossE" .LASF6: .string "value" .LASF95: .string "_ZNSt14numeric_limitsIaE8infinityEv" .LASF439: .string "_ZNSt14numeric_limitsIDsE10is_boundedE" .LASF711: .string "_ZNSt14numeric_limitsIeE17has_signaling_NaNE" .LASF65: .string "lowest" .LASF358: .string "_ZNSt14numeric_limitsIaE8is_exactE" .LASF264: .string "char" .LASF304: .string "_ZNSt21__numeric_limits_base15tinyness_beforeE" .LASF400: .string "_ZNSt14numeric_limitsIwE8digits10E" .LASF396: .string "_ZNSt14numeric_limitsIhE15tinyness_beforeE" .LASF451: .string "_ZNSt14numeric_limitsIDiE5radixE" .LASF222: .string "_ZNSt14numeric_limitsIfE6lowestEv" .LASF0: .string "operator std::integral_constant<bool, false>::value_type" .LASF44: .string "is_integer" .LASF539: .string "_ZNSt14numeric_limitsIjE12max_digits10E" .LASF152: .string "_ZNSt14numeric_limitsItE6lowestEv" .LASF673: .string "_ZNSt14numeric_limitsIfE11round_styleE" .LASF685: .string "_ZNSt14numeric_limitsIdE14max_exponent10E" .LASF271: .string "_ZNSt17integral_constantIbLb1EE5valueE" .LASF686: .string "_ZNSt14numeric_limitsIdE12has_infinityE" .LASF239: .string "numeric_limits<long double>" .LASF35: .string "denorm_indeterminate" .LASF362: .string "_ZNSt14numeric_limitsIaE12max_exponentE" .LASF88: .string "_ZNSt14numeric_limitsIcE10denorm_minEv" .LASF440: .string "_ZNSt14numeric_limitsIDsE9is_moduloE" .LASF492: .string "_ZNSt14numeric_limitsItE8digits10E" .LASF321: .string "_ZNSt14numeric_limitsIbE10has_denormE" .LASF432: .string "_ZNSt14numeric_limitsIDsE14max_exponent10E" .LASF698: .string "_ZNSt14numeric_limitsIeE6digitsE" .LASF610: .string "_ZNSt14numeric_limitsIxE10is_integerE" .LASF104: .string "_ZNSt14numeric_limitsIhE11round_errorEv" .LASF693: .string "_ZNSt14numeric_limitsIdE9is_moduloE" .LASF142: .string "_ZNSt14numeric_limitsIsE6lowestEv" .LASF148: .string "_ZNSt14numeric_limitsIsE10denorm_minEv" .LASF201: .string "_ZNSt14numeric_limitsIxE3maxEv" .LASF623: .string "_ZNSt14numeric_limitsIxE10is_boundedE" .LASF146: .string "_ZNSt14numeric_limitsIsE9quiet_NaNEv" .LASF73: .string "quiet_NaN" .LASF459: .string "_ZNSt14numeric_limitsIDiE10has_denormE" .LASF323: .string "_ZNSt14numeric_limitsIbE9is_iec559E" .LASF36: .string "denorm_absent" .LASF499: .string "_ZNSt14numeric_limitsItE14min_exponent10E" .LASF175: .string "_ZNSt14numeric_limitsIjE8infinityEv" .LASF602: .string "_ZNSt14numeric_limitsImE5trapsE" .LASF608: .string "_ZNSt14numeric_limitsIxE12max_digits10E" .LASF635: .string "_ZNSt14numeric_limitsIyE5radixE" .LASF628: .string "_ZNSt14numeric_limitsIyE14is_specializedE" .LASF576: .string "_ZNSt14numeric_limitsIlE9is_iec559E" .LASF683: .string "_ZNSt14numeric_limitsIdE14min_exponent10E" .LASF380: .string "_ZNSt14numeric_limitsIhE10is_integerE" .LASF448: .string "_ZNSt14numeric_limitsIDiE9is_signedE" .LASF565: .string "_ZNSt14numeric_limitsIlE8is_exactE" .LASF646: .string "_ZNSt14numeric_limitsIyE10is_boundedE" .LASF340: .string "_ZNSt14numeric_limitsIcE14max_exponent10E" .LASF200: .string "_ZNSt14numeric_limitsIxE3minEv" .LASF667: .string "_ZNSt14numeric_limitsIfE15has_denorm_lossE" .LASF249: .string "__detail" .LASF360: .string "_ZNSt14numeric_limitsIaE12min_exponentE" .LASF363: .string "_ZNSt14numeric_limitsIaE14max_exponent10E" .LASF330: .string "_ZNSt14numeric_limitsIcE6digitsE" .LASF64: .string "_ZNSt14numeric_limitsIbE3maxEv" .LASF702: .string "_ZNSt14numeric_limitsIeE10is_integerE" .LASF585: .string "_ZNSt14numeric_limitsImE12max_digits10E" .LASF177: .string "_ZNSt14numeric_limitsIjE13signaling_NaNEv" .LASF548: .string "_ZNSt14numeric_limitsIjE12has_infinityE" .LASF510: .string "_ZNSt14numeric_limitsItE5trapsE" .LASF181: .string "_ZNSt14numeric_limitsIlE3maxEv" .LASF219: .string "numeric_limits<float>" .LASF687: .string "_ZNSt14numeric_limitsIdE13has_quiet_NaNE" .LASF333: .string "_ZNSt14numeric_limitsIcE9is_signedE" .LASF319: .string "_ZNSt14numeric_limitsIbE13has_quiet_NaNE" .LASF50: .string "max_exponent10" .LASF513: .string "_ZNSt14numeric_limitsIiE14is_specializedE" .LASF401: .string "_ZNSt14numeric_limitsIwE12max_digits10E" .LASF366: .string "_ZNSt14numeric_limitsIaE17has_signaling_NaNE" .LASF490: .string "_ZNSt14numeric_limitsItE14is_specializedE" .LASF5: .string "integral_constant<bool, true>" .LASF531: .string "_ZNSt14numeric_limitsIiE10is_boundedE" .LASF8: .string "operator std::integral_constant<bool, true>::value_type" .LASF476: .string "_ZNSt14numeric_limitsIsE14min_exponent10E" .LASF135: .string "_ZNSt14numeric_limitsIDiE8infinityEv" .LASF369: .string "_ZNSt14numeric_limitsIaE9is_iec559E" .LASF63: .string "_ZNSt14numeric_limitsIbE3minEv" .LASF424: .string "_ZNSt14numeric_limitsIDsE12max_digits10E" .LASF672: .string "_ZNSt14numeric_limitsIfE15tinyness_beforeE" .LASF421: .string "_ZNSt14numeric_limitsIDsE14is_specializedE" .LASF651: .string "_ZNSt14numeric_limitsIfE14is_specializedE" .LASF159: .string "numeric_limits<int>" .LASF180: .string "_ZNSt14numeric_limitsIlE3minEv" .LASF129: .string "numeric_limits<char32_t>" .LASF317: .string "_ZNSt14numeric_limitsIbE14max_exponent10E" .LASF45: .string "is_exact" .LASF613: .string "_ZNSt14numeric_limitsIxE12min_exponentE" .LASF617: .string "_ZNSt14numeric_limitsIxE12has_infinityE" .LASF354: .string "_ZNSt14numeric_limitsIaE8digits10E" .LASF188: .string "_ZNSt14numeric_limitsIlE10denorm_minEv" .LASF725: .string "_ZSt19piecewise_construct" .LASF96: .string "_ZNSt14numeric_limitsIaE9quiet_NaNEv" .LASF167: .string "_ZNSt14numeric_limitsIiE13signaling_NaNEv" .LASF598: .string "_ZNSt14numeric_limitsImE15has_denorm_lossE" .LASF136: .string "_ZNSt14numeric_limitsIDiE9quiet_NaNEv" .LASF60: .string "tinyness_before" .LASF93: .string "_ZNSt14numeric_limitsIaE7epsilonEv" .LASF726: .string "floor" .LASF379: .string "_ZNSt14numeric_limitsIhE9is_signedE" .LASF488: .string "_ZNSt14numeric_limitsIsE15tinyness_beforeE" .LASF191: .string "_ZNSt14numeric_limitsImE3maxEv" .LASF268: .string "double_t" .LASF519: .string "_ZNSt14numeric_limitsIiE8is_exactE" .LASF33: .string "float_round_style" .LASF375: .string "_ZNSt14numeric_limitsIhE14is_specializedE" .LASF47: .string "min_exponent" .LASF121: .string "_ZNSt14numeric_limitsIDsE3maxEv" .LASF592: .string "_ZNSt14numeric_limitsImE12max_exponentE" .LASF30: .string "round_to_nearest" .LASF399: .string "_ZNSt14numeric_limitsIwE6digitsE" .LASF665: .string "_ZNSt14numeric_limitsIfE17has_signaling_NaNE" .LASF564: .string "_ZNSt14numeric_limitsIlE10is_integerE" .LASF296: .string "_ZNSt21__numeric_limits_base13has_quiet_NaNE" .LASF454: .string "_ZNSt14numeric_limitsIDiE12max_exponentE" .LASF255: .string "long unsigned int" .LASF398: .string "_ZNSt14numeric_limitsIwE14is_specializedE" .LASF410: .string "_ZNSt14numeric_limitsIwE12has_infinityE" .LASF342: .string "_ZNSt14numeric_limitsIcE13has_quiet_NaNE" .LASF500: .string "_ZNSt14numeric_limitsItE12max_exponentE" .LASF85: .string "_ZNSt14numeric_limitsIcE8infinityEv" .LASF460: .string "_ZNSt14numeric_limitsIDiE15has_denorm_lossE" .LASF300: .string "_ZNSt21__numeric_limits_base9is_iec559E" .LASF433: .string "_ZNSt14numeric_limitsIDsE12has_infinityE" .LASF669: .string "_ZNSt14numeric_limitsIfE10is_boundedE" .LASF282: .string "__gnu_debug" .LASF107: .string "_ZNSt14numeric_limitsIhE13signaling_NaNEv" .LASF12: .string "operator std::integral_constant<long unsigned int, 0>::value_type" .LASF533: .string "_ZNSt14numeric_limitsIiE5trapsE" .LASF376: .string "_ZNSt14numeric_limitsIhE6digitsE" .LASF609: .string "_ZNSt14numeric_limitsIxE9is_signedE" .LASF338: .string "_ZNSt14numeric_limitsIcE14min_exponent10E" .LASF494: .string "_ZNSt14numeric_limitsItE9is_signedE" .LASF151: .string "_ZNSt14numeric_limitsItE3maxEv" .LASF600: .string "_ZNSt14numeric_limitsImE10is_boundedE" .LASF277: .string "_ZNSt29__make_unsigned_selector_base5_ListIJhtjmyEE6__sizeE" .LASF280: .string "char32_t" .LASF506: .string "_ZNSt14numeric_limitsItE15has_denorm_lossE" .LASF394: .string "_ZNSt14numeric_limitsIhE9is_moduloE" .LASF566: .string "_ZNSt14numeric_limitsIlE5radixE" .LASF590: .string "_ZNSt14numeric_limitsImE12min_exponentE" .LASF117: .string "_ZNSt14numeric_limitsIwE13signaling_NaNEv" .LASF336: .string "_ZNSt14numeric_limitsIcE5radixE" .LASF514: .string "_ZNSt14numeric_limitsIiE6digitsE" .LASF648: .string "_ZNSt14numeric_limitsIyE5trapsE" .LASF7: .string "value_type" .LASF397: .string "_ZNSt14numeric_limitsIhE11round_styleE" .LASF452: .string "_ZNSt14numeric_limitsIDiE12min_exponentE" .LASF17: .string "__size" .LASF25: .string "piecewise_construct_t" .LASF554: .string "_ZNSt14numeric_limitsIjE10is_boundedE" .LASF266: .string "__float128" .LASF305: .string "_ZNSt21__numeric_limits_base11round_styleE" .LASF248: .string "_ZNSt14numeric_limitsIeE10denorm_minEv" .LASF127: .string "_ZNSt14numeric_limitsIDsE13signaling_NaNEv" .LASF126: .string "_ZNSt14numeric_limitsIDsE9quiet_NaNEv" .LASF670: .string "_ZNSt14numeric_limitsIfE9is_moduloE" .LASF601: .string "_ZNSt14numeric_limitsImE9is_moduloE" .LASF213: .string "_ZNSt14numeric_limitsIyE7epsilonEv" .LASF150: .string "_ZNSt14numeric_limitsItE3minEv" .LASF325: .string "_ZNSt14numeric_limitsIbE9is_moduloE" .LASF106: .string "_ZNSt14numeric_limitsIhE9quiet_NaNEv" .LASF627: .string "_ZNSt14numeric_limitsIxE11round_styleE" .LASF34: .string "float_denorm_style" .LASF49: .string "max_exponent" .LASF270: .string "_ZNSt17integral_constantIbLb0EE5valueE" .LASF168: .string "_ZNSt14numeric_limitsIiE10denorm_minEv" .LASF246: .string "_ZNSt14numeric_limitsIeE9quiet_NaNEv" .LASF654: .string "_ZNSt14numeric_limitsIfE12max_digits10E" .LASF265: .string "__unknown__" .LASF404: .string "_ZNSt14numeric_limitsIwE8is_exactE" .LASF2: .string "_ZNKSt17integral_constantIbLb0EEcvbEv" .LASF101: .string "_ZNSt14numeric_limitsIhE3maxEv" .LASF425: .string "_ZNSt14numeric_limitsIDsE9is_signedE" .LASF574: .string "_ZNSt14numeric_limitsIlE10has_denormE" .LASF52: .string "has_quiet_NaN" .LASF561: .string "_ZNSt14numeric_limitsIlE8digits10E" .LASF428: .string "_ZNSt14numeric_limitsIDsE5radixE" .LASF344: .string "_ZNSt14numeric_limitsIcE10has_denormE" .LASF234: .string "_ZNSt14numeric_limitsIdE11round_errorEv" .LASF417: .string "_ZNSt14numeric_limitsIwE9is_moduloE" .LASF572: .string "_ZNSt14numeric_limitsIlE13has_quiet_NaNE" .LASF29: .string "round_toward_zero" .LASF183: .string "_ZNSt14numeric_limitsIlE7epsilonEv" .LASF260: .string "long long int" .LASF436: .string "_ZNSt14numeric_limitsIDsE10has_denormE" .LASF475: .string "_ZNSt14numeric_limitsIsE12min_exponentE" .LASF100: .string "_ZNSt14numeric_limitsIhE3minEv" .LASF498: .string "_ZNSt14numeric_limitsItE12min_exponentE" .LASF343: .string "_ZNSt14numeric_limitsIcE17has_signaling_NaNE" .LASF703: .string "_ZNSt14numeric_limitsIeE8is_exactE" .LASF542: .string "_ZNSt14numeric_limitsIjE8is_exactE" .LASF155: .string "_ZNSt14numeric_limitsItE8infinityEv" .LASF717: .string "_ZNSt14numeric_limitsIeE5trapsE" .LASF571: .string "_ZNSt14numeric_limitsIlE12has_infinityE" .LASF486: .string "_ZNSt14numeric_limitsIsE9is_moduloE" .LASF307: .string "_ZNSt14numeric_limitsIbE6digitsE" .LASF172: .string "_ZNSt14numeric_limitsIjE6lowestEv" .LASF262: .string "double" .LASF518: .string "_ZNSt14numeric_limitsIiE10is_integerE" .LASF227: .string "_ZNSt14numeric_limitsIfE13signaling_NaNEv" .LASF346: .string "_ZNSt14numeric_limitsIcE9is_iec559E" .LASF163: .string "_ZNSt14numeric_limitsIiE7epsilonEv" .LASF458: .string "_ZNSt14numeric_limitsIDiE17has_signaling_NaNE" .LASF487: .string "_ZNSt14numeric_limitsIsE5trapsE" .LASF695: .string "_ZNSt14numeric_limitsIdE15tinyness_beforeE" .LASF202: .string "_ZNSt14numeric_limitsIxE6lowestEv" .LASF84: .string "_ZNSt14numeric_limitsIcE11round_errorEv" .LASF418: .string "_ZNSt14numeric_limitsIwE5trapsE" .LASF374: .string "_ZNSt14numeric_limitsIaE11round_styleE" .LASF724: .string "piecewise_construct" .LASF626: .string "_ZNSt14numeric_limitsIxE15tinyness_beforeE" .LASF697: .string "_ZNSt14numeric_limitsIeE14is_specializedE" .LASF663: .string "_ZNSt14numeric_limitsIfE12has_infinityE" .LASF162: .string "_ZNSt14numeric_limitsIiE6lowestEv" .LASF508: .string "_ZNSt14numeric_limitsItE10is_boundedE" .LASF303: .string "_ZNSt21__numeric_limits_base5trapsE" .LASF650: .string "_ZNSt14numeric_limitsIyE11round_styleE" .LASF723: .string "__make_unsigned_selector_base" .LASF586: .string "_ZNSt14numeric_limitsImE9is_signedE" .LASF263: .string "float" .LASF607: .string "_ZNSt14numeric_limitsIxE8digits10E" .LASF174: .string "_ZNSt14numeric_limitsIjE11round_errorEv" .LASF517: .string "_ZNSt14numeric_limitsIiE9is_signedE" .LASF485: .string "_ZNSt14numeric_limitsIsE10is_boundedE" .LASF112: .string "_ZNSt14numeric_limitsIwE6lowestEv" .LASF689: .string "_ZNSt14numeric_limitsIdE10has_denormE" .LASF78: .string "_ZNSt14numeric_limitsIbE10denorm_minEv" .LASF207: .string "_ZNSt14numeric_limitsIxE13signaling_NaNEv" .LASF370: .string "_ZNSt14numeric_limitsIaE10is_boundedE" .LASF53: .string "has_signaling_NaN" .LASF382: .string "_ZNSt14numeric_limitsIhE5radixE" .LASF643: .string "_ZNSt14numeric_limitsIyE10has_denormE" .LASF449: .string "_ZNSt14numeric_limitsIDiE10is_integerE" .LASF58: .string "is_modulo" .LASF252: .string "unsigned int" .LASF578: .string "_ZNSt14numeric_limitsIlE9is_moduloE" .LASF247: .string "_ZNSt14numeric_limitsIeE13signaling_NaNEv" .LASF622: .string "_ZNSt14numeric_limitsIxE9is_iec559E" .LASF326: .string "_ZNSt14numeric_limitsIbE5trapsE" .LASF507: .string "_ZNSt14numeric_limitsItE9is_iec559E" .LASF593: .string "_ZNSt14numeric_limitsImE14max_exponent10E" .LASF241: .string "_ZNSt14numeric_limitsIeE3maxEv" .LASF709: .string "_ZNSt14numeric_limitsIeE12has_infinityE" .LASF109: .string "numeric_limits<wchar_t>" .LASF316: .string "_ZNSt14numeric_limitsIbE12max_exponentE" .LASF645: .string "_ZNSt14numeric_limitsIyE9is_iec559E" .LASF674: .string "_ZNSt14numeric_limitsIdE14is_specializedE" .LASF165: .string "_ZNSt14numeric_limitsIiE8infinityEv" .LASF31: .string "round_toward_infinity" .LASF688: .string "_ZNSt14numeric_limitsIdE17has_signaling_NaNE" .LASF139: .string "numeric_limits<short int>" .LASF455: .string "_ZNSt14numeric_limitsIDiE14max_exponent10E" .LASF714: .string "_ZNSt14numeric_limitsIeE9is_iec559E" .LASF190: .string "_ZNSt14numeric_limitsImE3minEv" .LASF71: .string "infinity" .LASF322: .string "_ZNSt14numeric_limitsIbE15has_denorm_lossE" .LASF293: .string "_ZNSt21__numeric_limits_base12max_exponentE" .LASF120: .string "_ZNSt14numeric_limitsIDsE3minEv" .LASF523: .string "_ZNSt14numeric_limitsIiE12max_exponentE" .LASF467: .string "_ZNSt14numeric_limitsIsE14is_specializedE" .LASF528: .string "_ZNSt14numeric_limitsIiE10has_denormE" .LASF240: .string "_ZNSt14numeric_limitsIeE3minEv" .LASF584: .string "_ZNSt14numeric_limitsImE8digits10E" .LASF113: .string "_ZNSt14numeric_limitsIwE7epsilonEv" .LASF631: .string "_ZNSt14numeric_limitsIyE12max_digits10E" .LASF594: .string "_ZNSt14numeric_limitsImE12has_infinityE" .LASF445: .string "_ZNSt14numeric_limitsIDiE6digitsE" .LASF479: .string "_ZNSt14numeric_limitsIsE12has_infinityE" .LASF237: .string "_ZNSt14numeric_limitsIdE13signaling_NaNEv" .LASF666: .string "_ZNSt14numeric_limitsIfE10has_denormE" .LASF438: .string "_ZNSt14numeric_limitsIDsE9is_iec559E" .LASF570: .string "_ZNSt14numeric_limitsIlE14max_exponent10E" .LASF549: .string "_ZNSt14numeric_limitsIjE13has_quiet_NaNE" .LASF216: .string "_ZNSt14numeric_limitsIyE9quiet_NaNEv" .LASF573: .string "_ZNSt14numeric_limitsIlE17has_signaling_NaNE" .LASF114: .string "_ZNSt14numeric_limitsIwE11round_errorEv" .LASF128: .string "_ZNSt14numeric_limitsIDsE10denorm_minEv" .LASF558: .string "_ZNSt14numeric_limitsIjE11round_styleE" .LASF329: .string "_ZNSt14numeric_limitsIcE14is_specializedE" .LASF26: .string "_ZNSt21piecewise_construct_tC4Ev" .LASF538: .string "_ZNSt14numeric_limitsIjE8digits10E" .LASF147: .string "_ZNSt14numeric_limitsIsE13signaling_NaNEv" .LASF281: .string "__gnu_cxx" .LASF124: .string "_ZNSt14numeric_limitsIDsE11round_errorEv" .LASF153: .string "_ZNSt14numeric_limitsItE7epsilonEv" .LASF527: .string "_ZNSt14numeric_limitsIiE17has_signaling_NaNE" .LASF416: .string "_ZNSt14numeric_limitsIwE10is_boundedE" .LASF3: .string "_ZNKSt17integral_constantIbLb0EEclEv" .LASF385: .string "_ZNSt14numeric_limitsIhE12max_exponentE" .LASF269: .string "bool" .LASF291: .string "_ZNSt21__numeric_limits_base12min_exponentE" .LASF521: .string "_ZNSt14numeric_limitsIiE12min_exponentE" .LASF620: .string "_ZNSt14numeric_limitsIxE10has_denormE" .LASF122: .string "_ZNSt14numeric_limitsIDsE6lowestEv" .LASF118: .string "_ZNSt14numeric_limitsIwE10denorm_minEv" .LASF503: .string "_ZNSt14numeric_limitsItE13has_quiet_NaNE" .LASF446: .string "_ZNSt14numeric_limitsIDiE8digits10E" .LASF529: .string "_ZNSt14numeric_limitsIiE15has_denorm_lossE" .LASF641: .string "_ZNSt14numeric_limitsIyE13has_quiet_NaNE" .LASF20: .string "_List<short unsigned int, unsigned int, long unsigned int, long long unsigned int>" .LASF274: .string "_ZNSt29__make_unsigned_selector_base5_ListIJmyEE6__sizeE" .LASF261: .string "long double" .LASF267: .string "float_t" .LASF310: .string "_ZNSt14numeric_limitsIbE9is_signedE" .LASF87: .string "_ZNSt14numeric_limitsIcE13signaling_NaNEv" .LASF327: .string "_ZNSt14numeric_limitsIbE15tinyness_beforeE" .LASF556: .string "_ZNSt14numeric_limitsIjE5trapsE" .LASF315: .string "_ZNSt14numeric_limitsIbE14min_exponent10E" .LASF32: .string "round_toward_neg_infinity" .LASF221: .string "_ZNSt14numeric_limitsIfE3maxEv" .LASF640: .string "_ZNSt14numeric_limitsIyE12has_infinityE" .LASF372: .string "_ZNSt14numeric_limitsIaE5trapsE" .LASF105: .string "_ZNSt14numeric_limitsIhE8infinityEv" .LASF306: .string "_ZNSt14numeric_limitsIbE14is_specializedE" .LASF427: .string "_ZNSt14numeric_limitsIDsE8is_exactE" .LASF589: .string "_ZNSt14numeric_limitsImE5radixE" .LASF647: .string "_ZNSt14numeric_limitsIyE9is_moduloE" .LASF699: .string "_ZNSt14numeric_limitsIeE8digits10E" .LASF111: .string "_ZNSt14numeric_limitsIwE3maxEv" .LASF599: .string "_ZNSt14numeric_limitsImE9is_iec559E" .LASF383: .string "_ZNSt14numeric_limitsIhE12min_exponentE" .LASF530: .string "_ZNSt14numeric_limitsIiE9is_iec559E" .LASF597: .string "_ZNSt14numeric_limitsImE10has_denormE" .LASF388: .string "_ZNSt14numeric_limitsIhE13has_quiet_NaNE" .LASF351: .string "_ZNSt14numeric_limitsIcE11round_styleE" .LASF10: .string "_ZNKSt17integral_constantIbLb1EEclEv" .LASF701: .string "_ZNSt14numeric_limitsIeE9is_signedE" .LASF233: .string "_ZNSt14numeric_limitsIdE7epsilonEv" .LASF596: .string "_ZNSt14numeric_limitsImE17has_signaling_NaNE" .LASF453: .string "_ZNSt14numeric_limitsIDiE14min_exponent10E" .LASF55: .string "has_denorm_loss" .LASF256: .string "long long unsigned int" .LASF110: .string "_ZNSt14numeric_limitsIwE3minEv" .LASF76: .string "_ZNSt14numeric_limitsIbE13signaling_NaNEv" .LASF728: .string "signgam" .LASF471: .string "_ZNSt14numeric_limitsIsE9is_signedE" .LASF312: .string "_ZNSt14numeric_limitsIbE8is_exactE" .LASF43: .string "is_signed" .LASF355: .string "_ZNSt14numeric_limitsIaE12max_digits10E" .LASF236: .string "_ZNSt14numeric_limitsIdE9quiet_NaNEv" .LASF91: .string "_ZNSt14numeric_limitsIaE3maxEv" .LASF550: .string "_ZNSt14numeric_limitsIjE17has_signaling_NaNE" .LASF719: .string "_ZNSt14numeric_limitsIeE11round_styleE" .LASF119: .string "numeric_limits<char16_t>" .LASF472: .string "_ZNSt14numeric_limitsIsE10is_integerE" .LASF534: .string "_ZNSt14numeric_limitsIiE15tinyness_beforeE" .LASF352: .string "_ZNSt14numeric_limitsIaE14is_specializedE" .LASF51: .string "has_infinity" .LASF489: .string "_ZNSt14numeric_limitsIsE11round_styleE" .LASF67: .string "_ZNSt14numeric_limitsIbE6lowestEv" .LASF480: .string "_ZNSt14numeric_limitsIsE13has_quiet_NaNE" .LASF618: .string "_ZNSt14numeric_limitsIxE13has_quiet_NaNE" .LASF238: .string "_ZNSt14numeric_limitsIdE10denorm_minEv" .LASF66: .string "epsilon" .LASF378: .string "_ZNSt14numeric_limitsIhE12max_digits10E" .LASF629: .string "_ZNSt14numeric_limitsIyE6digitsE" .LASF28: .string "round_indeterminate" .LASF371: .string "_ZNSt14numeric_limitsIaE9is_moduloE" .LASF481: .string "_ZNSt14numeric_limitsIsE17has_signaling_NaNE" .LASF90: .string "_ZNSt14numeric_limitsIaE3minEv" .LASF525: .string "_ZNSt14numeric_limitsIiE12has_infinityE" .LASF92: .string "_ZNSt14numeric_limitsIaE6lowestEv" .LASF209: .string "numeric_limits<long long unsigned int>" .LASF1: .string "operator()" .LASF334: .string "_ZNSt14numeric_limitsIcE10is_integerE" .LASF4: .string "integral_constant<bool, false>" .LASF250: .string "__cxx11" .LASF97: .string "_ZNSt14numeric_limitsIaE13signaling_NaNEv" .LASF678: .string "_ZNSt14numeric_limitsIdE9is_signedE" .LASF720: .string "GNU C++17 10.0.0 20190429 (experimental) -masm=intel -mtune=generic -march=x86-64 -g -O3 -std=c++17" .LASF639: .string "_ZNSt14numeric_limitsIyE14max_exponent10E" .LASF524: .string "_ZNSt14numeric_limitsIiE14max_exponent10E" .LASF426: .string "_ZNSt14numeric_limitsIDsE10is_integerE" .LASF625: .string "_ZNSt14numeric_limitsIxE5trapsE" .LASF171: .string "_ZNSt14numeric_limitsIjE3maxEv" .LASF414: .string "_ZNSt14numeric_limitsIwE15has_denorm_lossE" .LASF656: .string "_ZNSt14numeric_limitsIfE10is_integerE" .LASF77: .string "denorm_min" .LASF581: .string "_ZNSt14numeric_limitsIlE11round_styleE" .LASF377: .string "_ZNSt14numeric_limitsIhE8digits10E" .LASF364: .string "_ZNSt14numeric_limitsIaE12has_infinityE" .LASF692: .string "_ZNSt14numeric_limitsIdE10is_boundedE" .LASF461: .string "_ZNSt14numeric_limitsIDiE9is_iec559E" .LASF671: .string "_ZNSt14numeric_limitsIfE5trapsE" .LASF244: .string "_ZNSt14numeric_limitsIeE11round_errorEv" .LASF170: .string "_ZNSt14numeric_limitsIjE3minEv" .LASF387: .string "_ZNSt14numeric_limitsIhE12has_infinityE" .LASF555: .string "_ZNSt14numeric_limitsIjE9is_moduloE" .LASF192: .string "_ZNSt14numeric_limitsImE6lowestEv" .LASF185: .string "_ZNSt14numeric_limitsIlE8infinityEv" .LASF423: .string "_ZNSt14numeric_limitsIDsE8digits10E" .LASF520: .string "_ZNSt14numeric_limitsIiE5radixE" .LASF551: .string "_ZNSt14numeric_limitsIjE10has_denormE" .LASF59: .string "traps" .LASF367: .string "_ZNSt14numeric_limitsIaE10has_denormE" .LASF205: .string "_ZNSt14numeric_limitsIxE8infinityEv" .LASF23: .string "__swappable_details" .LASF386: .string "_ZNSt14numeric_limitsIhE14max_exponent10E" .LASF123: .string "_ZNSt14numeric_limitsIDsE7epsilonEv" .LASF184: .string "_ZNSt14numeric_limitsIlE11round_errorEv" .LASF652: .string "_ZNSt14numeric_limitsIfE6digitsE" .LASF361: .string "_ZNSt14numeric_limitsIaE14min_exponent10E" .LASF179: .string "numeric_limits<long int>" .LASF182: .string "_ZNSt14numeric_limitsIlE6lowestEv" .LASF504: .string "_ZNSt14numeric_limitsItE17has_signaling_NaNE" .LASF141: .string "_ZNSt14numeric_limitsIsE3maxEv" .LASF37: .string "denorm_present" .LASF588: .string "_ZNSt14numeric_limitsImE8is_exactE" .LASF198: .string "_ZNSt14numeric_limitsImE10denorm_minEv" .LASF218: .string "_ZNSt14numeric_limitsIyE10denorm_minEv" .LASF359: .string "_ZNSt14numeric_limitsIaE5radixE" .LASF465: .string "_ZNSt14numeric_limitsIDiE15tinyness_beforeE" .LASF19: .string "_List<unsigned int, long unsigned int, long long unsigned int>" .LASF38: .string "__numeric_limits_base" .LASF54: .string "has_denorm" .LASF27: .string "__debug" .LASF308: .string "_ZNSt14numeric_limitsIbE8digits10E" .LASF258: .string "short int" .LASF447: .string "_ZNSt14numeric_limitsIDiE12max_digits10E" .LASF684: .string "_ZNSt14numeric_limitsIdE12max_exponentE" .LASF68: .string "_ZNSt14numeric_limitsIbE7epsilonEv" .LASF463: .string "_ZNSt14numeric_limitsIDiE9is_moduloE" .LASF69: .string "round_error" .LASF294: .string "_ZNSt21__numeric_limits_base14max_exponent10E" .LASF140: .string "_ZNSt14numeric_limitsIsE3minEv" .LASF493: .string "_ZNSt14numeric_limitsItE12max_digits10E" .LASF368: .string "_ZNSt14numeric_limitsIaE15has_denorm_lossE" .LASF212: .string "_ZNSt14numeric_limitsIyE6lowestEv" .LASF511: .string "_ZNSt14numeric_limitsItE15tinyness_beforeE" .LASF21: .string "_List<unsigned char, short unsigned int, unsigned int, long unsigned int, long long unsigned int>" .LASF125: .string "_ZNSt14numeric_limitsIDsE8infinityEv" .LASF235: .string "_ZNSt14numeric_limitsIdE8infinityEv" .LASF206: .string "_ZNSt14numeric_limitsIxE9quiet_NaNEv" .LASF393: .string "_ZNSt14numeric_limitsIhE10is_boundedE" .LASF642: .string "_ZNSt14numeric_limitsIyE17has_signaling_NaNE" .LASF532: .string "_ZNSt14numeric_limitsIiE9is_moduloE" .LASF727: .string "_ZSt5floorf" .LASF616: .string "_ZNSt14numeric_limitsIxE14max_exponent10E" .LASF632: .string "_ZNSt14numeric_limitsIyE9is_signedE" .LASF582: .string "_ZNSt14numeric_limitsImE14is_specializedE" .LASF434: .string "_ZNSt14numeric_limitsIDsE13has_quiet_NaNE" .LASF288: .string "_ZNSt21__numeric_limits_base10is_integerE" .LASF214: .string "_ZNSt14numeric_limitsIyE11round_errorEv" .LASF413: .string "_ZNSt14numeric_limitsIwE10has_denormE" .LASF681: .string "_ZNSt14numeric_limitsIdE5radixE" .LASF469: .string "_ZNSt14numeric_limitsIsE8digits10E" .LASF24: .string "__swappable_with_details" .LASF132: .string "_ZNSt14numeric_limitsIDiE6lowestEv" .LASF11: .string "integral_constant<long unsigned int, 0>" .LASF443: .string "_ZNSt14numeric_limitsIDsE11round_styleE" .LASF457: .string "_ZNSt14numeric_limitsIDiE13has_quiet_NaNE" .LASF546: .string "_ZNSt14numeric_limitsIjE12max_exponentE" .LASF535: .string "_ZNSt14numeric_limitsIiE11round_styleE" .LASF13: .string "_ZNKSt17integral_constantImLm0EEcvmEv" .LASF79: .string "numeric_limits<char>" .LASF662: .string "_ZNSt14numeric_limitsIfE14max_exponent10E" .LASF405: .string "_ZNSt14numeric_limitsIwE5radixE" .LASF721: .string "/tmp/compiler-explorer-compiler119330-53-13nkrqq.iz3ii/example.cpp" .LASF456: .string "_ZNSt14numeric_limitsIDiE12has_infinityE" .LASF228: .string "_ZNSt14numeric_limitsIfE10denorm_minEv" .LASF365: .string "_ZNSt14numeric_limitsIaE13has_quiet_NaNE" .LASF292: .string "_ZNSt21__numeric_limits_base14min_exponent10E" .LASF348: .string "_ZNSt14numeric_limitsIcE9is_moduloE" .LASF46: .string "radix" .LASF664: .string "_ZNSt14numeric_limitsIfE13has_quiet_NaNE" .LASF197: .string "_ZNSt14numeric_limitsImE13signaling_NaNEv" .LASF502: .string "_ZNSt14numeric_limitsItE12has_infinityE" .LASF297: .string "_ZNSt21__numeric_limits_base17has_signaling_NaNE" .LASF384: .string "_ZNSt14numeric_limitsIhE14min_exponent10E" .LASF195: .string "_ZNSt14numeric_limitsImE8infinityEv" .LASF560: .string "_ZNSt14numeric_limitsIlE6digitsE" .LASF713: .string "_ZNSt14numeric_limitsIeE15has_denorm_lossE" .LASF704: .string "_ZNSt14numeric_limitsIeE5radixE" .LASF284: .string "_ZNSt21__numeric_limits_base6digitsE" .LASF204: .string "_ZNSt14numeric_limitsIxE11round_errorEv" .LASF137: .string "_ZNSt14numeric_limitsIDiE13signaling_NaNEv" .LASF559: .string "_ZNSt14numeric_limitsIlE14is_specializedE" .LASF337: .string "_ZNSt14numeric_limitsIcE12min_exponentE" .LASF606: .string "_ZNSt14numeric_limitsIxE6digitsE" .LASF470: .string "_ZNSt14numeric_limitsIsE12max_digits10E" .LASF680: .string "_ZNSt14numeric_limitsIdE8is_exactE" .LASF611: .string "_ZNSt14numeric_limitsIxE8is_exactE" .LASF615: .string "_ZNSt14numeric_limitsIxE12max_exponentE" .LASF320: .string "_ZNSt14numeric_limitsIbE17has_signaling_NaNE" .LASF544: .string "_ZNSt14numeric_limitsIjE12min_exponentE" .LASF708: .string "_ZNSt14numeric_limitsIeE14max_exponent10E" .LASF587: .string "_ZNSt14numeric_limitsImE10is_integerE" .LASF226: .string "_ZNSt14numeric_limitsIfE9quiet_NaNEv" .LASF331: .string "_ZNSt14numeric_limitsIcE8digits10E" .LASF679: .string "_ZNSt14numeric_limitsIdE10is_integerE" .LASF464: .string "_ZNSt14numeric_limitsIDiE5trapsE" .LASF193: .string "_ZNSt14numeric_limitsImE7epsilonEv" .LASF541: .string "_ZNSt14numeric_limitsIjE10is_integerE" .LASF86: .string "_ZNSt14numeric_limitsIcE9quiet_NaNEv" .LASF509: .string "_ZNSt14numeric_limitsItE9is_moduloE" .LASF254: .string "short unsigned int" .LASF231: .string "_ZNSt14numeric_limitsIdE3maxEv" .LASF187: .string "_ZNSt14numeric_limitsIlE13signaling_NaNEv" .LASF298: .string "_ZNSt21__numeric_limits_base10has_denormE" .LASF392: .string "_ZNSt14numeric_limitsIhE9is_iec559E" .LASF536: .string "_ZNSt14numeric_limitsIjE14is_specializedE" .LASF659: .string "_ZNSt14numeric_limitsIfE12min_exponentE" .LASF501: .string "_ZNSt14numeric_limitsItE14max_exponent10E" .LASF691: .string "_ZNSt14numeric_limitsIdE9is_iec559E" .LASF435: .string "_ZNSt14numeric_limitsIDsE17has_signaling_NaNE" .LASF251: .string "__ops" .LASF211: .string "_ZNSt14numeric_limitsIyE3maxEv" .LASF332: .string "_ZNSt14numeric_limitsIcE12max_digits10E" .LASF591: .string "_ZNSt14numeric_limitsImE14min_exponent10E" .LASF491: .string "_ZNSt14numeric_limitsItE6digitsE" .LASF644: .string "_ZNSt14numeric_limitsIyE15has_denorm_lossE" .LASF408: .string "_ZNSt14numeric_limitsIwE12max_exponentE" .LASF575: .string "_ZNSt14numeric_limitsIlE15has_denorm_lossE" .LASF245: .string "_ZNSt14numeric_limitsIeE8infinityEv" .LASF328: .string "_ZNSt14numeric_limitsIbE11round_styleE" .LASF173: .string "_ZNSt14numeric_limitsIjE7epsilonEv" .LASF715: .string "_ZNSt14numeric_limitsIeE10is_boundedE" .LASF710: .string "_ZNSt14numeric_limitsIeE13has_quiet_NaNE" .LASF431: .string "_ZNSt14numeric_limitsIDsE12max_exponentE" .LASF230: .string "_ZNSt14numeric_limitsIdE3minEv" .LASF409: .string "_ZNSt14numeric_limitsIwE14max_exponent10E" .LASF562: .string "_ZNSt14numeric_limitsIlE12max_digits10E" .LASF94: .string "_ZNSt14numeric_limitsIaE11round_errorEv" .LASF540: .string "_ZNSt14numeric_limitsIjE9is_signedE" .LASF339: .string "_ZNSt14numeric_limitsIcE12max_exponentE" .LASF381: .string "_ZNSt14numeric_limitsIhE8is_exactE" .LASF655: .string "_ZNSt14numeric_limitsIfE9is_signedE" .LASF14: .string "_ZNKSt17integral_constantImLm0EEclEv" .LASF61: .string "round_style" .LASF505: .string "_ZNSt14numeric_limitsItE10has_denormE" .LASF242: .string "_ZNSt14numeric_limitsIeE6lowestEv" .LASF81: .string "_ZNSt14numeric_limitsIcE3maxEv" .LASF636: .string "_ZNSt14numeric_limitsIyE12min_exponentE" .LASF131: .string "_ZNSt14numeric_limitsIDiE3maxEv" .LASF478: .string "_ZNSt14numeric_limitsIsE14max_exponent10E" .LASF157: .string "_ZNSt14numeric_limitsItE13signaling_NaNEv" .LASF309: .string "_ZNSt14numeric_limitsIbE12max_digits10E" .LASF169: .string "numeric_limits<unsigned int>" .LASF278: .string "wchar_t" .LASF568: .string "_ZNSt14numeric_limitsIlE14min_exponent10E" .LASF406: .string "_ZNSt14numeric_limitsIwE12min_exponentE" .LASF676: .string "_ZNSt14numeric_limitsIdE8digits10E" .LASF232: .string "_ZNSt14numeric_limitsIdE6lowestEv" .LASF474: .string "_ZNSt14numeric_limitsIsE5radixE" .LASF48: .string "min_exponent10" .LASF286: .string "_ZNSt21__numeric_limits_base12max_digits10E" .LASF225: .string "_ZNSt14numeric_limitsIfE8infinityEv" .LASF682: .string "_ZNSt14numeric_limitsIdE12min_exponentE" .LASF80: .string "_ZNSt14numeric_limitsIcE3minEv" .LASF516: .string "_ZNSt14numeric_limitsIiE12max_digits10E" .LASF314: .string "_ZNSt14numeric_limitsIbE12min_exponentE" .ident "GCC: (Compiler-Explorer-Build) 10.0.0 20190429 (experimental)" .section .note.GNU-stack,"",@progbits
agda-stdlib/src/Data/List/Relation/Unary/AllPairs/Core.agda
DreamLinuxer/popl21-artifact
5
10604
<reponame>DreamLinuxer/popl21-artifact ------------------------------------------------------------------------ -- The Agda standard library -- -- Lists where every pair of elements are related (symmetrically) ------------------------------------------------------------------------ -- Core modules are not meant to be used directly outside of the -- standard library. -- This module should be removable if and when Agda issue -- https://github.com/agda/agda/issues/3210 is fixed {-# OPTIONS --without-K --safe #-} open import Relation.Binary using (Rel) module Data.List.Relation.Unary.AllPairs.Core {a ℓ} {A : Set a} (R : Rel A ℓ) where open import Level open import Data.List.Base open import Data.List.Relation.Unary.All ------------------------------------------------------------------------ -- Definition -- AllPairs R xs means that every pair of elements (x , y) in xs is a -- member of relation R (as long as x comes before y in the list). infixr 5 _∷_ data AllPairs : List A → Set (a ⊔ ℓ) where [] : AllPairs [] _∷_ : ∀ {x xs} → All (R x) xs → AllPairs xs → AllPairs (x ∷ xs)
programs/oeis/033/A033575.asm
jmorken/loda
1
100265
<filename>programs/oeis/033/A033575.asm ; A033575: a(n) = (2*n+1)*(11*n+1). ; 1,36,115,238,405,616,871,1170,1513,1900,2331,2806,3325,3888,4495,5146,5841,6580,7363,8190,9061,9976,10935,11938,12985,14076,15211,16390,17613,18880,20191,21546,22945,24388,25875,27406,28981,30600,32263,33970,35721,37516,39355,41238,43165,45136,47151,49210,51313,53460,55651,57886,60165,62488,64855,67266,69721,72220,74763,77350,79981,82656,85375,88138,90945,93796,96691,99630,102613,105640,108711,111826,114985,118188,121435,124726,128061,131440,134863,138330,141841,145396,148995,152638,156325,160056,163831,167650,171513,175420,179371,183366,187405,191488,195615,199786,204001,208260,212563,216910,221301,225736,230215,234738,239305,243916,248571,253270,258013,262800,267631,272506,277425,282388,287395,292446,297541,302680,307863,313090,318361,323676,329035,334438,339885,345376,350911,356490,362113,367780,373491,379246,385045,390888,396775,402706,408681,414700,420763,426870,433021,439216,445455,451738,458065,464436,470851,477310,483813,490360,496951,503586,510265,516988,523755,530566,537421,544320,551263,558250,565281,572356,579475,586638,593845,601096,608391,615730,623113,630540,638011,645526,653085,660688,668335,676026,683761,691540,699363,707230,715141,723096,731095,739138,747225,755356,763531,771750,780013,788320,796671,805066,813505,821988,830515,839086,847701,856360,865063,873810,882601,891436,900315,909238,918205,927216,936271,945370,954513,963700,972931,982206,991525,1000888,1010295,1019746,1029241,1038780,1048363,1057990,1067661,1077376,1087135,1096938,1106785,1116676,1126611,1136590,1146613,1156680,1166791,1176946,1187145,1197388,1207675,1218006,1228381,1238800,1249263,1259770,1270321,1280916,1291555,1302238,1312965,1323736,1334551,1345410,1356313,1367260 mul $0,22 add $0,6 mov $1,$0 pow $0,2 add $1,$0 sub $1,42 div $1,22 add $1,1
Transynther/x86/_processed/NC/_st_zr_un_sm_/i7-7700_9_0xca_notsx.log_865_172.asm
ljhsiun2/medusa
9
26070
.global s_prepare_buffers s_prepare_buffers: push %r11 push %r14 push %r9 push %rax push %rbx push %rcx push %rdi push %rsi lea addresses_D_ht+0x4fbd, %rbx nop nop inc %r9 movw $0x6162, (%rbx) nop nop nop nop cmp %rax, %rax lea addresses_A_ht+0x149bd, %rsi lea addresses_WC_ht+0xa03d, %rdi xor $2411, %r14 mov $5, %rcx rep movsw mfence lea addresses_WT_ht+0x8f96, %rcx nop nop cmp %rsi, %rsi movups (%rcx), %xmm5 vpextrq $0, %xmm5, %rax nop nop nop cmp %r14, %r14 lea addresses_A_ht+0x4dc9, %rbx nop nop nop dec %r11 mov $0x6162636465666768, %r14 movq %r14, (%rbx) nop add $47157, %rsi lea addresses_WT_ht+0xd03d, %rsi lea addresses_WC_ht+0x1aa3d, %rdi nop nop nop cmp $54107, %rax mov $83, %rcx rep movsw nop add %rcx, %rcx lea addresses_WT_ht+0x1390d, %r11 and $42527, %rcx movb $0x61, (%r11) nop dec %rcx lea addresses_UC_ht+0x1ef7d, %rax sub %rsi, %rsi mov $0x6162636465666768, %rdi movq %rdi, (%rax) nop nop nop nop nop add $55132, %r14 lea addresses_A_ht+0x1483d, %rcx nop cmp $34529, %r9 movw $0x6162, (%rcx) nop nop nop nop inc %r11 lea addresses_D_ht+0x14d3d, %rsi and $64830, %rdi movl $0x61626364, (%rsi) nop nop nop and $55579, %r11 lea addresses_UC_ht+0x161a5, %rsi lea addresses_UC_ht+0x184bd, %rdi add %rax, %rax mov $51, %rcx rep movsl inc %r11 lea addresses_WC_ht+0x18c3d, %r14 nop xor %r9, %r9 movups (%r14), %xmm6 vpextrq $1, %xmm6, %rax nop nop nop nop nop dec %rdi lea addresses_WT_ht+0x1d7bd, %r14 nop nop xor %r11, %r11 vmovups (%r14), %ymm7 vextracti128 $1, %ymm7, %xmm7 vpextrq $1, %xmm7, %rax nop sub $65467, %r11 lea addresses_A_ht+0x7dd, %rax nop xor %rcx, %rcx mov (%rax), %r9 nop cmp $15298, %r14 lea addresses_A_ht+0x1d83d, %r9 nop and %rbx, %rbx movb (%r9), %r14b nop nop nop nop nop inc %rbx pop %rsi pop %rdi pop %rcx pop %rbx pop %rax pop %r9 pop %r14 pop %r11 ret .global s_faulty_load s_faulty_load: push %r10 push %r12 push %r14 push %r15 push %rbx push %rdx push %rsi // Load mov $0x9d8f0000000c3d, %r12 cmp $7501, %r15 vmovups (%r12), %ymm0 vextracti128 $1, %ymm0, %xmm0 vpextrq $1, %xmm0, %rsi nop nop cmp $49420, %r15 // Store mov $0x1d71560000000c3d, %rsi and $34585, %r15 movb $0x51, (%rsi) nop nop nop nop cmp $33312, %rdx // Store mov $0x9d8f0000000c3d, %r12 nop nop cmp $37482, %rbx mov $0x5152535455565758, %r14 movq %r14, %xmm5 movups %xmm5, (%r12) nop nop and %r12, %r12 // Store mov $0x507c63000000043d, %rdx clflush (%rdx) nop nop nop nop add %rsi, %rsi mov $0x5152535455565758, %r15 movq %r15, (%rdx) nop nop nop nop nop and $21615, %r10 // Faulty Load mov $0x9d8f0000000c3d, %r12 nop nop nop nop dec %rdx mov (%r12), %r10d lea oracles, %r15 and $0xff, %r10 shlq $12, %r10 mov (%r15,%r10,1), %r10 pop %rsi pop %rdx pop %rbx pop %r15 pop %r14 pop %r12 pop %r10 ret /* <gen_faulty_load> [REF] {'src': {'NT': False, 'AVXalign': False, 'size': 32, 'congruent': 0, 'same': False, 'type': 'addresses_NC'}, 'OP': 'LOAD'} {'src': {'NT': False, 'AVXalign': False, 'size': 32, 'congruent': 0, 'same': True, 'type': 'addresses_NC'}, 'OP': 'LOAD'} {'dst': {'NT': False, 'AVXalign': True, 'size': 1, 'congruent': 9, 'same': False, 'type': 'addresses_NC'}, 'OP': 'STOR'} {'dst': {'NT': False, 'AVXalign': False, 'size': 16, 'congruent': 0, 'same': True, 'type': 'addresses_NC'}, 'OP': 'STOR'} {'dst': {'NT': True, 'AVXalign': False, 'size': 8, 'congruent': 6, 'same': False, 'type': 'addresses_NC'}, 'OP': 'STOR'} [Faulty Load] {'src': {'NT': False, 'AVXalign': False, 'size': 4, 'congruent': 0, 'same': True, 'type': 'addresses_NC'}, 'OP': 'LOAD'} <gen_prepare_buffer> {'dst': {'NT': False, 'AVXalign': False, 'size': 2, 'congruent': 5, 'same': True, 'type': 'addresses_D_ht'}, 'OP': 'STOR'} {'src': {'congruent': 6, 'same': False, 'type': 'addresses_A_ht'}, 'dst': {'congruent': 10, 'same': False, 'type': 'addresses_WC_ht'}, 'OP': 'REPM'} {'src': {'NT': False, 'AVXalign': False, 'size': 16, 'congruent': 0, 'same': False, 'type': 'addresses_WT_ht'}, 'OP': 'LOAD'} {'dst': {'NT': False, 'AVXalign': False, 'size': 8, 'congruent': 0, 'same': False, 'type': 'addresses_A_ht'}, 'OP': 'STOR'} {'src': {'congruent': 9, 'same': False, 'type': 'addresses_WT_ht'}, 'dst': {'congruent': 9, 'same': False, 'type': 'addresses_WC_ht'}, 'OP': 'REPM'} {'dst': {'NT': False, 'AVXalign': False, 'size': 1, 'congruent': 4, 'same': False, 'type': 'addresses_WT_ht'}, 'OP': 'STOR'} {'dst': {'NT': False, 'AVXalign': False, 'size': 8, 'congruent': 5, 'same': True, 'type': 'addresses_UC_ht'}, 'OP': 'STOR'} {'dst': {'NT': False, 'AVXalign': False, 'size': 2, 'congruent': 9, 'same': False, 'type': 'addresses_A_ht'}, 'OP': 'STOR'} {'dst': {'NT': False, 'AVXalign': False, 'size': 4, 'congruent': 7, 'same': False, 'type': 'addresses_D_ht'}, 'OP': 'STOR'} {'src': {'congruent': 3, 'same': False, 'type': 'addresses_UC_ht'}, 'dst': {'congruent': 5, 'same': False, 'type': 'addresses_UC_ht'}, 'OP': 'REPM'} {'src': {'NT': False, 'AVXalign': False, 'size': 16, 'congruent': 10, 'same': True, 'type': 'addresses_WC_ht'}, 'OP': 'LOAD'} {'src': {'NT': False, 'AVXalign': False, 'size': 32, 'congruent': 7, 'same': False, 'type': 'addresses_WT_ht'}, 'OP': 'LOAD'} {'src': {'NT': False, 'AVXalign': False, 'size': 8, 'congruent': 4, 'same': False, 'type': 'addresses_A_ht'}, 'OP': 'LOAD'} {'src': {'NT': False, 'AVXalign': False, 'size': 1, 'congruent': 9, 'same': False, 'type': 'addresses_A_ht'}, 'OP': 'LOAD'} {'6d': 418, '00': 7, '58': 440} 6d 58 58 6d 58 58 6d 58 6d 6d 6d 6d 58 6d 58 58 58 6d 58 6d 58 6d 6d 6d 6d 6d 58 58 6d 6d 6d 00 58 6d 6d 6d 6d 58 6d 6d 58 58 58 58 58 6d 58 58 6d 58 6d 6d 58 58 6d 58 6d 6d 58 6d 58 6d 6d 58 6d 6d 6d 6d 58 58 6d 6d 58 6d 58 58 58 58 58 6d 6d 58 58 6d 58 58 58 58 6d 58 6d 58 58 6d 6d 6d 6d 58 58 58 58 58 6d 58 6d 6d 58 58 58 58 58 58 6d 58 58 6d 58 6d 6d 6d 58 6d 58 6d 58 6d 6d 6d 6d 6d 58 58 58 6d 58 58 58 6d 6d 6d 58 58 58 6d 6d 6d 6d 58 6d 58 58 6d 6d 6d 58 58 58 58 58 6d 58 58 6d 6d 58 58 6d 58 58 6d 6d 6d 58 6d 58 6d 6d 58 58 58 6d 6d 58 58 58 58 6d 58 58 58 6d 58 6d 6d 58 6d 58 6d 58 6d 6d 58 58 58 6d 58 6d 6d 6d 58 6d 58 58 6d 58 58 6d 58 6d 58 58 6d 6d 6d 6d 6d 58 6d 6d 58 6d 58 58 6d 58 58 58 6d 58 58 58 58 6d 6d 6d 00 58 58 6d 6d 58 6d 6d 6d 6d 58 6d 58 6d 6d 58 58 58 58 58 6d 58 6d 6d 6d 58 58 58 58 58 58 6d 58 6d 58 6d 58 6d 58 6d 6d 6d 58 58 58 58 6d 58 6d 6d 6d 6d 58 6d 58 58 6d 58 6d 6d 6d 6d 58 6d 58 58 58 58 58 6d 58 58 58 58 6d 58 58 58 58 58 6d 6d 58 58 58 58 58 58 58 6d 6d 58 6d 6d 6d 58 6d 6d 6d 6d 6d 58 58 6d 6d 58 6d 58 6d 6d 58 6d 58 58 6d 6d 58 6d 6d 58 6d 58 00 6d 58 58 6d 6d 58 58 58 6d 6d 58 6d 58 58 6d 6d 6d 58 6d 6d 6d 6d 6d 58 6d 6d 58 58 6d 58 6d 58 58 6d 58 58 6d 6d 6d 58 6d 6d 6d 58 58 58 6d 58 6d 6d 6d 58 58 58 6d 58 6d 6d 58 58 58 58 6d 6d 58 6d 6d 6d 6d 6d 58 58 00 6d 58 6d 58 6d 6d 58 6d 58 6d 58 58 58 58 58 58 6d 58 6d 6d 58 6d 58 58 6d 6d 58 6d 58 58 58 58 6d 58 58 58 6d 6d 58 58 58 6d 6d 6d 58 58 6d 6d 58 58 6d 58 58 58 58 58 58 6d 58 58 58 58 58 58 6d 58 58 58 6d 6d 6d 6d 58 58 6d 58 6d 6d 58 58 58 6d 58 6d 6d 58 58 6d 6d 58 6d 6d 58 6d 58 58 6d 58 58 6d 58 6d 6d 6d 6d 58 58 6d 58 58 6d 58 58 58 58 58 58 58 6d 6d 58 58 58 6d 58 6d 58 58 58 6d 58 6d 6d 6d 6d 58 6d 58 58 58 58 6d 58 58 58 58 6d 6d 58 6d 58 6d 58 6d 00 6d 6d 6d 58 58 58 6d 58 6d 58 6d 58 58 6d 58 6d 6d 58 6d 6d 6d 58 58 58 6d 58 58 6d 6d 6d 58 58 58 58 58 6d 58 6d 6d 6d 6d 6d 6d 58 6d 6d 6d 6d 58 58 6d 6d 58 6d 58 58 58 6d 58 6d 58 58 58 58 6d 6d 58 6d 6d 6d 58 58 6d 6d 6d 58 6d 6d 6d 58 6d 58 6d 6d 6d 58 6d 58 6d 6d 58 6d 58 6d 58 6d 6d 6d 58 6d 6d 58 58 58 58 58 6d 58 58 58 58 6d 6d 58 6d 6d 58 6d 6d 58 58 6d 6d 6d 58 6d 6d 6d 6d 58 6d 6d 58 58 58 58 6d 58 6d 6d 58 58 6d 6d 6d 6d 58 58 6d 58 6d 6d 58 6d 58 6d 6d 6d 58 58 6d 6d 58 00 6d 6d 58 6d 6d 6d 6d 00 58 6d 6d 6d 58 58 58 58 58 6d 6d 58 6d 6d 58 58 58 58 6d 58 58 6d 6d 6d 6d 6d 58 6d 58 6d 6d 6d 58 58 6d 58 6d 6d 6d 6d 58 58 58 58 58 58 58 58 6d 6d 58 6d 58 6d 6d 6d 58 6d 58 58 6d 6d 6d 6d 58 58 6d 6d 58 58 58 6d 58 6d 58 6d 6d 58 58 58 58 58 6d 58 58 58 6d 58 58 6d 6d 58 58 6d 6d 6d 58 */
test/Fail/TupleTerm.agda
dxts/agda2hs
55
10469
<filename>test/Fail/TupleTerm.agda module Fail.TupleTerm where open import Haskell.Prelude pair2trip : a → b × c → a × b × c pair2trip x xs = x ∷ xs {-# COMPILE AGDA2HS pair2trip #-}
src/arch/i686/busy_wait.asm
miklhh/os4
3
85982
<reponame>miklhh/os4 ; ; Part of OS4, busy_wait.asm ; Author: <NAME>, miklhh ; ; Function for busy waiting. Used by certaion architecture specific routines ; written in C so that GCC wont optimize certaion parts away. global busy_wait busy_wait: jmp $
src/main/java/dot/bpm/parser/antlr/DOTBPM.g4
bspies/dotbpm
0
3279
grammar DOTBPM; process : PROCESS id '{' stmt_list '}' ; subprocess : SUBPROCESS id '{' stmt_list '}' ; stmt_list : ( stmt ';'? )* ; stmt : activity | subprocess | sequence ; sequence : flow_element seq_flow flow_element (seq_flow flow_element)* ; flow_element : activity | subprocess | gateway | event | link ; activity : '[' activity_type ':' id ('|' attr_list)? ']' ; activity_type : 'task' | 'script' | 'action'; event : '(' event_type ')' ; event_type : '>' | '-' | '<<' | 'X' | '*' | '+' | '!' | '?' | '^' | '~' | '@' | '..' ; gateway : '<' gateway_type | event '>' ; gateway_type : 'X' | 'O' | '+' | '*'; assoc_flow : '--' ; seq_flow : '=>' ; msg_flow : '->' ; attr_list : (id ('=' attr_value)? ','?)+ ; attr_value : STRING | NUMBER | BOOLEAN ; id : ID ; link : '#' id ; /* "keywords are case-insensitive" */ PROCESS : [Pp][Rr][Oo][Cc][Ee][Ss][Ss] ; SUBPROCESS : [Ss][Uu][Bb][Pp][Rr][Oo][Cc][Ee][Ss][Ss] ; /** "any double-quoted string ("...") possibly containing escaped quotes" */ STRING : '"' ('\\"'|.)*? '"' ; /** "a numeral [-]?(.[0-9]+ | [0-9]+(.[0-9]*)? )" */ NUMBER : '-'? ('.' DIGIT+ | DIGIT+ ('.' DIGIT*)? ) ; fragment DIGIT : [0-9] ; /** a boolean value */ BOOLEAN : 'true' | 'false' ; /** "Any string of alphabetic ([a-zA-Z\200-\377]) characters, underscores * ('_') or digits ([0-9]), not beginning with a digit" */ ID : LETTER (LETTER|DIGIT)*; fragment LETTER : [a-zA-Z\u0080-\u00FF_] ; COMMENT : '/*' .*? '*/' -> skip ; LINE_COMMENT: '//' .*? '\r'? '\n' -> skip ;
out/aaa_read0.adb
Melyodas/metalang
22
20265
<gh_stars>10-100 with ada.text_io, ada.Integer_text_IO, Ada.Text_IO.Text_Streams, Ada.Strings.Fixed, Interfaces.C; use ada.text_io, ada.Integer_text_IO, Ada.Strings, Ada.Strings.Fixed, Interfaces.C; procedure aaa_read0 is type stringptr is access all char_array; procedure PString(s : stringptr) is begin String'Write (Text_Streams.Stream (Current_Output), To_Ada(s.all)); end; procedure PInt(i : in Integer) is begin String'Write (Text_Streams.Stream (Current_Output), Trim(Integer'Image(i), Left)); end; procedure SkipSpaces is C : Character; Eol : Boolean; begin loop Look_Ahead(C, Eol); exit when Eol or C /= ' '; Get(C); end loop; end; len : Integer; begin Get(len); SkipSpaces; PInt(len); PString(new char_array'( To_C("" & Character'Val(10)))); end;
Transynther/x86/_processed/NONE/_xt_/i7-8650U_0xd2_notsx.log_6228_981.asm
ljhsiun2/medusa
9
17071
.global s_prepare_buffers s_prepare_buffers: push %r11 push %r13 push %r14 push %r15 push %r8 push %rcx push %rdi push %rsi lea addresses_D_ht+0x1240, %r11 nop xor %r15, %r15 movb (%r11), %r14b nop nop nop nop add %r13, %r13 lea addresses_A_ht+0xac00, %rsi nop nop nop add %r14, %r14 mov $0x6162636465666768, %r8 movq %r8, %xmm0 and $0xffffffffffffffc0, %rsi movaps %xmm0, (%rsi) nop and $34084, %r13 lea addresses_UC_ht+0x11a1c, %rsi and $42266, %r8 mov (%rsi), %r15w nop nop nop nop nop and %r8, %r8 lea addresses_UC_ht+0x3ac0, %rsi lea addresses_WT_ht+0x7ec0, %rdi clflush (%rsi) nop nop nop nop and %r11, %r11 mov $100, %rcx rep movsw nop nop nop nop nop inc %r8 lea addresses_UC_ht+0x1e950, %r13 nop cmp $62937, %r14 mov (%r13), %r15d dec %r11 lea addresses_UC_ht+0x10281, %r13 nop nop sub %rdi, %rdi movl $0x61626364, (%r13) nop nop nop nop and %r8, %r8 pop %rsi pop %rdi pop %rcx pop %r8 pop %r15 pop %r14 pop %r13 pop %r11 ret .global s_faulty_load s_faulty_load: push %r11 push %r12 push %r8 push %rbp push %rbx push %rcx // Faulty Load lea addresses_PSE+0x1a6c0, %r11 nop nop nop nop nop cmp $62062, %rbp vmovups (%r11), %ymm2 vextracti128 $1, %ymm2, %xmm2 vpextrq $1, %xmm2, %r8 lea oracles, %rcx and $0xff, %r8 shlq $12, %r8 mov (%rcx,%r8,1), %r8 pop %rcx pop %rbx pop %rbp pop %r8 pop %r12 pop %r11 ret /* <gen_faulty_load> [REF] {'OP': 'LOAD', 'src': {'type': 'addresses_PSE', 'size': 16, 'AVXalign': False, 'NT': False, 'congruent': 0, 'same': True}} [Faulty Load] {'OP': 'LOAD', 'src': {'type': 'addresses_PSE', 'size': 32, 'AVXalign': False, 'NT': False, 'congruent': 0, 'same': True}} <gen_prepare_buffer> {'OP': 'LOAD', 'src': {'type': 'addresses_D_ht', 'size': 1, 'AVXalign': False, 'NT': False, 'congruent': 7, 'same': False}} {'OP': 'STOR', 'dst': {'type': 'addresses_A_ht', 'size': 16, 'AVXalign': True, 'NT': False, 'congruent': 6, 'same': False}} {'OP': 'LOAD', 'src': {'type': 'addresses_UC_ht', 'size': 2, 'AVXalign': False, 'NT': False, 'congruent': 1, 'same': True}} {'OP': 'REPM', 'src': {'type': 'addresses_UC_ht', 'congruent': 9, 'same': False}, 'dst': {'type': 'addresses_WT_ht', 'congruent': 9, 'same': True}} {'OP': 'LOAD', 'src': {'type': 'addresses_UC_ht', 'size': 4, 'AVXalign': False, 'NT': False, 'congruent': 4, 'same': False}} {'OP': 'STOR', 'dst': {'type': 'addresses_UC_ht', 'size': 4, 'AVXalign': False, 'NT': False, 'congruent': 0, 'same': False}} {'33': 6228} 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 */
alloy4fun_models/trainstlt/models/2/4osG5uqF6NSjFzPqR.als
Kaixi26/org.alloytools.alloy
0
2153
<filename>alloy4fun_models/trainstlt/models/2/4osG5uqF6NSjFzPqR.als open main pred id4osG5uqF6NSjFzPqR_prop3 { always all t : Train, pos : t.pos | always lone pos } pred __repair { id4osG5uqF6NSjFzPqR_prop3 } check __repair { id4osG5uqF6NSjFzPqR_prop3 <=> prop3o }