text stringlengths 1 1.05M |
|---|
.text
main:
j alu_tester
alu_tester:
########## ADDITION ###########
# Store immediates so we can do some math
addi $r1 $r0 1 # r1 = 1
addi $r1 $r1 2 # r1 = r1 + 2
add $r1 $r1 $r1 # r1 = r1 + r1
lw $r2 expected_add
# If the branch is taken, something went wrong!
bne $r1 $r2 logic_tester # r1 =? r2
########## SUBTRACTION ###########
addi $r3 $r0 100 # r3 = 100
sub $r3 $r3 $r2 # r3 = r3 - r2
lw $r4 expected_sub
# If the branch is taken, something went wrong!
bne $r3 $r4 logic_tester # r4 =? r1
########## ARITHMETIC SHIFT ###########
addi $r5 $r0 0xABC0 # r5 = 0xABC0 (Negative!)
sra $r5 $r5 4 # r5 = $r5 >> 4
lw $r6 expected_sra
# If the branch is taken, something went wrong!
bne $r5 $r6 logic_tester # r5 ?= r6
########## LOGICAL SHIFT & MULTIPLY ###########
addi $r7 $r0 0x7FFF # r7 = 0x7FFF (Positive)
sll $r8 $r7 8 # r8 = r7 << 8 = 0x7FFF00
mult $r7 $r8
# Expected results: 0x3fff000100
# So, we expect: HI = 0x0000003f; LO = 0xff000100
mfhi $r9
lw $r10 expected_mult_hi
bne $r9 $r10 logic_tester # If HI was wrong, skip ahead!
mflo $r11 hhh
lw $r12 expected_mult_lo
bne $r11 $r12 logic_tester # If LO was wrong, skip ahead!
########## DIVIDE ###########
addi $r13 $r0 17
addi $r14 $r0 4
div $r13 $r14
# Expected results: 17 / 4 = 4 with remainder 1
# So, we expect: HI = 1; LO = 4
mfhi $r16
addi $r17 $r0 1
mflo $r18
addi $r19 $r0 4
# If the branch is taken, something went wrong!
bne $r16 $r17 logic_tester
bne $r18 $r19 logic_tester
# If all tests pass, increment the counter!
jal correct
logic_tester:
########## AND ###########
addi $r20 $r0 0x00FF
addi $r21 $r0 0x7F00
# Expected: 0x00FF & 0x7F00 = 0
and $r22 $r20 $r21
bne $r22 $r0 load_n_store_tester
########## XORI ###########
# Expected: 0x00FF ^ 0x7F00 = 0x7FFF
xori $r23 $r20 0x7F00 # r23 = 0x00FF ^ 0x7F00
addi $r24 $r0 0x7FFF
# If the branch is taken, something went wrong!
bne $r23 $r24 load_n_store_tester
# If all tests pass, increment the counter!
jal correct
load_n_store_tester:
# Store some bytes in registers
addi $r5 $r0 0xAB
addi $r6 $r0 0xCD
addi $r7 $r0 0xEF
addi $r8 $r0 0x89
# Set some offsets
addi $r1 $r0 0
addi $r2 $r0 1
addi $r3 $r0 2
addi $r4 $r0 3
# Store the bytes in memory; line 256 is address 0x400
sb $r5 256($r1) # Address 0x1 + 0x400 = 0x400
sb $r6 256($r2) # Address 0x1 + 0x400 = 0x401
sb $r7 256($r3) # Address 0x1 + 0x400 = 0x402
sb $r8 256($r4) # Address 0x1 + 0x400 = 0x403
# Load the word: we expect it to be 0x89EFCDAB,
# since we are little endian
lw $r25 256($r0)
# Load expected value
lw $r26 expected_lw
# If the branch is taken, something went wrong!
bne $r25 $r26 floating_point_tester
jal correct
floating_point_tester:
l.s $f0 one_x # f0 = x
add.s $f0 $f0 $f0 # f0 = f0 + f0
l.s $f1 two_x # f1 = 2x
# Check if x + x == 2x
c.eq.s $f0 $f1
# If the branch is taken, something went wrong!
bc1f exit
jal correct
exit:
# Syscall to exit.
syscall
correct:
addi $r30 $r30 1
jr $ra
.data
expected_add: 6
expected_sub: 94
expected_sra: 0xFFFFFABC
expected_mult_hi: 0x0000003f
expected_mult_lo: 0xff000100
expected_lw: 0x89EFCDAB
one_x: 2.5
two_x: 5.0
|
; Trig etc functions V2.00 1990 Tony Tebby QJUMP
;
section exten
xdef int
xdef abs
xdef cos
xdef sin
xdef tan
xdef cot
xdef asin
xdef acos
xdef atan
xdef acot
xdef sqrt
xdef ln
xdef log10
xdef exp
xdef pi
xdef rad
xdef deg
xdef pi_d180
xref ut_gtfp
xref ut_gxfp1
xref ut_par0
xref ut_ckri6
xref ut_chkri
xref ut_retin
xref ut_retfp
include 'dev8_keys_err'
include 'dev8_keys_sbasic'
include 'dev8_keys_qlv'
trig macro name
[name] moveq #qa.[name],d7
bra.s trig
endm
trig abs
trig cos
trig sin
trig tan
trig cot
trig asin
trig acos
trig acot
trig sqrt
trig ln
trig log10
trig exp
atan
jsr ut_gtfp
bne.s trig_rts
moveq #qa.atan,d7 ; assume atan
subq.w #1,d3
beq.s trig_chkri
moveq #qa.atan2,d7 ; try atan2
subq.w #1,d3
beq.s trig_chkri
trig_ipar
moveq #err.ipar,d0
trig_rts
rts
trig
jsr ut_gxfp1 ; one param only
bne.s trig_rts
trig_chkri
moveq #8*6,d1
jsr ut_chkri
move.b d7,d0
trig_do
jsr qa.op*3+qlv.off ; do operation
beq.l ut_retfp ; and return
rts
int
jsr ut_gxfp1 ; one param only
bne.s trig_rts
move.w #$080f,d1
sub.w (a6,a1.l),d1 ; shift right for int
blt.s int_long ; ... too far for int
move.w 2(a6,a1.l),d0 ; mantissa
addq.l #4,a1
cmp.w #16,d1
ble.s int_do
moveq #16,d1
int_do
asr.w d1,d0
move.w d0,(a6,a1.l)
jmp ut_retin ; and return
int_long
add.w #$10,d1 ; shift for mask
ble.s int_rtfp ; ... number much too large
moveq #-1,d0
lsl.w d1,d0
and.w d0,4(a6,a1.l) ; mask out rubbish bits
int_rtfp
jmp ut_retfp
pi
jsr ut_par0 ; no parameter
move.l sb_arthp(a6),a1
moveq #qa.pi,d0
bra.s trig_do
rad
lea pi_d180,a0 ; smaller
bra.s rad_deg
deg
lea d180_pi,a0
rad_deg
jsr ut_gxfp1 ; one param only
jsr ut_ckri6 ; and some room
subq.l #6,a1 ; space for multiple / divide
move.w (a0)+,(a6,a1.l)
move.l (a0)+,2(a6,a1.l)
moveq #qa.mul,d0
bra.s trig_do
pi_d180 dc.w $07FB,$477D,$1A89
d180_pi dc.w $0806,$7297,$706A
end
|
;------------------------------------------------------------------------------
;
; Copyright (c) 2006, Intel Corporation. All rights reserved.<BR>
; This program and the accompanying materials
; are licensed and made available under the terms and conditions of the BSD License
; which accompanies this distribution. The full text of the license may be found at
; http://opensource.org/licenses/bsd-license.php.
;
; THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS,
; WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED.
;
; Module Name:
;
; EnablePaging32.Asm
;
; Abstract:
;
; AsmEnablePaging32 function
;
; Notes:
;
;------------------------------------------------------------------------------
SECTION .text
;------------------------------------------------------------------------------
; VOID
; EFIAPI
; EnablePaging32 (
; IN UINT32 Pdpe
; );
;------------------------------------------------------------------------------
global ASM_PFX(EnablePaging32)
ASM_PFX(EnablePaging32):
pushfd
cli
; Set Page Global Enable (Set PGE in CR4)
mov eax, cr4
or eax, 10h
mov cr4, eax
; Load PDPE
mov eax, [esp + 8]
mov cr3, eax
; Enable Paging (Set PG bit in CR0)
mov eax, cr0
bts eax, 31
mov cr0, eax
popfd
ret
;------------------------------------------------------------------------------
; VOID
; EFIAPI
; DisablePaging32 (
; VOID
; );
;------------------------------------------------------------------------------
global ASM_PFX(DisablePaging32)
ASM_PFX(DisablePaging32):
pushfd
cli
; Disable Paging (Clear PG bit in CR0)
mov eax, cr0
and eax, 0x7fffffff
mov cr0, eax
popfd
ret
;------------------------------------------------------------------------------
; VOID *
; EFIAPI
; FlushCacheLine (
; IN VOID *StartAddress,
; IN VOID *EndAddress
; );
;------------------------------------------------------------------------------
global ASM_PFX(FlushCacheLine)
ASM_PFX(FlushCacheLine):
;
; If the CPU does not support CLFLUSH instruction,
; then promote flush range to flush entire cache.
;
push ecx
mov eax, [esp + 8]
mov ecx, [esp + 12]
sub ecx, eax
shr ecx, 6
FlushNext:
clflush [eax]
add eax, 64
loop FlushNext
pop ecx
ret
|
.size 8000
.text@48
jp lstatint
.text@100
jp lbegin
.data@143
80
.text@150
lbegin:
ld c, 41
ld b, 02
ld d, 03
lbegin_waitm2:
ldff a, (c)
and a, d
cmp a, b
jrnz lbegin_waitm2
ld a, 08
ldff(c), a
xor a, a
ldff(0f), a
ld a, 02
ldff(ff), a
ei
ld hl, 8000
ld a, 01
.text@1000
lstatint:
ld a, 03
ldff(43), a
.text@1064
ld(hl), a
ld a, (hl)
and a, 07
jp lprint_a
.text@7000
lprint_a:
push af
ld b, 91
call lwaitly_b
xor a, a
ldff(40), a
pop af
ld(9800), a
ld bc, 7a00
ld hl, 8000
ld d, a0
lprint_copytiles:
ld a, (bc)
inc bc
ld(hl++), a
dec d
jrnz lprint_copytiles
ld a, c0
ldff(47), a
ld a, 80
ldff(68), a
ld a, ff
ldff(69), a
ldff(69), a
ldff(69), a
ldff(69), a
ldff(69), a
ldff(69), a
xor a, a
ldff(69), a
ldff(69), a
ldff(43), a
ld a, 91
ldff(40), a
lprint_limbo:
jr lprint_limbo
.text@7400
lwaitly_b:
ld c, 44
lwaitly_b_loop:
ldff a, (c)
cmp a, b
jrnz lwaitly_b_loop
ret
.data@7a00
00 00 7f 7f 41 41 41 41
41 41 41 41 41 41 7f 7f
00 00 08 08 08 08 08 08
08 08 08 08 08 08 08 08
00 00 7f 7f 01 01 01 01
7f 7f 40 40 40 40 7f 7f
00 00 7f 7f 01 01 01 01
3f 3f 01 01 01 01 7f 7f
00 00 41 41 41 41 41 41
7f 7f 01 01 01 01 01 01
00 00 7f 7f 40 40 40 40
7e 7e 01 01 01 01 7e 7e
00 00 7f 7f 40 40 40 40
7f 7f 41 41 41 41 7f 7f
00 00 7f 7f 01 01 02 02
04 04 08 08 10 10 10 10
00 00 3e 3e 41 41 41 41
3e 3e 41 41 41 41 3e 3e
00 00 7f 7f 41 41 41 41
7f 7f 01 01 01 01 7f 7f
|
; A269760: Number of n X 1 0..5 arrays with some element plus some horizontally or vertically adjacent neighbor totalling five exactly once.
; 0,6,60,450,3000,18750,112500,656250,3750000,21093750,117187500,644531250,3515625000,19042968750,102539062500,549316406250,2929687500000,15563964843750,82397460937500,434875488281250,2288818359375000,12016296386718750,62942504882812500,329017639160156250,1716613769531250000,8940696716308593750,46491622924804687500,241398811340332031250,1251697540283203125000,6482005119323730468750,33527612686157226562500,173225998878479003906250,894069671630859375000000,4610046744346618652343750
mov $1,5
pow $1,$0
mul $1,$0
div $1,5
mul $1,6
mov $0,$1
|
; A170935: b(n)*b(n+1), where b() = A000930().
; Submitted by Simon Strandgaard
; 1,1,2,6,12,24,54,117,247,532,1148,2460,5280,11352,24381,52353,112462,241570,518840,1114416,2393694,5141385,11043135,23719608,50947336,109429624,235043840,504850560,1084367865,2329112625,5002699050,10745292366,23079802756,49573086472,106477984886,228703960317,491233015959,1055118922284,2266288914852,4867759773972,10455456526432,22457264990968,48235937815925,103605924323025,222535064949462,477982851410826,1026658905627888,2205159673403232,4736460336074110,10173438588499345,21851518934050751
add $0,2
lpb $0
sub $0,1
mov $1,$2
add $4,1
mov $2,$4
mov $4,0
sub $4,$3
sub $3,$1
lpe
mul $1,$2
mov $0,$1
|
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
; Copyright(c) 2011-2016 Intel Corporation All rights reserved.
;
; Redistribution and use in source and binary forms, with or without
; modification, are permitted provided that the following conditions
; are met:
; * Redistributions of source code must retain the above copyright
; notice, this list of conditions and the following disclaimer.
; * 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.
; * Neither the name of Intel Corporation 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
; OWNER 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.
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
; XTS encrypt function with 128-bit AES
; input keys are not aligned
; keys are expanded in parallel with the tweak encryption
; plaintext and ciphertext are not aligned
; second key is stored in the stack as aligned to 16 Bytes
; first key is required only once, no need for storage of this key
%include "reg_sizes.asm"
default rel
%define TW rsp ; store 8 tweak values
%define keys rsp + 16*8 ; store 15 expanded keys
%ifidn __OUTPUT_FORMAT__, win64
%define _xmm rsp + 16*19 ; store xmm6:xmm15
%endif
%ifidn __OUTPUT_FORMAT__, elf64
%define _gpr rsp + 16*19 ; store rbx
%define VARIABLE_OFFSET 16*8 + 16*11 + 8*1 ; VARIABLE_OFFSET has to be an odd multiple of 8
%else
%define _gpr rsp + 16*29 ; store rdi, rsi, rbx
%define VARIABLE_OFFSET 16*8 + 16*11 + 16*10 + 8*3 ; VARIABLE_OFFSET has to be an odd multiple of 8
%endif
%define GHASH_POLY 0x87
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
;void XTS_AES_128_enc_sse(
; UINT8 *k2, // key used for tweaking, 16*1 bytes
; UINT8 *k1, // key used for "ECB" encryption, 16*1 bytes
; UINT8 *TW_initial, // initial tweak value, 16 bytes
; UINT64 N, // sector size, in bytes
; const UINT8 *pt, // plaintext sector input data
; UINT8 *ct); // ciphertext sector output data
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
; arguments for input parameters
%ifidn __OUTPUT_FORMAT__, elf64
%xdefine ptr_key2 rdi
%xdefine ptr_key1 rsi
%xdefine T_val rdx
%xdefine N_val rcx
%xdefine ptr_plaintext r8
%xdefine ptr_ciphertext r9
%else
%xdefine ptr_key2 rcx
%xdefine ptr_key1 rdx
%xdefine T_val r8
%xdefine N_val r9
%xdefine ptr_plaintext r10; [rsp + VARIABLE_OFFSET + 8*5]
%xdefine ptr_ciphertext r11; [rsp + VARIABLE_OFFSET + 8*6]
%endif
; arguments for temp parameters
%ifidn __OUTPUT_FORMAT__, elf64
%define tmp1 rdi
%define target_ptr_val rsi
%define ghash_poly_8b r10
%define ghash_poly_8b_temp r11
%else
%define tmp1 rcx
%define target_ptr_val rdx
%define ghash_poly_8b rdi
%define ghash_poly_8b_temp rsi
%endif
%define twtempl rax ; global temp registers used for tweak computation
%define twtemph rbx
; produce the key for the next round
; raw_key is the output of aeskeygenassist instruction
; round_key value before this key_expansion_128 macro is current round key
; round_key value after this key_expansion_128 macro is next round key
%macro key_expansion_128 3
%define %%xraw_key %1
%define %%xtmp %2
%define %%xround_key %3
pshufd %%xraw_key, %%xraw_key, 11111111b
shufps %%xtmp, %%xround_key, 00010000b
pxor %%xround_key, %%xtmp
shufps %%xtmp, %%xround_key, 10001100b
pxor %%xround_key, %%xtmp
pxor %%xround_key, %%xraw_key
%endmacro
; macro to encrypt the tweak value in parallel with key generation of both keys
%macro encrypt_T 8
%define %%xkey2 %1
%define %%xstate_tweak %2
%define %%xkey1 %3
%define %%xraw_key %4
%define %%xtmp %5
%define %%ptr_key2 %6
%define %%ptr_key1 %7
%define %%ptr_expanded_keys %8
movdqu %%xkey2, [%%ptr_key2]
movdqu %%xkey1, [%%ptr_key1]
movdqa [%%ptr_expanded_keys+16*0], %%xkey1
pxor %%xstate_tweak, %%xkey2 ; ARK for tweak encryption
aeskeygenassist %%xraw_key, %%xkey2, 0x1 ; Generating round key 1 for key2
key_expansion_128 %%xraw_key, %%xtmp, %%xkey2
aeskeygenassist %%xraw_key, %%xkey1, 0x1 ; Generating round key 1 for key1
key_expansion_128 %%xraw_key, %%xtmp, %%xkey1
aesenc %%xstate_tweak, %%xkey2 ; round 1 for tweak encryption
movdqa [%%ptr_expanded_keys+16*1], %%xkey1
aeskeygenassist %%xraw_key, %%xkey2, 0x2 ; Generating round key 2 for key2
key_expansion_128 %%xraw_key, %%xtmp, %%xkey2
aeskeygenassist %%xraw_key, %%xkey1, 0x2 ; Generating round key 2 for key1
key_expansion_128 %%xraw_key, %%xtmp, %%xkey1
aesenc %%xstate_tweak, %%xkey2 ; round 2 for tweak encryption
movdqa [%%ptr_expanded_keys+16*2], %%xkey1
aeskeygenassist %%xraw_key, %%xkey2, 0x4 ; Generating round key 3 for key2
key_expansion_128 %%xraw_key, %%xtmp, %%xkey2
aeskeygenassist %%xraw_key, %%xkey1, 0x4 ; Generating round key 3 for key1
key_expansion_128 %%xraw_key, %%xtmp, %%xkey1
aesenc %%xstate_tweak, %%xkey2 ; round 3 for tweak encryption
movdqa [%%ptr_expanded_keys + 16*3], %%xkey1
aeskeygenassist %%xraw_key, %%xkey2, 0x8 ; Generating round key 4 for key2
key_expansion_128 %%xraw_key, %%xtmp, %%xkey2
aeskeygenassist %%xraw_key, %%xkey1, 0x8 ; Generating round key 4 for key1
key_expansion_128 %%xraw_key, %%xtmp, %%xkey1
aesenc %%xstate_tweak, %%xkey2 ; round 4 for tweak encryption
movdqa [%%ptr_expanded_keys + 16*4], %%xkey1
aeskeygenassist %%xraw_key, %%xkey2, 0x10 ; Generating round key 5 for key2
key_expansion_128 %%xraw_key, %%xtmp, %%xkey2
aeskeygenassist %%xraw_key, %%xkey1, 0x10 ; Generating round key 5 for key1
key_expansion_128 %%xraw_key, %%xtmp, %%xkey1
aesenc %%xstate_tweak, %%xkey2 ; round 5 for tweak encryption
movdqa [%%ptr_expanded_keys + 16*5], %%xkey1
aeskeygenassist %%xraw_key, %%xkey2, 0x20 ; Generating round key 6 for key2
key_expansion_128 %%xraw_key, %%xtmp, %%xkey2
aeskeygenassist %%xraw_key, %%xkey1, 0x20 ; Generating round key 6 for key1
key_expansion_128 %%xraw_key, %%xtmp, %%xkey1
aesenc %%xstate_tweak, %%xkey2 ; round 6 for tweak encryption
movdqa [%%ptr_expanded_keys + 16*6], %%xkey1
aeskeygenassist %%xraw_key, %%xkey2, 0x40 ; Generating round key 7 for key2
key_expansion_128 %%xraw_key, %%xtmp, %%xkey2
aeskeygenassist %%xraw_key, %%xkey1, 0x40 ; Generating round key 7 for key1
key_expansion_128 %%xraw_key, %%xtmp, %%xkey1
aesenc %%xstate_tweak, %%xkey2 ; round 7 for tweak encryption
movdqa [%%ptr_expanded_keys + 16*7], %%xkey1
aeskeygenassist %%xraw_key, %%xkey2, 0x80 ; Generating round key 8 for key2
key_expansion_128 %%xraw_key, %%xtmp, %%xkey2
aeskeygenassist %%xraw_key, %%xkey1, 0x80 ; Generating round key 8 for key1
key_expansion_128 %%xraw_key, %%xtmp, %%xkey1
aesenc %%xstate_tweak, %%xkey2 ; round 8 for tweak encryption
movdqa [%%ptr_expanded_keys + 16*8], %%xkey1
aeskeygenassist %%xraw_key, %%xkey2, 0x1b ; Generating round key 9 for key2
key_expansion_128 %%xraw_key, %%xtmp, %%xkey2
aeskeygenassist %%xraw_key, %%xkey1, 0x1b ; Generating round key 9 for key1
key_expansion_128 %%xraw_key, %%xtmp, %%xkey1
aesenc %%xstate_tweak, %%xkey2 ; round 9 for tweak encryption
movdqa [%%ptr_expanded_keys + 16*9], %%xkey1
aeskeygenassist %%xraw_key, %%xkey2, 0x36 ; Generating round key 10 for key2
key_expansion_128 %%xraw_key, %%xtmp, %%xkey2
aeskeygenassist %%xraw_key, %%xkey1, 0x36 ; Generating round key 10 for key1
key_expansion_128 %%xraw_key, %%xtmp, %%xkey1
aesenclast %%xstate_tweak, %%xkey2 ; round 10 for tweak encryption
movdqa [%%ptr_expanded_keys + 16*10], %%xkey1
movdqa [TW], %%xstate_tweak ; Store the encrypted Tweak value
%endmacro
; generate initial tweak values
; load initial plaintext values
%macro initialize 16
%define %%ST1 %1 ; state 1
%define %%ST2 %2 ; state 2
%define %%ST3 %3 ; state 3
%define %%ST4 %4 ; state 4
%define %%ST5 %5 ; state 5
%define %%ST6 %6 ; state 6
%define %%ST7 %7 ; state 7
%define %%ST8 %8 ; state 8
%define %%TW1 %9 ; tweak 1
%define %%TW2 %10 ; tweak 2
%define %%TW3 %11 ; tweak 3
%define %%TW4 %12 ; tweak 4
%define %%TW5 %13 ; tweak 5
%define %%TW6 %14 ; tweak 6
%define %%TW7 %15 ; tweak 7
%define %%num_initial_blocks %16
; generate next Tweak values
movdqa %%TW1, [TW+16*0]
mov twtempl, [TW+8*0]
mov twtemph, [TW+8*1]
movdqu %%ST1, [ptr_plaintext+16*0]
%if (%%num_initial_blocks>=2)
xor ghash_poly_8b_temp, ghash_poly_8b_temp
shl twtempl, 1
adc twtemph, twtemph
cmovc ghash_poly_8b_temp, ghash_poly_8b
xor twtempl, ghash_poly_8b_temp
mov [TW+8*2], twtempl
mov [TW+8*3], twtemph;
movdqa %%TW2, [TW+16*1]
movdqu %%ST2, [ptr_plaintext+16*1]
%endif
%if (%%num_initial_blocks>=3)
xor ghash_poly_8b_temp, ghash_poly_8b_temp
shl twtempl, 1
adc twtemph, twtemph
cmovc ghash_poly_8b_temp, ghash_poly_8b
xor twtempl, ghash_poly_8b_temp
mov [TW+8*4], twtempl
mov [TW+8*5], twtemph;
movdqa %%TW3, [TW+16*2]
movdqu %%ST3, [ptr_plaintext+16*2]
%endif
%if (%%num_initial_blocks>=4)
xor ghash_poly_8b_temp, ghash_poly_8b_temp
shl twtempl, 1
adc twtemph, twtemph
cmovc ghash_poly_8b_temp, ghash_poly_8b
xor twtempl, ghash_poly_8b_temp
mov [TW+8*6], twtempl
mov [TW+8*7], twtemph;
movdqa %%TW4, [TW+16*3]
movdqu %%ST4, [ptr_plaintext+16*3]
%endif
%if (%%num_initial_blocks>=5)
xor ghash_poly_8b_temp, ghash_poly_8b_temp
shl twtempl, 1
adc twtemph, twtemph
cmovc ghash_poly_8b_temp, ghash_poly_8b
xor twtempl, ghash_poly_8b_temp
mov [TW+8*8], twtempl
mov [TW+8*9], twtemph;
movdqa %%TW5, [TW+16*4]
movdqu %%ST5, [ptr_plaintext+16*4]
%endif
%if (%%num_initial_blocks>=6)
xor ghash_poly_8b_temp, ghash_poly_8b_temp
shl twtempl, 1
adc twtemph, twtemph
cmovc ghash_poly_8b_temp, ghash_poly_8b
xor twtempl, ghash_poly_8b_temp
mov [TW+8*10], twtempl
mov [TW+8*11], twtemph;
movdqa %%TW6, [TW+16*5]
movdqu %%ST6, [ptr_plaintext+16*5]
%endif
%if (%%num_initial_blocks>=7)
xor ghash_poly_8b_temp, ghash_poly_8b_temp
shl twtempl, 1
adc twtemph, twtemph
cmovc ghash_poly_8b_temp, ghash_poly_8b
xor twtempl, ghash_poly_8b_temp
mov [TW+8*12], twtempl
mov [TW+8*13], twtemph;
movdqa %%TW7, [TW+16*6]
movdqu %%ST7, [ptr_plaintext+16*6]
%endif
%endmacro
; encrypt initial blocks of AES
; 1, 2, 3, 4, 5, 6 or 7 blocks are encrypted
; next 8 Tweak values are generated
%macro encrypt_initial 18
%define %%ST1 %1 ; state 1
%define %%ST2 %2 ; state 2
%define %%ST3 %3 ; state 3
%define %%ST4 %4 ; state 4
%define %%ST5 %5 ; state 5
%define %%ST6 %6 ; state 6
%define %%ST7 %7 ; state 7
%define %%ST8 %8 ; state 8
%define %%TW1 %9 ; tweak 1
%define %%TW2 %10 ; tweak 2
%define %%TW3 %11 ; tweak 3
%define %%TW4 %12 ; tweak 4
%define %%TW5 %13 ; tweak 5
%define %%TW6 %14 ; tweak 6
%define %%TW7 %15 ; tweak 7
%define %%T0 %16 ; Temp register
%define %%num_blocks %17
; %%num_blocks blocks encrypted
; %%num_blocks can be 1, 2, 3, 4, 5, 6, 7
%define %%lt128 %18 ; less than 128 bytes
; xor Tweak value
pxor %%ST1, %%TW1
%if (%%num_blocks>=2)
pxor %%ST2, %%TW2
%endif
%if (%%num_blocks>=3)
pxor %%ST3, %%TW3
%endif
%if (%%num_blocks>=4)
pxor %%ST4, %%TW4
%endif
%if (%%num_blocks>=5)
pxor %%ST5, %%TW5
%endif
%if (%%num_blocks>=6)
pxor %%ST6, %%TW6
%endif
%if (%%num_blocks>=7)
pxor %%ST7, %%TW7
%endif
; ARK
movdqa %%T0, [keys]
pxor %%ST1, %%T0
%if (%%num_blocks>=2)
pxor %%ST2, %%T0
%endif
%if (%%num_blocks>=3)
pxor %%ST3, %%T0
%endif
%if (%%num_blocks>=4)
pxor %%ST4, %%T0
%endif
%if (%%num_blocks>=5)
pxor %%ST5, %%T0
%endif
%if (%%num_blocks>=6)
pxor %%ST6, %%T0
%endif
%if (%%num_blocks>=7)
pxor %%ST7, %%T0
%endif
%if (0 == %%lt128)
xor ghash_poly_8b_temp, ghash_poly_8b_temp
shl twtempl, 1
adc twtemph, twtemph
%endif
; round 1
movdqa %%T0, [keys + 16*1]
aesenc %%ST1, %%T0
%if (%%num_blocks>=2)
aesenc %%ST2, %%T0
%endif
%if (%%num_blocks>=3)
aesenc %%ST3, %%T0
%endif
%if (%%num_blocks>=4)
aesenc %%ST4, %%T0
%endif
%if (%%num_blocks>=5)
aesenc %%ST5, %%T0
%endif
%if (%%num_blocks>=6)
aesenc %%ST6, %%T0
%endif
%if (%%num_blocks>=7)
aesenc %%ST7, %%T0
%endif
%if (0 == %%lt128)
cmovc ghash_poly_8b_temp, ghash_poly_8b
xor twtempl, ghash_poly_8b_temp
mov [TW + 8*0], twtempl ; next Tweak1 generated
mov [TW + 8*1], twtemph
xor ghash_poly_8b_temp, ghash_poly_8b_temp
%endif
; round 2
movdqa %%T0, [keys + 16*2]
aesenc %%ST1, %%T0
%if (%%num_blocks>=2)
aesenc %%ST2, %%T0
%endif
%if (%%num_blocks>=3)
aesenc %%ST3, %%T0
%endif
%if (%%num_blocks>=4)
aesenc %%ST4, %%T0
%endif
%if (%%num_blocks>=5)
aesenc %%ST5, %%T0
%endif
%if (%%num_blocks>=6)
aesenc %%ST6, %%T0
%endif
%if (%%num_blocks>=7)
aesenc %%ST7, %%T0
%endif
%if (0 == %%lt128)
shl twtempl, 1
adc twtemph, twtemph
cmovc ghash_poly_8b_temp, ghash_poly_8b
xor twtempl, ghash_poly_8b_temp
mov [TW + 8*2], twtempl ; next Tweak2 generated
%endif
; round 3
movdqa %%T0, [keys + 16*3]
aesenc %%ST1, %%T0
%if (%%num_blocks>=2)
aesenc %%ST2, %%T0
%endif
%if (%%num_blocks>=3)
aesenc %%ST3, %%T0
%endif
%if (%%num_blocks>=4)
aesenc %%ST4, %%T0
%endif
%if (%%num_blocks>=5)
aesenc %%ST5, %%T0
%endif
%if (%%num_blocks>=6)
aesenc %%ST6, %%T0
%endif
%if (%%num_blocks>=7)
aesenc %%ST7, %%T0
%endif
%if (0 == %%lt128)
mov [TW + 8*3], twtemph
xor ghash_poly_8b_temp, ghash_poly_8b_temp
shl twtempl, 1
adc twtemph, twtemph
cmovc ghash_poly_8b_temp, ghash_poly_8b
%endif
; round 4
movdqa %%T0, [keys + 16*4]
aesenc %%ST1, %%T0
%if (%%num_blocks>=2)
aesenc %%ST2, %%T0
%endif
%if (%%num_blocks>=3)
aesenc %%ST3, %%T0
%endif
%if (%%num_blocks>=4)
aesenc %%ST4, %%T0
%endif
%if (%%num_blocks>=5)
aesenc %%ST5, %%T0
%endif
%if (%%num_blocks>=6)
aesenc %%ST6, %%T0
%endif
%if (%%num_blocks>=7)
aesenc %%ST7, %%T0
%endif
%if (0 == %%lt128)
xor twtempl, ghash_poly_8b_temp
mov [TW + 8*4], twtempl ; next Tweak3 generated
mov [TW + 8*5], twtemph
xor ghash_poly_8b_temp, ghash_poly_8b_temp
shl twtempl, 1
%endif
; round 5
movdqa %%T0, [keys + 16*5]
aesenc %%ST1, %%T0
%if (%%num_blocks>=2)
aesenc %%ST2, %%T0
%endif
%if (%%num_blocks>=3)
aesenc %%ST3, %%T0
%endif
%if (%%num_blocks>=4)
aesenc %%ST4, %%T0
%endif
%if (%%num_blocks>=5)
aesenc %%ST5, %%T0
%endif
%if (%%num_blocks>=6)
aesenc %%ST6, %%T0
%endif
%if (%%num_blocks>=7)
aesenc %%ST7, %%T0
%endif
%if (0 == %%lt128)
adc twtemph, twtemph
cmovc ghash_poly_8b_temp, ghash_poly_8b
xor twtempl, ghash_poly_8b_temp
mov [TW + 8*6], twtempl ; next Tweak4 generated
mov [TW + 8*7], twtemph
%endif
; round 6
movdqa %%T0, [keys + 16*6]
aesenc %%ST1, %%T0
%if (%%num_blocks>=2)
aesenc %%ST2, %%T0
%endif
%if (%%num_blocks>=3)
aesenc %%ST3, %%T0
%endif
%if (%%num_blocks>=4)
aesenc %%ST4, %%T0
%endif
%if (%%num_blocks>=5)
aesenc %%ST5, %%T0
%endif
%if (%%num_blocks>=6)
aesenc %%ST6, %%T0
%endif
%if (%%num_blocks>=7)
aesenc %%ST7, %%T0
%endif
%if (0 == %%lt128)
xor ghash_poly_8b_temp, ghash_poly_8b_temp
shl twtempl, 1
adc twtemph, twtemph
cmovc ghash_poly_8b_temp, ghash_poly_8b
xor twtempl, ghash_poly_8b_temp
mov [TW + 8*8], twtempl ; next Tweak5 generated
mov [TW + 8*9], twtemph
%endif
; round 7
movdqa %%T0, [keys + 16*7]
aesenc %%ST1, %%T0
%if (%%num_blocks>=2)
aesenc %%ST2, %%T0
%endif
%if (%%num_blocks>=3)
aesenc %%ST3, %%T0
%endif
%if (%%num_blocks>=4)
aesenc %%ST4, %%T0
%endif
%if (%%num_blocks>=5)
aesenc %%ST5, %%T0
%endif
%if (%%num_blocks>=6)
aesenc %%ST6, %%T0
%endif
%if (%%num_blocks>=7)
aesenc %%ST7, %%T0
%endif
%if (0 == %%lt128)
xor ghash_poly_8b_temp, ghash_poly_8b_temp
shl twtempl, 1
adc twtemph, twtemph
cmovc ghash_poly_8b_temp, ghash_poly_8b
xor twtempl, ghash_poly_8b_temp
mov [TW + 8*10], twtempl ; next Tweak6 generated
mov [TW + 8*11], twtemph
%endif
; round 8
movdqa %%T0, [keys + 16*8]
aesenc %%ST1, %%T0
%if (%%num_blocks>=2)
aesenc %%ST2, %%T0
%endif
%if (%%num_blocks>=3)
aesenc %%ST3, %%T0
%endif
%if (%%num_blocks>=4)
aesenc %%ST4, %%T0
%endif
%if (%%num_blocks>=5)
aesenc %%ST5, %%T0
%endif
%if (%%num_blocks>=6)
aesenc %%ST6, %%T0
%endif
%if (%%num_blocks>=7)
aesenc %%ST7, %%T0
%endif
%if (0 == %%lt128)
xor ghash_poly_8b_temp, ghash_poly_8b_temp
shl twtempl, 1
adc twtemph, twtemph
cmovc ghash_poly_8b_temp, ghash_poly_8b
xor twtempl, ghash_poly_8b_temp
mov [TW + 8*12], twtempl ; next Tweak7 generated
mov [TW + 8*13], twtemph
%endif
; round 9
movdqa %%T0, [keys + 16*9]
aesenc %%ST1, %%T0
%if (%%num_blocks>=2)
aesenc %%ST2, %%T0
%endif
%if (%%num_blocks>=3)
aesenc %%ST3, %%T0
%endif
%if (%%num_blocks>=4)
aesenc %%ST4, %%T0
%endif
%if (%%num_blocks>=5)
aesenc %%ST5, %%T0
%endif
%if (%%num_blocks>=6)
aesenc %%ST6, %%T0
%endif
%if (%%num_blocks>=7)
aesenc %%ST7, %%T0
%endif
%if (0 == %%lt128)
xor ghash_poly_8b_temp, ghash_poly_8b_temp
shl twtempl, 1
adc twtemph, twtemph
cmovc ghash_poly_8b_temp, ghash_poly_8b
xor twtempl, ghash_poly_8b_temp
mov [TW + 8*14], twtempl ; next Tweak8 generated
mov [TW + 8*15], twtemph
%endif
; round 10
movdqa %%T0, [keys + 16*10]
aesenclast %%ST1, %%T0
%if (%%num_blocks>=2)
aesenclast %%ST2, %%T0
%endif
%if (%%num_blocks>=3)
aesenclast %%ST3, %%T0
%endif
%if (%%num_blocks>=4)
aesenclast %%ST4, %%T0
%endif
%if (%%num_blocks>=5)
aesenclast %%ST5, %%T0
%endif
%if (%%num_blocks>=6)
aesenclast %%ST6, %%T0
%endif
%if (%%num_blocks>=7)
aesenclast %%ST7, %%T0
%endif
; xor Tweak values
pxor %%ST1, %%TW1
%if (%%num_blocks>=2)
pxor %%ST2, %%TW2
%endif
%if (%%num_blocks>=3)
pxor %%ST3, %%TW3
%endif
%if (%%num_blocks>=4)
pxor %%ST4, %%TW4
%endif
%if (%%num_blocks>=5)
pxor %%ST5, %%TW5
%endif
%if (%%num_blocks>=6)
pxor %%ST6, %%TW6
%endif
%if (%%num_blocks>=7)
pxor %%ST7, %%TW7
%endif
%if (0 == %%lt128)
; load next Tweak values
movdqa %%TW1, [TW + 16*0]
movdqa %%TW2, [TW + 16*1]
movdqa %%TW3, [TW + 16*2]
movdqa %%TW4, [TW + 16*3]
movdqa %%TW5, [TW + 16*4]
movdqa %%TW6, [TW + 16*5]
movdqa %%TW7, [TW + 16*6]
%endif
%endmacro
; Encrypt 8 blocks in parallel
; generate next 8 tweak values
%macro encrypt_by_eight 18
%define %%ST1 %1 ; state 1
%define %%ST2 %2 ; state 2
%define %%ST3 %3 ; state 3
%define %%ST4 %4 ; state 4
%define %%ST5 %5 ; state 5
%define %%ST6 %6 ; state 6
%define %%ST7 %7 ; state 7
%define %%ST8 %8 ; state 8
%define %%TW1 %9 ; tweak 1
%define %%TW2 %10 ; tweak 2
%define %%TW3 %11 ; tweak 3
%define %%TW4 %12 ; tweak 4
%define %%TW5 %13 ; tweak 5
%define %%TW6 %14 ; tweak 6
%define %%TW7 %15 ; tweak 7
%define %%TW8 %16 ; tweak 8
%define %%T0 %17 ; Temp register
%define %%last_eight %18
; xor Tweak values
pxor %%ST1, %%TW1
pxor %%ST2, %%TW2
pxor %%ST3, %%TW3
pxor %%ST4, %%TW4
pxor %%ST5, %%TW5
pxor %%ST6, %%TW6
pxor %%ST7, %%TW7
pxor %%ST8, %%TW8
; ARK
movdqa %%T0, [keys]
pxor %%ST1, %%T0
pxor %%ST2, %%T0
pxor %%ST3, %%T0
pxor %%ST4, %%T0
pxor %%ST5, %%T0
pxor %%ST6, %%T0
pxor %%ST7, %%T0
pxor %%ST8, %%T0
%if (0 == %%last_eight)
xor ghash_poly_8b_temp, ghash_poly_8b_temp
shl twtempl, 1
adc twtemph, twtemph
cmovc ghash_poly_8b_temp, ghash_poly_8b
%endif
; round 1
movdqa %%T0, [keys + 16*1]
aesenc %%ST1, %%T0
aesenc %%ST2, %%T0
aesenc %%ST3, %%T0
aesenc %%ST4, %%T0
aesenc %%ST5, %%T0
aesenc %%ST6, %%T0
aesenc %%ST7, %%T0
aesenc %%ST8, %%T0
%if (0 == %%last_eight)
xor twtempl, ghash_poly_8b_temp
mov [TW + 8*0], twtempl
mov [TW + 8*1], twtemph
xor ghash_poly_8b_temp, ghash_poly_8b_temp
%endif
; round 2
movdqa %%T0, [keys + 16*2]
aesenc %%ST1, %%T0
aesenc %%ST2, %%T0
aesenc %%ST3, %%T0
aesenc %%ST4, %%T0
aesenc %%ST5, %%T0
aesenc %%ST6, %%T0
aesenc %%ST7, %%T0
aesenc %%ST8, %%T0
%if (0 == %%last_eight)
shl twtempl, 1
adc twtemph, twtemph
cmovc ghash_poly_8b_temp, ghash_poly_8b
xor twtempl, ghash_poly_8b_temp
%endif
; round 3
movdqa %%T0, [keys + 16*3]
aesenc %%ST1, %%T0
aesenc %%ST2, %%T0
aesenc %%ST3, %%T0
aesenc %%ST4, %%T0
aesenc %%ST5, %%T0
aesenc %%ST6, %%T0
aesenc %%ST7, %%T0
aesenc %%ST8, %%T0
%if (0 == %%last_eight)
mov [TW + 8*2], twtempl
mov [TW + 8*3], twtemph
xor ghash_poly_8b_temp, ghash_poly_8b_temp
shl twtempl, 1
%endif
; round 4
movdqa %%T0, [keys + 16*4]
aesenc %%ST1, %%T0
aesenc %%ST2, %%T0
aesenc %%ST3, %%T0
aesenc %%ST4, %%T0
aesenc %%ST5, %%T0
aesenc %%ST6, %%T0
aesenc %%ST7, %%T0
aesenc %%ST8, %%T0
%if (0 == %%last_eight)
adc twtemph, twtemph
cmovc ghash_poly_8b_temp, ghash_poly_8b
xor twtempl, ghash_poly_8b_temp
mov [TW + 8*4], twtempl
%endif
; round 5
movdqa %%T0, [keys + 16*5]
aesenc %%ST1, %%T0
aesenc %%ST2, %%T0
aesenc %%ST3, %%T0
aesenc %%ST4, %%T0
aesenc %%ST5, %%T0
aesenc %%ST6, %%T0
aesenc %%ST7, %%T0
aesenc %%ST8, %%T0
%if (0 == %%last_eight)
mov [TW + 8*5], twtemph
xor ghash_poly_8b_temp, ghash_poly_8b_temp
shl twtempl, 1
adc twtemph, twtemph
%endif
; round 6
movdqa %%T0, [keys + 16*6]
aesenc %%ST1, %%T0
aesenc %%ST2, %%T0
aesenc %%ST3, %%T0
aesenc %%ST4, %%T0
aesenc %%ST5, %%T0
aesenc %%ST6, %%T0
aesenc %%ST7, %%T0
aesenc %%ST8, %%T0
%if (0 == %%last_eight)
cmovc ghash_poly_8b_temp, ghash_poly_8b
xor twtempl, ghash_poly_8b_temp
mov [TW + 8*6], twtempl
mov [TW + 8*7], twtemph
%endif
; round 7
movdqa %%T0, [keys + 16*7]
aesenc %%ST1, %%T0
aesenc %%ST2, %%T0
aesenc %%ST3, %%T0
aesenc %%ST4, %%T0
aesenc %%ST5, %%T0
aesenc %%ST6, %%T0
aesenc %%ST7, %%T0
aesenc %%ST8, %%T0
%if (0 == %%last_eight)
xor ghash_poly_8b_temp, ghash_poly_8b_temp
shl twtempl, 1
adc twtemph, twtemph
cmovc ghash_poly_8b_temp, ghash_poly_8b
%endif
; round 8
movdqa %%T0, [keys + 16*8]
aesenc %%ST1, %%T0
aesenc %%ST2, %%T0
aesenc %%ST3, %%T0
aesenc %%ST4, %%T0
aesenc %%ST5, %%T0
aesenc %%ST6, %%T0
aesenc %%ST7, %%T0
aesenc %%ST8, %%T0
%if (0 == %%last_eight)
xor twtempl, ghash_poly_8b_temp
mov [TW + 8*8], twtempl
mov [TW + 8*9], twtemph
xor ghash_poly_8b_temp, ghash_poly_8b_temp
%endif
; round 9
movdqa %%T0, [keys + 16*9]
aesenc %%ST1, %%T0
aesenc %%ST2, %%T0
aesenc %%ST3, %%T0
aesenc %%ST4, %%T0
aesenc %%ST5, %%T0
aesenc %%ST6, %%T0
aesenc %%ST7, %%T0
aesenc %%ST8, %%T0
%if (0 == %%last_eight)
shl twtempl, 1
adc twtemph, twtemph
cmovc ghash_poly_8b_temp, ghash_poly_8b
xor twtempl, ghash_poly_8b_temp
%endif
%if (0 == %%last_eight)
mov [TW + 8*10], twtempl
mov [TW + 8*11], twtemph
xor ghash_poly_8b_temp, ghash_poly_8b_temp
shl twtempl, 1
%endif
%if (0 == %%last_eight)
adc twtemph, twtemph
cmovc ghash_poly_8b_temp, ghash_poly_8b
xor twtempl, ghash_poly_8b_temp
mov [TW + 8*12], twtempl
%endif
%if (0 == %%last_eight)
mov [TW + 8*13], twtemph
xor ghash_poly_8b_temp, ghash_poly_8b_temp
shl twtempl, 1
adc twtemph, twtemph
%endif
%if (0 == %%last_eight)
cmovc ghash_poly_8b_temp, ghash_poly_8b
xor twtempl, ghash_poly_8b_temp
; mov [TW + 8*14], twtempl
; mov [TW + 8*15], twtemph
%endif
; round 10
movdqa %%T0, [keys + 16*10]
aesenclast %%ST1, %%T0
aesenclast %%ST2, %%T0
aesenclast %%ST3, %%T0
aesenclast %%ST4, %%T0
aesenclast %%ST5, %%T0
aesenclast %%ST6, %%T0
aesenclast %%ST7, %%T0
aesenclast %%ST8, %%T0
; xor Tweak values
pxor %%ST1, %%TW1
pxor %%ST2, %%TW2
pxor %%ST3, %%TW3
pxor %%ST4, %%TW4
pxor %%ST5, %%TW5
pxor %%ST6, %%TW6
pxor %%ST7, %%TW7
pxor %%ST8, %%TW8
mov [TW + 8*14], twtempl
mov [TW + 8*15], twtemph
; load next Tweak values
movdqa %%TW1, [TW + 16*0]
movdqa %%TW2, [TW + 16*1]
movdqa %%TW3, [TW + 16*2]
movdqa %%TW4, [TW + 16*3]
movdqa %%TW5, [TW + 16*4]
movdqa %%TW6, [TW + 16*5]
movdqa %%TW7, [TW + 16*6]
%endmacro
section .text
global XTS_AES_128_enc_sse:function
XTS_AES_128_enc_sse:
sub rsp, VARIABLE_OFFSET
mov [_gpr + 8*0], rbx
%ifidn __OUTPUT_FORMAT__, win64
mov [_gpr + 8*1], rdi
mov [_gpr + 8*2], rsi
movdqa [_xmm + 16*0], xmm6
movdqa [_xmm + 16*1], xmm7
movdqa [_xmm + 16*2], xmm8
movdqa [_xmm + 16*3], xmm9
movdqa [_xmm + 16*4], xmm10
movdqa [_xmm + 16*5], xmm11
movdqa [_xmm + 16*6], xmm12
movdqa [_xmm + 16*7], xmm13
movdqa [_xmm + 16*8], xmm14
movdqa [_xmm + 16*9], xmm15
%endif
mov ghash_poly_8b, GHASH_POLY ; load 0x87 to ghash_poly_8b
movdqu xmm1, [T_val] ; read initial Tweak value
pxor xmm4, xmm4 ; for key expansion
encrypt_T xmm0, xmm1, xmm2, xmm3, xmm4, ptr_key2, ptr_key1, keys
%ifidn __OUTPUT_FORMAT__, win64
mov ptr_plaintext, [rsp + VARIABLE_OFFSET + 8*5] ; plaintext pointer
mov ptr_ciphertext, [rsp + VARIABLE_OFFSET + 8*6] ; ciphertext pointer
%endif
mov target_ptr_val, N_val
and target_ptr_val, -16 ; target_ptr_val = target_ptr_val - (target_ptr_val mod 16)
sub target_ptr_val, 128 ; adjust target_ptr_val because last 4 blocks will not be stitched with Tweak calculations
jl _less_than_128_bytes
add target_ptr_val, ptr_ciphertext
mov tmp1, N_val
and tmp1, (7 << 4)
jz _initial_num_blocks_is_0
cmp tmp1, (4 << 4)
je _initial_num_blocks_is_4
cmp tmp1, (6 << 4)
je _initial_num_blocks_is_6
cmp tmp1, (5 << 4)
je _initial_num_blocks_is_5
cmp tmp1, (3 << 4)
je _initial_num_blocks_is_3
cmp tmp1, (2 << 4)
je _initial_num_blocks_is_2
cmp tmp1, (1 << 4)
je _initial_num_blocks_is_1
_initial_num_blocks_is_7:
initialize xmm1, xmm2, xmm3, xmm4, xmm5, xmm6, xmm7, xmm8, xmm9, xmm10, xmm11, xmm12, xmm13, xmm14, xmm15, 7
add ptr_plaintext, 16*7
encrypt_initial xmm1, xmm2, xmm3, xmm4, xmm5, xmm6, xmm7, xmm8, xmm9, xmm10, xmm11, xmm12, xmm13, xmm14, xmm15, xmm0, 7, 0
; store ciphertext
movdqu [ptr_ciphertext+16*0], xmm1
movdqu [ptr_ciphertext+16*1], xmm2
movdqu [ptr_ciphertext+16*2], xmm3
movdqu [ptr_ciphertext+16*3], xmm4
movdqu [ptr_ciphertext+16*4], xmm5
movdqu [ptr_ciphertext+16*5], xmm6
movdqu [ptr_ciphertext+16*6], xmm7
add ptr_ciphertext, 16*7
cmp ptr_ciphertext, target_ptr_val
je _last_eight
jmp _main_loop
_initial_num_blocks_is_6:
initialize xmm1, xmm2, xmm3, xmm4, xmm5, xmm6, xmm7, xmm8, xmm9, xmm10, xmm11, xmm12, xmm13, xmm14, xmm15, 6
add ptr_plaintext, 16*6
encrypt_initial xmm1, xmm2, xmm3, xmm4, xmm5, xmm6, xmm7, xmm8, xmm9, xmm10, xmm11, xmm12, xmm13, xmm14, xmm15, xmm0, 6, 0
; store ciphertext
movdqu [ptr_ciphertext+16*0], xmm1
movdqu [ptr_ciphertext+16*1], xmm2
movdqu [ptr_ciphertext+16*2], xmm3
movdqu [ptr_ciphertext+16*3], xmm4
movdqu [ptr_ciphertext+16*4], xmm5
movdqu [ptr_ciphertext+16*5], xmm6
add ptr_ciphertext, 16*6
cmp ptr_ciphertext, target_ptr_val
je _last_eight
jmp _main_loop
_initial_num_blocks_is_5:
initialize xmm1, xmm2, xmm3, xmm4, xmm5, xmm6, xmm7, xmm8, xmm9, xmm10, xmm11, xmm12, xmm13, xmm14, xmm15, 5
add ptr_plaintext, 16*5
encrypt_initial xmm1, xmm2, xmm3, xmm4, xmm5, xmm6, xmm7, xmm8, xmm9, xmm10, xmm11, xmm12, xmm13, xmm14, xmm15, xmm0, 5, 0
; store ciphertext
movdqu [ptr_ciphertext+16*0], xmm1
movdqu [ptr_ciphertext+16*1], xmm2
movdqu [ptr_ciphertext+16*2], xmm3
movdqu [ptr_ciphertext+16*3], xmm4
movdqu [ptr_ciphertext+16*4], xmm5
add ptr_ciphertext, 16*5
cmp ptr_ciphertext, target_ptr_val
je _last_eight
jmp _main_loop
_initial_num_blocks_is_4:
initialize xmm1, xmm2, xmm3, xmm4, xmm5, xmm6, xmm7, xmm8, xmm9, xmm10, xmm11, xmm12, xmm13, xmm14, xmm15, 4
add ptr_plaintext, 16*4
encrypt_initial xmm1, xmm2, xmm3, xmm4, xmm5, xmm6, xmm7, xmm8, xmm9, xmm10, xmm11, xmm12, xmm13, xmm14, xmm15, xmm0, 4, 0
; store ciphertext
movdqu [ptr_ciphertext+16*0], xmm1
movdqu [ptr_ciphertext+16*1], xmm2
movdqu [ptr_ciphertext+16*2], xmm3
movdqu [ptr_ciphertext+16*3], xmm4
add ptr_ciphertext, 16*4
cmp ptr_ciphertext, target_ptr_val
je _last_eight
jmp _main_loop
_initial_num_blocks_is_3:
initialize xmm1, xmm2, xmm3, xmm4, xmm5, xmm6, xmm7, xmm8, xmm9, xmm10, xmm11, xmm12, xmm13, xmm14, xmm15, 3
add ptr_plaintext, 16*3
encrypt_initial xmm1, xmm2, xmm3, xmm4, xmm5, xmm6, xmm7, xmm8, xmm9, xmm10, xmm11, xmm12, xmm13, xmm14, xmm15, xmm0, 3, 0
; store ciphertext
movdqu [ptr_ciphertext+16*0], xmm1
movdqu [ptr_ciphertext+16*1], xmm2
movdqu [ptr_ciphertext+16*2], xmm3
add ptr_ciphertext, 16*3
cmp ptr_ciphertext, target_ptr_val
je _last_eight
jmp _main_loop
_initial_num_blocks_is_2:
initialize xmm1, xmm2, xmm3, xmm4, xmm5, xmm6, xmm7, xmm8, xmm9, xmm10, xmm11, xmm12, xmm13, xmm14, xmm15, 2
add ptr_plaintext, 16*2
encrypt_initial xmm1, xmm2, xmm3, xmm4, xmm5, xmm6, xmm7, xmm8, xmm9, xmm10, xmm11, xmm12, xmm13, xmm14, xmm15, xmm0, 2, 0
; store ciphertext
movdqu [ptr_ciphertext], xmm1
movdqu [ptr_ciphertext+16], xmm2
add ptr_ciphertext, 16*2
cmp ptr_ciphertext, target_ptr_val
je _last_eight
jmp _main_loop
_initial_num_blocks_is_1:
initialize xmm1, xmm2, xmm3, xmm4, xmm5, xmm6, xmm7, xmm8, xmm9, xmm10, xmm11, xmm12, xmm13, xmm14, xmm15, 1
add ptr_plaintext, 16*1
encrypt_initial xmm1, xmm2, xmm3, xmm4, xmm5, xmm6, xmm7, xmm8, xmm9, xmm10, xmm11, xmm12, xmm13, xmm14, xmm15, xmm0, 1, 0
; store ciphertext
movdqu [ptr_ciphertext], xmm1
add ptr_ciphertext, 16
cmp ptr_ciphertext, target_ptr_val
je _last_eight
jmp _main_loop
_initial_num_blocks_is_0:
mov twtempl, [TW+8*0]
mov twtemph, [TW+8*1]
movdqa xmm9, [TW+16*0]
xor ghash_poly_8b_temp, ghash_poly_8b_temp
shl twtempl, 1
adc twtemph, twtemph
cmovc ghash_poly_8b_temp, ghash_poly_8b
xor twtempl, ghash_poly_8b_temp
mov [TW+8*2], twtempl
mov [TW+8*3], twtemph
movdqa xmm10, [TW+16*1]
xor ghash_poly_8b_temp, ghash_poly_8b_temp
shl twtempl, 1
adc twtemph, twtemph
cmovc ghash_poly_8b_temp, ghash_poly_8b
xor twtempl, ghash_poly_8b_temp
mov [TW+8*4], twtempl
mov [TW+8*5], twtemph
movdqa xmm11, [TW+16*2]
xor ghash_poly_8b_temp, ghash_poly_8b_temp
shl twtempl, 1
adc twtemph, twtemph
cmovc ghash_poly_8b_temp, ghash_poly_8b
xor twtempl, ghash_poly_8b_temp
mov [TW+8*6], twtempl
mov [TW+8*7], twtemph
movdqa xmm12, [TW+16*3]
xor ghash_poly_8b_temp, ghash_poly_8b_temp
shl twtempl, 1
adc twtemph, twtemph
cmovc ghash_poly_8b_temp, ghash_poly_8b
xor twtempl, ghash_poly_8b_temp
mov [TW+8*8], twtempl
mov [TW+8*9], twtemph
movdqa xmm13, [TW+16*4]
xor ghash_poly_8b_temp, ghash_poly_8b_temp
shl twtempl, 1
adc twtemph, twtemph
cmovc ghash_poly_8b_temp, ghash_poly_8b
xor twtempl, ghash_poly_8b_temp
mov [TW+8*10], twtempl
mov [TW+8*11], twtemph
movdqa xmm14, [TW+16*5]
xor ghash_poly_8b_temp, ghash_poly_8b_temp
shl twtempl, 1
adc twtemph, twtemph
cmovc ghash_poly_8b_temp, ghash_poly_8b
xor twtempl, ghash_poly_8b_temp
mov [TW+8*12], twtempl
mov [TW+8*13], twtemph
movdqa xmm15, [TW+16*6]
xor ghash_poly_8b_temp, ghash_poly_8b_temp
shl twtempl, 1
adc twtemph, twtemph
cmovc ghash_poly_8b_temp, ghash_poly_8b
xor twtempl, ghash_poly_8b_temp
mov [TW+8*14], twtempl
mov [TW+8*15], twtemph
;movdqa xmm16, [TW+16*7]
cmp ptr_ciphertext, target_ptr_val
je _last_eight
_main_loop:
; load plaintext
movdqu xmm1, [ptr_plaintext+16*0]
movdqu xmm2, [ptr_plaintext+16*1]
movdqu xmm3, [ptr_plaintext+16*2]
movdqu xmm4, [ptr_plaintext+16*3]
movdqu xmm5, [ptr_plaintext+16*4]
movdqu xmm6, [ptr_plaintext+16*5]
movdqu xmm7, [ptr_plaintext+16*6]
movdqu xmm8, [ptr_plaintext+16*7]
add ptr_plaintext, 128
encrypt_by_eight xmm1, xmm2, xmm3, xmm4, xmm5, xmm6, xmm7, xmm8, xmm9, xmm10, xmm11, xmm12, xmm13, xmm14, xmm15, [TW+16*7], xmm0, 0
; store ciphertext
movdqu [ptr_ciphertext+16*0], xmm1
movdqu [ptr_ciphertext+16*1], xmm2
movdqu [ptr_ciphertext+16*2], xmm3
movdqu [ptr_ciphertext+16*3], xmm4
movdqu [ptr_ciphertext+16*4], xmm5
movdqu [ptr_ciphertext+16*5], xmm6
movdqu [ptr_ciphertext+16*6], xmm7
movdqu [ptr_ciphertext+16*7], xmm8
add ptr_ciphertext, 128
cmp ptr_ciphertext, target_ptr_val
jne _main_loop
_last_eight:
; load plaintext
movdqu xmm1, [ptr_plaintext+16*0]
movdqu xmm2, [ptr_plaintext+16*1]
movdqu xmm3, [ptr_plaintext+16*2]
movdqu xmm4, [ptr_plaintext+16*3]
movdqu xmm5, [ptr_plaintext+16*4]
movdqu xmm6, [ptr_plaintext+16*5]
movdqu xmm7, [ptr_plaintext+16*6]
movdqu xmm8, [ptr_plaintext+16*7]
encrypt_by_eight xmm1, xmm2, xmm3, xmm4, xmm5, xmm6, xmm7, xmm8, xmm9, xmm10, xmm11, xmm12, xmm13, xmm14, xmm15, [TW+16*7], xmm0, 1
; store ciphertext
movdqu [ptr_ciphertext+16*0], xmm1
movdqu [ptr_ciphertext+16*1], xmm2
movdqu [ptr_ciphertext+16*2], xmm3
movdqu [ptr_ciphertext+16*3], xmm4
movdqu [ptr_ciphertext+16*4], xmm5
movdqu [ptr_ciphertext+16*5], xmm6
movdqu [ptr_ciphertext+16*6], xmm7
and N_val, 15 ; N_val = N_val mod 16
je _done
_steal_cipher:
; start cipher stealing
; generate next Tweak value
xor ghash_poly_8b_temp, ghash_poly_8b_temp
shl twtempl, 1
adc twtemph, twtemph
cmovc ghash_poly_8b_temp, ghash_poly_8b
xor twtempl, ghash_poly_8b_temp
mov [TW], twtempl
mov [TW + 8], twtemph
movdqa xmm2, xmm8
; shift xmm8 to the left by 16-N_val bytes
lea twtempl, [pshufb_shf_table]
movdqu xmm0, [twtempl+N_val]
pshufb xmm8, xmm0
movdqu xmm3, [ptr_plaintext + 112 + N_val] ; state register is temporarily xmm3 to eliminate a move
movdqu [ptr_ciphertext + 112 + N_val], xmm8
; shift xmm3 to the right by 16-N_val bytes
lea twtempl, [pshufb_shf_table +16]
sub twtempl, N_val
movdqu xmm0, [twtempl]
pxor xmm0, [mask1]
pshufb xmm3, xmm0
pblendvb xmm3, xmm2 ;xmm0 is implicit
; xor Tweak value
movdqa xmm8, [TW]
pxor xmm8, xmm3 ; state register is xmm8, instead of a move from xmm3 to xmm8, destination register of pxor instruction is swapped
;encrypt last block with cipher stealing
pxor xmm8, [keys] ; ARK
aesenc xmm8, [keys + 16*1] ; round 1
aesenc xmm8, [keys + 16*2] ; round 2
aesenc xmm8, [keys + 16*3] ; round 3
aesenc xmm8, [keys + 16*4] ; round 4
aesenc xmm8, [keys + 16*5] ; round 5
aesenc xmm8, [keys + 16*6] ; round 6
aesenc xmm8, [keys + 16*7] ; round 7
aesenc xmm8, [keys + 16*8] ; round 8
aesenc xmm8, [keys + 16*9] ; round 9
aesenclast xmm8, [keys + 16*10] ; round 10
; xor Tweak value
pxor xmm8, [TW]
_done:
; store last ciphertext value
movdqu [ptr_ciphertext+16*7], xmm8
_ret_:
mov rbx, [_gpr + 8*0]
%ifidn __OUTPUT_FORMAT__, win64
mov rdi, [_gpr + 8*1]
mov rsi, [_gpr + 8*2]
movdqa xmm6, [_xmm + 16*0]
movdqa xmm7, [_xmm + 16*1]
movdqa xmm8, [_xmm + 16*2]
movdqa xmm9, [_xmm + 16*3]
movdqa xmm10, [_xmm + 16*4]
movdqa xmm11, [_xmm + 16*5]
movdqa xmm12, [_xmm + 16*6]
movdqa xmm13, [_xmm + 16*7]
movdqa xmm14, [_xmm + 16*8]
movdqa xmm15, [_xmm + 16*9]
%endif
add rsp, VARIABLE_OFFSET
ret
_less_than_128_bytes:
cmp N_val, 16
jb _ret_
mov tmp1, N_val
and tmp1, (7 << 4)
cmp tmp1, (6 << 4)
je _num_blocks_is_6
cmp tmp1, (5 << 4)
je _num_blocks_is_5
cmp tmp1, (4 << 4)
je _num_blocks_is_4
cmp tmp1, (3 << 4)
je _num_blocks_is_3
cmp tmp1, (2 << 4)
je _num_blocks_is_2
cmp tmp1, (1 << 4)
je _num_blocks_is_1
_num_blocks_is_7:
initialize xmm1, xmm2, xmm3, xmm4, xmm5, xmm6, xmm7, xmm8, xmm9, xmm10, xmm11, xmm12, xmm13, xmm14, xmm15, 7
sub ptr_plaintext, 16*1
encrypt_initial xmm1, xmm2, xmm3, xmm4, xmm5, xmm6, xmm7, xmm8, xmm9, xmm10, xmm11, xmm12, xmm13, xmm14, xmm15, xmm0, 7, 1
; store ciphertext
movdqu [ptr_ciphertext+16*0], xmm1
movdqu [ptr_ciphertext+16*1], xmm2
movdqu [ptr_ciphertext+16*2], xmm3
movdqu [ptr_ciphertext+16*3], xmm4
movdqu [ptr_ciphertext+16*4], xmm5
movdqu [ptr_ciphertext+16*5], xmm6
sub ptr_ciphertext, 16*1
movdqa xmm8, xmm7
and N_val, 15 ; N_val = N_val mod 16
je _done
jmp _steal_cipher
_num_blocks_is_6:
initialize xmm1, xmm2, xmm3, xmm4, xmm5, xmm6, xmm7, xmm8, xmm9, xmm10, xmm11, xmm12, xmm13, xmm14, xmm15, 6
sub ptr_plaintext, 16*2
encrypt_initial xmm1, xmm2, xmm3, xmm4, xmm5, xmm6, xmm7, xmm8, xmm9, xmm10, xmm11, xmm12, xmm13, xmm14, xmm15, xmm0, 6, 1
; store ciphertext
movdqu [ptr_ciphertext+16*0], xmm1
movdqu [ptr_ciphertext+16*1], xmm2
movdqu [ptr_ciphertext+16*2], xmm3
movdqu [ptr_ciphertext+16*3], xmm4
movdqu [ptr_ciphertext+16*4], xmm5
sub ptr_ciphertext, 16*2
movdqa xmm8, xmm6
and N_val, 15 ; N_val = N_val mod 16
je _done
jmp _steal_cipher
_num_blocks_is_5:
initialize xmm1, xmm2, xmm3, xmm4, xmm5, xmm6, xmm7, xmm8, xmm9, xmm10, xmm11, xmm12, xmm13, xmm14, xmm15, 5
sub ptr_plaintext, 16*3
encrypt_initial xmm1, xmm2, xmm3, xmm4, xmm5, xmm6, xmm7, xmm8, xmm9, xmm10, xmm11, xmm12, xmm13, xmm14, xmm15, xmm0, 5, 1
; store ciphertext
movdqu [ptr_ciphertext+16*0], xmm1
movdqu [ptr_ciphertext+16*1], xmm2
movdqu [ptr_ciphertext+16*2], xmm3
movdqu [ptr_ciphertext+16*3], xmm4
sub ptr_ciphertext, 16*3
movdqa xmm8, xmm5
and N_val, 15 ; N_val = N_val mod 16
je _done
jmp _steal_cipher
_num_blocks_is_4:
initialize xmm1, xmm2, xmm3, xmm4, xmm5, xmm6, xmm7, xmm8, xmm9, xmm10, xmm11, xmm12, xmm13, xmm14, xmm15, 4
sub ptr_plaintext, 16*4
encrypt_initial xmm1, xmm2, xmm3, xmm4, xmm5, xmm6, xmm7, xmm8, xmm9, xmm10, xmm11, xmm12, xmm13, xmm14, xmm15, xmm0, 4, 1
; store ciphertext
movdqu [ptr_ciphertext+16*0], xmm1
movdqu [ptr_ciphertext+16*1], xmm2
movdqu [ptr_ciphertext+16*2], xmm3
sub ptr_ciphertext, 16*4
movdqa xmm8, xmm4
and N_val, 15 ; N_val = N_val mod 16
je _done
jmp _steal_cipher
_num_blocks_is_3:
initialize xmm1, xmm2, xmm3, xmm4, xmm5, xmm6, xmm7, xmm8, xmm9, xmm10, xmm11, xmm12, xmm13, xmm14, xmm15, 3
sub ptr_plaintext, 16*5
encrypt_initial xmm1, xmm2, xmm3, xmm4, xmm5, xmm6, xmm7, xmm8, xmm9, xmm10, xmm11, xmm12, xmm13, xmm14, xmm15, xmm0, 3, 1
; store ciphertext
movdqu [ptr_ciphertext+16*0], xmm1
movdqu [ptr_ciphertext+16*1], xmm2
sub ptr_ciphertext, 16*5
movdqa xmm8, xmm3
and N_val, 15 ; N_val = N_val mod 16
je _done
jmp _steal_cipher
_num_blocks_is_2:
initialize xmm1, xmm2, xmm3, xmm4, xmm5, xmm6, xmm7, xmm8, xmm9, xmm10, xmm11, xmm12, xmm13, xmm14, xmm15, 2
sub ptr_plaintext, 16*6
encrypt_initial xmm1, xmm2, xmm3, xmm4, xmm5, xmm6, xmm7, xmm8, xmm9, xmm10, xmm11, xmm12, xmm13, xmm14, xmm15, xmm0, 2, 1
; store ciphertext
movdqu [ptr_ciphertext], xmm1
sub ptr_ciphertext, 16*6
movdqa xmm8, xmm2
and N_val, 15 ; N_val = N_val mod 16
je _done
jmp _steal_cipher
_num_blocks_is_1:
initialize xmm1, xmm2, xmm3, xmm4, xmm5, xmm6, xmm7, xmm8, xmm9, xmm10, xmm11, xmm12, xmm13, xmm14, xmm15, 1
sub ptr_plaintext, 16*7
encrypt_initial xmm1, xmm2, xmm3, xmm4, xmm5, xmm6, xmm7, xmm8, xmm9, xmm10, xmm11, xmm12, xmm13, xmm14, xmm15, xmm0, 1, 1
; store ciphertext
sub ptr_ciphertext, 16*7
movdqa xmm8, xmm1
and N_val, 15 ; N_val = N_val mod 16
je _done
jmp _steal_cipher
section .data
align 16
pshufb_shf_table:
; use these values for shift constants for the pshufb instruction
; different alignments result in values as shown:
; dq 0x8887868584838281, 0x008f8e8d8c8b8a89 ; shl 15 (16-1) / shr1
; dq 0x8988878685848382, 0x01008f8e8d8c8b8a ; shl 14 (16-3) / shr2
; dq 0x8a89888786858483, 0x0201008f8e8d8c8b ; shl 13 (16-4) / shr3
; dq 0x8b8a898887868584, 0x030201008f8e8d8c ; shl 12 (16-4) / shr4
; dq 0x8c8b8a8988878685, 0x04030201008f8e8d ; shl 11 (16-5) / shr5
; dq 0x8d8c8b8a89888786, 0x0504030201008f8e ; shl 10 (16-6) / shr6
; dq 0x8e8d8c8b8a898887, 0x060504030201008f ; shl 9 (16-7) / shr7
; dq 0x8f8e8d8c8b8a8988, 0x0706050403020100 ; shl 8 (16-8) / shr8
; dq 0x008f8e8d8c8b8a89, 0x0807060504030201 ; shl 7 (16-9) / shr9
; dq 0x01008f8e8d8c8b8a, 0x0908070605040302 ; shl 6 (16-10) / shr10
; dq 0x0201008f8e8d8c8b, 0x0a09080706050403 ; shl 5 (16-11) / shr11
; dq 0x030201008f8e8d8c, 0x0b0a090807060504 ; shl 4 (16-12) / shr12
; dq 0x04030201008f8e8d, 0x0c0b0a0908070605 ; shl 3 (16-13) / shr13
; dq 0x0504030201008f8e, 0x0d0c0b0a09080706 ; shl 2 (16-14) / shr14
; dq 0x060504030201008f, 0x0e0d0c0b0a090807 ; shl 1 (16-15) / shr15
dq 0x8786858483828100, 0x8f8e8d8c8b8a8988
dq 0x0706050403020100, 0x000e0d0c0b0a0908
mask1:
dq 0x8080808080808080, 0x8080808080808080
|
/* **********************************************************
* Copyright (c) 2011-2015 Google, Inc. All rights reserved.
* Copyright (c) 2001-2010 VMware, Inc. All rights reserved.
* ********************************************************** */
/*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions are met:
*
* * Redistributions of source code must retain the above copyright notice,
* this list of conditions and the following disclaimer.
*
* * 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.
*
* * Neither the name of VMware, Inc. 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 VMWARE, INC. 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.
*/
/* Copyright (c) 2003-2007 Determina Corp. */
/* Copyright (c) 2001-2003 Massachusetts Institute of Technology */
/* Copyright (c) 2001 Hewlett-Packard Company */
/*
* x86_shared.asm - x86 specific assembly code for sharing.
* See comments in x86.asm on the format here.
*/
#include "../asm_defines.asm"
#include "x86_asm_defines.asm" /* PUSHGPR, POPGPR, etc. */
START_FILE
DECL_EXTERN(unexpected_return)
DECL_EXTERN(sgx_instr_syscall_dr_generic)
/* we share dynamorio_syscall w/ preload */
#ifdef UNIX
/* to avoid libc wrappers we roll our own syscall here
* hardcoded to use int 0x80 for 32-bit -- FIXME: use something like do_syscall
* and syscall for 64-bit.
* signature: dynamorio_syscall(sysnum, num_args, arg1, arg2, ...)
* For Linux, the argument max is 6.
* For MacOS, the argument max is 6 for x64 and 7 for x86.
*/
DECLARE_FUNC(dynamorio_syscall_org)
GLOBAL_LABEL(dynamorio_syscall_org:)
/* x64 kernel doesn't clobber all the callee-saved registers */
push REG_XBX /* stack now aligned for x64 */
# ifdef X64
/* reverse order so we don't clobber earlier args */
mov REG_XBX, ARG2 /* put num_args where we can reference it longer */
mov rax, ARG1 /* sysnum: only need eax, but need rax for ARG1 (or movzx) */
# ifdef MACOS
/* for now we assume a BSD syscall */
or rax, 0x2000000
# endif
cmp REG_XBX, 0
je syscall_ready
mov ARG1, ARG3
cmp REG_XBX, 1
je syscall_ready
mov ARG2, ARG4
cmp REG_XBX, 2
je syscall_ready
mov ARG3, ARG5
cmp REG_XBX, 3
je syscall_ready
mov ARG4, ARG6
cmp REG_XBX, 4
je syscall_ready
mov ARG5, [2*ARG_SZ + REG_XSP] /* arg7: above xbx and retaddr */
cmp REG_XBX, 5
je syscall_ready
mov ARG6, [3*ARG_SZ + REG_XSP] /* arg8: above arg7, xbx, retaddr */
syscall_ready:
mov r10, rcx
syscall
# else
push REG_XBP
push REG_XSI
push REG_XDI
/* add 16 to skip the 4 pushes
* XXX: rather than this dispatch, could have separate routines
* for each #args, or could just blindly read upward on the stack.
* for dispatch, if assume size of mov instr can do single ind jmp */
mov ecx, [16+ 8 + esp] /* num_args */
cmp ecx, 0
je syscall_0args
cmp ecx, 1
je syscall_1args
cmp ecx, 2
je syscall_2args
cmp ecx, 3
je syscall_3args
cmp ecx, 4
je syscall_4args
cmp ecx, 5
je syscall_5args
# ifdef MACOS
cmp ecx, 6
je syscall_6args
# ifdef INTERNAL
cmp ecx, 7
jg GLOBAL_REF(unexpected_return)
# endif
mov eax, [16+36 + esp] /* arg7 */
syscall_6args:
# elif defined(INTERNAL)
cmp ecx, 6
jg GLOBAL_REF(unexpected_return)
# endif
mov ebp, [16+32 + esp] /* arg6 */
syscall_5args:
mov edi, [16+28 + esp] /* arg5 */
syscall_4args:
mov esi, [16+24 + esp] /* arg4 */
syscall_3args:
mov edx, [16+20 + esp] /* arg3 */
syscall_2args:
mov ecx, [16+16 + esp] /* arg2 */
syscall_1args:
mov ebx, [16+12 + esp] /* arg1 */
syscall_0args:
# ifdef MACOS
push eax /* 7th arg, if any */
/* Arg size is encoded in upper bits.
* XXX: or is that only for sysenter gateway?
* We assume this is size, not count, and so for our "7 arg"
* call that's really 6 with one 64-bit we leave it.
*/
mov eax, [20+ 8 + esp] /* num_args */
shl eax, 18 /* <<16 but also *4 for size */
or eax, [20+ 4 + esp] /* sysnum */
/* args are on stack, w/ an extra slot (retaddr of syscall wrapper) */
push ebp
push edi
push esi
push edx
push ecx
push ebx /* aligned to 16 after this push */
push 0 /* extra slot (app retaddr) */
/* It simplifies our syscall calling to have a single dynamorio_syscall()
* signature that returns int64 -- but most syscalls just return a 32-bit
* value and the kernel does not clear edx. Thus we need to do so, which
* should be safe since edx is caller-saved. (Note that we do not risk
* doing this for app syscalls: only those called by DR.)
*/
mov edx, 0
# else
mov eax, [16+ 4 + esp] /* sysnum */
# endif
/* PR 254280: we assume int$80 is ok even for LOL64, maybe slow is all.
* For Mac, it's possible to do sysenter here as we can store the retaddr
* in edx ourselves (in fact see r2514 dynamorio_syscall_sysenter for an
* implementation, now removed), but we still need int for certain syscalls
* (returning 64-bit values, e.g.) so we go w/ int always and assume our
* syscall perf doesn't matter much (should be rare).
*/
int HEX(80)
# ifdef MACOS
lea esp, [8*ARG_SZ + esp] /* must not change flags */
# endif
pop REG_XDI
pop REG_XSI
pop REG_XBP
# endif /* X64 */
pop REG_XBX
/* return val is in eax for us */
/* for MacOS, it can also include edx, so be sure not to clobber that! */
# ifdef MACOS
/* convert to -errno */
jae syscall_success
neg eax
syscall_success:
# endif
ret
END_FUNC(dynamorio_syscall_org)
/* Begin: Added by Pinghai */
DECLARE_FUNC(dynamorio_syscall)
GLOBAL_LABEL(dynamorio_syscall:)
jmp sgx_instr_syscall_dr_generic
END_FUNC(dynamorio_syscall)
/* End: Added by Pinghai */
# ifdef MACOS
/* Mach dep syscall invocation.
* Signature: dynamorio_mach_dep_syscall(sysnum, num_args, arg1, arg2, ...)
* Only supports up to 4 args.
*/
DECLARE_FUNC(dynamorio_mach_dep_syscall)
GLOBAL_LABEL(dynamorio_mach_dep_syscall:)
/* x64 kernel doesn't clobber all the callee-saved registers */
push REG_XBX
# ifdef X64
/* reverse order so we don't clobber earlier args */
mov REG_XBX, ARG2 /* put num_args where we can reference it longer */
mov rax, ARG1 /* sysnum: only need eax, but need rax to use ARG1 (or movzx) */
cmp REG_XBX, 0
je mach_dep_syscall_ready
mov ARG1, ARG3
cmp REG_XBX, 1
je mach_dep_syscall_ready
mov ARG2, ARG4
cmp REG_XBX, 2
je mach_dep_syscall_ready
mov ARG3, ARG5
cmp REG_XBX, 3
je mach_dep_syscall_ready
mov ARG4, ARG6
# else
push REG_XBP
push REG_XSI
push REG_XDI
/* add 16 to skip the 4 pushes */
mov ecx, [16+ 8 + esp] /* num_args */
cmp ecx, 0
je mach_dep_syscall_0args
cmp ecx, 1
je mach_dep_syscall_1args
cmp ecx, 2
je mach_dep_syscall_2args
cmp ecx, 3
je mach_dep_syscall_3args
mov esi, [16+24 + esp] /* arg4 */
mach_dep_syscall_3args:
mov edx, [16+20 + esp] /* arg3 */
mach_dep_syscall_2args:
mov ecx, [16+16 + esp] /* arg2 */
mach_dep_syscall_1args:
mov ebx, [16+12 + esp] /* arg1 */
mach_dep_syscall_0args:
mov eax, [16+ 4 + esp] /* sysnum */
lea REG_XSP, [-2*ARG_SZ + REG_XSP] /* maintain align-16: retaddr-5th below */
/* args are on stack, w/ an extra slot (retaddr of syscall wrapper) */
push esi
push edx
push ecx
push ebx
push 0 /* extra slot */
/* clear the top half so we can always consider the result 64-bit */
mov edx, 0
# endif
/* mach dep syscalls use interrupt 0x82 */
int HEX(82)
# ifndef X64
lea esp, [7*ARG_SZ + esp] /* must not change flags */
pop REG_XDI
pop REG_XSI
pop REG_XBP
# endif
pop REG_XBX
/* return val is in eax for us */
/* for MacOS, it can also include edx, so be sure not to clobber that! */
/* convert to -errno */
jae mach_dep_syscall_success
neg eax
mach_dep_syscall_success:
ret
END_FUNC(dynamorio_mach_dep_syscall)
/* Mach syscall invocation.
* Signature: ptr_int_t dynamorio_mach_syscall(sysnum, num_args, arg1, arg2, ...)
* Only supports up to 4 args.
* Does not support returning a 64-bit value in 32-bit mode.
*/
DECLARE_FUNC(dynamorio_mach_syscall)
GLOBAL_LABEL(dynamorio_mach_syscall:)
/* x64 kernel doesn't clobber all the callee-saved registers */
push REG_XBX
# ifdef X64
/* reverse order so we don't clobber earlier args */
mov REG_XBX, ARG2 /* put num_args where we can reference it longer */
mov rax, ARG1 /* sysnum: only need eax, but need rax to use ARG1 (or movzx) */
cmp REG_XBX, 0
je dynamorio_mach_syscall_ready
mov ARG1, ARG3
cmp REG_XBX, 1
je dynamorio_mach_syscall_ready
mov ARG2, ARG4
cmp REG_XBX, 2
je dynamorio_mach_syscall_ready
mov ARG3, ARG5
cmp REG_XBX, 3
je dynamorio_mach_syscall_ready
mov ARG4, ARG6
# else
push REG_XBP
push REG_XSI
push REG_XDI
/* add 16 to skip the 4 pushes */
mov ecx, [16+ 8 + esp] /* num_args */
cmp ecx, 0
je dynamorio_mach_syscall_0args
cmp ecx, 1
je dynamorio_mach_syscall_1args
cmp ecx, 2
je dynamorio_mach_syscall_2args
cmp ecx, 3
je dynamorio_mach_syscall_3args
mov esi, [16+24 + esp] /* arg4 */
dynamorio_mach_syscall_3args:
mov edx, [16+20 + esp] /* arg3 */
dynamorio_mach_syscall_2args:
mov ecx, [16+16 + esp] /* arg2 */
dynamorio_mach_syscall_1args:
mov ebx, [16+12 + esp] /* arg1 */
dynamorio_mach_syscall_0args:
mov eax, [16+ 4 + esp] /* sysnum */
# ifdef X64
or eax, SYSCALL_NUM_MARKER_MACH
# else
/* The sysnum is passed as a negative number */
neg eax
# endif
/* args are on stack, w/ an extra slot (retaddr of syscall wrapper) */
lea REG_XSP, [-2*ARG_SZ + REG_XSP] /* maintain align-16: retaddr-5th below */
/* args are on stack, w/ an extra slot (retaddr of syscall wrapper) */
push esi
push edx
push ecx
push ebx
push 0 /* extra slot */
# endif
/* If we use ADDRTAKEN_LABEL and GLOBAL_REF we get text relocation
* complaints so we instead do this hack:
*/
call dynamorio_mach_syscall_next
dynamorio_mach_syscall_next:
pop REG_XDX
lea REG_XDX, [1/*pop*/ + 3/*lea*/ + 2/*sysenter*/ + 2/*mov*/ + REG_XDX]
mov REG_XCX, REG_XSP
/* We have to use sysenter for a Mach syscall, else we get SIGSYS.
* This implies that we can't return 64-bit in 32-bit mode.
*/
sysenter
# ifndef X64
lea esp, [7*ARG_SZ + esp] /* must not change flags */
pop REG_XDI
pop REG_XSI
pop REG_XBP
# endif
pop REG_XBX
/* Return val is in eax for us.
* Note that unlike BSD and Machdep syscalls, Mach syscalls do not
* use flags to indicate success.
*/
ret
END_FUNC(dynamorio_mach_syscall)
# endif /* MACOS */
#endif /* UNIX */
/* void dr_fpu_exception_init(void)
* sets the exception mask flags for both regular float and xmm packed float
*/
#define FUNCNAME dr_fpu_exception_init
DECLARE_FUNC(FUNCNAME)
GLOBAL_LABEL(FUNCNAME:)
fninit
push HEX(1f80)
ldmxcsr DWORD [REG_XSP]
pop REG_XAX
ret
END_FUNC(FUNCNAME)
#undef FUNCNAME
/* void get_mmx_val(OUT uint64 *val, uint index)
* Returns the value of mmx register #index in val.
*/
#define FUNCNAME get_mmx_val
DECLARE_FUNC_SEH(FUNCNAME)
GLOBAL_LABEL(FUNCNAME:)
mov REG_XAX, ARG1
mov REG_XCX, ARG2
END_PROLOG
cmp ecx, 0
je get_mmx_0
cmp ecx, 1
je get_mmx_1
cmp ecx, 2
je get_mmx_2
cmp ecx, 3
je get_mmx_3
cmp ecx, 4
je get_mmx_4
cmp ecx, 5
je get_mmx_5
cmp ecx, 6
je get_mmx_6
movq QWORD [REG_XAX], mm7
jmp get_mmx_done
get_mmx_6:
movq QWORD [REG_XAX], mm6
jmp get_mmx_done
get_mmx_5:
movq QWORD [REG_XAX], mm5
jmp get_mmx_done
get_mmx_4:
movq QWORD [REG_XAX], mm4
jmp get_mmx_done
get_mmx_3:
movq QWORD [REG_XAX], mm3
jmp get_mmx_done
get_mmx_2:
movq QWORD [REG_XAX], mm2
jmp get_mmx_done
get_mmx_1:
movq QWORD [REG_XAX], mm1
jmp get_mmx_done
get_mmx_0:
movq QWORD [REG_XAX], mm0
get_mmx_done:
add REG_XSP, 0 /* make a legal SEH64 epilog */
ret
END_FUNC(FUNCNAME)
#undef FUNCNAME
#ifdef WINDOWS /* on linux we use inline asm versions */
/* byte *get_frame_ptr(void)
* returns the value of ebp
*/
DECLARE_FUNC(get_frame_ptr)
GLOBAL_LABEL(get_frame_ptr:)
mov REG_XAX, REG_XBP
ret
END_FUNC(get_frame_ptr)
/* byte *get_stack_ptr(void)
* returns the value of xsp before the call
*/
DECLARE_FUNC(get_stack_ptr)
GLOBAL_LABEL(get_stack_ptr:)
mov REG_XAX, REG_XSP
add REG_XAX, ARG_SZ /* remove return address space */
ret
END_FUNC(get_stack_ptr)
#endif /* WINDOWS */
#ifdef UNIX
/* i#46: Implement private memcpy and memset for libc isolation. If we import
* memcpy and memset from libc in the normal way, the application can override
* those definitions and intercept them. In particular, this occurs when
* running an app that links in the Address Sanitizer runtime. Since we already
* need a reasonably efficient assembly memcpy implementation for safe_read, we
* go ahead and reuse the code for private memcpy and memset.
*
* XXX: See comment on REP_STRING_OP about maybe using SSE instrs. It's more
* viable for memcpy and memset than for safe_read_asm.
*/
/* Private memcpy.
*/
DECLARE_FUNC(dynamo_memcpy)
GLOBAL_LABEL(dynamo_memcpy:)
ARGS_TO_XDI_XSI_XDX() /* dst=xdi, src=xsi, n=xdx */
mov REG_XAX, REG_XDI /* Save dst for return. */
/* Copy xdx bytes, align on src. */
REP_STRING_OP(dynamo_memcpy, REG_XSI, movs)
RESTORE_XDI_XSI()
ret /* Return original dst. */
END_FUNC(dynamo_memcpy)
/* Private memset.
*/
DECLARE_FUNC(dynamo_memset)
GLOBAL_LABEL(dynamo_memset:)
ARGS_TO_XDI_XSI_XDX() /* dst=xdi, val=xsi, n=xdx */
push REG_XDI /* Save dst for return. */
test esi, esi /* Usually val is zero. */
jnz make_val_word_size
xor eax, eax
do_memset:
/* Set xdx bytes, align on dst. */
REP_STRING_OP(dynamo_memset, REG_XDI, stos)
pop REG_XAX /* Return original dst. */
RESTORE_XDI_XSI()
ret
/* Create pointer-sized value in XAX using multiply. */
make_val_word_size:
and esi, HEX(ff)
# ifdef X64
mov rax, HEX(0101010101010101)
# else
mov eax, HEX(01010101)
# endif
/* Use two-operand imul to avoid clobbering XDX. */
imul REG_XAX, REG_XSI
jmp do_memset
END_FUNC(dynamo_memset)
# ifndef MACOS /* XXX: attribute alias issue, plus using nasm */
/* gcc emits calls to these *_chk variants in release builds when the size of
* dst is known at compile time. In C, the caller is responsible for cleaning
* up arguments on the stack, so we alias these *_chk routines to the non-chk
* routines and rely on the caller to clean up the extra dst_len arg.
*/
.global __memcpy_chk
.hidden __memcpy_chk
.set __memcpy_chk,dynamo_memcpy
.global __memset_chk
.hidden __memset_chk
.set __memset_chk,dynamo_memset
# endif
#endif /* UNIX */
/***************************************************************************/
#if defined(WINDOWS) && !defined(X64)
/* Routines to switch to 64-bit mode from 32-bit WOW64, make a 64-bit
* call, and then return to 32-bit mode.
*/
/*
* int switch_modes_and_load(void *ntdll64_LdrLoadDll,
* UNICODE_STRING_64 *lib,
* HANDLE *result)
* XXX i#1633: this routine does not yet support ntdll64 > 4GB
*/
# define FUNCNAME switch_modes_and_load
DECLARE_FUNC(FUNCNAME)
GLOBAL_LABEL(FUNCNAME:)
/* get args before we change esp */
mov eax, ARG1
mov ecx, ARG2
mov edx, ARG3
/* save callee-saved registers */
push ebx
/* far jmp to next instr w/ 64-bit switch: jmp 0033:<sml_transfer_to_64> */
RAW(ea)
DD offset sml_transfer_to_64
DB CS64_SELECTOR
RAW(00)
sml_transfer_to_64:
/* Below here is executed in 64-bit mode, but with guarantees that
* no address is above 4GB, as this is a WOW64 process.
*/
/* Call LdrLoadDll to load 64-bit lib:
* LdrLoadDll(IN PWSTR DllPath OPTIONAL,
* IN PULONG DllCharacteristics OPTIONAL,
* IN PUNICODE_STRING DllName,
* OUT PVOID *DllHandle));
*/
RAW(4c) RAW(8b) RAW(ca) /* mov r9, rdx : 4th arg: result */
RAW(4c) RAW(8b) RAW(c1) /* mov r8, rcx : 3rd arg: lib */
push 0 /* slot for &DllCharacteristics */
lea edx, dword ptr [esp] /* 2nd arg: &DllCharacteristics */
xor ecx, ecx /* 1st arg: DllPath = NULL */
/* save WOW64 state */
RAW(41) push esp /* push r12 */
RAW(41) push ebp /* push r13 */
RAW(41) push esi /* push r14 */
RAW(41) push edi /* push r15 */
/* align the stack pointer */
mov ebx, esp /* save esp in callee-preserved reg */
sub esp, 32 /* call conv */
and esp, HEX(fffffff0) /* align to 16-byte boundary */
call eax
mov esp, ebx /* restore esp */
/* restore WOW64 state */
RAW(41) pop edi /* pop r15 */
RAW(41) pop esi /* pop r14 */
RAW(41) pop ebp /* pop r13 */
RAW(41) pop esp /* pop r12 */
/* far jmp to next instr w/ 32-bit switch: jmp 0023:<sml_return_to_32> */
push offset sml_return_to_32 /* 8-byte push */
mov dword ptr [esp + 4], CS32_SELECTOR /* top 4 bytes of prev push */
jmp fword ptr [esp]
sml_return_to_32:
add esp, 16 /* clean up far jmp target and &DllCharacteristics */
pop ebx /* restore callee-saved reg */
ret /* return value already in eax */
END_FUNC(FUNCNAME)
/*
* int switch_modes_and_call(uint64 func, void *arg1, void *arg2, void *arg3)
*/
# undef FUNCNAME
# define FUNCNAME switch_modes_and_call
DECLARE_FUNC(FUNCNAME)
GLOBAL_LABEL(FUNCNAME:)
mov eax, esp /* get.. */
add eax, ARG_SZ /* ...address of func */
mov ecx, ARG3 /* arg1 */
mov edx, ARG4 /* arg2 */
/* save callee-saved registers */
push ebx
mov ebx, ARG6 /* really ARG5==arg3, but we have 1 push */
/* far jmp to next instr w/ 64-bit switch: jmp 0033:<smc_transfer_to_64> */
RAW(ea)
DD offset smc_transfer_to_64
DB CS64_SELECTOR
RAW(00)
smc_transfer_to_64:
/* Below here is executed in 64-bit mode, but with guarantees that
* no address is above 4GB, as this is a WOW64 process.
*/
/* save WOW64 state */
RAW(41) push esp /* push r12 */
RAW(41) push ebp /* push r13 */
RAW(41) push esi /* push r14 */
RAW(41) push edi /* push r15 */
RAW(44) mov eax, ebx /* mov arg3 from ebx to r8d (3rd arg slot) */
/* align the stack pointer */
mov ebx, esp /* save esp in callee-preserved reg */
sub esp, 32 /* call conv */
and esp, HEX(fffffff0) /* align to 16-byte boundary */
/* arg1 is already in rcx, arg2 in rdx, and arg3 now in r8 */
RAW(48) mov eax, DWORD [eax] /* mov rax, qword ptr [rax] */
call eax /* call rax */
mov esp, ebx /* restore esp */
/* restore WOW64 state */
RAW(41) pop edi /* pop r15 */
RAW(41) pop esi /* pop r14 */
RAW(41) pop ebp /* pop r13 */
RAW(41) pop esp /* pop r12 */
/* far jmp to next instr w/ 32-bit switch: jmp 0023:<smc_return_to_32> */
push offset smc_return_to_32 /* 8-byte push */
mov dword ptr [esp + 4], CS32_SELECTOR /* top 4 bytes of prev push */
jmp fword ptr [esp]
smc_return_to_32:
add esp, 8 /* clean up far jmp target */
pop ebx /* restore callee-saved reg */
ret /* return value already in eax */
END_FUNC(FUNCNAME)
#endif /* WINDOWS && !X64 */
/****************************************************************************
* Injection code shared between core and drinjectlib.
* XXX: since we are exporting this file in the "drhelper" lib we may want
* to should move this code to a new file inject_shared.asm or sthg.
*/
#ifdef WINDOWS
/* void load_dynamo(void)
*
* used for injection into a child process
* N.B.: if the code here grows, SIZE_OF_LOAD_DYNAMO in win32/inject.c
* must be updated.
*/
DECLARE_FUNC(load_dynamo)
GLOBAL_LABEL(load_dynamo:)
/* the code for this routine is copied into an allocation in the app
and invoked upon return from the injector. When it is invoked,
it expects the app's stack to look like this:
xsp-->| &LoadLibrary | for x64 xsp must be 16-aligned
| &dynamo_path |
| &GetProcAddr |
| &dynamo_entry |___
| | |
|(saved context)| priv_mcontext_t struct
| &code_alloc | | pointer to the code allocation
| sizeof(code_alloc)| size of the code allocation
|_______________|___| (possible padding for x64 xsp alignment)
&dynamo_path-->| | |
| (dynamo path) | TEXT(DYNAMORIO_DLL_PATH)
|_______________|___|
&dynamo_entry-->| | |
| (dynamo entry)| "dynamo_auto_start"
| |___|
in separate allocation ___
| | |
| CODE | load_dynamo() code
| |___|
The load_dynamo routine will load the dynamo DLL into memory, then jump
to its dynamo_auto_start entry point, passing it the saved app context as
parameters.
*/
/* two byte NOP to satisfy third party braindead-ness documented in case 3821 */
mov edi, edi
#ifdef LOAD_DYNAMO_DEBUGBREAK
/* having this code in front may hide the problem addressed with the
* above padding */
/* giant loop so can attach debugger, then change ebx to 1
* to step through rest of code */
mov ebx, HEX(7fffffff)
load_dynamo_repeat_outer:
mov eax, HEX(7fffffff)
load_dynamo_repeatme:
dec eax
cmp eax, 0
jg load_dynamo_repeatme
dec ebx
cmp ebx, 0
jg load_dynamo_repeat_outer
# ifdef X64
/* xsp is 8-aligned and our pop makes it 16-aligned */
# endif
/* TOS has &DebugBreak */
pop REG_XBX /* pop REG_XBX = &DebugBreak */
CALLWIN0(REG_XBX) /* call DebugBreak (in kernel32.lib) */
#endif
/* TOS has &LoadLibraryA */
pop REG_XBX /* pop REG_XBX = &LoadLibraryA */
/* TOS has &dynamo_path */
pop REG_XAX /* for 32-bit we're doing "pop eax, push eax" */
CALLWIN1(REG_XBX, REG_XAX) /* call LoadLibraryA (in kernel32.lib) */
/* check result */
cmp REG_XAX, 0
jne load_dynamo_success
pop REG_XBX /* pop off &GetProcAddress */
pop REG_XBX /* pop off &dynamo_entry */
jmp load_dynamo_failure
load_dynamo_success:
/* TOS has &GetProcAddress */
pop REG_XBX /* pop REG_XBX = &GetProcAddress */
/* dynamo_handle is now in REG_XAX (returned by call LoadLibrary) */
/* TOS has &dynamo_entry */
pop REG_XDI /* for 32-bit we're doing "pop edi, push edi" */
CALLWIN2(REG_XBX, REG_XAX, REG_XDI) /* call GetProcAddress */
cmp REG_XAX, 0
je load_dynamo_failure
/* jump to dynamo_auto_start (returned by GetProcAddress) */
jmp REG_XAX
/* dynamo_auto_start will take over or continue natively at the saved
* context via load_dynamo_failure.
*/
END_FUNC(load_dynamo)
/* N.B.: load_dynamo_failure MUST follow load_dynamo, as both are
* copied in one fell swoop by inject_into_thread()!
*/
/* not really a function but having issues getting both masm and gas to
* let other asm routines jump here.
* targeted by load_dynamo and dynamo_auto_start by a jump, not a call,
* when we should not take over and should go native instead.
* Xref case 7654: we come here to the child's copy from dynamo_auto_start
* instead of returning to the parent's copy post-load_dynamo to avoid
* incompatibilites with stack layout accross dr versions.
*/
DECLARE_FUNC(load_dynamo_failure)
GLOBAL_LABEL(load_dynamo_failure:)
/* Would be nice if we could free our allocation here as well, but
* that's too much of a pain (esp. here).
* Note TOS has the saved context at this point, xref layout in
* auto_setup. Note this code is duplicated in dynamo_auto_start. */
mov REG_XAX, [MCONTEXT_XSP_OFFS + REG_XSP] /* load app xsp */
mov REG_XBX, [MCONTEXT_PC_OFFS + REG_XSP] /* load app start_pc */
/* write app start_pc off top of app stack */
mov [-ARG_SZ + REG_XAX], REG_XBX
/* it's ok to write past app TOS since we're just overwriting part of
* the dynamo_entry string which is dead at this point, won't affect
* the popping of the saved context */
POPGPR
POPF
/* we assume reading beyond TOS is ok here (no signals on windows) */
/* we assume xmm0-5 do not need to be restored */
/* restore app xsp (POPGPR doesn't) */
mov REG_XSP, [-MCONTEXT_PC_OFFS + MCONTEXT_XSP_OFFS + REG_XSP]
jmp PTRSZ [-ARG_SZ + REG_XSP] /* jmp to app start_pc */
ret
END_FUNC(load_dynamo_failure)
#endif /* WINDOWS */
END_FILE
|
#include "node-comm.hh"
#include <pthread.h>
#include <stdio.h>
#include <stdlib.h>
#include <unistd.h>
#include "daq_lib.h"
//#define DAQ
// This mutex basically protects teh access to value and count, but is
// also used to block the power thread when it should not be running.
pthread_mutex_t run_power_mutex = PTHREAD_MUTEX_INITIALIZER;
double value;
int count;
bool run_power_thread = false;
bool continue_thread = true;
pthread_t power_thread;
const char *DAQ_CARD = "/home/ksm/ixpci0";
const int INVERSE_RATE = 0xFFFF;
void *power(void *)
{
#ifdef DAQ
daq_card_t daq;
if (daq_open(DAQ_CARD, &daq)) {
perror("Error opening daq device");
return 0;
}
#endif
while (continue_thread) {
pthread_mutex_lock(&run_power_mutex);
#ifndef DAQ
while (run_power_thread) {
value += rand();
count++;
}
#else
/* Setup the scan */
if (daq_clear_scan(&daq)) {
perror("Error clearing the scan");
return 0;
}
if (daq_add_scan(&daq, 0, DG_1, DR_UNIPOL10V)) {
perror("Error adding volt scan");
return 0;
}
if (daq_add_scan(&daq, 16, DG_1000, DR_UNIPOL10V)) {
perror("Error adding amp scan");
return 0;
}
if (daq_start_scan(&daq, INVERSE_RATE)) {
perror("Error starting scan");
return 0;
}
// Throw away the first set of data.
{
uint16_t sample;
int res;
if ((res = daq_get_scan_sample(&daq, &sample))) {
fprintf(stderr, "Error getting sample. res = %d", res);
return 0;
}
if ((res = daq_get_scan_sample(&daq, &sample))) {
fprintf(stderr, "Error getting sample. res = %d", res);
return 0;
}
}
while (run_power_thread) {
int res;
uint16_t sample_volts, sample_amps;
if ((res = daq_get_scan_sample(&daq, &sample_volts))) {
fprintf(stderr, "Error getting volts sample. res = %d", res);
return 0;
}
if ((res = daq_get_scan_sample(&daq, &sample_amps))) {
fprintf(stderr, "Error getting amps sample. res = %d", res);
return 0;
}
double volts = daq_convert_result(&daq, sample_volts, DG_1, DR_UNIPOL10V);
double amps = daq_convert_result(&daq, sample_amps, DG_1000, DR_UNIPOL10V) * 1000.0;
// value += amps;
value += volts * amps;
count++;
usleep(6000);
}
#endif
pthread_mutex_unlock(&run_power_mutex);
}
return 0;
}
void init_power()
{
// Initialize the mutex, in order to stop the new thread
// immediately.
pthread_mutex_lock(&run_power_mutex);
run_power_thread = false;
pthread_create(&power_thread, 0, power, 0);
}
void start_power()
{
value = 0;
count = 0;
run_power_thread = true;
pthread_mutex_unlock(&run_power_mutex);
}
double stop_power()
{
run_power_thread = false;
pthread_mutex_lock(&run_power_mutex);
// Now we have access to value and count.
return value / count;
}
void halt_power()
{
continue_thread = false;
run_power_thread = false;
pthread_mutex_unlock(&run_power_mutex);
pthread_join(power_thread, 0);
}
|
; ---------------------------------------------------------------------------
; Sprite mappings - SCORE, TIME, RINGS
; ---------------------------------------------------------------------------
dc.w byte_1C5BC-Map_obj21, byte_1C5F0-Map_obj21
dc.w byte_1C624-Map_obj21, byte_1C658-Map_obj21
byte_1C5BC: dc.b $A
dc.b $80, $D, $80, 0, 0
dc.b $80, $D, $80, $18, $20
dc.b $80, $D, $80, $20, $40
dc.b $90, $D, $80, $10, 0
dc.b $90, $D, $80, $28, $28
dc.b $A0, $D, $80, 8, 0
dc.b $A0, 1, $80, 0, $20
dc.b $A0, 9, $80, $30, $30
dc.b $40, 5, $81, $A, 0
dc.b $40, $D, $81, $E, $10
dc.b 0
byte_1C5F0: dc.b $A
dc.b $80, $D, $80, 0, 0
dc.b $80, $D, $80, $18, $20
dc.b $80, $D, $80, $20, $40
dc.b $90, $D, $80, $10, 0
dc.b $90, $D, $80, $28, $28
dc.b $A0, $D, $A0, 8, 0
dc.b $A0, 1, $A0, 0, $20
dc.b $A0, 9, $80, $30, $30
dc.b $40, 5, $81, $A, 0
dc.b $40, $D, $81, $E, $10
dc.b 0
byte_1C624: dc.b $A
dc.b $80, $D, $80, 0, 0
dc.b $80, $D, $80, $18, $20
dc.b $80, $D, $80, $20, $40
dc.b $90, $D, $A0, $10, 0
dc.b $90, $D, $80, $28, $28
dc.b $A0, $D, $80, 8, 0
dc.b $A0, 1, $80, 0, $20
dc.b $A0, 9, $80, $30, $30
dc.b $40, 5, $81, $A, 0
dc.b $40, $D, $81, $E, $10
dc.b 0
byte_1C658: dc.b $A
dc.b $80, $D, $80, 0, 0
dc.b $80, $D, $80, $18, $20
dc.b $80, $D, $80, $20, $40
dc.b $90, $D, $A0, $10, 0
dc.b $90, $D, $80, $28, $28
dc.b $A0, $D, $A0, 8, 0
dc.b $A0, 1, $A0, 0, $20
dc.b $A0, 9, $80, $30, $30
dc.b $40, 5, $81, $A, 0
dc.b $40, $D, $81, $E, $10
even |
SECTION .data
pesan db 'bellshade', 0Ah
SECTION .text
global _start
_start:
mov edx, 13
mov ecx, pesan
mov ebx, 1
mov eax, 4
int 80h
mov ebx, 0 ; return 0 jika status exit bersifat error
mov eax, 1 ; mengaktifkan SYS_EXIT (kernal opcode 1)
int 80h
|
; REGISTER USAGE:
; a0 - Dual PCM cue
; a1 - Current channel
; a2 - Tracker
; a3 - Special address (channels), target channel (playsnd), scratch
; a4 - Music channel (dcStop), other various uses, scratch
; a5-a6 - Scratch, use lower number when possible
; d0 - Channel dbf counter, other dbf counters
; d1 - Various things read from the tracker, scratch
; d2 - Volume or pitch when calculating it
; d3-d6 - Scatch, use lower number when possible
; d7 - Never used for anything.
; ===========================================================================
; ---------------------------------------------------------------------------
; Various assembly flags
; ---------------------------------------------------------------------------
opt ae+
FEATURE_SAFE_PSGFREQ = 1 ; set to 1 to enable safety checks for PSG frequency. Some S3K SFX require this to be 0
FEATURE_SFX_MASTERVOL = 0 ; set to 1 to make SFX use master volumes
FEATURE_MODULATION = 1 ; set to 1 to enable software modulation effect
FEATURE_PORTAMENTO = 1 ; set to 1 to enable portamento flag
FEATURE_MODENV = 1 ; set to 1 to enable modulation envelopes
FEATURE_DACFMVOLENV = 1 ; set to 1 to enable volume envelopes for FM & DAC channels.
FEATURE_UNDERWATER = 1 ; set to 1 to enable underwater mode
FEATURE_BACKUP = 1 ; set to 1 to enable back-up channels. Used for the 1-up SFX in Sonic 1, 2 and 3K...
FEATURE_BACKUPNOSFX = 1 ; set to 1 to disable SFX while a song is backed up. Used for the 1-up SFX.
FEATURE_FM6 = 1 ; set to 1 to enable FM6 to be used in music
; Select the tempo algorith.
; 0 = Overflow method.
; 1 = Counter method.
TEMPO_ALGORITHM = 0
; if safe mode is enabled (1), then the driver will attempt to find any issues.
; if Vladik's error debugger is installed, then the error will be displayed.
; else, the CPU is trapped.
safe = 1
; ===========================================================================
; ---------------------------------------------------------------------------
; Channel configuration
; ---------------------------------------------------------------------------
rsset 0
cFlags rs.b 1 ; various channel flags, see below
cType rs.b 1 ; hardware type for the channel
cData rs.l 1 ; 68k tracker address for the channel
if FEATURE_DACFMVOLENV=0
cEnvPos rs.b 0 ; volume envelope position. PSG only
endif
cPanning rs.b 1 ; channel panning and LFO. FM and DAC only
cDetune rs.b 1 ; frequency detune (offset)
cPitch rs.b 1 ; pitch (transposition) offset
cVolume rs.b 1 ; channel volume
cTick rs.b 1 ; channel tick multiplier
if FEATURE_DACFMVOLENV=0
cVolEnv rs.b 0 ; volume envelope ID. PSG only
endif
cSample rs.b 0 ; channel sample ID, DAC only
cVoice rs.b 1 ; YM2612 voice ID. FM only
cDuration rs.b 1 ; current note duration
cLastDur rs.b 1 ; last note duration
cFreq rs.w 1 ; channel base frequency
if FEATURE_MODULATION
cModDelay rs.b 0 ; delay before modulation starts
cMod rs.l 1 ; modulation data address
cModFreq rs.w 1 ; modulation frequency offset
cModSpeed rs.b 1 ; number of frames til next modulation step
cModStep rs.b 1 ; modulation frequency offset per step
cModCount rs.b 1 ; number of modulation steps until reversal
endif
if FEATURE_PORTAMENTO
cPortaSpeed rs.b 1 ; number of frames for each portamento to complete. 0 means it is disabled.
cPortaFreq rs.w 1 ; frequency offset for portamento.
cPortaDisp rs.w 1 ; frequency displacement per frame for portamento.
endif
if FEATURE_DACFMVOLENV
cVolEnv rs.b 1 ; volume envelope ID
cEnvPos rs.b 1 ; volume envelope position
endif
if FEATURE_MODENV
cModEnv rs.b 1 ; modulation envelope ID
cModEnvPos rs.b 1 ; modulation envelope position
cModEnvSens rs.b 1 ; sensitivity of modulation envelope
endif
cLoop rs.b 3 ; loop counter values
cSizeSFX rs.w 0 ; size of each SFX track (this also sneakily makes sure the memory is aligned to word always. Additional loop counter may be added if last byte is odd byte)
cPrio = __rs-1 ; sound effect channel priority. SFX only
if FEATURE_DACFMVOLENV
cStatPSG4 = cPanning ; PSG4 type value. PSG3 only
else
cStatPSG4 = __rs-2 ; PSG4 type value. PSG3 only
endif
cGateCur rs.b 1 ; frame counter to note off. Music only
cGateMain rs.b 1 ; copy of frame counter to note off. Music only
cStack rs.b 1 ; channel stack pointer. Music only
rs.b 1 ; unused. Music only
rs.l 3 ; channel stack data. Music only
cSize rs.w 0 ; size of each music track
; ===========================================================================
; ---------------------------------------------------------------------------
; Bits for cFlags
; ---------------------------------------------------------------------------
rsset 0
cfbMode rs.b 0 ; set if in pitch mode, clear if in sample mode. DAC only
cfbRest rs.b 1 ; set if channel is resting. FM and PSG only
cfbInt rs.b 1 ; set if interrupted by SFX. Music only
cfbHold rs.b 1 ; set if playing notes does not trigger note-on's
cfbMod rs.b 1 ; set if modulation is enabled
cfbCond rs.b 1 ; set if ignoring most tracker commands
cfbVol rs.b 1 ; set if channel should update volume
cfbRun = $07 ; set if channel is running a tracker
; ===========================================================================
; ---------------------------------------------------------------------------
; Misc variables for channel modes
; ---------------------------------------------------------------------------
ctbPt2 = $02 ; bit part 2 - FM 4-6
ctFM1 = $00 ; FM 1
ctFM2 = $01 ; FM 2
ctFM3 = $02 ; FM 3 - Valid for SFX
ctFM4 = $04 ; FM 4 - Valid for SFX
ctFM5 = $05 ; FM 5 - Valid for SFX
if FEATURE_FM6
ctFM6 = $06 ; FM 6
endif
ctbDAC = $04 ; DAC bit
ctDAC1 = (1<<ctbDAC)|$03 ; DAC 1 - Valid for SFX
ctDAC2 = (1<<ctbDAC)|$06 ; DAC 2
ctPSG1 = $80 ; PSG 1 - Valid for SFX
ctPSG2 = $A0 ; PSG 2 - Valid for SFX
ctPSG3 = $C0 ; PSG 3 - Valid for SFX
ctPSG4 = $E0 ; PSG 4
; ===========================================================================
; ---------------------------------------------------------------------------
; Misc flags
; ---------------------------------------------------------------------------
Mus_DAC = 2 ; number of DAC channels
Mus_FM = 5+((FEATURE_FM6<>0)&1); number of FM channels (5 or 6)
Mus_PSG = 3 ; number of PSG channels
Mus_Ch = Mus_DAC+Mus_FM+Mus_PSG; total number of music channels
SFX_DAC = 1 ; number of DAC SFX channels
SFX_FM = 3 ; number of FM SFX channels
SFX_PSG = 3 ; number of PSG SFX channels
SFX_Ch = SFX_DAC+SFX_FM+SFX_PSG; total number of SFX channels
VoiceRegs = 29 ; total number of registers inside of a voice
VoiceTL = VoiceRegs-4 ; location of voice TL levels
MaxPitch = $1000 ; this is the maximum pitch Dual PCM is capable of processing
Z80E_Read = $0018 ; this is used by Dual PCM internally but we need this for macros
; NOTE: There is no magic trick to making Dual PCM play samples at higher rates.
; These values are only here to allow you to give lower pitch samples higher
; quality, and playing samples at higher rates than Dual PCM can process them
; may decrease the perceived quality by the end user. Use these equates only
; if you know what you are doing.
sr17 = $0140 ; 5 Quarter sample rate 17500 Hz
sr15 = $0120 ; 9 Eights sample rate 15750 Hz
sr14 = $0100 ; Default sample rate 14000 Hz
sr12 = $00E0 ; 7 Eights sample rate 12250 Hz
sr10 = $00C0 ; 3 Quarter sample rate 10500 Hz
sr8 = $00A0 ; 5 Eights sample rate 8750 Hz
sr7 = $0080 ; Half sample rate 7000 HZ
sr5 = $0060 ; 3 Eights sample rate 5250 Hz
sr3 = $0040 ; 1 Quarter sample rate 3500 Hz
; ===========================================================================
; ---------------------------------------------------------------------------
; Sound driver RAM configuration
; ---------------------------------------------------------------------------
dZ80 = $A00000 ; quick reference to Z80 RAM
dPSG = $C00011 ; quick reference to PSG port
rsset $FFFFF000 ; Insert your RAM definition here!
mFlags rs.b 1 ; various driver flags, see below
mCtrPal rs.b 1 ; frame counter fo 50hz fix
mComm rs.b 8 ; communications bytes
mMasterVolFM rs.b 0 ; master volume for FM channels
mFadeAddr rs.l 1 ; fading program address
mTempoMain rs.b 1 ; music normal tempo
mTempoSpeed rs.b 1 ; music speed shoes tempo
mTempo rs.b 1 ; current tempo we are using right now
mTempoCur rs.b 1 ; tempo counter/accumulator
mQueue rs.b 3 ; sound queue
mMasterVolPSG rs.b 1 ; master volume for PSG channels
mVctMus rs.l 1 ; address of voice table for music
mMasterVolDAC rs.b 1 ; master volume for DAC channels
mSpindash rs.b 1 ; spindash rev counter
mContCtr rs.b 1 ; continous sfx loop counter
mContLast rs.b 1 ; last continous sfx played
mLastCue rs.b 1 ; last YM Cue the sound driver was accessing
rs.w 0 ; align channel data
mBackUpArea rs.b 0 ; this is where backup stuff starts
mDAC1 rs.b cSize ; DAC 1 data
mDAC2 rs.b cSize ; DAC 2 data
mFM1 rs.b cSize ; FM 1 data
mFM2 rs.b cSize ; FM 2 data
mFM3 rs.b cSize ; FM 3 data
mFM4 rs.b cSize ; FM 4 data
mFM5 rs.b cSize ; FM 5 data
if FEATURE_FM6
mFM6 rs.b cSize ; FM 6 data
endif
mPSG1 rs.b cSize ; PSG 1 data
mPSG2 rs.b cSize ; PSG 2 data
mPSG3 rs.b cSize ; PSG 3 data
mSFXDAC1 rs.b cSizeSFX ; SFX DAC 1 data
mSFXFM3 rs.b cSizeSFX ; SFX FM 3 data
mSFXFM4 rs.b cSizeSFX ; SFX FM 4 data
mSFXFM5 rs.b cSizeSFX ; SFX FM 5 data
mSFXPSG1 rs.b cSizeSFX ; SFX PSG 1 data
mSFXPSG2 rs.b cSizeSFX ; SFX PSG 2 data
mSFXPSG3 rs.b cSizeSFX ; SFX PSG 3 data
mChannelEnd rs.w 0 ; used to determine where channel RAM ends
if FEATURE_BACKUP
mBackUpLoc rs.b 0 ; this is where backup stuff is loaded
mBackDAC1 rs.b cSize ; back-up DAC 1 data
mBackDAC2 rs.b cSize ; back-up DAC 2 data
mBackFM1 rs.b cSize ; back-up FM 1 data
mBackFM2 rs.b cSize ; back-up FM 2 data
mBackFM3 rs.b cSize ; back-up FM 3 data
mBackFM4 rs.b cSize ; back-up FM 4 data
mBackFM5 rs.b cSize ; back-up FM 5 data
if FEATURE_FM6
mBackFM6 rs.b cSize ; back-up FM 6 data
endif
mBackPSG1 rs.b cSize ; back-up PSG 1 data
mBackPSG2 rs.b cSize ; back-up PSG 2 data
mBackPSG3 rs.b cSize ; back-up PSG 3 data
mBackTempoMain rs.b 1 ; back-up music normal tempo
mBackTempoSpeed rs.b 1 ; back-up music speed shoes tempo
mBackTempo rs.b 1 ; back-up current tempo we are using right now
mBackTempoCur rs.b 1 ; back-up tempo counter/accumulator
mBackVctMus rs.l 1 ; back-up address of voice table for music
endif
if safe=1
msChktracker rs.b 1 ; safe mode only: If set, bring up debugger
endif
mSize rs.w 0 ; end of the driver RAM
; ===========================================================================
; ---------------------------------------------------------------------------
; Bits for mFlags
; ---------------------------------------------------------------------------
rsset 0
mfbSwap rs.b 1 ; if set, swap the sfx
mfbSpeed rs.b 1 ; if set, speed shoes are active
mfbWater rs.b 1 ; if set, underwater mode is active
mfbNoPAL rs.b 1 ; if set, play songs slowly in PAL region
mfbBacked rs.b 1 ; if set, a song has been backed up already
mfbExec rs.b 1 ; if set, AMPS is currently running
mfbPaused = $07 ; if set, sound driver is paused
; ===========================================================================
; ---------------------------------------------------------------------------
; Sound ID equates
; ---------------------------------------------------------------------------
rsset 1
Mus_Reset rs.b 1 ; reset underwater and speed shoes flags, update volume
Mus_FadeOut rs.b 1 ; initialize a music fade out
Mus_Stop rs.b 1 ; stop all music
Mus_ShoesOn rs.b 1 ; enable speed shoes mode
Mus_ShoesOff rs.b 1 ; disable speed shoes mode
Mus_ToWater rs.b 1 ; enable underwater mode
Mus_OutWater rs.b 1 ; disable underwater mode
Mus_Pause rs.b 1 ; pause the music
Mus_Unpause rs.b 1 ; unpause the music
Mus_StopSFX rs.b 1 ; stop all sfx
MusOff rs.b 0 ; first music ID
; ===========================================================================
; ---------------------------------------------------------------------------
; Condition modes
; ---------------------------------------------------------------------------
rsset 0
dcoT rs.b 1 ; condition T ; True
dcoF rs.b 1 ; condition F ; False
dcoHI rs.b 1 ; condition HI ; HIgher (unsigned)
dcoLS rs.b 1 ; condition LS ; Less or Same (unsigned)
dcoHS rs.b 0 ; condition HS ; Higher or Sane (unsigned)
dcoCC rs.b 1 ; condition CC ; Carry Clear (unsigned)
dcoLO rs.b 0 ; condition LO ; LOwer (unsigned)
dcoCS rs.b 1 ; condition CS ; Carry Set (unsigned)
dcoNE rs.b 1 ; condition NE ; Not Equal
dcoEQ rs.b 1 ; condition EQ ; EQual
dcoVC rs.b 1 ; condition VC ; oVerflow Clear (signed)
dcoVS rs.b 1 ; condition VS ; oVerflow Set (signed)
dcoPL rs.b 1 ; condition PL ; Positive (PLus)
dcoMI rs.b 1 ; condition MI ; Negamite (MInus)
dcoGE rs.b 1 ; condition GE ; Greater or Equal (signed)
dcoLT rs.b 1 ; condition LT ; Less Than (signed)
dcoGT rs.b 1 ; condition GT ; GreaTer (signed)
dcoLE rs.b 1 ; condition LE ; Less or Equal (signed)
; ===========================================================================
; ---------------------------------------------------------------------------
; Envelope commands equates
; ---------------------------------------------------------------------------
rsset $80
eReset rs.w 1 ; 80 - Restart from position 0
eHold rs.w 1 ; 82 - Hold volume at current level
eLoop rs.w 1 ; 84 - Jump back/forwards according to next byte
eStop rs.w 1 ; 86 - Stop current note and envelope
; these next ones are only valid for modulation envelopes. These are ignored for volume envelopes.
esSens rs.w 1 ; 88 - Set the sensitivity of the modulation envelope
eaSens rs.w 1 ; 8A - Add to the sensitivity of the modulation envelope
eLast rs.w 0 ; safe mode equate
; ===========================================================================
; ---------------------------------------------------------------------------
; Fade out end commands
; ---------------------------------------------------------------------------
rsset $80
fEnd rs.l 1 ; 80 - Do nothing
fStop rs.l 1 ; 84 - Stop all music
fResVol rs.l 1 ; 88 - Reset volume and update
fReset rs.l 1 ; 8C - Stop music playing and reset volume
fLast rs.l 0 ; safe mode equate
; ===========================================================================
; ---------------------------------------------------------------------------
; Enable multiple flags in target ea mode
; ---------------------------------------------------------------------------
mvbit macro bits
local res ; local variable to hold result in
res = 0
rept narg-1 ; repeat for all bits
res = res|(1<<\bits) ; or the value of the bit
shift
endr
if ("\0"<>"q")&("\0"<>"Q") ; check for moveq
move.\0 #res,\bits ; save instruction
else
if res>$80 ; fix for moveq bug
res = res|$FFFFFF00 ; must be negative value
endif
moveq #res,\bits ; moveq version
endif
endm
mvnbt macro bits
local res ; local variable to hold result in
res = 0
rept narg-1 ; repeat for all bits
res = res|(1<<\bits) ; or the value of the bit
shift
endr
if ("\0"<>"q")&("\0"<>"Q") ; check for moveq
move.\0 #~res,\bits ; save instruction
else
res = (~res)&$FF ; not result but keep it in 8bits
if res>$80 ; fix for moveq bug
res = res|$FFFFFF00 ; must be negative value
endif
moveq #res,\bits ; moveq version
endif
endm
; ===========================================================================
; ---------------------------------------------------------------------------
; Quickly clear some memory in certain block sizes
;
; input:
; a4 - Destination address
; len - Length of clear
; block - Size of clear block
;
; thrashes:
; d6 - Set to $xxxxFFFF
; a4 - Destination address
; ---------------------------------------------------------------------------
dCLEAR_MEM macro len, block
move.w #((\len)/(\block))-1,d6; load repeat count to d6
.c\@
rept (\block)/4
clr.l (a4)+ ; clear driver and music channel memory
endr
dbf d6, .c\@ ; loop for each longword to clear it...
rept ((\len)%(\block))/4
clr.l (a4)+ ; clear extra longs of memory
endr
if (\len)&2
clr.w (a4)+ ; if there is an extra word, clear it too
endif
endm
; ===========================================================================
; ---------------------------------------------------------------------------
; Quickly read a word from odd address. 28 cycles
; ---------------------------------------------------------------------------
dREAD_WORD macro areg, dreg
move.b (\areg)+,(sp) ; read the next byte into stack
move.w (sp),\dreg ; get word back from stack (shift byte by 8 bits)
move.b (\areg)+,\dreg ; get the next byte into register
endm
; ===========================================================================
; ---------------------------------------------------------------------------
; used to calculate the address of the right FM voice
;
; input:
; d4 - Voice ID
; a4 - Voice table address
; ---------------------------------------------------------------------------
dCALC_VOICE macro off
lsl.w #5,d4 ; multiply voice ID by $20
if narg>0
add.w #\off,d4 ; if have had extra argument, add it to offset
endif
add.w d4,a4 ; add offset to voice table address
endm
; ===========================================================================
; ---------------------------------------------------------------------------
; Used to calculate the address of the right FM voice bank
;
; input:
; a1 - Channel address
; output:
; a4 - Voice table address
; ---------------------------------------------------------------------------
dCALC_BANK macro off
lea VoiceBank+off(pc),a4 ; load sound effects voice table into a6
cmp.w #mSFXDAC1,a1 ; check if this is a SFX channel
bhs.s .bank ; if so, branch
move.l mVctMus.w,a4 ; load music voice table into a1
if \off<>0
add.w #off,a4 ; add offset into a1
endif
.bank
endm
; ===========================================================================
; ---------------------------------------------------------------------------
; Tells the Z80 to stop, and waits for it to finish stopping (acquire bus)
; ---------------------------------------------------------------------------
stopZ80 macro
move.w #$100,$A11100 ; stop the Z80
.loop\@
btst #0,$A11100
bne.s .loop\@ ; loop until it says it's stopped
endm
; ===========================================================================
; ---------------------------------------------------------------------------
; Tells the Z80 to start again
; ---------------------------------------------------------------------------
startZ80 macro
move.w #0,$A11100 ; start the Z80
endm
; ===========================================================================
; ---------------------------------------------------------------------------
; Initializes YM writes
;
; output:
; d6 - part number
; d5 - channel type
; ---------------------------------------------------------------------------
InitChYM macro
move.b cType(a1),d6 ; get channel type to d6
move.b d6,d5 ; copy to d5
and.b #3,d5 ; get only the important part
lsr.b #1,d6 ; halve part value
and.b #2,d6 ; clear extra bits away
endm
; ===========================================================================
; ---------------------------------------------------------------------------
; Write data to channel-specific YM part
;
; input:
; d6 - part number
; d5 - channel type
; reg - YM register to write
; value - value to write
;
; thrashes:
; d4 - used for register calculation
; ---------------------------------------------------------------------------
WriteChYM macro reg, value
move.b d6,(a0)+ ; write part
move.b \value,(a0)+ ; write register value to cue
move.b d5,d4 ; get the channel offset into d4
or.b \reg,d4 ; or the actual register value
move.b d4,(a0)+ ; write register to cue
endm
; ===========================================================================
; ---------------------------------------------------------------------------
; Write data to YM part 1
; ---------------------------------------------------------------------------
WriteYM1 macro reg, value
clr.b (a0)+ ; write to part 1
move.b \value,(a0)+ ; write value to cue
move.b \reg,(a0)+ ; write register to cue
endm
; ===========================================================================
; ---------------------------------------------------------------------------
; Write data to YM part 2
; ---------------------------------------------------------------------------
WriteYM2 macro reg, value
move.b #2,(a0)+ ; write to part 2
move.b \value,(a0)+ ; write value to cue
move.b \reg,(a0)+ ; write register to cue
endm
; ===========================================================================
; ---------------------------------------------------------------------------
; Macro to check cue address
; ---------------------------------------------------------------------------
CheckCue macro
if safe=1
AMPS_Debug_CuePtr Gen ; check if cue pointer is valid
endif
endm
; ===========================================================================
; ---------------------------------------------------------------------------
; Macro for pausing music
; ---------------------------------------------------------------------------
AMPS_MUSPAUSE macro ; enable request pause and paused flags
move.b #Mus_Pause,mQueue+2.w
endm
; ===========================================================================
; ---------------------------------------------------------------------------
; Macro for unpausing music
; ---------------------------------------------------------------------------
AMPS_MUSUNPAUSE macro ; enable request unpause flag
move.b #Mus_Unpause,mQueue+2.w
endm
; ===========================================================================
; ---------------------------------------------------------------------------
; Create volume envelope table, and SMPS2ASM equates
; ---------------------------------------------------------------------------
volenv macro name
rept narg ; repeate for all arguments
v\name = __venv ; create SMPS2ASM equate
dc.l vd\name ; create pointer
__venv = __venv+1 ; increase ID
shift ; shift next argument into view
endr
endm
; ===========================================================================
; ---------------------------------------------------------------------------
; Create modulation envelope table, and SMPS2ASM equates
; ---------------------------------------------------------------------------
modenv macro name
rept narg ; repeate for all arguments
m\name = __menv ; create SMPS2ASM equate
if FEATURE_MODENV
dc.l md\name ; create pointer
endif
__menv = __menv+1 ; increase ID
shift ; shift next argument into view
endr
endm
; ===========================================================================
; ---------------------------------------------------------------------------
; Include PCM data
; ---------------------------------------------------------------------------
incSWF macro file
rept narg ; repeat for all arguments
SWF_\file incbin "AMPS/DAC/incswf/\file\.swf"; include PCM data
SWFR_\file dcb.b Z80E_Read*(MaxPitch/$100),$00; add end markers (for Dual PCM)
shift ; shift next argument into view
endr
endm
; ===========================================================================
; ---------------------------------------------------------------------------
; Create data for a sample
; ---------------------------------------------------------------------------
sample macro freq, start, loop, name
if narg=4 ; if we have 4 arguments, we'd like a custom name
d\name = __samp ; use the extra argument to create SMPS2ASM equate
else
d\start = __samp ; else, use the first one!
endif
__samp = __samp+1 ; increase sample ID
; create offsets for the sample normal, reverse, loop normal, loop reverse.
if strcmp("\start","Stop")|strcmp("\start","STOP")|strcmp("\start","stop")
dcb.b 6, 0
else
dc.b SWF_\start&$FF,((SWF_\start>>$08)&$7F)|$80,(SWF_\start>>$0F)&$FF
dc.b (SWFR_\start-1)&$FF,(((SWFR_\start-1)>>$08)&$7F)|$80,((SWFR_\start-1)>>$0F)&$FF
endif
if strcmp("\loop","Stop")|strcmp("\loop","STOP")|strcmp("\loop","stop")
dcb.b 6, 0
else
dc.b SWF_\loop&$FF,((SWF_\loop>>$08)&$7F)|$80, (SWF_\loop>>$0F)&$FF
dc.b (SWFR_\loop-1)&$FF,(((SWFR_\loop-1)>>$08)&$7F)|$80,((SWFR_\loop-1)>>$0F)&$FF
endif
dc.w \freq-$100 ; sample frequency (actually offset, so we remove $100)
dc.w 0 ; unused!
endm
; ===========================================================================
opt ae-
|
// push constant 0
@0
D=A
@SP
M=M+1
A=M-1
M=D
// pop LCL 0
@LCL
D=M
@0
D=A+D
@R13
M=D
@SP
AM=M-1
D=M
@R13
A=M
M=D
// label None$LOOP_START
(None$LOOP_START)
// push ARG 0
@ARG
D=M
@0
A=A+D
D=M
@SP
M=M+1
A=M-1
M=D
// push LCL 0
@LCL
D=M
@0
A=A+D
D=M
@SP
M=M+1
A=M-1
M=D
// add
@SP
AM=M-1
D=M
@SP
AM=M-1
D=M+D
@SP
M=M+1
A=M-1
M=D
// pop LCL 0
@LCL
D=M
@0
D=A+D
@R13
M=D
@SP
AM=M-1
D=M
@R13
A=M
M=D
// push ARG 0
@ARG
D=M
@0
A=A+D
D=M
@SP
M=M+1
A=M-1
M=D
// push constant 1
@1
D=A
@SP
M=M+1
A=M-1
M=D
// sub
@SP
AM=M-1
D=M
@SP
AM=M-1
D=M-D
@SP
M=M+1
A=M-1
M=D
// pop ARG 0
@ARG
D=M
@0
D=A+D
@R13
M=D
@SP
AM=M-1
D=M
@R13
A=M
M=D
// push ARG 0
@ARG
D=M
@0
A=A+D
D=M
@SP
M=M+1
A=M-1
M=D
// if-goto None$LOOP_START
@SP
AM=M-1
D=M
@None$LOOP_START
D;JNE
// push LCL 0
@LCL
D=M
@0
A=A+D
D=M
@SP
M=M+1
A=M-1
M=D
|
.global s_prepare_buffers
s_prepare_buffers:
push %r10
push %r12
push %r13
push %r8
push %rax
push %rbx
push %rcx
push %rdi
push %rsi
lea addresses_WT_ht+0x675f, %rbx
nop
nop
nop
nop
cmp %rax, %rax
mov (%rbx), %r13d
nop
nop
nop
nop
nop
add $9212, %r12
lea addresses_D_ht+0xdc09, %r10
nop
nop
and %r8, %r8
mov (%r10), %ax
nop
nop
dec %r10
lea addresses_D_ht+0x525f, %rsi
lea addresses_WT_ht+0x7da7, %rdi
nop
nop
nop
nop
dec %r12
mov $32, %rcx
rep movsb
nop
cmp %rdi, %rdi
lea addresses_UC_ht+0xc85f, %rbx
and $20755, %r12
mov (%rbx), %rcx
and %r13, %r13
lea addresses_WC_ht+0x2b7e, %rcx
nop
nop
nop
dec %r12
mov (%rcx), %si
xor $16028, %r13
lea addresses_UC_ht+0xcb17, %rdi
nop
cmp $65058, %rax
mov (%rdi), %r8d
nop
nop
nop
sub %rdi, %rdi
lea addresses_A_ht+0x1a5f, %rax
clflush (%rax)
nop
xor $59881, %rcx
movups (%rax), %xmm6
vpextrq $1, %xmm6, %r12
inc %rax
pop %rsi
pop %rdi
pop %rcx
pop %rbx
pop %rax
pop %r8
pop %r13
pop %r12
pop %r10
ret
.global s_faulty_load
s_faulty_load:
push %r10
push %r12
push %r15
push %r9
push %rbx
push %rcx
push %rsi
// Load
lea addresses_WT+0x104f3, %r9
and $1483, %r12
movups (%r9), %xmm7
vpextrq $1, %xmm7, %rcx
cmp %r15, %r15
// Faulty Load
lea addresses_D+0x65f, %r15
nop
nop
nop
nop
add %r10, %r10
mov (%r15), %r12w
lea oracles, %r15
and $0xff, %r12
shlq $12, %r12
mov (%r15,%r12,1), %r12
pop %rsi
pop %rcx
pop %rbx
pop %r9
pop %r15
pop %r12
pop %r10
ret
/*
<gen_faulty_load>
[REF]
{'src': {'type': 'addresses_D', 'same': False, 'size': 8, 'congruent': 0, 'NT': False, 'AVXalign': False}, 'OP': 'LOAD'}
{'src': {'type': 'addresses_WT', 'same': False, 'size': 16, 'congruent': 1, 'NT': False, 'AVXalign': False}, 'OP': 'LOAD'}
[Faulty Load]
{'src': {'type': 'addresses_D', 'same': True, 'size': 2, 'congruent': 0, 'NT': False, 'AVXalign': False}, 'OP': 'LOAD'}
<gen_prepare_buffer>
{'src': {'type': 'addresses_WT_ht', 'same': False, 'size': 4, 'congruent': 8, 'NT': False, 'AVXalign': False}, 'OP': 'LOAD'}
{'src': {'type': 'addresses_D_ht', 'same': False, 'size': 2, 'congruent': 0, 'NT': False, 'AVXalign': False}, 'OP': 'LOAD'}
{'src': {'type': 'addresses_D_ht', 'congruent': 9, 'same': False}, 'dst': {'type': 'addresses_WT_ht', 'congruent': 3, 'same': True}, 'OP': 'REPM'}
{'src': {'type': 'addresses_UC_ht', 'same': False, 'size': 8, 'congruent': 9, 'NT': False, 'AVXalign': False}, 'OP': 'LOAD'}
{'src': {'type': 'addresses_WC_ht', 'same': False, 'size': 2, 'congruent': 0, 'NT': False, 'AVXalign': False}, 'OP': 'LOAD'}
{'src': {'type': 'addresses_UC_ht', 'same': False, 'size': 4, 'congruent': 3, 'NT': False, 'AVXalign': False}, 'OP': 'LOAD'}
{'src': {'type': 'addresses_A_ht', 'same': False, 'size': 16, 'congruent': 8, 'NT': False, 'AVXalign': False}, 'OP': 'LOAD'}
{'36': 21829}
36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36
*/
|
/*
* Copyright 2010-2017 Amazon.com, Inc. or its affiliates. All Rights Reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License").
* You may not use this file except in compliance with the License.
* A copy of the License is located at
*
* http://aws.amazon.com/apache2.0
*
* or in the "license" file accompanying this file. This file 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.
*/
#include <aws/es/model/LogPublishingOption.h>
#include <aws/core/utils/json/JsonSerializer.h>
#include <utility>
using namespace Aws::Utils::Json;
using namespace Aws::Utils;
namespace Aws
{
namespace ElasticsearchService
{
namespace Model
{
LogPublishingOption::LogPublishingOption() :
m_cloudWatchLogsLogGroupArnHasBeenSet(false),
m_enabled(false),
m_enabledHasBeenSet(false)
{
}
LogPublishingOption::LogPublishingOption(const JsonValue& jsonValue) :
m_cloudWatchLogsLogGroupArnHasBeenSet(false),
m_enabled(false),
m_enabledHasBeenSet(false)
{
*this = jsonValue;
}
LogPublishingOption& LogPublishingOption::operator =(const JsonValue& jsonValue)
{
if(jsonValue.ValueExists("CloudWatchLogsLogGroupArn"))
{
m_cloudWatchLogsLogGroupArn = jsonValue.GetString("CloudWatchLogsLogGroupArn");
m_cloudWatchLogsLogGroupArnHasBeenSet = true;
}
if(jsonValue.ValueExists("Enabled"))
{
m_enabled = jsonValue.GetBool("Enabled");
m_enabledHasBeenSet = true;
}
return *this;
}
JsonValue LogPublishingOption::Jsonize() const
{
JsonValue payload;
if(m_cloudWatchLogsLogGroupArnHasBeenSet)
{
payload.WithString("CloudWatchLogsLogGroupArn", m_cloudWatchLogsLogGroupArn);
}
if(m_enabledHasBeenSet)
{
payload.WithBool("Enabled", m_enabled);
}
return payload;
}
} // namespace Model
} // namespace ElasticsearchService
} // namespace Aws
|
$NOMOD51 NOLINES
$INCLUDE(hwconf.inc)
$NOCOND
EXTRN DATA (rom_page_mask)
;------------------------------------------------------------------------------
; This file is part of the BL51 / LX51 Banked Linker/Locater package
; Copyright (c) 1988 - 2001 Keil Elektronik GmbH and Keil Software, Inc.
; Version 2.21 (Code and Variable Banking for Classic 8051 Derivatives)
;------------------------------------------------------------------------------
;************************ Configuration Section *******************************
?B_NBANKS EQU CODE_BANK_NUM
;?B_NBANKS EQU 8 ; Define maximum Number of Banks *
; ; following values are allowed: 2, 4, 8, 16, 32, 64 *
; ; for BL51 the maximum value for ?B_BANKS is 32 *
; ; for LX51 the maximum value for ?B_BANKS is 64 *
; *
?B_MODE EQU 4 ; 0 for Bank-Switching via 8051 Port *
; ; 1 for Bank-Switching via XDATA Port *
; ; 4 for user-provided bank switch code *
; *
?B_RTX EQU 0 ; 0 for applications without real-time OS *
; ; 1 for applications using the RTX-51 real-time OS *
; *
?B_VAR_BANKING EQU 1 ; Variable Banking via L51_BANK (far memory support)*
; ; 0 Variable Banking does not use L51_BANK.A51 *
; ; 1 Variable Banking uses this L51_BANK.A51 module *
; Notes: ?B_VAR_BANKING uses the 'far' and 'far const' C51 memory types to *
; extent the space for variables in RAM and/or ROM of classic 8051 *
; device. The same hardware as for code banking is used. Program *
; code banking and variable banking share the same hardware I/O pins. *
; The C51 Compiler must be used with the VARBANKING directive. *
; Variable Banking is only supported with the LX51 linker/locater. *
; *
?B_RST_BANK EQU 0xFF ; specifies the active code bank number after CPU *
; ; Reset. Used to reduce the entries in the *
; ; INTERBANK CALL TABLE. The value 0xFF disables *
; ; this LX51 linker/locater optimization. *
; Note: Interbank Call Table optimization is only possible with LX51. *
; *
;-----------------------------------------------------------------------------*
; *
IF ?B_MODE = 0; *
;-----------------------------------------------------------------------------*
; if ?BANK?MODE is 0 define the following values *
; For Bank-Switching via 8051 Port define Port Address / Bits *
; *
P1 DATA 90H ; I/O Port Address *
; *
?B_PORT EQU P1 ; default is P1 *
?B_FIRSTBIT EQU 2 ; default is Bit 2 *
;-----------------------------------------------------------------------------*
ENDIF; *
; *
IF ?B_MODE = 1; *
;-----------------------------------------------------------------------------*
; if ?BANK?MODE is 1 define the following values *
; For Bank-Switching via XDATA Port define XDATA Port Address / Bits *
?B_XDATAPORT EQU 0FFFFH ; default is XDATA Port Address 0FFFFH *
?B_FIRSTBIT EQU 0 ; default is Bit 0 *
;-----------------------------------------------------------------------------*
ENDIF; *
; *
IF ?B_MODE = 4; *
;-----------------------------------------------------------------------------*
; if ?BANK?MODE is 4 define the following switch macros *
; For bank switching via user-provided bank switch code you must define for *
; each memory bank a own macro which contains the bank switch code. The *
; following example shows how to use the I/O lines P1.4 and P1.7 for bank *
; switching. Since you can select just 4 banks with two address lines, just *
; four macros are defined. The number of macros must conform with the number *
; ?B_NBANKS number, i.e. for an application with 16 memory banks you must *
; define 16 macros. *
; *
; IMPORTANT NOTES: *
; 1. The bank switch logic must be initialized before using it. Therefore *
; add the following lines of code at the end of the STARTUP.A51 file: *
; : *
; EXTRN CODE (?B_SWITCH0) *
; CALL ?B_SWITCH0 ; init bank mechanism to code bank 0 *
; LJMP ?C_START ; line already exits at the end of file *
; : *
; *
; 2. If the bank switch macros and the additional control code generate more *
; than 256 bytes, you need to set the LONG_MACRO flag below. The error *
; message "BANK SWITCH CODE BIGGER THAN 256 BYTES, SET LONG_MACRO TO 1" *
; is generated in case that this is required. *
; *
; 3. The only registers that can be modified in this routines without prior *
; saving are: DPTR and ACC. *
; *
; *
LONG_MACRO EQU 1 ; 0 default, for normal macros and up to 8 banks *
; ; 1 big macro code or many banks *
; *
; *
; *
SWITCH0 MACRO ; Switch to Memory Bank #0 *
mov a, rom_page_mask
anl PAGE_SEL, a
; orl PAGE_SEL, #000H
ENDM ; *
; *
SWITCH1 MACRO ; Switch to Memory Bank #1 *
mov a, rom_page_mask
anl PAGE_SEL, a
orl PAGE_SEL, #010H
ENDM ; *
; *
SWITCH2 MACRO ; Switch to Memory Bank #2 *
mov a, rom_page_mask
anl PAGE_SEL, a
orl PAGE_SEL, #020H
ENDM ; *
; *
SWITCH3 MACRO ; Switch to Memory Bank #3 *
mov a, rom_page_mask
anl PAGE_SEL, a
orl PAGE_SEL, #030H
ENDM ; *
; *
SWITCH4 MACRO ; Switch to Memory Bank #4 *
mov a, rom_page_mask
anl PAGE_SEL, a
orl PAGE_SEL, #040H
ENDM ; *
; *
SWITCH5 MACRO ; Switch to Memory Bank #5 *
mov a, rom_page_mask
anl PAGE_SEL, a
orl PAGE_SEL, #050H
ENDM ; *
; *
SWITCH6 MACRO ; Switch to Memory Bank #6 *
mov a, rom_page_mask
anl PAGE_SEL, a
orl PAGE_SEL, #060H
ENDM ; *
; *
SWITCH7 MACRO ; Switch to Memory Bank #7 *
mov a, rom_page_mask
anl PAGE_SEL, a
orl PAGE_SEL, #070H
ENDM ; *
SWITCH8 MACRO ; Switch to Memory Bank #8 *
mov a, rom_page_mask
anl PAGE_SEL, a
orl PAGE_SEL, #080H
ENDM ; *
SWITCH9 MACRO ; Switch to Memory Bank #9 *
mov a, rom_page_mask
anl PAGE_SEL, a
orl PAGE_SEL, #090H
ENDM ; *
SWITCH10 MACRO ; Switch to Memory Bank #10 *
mov a, rom_page_mask
anl PAGE_SEL, a
orl PAGE_SEL, #0a0H
ENDM ; *
SWITCH11 MACRO ; Switch to Memory Bank #11 *
mov a, rom_page_mask
anl PAGE_SEL, a
orl PAGE_SEL, #0b0H
ENDM ; *
SWITCH12 MACRO ; Switch to Memory Bank #12 *
mov a, rom_page_mask
anl PAGE_SEL, a
orl PAGE_SEL, #0c0H
ENDM ; *
SWITCH13 MACRO ; Switch to Memory Bank #13 *
mov a, rom_page_mask
anl PAGE_SEL, a
orl PAGE_SEL, #0d0H
ENDM ; *
SWITCH14 MACRO ; Switch to Memory Bank #14 *
mov a, rom_page_mask
anl PAGE_SEL, a
orl PAGE_SEL, #0e0H
ENDM ; *
SWITCH15 MACRO ; Switch to Memory Bank #15 *
mov a, rom_page_mask
anl PAGE_SEL, a
orl PAGE_SEL, #0f0H
ENDM ; *
; *
;-----------------------------------------------------------------------------*
ENDIF; *
; *
IF ?B_VAR_BANKING = 1; *
; *
XMEM EQU 0x02000000 ; LX51 xdata symbol offset: do not change! *
; *
;******* Configuration Section for uVision2 Memory Simulation Support *********
; *
; The following settings allow you to map the physical xdata and code memory *
; banks into simulation memory of the uVision2 Simulator. *
; *
?B?XSTART EQU 0x8000 ; Start of xdata bank area *
?B?XEND EQU 0xFFFF ; Stop of xdata bank area *
?B?XMEM EQU XMEM+0x010000 ; First HDATA memory bank in xdata space *
; *
; The above setting redirects the symbols in the area X:0x20000 .. X:0x2FFFF *
; into the uVision2 simulation memory area for the EEPROM V:0 .. V:0xFFFF *
; *
;-----------------------------------------------------------------------------*
; *
PUBLIC ?B?XSTART, ?B?XEND, ?B?XMEM; *
ENDIF; *
; *
;******************************************************************************
; *
; THEORY OF OPERATION *
; ------------------- *
; The section below describes the code generated by BL51 or LX51 and the *
; operation of the L51_BANK.A51 module. BL51/LX51 generates for each *
; function that is located in a code memory bank and called from the common *
; area or a different code bank and entry into the INTRABANK CALL TABLE. The *
; INTRABANK CALL TABLE is located in the SEGMENT ?BANK?SELECT and listed in *
; the Linker MAP file. The entries in that TABLE have the following format: *
; *
; ?FCT?1: MOV DPTR,#FCT ; Load Address of target FCT *
; JMP ?B_BANKn ; Switch to Bank and Jump to Target Code *
; *
; Instead of directly calling the function FCT, the Linker changes the entry *
; to ?FCT?1. This entry selects the bank where the function FCT is located *
; and calls that function via the routines defined in this L51_BANK.A51 file. *
; The L51_BANK.A51 file contains two sets of functions for each bank: *
; *
; ?B_BANKn is a routine which saves the entry of the ?B_SWITCHn function *
; for the current active bank on the STACK and switches to the *
; bank 'n'. Then it jumps to the address specified by the DPTR *
; register. It is allowed to modify the following registers in *
; the ?B_BANKn routine: A, B, R0, DPTR, PSW *
; *
; ?B_SWITCHn is a function which selects the bank 'n'. This function is *
; used at the end of a user function to return to the calling *
; code bank. Only the following registers may be altered in the *
; ?B_SWITCHn function: R0, DPTR *
; *
; The current active bank is stored in ?B_CURRENTBANK. RTX-51 uses this *
; variable to restore the code bank after a task switch. To get correct *
; results, ?B_CURRENTBANK must be set to the code bank before the hardware *
; switch is done, or the code banking sequences must be interrupt protected. *
;******************************************************************************
NAME ?BANK?SWITCHING
PUBLIC ?B_NBANKS, ?B_MODE, ?B_CURRENTBANK, ?B_MASK
PUBLIC ?B_FACTOR, ?B_RST_BANK
IF (?B_RTX = 1)
PUBLIC ?B_RESTORE_BANK
ENDIF
; Standard SFR Symbols required in L51_BANK.A51
ACC DATA 0E0H
B DATA 0F0H
DPL DATA 82H
DPH DATA 83H
IE DATA 0A8H
EA BIT IE.7
; generate Mask and Bank Number Information
IF ?B_NBANKS <= 2
MASK EQU 00000001B
ELSEIF ?B_NBANKS <= 4
MASK EQU 00000011B
ELSEIF ?B_NBANKS <= 8
MASK EQU 00000111B
ELSEIF ?B_NBANKS <= 16
MASK EQU 00001111B
ELSEIF ?B_NBANKS <= 32
MASK EQU 00011111B
ELSE
MASK EQU 00111111B
ENDIF
IF ?B_MODE = 0 ;**************************************************************
?B_FACTOR EQU 1 SHL ?B_FIRSTBIT
?B_MASK EQU MASK SHL ?B_FIRSTBIT
BANKN MACRO N
BANK&N EQU N SHL ?B_FIRSTBIT
ENDM
CNT SET 0
REPT ?B_NBANKS
BANKN %CNT
CNT SET CNT+1
ENDM
?B_CURRENTBANK EQU ?B_PORT
IF ?B_RTX = 1 OR ?B_NBANKS > 32
; Convert Bank No in Accu to Address * 4
IF ?B_FIRSTBIT = 0
CONVBANKNO MACRO
RL A
RL A
ENDM
ENDIF
IF ?B_FIRSTBIT = 1
CONVBANKNO MACRO
RL A
ENDM
ENDIF
IF ?B_FIRSTBIT = 2
CONVBANKNO MACRO
ENDM
ENDIF
IF ?B_FIRSTBIT = 3
CONVBANKNO MACRO
RR A
ENDM
ENDIF
IF ?B_FIRSTBIT = 4
CONVBANKNO MACRO
RR A
RR A
ENDM
ENDIF
IF ?B_FIRSTBIT = 5
CONVBANKNO MACRO
SWAP A
RL A
ENDM
ENDIF
IF ?B_FIRSTBIT = 6
CONVBANKNO MACRO
SWAP A
ENDM
ENDIF
IF ?B_FIRSTBIT = 7
CONVBANKNO MACRO
SWAP A
RR A
ENDM
ENDIF
; Macro code to select the 'N'
SWITCH MACRO N
ORG N * 4
PUBLIC ?B_SWITCH&N
?B_SWITCH&N:
MOV R0,#(BANK&N OR NOT ?B_MASK)
IF ?B_NBANKS > 32
IF (N < 32)
SJMP SWITCHBNK_H
ELSEIF (N = 32)
SWITCHBNK_H:
SJMP SWITCHBNK
ELSEIF (N <> ?B_NBANKS-1)
SJMP SWITCHBNK
ENDIF
ELSE
IF N <> (?B_NBANKS-1)
SJMP SWITCHBNK
ENDIF
ENDIF
ENDM
ENDIF
IF ?B_RTX = 0 AND ?B_NBANKS <= 32
; Convert Bank No in Accu to Address * 8
IF ?B_FIRSTBIT = 0
CONVBANKNO MACRO
SWAP A
RR A
ENDM
ENDIF
IF ?B_FIRSTBIT = 1
CONVBANKNO MACRO
RL A
RL A
ENDM
ENDIF
IF ?B_FIRSTBIT = 2
CONVBANKNO MACRO
RL A
ENDM
ENDIF
IF ?B_FIRSTBIT = 3
CONVBANKNO MACRO
ENDM
ENDIF
IF ?B_FIRSTBIT = 4
CONVBANKNO MACRO
RR A
ENDM
ENDIF
IF ?B_FIRSTBIT = 5
CONVBANKNO MACRO
RR A
RR A
ENDM
ENDIF
IF ?B_FIRSTBIT = 6
CONVBANKNO MACRO
SWAP A
RL A
ENDM
ENDIF
IF ?B_FIRSTBIT = 7
CONVBANKNO MACRO
SWAP A
ENDM
ENDIF
; Macro code to select the 'N'
SWITCH MACRO N
ORG N * 8
PUBLIC ?B_SWITCH&N
?B_SWITCH&N:
IF N <> 0
ORL ?B_CURRENTBANK,#?B_MASK
ENDIF
IF N <> (?B_NBANKS-1)
ANL ?B_CURRENTBANK,#(BANK&N OR NOT ?B_MASK)
ENDIF
RET
ENDM
ENDIF
SELECT MACRO N
LOCAL XLABEL, YLABEL
PUBLIC ?B_BANK&N
?B_BANK&N:
MOV A,?B_CURRENTBANK
ANL A,#?B_MASK
CONVBANKNO ; Convert Bank Number to Address
PUSH ACC
MOV A,#HIGH ?BANK?SWITCH
PUSH ACC
PUSH DPL
PUSH DPH
LJMP ?B_SWITCH&N
ENDM
?BANK?SELECT SEGMENT CODE
RSEG ?BANK?SELECT
CNT SET 0
REPT ?B_NBANKS
SELECT %CNT
CNT SET CNT+1
ENDM
?BANK?SWITCH SEGMENT CODE PAGE
RSEG ?BANK?SWITCH
CNT SET 0
REPT ?B_NBANKS
SWITCH %CNT
CNT SET CNT+1
ENDM
IF ?B_RTX = 0 AND ?B_NBANKS > 32
SWITCHBNK: XCH A,R0
ORL ?B_CURRENTBANK, #?B_MASK
ANL ?B_CURRENTBANK, A
MOV A,R0
RET
ELSEIF ?B_RTX = 1
SWITCHBNK: XCH A,R0
SWITCHBNK2: JBC EA,SWITCHBNK_EA1
ORL ?B_CURRENTBANK, #?B_MASK
ANL ?B_CURRENTBANK, A
MOV A,R0
RET
SWITCHBNK_EA1: ; interrupts where enabled
ORL ?B_CURRENTBANK, #?B_MASK
ANL ?B_CURRENTBANK, A
MOV A,R0
SETB EA ; enable interrupts again
RET
?B_RESTORE_BANK: ; entry for RTX-51 bank restore
ANL A,#?B_MASK
SJMP SWITCHBNK2
ENDIF
ENDIF ; close block IF ?B_MODE = 0 *******************************************
IF ?B_MODE = 1 ;***************************************************************
?B_FACTOR EQU 1 SHL ?B_FIRSTBIT
?B_MASK EQU MASK SHL ?B_FIRSTBIT
BANKN MACRO N
BANK&N EQU N SHL ?B_FIRSTBIT
ENDM
CNT SET 0
REPT ?B_NBANKS
BANKN %CNT
CNT SET CNT+1
ENDM
?C_INITSEG SEGMENT CODE ; Segment for Variable Initialization
RSEG ?C_INITSEG
DB 01H ; IData
DB ?B_CURRENTBANK ; Init Current Bank
DB 0 ; Set to Zero
DB 41H ; XData
DW ?B_XDATAPORT ; Init XDATA Port
DB 0 ; Set to Zero
PUBLIC ?B_XDATAPORT
?BANK?DATA SEGMENT DATA
RSEG ?BANK?DATA
?B_CURRENTBANK: DS 1
IF ?B_NBANKS > 16
; Convert Bank No in Accu to Address * 4
IF ?B_FIRSTBIT = 0
CONVBANKNO MACRO
RL A
RL A
ENDM
ENDIF
IF ?B_FIRSTBIT = 1
CONVBANKNO MACRO
RL A
ENDM
ENDIF
IF ?B_FIRSTBIT = 2
CONVBANKNO MACRO
ENDM
ENDIF
IF ?B_FIRSTBIT = 3
CONVBANKNO MACRO
RR A
ENDM
ENDIF
IF ?B_FIRSTBIT = 4
CONVBANKNO MACRO
RR A
RR A
ENDM
ENDIF
IF ?B_FIRSTBIT = 5
CONVBANKNO MACRO
SWAP A
RL A
ENDM
ENDIF
IF ?B_FIRSTBIT = 6
CONVBANKNO MACRO
SWAP A
ENDM
ENDIF
IF ?B_FIRSTBIT = 7
CONVBANKNO MACRO
SWAP A
RR A
ENDM
ENDIF
; Macro code to select the 'N'
SWITCH MACRO N
ORG N * 4
PUBLIC ?B_SWITCH&N
?B_SWITCH&N:
MOV R0,#BANK&N
IF ?B_NBANKS > 32
IF (N < 32)
SJMP SWITCHBNK_H
ELSEIF (N = 32)
SWITCHBNK_H:
SJMP SWITCHBNK
ELSEIF (N <> ?B_NBANKS-1)
SJMP SWITCHBNK
ENDIF
ELSE
IF N <> (?B_NBANKS-1)
SJMP SWITCHBNK
ENDIF
ENDIF
ENDM
ENDIF
IF ?B_NBANKS <= 16
; Convert Bank No in Accu to Address * 16
IF ?B_FIRSTBIT = 0
CONVBANKNO MACRO
SWAP A
ENDM
ENDIF
IF ?B_FIRSTBIT = 1
CONVBANKNO MACRO
SWAP A
RR A
ENDM
ENDIF
IF ?B_FIRSTBIT = 2
CONVBANKNO MACRO
RL A
RL A
ENDM
ENDIF
IF ?B_FIRSTBIT = 3
CONVBANKNO MACRO
RL A
ENDM
ENDIF
IF ?B_FIRSTBIT = 4
CONVBANKNO MACRO
ENDM
ENDIF
IF ?B_FIRSTBIT = 5
CONVBANKNO MACRO
RR A
ENDM
ENDIF
IF ?B_FIRSTBIT = 6
CONVBANKNO MACRO
RR A
RR A
ENDM
ENDIF
IF ?B_FIRSTBIT = 7
CONVBANKNO MACRO
SWAP A
RL A
ENDM
ENDIF
SWITCH MACRO N
ORG N * 16
PUBLIC ?B_SWITCH&N
?B_SWITCH&N:
MOV R0,A
MOV A,#BANK&N
MOV DPTR,#?B_XDATAPORT
MOV ?B_CURRENTBANK,A
MOVX @DPTR,A
MOV A,R0
RET
ENDM
ENDIF
SELECT MACRO N
LOCAL XLABEL, YLABEL
PUBLIC ?B_BANK&N
?B_BANK&N:
MOV A,?B_CURRENTBANK
ANL A,#?B_MASK
CONVBANKNO ; Convert Bank Number to Address
PUSH ACC
MOV A,#HIGH ?BANK?SWITCH
PUSH ACC
PUSH DPL
PUSH DPH
LJMP ?B_SWITCH&N
ENDM
?BANK?SELECT SEGMENT CODE
RSEG ?BANK?SELECT
CNT SET 0
REPT ?B_NBANKS
SELECT %CNT
CNT SET CNT+1
ENDM
?BANK?SWITCH SEGMENT CODE PAGE
RSEG ?BANK?SWITCH
CNT SET 0
REPT ?B_NBANKS
SWITCH %CNT
CNT SET CNT+1
ENDM
IF ?B_NBANKS > 16
SWITCHBNK: XCH A,R0
MOV DPTR,#?B_XDATAPORT
MOV ?B_CURRENTBANK,A
MOVX @DPTR,A
MOV A,R0
RET
ENDIF
IF (?B_RTX = 1 OR ?B_VAR_BANKING = 1)
?B_RESTORE_BANK: ; entry for RTX-51/XBANKING bank restore
MOV DPTR,#?B_XDATAPORT
MOV ?B_CURRENTBANK,A
MOVX @DPTR,A
RET
ENDIF
ENDIF ; close block IF ?B_MODE = 1 *******************************************
IF ?B_MODE = 4 ;**************************************************************
?B_FACTOR EQU 0 ; Dummy Declarations
?B_FIRSTBIT EQU 0
?B_MASK EQU MASK
?BANK?SELECT SEGMENT CODE
?BANK?DATA SEGMENT DATA
RSEG ?BANK?DATA
?B_CURRENTBANK: DS 1
BANK MACRO N
PUBLIC ?B_BANK&N
?B_BANK&N:
PUSH ?B_CURRENTBANK
MOV A,#HIGH ?BANK?SWITCH
PUSH ACC
PUSH DPL
PUSH DPH
ENDM
SWITCH MACRO N
PUBLIC ?B_SWITCH&N
IF (LONG_MACRO = 1)
?B_SWITCHJ&N:
ELSE
?B_SWITCH&N:
ENDIF
MOV ?B_CURRENTBANK,#LOW ?B_SWITCH&N
SWITCH&N
RET
ENDM
IF (LONG_MACRO = 1)
SWITCHJ MACRO N
?B_SWITCH&N:
JMP ?B_SWITCHJ&N
ENDM
ENDIF
?BANK?SWITCH SEGMENT CODE PAGE
RSEG ?BANK?SWITCH
B_SWITCH_START EQU $
IF (LONG_MACRO = 1)
; Generate ?B_SWITCHn jmp table entries
CNT SET 0
REPT ?B_NBANKS
SWITCHJ %CNT
CNT SET CNT+1
ENDM
ENDIF
; Generate ?B_SWITCHn functions
CNT SET 0
REPT ?B_NBANKS
BANK %CNT
SWITCH %CNT
CNT SET CNT+1
ENDM
B_SWITCH_SIZE EQU $-B_SWITCH_START
IF (LONG_MACRO = 0) AND (B_SWITCH_SIZE > 256)
__ERROR__ "BANK SWITCH CODE BIGGER THAN 256 BYTES, SET LONG_MACRO TO 1"
ENDIF
ENDIF ; close block IF ?B_MODE = 4 *******************************************
RSEG ?BANK?SELECT
;************************ SWITCHBANK FUNCTION *******************************
; *
; SWITCHBANK allows use of bank-switching for C programs *
; *
; prototype: extern switchbank (unsigned char bank_number); *
; *
;******************************************************************************
PUBLIC _SWITCHBANK, ?B_SWITCHBANK_A
_SWITCHBANK: MOV A,R7
IF ?B_MODE = 0 ;**************************************************************
?B_SWITCHBANK_A:
IF ?B_NBANKS > 32 OR ?B_RTX = 1
RL A
RL A
ENDIF
IF ?B_NBANKS <= 16 AND ?B_RTX = 0
SWAP A
RR A
ENDIF
MOV DPTR,#?BANK?SWITCH
JMP @A+DPTR
ENDIF ; close block IF ?B_MODE = 0 *******************************************
IF ?B_MODE = 1 ;***************************************************************
?B_SWITCHBANK_A:
IF ?B_NBANKS > 16
RL A
RL A
ENDIF
IF ?B_NBANKS <= 16
SWAP A
ENDIF
MOV DPTR,#?BANK?SWITCH
JMP @A+DPTR
ENDIF ; close block IF ?B_MODE = 1 *******************************************
IF ?B_MODE = 4 ;**************************************************************
IF (?B_VAR_BANKING = 1)
SJMP ?B_SWITCHBANK_A
SELECT_BANK_R3:
MOV A,R3
DEC A
ANL A,#3FH
ENDIF
?B_SWITCHBANK_A:
MOV DPTR,#switch_tab
MOVC A,@A+DPTR
?B_RESTORE_BANK: ; entry for RTX-51/XBANKING bank restore
MOV DPTR,#?BANK?SWITCH
JMP @A+DPTR
S_ENTRY MACRO N
DB LOW ?B_SWITCH&N
ENDM
switch_tab:
CNT SET 0
REPT ?B_NBANKS
S_ENTRY %CNT
CNT SET CNT+1
ENDM
ENDIF ; close block IF ?B_MODE = 4 *******************************************
IF ?B_VAR_BANKING ;***********************************************************
;******************************************************************************
; *
; THEORY OF OPERATION *
; ------------------- *
; This section describes how the extended LX51 linker/locater manages the *
; extended address spaces that are addressed with the new C51 memory types *
; 'far' and 'far const'. The C51 Compiler uses 3 byte pointer generic *
; pointer to access these memory areas. 'far' variables are placed in the *
; memory class HDATA and 'far const' variables get the memory class 'HCONST'. *
; The LX51 linker/locater allows you to locate these memory classes in the *
; logical 16 MBYTE CODE or 16 MBYTE XDATA spaces. *
; *
; The memory access itself is performed via eight different subroutines that *
; can be configured in this assembler module. These routines are: *
; ?C?CLDXPTR, ?C?CSTXPTR ; load/store BYTE (char) in extended memory *
; ?C?ILDXPTR, ?C?ISTXPTR ; load/store WORD (int) in extended memory *
; ?C?PLDXPTR, ?C?PSTXPTR ; load/store 3-BYTE PTR in extended memory *
; ?C?LLDXPTR, ?C?LSTXPTR ; load/store DWORD (long) in extended memory *
; *
; Each function gets as a parameter the memory address with 3 BYTE POINTER *
; representation in the CPU registers R1/R2/R3. The register R3 holds the *
; memory type. The C51 compiler uses the following memory types: *
; *
; R3 Value | Memory Type | Memory Class | Address Range *
; -----------------------+--------------+-------------------------- *
; 00 | data/idata | DATA/IDATA | I:0x00 .. I:0xFF *
; 01 | xdata | XDATA | X:0x0000 .. X:0xFFFF *
; 02..7F | far | HDATA | X:0x010000 .. X:0x7E0000 *
; 80..FD | far const | HCONST | C:0x800000 .. C:0xFD0000 (see note) *
; FE | pdata | XDATA | one 256-byte page in XDATA memory *
; FF | code | CODE | C:0x0000 .. C:0xFFFF *
; *
; Note: the far const memory area is mapped into the banked memory areas. *
; *
; The R3 values 00, 01, FE and FF are already handled within the C51 run-time *
; library. Only the values 02..FE are passed to the XPTR access functions *
; described below. The AX51 macro assembler provides the MBYTE operator *
; that calculates the R3 value that needs to be passed to the XPTR access *
; function. AX51 Assembler example for using XPTR access functions: *
; MOV R1,#LOW (variable) ; gives LSB address byte of variable *
; MOV R1,#HIGH (variable) ; gives MSB address byte of variable *
; MOV R1,#MBYTE (variable) ; gives memory type byte of variable *
; CALL ?C?CLDXPTR ; load BYTE variable into A *
;******************************************************************************
PUBLIC ?C?CLDXPTR, ?C?CSTXPTR, ?C?ILDXPTR, ?C?ISTXPTR
PUBLIC ?C?PLDXPTR, ?C?PSTXPTR, ?C?LLDXPTR, ?C?LSTXPTR
?C?LIB_CODE SEGMENT CODE
RSEG ?C?LIB_CODE
IF ?B_MODE = 0 OR ?B_MODE = 1 ;*********************************************
; Define Helper Macros
; Shift Bank No in Accu to correct bit position
IF ?B_FIRSTBIT = 0
CONV_MSPC MACRO
ANL A,#LOW (MASK)
ENDM
ENDIF
IF ?B_FIRSTBIT = 1
CONV_MSPC MACRO
RL A
ANL A,#LOW (MASK SHL 1)
ENDM
ENDIF
IF ?B_FIRSTBIT = 2
CONV_MSPC MACRO
RL A
RL A
ANL A,#LOW (MASK SHL 2)
ENDM
ENDIF
IF ?B_FIRSTBIT = 3
CONV_MSPC MACRO
SWAP A
RR A
ANL A,#LOW (MASK SHL 3)
ENDM
ENDIF
IF ?B_FIRSTBIT = 4
CONV_MSPC MACRO
SWAP A
ANL A,#LOW (MASK SHL 4)
ENDM
ENDIF
IF ?B_FIRSTBIT = 5
CONV_MSPC MACRO
SWAP A
RL A
ANL A,#LOW (MASK SHL 5)
ENDM
ENDIF
IF ?B_FIRSTBIT = 6
CONV_MSPC MACRO
RR A
RR A
ANL A,#LOW (MASK SHL 6)
ENDM
ENDIF
IF ?B_FIRSTBIT = 7
CONV_MSPC MACRO
RR A
ANL A,#LOW (MASK SHL 7)
ENDM
ENDIF
ENDIF ; close block IF ?B_MODE = 0 OR ?B_MODE = 1 *************************
IF ?B_MODE = 0 ;**************************************************************
; Select Bank depending on value in R3
SEL_BNK MACRO SaveA
IF NOT NUL SaveA
PUSH ACC
ENDIF
CALL SELECT_BANK_R3
IF NOT NUL SaveA
POP ACC
ENDIF
ENDM
; Pop previous Bank and select it again
POP_BNK MACRO SaveA
LOCAL BNK_EA1
IF NOT NUL SaveA
MOV DPL,A
ENDIF
POP ACC ; bank information
ANL A,#?B_MASK
IF ?B_RTX = 1
JBC EA,BNK_EA1
ENDIF
ORL ?B_CURRENTBANK, #?B_MASK
ANL ?B_CURRENTBANK, A
IF NOT NUL SaveA
MOV A,DPL
ENDIF
RET
BNK_EA1: ; interrupts where enabled
IF ?B_RTX = 1
ORL ?B_CURRENTBANK, #?B_MASK
ANL ?B_CURRENTBANK, A
SETB EA ; enable interrupts again
IF NOT NUL SaveA
MOV A,DPL
ENDIF
RET
ENDIF
ENDM
SELECT_BANK_R3:
MOV A,R3
DEC A
CONV_MSPC
MOV DPL,R1
MOV DPH,R2
CJNE R3,#80H,SEL_BANK_LAB ; set CY
SEL_BANK_lab:
IF ?B_RTX = 1
JBC EA,SEL_BANK_EA1
ENDIF
ORL ?B_CURRENTBANK, #?B_MASK
ANL ?B_CURRENTBANK, A
RET
SEL_BANK_EA1: ; interrupts where enabled
IF ?B_RTX = 1
ORL ?B_CURRENTBANK, #?B_MASK
ANL ?B_CURRENTBANK, A
SETB EA ; enable interrupts again
RET
ENDIF
ENDIF ; close block IF ?B_MODE = 0 *******************************************
IF ?B_MODE = 1 ;***************************************************************
; Select Bank depending on value in R3
SEL_BNK MACRO SaveA
LOCAL lab
IF NOT NUL SaveA
PUSH ACC
ENDIF
CALL SELECT_BANK_R3
IF NOT NUL SaveA
POP ACC
ENDIF
ENDM
; Pop previous Bank and select it again
POP_BNK MACRO SaveA
IF NOT NUL SaveA
POP DPL
XCH A,DPL
PUSH DPL
ELSE
POP ACC
ENDIF
MOV DPTR,#?B_XDATAPORT
MOV ?B_CURRENTBANK,A
MOVX @DPTR,A
IF NOT NUL SaveA
POP ACC
ENDIF
RET
ENDM
SELECT_BANK_R3:
MOV A,R3
DEC A
CONV_MSPC
MOV DPTR,#?B_XDATAPORT
MOV ?B_CURRENTBANK,A
MOVX @DPTR,A
MOV DPL,R1
MOV DPH,R2
CJNE R3,#80H,SEL_BANK_LAB ; set CY
SEL_BANK_LAB:
RET
ENDIF ; close block IF ?B_MODE = 1 *******************************************
IF ?B_MODE = 4 ;**************************************************************
; Select Bank depending on value in R3
SEL_BNK MACRO SaveA
LOCAL lab
IF NOT NUL SaveA
PUSH ACC
ENDIF
CALL SELECT_BANK_R3
IF NOT NUL SaveA
POP ACC
ENDIF
MOV DPL,R1
MOV DPH,R2
CJNE R3,#80H,lab
lab:
ENDM
; Pop previous Bank and select it again
POP_BNK MACRO SaveA
IF NOT NUL SaveA
POP DPL
XCH A,DPL
PUSH DPL
CALL ?B_RESTORE_BANK
POP ACC
RET
ELSE
POP ACC
MOV DPTR,#?BANK?SWITCH
JMP @A+DPTR
ENDIF
ENDM
OP_1 MACRO
ENDM
OP_0 MACRO
ENDM
ENDIF ; close block IF ?B_MODE = 4 *******************************************
; CLDXPTR: Load BYTE in A via Address given in R1/R2/R3
?C?CLDXPTR: PUSH ?B_CURRENTBANK
SEL_BNK
JNC CLDCODE
OP_1
MOVX A,@DPTR
OP_0
SJMP RETURN_A
CLDCODE:
CLR A
MOVC A,@A+DPTR
RETURN_A: POP_BNK 1
; CSTXPTR: Store BYTE in A via Address given in R1/R2/R3
?C?CSTXPTR: PUSH ?B_CURRENTBANK
SEL_BNK 1
JNC CSTCODE
OP_1
MOVX @DPTR,A
OP_0
CSTCODE: SJMP RETURN_A ; correct 10.5.2002
; ILDXPTR: Load WORD in A(LSB)/B(HSB) via Address given in R1/R2/R3
?C?ILDXPTR: PUSH ?B_CURRENTBANK
SEL_BNK
JNC ILDCODE
OP_1
MOVX A,@DPTR
MOV B,A
INC DPTR
MOVX A,@DPTR
OP_0
SJMP RETURN_A
ILDCODE:
CLR A
MOVC A,@A+DPTR
MOV B,A
MOV A,#1
MOVC A,@A+DPTR
SJMP RETURN_A
; ISTXPTR: Store WORD in A(HSB)/B(LSB) via Address given in R1/R2/R3
?C?ISTXPTR: PUSH ?B_CURRENTBANK
SEL_BNK 1
JNC ISTCODE
OP_1
MOVX @DPTR,A
INC DPTR
MOV A,B
MOVX @DPTR,A
OP_0
ISTCODE: SJMP RETURN_NO_A
; PLDXPTR: Load PTR in R1/R2/R3 via Address given in R1/R2/R3
?C?PLDXPTR: PUSH ?B_CURRENTBANK
SEL_BNK
JNC PLDCODE
OP_1
MOVX A,@DPTR
MOV R3,A
INC DPTR
MOVX A,@DPTR
MOV R2,A
INC DPTR
MOVX A,@DPTR
MOV R1,A
OP_0
SJMP RETURN_NO_A
PLDCODE:
CLR A
MOVC A,@A+DPTR
MOV R3,A
MOV A,#1
MOVC A,@A+DPTR
MOV R2,A
MOV A,#2
MOVC A,@A+DPTR
MOV R1,A
RETURN_NO_A: POP_BNK
; PSTXPTR: Store PTR in R0/A/B via Address given in R1/R2/R3
?C?PSTXPTR: PUSH ?B_CURRENTBANK
SEL_BNK 1
JNC PSTCODE
OP_1
XCH A,B
MOVX @DPTR,A
INC DPTR
XCH A,B
MOVX @DPTR,A
INC DPTR
MOV A,R0
MOVX @DPTR,A
OP_0
PSTCODE: SJMP RETURN_NO_A
; LLDXPTR: Load DWORD in R4/R5/R6/R7 via Address given in R1/R2/R3
?C?LLDXPTR: PUSH ?B_CURRENTBANK
SEL_BNK
JNC LLDCODE
OP_1
MOVX A,@DPTR
MOV R4,A
INC DPTR
MOVX A,@DPTR
MOV R5,A
INC DPTR
MOVX A,@DPTR
MOV R6,A
INC DPTR
MOVX A,@DPTR
MOV R7,A
OP_0
SJMP RETURN_NO_A
LLDCODE:
CLR A
MOVC A,@A+DPTR
MOV R4,A
MOV A,#1
MOVC A,@A+DPTR
MOV R5,A
MOV A,#2
MOVC A,@A+DPTR
MOV R6,A
MOV A,#3
MOVC A,@A+DPTR
MOV R7,A
SJMP RETURN_NO_A
; LSTXPTR: Store DWORD in R4/R5/R6/R7 via Address given in R1/R2/R3
?C?LSTXPTR: PUSH ?B_CURRENTBANK
SEL_BNK
JNC LSTCODE
OP_1
MOV A,R4
MOVX @DPTR,A
INC DPTR
MOV A,R5
MOVX @DPTR,A
INC DPTR
MOV A,R6
MOVX @DPTR,A
INC DPTR
MOV A,R7
MOVX @DPTR,A
OP_0
LSTCODE: SJMP RETURN_NO_A
ENDIF ; close block IF ?B_VAR_BANKING ****************************************
END
|
; SYS-DOS 1.1 Alpha Written by Aiden Moechnig 9/19/2021
;=========================================================== START
mov ax, 0
mov bx, 0
mov cx, 0
mov dx, 0
call linefeed
call new
;=========================================================== MAIN LOOP
main:
mov ah, 0x02
mov dl, bl
mov dh, cl
int 10
mov ah, 0x00
int 16h
cmp al, 'v'
je cmdv
cmp al, 'b'
je cmdb
cmp al, 'c'
je cmdc
cmp al, 'd'
je cmdd
cmp al, 'f'
je cmdf
cmp al, 'h'
je cmdh
jmp main
;=========================================================== COMMANDS
;-------------------- COMMAND V
cmdv:
mov al, 'V'
call lettergen
call linefeed
call string4
call new
jmp main
;-------------------- COMMAND B
cmdb:
mov al, 'B'
call lettergen
call linefeed
call string6
mov ch, 0
mov cl, 7
mov ah, 1
int 10h
call new
jmp main
;-------------------- COMMAND C
cmdc:
mov ah,06h ;clear screen instruction
mov al,00h ;number of lines to scroll
mov bh,0Fh ;display attribute - colors
mov ch,00d ;start row
mov cl,00d ;start col
mov dh,24d ;end of row
mov dl,79d ;end of col
int 10h ;BIOS interrupt
mov dh, 0
mov dl, 0
mov bh, 0
mov ah, 2
int 0x10
call new
jmp main
;-------------------- COMMAND D
cmdd:
mov al, 'D'
call lettergen
call linefeed
call string8
int 0x11
mov cx, ax
or cl, 111111b
not cl
cmp cl, 192d
je _1disk
cmp cl, 128d
je _2disk
cmp cl, 64d
je _3disk
cmp cl, 0d
je _4disk
jmp main
_finishdisk:
call lettergen
call new
jmp main
_1disk:
mov al, '1'
jmp _finishdisk
_2disk:
mov al, '2'
jmp _finishdisk
_3disk:
mov al, '3'
jmp _finishdisk
_4disk:
mov al, '4'
jmp _finishdisk
jmp main
;-------------------- COMMAND F
cmdf:
mov al, 'F'
call lettergen
call linefeed
call string5
mov ch, 6
mov cl, 7
mov ah, 1
int 10h
call new
jmp main
;-------------------- COMMAND H
cmdh:
mov al, 'H'
call lettergen
call linefeed
call string7
call new
jmp main
;=========================================================== ROUTINES
;-------------------- ROUTINE new command entry
new:
call linefeed
call linefeed
mov al, '$'
call lettergen
ret
;-------------------- ROUTINE lettergen
lettergen:
mov ah, 0x0e
int 10h
ret
;-------------------- ROUTINE line feed
linefeed:
mov cl, dh
mov ah, 2
int 0x10
mov al, 0x0a
call lettergen
add cl, 1
mov dh, cl
mov dl, 0
mov ah, 2
int 0x10
ret
;=========================================================== STRINGS
;-------------------- STRING4
string4:
mov al, 'v'
call lettergen
mov al, 'e'
call lettergen
mov al, 'r'
call lettergen
mov al, ' '
call lettergen
mov al, '1'
call lettergen
mov al, '.'
call lettergen
mov al, '1'
call lettergen
mov al, ' '
call lettergen
mov al, 'a'
call lettergen
mov al, 'l'
call lettergen
mov al, 'p'
call lettergen
mov al, 'h'
call lettergen
mov al, 'a'
call lettergen
ret
;-------------------- STRING5 "Cursor set to flat"
string5:
mov al, 'C'
call lettergen
mov al, 'u'
call lettergen
mov al, 'r'
call lettergen
mov al, 's'
call lettergen
mov al, 'o'
call lettergen
mov al, 'r'
call lettergen
mov al, ' '
call lettergen
mov al, 's'
call lettergen
mov al, 'e'
call lettergen
mov al, 't'
call lettergen
mov al, ' '
call lettergen
mov al, 't'
call lettergen
mov al, 'o'
call lettergen
mov al, ' '
call lettergen
mov al, 'f'
call lettergen
mov al, 'l'
call lettergen
mov al, 'a'
call lettergen
mov al, 't'
call lettergen
ret
;-------------------- STRING6 "Cursor set to box"
string6:
mov al, 'C'
call lettergen
mov al, 'u'
call lettergen
mov al, 'r'
call lettergen
mov al, 's'
call lettergen
mov al, 'o'
call lettergen
mov al, 'r'
call lettergen
mov al, ' '
call lettergen
mov al, 's'
call lettergen
mov al, 'e'
call lettergen
mov al, 't'
call lettergen
mov al, ' '
call lettergen
mov al, 't'
call lettergen
mov al, 'o'
call lettergen
mov al, ' '
call lettergen
mov al, 'b'
call lettergen
mov al, 'o'
call lettergen
mov al, 'x'
call lettergen
ret
;-------------------- STRING7 "[B] boxcsr, [D] # of flpydsk drives, [F] flatcsr, [M] chk for math co-p [V] version"
string7:
mov al, 'C'
call lettergen
mov al, ':'
call lettergen
mov al, ' '
call lettergen
mov al, 'c'
call lettergen
mov al, 'l'
call lettergen
mov al, 'e'
call lettergen
mov al, 'a'
call lettergen
mov al, 'r'
call lettergen
mov al, ' '
call lettergen
mov al, 's'
call lettergen
mov al, 'c'
call lettergen
mov al, 'r'
call lettergen
mov al, 'e'
call lettergen
mov al, 'e'
call lettergen
mov al, 'n'
call lettergen
call linefeed
mov al, 'B'
call lettergen
mov al, ':'
call lettergen
mov al, ' '
call lettergen
mov al, 'b'
call lettergen
mov al, 'o'
call lettergen
mov al, 'x'
call lettergen
mov al, ' '
call lettergen
mov al, 'c'
call lettergen
mov al, 'u'
call lettergen
mov al, 'r'
call lettergen
mov al, 's'
call lettergen
mov al, 'o'
call lettergen
mov al, 'r'
call lettergen
call linefeed
mov al, 'D'
call lettergen
mov al, ':'
call lettergen
mov al, ' '
call lettergen
mov al, '#'
call lettergen
mov al, ' '
call lettergen
mov al, 'o'
call lettergen
mov al, 'f'
call lettergen
mov al, ' '
call lettergen
mov al, 'f'
call lettergen
mov al, 'l'
call lettergen
mov al, 'o'
call lettergen
mov al, 'p'
call lettergen
mov al, 'p'
call lettergen
mov al, 'y'
call lettergen
mov al, ' '
call lettergen
mov al, 'd'
call lettergen
mov al, 'i'
call lettergen
mov al, 's'
call lettergen
mov al, 'k'
call lettergen
mov al, ' '
call lettergen
mov al, 'd'
call lettergen
mov al, 'r'
call lettergen
mov al, 'i'
call lettergen
mov al, 'v'
call lettergen
mov al, 'e'
call lettergen
mov al, 's'
call lettergen
call linefeed
mov al, 'F'
call lettergen
mov al, ':'
call lettergen
mov al, ' '
call lettergen
mov al, 'f'
call lettergen
mov al, 'l'
call lettergen
mov al, 'a'
call lettergen
mov al, 't'
call lettergen
mov al, ''
call lettergen
mov al, 'c'
call lettergen
mov al, 'u'
call lettergen
mov al, 'r'
call lettergen
mov al, 's'
call lettergen
mov al, 'o'
call lettergen
mov al, 'r'
call lettergen
call linefeed
mov al, 'V'
call lettergen
mov al, ':'
call lettergen
mov al, ' '
call lettergen
mov al, 'v'
call lettergen
mov al, 'e'
call lettergen
mov al, 'r'
call lettergen
mov al, 's'
call lettergen
mov al, 'i'
call lettergen
mov al, 'o'
call lettergen
mov al, 'n'
call lettergen
ret
;-------------------- STRING8 "# of flpydsk drives: "
string8:
mov al, '#'
call lettergen
mov al, ' '
call lettergen
mov al, 'o'
call lettergen
mov al, 'f'
call lettergen
mov al, ' '
call lettergen
mov al, 'f'
call lettergen
mov al, 'l'
call lettergen
mov al, 'o'
call lettergen
mov al, 'p'
call lettergen
mov al, 'p'
call lettergen
mov al, 'y'
call lettergen
mov al, ' '
call lettergen
mov al, 'd'
call lettergen
mov al, 'i'
call lettergen
mov al, 's'
call lettergen
mov al, 'k'
call lettergen
mov al, ' '
call lettergen
mov al, 'd'
call lettergen
mov al, 'r'
call lettergen
mov al, 'i'
call lettergen
mov al, 'v'
call lettergen
mov al, 'e'
call lettergen
mov al, 's'
call lettergen
mov al, ':'
call lettergen
mov al, ' '
call lettergen
ret |
;header for SNES
.segment "SNESHEADER"
;$00FFC0-$00FFFF
.byte "EXAMPLE 7 " ;rom name 21 chars
.byte $30 ;LoROM FastROM
.byte $00 ; extra chips in cartridge, 00: no extra RAM; 02: RAM with battery
.byte $08 ; ROM size (2^# in kB)
.byte $00 ; backup RAM size
.byte $01 ; US
.byte $33 ; publisher id
.byte $00 ; ROM revision number
.word $0000 ; checksum of all bytes
.word $0000 ; $FFFF minus checksum
;ffe0 not used
.word $0000
.word $0000
;ffe4 - native mode vectors
.addr IRQ_end ;cop native **
.addr IRQ_end ;brk native **
.addr $0000 ;abort native not used *
.addr NMI ;nmi native
.addr RESET ;RESET native
.addr IRQ ;irq native
;fff0 not used
.word $0000
.word $0000
;fff4 - emulation mode vectors
.addr IRQ_end ;cop emulation **
.addr $0000 ; not used
.addr $0000 ;abort not used *
.addr IRQ_end ;nmi emulation
.addr RESET ;RESET emulation
.addr IRQ_end ;irq/brk emulation **
;* the SNES doesn't use the ABORT vector
;**the programmer could insert COP or BRK as debugging tools
;The SNES boots up in emulation mode, but then immediately
; will be set in software to native mode
;IRQ_end is just an RTI
;the vectors here need to be in bank 00
;The SNES never looks at the checksum. Some emulators
;will give a warning message, if the checksum is wrong,
;but it shouldn't matter. It will still run.
|
; A346515: a(n) = n*(n+2)*(n+4)*(n+6)*(n+8)*(n+10)*(n+12)*(n+14).
; 0,2027025,10321920,34459425,92897280,218243025,464486400,916620705,1703116800,3011753745,5109350400,8365982625,13284311040,20534684625,30996725760,45808142625,66421555200,94670161425,132843110400,183771489825,250925875200,338526428625,451666575360
mov $2,$0
mov $0,8
mov $3,1
lpb $0
sub $0,1
mul $3,$2
add $2,2
lpe
mov $0,$3
|
/** \file tb2flowbasedconstr.hpp
* \brief Global constraint using flow networks structure for propagation
*
*/
#ifndef TB2FLOWBASEDCONSTR_HPP_
#define TB2FLOWBASEDCONSTR_HPP_
#include "tb2globalconstr.hpp"
#include "tb2graph.hpp"
class FlowBasedGlobalConstraint : public GlobalConstraint {
protected:
// graph : the flow network corresponding to current cost measure
Graph* graph;
StoreCost cost;
// zeroEdges : store the edges containing in a zero cycle.
// zeroEdges[i][j] returns true if (i,j) lies in a zero cycle.
bool** zeroEdges;
bool hasConfigOrganized;
// mapval : map the value to the node in the network
map<Value, int> mapval;
// mapto : map the assignment to the corresponding edge in the network
virtual pair<int, int> mapto(int varindex, Value val)
{
return make_pair(varindex + 1, mapval[val]);
}
// compute the projection from the network. store the projected cost in
// the map delta
virtual void findProjection(Graph& graph, StoreCost& cost, int varindex, map<Value, Cost>& delta);
void findProjection(int varindex, map<Value, Cost>& delta)
{
findProjection(*graph, cost, varindex, delta);
}
// check whether the network corresponding to the current domains
// remove any edge which is corresponded to an infeasible assignment
virtual void checkRemoved(Graph& graph, StoreCost& cost, vector<int>& rmv);
void checkRemoved(vector<int>& rmv)
{
checkRemoved(*graph, cost, rmv);
}
virtual void changeAfterExtend(vector<int>& supports, vector<map<Value, Cost>>& deltas);
virtual void changeAfterProject(vector<int>& supports, vector<map<Value, Cost>>& deltas);
virtual void undoExtend() {}
// construct the flow network
virtual size_t GetGraphAllocatedSize() = 0;
virtual void buildGraph(Graph& g) = 0;
//inline void buildGraph() {buildGraph(graph);}
inline void augmentGraph(int varindex, map<Value, Cost>& delta)
{
augmentStructure(*graph, cost, varindex, delta);
graph->removeNegativeCycles(cost);
}
// construct the flow in the network
// the network changed to the residual network
virtual Cost constructFlow(Graph& g);
//inline Cost constructFlow() {return constructFlow(graph);}
// compute the domains of a variable from the network
virtual void getDomainFromGraph(Graph& graph, int varindex, vector<int>& domain);
// augment the network by increasing the weight of the edegs
// corresponding to the assignment of varindex according to delta
virtual void augmentStructure(Graph& graph, StoreCost& cost, int varindex, map<Value, Cost>& delta);
// compute the cost according to the original cost structure
virtual Cost evalOriginal(const Tuple& s) { return MIN_COST; }
virtual Cost getMinCost()
{
return cost;
}
public:
FlowBasedGlobalConstraint(WCSP* wcsp, EnumeratedVariable** scope_in, int arity_in);
virtual ~FlowBasedGlobalConstraint();
virtual void organizeConfig() {}
virtual void initStructure();
virtual void end() {}
//void propagate();
// check whether the consistency is achieved
bool verify() { return true; }
#ifndef NDEBUG
bool isStrongNIC();
bool isGAC();
bool isFDGAC();
bool isEDGAC();
#endif
};
#endif /*TB2FLOWBASEDCONSTR_HPP_*/
/* Local Variables: */
/* c-basic-offset: 4 */
/* tab-width: 4 */
/* indent-tabs-mode: nil */
/* c-default-style: "k&r" */
/* End: */
|
; ===============================================================
; Z80 aPLib decompression library
; version 1.2
; 1/12/2008
; Maxim (http://www.smspower.org/maxim)
; based on code by Dan Weiss (Dwedit) - see readme.txt
; ===============================================================
;
; void aplib_depack(void *dst, void *src)
;
; Decompress the compressed block at address src to address dst.
;
; ===============================================================
SECTION code_clib
SECTION code_compress_aplib
PUBLIC asm_aplib_depack
EXTERN __aplib_var_bits, __aplib_var_byte
EXTERN __aplib_var_LWM, __aplib_var_R0
EXTERN __aplib_getbit, __aplib_getbitbc, __aplib_getgamma
_apbranch2:
;use a gamma code * 256 for offset, another gamma code for length
call __aplib_getgamma
dec bc
dec bc
ld a,(__aplib_var_LWM)
or a
jr nz,_ap_not_LWM
;bc = 2? ; Maxim: I think he means 0
ld a,b
or c
jr nz,_ap_not_zero_gamma
;if gamma code is 2, use old R0 offset, and a new gamma code for length
call __aplib_getgamma
push hl
ld h,d
ld l,e
push bc
ld bc,(__aplib_var_R0)
sbc hl,bc
pop bc
ldir
pop hl
jr _ap_finishup
_ap_not_zero_gamma:
dec bc
_ap_not_LWM:
;do I even need this code? ; Maxim: seems so, it's broken without it
;bc=bc*256+(hl), lazy 16bit way
ld b,c
ld c,(hl)
inc hl
ld (__aplib_var_R0),bc
push bc
call __aplib_getgamma
ex (sp),hl
;bc = len, hl=offs
push de
ex de,hl
;some comparison junk for some reason
; Maxim: optimised to use add instead of sbc
ld hl,-32000
add hl,de
jr nc, l0
inc bc
l0: ld hl,-1280
add hl,de
jr nc, l1
inc bc
l1: ld hl,-128
add hl,de
jr c, l2
inc bc
inc bc
l2: ;bc = len, de = offs, hl=junk
pop hl
push hl
or a
sbc hl,de
pop de
;hl=dest-offs, bc=len, de = dest
ldir
pop hl
_ap_finishup:
ld a,1
ld (__aplib_var_LWM),a
jr _aploop
_apbranch1: ; Maxim: moved this one closer to where it's jumped from to allow jr to work and save 2 bytes
ldi
xor a
ld (__aplib_var_LWM),a
jr _aploop
asm_aplib_depack:
; enter : hl = void *src
; de = void *dst
;
; uses : af, bc, de, hl
ldi
xor a
ld (__aplib_var_LWM),a
inc a
ld (__aplib_var_bits),a
_aploop:
call __aplib_getbit
jr z, _apbranch1
call __aplib_getbit
jr z, _apbranch2
call __aplib_getbit
jr z, _apbranch3
;LWM = 0
xor a
ld (__aplib_var_LWM),a
;get an offset
ld bc,0
call __aplib_getbitbc
call __aplib_getbitbc
call __aplib_getbitbc
call __aplib_getbitbc
ld a,b
or c
jr nz,_apbranch4
; xor a ;write a 0 ; Maxim: a is zero already (just failed nz test), optimise this line away
ld (de),a
inc de
jr _aploop
_apbranch4:
ex de,hl ;write a previous bit (1-15 away from dest)
push hl
sbc hl,bc
ld a,(hl)
pop hl
ld (hl),a
inc hl
ex de,hl
jr _aploop
_apbranch3:
;use 7 bit offset, length = 2 or 3
;if a zero is encountered here, it's EOF
ld c,(hl)
inc hl
rr c
ret z
ld b,2
jr nc, m0
inc b
m0: ;LWM = 1
ld a,1
ld (__aplib_var_LWM),a
push hl
ld a,b
ld b,0
;R0 = c
ld (__aplib_var_R0),bc
ld h,d
ld l,e
or a
sbc hl,bc
ld c,a
ldir
pop hl
jr _aploop
|
<%
import collections
import pwnlib.abi
import pwnlib.constants
import pwnlib.shellcraft
import six
%>
<%docstring>ptrace(request, vararg_0, vararg_1, vararg_2, vararg_3, vararg_4) -> str
Invokes the syscall ptrace.
See 'man 2 ptrace' for more information.
Arguments:
request(ptrace_request): request
vararg(int): vararg
Returns:
long
</%docstring>
<%page args="request=0, vararg_0=None, vararg_1=None, vararg_2=None, vararg_3=None, vararg_4=None"/>
<%
abi = pwnlib.abi.ABI.syscall()
stack = abi.stack
regs = abi.register_arguments[1:]
allregs = pwnlib.shellcraft.registers.current()
can_pushstr = []
can_pushstr_array = []
argument_names = ['request', 'vararg_0', 'vararg_1', 'vararg_2', 'vararg_3', 'vararg_4']
argument_values = [request, vararg_0, vararg_1, vararg_2, vararg_3, vararg_4]
# Load all of the arguments into their destination registers / stack slots.
register_arguments = dict()
stack_arguments = collections.OrderedDict()
string_arguments = dict()
dict_arguments = dict()
array_arguments = dict()
syscall_repr = []
for name, arg in zip(argument_names, argument_values):
if arg is not None:
syscall_repr.append('%s=%r' % (name, arg))
# If the argument itself (input) is a register...
if arg in allregs:
index = argument_names.index(name)
if index < len(regs):
target = regs[index]
register_arguments[target] = arg
elif arg is not None:
stack_arguments[index] = arg
# The argument is not a register. It is a string value, and we
# are expecting a string value
elif name in can_pushstr and isinstance(arg, (six.binary_type, six.text_type)):
if isinstance(arg, six.text_type):
arg = arg.encode('utf-8')
string_arguments[name] = arg
# The argument is not a register. It is a dictionary, and we are
# expecting K:V paris.
elif name in can_pushstr_array and isinstance(arg, dict):
array_arguments[name] = ['%s=%s' % (k,v) for (k,v) in arg.items()]
# The arguent is not a register. It is a list, and we are expecting
# a list of arguments.
elif name in can_pushstr_array and isinstance(arg, (list, tuple)):
array_arguments[name] = arg
# The argument is not a register, string, dict, or list.
# It could be a constant string ('O_RDONLY') for an integer argument,
# an actual integer value, or a constant.
else:
index = argument_names.index(name)
if index < len(regs):
target = regs[index]
register_arguments[target] = arg
elif arg is not None:
stack_arguments[target] = arg
# Some syscalls have different names on various architectures.
# Determine which syscall number to use for the current architecture.
for syscall in ['SYS_ptrace']:
if hasattr(pwnlib.constants, syscall):
break
else:
raise Exception("Could not locate any syscalls: %r" % syscalls)
%>
/* ptrace(${', '.join(syscall_repr)}) */
%for name, arg in string_arguments.items():
${pwnlib.shellcraft.pushstr(arg, append_null=(b'\x00' not in arg))}
${pwnlib.shellcraft.mov(regs[argument_names.index(name)], abi.stack)}
%endfor
%for name, arg in array_arguments.items():
${pwnlib.shellcraft.pushstr_array(regs[argument_names.index(name)], arg)}
%endfor
%for name, arg in stack_arguments.items():
${pwnlib.shellcraft.push(arg)}
%endfor
${pwnlib.shellcraft.setregs(register_arguments)}
${pwnlib.shellcraft.syscall(syscall)} |
.global s_prepare_buffers
s_prepare_buffers:
push %r10
push %r11
push %r12
push %r8
push %rbp
push %rcx
push %rdi
push %rsi
lea addresses_A_ht+0x85bb, %r10
cmp $47485, %rbp
movw $0x6162, (%r10)
nop
nop
nop
nop
nop
add %r10, %r10
lea addresses_UC_ht+0x1a3e7, %r11
nop
nop
nop
nop
nop
add %rcx, %rcx
movb (%r11), %r8b
and %r10, %r10
lea addresses_WT_ht+0x15587, %rsi
clflush (%rsi)
nop
nop
inc %rdi
movb (%rsi), %cl
sub %rcx, %rcx
lea addresses_A_ht+0x16ee7, %rbp
nop
nop
nop
dec %r8
movw $0x6162, (%rbp)
nop
nop
nop
add $7648, %rbp
lea addresses_WC_ht+0x1aa7, %r10
nop
nop
nop
nop
inc %r8
mov $0x6162636465666768, %rsi
movq %rsi, %xmm3
and $0xffffffffffffffc0, %r10
vmovntdq %ymm3, (%r10)
nop
nop
dec %r11
lea addresses_normal_ht+0x3267, %rcx
nop
nop
nop
and %rdi, %rdi
and $0xffffffffffffffc0, %rcx
vmovaps (%rcx), %ymm4
vextracti128 $1, %ymm4, %xmm4
vpextrq $1, %xmm4, %r8
nop
cmp $18001, %r8
lea addresses_WT_ht+0x83e7, %rdi
nop
nop
add $28171, %rsi
mov (%rdi), %ecx
nop
nop
nop
xor $58362, %r11
lea addresses_normal_ht+0xd96f, %r11
nop
nop
nop
add $31746, %rbp
movb $0x61, (%r11)
nop
sub %r8, %r8
lea addresses_normal_ht+0x467d, %rsi
lea addresses_UC_ht+0x150e7, %rdi
cmp %r12, %r12
mov $91, %rcx
rep movsl
nop
nop
cmp %r11, %r11
lea addresses_UC_ht+0xb15f, %rsi
lea addresses_normal_ht+0x19c37, %rdi
clflush (%rdi)
cmp $43617, %r11
mov $18, %rcx
rep movsl
nop
nop
nop
nop
nop
add %rsi, %rsi
pop %rsi
pop %rdi
pop %rcx
pop %rbp
pop %r8
pop %r12
pop %r11
pop %r10
ret
.global s_faulty_load
s_faulty_load:
push %r10
push %r12
push %r14
push %r8
push %r9
push %rax
// Store
lea addresses_WT+0x12e67, %r14
nop
nop
nop
mfence
movl $0x51525354, (%r14)
// Exception!!!
nop
nop
mov (0), %r10
nop
nop
nop
and $54983, %r10
// Faulty Load
mov $0x6fa27800000002e7, %r10
sub $55936, %r12
vmovups (%r10), %ymm7
vextracti128 $1, %ymm7, %xmm7
vpextrq $1, %xmm7, %r14
lea oracles, %r10
and $0xff, %r14
shlq $12, %r14
mov (%r10,%r14,1), %r14
pop %rax
pop %r9
pop %r8
pop %r14
pop %r12
pop %r10
ret
/*
<gen_faulty_load>
[REF]
{'OP': 'LOAD', 'src': {'type': 'addresses_NC', 'AVXalign': False, 'congruent': 0, 'size': 1, 'same': False, 'NT': False}}
{'OP': 'STOR', 'dst': {'type': 'addresses_WT', 'AVXalign': False, 'congruent': 7, 'size': 4, 'same': False, 'NT': False}}
[Faulty Load]
{'OP': 'LOAD', 'src': {'type': 'addresses_NC', 'AVXalign': False, 'congruent': 0, 'size': 32, 'same': True, 'NT': False}}
<gen_prepare_buffer>
{'OP': 'STOR', 'dst': {'type': 'addresses_A_ht', 'AVXalign': False, 'congruent': 0, 'size': 2, 'same': False, 'NT': False}}
{'OP': 'LOAD', 'src': {'type': 'addresses_UC_ht', 'AVXalign': False, 'congruent': 8, 'size': 1, 'same': True, 'NT': False}}
{'OP': 'LOAD', 'src': {'type': 'addresses_WT_ht', 'AVXalign': False, 'congruent': 5, 'size': 1, 'same': False, 'NT': False}}
{'OP': 'STOR', 'dst': {'type': 'addresses_A_ht', 'AVXalign': True, 'congruent': 10, 'size': 2, 'same': False, 'NT': False}}
{'OP': 'STOR', 'dst': {'type': 'addresses_WC_ht', 'AVXalign': False, 'congruent': 5, 'size': 32, 'same': False, 'NT': True}}
{'OP': 'LOAD', 'src': {'type': 'addresses_normal_ht', 'AVXalign': True, 'congruent': 7, 'size': 32, 'same': True, 'NT': True}}
{'OP': 'LOAD', 'src': {'type': 'addresses_WT_ht', 'AVXalign': False, 'congruent': 1, 'size': 4, 'same': False, 'NT': False}}
{'OP': 'STOR', 'dst': {'type': 'addresses_normal_ht', 'AVXalign': False, 'congruent': 0, 'size': 1, 'same': False, 'NT': False}}
{'OP': 'REPM', 'src': {'type': 'addresses_normal_ht', 'congruent': 1, 'same': False}, 'dst': {'type': 'addresses_UC_ht', 'congruent': 7, 'same': False}}
{'OP': 'REPM', 'src': {'type': 'addresses_UC_ht', 'congruent': 2, 'same': True}, 'dst': {'type': 'addresses_normal_ht', 'congruent': 4, 'same': False}}
{'40': 1, '44': 16}
40 44 44 44 44 44 44 44 44 44 44 44 44 44 44 44 44
*/
|
/* TEMPLATE GENERATED TESTCASE FILE
Filename: CWE789_Uncontrolled_Mem_Alloc__malloc_char_listen_socket_72a.cpp
Label Definition File: CWE789_Uncontrolled_Mem_Alloc__malloc.label.xml
Template File: sources-sinks-72a.tmpl.cpp
*/
/*
* @description
* CWE: 789 Uncontrolled Memory Allocation
* BadSource: listen_socket Read data using a listen socket (server side)
* GoodSource: Small number greater than zero
* Sinks:
* GoodSink: Allocate memory with malloc() and check the size of the memory to be allocated
* BadSink : Allocate memory with malloc(), but incorrectly check the size of the memory to be allocated
* Flow Variant: 72 Data flow: data passed in a vector from one function to another in different source files
*
* */
#include "std_testcase.h"
#include <vector>
#ifndef _WIN32
#include <wchar.h>
#endif
#ifdef _WIN32
#include <winsock2.h>
#include <windows.h>
#include <direct.h>
#pragma comment(lib, "ws2_32") /* include ws2_32.lib when linking */
#define CLOSE_SOCKET closesocket
#else
#include <sys/types.h>
#include <sys/socket.h>
#include <netinet/in.h>
#include <arpa/inet.h>
#include <unistd.h>
#define INVALID_SOCKET -1
#define SOCKET_ERROR -1
#define CLOSE_SOCKET close
#define SOCKET int
#endif
#define TCP_PORT 27015
#define LISTEN_BACKLOG 5
#define CHAR_ARRAY_SIZE (3 * sizeof(data) + 2)
using namespace std;
namespace CWE789_Uncontrolled_Mem_Alloc__malloc_char_listen_socket_72
{
#ifndef OMITBAD
/* bad function declaration */
void badSink(vector<size_t> dataVector);
void bad()
{
size_t data;
vector<size_t> dataVector;
/* Initialize data */
data = 0;
{
#ifdef _WIN32
WSADATA wsaData;
int wsaDataInit = 0;
#endif
int recvResult;
struct sockaddr_in service;
SOCKET listenSocket = INVALID_SOCKET;
SOCKET acceptSocket = INVALID_SOCKET;
char inputBuffer[CHAR_ARRAY_SIZE];
do
{
#ifdef _WIN32
if (WSAStartup(MAKEWORD(2,2), &wsaData) != NO_ERROR)
{
break;
}
wsaDataInit = 1;
#endif
/* POTENTIAL FLAW: Read data using a listen socket */
listenSocket = socket(AF_INET, SOCK_STREAM, IPPROTO_TCP);
if (listenSocket == INVALID_SOCKET)
{
break;
}
memset(&service, 0, sizeof(service));
service.sin_family = AF_INET;
service.sin_addr.s_addr = INADDR_ANY;
service.sin_port = htons(TCP_PORT);
if (bind(listenSocket, (struct sockaddr*)&service, sizeof(service)) == SOCKET_ERROR)
{
break;
}
if (listen(listenSocket, LISTEN_BACKLOG) == SOCKET_ERROR)
{
break;
}
acceptSocket = accept(listenSocket, NULL, NULL);
if (acceptSocket == SOCKET_ERROR)
{
break;
}
/* Abort on error or the connection was closed */
recvResult = recv(acceptSocket, inputBuffer, CHAR_ARRAY_SIZE - 1, 0);
if (recvResult == SOCKET_ERROR || recvResult == 0)
{
break;
}
/* NUL-terminate the string */
inputBuffer[recvResult] = '\0';
/* Convert to unsigned int */
data = strtoul(inputBuffer, NULL, 0);
}
while (0);
if (listenSocket != INVALID_SOCKET)
{
CLOSE_SOCKET(listenSocket);
}
if (acceptSocket != INVALID_SOCKET)
{
CLOSE_SOCKET(acceptSocket);
}
#ifdef _WIN32
if (wsaDataInit)
{
WSACleanup();
}
#endif
}
/* Put data in a vector */
dataVector.insert(dataVector.end(), 1, data);
dataVector.insert(dataVector.end(), 1, data);
dataVector.insert(dataVector.end(), 1, data);
badSink(dataVector);
}
#endif /* OMITBAD */
#ifndef OMITGOOD
/* goodG2B uses the GoodSource with the BadSink */
void goodG2BSink(vector<size_t> dataVector);
static void goodG2B()
{
size_t data;
vector<size_t> dataVector;
/* Initialize data */
data = 0;
/* FIX: Use a relatively small number for memory allocation */
data = 20;
/* Put data in a vector */
dataVector.insert(dataVector.end(), 1, data);
dataVector.insert(dataVector.end(), 1, data);
dataVector.insert(dataVector.end(), 1, data);
goodG2BSink(dataVector);
}
/* goodB2G uses the BadSource with the GoodSink */
void goodB2GSink(vector<size_t> dataVector);
static void goodB2G()
{
size_t data;
vector<size_t> dataVector;
/* Initialize data */
data = 0;
{
#ifdef _WIN32
WSADATA wsaData;
int wsaDataInit = 0;
#endif
int recvResult;
struct sockaddr_in service;
SOCKET listenSocket = INVALID_SOCKET;
SOCKET acceptSocket = INVALID_SOCKET;
char inputBuffer[CHAR_ARRAY_SIZE];
do
{
#ifdef _WIN32
if (WSAStartup(MAKEWORD(2,2), &wsaData) != NO_ERROR)
{
break;
}
wsaDataInit = 1;
#endif
/* POTENTIAL FLAW: Read data using a listen socket */
listenSocket = socket(AF_INET, SOCK_STREAM, IPPROTO_TCP);
if (listenSocket == INVALID_SOCKET)
{
break;
}
memset(&service, 0, sizeof(service));
service.sin_family = AF_INET;
service.sin_addr.s_addr = INADDR_ANY;
service.sin_port = htons(TCP_PORT);
if (bind(listenSocket, (struct sockaddr*)&service, sizeof(service)) == SOCKET_ERROR)
{
break;
}
if (listen(listenSocket, LISTEN_BACKLOG) == SOCKET_ERROR)
{
break;
}
acceptSocket = accept(listenSocket, NULL, NULL);
if (acceptSocket == SOCKET_ERROR)
{
break;
}
/* Abort on error or the connection was closed */
recvResult = recv(acceptSocket, inputBuffer, CHAR_ARRAY_SIZE - 1, 0);
if (recvResult == SOCKET_ERROR || recvResult == 0)
{
break;
}
/* NUL-terminate the string */
inputBuffer[recvResult] = '\0';
/* Convert to unsigned int */
data = strtoul(inputBuffer, NULL, 0);
}
while (0);
if (listenSocket != INVALID_SOCKET)
{
CLOSE_SOCKET(listenSocket);
}
if (acceptSocket != INVALID_SOCKET)
{
CLOSE_SOCKET(acceptSocket);
}
#ifdef _WIN32
if (wsaDataInit)
{
WSACleanup();
}
#endif
}
dataVector.insert(dataVector.end(), 1, data);
dataVector.insert(dataVector.end(), 1, data);
dataVector.insert(dataVector.end(), 1, data);
goodB2GSink(dataVector);
}
void good()
{
goodG2B();
goodB2G();
}
#endif /* OMITGOOD */
} /* close namespace */
/* Below is the main(). It is only used when building this testcase on
its own for testing or for building a binary to use in testing binary
analysis tools. It is not used when compiling all the testcases as one
application, which is how source code analysis tools are tested. */
#ifdef INCLUDEMAIN
using namespace CWE789_Uncontrolled_Mem_Alloc__malloc_char_listen_socket_72; /* so that we can use good and bad easily */
int main(int argc, char * argv[])
{
/* seed randomness */
srand( (unsigned)time(NULL) );
#ifndef OMITGOOD
printLine("Calling good()...");
good();
printLine("Finished good()");
#endif /* OMITGOOD */
#ifndef OMITBAD
printLine("Calling bad()...");
bad();
printLine("Finished bad()");
#endif /* OMITBAD */
return 0;
}
#endif
|
.global s_prepare_buffers
s_prepare_buffers:
push %r11
push %r12
push %r14
push %r8
push %r9
push %rax
push %rbp
push %rcx
push %rdi
push %rsi
lea addresses_A_ht+0x42e9, %r14
nop
nop
nop
and $59205, %r8
mov (%r14), %bp
nop
nop
nop
nop
nop
xor %r11, %r11
lea addresses_D_ht+0x16799, %r8
nop
nop
nop
nop
nop
cmp $48451, %r12
mov (%r8), %rax
nop
and $36465, %r11
lea addresses_normal_ht+0x144bf, %r8
nop
sub %r9, %r9
movups (%r8), %xmm6
vpextrq $1, %xmm6, %r14
nop
nop
nop
nop
nop
xor $24272, %rax
lea addresses_WC_ht+0xaff4, %r8
nop
xor $45550, %rbp
mov (%r8), %ax
nop
nop
nop
nop
nop
add $63935, %rax
lea addresses_WC_ht+0xfc19, %rsi
lea addresses_normal_ht+0xf939, %rdi
nop
nop
nop
nop
dec %rbp
mov $17, %rcx
rep movsl
nop
nop
nop
nop
nop
add $2471, %r12
lea addresses_UC_ht+0x5a79, %rbp
nop
nop
and %r8, %r8
movw $0x6162, (%rbp)
nop
nop
nop
nop
nop
and %rcx, %rcx
lea addresses_A_ht+0x2b61, %r9
clflush (%r9)
and $65094, %r11
movw $0x6162, (%r9)
nop
nop
nop
nop
nop
sub $53801, %r9
pop %rsi
pop %rdi
pop %rcx
pop %rbp
pop %rax
pop %r9
pop %r8
pop %r14
pop %r12
pop %r11
ret
.global s_faulty_load
s_faulty_load:
push %r11
push %r15
push %r9
push %rbx
push %rsi
// Faulty Load
lea addresses_normal+0x13c19, %r11
nop
nop
nop
nop
nop
xor $26342, %rbx
movups (%r11), %xmm7
vpextrq $0, %xmm7, %r9
lea oracles, %rbx
and $0xff, %r9
shlq $12, %r9
mov (%rbx,%r9,1), %r9
pop %rsi
pop %rbx
pop %r9
pop %r15
pop %r11
ret
/*
<gen_faulty_load>
[REF]
{'OP': 'LOAD', 'src': {'size': 4, 'NT': False, 'type': 'addresses_normal', 'same': False, 'AVXalign': False, 'congruent': 0}}
[Faulty Load]
{'OP': 'LOAD', 'src': {'size': 16, 'NT': False, 'type': 'addresses_normal', 'same': True, 'AVXalign': False, 'congruent': 0}}
<gen_prepare_buffer>
{'OP': 'LOAD', 'src': {'size': 2, 'NT': False, 'type': 'addresses_A_ht', 'same': False, 'AVXalign': False, 'congruent': 4}}
{'OP': 'LOAD', 'src': {'size': 8, 'NT': True, 'type': 'addresses_D_ht', 'same': True, 'AVXalign': False, 'congruent': 5}}
{'OP': 'LOAD', 'src': {'size': 16, 'NT': False, 'type': 'addresses_normal_ht', 'same': False, 'AVXalign': False, 'congruent': 1}}
{'OP': 'LOAD', 'src': {'size': 2, 'NT': False, 'type': 'addresses_WC_ht', 'same': False, 'AVXalign': False, 'congruent': 0}}
{'OP': 'REPM', 'src': {'same': False, 'type': 'addresses_WC_ht', 'congruent': 11}, 'dst': {'same': False, 'type': 'addresses_normal_ht', 'congruent': 3}}
{'OP': 'STOR', 'dst': {'size': 2, 'NT': True, 'type': 'addresses_UC_ht', 'same': False, 'AVXalign': True, 'congruent': 5}}
{'OP': 'STOR', 'dst': {'size': 2, 'NT': False, 'type': 'addresses_A_ht', 'same': False, 'AVXalign': False, 'congruent': 3}}
{'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
*/
|
PrintSafariZoneBattleText:
ld hl, wSafariBaitFactor
ld a, [hl]
and a
jr z, .asm_411e
dec [hl]
ld hl, SafariZoneEatingText
jr .asm_4138
.asm_411e
dec hl
ld a, [hl]
and a
ret z
dec [hl]
ld hl, SafariZoneAngryText
jr nz, .asm_4138
push hl
ld a, [wEnemyMonSpecies]
ld [wd0b5], a
call GetMonHeader
ld a, [wMonHCatchRate]
ld [wEnemyMonCatchRate], a
pop hl
.asm_4138
push hl
call LoadScreenTilesFromBuffer1
pop hl
jp PrintText
SafariZoneEatingText:
TX_FAR _SafariZoneEatingText
db "@"
SafariZoneAngryText:
TX_FAR _SafariZoneAngryText
db "@"
|
SECTION code_fp_math16
PUBLIC cm16_sdcc___ulong2h_callee
PUBLIC cm16_sdcc___ulong2h_fastcall
EXTERN asm_f24_u32
EXTERN asm_f16_f24
.cm16_sdcc___ulong2h_callee
pop bc ;return
pop hl ;value
pop de
push bc
.cm16_sdcc___ulong2h_fastcall
call asm_f24_u32
jp asm_f16_f24
|
/*
* Copyright (C) 1999 Lars Knoll (knoll@kde.org)
* Copyright (C) 2000 Frederik Holljen (frederik.holljen@hig.no)
* Copyright (C) 2001 Peter Kelly (pmk@post.com)
* Copyright (C) 2006 Samuel Weinig (sam.weinig@gmail.com)
* Copyright (C) 2004, 2008 Apple Inc. All rights reserved.
*
* This library is free software; you can redistribute it and/or
* modify it under the terms of the GNU Library General Public
* License as published by the Free Software Foundation; either
* version 2 of the License, or (at your option) any later version.
*
* This library is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
* Library General Public License for more details.
*
* You should have received a copy of the GNU Library General Public License
* along with this library; see the file COPYING.LIB. If not, write to
* the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
* Boston, MA 02110-1301, USA.
*
*/
#include "third_party/blink/renderer/core/dom/node_iterator_base.h"
#include "third_party/blink/renderer/bindings/core/v8/v8_node_filter.h"
#include "third_party/blink/renderer/core/dom/node.h"
#include "third_party/blink/renderer/core/execution_context/execution_context.h"
#include "third_party/blink/renderer/core/frame/web_feature.h"
#include "third_party/blink/renderer/platform/bindings/exception_state.h"
#include "third_party/blink/renderer/platform/instrumentation/use_counter.h"
namespace blink {
NodeIteratorBase::NodeIteratorBase(Node* root_node,
unsigned what_to_show,
V8NodeFilter* node_filter)
: root_(root_node), what_to_show_(what_to_show), filter_(node_filter) {}
unsigned NodeIteratorBase::AcceptNode(Node* node,
ExceptionState& exception_state) {
// DOM 6. Traversal
// https://dom.spec.whatwg.org/#traversal
// Each NodeIterator and TreeWalker object has an associated active flag to
// avoid recursive invocations.
if (active_flag_) {
// 1. If the active flag is set, then throw an "InvalidStateError"
// DOMException.
exception_state.ThrowDOMException(DOMExceptionCode::kInvalidStateError,
"Filter function can't be recursive");
return V8NodeFilter::FILTER_REJECT;
}
// 2. Let n be node’s nodeType attribute value minus 1.
// 3. If the nth bit (where 0 is the least significant bit) of whatToShow is
// not set, then return FILTER_SKIP.
//
// The bit twiddling here is done to map DOM node types, which are given as
// integers from 1 through 14, to whatToShow bit masks.
if (!(((1 << (node->getNodeType() - 1)) & what_to_show_)))
return V8NodeFilter::FILTER_SKIP;
// 4. If filter is null, then return FILTER_ACCEPT.
if (!filter_)
return V8NodeFilter::FILTER_ACCEPT;
// 5. Set the active flag.
base::AutoReset<bool> set_active_flag(&active_flag_, true);
// 6. Let result be the return value of call a user object’s operation with
// filter, "acceptNode", and « node ». If this throws an exception, then unset
// the active flag and rethrow the exception.
v8::TryCatch try_catch(filter_->GetIsolate());
uint16_t result = 0;
if (!filter_->acceptNode(nullptr, node).To(&result)) {
exception_state.RethrowV8Exception(try_catch.Exception());
return 0;
}
UseCounter::Count(
ExecutionContext::From(filter_->CallbackRelevantScriptState()),
filter_->IsCallbackObjectCallableForNodeIteratorBase()
? WebFeature::kNodeFilterIsFunction
: WebFeature::kNodeFilterIsObject);
// 7. Unset the active flag.
// 8. Return result.
return result;
}
void NodeIteratorBase::Trace(Visitor* visitor) const {
visitor->Trace(root_);
visitor->Trace(filter_);
}
} // namespace blink
|
; A017010: a(n) = (7*n+2)^6.
; 64,531441,16777216,148035889,729000000,2565726409,7256313856,17596287801,38068692544,75418890625,139314069504,243087455521,404567235136,646990183449,1000000000000,1500730351849,2194972623936,3138428376721,4398046511104,6053445140625,8198418170944,10942526586601,14412774445056,18755369578009,24137569000000,30749609024289,38806720086016,48551226272641,60254729561664,74220378765625,90785223184384,110322650964681,133244912166976,160005726539569,191102976000000,227081481823729,268535866540096,316113500535561,370517533364224,432510009765625,502915070389824,582622237229761,672589783760896,773848189788129,887503681000000,1014741853230169,1156831381426176,1315127813325481,1491077447838784,1686221298140625,1902199139467264,2140753641621841,2403734586186816,2693103168443689,3010936384000000,3359431500123609,3740910611784256,4157825282402401,4612761269305344,5108443333890625,5647740136496704,6233669215980921,6869402054004736,7558269224026249,8303765625000000,9109555799784049
mul $0,7
mov $1,$0
add $1,2
pow $1,6
|
;
; This file is automatically generated
;
; Do not edit!!!
;
; djm 12/2/2000
;
; ZSock Lib function: sock_setrsize
PUBLIC sock_setrsize
EXTERN no_zsock
INCLUDE "packages.def"
INCLUDE "zsock.def"
.sock_setrsize
ld a,r_sock_setrsize
call_pkg(tcp_all)
ret nc
; We failed..are we installed?
cp rc_pnf
scf ;signal error
ret nz ;Internal error
call_pkg(tcp_ayt)
jr nc,sock_setrsize
jp no_zsock
|
; A239459: Concatenation of n^3 and n.
; 11,82,273,644,1255,2166,3437,5128,7299,100010,133111,172812,219713,274414,337515,409616,491317,583218,685919,800020,926121,1064822,1216723,1382424,1562525,1757626,1968327,2195228,2438929,2700030,2979131,3276832,3593733,3930434,4287535,4665636,5065337,5487238,5931939,6400040,6892141,7408842,7950743,8518444,9112545,9733646,10382347,11059248,11764949,12500050,13265151,14060852,14887753,15746454,16637555,17561656,18519357,19511258,20537959,21600060,22698161,23832862,25004763,26214464,27462565
mov $3,$0
add $3,1
mov $5,$0
lpb $3
mov $0,$5
sub $3,1
sub $0,$3
mov $7,$0
mov $9,2
lpb $9
mov $0,$7
sub $9,1
add $0,$9
mov $2,$0
pow $0,3
lpb $2
mul $0,10
div $2,10
lpe
mov $4,$0
mov $6,$9
lpb $6
sub $6,1
mov $8,$4
lpe
lpe
lpb $7
mov $7,0
sub $8,$4
lpe
mov $4,$8
div $4,30
mul $4,30
add $4,11
add $1,$4
lpe
mov $0,$1
|
; A143845: See Comments line.
; 0,8,12,14,15,7,3,1,0,8,12,14,15,7,3,1,0,8,12,14,15,7,3,1,0,8,12,14,15,7,3,1,0,8,12,14,15,7,3,1,0,8,12,14,15,7,3,1,0,8,12,14,15,7,3,1,0,8,12,14,15,7,3,1,0,8,12,14,15,7,3,1,0,8,12,14,15,7,3,1,0,8,12,14,15,7,3,1,0,8,12,14,15,7,3,1
mov $1,1
mov $2,$0
lpb $2
mul $1,9
mod $1,17
sub $2,1
lpe
sub $1,1
|
# Utilizzando le syscall rese disponibili dall'emulatore MARS implementare un programma che:
# Richieda all'utente attraverso una finestra di dialogo l'inserimento di un numero intero NUM
# Estragga un numero casuale R nel range [-NUM,NUM], (il seed del generatore di numeri casuali
# può essere inizializzato con un qualsiasi numero intero)
# Sommi R al numero inserito NUM : RESULT = NUM + R
# Mostri all'utente attraverso una nuova finestra di dialogo il nuovo credito dell'utente
# dopo la scommessa RESULT.
#
# Il programma dovrà terminare in maniera "pulita" restituendo il controllo al sistema operativo
.data
string1: .asciiz "Inserisci un intero:"
string2: .asciiz "Il nuovo credito è: "
.text
.globl main
main:
li $v0, 51
la $a0, string1
syscall
move $s0, $a0
li $v0, 42
add $a1, $s0, $s0
addi $a1, $a1, 1
syscall
sub $t0, $a0, $s0
add $s0, $s0, $t0
li $v0, 56
la $a0, string2
move $a1, $s0
syscall
li $v0, 10
syscall |
; A159802: Number of primes q with (2m)^2+1 <= q < (2m+1)^2-2m.
; Submitted by Christian Krause
; 1,2,2,2,4,2,2,4,2,3,4,4,4,4,4,5,4,7,6,8,5,4,7,7,6,9,7,7,6,8,7,9,7,10,11,7,10,12,9,6,9,8,8,8,9,8,10,10,12,11,11,12,13,9,12,14,13,11,10,14,11,14,15,12,16,14,16,11,12,11,12,14,14,15,15,13,17,15,16,18,17,15,12,12
mul $0,2
add $0,2
mov $3,$0
mov $5,$0
pow $5,2
lpb $3
mov $2,$5
seq $2,80339 ; Characteristic function of {1} union {primes}: 1 if n is 1 or a prime, else 0.
sub $3,1
add $4,$2
add $5,1
lpe
mov $0,$4
|
/*
==============================================================================
This file is part of the JUCE library.
Copyright (c) 2022 - Raw Material Software Limited
JUCE is an open source library subject to commercial or open-source
licensing.
The code included in this file is provided under the terms of the ISC license
http://www.isc.org/downloads/software-support-policy/isc-license. Permission
To use, copy, modify, and/or distribute this software for any purpose with or
without fee is hereby granted provided that the above copyright notice and
this permission notice appear in all copies.
JUCE IS PROVIDED "AS IS" WITHOUT ANY WARRANTY, AND ALL WARRANTIES, WHETHER
EXPRESSED OR IMPLIED, INCLUDING MERCHANTABILITY AND FITNESS FOR PURPOSE, ARE
DISCLAIMED.
==============================================================================
*/
namespace juce
{
#if ! JUCE_WASM
JUCE_BEGIN_IGNORE_WARNINGS_MSVC (4127 4389 4018)
#ifndef AI_NUMERICSERV // (missing in older Mac SDKs)
#define AI_NUMERICSERV 0x1000
#endif
#if JUCE_WINDOWS
using juce_socklen_t = int;
using juce_recvsend_size_t = int;
using SocketHandle = SOCKET;
static const SocketHandle invalidSocket = INVALID_SOCKET;
#elif JUCE_ANDROID
using juce_socklen_t = socklen_t;
using juce_recvsend_size_t = size_t;
using SocketHandle = int;
static const SocketHandle invalidSocket = -1;
#else
using juce_socklen_t = socklen_t;
using juce_recvsend_size_t = socklen_t;
using SocketHandle = int;
static const SocketHandle invalidSocket = -1;
#endif
//==============================================================================
namespace SocketHelpers
{
static void initSockets()
{
#if JUCE_WINDOWS
static bool socketsStarted = false;
if (! socketsStarted)
{
WSADATA wsaData;
const WORD wVersionRequested = MAKEWORD (1, 1);
socketsStarted = WSAStartup (wVersionRequested, &wsaData) == 0;
}
#endif
}
inline bool isValidPortNumber (int port) noexcept
{
return isPositiveAndBelow (port, 65536);
}
template <typename Type>
static bool setOption (SocketHandle handle, int mode, int property, Type value) noexcept
{
return setsockopt (handle, mode, property, reinterpret_cast<const char*> (&value), sizeof (value)) == 0;
}
template <typename Type>
static bool setOption (SocketHandle handle, int property, Type value) noexcept
{
return setOption (handle, SOL_SOCKET, property, value);
}
static bool resetSocketOptions (SocketHandle handle, bool isDatagram, bool allowBroadcast) noexcept
{
return handle != invalidSocket
&& setOption (handle, SO_RCVBUF, (int) 65536)
&& setOption (handle, SO_SNDBUF, (int) 65536)
&& (isDatagram ? ((! allowBroadcast) || setOption (handle, SO_BROADCAST, (int) 1))
: setOption (handle, IPPROTO_TCP, TCP_NODELAY, (int) 1));
}
static void closeSocket (std::atomic<int>& handle, CriticalSection& readLock,
bool isListener, int portNumber, std::atomic<bool>& connected) noexcept
{
const auto h = (SocketHandle) handle.load();
handle = -1;
#if JUCE_WINDOWS
ignoreUnused (portNumber, isListener, readLock);
if (h != invalidSocket || connected)
closesocket (h);
// make sure any read process finishes before we delete the socket
CriticalSection::ScopedLockType lock (readLock);
connected = false;
#else
if (connected)
{
connected = false;
if (isListener)
{
// need to do this to interrupt the accept() function..
StreamingSocket temp;
temp.connect (IPAddress::local().toString(), portNumber, 1000);
}
}
if (h >= 0)
{
// unblock any pending read requests
::shutdown (h, SHUT_RDWR);
{
// see man-page of recv on linux about a race condition where the
// shutdown command is lost if the receiving thread does not have
// a chance to process before close is called. On Mac OS X shutdown
// does not unblock a select call, so using a lock here will dead-lock
// both threads.
#if JUCE_LINUX || JUCE_BSD || JUCE_ANDROID
CriticalSection::ScopedLockType lock (readLock);
::close (h);
#else
::close (h);
CriticalSection::ScopedLockType lock (readLock);
#endif
}
}
#endif
}
static bool bindSocket (SocketHandle handle, int port, const String& address) noexcept
{
if (handle == invalidSocket || ! isValidPortNumber (port))
return false;
struct sockaddr_in addr;
zerostruct (addr); // (can't use "= { 0 }" on this object because it's typedef'ed as a C struct)
addr.sin_family = PF_INET;
addr.sin_port = htons ((uint16) port);
addr.sin_addr.s_addr = address.isNotEmpty() ? ::inet_addr (address.toRawUTF8())
: htonl (INADDR_ANY);
return ::bind (handle, (struct sockaddr*) &addr, sizeof (addr)) >= 0;
}
static int getBoundPort (SocketHandle handle) noexcept
{
if (handle != invalidSocket)
{
struct sockaddr_in addr;
socklen_t len = sizeof (addr);
if (getsockname (handle, (struct sockaddr*) &addr, &len) == 0)
return ntohs (addr.sin_port);
}
return -1;
}
static String getConnectedAddress (SocketHandle handle) noexcept
{
struct sockaddr_in addr;
socklen_t len = sizeof (addr);
if (getpeername (handle, (struct sockaddr*) &addr, &len) >= 0)
return inet_ntoa (addr.sin_addr);
return "0.0.0.0";
}
static bool setSocketBlockingState (SocketHandle handle, bool shouldBlock) noexcept
{
#if JUCE_WINDOWS
u_long nonBlocking = shouldBlock ? 0 : (u_long) 1;
return ioctlsocket (handle, (long) FIONBIO, &nonBlocking) == 0;
#else
int socketFlags = fcntl (handle, F_GETFL, 0);
if (socketFlags == -1)
return false;
if (shouldBlock)
socketFlags &= ~O_NONBLOCK;
else
socketFlags |= O_NONBLOCK;
return fcntl (handle, F_SETFL, socketFlags) == 0;
#endif
}
#if ! JUCE_WINDOWS
static bool getSocketBlockingState (SocketHandle handle)
{
return (fcntl (handle, F_GETFL, 0) & O_NONBLOCK) == 0;
}
#endif
static int readSocket (SocketHandle handle,
void* destBuffer, int maxBytesToRead,
std::atomic<bool>& connected,
bool blockUntilSpecifiedAmountHasArrived,
CriticalSection& readLock,
String* senderIP = nullptr,
int* senderPort = nullptr) noexcept
{
#if ! JUCE_WINDOWS
if (blockUntilSpecifiedAmountHasArrived != getSocketBlockingState (handle))
#endif
setSocketBlockingState (handle, blockUntilSpecifiedAmountHasArrived);
int bytesRead = 0;
while (bytesRead < maxBytesToRead)
{
long bytesThisTime = -1;
auto buffer = static_cast<char*> (destBuffer) + bytesRead;
auto numToRead = (juce_recvsend_size_t) (maxBytesToRead - bytesRead);
{
// avoid race-condition
CriticalSection::ScopedTryLockType lock (readLock);
if (lock.isLocked())
{
if (senderIP == nullptr || senderPort == nullptr)
{
bytesThisTime = ::recv (handle, buffer, numToRead, 0);
}
else
{
sockaddr_in client;
socklen_t clientLen = sizeof (sockaddr);
bytesThisTime = ::recvfrom (handle, buffer, numToRead, 0, (sockaddr*) &client, &clientLen);
*senderIP = String::fromUTF8 (inet_ntoa (client.sin_addr), 16);
*senderPort = ntohs (client.sin_port);
}
}
}
if (bytesThisTime <= 0 || ! connected)
{
if (bytesRead == 0 && blockUntilSpecifiedAmountHasArrived)
bytesRead = -1;
break;
}
bytesRead = static_cast<int> (bytesRead + bytesThisTime);
if (! blockUntilSpecifiedAmountHasArrived)
break;
}
return (int) bytesRead;
}
static int waitForReadiness (std::atomic<int>& handle, CriticalSection& readLock,
bool forReading, int timeoutMsecs) noexcept
{
// avoid race-condition
CriticalSection::ScopedTryLockType lock (readLock);
if (! lock.isLocked())
return -1;
auto hasErrorOccurred = [&handle]() -> bool
{
auto h = (SocketHandle) handle.load();
if (h == invalidSocket)
return true;
int opt;
juce_socklen_t len = sizeof (opt);
if (getsockopt (h, SOL_SOCKET, SO_ERROR, (char*) &opt, &len) < 0 || opt != 0)
return true;
return false;
};
auto h = handle.load();
#if JUCE_WINDOWS || JUCE_MINGW
struct timeval timeout;
struct timeval* timeoutp;
if (timeoutMsecs >= 0)
{
timeout.tv_sec = timeoutMsecs / 1000;
timeout.tv_usec = (timeoutMsecs % 1000) * 1000;
timeoutp = &timeout;
}
else
{
timeoutp = nullptr;
}
fd_set rset, wset;
FD_ZERO (&rset);
FD_SET ((SOCKET) h, &rset);
FD_ZERO (&wset);
FD_SET ((SOCKET) h, &wset);
fd_set* prset = forReading ? &rset : nullptr;
fd_set* pwset = forReading ? nullptr : &wset;
// NB - need to use select() here as WSAPoll is broken on Windows
if (select ((int) h + 1, prset, pwset, nullptr, timeoutp) < 0 || hasErrorOccurred())
return -1;
return FD_ISSET (h, forReading ? &rset : &wset) ? 1 : 0;
#else
short eventsFlag = (forReading ? POLLIN : POLLOUT);
pollfd pfd { (SocketHandle) h, eventsFlag, 0 };
int result = 0;
for (;;)
{
result = poll (&pfd, 1, timeoutMsecs);
if (result >= 0 || errno != EINTR)
break;
}
if (result < 0 || hasErrorOccurred())
return -1;
return (pfd.revents & eventsFlag) != 0;
#endif
}
static addrinfo* getAddressInfo (bool isDatagram, const String& hostName, int portNumber)
{
struct addrinfo hints;
zerostruct (hints);
hints.ai_family = AF_UNSPEC;
hints.ai_socktype = isDatagram ? SOCK_DGRAM : SOCK_STREAM;
hints.ai_flags = AI_NUMERICSERV;
struct addrinfo* info = nullptr;
if (getaddrinfo (hostName.toRawUTF8(), String (portNumber).toRawUTF8(), &hints, &info) == 0)
return info;
return nullptr;
}
static bool connectSocket (std::atomic<int>& handle,
CriticalSection& readLock,
const String& hostName,
int portNumber,
int timeOutMillisecs) noexcept
{
bool success = false;
if (auto* info = getAddressInfo (false, hostName, portNumber))
{
for (auto* i = info; i != nullptr; i = i->ai_next)
{
auto newHandle = socket (i->ai_family, i->ai_socktype, 0);
if (newHandle != invalidSocket)
{
setSocketBlockingState (newHandle, false);
auto result = ::connect (newHandle, i->ai_addr, (socklen_t) i->ai_addrlen);
success = (result >= 0);
if (! success)
{
#if JUCE_WINDOWS
if (result == SOCKET_ERROR && WSAGetLastError() == WSAEWOULDBLOCK)
#else
if (errno == EINPROGRESS)
#endif
{
std::atomic<int> cvHandle { (int) newHandle };
if (waitForReadiness (cvHandle, readLock, false, timeOutMillisecs) == 1)
success = true;
}
}
if (success)
{
handle = (int) newHandle;
break;
}
#if JUCE_WINDOWS
closesocket (newHandle);
#else
::close (newHandle);
#endif
}
}
freeaddrinfo (info);
if (success)
{
auto h = (SocketHandle) handle.load();
setSocketBlockingState (h, true);
resetSocketOptions (h, false, false);
}
}
return success;
}
static void makeReusable (int handle) noexcept
{
setOption ((SocketHandle) handle, SO_REUSEADDR, (int) 1);
}
static bool multicast (int handle, const String& multicastIPAddress,
const String& interfaceIPAddress, bool join) noexcept
{
struct ip_mreq mreq;
zerostruct (mreq);
mreq.imr_multiaddr.s_addr = inet_addr (multicastIPAddress.toRawUTF8());
mreq.imr_interface.s_addr = INADDR_ANY;
if (interfaceIPAddress.isNotEmpty())
mreq.imr_interface.s_addr = inet_addr (interfaceIPAddress.toRawUTF8());
return setsockopt ((SocketHandle) handle, IPPROTO_IP,
join ? IP_ADD_MEMBERSHIP
: IP_DROP_MEMBERSHIP,
(const char*) &mreq, sizeof (mreq)) == 0;
}
}
//==============================================================================
StreamingSocket::StreamingSocket()
{
SocketHelpers::initSockets();
}
StreamingSocket::StreamingSocket (const String& host, int portNum, int h)
: hostName (host),
portNumber (portNum),
handle (h),
connected (true)
{
jassert (SocketHelpers::isValidPortNumber (portNum));
SocketHelpers::initSockets();
SocketHelpers::resetSocketOptions ((SocketHandle) h, false, false);
}
StreamingSocket::~StreamingSocket()
{
close();
}
//==============================================================================
int StreamingSocket::read (void* destBuffer, int maxBytesToRead, bool shouldBlock)
{
return (connected && ! isListener) ? SocketHelpers::readSocket ((SocketHandle) handle.load(), destBuffer,maxBytesToRead,
connected, shouldBlock, readLock)
: -1;
}
int StreamingSocket::write (const void* sourceBuffer, int numBytesToWrite)
{
if (isListener || ! connected)
return -1;
return (int) ::send ((SocketHandle) handle.load(), (const char*) sourceBuffer, (juce_recvsend_size_t) numBytesToWrite, 0);
}
//==============================================================================
int StreamingSocket::waitUntilReady (bool readyForReading, int timeoutMsecs)
{
return connected ? SocketHelpers::waitForReadiness (handle, readLock, readyForReading, timeoutMsecs)
: -1;
}
//==============================================================================
bool StreamingSocket::bindToPort (int port)
{
return bindToPort (port, String());
}
bool StreamingSocket::bindToPort (int port, const String& addr)
{
jassert (SocketHelpers::isValidPortNumber (port));
return SocketHelpers::bindSocket ((SocketHandle) handle.load(), port, addr);
}
int StreamingSocket::getBoundPort() const noexcept
{
return SocketHelpers::getBoundPort ((SocketHandle) handle.load());
}
bool StreamingSocket::connect (const String& remoteHostName, int remotePortNumber, int timeOutMillisecs)
{
jassert (SocketHelpers::isValidPortNumber (remotePortNumber));
if (isListener)
{
// a listener socket can't connect to another one!
jassertfalse;
return false;
}
if (connected)
close();
hostName = remoteHostName;
portNumber = remotePortNumber;
isListener = false;
connected = SocketHelpers::connectSocket (handle, readLock, remoteHostName,
remotePortNumber, timeOutMillisecs);
if (! connected)
return false;
if (! SocketHelpers::resetSocketOptions ((SocketHandle) handle.load(), false, false))
{
close();
return false;
}
return true;
}
void StreamingSocket::close()
{
if (handle >= 0)
SocketHelpers::closeSocket (handle, readLock, isListener, portNumber, connected);
hostName.clear();
portNumber = 0;
handle = -1;
isListener = false;
}
//==============================================================================
bool StreamingSocket::createListener (int newPortNumber, const String& localHostName)
{
jassert (SocketHelpers::isValidPortNumber (newPortNumber));
if (connected)
close();
hostName = "listener";
portNumber = newPortNumber;
isListener = true;
handle = (int) socket (AF_INET, SOCK_STREAM, 0);
if (handle < 0)
return false;
#if ! JUCE_WINDOWS // on windows, adding this option produces behaviour different to posix
SocketHelpers::makeReusable (handle);
#endif
if (SocketHelpers::bindSocket ((SocketHandle) handle.load(), portNumber, localHostName)
&& listen ((SocketHandle) handle.load(), SOMAXCONN) >= 0)
{
connected = true;
return true;
}
close();
return false;
}
StreamingSocket* StreamingSocket::waitForNextConnection() const
{
// To call this method, you first have to use createListener() to
// prepare this socket as a listener.
jassert (isListener || ! connected);
if (connected && isListener)
{
struct sockaddr_storage address;
juce_socklen_t len = sizeof (address);
auto newSocket = (int) accept ((SocketHandle) handle.load(), (struct sockaddr*) &address, &len);
if (newSocket >= 0 && connected)
return new StreamingSocket (inet_ntoa (((struct sockaddr_in*) &address)->sin_addr),
portNumber, newSocket);
}
return nullptr;
}
bool StreamingSocket::isLocal() const noexcept
{
if (! isConnected())
return false;
IPAddress currentIP (SocketHelpers::getConnectedAddress ((SocketHandle) handle.load()));
for (auto& a : IPAddress::getAllAddresses())
if (a == currentIP)
return true;
return hostName == "127.0.0.1";
}
//==============================================================================
//==============================================================================
DatagramSocket::DatagramSocket (bool canBroadcast)
{
SocketHelpers::initSockets();
handle = (int) socket (AF_INET, SOCK_DGRAM, 0);
if (handle >= 0)
{
SocketHelpers::resetSocketOptions ((SocketHandle) handle.load(), true, canBroadcast);
SocketHelpers::makeReusable (handle);
}
}
DatagramSocket::~DatagramSocket()
{
if (lastServerAddress != nullptr)
freeaddrinfo (static_cast<struct addrinfo*> (lastServerAddress));
shutdown();
}
void DatagramSocket::shutdown()
{
if (handle < 0)
return;
std::atomic<int> handleCopy { handle.load() };
handle = -1;
std::atomic<bool> connected { false };
SocketHelpers::closeSocket (handleCopy, readLock, false, 0, connected);
isBound = false;
}
bool DatagramSocket::bindToPort (int port)
{
return bindToPort (port, String());
}
bool DatagramSocket::bindToPort (int port, const String& addr)
{
jassert (SocketHelpers::isValidPortNumber (port));
if (handle < 0)
return false;
if (SocketHelpers::bindSocket ((SocketHandle) handle.load(), port, addr))
{
isBound = true;
lastBindAddress = addr;
return true;
}
return false;
}
int DatagramSocket::getBoundPort() const noexcept
{
return (handle >= 0 && isBound) ? SocketHelpers::getBoundPort ((SocketHandle) handle.load()) : -1;
}
//==============================================================================
int DatagramSocket::waitUntilReady (bool readyForReading, int timeoutMsecs)
{
if (handle < 0)
return -1;
return SocketHelpers::waitForReadiness (handle, readLock, readyForReading, timeoutMsecs);
}
int DatagramSocket::read (void* destBuffer, int maxBytesToRead, bool shouldBlock)
{
if (handle < 0 || ! isBound)
return -1;
std::atomic<bool> connected { true };
return SocketHelpers::readSocket ((SocketHandle) handle.load(), destBuffer, maxBytesToRead,
connected, shouldBlock, readLock);
}
int DatagramSocket::read (void* destBuffer, int maxBytesToRead, bool shouldBlock, String& senderIPAddress, int& senderPort)
{
if (handle < 0 || ! isBound)
return -1;
std::atomic<bool> connected { true };
return SocketHelpers::readSocket ((SocketHandle) handle.load(), destBuffer, maxBytesToRead, connected,
shouldBlock, readLock, &senderIPAddress, &senderPort);
}
int DatagramSocket::write (const String& remoteHostname, int remotePortNumber,
const void* sourceBuffer, int numBytesToWrite)
{
jassert (SocketHelpers::isValidPortNumber (remotePortNumber));
if (handle < 0)
return -1;
struct addrinfo*& info = reinterpret_cast<struct addrinfo*&> (lastServerAddress);
// getaddrinfo can be quite slow so cache the result of the address lookup
if (info == nullptr || remoteHostname != lastServerHost || remotePortNumber != lastServerPort)
{
if (info != nullptr)
freeaddrinfo (info);
if ((info = SocketHelpers::getAddressInfo (true, remoteHostname, remotePortNumber)) == nullptr)
return -1;
lastServerHost = remoteHostname;
lastServerPort = remotePortNumber;
}
return (int) ::sendto ((SocketHandle) handle.load(), (const char*) sourceBuffer,
(juce_recvsend_size_t) numBytesToWrite, 0,
info->ai_addr, (socklen_t) info->ai_addrlen);
}
bool DatagramSocket::joinMulticast (const String& multicastIPAddress)
{
if (handle < 0 || ! isBound)
return false;
return SocketHelpers::multicast (handle, multicastIPAddress, lastBindAddress, true);
}
bool DatagramSocket::leaveMulticast (const String& multicastIPAddress)
{
if (handle < 0 || ! isBound)
return false;
return SocketHelpers::multicast (handle, multicastIPAddress, lastBindAddress, false);
}
bool DatagramSocket::setMulticastLoopbackEnabled (bool enable)
{
if (handle < 0 || ! isBound)
return false;
return SocketHelpers::setOption<bool> ((SocketHandle) handle.load(), IPPROTO_IP, IP_MULTICAST_LOOP, enable);
}
bool DatagramSocket::setEnablePortReuse (bool enabled)
{
#if JUCE_ANDROID
ignoreUnused (enabled);
#else
if (handle >= 0)
return SocketHelpers::setOption ((SocketHandle) handle.load(),
#if JUCE_WINDOWS || JUCE_LINUX || JUCE_BSD
SO_REUSEADDR, // port re-use is implied by addr re-use on these platforms
#else
SO_REUSEPORT,
#endif
(int) (enabled ? 1 : 0));
#endif
return false;
}
JUCE_END_IGNORE_WARNINGS_MSVC
//==============================================================================
//==============================================================================
#if JUCE_UNIT_TESTS
struct SocketTests : public UnitTest
{
SocketTests()
: UnitTest ("Sockets", UnitTestCategories::networking)
{
}
void runTest() override
{
auto localHost = IPAddress::local();
int portNum = 12345;
beginTest ("StreamingSocket");
{
StreamingSocket socketServer;
expect (socketServer.isConnected() == false);
expect (socketServer.getHostName().isEmpty());
expect (socketServer.getBoundPort() == -1);
expect (static_cast<SocketHandle> (socketServer.getRawSocketHandle()) == invalidSocket);
expect (socketServer.createListener (portNum, localHost.toString()));
StreamingSocket socket;
expect (socket.connect (localHost.toString(), portNum));
expect (socket.isConnected() == true);
expect (socket.getHostName() == localHost.toString());
expect (socket.getBoundPort() != -1);
expect (static_cast<SocketHandle> (socket.getRawSocketHandle()) != invalidSocket);
socket.close();
expect (socket.isConnected() == false);
expect (socket.getHostName().isEmpty());
expect (socket.getBoundPort() == -1);
expect (static_cast<SocketHandle> (socket.getRawSocketHandle()) == invalidSocket);
}
beginTest ("DatagramSocket");
{
DatagramSocket socket;
expect (socket.getBoundPort() == -1);
expect (static_cast<SocketHandle> (socket.getRawSocketHandle()) != invalidSocket);
expect (socket.bindToPort (portNum, localHost.toString()));
expect (socket.getBoundPort() == portNum);
expect (static_cast<SocketHandle> (socket.getRawSocketHandle()) != invalidSocket);
socket.shutdown();
expect (socket.getBoundPort() == -1);
expect (static_cast<SocketHandle> (socket.getRawSocketHandle()) == invalidSocket);
}
}
};
static SocketTests socketTests;
#endif
#endif
} // namespace juce
|
; int vsscanf(const char *s, const char *format, va_list arg)
SECTION code_clib
SECTION code_stdio
PUBLIC vsscanf
EXTERN asm_vsscanf
vsscanf:
pop af
pop bc
pop de
pop hl
push hl
push de
push bc
push af
jp asm_vsscanf
|
; Konami VRC4b: (up to 256KB) PRG-ROM + (0,2,8)KB PRG-RAM + (up to 512KB) CHR-ROM
; http://bootgod.dyndns.org:7777/search.php?keywords=25&kwtype=pcb
;------------------------------------------------------------------------------;
; number of 16K PRG banks
PRG_BANKS = $04
; number of 8K CHR banks
; Valid values: $02 (16K), $04 (32K), $06 (64K), $08 (128K), $0A (256K), $0C (512K)
CHR_BANKS = $02
; VRC4 mirroring is mapper controlled. This just sets the default.
; If you want one-screen mirroring, you will need to set it via a write.
; %0000 = Horizontal
; %0001 = Vertical
MIRRORING = %0001
; xxx: PRG-RAM thing
; Mapper 021 (VRC4b) iNES header
.byte "NES",$1A
.byte PRG_BANKS ; 16K PRG banks
.byte CHR_BANKS ; 8K CHR banks
.byte $90|MIRRORING ; flags 6
.byte $10 ; flags 7
.byte $00 ; no PRG RAM
.dsb 7, $00 ; clear the remaining bytes
; VRC4b defines
; Registers: $x000, $x002, $x001, $x003
VRC4_PRGModeSwap = $9001 ; ($9001,$9003)
VRC4_PRGSelect0 = $8000 ; ($8000,$8002,$8001,$8003)
VRC4_PRGSelect1 = $A000 ; ($A000,$A002,$A001,$A003)
VRC4_Mirroring = $9000 ; ($9000,$9002)
VRC4_IRQControl = $F000 ; ($F000,$F002,$F001,$F003)
;-----------------------------------------------------;
VRC4_CHRSel0_Lo = $B000 ; low 4 bits (PPU $0000)
VRC4_CHRSel0_Hi = $B002 ; high 5 bits (PPU $0000)
VRC4_CHRSel1_Lo = $B001 ; low 4 bits (PPU $0020)
VRC4_CHRSel1_Hi = $B003 ; high 5 bits (PPU $0020)
VRC4_CHRSel2_Lo = $C000 ; low 4 bits (PPU $0002)
VRC4_CHRSel2_Hi = $C002 ; high 5 bits (PPU $0002)
VRC4_CHRSel3_Lo = $C001 ; low 4 bits (PPU $0030)
VRC4_CHRSel3_Hi = $C003 ; high 5 bits (PPU $0030)
;-----------------------------------------------------;
VRC4_CHRSel4_Lo = $D000 ; low 4 bits (PPU $1000)
VRC4_CHRSel4_Hi = $D002 ; high 5 bits (PPU $1000)
VRC4_CHRSel5_Lo = $D001 ; low 4 bits (PPU $1400)
VRC4_CHRSel5_Hi = $D003 ; high 5 bits (PPU $1400)
VRC4_CHRSel6_Lo = $E000 ; low 4 bits (PPU $1800)
VRC4_CHRSel6_Hi = $E002 ; high 5 bits (PPU $1800)
VRC4_CHRSel7_Lo = $E001 ; low 4 bits (PPU $1C00)
VRC4_CHRSel7_Hi = $E003 ; high 5 bits (PPU $1C00)
|
; /////////////////////////////////////////////////////////////////////////////
; Znake (ZX Spectrum 48K)
; -----------------------------------------------------------------------------
; 3_loop_create_food.asm
; -----------------------------------------------------------------------------
; Copyright (C) 2016, Chris Wyatt
; All rights reserved
; Distributed under the Apache 2 license (see LICENSE)
; /////////////////////////////////////////////////////////////////////////////
next_game_loop:
; Create a new snake history table, where the data starts at the beginning
; of the table: this means we can free up a register later, as we will not
; need a counter
ld h,(TBL_SNAKE_HISTORY >> 8) & $FF
ld a,(snake_history_tail_offset)
ld l,a
; Initialise counter
ld a,(snake_history_head_offset)
sub l
inc a
ld b,a
ld (snake_history_clean_length),a
ld de,TBL_SNAKE_HISTORY_CLEAN
transfer_byte:
; Transfer from one table to another. LDIR is not used here, as we need to
; jump to the beginning at table boundaries.
ld a,(hl)
ld (de),a
inc l
inc e
dec b
jr nz,transfer_byte
; Invalidate any free square quadrants that contain the new position for
; the head
ld h,(TBL_SNAKE_HISTORY_CLEAN >> 8) & $FF
ld a,(snake_history_clean_length)
dec a
ld l,a
ld a,(hl)
bit 3,a
jr nz,ivsq_head_in_bottom_half
; Head in top half
bit 7,a
jr nz,ivsq_head_in_top_right
; Head in top left
ld hl,flags
set 7,(hl)
jp find_free_space
ivsq_head_in_top_right:
ld hl,flags
set 6,(hl)
jp find_free_space
ivsq_head_in_bottom_half:
bit 7,a
jr nz,ivsq_head_in_bottom_right
; Head in bottom left
ld hl,flags
set 4,(hl)
jp find_free_space
ivsq_head_in_bottom_right:
ld hl,flags
set 5,(hl)
find_free_space:
; The following routine finds free space that is not occupied by the snake, and
; places new food in this free space. It divides the map into 4 quadrants
; (TR, BR, BL, TL); any quadrant that does not contain snake is added to the
; free squares tables; any quadrant that does contain snake is further divided
; into quadrants until all free space is mapped.
ld ix,next_quadrant
ld iy,check_quadrant
; Check bottom-left free squares cache invalid
ld a,(flags)
bit 4,a
jr z,check_br_invalid
; d: location of top-left quadrant
; e: offset to bottom-left quadrant / width / height
ld de,0x0804
ld hl,free_squares_bl_length
ld (hl),0
ld (free_squares_length_pointer),hl
ld a,TBL_FREE_SQUARES_BL_TL_TABLE & 0x00ff
ld (free_squares_low),a
call check_quadrants
ld hl,flags
res 4,(hl)
check_br_invalid:
ld a,(flags)
bit 5,a
jr z,check_tr_invalid
; d: location of top-left quadrant
; e: offset to bottom-left quadrant / width / height
ld de,0x8804
ld hl,free_squares_br_length
ld (hl),0
ld (free_squares_length_pointer),hl
ld a,TBL_FREE_SQUARES_BR_TL_TABLE & 0x00ff
ld (free_squares_low),a
call check_quadrants
ld hl,flags
res 5,(hl)
check_tr_invalid:
ld a,(flags)
bit 6,a
jr z,check_tl_invalid
; d: location of top-left quadrant
; e: offset to bottom-left quadrant / width / height
ld de,0x8004
ld hl,free_squares_tr_length
ld (hl),0
ld (free_squares_length_pointer),hl
ld a,TBL_FREE_SQUARES_TR_TL_TABLE & 0x00ff
ld (free_squares_low),a
call check_quadrants
ld hl,flags
res 6,(hl)
check_tl_invalid:
ld a,(flags)
bit 7,a
jr z,check_create_food
; d: location of top-left quadrant
; e: offset to bottom-left quadrant / width / height
ld de,0x0004
ld hl,free_squares_tl_length
ld (hl),0
ld (free_squares_length_pointer),hl
ld a,TBL_FREE_SQUARES_TL_TL_TABLE & 0x00ff
ld (free_squares_low),a
call check_quadrants
ld hl,flags
res 7,(hl)
check_create_food:
ld iy,draw_line
; If food eaten flag is not set, jump
ld a,(flags)
bit 0,a
jp z,invalidate_free_square_quadrants_tail
; Create food
; If a quadrant does not contain free squares, it is skipped. The counter
; will be decremented for each quadrant checked.
ld b,5
; Pick a random quadrant
call random
and 0xc0
jp pe,create_food_left
; Otherwise, random quadrant is on the right
bit 7,a
jr nz,create_food_tr
create_food_br:
djnz create_food_br_continue
jp collision
create_food_br_continue:
ld a,(free_squares_br_length)
or a
jr z,create_food_tr
ld e,TBL_FREE_SQUARES_BR_TL_TABLE & 0x00ff
jp create_food
create_food_left:
jr nz,create_food_tl
create_food_bl:
djnz create_food_bl_continue
jp collision
create_food_bl_continue:
ld a,(free_squares_bl_length)
or a
jr z,create_food_br
ld e,TBL_FREE_SQUARES_BL_TL_TABLE & 0x00ff
jp create_food
create_food_tr:
djnz create_food_tr_continue
jp collision
create_food_tr_continue:
ld a,(free_squares_tr_length)
or a
jr z,create_food_tl
ld e,TBL_FREE_SQUARES_TR_TL_TABLE & 0x00ff
jp create_food
create_food_tl:
djnz create_food_tl_continue
jp collision
create_food_tl_continue:
ld a,(free_squares_tl_length)
or a
jr z,create_food_bl
ld e,TBL_FREE_SQUARES_TL_TL_TABLE & 0x00ff
create_food:
; Pick a random free square
; Random number limit
ld c,a
call random
ld b,a
call modulo
add a,e
ld l,a
; High byte is the same for BL, BR, TR and TL tables
ld h,(TBL_FREE_SQUARES_BL_TL_TABLE >> 8) & $FF
ld d,(hl)
inc h ; TBL_FREE_SQUARES_??_BR_TABLE
ld e,(hl)
; Pick a random position within the free square
; Load square width/height to register h
ld a,e
sub d
ld h,a
; Random number limit
and 0x0f
ld c,a
; X-coordinate
push hl
call random
pop hl
ld b,a
call modulo
rlca
rlca
rlca
rlca
and 0xf0
ld b,a
; Y-coordinate
push hl
call random
pop hl
push bc
call modulo
pop bc
or b
; Add location of top-left of square, to get the actual food location
add a,d
ld (current_food_location),a
ld e,a
; Location of food
ld hl,0x8178
; Column/row
rrca
rrca
rrca
rrca
and 0x0f
add a,8
ld d,a
ld a,e
and 0x0f
add a,4
ld e,a
ld iy,draw_line
halt
call draw_char
; Reset food eaten flag
ld hl,flags
res 0,(hl)
invalidate_free_square_quadrants_tail:
; Invalidate any free square quadrants that contain the current position
; for the tail. This tail will have moved by the time we do the next
; free square finding calculations, which is why we do the check now.
ld hl,TBL_SNAKE_HISTORY_CLEAN
ld a,(hl)
bit 3,a
jr nz,ivsq_tail_in_bottom_half
; Tail in top half
bit 7,a
jr nz,ivsq_tail_in_top_right
; Tail in top left
ld hl,flags
set 7,(hl)
jp next_input_loop
ivsq_tail_in_top_right:
ld hl,flags
set 6,(hl)
jp next_input_loop
ivsq_tail_in_bottom_half:
bit 7,a
jr nz,ivsq_tail_in_bottom_right
; Tail in bottom left
ld hl,flags
set 4,(hl)
jp next_input_loop
ivsq_tail_in_bottom_right:
ld hl,flags
set 5,(hl) |
.global s_prepare_buffers
s_prepare_buffers:
push %r10
push %r14
push %r9
push %rbp
push %rbx
push %rcx
push %rdi
push %rsi
lea addresses_UC_ht+0x3f8d, %r10
nop
nop
nop
nop
nop
lfence
vmovups (%r10), %ymm2
vextracti128 $0, %ymm2, %xmm2
vpextrq $1, %xmm2, %r14
nop
nop
and %rbx, %rbx
lea addresses_normal_ht+0x8f35, %r10
nop
nop
nop
sub $28455, %rbp
mov $0x6162636465666768, %rcx
movq %rcx, (%r10)
nop
sub %r14, %r14
lea addresses_D_ht+0xf28d, %rsi
lea addresses_WC_ht+0x151b8, %rdi
nop
nop
and $29087, %r9
mov $44, %rcx
rep movsb
nop
nop
xor $58951, %r14
lea addresses_WT_ht+0xaeb5, %r14
clflush (%r14)
nop
nop
nop
nop
cmp %rsi, %rsi
movb (%r14), %bl
nop
nop
nop
nop
xor $2307, %rsi
lea addresses_normal_ht+0x248d, %rsi
lea addresses_normal_ht+0x608d, %rdi
clflush (%rsi)
nop
sub %r9, %r9
mov $124, %rcx
rep movsb
nop
nop
nop
and $13924, %rbp
lea addresses_WT_ht+0x5553, %r9
nop
nop
nop
sub %rbp, %rbp
mov $0x6162636465666768, %r10
movq %r10, %xmm5
movups %xmm5, (%r9)
nop
and %rbx, %rbx
lea addresses_WC_ht+0x1e38d, %rdi
nop
dec %rbp
mov (%rdi), %r10
nop
nop
nop
nop
nop
and %r9, %r9
lea addresses_A_ht+0xcc0d, %rsi
lea addresses_UC_ht+0x1ba4d, %rdi
nop
nop
sub $19836, %r10
mov $7, %rcx
rep movsb
nop
nop
nop
nop
nop
and $58920, %rbp
pop %rsi
pop %rdi
pop %rcx
pop %rbx
pop %rbp
pop %r9
pop %r14
pop %r10
ret
.global s_faulty_load
s_faulty_load:
push %r11
push %r13
push %r8
push %rax
push %rcx
push %rdi
push %rdx
// Store
lea addresses_WC+0x17b6b, %rcx
cmp $58441, %rdx
movw $0x5152, (%rcx)
nop
xor $50018, %rax
// Load
lea addresses_WT+0x1578d, %r13
inc %rdx
vmovups (%r13), %ymm5
vextracti128 $1, %ymm5, %xmm5
vpextrq $0, %xmm5, %r11
nop
nop
xor %r11, %r11
// Store
lea addresses_PSE+0x1dc75, %rax
nop
nop
nop
nop
and %r8, %r8
mov $0x5152535455565758, %rcx
movq %rcx, %xmm4
vmovups %ymm4, (%rax)
nop
sub %rcx, %rcx
// Faulty Load
lea addresses_UC+0x1148d, %rdi
nop
nop
nop
nop
nop
add $877, %r13
mov (%rdi), %r11w
lea oracles, %r13
and $0xff, %r11
shlq $12, %r11
mov (%r13,%r11,1), %r11
pop %rdx
pop %rdi
pop %rcx
pop %rax
pop %r8
pop %r13
pop %r11
ret
/*
<gen_faulty_load>
[REF]
{'OP': 'LOAD', 'src': {'same': False, 'type': 'addresses_UC', 'NT': False, 'AVXalign': False, 'size': 8, 'congruent': 0}}
{'OP': 'STOR', 'dst': {'same': False, 'type': 'addresses_WC', 'NT': False, 'AVXalign': False, 'size': 2, 'congruent': 0}}
{'OP': 'LOAD', 'src': {'same': False, 'type': 'addresses_WT', 'NT': False, 'AVXalign': False, 'size': 32, 'congruent': 5}}
{'OP': 'STOR', 'dst': {'same': False, 'type': 'addresses_PSE', 'NT': False, 'AVXalign': False, 'size': 32, 'congruent': 3}}
[Faulty Load]
{'OP': 'LOAD', 'src': {'same': True, 'type': 'addresses_UC', 'NT': False, 'AVXalign': False, 'size': 2, 'congruent': 0}}
<gen_prepare_buffer>
{'OP': 'LOAD', 'src': {'same': False, 'type': 'addresses_UC_ht', 'NT': False, 'AVXalign': False, 'size': 32, 'congruent': 6}}
{'OP': 'STOR', 'dst': {'same': False, 'type': 'addresses_normal_ht', 'NT': False, 'AVXalign': False, 'size': 8, 'congruent': 3}}
{'OP': 'REPM', 'src': {'same': False, 'congruent': 9, 'type': 'addresses_D_ht'}, 'dst': {'same': False, 'congruent': 0, 'type': 'addresses_WC_ht'}}
{'OP': 'LOAD', 'src': {'same': False, 'type': 'addresses_WT_ht', 'NT': False, 'AVXalign': False, 'size': 1, 'congruent': 3}}
{'OP': 'REPM', 'src': {'same': False, 'congruent': 11, 'type': 'addresses_normal_ht'}, 'dst': {'same': True, 'congruent': 10, 'type': 'addresses_normal_ht'}}
{'OP': 'STOR', 'dst': {'same': False, 'type': 'addresses_WT_ht', 'NT': False, 'AVXalign': False, 'size': 16, 'congruent': 1}}
{'OP': 'LOAD', 'src': {'same': False, 'type': 'addresses_WC_ht', 'NT': False, 'AVXalign': False, 'size': 8, 'congruent': 5}}
{'OP': 'REPM', 'src': {'same': False, 'congruent': 6, 'type': 'addresses_A_ht'}, 'dst': {'same': False, 'congruent': 5, 'type': 'addresses_UC_ht'}}
{'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
*/
|
/**
* Copyright 2019 Huawei Technologies Co., Ltd
*
* 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.
*/
#include "minddata/dataset/core/config_manager.h"
#include <fstream>
#include <iostream>
#include <string>
#include <thread>
#include <utility>
#ifndef ENABLE_ANDROID
#include "utils/log_adapter.h"
#else
#include "mindspore/lite/src/common/log_adapter.h"
#endif
#include "minddata/dataset/util/system_pool.h"
namespace mindspore {
namespace dataset {
ConfigManager::ConfigManager()
: rows_per_buffer_(kCfgRowsPerBuffer),
num_parallel_workers_(kCfgParallelWorkers),
worker_connector_size_(kCfgWorkerConnectorSize),
op_connector_size_(kCfgOpConnectorSize),
seed_(kCfgDefaultSeed),
monitor_sampling_interval_(kCfgMonitorSamplingInterval),
callback_timout_(kCfgCallbackTimeout),
cache_host_(kCfgDefaultCacheHost),
cache_port_(kCfgDefaultCachePort),
num_connections_(kDftNumConnections),
prefetch_size_(kDftPrefetchSize),
auto_num_workers_(kDftAutoNumWorkers),
num_cpu_threads_(std::thread::hardware_concurrency()),
auto_num_workers_num_shards_(1),
auto_worker_config_(0) {
auto env_cache_host = std::getenv("MS_CACHE_HOST");
auto env_cache_port = std::getenv("MS_CACHE_PORT");
if (env_cache_host != nullptr) {
cache_host_ = env_cache_host;
}
if (env_cache_port != nullptr) {
char *end = nullptr;
cache_port_ = strtol(env_cache_port, &end, 10);
if (*end != '\0') {
MS_LOG(WARNING) << "\nCache port from env variable MS_CACHE_PORT is invalid, back to use default "
<< kCfgDefaultCachePort << std::endl;
cache_port_ = kCfgDefaultCachePort;
}
}
}
// A print method typically used for debugging
void ConfigManager::Print(std::ostream &out) const {
// Don't show the test/internal ones. Only display the main ones here.
// fyi, boolalpha tells the output stream to write "true" and "false" for bools
out << "\nClient config settings :"
<< "\nDataCache Rows per buffer : " << rows_per_buffer_
<< "\nParallelOp workers : " << num_parallel_workers_
<< "\nParallelOp worker connector size : " << worker_connector_size_
<< "\nSize of each Connector : " << op_connector_size_ << std::endl;
}
// Private helper function that takes a nlohmann json format and populates the settings
Status ConfigManager::FromJson(const nlohmann::json &j) {
set_rows_per_buffer(j.value("rowsPerBuffer", rows_per_buffer_));
set_num_parallel_workers(j.value("numParallelWorkers", num_parallel_workers_));
set_worker_connector_size(j.value("workerConnectorSize", worker_connector_size_));
set_op_connector_size(j.value("opConnectorSize", op_connector_size_));
set_seed(j.value("seed", seed_));
set_monitor_sampling_interval(j.value("monitorSamplingInterval", monitor_sampling_interval_));
set_cache_host(j.value("cacheHost", cache_host_));
set_cache_port(j.value("cachePort", cache_port_));
set_num_connections(j.value("numConnections", num_connections_));
set_prefetch_size(j.value("prefetchSize", prefetch_size_));
return Status::OK();
}
// Loads a json file with the default settings and populates all the settings
Status ConfigManager::LoadFile(const std::string &settingsFile) {
Status rc;
if (!Path(settingsFile).Exists()) {
RETURN_STATUS_UNEXPECTED("File is not found.");
}
// Some settings are mandatory, others are not (with default). If a setting
// is optional it will set a default value if the config is missing from the file.
try {
std::ifstream in(settingsFile);
nlohmann::json js;
in >> js;
rc = FromJson(js);
} catch (const nlohmann::json::type_error &e) {
std::ostringstream ss;
ss << "Client file failed to load:\n" << e.what();
std::string err_msg = ss.str();
RETURN_STATUS_UNEXPECTED(err_msg);
} catch (const std::exception &err) {
RETURN_STATUS_UNEXPECTED("Client file failed to load.");
}
return rc;
}
// Setter function
void ConfigManager::set_rows_per_buffer(int32_t rows_per_buffer) { rows_per_buffer_ = rows_per_buffer; }
// Setter function
void ConfigManager::set_num_parallel_workers(int32_t num_parallel_workers) {
num_parallel_workers_ = num_parallel_workers;
}
// Setter function
void ConfigManager::set_worker_connector_size(int32_t connector_size) { worker_connector_size_ = connector_size; }
// Setter function
void ConfigManager::set_op_connector_size(int32_t connector_size) { op_connector_size_ = connector_size; }
uint32_t ConfigManager::seed() const { return seed_; }
void ConfigManager::set_rank_id(uint32_t rank_id) { rank_id_ = rank_id; }
void ConfigManager::set_seed(uint32_t seed) { seed_ = seed; }
void ConfigManager::set_monitor_sampling_interval(uint32_t interval) { monitor_sampling_interval_ = interval; }
void ConfigManager::set_callback_timeout(uint32_t timeout) { callback_timout_ = timeout; }
void ConfigManager::set_cache_host(std::string cache_host) { cache_host_ = std::move(cache_host); }
void ConfigManager::set_cache_port(int32_t cache_port) { cache_port_ = cache_port; }
void ConfigManager::set_num_connections(int32_t num_connections) { num_connections_ = num_connections; }
void ConfigManager::set_prefetch_size(int32_t prefetch_size) { prefetch_size_ = prefetch_size; }
} // namespace dataset
} // namespace mindspore
|
; A076051: Sum of product of odd numbers <= n and the product of even numbers <= n.
; 2,3,5,11,23,63,153,489,1329,4785,14235,56475,181215,780255,2672145,12348945,44781345,220253985,840523635,4370620275,17465201775,95498916975,397983749625,2278224696825,9867844134225,58917607974225,264469801070475,1641787169697675,7618612476650175,49040157044253375,234748657653134625,1563094742062478625,7703855828862818625,52953322446161762625,268263758052098683875,1899986948191060603875,9879138385352252391375,71977860935783603175375,383608053176023482431625,2870913642898706235455625,15664153113813817068080625,120258542014972784118320625,671007501237868305462826875,5278262778201114512602666875,30088192084146788950312329375,242236225767570684069774729375,1409430627206378549662024760625,11601965045507766577401529400625,68845238298680604507317096150625,578905684082613894746536562390625,3500697756379977497419310281921875,30044659730849975254766445769921875,185016511245502140740530363853859375
mov $3,$0
add $3,1
mov $6,$0
lpb $3
mov $0,$6
mov $2,0
sub $3,1
sub $0,$3
mov $4,2
mov $5,1
lpb $0
add $2,$0
trn $0,2
mul $5,$2
mov $2,1
mov $4,$5
lpe
add $1,$4
lpe
mov $0,$1
|
;;
;; Copyright (c) 2019-2022, Intel Corporation
;;
;; Redistribution and use in source and binary forms, with or without
;; modification, are permitted provided that the following conditions are met:
;;
;; * Redistributions of source code must retain the above copyright notice,
;; this list of conditions and the following disclaimer.
;; * 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.
;; * Neither the name of Intel Corporation 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 OWNER 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.
;;
%include "include/aesni_emu.inc"
%define AES_CNTR_CCM_128 aes_cntr_ccm_128_sse_no_aesni
%include "sse/aes128_cntr_ccm_by8_sse.asm"
|
; A131403: Row sums of triangle A131402.
; 1,2,5,10,21,44,93,196,411,856,1771,3642,7451,15178,30809,62358,125921,253800,510777,1026704,2061751,4137012,8295895,16627190,33311671,66716054,133582133,267407026,535206861,1071049316,2143127061,4287918172,8578528851,17161414288,34329877699,68671161138,137360777171,274751415010,549551145617,1099180467534,2198487427001,4397179522272,8794690204785,17589916238120,35180699465071,70362801747564,140727873301423,281459419226606,562924780883311,1125859176820526,2251733911125101,4503492994788202
mov $1,$0
seq $0,167821 ; a(n) is the number of n-tosses having a run of 3 or more heads or a run of 3 or more tails for a fair coin (i.e., probability is a(n)/2^n).
add $0,$1
add $0,1
|
/**
\file
\author Shin'ichiro Nakaoka
*/
#include "VRMLBodyLoader.h"
#include "Body.h"
#include "ForceSensor.h"
#include "RateGyroSensor.h"
#include "AccelerationSensor.h"
#include "Camera.h"
#include "RangeCamera.h"
#include "RangeSensor.h"
#include "PointLight.h"
#include "SpotLight.h"
#include <cnoid/FileUtil>
#include <cnoid/Exception>
#include <cnoid/EasyScanner>
#include <cnoid/VRMLParser>
#include <cnoid/VRMLToSGConverter>
#include <cnoid/ValueTree>
#include <cnoid/NullOut>
#include <boost/format.hpp>
#include <boost/dynamic_bitset.hpp>
#include "gettext.h"
using namespace std;
using namespace cnoid;
using boost::format;
namespace cnoid {
class VRMLBodyLoaderImpl
{
public:
enum {
PROTO_UNDEFINED = 0,
PROTO_HUMANOID,
PROTO_JOINT,
PROTO_SEGMENT,
PROTO_SURFACE,
PROTO_DEVICE,
PROTO_EXTRAJOINT,
NUM_PROTOS
};
typedef std::bitset<NUM_PROTOS> ProtoIdSet;
struct SegmentInfo
{
Vector3 c;
double m;
};
struct LinkInfo
{
Link* link;
double m;
Vector3 c;
Matrix3 I;
vector<SegmentInfo> segments;
SgGroupPtr visualShape;
SgGroupPtr collisionShape;
bool isSurfaceNodeUsed;
};
VRMLParser vrmlParser;
Body* body;
VRMLProtoInstancePtr rootJointNode;
std::vector<VRMLProtoInstancePtr> extraJointNodes;
boost::dynamic_bitset<> validJointIdSet;
size_t numValidJointIds;
VRMLToSGConverter sgConverter;
int divisionNumber;
ostream* os_;
bool isVerbose;
int messageIndent;
typedef std::function<DevicePtr(VRMLProtoInstance* node)> DeviceFactory;
typedef map<string, DeviceFactory> DeviceFactoryMap;
static DeviceFactoryMap deviceFactories;
typedef map<Link*, VRMLNodePtr> LinkOriginalMap;
LinkOriginalMap linkOriginalMap;
ostream& os() { return *os_; }
void putMessage(const std::string& message){
os() << string(messageIndent, ' ') + message + "\n";
}
VRMLBodyLoaderImpl();
~VRMLBodyLoaderImpl();
VRMLNodePtr getOriginalNode(Link* link);
bool load(Body* body, const std::string& filename);
void readTopNodes();
void checkHumanoidProto(VRMLProto* proto);
void checkJointProto(VRMLProto* proto);
void checkSegmentProto(VRMLProto* proto);
void checkSurfaceProto(VRMLProto* proto);
void checkSensorProtoCommon(VRMLProto* proto);
void checkDeviceProtoCommon(VRMLProto* proto);
void checkVisionSensorProto(VRMLProto* proto);
void checkRangeSensorProto(VRMLProto* proto);
void checkSpotLightDeviceProto(VRMLProto* proto);
void checkExtraJointProto(VRMLProto* proto);
void readHumanoidNode(VRMLProtoInstance* humanoidNode);
Link* readJointNode(VRMLProtoInstance* jointNode, const Matrix3& parentRs);
Link* createLink(VRMLProtoInstance* jointNode, const Matrix3& parentRs);
void readJointSubNodes(LinkInfo& iLink, MFNode& childNodes, const ProtoIdSet& acceptableProtoIds, const Affine3& T);
void readSegmentNode(LinkInfo& iLink, VRMLProtoInstance* segmentNode, const Affine3& T);
void readSurfaceNode(LinkInfo& iLink, VRMLProtoInstance* segmentShapeNode, const Affine3& T);
void readDeviceNode(LinkInfo& iLink, VRMLProtoInstance* deviceNode, const Affine3& T);
static void readDeviceCommonParameters(Device& device, VRMLProtoInstance* node);
static ForceSensorPtr createForceSensor(VRMLProtoInstance* node);
static RateGyroSensorPtr createRateGyroSensor(VRMLProtoInstance* node);
static AccelerationSensorPtr createAccelerationSensor(VRMLProtoInstance* node);
static CameraPtr createCamera(VRMLProtoInstance* node);
static RangeSensorPtr createRangeSensor(VRMLProtoInstance* node);
static void readLightDeviceCommonParameters(Light& light, VRMLProtoInstance* node);
static SpotLightPtr createSpotLight(VRMLProtoInstance* node);
void setExtraJoints();
};
VRMLBodyLoaderImpl::DeviceFactoryMap VRMLBodyLoaderImpl::deviceFactories;
}
namespace {
typedef void (VRMLBodyLoaderImpl::*ProtoCheckFunc)(VRMLProto* proto);
struct ProtoInfo
{
ProtoInfo() { }
ProtoInfo(int id, ProtoCheckFunc func) : id(id), protoCheckFunc(func) { }
int id;
ProtoCheckFunc protoCheckFunc;
};
typedef map<string, ProtoInfo> ProtoInfoMap;
ProtoInfoMap protoInfoMap;
void throwExceptionOfIllegalField(VRMLProto* proto, const std::string& name, const char* label)
{
throw invalid_argument(
str(format(_("Proto \"%1%\" must have the \"%2%\" field of %3% type")) % proto->protoName % name % label));
}
template <typename TValue>
void requireField(VRMLProto* proto, const std::string& name){
VRMLVariantField* field = proto->findField(name);
if(!field || field->type() != typeid(TValue)){
throwExceptionOfIllegalField(proto, name, labelOfVRMLfieldType<TValue>());
}
}
template <typename TValue>
VRMLVariantField* addField(VRMLProto* proto, const std::string& name, const TValue& defaultValue) {
VRMLVariantField* field = proto->findField(name);
if(!field){
field = &proto->field(name);
(*field) = defaultValue;
} else if(field->type() != typeid(TValue)){
throwExceptionOfIllegalField(proto, name, labelOfVRMLfieldType<TValue>());
}
return field;
}
template <typename TValue>
VRMLVariantField* addField(VRMLProto* proto, const std::string& name) {
return addField(proto, name, TValue());
}
double getLimitValue(VRMLVariantField& field, double defaultValue)
{
MFFloat& values = get<MFFloat>(field);
if(values.empty()){
return defaultValue;
}
return values[0];
}
template<class ValueType> ValueType getValue(VRMLProtoInstance* node, const char* fieldName)
{
VRMLProtoFieldMap::const_iterator p = node->fields.find(fieldName);
if(p == node->fields.end()){
BOOST_THROW_EXCEPTION(
nonexistent_key_error()
<< error_info_key(fieldName)
<< error_info_message(str(format(_("Node \"%1%\" should have the field \"%2%\"")) % node->proto->protoName % fieldName)));
}
return boost::get<ValueType>(p->second);
}
void readVRMLfield(VRMLVariantField& field, string& out_s)
{
switch(field.which()){
case SFSTRING:
out_s = get<SFString>(field);
break;
case MFSTRING:
{
MFString& strings = get<MFString>(field);
out_s = "";
for(size_t i=0; i < strings.size(); i++){
out_s += strings[i] + "\n";
}
}
break;
default:
break;
}
}
bool checkAndReadVRMLfield(VRMLProtoInstance* node, const char* key, bool& out_value)
{
VRMLVariantField* field = node->findField(key);
if(field && field->which() == SFBOOL){
out_value = get<SFBool>(*field);
return true;
}
return false;
}
bool checkAndReadVRMLfield(VRMLProtoInstance* node, const char* key, int& out_value)
{
VRMLVariantField* field = node->findField(key);
if(field && field->which() == SFINT32){
out_value = get<SFInt32>(*field);
return true;
}
return false;
}
void readVRMLfield(VRMLVariantField& field, double& out_value)
{
out_value = get<SFFloat>(field);
}
bool checkAndReadVRMLfield(VRMLProtoInstance* node, const char* key, SFVec3f& out_value)
{
VRMLVariantField* field = node->findField(key);
if(field && field->which() == SFVEC3F){
out_value = get<SFVec3f>(*field);
return true;
}
return false;
}
void readVRMLfield(VRMLVariantField& field, Vector3& out_v)
{
out_v = get<SFVec3f>(field);
}
void readVRMLfield(VRMLVariantField& field, Matrix3& out_R)
{
if(field.which() == SFROTATION){
out_R = get<SFRotation>(field).toRotationMatrix();
} else if(field.which() == MFFLOAT){
MFFloat& mf = get<MFFloat>(field);
if(mf.size() >= 9){
out_R <<
mf[0], mf[1], mf[2],
mf[3], mf[4], mf[5],
mf[6], mf[7], mf[8];
}
}
}
}
VRMLBodyLoader::VRMLBodyLoader()
{
impl = new VRMLBodyLoaderImpl();
}
VRMLBodyLoaderImpl::VRMLBodyLoaderImpl()
{
divisionNumber = sgConverter.divisionNumber();
isVerbose = false;
body = 0;
os_ = &nullout();
if(protoInfoMap.empty()){
protoInfoMap["Humanoid"] = ProtoInfo(PROTO_HUMANOID, &VRMLBodyLoaderImpl::checkHumanoidProto);
protoInfoMap["Joint"] = ProtoInfo(PROTO_JOINT, &VRMLBodyLoaderImpl::checkJointProto);
protoInfoMap["Segment"] = ProtoInfo(PROTO_SEGMENT, &VRMLBodyLoaderImpl::checkSegmentProto);
protoInfoMap["Surface"] = ProtoInfo(PROTO_SURFACE, &VRMLBodyLoaderImpl::checkSurfaceProto);
protoInfoMap["ForceSensor"] = ProtoInfo(PROTO_DEVICE, &VRMLBodyLoaderImpl::checkSensorProtoCommon);
protoInfoMap["Gyro"] = ProtoInfo(PROTO_DEVICE, &VRMLBodyLoaderImpl::checkSensorProtoCommon);
protoInfoMap["AccelerationSensor"] = ProtoInfo(PROTO_DEVICE, &VRMLBodyLoaderImpl::checkSensorProtoCommon);
protoInfoMap["RangeSensor"] = ProtoInfo(PROTO_DEVICE, &VRMLBodyLoaderImpl::checkSensorProtoCommon);
protoInfoMap["PressureSensor"] = ProtoInfo(PROTO_DEVICE, &VRMLBodyLoaderImpl::checkSensorProtoCommon);
protoInfoMap["VisionSensor"] = ProtoInfo(PROTO_DEVICE, &VRMLBodyLoaderImpl::checkVisionSensorProto);
protoInfoMap["RangeSensor"] = ProtoInfo(PROTO_DEVICE, &VRMLBodyLoaderImpl::checkRangeSensorProto);
protoInfoMap["SpotLightDevice"] = ProtoInfo(PROTO_DEVICE, &VRMLBodyLoaderImpl::checkSpotLightDeviceProto);
protoInfoMap["ExtraJoint"] = ProtoInfo(PROTO_EXTRAJOINT, &VRMLBodyLoaderImpl::checkExtraJointProto);
}
if(deviceFactories.empty()){
deviceFactories["ForceSensor"] = &VRMLBodyLoaderImpl::createForceSensor;
deviceFactories["Gyro"] = &VRMLBodyLoaderImpl::createRateGyroSensor;
deviceFactories["AccelerationSensor"] = &VRMLBodyLoaderImpl::createAccelerationSensor;
//sensorTypeMap["PressureSensor"] = Sensor::PRESSURE;
//sensorTypeMap["PhotoInterrupter"] = Sensor::PHOTO_INTERRUPTER;
//sensorTypeMap["TorqueSensor"] = Sensor::TORQUE;
deviceFactories["RangeSensor"] = &VRMLBodyLoaderImpl::createRangeSensor;
deviceFactories["VisionSensor"] = &VRMLBodyLoaderImpl::createCamera;
deviceFactories["SpotLightDevice"] = &VRMLBodyLoaderImpl::createSpotLight;
}
}
VRMLBodyLoader::~VRMLBodyLoader()
{
delete impl;
}
VRMLBodyLoaderImpl::~VRMLBodyLoaderImpl()
{
}
void VRMLBodyLoader::setMessageSink(std::ostream& os)
{
impl->os_ = &os;
impl->vrmlParser.setMessageSink(os);
impl->sgConverter.setMessageSink(os);
}
void VRMLBodyLoader::setVerbose(bool on)
{
impl->isVerbose = on;
}
/**
\todo fully implement this mode
*/
void VRMLBodyLoader::enableShapeLoading(bool on)
{
impl->sgConverter.setTriangulationEnabled(on);
impl->sgConverter.setNormalGenerationEnabled(on);
}
void VRMLBodyLoader::setDefaultDivisionNumber(int n)
{
impl->divisionNumber = n;
}
VRMLNodePtr VRMLBodyLoader::getOriginalNode(Link* link)
{
return impl->getOriginalNode(link);
}
VRMLNodePtr VRMLBodyLoaderImpl::getOriginalNode(Link* link)
{
LinkOriginalMap::iterator it;
it = linkOriginalMap.find(link);
if (it == linkOriginalMap.end()) {
return NULL;
}
return it->second;
}
bool VRMLBodyLoader::load(Body* body, const std::string& filename)
{
body->clearDevices();
body->clearExtraJoints();
return impl->load(body, filename);
}
bool VRMLBodyLoaderImpl::load(Body* body, const std::string& filename)
{
bool result = false;
this->body = body;
rootJointNode = 0;
extraJointNodes.clear();
validJointIdSet.clear();
numValidJointIds = 0;
try {
sgConverter.setDivisionNumber(divisionNumber);
vrmlParser.load(filename);
readTopNodes();
if(body->modelName().empty()){
body->setModelName(getBasename(filename));
}
result = true;
os().flush();
} catch(const ValueNode::Exception& ex){
os() << ex.message() << endl;
} catch(EasyScanner::Exception & ex){
os() << ex.getFullMessage() << endl;
} catch(const nonexistent_key_error& error){
if(const std::string* message = boost::get_error_info<error_info_message>(error)){
os() << *message << endl;
}
} catch(const std::exception& ex){
os() << ex.what() << endl;
}
return result;
}
void VRMLBodyLoaderImpl::readTopNodes()
{
bool humanoidNodeLoaded = false;
VRMLGroupPtr nonHumanoidNodeGroup;
while(VRMLNodePtr node = vrmlParser.readNode()){
if(node->isCategoryOf(PROTO_DEF_NODE)){
VRMLProto* proto = static_cast<VRMLProto*>(node.get());
ProtoInfoMap::iterator p = protoInfoMap.find(proto->protoName);
if(p != protoInfoMap.end()){
ProtoInfo& info = p->second;
(this->*info.protoCheckFunc)(proto);
}
continue;
} else if(node->isCategoryOf(PROTO_INSTANCE_NODE)){
VRMLProtoInstance* instance = static_cast<VRMLProtoInstance*>(node.get());
if(instance->proto->protoName == "Humanoid") {
if(humanoidNodeLoaded){
throw invalid_argument(_("Humanoid nodes more than one are defined."));
}
readHumanoidNode(instance);
humanoidNodeLoaded = true;
continue;
} else if(instance->proto->protoName == "ExtraJoint") {
extraJointNodes.push_back(instance);
continue;
}
}
if(!nonHumanoidNodeGroup){
nonHumanoidNodeGroup = new VRMLGroup;
}
nonHumanoidNodeGroup->children.push_back(node);
}
vrmlParser.checkEOF();
bool loaded = humanoidNodeLoaded;
if(humanoidNodeLoaded){
setExtraJoints();
} else if(!nonHumanoidNodeGroup->children.empty()){
SgNodePtr scene = sgConverter.convert(nonHumanoidNodeGroup);
if(scene){
Link* link = body->createLink();
link->setName("Root");
link->setShape(scene);
link->setMass(1.0);
link->setInertia(Matrix3::Identity());
body->setRootLink(link);
loaded = true;
}
}
if(!loaded){
throw invalid_argument(_("There are no VRML nodes which can be loaded as a Body."));
}
}
void VRMLBodyLoaderImpl::checkHumanoidProto(VRMLProto* proto)
{
// required fields
requireField<SFVec3f>(proto, "center");
requireField<MFNode>(proto, "humanoidBody");
requireField<SFRotation>(proto, "rotation");
requireField<SFVec3f>(proto, "translation");
// optional fields
addField<MFString>(proto, "info");
addField<SFString>(proto, "name");
addField<SFString>(proto, "version");
addField<SFRotation>(proto, "scaleOrientation");
addField<SFVec3f>(proto, "scale", SFVec3f::Constant(1.0));
}
void VRMLBodyLoaderImpl::checkJointProto(VRMLProto* proto)
{
// required fields
requireField<SFVec3f>(proto, "center");
requireField<MFNode>(proto, "children");
requireField<SFRotation>(proto, "rotation");
requireField<SFVec3f>(proto, "translation");
requireField<SFString>(proto, "jointType");
requireField<SFInt32>(proto, "jointId");
VRMLVariantField* field;
field = proto->findField("jointAxis");
if(!field){
throw invalid_argument(_("Prototype of Humanoid must have the \"jointAxis\" field"));
}
if(field->type() != typeid(SFString) && field->type() != typeid(SFVec3f)){
throw invalid_argument(_("The type of \"jointAxis\" field in \"Humanoid\" prototype must be SFString or SFVec3f"));
}
// optional fields
addField<MFFloat>(proto, "llimit");
addField<MFFloat>(proto, "ulimit");
addField<MFFloat>(proto, "lvlimit");
addField<MFFloat>(proto, "uvlimit");
addField<SFRotation>(proto, "limitOrientation");
addField<SFString>(proto, "name");
addField<SFFloat>(proto, "gearRatio", 1.0);
addField<SFFloat>(proto, "rotorInertia", 0.0);
addField<SFFloat>(proto, "rotorResistor", 0.0);
addField<SFFloat>(proto, "torqueConst", 1.0);
addField<SFFloat>(proto, "encoderPulse", 1.0);
addField<SFFloat>(proto, "jointValue", 0.0);
addField<SFVec3f>(proto, "scale", SFVec3f::Constant(1.0));
if(proto->findField("equivalentInertia")){
os() << _("The \"equivalentInertia\" field of the Joint node is obsolete.") << endl;
}
}
void VRMLBodyLoaderImpl::checkSegmentProto(VRMLProto* proto)
{
requireField<SFVec3f>(proto, "centerOfMass");
requireField<SFFloat>(proto, "mass");
requireField<MFFloat>(proto, "momentsOfInertia");
addField<SFString>(proto, "name");
}
void VRMLBodyLoaderImpl::checkSurfaceProto(VRMLProto* proto)
{
requireField<MFNode>(proto, "visual");
requireField<MFNode>(proto, "collision");
}
void VRMLBodyLoaderImpl::checkSensorProtoCommon(VRMLProto* proto)
{
requireField<SFInt32>(proto, "sensorId");
requireField<SFVec3f>(proto, "translation");
requireField<SFRotation>(proto, "rotation");
}
void VRMLBodyLoaderImpl::checkDeviceProtoCommon(VRMLProto* proto)
{
requireField<SFVec3f>(proto, "translation");
requireField<SFRotation>(proto, "rotation");
}
void VRMLBodyLoaderImpl::checkVisionSensorProto(VRMLProto* proto)
{
checkDeviceProtoCommon(proto);
requireField<SFString>(proto, "type");
requireField<SFInt32>(proto, "width");
requireField<SFInt32>(proto, "height");
requireField<SFFloat>(proto, "fieldOfView");
requireField<SFFloat>(proto, "frontClipDistance");
requireField<SFFloat>(proto, "backClipDistance");
addField<SFFloat>(proto, "frameRate", 30.0);
}
void VRMLBodyLoaderImpl::checkRangeSensorProto(VRMLProto* proto)
{
checkDeviceProtoCommon(proto);
requireField<SFFloat>(proto, "scanAngle");
requireField<SFFloat>(proto, "scanStep");
requireField<SFFloat>(proto, "scanRate");
requireField<SFFloat>(proto, "maxDistance");
addField<SFFloat>(proto, "minDistance", 0.01);
}
void VRMLBodyLoaderImpl::checkSpotLightDeviceProto(VRMLProto* proto)
{
checkDeviceProtoCommon(proto);
requireField<SFVec3f>(proto, "attenuation");
requireField<SFFloat>(proto, "beamWidth");
requireField<SFColor>(proto, "color");
requireField<SFFloat>(proto, "cutOffAngle");
requireField<SFVec3f>(proto, "direction");
requireField<SFFloat>(proto, "intensity");
requireField<SFBool>(proto, "on");
addField<SFFloat>(proto, "cutOffExponent", 1.0);
}
void VRMLBodyLoaderImpl::checkExtraJointProto(VRMLProto* proto)
{
requireField<SFString>(proto, "link1Name");
requireField<SFString>(proto, "link2Name");
requireField<SFVec3f>(proto, "link1LocalPos");
requireField<SFVec3f>(proto, "link2LocalPos");
requireField<SFString>(proto, "jointType");
requireField<SFVec3f>(proto, "jointAxis");
}
void VRMLBodyLoaderImpl::readHumanoidNode(VRMLProtoInstance* humanoidNode)
{
if(isVerbose) putMessage("Humanoid node");
body->setModelName(humanoidNode->defName);
MFNode& nodes = get<MFNode>(humanoidNode->fields["humanoidBody"]);
if(nodes.size() == 0){
throw invalid_argument(_("The Humanoid node does not have a Joint node in its \"humanoidBody\" field."));
} else if(nodes.size() > 1){
throw invalid_argument(_("The Humanoid node must have a unique Joint node in its \"humanoidBody\" field."));
}
if(nodes[0]->isCategoryOf(PROTO_INSTANCE_NODE)){
VRMLProtoInstance* jointNode = dynamic_cast<VRMLProtoInstance*>(nodes[0].get());
if(jointNode && jointNode->proto->protoName == "Joint"){
rootJointNode = jointNode;
Matrix3 Rs = Matrix3::Identity();
Link* rootLink = readJointNode(jointNode, Rs);
VRMLProtoFieldMap& f = jointNode->fields;
Vector3 defaultRootPos;
readVRMLfield(f["translation"], defaultRootPos);
Matrix3 defaultRootR;
readVRMLfield(f["rotation"], defaultRootR);
rootLink->setOffsetTranslation(defaultRootPos);
rootLink->setOffsetRotation(defaultRootR);
body->setRootLink(rootLink);
// Warn empty joint ids
if(numValidJointIds < validJointIdSet.size()){
for(size_t i=0; i < validJointIdSet.size(); ++i){
if(!validJointIdSet[i]){
os() << str(format(_("Warning: Joint ID %1% is not specified.")) % i) << endl;
}
}
}
body->installCustomizer();
}
}
}
static void setShape(Link* link, SgGroup* shape, bool isVisual)
{
SgNodePtr node;
if(shape->empty()){
node = new SgNode;
} else {
SgInvariantGroup* invariant = new SgInvariantGroup;
if(link->Rs().isApprox(Matrix3::Identity())){
shape->copyChildrenTo(invariant);
} else {
SgPosTransform* transformRs = new SgPosTransform;
transformRs->setRotation(link->Rs());
shape->copyChildrenTo(transformRs);
invariant->addChild(transformRs);
}
node = invariant;
}
if(node){
if(isVisual){
link->setVisualShape(node);
} else {
link->setCollisionShape(node);
}
}
}
Link* VRMLBodyLoaderImpl::readJointNode(VRMLProtoInstance* jointNode, const Matrix3& parentRs)
{
if(isVerbose) putMessage(string("Joint node") + jointNode->defName);
Link* link = createLink(jointNode, parentRs);
LinkInfo iLink;
iLink.link = link;
iLink.m = 0.0;
iLink.c = Vector3::Zero();
iLink.I = Matrix3::Zero();
iLink.visualShape = new SgGroup;
iLink.collisionShape = new SgGroup;
iLink.isSurfaceNodeUsed = false;
MFNode& childNodes = get<MFNode>(jointNode->fields["children"]);
Affine3 T(Affine3::Identity());
ProtoIdSet acceptableProtoIds;
acceptableProtoIds.set(PROTO_JOINT);
acceptableProtoIds.set(PROTO_SEGMENT);
acceptableProtoIds.set(PROTO_DEVICE);
readJointSubNodes(iLink, childNodes, acceptableProtoIds, T);
Matrix3& I = iLink.I;
for(size_t i=0; i < iLink.segments.size(); ++i){
const SegmentInfo& segment = iLink.segments[i];
const Vector3 o = segment.c - iLink.c;
const double& x = o.x();
const double& y = o.y();
const double& z = o.z();
const double& m = segment.m;
I(0,0) += m * (y * y + z * z);
I(0,1) += -m * (x * y);
I(0,2) += -m * (x * z);
I(1,0) += -m * (y * x);
I(1,1) += m * (z * z + x * x);
I(1,2) += -m * (y * z);
I(2,0) += -m * (z * x);
I(2,1) += -m * (z * y);
I(2,2) += m * (x * x + y * y);
}
link->setMass(iLink.m);
link->setCenterOfMass(link->Rs() * iLink.c);
link->setInertia(link->Rs() * iLink.I * link->Rs().transpose());
setShape(link, iLink.visualShape, true);
if(iLink.isSurfaceNodeUsed){
setShape(link, iLink.collisionShape, false);
} else {
link->setCollisionShape(link->visualShape());
}
return link;
}
Link* VRMLBodyLoaderImpl::createLink(VRMLProtoInstance* jointNode, const Matrix3& parentRs)
{
Link* link = body->createLink();
link->setName(jointNode->defName);
VRMLProtoFieldMap& jf = jointNode->fields;
link->setJointId(get<SFInt32>(jf["jointId"]));
if(link->jointId() >= 0){
if(link->jointId() >= static_cast<int>(validJointIdSet.size())){
validJointIdSet.resize(link->jointId() + 1);
}
if(!validJointIdSet[link->jointId()]){
++numValidJointIds;
validJointIdSet.set(link->jointId());
} else {
os() << str(format(_("Warning: Joint ID %1% is duplicated.")) % link->jointId()) << endl;
}
}
if(jointNode != rootJointNode){
Vector3 b;
readVRMLfield(jf["translation"], b);
link->setOffsetTranslation(parentRs * b);
Matrix3 R;
readVRMLfield(jf["rotation"], R);
link->setAccumulatedSegmentRotation(parentRs * R);
}
string jointType;
readVRMLfield(jf["jointType"], jointType);
if(jointType == "fixed" ){
link->setJointType(Link::FIXED_JOINT);
} else if(jointType == "free" ){
link->setJointType(Link::FREE_JOINT);
} else if(jointType == "rotate" ){
link->setJointType(Link::ROTATIONAL_JOINT);
} else if(jointType == "slide" ){
link->setJointType(Link::SLIDE_JOINT);
} else if(jointType == "pseudoContinuousTrack"){
link->setJointType(Link::PSEUDO_CONTINUOUS_TRACK);
link->setActuationMode(Link::JOINT_SURFACE_VELOCITY);
os() << str(format(_("Warning: A deprecated joint type 'pseudoContinousTrack'is specified for %1%."))
% link->name()) << endl;
} else {
throw invalid_argument(str(format(_("JointType \"%1%\" is not supported.")) % jointType));
}
if(link->jointType() == Link::FREE_JOINT || link->jointType() == Link::FIXED_JOINT){
link->setJointAxis(Vector3::Zero());
} else {
Vector3 jointAxis;
VRMLVariantField& jointAxisField = jf["jointAxis"];
switch(jointAxisField.which()){
case SFSTRING:
{
SFString& axisLabel = get<SFString>(jointAxisField);
if(axisLabel == "X"){
jointAxis = Vector3::UnitX();
} else if(axisLabel == "Y"){
jointAxis = Vector3::UnitY();
} else if(axisLabel == "Z"){
jointAxis = Vector3::UnitZ();
}
}
break;
case SFVEC3F:
readVRMLfield(jointAxisField, jointAxis);
break;
default:
jointAxis = Vector3::UnitZ();
break;
}
link->setJointAxis(link->Rs() * jointAxis);
}
double Ir, gearRatio, torqueConst, encoderPulse, rotorResistor;
readVRMLfield(jf["rotorInertia"], Ir);
readVRMLfield(jf["gearRatio"], gearRatio);
readVRMLfield(jf["torqueConst"], torqueConst);
readVRMLfield(jf["encoderPulse"], encoderPulse);
readVRMLfield(jf["rotorResistor"], rotorResistor);
double equivalentInertia = 0.0;
VRMLVariantField* field = jointNode->findField("equivalentInertia");
if(field){
equivalentInertia = get<SFFloat>(*field);
}
if( equivalentInertia == 0.0 ){
link->setEquivalentRotorInertia(gearRatio * gearRatio * Ir);
} else {
link->setEquivalentRotorInertia(equivalentInertia);
}
link->setInfo("rotorInertia", Ir);
link->setInfo("gearRatio", gearRatio);
link->setInfo("torqueConst", torqueConst);
link->setInfo("encoderPulse", encoderPulse);
link->setInfo("rotorResistor", rotorResistor);
double maxlimit = numeric_limits<double>::max();
link->setJointRange(
getLimitValue(jf["llimit"], -maxlimit),
getLimitValue(jf["ulimit"], +maxlimit));
link->setJointVelocityRange(
getLimitValue(jf["lvlimit"], -maxlimit),
getLimitValue(jf["uvlimit"], +maxlimit));
return link;
}
void VRMLBodyLoaderImpl::readJointSubNodes(LinkInfo& iLink, MFNode& childNodes, const ProtoIdSet& acceptableProtoIds, const Affine3& T)
{
for(size_t i = 0; i < childNodes.size(); ++i){
bool doTraverse = false;
VRMLNode* childNode = childNodes[i].get();
if(!childNode->isCategoryOf(PROTO_INSTANCE_NODE)){
doTraverse = true;
} else {
VRMLProtoInstance* protoInstance = static_cast<VRMLProtoInstance*>(childNode);
int id = PROTO_UNDEFINED;
const string& protoName = protoInstance->proto->protoName;
ProtoInfoMap::iterator p = protoInfoMap.find(protoName);
if(p == protoInfoMap.end()){
doTraverse = true;
childNode = protoInstance->actualNode.get();
} else {
id = p->second.id;
if(!acceptableProtoIds.test(id)){
throw invalid_argument(str(format(_("%1% node is not in a correct place.")) % protoName));
}
if(isVerbose){
messageIndent += 2;
}
switch(id){
case PROTO_JOINT:
if(!T.matrix().isApprox(Affine3::MatrixType::Identity())){
throw invalid_argument(
str(format(_("Joint node \"%1%\" is not in a correct place.")) % protoInstance->defName));
}
iLink.link->appendChild(readJointNode(protoInstance, iLink.link->Rs()));
break;
case PROTO_SEGMENT:
readSegmentNode(iLink, protoInstance, T);
linkOriginalMap[iLink.link] = childNodes[i];
break;
case PROTO_SURFACE:
readSurfaceNode(iLink, protoInstance, T);
break;
case PROTO_DEVICE:
readDeviceNode(iLink, protoInstance, T);
break;
default:
doTraverse = true;
break;
}
if(isVerbose){
messageIndent -= 2;
}
}
}
if(doTraverse && childNode->isCategoryOf(GROUPING_NODE)){
VRMLGroup* group = static_cast<VRMLGroup*>(childNode);
if(VRMLTransform* transform = dynamic_cast<VRMLTransform*>(group)){
readJointSubNodes(iLink, group->getChildren(), acceptableProtoIds, T * transform->toAffine3d());
} else {
readJointSubNodes(iLink, group->getChildren(), acceptableProtoIds, T);
}
}
}
}
void VRMLBodyLoaderImpl::readSegmentNode(LinkInfo& iLink, VRMLProtoInstance* segmentNode, const Affine3& T)
{
if(isVerbose) putMessage(string("Segment node ") + segmentNode->defName);
/*
Mass = Sigma mass
C = (Sigma mass * T * c) / Mass
I = Sigma(R * I * Rt + G)
R = Rotation matrix part of T
G = y*y+z*z, -x*y, -x*z, -y*x, z*z+x*x, -y*z, -z*x, -z*y, x*x+y*y
(x, y, z ) = T * c - C
*/
VRMLProtoFieldMap& sf = segmentNode->fields;
SegmentInfo iSegment;
readVRMLfield(sf["mass"], iSegment.m);
Vector3 c;
readVRMLfield(sf["centerOfMass"], c);
iSegment.c = T.linear() * c + T.translation();
if (iLink.m + iSegment.m > 0){
iLink.c = (iSegment.c * iSegment.m + iLink.c * iLink.m) / (iLink.m + iSegment.m);
}
iLink.m += iSegment.m;
iLink.segments.push_back(iSegment);
Matrix3 I;
readVRMLfield(sf["momentsOfInertia"], I);
iLink.I.noalias() += T.linear() * I * T.linear().transpose();
MFNode& childNodes = get<MFNode>(segmentNode->fields["children"]);
ProtoIdSet acceptableProtoIds;
acceptableProtoIds.set(PROTO_SURFACE);
acceptableProtoIds.set(PROTO_DEVICE);
readJointSubNodes(iLink, childNodes, acceptableProtoIds, T);
SgNodePtr node = sgConverter.convert(segmentNode);
if(node){
if(T.isApprox(Affine3::Identity())){
node->setName(segmentNode->defName);
iLink.visualShape->addChild(node);
} else {
SgPosTransform* transform = new SgPosTransform(T);
transform->addChild(node);
transform->setName(segmentNode->defName);
iLink.visualShape->addChild(transform);
}
} else {
node = new SgNode;
node->setName(segmentNode->defName);
iLink.visualShape->addChild(node);
}
}
void VRMLBodyLoaderImpl::readSurfaceNode(LinkInfo& iLink, VRMLProtoInstance* segmentShapeNode, const Affine3& T)
{
if(isVerbose) putMessage(string("Surface node ") + segmentShapeNode->defName);
iLink.isSurfaceNodeUsed = true;
// check if another Surface node does not appear in the subtree
MFNode& visualNodes = get<MFNode>(segmentShapeNode->fields["visual"]);
ProtoIdSet acceptableProtoIds;
readJointSubNodes(iLink, visualNodes, acceptableProtoIds, T);
MFNode& collisionNodes = get<MFNode>(segmentShapeNode->fields["collision"]);
readJointSubNodes(iLink, collisionNodes, acceptableProtoIds, T);
SgGroup* group;
SgPosTransform* transform = 0;
if(T.isApprox(Affine3::Identity())){
group = iLink.collisionShape;
} else {
transform = new SgPosTransform(T);
group = transform;
}
for(size_t i=0; i < collisionNodes.size(); ++i){
SgNodePtr node = sgConverter.convert(collisionNodes[i]);
if(node){
group->addChild(node);
}
}
if(transform && !transform->empty()){
transform->setName(segmentShapeNode->defName);
iLink.collisionShape->addChild(transform);
}
}
void VRMLBodyLoaderImpl::readDeviceNode(LinkInfo& iLink, VRMLProtoInstance* deviceNode, const Affine3& T)
{
const string& typeName = deviceNode->proto->protoName;
if(isVerbose) putMessage(typeName + " node " + deviceNode->defName);
DeviceFactoryMap::iterator p = deviceFactories.find(typeName);
if(p == deviceFactories.end()){
os() << str(format(_("Sensor type %1% is not supported.\n")) % typeName) << endl;
} else {
DeviceFactory& factory = p->second;
DevicePtr device = factory(deviceNode);
if(device){
device->setLink(iLink.link);
const Matrix3 RsT = iLink.link->Rs();
device->setLocalTranslation(RsT * (T * device->localTranslation()));
device->setLocalRotation(RsT * (T.linear() * device->localRotation()));
body->addDevice(device);
SgNodePtr node = sgConverter.convert(deviceNode);
if(node){
iLink.visualShape->addChild(node);
}
}
}
}
void VRMLBodyLoaderImpl::readDeviceCommonParameters(Device& device, VRMLProtoInstance* node)
{
device.setName(node->defName);
int id = -1;
if(!checkAndReadVRMLfield(node, "deviceId", id)){
checkAndReadVRMLfield(node, "sensorId", id);
}
device.setId(id);
device.setLocalTranslation(getValue<SFVec3f>(node, "translation"));
Matrix3 R;
readVRMLfield(node->fields["rotation"], R);
device.setLocalRotation(R);
}
ForceSensorPtr VRMLBodyLoaderImpl::createForceSensor(VRMLProtoInstance* node)
{
ForceSensorPtr sensor = new ForceSensor();
readDeviceCommonParameters(*sensor, node);
SFVec3f f_max, t_max;
if(checkAndReadVRMLfield(node, "maxForce", f_max)){
sensor->F_max().head<3>() = f_max;
}
if(checkAndReadVRMLfield(node, "maxTorque", t_max)){
sensor->F_max().tail<3>() = t_max;
}
return sensor;
}
RateGyroSensorPtr VRMLBodyLoaderImpl::createRateGyroSensor(VRMLProtoInstance* node)
{
RateGyroSensorPtr sensor = new RateGyroSensor();
readDeviceCommonParameters(*sensor, node);
SFVec3f w_max;
if(checkAndReadVRMLfield(node, "maxAngularVelocity", w_max)){
sensor->w_max() = w_max;
}
return sensor;
}
AccelerationSensorPtr VRMLBodyLoaderImpl::createAccelerationSensor(VRMLProtoInstance* node)
{
AccelerationSensorPtr sensor = new AccelerationSensor();
readDeviceCommonParameters(*sensor, node);
SFVec3f dv_max;
if(checkAndReadVRMLfield(node, "maxAngularVelocity", dv_max)){
sensor->dv_max() = dv_max;
}
return sensor;
}
CameraPtr VRMLBodyLoaderImpl::createCamera(VRMLProtoInstance* node)
{
CameraPtr camera;
RangeCamera* range = 0;
const SFString& type = get<SFString>(node->fields["type"]);
if(type == "COLOR"){
camera = new Camera;
camera->setImageType(Camera::COLOR_IMAGE);
} else if(type == "DEPTH"){
range = new RangeCamera;
range->setOrganized(true);
range->setImageType(Camera::NO_IMAGE);
} else if(type == "COLOR_DEPTH"){
range = new RangeCamera;
range->setOrganized(true);
range->setImageType(Camera::COLOR_IMAGE);
} else if(type == "POINT_CLOUD"){
range = new RangeCamera;
range->setOrganized(false);
range->setImageType(Camera::NO_IMAGE);
} else if(type == "COLOR_POINT_CLOUD"){
range = new RangeCamera;
range->setOrganized(false);
range->setImageType(Camera::COLOR_IMAGE);
}
if(range){
camera = range;
} else {
camera = new Camera;
}
readDeviceCommonParameters(*camera, node);
bool on = true;
if(checkAndReadVRMLfield(node, "on", on)){
camera->on(on);
}
camera->setResolution(getValue<SFInt32>(node, "width"), getValue<SFInt32>(node, "height"));
camera->setFieldOfView(getValue<SFFloat>(node, "fieldOfView"));
camera->setNearClipDistance(getValue<SFFloat>(node, "frontClipDistance"));
camera->setFarClipDistance(getValue<SFFloat>(node, "backClipDistance"));
camera->setFrameRate(getValue<SFFloat>(node, "frameRate"));
return camera;
}
RangeSensorPtr VRMLBodyLoaderImpl::createRangeSensor(VRMLProtoInstance* node)
{
RangeSensorPtr rangeSensor = new RangeSensor;
readDeviceCommonParameters(*rangeSensor, node);
bool on = true;
if(checkAndReadVRMLfield(node, "on", on)){
rangeSensor->on(on);
}
rangeSensor->setYawRange(getValue<SFFloat>(node, "scanAngle"));
rangeSensor->setPitchRange(0.0);
const double scanStep = getValue<SFFloat>(node, "scanStep");
rangeSensor->setYawStep(scanStep);
rangeSensor->setMinDistance(getValue<SFFloat>(node, "minDistance"));
rangeSensor->setMaxDistance(getValue<SFFloat>(node, "maxDistance"));
rangeSensor->setFrameRate(getValue<SFFloat>(node, "scanRate"));
return rangeSensor;
}
void VRMLBodyLoaderImpl::readLightDeviceCommonParameters(Light& light, VRMLProtoInstance* node)
{
readDeviceCommonParameters(light, node);
light.on(getValue<SFBool>(node, "on"));
light.setColor(getValue<SFColor>(node, "color"));
light.setIntensity(getValue<SFFloat>(node, "intensity"));
}
SpotLightPtr VRMLBodyLoaderImpl::createSpotLight(VRMLProtoInstance* node)
{
SpotLightPtr light = new SpotLight();
readLightDeviceCommonParameters(*light, node);
light->setDirection(getValue<SFVec3f>(node, "direction"));
light->setBeamWidth(getValue<SFFloat>(node, "beamWidth"));
light->setCutOffAngle(getValue<SFFloat>(node, "cutOffAngle"));
light->setCutOffExponent(getValue<SFFloat>(node, "cutOffExponent"));
SFVec3f attenuation = getValue<SFVec3f>(node, "attenuation");
light->setConstantAttenuation(attenuation[0]);
light->setLinearAttenuation(attenuation[1]);
light->setQuadraticAttenuation(attenuation[2]);
return light;
}
void VRMLBodyLoaderImpl::setExtraJoints()
{
for(size_t i=0; i < extraJointNodes.size(); ++i){
VRMLProtoFieldMap& f = extraJointNodes[i]->fields;
ExtraJoint joint;
string link1Name, link2Name;
readVRMLfield(f["link1Name"], link1Name);
readVRMLfield(f["link2Name"], link2Name);
joint.link[0] = body->link(link1Name);
joint.link[1] = body->link(link2Name);
joint.body[0] = joint.body[1] = body;
for(int j=0; j < 2; ++j){
if(!joint.link[j]){
throw invalid_argument(
str(format(_("Field \"link%1%Name\" of a ExtraJoint node does not specify a valid link name")) % (j+1)));
}
}
SFString& jointType = get<SFString>(f["jointType"]);
if(jointType == "piston"){
joint.type = ExtraJoint::EJ_PISTON;
joint.axis = get<SFVec3f>(f["jointAxis"]);
} else if(jointType == "ball"){
joint.type = ExtraJoint::EJ_BALL;
} else {
throw invalid_argument(str(format(_("JointType \"%1%\" is not supported.")) % jointType));
}
readVRMLfield(f["link1LocalPos"], joint.point[0]);
readVRMLfield(f["link2LocalPos"], joint.point[1]);
body->addExtraJoint(joint);
}
}
|
.global s_prepare_buffers
s_prepare_buffers:
push %r12
push %r14
push %r15
push %r8
push %rbx
push %rcx
push %rdi
push %rsi
lea addresses_WT_ht+0x6a35, %r15
nop
nop
nop
nop
inc %r8
movb $0x61, (%r15)
nop
nop
nop
add %rdi, %rdi
lea addresses_WC_ht+0xcead, %rsi
lea addresses_UC_ht+0x1a84d, %rdi
nop
nop
nop
nop
nop
xor $64311, %r12
mov $121, %rcx
rep movsl
sub $12909, %rsi
lea addresses_A_ht+0x5a2d, %rcx
nop
nop
nop
add %r14, %r14
mov (%rcx), %r8w
nop
nop
nop
nop
nop
sub %r14, %r14
lea addresses_UC_ht+0x5d16, %rdi
nop
nop
nop
nop
nop
cmp $35013, %r8
movw $0x6162, (%rdi)
nop
nop
nop
nop
dec %rsi
lea addresses_UC_ht+0x782d, %rsi
lea addresses_UC_ht+0x1992d, %rdi
nop
nop
nop
nop
add %r14, %r14
mov $101, %rcx
rep movsb
nop
nop
nop
and %r12, %r12
lea addresses_A_ht+0x152d, %rsi
lea addresses_WC_ht+0x5f2d, %rdi
nop
nop
nop
dec %rbx
mov $17, %rcx
rep movsb
nop
nop
sub %r15, %r15
lea addresses_D_ht+0x1552d, %rsi
lea addresses_WC_ht+0x1082d, %rdi
nop
nop
nop
nop
xor $47271, %r15
mov $19, %rcx
rep movsl
nop
nop
nop
nop
inc %rsi
pop %rsi
pop %rdi
pop %rcx
pop %rbx
pop %r8
pop %r15
pop %r14
pop %r12
ret
.global s_faulty_load
s_faulty_load:
push %r10
push %r11
push %r12
push %r15
push %rbp
push %rdx
push %rsi
// Store
lea addresses_A+0xb12d, %r12
nop
nop
nop
nop
cmp %rdx, %rdx
movl $0x51525354, (%r12)
nop
nop
add %rbp, %rbp
// Load
lea addresses_normal+0x3a2d, %r10
nop
nop
xor $54703, %r15
mov (%r10), %rsi
nop
nop
nop
add $43071, %r15
// Load
lea addresses_A+0x8bad, %r12
nop
nop
nop
nop
nop
inc %rsi
mov (%r12), %rdx
nop
nop
nop
nop
nop
inc %r12
// Store
mov $0x4d8ea0000000002d, %r12
nop
nop
nop
nop
dec %rsi
mov $0x5152535455565758, %rdx
movq %rdx, (%r12)
nop
nop
nop
dec %rdx
// Load
mov $0x32d, %rsi
nop
nop
nop
nop
sub $17732, %r12
mov (%rsi), %r11
nop
nop
nop
nop
nop
cmp %r10, %r10
// Load
lea addresses_D+0x772d, %rbp
nop
nop
nop
nop
nop
sub $37704, %r10
vmovups (%rbp), %ymm5
vextracti128 $1, %ymm5, %xmm5
vpextrq $0, %xmm5, %r15
and $32123, %rdx
// Faulty Load
lea addresses_A+0xb12d, %rbp
nop
nop
nop
nop
nop
sub %r12, %r12
mov (%rbp), %r15d
lea oracles, %rbp
and $0xff, %r15
shlq $12, %r15
mov (%rbp,%r15,1), %r15
pop %rsi
pop %rdx
pop %rbp
pop %r15
pop %r12
pop %r11
pop %r10
ret
/*
<gen_faulty_load>
[REF]
{'src': {'NT': False, 'same': False, 'congruent': 0, 'type': 'addresses_A', 'AVXalign': False, 'size': 32}, 'OP': 'LOAD'}
{'OP': 'STOR', 'dst': {'NT': True, 'same': True, 'congruent': 0, 'type': 'addresses_A', 'AVXalign': False, 'size': 4}}
{'src': {'NT': False, 'same': False, 'congruent': 8, 'type': 'addresses_normal', 'AVXalign': False, 'size': 8}, 'OP': 'LOAD'}
{'src': {'NT': False, 'same': False, 'congruent': 6, 'type': 'addresses_A', 'AVXalign': False, 'size': 8}, 'OP': 'LOAD'}
{'OP': 'STOR', 'dst': {'NT': False, 'same': False, 'congruent': 7, 'type': 'addresses_NC', 'AVXalign': False, 'size': 8}}
{'src': {'NT': False, 'same': False, 'congruent': 7, 'type': 'addresses_P', 'AVXalign': False, 'size': 8}, 'OP': 'LOAD'}
{'src': {'NT': False, 'same': False, 'congruent': 8, 'type': 'addresses_D', 'AVXalign': False, 'size': 32}, 'OP': 'LOAD'}
[Faulty Load]
{'src': {'NT': False, 'same': True, 'congruent': 0, 'type': 'addresses_A', 'AVXalign': False, 'size': 4}, 'OP': 'LOAD'}
<gen_prepare_buffer>
{'OP': 'STOR', 'dst': {'NT': False, 'same': False, 'congruent': 2, 'type': 'addresses_WT_ht', 'AVXalign': False, 'size': 1}}
{'src': {'same': True, 'congruent': 7, 'type': 'addresses_WC_ht'}, 'OP': 'REPM', 'dst': {'same': False, 'congruent': 5, 'type': 'addresses_UC_ht'}}
{'src': {'NT': False, 'same': False, 'congruent': 7, 'type': 'addresses_A_ht', 'AVXalign': False, 'size': 2}, 'OP': 'LOAD'}
{'OP': 'STOR', 'dst': {'NT': False, 'same': False, 'congruent': 0, 'type': 'addresses_UC_ht', 'AVXalign': False, 'size': 2}}
{'src': {'same': False, 'congruent': 8, 'type': 'addresses_UC_ht'}, 'OP': 'REPM', 'dst': {'same': False, 'congruent': 11, 'type': 'addresses_UC_ht'}}
{'src': {'same': False, 'congruent': 4, 'type': 'addresses_A_ht'}, 'OP': 'REPM', 'dst': {'same': False, 'congruent': 8, 'type': 'addresses_WC_ht'}}
{'src': {'same': False, 'congruent': 9, 'type': 'addresses_D_ht'}, 'OP': 'REPM', 'dst': {'same': False, 'congruent': 7, 'type': 'addresses_WC_ht'}}
{'54': 21829}
54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54
*/
|
.global s_prepare_buffers
s_prepare_buffers:
push %r11
push %r13
push %r8
push %rcx
push %rdi
push %rdx
push %rsi
lea addresses_UC_ht+0x6e36, %rsi
lea addresses_normal_ht+0x6236, %rdi
sub $765, %r8
mov $126, %rcx
rep movsl
nop
nop
dec %rcx
lea addresses_A_ht+0x12636, %rdx
and %r13, %r13
movl $0x61626364, (%rdx)
nop
and $62772, %r13
pop %rsi
pop %rdx
pop %rdi
pop %rcx
pop %r8
pop %r13
pop %r11
ret
.global s_faulty_load
s_faulty_load:
push %r11
push %r13
push %r15
push %rbp
push %rbx
push %rdi
push %rdx
// Store
lea addresses_A+0x115e6, %r13
nop
nop
xor %rbx, %rbx
mov $0x5152535455565758, %rdx
movq %rdx, %xmm4
movups %xmm4, (%r13)
nop
nop
sub %r11, %r11
// Store
lea addresses_normal+0x1b5c6, %r13
nop
nop
nop
nop
nop
dec %r15
mov $0x5152535455565758, %r11
movq %r11, (%r13)
nop
nop
xor %r15, %r15
// Store
mov $0x31dc9e00000003cc, %rbx
nop
and $10418, %r11
mov $0x5152535455565758, %rdi
movq %rdi, (%rbx)
nop
nop
nop
nop
cmp %rbx, %rbx
// Load
mov $0x29c1dc00000004f6, %rbx
nop
nop
nop
xor %rbp, %rbp
mov (%rbx), %rdi
nop
nop
sub $8986, %rbx
// Faulty Load
lea addresses_PSE+0x6236, %rbp
nop
nop
nop
sub %rbx, %rbx
vmovups (%rbp), %ymm5
vextracti128 $0, %ymm5, %xmm5
vpextrq $1, %xmm5, %rdx
lea oracles, %r11
and $0xff, %rdx
shlq $12, %rdx
mov (%r11,%rdx,1), %rdx
pop %rdx
pop %rdi
pop %rbx
pop %rbp
pop %r15
pop %r13
pop %r11
ret
/*
<gen_faulty_load>
[REF]
{'src': {'type': 'addresses_PSE', 'AVXalign': True, 'size': 32, 'NT': False, 'same': False, 'congruent': 0}, 'OP': 'LOAD'}
{'OP': 'STOR', 'dst': {'type': 'addresses_A', 'AVXalign': False, 'size': 16, 'NT': False, 'same': False, 'congruent': 3}}
{'OP': 'STOR', 'dst': {'type': 'addresses_normal', 'AVXalign': True, 'size': 8, 'NT': False, 'same': False, 'congruent': 2}}
{'OP': 'STOR', 'dst': {'type': 'addresses_NC', 'AVXalign': False, 'size': 8, 'NT': False, 'same': False, 'congruent': 0}}
{'src': {'type': 'addresses_NC', 'AVXalign': False, 'size': 8, 'NT': False, 'same': False, 'congruent': 3}, 'OP': 'LOAD'}
[Faulty Load]
{'src': {'type': 'addresses_PSE', 'AVXalign': False, 'size': 32, 'NT': False, 'same': True, 'congruent': 0}, 'OP': 'LOAD'}
<gen_prepare_buffer>
{'src': {'type': 'addresses_UC_ht', 'congruent': 10, 'same': False}, 'OP': 'REPM', 'dst': {'type': 'addresses_normal_ht', 'congruent': 9, 'same': False}}
{'OP': 'STOR', 'dst': {'type': 'addresses_A_ht', 'AVXalign': False, 'size': 4, 'NT': True, 'same': False, 'congruent': 7}}
{'33': 1}
33
*/
|
; A006231: a(n) = Sum_{k=2..n} n(n-1)...(n-k+1)/k.
; 0,1,5,20,84,409,2365,16064,125664,1112073,10976173,119481284,1421542628,18348340113,255323504917,3809950976992,60683990530208,1027542662934897,18430998766219317,349096664728623316,6962409983976703316,145841989688186383337,3201192743180799343821,73474260073510897434976,1760027876001433251622720,43923868274199492106316345,1140183718627349022328350621,30739199678162386338323276100,859511646545143431186181189540,24893912605687593731774060679329,745925941379961102749410445373029,23097918833382439882296138370877760,738361691377461760827791431987029184
mov $2,$0
lpb $2
add $1,$0
add $0,1
sub $2,1
mul $0,$2
lpe
mov $0,$1
|
lda {m2}
clc
adc {m3}
sta {m1}
lda {m2}+1
adc {m3}+1
sta {m1}+1
|
/**
* ddosmitigator API
* DDoS Mitigator Service
*
* OpenAPI spec version: 2.0
*
* NOTE: This class is auto generated by the swagger code generator program.
* https://github.com/polycube-network/swagger-codegen.git
* branch polycube
*/
/* Do not edit this file manually */
#include "DdosmitigatorJsonObject.h"
#include <regex>
namespace io {
namespace swagger {
namespace server {
namespace model {
DdosmitigatorJsonObject::DdosmitigatorJsonObject() {
m_nameIsSet = false;
m_uuidIsSet = false;
m_type = CubeType::TC;
m_typeIsSet = false;
m_loglevel = DdosmitigatorLoglevelEnum::INFO;
m_loglevelIsSet = false;
m_statsIsSet = false;
m_blacklistSrcIsSet = false;
m_blacklistDstIsSet = false;
}
DdosmitigatorJsonObject::~DdosmitigatorJsonObject() {}
void DdosmitigatorJsonObject::validateKeys() {
if (!m_nameIsSet) {
throw std::runtime_error("Variable name is required");
}
}
void DdosmitigatorJsonObject::validateMandatoryFields() {
}
void DdosmitigatorJsonObject::validateParams() {
if (m_uuidIsSet) {
std::string patter_value = R"PATTERN([0-9a-f]{8}-[0-9a-f]{4}-[1-5][0-9a-f]{3}-[89ab][0-9a-f]{3}-[0-9a-f]{12})PATTERN";
std::regex e (patter_value);
if (!std::regex_match(m_uuid, e))
throw std::runtime_error("Variable uuid has not a valid format");
}
}
nlohmann::json DdosmitigatorJsonObject::toJson() const {
nlohmann::json val = nlohmann::json::object();
if (m_nameIsSet) {
val["name"] = m_name;
}
if (m_uuidIsSet) {
val["uuid"] = m_uuid;
}
if (m_typeIsSet) {
val["type"] = CubeType_to_string(m_type);
}
if (m_loglevelIsSet) {
val["loglevel"] = DdosmitigatorLoglevelEnum_to_string(m_loglevel);
}
if (m_statsIsSet) {
val["stats"] = JsonObjectBase::toJson(m_stats);
}
{
nlohmann::json jsonArray;
for (auto& item : m_blacklistSrc) {
jsonArray.push_back(JsonObjectBase::toJson(item));
}
if (jsonArray.size() > 0) {
val["blacklist-src"] = jsonArray;
}
}
{
nlohmann::json jsonArray;
for (auto& item : m_blacklistDst) {
jsonArray.push_back(JsonObjectBase::toJson(item));
}
if (jsonArray.size() > 0) {
val["blacklist-dst"] = jsonArray;
}
}
return val;
}
void DdosmitigatorJsonObject::fromJson(nlohmann::json& val) {
for(nlohmann::json::iterator it = val.begin(); it != val.end(); ++it) {
std::string key = it.key();
bool found = (std::find(allowedParameters_.begin(), allowedParameters_.end(), key) != allowedParameters_.end());
if (!found) {
throw std::runtime_error(key + " is not a valid parameter");
return;
}
}
if (val.find("name") != val.end()) {
setName(val.at("name"));
}
if (val.find("uuid") != val.end()) {
setUuid(val.at("uuid"));
}
if (val.find("type") != val.end()) {
setType(string_to_CubeType(val.at("type")));
}
if (val.find("loglevel") != val.end()) {
setLoglevel(string_to_DdosmitigatorLoglevelEnum(val.at("loglevel")));
}
if (val.find("stats") != val.end()) {
if (!val["stats"].is_null()) {
StatsJsonObject newItem;
newItem.fromJson(val["stats"]);
setStats(newItem);
}
}
m_blacklistSrc.clear();
for (auto& item : val["blacklist-src"]) {
BlacklistSrcJsonObject newItem;
newItem.fromJson(item);
m_blacklistSrc.push_back(newItem);
m_blacklistSrcIsSet = true;
}
m_blacklistDst.clear();
for (auto& item : val["blacklist-dst"]) {
BlacklistDstJsonObject newItem;
newItem.fromJson(item);
m_blacklistDst.push_back(newItem);
m_blacklistDstIsSet = true;
}
}
nlohmann::json DdosmitigatorJsonObject::helpKeys() {
nlohmann::json val = nlohmann::json::object();
val["name"]["name"] = "name";
val["name"]["type"] = "key";
val["name"]["simpletype"] = "string";
val["name"]["description"] = R"POLYCUBE(Name of the ddosmitigator service)POLYCUBE";
val["name"]["example"] = R"POLYCUBE(ddosmitigator1)POLYCUBE";
return val;
}
nlohmann::json DdosmitigatorJsonObject::helpElements() {
nlohmann::json val = nlohmann::json::object();
val["uuid"]["name"] = "uuid";
val["uuid"]["type"] = "leaf"; // Suppose that type is leaf
val["uuid"]["simpletype"] = "string";
val["uuid"]["description"] = R"POLYCUBE(UUID of the Cube)POLYCUBE";
val["uuid"]["example"] = R"POLYCUBE()POLYCUBE";
val["type"]["name"] = "type";
val["type"]["type"] = "leaf"; // Suppose that type is leaf
val["type"]["simpletype"] = "string";
val["type"]["description"] = R"POLYCUBE(Type of the Cube (TC, XDP_SKB, XDP_DRV))POLYCUBE";
val["type"]["example"] = R"POLYCUBE(TC)POLYCUBE";
val["loglevel"]["name"] = "loglevel";
val["loglevel"]["type"] = "leaf"; // Suppose that type is leaf
val["loglevel"]["simpletype"] = "string";
val["loglevel"]["description"] = R"POLYCUBE(Defines the logging level of a service instance, from none (OFF) to the most verbose (TRACE))POLYCUBE";
val["loglevel"]["example"] = R"POLYCUBE(INFO)POLYCUBE";
val["stats"]["name"] = "stats";
val["stats"]["type"] = "leaf"; // Suppose that type is leaf
val["stats"]["description"] = R"POLYCUBE()POLYCUBE";
val["stats"]["example"] = R"POLYCUBE()POLYCUBE";
val["active-port"]["name"] = "active-port";
val["active-port"]["type"] = "leaf"; // Suppose that type is leaf
val["active-port"]["simpletype"] = "string";
val["active-port"]["description"] = R"POLYCUBE(Port where the traffic is received)POLYCUBE";
val["active-port"]["example"] = R"POLYCUBE()POLYCUBE";
val["redirect-port"]["name"] = "redirect-port";
val["redirect-port"]["type"] = "leaf"; // Suppose that type is leaf
val["redirect-port"]["simpletype"] = "string";
val["redirect-port"]["description"] = R"POLYCUBE(If set, this will be the port used to redirect traffic (instead of PASS it to STACK))POLYCUBE";
val["redirect-port"]["example"] = R"POLYCUBE()POLYCUBE";
val["blacklist-src"]["name"] = "blacklist-src";
val["blacklist-src"]["type"] = "leaf"; // Suppose that type is leaf
val["blacklist-src"]["type"] = "list";
val["blacklist-src"]["description"] = R"POLYCUBE(Blacklisted source IP addresses)POLYCUBE";
val["blacklist-src"]["example"] = R"POLYCUBE()POLYCUBE";
val["blacklist-dst"]["name"] = "blacklist-dst";
val["blacklist-dst"]["type"] = "leaf"; // Suppose that type is leaf
val["blacklist-dst"]["type"] = "list";
val["blacklist-dst"]["description"] = R"POLYCUBE(Blacklisted destination IP addresses)POLYCUBE";
val["blacklist-dst"]["example"] = R"POLYCUBE()POLYCUBE";
return val;
}
nlohmann::json DdosmitigatorJsonObject::helpWritableLeafs() {
nlohmann::json val = nlohmann::json::object();
val["loglevel"]["name"] = "loglevel";
val["loglevel"]["simpletype"] = "string";
val["loglevel"]["description"] = R"POLYCUBE(Defines the logging level of a service instance, from none (OFF) to the most verbose (TRACE))POLYCUBE";
val["loglevel"]["example"] = R"POLYCUBE(INFO)POLYCUBE";
val["active-port"]["name"] = "active-port";
val["active-port"]["simpletype"] = "string";
val["active-port"]["description"] = R"POLYCUBE(Port where the traffic is received)POLYCUBE";
val["active-port"]["example"] = R"POLYCUBE()POLYCUBE";
val["redirect-port"]["name"] = "redirect-port";
val["redirect-port"]["simpletype"] = "string";
val["redirect-port"]["description"] = R"POLYCUBE(If set, this will be the port used to redirect traffic (instead of PASS it to STACK))POLYCUBE";
val["redirect-port"]["example"] = R"POLYCUBE()POLYCUBE";
return val;
}
nlohmann::json DdosmitigatorJsonObject::helpComplexElements() {
nlohmann::json val = nlohmann::json::object();
val["stats"]["name"] = "stats";
val["stats"]["type"] = "complex";
val["stats"]["description"] = R"POLYCUBE()POLYCUBE";
val["stats"]["example"] = R"POLYCUBE()POLYCUBE";
val["blacklist-src"]["name"] = "blacklist-src";
val["blacklist-src"]["type"] = "list";
val["blacklist-src"]["description"] = R"POLYCUBE(Blacklisted source IP addresses)POLYCUBE";
val["blacklist-src"]["example"] = R"POLYCUBE()POLYCUBE";
val["blacklist-dst"]["name"] = "blacklist-dst";
val["blacklist-dst"]["type"] = "list";
val["blacklist-dst"]["description"] = R"POLYCUBE(Blacklisted destination IP addresses)POLYCUBE";
val["blacklist-dst"]["example"] = R"POLYCUBE()POLYCUBE";
return val;
}
std::vector<std::string> DdosmitigatorJsonObject::helpActions() {
std::vector<std::string> val;
return val;
}
std::string DdosmitigatorJsonObject::getName() const {
return m_name;
}
void DdosmitigatorJsonObject::setName(std::string value) {
m_name = value;
m_nameIsSet = true;
}
bool DdosmitigatorJsonObject::nameIsSet() const {
return m_nameIsSet;
}
void DdosmitigatorJsonObject::unsetName() {
m_nameIsSet = false;
}
std::string DdosmitigatorJsonObject::getUuid() const {
return m_uuid;
}
void DdosmitigatorJsonObject::setUuid(std::string value) {
m_uuid = value;
m_uuidIsSet = true;
}
bool DdosmitigatorJsonObject::uuidIsSet() const {
return m_uuidIsSet;
}
void DdosmitigatorJsonObject::unsetUuid() {
m_uuidIsSet = false;
}
CubeType DdosmitigatorJsonObject::getType() const {
return m_type;
}
void DdosmitigatorJsonObject::setType(CubeType value) {
m_type = value;
m_typeIsSet = true;
}
bool DdosmitigatorJsonObject::typeIsSet() const {
return m_typeIsSet;
}
void DdosmitigatorJsonObject::unsetType() {
m_typeIsSet = false;
}
std::string DdosmitigatorJsonObject::CubeType_to_string(const CubeType &value){
switch(value){
case CubeType::TC:
return std::string("TC");
case CubeType::XDP_SKB:
return std::string("XDP_SKB");
case CubeType::XDP_DRV:
return std::string("XDP_DRV");
default:
throw std::runtime_error("Bad Ddosmitigator type");
}
}
CubeType DdosmitigatorJsonObject::string_to_CubeType(const std::string &str){
if (JsonObjectBase::iequals("TC", str))
return CubeType::TC;
if (JsonObjectBase::iequals("XDP_SKB", str))
return CubeType::XDP_SKB;
if (JsonObjectBase::iequals("XDP_DRV", str))
return CubeType::XDP_DRV;
throw std::runtime_error("Ddosmitigator type is invalid");
}
DdosmitigatorLoglevelEnum DdosmitigatorJsonObject::getLoglevel() const {
return m_loglevel;
}
void DdosmitigatorJsonObject::setLoglevel(DdosmitigatorLoglevelEnum value) {
m_loglevel = value;
m_loglevelIsSet = true;
}
bool DdosmitigatorJsonObject::loglevelIsSet() const {
return m_loglevelIsSet;
}
void DdosmitigatorJsonObject::unsetLoglevel() {
m_loglevelIsSet = false;
}
std::string DdosmitigatorJsonObject::DdosmitigatorLoglevelEnum_to_string(const DdosmitigatorLoglevelEnum &value){
switch(value){
case DdosmitigatorLoglevelEnum::TRACE:
return std::string("trace");
case DdosmitigatorLoglevelEnum::DEBUG:
return std::string("debug");
case DdosmitigatorLoglevelEnum::INFO:
return std::string("info");
case DdosmitigatorLoglevelEnum::WARN:
return std::string("warn");
case DdosmitigatorLoglevelEnum::ERR:
return std::string("err");
case DdosmitigatorLoglevelEnum::CRITICAL:
return std::string("critical");
case DdosmitigatorLoglevelEnum::OFF:
return std::string("off");
default:
throw std::runtime_error("Bad Ddosmitigator loglevel");
}
}
DdosmitigatorLoglevelEnum DdosmitigatorJsonObject::string_to_DdosmitigatorLoglevelEnum(const std::string &str){
if (JsonObjectBase::iequals("trace", str))
return DdosmitigatorLoglevelEnum::TRACE;
if (JsonObjectBase::iequals("debug", str))
return DdosmitigatorLoglevelEnum::DEBUG;
if (JsonObjectBase::iequals("info", str))
return DdosmitigatorLoglevelEnum::INFO;
if (JsonObjectBase::iequals("warn", str))
return DdosmitigatorLoglevelEnum::WARN;
if (JsonObjectBase::iequals("err", str))
return DdosmitigatorLoglevelEnum::ERR;
if (JsonObjectBase::iequals("critical", str))
return DdosmitigatorLoglevelEnum::CRITICAL;
if (JsonObjectBase::iequals("off", str))
return DdosmitigatorLoglevelEnum::OFF;
throw std::runtime_error("Ddosmitigator loglevel is invalid");
}
polycube::LogLevel DdosmitigatorJsonObject::getPolycubeLoglevel() const {
switch(m_loglevel) {
case DdosmitigatorLoglevelEnum::TRACE:
return polycube::LogLevel::TRACE;
case DdosmitigatorLoglevelEnum::DEBUG:
return polycube::LogLevel::DEBUG;
case DdosmitigatorLoglevelEnum::INFO:
return polycube::LogLevel::INFO;
case DdosmitigatorLoglevelEnum::WARN:
return polycube::LogLevel::WARN;
case DdosmitigatorLoglevelEnum::ERR:
return polycube::LogLevel::ERR;
case DdosmitigatorLoglevelEnum::CRITICAL:
return polycube::LogLevel::CRITICAL;
case DdosmitigatorLoglevelEnum::OFF:
return polycube::LogLevel::OFF;
}
}
StatsJsonObject DdosmitigatorJsonObject::getStats() const {
return m_stats;
}
void DdosmitigatorJsonObject::setStats(StatsJsonObject value) {
m_stats = value;
m_statsIsSet = true;
}
bool DdosmitigatorJsonObject::statsIsSet() const {
return m_statsIsSet;
}
void DdosmitigatorJsonObject::unsetStats() {
m_statsIsSet = false;
}
const std::vector<BlacklistSrcJsonObject>& DdosmitigatorJsonObject::getBlacklistSrc() const{
return m_blacklistSrc;
}
void DdosmitigatorJsonObject::addBlacklistSrc(BlacklistSrcJsonObject value) {
m_blacklistSrc.push_back(value);
}
bool DdosmitigatorJsonObject::blacklistSrcIsSet() const {
return m_blacklistSrcIsSet;
}
void DdosmitigatorJsonObject::unsetBlacklistSrc() {
m_blacklistSrcIsSet = false;
}
const std::vector<BlacklistDstJsonObject>& DdosmitigatorJsonObject::getBlacklistDst() const{
return m_blacklistDst;
}
void DdosmitigatorJsonObject::addBlacklistDst(BlacklistDstJsonObject value) {
m_blacklistDst.push_back(value);
}
bool DdosmitigatorJsonObject::blacklistDstIsSet() const {
return m_blacklistDstIsSet;
}
void DdosmitigatorJsonObject::unsetBlacklistDst() {
m_blacklistDstIsSet = false;
}
}
}
}
}
|
map_header Route6, ROUTE_6, OVERWORLD, NORTH | SOUTH
connection north, SaffronCity, SAFFRON_CITY, -5
connection south, VermilionCity, VERMILION_CITY, -5
end_map_header
|
; A348015: Number of recurrent n X n matrices over GF(2).
; Submitted by Jamie Morken(s1.)
; 1,2,13,365,43801,21725297,43798198753,355991759464385,11619571028917526401,1520025803718875133673217,796153035368657542014822907393,1668838669721233396228446711227874305,13995815633937307151473642050515241531340801,469564317112649657867143585938515326497638404059137,63020009121845570312908090314184266498136555304557293330433,33832577251664098139227085133002766095883313277574001959867156250625,72653797791754049013489566488701707095038785475241974773838449373502156800001
mov $2,1
mov $4,1
lpb $0
sub $0,1
add $3,$2
mul $4,$3
mul $4,$2
mul $2,2
add $4,1
lpe
mov $0,$4
|
// Copyright 2020 the V8 project authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#include "src/heap/cppgc/heap.h"
#include "src/heap/base/stack.h"
#include "src/heap/cppgc/garbage-collector.h"
#include "src/heap/cppgc/gc-invoker.h"
#include "src/heap/cppgc/heap-object-header.h"
#include "src/heap/cppgc/heap-visitor.h"
#include "src/heap/cppgc/marker.h"
#include "src/heap/cppgc/prefinalizer-handler.h"
namespace cppgc {
namespace {
void VerifyCustomSpaces(
const std::vector<std::unique_ptr<CustomSpaceBase>>& custom_spaces) {
// Ensures that user-provided custom spaces have indices that form a sequence
// starting at 0.
#ifdef DEBUG
for (size_t i = 0; i < custom_spaces.size(); ++i) {
DCHECK_EQ(i, custom_spaces[i]->GetCustomSpaceIndex().value);
}
#endif // DEBUG
}
} // namespace
std::unique_ptr<Heap> Heap::Create(std::shared_ptr<cppgc::Platform> platform,
cppgc::Heap::HeapOptions options) {
DCHECK(platform.get());
VerifyCustomSpaces(options.custom_spaces);
return std::make_unique<internal::Heap>(std::move(platform),
std::move(options));
}
void Heap::ForceGarbageCollectionSlow(const char* source, const char* reason,
Heap::StackState stack_state) {
internal::Heap::From(this)->CollectGarbage(
{internal::GarbageCollector::Config::CollectionType::kMajor, stack_state,
internal::GarbageCollector::Config::MarkingType::kAtomic,
internal::GarbageCollector::Config::SweepingType::kAtomic});
}
AllocationHandle& Heap::GetAllocationHandle() {
return internal::Heap::From(this)->object_allocator();
}
namespace internal {
namespace {
class Unmarker final : private HeapVisitor<Unmarker> {
friend class HeapVisitor<Unmarker>;
public:
explicit Unmarker(RawHeap* heap) { Traverse(heap); }
private:
bool VisitHeapObjectHeader(HeapObjectHeader* header) {
if (header->IsMarked()) header->Unmark();
return true;
}
};
void CheckConfig(Heap::Config config) {
CHECK_WITH_MSG(
(config.collection_type != Heap::Config::CollectionType::kMinor) ||
(config.stack_state == Heap::Config::StackState::kNoHeapPointers),
"Minor GCs with stack is currently not supported");
}
} // namespace
Heap::Heap(std::shared_ptr<cppgc::Platform> platform,
cppgc::Heap::HeapOptions options)
: HeapBase(platform, options.custom_spaces.size(), options.stack_support),
gc_invoker_(this, platform_.get(), options.stack_support),
growing_(&gc_invoker_, stats_collector_.get(),
options.resource_constraints) {}
Heap::~Heap() {
NoGCScope no_gc(*this);
// Finish already running GC if any, but don't finalize live objects.
sweeper_.FinishIfRunning();
}
void Heap::CollectGarbage(Config config) {
DCHECK_EQ(Config::MarkingType::kAtomic, config.marking_type);
CheckConfig(config);
if (in_no_gc_scope()) return;
config_ = config;
if (!gc_in_progress_) StartGarbageCollection(config);
DCHECK(marker_);
FinalizeGarbageCollection(config.stack_state);
}
void Heap::StartIncrementalGarbageCollection(Config config) {
DCHECK_NE(Config::MarkingType::kAtomic, config.marking_type);
CheckConfig(config);
if (gc_in_progress_ || in_no_gc_scope()) return;
config_ = config;
StartGarbageCollection(config);
}
void Heap::FinalizeIncrementalGarbageCollectionIfRunning(Config config) {
if (!gc_in_progress_) return;
DCHECK(!in_no_gc_scope());
DCHECK_NE(Config::MarkingType::kAtomic, config_.marking_type);
config_ = config;
FinalizeGarbageCollection(config.stack_state);
}
void Heap::StartGarbageCollection(Config config) {
DCHECK(!gc_in_progress_);
DCHECK(!in_no_gc_scope());
// Finish sweeping in case it is still running.
sweeper_.FinishIfRunning();
gc_in_progress_ = true;
epoch_++;
#if defined(CPPGC_YOUNG_GENERATION)
if (config.collection_type == Config::CollectionType::kMajor)
Unmarker unmarker(&raw_heap());
#endif
const Marker::MarkingConfig marking_config{
config.collection_type, config.stack_state, config.marking_type};
marker_ = MarkerFactory::CreateAndStartMarking<Marker>(
AsBase(), platform_.get(), marking_config);
}
void Heap::FinalizeGarbageCollection(Config::StackState stack_state) {
DCHECK(gc_in_progress_);
DCHECK(!in_no_gc_scope());
config_.stack_state = stack_state;
DCHECK(marker_);
{
// Pre finalizers are forbidden from allocating objects. Note that this also
// guard atomic pause marking below, meaning that no internal method or
// external callbacks are allowed to allocate new objects.
ObjectAllocator::NoAllocationScope no_allocation_scope_(object_allocator_);
marker_->FinishMarking(stack_state);
prefinalizer_handler_->InvokePreFinalizers();
}
marker_.reset();
// TODO(chromium:1056170): replace build flag with dedicated flag.
#if DEBUG
VerifyMarking(stack_state);
#endif
{
NoGCScope no_gc(*this);
sweeper_.Start(config_.sweeping_type);
}
gc_in_progress_ = false;
}
void Heap::DisableHeapGrowingForTesting() { growing_.DisableForTesting(); }
} // namespace internal
} // namespace cppgc
|
#include <algorithm>
#include <bitset>
#include <cassert>
#include <cctype>
#include <climits>
#include <cmath>
#include <cstdio>
#include <cstdlib>
#include <cstring>
#include <fstream>
#include <iostream>
#include <iomanip>
#include <iterator>
#include <list>
#include <map>
#include <numeric>
#include <queue>
#include <set>
#include <sstream>
#include <stack>
#include <string>
#include <utility>
#include <vector>
using namespace std;
const double EPS = 1e-9;
const int INF = 0x7f7f7f7f;
const double PI=acos(-1.0);
#define READ(f) freopen(f, "r", stdin)
#define WRITE(f) freopen(f, "w", stdout)
#define MP(x, y) make_pair(x, y)
#define PB(x) push_back(x)
#define rep(i,n) for(int i = 1 ; i<=(n) ; i++)
#define repI(i,n) for(int i = 0 ; i<(n) ; i++)
#define FOR(i,L,R) for (int i = (int)(L); i <= (int)(R); i++)
#define ROF(i,L,R) for (int i = (int)(L); i >= (int)(R); i--)
#define FOREACH(i,t) for (typeof(t.begin()) i=t.begin(); i!=t.end(); i++)
#define ALL(p) p.begin(),p.end()
#define ALLR(p) p.rbegin(),p.rend()
#define SET(p) memset(p, -1, sizeof(p))
#define CLR(p) memset(p, 0, sizeof(p))
#define MEM(p, v) memset(p, v, sizeof(p))
#define getI(a) scanf("%d", &a)
#define getII(a,b) scanf("%d%d", &a, &b)
#define getIII(a,b,c) scanf("%d%d%d", &a, &b, &c)
#define getL(a) scanf("%lld",&a)
#define getLL(a,b) scanf("%lld%lld",&a,&b)
#define getLLL(a,b,c) scanf("%lld%lld%lld",&a,&b,&c)
#define getC(n) scanf("%c",&n)
#define getF(n) scanf("%lf",&n)
#define getS(n) scanf("%s",n)
#define bitCheck(N,in) ((bool)(N&(1<<(in))))
#define bitOff(N,in) (N&(~(1<<(in))))
#define bitOn(N,in) (N|(1<<(in)))
#define bitFlip(a,k) (a^(1<<(k)))
#define bitCount(a) __builtin_popcount(a)
#define bitCountLL(a) __builtin_popcountll(a)
#define bitLeftMost(a) (63-__builtin_clzll((a)))
#define bitRightMost(a) (__builtin_ctzll(a))
#define iseq(a,b) (fabs(a-b)<EPS)
#define UNIQUE(V) (V).erase(unique((V).begin(),(V).end()),(V).end())
#define vi vector < int >
#define vii vector < vector < int > >
#define pii pair< int, int >
#define ff first
#define ss second
#define ll long long
#define ull unsigned long long
#define POPCOUNT __builtin_popcount
#define POPCOUNTLL __builtin_popcountll
#define RIGHTMOST __builtin_ctzll
#define LEFTMOST(x) (63-__builtin_clzll((x)))
#define FMT(...) (sprintf(CRTBUFF, __VA_ARGS__)?CRTBUFF:0)
char CRTBUFF[30000];
template< class T > inline T gcd(T a, T b) { return (b) == 0 ? (a) : gcd((b), ((a) % (b))); }
template< class T > inline T lcm(T a, T b) { return ((a) / gcd((a), (b)) * (b)); }
template <typename T> string NumberToString ( T Number ) { ostringstream ss; ss << Number; return ss.str(); }
#define dipta00
#ifdef dipta007
#define debug(args...) {cerr<<"Debug: "; dbg,args; cerr<<endl;}
#define trace(...) __f(#__VA_ARGS__, __VA_ARGS__)
template <typename Arg1>
void __f(const char* name, Arg1&& arg1){
cerr << name << " : " << arg1 << std::endl;
}
template <typename Arg1, typename... Args>
void __f(const char* names, Arg1&& arg1, Args&&... args){
const char* comma = strchr(names + 1, ',');cerr.write(names, comma - names) << " : " << arg1<<" | ";__f(comma+1, args...);
}
#else
#define debug(args...) /// Just strip off all debug tokens
#define trace(...) ///yeeeee
#endif
struct debugger{
template<typename T> debugger& operator , (const T& v){
cerr<<v<<" ";
return *this;
}
}dbg;
///****************** template ends here ****************
// g++ -g -O2 -std=gnu++11 A.cpp
// ./a.out
int main() {
#ifdef dipta007
//READ("in.txt");
//WRITE("out.txt");
#endif // dipta007
// ios_base::sync_with_stdio(0);cin.tie(0);
return 0;
}
|
/*
This file is a part of the NVDA project.
URL: http://www.nvda-project.org/
Copyright 2006-2020 NV Access Limited, Leonard de Ruijter.
This program is free software: you can redistribute it and/or modify
it under the terms of the GNU General Public License version 2.0, as published by
the Free Software Foundation.
This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
This license can be found at:
http://www.gnu.org/licenses/old-licenses/gpl-2.0.html
*/
#define WIN32_LEAN_AND_MEAN
#include <windows.h>
#include <commctrl.h>
#include <common/log.h>
#include <remote/nvdaInProcUtils.h>
// #7828: Windows headers define this as 260 characters.
// However this is not long enough for modern Twitter clients that need at least 280 characters.
// Therefore, round it up to the nearest power of 2.
#undef CBEMAXSTRLEN
#define CBEMAXSTRLEN 512
error_status_t nvdaInProcUtils_sysListView32_getGroupInfo(handle_t bindingHandle, const unsigned long windowHandle, int groupIndex, BSTR* header, BSTR* footer, int* state) {
LVGROUP group={0};
group.cbSize=sizeof(group);
group.mask=LVGF_HEADER|LVGF_FOOTER|LVGF_STATE;
group.stateMask=0xffffffff;
if(!SendMessage((HWND)UlongToHandle(windowHandle),LVM_GETGROUPINFOBYINDEX,(WPARAM)groupIndex,(LPARAM)&group)) {
LOG_DEBUGWARNING(L"LVM_GETGROUPINFOBYINDEX failed");
return 1;
}
if(group.pszHeader) *header=SysAllocString(group.pszHeader);
if(group.pszFooter) *footer=SysAllocString(group.pszFooter);
*state=group.state;
return 0;
}
error_status_t nvdaInProcUtils_sysListView32_getColumnContent(handle_t bindingHandle, const unsigned long windowHandle, int item, int subItem, BSTR* text) {
LVITEM lvItem = {0};
lvItem.mask = LVIF_TEXT | LVIF_COLUMNS;
lvItem.iItem = item;
lvItem.iSubItem = subItem;
lvItem.cchTextMax = CBEMAXSTRLEN;
wchar_t textBuf[CBEMAXSTRLEN]{}; // Ensure that the array initialised with all zero values ('\0')
lvItem.pszText= textBuf;
if (!SendMessage((HWND)UlongToHandle(windowHandle), LVM_GETITEM, (WPARAM)0, (LPARAM)&lvItem)) {
LOG_DEBUGWARNING(L"LVM_GETITEM failed");
return 1;
}
if(!lvItem.pszText) {
LOG_DEBUGWARNING(L"LVM_GETITEM didn't retrieve any text");
return 1;
}
*text = SysAllocString(lvItem.pszText);
return 0;
}
|
; A154287: (L)-sieve transform of {1,4,9,16,...,n^2,...}=A000290.
; 1,3,6,9,13,18,23,29,35,42,49,57,66,75,85,95,106,117,129,141,154,167,181,195,210,225,241,258,275,293,311,330,349,369,389,410,431,453,475,498,521,545,569
mov $6,$0
mov $8,$0
add $8,1
lpb $8
clr $0,6
mov $0,$6
sub $8,1
sub $0,$8
mov $3,$0
mov $5,$0
add $5,1
lpb $5
mov $0,$3
sub $5,1
sub $0,$5
mov $1,$0
lpb $0
mul $0,2
add $1,1
trn $0,$1
lpe
gcd $1,2
sub $1,1
add $4,$1
lpe
add $7,$4
lpe
mov $1,$7
|
;////////////////////////////////////////////////////////////////////////////////////////////////////////
;// Part of Injectable Generic Camera System
;// Copyright(c) 2019, Frans Bouma
;// All rights reserved.
;// https://github.com/FransBouma/InjectableGenericCameraSystem
;//
;// Redistribution and use in source and binary forms, with or without
;// modification, are permitted provided that the following conditions are met :
;//
;// * Redistributions of source code must retain the above copyright notice, this
;// list of conditions and the following disclaimer.
;//
;// * 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.
;//
;// 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.
;////////////////////////////////////////////////////////////////////////////////////////////////////////
;---------------------------------------------------------------
; Game specific asm file to intercept execution flow to obtain addresses, prevent writes etc.
;---------------------------------------------------------------
;---------------------------------------------------------------
; Public definitions so the linker knows which names are present in this file
PUBLIC cameraStructInterceptor
PUBLIC cameraWrite1Interceptor
PUBLIC cameraWrite2Interceptor
;PUBLIC resolutionScaleReadInterceptor
;PUBLIC todWriteInterceptor
PUBLIC timestopReadInterceptor
;PUBLIC fogReadInterceptor
;---------------------------------------------------------------
;---------------------------------------------------------------
; Externs which are used and set by the system. Read / write these
; values in asm to communicate with the system
EXTERN g_cameraEnabled: byte
EXTERN g_cameraStructAddress: qword
;EXTERN g_resolutionScaleAddress: qword
;EXTERN g_todStructAddress: qword
EXTERN g_timestopStructAddress: qword
;EXTERN g_fogStructAddress: qword
;---------------------------------------------------------------
;---------------------------------------------------------------
; Own externs, defined in InterceptorHelper.cpp
EXTERN _cameraStructInterceptionContinue: qword
EXTERN _divssAbsoluteAdd: qword
EXTERN _cameraWrite1InterceptionContinue: qword
EXTERN _cameraWrite2InterceptionContinue: qword
;EXTERN _fovReadInterceptionContinue: qword
;EXTERN _resolutionScaleReadInterceptionContinue: qword
;EXTERN _todWriteInterceptionContinue: qword
EXTERN _timestopReadInterceptionContinue: qword
;EXTERN _fogReadInterceptionContinue: qword
.data
.code
cameraStructInterceptor PROC
; this gets the fov - but also can use RBX-offsets to get camera coords+quaternion.
;DesertsOfKharak64.exe+ABFF7 - F3 0F10 83 84020000 - movss xmm0,[rbx+00000284] <<inject here << fov+base
;DesertsOfKharak64.exe+ABFFF - 0F28 F7 - movaps xmm6,xmm7
;DesertsOfKharak64.exe+AC002 - F3 0F5E 05 9E31FC00 - divss xmm0,[DesertsOfKharak64.exe+106F1A8] { (180.00) }
;DesertsOfKharak64.exe+AC00A - F3 0F5C F0 - subss xmm6,xmm0 <<return here
mov [g_cameraStructAddress], rbx
movss xmm0, dword ptr [rbx+284h]
mov [rbx+324h],byte ptr 1
mov [rbx+325h],byte ptr 1
mov [rbx+326h],byte ptr 1
mov [rbx+327h],byte ptr 1
movaps xmm6,xmm7
push rbx
mov rax, [_divssAbsoluteAdd]
divss xmm0, dword ptr [rax]
pop rbx
exit:
jmp qword ptr [_cameraStructInterceptionContinue] ; jmp back into the original game code, which is the location after the original statements above.
cameraStructInterceptor ENDP
cameraWrite1Interceptor PROC
;DesertsOfKharak64.Transform::SetPosition+70 - F3 0F10 43 48 - movss xmm0,[rbx+48]
;DesertsOfKharak64.Transform::SetPosition+75 - 0F2E 44 24 28 - ucomiss xmm0,[rsp+28]
;DesertsOfKharak64.Transform::SetPosition+7A - 7A 02 - jp DesertsOfKharak64.Transform::SetPosition+7E
;DesertsOfKharak64.Transform::SetPosition+7C - 74 18 - je DesertsOfKharak64.Transform::SetPosition+96
;DesertsOfKharak64.Transform::SetPosition+7E - 44 89 43 40 - mov [rbx+40],r8d <<inject here
;DesertsOfKharak64.Transform::SetPosition+82 - 44 89 4B 44 - mov [rbx+44],r9d
;DesertsOfKharak64.Transform::SetPosition+86 - BA 01000000 - mov edx,00000001 { 1 }
;DesertsOfKharak64.Transform::SetPosition+8B - 48 8B CB - mov rcx,rbx
;DesertsOfKharak64.Transform::SetPosition+8E - 89 43 48 - mov [rbx+48],eax
;DesertsOfKharak64.Transform::SetPosition+91 - E8 4AE0FFFF - call DesertsOfKharak64.Transform::SendTransformChanged <<return here
;DesertsOfKharak64.Transform::SetPosition+96 - 48 83 C4 40 - add rsp,40 { 64 }
;DesertsOfKharak64.Transform::SetPosition+9A - 5B - pop rbx
;DesertsOfKharak64.Transform::SetPosition+9B - C3 - ret
cmp byte ptr [g_cameraEnabled],1
jne originalcode
cmp dword ptr [rbx+0F8Ch], 01000100h ;compare to rbx+0f8c, if equal then we're in the right call so continue to our code
je mycode ;jump to our code if the above variables are equal
originalcode:
mov dword ptr [rbx+40h],r8d
mov dword ptr [rbx+44h],r9d
mov edx,00000001
mov rcx,rbx
mov dword ptr [rbx+48h],eax
jmp exit
mycode:
mov edx,00000001
mov rcx,rbx
exit:
jmp qword ptr [_cameraWrite1InterceptionContinue] ; jmp back into the original game code, which is the location after the original statements above.
cameraWrite1Interceptor ENDP
cameraWrite2Interceptor PROC
;DesertsOfKharak64.Transform::SetRotationSafe+B2 - 0F2E 40 0C - ucomiss xmm0,[rax+0C]
;DesertsOfKharak64.Transform::SetRotationSafe+B6 - 7A 02 - jp DesertsOfKharak64.Transform::SetRotationSafe+BA
;DesertsOfKharak64.Transform::SetRotationSafe+B8 - 74 27 - je DesertsOfKharak64.Transform::SetRotationSafe+E1
;DesertsOfKharak64.Transform::SetRotationSafe+BA - 8B 00 - mov eax,[rax]
;DesertsOfKharak64.Transform::SetRotationSafe+BC - BA 02000000 - mov edx,00000002 { 2 }
;DesertsOfKharak64.Transform::SetRotationSafe+C1 - 48 8B CB - mov rcx,rbx
;DesertsOfKharak64.Transform::SetRotationSafe+C4 - 89 43 30 - mov [rbx+30],eax <<<inject here
;DesertsOfKharak64.Transform::SetRotationSafe+C7 - 41 8B 43 04 - mov eax,[r11+04]
;DesertsOfKharak64.Transform::SetRotationSafe+CB - 89 43 34 - mov [rbx+34],eax
;DesertsOfKharak64.Transform::SetRotationSafe+CE - 41 8B 43 08 - mov eax,[r11+08]
;DesertsOfKharak64.Transform::SetRotationSafe+D2 - 89 43 38 - mov [rbx+38],eax
;DesertsOfKharak64.Transform::SetRotationSafe+D5 - 41 8B 43 0C - mov eax,[r11+0C]
;DesertsOfKharak64.Transform::SetRotationSafe+D9 - 89 43 3C - mov [rbx+3C],eax <<return here
;DesertsOfKharak64.Transform::SetRotationSafe+DC - E8 EFE0FFFF - call DesertsOfKharak64.Transform::SendTransformChanged
;DesertsOfKharak64.Transform::SetRotationSafe+E1 - 48 83 C4 50 - add rsp,50 { 80 }
;DesertsOfKharak64.Transform::SetRotationSafe+E5 - 5B - pop rbx
;DesertsOfKharak64.Transform::SetRotationSafe+E6 - C3 - ret
cmp byte ptr [g_cameraEnabled],1
jne originalcode
cmp dword ptr [rbx+0F8Ch], 01000100h ;same as above to ensure we have the right call
je exit
originalcode:
mov dword ptr [rbx+30h],eax
mov eax,dword ptr [r11+04h]
mov dword ptr [rbx+34h],eax
mov eax,dword ptr [r11+08h]
mov dword ptr [rbx+38h],eax
mov eax,dword ptr [r11+0Ch]
mov dword ptr [rbx+3Ch],eax
exit:
jmp qword ptr [_cameraWrite2InterceptionContinue] ;jmp back into the original game code, which is the location after the original statements above.
cameraWrite2Interceptor ENDP
timestopReadInterceptor PROC
;DesertsOfKharak64.GlobalCallbacks::Get+1070 - 48 8D 8B A8000000 - lea rcx,[rbx+000000A8]
;DesertsOfKharak64.GlobalCallbacks::Get+1077 - 8B 90 CC000000 - mov edx,[rax+000000CC] <<<< timevalue read/intercept here
;DesertsOfKharak64.GlobalCallbacks::Get+107D - 0F14 F6 - unpcklps xmm6,xmm6
;DesertsOfKharak64.GlobalCallbacks::Get+1080 - 4C 8D 44 24 20 - lea r8,[rsp+20]
;DesertsOfKharak64.GlobalCallbacks::Get+1085 - 0F5A C6 - vcvtps2pd xmm0,xmm6 <<<<<return here
;DesertsOfKharak64.GlobalCallbacks::Get+1088 - F2 0F11 44 24 20 - movsd [rsp+20],xmm0
;DesertsOfKharak64.GlobalCallbacks::Get+108E - 89 93 C0000000 - mov [rbx+000000C0],edx
;DesertsOfKharak64.GlobalCallbacks::Get+1094 - 8B 93 A0000000 - mov edx,[rbx+000000A0]
;DesertsOfKharak64.GlobalCallbacks::Get+109A - 48 8B 83 98000000 - mov rax,[rbx+00000098]
;DesertsOfKharak64.GlobalCallbacks::Get+10A1 - F2 0F10 83 90000000 - movsd xmm0,[rbx+00000090]
;DesertsOfKharak64.GlobalCallbacks::Get+10A9 - FF 83 88000000 - inc [rbx+00000088]
;DesertsOfKharak64.GlobalCallbacks::Get+10AF - 89 51 10 - mov [rcx+10],edx
mov [g_timestopStructAddress],rax
mov edx,dword ptr [rax+000000CCh]
unpcklps xmm6,xmm6
lea r8,[rsp+20h]
exit:
jmp qword ptr [_timestopReadInterceptionContinue] ;jmp back into the original game code, which is the location after the original statements above.
timestopReadInterceptor ENDP
END |
;******************************************************************************
;* PRU C/C++ Codegen Unix v2.3.3 *
;* Date/Time created: Wed Aug 12 00:15:06 2020 *
;******************************************************************************
.compiler_opts --abi=eabi --endian=little --hll_source=on --object_format=elf --silicon_version=3 --symdebug:dwarf --symdebug:dwarf_version=3
$C$DW$CU .dwtag DW_TAG_compile_unit
.dwattr $C$DW$CU, DW_AT_name("pru1_mcp3208_comm.c")
.dwattr $C$DW$CU, DW_AT_producer("TI PRU C/C++ Codegen Unix v2.3.3 Copyright (c) 2012-2018 Texas Instruments Incorporated")
.dwattr $C$DW$CU, DW_AT_TI_version(0x01)
.dwattr $C$DW$CU, DW_AT_comp_dir("/home/debian/pru-mcp3208-6ch/pru1_mcp3208_comm")
.global __PRU_CREG_PRU_CFG
.global __PRU_CREG_PRU_INTC
.weak ||CT_CFG||
||CT_CFG||: .usect ".creg.PRU_CFG.noload.near",68,1
$C$DW$1 .dwtag DW_TAG_variable
.dwattr $C$DW$1, DW_AT_name("CT_CFG")
.dwattr $C$DW$1, DW_AT_TI_symbol_name("CT_CFG")
.dwattr $C$DW$1, DW_AT_location[DW_OP_addr ||CT_CFG||]
.dwattr $C$DW$1, DW_AT_type(*$C$DW$T$296)
.dwattr $C$DW$1, DW_AT_external
.dwattr $C$DW$1, DW_AT_decl_file("/usr/share/ti/pru-software-support-package/include/am335x/pru_cfg.h")
.dwattr $C$DW$1, DW_AT_decl_line(0xf2)
.dwattr $C$DW$1, DW_AT_decl_column(0x17)
.weak ||CT_INTC||
||CT_INTC||: .usect ".creg.PRU_INTC.noload.far",5380,1
$C$DW$2 .dwtag DW_TAG_variable
.dwattr $C$DW$2, DW_AT_name("CT_INTC")
.dwattr $C$DW$2, DW_AT_TI_symbol_name("CT_INTC")
.dwattr $C$DW$2, DW_AT_location[DW_OP_addr ||CT_INTC||]
.dwattr $C$DW$2, DW_AT_type(*$C$DW$T$302)
.dwattr $C$DW$2, DW_AT_external
.dwattr $C$DW$2, DW_AT_decl_file("/usr/share/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$2, DW_AT_decl_line(0x389)
.dwattr $C$DW$2, DW_AT_decl_column(0x18)
.global ||pru_remoteproc_ResourceTable||
.sect ".resource_table:retain", RW
.retain
.align 1
.elfsym ||pru_remoteproc_ResourceTable||,SYM_SIZE(20)
||pru_remoteproc_ResourceTable||:
.bits 0x1,32
; pru_remoteproc_ResourceTable.base.ver @ 0
.bits 0,32
; pru_remoteproc_ResourceTable.base.num @ 32
.bits 0,32
; pru_remoteproc_ResourceTable.base.reserved[0] @ 64
.bits 0,32
; pru_remoteproc_ResourceTable.base.reserved[1] @ 96
.bits 0,32
; pru_remoteproc_ResourceTable.offset[0] @ 128
$C$DW$3 .dwtag DW_TAG_variable
.dwattr $C$DW$3, DW_AT_name("pru_remoteproc_ResourceTable")
.dwattr $C$DW$3, DW_AT_TI_symbol_name("pru_remoteproc_ResourceTable")
.dwattr $C$DW$3, DW_AT_location[DW_OP_addr ||pru_remoteproc_ResourceTable||]
.dwattr $C$DW$3, DW_AT_type(*$C$DW$T$293)
.dwattr $C$DW$3, DW_AT_external
.dwattr $C$DW$3, DW_AT_decl_file("resource_table_empty.h")
.dwattr $C$DW$3, DW_AT_decl_line(0x40)
.dwattr $C$DW$3, DW_AT_decl_column(0x1a)
.sect ".rodata"
.align 1
.elfsym ||buffer_index||,SYM_SIZE(4)
||buffer_index||:
.bits 0x10000,32
; buffer_index @ 0
$C$DW$4 .dwtag DW_TAG_variable
.dwattr $C$DW$4, DW_AT_name("buffer_index")
.dwattr $C$DW$4, DW_AT_TI_symbol_name("buffer_index")
.dwattr $C$DW$4, DW_AT_type(*$C$DW$T$328)
.dwattr $C$DW$4, DW_AT_location[DW_OP_addr ||buffer_index||]
.dwattr $C$DW$4, DW_AT_decl_file("../pru_common/shared_buffer.h")
.dwattr $C$DW$4, DW_AT_decl_line(0x13)
.dwattr $C$DW$4, DW_AT_decl_column(0x1a)
.sect ".rodata"
.align 1
.elfsym ||buffer||,SYM_SIZE(4)
||buffer||:
.bits 0x10001,32
; buffer @ 0
$C$DW$5 .dwtag DW_TAG_variable
.dwattr $C$DW$5, DW_AT_name("buffer")
.dwattr $C$DW$5, DW_AT_TI_symbol_name("buffer")
.dwattr $C$DW$5, DW_AT_type(*$C$DW$T$309)
.dwattr $C$DW$5, DW_AT_location[DW_OP_addr ||buffer||]
.dwattr $C$DW$5, DW_AT_decl_file("../pru_common/shared_buffer.h")
.dwattr $C$DW$5, DW_AT_decl_line(0x14)
.dwattr $C$DW$5, DW_AT_decl_column(0x19)
.sect ".data:scan_ctrl", RW
.align 1
.elfsym ||scan_ctrl||,SYM_SIZE(6)
||scan_ctrl||:
.bits 0x8,8
; scan_ctrl[0] @ 0
.bits 0x9,8
; scan_ctrl[1] @ 8
.bits 0xa,8
; scan_ctrl[2] @ 16
.bits 0xb,8
; scan_ctrl[3] @ 24
.bits 0xc,8
; scan_ctrl[4] @ 32
.bits 0xd,8
; scan_ctrl[5] @ 40
$C$DW$6 .dwtag DW_TAG_variable
.dwattr $C$DW$6, DW_AT_name("scan_ctrl")
.dwattr $C$DW$6, DW_AT_TI_symbol_name("scan_ctrl")
.dwattr $C$DW$6, DW_AT_type(*$C$DW$T$325)
.dwattr $C$DW$6, DW_AT_location[DW_OP_addr ||scan_ctrl||]
.dwattr $C$DW$6, DW_AT_decl_file("pru1_mcp3208_comm.c")
.dwattr $C$DW$6, DW_AT_decl_line(0x27)
.dwattr $C$DW$6, DW_AT_decl_column(0x10)
$C$DW$7 .dwtag DW_TAG_subprogram
.dwattr $C$DW$7, DW_AT_name("clock_ns")
.dwattr $C$DW$7, DW_AT_TI_symbol_name("clock_ns")
.dwattr $C$DW$7, DW_AT_type(*$C$DW$T$107)
.dwattr $C$DW$7, DW_AT_declaration
.dwattr $C$DW$7, DW_AT_external
.dwattr $C$DW$7, DW_AT_decl_file("pru_timer.h")
.dwattr $C$DW$7, DW_AT_decl_line(0x0d)
.dwattr $C$DW$7, DW_AT_decl_column(0x0a)
.dwendtag $C$DW$7
$C$DW$8 .dwtag DW_TAG_subprogram
.dwattr $C$DW$8, DW_AT_name("__delay_cycles")
.dwattr $C$DW$8, DW_AT_TI_symbol_name("__delay_cycles")
.dwattr $C$DW$8, DW_AT_declaration
.dwattr $C$DW$8, DW_AT_external
$C$DW$9 .dwtag DW_TAG_formal_parameter
.dwattr $C$DW$9, DW_AT_type(*$C$DW$T$11)
.dwendtag $C$DW$8
$C$DW$10 .dwtag DW_TAG_subprogram
.dwattr $C$DW$10, DW_AT_name("__halt")
.dwattr $C$DW$10, DW_AT_TI_symbol_name("__halt")
.dwattr $C$DW$10, DW_AT_declaration
.dwattr $C$DW$10, DW_AT_external
.dwendtag $C$DW$10
; /usr/share/ti/cgt-pru/bin/optpru /tmp/TI1DAsviTc3 /tmp/TI1DAE1P5dW
; /usr/share/ti/cgt-pru/bin/acpiapru -@/tmp/TI1DAUVYDG2
.sect ".text:convert"
.clink
.global ||convert||
$C$DW$11 .dwtag DW_TAG_subprogram
.dwattr $C$DW$11, DW_AT_name("convert")
.dwattr $C$DW$11, DW_AT_low_pc(||convert||)
.dwattr $C$DW$11, DW_AT_high_pc(0x00)
.dwattr $C$DW$11, DW_AT_TI_symbol_name("convert")
.dwattr $C$DW$11, DW_AT_external
.dwattr $C$DW$11, DW_AT_type(*$C$DW$T$108)
.dwattr $C$DW$11, DW_AT_TI_begin_file("pru1_mcp3208_comm.c")
.dwattr $C$DW$11, DW_AT_TI_begin_line(0x4c)
.dwattr $C$DW$11, DW_AT_TI_begin_column(0x0a)
.dwattr $C$DW$11, DW_AT_decl_file("pru1_mcp3208_comm.c")
.dwattr $C$DW$11, DW_AT_decl_line(0x4c)
.dwattr $C$DW$11, DW_AT_decl_column(0x0a)
.dwattr $C$DW$11, DW_AT_TI_max_frame_size(0x00)
.dwpsn file "pru1_mcp3208_comm.c",line 76,column 32,is_stmt,address ||convert||,isa 0
.dwfde $C$DW$CIE, ||convert||
$C$DW$12 .dwtag DW_TAG_formal_parameter
.dwattr $C$DW$12, DW_AT_name("ctrl")
.dwattr $C$DW$12, DW_AT_TI_symbol_name("ctrl")
.dwattr $C$DW$12, DW_AT_type(*$C$DW$T$324)
.dwattr $C$DW$12, DW_AT_location[DW_OP_regx 0x38]
;----------------------------------------------------------------------
; 76 | uint16_t convert(uint8_t ctrl) {
; 77 | cs_clr(); // Set CS to low (active)
; 78 | mosi_set(); // Set MOSI to HIGH (start bit)
; 80 | sclk_clr();
;----------------------------------------------------------------------
;***************************************************************
;* FNAME: convert FR SIZE: 0 *
;* *
;* FUNCTION ENVIRONMENT *
;* *
;* FUNCTION PROPERTIES *
;* 0 Auto, 0 SOE *
;***************************************************************
||convert||:
;* --------------------------------------------------------------------------*
;* r1_0 assigned to $O$L1
$C$DW$13 .dwtag DW_TAG_variable
.dwattr $C$DW$13, DW_AT_name("$O$L1")
.dwattr $C$DW$13, DW_AT_TI_symbol_name("$O$L1")
.dwattr $C$DW$13, DW_AT_type(*$C$DW$T$6)
.dwattr $C$DW$13, DW_AT_location[DW_OP_reg4]
;* r14_0 assigned to ctrl
$C$DW$14 .dwtag DW_TAG_variable
.dwattr $C$DW$14, DW_AT_name("ctrl")
.dwattr $C$DW$14, DW_AT_TI_symbol_name("ctrl")
.dwattr $C$DW$14, DW_AT_type(*$C$DW$T$329)
.dwattr $C$DW$14, DW_AT_location[DW_OP_regx 0x38]
;* r0_0 assigned to mask
$C$DW$15 .dwtag DW_TAG_variable
.dwattr $C$DW$15, DW_AT_name("mask")
.dwattr $C$DW$15, DW_AT_TI_symbol_name("mask")
.dwattr $C$DW$15, DW_AT_type(*$C$DW$T$324)
.dwattr $C$DW$15, DW_AT_location[DW_OP_reg0]
;* r14_0 assigned to result
$C$DW$16 .dwtag DW_TAG_variable
.dwattr $C$DW$16, DW_AT_name("result")
.dwattr $C$DW$16, DW_AT_TI_symbol_name("result")
.dwattr $C$DW$16, DW_AT_type(*$C$DW$T$108)
.dwattr $C$DW$16, DW_AT_location[DW_OP_regx 0x38]
.dwcfi cfa_offset, 0
;*** 69 ----------------------- __R30 &= 0xfffffffdu; // [6]
;*** 49 ----------------------- __R30 |= 1u; // [1]
;*** 61 ----------------------- __R30 &= 0xfffffffbu; // [4]
;*** 81 ----------------------- __delay_cycles(100u);
;*** 57 ----------------------- __R30 |= 4u; // [3]
;*** 83 ----------------------- __delay_cycles(100u);
;*** ----------------------- #pragma LOOP_FLAGS(5120u)
;*** 87 ----------------------- mask = 8u;
.dwpsn file "pru1_mcp3208_comm.c",line 69,column 3,is_stmt,isa 0
CLR r30, r30, 0x00000001 ; [ALU_PRU] |69|
.dwpsn file "pru1_mcp3208_comm.c",line 49,column 3,is_stmt,isa 0
SET r30, r30, 0x00000000 ; [ALU_PRU] |49|
.dwpsn file "pru1_mcp3208_comm.c",line 61,column 3,is_stmt,isa 0
CLR r30, r30, 0x00000002 ; [ALU_PRU] |61|
.dwpsn file "pru1_mcp3208_comm.c",line 81,column 3,is_stmt,isa 0
;----------------------------------------------------------------------
; 81 | __delay_cycles(MCP3208_TSUCS_CYC);
; 82 | sclk_set();
;----------------------------------------------------------------------
.newblock
LDI32 r1, 49
$1: SUB r1, r1, 1
QBNE $1, r1, 0 ; [ALU_PRU] |81|
.dwpsn file "pru1_mcp3208_comm.c",line 57,column 3,is_stmt,isa 0
SET r30, r30, 0x00000002 ; [ALU_PRU] |57|
.dwpsn file "pru1_mcp3208_comm.c",line 83,column 3,is_stmt,isa 0
;----------------------------------------------------------------------
; 83 | __delay_cycles(MCP3208_THI_CYC);
; 85 | // Send control bits
; 86 | uint8_t mask;
;----------------------------------------------------------------------
.newblock
LDI32 r0, 49
$1: SUB r0, r0, 1
QBNE $1, r0, 0 ; [ALU_PRU] |83|
.dwpsn file "pru1_mcp3208_comm.c",line 87,column 8,is_stmt,isa 0
;----------------------------------------------------------------------
; 87 | for (mask=0b1000; mask!=0; mask>>=1) {
; 88 | sclk_clr();
;----------------------------------------------------------------------
LDI r0.b0, 0x08 ; [ALU_PRU] |87| mask
;* --------------------------------------------------------------------------*
;* BEGIN LOOP ||$C$L1||
;*
;* Loop source line : 87
;* Loop closing brace source line : 97
;* Known Minimum Trip Count : 1
;* Known Maximum Trip Count : 4294967295
;* Known Max Trip Count Factor : 1
;* --------------------------------------------------------------------------*
||$C$L1||:
;*** -----------------------g2:
;*** 61 ----------------------- __R30 &= 0xfffffffbu; // [4]
;*** 89 ----------------------- if ( ctrl&mask ) goto g4;
.dwpsn file "pru1_mcp3208_comm.c",line 89,column 5,is_stmt,isa 0
;----------------------------------------------------------------------
; 89 | if (ctrl & mask)
;----------------------------------------------------------------------
AND r0.b1, r14.b0, r0.b0 ; [ALU_PRU] |89| ctrl,mask
.dwpsn file "pru1_mcp3208_comm.c",line 61,column 3,is_stmt,isa 0
CLR r30, r30, 0x00000002 ; [ALU_PRU] |61|
.dwpsn file "pru1_mcp3208_comm.c",line 89,column 5,is_stmt,isa 0
;----------------------------------------------------------------------
; 90 | mosi_set();
; 91 | else
;----------------------------------------------------------------------
QBNE ||$C$L2||, r0.b1, 0x00 ; [ALU_PRU] |89|
;* --------------------------------------------------------------------------*
;*** 53 ----------------------- __R30 &= 0xfffffffeu; // [2]
;*** 92 ----------------------- goto g5;
.dwpsn file "pru1_mcp3208_comm.c",line 53,column 3,is_stmt,isa 0
CLR r30, r30, 0x00000000 ; [ALU_PRU] |53|
.dwpsn file "pru1_mcp3208_comm.c",line 92,column 7,is_stmt,isa 0
;----------------------------------------------------------------------
; 92 | mosi_clr();
;----------------------------------------------------------------------
JMP ||$C$L3|| ; [ALU_PRU] |92|
;* --------------------------------------------------------------------------*
||$C$L2||:
;*** -----------------------g4:
;*** 49 ----------------------- __R30 |= 1u; // [1]
.dwpsn file "pru1_mcp3208_comm.c",line 49,column 3,is_stmt,isa 0
SET r30, r30, 0x00000000 ; [ALU_PRU] |49|
;* --------------------------------------------------------------------------*
||$C$L3||:
;*** -----------------------g5:
;*** 94 ----------------------- __delay_cycles(100u);
;*** 57 ----------------------- __R30 |= 4u; // [3]
;*** 96 ----------------------- __delay_cycles(100u);
;*** 87 ----------------------- if ( mask >>= 1 ) goto g2;
.dwpsn file "pru1_mcp3208_comm.c",line 94,column 5,is_stmt,isa 0
;----------------------------------------------------------------------
; 94 | __delay_cycles(MCP3208_TLO_CYC);
; 95 | sclk_set();
;----------------------------------------------------------------------
.newblock
LDI32 r15, 49
$1: SUB r15, r15, 1
QBNE $1, r15, 0 ; [ALU_PRU] |94|
.dwpsn file "pru1_mcp3208_comm.c",line 57,column 3,is_stmt,isa 0
SET r30, r30, 0x00000002 ; [ALU_PRU] |57|
.dwpsn file "pru1_mcp3208_comm.c",line 96,column 5,is_stmt,isa 0
;----------------------------------------------------------------------
; 96 | __delay_cycles(MCP3208_THI_CYC);
; 99 | // Wait for conversion (part of t_SAMPLE)
; 100 | sclk_clr();
;----------------------------------------------------------------------
.newblock
LDI32 r1, 49
$1: SUB r1, r1, 1
QBNE $1, r1, 0 ; [ALU_PRU] |96|
.dwpsn file "pru1_mcp3208_comm.c",line 87,column 21,is_stmt,isa 0
MOV r0, r0.b0 ; [ALU_PRU] |87| mask
LSR r0, r0, 0x01 ; [ALU_PRU] |87|
QBNE ||$C$L1||, r0.b0, 0x00 ; [ALU_PRU] |87| mask
;* --------------------------------------------------------------------------*
;*** 61 ----------------------- __R30 &= 0xfffffffbu; // [4]
;*** 101 ----------------------- __delay_cycles(100u);
;*** 57 ----------------------- __R30 |= 4u; // [3]
;*** 103 ----------------------- __delay_cycles(100u);
;*** ----------------------- #pragma MUST_ITERATE(13, 13, 13)
;*** ----------------------- #pragma LOOP_FLAGS(5120u)
;*** 107 ----------------------- result = 0u;
;*** 108 ----------------------- L$1 = 13u;
.dwpsn file "pru1_mcp3208_comm.c",line 61,column 3,is_stmt,isa 0
CLR r30, r30, 0x00000002 ; [ALU_PRU] |61|
.dwpsn file "pru1_mcp3208_comm.c",line 101,column 3,is_stmt,isa 0
;----------------------------------------------------------------------
; 101 | __delay_cycles(MCP3208_TLO_CYC);
; 102 | sclk_set();
;----------------------------------------------------------------------
.newblock
LDI32 r1, 49
$1: SUB r1, r1, 1
QBNE $1, r1, 0 ; [ALU_PRU] |101|
.dwpsn file "pru1_mcp3208_comm.c",line 57,column 3,is_stmt,isa 0
SET r30, r30, 0x00000002 ; [ALU_PRU] |57|
.dwpsn file "pru1_mcp3208_comm.c",line 103,column 3,is_stmt,isa 0
;----------------------------------------------------------------------
; 103 | __delay_cycles(MCP3208_THI_CYC);
; 105 | // Read the null bit and conversion result
; 106 | int8_t i;
;----------------------------------------------------------------------
.newblock
LDI32 r0, 49
$1: SUB r0, r0, 1
QBNE $1, r0, 0 ; [ALU_PRU] |103|
.dwpsn file "pru1_mcp3208_comm.c",line 107,column 19,is_stmt,isa 0
;----------------------------------------------------------------------
; 107 | uint16_t result = 0;
;----------------------------------------------------------------------
LDI r14.w0, 0x0000 ; [ALU_PRU] |107| result
.dwpsn file "pru1_mcp3208_comm.c",line 108,column 13,is_stmt,isa 0
;----------------------------------------------------------------------
; 108 | for (i=0; i<13; i++){
; 109 | sclk_clr();
;----------------------------------------------------------------------
LDI r1.b0, 0x0d ; [ALU_PRU] |108| $O$L1
;* --------------------------------------------------------------------------*
;* BEGIN LOOP ||$C$L4||
;*
;* Loop source line : 108
;* Loop closing brace source line : 119
;* Known Minimum Trip Count : 13
;* Known Maximum Trip Count : 13
;* Known Max Trip Count Factor : 13
;* --------------------------------------------------------------------------*
||$C$L4||:
;*** -----------------------g7:
;*** 61 ----------------------- __R30 &= 0xfffffffbu; // [4]
;*** 110 ----------------------- __delay_cycles(100u);
;*** 57 ----------------------- __R30 |= 4u; // [3]
;*** 114 ----------------------- result *= 2;
;*** 73 ----------------------- if ( !(__R31&0x20u) ) goto g9; // [7]
.dwpsn file "pru1_mcp3208_comm.c",line 61,column 3,is_stmt,isa 0
CLR r30, r30, 0x00000002 ; [ALU_PRU] |61|
.dwpsn file "pru1_mcp3208_comm.c",line 110,column 5,is_stmt,isa 0
;----------------------------------------------------------------------
; 110 | __delay_cycles(MCP3208_TLO_CYC);
; 111 | sclk_set();
; 113 | // Incorporate the incoming data
;----------------------------------------------------------------------
.newblock
LDI32 r0, 49
$1: SUB r0, r0, 1
QBNE $1, r0, 0 ; [ALU_PRU] |110|
.dwpsn file "pru1_mcp3208_comm.c",line 114,column 5,is_stmt,isa 0
;----------------------------------------------------------------------
; 114 | result <<= 1;
; 115 | if (miso_rd())
;----------------------------------------------------------------------
LSL r14, r14.w0, 0x01 ; [ALU_PRU] |114| result
.dwpsn file "pru1_mcp3208_comm.c",line 57,column 3,is_stmt,isa 0
SET r30, r30, 0x00000002 ; [ALU_PRU] |57|
.dwpsn file "pru1_mcp3208_comm.c",line 73,column 3,is_stmt,isa 0
QBBC ||$C$L5||, r31, 0x05 ; [ALU_PRU] |73|
;* --------------------------------------------------------------------------*
;*** 116 ----------------------- ++result;
.dwpsn file "pru1_mcp3208_comm.c",line 116,column 7,is_stmt,isa 0
;----------------------------------------------------------------------
; 116 | result++;
;----------------------------------------------------------------------
ADD r14.w0, r14.w0, 0x01 ; [ALU_PRU] |116| result,result
;* --------------------------------------------------------------------------*
||$C$L5||:
;*** -----------------------g9:
;*** 118 ----------------------- __delay_cycles(100u);
;*** 108 ----------------------- if ( L$1 = (unsigned char)(L$1-1) ) goto g7;
.dwpsn file "pru1_mcp3208_comm.c",line 118,column 5,is_stmt,isa 0
;----------------------------------------------------------------------
; 118 | __delay_cycles(MCP3208_THI_CYC);
; 121 | cs_set(); // Release SPI bus
; 122 | return result;
;----------------------------------------------------------------------
.newblock
LDI32 r0, 49
$1: SUB r0, r0, 1
QBNE $1, r0, 0 ; [ALU_PRU] |118|
.dwpsn file "pru1_mcp3208_comm.c",line 108,column 13,is_stmt,isa 0
SUB r1.b0, r1.b0, 0x01 ; [ALU_PRU] |108| $O$L1,$O$L1
QBNE ||$C$L4||, r1.b0, 0x00 ; [ALU_PRU] |108| $O$L1
;* --------------------------------------------------------------------------*
;*** 65 ----------------------- __R30 |= 2u; // [5]
;*** 122 ----------------------- return result;
.dwpsn file "pru1_mcp3208_comm.c",line 65,column 3,is_stmt,isa 0
SET r30, r30, 0x00000001 ; [ALU_PRU] |65|
$C$DW$17 .dwtag DW_TAG_TI_branch
.dwattr $C$DW$17, DW_AT_low_pc(0x00)
.dwattr $C$DW$17, DW_AT_TI_return
JMP r3.w2 ; [ALU_PRU]
.dwattr $C$DW$11, DW_AT_TI_end_file("pru1_mcp3208_comm.c")
.dwattr $C$DW$11, DW_AT_TI_end_line(0x7b)
.dwattr $C$DW$11, DW_AT_TI_end_column(0x01)
.dwendentry
.dwendtag $C$DW$11
.sect ".text:main"
.clink
.global ||main||
$C$DW$18 .dwtag DW_TAG_subprogram
.dwattr $C$DW$18, DW_AT_name("main")
.dwattr $C$DW$18, DW_AT_low_pc(||main||)
.dwattr $C$DW$18, DW_AT_high_pc(0x00)
.dwattr $C$DW$18, DW_AT_TI_symbol_name("main")
.dwattr $C$DW$18, DW_AT_external
.dwattr $C$DW$18, DW_AT_TI_begin_file("pru1_mcp3208_comm.c")
.dwattr $C$DW$18, DW_AT_TI_begin_line(0x7e)
.dwattr $C$DW$18, DW_AT_TI_begin_column(0x06)
.dwattr $C$DW$18, DW_AT_decl_file("pru1_mcp3208_comm.c")
.dwattr $C$DW$18, DW_AT_decl_line(0x7e)
.dwattr $C$DW$18, DW_AT_decl_column(0x06)
.dwattr $C$DW$18, DW_AT_TI_max_frame_size(0x12)
.dwpsn file "pru1_mcp3208_comm.c",line 126,column 13,is_stmt,address ||main||,isa 0
.dwfde $C$DW$CIE, ||main||
;----------------------------------------------------------------------
; 126 | void main() {
; 127 | // Clear any pending PRU-generated events
; 128 | __R31 = 0x00000000;
; 130 | // Initialize interupts so the PRUs can be syncronized.
;----------------------------------------------------------------------
;***************************************************************
;* FNAME: main FR SIZE: 18 *
;* *
;* FUNCTION ENVIRONMENT *
;* *
;* FUNCTION PROPERTIES *
;* 0 Auto, 18 SOE *
;***************************************************************
||main||:
;* --------------------------------------------------------------------------*
;* r0_0 assigned to $O$C1
$C$DW$19 .dwtag DW_TAG_variable
.dwattr $C$DW$19, DW_AT_name("$O$C1")
.dwattr $C$DW$19, DW_AT_TI_symbol_name("$O$C1")
.dwattr $C$DW$19, DW_AT_type(*$C$DW$T$297)
.dwattr $C$DW$19, DW_AT_location[DW_OP_reg0]
;* r1_0 assigned to $O$C2
$C$DW$20 .dwtag DW_TAG_variable
.dwattr $C$DW$20, DW_AT_name("$O$C2")
.dwattr $C$DW$20, DW_AT_TI_symbol_name("$O$C2")
.dwattr $C$DW$20, DW_AT_type(*$C$DW$T$11)
.dwattr $C$DW$20, DW_AT_location[DW_OP_reg4]
;* r1_0 assigned to $O$C3
$C$DW$21 .dwtag DW_TAG_variable
.dwattr $C$DW$21, DW_AT_name("$O$C3")
.dwattr $C$DW$21, DW_AT_TI_symbol_name("$O$C3")
.dwattr $C$DW$21, DW_AT_type(*$C$DW$T$11)
.dwattr $C$DW$21, DW_AT_location[DW_OP_reg4]
;* r1_0 assigned to $O$C4
$C$DW$22 .dwtag DW_TAG_variable
.dwattr $C$DW$22, DW_AT_name("$O$C4")
.dwattr $C$DW$22, DW_AT_TI_symbol_name("$O$C4")
.dwattr $C$DW$22, DW_AT_type(*$C$DW$T$337)
.dwattr $C$DW$22, DW_AT_location[DW_OP_reg4]
;* r1_0 assigned to $O$C5
$C$DW$23 .dwtag DW_TAG_variable
.dwattr $C$DW$23, DW_AT_name("$O$C5")
.dwattr $C$DW$23, DW_AT_TI_symbol_name("$O$C5")
.dwattr $C$DW$23, DW_AT_type(*$C$DW$T$337)
.dwattr $C$DW$23, DW_AT_location[DW_OP_reg4]
;* r6_0 assigned to $O$K24
$C$DW$24 .dwtag DW_TAG_variable
.dwattr $C$DW$24, DW_AT_name("$O$K24")
.dwattr $C$DW$24, DW_AT_TI_symbol_name("$O$K24")
.dwattr $C$DW$24, DW_AT_type(*$C$DW$T$319)
.dwattr $C$DW$24, DW_AT_location[DW_OP_reg24]
;* r5_0 assigned to curr_buff
$C$DW$25 .dwtag DW_TAG_variable
.dwattr $C$DW$25, DW_AT_name("curr_buff")
.dwattr $C$DW$25, DW_AT_TI_symbol_name("curr_buff")
.dwattr $C$DW$25, DW_AT_type(*$C$DW$T$308)
.dwattr $C$DW$25, DW_AT_location[DW_OP_reg20]
;* r4_0 assigned to i
$C$DW$26 .dwtag DW_TAG_variable
.dwattr $C$DW$26, DW_AT_name("i")
.dwattr $C$DW$26, DW_AT_TI_symbol_name("i")
.dwattr $C$DW$26, DW_AT_type(*$C$DW$T$10)
.dwattr $C$DW$26, DW_AT_location[DW_OP_reg16]
.dwcfi cfa_offset, 0
;*** 128 ----------------------- __R31 = 0u;
;*** 131 ----------------------- C$1 = &CT_INTC;
;*** 131 ----------------------- C$5 = &((volatile unsigned *)C$1)[261];
;*** 131 ----------------------- *C$5 = *C$5&0xfffffff0u|1u;
;*** 132 ----------------------- C$4 = &CT_INTC+2048;
;*** 132 ----------------------- *C$4 = *C$4&0xfffff1ffu|0x100u;
;*** 133 ----------------------- (*(volatile struct $$fake77 *)C$1).$P$T18.SICR = C$3 = 20u;
;*** 134 ----------------------- (*(volatile struct $$fake77 *)C$1).$P$T19.EISR = C$3;
;*** 135 ----------------------- (*(volatile struct $$fake77 *)C$1).$P$T21.HIEISR = C$2 = 1u;
;*** 136 ----------------------- (*(volatile struct $$fake77 *)C$1).$P$T15.GER = C$2;
;*** 139 ----------------------- *(K$24 = (volatile unsigned char * const)0x10000u) = 0u;
;*** 10 ----------------------- *(volatile unsigned *)0x24000u |= 0x8u; // [0]
;*** ----------------------- #pragma LOOP_FLAGS(5120u)
SUB r2, r2, 0x12 ; [ALU_PRU]
.dwcfi cfa_offset, 18
.dwpsn file "pru1_mcp3208_comm.c",line 131,column 3,is_stmt,isa 0
;----------------------------------------------------------------------
; 131 | CT_INTC.CMR5_bit.CH_MAP_20 = 1; // Map event 20 to channel 1
;----------------------------------------------------------------------
LDI32 r0, ||CT_INTC|| ; [ALU_PRU] |131| $O$C1,CT_INTC
LDI r1, 0x0414 ; [ALU_PRU] |131|
.dwpsn file "pru1_mcp3208_comm.c",line 128,column 3,is_stmt,isa 0
ZERO &r31, 4 ; [ALU_PRU] |128|
.dwpsn file "pru1_mcp3208_comm.c",line 131,column 3,is_stmt,isa 0
;----------------------------------------------------------------------
; 132 | CT_INTC.HMR0_bit.HINT_MAP_1 = 1; // Map channel 1 to host 1
; 133 | CT_INTC.SICR = PRU0_PRU1_EVT; // Ensure event 20 is cleared
; 134 | CT_INTC.EISR = PRU0_PRU1_EVT; // Enable event 20
; 135 | CT_INTC.HIEISR = 1; // Enable Host interrupt 1
; 136 | CT_INTC.GER = 1; // Globally enable host interrupts
; 138 | // Initialize buffer index
;----------------------------------------------------------------------
LDI32 r14, 0xfffffff0 ; [ALU_PRU] |131|
SBBO &r3.b2, r2, 0, 18 ; [ALU_PRU]
.dwcfi save_reg_to_mem, 14, -18
.dwcfi save_reg_to_mem, 15, -17
.dwcfi save_reg_to_mem, 16, -16
.dwcfi save_reg_to_mem, 17, -15
.dwcfi save_reg_to_mem, 18, -14
.dwcfi save_reg_to_mem, 19, -13
.dwcfi save_reg_to_mem, 20, -12
.dwcfi save_reg_to_mem, 21, -11
.dwcfi save_reg_to_mem, 22, -10
.dwcfi save_reg_to_mem, 23, -9
.dwcfi save_reg_to_mem, 24, -8
.dwcfi save_reg_to_mem, 25, -7
.dwcfi save_reg_to_mem, 26, -6
.dwcfi save_reg_to_mem, 27, -5
.dwcfi save_reg_to_mem, 28, -4
.dwcfi save_reg_to_mem, 29, -3
.dwcfi save_reg_to_mem, 30, -2
.dwcfi save_reg_to_mem, 31, -1
.dwpsn file "pru1_mcp3208_comm.c",line 139,column 3,is_stmt,isa 0
;----------------------------------------------------------------------
; 139 | *buffer_index = 0;
;----------------------------------------------------------------------
LDI32 r6, 0x00010000 ; [ALU_PRU] |139| $O$K24
.dwpsn file "pru1_mcp3208_comm.c",line 131,column 3,is_stmt,isa 0
ADD r1, r0, r1 ; [ALU_PRU] |131| $O$C5,$O$C1
LBBO &r15, r1, 0, 4 ; [ALU_PRU] |131| $O$C5
AND r14, r15, r14 ; [ALU_PRU] |131|
SET r14, r14, 0x00000000 ; [ALU_PRU] |131|
SBBO &r14, r1, 0, 4 ; [ALU_PRU] |131| $O$C5
.dwpsn file "pru1_mcp3208_comm.c",line 132,column 3,is_stmt,isa 0
LDI32 r14, 0xfffff1ff ; [ALU_PRU] |132|
LDI32 r1, ||CT_INTC||+2048 ; [ALU_PRU] |132| $O$C4,CT_INTC
LBBO &r15, r1, 0, 4 ; [ALU_PRU] |132| $O$C4
AND r14, r15, r14 ; [ALU_PRU] |132|
SET r14, r14, 0x00000008 ; [ALU_PRU] |132|
SBBO &r14, r1, 0, 4 ; [ALU_PRU] |132| $O$C4
.dwpsn file "pru1_mcp3208_comm.c",line 133,column 3,is_stmt,isa 0
LDI r1, 0x0014 ; [ALU_PRU] |133| $O$C3
SBBO &r1, r0, 36, 4 ; [ALU_PRU] |133| $O$C1,$O$C3
.dwpsn file "pru1_mcp3208_comm.c",line 134,column 3,is_stmt,isa 0
SBBO &r1, r0, 40, 4 ; [ALU_PRU] |134| $O$C1,$O$C3
.dwpsn file "pru1_mcp3208_comm.c",line 135,column 3,is_stmt,isa 0
LDI r1, 0x0001 ; [ALU_PRU] |135| $O$C2
SBBO &r1, r0, 52, 4 ; [ALU_PRU] |135| $O$C1,$O$C2
.dwpsn file "pru1_mcp3208_comm.c",line 136,column 3,is_stmt,isa 0
SBBO &r1, r0, 16, 4 ; [ALU_PRU] |136| $O$C1,$O$C2
.dwpsn file "pru1_mcp3208_comm.c",line 139,column 3,is_stmt,isa 0
;----------------------------------------------------------------------
; 141 | // Start timer
; 142 | start_pru1_timer();
; 143 | for (;;) {
;----------------------------------------------------------------------
LDI r0.b0, 0x00 ; [ALU_PRU] |139|
SBBO &r0.b0, r6, 0, 1 ; [ALU_PRU] |139| $O$K24
.dwpsn file "pru_timer.h",line 10,column 3,is_stmt,isa 0
LDI32 r0, 0x00024000 ; [ALU_PRU] |10|
LBBO &r1, r0, 0, 4 ; [ALU_PRU] |10|
SET r1, r1, 0x00000003 ; [ALU_PRU] |10|
SBBO &r1, r0, 0, 4 ; [ALU_PRU] |10|
;* --------------------------------------------------------------------------*
;* BEGIN LOOP ||$C$L6||
;*
;* Loop source line : 143
;* Loop closing brace source line : 160
;* Known Minimum Trip Count : 1
;* Known Maximum Trip Count : 4294967295
;* Known Max Trip Count Factor : 1
;* --------------------------------------------------------------------------*
||$C$L6||:
;*** -----------------------g2:
;*** 144 ----------------------- curr_buff = *K$24*488+(volatile struct $$fake78 * const)0x10001u;
;*** 145 ----------------------- (*curr_buff).timestamp_ns = clock_ns();
;*** ----------------------- #pragma MUST_ITERATE(240, 240, 240)
;*** ----------------------- #pragma LOOP_FLAGS(5120u)
;*** 148 ----------------------- i = 0;
.dwpsn file "pru1_mcp3208_comm.c",line 144,column 32,is_stmt,isa 0
;----------------------------------------------------------------------
; 144 | volatile Buffer *curr_buff = buffer + *buffer_index;
;----------------------------------------------------------------------
LBBO &r0.b0, r6, 0, 1 ; [ALU_PRU] |144| $O$K24
LDI r28, 0x01e8 ; [ALU_PRU] |144|
MOV r29, r0.b0 ; [ALU_PRU] |144|
LDI32 r5, 0x00010001 ; [ALU_PRU] |144|
XIN 0, &r26, 4 ; [ALU_PRU] |144|
ADD r5, r5, r26 ; [ALU_PRU] |144|
.dwpsn file "pru1_mcp3208_comm.c",line 145,column 5,is_stmt,isa 0
;----------------------------------------------------------------------
; 145 | curr_buff->timestamp_ns = clock_ns();
; 147 | int i;
;----------------------------------------------------------------------
$C$DW$27 .dwtag DW_TAG_TI_branch
.dwattr $C$DW$27, DW_AT_low_pc(0x00)
.dwattr $C$DW$27, DW_AT_name("clock_ns")
.dwattr $C$DW$27, DW_AT_TI_call
JAL r3.w2, ||clock_ns|| ; [ALU_PRU] |145| clock_ns
.dwpsn file "pru1_mcp3208_comm.c",line 148,column 10,is_stmt,isa 0
;----------------------------------------------------------------------
; 148 | for (i=0; i<DATA_BUFFER_LEN; i++) {
; 149 | uint8_t ctrl = scan_ctrl[i % NUM_SCAN_ELEMENTS];
;----------------------------------------------------------------------
ZERO &r4, 4 ; [ALU_PRU] |148| i
.dwpsn file "pru1_mcp3208_comm.c",line 145,column 5,is_stmt,isa 0
SBBO &r14, r5, 0, 8 ; [ALU_PRU] |145| curr_buff
;* --------------------------------------------------------------------------*
;* BEGIN LOOP ||$C$L7||
;*
;* Loop source line : 148
;* Loop closing brace source line : 152
;* Known Minimum Trip Count : 240
;* Known Maximum Trip Count : 240
;* Known Max Trip Count Factor : 240
;* --------------------------------------------------------------------------*
||$C$L7||:
;*** -----------------------g3:
;*** 150 ----------------------- (*curr_buff).data[i] = convert(scan_ctrl[i%6]);
;*** 151 ----------------------- __delay_cycles(200u);
;*** 148 ----------------------- if ( (++i) < 240 ) goto g3;
.dwpsn file "pru1_mcp3208_comm.c",line 150,column 7,is_stmt,isa 0
;----------------------------------------------------------------------
; 150 | curr_buff->data[i] = convert(ctrl);
;----------------------------------------------------------------------
MOV r14, r4 ; [ALU_PRU] |150| i
LDI r15, 0x0006 ; [ALU_PRU] |150|
$C$DW$28 .dwtag DW_TAG_TI_branch
.dwattr $C$DW$28, DW_AT_low_pc(0x00)
.dwattr $C$DW$28, DW_AT_name("__pruabi_remi")
.dwattr $C$DW$28, DW_AT_TI_call
JAL r3.w2, ||__pruabi_remi|| ; [ALU_PRU] |150| __pruabi_remi
LDI r0, ||scan_ctrl|| ; [ALU_PRU] |150| scan_ctrl
LBBO &r14.b0, r0, r14, 1 ; [ALU_PRU] |150|
$C$DW$29 .dwtag DW_TAG_TI_branch
.dwattr $C$DW$29, DW_AT_low_pc(0x00)
.dwattr $C$DW$29, DW_AT_name("convert")
.dwattr $C$DW$29, DW_AT_TI_call
JAL r3.w2, ||convert|| ; [ALU_PRU] |150| convert
LSL r0, r4, 0x01 ; [ALU_PRU] |150| i
ADD r0, r5, r0 ; [ALU_PRU] |150| curr_buff
SBBO &r14.w0, r0, 8, 2 ; [ALU_PRU] |150|
.dwpsn file "pru1_mcp3208_comm.c",line 151,column 7,is_stmt,isa 0
;----------------------------------------------------------------------
; 151 | __delay_cycles(MCP3208_TCSH_CYC);
; 154 | // Switch buffers
;----------------------------------------------------------------------
.newblock
LDI32 r7, 99
$1: SUB r7, r7, 1
QBNE $1, r7, 0 ; [ALU_PRU] |151|
.dwpsn file "pru1_mcp3208_comm.c",line 148,column 15,is_stmt,isa 0
LDI32 r1, 0x800000f0 ; [ALU_PRU] |148|
ADD r4, r4, 0x01 ; [ALU_PRU] |148| i,i
MOV r0, r4 ; [ALU_PRU] |148| i
XOR r0.b3, r0.b3, 0x80 ; [ALU_PRU] |148|
QBLT ||$C$L7||, r1, r0 ; [ALU_PRU] |148|
;* --------------------------------------------------------------------------*
;*** 155 ----------------------- *K$24 ^= 1u;
;*** 156 ----------------------- *K$24 &= 1u;
;*** 159 ----------------------- __R31 = 36u;
;*** 160 ----------------------- goto g2;
.dwpsn file "pru1_mcp3208_comm.c",line 155,column 5,is_stmt,isa 0
;----------------------------------------------------------------------
; 155 | *buffer_index ^= 1;
;----------------------------------------------------------------------
LBBO &r0.b0, r6, 0, 1 ; [ALU_PRU] |155| $O$K24
XOR r0.b0, r0.b0, 0x01 ; [ALU_PRU] |155|
SBBO &r0.b0, r6, 0, 1 ; [ALU_PRU] |155| $O$K24
.dwpsn file "pru1_mcp3208_comm.c",line 156,column 5,is_stmt,isa 0
;----------------------------------------------------------------------
; 156 | *buffer_index &= 1; // For precaution
; 158 | // Trigger event
;----------------------------------------------------------------------
LBBO &r0.b0, r6, 0, 1 ; [ALU_PRU] |156| $O$K24
AND r0.b0, r0.b0, 0x01 ; [ALU_PRU] |156|
SBBO &r0.b0, r6, 0, 1 ; [ALU_PRU] |156| $O$K24
.dwpsn file "pru1_mcp3208_comm.c",line 159,column 5,is_stmt,isa 0
;----------------------------------------------------------------------
; 159 | PRU0_PRU1_TRIGGER;
;----------------------------------------------------------------------
LDI r31, 0x0024 ; [ALU_PRU] |159|
.dwpsn file "pru1_mcp3208_comm.c",line 160,column 3,is_stmt,isa 0
;----------------------------------------------------------------------
; 162 | __halt();
;----------------------------------------------------------------------
JMP ||$C$L6|| ; [ALU_PRU] |160|
;* --------------------------------------------------------------------------*
.dwattr $C$DW$18, DW_AT_TI_end_file("pru1_mcp3208_comm.c")
.dwattr $C$DW$18, DW_AT_TI_end_line(0xa3)
.dwattr $C$DW$18, DW_AT_TI_end_column(0x01)
.dwendentry
.dwendtag $C$DW$18
;* Inlined function references:
;* [0] start_pru1_timer
;* [1] mosi_set
;* [2] mosi_clr
;* [3] sclk_set
;* [4] sclk_clr
;* [5] cs_set
;* [6] cs_clr
;* [7] miso_rd
;*****************************************************************************
;* UNDEFINED EXTERNAL REFERENCES *
;*****************************************************************************
.global ||clock_ns||
.global ||__pruabi_remi||
;******************************************************************************
;* TYPE INFORMATION *
;******************************************************************************
$C$DW$T$19 .dwtag DW_TAG_structure_type
.dwattr $C$DW$T$19, DW_AT_byte_size(0x04)
$C$DW$30 .dwtag DW_TAG_member
.dwattr $C$DW$30, DW_AT_type(*$C$DW$T$11)
.dwattr $C$DW$30, DW_AT_name("REVID")
.dwattr $C$DW$30, DW_AT_TI_symbol_name("REVID")
.dwattr $C$DW$30, DW_AT_bit_offset(0x00)
.dwattr $C$DW$30, DW_AT_bit_size(0x20)
.dwattr $C$DW$30, DW_AT_data_member_location[DW_OP_plus_uconst 0x0]
.dwattr $C$DW$30, DW_AT_accessibility(DW_ACCESS_public)
.dwattr $C$DW$30, DW_AT_decl_file("/usr/share/ti/pru-software-support-package/include/am335x/pru_cfg.h")
.dwattr $C$DW$30, DW_AT_decl_line(0x2d)
.dwattr $C$DW$30, DW_AT_decl_column(0x0d)
.dwattr $C$DW$T$19, DW_AT_decl_file("/usr/share/ti/pru-software-support-package/include/am335x/pru_cfg.h")
.dwattr $C$DW$T$19, DW_AT_decl_line(0x2c)
.dwattr $C$DW$T$19, DW_AT_decl_column(0x13)
.dwendtag $C$DW$T$19
$C$DW$T$123 .dwtag DW_TAG_volatile_type
.dwattr $C$DW$T$123, DW_AT_type(*$C$DW$T$19)
$C$DW$T$20 .dwtag DW_TAG_structure_type
.dwattr $C$DW$T$20, DW_AT_byte_size(0x04)
$C$DW$31 .dwtag DW_TAG_member
.dwattr $C$DW$31, DW_AT_type(*$C$DW$T$11)
.dwattr $C$DW$31, DW_AT_name("IDLE_MODE")
.dwattr $C$DW$31, DW_AT_TI_symbol_name("IDLE_MODE")
.dwattr $C$DW$31, DW_AT_bit_offset(0x1e)
.dwattr $C$DW$31, DW_AT_bit_size(0x02)
.dwattr $C$DW$31, DW_AT_data_member_location[DW_OP_plus_uconst 0x0]
.dwattr $C$DW$31, DW_AT_accessibility(DW_ACCESS_public)
.dwattr $C$DW$31, DW_AT_decl_file("/usr/share/ti/pru-software-support-package/include/am335x/pru_cfg.h")
.dwattr $C$DW$31, DW_AT_decl_line(0x37)
.dwattr $C$DW$31, DW_AT_decl_column(0x0d)
$C$DW$32 .dwtag DW_TAG_member
.dwattr $C$DW$32, DW_AT_type(*$C$DW$T$11)
.dwattr $C$DW$32, DW_AT_name("STANDBY_MODE")
.dwattr $C$DW$32, DW_AT_TI_symbol_name("STANDBY_MODE")
.dwattr $C$DW$32, DW_AT_bit_offset(0x1c)
.dwattr $C$DW$32, DW_AT_bit_size(0x02)
.dwattr $C$DW$32, DW_AT_data_member_location[DW_OP_plus_uconst 0x0]
.dwattr $C$DW$32, DW_AT_accessibility(DW_ACCESS_public)
.dwattr $C$DW$32, DW_AT_decl_file("/usr/share/ti/pru-software-support-package/include/am335x/pru_cfg.h")
.dwattr $C$DW$32, DW_AT_decl_line(0x38)
.dwattr $C$DW$32, DW_AT_decl_column(0x0d)
$C$DW$33 .dwtag DW_TAG_member
.dwattr $C$DW$33, DW_AT_type(*$C$DW$T$11)
.dwattr $C$DW$33, DW_AT_name("STANDBY_INIT")
.dwattr $C$DW$33, DW_AT_TI_symbol_name("STANDBY_INIT")
.dwattr $C$DW$33, DW_AT_bit_offset(0x1b)
.dwattr $C$DW$33, DW_AT_bit_size(0x01)
.dwattr $C$DW$33, DW_AT_data_member_location[DW_OP_plus_uconst 0x0]
.dwattr $C$DW$33, DW_AT_accessibility(DW_ACCESS_public)
.dwattr $C$DW$33, DW_AT_decl_file("/usr/share/ti/pru-software-support-package/include/am335x/pru_cfg.h")
.dwattr $C$DW$33, DW_AT_decl_line(0x39)
.dwattr $C$DW$33, DW_AT_decl_column(0x0d)
$C$DW$34 .dwtag DW_TAG_member
.dwattr $C$DW$34, DW_AT_type(*$C$DW$T$11)
.dwattr $C$DW$34, DW_AT_name("SUB_MWAIT")
.dwattr $C$DW$34, DW_AT_TI_symbol_name("SUB_MWAIT")
.dwattr $C$DW$34, DW_AT_bit_offset(0x1a)
.dwattr $C$DW$34, DW_AT_bit_size(0x01)
.dwattr $C$DW$34, DW_AT_data_member_location[DW_OP_plus_uconst 0x0]
.dwattr $C$DW$34, DW_AT_accessibility(DW_ACCESS_public)
.dwattr $C$DW$34, DW_AT_decl_file("/usr/share/ti/pru-software-support-package/include/am335x/pru_cfg.h")
.dwattr $C$DW$34, DW_AT_decl_line(0x3a)
.dwattr $C$DW$34, DW_AT_decl_column(0x0d)
$C$DW$35 .dwtag DW_TAG_member
.dwattr $C$DW$35, DW_AT_type(*$C$DW$T$11)
.dwattr $C$DW$35, DW_AT_name("rsvd6")
.dwattr $C$DW$35, DW_AT_TI_symbol_name("rsvd6")
.dwattr $C$DW$35, DW_AT_bit_offset(0x00)
.dwattr $C$DW$35, DW_AT_bit_size(0x1a)
.dwattr $C$DW$35, DW_AT_data_member_location[DW_OP_plus_uconst 0x0]
.dwattr $C$DW$35, DW_AT_accessibility(DW_ACCESS_public)
.dwattr $C$DW$35, DW_AT_decl_file("/usr/share/ti/pru-software-support-package/include/am335x/pru_cfg.h")
.dwattr $C$DW$35, DW_AT_decl_line(0x3b)
.dwattr $C$DW$35, DW_AT_decl_column(0x0d)
.dwattr $C$DW$T$20, DW_AT_decl_file("/usr/share/ti/pru-software-support-package/include/am335x/pru_cfg.h")
.dwattr $C$DW$T$20, DW_AT_decl_line(0x36)
.dwattr $C$DW$T$20, DW_AT_decl_column(0x13)
.dwendtag $C$DW$T$20
$C$DW$T$125 .dwtag DW_TAG_volatile_type
.dwattr $C$DW$T$125, DW_AT_type(*$C$DW$T$20)
$C$DW$T$21 .dwtag DW_TAG_structure_type
.dwattr $C$DW$T$21, DW_AT_byte_size(0x04)
$C$DW$36 .dwtag DW_TAG_member
.dwattr $C$DW$36, DW_AT_type(*$C$DW$T$11)
.dwattr $C$DW$36, DW_AT_name("PRU0_GPI_MODE")
.dwattr $C$DW$36, DW_AT_TI_symbol_name("PRU0_GPI_MODE")
.dwattr $C$DW$36, DW_AT_bit_offset(0x1e)
.dwattr $C$DW$36, DW_AT_bit_size(0x02)
.dwattr $C$DW$36, DW_AT_data_member_location[DW_OP_plus_uconst 0x0]
.dwattr $C$DW$36, DW_AT_accessibility(DW_ACCESS_public)
.dwattr $C$DW$36, DW_AT_decl_file("/usr/share/ti/pru-software-support-package/include/am335x/pru_cfg.h")
.dwattr $C$DW$36, DW_AT_decl_line(0x45)
.dwattr $C$DW$36, DW_AT_decl_column(0x0d)
$C$DW$37 .dwtag DW_TAG_member
.dwattr $C$DW$37, DW_AT_type(*$C$DW$T$11)
.dwattr $C$DW$37, DW_AT_name("PRU0_GPI_CLK_MODE")
.dwattr $C$DW$37, DW_AT_TI_symbol_name("PRU0_GPI_CLK_MODE")
.dwattr $C$DW$37, DW_AT_bit_offset(0x1d)
.dwattr $C$DW$37, DW_AT_bit_size(0x01)
.dwattr $C$DW$37, DW_AT_data_member_location[DW_OP_plus_uconst 0x0]
.dwattr $C$DW$37, DW_AT_accessibility(DW_ACCESS_public)
.dwattr $C$DW$37, DW_AT_decl_file("/usr/share/ti/pru-software-support-package/include/am335x/pru_cfg.h")
.dwattr $C$DW$37, DW_AT_decl_line(0x46)
.dwattr $C$DW$37, DW_AT_decl_column(0x0d)
$C$DW$38 .dwtag DW_TAG_member
.dwattr $C$DW$38, DW_AT_type(*$C$DW$T$11)
.dwattr $C$DW$38, DW_AT_name("PRU0_GPI_DIV0")
.dwattr $C$DW$38, DW_AT_TI_symbol_name("PRU0_GPI_DIV0")
.dwattr $C$DW$38, DW_AT_bit_offset(0x18)
.dwattr $C$DW$38, DW_AT_bit_size(0x05)
.dwattr $C$DW$38, DW_AT_data_member_location[DW_OP_plus_uconst 0x0]
.dwattr $C$DW$38, DW_AT_accessibility(DW_ACCESS_public)
.dwattr $C$DW$38, DW_AT_decl_file("/usr/share/ti/pru-software-support-package/include/am335x/pru_cfg.h")
.dwattr $C$DW$38, DW_AT_decl_line(0x47)
.dwattr $C$DW$38, DW_AT_decl_column(0x0d)
$C$DW$39 .dwtag DW_TAG_member
.dwattr $C$DW$39, DW_AT_type(*$C$DW$T$11)
.dwattr $C$DW$39, DW_AT_name("PRU0_GPI_DIV1")
.dwattr $C$DW$39, DW_AT_TI_symbol_name("PRU0_GPI_DIV1")
.dwattr $C$DW$39, DW_AT_bit_offset(0x13)
.dwattr $C$DW$39, DW_AT_bit_size(0x05)
.dwattr $C$DW$39, DW_AT_data_member_location[DW_OP_plus_uconst 0x0]
.dwattr $C$DW$39, DW_AT_accessibility(DW_ACCESS_public)
.dwattr $C$DW$39, DW_AT_decl_file("/usr/share/ti/pru-software-support-package/include/am335x/pru_cfg.h")
.dwattr $C$DW$39, DW_AT_decl_line(0x48)
.dwattr $C$DW$39, DW_AT_decl_column(0x0d)
$C$DW$40 .dwtag DW_TAG_member
.dwattr $C$DW$40, DW_AT_type(*$C$DW$T$11)
.dwattr $C$DW$40, DW_AT_name("PRU0_GPI_SB")
.dwattr $C$DW$40, DW_AT_TI_symbol_name("PRU0_GPI_SB")
.dwattr $C$DW$40, DW_AT_bit_offset(0x12)
.dwattr $C$DW$40, DW_AT_bit_size(0x01)
.dwattr $C$DW$40, DW_AT_data_member_location[DW_OP_plus_uconst 0x0]
.dwattr $C$DW$40, DW_AT_accessibility(DW_ACCESS_public)
.dwattr $C$DW$40, DW_AT_decl_file("/usr/share/ti/pru-software-support-package/include/am335x/pru_cfg.h")
.dwattr $C$DW$40, DW_AT_decl_line(0x49)
.dwattr $C$DW$40, DW_AT_decl_column(0x0d)
$C$DW$41 .dwtag DW_TAG_member
.dwattr $C$DW$41, DW_AT_type(*$C$DW$T$11)
.dwattr $C$DW$41, DW_AT_name("PRU0_GPO_MODE")
.dwattr $C$DW$41, DW_AT_TI_symbol_name("PRU0_GPO_MODE")
.dwattr $C$DW$41, DW_AT_bit_offset(0x11)
.dwattr $C$DW$41, DW_AT_bit_size(0x01)
.dwattr $C$DW$41, DW_AT_data_member_location[DW_OP_plus_uconst 0x0]
.dwattr $C$DW$41, DW_AT_accessibility(DW_ACCESS_public)
.dwattr $C$DW$41, DW_AT_decl_file("/usr/share/ti/pru-software-support-package/include/am335x/pru_cfg.h")
.dwattr $C$DW$41, DW_AT_decl_line(0x4a)
.dwattr $C$DW$41, DW_AT_decl_column(0x0d)
$C$DW$42 .dwtag DW_TAG_member
.dwattr $C$DW$42, DW_AT_type(*$C$DW$T$11)
.dwattr $C$DW$42, DW_AT_name("PRU0_GPO_DIV0")
.dwattr $C$DW$42, DW_AT_TI_symbol_name("PRU0_GPO_DIV0")
.dwattr $C$DW$42, DW_AT_bit_offset(0x0c)
.dwattr $C$DW$42, DW_AT_bit_size(0x05)
.dwattr $C$DW$42, DW_AT_data_member_location[DW_OP_plus_uconst 0x0]
.dwattr $C$DW$42, DW_AT_accessibility(DW_ACCESS_public)
.dwattr $C$DW$42, DW_AT_decl_file("/usr/share/ti/pru-software-support-package/include/am335x/pru_cfg.h")
.dwattr $C$DW$42, DW_AT_decl_line(0x4b)
.dwattr $C$DW$42, DW_AT_decl_column(0x0d)
$C$DW$43 .dwtag DW_TAG_member
.dwattr $C$DW$43, DW_AT_type(*$C$DW$T$11)
.dwattr $C$DW$43, DW_AT_name("PRU0_GPO_DIV1")
.dwattr $C$DW$43, DW_AT_TI_symbol_name("PRU0_GPO_DIV1")
.dwattr $C$DW$43, DW_AT_bit_offset(0x07)
.dwattr $C$DW$43, DW_AT_bit_size(0x05)
.dwattr $C$DW$43, DW_AT_data_member_location[DW_OP_plus_uconst 0x0]
.dwattr $C$DW$43, DW_AT_accessibility(DW_ACCESS_public)
.dwattr $C$DW$43, DW_AT_decl_file("/usr/share/ti/pru-software-support-package/include/am335x/pru_cfg.h")
.dwattr $C$DW$43, DW_AT_decl_line(0x4c)
.dwattr $C$DW$43, DW_AT_decl_column(0x0d)
$C$DW$44 .dwtag DW_TAG_member
.dwattr $C$DW$44, DW_AT_type(*$C$DW$T$11)
.dwattr $C$DW$44, DW_AT_name("PRU0_GPO_SH_SEL")
.dwattr $C$DW$44, DW_AT_TI_symbol_name("PRU0_GPO_SH_SEL")
.dwattr $C$DW$44, DW_AT_bit_offset(0x06)
.dwattr $C$DW$44, DW_AT_bit_size(0x01)
.dwattr $C$DW$44, DW_AT_data_member_location[DW_OP_plus_uconst 0x0]
.dwattr $C$DW$44, DW_AT_accessibility(DW_ACCESS_public)
.dwattr $C$DW$44, DW_AT_decl_file("/usr/share/ti/pru-software-support-package/include/am335x/pru_cfg.h")
.dwattr $C$DW$44, DW_AT_decl_line(0x4d)
.dwattr $C$DW$44, DW_AT_decl_column(0x0d)
$C$DW$45 .dwtag DW_TAG_member
.dwattr $C$DW$45, DW_AT_type(*$C$DW$T$11)
.dwattr $C$DW$45, DW_AT_name("rsvd26")
.dwattr $C$DW$45, DW_AT_TI_symbol_name("rsvd26")
.dwattr $C$DW$45, DW_AT_bit_offset(0x00)
.dwattr $C$DW$45, DW_AT_bit_size(0x06)
.dwattr $C$DW$45, DW_AT_data_member_location[DW_OP_plus_uconst 0x0]
.dwattr $C$DW$45, DW_AT_accessibility(DW_ACCESS_public)
.dwattr $C$DW$45, DW_AT_decl_file("/usr/share/ti/pru-software-support-package/include/am335x/pru_cfg.h")
.dwattr $C$DW$45, DW_AT_decl_line(0x4e)
.dwattr $C$DW$45, DW_AT_decl_column(0x0d)
.dwattr $C$DW$T$21, DW_AT_decl_file("/usr/share/ti/pru-software-support-package/include/am335x/pru_cfg.h")
.dwattr $C$DW$T$21, DW_AT_decl_line(0x44)
.dwattr $C$DW$T$21, DW_AT_decl_column(0x13)
.dwendtag $C$DW$T$21
$C$DW$T$127 .dwtag DW_TAG_volatile_type
.dwattr $C$DW$T$127, DW_AT_type(*$C$DW$T$21)
$C$DW$T$22 .dwtag DW_TAG_structure_type
.dwattr $C$DW$T$22, DW_AT_byte_size(0x04)
$C$DW$46 .dwtag DW_TAG_member
.dwattr $C$DW$46, DW_AT_type(*$C$DW$T$11)
.dwattr $C$DW$46, DW_AT_name("PRU1_GPI_MODE")
.dwattr $C$DW$46, DW_AT_TI_symbol_name("PRU1_GPI_MODE")
.dwattr $C$DW$46, DW_AT_bit_offset(0x1e)
.dwattr $C$DW$46, DW_AT_bit_size(0x02)
.dwattr $C$DW$46, DW_AT_data_member_location[DW_OP_plus_uconst 0x0]
.dwattr $C$DW$46, DW_AT_accessibility(DW_ACCESS_public)
.dwattr $C$DW$46, DW_AT_decl_file("/usr/share/ti/pru-software-support-package/include/am335x/pru_cfg.h")
.dwattr $C$DW$46, DW_AT_decl_line(0x58)
.dwattr $C$DW$46, DW_AT_decl_column(0x0d)
$C$DW$47 .dwtag DW_TAG_member
.dwattr $C$DW$47, DW_AT_type(*$C$DW$T$11)
.dwattr $C$DW$47, DW_AT_name("PRU1_GPI_CLK_MODE")
.dwattr $C$DW$47, DW_AT_TI_symbol_name("PRU1_GPI_CLK_MODE")
.dwattr $C$DW$47, DW_AT_bit_offset(0x1d)
.dwattr $C$DW$47, DW_AT_bit_size(0x01)
.dwattr $C$DW$47, DW_AT_data_member_location[DW_OP_plus_uconst 0x0]
.dwattr $C$DW$47, DW_AT_accessibility(DW_ACCESS_public)
.dwattr $C$DW$47, DW_AT_decl_file("/usr/share/ti/pru-software-support-package/include/am335x/pru_cfg.h")
.dwattr $C$DW$47, DW_AT_decl_line(0x59)
.dwattr $C$DW$47, DW_AT_decl_column(0x0d)
$C$DW$48 .dwtag DW_TAG_member
.dwattr $C$DW$48, DW_AT_type(*$C$DW$T$11)
.dwattr $C$DW$48, DW_AT_name("PRU1_GPI_DIV0")
.dwattr $C$DW$48, DW_AT_TI_symbol_name("PRU1_GPI_DIV0")
.dwattr $C$DW$48, DW_AT_bit_offset(0x18)
.dwattr $C$DW$48, DW_AT_bit_size(0x05)
.dwattr $C$DW$48, DW_AT_data_member_location[DW_OP_plus_uconst 0x0]
.dwattr $C$DW$48, DW_AT_accessibility(DW_ACCESS_public)
.dwattr $C$DW$48, DW_AT_decl_file("/usr/share/ti/pru-software-support-package/include/am335x/pru_cfg.h")
.dwattr $C$DW$48, DW_AT_decl_line(0x5a)
.dwattr $C$DW$48, DW_AT_decl_column(0x0d)
$C$DW$49 .dwtag DW_TAG_member
.dwattr $C$DW$49, DW_AT_type(*$C$DW$T$11)
.dwattr $C$DW$49, DW_AT_name("PRU1_GPI_DIV1")
.dwattr $C$DW$49, DW_AT_TI_symbol_name("PRU1_GPI_DIV1")
.dwattr $C$DW$49, DW_AT_bit_offset(0x13)
.dwattr $C$DW$49, DW_AT_bit_size(0x05)
.dwattr $C$DW$49, DW_AT_data_member_location[DW_OP_plus_uconst 0x0]
.dwattr $C$DW$49, DW_AT_accessibility(DW_ACCESS_public)
.dwattr $C$DW$49, DW_AT_decl_file("/usr/share/ti/pru-software-support-package/include/am335x/pru_cfg.h")
.dwattr $C$DW$49, DW_AT_decl_line(0x5b)
.dwattr $C$DW$49, DW_AT_decl_column(0x0d)
$C$DW$50 .dwtag DW_TAG_member
.dwattr $C$DW$50, DW_AT_type(*$C$DW$T$11)
.dwattr $C$DW$50, DW_AT_name("PRU1_GPI_SB")
.dwattr $C$DW$50, DW_AT_TI_symbol_name("PRU1_GPI_SB")
.dwattr $C$DW$50, DW_AT_bit_offset(0x12)
.dwattr $C$DW$50, DW_AT_bit_size(0x01)
.dwattr $C$DW$50, DW_AT_data_member_location[DW_OP_plus_uconst 0x0]
.dwattr $C$DW$50, DW_AT_accessibility(DW_ACCESS_public)
.dwattr $C$DW$50, DW_AT_decl_file("/usr/share/ti/pru-software-support-package/include/am335x/pru_cfg.h")
.dwattr $C$DW$50, DW_AT_decl_line(0x5c)
.dwattr $C$DW$50, DW_AT_decl_column(0x0d)
$C$DW$51 .dwtag DW_TAG_member
.dwattr $C$DW$51, DW_AT_type(*$C$DW$T$11)
.dwattr $C$DW$51, DW_AT_name("PRU1_GPO_MODE")
.dwattr $C$DW$51, DW_AT_TI_symbol_name("PRU1_GPO_MODE")
.dwattr $C$DW$51, DW_AT_bit_offset(0x11)
.dwattr $C$DW$51, DW_AT_bit_size(0x01)
.dwattr $C$DW$51, DW_AT_data_member_location[DW_OP_plus_uconst 0x0]
.dwattr $C$DW$51, DW_AT_accessibility(DW_ACCESS_public)
.dwattr $C$DW$51, DW_AT_decl_file("/usr/share/ti/pru-software-support-package/include/am335x/pru_cfg.h")
.dwattr $C$DW$51, DW_AT_decl_line(0x5d)
.dwattr $C$DW$51, DW_AT_decl_column(0x0d)
$C$DW$52 .dwtag DW_TAG_member
.dwattr $C$DW$52, DW_AT_type(*$C$DW$T$11)
.dwattr $C$DW$52, DW_AT_name("PRU1_GPO_DIV0")
.dwattr $C$DW$52, DW_AT_TI_symbol_name("PRU1_GPO_DIV0")
.dwattr $C$DW$52, DW_AT_bit_offset(0x0c)
.dwattr $C$DW$52, DW_AT_bit_size(0x05)
.dwattr $C$DW$52, DW_AT_data_member_location[DW_OP_plus_uconst 0x0]
.dwattr $C$DW$52, DW_AT_accessibility(DW_ACCESS_public)
.dwattr $C$DW$52, DW_AT_decl_file("/usr/share/ti/pru-software-support-package/include/am335x/pru_cfg.h")
.dwattr $C$DW$52, DW_AT_decl_line(0x5e)
.dwattr $C$DW$52, DW_AT_decl_column(0x0d)
$C$DW$53 .dwtag DW_TAG_member
.dwattr $C$DW$53, DW_AT_type(*$C$DW$T$11)
.dwattr $C$DW$53, DW_AT_name("PRU1_GPO_DIV1")
.dwattr $C$DW$53, DW_AT_TI_symbol_name("PRU1_GPO_DIV1")
.dwattr $C$DW$53, DW_AT_bit_offset(0x07)
.dwattr $C$DW$53, DW_AT_bit_size(0x05)
.dwattr $C$DW$53, DW_AT_data_member_location[DW_OP_plus_uconst 0x0]
.dwattr $C$DW$53, DW_AT_accessibility(DW_ACCESS_public)
.dwattr $C$DW$53, DW_AT_decl_file("/usr/share/ti/pru-software-support-package/include/am335x/pru_cfg.h")
.dwattr $C$DW$53, DW_AT_decl_line(0x5f)
.dwattr $C$DW$53, DW_AT_decl_column(0x0d)
$C$DW$54 .dwtag DW_TAG_member
.dwattr $C$DW$54, DW_AT_type(*$C$DW$T$11)
.dwattr $C$DW$54, DW_AT_name("PRU1_GPO_SH_SEL")
.dwattr $C$DW$54, DW_AT_TI_symbol_name("PRU1_GPO_SH_SEL")
.dwattr $C$DW$54, DW_AT_bit_offset(0x06)
.dwattr $C$DW$54, DW_AT_bit_size(0x01)
.dwattr $C$DW$54, DW_AT_data_member_location[DW_OP_plus_uconst 0x0]
.dwattr $C$DW$54, DW_AT_accessibility(DW_ACCESS_public)
.dwattr $C$DW$54, DW_AT_decl_file("/usr/share/ti/pru-software-support-package/include/am335x/pru_cfg.h")
.dwattr $C$DW$54, DW_AT_decl_line(0x60)
.dwattr $C$DW$54, DW_AT_decl_column(0x0d)
$C$DW$55 .dwtag DW_TAG_member
.dwattr $C$DW$55, DW_AT_type(*$C$DW$T$11)
.dwattr $C$DW$55, DW_AT_name("rsvd26")
.dwattr $C$DW$55, DW_AT_TI_symbol_name("rsvd26")
.dwattr $C$DW$55, DW_AT_bit_offset(0x00)
.dwattr $C$DW$55, DW_AT_bit_size(0x06)
.dwattr $C$DW$55, DW_AT_data_member_location[DW_OP_plus_uconst 0x0]
.dwattr $C$DW$55, DW_AT_accessibility(DW_ACCESS_public)
.dwattr $C$DW$55, DW_AT_decl_file("/usr/share/ti/pru-software-support-package/include/am335x/pru_cfg.h")
.dwattr $C$DW$55, DW_AT_decl_line(0x61)
.dwattr $C$DW$55, DW_AT_decl_column(0x0d)
.dwattr $C$DW$T$22, DW_AT_decl_file("/usr/share/ti/pru-software-support-package/include/am335x/pru_cfg.h")
.dwattr $C$DW$T$22, DW_AT_decl_line(0x57)
.dwattr $C$DW$T$22, DW_AT_decl_column(0x13)
.dwendtag $C$DW$T$22
$C$DW$T$129 .dwtag DW_TAG_volatile_type
.dwattr $C$DW$T$129, DW_AT_type(*$C$DW$T$22)
$C$DW$T$23 .dwtag DW_TAG_structure_type
.dwattr $C$DW$T$23, DW_AT_byte_size(0x04)
$C$DW$56 .dwtag DW_TAG_member
.dwattr $C$DW$56, DW_AT_type(*$C$DW$T$11)
.dwattr $C$DW$56, DW_AT_name("PRU0_CLK_STOP_REQ")
.dwattr $C$DW$56, DW_AT_TI_symbol_name("PRU0_CLK_STOP_REQ")
.dwattr $C$DW$56, DW_AT_bit_offset(0x1f)
.dwattr $C$DW$56, DW_AT_bit_size(0x01)
.dwattr $C$DW$56, DW_AT_data_member_location[DW_OP_plus_uconst 0x0]
.dwattr $C$DW$56, DW_AT_accessibility(DW_ACCESS_public)
.dwattr $C$DW$56, DW_AT_decl_file("/usr/share/ti/pru-software-support-package/include/am335x/pru_cfg.h")
.dwattr $C$DW$56, DW_AT_decl_line(0x6b)
.dwattr $C$DW$56, DW_AT_decl_column(0x0d)
$C$DW$57 .dwtag DW_TAG_member
.dwattr $C$DW$57, DW_AT_type(*$C$DW$T$11)
.dwattr $C$DW$57, DW_AT_name("PRU0_CLK_STOP_ACK")
.dwattr $C$DW$57, DW_AT_TI_symbol_name("PRU0_CLK_STOP_ACK")
.dwattr $C$DW$57, DW_AT_bit_offset(0x1e)
.dwattr $C$DW$57, DW_AT_bit_size(0x01)
.dwattr $C$DW$57, DW_AT_data_member_location[DW_OP_plus_uconst 0x0]
.dwattr $C$DW$57, DW_AT_accessibility(DW_ACCESS_public)
.dwattr $C$DW$57, DW_AT_decl_file("/usr/share/ti/pru-software-support-package/include/am335x/pru_cfg.h")
.dwattr $C$DW$57, DW_AT_decl_line(0x6c)
.dwattr $C$DW$57, DW_AT_decl_column(0x0d)
$C$DW$58 .dwtag DW_TAG_member
.dwattr $C$DW$58, DW_AT_type(*$C$DW$T$11)
.dwattr $C$DW$58, DW_AT_name("PRU0_CLK_EN")
.dwattr $C$DW$58, DW_AT_TI_symbol_name("PRU0_CLK_EN")
.dwattr $C$DW$58, DW_AT_bit_offset(0x1d)
.dwattr $C$DW$58, DW_AT_bit_size(0x01)
.dwattr $C$DW$58, DW_AT_data_member_location[DW_OP_plus_uconst 0x0]
.dwattr $C$DW$58, DW_AT_accessibility(DW_ACCESS_public)
.dwattr $C$DW$58, DW_AT_decl_file("/usr/share/ti/pru-software-support-package/include/am335x/pru_cfg.h")
.dwattr $C$DW$58, DW_AT_decl_line(0x6d)
.dwattr $C$DW$58, DW_AT_decl_column(0x0d)
$C$DW$59 .dwtag DW_TAG_member
.dwattr $C$DW$59, DW_AT_type(*$C$DW$T$11)
.dwattr $C$DW$59, DW_AT_name("PRU1_CLK_STOP_REQ")
.dwattr $C$DW$59, DW_AT_TI_symbol_name("PRU1_CLK_STOP_REQ")
.dwattr $C$DW$59, DW_AT_bit_offset(0x1c)
.dwattr $C$DW$59, DW_AT_bit_size(0x01)
.dwattr $C$DW$59, DW_AT_data_member_location[DW_OP_plus_uconst 0x0]
.dwattr $C$DW$59, DW_AT_accessibility(DW_ACCESS_public)
.dwattr $C$DW$59, DW_AT_decl_file("/usr/share/ti/pru-software-support-package/include/am335x/pru_cfg.h")
.dwattr $C$DW$59, DW_AT_decl_line(0x6e)
.dwattr $C$DW$59, DW_AT_decl_column(0x0d)
$C$DW$60 .dwtag DW_TAG_member
.dwattr $C$DW$60, DW_AT_type(*$C$DW$T$11)
.dwattr $C$DW$60, DW_AT_name("PRU1_CLK_STOP_ACK")
.dwattr $C$DW$60, DW_AT_TI_symbol_name("PRU1_CLK_STOP_ACK")
.dwattr $C$DW$60, DW_AT_bit_offset(0x1b)
.dwattr $C$DW$60, DW_AT_bit_size(0x01)
.dwattr $C$DW$60, DW_AT_data_member_location[DW_OP_plus_uconst 0x0]
.dwattr $C$DW$60, DW_AT_accessibility(DW_ACCESS_public)
.dwattr $C$DW$60, DW_AT_decl_file("/usr/share/ti/pru-software-support-package/include/am335x/pru_cfg.h")
.dwattr $C$DW$60, DW_AT_decl_line(0x6f)
.dwattr $C$DW$60, DW_AT_decl_column(0x0d)
$C$DW$61 .dwtag DW_TAG_member
.dwattr $C$DW$61, DW_AT_type(*$C$DW$T$11)
.dwattr $C$DW$61, DW_AT_name("PRU1_CLK_EN")
.dwattr $C$DW$61, DW_AT_TI_symbol_name("PRU1_CLK_EN")
.dwattr $C$DW$61, DW_AT_bit_offset(0x1a)
.dwattr $C$DW$61, DW_AT_bit_size(0x01)
.dwattr $C$DW$61, DW_AT_data_member_location[DW_OP_plus_uconst 0x0]
.dwattr $C$DW$61, DW_AT_accessibility(DW_ACCESS_public)
.dwattr $C$DW$61, DW_AT_decl_file("/usr/share/ti/pru-software-support-package/include/am335x/pru_cfg.h")
.dwattr $C$DW$61, DW_AT_decl_line(0x70)
.dwattr $C$DW$61, DW_AT_decl_column(0x0d)
$C$DW$62 .dwtag DW_TAG_member
.dwattr $C$DW$62, DW_AT_type(*$C$DW$T$11)
.dwattr $C$DW$62, DW_AT_name("INTC_CLK_STOP_REQ")
.dwattr $C$DW$62, DW_AT_TI_symbol_name("INTC_CLK_STOP_REQ")
.dwattr $C$DW$62, DW_AT_bit_offset(0x19)
.dwattr $C$DW$62, DW_AT_bit_size(0x01)
.dwattr $C$DW$62, DW_AT_data_member_location[DW_OP_plus_uconst 0x0]
.dwattr $C$DW$62, DW_AT_accessibility(DW_ACCESS_public)
.dwattr $C$DW$62, DW_AT_decl_file("/usr/share/ti/pru-software-support-package/include/am335x/pru_cfg.h")
.dwattr $C$DW$62, DW_AT_decl_line(0x71)
.dwattr $C$DW$62, DW_AT_decl_column(0x0d)
$C$DW$63 .dwtag DW_TAG_member
.dwattr $C$DW$63, DW_AT_type(*$C$DW$T$11)
.dwattr $C$DW$63, DW_AT_name("INTC_CLK_STOP_ACK")
.dwattr $C$DW$63, DW_AT_TI_symbol_name("INTC_CLK_STOP_ACK")
.dwattr $C$DW$63, DW_AT_bit_offset(0x18)
.dwattr $C$DW$63, DW_AT_bit_size(0x01)
.dwattr $C$DW$63, DW_AT_data_member_location[DW_OP_plus_uconst 0x0]
.dwattr $C$DW$63, DW_AT_accessibility(DW_ACCESS_public)
.dwattr $C$DW$63, DW_AT_decl_file("/usr/share/ti/pru-software-support-package/include/am335x/pru_cfg.h")
.dwattr $C$DW$63, DW_AT_decl_line(0x72)
.dwattr $C$DW$63, DW_AT_decl_column(0x0d)
$C$DW$64 .dwtag DW_TAG_member
.dwattr $C$DW$64, DW_AT_type(*$C$DW$T$11)
.dwattr $C$DW$64, DW_AT_name("INTC_CLK_EN")
.dwattr $C$DW$64, DW_AT_TI_symbol_name("INTC_CLK_EN")
.dwattr $C$DW$64, DW_AT_bit_offset(0x17)
.dwattr $C$DW$64, DW_AT_bit_size(0x01)
.dwattr $C$DW$64, DW_AT_data_member_location[DW_OP_plus_uconst 0x0]
.dwattr $C$DW$64, DW_AT_accessibility(DW_ACCESS_public)
.dwattr $C$DW$64, DW_AT_decl_file("/usr/share/ti/pru-software-support-package/include/am335x/pru_cfg.h")
.dwattr $C$DW$64, DW_AT_decl_line(0x73)
.dwattr $C$DW$64, DW_AT_decl_column(0x0d)
$C$DW$65 .dwtag DW_TAG_member
.dwattr $C$DW$65, DW_AT_type(*$C$DW$T$11)
.dwattr $C$DW$65, DW_AT_name("UART_CLK_STOP_REQ")
.dwattr $C$DW$65, DW_AT_TI_symbol_name("UART_CLK_STOP_REQ")
.dwattr $C$DW$65, DW_AT_bit_offset(0x16)
.dwattr $C$DW$65, DW_AT_bit_size(0x01)
.dwattr $C$DW$65, DW_AT_data_member_location[DW_OP_plus_uconst 0x0]
.dwattr $C$DW$65, DW_AT_accessibility(DW_ACCESS_public)
.dwattr $C$DW$65, DW_AT_decl_file("/usr/share/ti/pru-software-support-package/include/am335x/pru_cfg.h")
.dwattr $C$DW$65, DW_AT_decl_line(0x74)
.dwattr $C$DW$65, DW_AT_decl_column(0x0d)
$C$DW$66 .dwtag DW_TAG_member
.dwattr $C$DW$66, DW_AT_type(*$C$DW$T$11)
.dwattr $C$DW$66, DW_AT_name("UART_CLK_STOP_ACK")
.dwattr $C$DW$66, DW_AT_TI_symbol_name("UART_CLK_STOP_ACK")
.dwattr $C$DW$66, DW_AT_bit_offset(0x15)
.dwattr $C$DW$66, DW_AT_bit_size(0x01)
.dwattr $C$DW$66, DW_AT_data_member_location[DW_OP_plus_uconst 0x0]
.dwattr $C$DW$66, DW_AT_accessibility(DW_ACCESS_public)
.dwattr $C$DW$66, DW_AT_decl_file("/usr/share/ti/pru-software-support-package/include/am335x/pru_cfg.h")
.dwattr $C$DW$66, DW_AT_decl_line(0x75)
.dwattr $C$DW$66, DW_AT_decl_column(0x0d)
$C$DW$67 .dwtag DW_TAG_member
.dwattr $C$DW$67, DW_AT_type(*$C$DW$T$11)
.dwattr $C$DW$67, DW_AT_name("UART_CLK_EN")
.dwattr $C$DW$67, DW_AT_TI_symbol_name("UART_CLK_EN")
.dwattr $C$DW$67, DW_AT_bit_offset(0x14)
.dwattr $C$DW$67, DW_AT_bit_size(0x01)
.dwattr $C$DW$67, DW_AT_data_member_location[DW_OP_plus_uconst 0x0]
.dwattr $C$DW$67, DW_AT_accessibility(DW_ACCESS_public)
.dwattr $C$DW$67, DW_AT_decl_file("/usr/share/ti/pru-software-support-package/include/am335x/pru_cfg.h")
.dwattr $C$DW$67, DW_AT_decl_line(0x76)
.dwattr $C$DW$67, DW_AT_decl_column(0x0d)
$C$DW$68 .dwtag DW_TAG_member
.dwattr $C$DW$68, DW_AT_type(*$C$DW$T$11)
.dwattr $C$DW$68, DW_AT_name("ECAP_CLK_STOP_REQ")
.dwattr $C$DW$68, DW_AT_TI_symbol_name("ECAP_CLK_STOP_REQ")
.dwattr $C$DW$68, DW_AT_bit_offset(0x13)
.dwattr $C$DW$68, DW_AT_bit_size(0x01)
.dwattr $C$DW$68, DW_AT_data_member_location[DW_OP_plus_uconst 0x0]
.dwattr $C$DW$68, DW_AT_accessibility(DW_ACCESS_public)
.dwattr $C$DW$68, DW_AT_decl_file("/usr/share/ti/pru-software-support-package/include/am335x/pru_cfg.h")
.dwattr $C$DW$68, DW_AT_decl_line(0x77)
.dwattr $C$DW$68, DW_AT_decl_column(0x0d)
$C$DW$69 .dwtag DW_TAG_member
.dwattr $C$DW$69, DW_AT_type(*$C$DW$T$11)
.dwattr $C$DW$69, DW_AT_name("ECAP_CLK_STOP_ACK")
.dwattr $C$DW$69, DW_AT_TI_symbol_name("ECAP_CLK_STOP_ACK")
.dwattr $C$DW$69, DW_AT_bit_offset(0x12)
.dwattr $C$DW$69, DW_AT_bit_size(0x01)
.dwattr $C$DW$69, DW_AT_data_member_location[DW_OP_plus_uconst 0x0]
.dwattr $C$DW$69, DW_AT_accessibility(DW_ACCESS_public)
.dwattr $C$DW$69, DW_AT_decl_file("/usr/share/ti/pru-software-support-package/include/am335x/pru_cfg.h")
.dwattr $C$DW$69, DW_AT_decl_line(0x78)
.dwattr $C$DW$69, DW_AT_decl_column(0x0d)
$C$DW$70 .dwtag DW_TAG_member
.dwattr $C$DW$70, DW_AT_type(*$C$DW$T$11)
.dwattr $C$DW$70, DW_AT_name("ECAP_CLK_EN")
.dwattr $C$DW$70, DW_AT_TI_symbol_name("ECAP_CLK_EN")
.dwattr $C$DW$70, DW_AT_bit_offset(0x11)
.dwattr $C$DW$70, DW_AT_bit_size(0x01)
.dwattr $C$DW$70, DW_AT_data_member_location[DW_OP_plus_uconst 0x0]
.dwattr $C$DW$70, DW_AT_accessibility(DW_ACCESS_public)
.dwattr $C$DW$70, DW_AT_decl_file("/usr/share/ti/pru-software-support-package/include/am335x/pru_cfg.h")
.dwattr $C$DW$70, DW_AT_decl_line(0x79)
.dwattr $C$DW$70, DW_AT_decl_column(0x0d)
$C$DW$71 .dwtag DW_TAG_member
.dwattr $C$DW$71, DW_AT_type(*$C$DW$T$11)
.dwattr $C$DW$71, DW_AT_name("IEP_CLK_STOP_REQ")
.dwattr $C$DW$71, DW_AT_TI_symbol_name("IEP_CLK_STOP_REQ")
.dwattr $C$DW$71, DW_AT_bit_offset(0x10)
.dwattr $C$DW$71, DW_AT_bit_size(0x01)
.dwattr $C$DW$71, DW_AT_data_member_location[DW_OP_plus_uconst 0x0]
.dwattr $C$DW$71, DW_AT_accessibility(DW_ACCESS_public)
.dwattr $C$DW$71, DW_AT_decl_file("/usr/share/ti/pru-software-support-package/include/am335x/pru_cfg.h")
.dwattr $C$DW$71, DW_AT_decl_line(0x7a)
.dwattr $C$DW$71, DW_AT_decl_column(0x0d)
$C$DW$72 .dwtag DW_TAG_member
.dwattr $C$DW$72, DW_AT_type(*$C$DW$T$11)
.dwattr $C$DW$72, DW_AT_name("IEP_CLK_STOP_ACK")
.dwattr $C$DW$72, DW_AT_TI_symbol_name("IEP_CLK_STOP_ACK")
.dwattr $C$DW$72, DW_AT_bit_offset(0x0f)
.dwattr $C$DW$72, DW_AT_bit_size(0x01)
.dwattr $C$DW$72, DW_AT_data_member_location[DW_OP_plus_uconst 0x0]
.dwattr $C$DW$72, DW_AT_accessibility(DW_ACCESS_public)
.dwattr $C$DW$72, DW_AT_decl_file("/usr/share/ti/pru-software-support-package/include/am335x/pru_cfg.h")
.dwattr $C$DW$72, DW_AT_decl_line(0x7b)
.dwattr $C$DW$72, DW_AT_decl_column(0x0d)
$C$DW$73 .dwtag DW_TAG_member
.dwattr $C$DW$73, DW_AT_type(*$C$DW$T$11)
.dwattr $C$DW$73, DW_AT_name("IEP_CLK_EN")
.dwattr $C$DW$73, DW_AT_TI_symbol_name("IEP_CLK_EN")
.dwattr $C$DW$73, DW_AT_bit_offset(0x0e)
.dwattr $C$DW$73, DW_AT_bit_size(0x01)
.dwattr $C$DW$73, DW_AT_data_member_location[DW_OP_plus_uconst 0x0]
.dwattr $C$DW$73, DW_AT_accessibility(DW_ACCESS_public)
.dwattr $C$DW$73, DW_AT_decl_file("/usr/share/ti/pru-software-support-package/include/am335x/pru_cfg.h")
.dwattr $C$DW$73, DW_AT_decl_line(0x7c)
.dwattr $C$DW$73, DW_AT_decl_column(0x0d)
$C$DW$74 .dwtag DW_TAG_member
.dwattr $C$DW$74, DW_AT_type(*$C$DW$T$11)
.dwattr $C$DW$74, DW_AT_name("rsvd18")
.dwattr $C$DW$74, DW_AT_TI_symbol_name("rsvd18")
.dwattr $C$DW$74, DW_AT_bit_offset(0x00)
.dwattr $C$DW$74, DW_AT_bit_size(0x0e)
.dwattr $C$DW$74, DW_AT_data_member_location[DW_OP_plus_uconst 0x0]
.dwattr $C$DW$74, DW_AT_accessibility(DW_ACCESS_public)
.dwattr $C$DW$74, DW_AT_decl_file("/usr/share/ti/pru-software-support-package/include/am335x/pru_cfg.h")
.dwattr $C$DW$74, DW_AT_decl_line(0x7d)
.dwattr $C$DW$74, DW_AT_decl_column(0x0d)
.dwattr $C$DW$T$23, DW_AT_decl_file("/usr/share/ti/pru-software-support-package/include/am335x/pru_cfg.h")
.dwattr $C$DW$T$23, DW_AT_decl_line(0x6a)
.dwattr $C$DW$T$23, DW_AT_decl_column(0x13)
.dwendtag $C$DW$T$23
$C$DW$T$131 .dwtag DW_TAG_volatile_type
.dwattr $C$DW$T$131, DW_AT_type(*$C$DW$T$23)
$C$DW$T$24 .dwtag DW_TAG_structure_type
.dwattr $C$DW$T$24, DW_AT_byte_size(0x04)
$C$DW$75 .dwtag DW_TAG_member
.dwattr $C$DW$75, DW_AT_type(*$C$DW$T$11)
.dwattr $C$DW$75, DW_AT_name("PRU0_IMEM_PE_RAW")
.dwattr $C$DW$75, DW_AT_TI_symbol_name("PRU0_IMEM_PE_RAW")
.dwattr $C$DW$75, DW_AT_bit_offset(0x1c)
.dwattr $C$DW$75, DW_AT_bit_size(0x04)
.dwattr $C$DW$75, DW_AT_data_member_location[DW_OP_plus_uconst 0x0]
.dwattr $C$DW$75, DW_AT_accessibility(DW_ACCESS_public)
.dwattr $C$DW$75, DW_AT_decl_file("/usr/share/ti/pru-software-support-package/include/am335x/pru_cfg.h")
.dwattr $C$DW$75, DW_AT_decl_line(0x87)
.dwattr $C$DW$75, DW_AT_decl_column(0x0d)
$C$DW$76 .dwtag DW_TAG_member
.dwattr $C$DW$76, DW_AT_type(*$C$DW$T$11)
.dwattr $C$DW$76, DW_AT_name("PRU0_DMEM_PE_RAW")
.dwattr $C$DW$76, DW_AT_TI_symbol_name("PRU0_DMEM_PE_RAW")
.dwattr $C$DW$76, DW_AT_bit_offset(0x18)
.dwattr $C$DW$76, DW_AT_bit_size(0x04)
.dwattr $C$DW$76, DW_AT_data_member_location[DW_OP_plus_uconst 0x0]
.dwattr $C$DW$76, DW_AT_accessibility(DW_ACCESS_public)
.dwattr $C$DW$76, DW_AT_decl_file("/usr/share/ti/pru-software-support-package/include/am335x/pru_cfg.h")
.dwattr $C$DW$76, DW_AT_decl_line(0x88)
.dwattr $C$DW$76, DW_AT_decl_column(0x0d)
$C$DW$77 .dwtag DW_TAG_member
.dwattr $C$DW$77, DW_AT_type(*$C$DW$T$11)
.dwattr $C$DW$77, DW_AT_name("PRU1_IMEM_PE_RAW")
.dwattr $C$DW$77, DW_AT_TI_symbol_name("PRU1_IMEM_PE_RAW")
.dwattr $C$DW$77, DW_AT_bit_offset(0x14)
.dwattr $C$DW$77, DW_AT_bit_size(0x04)
.dwattr $C$DW$77, DW_AT_data_member_location[DW_OP_plus_uconst 0x0]
.dwattr $C$DW$77, DW_AT_accessibility(DW_ACCESS_public)
.dwattr $C$DW$77, DW_AT_decl_file("/usr/share/ti/pru-software-support-package/include/am335x/pru_cfg.h")
.dwattr $C$DW$77, DW_AT_decl_line(0x89)
.dwattr $C$DW$77, DW_AT_decl_column(0x0d)
$C$DW$78 .dwtag DW_TAG_member
.dwattr $C$DW$78, DW_AT_type(*$C$DW$T$11)
.dwattr $C$DW$78, DW_AT_name("PRU1_DMEM_PE_RAW")
.dwattr $C$DW$78, DW_AT_TI_symbol_name("PRU1_DMEM_PE_RAW")
.dwattr $C$DW$78, DW_AT_bit_offset(0x10)
.dwattr $C$DW$78, DW_AT_bit_size(0x04)
.dwattr $C$DW$78, DW_AT_data_member_location[DW_OP_plus_uconst 0x0]
.dwattr $C$DW$78, DW_AT_accessibility(DW_ACCESS_public)
.dwattr $C$DW$78, DW_AT_decl_file("/usr/share/ti/pru-software-support-package/include/am335x/pru_cfg.h")
.dwattr $C$DW$78, DW_AT_decl_line(0x8a)
.dwattr $C$DW$78, DW_AT_decl_column(0x0d)
$C$DW$79 .dwtag DW_TAG_member
.dwattr $C$DW$79, DW_AT_type(*$C$DW$T$11)
.dwattr $C$DW$79, DW_AT_name("RAM_PE_RAW")
.dwattr $C$DW$79, DW_AT_TI_symbol_name("RAM_PE_RAW")
.dwattr $C$DW$79, DW_AT_bit_offset(0x0c)
.dwattr $C$DW$79, DW_AT_bit_size(0x04)
.dwattr $C$DW$79, DW_AT_data_member_location[DW_OP_plus_uconst 0x0]
.dwattr $C$DW$79, DW_AT_accessibility(DW_ACCESS_public)
.dwattr $C$DW$79, DW_AT_decl_file("/usr/share/ti/pru-software-support-package/include/am335x/pru_cfg.h")
.dwattr $C$DW$79, DW_AT_decl_line(0x8b)
.dwattr $C$DW$79, DW_AT_decl_column(0x0d)
$C$DW$80 .dwtag DW_TAG_member
.dwattr $C$DW$80, DW_AT_type(*$C$DW$T$11)
.dwattr $C$DW$80, DW_AT_name("rsvd20")
.dwattr $C$DW$80, DW_AT_TI_symbol_name("rsvd20")
.dwattr $C$DW$80, DW_AT_bit_offset(0x00)
.dwattr $C$DW$80, DW_AT_bit_size(0x0c)
.dwattr $C$DW$80, DW_AT_data_member_location[DW_OP_plus_uconst 0x0]
.dwattr $C$DW$80, DW_AT_accessibility(DW_ACCESS_public)
.dwattr $C$DW$80, DW_AT_decl_file("/usr/share/ti/pru-software-support-package/include/am335x/pru_cfg.h")
.dwattr $C$DW$80, DW_AT_decl_line(0x8c)
.dwattr $C$DW$80, DW_AT_decl_column(0x0d)
.dwattr $C$DW$T$24, DW_AT_decl_file("/usr/share/ti/pru-software-support-package/include/am335x/pru_cfg.h")
.dwattr $C$DW$T$24, DW_AT_decl_line(0x86)
.dwattr $C$DW$T$24, DW_AT_decl_column(0x14)
.dwendtag $C$DW$T$24
$C$DW$T$133 .dwtag DW_TAG_volatile_type
.dwattr $C$DW$T$133, DW_AT_type(*$C$DW$T$24)
$C$DW$T$25 .dwtag DW_TAG_structure_type
.dwattr $C$DW$T$25, DW_AT_byte_size(0x04)
$C$DW$81 .dwtag DW_TAG_member
.dwattr $C$DW$81, DW_AT_type(*$C$DW$T$11)
.dwattr $C$DW$81, DW_AT_name("PRU0_IMEM_PE")
.dwattr $C$DW$81, DW_AT_TI_symbol_name("PRU0_IMEM_PE")
.dwattr $C$DW$81, DW_AT_bit_offset(0x1c)
.dwattr $C$DW$81, DW_AT_bit_size(0x04)
.dwattr $C$DW$81, DW_AT_data_member_location[DW_OP_plus_uconst 0x0]
.dwattr $C$DW$81, DW_AT_accessibility(DW_ACCESS_public)
.dwattr $C$DW$81, DW_AT_decl_file("/usr/share/ti/pru-software-support-package/include/am335x/pru_cfg.h")
.dwattr $C$DW$81, DW_AT_decl_line(0x96)
.dwattr $C$DW$81, DW_AT_decl_column(0x0d)
$C$DW$82 .dwtag DW_TAG_member
.dwattr $C$DW$82, DW_AT_type(*$C$DW$T$11)
.dwattr $C$DW$82, DW_AT_name("PRU0_DMEM_PE")
.dwattr $C$DW$82, DW_AT_TI_symbol_name("PRU0_DMEM_PE")
.dwattr $C$DW$82, DW_AT_bit_offset(0x18)
.dwattr $C$DW$82, DW_AT_bit_size(0x04)
.dwattr $C$DW$82, DW_AT_data_member_location[DW_OP_plus_uconst 0x0]
.dwattr $C$DW$82, DW_AT_accessibility(DW_ACCESS_public)
.dwattr $C$DW$82, DW_AT_decl_file("/usr/share/ti/pru-software-support-package/include/am335x/pru_cfg.h")
.dwattr $C$DW$82, DW_AT_decl_line(0x97)
.dwattr $C$DW$82, DW_AT_decl_column(0x0d)
$C$DW$83 .dwtag DW_TAG_member
.dwattr $C$DW$83, DW_AT_type(*$C$DW$T$11)
.dwattr $C$DW$83, DW_AT_name("PRU1_IMEM_PE")
.dwattr $C$DW$83, DW_AT_TI_symbol_name("PRU1_IMEM_PE")
.dwattr $C$DW$83, DW_AT_bit_offset(0x14)
.dwattr $C$DW$83, DW_AT_bit_size(0x04)
.dwattr $C$DW$83, DW_AT_data_member_location[DW_OP_plus_uconst 0x0]
.dwattr $C$DW$83, DW_AT_accessibility(DW_ACCESS_public)
.dwattr $C$DW$83, DW_AT_decl_file("/usr/share/ti/pru-software-support-package/include/am335x/pru_cfg.h")
.dwattr $C$DW$83, DW_AT_decl_line(0x98)
.dwattr $C$DW$83, DW_AT_decl_column(0x0d)
$C$DW$84 .dwtag DW_TAG_member
.dwattr $C$DW$84, DW_AT_type(*$C$DW$T$11)
.dwattr $C$DW$84, DW_AT_name("PRU1_DMEM_PE")
.dwattr $C$DW$84, DW_AT_TI_symbol_name("PRU1_DMEM_PE")
.dwattr $C$DW$84, DW_AT_bit_offset(0x10)
.dwattr $C$DW$84, DW_AT_bit_size(0x04)
.dwattr $C$DW$84, DW_AT_data_member_location[DW_OP_plus_uconst 0x0]
.dwattr $C$DW$84, DW_AT_accessibility(DW_ACCESS_public)
.dwattr $C$DW$84, DW_AT_decl_file("/usr/share/ti/pru-software-support-package/include/am335x/pru_cfg.h")
.dwattr $C$DW$84, DW_AT_decl_line(0x99)
.dwattr $C$DW$84, DW_AT_decl_column(0x0d)
$C$DW$85 .dwtag DW_TAG_member
.dwattr $C$DW$85, DW_AT_type(*$C$DW$T$11)
.dwattr $C$DW$85, DW_AT_name("RAM_PE")
.dwattr $C$DW$85, DW_AT_TI_symbol_name("RAM_PE")
.dwattr $C$DW$85, DW_AT_bit_offset(0x0c)
.dwattr $C$DW$85, DW_AT_bit_size(0x04)
.dwattr $C$DW$85, DW_AT_data_member_location[DW_OP_plus_uconst 0x0]
.dwattr $C$DW$85, DW_AT_accessibility(DW_ACCESS_public)
.dwattr $C$DW$85, DW_AT_decl_file("/usr/share/ti/pru-software-support-package/include/am335x/pru_cfg.h")
.dwattr $C$DW$85, DW_AT_decl_line(0x9a)
.dwattr $C$DW$85, DW_AT_decl_column(0x0d)
$C$DW$86 .dwtag DW_TAG_member
.dwattr $C$DW$86, DW_AT_type(*$C$DW$T$11)
.dwattr $C$DW$86, DW_AT_name("rsvd20")
.dwattr $C$DW$86, DW_AT_TI_symbol_name("rsvd20")
.dwattr $C$DW$86, DW_AT_bit_offset(0x00)
.dwattr $C$DW$86, DW_AT_bit_size(0x0c)
.dwattr $C$DW$86, DW_AT_data_member_location[DW_OP_plus_uconst 0x0]
.dwattr $C$DW$86, DW_AT_accessibility(DW_ACCESS_public)
.dwattr $C$DW$86, DW_AT_decl_file("/usr/share/ti/pru-software-support-package/include/am335x/pru_cfg.h")
.dwattr $C$DW$86, DW_AT_decl_line(0x9b)
.dwattr $C$DW$86, DW_AT_decl_column(0x0d)
.dwattr $C$DW$T$25, DW_AT_decl_file("/usr/share/ti/pru-software-support-package/include/am335x/pru_cfg.h")
.dwattr $C$DW$T$25, DW_AT_decl_line(0x95)
.dwattr $C$DW$T$25, DW_AT_decl_column(0x14)
.dwendtag $C$DW$T$25
$C$DW$T$135 .dwtag DW_TAG_volatile_type
.dwattr $C$DW$T$135, DW_AT_type(*$C$DW$T$25)
$C$DW$T$26 .dwtag DW_TAG_structure_type
.dwattr $C$DW$T$26, DW_AT_byte_size(0x04)
$C$DW$87 .dwtag DW_TAG_member
.dwattr $C$DW$87, DW_AT_type(*$C$DW$T$11)
.dwattr $C$DW$87, DW_AT_name("PRU0_IMEM_PE_SET")
.dwattr $C$DW$87, DW_AT_TI_symbol_name("PRU0_IMEM_PE_SET")
.dwattr $C$DW$87, DW_AT_bit_offset(0x1c)
.dwattr $C$DW$87, DW_AT_bit_size(0x04)
.dwattr $C$DW$87, DW_AT_data_member_location[DW_OP_plus_uconst 0x0]
.dwattr $C$DW$87, DW_AT_accessibility(DW_ACCESS_public)
.dwattr $C$DW$87, DW_AT_decl_file("/usr/share/ti/pru-software-support-package/include/am335x/pru_cfg.h")
.dwattr $C$DW$87, DW_AT_decl_line(0xa4)
.dwattr $C$DW$87, DW_AT_decl_column(0x0d)
$C$DW$88 .dwtag DW_TAG_member
.dwattr $C$DW$88, DW_AT_type(*$C$DW$T$11)
.dwattr $C$DW$88, DW_AT_name("PRU0_DMEM_PE_SET")
.dwattr $C$DW$88, DW_AT_TI_symbol_name("PRU0_DMEM_PE_SET")
.dwattr $C$DW$88, DW_AT_bit_offset(0x18)
.dwattr $C$DW$88, DW_AT_bit_size(0x04)
.dwattr $C$DW$88, DW_AT_data_member_location[DW_OP_plus_uconst 0x0]
.dwattr $C$DW$88, DW_AT_accessibility(DW_ACCESS_public)
.dwattr $C$DW$88, DW_AT_decl_file("/usr/share/ti/pru-software-support-package/include/am335x/pru_cfg.h")
.dwattr $C$DW$88, DW_AT_decl_line(0xa5)
.dwattr $C$DW$88, DW_AT_decl_column(0x0d)
$C$DW$89 .dwtag DW_TAG_member
.dwattr $C$DW$89, DW_AT_type(*$C$DW$T$11)
.dwattr $C$DW$89, DW_AT_name("PRU1_IMEM_PE_SET")
.dwattr $C$DW$89, DW_AT_TI_symbol_name("PRU1_IMEM_PE_SET")
.dwattr $C$DW$89, DW_AT_bit_offset(0x14)
.dwattr $C$DW$89, DW_AT_bit_size(0x04)
.dwattr $C$DW$89, DW_AT_data_member_location[DW_OP_plus_uconst 0x0]
.dwattr $C$DW$89, DW_AT_accessibility(DW_ACCESS_public)
.dwattr $C$DW$89, DW_AT_decl_file("/usr/share/ti/pru-software-support-package/include/am335x/pru_cfg.h")
.dwattr $C$DW$89, DW_AT_decl_line(0xa6)
.dwattr $C$DW$89, DW_AT_decl_column(0x0d)
$C$DW$90 .dwtag DW_TAG_member
.dwattr $C$DW$90, DW_AT_type(*$C$DW$T$11)
.dwattr $C$DW$90, DW_AT_name("PRU1_DMEM_PE_SET")
.dwattr $C$DW$90, DW_AT_TI_symbol_name("PRU1_DMEM_PE_SET")
.dwattr $C$DW$90, DW_AT_bit_offset(0x10)
.dwattr $C$DW$90, DW_AT_bit_size(0x04)
.dwattr $C$DW$90, DW_AT_data_member_location[DW_OP_plus_uconst 0x0]
.dwattr $C$DW$90, DW_AT_accessibility(DW_ACCESS_public)
.dwattr $C$DW$90, DW_AT_decl_file("/usr/share/ti/pru-software-support-package/include/am335x/pru_cfg.h")
.dwattr $C$DW$90, DW_AT_decl_line(0xa7)
.dwattr $C$DW$90, DW_AT_decl_column(0x0d)
$C$DW$91 .dwtag DW_TAG_member
.dwattr $C$DW$91, DW_AT_type(*$C$DW$T$11)
.dwattr $C$DW$91, DW_AT_name("RAM_PE_SET")
.dwattr $C$DW$91, DW_AT_TI_symbol_name("RAM_PE_SET")
.dwattr $C$DW$91, DW_AT_bit_offset(0x0c)
.dwattr $C$DW$91, DW_AT_bit_size(0x04)
.dwattr $C$DW$91, DW_AT_data_member_location[DW_OP_plus_uconst 0x0]
.dwattr $C$DW$91, DW_AT_accessibility(DW_ACCESS_public)
.dwattr $C$DW$91, DW_AT_decl_file("/usr/share/ti/pru-software-support-package/include/am335x/pru_cfg.h")
.dwattr $C$DW$91, DW_AT_decl_line(0xa8)
.dwattr $C$DW$91, DW_AT_decl_column(0x0d)
$C$DW$92 .dwtag DW_TAG_member
.dwattr $C$DW$92, DW_AT_type(*$C$DW$T$11)
.dwattr $C$DW$92, DW_AT_name("rsvd20")
.dwattr $C$DW$92, DW_AT_TI_symbol_name("rsvd20")
.dwattr $C$DW$92, DW_AT_bit_offset(0x00)
.dwattr $C$DW$92, DW_AT_bit_size(0x0c)
.dwattr $C$DW$92, DW_AT_data_member_location[DW_OP_plus_uconst 0x0]
.dwattr $C$DW$92, DW_AT_accessibility(DW_ACCESS_public)
.dwattr $C$DW$92, DW_AT_decl_file("/usr/share/ti/pru-software-support-package/include/am335x/pru_cfg.h")
.dwattr $C$DW$92, DW_AT_decl_line(0xa9)
.dwattr $C$DW$92, DW_AT_decl_column(0x0d)
.dwattr $C$DW$T$26, DW_AT_decl_file("/usr/share/ti/pru-software-support-package/include/am335x/pru_cfg.h")
.dwattr $C$DW$T$26, DW_AT_decl_line(0xa3)
.dwattr $C$DW$T$26, DW_AT_decl_column(0x13)
.dwendtag $C$DW$T$26
$C$DW$T$137 .dwtag DW_TAG_volatile_type
.dwattr $C$DW$T$137, DW_AT_type(*$C$DW$T$26)
$C$DW$T$27 .dwtag DW_TAG_structure_type
.dwattr $C$DW$T$27, DW_AT_byte_size(0x04)
$C$DW$93 .dwtag DW_TAG_member
.dwattr $C$DW$93, DW_AT_type(*$C$DW$T$11)
.dwattr $C$DW$93, DW_AT_name("PRU0_IMEM_PE_CLR")
.dwattr $C$DW$93, DW_AT_TI_symbol_name("PRU0_IMEM_PE_CLR")
.dwattr $C$DW$93, DW_AT_bit_offset(0x1c)
.dwattr $C$DW$93, DW_AT_bit_size(0x04)
.dwattr $C$DW$93, DW_AT_data_member_location[DW_OP_plus_uconst 0x0]
.dwattr $C$DW$93, DW_AT_accessibility(DW_ACCESS_public)
.dwattr $C$DW$93, DW_AT_decl_file("/usr/share/ti/pru-software-support-package/include/am335x/pru_cfg.h")
.dwattr $C$DW$93, DW_AT_decl_line(0xb3)
.dwattr $C$DW$93, DW_AT_decl_column(0x0d)
$C$DW$94 .dwtag DW_TAG_member
.dwattr $C$DW$94, DW_AT_type(*$C$DW$T$11)
.dwattr $C$DW$94, DW_AT_name("PRU0_DMEM_PE_CLR")
.dwattr $C$DW$94, DW_AT_TI_symbol_name("PRU0_DMEM_PE_CLR")
.dwattr $C$DW$94, DW_AT_bit_offset(0x18)
.dwattr $C$DW$94, DW_AT_bit_size(0x04)
.dwattr $C$DW$94, DW_AT_data_member_location[DW_OP_plus_uconst 0x0]
.dwattr $C$DW$94, DW_AT_accessibility(DW_ACCESS_public)
.dwattr $C$DW$94, DW_AT_decl_file("/usr/share/ti/pru-software-support-package/include/am335x/pru_cfg.h")
.dwattr $C$DW$94, DW_AT_decl_line(0xb4)
.dwattr $C$DW$94, DW_AT_decl_column(0x0d)
$C$DW$95 .dwtag DW_TAG_member
.dwattr $C$DW$95, DW_AT_type(*$C$DW$T$11)
.dwattr $C$DW$95, DW_AT_name("PRU1_IMEM_PE_CLR")
.dwattr $C$DW$95, DW_AT_TI_symbol_name("PRU1_IMEM_PE_CLR")
.dwattr $C$DW$95, DW_AT_bit_offset(0x14)
.dwattr $C$DW$95, DW_AT_bit_size(0x04)
.dwattr $C$DW$95, DW_AT_data_member_location[DW_OP_plus_uconst 0x0]
.dwattr $C$DW$95, DW_AT_accessibility(DW_ACCESS_public)
.dwattr $C$DW$95, DW_AT_decl_file("/usr/share/ti/pru-software-support-package/include/am335x/pru_cfg.h")
.dwattr $C$DW$95, DW_AT_decl_line(0xb5)
.dwattr $C$DW$95, DW_AT_decl_column(0x0d)
$C$DW$96 .dwtag DW_TAG_member
.dwattr $C$DW$96, DW_AT_type(*$C$DW$T$11)
.dwattr $C$DW$96, DW_AT_name("PRU1_DMEM_PE_CLR")
.dwattr $C$DW$96, DW_AT_TI_symbol_name("PRU1_DMEM_PE_CLR")
.dwattr $C$DW$96, DW_AT_bit_offset(0x10)
.dwattr $C$DW$96, DW_AT_bit_size(0x04)
.dwattr $C$DW$96, DW_AT_data_member_location[DW_OP_plus_uconst 0x0]
.dwattr $C$DW$96, DW_AT_accessibility(DW_ACCESS_public)
.dwattr $C$DW$96, DW_AT_decl_file("/usr/share/ti/pru-software-support-package/include/am335x/pru_cfg.h")
.dwattr $C$DW$96, DW_AT_decl_line(0xb6)
.dwattr $C$DW$96, DW_AT_decl_column(0x0d)
$C$DW$97 .dwtag DW_TAG_member
.dwattr $C$DW$97, DW_AT_type(*$C$DW$T$11)
.dwattr $C$DW$97, DW_AT_name("rsvd16")
.dwattr $C$DW$97, DW_AT_TI_symbol_name("rsvd16")
.dwattr $C$DW$97, DW_AT_bit_offset(0x00)
.dwattr $C$DW$97, DW_AT_bit_size(0x10)
.dwattr $C$DW$97, DW_AT_data_member_location[DW_OP_plus_uconst 0x0]
.dwattr $C$DW$97, DW_AT_accessibility(DW_ACCESS_public)
.dwattr $C$DW$97, DW_AT_decl_file("/usr/share/ti/pru-software-support-package/include/am335x/pru_cfg.h")
.dwattr $C$DW$97, DW_AT_decl_line(0xb7)
.dwattr $C$DW$97, DW_AT_decl_column(0x0d)
.dwattr $C$DW$T$27, DW_AT_decl_file("/usr/share/ti/pru-software-support-package/include/am335x/pru_cfg.h")
.dwattr $C$DW$T$27, DW_AT_decl_line(0xb2)
.dwattr $C$DW$T$27, DW_AT_decl_column(0x13)
.dwendtag $C$DW$T$27
$C$DW$T$139 .dwtag DW_TAG_volatile_type
.dwattr $C$DW$T$139, DW_AT_type(*$C$DW$T$27)
$C$DW$T$28 .dwtag DW_TAG_structure_type
.dwattr $C$DW$T$28, DW_AT_byte_size(0x04)
$C$DW$98 .dwtag DW_TAG_member
.dwattr $C$DW$98, DW_AT_type(*$C$DW$T$11)
.dwattr $C$DW$98, DW_AT_name("PMAO_PRU0")
.dwattr $C$DW$98, DW_AT_TI_symbol_name("PMAO_PRU0")
.dwattr $C$DW$98, DW_AT_bit_offset(0x1f)
.dwattr $C$DW$98, DW_AT_bit_size(0x01)
.dwattr $C$DW$98, DW_AT_data_member_location[DW_OP_plus_uconst 0x0]
.dwattr $C$DW$98, DW_AT_accessibility(DW_ACCESS_public)
.dwattr $C$DW$98, DW_AT_decl_file("/usr/share/ti/pru-software-support-package/include/am335x/pru_cfg.h")
.dwattr $C$DW$98, DW_AT_decl_line(0xc4)
.dwattr $C$DW$98, DW_AT_decl_column(0x0d)
$C$DW$99 .dwtag DW_TAG_member
.dwattr $C$DW$99, DW_AT_type(*$C$DW$T$11)
.dwattr $C$DW$99, DW_AT_name("PMAO_PRU1")
.dwattr $C$DW$99, DW_AT_TI_symbol_name("PMAO_PRU1")
.dwattr $C$DW$99, DW_AT_bit_offset(0x1e)
.dwattr $C$DW$99, DW_AT_bit_size(0x01)
.dwattr $C$DW$99, DW_AT_data_member_location[DW_OP_plus_uconst 0x0]
.dwattr $C$DW$99, DW_AT_accessibility(DW_ACCESS_public)
.dwattr $C$DW$99, DW_AT_decl_file("/usr/share/ti/pru-software-support-package/include/am335x/pru_cfg.h")
.dwattr $C$DW$99, DW_AT_decl_line(0xc5)
.dwattr $C$DW$99, DW_AT_decl_column(0x0d)
$C$DW$100 .dwtag DW_TAG_member
.dwattr $C$DW$100, DW_AT_type(*$C$DW$T$11)
.dwattr $C$DW$100, DW_AT_name("rsvd2")
.dwattr $C$DW$100, DW_AT_TI_symbol_name("rsvd2")
.dwattr $C$DW$100, DW_AT_bit_offset(0x00)
.dwattr $C$DW$100, DW_AT_bit_size(0x1e)
.dwattr $C$DW$100, DW_AT_data_member_location[DW_OP_plus_uconst 0x0]
.dwattr $C$DW$100, DW_AT_accessibility(DW_ACCESS_public)
.dwattr $C$DW$100, DW_AT_decl_file("/usr/share/ti/pru-software-support-package/include/am335x/pru_cfg.h")
.dwattr $C$DW$100, DW_AT_decl_line(0xc6)
.dwattr $C$DW$100, DW_AT_decl_column(0x0d)
.dwattr $C$DW$T$28, DW_AT_decl_file("/usr/share/ti/pru-software-support-package/include/am335x/pru_cfg.h")
.dwattr $C$DW$T$28, DW_AT_decl_line(0xc3)
.dwattr $C$DW$T$28, DW_AT_decl_column(0x13)
.dwendtag $C$DW$T$28
$C$DW$T$141 .dwtag DW_TAG_volatile_type
.dwattr $C$DW$T$141, DW_AT_type(*$C$DW$T$28)
$C$DW$T$29 .dwtag DW_TAG_structure_type
.dwattr $C$DW$T$29, DW_AT_byte_size(0x04)
$C$DW$101 .dwtag DW_TAG_member
.dwattr $C$DW$101, DW_AT_type(*$C$DW$T$11)
.dwattr $C$DW$101, DW_AT_name("OCP_EN")
.dwattr $C$DW$101, DW_AT_TI_symbol_name("OCP_EN")
.dwattr $C$DW$101, DW_AT_bit_offset(0x1f)
.dwattr $C$DW$101, DW_AT_bit_size(0x01)
.dwattr $C$DW$101, DW_AT_data_member_location[DW_OP_plus_uconst 0x0]
.dwattr $C$DW$101, DW_AT_accessibility(DW_ACCESS_public)
.dwattr $C$DW$101, DW_AT_decl_file("/usr/share/ti/pru-software-support-package/include/am335x/pru_cfg.h")
.dwattr $C$DW$101, DW_AT_decl_line(0xd3)
.dwattr $C$DW$101, DW_AT_decl_column(0x0d)
$C$DW$102 .dwtag DW_TAG_member
.dwattr $C$DW$102, DW_AT_type(*$C$DW$T$11)
.dwattr $C$DW$102, DW_AT_name("rsvd1")
.dwattr $C$DW$102, DW_AT_TI_symbol_name("rsvd1")
.dwattr $C$DW$102, DW_AT_bit_offset(0x00)
.dwattr $C$DW$102, DW_AT_bit_size(0x1f)
.dwattr $C$DW$102, DW_AT_data_member_location[DW_OP_plus_uconst 0x0]
.dwattr $C$DW$102, DW_AT_accessibility(DW_ACCESS_public)
.dwattr $C$DW$102, DW_AT_decl_file("/usr/share/ti/pru-software-support-package/include/am335x/pru_cfg.h")
.dwattr $C$DW$102, DW_AT_decl_line(0xd4)
.dwattr $C$DW$102, DW_AT_decl_column(0x0d)
.dwattr $C$DW$T$29, DW_AT_decl_file("/usr/share/ti/pru-software-support-package/include/am335x/pru_cfg.h")
.dwattr $C$DW$T$29, DW_AT_decl_line(0xd2)
.dwattr $C$DW$T$29, DW_AT_decl_column(0x13)
.dwendtag $C$DW$T$29
$C$DW$T$143 .dwtag DW_TAG_volatile_type
.dwattr $C$DW$T$143, DW_AT_type(*$C$DW$T$29)
$C$DW$T$30 .dwtag DW_TAG_structure_type
.dwattr $C$DW$T$30, DW_AT_byte_size(0x04)
$C$DW$103 .dwtag DW_TAG_member
.dwattr $C$DW$103, DW_AT_type(*$C$DW$T$11)
.dwattr $C$DW$103, DW_AT_name("PRU1_PAD_HP_EN")
.dwattr $C$DW$103, DW_AT_TI_symbol_name("PRU1_PAD_HP_EN")
.dwattr $C$DW$103, DW_AT_bit_offset(0x1f)
.dwattr $C$DW$103, DW_AT_bit_size(0x01)
.dwattr $C$DW$103, DW_AT_data_member_location[DW_OP_plus_uconst 0x0]
.dwattr $C$DW$103, DW_AT_accessibility(DW_ACCESS_public)
.dwattr $C$DW$103, DW_AT_decl_file("/usr/share/ti/pru-software-support-package/include/am335x/pru_cfg.h")
.dwattr $C$DW$103, DW_AT_decl_line(0xde)
.dwattr $C$DW$103, DW_AT_decl_column(0x0d)
$C$DW$104 .dwtag DW_TAG_member
.dwattr $C$DW$104, DW_AT_type(*$C$DW$T$11)
.dwattr $C$DW$104, DW_AT_name("XFR_SHIFT_EN")
.dwattr $C$DW$104, DW_AT_TI_symbol_name("XFR_SHIFT_EN")
.dwattr $C$DW$104, DW_AT_bit_offset(0x1e)
.dwattr $C$DW$104, DW_AT_bit_size(0x01)
.dwattr $C$DW$104, DW_AT_data_member_location[DW_OP_plus_uconst 0x0]
.dwattr $C$DW$104, DW_AT_accessibility(DW_ACCESS_public)
.dwattr $C$DW$104, DW_AT_decl_file("/usr/share/ti/pru-software-support-package/include/am335x/pru_cfg.h")
.dwattr $C$DW$104, DW_AT_decl_line(0xdf)
.dwattr $C$DW$104, DW_AT_decl_column(0x0d)
$C$DW$105 .dwtag DW_TAG_member
.dwattr $C$DW$105, DW_AT_type(*$C$DW$T$11)
.dwattr $C$DW$105, DW_AT_name("rsvd2")
.dwattr $C$DW$105, DW_AT_TI_symbol_name("rsvd2")
.dwattr $C$DW$105, DW_AT_bit_offset(0x00)
.dwattr $C$DW$105, DW_AT_bit_size(0x1e)
.dwattr $C$DW$105, DW_AT_data_member_location[DW_OP_plus_uconst 0x0]
.dwattr $C$DW$105, DW_AT_accessibility(DW_ACCESS_public)
.dwattr $C$DW$105, DW_AT_decl_file("/usr/share/ti/pru-software-support-package/include/am335x/pru_cfg.h")
.dwattr $C$DW$105, DW_AT_decl_line(0xe0)
.dwattr $C$DW$105, DW_AT_decl_column(0x0d)
.dwattr $C$DW$T$30, DW_AT_decl_file("/usr/share/ti/pru-software-support-package/include/am335x/pru_cfg.h")
.dwattr $C$DW$T$30, DW_AT_decl_line(0xdd)
.dwattr $C$DW$T$30, DW_AT_decl_column(0x13)
.dwendtag $C$DW$T$30
$C$DW$T$145 .dwtag DW_TAG_volatile_type
.dwattr $C$DW$T$145, DW_AT_type(*$C$DW$T$30)
$C$DW$T$31 .dwtag DW_TAG_structure_type
.dwattr $C$DW$T$31, DW_AT_byte_size(0x04)
$C$DW$106 .dwtag DW_TAG_member
.dwattr $C$DW$106, DW_AT_type(*$C$DW$T$11)
.dwattr $C$DW$106, DW_AT_name("PIN_MUX_SEL")
.dwattr $C$DW$106, DW_AT_TI_symbol_name("PIN_MUX_SEL")
.dwattr $C$DW$106, DW_AT_bit_offset(0x18)
.dwattr $C$DW$106, DW_AT_bit_size(0x08)
.dwattr $C$DW$106, DW_AT_data_member_location[DW_OP_plus_uconst 0x0]
.dwattr $C$DW$106, DW_AT_accessibility(DW_ACCESS_public)
.dwattr $C$DW$106, DW_AT_decl_file("/usr/share/ti/pru-software-support-package/include/am335x/pru_cfg.h")
.dwattr $C$DW$106, DW_AT_decl_line(0xec)
.dwattr $C$DW$106, DW_AT_decl_column(0x0d)
$C$DW$107 .dwtag DW_TAG_member
.dwattr $C$DW$107, DW_AT_type(*$C$DW$T$11)
.dwattr $C$DW$107, DW_AT_name("rsvd2")
.dwattr $C$DW$107, DW_AT_TI_symbol_name("rsvd2")
.dwattr $C$DW$107, DW_AT_bit_offset(0x00)
.dwattr $C$DW$107, DW_AT_bit_size(0x18)
.dwattr $C$DW$107, DW_AT_data_member_location[DW_OP_plus_uconst 0x0]
.dwattr $C$DW$107, DW_AT_accessibility(DW_ACCESS_public)
.dwattr $C$DW$107, DW_AT_decl_file("/usr/share/ti/pru-software-support-package/include/am335x/pru_cfg.h")
.dwattr $C$DW$107, DW_AT_decl_line(0xed)
.dwattr $C$DW$107, DW_AT_decl_column(0x0d)
.dwattr $C$DW$T$31, DW_AT_decl_file("/usr/share/ti/pru-software-support-package/include/am335x/pru_cfg.h")
.dwattr $C$DW$T$31, DW_AT_decl_line(0xeb)
.dwattr $C$DW$T$31, DW_AT_decl_column(0x13)
.dwendtag $C$DW$T$31
$C$DW$T$147 .dwtag DW_TAG_volatile_type
.dwattr $C$DW$T$147, DW_AT_type(*$C$DW$T$31)
$C$DW$T$35 .dwtag DW_TAG_structure_type
.dwattr $C$DW$T$35, DW_AT_byte_size(0x44)
$C$DW$108 .dwtag DW_TAG_member
.dwattr $C$DW$108, DW_AT_type(*$C$DW$T$124)
.dwattr $C$DW$108, DW_AT_name("$P$T0")
.dwattr $C$DW$108, DW_AT_TI_symbol_name("$P$T0")
.dwattr $C$DW$108, DW_AT_data_member_location[DW_OP_plus_uconst 0x0]
.dwattr $C$DW$108, DW_AT_accessibility(DW_ACCESS_public)
.dwattr $C$DW$108, DW_AT_decl_file("/usr/share/ti/pru-software-support-package/include/am335x/pru_cfg.h")
.dwattr $C$DW$108, DW_AT_decl_line(0x29)
.dwattr $C$DW$108, DW_AT_decl_column(0x02)
$C$DW$109 .dwtag DW_TAG_member
.dwattr $C$DW$109, DW_AT_type(*$C$DW$T$126)
.dwattr $C$DW$109, DW_AT_name("$P$T1")
.dwattr $C$DW$109, DW_AT_TI_symbol_name("$P$T1")
.dwattr $C$DW$109, DW_AT_data_member_location[DW_OP_plus_uconst 0x4]
.dwattr $C$DW$109, DW_AT_accessibility(DW_ACCESS_public)
.dwattr $C$DW$109, DW_AT_decl_file("/usr/share/ti/pru-software-support-package/include/am335x/pru_cfg.h")
.dwattr $C$DW$109, DW_AT_decl_line(0x33)
.dwattr $C$DW$109, DW_AT_decl_column(0x02)
$C$DW$110 .dwtag DW_TAG_member
.dwattr $C$DW$110, DW_AT_type(*$C$DW$T$128)
.dwattr $C$DW$110, DW_AT_name("$P$T2")
.dwattr $C$DW$110, DW_AT_TI_symbol_name("$P$T2")
.dwattr $C$DW$110, DW_AT_data_member_location[DW_OP_plus_uconst 0x8]
.dwattr $C$DW$110, DW_AT_accessibility(DW_ACCESS_public)
.dwattr $C$DW$110, DW_AT_decl_file("/usr/share/ti/pru-software-support-package/include/am335x/pru_cfg.h")
.dwattr $C$DW$110, DW_AT_decl_line(0x41)
.dwattr $C$DW$110, DW_AT_decl_column(0x02)
$C$DW$111 .dwtag DW_TAG_member
.dwattr $C$DW$111, DW_AT_type(*$C$DW$T$130)
.dwattr $C$DW$111, DW_AT_name("$P$T3")
.dwattr $C$DW$111, DW_AT_TI_symbol_name("$P$T3")
.dwattr $C$DW$111, DW_AT_data_member_location[DW_OP_plus_uconst 0xc]
.dwattr $C$DW$111, DW_AT_accessibility(DW_ACCESS_public)
.dwattr $C$DW$111, DW_AT_decl_file("/usr/share/ti/pru-software-support-package/include/am335x/pru_cfg.h")
.dwattr $C$DW$111, DW_AT_decl_line(0x54)
.dwattr $C$DW$111, DW_AT_decl_column(0x02)
$C$DW$112 .dwtag DW_TAG_member
.dwattr $C$DW$112, DW_AT_type(*$C$DW$T$132)
.dwattr $C$DW$112, DW_AT_name("$P$T4")
.dwattr $C$DW$112, DW_AT_TI_symbol_name("$P$T4")
.dwattr $C$DW$112, DW_AT_data_member_location[DW_OP_plus_uconst 0x10]
.dwattr $C$DW$112, DW_AT_accessibility(DW_ACCESS_public)
.dwattr $C$DW$112, DW_AT_decl_file("/usr/share/ti/pru-software-support-package/include/am335x/pru_cfg.h")
.dwattr $C$DW$112, DW_AT_decl_line(0x67)
.dwattr $C$DW$112, DW_AT_decl_column(0x02)
$C$DW$113 .dwtag DW_TAG_member
.dwattr $C$DW$113, DW_AT_type(*$C$DW$T$134)
.dwattr $C$DW$113, DW_AT_name("$P$T5")
.dwattr $C$DW$113, DW_AT_TI_symbol_name("$P$T5")
.dwattr $C$DW$113, DW_AT_data_member_location[DW_OP_plus_uconst 0x14]
.dwattr $C$DW$113, DW_AT_accessibility(DW_ACCESS_public)
.dwattr $C$DW$113, DW_AT_decl_file("/usr/share/ti/pru-software-support-package/include/am335x/pru_cfg.h")
.dwattr $C$DW$113, DW_AT_decl_line(0x83)
.dwattr $C$DW$113, DW_AT_decl_column(0x02)
$C$DW$114 .dwtag DW_TAG_member
.dwattr $C$DW$114, DW_AT_type(*$C$DW$T$136)
.dwattr $C$DW$114, DW_AT_name("$P$T6")
.dwattr $C$DW$114, DW_AT_TI_symbol_name("$P$T6")
.dwattr $C$DW$114, DW_AT_data_member_location[DW_OP_plus_uconst 0x18]
.dwattr $C$DW$114, DW_AT_accessibility(DW_ACCESS_public)
.dwattr $C$DW$114, DW_AT_decl_file("/usr/share/ti/pru-software-support-package/include/am335x/pru_cfg.h")
.dwattr $C$DW$114, DW_AT_decl_line(0x92)
.dwattr $C$DW$114, DW_AT_decl_column(0x02)
$C$DW$115 .dwtag DW_TAG_member
.dwattr $C$DW$115, DW_AT_type(*$C$DW$T$138)
.dwattr $C$DW$115, DW_AT_name("$P$T7")
.dwattr $C$DW$115, DW_AT_TI_symbol_name("$P$T7")
.dwattr $C$DW$115, DW_AT_data_member_location[DW_OP_plus_uconst 0x1c]
.dwattr $C$DW$115, DW_AT_accessibility(DW_ACCESS_public)
.dwattr $C$DW$115, DW_AT_decl_file("/usr/share/ti/pru-software-support-package/include/am335x/pru_cfg.h")
.dwattr $C$DW$115, DW_AT_decl_line(0xa0)
.dwattr $C$DW$115, DW_AT_decl_column(0x02)
$C$DW$116 .dwtag DW_TAG_member
.dwattr $C$DW$116, DW_AT_type(*$C$DW$T$140)
.dwattr $C$DW$116, DW_AT_name("$P$T8")
.dwattr $C$DW$116, DW_AT_TI_symbol_name("$P$T8")
.dwattr $C$DW$116, DW_AT_data_member_location[DW_OP_plus_uconst 0x20]
.dwattr $C$DW$116, DW_AT_accessibility(DW_ACCESS_public)
.dwattr $C$DW$116, DW_AT_decl_file("/usr/share/ti/pru-software-support-package/include/am335x/pru_cfg.h")
.dwattr $C$DW$116, DW_AT_decl_line(0xaf)
.dwattr $C$DW$116, DW_AT_decl_column(0x02)
$C$DW$117 .dwtag DW_TAG_member
.dwattr $C$DW$117, DW_AT_type(*$C$DW$T$32)
.dwattr $C$DW$117, DW_AT_name("rsvd24")
.dwattr $C$DW$117, DW_AT_TI_symbol_name("rsvd24")
.dwattr $C$DW$117, DW_AT_data_member_location[DW_OP_plus_uconst 0x24]
.dwattr $C$DW$117, DW_AT_accessibility(DW_ACCESS_public)
.dwattr $C$DW$117, DW_AT_decl_file("/usr/share/ti/pru-software-support-package/include/am335x/pru_cfg.h")
.dwattr $C$DW$117, DW_AT_decl_line(0xbc)
.dwattr $C$DW$117, DW_AT_decl_column(0x0b)
$C$DW$118 .dwtag DW_TAG_member
.dwattr $C$DW$118, DW_AT_type(*$C$DW$T$142)
.dwattr $C$DW$118, DW_AT_name("$P$T9")
.dwattr $C$DW$118, DW_AT_TI_symbol_name("$P$T9")
.dwattr $C$DW$118, DW_AT_data_member_location[DW_OP_plus_uconst 0x28]
.dwattr $C$DW$118, DW_AT_accessibility(DW_ACCESS_public)
.dwattr $C$DW$118, DW_AT_decl_file("/usr/share/ti/pru-software-support-package/include/am335x/pru_cfg.h")
.dwattr $C$DW$118, DW_AT_decl_line(0xc0)
.dwattr $C$DW$118, DW_AT_decl_column(0x02)
$C$DW$119 .dwtag DW_TAG_member
.dwattr $C$DW$119, DW_AT_type(*$C$DW$T$33)
.dwattr $C$DW$119, DW_AT_name("rsvd2c")
.dwattr $C$DW$119, DW_AT_TI_symbol_name("rsvd2c")
.dwattr $C$DW$119, DW_AT_data_member_location[DW_OP_plus_uconst 0x2c]
.dwattr $C$DW$119, DW_AT_accessibility(DW_ACCESS_public)
.dwattr $C$DW$119, DW_AT_decl_file("/usr/share/ti/pru-software-support-package/include/am335x/pru_cfg.h")
.dwattr $C$DW$119, DW_AT_decl_line(0xcb)
.dwattr $C$DW$119, DW_AT_decl_column(0x0b)
$C$DW$120 .dwtag DW_TAG_member
.dwattr $C$DW$120, DW_AT_type(*$C$DW$T$144)
.dwattr $C$DW$120, DW_AT_name("$P$T10")
.dwattr $C$DW$120, DW_AT_TI_symbol_name("$P$T10")
.dwattr $C$DW$120, DW_AT_data_member_location[DW_OP_plus_uconst 0x30]
.dwattr $C$DW$120, DW_AT_accessibility(DW_ACCESS_public)
.dwattr $C$DW$120, DW_AT_decl_file("/usr/share/ti/pru-software-support-package/include/am335x/pru_cfg.h")
.dwattr $C$DW$120, DW_AT_decl_line(0xcf)
.dwattr $C$DW$120, DW_AT_decl_column(0x02)
$C$DW$121 .dwtag DW_TAG_member
.dwattr $C$DW$121, DW_AT_type(*$C$DW$T$146)
.dwattr $C$DW$121, DW_AT_name("$P$T11")
.dwattr $C$DW$121, DW_AT_TI_symbol_name("$P$T11")
.dwattr $C$DW$121, DW_AT_data_member_location[DW_OP_plus_uconst 0x34]
.dwattr $C$DW$121, DW_AT_accessibility(DW_ACCESS_public)
.dwattr $C$DW$121, DW_AT_decl_file("/usr/share/ti/pru-software-support-package/include/am335x/pru_cfg.h")
.dwattr $C$DW$121, DW_AT_decl_line(0xda)
.dwattr $C$DW$121, DW_AT_decl_column(0x02)
$C$DW$122 .dwtag DW_TAG_member
.dwattr $C$DW$122, DW_AT_type(*$C$DW$T$34)
.dwattr $C$DW$122, DW_AT_name("rsvd38")
.dwattr $C$DW$122, DW_AT_TI_symbol_name("rsvd38")
.dwattr $C$DW$122, DW_AT_data_member_location[DW_OP_plus_uconst 0x38]
.dwattr $C$DW$122, DW_AT_accessibility(DW_ACCESS_public)
.dwattr $C$DW$122, DW_AT_decl_file("/usr/share/ti/pru-software-support-package/include/am335x/pru_cfg.h")
.dwattr $C$DW$122, DW_AT_decl_line(0xe5)
.dwattr $C$DW$122, DW_AT_decl_column(0x0b)
$C$DW$123 .dwtag DW_TAG_member
.dwattr $C$DW$123, DW_AT_type(*$C$DW$T$148)
.dwattr $C$DW$123, DW_AT_name("$P$T12")
.dwattr $C$DW$123, DW_AT_TI_symbol_name("$P$T12")
.dwattr $C$DW$123, DW_AT_data_member_location[DW_OP_plus_uconst 0x40]
.dwattr $C$DW$123, DW_AT_accessibility(DW_ACCESS_public)
.dwattr $C$DW$123, DW_AT_decl_file("/usr/share/ti/pru-software-support-package/include/am335x/pru_cfg.h")
.dwattr $C$DW$123, DW_AT_decl_line(0xe8)
.dwattr $C$DW$123, DW_AT_decl_column(0x02)
.dwattr $C$DW$T$35, DW_AT_decl_file("/usr/share/ti/pru-software-support-package/include/am335x/pru_cfg.h")
.dwattr $C$DW$T$35, DW_AT_decl_line(0x26)
.dwattr $C$DW$T$35, DW_AT_decl_column(0x10)
.dwendtag $C$DW$T$35
$C$DW$T$295 .dwtag DW_TAG_typedef
.dwattr $C$DW$T$295, DW_AT_name("pruCfg")
.dwattr $C$DW$T$295, DW_AT_type(*$C$DW$T$35)
.dwattr $C$DW$T$295, DW_AT_language(DW_LANG_C)
.dwattr $C$DW$T$295, DW_AT_decl_file("/usr/share/ti/pru-software-support-package/include/am335x/pru_cfg.h")
.dwattr $C$DW$T$295, DW_AT_decl_line(0xf0)
.dwattr $C$DW$T$295, DW_AT_decl_column(0x03)
$C$DW$T$296 .dwtag DW_TAG_volatile_type
.dwattr $C$DW$T$296, DW_AT_type(*$C$DW$T$295)
$C$DW$T$36 .dwtag DW_TAG_structure_type
.dwattr $C$DW$T$36, DW_AT_byte_size(0x04)
$C$DW$124 .dwtag DW_TAG_member
.dwattr $C$DW$124, DW_AT_type(*$C$DW$T$11)
.dwattr $C$DW$124, DW_AT_name("REV_MINOR")
.dwattr $C$DW$124, DW_AT_TI_symbol_name("REV_MINOR")
.dwattr $C$DW$124, DW_AT_bit_offset(0x1a)
.dwattr $C$DW$124, DW_AT_bit_size(0x06)
.dwattr $C$DW$124, DW_AT_data_member_location[DW_OP_plus_uconst 0x0]
.dwattr $C$DW$124, DW_AT_accessibility(DW_ACCESS_public)
.dwattr $C$DW$124, DW_AT_decl_file("/usr/share/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$124, DW_AT_decl_line(0x2d)
.dwattr $C$DW$124, DW_AT_decl_column(0x0d)
$C$DW$125 .dwtag DW_TAG_member
.dwattr $C$DW$125, DW_AT_type(*$C$DW$T$11)
.dwattr $C$DW$125, DW_AT_name("REV_CUSTOM")
.dwattr $C$DW$125, DW_AT_TI_symbol_name("REV_CUSTOM")
.dwattr $C$DW$125, DW_AT_bit_offset(0x18)
.dwattr $C$DW$125, DW_AT_bit_size(0x02)
.dwattr $C$DW$125, DW_AT_data_member_location[DW_OP_plus_uconst 0x0]
.dwattr $C$DW$125, DW_AT_accessibility(DW_ACCESS_public)
.dwattr $C$DW$125, DW_AT_decl_file("/usr/share/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$125, DW_AT_decl_line(0x2e)
.dwattr $C$DW$125, DW_AT_decl_column(0x0d)
$C$DW$126 .dwtag DW_TAG_member
.dwattr $C$DW$126, DW_AT_type(*$C$DW$T$11)
.dwattr $C$DW$126, DW_AT_name("REV_MAJOR")
.dwattr $C$DW$126, DW_AT_TI_symbol_name("REV_MAJOR")
.dwattr $C$DW$126, DW_AT_bit_offset(0x15)
.dwattr $C$DW$126, DW_AT_bit_size(0x03)
.dwattr $C$DW$126, DW_AT_data_member_location[DW_OP_plus_uconst 0x0]
.dwattr $C$DW$126, DW_AT_accessibility(DW_ACCESS_public)
.dwattr $C$DW$126, DW_AT_decl_file("/usr/share/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$126, DW_AT_decl_line(0x2f)
.dwattr $C$DW$126, DW_AT_decl_column(0x0d)
$C$DW$127 .dwtag DW_TAG_member
.dwattr $C$DW$127, DW_AT_type(*$C$DW$T$11)
.dwattr $C$DW$127, DW_AT_name("REV_RTL")
.dwattr $C$DW$127, DW_AT_TI_symbol_name("REV_RTL")
.dwattr $C$DW$127, DW_AT_bit_offset(0x10)
.dwattr $C$DW$127, DW_AT_bit_size(0x05)
.dwattr $C$DW$127, DW_AT_data_member_location[DW_OP_plus_uconst 0x0]
.dwattr $C$DW$127, DW_AT_accessibility(DW_ACCESS_public)
.dwattr $C$DW$127, DW_AT_decl_file("/usr/share/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$127, DW_AT_decl_line(0x30)
.dwattr $C$DW$127, DW_AT_decl_column(0x0d)
$C$DW$128 .dwtag DW_TAG_member
.dwattr $C$DW$128, DW_AT_type(*$C$DW$T$11)
.dwattr $C$DW$128, DW_AT_name("REV_MODULE")
.dwattr $C$DW$128, DW_AT_TI_symbol_name("REV_MODULE")
.dwattr $C$DW$128, DW_AT_bit_offset(0x04)
.dwattr $C$DW$128, DW_AT_bit_size(0x0c)
.dwattr $C$DW$128, DW_AT_data_member_location[DW_OP_plus_uconst 0x0]
.dwattr $C$DW$128, DW_AT_accessibility(DW_ACCESS_public)
.dwattr $C$DW$128, DW_AT_decl_file("/usr/share/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$128, DW_AT_decl_line(0x31)
.dwattr $C$DW$128, DW_AT_decl_column(0x0d)
$C$DW$129 .dwtag DW_TAG_member
.dwattr $C$DW$129, DW_AT_type(*$C$DW$T$11)
.dwattr $C$DW$129, DW_AT_name("rsvd28")
.dwattr $C$DW$129, DW_AT_TI_symbol_name("rsvd28")
.dwattr $C$DW$129, DW_AT_bit_offset(0x02)
.dwattr $C$DW$129, DW_AT_bit_size(0x02)
.dwattr $C$DW$129, DW_AT_data_member_location[DW_OP_plus_uconst 0x0]
.dwattr $C$DW$129, DW_AT_accessibility(DW_ACCESS_public)
.dwattr $C$DW$129, DW_AT_decl_file("/usr/share/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$129, DW_AT_decl_line(0x32)
.dwattr $C$DW$129, DW_AT_decl_column(0x0d)
$C$DW$130 .dwtag DW_TAG_member
.dwattr $C$DW$130, DW_AT_type(*$C$DW$T$11)
.dwattr $C$DW$130, DW_AT_name("REV_SCHEME")
.dwattr $C$DW$130, DW_AT_TI_symbol_name("REV_SCHEME")
.dwattr $C$DW$130, DW_AT_bit_offset(0x00)
.dwattr $C$DW$130, DW_AT_bit_size(0x02)
.dwattr $C$DW$130, DW_AT_data_member_location[DW_OP_plus_uconst 0x0]
.dwattr $C$DW$130, DW_AT_accessibility(DW_ACCESS_public)
.dwattr $C$DW$130, DW_AT_decl_file("/usr/share/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$130, DW_AT_decl_line(0x33)
.dwattr $C$DW$130, DW_AT_decl_column(0x0d)
.dwattr $C$DW$T$36, DW_AT_decl_file("/usr/share/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$T$36, DW_AT_decl_line(0x2c)
.dwattr $C$DW$T$36, DW_AT_decl_column(0x13)
.dwendtag $C$DW$T$36
$C$DW$T$149 .dwtag DW_TAG_volatile_type
.dwattr $C$DW$T$149, DW_AT_type(*$C$DW$T$36)
$C$DW$T$37 .dwtag DW_TAG_structure_type
.dwattr $C$DW$T$37, DW_AT_byte_size(0x04)
$C$DW$131 .dwtag DW_TAG_member
.dwattr $C$DW$131, DW_AT_type(*$C$DW$T$11)
.dwattr $C$DW$131, DW_AT_name("rsvd0")
.dwattr $C$DW$131, DW_AT_TI_symbol_name("rsvd0")
.dwattr $C$DW$131, DW_AT_bit_offset(0x1e)
.dwattr $C$DW$131, DW_AT_bit_size(0x02)
.dwattr $C$DW$131, DW_AT_data_member_location[DW_OP_plus_uconst 0x0]
.dwattr $C$DW$131, DW_AT_accessibility(DW_ACCESS_public)
.dwattr $C$DW$131, DW_AT_decl_file("/usr/share/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$131, DW_AT_decl_line(0x3d)
.dwattr $C$DW$131, DW_AT_decl_column(0x0d)
$C$DW$132 .dwtag DW_TAG_member
.dwattr $C$DW$132, DW_AT_type(*$C$DW$T$11)
.dwattr $C$DW$132, DW_AT_name("NEST_MODE")
.dwattr $C$DW$132, DW_AT_TI_symbol_name("NEST_MODE")
.dwattr $C$DW$132, DW_AT_bit_offset(0x1c)
.dwattr $C$DW$132, DW_AT_bit_size(0x02)
.dwattr $C$DW$132, DW_AT_data_member_location[DW_OP_plus_uconst 0x0]
.dwattr $C$DW$132, DW_AT_accessibility(DW_ACCESS_public)
.dwattr $C$DW$132, DW_AT_decl_file("/usr/share/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$132, DW_AT_decl_line(0x3e)
.dwattr $C$DW$132, DW_AT_decl_column(0x0d)
$C$DW$133 .dwtag DW_TAG_member
.dwattr $C$DW$133, DW_AT_type(*$C$DW$T$11)
.dwattr $C$DW$133, DW_AT_name("rsvd4")
.dwattr $C$DW$133, DW_AT_TI_symbol_name("rsvd4")
.dwattr $C$DW$133, DW_AT_bit_offset(0x00)
.dwattr $C$DW$133, DW_AT_bit_size(0x1c)
.dwattr $C$DW$133, DW_AT_data_member_location[DW_OP_plus_uconst 0x0]
.dwattr $C$DW$133, DW_AT_accessibility(DW_ACCESS_public)
.dwattr $C$DW$133, DW_AT_decl_file("/usr/share/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$133, DW_AT_decl_line(0x3f)
.dwattr $C$DW$133, DW_AT_decl_column(0x0d)
.dwattr $C$DW$T$37, DW_AT_decl_file("/usr/share/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$T$37, DW_AT_decl_line(0x3c)
.dwattr $C$DW$T$37, DW_AT_decl_column(0x13)
.dwendtag $C$DW$T$37
$C$DW$T$151 .dwtag DW_TAG_volatile_type
.dwattr $C$DW$T$151, DW_AT_type(*$C$DW$T$37)
$C$DW$T$38 .dwtag DW_TAG_structure_type
.dwattr $C$DW$T$38, DW_AT_byte_size(0x04)
$C$DW$134 .dwtag DW_TAG_member
.dwattr $C$DW$134, DW_AT_type(*$C$DW$T$11)
.dwattr $C$DW$134, DW_AT_name("EN_HINT_ANY")
.dwattr $C$DW$134, DW_AT_TI_symbol_name("EN_HINT_ANY")
.dwattr $C$DW$134, DW_AT_bit_offset(0x1f)
.dwattr $C$DW$134, DW_AT_bit_size(0x01)
.dwattr $C$DW$134, DW_AT_data_member_location[DW_OP_plus_uconst 0x0]
.dwattr $C$DW$134, DW_AT_accessibility(DW_ACCESS_public)
.dwattr $C$DW$134, DW_AT_decl_file("/usr/share/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$134, DW_AT_decl_line(0x4c)
.dwattr $C$DW$134, DW_AT_decl_column(0x0d)
$C$DW$135 .dwtag DW_TAG_member
.dwattr $C$DW$135, DW_AT_type(*$C$DW$T$11)
.dwattr $C$DW$135, DW_AT_name("rsvd1")
.dwattr $C$DW$135, DW_AT_TI_symbol_name("rsvd1")
.dwattr $C$DW$135, DW_AT_bit_offset(0x00)
.dwattr $C$DW$135, DW_AT_bit_size(0x1f)
.dwattr $C$DW$135, DW_AT_data_member_location[DW_OP_plus_uconst 0x0]
.dwattr $C$DW$135, DW_AT_accessibility(DW_ACCESS_public)
.dwattr $C$DW$135, DW_AT_decl_file("/usr/share/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$135, DW_AT_decl_line(0x4d)
.dwattr $C$DW$135, DW_AT_decl_column(0x0d)
.dwattr $C$DW$T$38, DW_AT_decl_file("/usr/share/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$T$38, DW_AT_decl_line(0x4b)
.dwattr $C$DW$T$38, DW_AT_decl_column(0x13)
.dwendtag $C$DW$T$38
$C$DW$T$153 .dwtag DW_TAG_volatile_type
.dwattr $C$DW$T$153, DW_AT_type(*$C$DW$T$38)
$C$DW$T$39 .dwtag DW_TAG_structure_type
.dwattr $C$DW$T$39, DW_AT_byte_size(0x04)
$C$DW$136 .dwtag DW_TAG_member
.dwattr $C$DW$136, DW_AT_type(*$C$DW$T$11)
.dwattr $C$DW$136, DW_AT_name("GLB_NEST_LEVEL")
.dwattr $C$DW$136, DW_AT_TI_symbol_name("GLB_NEST_LEVEL")
.dwattr $C$DW$136, DW_AT_bit_offset(0x17)
.dwattr $C$DW$136, DW_AT_bit_size(0x09)
.dwattr $C$DW$136, DW_AT_data_member_location[DW_OP_plus_uconst 0x0]
.dwattr $C$DW$136, DW_AT_accessibility(DW_ACCESS_public)
.dwattr $C$DW$136, DW_AT_decl_file("/usr/share/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$136, DW_AT_decl_line(0x5a)
.dwattr $C$DW$136, DW_AT_decl_column(0x0d)
$C$DW$137 .dwtag DW_TAG_member
.dwattr $C$DW$137, DW_AT_type(*$C$DW$T$11)
.dwattr $C$DW$137, DW_AT_name("rsvd9")
.dwattr $C$DW$137, DW_AT_TI_symbol_name("rsvd9")
.dwattr $C$DW$137, DW_AT_bit_offset(0x01)
.dwattr $C$DW$137, DW_AT_bit_size(0x16)
.dwattr $C$DW$137, DW_AT_data_member_location[DW_OP_plus_uconst 0x0]
.dwattr $C$DW$137, DW_AT_accessibility(DW_ACCESS_public)
.dwattr $C$DW$137, DW_AT_decl_file("/usr/share/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$137, DW_AT_decl_line(0x5b)
.dwattr $C$DW$137, DW_AT_decl_column(0x0d)
$C$DW$138 .dwtag DW_TAG_member
.dwattr $C$DW$138, DW_AT_type(*$C$DW$T$11)
.dwattr $C$DW$138, DW_AT_name("AUTO_OVERRIDE")
.dwattr $C$DW$138, DW_AT_TI_symbol_name("AUTO_OVERRIDE")
.dwattr $C$DW$138, DW_AT_bit_offset(0x00)
.dwattr $C$DW$138, DW_AT_bit_size(0x01)
.dwattr $C$DW$138, DW_AT_data_member_location[DW_OP_plus_uconst 0x0]
.dwattr $C$DW$138, DW_AT_accessibility(DW_ACCESS_public)
.dwattr $C$DW$138, DW_AT_decl_file("/usr/share/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$138, DW_AT_decl_line(0x5c)
.dwattr $C$DW$138, DW_AT_decl_column(0x0d)
.dwattr $C$DW$T$39, DW_AT_decl_file("/usr/share/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$T$39, DW_AT_decl_line(0x59)
.dwattr $C$DW$T$39, DW_AT_decl_column(0x13)
.dwendtag $C$DW$T$39
$C$DW$T$155 .dwtag DW_TAG_volatile_type
.dwattr $C$DW$T$155, DW_AT_type(*$C$DW$T$39)
$C$DW$T$40 .dwtag DW_TAG_structure_type
.dwattr $C$DW$T$40, DW_AT_byte_size(0x04)
$C$DW$139 .dwtag DW_TAG_member
.dwattr $C$DW$139, DW_AT_type(*$C$DW$T$11)
.dwattr $C$DW$139, DW_AT_name("STS_SET_IDX")
.dwattr $C$DW$139, DW_AT_TI_symbol_name("STS_SET_IDX")
.dwattr $C$DW$139, DW_AT_bit_offset(0x16)
.dwattr $C$DW$139, DW_AT_bit_size(0x0a)
.dwattr $C$DW$139, DW_AT_data_member_location[DW_OP_plus_uconst 0x0]
.dwattr $C$DW$139, DW_AT_accessibility(DW_ACCESS_public)
.dwattr $C$DW$139, DW_AT_decl_file("/usr/share/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$139, DW_AT_decl_line(0x66)
.dwattr $C$DW$139, DW_AT_decl_column(0x0d)
$C$DW$140 .dwtag DW_TAG_member
.dwattr $C$DW$140, DW_AT_type(*$C$DW$T$11)
.dwattr $C$DW$140, DW_AT_name("rsvd10")
.dwattr $C$DW$140, DW_AT_TI_symbol_name("rsvd10")
.dwattr $C$DW$140, DW_AT_bit_offset(0x00)
.dwattr $C$DW$140, DW_AT_bit_size(0x16)
.dwattr $C$DW$140, DW_AT_data_member_location[DW_OP_plus_uconst 0x0]
.dwattr $C$DW$140, DW_AT_accessibility(DW_ACCESS_public)
.dwattr $C$DW$140, DW_AT_decl_file("/usr/share/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$140, DW_AT_decl_line(0x67)
.dwattr $C$DW$140, DW_AT_decl_column(0x0d)
.dwattr $C$DW$T$40, DW_AT_decl_file("/usr/share/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$T$40, DW_AT_decl_line(0x65)
.dwattr $C$DW$T$40, DW_AT_decl_column(0x13)
.dwendtag $C$DW$T$40
$C$DW$T$157 .dwtag DW_TAG_volatile_type
.dwattr $C$DW$T$157, DW_AT_type(*$C$DW$T$40)
$C$DW$T$41 .dwtag DW_TAG_structure_type
.dwattr $C$DW$T$41, DW_AT_byte_size(0x04)
$C$DW$141 .dwtag DW_TAG_member
.dwattr $C$DW$141, DW_AT_type(*$C$DW$T$11)
.dwattr $C$DW$141, DW_AT_name("STS_CLR_IDX")
.dwattr $C$DW$141, DW_AT_TI_symbol_name("STS_CLR_IDX")
.dwattr $C$DW$141, DW_AT_bit_offset(0x16)
.dwattr $C$DW$141, DW_AT_bit_size(0x0a)
.dwattr $C$DW$141, DW_AT_data_member_location[DW_OP_plus_uconst 0x0]
.dwattr $C$DW$141, DW_AT_accessibility(DW_ACCESS_public)
.dwattr $C$DW$141, DW_AT_decl_file("/usr/share/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$141, DW_AT_decl_line(0x71)
.dwattr $C$DW$141, DW_AT_decl_column(0x0d)
$C$DW$142 .dwtag DW_TAG_member
.dwattr $C$DW$142, DW_AT_type(*$C$DW$T$11)
.dwattr $C$DW$142, DW_AT_name("rsvd10")
.dwattr $C$DW$142, DW_AT_TI_symbol_name("rsvd10")
.dwattr $C$DW$142, DW_AT_bit_offset(0x00)
.dwattr $C$DW$142, DW_AT_bit_size(0x16)
.dwattr $C$DW$142, DW_AT_data_member_location[DW_OP_plus_uconst 0x0]
.dwattr $C$DW$142, DW_AT_accessibility(DW_ACCESS_public)
.dwattr $C$DW$142, DW_AT_decl_file("/usr/share/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$142, DW_AT_decl_line(0x72)
.dwattr $C$DW$142, DW_AT_decl_column(0x0d)
.dwattr $C$DW$T$41, DW_AT_decl_file("/usr/share/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$T$41, DW_AT_decl_line(0x70)
.dwattr $C$DW$T$41, DW_AT_decl_column(0x13)
.dwendtag $C$DW$T$41
$C$DW$T$159 .dwtag DW_TAG_volatile_type
.dwattr $C$DW$T$159, DW_AT_type(*$C$DW$T$41)
$C$DW$T$42 .dwtag DW_TAG_structure_type
.dwattr $C$DW$T$42, DW_AT_byte_size(0x04)
$C$DW$143 .dwtag DW_TAG_member
.dwattr $C$DW$143, DW_AT_type(*$C$DW$T$11)
.dwattr $C$DW$143, DW_AT_name("EN_SET_IDX")
.dwattr $C$DW$143, DW_AT_TI_symbol_name("EN_SET_IDX")
.dwattr $C$DW$143, DW_AT_bit_offset(0x16)
.dwattr $C$DW$143, DW_AT_bit_size(0x0a)
.dwattr $C$DW$143, DW_AT_data_member_location[DW_OP_plus_uconst 0x0]
.dwattr $C$DW$143, DW_AT_accessibility(DW_ACCESS_public)
.dwattr $C$DW$143, DW_AT_decl_file("/usr/share/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$143, DW_AT_decl_line(0x7c)
.dwattr $C$DW$143, DW_AT_decl_column(0x0d)
$C$DW$144 .dwtag DW_TAG_member
.dwattr $C$DW$144, DW_AT_type(*$C$DW$T$11)
.dwattr $C$DW$144, DW_AT_name("rsvd10")
.dwattr $C$DW$144, DW_AT_TI_symbol_name("rsvd10")
.dwattr $C$DW$144, DW_AT_bit_offset(0x00)
.dwattr $C$DW$144, DW_AT_bit_size(0x16)
.dwattr $C$DW$144, DW_AT_data_member_location[DW_OP_plus_uconst 0x0]
.dwattr $C$DW$144, DW_AT_accessibility(DW_ACCESS_public)
.dwattr $C$DW$144, DW_AT_decl_file("/usr/share/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$144, DW_AT_decl_line(0x7d)
.dwattr $C$DW$144, DW_AT_decl_column(0x0d)
.dwattr $C$DW$T$42, DW_AT_decl_file("/usr/share/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$T$42, DW_AT_decl_line(0x7b)
.dwattr $C$DW$T$42, DW_AT_decl_column(0x13)
.dwendtag $C$DW$T$42
$C$DW$T$161 .dwtag DW_TAG_volatile_type
.dwattr $C$DW$T$161, DW_AT_type(*$C$DW$T$42)
$C$DW$T$43 .dwtag DW_TAG_structure_type
.dwattr $C$DW$T$43, DW_AT_byte_size(0x04)
$C$DW$145 .dwtag DW_TAG_member
.dwattr $C$DW$145, DW_AT_type(*$C$DW$T$11)
.dwattr $C$DW$145, DW_AT_name("EN_CLR_IDX")
.dwattr $C$DW$145, DW_AT_TI_symbol_name("EN_CLR_IDX")
.dwattr $C$DW$145, DW_AT_bit_offset(0x16)
.dwattr $C$DW$145, DW_AT_bit_size(0x0a)
.dwattr $C$DW$145, DW_AT_data_member_location[DW_OP_plus_uconst 0x0]
.dwattr $C$DW$145, DW_AT_accessibility(DW_ACCESS_public)
.dwattr $C$DW$145, DW_AT_decl_file("/usr/share/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$145, DW_AT_decl_line(0x87)
.dwattr $C$DW$145, DW_AT_decl_column(0x0d)
$C$DW$146 .dwtag DW_TAG_member
.dwattr $C$DW$146, DW_AT_type(*$C$DW$T$11)
.dwattr $C$DW$146, DW_AT_name("rsvd10")
.dwattr $C$DW$146, DW_AT_TI_symbol_name("rsvd10")
.dwattr $C$DW$146, DW_AT_bit_offset(0x00)
.dwattr $C$DW$146, DW_AT_bit_size(0x16)
.dwattr $C$DW$146, DW_AT_data_member_location[DW_OP_plus_uconst 0x0]
.dwattr $C$DW$146, DW_AT_accessibility(DW_ACCESS_public)
.dwattr $C$DW$146, DW_AT_decl_file("/usr/share/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$146, DW_AT_decl_line(0x88)
.dwattr $C$DW$146, DW_AT_decl_column(0x0d)
.dwattr $C$DW$T$43, DW_AT_decl_file("/usr/share/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$T$43, DW_AT_decl_line(0x86)
.dwattr $C$DW$T$43, DW_AT_decl_column(0x13)
.dwendtag $C$DW$T$43
$C$DW$T$163 .dwtag DW_TAG_volatile_type
.dwattr $C$DW$T$163, DW_AT_type(*$C$DW$T$43)
$C$DW$T$44 .dwtag DW_TAG_structure_type
.dwattr $C$DW$T$44, DW_AT_byte_size(0x04)
$C$DW$147 .dwtag DW_TAG_member
.dwattr $C$DW$147, DW_AT_type(*$C$DW$T$11)
.dwattr $C$DW$147, DW_AT_name("HINT_EN_SET_IDX")
.dwattr $C$DW$147, DW_AT_TI_symbol_name("HINT_EN_SET_IDX")
.dwattr $C$DW$147, DW_AT_bit_offset(0x1c)
.dwattr $C$DW$147, DW_AT_bit_size(0x04)
.dwattr $C$DW$147, DW_AT_data_member_location[DW_OP_plus_uconst 0x0]
.dwattr $C$DW$147, DW_AT_accessibility(DW_ACCESS_public)
.dwattr $C$DW$147, DW_AT_decl_file("/usr/share/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$147, DW_AT_decl_line(0x95)
.dwattr $C$DW$147, DW_AT_decl_column(0x0d)
$C$DW$148 .dwtag DW_TAG_member
.dwattr $C$DW$148, DW_AT_type(*$C$DW$T$11)
.dwattr $C$DW$148, DW_AT_name("rsvd4")
.dwattr $C$DW$148, DW_AT_TI_symbol_name("rsvd4")
.dwattr $C$DW$148, DW_AT_bit_offset(0x00)
.dwattr $C$DW$148, DW_AT_bit_size(0x1c)
.dwattr $C$DW$148, DW_AT_data_member_location[DW_OP_plus_uconst 0x0]
.dwattr $C$DW$148, DW_AT_accessibility(DW_ACCESS_public)
.dwattr $C$DW$148, DW_AT_decl_file("/usr/share/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$148, DW_AT_decl_line(0x96)
.dwattr $C$DW$148, DW_AT_decl_column(0x0d)
.dwattr $C$DW$T$44, DW_AT_decl_file("/usr/share/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$T$44, DW_AT_decl_line(0x94)
.dwattr $C$DW$T$44, DW_AT_decl_column(0x13)
.dwendtag $C$DW$T$44
$C$DW$T$165 .dwtag DW_TAG_volatile_type
.dwattr $C$DW$T$165, DW_AT_type(*$C$DW$T$44)
$C$DW$T$45 .dwtag DW_TAG_structure_type
.dwattr $C$DW$T$45, DW_AT_byte_size(0x04)
$C$DW$149 .dwtag DW_TAG_member
.dwattr $C$DW$149, DW_AT_type(*$C$DW$T$11)
.dwattr $C$DW$149, DW_AT_name("HINT_EN_CLR_IDX")
.dwattr $C$DW$149, DW_AT_TI_symbol_name("HINT_EN_CLR_IDX")
.dwattr $C$DW$149, DW_AT_bit_offset(0x1c)
.dwattr $C$DW$149, DW_AT_bit_size(0x04)
.dwattr $C$DW$149, DW_AT_data_member_location[DW_OP_plus_uconst 0x0]
.dwattr $C$DW$149, DW_AT_accessibility(DW_ACCESS_public)
.dwattr $C$DW$149, DW_AT_decl_file("/usr/share/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$149, DW_AT_decl_line(0xa0)
.dwattr $C$DW$149, DW_AT_decl_column(0x0d)
$C$DW$150 .dwtag DW_TAG_member
.dwattr $C$DW$150, DW_AT_type(*$C$DW$T$11)
.dwattr $C$DW$150, DW_AT_name("rsvd4")
.dwattr $C$DW$150, DW_AT_TI_symbol_name("rsvd4")
.dwattr $C$DW$150, DW_AT_bit_offset(0x00)
.dwattr $C$DW$150, DW_AT_bit_size(0x1c)
.dwattr $C$DW$150, DW_AT_data_member_location[DW_OP_plus_uconst 0x0]
.dwattr $C$DW$150, DW_AT_accessibility(DW_ACCESS_public)
.dwattr $C$DW$150, DW_AT_decl_file("/usr/share/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$150, DW_AT_decl_line(0xa1)
.dwattr $C$DW$150, DW_AT_decl_column(0x0d)
.dwattr $C$DW$T$45, DW_AT_decl_file("/usr/share/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$T$45, DW_AT_decl_line(0x9f)
.dwattr $C$DW$T$45, DW_AT_decl_column(0x13)
.dwendtag $C$DW$T$45
$C$DW$T$167 .dwtag DW_TAG_volatile_type
.dwattr $C$DW$T$167, DW_AT_type(*$C$DW$T$45)
$C$DW$T$46 .dwtag DW_TAG_structure_type
.dwattr $C$DW$T$46, DW_AT_byte_size(0x04)
$C$DW$151 .dwtag DW_TAG_member
.dwattr $C$DW$151, DW_AT_type(*$C$DW$T$11)
.dwattr $C$DW$151, DW_AT_name("GLB_PRI_INTR")
.dwattr $C$DW$151, DW_AT_TI_symbol_name("GLB_PRI_INTR")
.dwattr $C$DW$151, DW_AT_bit_offset(0x16)
.dwattr $C$DW$151, DW_AT_bit_size(0x0a)
.dwattr $C$DW$151, DW_AT_data_member_location[DW_OP_plus_uconst 0x0]
.dwattr $C$DW$151, DW_AT_accessibility(DW_ACCESS_public)
.dwattr $C$DW$151, DW_AT_decl_file("/usr/share/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$151, DW_AT_decl_line(0xae)
.dwattr $C$DW$151, DW_AT_decl_column(0x0d)
$C$DW$152 .dwtag DW_TAG_member
.dwattr $C$DW$152, DW_AT_type(*$C$DW$T$11)
.dwattr $C$DW$152, DW_AT_name("rsvd10")
.dwattr $C$DW$152, DW_AT_TI_symbol_name("rsvd10")
.dwattr $C$DW$152, DW_AT_bit_offset(0x01)
.dwattr $C$DW$152, DW_AT_bit_size(0x15)
.dwattr $C$DW$152, DW_AT_data_member_location[DW_OP_plus_uconst 0x0]
.dwattr $C$DW$152, DW_AT_accessibility(DW_ACCESS_public)
.dwattr $C$DW$152, DW_AT_decl_file("/usr/share/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$152, DW_AT_decl_line(0xaf)
.dwattr $C$DW$152, DW_AT_decl_column(0x0d)
$C$DW$153 .dwtag DW_TAG_member
.dwattr $C$DW$153, DW_AT_type(*$C$DW$T$11)
.dwattr $C$DW$153, DW_AT_name("GLB_NONE")
.dwattr $C$DW$153, DW_AT_TI_symbol_name("GLB_NONE")
.dwattr $C$DW$153, DW_AT_bit_offset(0x00)
.dwattr $C$DW$153, DW_AT_bit_size(0x01)
.dwattr $C$DW$153, DW_AT_data_member_location[DW_OP_plus_uconst 0x0]
.dwattr $C$DW$153, DW_AT_accessibility(DW_ACCESS_public)
.dwattr $C$DW$153, DW_AT_decl_file("/usr/share/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$153, DW_AT_decl_line(0xb0)
.dwattr $C$DW$153, DW_AT_decl_column(0x0d)
.dwattr $C$DW$T$46, DW_AT_decl_file("/usr/share/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$T$46, DW_AT_decl_line(0xad)
.dwattr $C$DW$T$46, DW_AT_decl_column(0x13)
.dwendtag $C$DW$T$46
$C$DW$T$169 .dwtag DW_TAG_volatile_type
.dwattr $C$DW$T$169, DW_AT_type(*$C$DW$T$46)
$C$DW$T$47 .dwtag DW_TAG_structure_type
.dwattr $C$DW$T$47, DW_AT_byte_size(0x04)
$C$DW$154 .dwtag DW_TAG_member
.dwattr $C$DW$154, DW_AT_type(*$C$DW$T$11)
.dwattr $C$DW$154, DW_AT_name("RAW_STS_31_0")
.dwattr $C$DW$154, DW_AT_TI_symbol_name("RAW_STS_31_0")
.dwattr $C$DW$154, DW_AT_bit_offset(0x00)
.dwattr $C$DW$154, DW_AT_bit_size(0x20)
.dwattr $C$DW$154, DW_AT_data_member_location[DW_OP_plus_uconst 0x0]
.dwattr $C$DW$154, DW_AT_accessibility(DW_ACCESS_public)
.dwattr $C$DW$154, DW_AT_decl_file("/usr/share/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$154, DW_AT_decl_line(0xbd)
.dwattr $C$DW$154, DW_AT_decl_column(0x0d)
.dwattr $C$DW$T$47, DW_AT_decl_file("/usr/share/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$T$47, DW_AT_decl_line(0xbc)
.dwattr $C$DW$T$47, DW_AT_decl_column(0x13)
.dwendtag $C$DW$T$47
$C$DW$T$171 .dwtag DW_TAG_volatile_type
.dwattr $C$DW$T$171, DW_AT_type(*$C$DW$T$47)
$C$DW$T$48 .dwtag DW_TAG_structure_type
.dwattr $C$DW$T$48, DW_AT_byte_size(0x04)
$C$DW$155 .dwtag DW_TAG_member
.dwattr $C$DW$155, DW_AT_type(*$C$DW$T$11)
.dwattr $C$DW$155, DW_AT_name("RAW_STS_63_32")
.dwattr $C$DW$155, DW_AT_TI_symbol_name("RAW_STS_63_32")
.dwattr $C$DW$155, DW_AT_bit_offset(0x00)
.dwattr $C$DW$155, DW_AT_bit_size(0x20)
.dwattr $C$DW$155, DW_AT_data_member_location[DW_OP_plus_uconst 0x0]
.dwattr $C$DW$155, DW_AT_accessibility(DW_ACCESS_public)
.dwattr $C$DW$155, DW_AT_decl_file("/usr/share/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$155, DW_AT_decl_line(0xc7)
.dwattr $C$DW$155, DW_AT_decl_column(0x0d)
.dwattr $C$DW$T$48, DW_AT_decl_file("/usr/share/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$T$48, DW_AT_decl_line(0xc6)
.dwattr $C$DW$T$48, DW_AT_decl_column(0x13)
.dwendtag $C$DW$T$48
$C$DW$T$173 .dwtag DW_TAG_volatile_type
.dwattr $C$DW$T$173, DW_AT_type(*$C$DW$T$48)
$C$DW$T$49 .dwtag DW_TAG_structure_type
.dwattr $C$DW$T$49, DW_AT_byte_size(0x04)
$C$DW$156 .dwtag DW_TAG_member
.dwattr $C$DW$156, DW_AT_type(*$C$DW$T$11)
.dwattr $C$DW$156, DW_AT_name("ENA_STS_31_0")
.dwattr $C$DW$156, DW_AT_TI_symbol_name("ENA_STS_31_0")
.dwattr $C$DW$156, DW_AT_bit_offset(0x00)
.dwattr $C$DW$156, DW_AT_bit_size(0x20)
.dwattr $C$DW$156, DW_AT_data_member_location[DW_OP_plus_uconst 0x0]
.dwattr $C$DW$156, DW_AT_accessibility(DW_ACCESS_public)
.dwattr $C$DW$156, DW_AT_decl_file("/usr/share/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$156, DW_AT_decl_line(0xd4)
.dwattr $C$DW$156, DW_AT_decl_column(0x0d)
.dwattr $C$DW$T$49, DW_AT_decl_file("/usr/share/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$T$49, DW_AT_decl_line(0xd3)
.dwattr $C$DW$T$49, DW_AT_decl_column(0x13)
.dwendtag $C$DW$T$49
$C$DW$T$175 .dwtag DW_TAG_volatile_type
.dwattr $C$DW$T$175, DW_AT_type(*$C$DW$T$49)
$C$DW$T$50 .dwtag DW_TAG_structure_type
.dwattr $C$DW$T$50, DW_AT_byte_size(0x04)
$C$DW$157 .dwtag DW_TAG_member
.dwattr $C$DW$157, DW_AT_type(*$C$DW$T$11)
.dwattr $C$DW$157, DW_AT_name("ENA_STS_63_32")
.dwattr $C$DW$157, DW_AT_TI_symbol_name("ENA_STS_63_32")
.dwattr $C$DW$157, DW_AT_bit_offset(0x00)
.dwattr $C$DW$157, DW_AT_bit_size(0x20)
.dwattr $C$DW$157, DW_AT_data_member_location[DW_OP_plus_uconst 0x0]
.dwattr $C$DW$157, DW_AT_accessibility(DW_ACCESS_public)
.dwattr $C$DW$157, DW_AT_decl_file("/usr/share/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$157, DW_AT_decl_line(0xde)
.dwattr $C$DW$157, DW_AT_decl_column(0x0d)
.dwattr $C$DW$T$50, DW_AT_decl_file("/usr/share/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$T$50, DW_AT_decl_line(0xdd)
.dwattr $C$DW$T$50, DW_AT_decl_column(0x13)
.dwendtag $C$DW$T$50
$C$DW$T$177 .dwtag DW_TAG_volatile_type
.dwattr $C$DW$T$177, DW_AT_type(*$C$DW$T$50)
$C$DW$T$51 .dwtag DW_TAG_structure_type
.dwattr $C$DW$T$51, DW_AT_byte_size(0x04)
$C$DW$158 .dwtag DW_TAG_member
.dwattr $C$DW$158, DW_AT_type(*$C$DW$T$11)
.dwattr $C$DW$158, DW_AT_name("EN_SET_31_0")
.dwattr $C$DW$158, DW_AT_TI_symbol_name("EN_SET_31_0")
.dwattr $C$DW$158, DW_AT_bit_offset(0x00)
.dwattr $C$DW$158, DW_AT_bit_size(0x20)
.dwattr $C$DW$158, DW_AT_data_member_location[DW_OP_plus_uconst 0x0]
.dwattr $C$DW$158, DW_AT_accessibility(DW_ACCESS_public)
.dwattr $C$DW$158, DW_AT_decl_file("/usr/share/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$158, DW_AT_decl_line(0xeb)
.dwattr $C$DW$158, DW_AT_decl_column(0x0d)
.dwattr $C$DW$T$51, DW_AT_decl_file("/usr/share/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$T$51, DW_AT_decl_line(0xea)
.dwattr $C$DW$T$51, DW_AT_decl_column(0x13)
.dwendtag $C$DW$T$51
$C$DW$T$179 .dwtag DW_TAG_volatile_type
.dwattr $C$DW$T$179, DW_AT_type(*$C$DW$T$51)
$C$DW$T$52 .dwtag DW_TAG_structure_type
.dwattr $C$DW$T$52, DW_AT_byte_size(0x04)
$C$DW$159 .dwtag DW_TAG_member
.dwattr $C$DW$159, DW_AT_type(*$C$DW$T$11)
.dwattr $C$DW$159, DW_AT_name("EN_SET_63_32")
.dwattr $C$DW$159, DW_AT_TI_symbol_name("EN_SET_63_32")
.dwattr $C$DW$159, DW_AT_bit_offset(0x00)
.dwattr $C$DW$159, DW_AT_bit_size(0x20)
.dwattr $C$DW$159, DW_AT_data_member_location[DW_OP_plus_uconst 0x0]
.dwattr $C$DW$159, DW_AT_accessibility(DW_ACCESS_public)
.dwattr $C$DW$159, DW_AT_decl_file("/usr/share/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$159, DW_AT_decl_line(0xf5)
.dwattr $C$DW$159, DW_AT_decl_column(0x0d)
.dwattr $C$DW$T$52, DW_AT_decl_file("/usr/share/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$T$52, DW_AT_decl_line(0xf4)
.dwattr $C$DW$T$52, DW_AT_decl_column(0x13)
.dwendtag $C$DW$T$52
$C$DW$T$181 .dwtag DW_TAG_volatile_type
.dwattr $C$DW$T$181, DW_AT_type(*$C$DW$T$52)
$C$DW$T$53 .dwtag DW_TAG_structure_type
.dwattr $C$DW$T$53, DW_AT_byte_size(0x04)
$C$DW$160 .dwtag DW_TAG_member
.dwattr $C$DW$160, DW_AT_type(*$C$DW$T$11)
.dwattr $C$DW$160, DW_AT_name("EN_CLR_31_0")
.dwattr $C$DW$160, DW_AT_TI_symbol_name("EN_CLR_31_0")
.dwattr $C$DW$160, DW_AT_bit_offset(0x00)
.dwattr $C$DW$160, DW_AT_bit_size(0x20)
.dwattr $C$DW$160, DW_AT_data_member_location[DW_OP_plus_uconst 0x0]
.dwattr $C$DW$160, DW_AT_accessibility(DW_ACCESS_public)
.dwattr $C$DW$160, DW_AT_decl_file("/usr/share/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$160, DW_AT_decl_line(0x102)
.dwattr $C$DW$160, DW_AT_decl_column(0x0d)
.dwattr $C$DW$T$53, DW_AT_decl_file("/usr/share/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$T$53, DW_AT_decl_line(0x101)
.dwattr $C$DW$T$53, DW_AT_decl_column(0x13)
.dwendtag $C$DW$T$53
$C$DW$T$183 .dwtag DW_TAG_volatile_type
.dwattr $C$DW$T$183, DW_AT_type(*$C$DW$T$53)
$C$DW$T$54 .dwtag DW_TAG_structure_type
.dwattr $C$DW$T$54, DW_AT_byte_size(0x04)
$C$DW$161 .dwtag DW_TAG_member
.dwattr $C$DW$161, DW_AT_type(*$C$DW$T$11)
.dwattr $C$DW$161, DW_AT_name("EN_CLR_63_32")
.dwattr $C$DW$161, DW_AT_TI_symbol_name("EN_CLR_63_32")
.dwattr $C$DW$161, DW_AT_bit_offset(0x00)
.dwattr $C$DW$161, DW_AT_bit_size(0x20)
.dwattr $C$DW$161, DW_AT_data_member_location[DW_OP_plus_uconst 0x0]
.dwattr $C$DW$161, DW_AT_accessibility(DW_ACCESS_public)
.dwattr $C$DW$161, DW_AT_decl_file("/usr/share/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$161, DW_AT_decl_line(0x10c)
.dwattr $C$DW$161, DW_AT_decl_column(0x0d)
.dwattr $C$DW$T$54, DW_AT_decl_file("/usr/share/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$T$54, DW_AT_decl_line(0x10b)
.dwattr $C$DW$T$54, DW_AT_decl_column(0x13)
.dwendtag $C$DW$T$54
$C$DW$T$185 .dwtag DW_TAG_volatile_type
.dwattr $C$DW$T$185, DW_AT_type(*$C$DW$T$54)
$C$DW$T$55 .dwtag DW_TAG_structure_type
.dwattr $C$DW$T$55, DW_AT_byte_size(0x04)
$C$DW$162 .dwtag DW_TAG_member
.dwattr $C$DW$162, DW_AT_type(*$C$DW$T$11)
.dwattr $C$DW$162, DW_AT_name("CH_MAP_0")
.dwattr $C$DW$162, DW_AT_TI_symbol_name("CH_MAP_0")
.dwattr $C$DW$162, DW_AT_bit_offset(0x1c)
.dwattr $C$DW$162, DW_AT_bit_size(0x04)
.dwattr $C$DW$162, DW_AT_data_member_location[DW_OP_plus_uconst 0x0]
.dwattr $C$DW$162, DW_AT_accessibility(DW_ACCESS_public)
.dwattr $C$DW$162, DW_AT_decl_file("/usr/share/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$162, DW_AT_decl_line(0x119)
.dwattr $C$DW$162, DW_AT_decl_column(0x0d)
$C$DW$163 .dwtag DW_TAG_member
.dwattr $C$DW$163, DW_AT_type(*$C$DW$T$11)
.dwattr $C$DW$163, DW_AT_name("rsvd4")
.dwattr $C$DW$163, DW_AT_TI_symbol_name("rsvd4")
.dwattr $C$DW$163, DW_AT_bit_offset(0x18)
.dwattr $C$DW$163, DW_AT_bit_size(0x04)
.dwattr $C$DW$163, DW_AT_data_member_location[DW_OP_plus_uconst 0x0]
.dwattr $C$DW$163, DW_AT_accessibility(DW_ACCESS_public)
.dwattr $C$DW$163, DW_AT_decl_file("/usr/share/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$163, DW_AT_decl_line(0x11a)
.dwattr $C$DW$163, DW_AT_decl_column(0x0d)
$C$DW$164 .dwtag DW_TAG_member
.dwattr $C$DW$164, DW_AT_type(*$C$DW$T$11)
.dwattr $C$DW$164, DW_AT_name("CH_MAP_1")
.dwattr $C$DW$164, DW_AT_TI_symbol_name("CH_MAP_1")
.dwattr $C$DW$164, DW_AT_bit_offset(0x14)
.dwattr $C$DW$164, DW_AT_bit_size(0x04)
.dwattr $C$DW$164, DW_AT_data_member_location[DW_OP_plus_uconst 0x0]
.dwattr $C$DW$164, DW_AT_accessibility(DW_ACCESS_public)
.dwattr $C$DW$164, DW_AT_decl_file("/usr/share/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$164, DW_AT_decl_line(0x11b)
.dwattr $C$DW$164, DW_AT_decl_column(0x0d)
$C$DW$165 .dwtag DW_TAG_member
.dwattr $C$DW$165, DW_AT_type(*$C$DW$T$11)
.dwattr $C$DW$165, DW_AT_name("rsvd12")
.dwattr $C$DW$165, DW_AT_TI_symbol_name("rsvd12")
.dwattr $C$DW$165, DW_AT_bit_offset(0x10)
.dwattr $C$DW$165, DW_AT_bit_size(0x04)
.dwattr $C$DW$165, DW_AT_data_member_location[DW_OP_plus_uconst 0x0]
.dwattr $C$DW$165, DW_AT_accessibility(DW_ACCESS_public)
.dwattr $C$DW$165, DW_AT_decl_file("/usr/share/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$165, DW_AT_decl_line(0x11c)
.dwattr $C$DW$165, DW_AT_decl_column(0x0d)
$C$DW$166 .dwtag DW_TAG_member
.dwattr $C$DW$166, DW_AT_type(*$C$DW$T$11)
.dwattr $C$DW$166, DW_AT_name("CH_MAP_2")
.dwattr $C$DW$166, DW_AT_TI_symbol_name("CH_MAP_2")
.dwattr $C$DW$166, DW_AT_bit_offset(0x0c)
.dwattr $C$DW$166, DW_AT_bit_size(0x04)
.dwattr $C$DW$166, DW_AT_data_member_location[DW_OP_plus_uconst 0x0]
.dwattr $C$DW$166, DW_AT_accessibility(DW_ACCESS_public)
.dwattr $C$DW$166, DW_AT_decl_file("/usr/share/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$166, DW_AT_decl_line(0x11d)
.dwattr $C$DW$166, DW_AT_decl_column(0x0d)
$C$DW$167 .dwtag DW_TAG_member
.dwattr $C$DW$167, DW_AT_type(*$C$DW$T$11)
.dwattr $C$DW$167, DW_AT_name("rsvd20")
.dwattr $C$DW$167, DW_AT_TI_symbol_name("rsvd20")
.dwattr $C$DW$167, DW_AT_bit_offset(0x08)
.dwattr $C$DW$167, DW_AT_bit_size(0x04)
.dwattr $C$DW$167, DW_AT_data_member_location[DW_OP_plus_uconst 0x0]
.dwattr $C$DW$167, DW_AT_accessibility(DW_ACCESS_public)
.dwattr $C$DW$167, DW_AT_decl_file("/usr/share/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$167, DW_AT_decl_line(0x11e)
.dwattr $C$DW$167, DW_AT_decl_column(0x0d)
$C$DW$168 .dwtag DW_TAG_member
.dwattr $C$DW$168, DW_AT_type(*$C$DW$T$11)
.dwattr $C$DW$168, DW_AT_name("CH_MAP_3")
.dwattr $C$DW$168, DW_AT_TI_symbol_name("CH_MAP_3")
.dwattr $C$DW$168, DW_AT_bit_offset(0x04)
.dwattr $C$DW$168, DW_AT_bit_size(0x04)
.dwattr $C$DW$168, DW_AT_data_member_location[DW_OP_plus_uconst 0x0]
.dwattr $C$DW$168, DW_AT_accessibility(DW_ACCESS_public)
.dwattr $C$DW$168, DW_AT_decl_file("/usr/share/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$168, DW_AT_decl_line(0x11f)
.dwattr $C$DW$168, DW_AT_decl_column(0x0d)
$C$DW$169 .dwtag DW_TAG_member
.dwattr $C$DW$169, DW_AT_type(*$C$DW$T$11)
.dwattr $C$DW$169, DW_AT_name("rsvd28")
.dwattr $C$DW$169, DW_AT_TI_symbol_name("rsvd28")
.dwattr $C$DW$169, DW_AT_bit_offset(0x00)
.dwattr $C$DW$169, DW_AT_bit_size(0x04)
.dwattr $C$DW$169, DW_AT_data_member_location[DW_OP_plus_uconst 0x0]
.dwattr $C$DW$169, DW_AT_accessibility(DW_ACCESS_public)
.dwattr $C$DW$169, DW_AT_decl_file("/usr/share/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$169, DW_AT_decl_line(0x120)
.dwattr $C$DW$169, DW_AT_decl_column(0x0d)
.dwattr $C$DW$T$55, DW_AT_decl_file("/usr/share/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$T$55, DW_AT_decl_line(0x118)
.dwattr $C$DW$T$55, DW_AT_decl_column(0x13)
.dwendtag $C$DW$T$55
$C$DW$T$187 .dwtag DW_TAG_volatile_type
.dwattr $C$DW$T$187, DW_AT_type(*$C$DW$T$55)
$C$DW$T$56 .dwtag DW_TAG_structure_type
.dwattr $C$DW$T$56, DW_AT_byte_size(0x04)
$C$DW$170 .dwtag DW_TAG_member
.dwattr $C$DW$170, DW_AT_type(*$C$DW$T$11)
.dwattr $C$DW$170, DW_AT_name("CH_MAP_4")
.dwattr $C$DW$170, DW_AT_TI_symbol_name("CH_MAP_4")
.dwattr $C$DW$170, DW_AT_bit_offset(0x1c)
.dwattr $C$DW$170, DW_AT_bit_size(0x04)
.dwattr $C$DW$170, DW_AT_data_member_location[DW_OP_plus_uconst 0x0]
.dwattr $C$DW$170, DW_AT_accessibility(DW_ACCESS_public)
.dwattr $C$DW$170, DW_AT_decl_file("/usr/share/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$170, DW_AT_decl_line(0x12a)
.dwattr $C$DW$170, DW_AT_decl_column(0x0d)
$C$DW$171 .dwtag DW_TAG_member
.dwattr $C$DW$171, DW_AT_type(*$C$DW$T$11)
.dwattr $C$DW$171, DW_AT_name("rsvd4")
.dwattr $C$DW$171, DW_AT_TI_symbol_name("rsvd4")
.dwattr $C$DW$171, DW_AT_bit_offset(0x18)
.dwattr $C$DW$171, DW_AT_bit_size(0x04)
.dwattr $C$DW$171, DW_AT_data_member_location[DW_OP_plus_uconst 0x0]
.dwattr $C$DW$171, DW_AT_accessibility(DW_ACCESS_public)
.dwattr $C$DW$171, DW_AT_decl_file("/usr/share/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$171, DW_AT_decl_line(0x12b)
.dwattr $C$DW$171, DW_AT_decl_column(0x0d)
$C$DW$172 .dwtag DW_TAG_member
.dwattr $C$DW$172, DW_AT_type(*$C$DW$T$11)
.dwattr $C$DW$172, DW_AT_name("CH_MAP_5")
.dwattr $C$DW$172, DW_AT_TI_symbol_name("CH_MAP_5")
.dwattr $C$DW$172, DW_AT_bit_offset(0x14)
.dwattr $C$DW$172, DW_AT_bit_size(0x04)
.dwattr $C$DW$172, DW_AT_data_member_location[DW_OP_plus_uconst 0x0]
.dwattr $C$DW$172, DW_AT_accessibility(DW_ACCESS_public)
.dwattr $C$DW$172, DW_AT_decl_file("/usr/share/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$172, DW_AT_decl_line(0x12c)
.dwattr $C$DW$172, DW_AT_decl_column(0x0d)
$C$DW$173 .dwtag DW_TAG_member
.dwattr $C$DW$173, DW_AT_type(*$C$DW$T$11)
.dwattr $C$DW$173, DW_AT_name("rsvd12")
.dwattr $C$DW$173, DW_AT_TI_symbol_name("rsvd12")
.dwattr $C$DW$173, DW_AT_bit_offset(0x10)
.dwattr $C$DW$173, DW_AT_bit_size(0x04)
.dwattr $C$DW$173, DW_AT_data_member_location[DW_OP_plus_uconst 0x0]
.dwattr $C$DW$173, DW_AT_accessibility(DW_ACCESS_public)
.dwattr $C$DW$173, DW_AT_decl_file("/usr/share/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$173, DW_AT_decl_line(0x12d)
.dwattr $C$DW$173, DW_AT_decl_column(0x0d)
$C$DW$174 .dwtag DW_TAG_member
.dwattr $C$DW$174, DW_AT_type(*$C$DW$T$11)
.dwattr $C$DW$174, DW_AT_name("CH_MAP_6")
.dwattr $C$DW$174, DW_AT_TI_symbol_name("CH_MAP_6")
.dwattr $C$DW$174, DW_AT_bit_offset(0x0c)
.dwattr $C$DW$174, DW_AT_bit_size(0x04)
.dwattr $C$DW$174, DW_AT_data_member_location[DW_OP_plus_uconst 0x0]
.dwattr $C$DW$174, DW_AT_accessibility(DW_ACCESS_public)
.dwattr $C$DW$174, DW_AT_decl_file("/usr/share/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$174, DW_AT_decl_line(0x12e)
.dwattr $C$DW$174, DW_AT_decl_column(0x0d)
$C$DW$175 .dwtag DW_TAG_member
.dwattr $C$DW$175, DW_AT_type(*$C$DW$T$11)
.dwattr $C$DW$175, DW_AT_name("rsvd20")
.dwattr $C$DW$175, DW_AT_TI_symbol_name("rsvd20")
.dwattr $C$DW$175, DW_AT_bit_offset(0x08)
.dwattr $C$DW$175, DW_AT_bit_size(0x04)
.dwattr $C$DW$175, DW_AT_data_member_location[DW_OP_plus_uconst 0x0]
.dwattr $C$DW$175, DW_AT_accessibility(DW_ACCESS_public)
.dwattr $C$DW$175, DW_AT_decl_file("/usr/share/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$175, DW_AT_decl_line(0x12f)
.dwattr $C$DW$175, DW_AT_decl_column(0x0d)
$C$DW$176 .dwtag DW_TAG_member
.dwattr $C$DW$176, DW_AT_type(*$C$DW$T$11)
.dwattr $C$DW$176, DW_AT_name("CH_MAP_7")
.dwattr $C$DW$176, DW_AT_TI_symbol_name("CH_MAP_7")
.dwattr $C$DW$176, DW_AT_bit_offset(0x04)
.dwattr $C$DW$176, DW_AT_bit_size(0x04)
.dwattr $C$DW$176, DW_AT_data_member_location[DW_OP_plus_uconst 0x0]
.dwattr $C$DW$176, DW_AT_accessibility(DW_ACCESS_public)
.dwattr $C$DW$176, DW_AT_decl_file("/usr/share/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$176, DW_AT_decl_line(0x130)
.dwattr $C$DW$176, DW_AT_decl_column(0x0d)
$C$DW$177 .dwtag DW_TAG_member
.dwattr $C$DW$177, DW_AT_type(*$C$DW$T$11)
.dwattr $C$DW$177, DW_AT_name("rsvd28")
.dwattr $C$DW$177, DW_AT_TI_symbol_name("rsvd28")
.dwattr $C$DW$177, DW_AT_bit_offset(0x00)
.dwattr $C$DW$177, DW_AT_bit_size(0x04)
.dwattr $C$DW$177, DW_AT_data_member_location[DW_OP_plus_uconst 0x0]
.dwattr $C$DW$177, DW_AT_accessibility(DW_ACCESS_public)
.dwattr $C$DW$177, DW_AT_decl_file("/usr/share/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$177, DW_AT_decl_line(0x131)
.dwattr $C$DW$177, DW_AT_decl_column(0x0d)
.dwattr $C$DW$T$56, DW_AT_decl_file("/usr/share/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$T$56, DW_AT_decl_line(0x129)
.dwattr $C$DW$T$56, DW_AT_decl_column(0x13)
.dwendtag $C$DW$T$56
$C$DW$T$189 .dwtag DW_TAG_volatile_type
.dwattr $C$DW$T$189, DW_AT_type(*$C$DW$T$56)
$C$DW$T$57 .dwtag DW_TAG_structure_type
.dwattr $C$DW$T$57, DW_AT_byte_size(0x04)
$C$DW$178 .dwtag DW_TAG_member
.dwattr $C$DW$178, DW_AT_type(*$C$DW$T$11)
.dwattr $C$DW$178, DW_AT_name("CH_MAP_8")
.dwattr $C$DW$178, DW_AT_TI_symbol_name("CH_MAP_8")
.dwattr $C$DW$178, DW_AT_bit_offset(0x1c)
.dwattr $C$DW$178, DW_AT_bit_size(0x04)
.dwattr $C$DW$178, DW_AT_data_member_location[DW_OP_plus_uconst 0x0]
.dwattr $C$DW$178, DW_AT_accessibility(DW_ACCESS_public)
.dwattr $C$DW$178, DW_AT_decl_file("/usr/share/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$178, DW_AT_decl_line(0x13b)
.dwattr $C$DW$178, DW_AT_decl_column(0x0d)
$C$DW$179 .dwtag DW_TAG_member
.dwattr $C$DW$179, DW_AT_type(*$C$DW$T$11)
.dwattr $C$DW$179, DW_AT_name("rsvd4")
.dwattr $C$DW$179, DW_AT_TI_symbol_name("rsvd4")
.dwattr $C$DW$179, DW_AT_bit_offset(0x18)
.dwattr $C$DW$179, DW_AT_bit_size(0x04)
.dwattr $C$DW$179, DW_AT_data_member_location[DW_OP_plus_uconst 0x0]
.dwattr $C$DW$179, DW_AT_accessibility(DW_ACCESS_public)
.dwattr $C$DW$179, DW_AT_decl_file("/usr/share/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$179, DW_AT_decl_line(0x13c)
.dwattr $C$DW$179, DW_AT_decl_column(0x0d)
$C$DW$180 .dwtag DW_TAG_member
.dwattr $C$DW$180, DW_AT_type(*$C$DW$T$11)
.dwattr $C$DW$180, DW_AT_name("CH_MAP_9")
.dwattr $C$DW$180, DW_AT_TI_symbol_name("CH_MAP_9")
.dwattr $C$DW$180, DW_AT_bit_offset(0x14)
.dwattr $C$DW$180, DW_AT_bit_size(0x04)
.dwattr $C$DW$180, DW_AT_data_member_location[DW_OP_plus_uconst 0x0]
.dwattr $C$DW$180, DW_AT_accessibility(DW_ACCESS_public)
.dwattr $C$DW$180, DW_AT_decl_file("/usr/share/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$180, DW_AT_decl_line(0x13d)
.dwattr $C$DW$180, DW_AT_decl_column(0x0d)
$C$DW$181 .dwtag DW_TAG_member
.dwattr $C$DW$181, DW_AT_type(*$C$DW$T$11)
.dwattr $C$DW$181, DW_AT_name("rsvd12")
.dwattr $C$DW$181, DW_AT_TI_symbol_name("rsvd12")
.dwattr $C$DW$181, DW_AT_bit_offset(0x10)
.dwattr $C$DW$181, DW_AT_bit_size(0x04)
.dwattr $C$DW$181, DW_AT_data_member_location[DW_OP_plus_uconst 0x0]
.dwattr $C$DW$181, DW_AT_accessibility(DW_ACCESS_public)
.dwattr $C$DW$181, DW_AT_decl_file("/usr/share/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$181, DW_AT_decl_line(0x13e)
.dwattr $C$DW$181, DW_AT_decl_column(0x0d)
$C$DW$182 .dwtag DW_TAG_member
.dwattr $C$DW$182, DW_AT_type(*$C$DW$T$11)
.dwattr $C$DW$182, DW_AT_name("CH_MAP_10")
.dwattr $C$DW$182, DW_AT_TI_symbol_name("CH_MAP_10")
.dwattr $C$DW$182, DW_AT_bit_offset(0x0c)
.dwattr $C$DW$182, DW_AT_bit_size(0x04)
.dwattr $C$DW$182, DW_AT_data_member_location[DW_OP_plus_uconst 0x0]
.dwattr $C$DW$182, DW_AT_accessibility(DW_ACCESS_public)
.dwattr $C$DW$182, DW_AT_decl_file("/usr/share/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$182, DW_AT_decl_line(0x13f)
.dwattr $C$DW$182, DW_AT_decl_column(0x0d)
$C$DW$183 .dwtag DW_TAG_member
.dwattr $C$DW$183, DW_AT_type(*$C$DW$T$11)
.dwattr $C$DW$183, DW_AT_name("rsvd20")
.dwattr $C$DW$183, DW_AT_TI_symbol_name("rsvd20")
.dwattr $C$DW$183, DW_AT_bit_offset(0x08)
.dwattr $C$DW$183, DW_AT_bit_size(0x04)
.dwattr $C$DW$183, DW_AT_data_member_location[DW_OP_plus_uconst 0x0]
.dwattr $C$DW$183, DW_AT_accessibility(DW_ACCESS_public)
.dwattr $C$DW$183, DW_AT_decl_file("/usr/share/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$183, DW_AT_decl_line(0x140)
.dwattr $C$DW$183, DW_AT_decl_column(0x0d)
$C$DW$184 .dwtag DW_TAG_member
.dwattr $C$DW$184, DW_AT_type(*$C$DW$T$11)
.dwattr $C$DW$184, DW_AT_name("CH_MAP_11")
.dwattr $C$DW$184, DW_AT_TI_symbol_name("CH_MAP_11")
.dwattr $C$DW$184, DW_AT_bit_offset(0x04)
.dwattr $C$DW$184, DW_AT_bit_size(0x04)
.dwattr $C$DW$184, DW_AT_data_member_location[DW_OP_plus_uconst 0x0]
.dwattr $C$DW$184, DW_AT_accessibility(DW_ACCESS_public)
.dwattr $C$DW$184, DW_AT_decl_file("/usr/share/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$184, DW_AT_decl_line(0x141)
.dwattr $C$DW$184, DW_AT_decl_column(0x0d)
$C$DW$185 .dwtag DW_TAG_member
.dwattr $C$DW$185, DW_AT_type(*$C$DW$T$11)
.dwattr $C$DW$185, DW_AT_name("rsvd28")
.dwattr $C$DW$185, DW_AT_TI_symbol_name("rsvd28")
.dwattr $C$DW$185, DW_AT_bit_offset(0x00)
.dwattr $C$DW$185, DW_AT_bit_size(0x04)
.dwattr $C$DW$185, DW_AT_data_member_location[DW_OP_plus_uconst 0x0]
.dwattr $C$DW$185, DW_AT_accessibility(DW_ACCESS_public)
.dwattr $C$DW$185, DW_AT_decl_file("/usr/share/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$185, DW_AT_decl_line(0x142)
.dwattr $C$DW$185, DW_AT_decl_column(0x0d)
.dwattr $C$DW$T$57, DW_AT_decl_file("/usr/share/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$T$57, DW_AT_decl_line(0x13a)
.dwattr $C$DW$T$57, DW_AT_decl_column(0x13)
.dwendtag $C$DW$T$57
$C$DW$T$191 .dwtag DW_TAG_volatile_type
.dwattr $C$DW$T$191, DW_AT_type(*$C$DW$T$57)
$C$DW$T$58 .dwtag DW_TAG_structure_type
.dwattr $C$DW$T$58, DW_AT_byte_size(0x04)
$C$DW$186 .dwtag DW_TAG_member
.dwattr $C$DW$186, DW_AT_type(*$C$DW$T$11)
.dwattr $C$DW$186, DW_AT_name("CH_MAP_12")
.dwattr $C$DW$186, DW_AT_TI_symbol_name("CH_MAP_12")
.dwattr $C$DW$186, DW_AT_bit_offset(0x1c)
.dwattr $C$DW$186, DW_AT_bit_size(0x04)
.dwattr $C$DW$186, DW_AT_data_member_location[DW_OP_plus_uconst 0x0]
.dwattr $C$DW$186, DW_AT_accessibility(DW_ACCESS_public)
.dwattr $C$DW$186, DW_AT_decl_file("/usr/share/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$186, DW_AT_decl_line(0x14c)
.dwattr $C$DW$186, DW_AT_decl_column(0x0d)
$C$DW$187 .dwtag DW_TAG_member
.dwattr $C$DW$187, DW_AT_type(*$C$DW$T$11)
.dwattr $C$DW$187, DW_AT_name("rsvd4")
.dwattr $C$DW$187, DW_AT_TI_symbol_name("rsvd4")
.dwattr $C$DW$187, DW_AT_bit_offset(0x18)
.dwattr $C$DW$187, DW_AT_bit_size(0x04)
.dwattr $C$DW$187, DW_AT_data_member_location[DW_OP_plus_uconst 0x0]
.dwattr $C$DW$187, DW_AT_accessibility(DW_ACCESS_public)
.dwattr $C$DW$187, DW_AT_decl_file("/usr/share/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$187, DW_AT_decl_line(0x14d)
.dwattr $C$DW$187, DW_AT_decl_column(0x0d)
$C$DW$188 .dwtag DW_TAG_member
.dwattr $C$DW$188, DW_AT_type(*$C$DW$T$11)
.dwattr $C$DW$188, DW_AT_name("CH_MAP_13")
.dwattr $C$DW$188, DW_AT_TI_symbol_name("CH_MAP_13")
.dwattr $C$DW$188, DW_AT_bit_offset(0x14)
.dwattr $C$DW$188, DW_AT_bit_size(0x04)
.dwattr $C$DW$188, DW_AT_data_member_location[DW_OP_plus_uconst 0x0]
.dwattr $C$DW$188, DW_AT_accessibility(DW_ACCESS_public)
.dwattr $C$DW$188, DW_AT_decl_file("/usr/share/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$188, DW_AT_decl_line(0x14e)
.dwattr $C$DW$188, DW_AT_decl_column(0x0d)
$C$DW$189 .dwtag DW_TAG_member
.dwattr $C$DW$189, DW_AT_type(*$C$DW$T$11)
.dwattr $C$DW$189, DW_AT_name("rsvd12")
.dwattr $C$DW$189, DW_AT_TI_symbol_name("rsvd12")
.dwattr $C$DW$189, DW_AT_bit_offset(0x10)
.dwattr $C$DW$189, DW_AT_bit_size(0x04)
.dwattr $C$DW$189, DW_AT_data_member_location[DW_OP_plus_uconst 0x0]
.dwattr $C$DW$189, DW_AT_accessibility(DW_ACCESS_public)
.dwattr $C$DW$189, DW_AT_decl_file("/usr/share/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$189, DW_AT_decl_line(0x14f)
.dwattr $C$DW$189, DW_AT_decl_column(0x0d)
$C$DW$190 .dwtag DW_TAG_member
.dwattr $C$DW$190, DW_AT_type(*$C$DW$T$11)
.dwattr $C$DW$190, DW_AT_name("CH_MAP_14")
.dwattr $C$DW$190, DW_AT_TI_symbol_name("CH_MAP_14")
.dwattr $C$DW$190, DW_AT_bit_offset(0x0c)
.dwattr $C$DW$190, DW_AT_bit_size(0x04)
.dwattr $C$DW$190, DW_AT_data_member_location[DW_OP_plus_uconst 0x0]
.dwattr $C$DW$190, DW_AT_accessibility(DW_ACCESS_public)
.dwattr $C$DW$190, DW_AT_decl_file("/usr/share/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$190, DW_AT_decl_line(0x150)
.dwattr $C$DW$190, DW_AT_decl_column(0x0d)
$C$DW$191 .dwtag DW_TAG_member
.dwattr $C$DW$191, DW_AT_type(*$C$DW$T$11)
.dwattr $C$DW$191, DW_AT_name("rsvd20")
.dwattr $C$DW$191, DW_AT_TI_symbol_name("rsvd20")
.dwattr $C$DW$191, DW_AT_bit_offset(0x08)
.dwattr $C$DW$191, DW_AT_bit_size(0x04)
.dwattr $C$DW$191, DW_AT_data_member_location[DW_OP_plus_uconst 0x0]
.dwattr $C$DW$191, DW_AT_accessibility(DW_ACCESS_public)
.dwattr $C$DW$191, DW_AT_decl_file("/usr/share/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$191, DW_AT_decl_line(0x151)
.dwattr $C$DW$191, DW_AT_decl_column(0x0d)
$C$DW$192 .dwtag DW_TAG_member
.dwattr $C$DW$192, DW_AT_type(*$C$DW$T$11)
.dwattr $C$DW$192, DW_AT_name("CH_MAP_15")
.dwattr $C$DW$192, DW_AT_TI_symbol_name("CH_MAP_15")
.dwattr $C$DW$192, DW_AT_bit_offset(0x04)
.dwattr $C$DW$192, DW_AT_bit_size(0x04)
.dwattr $C$DW$192, DW_AT_data_member_location[DW_OP_plus_uconst 0x0]
.dwattr $C$DW$192, DW_AT_accessibility(DW_ACCESS_public)
.dwattr $C$DW$192, DW_AT_decl_file("/usr/share/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$192, DW_AT_decl_line(0x152)
.dwattr $C$DW$192, DW_AT_decl_column(0x0d)
$C$DW$193 .dwtag DW_TAG_member
.dwattr $C$DW$193, DW_AT_type(*$C$DW$T$11)
.dwattr $C$DW$193, DW_AT_name("rsvd28")
.dwattr $C$DW$193, DW_AT_TI_symbol_name("rsvd28")
.dwattr $C$DW$193, DW_AT_bit_offset(0x00)
.dwattr $C$DW$193, DW_AT_bit_size(0x04)
.dwattr $C$DW$193, DW_AT_data_member_location[DW_OP_plus_uconst 0x0]
.dwattr $C$DW$193, DW_AT_accessibility(DW_ACCESS_public)
.dwattr $C$DW$193, DW_AT_decl_file("/usr/share/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$193, DW_AT_decl_line(0x153)
.dwattr $C$DW$193, DW_AT_decl_column(0x0d)
.dwattr $C$DW$T$58, DW_AT_decl_file("/usr/share/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$T$58, DW_AT_decl_line(0x14b)
.dwattr $C$DW$T$58, DW_AT_decl_column(0x13)
.dwendtag $C$DW$T$58
$C$DW$T$193 .dwtag DW_TAG_volatile_type
.dwattr $C$DW$T$193, DW_AT_type(*$C$DW$T$58)
$C$DW$T$59 .dwtag DW_TAG_structure_type
.dwattr $C$DW$T$59, DW_AT_byte_size(0x04)
$C$DW$194 .dwtag DW_TAG_member
.dwattr $C$DW$194, DW_AT_type(*$C$DW$T$11)
.dwattr $C$DW$194, DW_AT_name("CH_MAP_16")
.dwattr $C$DW$194, DW_AT_TI_symbol_name("CH_MAP_16")
.dwattr $C$DW$194, DW_AT_bit_offset(0x1c)
.dwattr $C$DW$194, DW_AT_bit_size(0x04)
.dwattr $C$DW$194, DW_AT_data_member_location[DW_OP_plus_uconst 0x0]
.dwattr $C$DW$194, DW_AT_accessibility(DW_ACCESS_public)
.dwattr $C$DW$194, DW_AT_decl_file("/usr/share/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$194, DW_AT_decl_line(0x15d)
.dwattr $C$DW$194, DW_AT_decl_column(0x0d)
$C$DW$195 .dwtag DW_TAG_member
.dwattr $C$DW$195, DW_AT_type(*$C$DW$T$11)
.dwattr $C$DW$195, DW_AT_name("rsvd4")
.dwattr $C$DW$195, DW_AT_TI_symbol_name("rsvd4")
.dwattr $C$DW$195, DW_AT_bit_offset(0x18)
.dwattr $C$DW$195, DW_AT_bit_size(0x04)
.dwattr $C$DW$195, DW_AT_data_member_location[DW_OP_plus_uconst 0x0]
.dwattr $C$DW$195, DW_AT_accessibility(DW_ACCESS_public)
.dwattr $C$DW$195, DW_AT_decl_file("/usr/share/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$195, DW_AT_decl_line(0x15e)
.dwattr $C$DW$195, DW_AT_decl_column(0x0d)
$C$DW$196 .dwtag DW_TAG_member
.dwattr $C$DW$196, DW_AT_type(*$C$DW$T$11)
.dwattr $C$DW$196, DW_AT_name("CH_MAP_17")
.dwattr $C$DW$196, DW_AT_TI_symbol_name("CH_MAP_17")
.dwattr $C$DW$196, DW_AT_bit_offset(0x14)
.dwattr $C$DW$196, DW_AT_bit_size(0x04)
.dwattr $C$DW$196, DW_AT_data_member_location[DW_OP_plus_uconst 0x0]
.dwattr $C$DW$196, DW_AT_accessibility(DW_ACCESS_public)
.dwattr $C$DW$196, DW_AT_decl_file("/usr/share/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$196, DW_AT_decl_line(0x15f)
.dwattr $C$DW$196, DW_AT_decl_column(0x0d)
$C$DW$197 .dwtag DW_TAG_member
.dwattr $C$DW$197, DW_AT_type(*$C$DW$T$11)
.dwattr $C$DW$197, DW_AT_name("rsvd12")
.dwattr $C$DW$197, DW_AT_TI_symbol_name("rsvd12")
.dwattr $C$DW$197, DW_AT_bit_offset(0x10)
.dwattr $C$DW$197, DW_AT_bit_size(0x04)
.dwattr $C$DW$197, DW_AT_data_member_location[DW_OP_plus_uconst 0x0]
.dwattr $C$DW$197, DW_AT_accessibility(DW_ACCESS_public)
.dwattr $C$DW$197, DW_AT_decl_file("/usr/share/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$197, DW_AT_decl_line(0x160)
.dwattr $C$DW$197, DW_AT_decl_column(0x0d)
$C$DW$198 .dwtag DW_TAG_member
.dwattr $C$DW$198, DW_AT_type(*$C$DW$T$11)
.dwattr $C$DW$198, DW_AT_name("CH_MAP_18")
.dwattr $C$DW$198, DW_AT_TI_symbol_name("CH_MAP_18")
.dwattr $C$DW$198, DW_AT_bit_offset(0x0c)
.dwattr $C$DW$198, DW_AT_bit_size(0x04)
.dwattr $C$DW$198, DW_AT_data_member_location[DW_OP_plus_uconst 0x0]
.dwattr $C$DW$198, DW_AT_accessibility(DW_ACCESS_public)
.dwattr $C$DW$198, DW_AT_decl_file("/usr/share/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$198, DW_AT_decl_line(0x161)
.dwattr $C$DW$198, DW_AT_decl_column(0x0d)
$C$DW$199 .dwtag DW_TAG_member
.dwattr $C$DW$199, DW_AT_type(*$C$DW$T$11)
.dwattr $C$DW$199, DW_AT_name("rsvd20")
.dwattr $C$DW$199, DW_AT_TI_symbol_name("rsvd20")
.dwattr $C$DW$199, DW_AT_bit_offset(0x08)
.dwattr $C$DW$199, DW_AT_bit_size(0x04)
.dwattr $C$DW$199, DW_AT_data_member_location[DW_OP_plus_uconst 0x0]
.dwattr $C$DW$199, DW_AT_accessibility(DW_ACCESS_public)
.dwattr $C$DW$199, DW_AT_decl_file("/usr/share/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$199, DW_AT_decl_line(0x162)
.dwattr $C$DW$199, DW_AT_decl_column(0x0d)
$C$DW$200 .dwtag DW_TAG_member
.dwattr $C$DW$200, DW_AT_type(*$C$DW$T$11)
.dwattr $C$DW$200, DW_AT_name("CH_MAP_19")
.dwattr $C$DW$200, DW_AT_TI_symbol_name("CH_MAP_19")
.dwattr $C$DW$200, DW_AT_bit_offset(0x04)
.dwattr $C$DW$200, DW_AT_bit_size(0x04)
.dwattr $C$DW$200, DW_AT_data_member_location[DW_OP_plus_uconst 0x0]
.dwattr $C$DW$200, DW_AT_accessibility(DW_ACCESS_public)
.dwattr $C$DW$200, DW_AT_decl_file("/usr/share/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$200, DW_AT_decl_line(0x163)
.dwattr $C$DW$200, DW_AT_decl_column(0x0d)
$C$DW$201 .dwtag DW_TAG_member
.dwattr $C$DW$201, DW_AT_type(*$C$DW$T$11)
.dwattr $C$DW$201, DW_AT_name("rsvd28")
.dwattr $C$DW$201, DW_AT_TI_symbol_name("rsvd28")
.dwattr $C$DW$201, DW_AT_bit_offset(0x00)
.dwattr $C$DW$201, DW_AT_bit_size(0x04)
.dwattr $C$DW$201, DW_AT_data_member_location[DW_OP_plus_uconst 0x0]
.dwattr $C$DW$201, DW_AT_accessibility(DW_ACCESS_public)
.dwattr $C$DW$201, DW_AT_decl_file("/usr/share/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$201, DW_AT_decl_line(0x164)
.dwattr $C$DW$201, DW_AT_decl_column(0x0d)
.dwattr $C$DW$T$59, DW_AT_decl_file("/usr/share/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$T$59, DW_AT_decl_line(0x15c)
.dwattr $C$DW$T$59, DW_AT_decl_column(0x13)
.dwendtag $C$DW$T$59
$C$DW$T$195 .dwtag DW_TAG_volatile_type
.dwattr $C$DW$T$195, DW_AT_type(*$C$DW$T$59)
$C$DW$T$60 .dwtag DW_TAG_structure_type
.dwattr $C$DW$T$60, DW_AT_byte_size(0x04)
$C$DW$202 .dwtag DW_TAG_member
.dwattr $C$DW$202, DW_AT_type(*$C$DW$T$11)
.dwattr $C$DW$202, DW_AT_name("CH_MAP_20")
.dwattr $C$DW$202, DW_AT_TI_symbol_name("CH_MAP_20")
.dwattr $C$DW$202, DW_AT_bit_offset(0x1c)
.dwattr $C$DW$202, DW_AT_bit_size(0x04)
.dwattr $C$DW$202, DW_AT_data_member_location[DW_OP_plus_uconst 0x0]
.dwattr $C$DW$202, DW_AT_accessibility(DW_ACCESS_public)
.dwattr $C$DW$202, DW_AT_decl_file("/usr/share/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$202, DW_AT_decl_line(0x16e)
.dwattr $C$DW$202, DW_AT_decl_column(0x0d)
$C$DW$203 .dwtag DW_TAG_member
.dwattr $C$DW$203, DW_AT_type(*$C$DW$T$11)
.dwattr $C$DW$203, DW_AT_name("rsvd4")
.dwattr $C$DW$203, DW_AT_TI_symbol_name("rsvd4")
.dwattr $C$DW$203, DW_AT_bit_offset(0x18)
.dwattr $C$DW$203, DW_AT_bit_size(0x04)
.dwattr $C$DW$203, DW_AT_data_member_location[DW_OP_plus_uconst 0x0]
.dwattr $C$DW$203, DW_AT_accessibility(DW_ACCESS_public)
.dwattr $C$DW$203, DW_AT_decl_file("/usr/share/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$203, DW_AT_decl_line(0x16f)
.dwattr $C$DW$203, DW_AT_decl_column(0x0d)
$C$DW$204 .dwtag DW_TAG_member
.dwattr $C$DW$204, DW_AT_type(*$C$DW$T$11)
.dwattr $C$DW$204, DW_AT_name("CH_MAP_21")
.dwattr $C$DW$204, DW_AT_TI_symbol_name("CH_MAP_21")
.dwattr $C$DW$204, DW_AT_bit_offset(0x14)
.dwattr $C$DW$204, DW_AT_bit_size(0x04)
.dwattr $C$DW$204, DW_AT_data_member_location[DW_OP_plus_uconst 0x0]
.dwattr $C$DW$204, DW_AT_accessibility(DW_ACCESS_public)
.dwattr $C$DW$204, DW_AT_decl_file("/usr/share/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$204, DW_AT_decl_line(0x170)
.dwattr $C$DW$204, DW_AT_decl_column(0x0d)
$C$DW$205 .dwtag DW_TAG_member
.dwattr $C$DW$205, DW_AT_type(*$C$DW$T$11)
.dwattr $C$DW$205, DW_AT_name("rsvd12")
.dwattr $C$DW$205, DW_AT_TI_symbol_name("rsvd12")
.dwattr $C$DW$205, DW_AT_bit_offset(0x10)
.dwattr $C$DW$205, DW_AT_bit_size(0x04)
.dwattr $C$DW$205, DW_AT_data_member_location[DW_OP_plus_uconst 0x0]
.dwattr $C$DW$205, DW_AT_accessibility(DW_ACCESS_public)
.dwattr $C$DW$205, DW_AT_decl_file("/usr/share/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$205, DW_AT_decl_line(0x171)
.dwattr $C$DW$205, DW_AT_decl_column(0x0d)
$C$DW$206 .dwtag DW_TAG_member
.dwattr $C$DW$206, DW_AT_type(*$C$DW$T$11)
.dwattr $C$DW$206, DW_AT_name("CH_MAP_22")
.dwattr $C$DW$206, DW_AT_TI_symbol_name("CH_MAP_22")
.dwattr $C$DW$206, DW_AT_bit_offset(0x0c)
.dwattr $C$DW$206, DW_AT_bit_size(0x04)
.dwattr $C$DW$206, DW_AT_data_member_location[DW_OP_plus_uconst 0x0]
.dwattr $C$DW$206, DW_AT_accessibility(DW_ACCESS_public)
.dwattr $C$DW$206, DW_AT_decl_file("/usr/share/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$206, DW_AT_decl_line(0x172)
.dwattr $C$DW$206, DW_AT_decl_column(0x0d)
$C$DW$207 .dwtag DW_TAG_member
.dwattr $C$DW$207, DW_AT_type(*$C$DW$T$11)
.dwattr $C$DW$207, DW_AT_name("rsvd20")
.dwattr $C$DW$207, DW_AT_TI_symbol_name("rsvd20")
.dwattr $C$DW$207, DW_AT_bit_offset(0x08)
.dwattr $C$DW$207, DW_AT_bit_size(0x04)
.dwattr $C$DW$207, DW_AT_data_member_location[DW_OP_plus_uconst 0x0]
.dwattr $C$DW$207, DW_AT_accessibility(DW_ACCESS_public)
.dwattr $C$DW$207, DW_AT_decl_file("/usr/share/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$207, DW_AT_decl_line(0x173)
.dwattr $C$DW$207, DW_AT_decl_column(0x0d)
$C$DW$208 .dwtag DW_TAG_member
.dwattr $C$DW$208, DW_AT_type(*$C$DW$T$11)
.dwattr $C$DW$208, DW_AT_name("CH_MAP_23")
.dwattr $C$DW$208, DW_AT_TI_symbol_name("CH_MAP_23")
.dwattr $C$DW$208, DW_AT_bit_offset(0x04)
.dwattr $C$DW$208, DW_AT_bit_size(0x04)
.dwattr $C$DW$208, DW_AT_data_member_location[DW_OP_plus_uconst 0x0]
.dwattr $C$DW$208, DW_AT_accessibility(DW_ACCESS_public)
.dwattr $C$DW$208, DW_AT_decl_file("/usr/share/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$208, DW_AT_decl_line(0x174)
.dwattr $C$DW$208, DW_AT_decl_column(0x0d)
$C$DW$209 .dwtag DW_TAG_member
.dwattr $C$DW$209, DW_AT_type(*$C$DW$T$11)
.dwattr $C$DW$209, DW_AT_name("rsvd28")
.dwattr $C$DW$209, DW_AT_TI_symbol_name("rsvd28")
.dwattr $C$DW$209, DW_AT_bit_offset(0x00)
.dwattr $C$DW$209, DW_AT_bit_size(0x04)
.dwattr $C$DW$209, DW_AT_data_member_location[DW_OP_plus_uconst 0x0]
.dwattr $C$DW$209, DW_AT_accessibility(DW_ACCESS_public)
.dwattr $C$DW$209, DW_AT_decl_file("/usr/share/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$209, DW_AT_decl_line(0x175)
.dwattr $C$DW$209, DW_AT_decl_column(0x0d)
.dwattr $C$DW$T$60, DW_AT_decl_file("/usr/share/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$T$60, DW_AT_decl_line(0x16d)
.dwattr $C$DW$T$60, DW_AT_decl_column(0x13)
.dwendtag $C$DW$T$60
$C$DW$T$197 .dwtag DW_TAG_volatile_type
.dwattr $C$DW$T$197, DW_AT_type(*$C$DW$T$60)
$C$DW$T$297 .dwtag DW_TAG_pointer_type
.dwattr $C$DW$T$297, DW_AT_type(*$C$DW$T$197)
.dwattr $C$DW$T$297, DW_AT_address_class(0x20)
$C$DW$T$61 .dwtag DW_TAG_structure_type
.dwattr $C$DW$T$61, DW_AT_byte_size(0x04)
$C$DW$210 .dwtag DW_TAG_member
.dwattr $C$DW$210, DW_AT_type(*$C$DW$T$11)
.dwattr $C$DW$210, DW_AT_name("CH_MAP_24")
.dwattr $C$DW$210, DW_AT_TI_symbol_name("CH_MAP_24")
.dwattr $C$DW$210, DW_AT_bit_offset(0x1c)
.dwattr $C$DW$210, DW_AT_bit_size(0x04)
.dwattr $C$DW$210, DW_AT_data_member_location[DW_OP_plus_uconst 0x0]
.dwattr $C$DW$210, DW_AT_accessibility(DW_ACCESS_public)
.dwattr $C$DW$210, DW_AT_decl_file("/usr/share/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$210, DW_AT_decl_line(0x17f)
.dwattr $C$DW$210, DW_AT_decl_column(0x0d)
$C$DW$211 .dwtag DW_TAG_member
.dwattr $C$DW$211, DW_AT_type(*$C$DW$T$11)
.dwattr $C$DW$211, DW_AT_name("rsvd4")
.dwattr $C$DW$211, DW_AT_TI_symbol_name("rsvd4")
.dwattr $C$DW$211, DW_AT_bit_offset(0x18)
.dwattr $C$DW$211, DW_AT_bit_size(0x04)
.dwattr $C$DW$211, DW_AT_data_member_location[DW_OP_plus_uconst 0x0]
.dwattr $C$DW$211, DW_AT_accessibility(DW_ACCESS_public)
.dwattr $C$DW$211, DW_AT_decl_file("/usr/share/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$211, DW_AT_decl_line(0x180)
.dwattr $C$DW$211, DW_AT_decl_column(0x0d)
$C$DW$212 .dwtag DW_TAG_member
.dwattr $C$DW$212, DW_AT_type(*$C$DW$T$11)
.dwattr $C$DW$212, DW_AT_name("CH_MAP_25")
.dwattr $C$DW$212, DW_AT_TI_symbol_name("CH_MAP_25")
.dwattr $C$DW$212, DW_AT_bit_offset(0x14)
.dwattr $C$DW$212, DW_AT_bit_size(0x04)
.dwattr $C$DW$212, DW_AT_data_member_location[DW_OP_plus_uconst 0x0]
.dwattr $C$DW$212, DW_AT_accessibility(DW_ACCESS_public)
.dwattr $C$DW$212, DW_AT_decl_file("/usr/share/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$212, DW_AT_decl_line(0x181)
.dwattr $C$DW$212, DW_AT_decl_column(0x0d)
$C$DW$213 .dwtag DW_TAG_member
.dwattr $C$DW$213, DW_AT_type(*$C$DW$T$11)
.dwattr $C$DW$213, DW_AT_name("rsvd12")
.dwattr $C$DW$213, DW_AT_TI_symbol_name("rsvd12")
.dwattr $C$DW$213, DW_AT_bit_offset(0x10)
.dwattr $C$DW$213, DW_AT_bit_size(0x04)
.dwattr $C$DW$213, DW_AT_data_member_location[DW_OP_plus_uconst 0x0]
.dwattr $C$DW$213, DW_AT_accessibility(DW_ACCESS_public)
.dwattr $C$DW$213, DW_AT_decl_file("/usr/share/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$213, DW_AT_decl_line(0x182)
.dwattr $C$DW$213, DW_AT_decl_column(0x0d)
$C$DW$214 .dwtag DW_TAG_member
.dwattr $C$DW$214, DW_AT_type(*$C$DW$T$11)
.dwattr $C$DW$214, DW_AT_name("CH_MAP_26")
.dwattr $C$DW$214, DW_AT_TI_symbol_name("CH_MAP_26")
.dwattr $C$DW$214, DW_AT_bit_offset(0x0c)
.dwattr $C$DW$214, DW_AT_bit_size(0x04)
.dwattr $C$DW$214, DW_AT_data_member_location[DW_OP_plus_uconst 0x0]
.dwattr $C$DW$214, DW_AT_accessibility(DW_ACCESS_public)
.dwattr $C$DW$214, DW_AT_decl_file("/usr/share/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$214, DW_AT_decl_line(0x183)
.dwattr $C$DW$214, DW_AT_decl_column(0x0d)
$C$DW$215 .dwtag DW_TAG_member
.dwattr $C$DW$215, DW_AT_type(*$C$DW$T$11)
.dwattr $C$DW$215, DW_AT_name("rsvd20")
.dwattr $C$DW$215, DW_AT_TI_symbol_name("rsvd20")
.dwattr $C$DW$215, DW_AT_bit_offset(0x08)
.dwattr $C$DW$215, DW_AT_bit_size(0x04)
.dwattr $C$DW$215, DW_AT_data_member_location[DW_OP_plus_uconst 0x0]
.dwattr $C$DW$215, DW_AT_accessibility(DW_ACCESS_public)
.dwattr $C$DW$215, DW_AT_decl_file("/usr/share/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$215, DW_AT_decl_line(0x184)
.dwattr $C$DW$215, DW_AT_decl_column(0x0d)
$C$DW$216 .dwtag DW_TAG_member
.dwattr $C$DW$216, DW_AT_type(*$C$DW$T$11)
.dwattr $C$DW$216, DW_AT_name("CH_MAP_27")
.dwattr $C$DW$216, DW_AT_TI_symbol_name("CH_MAP_27")
.dwattr $C$DW$216, DW_AT_bit_offset(0x04)
.dwattr $C$DW$216, DW_AT_bit_size(0x04)
.dwattr $C$DW$216, DW_AT_data_member_location[DW_OP_plus_uconst 0x0]
.dwattr $C$DW$216, DW_AT_accessibility(DW_ACCESS_public)
.dwattr $C$DW$216, DW_AT_decl_file("/usr/share/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$216, DW_AT_decl_line(0x185)
.dwattr $C$DW$216, DW_AT_decl_column(0x0d)
$C$DW$217 .dwtag DW_TAG_member
.dwattr $C$DW$217, DW_AT_type(*$C$DW$T$11)
.dwattr $C$DW$217, DW_AT_name("rsvd28")
.dwattr $C$DW$217, DW_AT_TI_symbol_name("rsvd28")
.dwattr $C$DW$217, DW_AT_bit_offset(0x00)
.dwattr $C$DW$217, DW_AT_bit_size(0x04)
.dwattr $C$DW$217, DW_AT_data_member_location[DW_OP_plus_uconst 0x0]
.dwattr $C$DW$217, DW_AT_accessibility(DW_ACCESS_public)
.dwattr $C$DW$217, DW_AT_decl_file("/usr/share/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$217, DW_AT_decl_line(0x186)
.dwattr $C$DW$217, DW_AT_decl_column(0x0d)
.dwattr $C$DW$T$61, DW_AT_decl_file("/usr/share/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$T$61, DW_AT_decl_line(0x17e)
.dwattr $C$DW$T$61, DW_AT_decl_column(0x13)
.dwendtag $C$DW$T$61
$C$DW$T$199 .dwtag DW_TAG_volatile_type
.dwattr $C$DW$T$199, DW_AT_type(*$C$DW$T$61)
$C$DW$T$62 .dwtag DW_TAG_structure_type
.dwattr $C$DW$T$62, DW_AT_byte_size(0x04)
$C$DW$218 .dwtag DW_TAG_member
.dwattr $C$DW$218, DW_AT_type(*$C$DW$T$11)
.dwattr $C$DW$218, DW_AT_name("CH_MAP_28")
.dwattr $C$DW$218, DW_AT_TI_symbol_name("CH_MAP_28")
.dwattr $C$DW$218, DW_AT_bit_offset(0x1c)
.dwattr $C$DW$218, DW_AT_bit_size(0x04)
.dwattr $C$DW$218, DW_AT_data_member_location[DW_OP_plus_uconst 0x0]
.dwattr $C$DW$218, DW_AT_accessibility(DW_ACCESS_public)
.dwattr $C$DW$218, DW_AT_decl_file("/usr/share/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$218, DW_AT_decl_line(0x190)
.dwattr $C$DW$218, DW_AT_decl_column(0x0d)
$C$DW$219 .dwtag DW_TAG_member
.dwattr $C$DW$219, DW_AT_type(*$C$DW$T$11)
.dwattr $C$DW$219, DW_AT_name("rsvd4")
.dwattr $C$DW$219, DW_AT_TI_symbol_name("rsvd4")
.dwattr $C$DW$219, DW_AT_bit_offset(0x18)
.dwattr $C$DW$219, DW_AT_bit_size(0x04)
.dwattr $C$DW$219, DW_AT_data_member_location[DW_OP_plus_uconst 0x0]
.dwattr $C$DW$219, DW_AT_accessibility(DW_ACCESS_public)
.dwattr $C$DW$219, DW_AT_decl_file("/usr/share/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$219, DW_AT_decl_line(0x191)
.dwattr $C$DW$219, DW_AT_decl_column(0x0d)
$C$DW$220 .dwtag DW_TAG_member
.dwattr $C$DW$220, DW_AT_type(*$C$DW$T$11)
.dwattr $C$DW$220, DW_AT_name("CH_MAP_29")
.dwattr $C$DW$220, DW_AT_TI_symbol_name("CH_MAP_29")
.dwattr $C$DW$220, DW_AT_bit_offset(0x14)
.dwattr $C$DW$220, DW_AT_bit_size(0x04)
.dwattr $C$DW$220, DW_AT_data_member_location[DW_OP_plus_uconst 0x0]
.dwattr $C$DW$220, DW_AT_accessibility(DW_ACCESS_public)
.dwattr $C$DW$220, DW_AT_decl_file("/usr/share/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$220, DW_AT_decl_line(0x192)
.dwattr $C$DW$220, DW_AT_decl_column(0x0d)
$C$DW$221 .dwtag DW_TAG_member
.dwattr $C$DW$221, DW_AT_type(*$C$DW$T$11)
.dwattr $C$DW$221, DW_AT_name("rsvd12")
.dwattr $C$DW$221, DW_AT_TI_symbol_name("rsvd12")
.dwattr $C$DW$221, DW_AT_bit_offset(0x10)
.dwattr $C$DW$221, DW_AT_bit_size(0x04)
.dwattr $C$DW$221, DW_AT_data_member_location[DW_OP_plus_uconst 0x0]
.dwattr $C$DW$221, DW_AT_accessibility(DW_ACCESS_public)
.dwattr $C$DW$221, DW_AT_decl_file("/usr/share/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$221, DW_AT_decl_line(0x193)
.dwattr $C$DW$221, DW_AT_decl_column(0x0d)
$C$DW$222 .dwtag DW_TAG_member
.dwattr $C$DW$222, DW_AT_type(*$C$DW$T$11)
.dwattr $C$DW$222, DW_AT_name("CH_MAP_30")
.dwattr $C$DW$222, DW_AT_TI_symbol_name("CH_MAP_30")
.dwattr $C$DW$222, DW_AT_bit_offset(0x0c)
.dwattr $C$DW$222, DW_AT_bit_size(0x04)
.dwattr $C$DW$222, DW_AT_data_member_location[DW_OP_plus_uconst 0x0]
.dwattr $C$DW$222, DW_AT_accessibility(DW_ACCESS_public)
.dwattr $C$DW$222, DW_AT_decl_file("/usr/share/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$222, DW_AT_decl_line(0x194)
.dwattr $C$DW$222, DW_AT_decl_column(0x0d)
$C$DW$223 .dwtag DW_TAG_member
.dwattr $C$DW$223, DW_AT_type(*$C$DW$T$11)
.dwattr $C$DW$223, DW_AT_name("rsvd20")
.dwattr $C$DW$223, DW_AT_TI_symbol_name("rsvd20")
.dwattr $C$DW$223, DW_AT_bit_offset(0x08)
.dwattr $C$DW$223, DW_AT_bit_size(0x04)
.dwattr $C$DW$223, DW_AT_data_member_location[DW_OP_plus_uconst 0x0]
.dwattr $C$DW$223, DW_AT_accessibility(DW_ACCESS_public)
.dwattr $C$DW$223, DW_AT_decl_file("/usr/share/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$223, DW_AT_decl_line(0x195)
.dwattr $C$DW$223, DW_AT_decl_column(0x0d)
$C$DW$224 .dwtag DW_TAG_member
.dwattr $C$DW$224, DW_AT_type(*$C$DW$T$11)
.dwattr $C$DW$224, DW_AT_name("CH_MAP_31")
.dwattr $C$DW$224, DW_AT_TI_symbol_name("CH_MAP_31")
.dwattr $C$DW$224, DW_AT_bit_offset(0x04)
.dwattr $C$DW$224, DW_AT_bit_size(0x04)
.dwattr $C$DW$224, DW_AT_data_member_location[DW_OP_plus_uconst 0x0]
.dwattr $C$DW$224, DW_AT_accessibility(DW_ACCESS_public)
.dwattr $C$DW$224, DW_AT_decl_file("/usr/share/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$224, DW_AT_decl_line(0x196)
.dwattr $C$DW$224, DW_AT_decl_column(0x0d)
$C$DW$225 .dwtag DW_TAG_member
.dwattr $C$DW$225, DW_AT_type(*$C$DW$T$11)
.dwattr $C$DW$225, DW_AT_name("rsvd28")
.dwattr $C$DW$225, DW_AT_TI_symbol_name("rsvd28")
.dwattr $C$DW$225, DW_AT_bit_offset(0x00)
.dwattr $C$DW$225, DW_AT_bit_size(0x04)
.dwattr $C$DW$225, DW_AT_data_member_location[DW_OP_plus_uconst 0x0]
.dwattr $C$DW$225, DW_AT_accessibility(DW_ACCESS_public)
.dwattr $C$DW$225, DW_AT_decl_file("/usr/share/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$225, DW_AT_decl_line(0x197)
.dwattr $C$DW$225, DW_AT_decl_column(0x0d)
.dwattr $C$DW$T$62, DW_AT_decl_file("/usr/share/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$T$62, DW_AT_decl_line(0x18f)
.dwattr $C$DW$T$62, DW_AT_decl_column(0x13)
.dwendtag $C$DW$T$62
$C$DW$T$201 .dwtag DW_TAG_volatile_type
.dwattr $C$DW$T$201, DW_AT_type(*$C$DW$T$62)
$C$DW$T$63 .dwtag DW_TAG_structure_type
.dwattr $C$DW$T$63, DW_AT_byte_size(0x04)
$C$DW$226 .dwtag DW_TAG_member
.dwattr $C$DW$226, DW_AT_type(*$C$DW$T$11)
.dwattr $C$DW$226, DW_AT_name("CH_MAP_32")
.dwattr $C$DW$226, DW_AT_TI_symbol_name("CH_MAP_32")
.dwattr $C$DW$226, DW_AT_bit_offset(0x1c)
.dwattr $C$DW$226, DW_AT_bit_size(0x04)
.dwattr $C$DW$226, DW_AT_data_member_location[DW_OP_plus_uconst 0x0]
.dwattr $C$DW$226, DW_AT_accessibility(DW_ACCESS_public)
.dwattr $C$DW$226, DW_AT_decl_file("/usr/share/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$226, DW_AT_decl_line(0x1a1)
.dwattr $C$DW$226, DW_AT_decl_column(0x0d)
$C$DW$227 .dwtag DW_TAG_member
.dwattr $C$DW$227, DW_AT_type(*$C$DW$T$11)
.dwattr $C$DW$227, DW_AT_name("rsvd4")
.dwattr $C$DW$227, DW_AT_TI_symbol_name("rsvd4")
.dwattr $C$DW$227, DW_AT_bit_offset(0x18)
.dwattr $C$DW$227, DW_AT_bit_size(0x04)
.dwattr $C$DW$227, DW_AT_data_member_location[DW_OP_plus_uconst 0x0]
.dwattr $C$DW$227, DW_AT_accessibility(DW_ACCESS_public)
.dwattr $C$DW$227, DW_AT_decl_file("/usr/share/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$227, DW_AT_decl_line(0x1a2)
.dwattr $C$DW$227, DW_AT_decl_column(0x0d)
$C$DW$228 .dwtag DW_TAG_member
.dwattr $C$DW$228, DW_AT_type(*$C$DW$T$11)
.dwattr $C$DW$228, DW_AT_name("CH_MAP_33")
.dwattr $C$DW$228, DW_AT_TI_symbol_name("CH_MAP_33")
.dwattr $C$DW$228, DW_AT_bit_offset(0x14)
.dwattr $C$DW$228, DW_AT_bit_size(0x04)
.dwattr $C$DW$228, DW_AT_data_member_location[DW_OP_plus_uconst 0x0]
.dwattr $C$DW$228, DW_AT_accessibility(DW_ACCESS_public)
.dwattr $C$DW$228, DW_AT_decl_file("/usr/share/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$228, DW_AT_decl_line(0x1a3)
.dwattr $C$DW$228, DW_AT_decl_column(0x0d)
$C$DW$229 .dwtag DW_TAG_member
.dwattr $C$DW$229, DW_AT_type(*$C$DW$T$11)
.dwattr $C$DW$229, DW_AT_name("rsvd12")
.dwattr $C$DW$229, DW_AT_TI_symbol_name("rsvd12")
.dwattr $C$DW$229, DW_AT_bit_offset(0x10)
.dwattr $C$DW$229, DW_AT_bit_size(0x04)
.dwattr $C$DW$229, DW_AT_data_member_location[DW_OP_plus_uconst 0x0]
.dwattr $C$DW$229, DW_AT_accessibility(DW_ACCESS_public)
.dwattr $C$DW$229, DW_AT_decl_file("/usr/share/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$229, DW_AT_decl_line(0x1a4)
.dwattr $C$DW$229, DW_AT_decl_column(0x0d)
$C$DW$230 .dwtag DW_TAG_member
.dwattr $C$DW$230, DW_AT_type(*$C$DW$T$11)
.dwattr $C$DW$230, DW_AT_name("CH_MAP_34")
.dwattr $C$DW$230, DW_AT_TI_symbol_name("CH_MAP_34")
.dwattr $C$DW$230, DW_AT_bit_offset(0x0c)
.dwattr $C$DW$230, DW_AT_bit_size(0x04)
.dwattr $C$DW$230, DW_AT_data_member_location[DW_OP_plus_uconst 0x0]
.dwattr $C$DW$230, DW_AT_accessibility(DW_ACCESS_public)
.dwattr $C$DW$230, DW_AT_decl_file("/usr/share/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$230, DW_AT_decl_line(0x1a5)
.dwattr $C$DW$230, DW_AT_decl_column(0x0d)
$C$DW$231 .dwtag DW_TAG_member
.dwattr $C$DW$231, DW_AT_type(*$C$DW$T$11)
.dwattr $C$DW$231, DW_AT_name("rsvd20")
.dwattr $C$DW$231, DW_AT_TI_symbol_name("rsvd20")
.dwattr $C$DW$231, DW_AT_bit_offset(0x08)
.dwattr $C$DW$231, DW_AT_bit_size(0x04)
.dwattr $C$DW$231, DW_AT_data_member_location[DW_OP_plus_uconst 0x0]
.dwattr $C$DW$231, DW_AT_accessibility(DW_ACCESS_public)
.dwattr $C$DW$231, DW_AT_decl_file("/usr/share/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$231, DW_AT_decl_line(0x1a6)
.dwattr $C$DW$231, DW_AT_decl_column(0x0d)
$C$DW$232 .dwtag DW_TAG_member
.dwattr $C$DW$232, DW_AT_type(*$C$DW$T$11)
.dwattr $C$DW$232, DW_AT_name("CH_MAP_35")
.dwattr $C$DW$232, DW_AT_TI_symbol_name("CH_MAP_35")
.dwattr $C$DW$232, DW_AT_bit_offset(0x04)
.dwattr $C$DW$232, DW_AT_bit_size(0x04)
.dwattr $C$DW$232, DW_AT_data_member_location[DW_OP_plus_uconst 0x0]
.dwattr $C$DW$232, DW_AT_accessibility(DW_ACCESS_public)
.dwattr $C$DW$232, DW_AT_decl_file("/usr/share/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$232, DW_AT_decl_line(0x1a7)
.dwattr $C$DW$232, DW_AT_decl_column(0x0d)
$C$DW$233 .dwtag DW_TAG_member
.dwattr $C$DW$233, DW_AT_type(*$C$DW$T$11)
.dwattr $C$DW$233, DW_AT_name("rsvd28")
.dwattr $C$DW$233, DW_AT_TI_symbol_name("rsvd28")
.dwattr $C$DW$233, DW_AT_bit_offset(0x00)
.dwattr $C$DW$233, DW_AT_bit_size(0x04)
.dwattr $C$DW$233, DW_AT_data_member_location[DW_OP_plus_uconst 0x0]
.dwattr $C$DW$233, DW_AT_accessibility(DW_ACCESS_public)
.dwattr $C$DW$233, DW_AT_decl_file("/usr/share/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$233, DW_AT_decl_line(0x1a8)
.dwattr $C$DW$233, DW_AT_decl_column(0x0d)
.dwattr $C$DW$T$63, DW_AT_decl_file("/usr/share/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$T$63, DW_AT_decl_line(0x1a0)
.dwattr $C$DW$T$63, DW_AT_decl_column(0x13)
.dwendtag $C$DW$T$63
$C$DW$T$203 .dwtag DW_TAG_volatile_type
.dwattr $C$DW$T$203, DW_AT_type(*$C$DW$T$63)
$C$DW$T$64 .dwtag DW_TAG_structure_type
.dwattr $C$DW$T$64, DW_AT_byte_size(0x04)
$C$DW$234 .dwtag DW_TAG_member
.dwattr $C$DW$234, DW_AT_type(*$C$DW$T$11)
.dwattr $C$DW$234, DW_AT_name("CH_MAP_36")
.dwattr $C$DW$234, DW_AT_TI_symbol_name("CH_MAP_36")
.dwattr $C$DW$234, DW_AT_bit_offset(0x1c)
.dwattr $C$DW$234, DW_AT_bit_size(0x04)
.dwattr $C$DW$234, DW_AT_data_member_location[DW_OP_plus_uconst 0x0]
.dwattr $C$DW$234, DW_AT_accessibility(DW_ACCESS_public)
.dwattr $C$DW$234, DW_AT_decl_file("/usr/share/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$234, DW_AT_decl_line(0x1b2)
.dwattr $C$DW$234, DW_AT_decl_column(0x0d)
$C$DW$235 .dwtag DW_TAG_member
.dwattr $C$DW$235, DW_AT_type(*$C$DW$T$11)
.dwattr $C$DW$235, DW_AT_name("rsvd4")
.dwattr $C$DW$235, DW_AT_TI_symbol_name("rsvd4")
.dwattr $C$DW$235, DW_AT_bit_offset(0x18)
.dwattr $C$DW$235, DW_AT_bit_size(0x04)
.dwattr $C$DW$235, DW_AT_data_member_location[DW_OP_plus_uconst 0x0]
.dwattr $C$DW$235, DW_AT_accessibility(DW_ACCESS_public)
.dwattr $C$DW$235, DW_AT_decl_file("/usr/share/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$235, DW_AT_decl_line(0x1b3)
.dwattr $C$DW$235, DW_AT_decl_column(0x0d)
$C$DW$236 .dwtag DW_TAG_member
.dwattr $C$DW$236, DW_AT_type(*$C$DW$T$11)
.dwattr $C$DW$236, DW_AT_name("CH_MAP_37")
.dwattr $C$DW$236, DW_AT_TI_symbol_name("CH_MAP_37")
.dwattr $C$DW$236, DW_AT_bit_offset(0x14)
.dwattr $C$DW$236, DW_AT_bit_size(0x04)
.dwattr $C$DW$236, DW_AT_data_member_location[DW_OP_plus_uconst 0x0]
.dwattr $C$DW$236, DW_AT_accessibility(DW_ACCESS_public)
.dwattr $C$DW$236, DW_AT_decl_file("/usr/share/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$236, DW_AT_decl_line(0x1b4)
.dwattr $C$DW$236, DW_AT_decl_column(0x0d)
$C$DW$237 .dwtag DW_TAG_member
.dwattr $C$DW$237, DW_AT_type(*$C$DW$T$11)
.dwattr $C$DW$237, DW_AT_name("rsvd12")
.dwattr $C$DW$237, DW_AT_TI_symbol_name("rsvd12")
.dwattr $C$DW$237, DW_AT_bit_offset(0x10)
.dwattr $C$DW$237, DW_AT_bit_size(0x04)
.dwattr $C$DW$237, DW_AT_data_member_location[DW_OP_plus_uconst 0x0]
.dwattr $C$DW$237, DW_AT_accessibility(DW_ACCESS_public)
.dwattr $C$DW$237, DW_AT_decl_file("/usr/share/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$237, DW_AT_decl_line(0x1b5)
.dwattr $C$DW$237, DW_AT_decl_column(0x0d)
$C$DW$238 .dwtag DW_TAG_member
.dwattr $C$DW$238, DW_AT_type(*$C$DW$T$11)
.dwattr $C$DW$238, DW_AT_name("CH_MAP_38")
.dwattr $C$DW$238, DW_AT_TI_symbol_name("CH_MAP_38")
.dwattr $C$DW$238, DW_AT_bit_offset(0x0c)
.dwattr $C$DW$238, DW_AT_bit_size(0x04)
.dwattr $C$DW$238, DW_AT_data_member_location[DW_OP_plus_uconst 0x0]
.dwattr $C$DW$238, DW_AT_accessibility(DW_ACCESS_public)
.dwattr $C$DW$238, DW_AT_decl_file("/usr/share/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$238, DW_AT_decl_line(0x1b6)
.dwattr $C$DW$238, DW_AT_decl_column(0x0d)
$C$DW$239 .dwtag DW_TAG_member
.dwattr $C$DW$239, DW_AT_type(*$C$DW$T$11)
.dwattr $C$DW$239, DW_AT_name("rsvd20")
.dwattr $C$DW$239, DW_AT_TI_symbol_name("rsvd20")
.dwattr $C$DW$239, DW_AT_bit_offset(0x08)
.dwattr $C$DW$239, DW_AT_bit_size(0x04)
.dwattr $C$DW$239, DW_AT_data_member_location[DW_OP_plus_uconst 0x0]
.dwattr $C$DW$239, DW_AT_accessibility(DW_ACCESS_public)
.dwattr $C$DW$239, DW_AT_decl_file("/usr/share/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$239, DW_AT_decl_line(0x1b7)
.dwattr $C$DW$239, DW_AT_decl_column(0x0d)
$C$DW$240 .dwtag DW_TAG_member
.dwattr $C$DW$240, DW_AT_type(*$C$DW$T$11)
.dwattr $C$DW$240, DW_AT_name("CH_MAP_39")
.dwattr $C$DW$240, DW_AT_TI_symbol_name("CH_MAP_39")
.dwattr $C$DW$240, DW_AT_bit_offset(0x04)
.dwattr $C$DW$240, DW_AT_bit_size(0x04)
.dwattr $C$DW$240, DW_AT_data_member_location[DW_OP_plus_uconst 0x0]
.dwattr $C$DW$240, DW_AT_accessibility(DW_ACCESS_public)
.dwattr $C$DW$240, DW_AT_decl_file("/usr/share/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$240, DW_AT_decl_line(0x1b8)
.dwattr $C$DW$240, DW_AT_decl_column(0x0d)
$C$DW$241 .dwtag DW_TAG_member
.dwattr $C$DW$241, DW_AT_type(*$C$DW$T$11)
.dwattr $C$DW$241, DW_AT_name("rsvd28")
.dwattr $C$DW$241, DW_AT_TI_symbol_name("rsvd28")
.dwattr $C$DW$241, DW_AT_bit_offset(0x00)
.dwattr $C$DW$241, DW_AT_bit_size(0x04)
.dwattr $C$DW$241, DW_AT_data_member_location[DW_OP_plus_uconst 0x0]
.dwattr $C$DW$241, DW_AT_accessibility(DW_ACCESS_public)
.dwattr $C$DW$241, DW_AT_decl_file("/usr/share/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$241, DW_AT_decl_line(0x1b9)
.dwattr $C$DW$241, DW_AT_decl_column(0x0d)
.dwattr $C$DW$T$64, DW_AT_decl_file("/usr/share/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$T$64, DW_AT_decl_line(0x1b1)
.dwattr $C$DW$T$64, DW_AT_decl_column(0x13)
.dwendtag $C$DW$T$64
$C$DW$T$205 .dwtag DW_TAG_volatile_type
.dwattr $C$DW$T$205, DW_AT_type(*$C$DW$T$64)
$C$DW$T$65 .dwtag DW_TAG_structure_type
.dwattr $C$DW$T$65, DW_AT_byte_size(0x04)
$C$DW$242 .dwtag DW_TAG_member
.dwattr $C$DW$242, DW_AT_type(*$C$DW$T$11)
.dwattr $C$DW$242, DW_AT_name("CH_MAP_40")
.dwattr $C$DW$242, DW_AT_TI_symbol_name("CH_MAP_40")
.dwattr $C$DW$242, DW_AT_bit_offset(0x1c)
.dwattr $C$DW$242, DW_AT_bit_size(0x04)
.dwattr $C$DW$242, DW_AT_data_member_location[DW_OP_plus_uconst 0x0]
.dwattr $C$DW$242, DW_AT_accessibility(DW_ACCESS_public)
.dwattr $C$DW$242, DW_AT_decl_file("/usr/share/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$242, DW_AT_decl_line(0x1c3)
.dwattr $C$DW$242, DW_AT_decl_column(0x0d)
$C$DW$243 .dwtag DW_TAG_member
.dwattr $C$DW$243, DW_AT_type(*$C$DW$T$11)
.dwattr $C$DW$243, DW_AT_name("rsvd4")
.dwattr $C$DW$243, DW_AT_TI_symbol_name("rsvd4")
.dwattr $C$DW$243, DW_AT_bit_offset(0x18)
.dwattr $C$DW$243, DW_AT_bit_size(0x04)
.dwattr $C$DW$243, DW_AT_data_member_location[DW_OP_plus_uconst 0x0]
.dwattr $C$DW$243, DW_AT_accessibility(DW_ACCESS_public)
.dwattr $C$DW$243, DW_AT_decl_file("/usr/share/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$243, DW_AT_decl_line(0x1c4)
.dwattr $C$DW$243, DW_AT_decl_column(0x0d)
$C$DW$244 .dwtag DW_TAG_member
.dwattr $C$DW$244, DW_AT_type(*$C$DW$T$11)
.dwattr $C$DW$244, DW_AT_name("CH_MAP_41")
.dwattr $C$DW$244, DW_AT_TI_symbol_name("CH_MAP_41")
.dwattr $C$DW$244, DW_AT_bit_offset(0x14)
.dwattr $C$DW$244, DW_AT_bit_size(0x04)
.dwattr $C$DW$244, DW_AT_data_member_location[DW_OP_plus_uconst 0x0]
.dwattr $C$DW$244, DW_AT_accessibility(DW_ACCESS_public)
.dwattr $C$DW$244, DW_AT_decl_file("/usr/share/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$244, DW_AT_decl_line(0x1c5)
.dwattr $C$DW$244, DW_AT_decl_column(0x0d)
$C$DW$245 .dwtag DW_TAG_member
.dwattr $C$DW$245, DW_AT_type(*$C$DW$T$11)
.dwattr $C$DW$245, DW_AT_name("rsvd12")
.dwattr $C$DW$245, DW_AT_TI_symbol_name("rsvd12")
.dwattr $C$DW$245, DW_AT_bit_offset(0x10)
.dwattr $C$DW$245, DW_AT_bit_size(0x04)
.dwattr $C$DW$245, DW_AT_data_member_location[DW_OP_plus_uconst 0x0]
.dwattr $C$DW$245, DW_AT_accessibility(DW_ACCESS_public)
.dwattr $C$DW$245, DW_AT_decl_file("/usr/share/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$245, DW_AT_decl_line(0x1c6)
.dwattr $C$DW$245, DW_AT_decl_column(0x0d)
$C$DW$246 .dwtag DW_TAG_member
.dwattr $C$DW$246, DW_AT_type(*$C$DW$T$11)
.dwattr $C$DW$246, DW_AT_name("CH_MAP_42")
.dwattr $C$DW$246, DW_AT_TI_symbol_name("CH_MAP_42")
.dwattr $C$DW$246, DW_AT_bit_offset(0x0c)
.dwattr $C$DW$246, DW_AT_bit_size(0x04)
.dwattr $C$DW$246, DW_AT_data_member_location[DW_OP_plus_uconst 0x0]
.dwattr $C$DW$246, DW_AT_accessibility(DW_ACCESS_public)
.dwattr $C$DW$246, DW_AT_decl_file("/usr/share/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$246, DW_AT_decl_line(0x1c7)
.dwattr $C$DW$246, DW_AT_decl_column(0x0d)
$C$DW$247 .dwtag DW_TAG_member
.dwattr $C$DW$247, DW_AT_type(*$C$DW$T$11)
.dwattr $C$DW$247, DW_AT_name("rsvd20")
.dwattr $C$DW$247, DW_AT_TI_symbol_name("rsvd20")
.dwattr $C$DW$247, DW_AT_bit_offset(0x08)
.dwattr $C$DW$247, DW_AT_bit_size(0x04)
.dwattr $C$DW$247, DW_AT_data_member_location[DW_OP_plus_uconst 0x0]
.dwattr $C$DW$247, DW_AT_accessibility(DW_ACCESS_public)
.dwattr $C$DW$247, DW_AT_decl_file("/usr/share/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$247, DW_AT_decl_line(0x1c8)
.dwattr $C$DW$247, DW_AT_decl_column(0x0d)
$C$DW$248 .dwtag DW_TAG_member
.dwattr $C$DW$248, DW_AT_type(*$C$DW$T$11)
.dwattr $C$DW$248, DW_AT_name("CH_MAP_43")
.dwattr $C$DW$248, DW_AT_TI_symbol_name("CH_MAP_43")
.dwattr $C$DW$248, DW_AT_bit_offset(0x04)
.dwattr $C$DW$248, DW_AT_bit_size(0x04)
.dwattr $C$DW$248, DW_AT_data_member_location[DW_OP_plus_uconst 0x0]
.dwattr $C$DW$248, DW_AT_accessibility(DW_ACCESS_public)
.dwattr $C$DW$248, DW_AT_decl_file("/usr/share/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$248, DW_AT_decl_line(0x1c9)
.dwattr $C$DW$248, DW_AT_decl_column(0x0d)
$C$DW$249 .dwtag DW_TAG_member
.dwattr $C$DW$249, DW_AT_type(*$C$DW$T$11)
.dwattr $C$DW$249, DW_AT_name("rsvd28")
.dwattr $C$DW$249, DW_AT_TI_symbol_name("rsvd28")
.dwattr $C$DW$249, DW_AT_bit_offset(0x00)
.dwattr $C$DW$249, DW_AT_bit_size(0x04)
.dwattr $C$DW$249, DW_AT_data_member_location[DW_OP_plus_uconst 0x0]
.dwattr $C$DW$249, DW_AT_accessibility(DW_ACCESS_public)
.dwattr $C$DW$249, DW_AT_decl_file("/usr/share/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$249, DW_AT_decl_line(0x1ca)
.dwattr $C$DW$249, DW_AT_decl_column(0x0d)
.dwattr $C$DW$T$65, DW_AT_decl_file("/usr/share/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$T$65, DW_AT_decl_line(0x1c2)
.dwattr $C$DW$T$65, DW_AT_decl_column(0x13)
.dwendtag $C$DW$T$65
$C$DW$T$207 .dwtag DW_TAG_volatile_type
.dwattr $C$DW$T$207, DW_AT_type(*$C$DW$T$65)
$C$DW$T$66 .dwtag DW_TAG_structure_type
.dwattr $C$DW$T$66, DW_AT_byte_size(0x04)
$C$DW$250 .dwtag DW_TAG_member
.dwattr $C$DW$250, DW_AT_type(*$C$DW$T$11)
.dwattr $C$DW$250, DW_AT_name("CH_MAP_44")
.dwattr $C$DW$250, DW_AT_TI_symbol_name("CH_MAP_44")
.dwattr $C$DW$250, DW_AT_bit_offset(0x1c)
.dwattr $C$DW$250, DW_AT_bit_size(0x04)
.dwattr $C$DW$250, DW_AT_data_member_location[DW_OP_plus_uconst 0x0]
.dwattr $C$DW$250, DW_AT_accessibility(DW_ACCESS_public)
.dwattr $C$DW$250, DW_AT_decl_file("/usr/share/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$250, DW_AT_decl_line(0x1d4)
.dwattr $C$DW$250, DW_AT_decl_column(0x0d)
$C$DW$251 .dwtag DW_TAG_member
.dwattr $C$DW$251, DW_AT_type(*$C$DW$T$11)
.dwattr $C$DW$251, DW_AT_name("rsvd4")
.dwattr $C$DW$251, DW_AT_TI_symbol_name("rsvd4")
.dwattr $C$DW$251, DW_AT_bit_offset(0x18)
.dwattr $C$DW$251, DW_AT_bit_size(0x04)
.dwattr $C$DW$251, DW_AT_data_member_location[DW_OP_plus_uconst 0x0]
.dwattr $C$DW$251, DW_AT_accessibility(DW_ACCESS_public)
.dwattr $C$DW$251, DW_AT_decl_file("/usr/share/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$251, DW_AT_decl_line(0x1d5)
.dwattr $C$DW$251, DW_AT_decl_column(0x0d)
$C$DW$252 .dwtag DW_TAG_member
.dwattr $C$DW$252, DW_AT_type(*$C$DW$T$11)
.dwattr $C$DW$252, DW_AT_name("CH_MAP_45")
.dwattr $C$DW$252, DW_AT_TI_symbol_name("CH_MAP_45")
.dwattr $C$DW$252, DW_AT_bit_offset(0x14)
.dwattr $C$DW$252, DW_AT_bit_size(0x04)
.dwattr $C$DW$252, DW_AT_data_member_location[DW_OP_plus_uconst 0x0]
.dwattr $C$DW$252, DW_AT_accessibility(DW_ACCESS_public)
.dwattr $C$DW$252, DW_AT_decl_file("/usr/share/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$252, DW_AT_decl_line(0x1d6)
.dwattr $C$DW$252, DW_AT_decl_column(0x0d)
$C$DW$253 .dwtag DW_TAG_member
.dwattr $C$DW$253, DW_AT_type(*$C$DW$T$11)
.dwattr $C$DW$253, DW_AT_name("rsvd12")
.dwattr $C$DW$253, DW_AT_TI_symbol_name("rsvd12")
.dwattr $C$DW$253, DW_AT_bit_offset(0x10)
.dwattr $C$DW$253, DW_AT_bit_size(0x04)
.dwattr $C$DW$253, DW_AT_data_member_location[DW_OP_plus_uconst 0x0]
.dwattr $C$DW$253, DW_AT_accessibility(DW_ACCESS_public)
.dwattr $C$DW$253, DW_AT_decl_file("/usr/share/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$253, DW_AT_decl_line(0x1d7)
.dwattr $C$DW$253, DW_AT_decl_column(0x0d)
$C$DW$254 .dwtag DW_TAG_member
.dwattr $C$DW$254, DW_AT_type(*$C$DW$T$11)
.dwattr $C$DW$254, DW_AT_name("CH_MAP_46")
.dwattr $C$DW$254, DW_AT_TI_symbol_name("CH_MAP_46")
.dwattr $C$DW$254, DW_AT_bit_offset(0x0c)
.dwattr $C$DW$254, DW_AT_bit_size(0x04)
.dwattr $C$DW$254, DW_AT_data_member_location[DW_OP_plus_uconst 0x0]
.dwattr $C$DW$254, DW_AT_accessibility(DW_ACCESS_public)
.dwattr $C$DW$254, DW_AT_decl_file("/usr/share/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$254, DW_AT_decl_line(0x1d8)
.dwattr $C$DW$254, DW_AT_decl_column(0x0d)
$C$DW$255 .dwtag DW_TAG_member
.dwattr $C$DW$255, DW_AT_type(*$C$DW$T$11)
.dwattr $C$DW$255, DW_AT_name("rsvd20")
.dwattr $C$DW$255, DW_AT_TI_symbol_name("rsvd20")
.dwattr $C$DW$255, DW_AT_bit_offset(0x08)
.dwattr $C$DW$255, DW_AT_bit_size(0x04)
.dwattr $C$DW$255, DW_AT_data_member_location[DW_OP_plus_uconst 0x0]
.dwattr $C$DW$255, DW_AT_accessibility(DW_ACCESS_public)
.dwattr $C$DW$255, DW_AT_decl_file("/usr/share/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$255, DW_AT_decl_line(0x1d9)
.dwattr $C$DW$255, DW_AT_decl_column(0x0d)
$C$DW$256 .dwtag DW_TAG_member
.dwattr $C$DW$256, DW_AT_type(*$C$DW$T$11)
.dwattr $C$DW$256, DW_AT_name("CH_MAP_47")
.dwattr $C$DW$256, DW_AT_TI_symbol_name("CH_MAP_47")
.dwattr $C$DW$256, DW_AT_bit_offset(0x04)
.dwattr $C$DW$256, DW_AT_bit_size(0x04)
.dwattr $C$DW$256, DW_AT_data_member_location[DW_OP_plus_uconst 0x0]
.dwattr $C$DW$256, DW_AT_accessibility(DW_ACCESS_public)
.dwattr $C$DW$256, DW_AT_decl_file("/usr/share/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$256, DW_AT_decl_line(0x1da)
.dwattr $C$DW$256, DW_AT_decl_column(0x0d)
$C$DW$257 .dwtag DW_TAG_member
.dwattr $C$DW$257, DW_AT_type(*$C$DW$T$11)
.dwattr $C$DW$257, DW_AT_name("rsvd28")
.dwattr $C$DW$257, DW_AT_TI_symbol_name("rsvd28")
.dwattr $C$DW$257, DW_AT_bit_offset(0x00)
.dwattr $C$DW$257, DW_AT_bit_size(0x04)
.dwattr $C$DW$257, DW_AT_data_member_location[DW_OP_plus_uconst 0x0]
.dwattr $C$DW$257, DW_AT_accessibility(DW_ACCESS_public)
.dwattr $C$DW$257, DW_AT_decl_file("/usr/share/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$257, DW_AT_decl_line(0x1db)
.dwattr $C$DW$257, DW_AT_decl_column(0x0d)
.dwattr $C$DW$T$66, DW_AT_decl_file("/usr/share/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$T$66, DW_AT_decl_line(0x1d3)
.dwattr $C$DW$T$66, DW_AT_decl_column(0x13)
.dwendtag $C$DW$T$66
$C$DW$T$209 .dwtag DW_TAG_volatile_type
.dwattr $C$DW$T$209, DW_AT_type(*$C$DW$T$66)
$C$DW$T$67 .dwtag DW_TAG_structure_type
.dwattr $C$DW$T$67, DW_AT_byte_size(0x04)
$C$DW$258 .dwtag DW_TAG_member
.dwattr $C$DW$258, DW_AT_type(*$C$DW$T$11)
.dwattr $C$DW$258, DW_AT_name("CH_MAP_48")
.dwattr $C$DW$258, DW_AT_TI_symbol_name("CH_MAP_48")
.dwattr $C$DW$258, DW_AT_bit_offset(0x1c)
.dwattr $C$DW$258, DW_AT_bit_size(0x04)
.dwattr $C$DW$258, DW_AT_data_member_location[DW_OP_plus_uconst 0x0]
.dwattr $C$DW$258, DW_AT_accessibility(DW_ACCESS_public)
.dwattr $C$DW$258, DW_AT_decl_file("/usr/share/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$258, DW_AT_decl_line(0x1e5)
.dwattr $C$DW$258, DW_AT_decl_column(0x0d)
$C$DW$259 .dwtag DW_TAG_member
.dwattr $C$DW$259, DW_AT_type(*$C$DW$T$11)
.dwattr $C$DW$259, DW_AT_name("rsvd4")
.dwattr $C$DW$259, DW_AT_TI_symbol_name("rsvd4")
.dwattr $C$DW$259, DW_AT_bit_offset(0x18)
.dwattr $C$DW$259, DW_AT_bit_size(0x04)
.dwattr $C$DW$259, DW_AT_data_member_location[DW_OP_plus_uconst 0x0]
.dwattr $C$DW$259, DW_AT_accessibility(DW_ACCESS_public)
.dwattr $C$DW$259, DW_AT_decl_file("/usr/share/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$259, DW_AT_decl_line(0x1e6)
.dwattr $C$DW$259, DW_AT_decl_column(0x0d)
$C$DW$260 .dwtag DW_TAG_member
.dwattr $C$DW$260, DW_AT_type(*$C$DW$T$11)
.dwattr $C$DW$260, DW_AT_name("CH_MAP_49")
.dwattr $C$DW$260, DW_AT_TI_symbol_name("CH_MAP_49")
.dwattr $C$DW$260, DW_AT_bit_offset(0x14)
.dwattr $C$DW$260, DW_AT_bit_size(0x04)
.dwattr $C$DW$260, DW_AT_data_member_location[DW_OP_plus_uconst 0x0]
.dwattr $C$DW$260, DW_AT_accessibility(DW_ACCESS_public)
.dwattr $C$DW$260, DW_AT_decl_file("/usr/share/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$260, DW_AT_decl_line(0x1e7)
.dwattr $C$DW$260, DW_AT_decl_column(0x0d)
$C$DW$261 .dwtag DW_TAG_member
.dwattr $C$DW$261, DW_AT_type(*$C$DW$T$11)
.dwattr $C$DW$261, DW_AT_name("rsvd12")
.dwattr $C$DW$261, DW_AT_TI_symbol_name("rsvd12")
.dwattr $C$DW$261, DW_AT_bit_offset(0x10)
.dwattr $C$DW$261, DW_AT_bit_size(0x04)
.dwattr $C$DW$261, DW_AT_data_member_location[DW_OP_plus_uconst 0x0]
.dwattr $C$DW$261, DW_AT_accessibility(DW_ACCESS_public)
.dwattr $C$DW$261, DW_AT_decl_file("/usr/share/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$261, DW_AT_decl_line(0x1e8)
.dwattr $C$DW$261, DW_AT_decl_column(0x0d)
$C$DW$262 .dwtag DW_TAG_member
.dwattr $C$DW$262, DW_AT_type(*$C$DW$T$11)
.dwattr $C$DW$262, DW_AT_name("CH_MAP_50")
.dwattr $C$DW$262, DW_AT_TI_symbol_name("CH_MAP_50")
.dwattr $C$DW$262, DW_AT_bit_offset(0x0c)
.dwattr $C$DW$262, DW_AT_bit_size(0x04)
.dwattr $C$DW$262, DW_AT_data_member_location[DW_OP_plus_uconst 0x0]
.dwattr $C$DW$262, DW_AT_accessibility(DW_ACCESS_public)
.dwattr $C$DW$262, DW_AT_decl_file("/usr/share/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$262, DW_AT_decl_line(0x1e9)
.dwattr $C$DW$262, DW_AT_decl_column(0x0d)
$C$DW$263 .dwtag DW_TAG_member
.dwattr $C$DW$263, DW_AT_type(*$C$DW$T$11)
.dwattr $C$DW$263, DW_AT_name("rsvd20")
.dwattr $C$DW$263, DW_AT_TI_symbol_name("rsvd20")
.dwattr $C$DW$263, DW_AT_bit_offset(0x08)
.dwattr $C$DW$263, DW_AT_bit_size(0x04)
.dwattr $C$DW$263, DW_AT_data_member_location[DW_OP_plus_uconst 0x0]
.dwattr $C$DW$263, DW_AT_accessibility(DW_ACCESS_public)
.dwattr $C$DW$263, DW_AT_decl_file("/usr/share/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$263, DW_AT_decl_line(0x1ea)
.dwattr $C$DW$263, DW_AT_decl_column(0x0d)
$C$DW$264 .dwtag DW_TAG_member
.dwattr $C$DW$264, DW_AT_type(*$C$DW$T$11)
.dwattr $C$DW$264, DW_AT_name("CH_MAP_51")
.dwattr $C$DW$264, DW_AT_TI_symbol_name("CH_MAP_51")
.dwattr $C$DW$264, DW_AT_bit_offset(0x04)
.dwattr $C$DW$264, DW_AT_bit_size(0x04)
.dwattr $C$DW$264, DW_AT_data_member_location[DW_OP_plus_uconst 0x0]
.dwattr $C$DW$264, DW_AT_accessibility(DW_ACCESS_public)
.dwattr $C$DW$264, DW_AT_decl_file("/usr/share/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$264, DW_AT_decl_line(0x1eb)
.dwattr $C$DW$264, DW_AT_decl_column(0x0d)
$C$DW$265 .dwtag DW_TAG_member
.dwattr $C$DW$265, DW_AT_type(*$C$DW$T$11)
.dwattr $C$DW$265, DW_AT_name("rsvd28")
.dwattr $C$DW$265, DW_AT_TI_symbol_name("rsvd28")
.dwattr $C$DW$265, DW_AT_bit_offset(0x00)
.dwattr $C$DW$265, DW_AT_bit_size(0x04)
.dwattr $C$DW$265, DW_AT_data_member_location[DW_OP_plus_uconst 0x0]
.dwattr $C$DW$265, DW_AT_accessibility(DW_ACCESS_public)
.dwattr $C$DW$265, DW_AT_decl_file("/usr/share/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$265, DW_AT_decl_line(0x1ec)
.dwattr $C$DW$265, DW_AT_decl_column(0x0d)
.dwattr $C$DW$T$67, DW_AT_decl_file("/usr/share/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$T$67, DW_AT_decl_line(0x1e4)
.dwattr $C$DW$T$67, DW_AT_decl_column(0x13)
.dwendtag $C$DW$T$67
$C$DW$T$211 .dwtag DW_TAG_volatile_type
.dwattr $C$DW$T$211, DW_AT_type(*$C$DW$T$67)
$C$DW$T$68 .dwtag DW_TAG_structure_type
.dwattr $C$DW$T$68, DW_AT_byte_size(0x04)
$C$DW$266 .dwtag DW_TAG_member
.dwattr $C$DW$266, DW_AT_type(*$C$DW$T$11)
.dwattr $C$DW$266, DW_AT_name("CH_MAP_52")
.dwattr $C$DW$266, DW_AT_TI_symbol_name("CH_MAP_52")
.dwattr $C$DW$266, DW_AT_bit_offset(0x1c)
.dwattr $C$DW$266, DW_AT_bit_size(0x04)
.dwattr $C$DW$266, DW_AT_data_member_location[DW_OP_plus_uconst 0x0]
.dwattr $C$DW$266, DW_AT_accessibility(DW_ACCESS_public)
.dwattr $C$DW$266, DW_AT_decl_file("/usr/share/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$266, DW_AT_decl_line(0x1f6)
.dwattr $C$DW$266, DW_AT_decl_column(0x0d)
$C$DW$267 .dwtag DW_TAG_member
.dwattr $C$DW$267, DW_AT_type(*$C$DW$T$11)
.dwattr $C$DW$267, DW_AT_name("rsvd4")
.dwattr $C$DW$267, DW_AT_TI_symbol_name("rsvd4")
.dwattr $C$DW$267, DW_AT_bit_offset(0x18)
.dwattr $C$DW$267, DW_AT_bit_size(0x04)
.dwattr $C$DW$267, DW_AT_data_member_location[DW_OP_plus_uconst 0x0]
.dwattr $C$DW$267, DW_AT_accessibility(DW_ACCESS_public)
.dwattr $C$DW$267, DW_AT_decl_file("/usr/share/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$267, DW_AT_decl_line(0x1f7)
.dwattr $C$DW$267, DW_AT_decl_column(0x0d)
$C$DW$268 .dwtag DW_TAG_member
.dwattr $C$DW$268, DW_AT_type(*$C$DW$T$11)
.dwattr $C$DW$268, DW_AT_name("CH_MAP_53")
.dwattr $C$DW$268, DW_AT_TI_symbol_name("CH_MAP_53")
.dwattr $C$DW$268, DW_AT_bit_offset(0x14)
.dwattr $C$DW$268, DW_AT_bit_size(0x04)
.dwattr $C$DW$268, DW_AT_data_member_location[DW_OP_plus_uconst 0x0]
.dwattr $C$DW$268, DW_AT_accessibility(DW_ACCESS_public)
.dwattr $C$DW$268, DW_AT_decl_file("/usr/share/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$268, DW_AT_decl_line(0x1f8)
.dwattr $C$DW$268, DW_AT_decl_column(0x0d)
$C$DW$269 .dwtag DW_TAG_member
.dwattr $C$DW$269, DW_AT_type(*$C$DW$T$11)
.dwattr $C$DW$269, DW_AT_name("rsvd12")
.dwattr $C$DW$269, DW_AT_TI_symbol_name("rsvd12")
.dwattr $C$DW$269, DW_AT_bit_offset(0x10)
.dwattr $C$DW$269, DW_AT_bit_size(0x04)
.dwattr $C$DW$269, DW_AT_data_member_location[DW_OP_plus_uconst 0x0]
.dwattr $C$DW$269, DW_AT_accessibility(DW_ACCESS_public)
.dwattr $C$DW$269, DW_AT_decl_file("/usr/share/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$269, DW_AT_decl_line(0x1f9)
.dwattr $C$DW$269, DW_AT_decl_column(0x0d)
$C$DW$270 .dwtag DW_TAG_member
.dwattr $C$DW$270, DW_AT_type(*$C$DW$T$11)
.dwattr $C$DW$270, DW_AT_name("CH_MAP_54")
.dwattr $C$DW$270, DW_AT_TI_symbol_name("CH_MAP_54")
.dwattr $C$DW$270, DW_AT_bit_offset(0x0c)
.dwattr $C$DW$270, DW_AT_bit_size(0x04)
.dwattr $C$DW$270, DW_AT_data_member_location[DW_OP_plus_uconst 0x0]
.dwattr $C$DW$270, DW_AT_accessibility(DW_ACCESS_public)
.dwattr $C$DW$270, DW_AT_decl_file("/usr/share/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$270, DW_AT_decl_line(0x1fa)
.dwattr $C$DW$270, DW_AT_decl_column(0x0d)
$C$DW$271 .dwtag DW_TAG_member
.dwattr $C$DW$271, DW_AT_type(*$C$DW$T$11)
.dwattr $C$DW$271, DW_AT_name("rsvd20")
.dwattr $C$DW$271, DW_AT_TI_symbol_name("rsvd20")
.dwattr $C$DW$271, DW_AT_bit_offset(0x08)
.dwattr $C$DW$271, DW_AT_bit_size(0x04)
.dwattr $C$DW$271, DW_AT_data_member_location[DW_OP_plus_uconst 0x0]
.dwattr $C$DW$271, DW_AT_accessibility(DW_ACCESS_public)
.dwattr $C$DW$271, DW_AT_decl_file("/usr/share/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$271, DW_AT_decl_line(0x1fb)
.dwattr $C$DW$271, DW_AT_decl_column(0x0d)
$C$DW$272 .dwtag DW_TAG_member
.dwattr $C$DW$272, DW_AT_type(*$C$DW$T$11)
.dwattr $C$DW$272, DW_AT_name("CH_MAP_55")
.dwattr $C$DW$272, DW_AT_TI_symbol_name("CH_MAP_55")
.dwattr $C$DW$272, DW_AT_bit_offset(0x04)
.dwattr $C$DW$272, DW_AT_bit_size(0x04)
.dwattr $C$DW$272, DW_AT_data_member_location[DW_OP_plus_uconst 0x0]
.dwattr $C$DW$272, DW_AT_accessibility(DW_ACCESS_public)
.dwattr $C$DW$272, DW_AT_decl_file("/usr/share/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$272, DW_AT_decl_line(0x1fc)
.dwattr $C$DW$272, DW_AT_decl_column(0x0d)
$C$DW$273 .dwtag DW_TAG_member
.dwattr $C$DW$273, DW_AT_type(*$C$DW$T$11)
.dwattr $C$DW$273, DW_AT_name("rsvd28")
.dwattr $C$DW$273, DW_AT_TI_symbol_name("rsvd28")
.dwattr $C$DW$273, DW_AT_bit_offset(0x00)
.dwattr $C$DW$273, DW_AT_bit_size(0x04)
.dwattr $C$DW$273, DW_AT_data_member_location[DW_OP_plus_uconst 0x0]
.dwattr $C$DW$273, DW_AT_accessibility(DW_ACCESS_public)
.dwattr $C$DW$273, DW_AT_decl_file("/usr/share/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$273, DW_AT_decl_line(0x1fd)
.dwattr $C$DW$273, DW_AT_decl_column(0x0d)
.dwattr $C$DW$T$68, DW_AT_decl_file("/usr/share/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$T$68, DW_AT_decl_line(0x1f5)
.dwattr $C$DW$T$68, DW_AT_decl_column(0x13)
.dwendtag $C$DW$T$68
$C$DW$T$213 .dwtag DW_TAG_volatile_type
.dwattr $C$DW$T$213, DW_AT_type(*$C$DW$T$68)
$C$DW$T$69 .dwtag DW_TAG_structure_type
.dwattr $C$DW$T$69, DW_AT_byte_size(0x04)
$C$DW$274 .dwtag DW_TAG_member
.dwattr $C$DW$274, DW_AT_type(*$C$DW$T$11)
.dwattr $C$DW$274, DW_AT_name("CH_MAP_56")
.dwattr $C$DW$274, DW_AT_TI_symbol_name("CH_MAP_56")
.dwattr $C$DW$274, DW_AT_bit_offset(0x1c)
.dwattr $C$DW$274, DW_AT_bit_size(0x04)
.dwattr $C$DW$274, DW_AT_data_member_location[DW_OP_plus_uconst 0x0]
.dwattr $C$DW$274, DW_AT_accessibility(DW_ACCESS_public)
.dwattr $C$DW$274, DW_AT_decl_file("/usr/share/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$274, DW_AT_decl_line(0x207)
.dwattr $C$DW$274, DW_AT_decl_column(0x0d)
$C$DW$275 .dwtag DW_TAG_member
.dwattr $C$DW$275, DW_AT_type(*$C$DW$T$11)
.dwattr $C$DW$275, DW_AT_name("rsvd4")
.dwattr $C$DW$275, DW_AT_TI_symbol_name("rsvd4")
.dwattr $C$DW$275, DW_AT_bit_offset(0x18)
.dwattr $C$DW$275, DW_AT_bit_size(0x04)
.dwattr $C$DW$275, DW_AT_data_member_location[DW_OP_plus_uconst 0x0]
.dwattr $C$DW$275, DW_AT_accessibility(DW_ACCESS_public)
.dwattr $C$DW$275, DW_AT_decl_file("/usr/share/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$275, DW_AT_decl_line(0x208)
.dwattr $C$DW$275, DW_AT_decl_column(0x0d)
$C$DW$276 .dwtag DW_TAG_member
.dwattr $C$DW$276, DW_AT_type(*$C$DW$T$11)
.dwattr $C$DW$276, DW_AT_name("CH_MAP_57")
.dwattr $C$DW$276, DW_AT_TI_symbol_name("CH_MAP_57")
.dwattr $C$DW$276, DW_AT_bit_offset(0x14)
.dwattr $C$DW$276, DW_AT_bit_size(0x04)
.dwattr $C$DW$276, DW_AT_data_member_location[DW_OP_plus_uconst 0x0]
.dwattr $C$DW$276, DW_AT_accessibility(DW_ACCESS_public)
.dwattr $C$DW$276, DW_AT_decl_file("/usr/share/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$276, DW_AT_decl_line(0x209)
.dwattr $C$DW$276, DW_AT_decl_column(0x0d)
$C$DW$277 .dwtag DW_TAG_member
.dwattr $C$DW$277, DW_AT_type(*$C$DW$T$11)
.dwattr $C$DW$277, DW_AT_name("rsvd12")
.dwattr $C$DW$277, DW_AT_TI_symbol_name("rsvd12")
.dwattr $C$DW$277, DW_AT_bit_offset(0x10)
.dwattr $C$DW$277, DW_AT_bit_size(0x04)
.dwattr $C$DW$277, DW_AT_data_member_location[DW_OP_plus_uconst 0x0]
.dwattr $C$DW$277, DW_AT_accessibility(DW_ACCESS_public)
.dwattr $C$DW$277, DW_AT_decl_file("/usr/share/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$277, DW_AT_decl_line(0x20a)
.dwattr $C$DW$277, DW_AT_decl_column(0x0d)
$C$DW$278 .dwtag DW_TAG_member
.dwattr $C$DW$278, DW_AT_type(*$C$DW$T$11)
.dwattr $C$DW$278, DW_AT_name("CH_MAP_58")
.dwattr $C$DW$278, DW_AT_TI_symbol_name("CH_MAP_58")
.dwattr $C$DW$278, DW_AT_bit_offset(0x0c)
.dwattr $C$DW$278, DW_AT_bit_size(0x04)
.dwattr $C$DW$278, DW_AT_data_member_location[DW_OP_plus_uconst 0x0]
.dwattr $C$DW$278, DW_AT_accessibility(DW_ACCESS_public)
.dwattr $C$DW$278, DW_AT_decl_file("/usr/share/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$278, DW_AT_decl_line(0x20b)
.dwattr $C$DW$278, DW_AT_decl_column(0x0d)
$C$DW$279 .dwtag DW_TAG_member
.dwattr $C$DW$279, DW_AT_type(*$C$DW$T$11)
.dwattr $C$DW$279, DW_AT_name("rsvd20")
.dwattr $C$DW$279, DW_AT_TI_symbol_name("rsvd20")
.dwattr $C$DW$279, DW_AT_bit_offset(0x08)
.dwattr $C$DW$279, DW_AT_bit_size(0x04)
.dwattr $C$DW$279, DW_AT_data_member_location[DW_OP_plus_uconst 0x0]
.dwattr $C$DW$279, DW_AT_accessibility(DW_ACCESS_public)
.dwattr $C$DW$279, DW_AT_decl_file("/usr/share/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$279, DW_AT_decl_line(0x20c)
.dwattr $C$DW$279, DW_AT_decl_column(0x0d)
$C$DW$280 .dwtag DW_TAG_member
.dwattr $C$DW$280, DW_AT_type(*$C$DW$T$11)
.dwattr $C$DW$280, DW_AT_name("CH_MAP_59")
.dwattr $C$DW$280, DW_AT_TI_symbol_name("CH_MAP_59")
.dwattr $C$DW$280, DW_AT_bit_offset(0x04)
.dwattr $C$DW$280, DW_AT_bit_size(0x04)
.dwattr $C$DW$280, DW_AT_data_member_location[DW_OP_plus_uconst 0x0]
.dwattr $C$DW$280, DW_AT_accessibility(DW_ACCESS_public)
.dwattr $C$DW$280, DW_AT_decl_file("/usr/share/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$280, DW_AT_decl_line(0x20d)
.dwattr $C$DW$280, DW_AT_decl_column(0x0d)
$C$DW$281 .dwtag DW_TAG_member
.dwattr $C$DW$281, DW_AT_type(*$C$DW$T$11)
.dwattr $C$DW$281, DW_AT_name("rsvd28")
.dwattr $C$DW$281, DW_AT_TI_symbol_name("rsvd28")
.dwattr $C$DW$281, DW_AT_bit_offset(0x00)
.dwattr $C$DW$281, DW_AT_bit_size(0x04)
.dwattr $C$DW$281, DW_AT_data_member_location[DW_OP_plus_uconst 0x0]
.dwattr $C$DW$281, DW_AT_accessibility(DW_ACCESS_public)
.dwattr $C$DW$281, DW_AT_decl_file("/usr/share/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$281, DW_AT_decl_line(0x20e)
.dwattr $C$DW$281, DW_AT_decl_column(0x0d)
.dwattr $C$DW$T$69, DW_AT_decl_file("/usr/share/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$T$69, DW_AT_decl_line(0x206)
.dwattr $C$DW$T$69, DW_AT_decl_column(0x13)
.dwendtag $C$DW$T$69
$C$DW$T$215 .dwtag DW_TAG_volatile_type
.dwattr $C$DW$T$215, DW_AT_type(*$C$DW$T$69)
$C$DW$T$70 .dwtag DW_TAG_structure_type
.dwattr $C$DW$T$70, DW_AT_byte_size(0x04)
$C$DW$282 .dwtag DW_TAG_member
.dwattr $C$DW$282, DW_AT_type(*$C$DW$T$11)
.dwattr $C$DW$282, DW_AT_name("CH_MAP_60")
.dwattr $C$DW$282, DW_AT_TI_symbol_name("CH_MAP_60")
.dwattr $C$DW$282, DW_AT_bit_offset(0x1c)
.dwattr $C$DW$282, DW_AT_bit_size(0x04)
.dwattr $C$DW$282, DW_AT_data_member_location[DW_OP_plus_uconst 0x0]
.dwattr $C$DW$282, DW_AT_accessibility(DW_ACCESS_public)
.dwattr $C$DW$282, DW_AT_decl_file("/usr/share/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$282, DW_AT_decl_line(0x218)
.dwattr $C$DW$282, DW_AT_decl_column(0x0d)
$C$DW$283 .dwtag DW_TAG_member
.dwattr $C$DW$283, DW_AT_type(*$C$DW$T$11)
.dwattr $C$DW$283, DW_AT_name("rsvd4")
.dwattr $C$DW$283, DW_AT_TI_symbol_name("rsvd4")
.dwattr $C$DW$283, DW_AT_bit_offset(0x18)
.dwattr $C$DW$283, DW_AT_bit_size(0x04)
.dwattr $C$DW$283, DW_AT_data_member_location[DW_OP_plus_uconst 0x0]
.dwattr $C$DW$283, DW_AT_accessibility(DW_ACCESS_public)
.dwattr $C$DW$283, DW_AT_decl_file("/usr/share/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$283, DW_AT_decl_line(0x219)
.dwattr $C$DW$283, DW_AT_decl_column(0x0d)
$C$DW$284 .dwtag DW_TAG_member
.dwattr $C$DW$284, DW_AT_type(*$C$DW$T$11)
.dwattr $C$DW$284, DW_AT_name("CH_MAP_61")
.dwattr $C$DW$284, DW_AT_TI_symbol_name("CH_MAP_61")
.dwattr $C$DW$284, DW_AT_bit_offset(0x14)
.dwattr $C$DW$284, DW_AT_bit_size(0x04)
.dwattr $C$DW$284, DW_AT_data_member_location[DW_OP_plus_uconst 0x0]
.dwattr $C$DW$284, DW_AT_accessibility(DW_ACCESS_public)
.dwattr $C$DW$284, DW_AT_decl_file("/usr/share/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$284, DW_AT_decl_line(0x21a)
.dwattr $C$DW$284, DW_AT_decl_column(0x0d)
$C$DW$285 .dwtag DW_TAG_member
.dwattr $C$DW$285, DW_AT_type(*$C$DW$T$11)
.dwattr $C$DW$285, DW_AT_name("rsvd12")
.dwattr $C$DW$285, DW_AT_TI_symbol_name("rsvd12")
.dwattr $C$DW$285, DW_AT_bit_offset(0x10)
.dwattr $C$DW$285, DW_AT_bit_size(0x04)
.dwattr $C$DW$285, DW_AT_data_member_location[DW_OP_plus_uconst 0x0]
.dwattr $C$DW$285, DW_AT_accessibility(DW_ACCESS_public)
.dwattr $C$DW$285, DW_AT_decl_file("/usr/share/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$285, DW_AT_decl_line(0x21b)
.dwattr $C$DW$285, DW_AT_decl_column(0x0d)
$C$DW$286 .dwtag DW_TAG_member
.dwattr $C$DW$286, DW_AT_type(*$C$DW$T$11)
.dwattr $C$DW$286, DW_AT_name("CH_MAP_62")
.dwattr $C$DW$286, DW_AT_TI_symbol_name("CH_MAP_62")
.dwattr $C$DW$286, DW_AT_bit_offset(0x0c)
.dwattr $C$DW$286, DW_AT_bit_size(0x04)
.dwattr $C$DW$286, DW_AT_data_member_location[DW_OP_plus_uconst 0x0]
.dwattr $C$DW$286, DW_AT_accessibility(DW_ACCESS_public)
.dwattr $C$DW$286, DW_AT_decl_file("/usr/share/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$286, DW_AT_decl_line(0x21c)
.dwattr $C$DW$286, DW_AT_decl_column(0x0d)
$C$DW$287 .dwtag DW_TAG_member
.dwattr $C$DW$287, DW_AT_type(*$C$DW$T$11)
.dwattr $C$DW$287, DW_AT_name("rsvd20")
.dwattr $C$DW$287, DW_AT_TI_symbol_name("rsvd20")
.dwattr $C$DW$287, DW_AT_bit_offset(0x08)
.dwattr $C$DW$287, DW_AT_bit_size(0x04)
.dwattr $C$DW$287, DW_AT_data_member_location[DW_OP_plus_uconst 0x0]
.dwattr $C$DW$287, DW_AT_accessibility(DW_ACCESS_public)
.dwattr $C$DW$287, DW_AT_decl_file("/usr/share/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$287, DW_AT_decl_line(0x21d)
.dwattr $C$DW$287, DW_AT_decl_column(0x0d)
$C$DW$288 .dwtag DW_TAG_member
.dwattr $C$DW$288, DW_AT_type(*$C$DW$T$11)
.dwattr $C$DW$288, DW_AT_name("CH_MAP_63")
.dwattr $C$DW$288, DW_AT_TI_symbol_name("CH_MAP_63")
.dwattr $C$DW$288, DW_AT_bit_offset(0x04)
.dwattr $C$DW$288, DW_AT_bit_size(0x04)
.dwattr $C$DW$288, DW_AT_data_member_location[DW_OP_plus_uconst 0x0]
.dwattr $C$DW$288, DW_AT_accessibility(DW_ACCESS_public)
.dwattr $C$DW$288, DW_AT_decl_file("/usr/share/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$288, DW_AT_decl_line(0x21e)
.dwattr $C$DW$288, DW_AT_decl_column(0x0d)
$C$DW$289 .dwtag DW_TAG_member
.dwattr $C$DW$289, DW_AT_type(*$C$DW$T$11)
.dwattr $C$DW$289, DW_AT_name("rsvd28")
.dwattr $C$DW$289, DW_AT_TI_symbol_name("rsvd28")
.dwattr $C$DW$289, DW_AT_bit_offset(0x00)
.dwattr $C$DW$289, DW_AT_bit_size(0x04)
.dwattr $C$DW$289, DW_AT_data_member_location[DW_OP_plus_uconst 0x0]
.dwattr $C$DW$289, DW_AT_accessibility(DW_ACCESS_public)
.dwattr $C$DW$289, DW_AT_decl_file("/usr/share/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$289, DW_AT_decl_line(0x21f)
.dwattr $C$DW$289, DW_AT_decl_column(0x0d)
.dwattr $C$DW$T$70, DW_AT_decl_file("/usr/share/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$T$70, DW_AT_decl_line(0x217)
.dwattr $C$DW$T$70, DW_AT_decl_column(0x13)
.dwendtag $C$DW$T$70
$C$DW$T$217 .dwtag DW_TAG_volatile_type
.dwattr $C$DW$T$217, DW_AT_type(*$C$DW$T$70)
$C$DW$T$71 .dwtag DW_TAG_structure_type
.dwattr $C$DW$T$71, DW_AT_byte_size(0x04)
$C$DW$290 .dwtag DW_TAG_member
.dwattr $C$DW$290, DW_AT_type(*$C$DW$T$11)
.dwattr $C$DW$290, DW_AT_name("HINT_MAP_0")
.dwattr $C$DW$290, DW_AT_TI_symbol_name("HINT_MAP_0")
.dwattr $C$DW$290, DW_AT_bit_offset(0x1c)
.dwattr $C$DW$290, DW_AT_bit_size(0x04)
.dwattr $C$DW$290, DW_AT_data_member_location[DW_OP_plus_uconst 0x0]
.dwattr $C$DW$290, DW_AT_accessibility(DW_ACCESS_public)
.dwattr $C$DW$290, DW_AT_decl_file("/usr/share/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$290, DW_AT_decl_line(0x22c)
.dwattr $C$DW$290, DW_AT_decl_column(0x0d)
$C$DW$291 .dwtag DW_TAG_member
.dwattr $C$DW$291, DW_AT_type(*$C$DW$T$11)
.dwattr $C$DW$291, DW_AT_name("rsvd4")
.dwattr $C$DW$291, DW_AT_TI_symbol_name("rsvd4")
.dwattr $C$DW$291, DW_AT_bit_offset(0x18)
.dwattr $C$DW$291, DW_AT_bit_size(0x04)
.dwattr $C$DW$291, DW_AT_data_member_location[DW_OP_plus_uconst 0x0]
.dwattr $C$DW$291, DW_AT_accessibility(DW_ACCESS_public)
.dwattr $C$DW$291, DW_AT_decl_file("/usr/share/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$291, DW_AT_decl_line(0x22d)
.dwattr $C$DW$291, DW_AT_decl_column(0x0d)
$C$DW$292 .dwtag DW_TAG_member
.dwattr $C$DW$292, DW_AT_type(*$C$DW$T$11)
.dwattr $C$DW$292, DW_AT_name("HINT_MAP_1")
.dwattr $C$DW$292, DW_AT_TI_symbol_name("HINT_MAP_1")
.dwattr $C$DW$292, DW_AT_bit_offset(0x14)
.dwattr $C$DW$292, DW_AT_bit_size(0x04)
.dwattr $C$DW$292, DW_AT_data_member_location[DW_OP_plus_uconst 0x0]
.dwattr $C$DW$292, DW_AT_accessibility(DW_ACCESS_public)
.dwattr $C$DW$292, DW_AT_decl_file("/usr/share/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$292, DW_AT_decl_line(0x22e)
.dwattr $C$DW$292, DW_AT_decl_column(0x0d)
$C$DW$293 .dwtag DW_TAG_member
.dwattr $C$DW$293, DW_AT_type(*$C$DW$T$11)
.dwattr $C$DW$293, DW_AT_name("rsvd12")
.dwattr $C$DW$293, DW_AT_TI_symbol_name("rsvd12")
.dwattr $C$DW$293, DW_AT_bit_offset(0x10)
.dwattr $C$DW$293, DW_AT_bit_size(0x04)
.dwattr $C$DW$293, DW_AT_data_member_location[DW_OP_plus_uconst 0x0]
.dwattr $C$DW$293, DW_AT_accessibility(DW_ACCESS_public)
.dwattr $C$DW$293, DW_AT_decl_file("/usr/share/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$293, DW_AT_decl_line(0x22f)
.dwattr $C$DW$293, DW_AT_decl_column(0x0d)
$C$DW$294 .dwtag DW_TAG_member
.dwattr $C$DW$294, DW_AT_type(*$C$DW$T$11)
.dwattr $C$DW$294, DW_AT_name("HINT_MAP_2")
.dwattr $C$DW$294, DW_AT_TI_symbol_name("HINT_MAP_2")
.dwattr $C$DW$294, DW_AT_bit_offset(0x0c)
.dwattr $C$DW$294, DW_AT_bit_size(0x04)
.dwattr $C$DW$294, DW_AT_data_member_location[DW_OP_plus_uconst 0x0]
.dwattr $C$DW$294, DW_AT_accessibility(DW_ACCESS_public)
.dwattr $C$DW$294, DW_AT_decl_file("/usr/share/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$294, DW_AT_decl_line(0x230)
.dwattr $C$DW$294, DW_AT_decl_column(0x0d)
$C$DW$295 .dwtag DW_TAG_member
.dwattr $C$DW$295, DW_AT_type(*$C$DW$T$11)
.dwattr $C$DW$295, DW_AT_name("rsvd20")
.dwattr $C$DW$295, DW_AT_TI_symbol_name("rsvd20")
.dwattr $C$DW$295, DW_AT_bit_offset(0x08)
.dwattr $C$DW$295, DW_AT_bit_size(0x04)
.dwattr $C$DW$295, DW_AT_data_member_location[DW_OP_plus_uconst 0x0]
.dwattr $C$DW$295, DW_AT_accessibility(DW_ACCESS_public)
.dwattr $C$DW$295, DW_AT_decl_file("/usr/share/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$295, DW_AT_decl_line(0x231)
.dwattr $C$DW$295, DW_AT_decl_column(0x0d)
$C$DW$296 .dwtag DW_TAG_member
.dwattr $C$DW$296, DW_AT_type(*$C$DW$T$11)
.dwattr $C$DW$296, DW_AT_name("HINT_MAP_3")
.dwattr $C$DW$296, DW_AT_TI_symbol_name("HINT_MAP_3")
.dwattr $C$DW$296, DW_AT_bit_offset(0x04)
.dwattr $C$DW$296, DW_AT_bit_size(0x04)
.dwattr $C$DW$296, DW_AT_data_member_location[DW_OP_plus_uconst 0x0]
.dwattr $C$DW$296, DW_AT_accessibility(DW_ACCESS_public)
.dwattr $C$DW$296, DW_AT_decl_file("/usr/share/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$296, DW_AT_decl_line(0x232)
.dwattr $C$DW$296, DW_AT_decl_column(0x0d)
$C$DW$297 .dwtag DW_TAG_member
.dwattr $C$DW$297, DW_AT_type(*$C$DW$T$11)
.dwattr $C$DW$297, DW_AT_name("rsvd28")
.dwattr $C$DW$297, DW_AT_TI_symbol_name("rsvd28")
.dwattr $C$DW$297, DW_AT_bit_offset(0x00)
.dwattr $C$DW$297, DW_AT_bit_size(0x04)
.dwattr $C$DW$297, DW_AT_data_member_location[DW_OP_plus_uconst 0x0]
.dwattr $C$DW$297, DW_AT_accessibility(DW_ACCESS_public)
.dwattr $C$DW$297, DW_AT_decl_file("/usr/share/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$297, DW_AT_decl_line(0x233)
.dwattr $C$DW$297, DW_AT_decl_column(0x0d)
.dwattr $C$DW$T$71, DW_AT_decl_file("/usr/share/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$T$71, DW_AT_decl_line(0x22b)
.dwattr $C$DW$T$71, DW_AT_decl_column(0x13)
.dwendtag $C$DW$T$71
$C$DW$T$219 .dwtag DW_TAG_volatile_type
.dwattr $C$DW$T$219, DW_AT_type(*$C$DW$T$71)
$C$DW$T$72 .dwtag DW_TAG_structure_type
.dwattr $C$DW$T$72, DW_AT_byte_size(0x04)
$C$DW$298 .dwtag DW_TAG_member
.dwattr $C$DW$298, DW_AT_type(*$C$DW$T$11)
.dwattr $C$DW$298, DW_AT_name("HINT_MAP_4")
.dwattr $C$DW$298, DW_AT_TI_symbol_name("HINT_MAP_4")
.dwattr $C$DW$298, DW_AT_bit_offset(0x1c)
.dwattr $C$DW$298, DW_AT_bit_size(0x04)
.dwattr $C$DW$298, DW_AT_data_member_location[DW_OP_plus_uconst 0x0]
.dwattr $C$DW$298, DW_AT_accessibility(DW_ACCESS_public)
.dwattr $C$DW$298, DW_AT_decl_file("/usr/share/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$298, DW_AT_decl_line(0x23d)
.dwattr $C$DW$298, DW_AT_decl_column(0x0d)
$C$DW$299 .dwtag DW_TAG_member
.dwattr $C$DW$299, DW_AT_type(*$C$DW$T$11)
.dwattr $C$DW$299, DW_AT_name("rsvd4")
.dwattr $C$DW$299, DW_AT_TI_symbol_name("rsvd4")
.dwattr $C$DW$299, DW_AT_bit_offset(0x18)
.dwattr $C$DW$299, DW_AT_bit_size(0x04)
.dwattr $C$DW$299, DW_AT_data_member_location[DW_OP_plus_uconst 0x0]
.dwattr $C$DW$299, DW_AT_accessibility(DW_ACCESS_public)
.dwattr $C$DW$299, DW_AT_decl_file("/usr/share/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$299, DW_AT_decl_line(0x23e)
.dwattr $C$DW$299, DW_AT_decl_column(0x0d)
$C$DW$300 .dwtag DW_TAG_member
.dwattr $C$DW$300, DW_AT_type(*$C$DW$T$11)
.dwattr $C$DW$300, DW_AT_name("HINT_MAP_5")
.dwattr $C$DW$300, DW_AT_TI_symbol_name("HINT_MAP_5")
.dwattr $C$DW$300, DW_AT_bit_offset(0x14)
.dwattr $C$DW$300, DW_AT_bit_size(0x04)
.dwattr $C$DW$300, DW_AT_data_member_location[DW_OP_plus_uconst 0x0]
.dwattr $C$DW$300, DW_AT_accessibility(DW_ACCESS_public)
.dwattr $C$DW$300, DW_AT_decl_file("/usr/share/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$300, DW_AT_decl_line(0x23f)
.dwattr $C$DW$300, DW_AT_decl_column(0x0d)
$C$DW$301 .dwtag DW_TAG_member
.dwattr $C$DW$301, DW_AT_type(*$C$DW$T$11)
.dwattr $C$DW$301, DW_AT_name("rsvd12")
.dwattr $C$DW$301, DW_AT_TI_symbol_name("rsvd12")
.dwattr $C$DW$301, DW_AT_bit_offset(0x10)
.dwattr $C$DW$301, DW_AT_bit_size(0x04)
.dwattr $C$DW$301, DW_AT_data_member_location[DW_OP_plus_uconst 0x0]
.dwattr $C$DW$301, DW_AT_accessibility(DW_ACCESS_public)
.dwattr $C$DW$301, DW_AT_decl_file("/usr/share/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$301, DW_AT_decl_line(0x240)
.dwattr $C$DW$301, DW_AT_decl_column(0x0d)
$C$DW$302 .dwtag DW_TAG_member
.dwattr $C$DW$302, DW_AT_type(*$C$DW$T$11)
.dwattr $C$DW$302, DW_AT_name("HINT_MAP_6")
.dwattr $C$DW$302, DW_AT_TI_symbol_name("HINT_MAP_6")
.dwattr $C$DW$302, DW_AT_bit_offset(0x0c)
.dwattr $C$DW$302, DW_AT_bit_size(0x04)
.dwattr $C$DW$302, DW_AT_data_member_location[DW_OP_plus_uconst 0x0]
.dwattr $C$DW$302, DW_AT_accessibility(DW_ACCESS_public)
.dwattr $C$DW$302, DW_AT_decl_file("/usr/share/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$302, DW_AT_decl_line(0x241)
.dwattr $C$DW$302, DW_AT_decl_column(0x0d)
$C$DW$303 .dwtag DW_TAG_member
.dwattr $C$DW$303, DW_AT_type(*$C$DW$T$11)
.dwattr $C$DW$303, DW_AT_name("rsvd20")
.dwattr $C$DW$303, DW_AT_TI_symbol_name("rsvd20")
.dwattr $C$DW$303, DW_AT_bit_offset(0x08)
.dwattr $C$DW$303, DW_AT_bit_size(0x04)
.dwattr $C$DW$303, DW_AT_data_member_location[DW_OP_plus_uconst 0x0]
.dwattr $C$DW$303, DW_AT_accessibility(DW_ACCESS_public)
.dwattr $C$DW$303, DW_AT_decl_file("/usr/share/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$303, DW_AT_decl_line(0x242)
.dwattr $C$DW$303, DW_AT_decl_column(0x0d)
$C$DW$304 .dwtag DW_TAG_member
.dwattr $C$DW$304, DW_AT_type(*$C$DW$T$11)
.dwattr $C$DW$304, DW_AT_name("HINT_MAP_7")
.dwattr $C$DW$304, DW_AT_TI_symbol_name("HINT_MAP_7")
.dwattr $C$DW$304, DW_AT_bit_offset(0x04)
.dwattr $C$DW$304, DW_AT_bit_size(0x04)
.dwattr $C$DW$304, DW_AT_data_member_location[DW_OP_plus_uconst 0x0]
.dwattr $C$DW$304, DW_AT_accessibility(DW_ACCESS_public)
.dwattr $C$DW$304, DW_AT_decl_file("/usr/share/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$304, DW_AT_decl_line(0x243)
.dwattr $C$DW$304, DW_AT_decl_column(0x0d)
$C$DW$305 .dwtag DW_TAG_member
.dwattr $C$DW$305, DW_AT_type(*$C$DW$T$11)
.dwattr $C$DW$305, DW_AT_name("rsvd28")
.dwattr $C$DW$305, DW_AT_TI_symbol_name("rsvd28")
.dwattr $C$DW$305, DW_AT_bit_offset(0x00)
.dwattr $C$DW$305, DW_AT_bit_size(0x04)
.dwattr $C$DW$305, DW_AT_data_member_location[DW_OP_plus_uconst 0x0]
.dwattr $C$DW$305, DW_AT_accessibility(DW_ACCESS_public)
.dwattr $C$DW$305, DW_AT_decl_file("/usr/share/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$305, DW_AT_decl_line(0x244)
.dwattr $C$DW$305, DW_AT_decl_column(0x0d)
.dwattr $C$DW$T$72, DW_AT_decl_file("/usr/share/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$T$72, DW_AT_decl_line(0x23c)
.dwattr $C$DW$T$72, DW_AT_decl_column(0x13)
.dwendtag $C$DW$T$72
$C$DW$T$221 .dwtag DW_TAG_volatile_type
.dwattr $C$DW$T$221, DW_AT_type(*$C$DW$T$72)
$C$DW$T$73 .dwtag DW_TAG_structure_type
.dwattr $C$DW$T$73, DW_AT_byte_size(0x04)
$C$DW$306 .dwtag DW_TAG_member
.dwattr $C$DW$306, DW_AT_type(*$C$DW$T$11)
.dwattr $C$DW$306, DW_AT_name("HINT_MAP_8")
.dwattr $C$DW$306, DW_AT_TI_symbol_name("HINT_MAP_8")
.dwattr $C$DW$306, DW_AT_bit_offset(0x1c)
.dwattr $C$DW$306, DW_AT_bit_size(0x04)
.dwattr $C$DW$306, DW_AT_data_member_location[DW_OP_plus_uconst 0x0]
.dwattr $C$DW$306, DW_AT_accessibility(DW_ACCESS_public)
.dwattr $C$DW$306, DW_AT_decl_file("/usr/share/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$306, DW_AT_decl_line(0x24e)
.dwattr $C$DW$306, DW_AT_decl_column(0x0d)
$C$DW$307 .dwtag DW_TAG_member
.dwattr $C$DW$307, DW_AT_type(*$C$DW$T$11)
.dwattr $C$DW$307, DW_AT_name("rsvd4")
.dwattr $C$DW$307, DW_AT_TI_symbol_name("rsvd4")
.dwattr $C$DW$307, DW_AT_bit_offset(0x18)
.dwattr $C$DW$307, DW_AT_bit_size(0x04)
.dwattr $C$DW$307, DW_AT_data_member_location[DW_OP_plus_uconst 0x0]
.dwattr $C$DW$307, DW_AT_accessibility(DW_ACCESS_public)
.dwattr $C$DW$307, DW_AT_decl_file("/usr/share/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$307, DW_AT_decl_line(0x24f)
.dwattr $C$DW$307, DW_AT_decl_column(0x0d)
$C$DW$308 .dwtag DW_TAG_member
.dwattr $C$DW$308, DW_AT_type(*$C$DW$T$11)
.dwattr $C$DW$308, DW_AT_name("HINT_MAP_9")
.dwattr $C$DW$308, DW_AT_TI_symbol_name("HINT_MAP_9")
.dwattr $C$DW$308, DW_AT_bit_offset(0x14)
.dwattr $C$DW$308, DW_AT_bit_size(0x04)
.dwattr $C$DW$308, DW_AT_data_member_location[DW_OP_plus_uconst 0x0]
.dwattr $C$DW$308, DW_AT_accessibility(DW_ACCESS_public)
.dwattr $C$DW$308, DW_AT_decl_file("/usr/share/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$308, DW_AT_decl_line(0x250)
.dwattr $C$DW$308, DW_AT_decl_column(0x0d)
$C$DW$309 .dwtag DW_TAG_member
.dwattr $C$DW$309, DW_AT_type(*$C$DW$T$11)
.dwattr $C$DW$309, DW_AT_name("rsvd12")
.dwattr $C$DW$309, DW_AT_TI_symbol_name("rsvd12")
.dwattr $C$DW$309, DW_AT_bit_offset(0x00)
.dwattr $C$DW$309, DW_AT_bit_size(0x14)
.dwattr $C$DW$309, DW_AT_data_member_location[DW_OP_plus_uconst 0x0]
.dwattr $C$DW$309, DW_AT_accessibility(DW_ACCESS_public)
.dwattr $C$DW$309, DW_AT_decl_file("/usr/share/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$309, DW_AT_decl_line(0x251)
.dwattr $C$DW$309, DW_AT_decl_column(0x0d)
.dwattr $C$DW$T$73, DW_AT_decl_file("/usr/share/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$T$73, DW_AT_decl_line(0x24d)
.dwattr $C$DW$T$73, DW_AT_decl_column(0x13)
.dwendtag $C$DW$T$73
$C$DW$T$223 .dwtag DW_TAG_volatile_type
.dwattr $C$DW$T$223, DW_AT_type(*$C$DW$T$73)
$C$DW$T$74 .dwtag DW_TAG_structure_type
.dwattr $C$DW$T$74, DW_AT_byte_size(0x04)
$C$DW$310 .dwtag DW_TAG_member
.dwattr $C$DW$310, DW_AT_type(*$C$DW$T$11)
.dwattr $C$DW$310, DW_AT_name("PRI_HINT_0")
.dwattr $C$DW$310, DW_AT_TI_symbol_name("PRI_HINT_0")
.dwattr $C$DW$310, DW_AT_bit_offset(0x16)
.dwattr $C$DW$310, DW_AT_bit_size(0x0a)
.dwattr $C$DW$310, DW_AT_data_member_location[DW_OP_plus_uconst 0x0]
.dwattr $C$DW$310, DW_AT_accessibility(DW_ACCESS_public)
.dwattr $C$DW$310, DW_AT_decl_file("/usr/share/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$310, DW_AT_decl_line(0x25e)
.dwattr $C$DW$310, DW_AT_decl_column(0x0d)
$C$DW$311 .dwtag DW_TAG_member
.dwattr $C$DW$311, DW_AT_type(*$C$DW$T$11)
.dwattr $C$DW$311, DW_AT_name("rsvd10")
.dwattr $C$DW$311, DW_AT_TI_symbol_name("rsvd10")
.dwattr $C$DW$311, DW_AT_bit_offset(0x01)
.dwattr $C$DW$311, DW_AT_bit_size(0x15)
.dwattr $C$DW$311, DW_AT_data_member_location[DW_OP_plus_uconst 0x0]
.dwattr $C$DW$311, DW_AT_accessibility(DW_ACCESS_public)
.dwattr $C$DW$311, DW_AT_decl_file("/usr/share/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$311, DW_AT_decl_line(0x25f)
.dwattr $C$DW$311, DW_AT_decl_column(0x0d)
$C$DW$312 .dwtag DW_TAG_member
.dwattr $C$DW$312, DW_AT_type(*$C$DW$T$11)
.dwattr $C$DW$312, DW_AT_name("NONE_HINT_0")
.dwattr $C$DW$312, DW_AT_TI_symbol_name("NONE_HINT_0")
.dwattr $C$DW$312, DW_AT_bit_offset(0x00)
.dwattr $C$DW$312, DW_AT_bit_size(0x01)
.dwattr $C$DW$312, DW_AT_data_member_location[DW_OP_plus_uconst 0x0]
.dwattr $C$DW$312, DW_AT_accessibility(DW_ACCESS_public)
.dwattr $C$DW$312, DW_AT_decl_file("/usr/share/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$312, DW_AT_decl_line(0x260)
.dwattr $C$DW$312, DW_AT_decl_column(0x0d)
.dwattr $C$DW$T$74, DW_AT_decl_file("/usr/share/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$T$74, DW_AT_decl_line(0x25d)
.dwattr $C$DW$T$74, DW_AT_decl_column(0x13)
.dwendtag $C$DW$T$74
$C$DW$T$225 .dwtag DW_TAG_volatile_type
.dwattr $C$DW$T$225, DW_AT_type(*$C$DW$T$74)
$C$DW$T$75 .dwtag DW_TAG_structure_type
.dwattr $C$DW$T$75, DW_AT_byte_size(0x04)
$C$DW$313 .dwtag DW_TAG_member
.dwattr $C$DW$313, DW_AT_type(*$C$DW$T$11)
.dwattr $C$DW$313, DW_AT_name("PRI_HINT_1")
.dwattr $C$DW$313, DW_AT_TI_symbol_name("PRI_HINT_1")
.dwattr $C$DW$313, DW_AT_bit_offset(0x16)
.dwattr $C$DW$313, DW_AT_bit_size(0x0a)
.dwattr $C$DW$313, DW_AT_data_member_location[DW_OP_plus_uconst 0x0]
.dwattr $C$DW$313, DW_AT_accessibility(DW_ACCESS_public)
.dwattr $C$DW$313, DW_AT_decl_file("/usr/share/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$313, DW_AT_decl_line(0x26a)
.dwattr $C$DW$313, DW_AT_decl_column(0x0d)
$C$DW$314 .dwtag DW_TAG_member
.dwattr $C$DW$314, DW_AT_type(*$C$DW$T$11)
.dwattr $C$DW$314, DW_AT_name("rsvd10")
.dwattr $C$DW$314, DW_AT_TI_symbol_name("rsvd10")
.dwattr $C$DW$314, DW_AT_bit_offset(0x01)
.dwattr $C$DW$314, DW_AT_bit_size(0x15)
.dwattr $C$DW$314, DW_AT_data_member_location[DW_OP_plus_uconst 0x0]
.dwattr $C$DW$314, DW_AT_accessibility(DW_ACCESS_public)
.dwattr $C$DW$314, DW_AT_decl_file("/usr/share/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$314, DW_AT_decl_line(0x26b)
.dwattr $C$DW$314, DW_AT_decl_column(0x0d)
$C$DW$315 .dwtag DW_TAG_member
.dwattr $C$DW$315, DW_AT_type(*$C$DW$T$11)
.dwattr $C$DW$315, DW_AT_name("NONE_HINT_1")
.dwattr $C$DW$315, DW_AT_TI_symbol_name("NONE_HINT_1")
.dwattr $C$DW$315, DW_AT_bit_offset(0x00)
.dwattr $C$DW$315, DW_AT_bit_size(0x01)
.dwattr $C$DW$315, DW_AT_data_member_location[DW_OP_plus_uconst 0x0]
.dwattr $C$DW$315, DW_AT_accessibility(DW_ACCESS_public)
.dwattr $C$DW$315, DW_AT_decl_file("/usr/share/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$315, DW_AT_decl_line(0x26c)
.dwattr $C$DW$315, DW_AT_decl_column(0x0d)
.dwattr $C$DW$T$75, DW_AT_decl_file("/usr/share/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$T$75, DW_AT_decl_line(0x269)
.dwattr $C$DW$T$75, DW_AT_decl_column(0x13)
.dwendtag $C$DW$T$75
$C$DW$T$227 .dwtag DW_TAG_volatile_type
.dwattr $C$DW$T$227, DW_AT_type(*$C$DW$T$75)
$C$DW$T$76 .dwtag DW_TAG_structure_type
.dwattr $C$DW$T$76, DW_AT_byte_size(0x04)
$C$DW$316 .dwtag DW_TAG_member
.dwattr $C$DW$316, DW_AT_type(*$C$DW$T$11)
.dwattr $C$DW$316, DW_AT_name("PRI_HINT_2")
.dwattr $C$DW$316, DW_AT_TI_symbol_name("PRI_HINT_2")
.dwattr $C$DW$316, DW_AT_bit_offset(0x16)
.dwattr $C$DW$316, DW_AT_bit_size(0x0a)
.dwattr $C$DW$316, DW_AT_data_member_location[DW_OP_plus_uconst 0x0]
.dwattr $C$DW$316, DW_AT_accessibility(DW_ACCESS_public)
.dwattr $C$DW$316, DW_AT_decl_file("/usr/share/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$316, DW_AT_decl_line(0x276)
.dwattr $C$DW$316, DW_AT_decl_column(0x0d)
$C$DW$317 .dwtag DW_TAG_member
.dwattr $C$DW$317, DW_AT_type(*$C$DW$T$11)
.dwattr $C$DW$317, DW_AT_name("rsvd10")
.dwattr $C$DW$317, DW_AT_TI_symbol_name("rsvd10")
.dwattr $C$DW$317, DW_AT_bit_offset(0x01)
.dwattr $C$DW$317, DW_AT_bit_size(0x15)
.dwattr $C$DW$317, DW_AT_data_member_location[DW_OP_plus_uconst 0x0]
.dwattr $C$DW$317, DW_AT_accessibility(DW_ACCESS_public)
.dwattr $C$DW$317, DW_AT_decl_file("/usr/share/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$317, DW_AT_decl_line(0x277)
.dwattr $C$DW$317, DW_AT_decl_column(0x0d)
$C$DW$318 .dwtag DW_TAG_member
.dwattr $C$DW$318, DW_AT_type(*$C$DW$T$11)
.dwattr $C$DW$318, DW_AT_name("NONE_HINT_2")
.dwattr $C$DW$318, DW_AT_TI_symbol_name("NONE_HINT_2")
.dwattr $C$DW$318, DW_AT_bit_offset(0x00)
.dwattr $C$DW$318, DW_AT_bit_size(0x01)
.dwattr $C$DW$318, DW_AT_data_member_location[DW_OP_plus_uconst 0x0]
.dwattr $C$DW$318, DW_AT_accessibility(DW_ACCESS_public)
.dwattr $C$DW$318, DW_AT_decl_file("/usr/share/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$318, DW_AT_decl_line(0x278)
.dwattr $C$DW$318, DW_AT_decl_column(0x0d)
.dwattr $C$DW$T$76, DW_AT_decl_file("/usr/share/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$T$76, DW_AT_decl_line(0x275)
.dwattr $C$DW$T$76, DW_AT_decl_column(0x13)
.dwendtag $C$DW$T$76
$C$DW$T$229 .dwtag DW_TAG_volatile_type
.dwattr $C$DW$T$229, DW_AT_type(*$C$DW$T$76)
$C$DW$T$77 .dwtag DW_TAG_structure_type
.dwattr $C$DW$T$77, DW_AT_byte_size(0x04)
$C$DW$319 .dwtag DW_TAG_member
.dwattr $C$DW$319, DW_AT_type(*$C$DW$T$11)
.dwattr $C$DW$319, DW_AT_name("PRI_HINT_3")
.dwattr $C$DW$319, DW_AT_TI_symbol_name("PRI_HINT_3")
.dwattr $C$DW$319, DW_AT_bit_offset(0x16)
.dwattr $C$DW$319, DW_AT_bit_size(0x0a)
.dwattr $C$DW$319, DW_AT_data_member_location[DW_OP_plus_uconst 0x0]
.dwattr $C$DW$319, DW_AT_accessibility(DW_ACCESS_public)
.dwattr $C$DW$319, DW_AT_decl_file("/usr/share/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$319, DW_AT_decl_line(0x282)
.dwattr $C$DW$319, DW_AT_decl_column(0x0d)
$C$DW$320 .dwtag DW_TAG_member
.dwattr $C$DW$320, DW_AT_type(*$C$DW$T$11)
.dwattr $C$DW$320, DW_AT_name("rsvd10")
.dwattr $C$DW$320, DW_AT_TI_symbol_name("rsvd10")
.dwattr $C$DW$320, DW_AT_bit_offset(0x01)
.dwattr $C$DW$320, DW_AT_bit_size(0x15)
.dwattr $C$DW$320, DW_AT_data_member_location[DW_OP_plus_uconst 0x0]
.dwattr $C$DW$320, DW_AT_accessibility(DW_ACCESS_public)
.dwattr $C$DW$320, DW_AT_decl_file("/usr/share/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$320, DW_AT_decl_line(0x283)
.dwattr $C$DW$320, DW_AT_decl_column(0x0d)
$C$DW$321 .dwtag DW_TAG_member
.dwattr $C$DW$321, DW_AT_type(*$C$DW$T$11)
.dwattr $C$DW$321, DW_AT_name("NONE_HINT_3")
.dwattr $C$DW$321, DW_AT_TI_symbol_name("NONE_HINT_3")
.dwattr $C$DW$321, DW_AT_bit_offset(0x00)
.dwattr $C$DW$321, DW_AT_bit_size(0x01)
.dwattr $C$DW$321, DW_AT_data_member_location[DW_OP_plus_uconst 0x0]
.dwattr $C$DW$321, DW_AT_accessibility(DW_ACCESS_public)
.dwattr $C$DW$321, DW_AT_decl_file("/usr/share/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$321, DW_AT_decl_line(0x284)
.dwattr $C$DW$321, DW_AT_decl_column(0x0d)
.dwattr $C$DW$T$77, DW_AT_decl_file("/usr/share/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$T$77, DW_AT_decl_line(0x281)
.dwattr $C$DW$T$77, DW_AT_decl_column(0x13)
.dwendtag $C$DW$T$77
$C$DW$T$231 .dwtag DW_TAG_volatile_type
.dwattr $C$DW$T$231, DW_AT_type(*$C$DW$T$77)
$C$DW$T$78 .dwtag DW_TAG_structure_type
.dwattr $C$DW$T$78, DW_AT_byte_size(0x04)
$C$DW$322 .dwtag DW_TAG_member
.dwattr $C$DW$322, DW_AT_type(*$C$DW$T$11)
.dwattr $C$DW$322, DW_AT_name("PRI_HINT_4")
.dwattr $C$DW$322, DW_AT_TI_symbol_name("PRI_HINT_4")
.dwattr $C$DW$322, DW_AT_bit_offset(0x16)
.dwattr $C$DW$322, DW_AT_bit_size(0x0a)
.dwattr $C$DW$322, DW_AT_data_member_location[DW_OP_plus_uconst 0x0]
.dwattr $C$DW$322, DW_AT_accessibility(DW_ACCESS_public)
.dwattr $C$DW$322, DW_AT_decl_file("/usr/share/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$322, DW_AT_decl_line(0x28e)
.dwattr $C$DW$322, DW_AT_decl_column(0x0d)
$C$DW$323 .dwtag DW_TAG_member
.dwattr $C$DW$323, DW_AT_type(*$C$DW$T$11)
.dwattr $C$DW$323, DW_AT_name("rsvd10")
.dwattr $C$DW$323, DW_AT_TI_symbol_name("rsvd10")
.dwattr $C$DW$323, DW_AT_bit_offset(0x01)
.dwattr $C$DW$323, DW_AT_bit_size(0x15)
.dwattr $C$DW$323, DW_AT_data_member_location[DW_OP_plus_uconst 0x0]
.dwattr $C$DW$323, DW_AT_accessibility(DW_ACCESS_public)
.dwattr $C$DW$323, DW_AT_decl_file("/usr/share/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$323, DW_AT_decl_line(0x28f)
.dwattr $C$DW$323, DW_AT_decl_column(0x0d)
$C$DW$324 .dwtag DW_TAG_member
.dwattr $C$DW$324, DW_AT_type(*$C$DW$T$11)
.dwattr $C$DW$324, DW_AT_name("NONE_HINT_4")
.dwattr $C$DW$324, DW_AT_TI_symbol_name("NONE_HINT_4")
.dwattr $C$DW$324, DW_AT_bit_offset(0x00)
.dwattr $C$DW$324, DW_AT_bit_size(0x01)
.dwattr $C$DW$324, DW_AT_data_member_location[DW_OP_plus_uconst 0x0]
.dwattr $C$DW$324, DW_AT_accessibility(DW_ACCESS_public)
.dwattr $C$DW$324, DW_AT_decl_file("/usr/share/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$324, DW_AT_decl_line(0x290)
.dwattr $C$DW$324, DW_AT_decl_column(0x0d)
.dwattr $C$DW$T$78, DW_AT_decl_file("/usr/share/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$T$78, DW_AT_decl_line(0x28d)
.dwattr $C$DW$T$78, DW_AT_decl_column(0x13)
.dwendtag $C$DW$T$78
$C$DW$T$233 .dwtag DW_TAG_volatile_type
.dwattr $C$DW$T$233, DW_AT_type(*$C$DW$T$78)
$C$DW$T$79 .dwtag DW_TAG_structure_type
.dwattr $C$DW$T$79, DW_AT_byte_size(0x04)
$C$DW$325 .dwtag DW_TAG_member
.dwattr $C$DW$325, DW_AT_type(*$C$DW$T$11)
.dwattr $C$DW$325, DW_AT_name("PRI_HINT_5")
.dwattr $C$DW$325, DW_AT_TI_symbol_name("PRI_HINT_5")
.dwattr $C$DW$325, DW_AT_bit_offset(0x16)
.dwattr $C$DW$325, DW_AT_bit_size(0x0a)
.dwattr $C$DW$325, DW_AT_data_member_location[DW_OP_plus_uconst 0x0]
.dwattr $C$DW$325, DW_AT_accessibility(DW_ACCESS_public)
.dwattr $C$DW$325, DW_AT_decl_file("/usr/share/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$325, DW_AT_decl_line(0x29a)
.dwattr $C$DW$325, DW_AT_decl_column(0x0d)
$C$DW$326 .dwtag DW_TAG_member
.dwattr $C$DW$326, DW_AT_type(*$C$DW$T$11)
.dwattr $C$DW$326, DW_AT_name("rsvd10")
.dwattr $C$DW$326, DW_AT_TI_symbol_name("rsvd10")
.dwattr $C$DW$326, DW_AT_bit_offset(0x01)
.dwattr $C$DW$326, DW_AT_bit_size(0x15)
.dwattr $C$DW$326, DW_AT_data_member_location[DW_OP_plus_uconst 0x0]
.dwattr $C$DW$326, DW_AT_accessibility(DW_ACCESS_public)
.dwattr $C$DW$326, DW_AT_decl_file("/usr/share/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$326, DW_AT_decl_line(0x29b)
.dwattr $C$DW$326, DW_AT_decl_column(0x0d)
$C$DW$327 .dwtag DW_TAG_member
.dwattr $C$DW$327, DW_AT_type(*$C$DW$T$11)
.dwattr $C$DW$327, DW_AT_name("NONE_HINT_5")
.dwattr $C$DW$327, DW_AT_TI_symbol_name("NONE_HINT_5")
.dwattr $C$DW$327, DW_AT_bit_offset(0x00)
.dwattr $C$DW$327, DW_AT_bit_size(0x01)
.dwattr $C$DW$327, DW_AT_data_member_location[DW_OP_plus_uconst 0x0]
.dwattr $C$DW$327, DW_AT_accessibility(DW_ACCESS_public)
.dwattr $C$DW$327, DW_AT_decl_file("/usr/share/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$327, DW_AT_decl_line(0x29c)
.dwattr $C$DW$327, DW_AT_decl_column(0x0d)
.dwattr $C$DW$T$79, DW_AT_decl_file("/usr/share/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$T$79, DW_AT_decl_line(0x299)
.dwattr $C$DW$T$79, DW_AT_decl_column(0x13)
.dwendtag $C$DW$T$79
$C$DW$T$235 .dwtag DW_TAG_volatile_type
.dwattr $C$DW$T$235, DW_AT_type(*$C$DW$T$79)
$C$DW$T$80 .dwtag DW_TAG_structure_type
.dwattr $C$DW$T$80, DW_AT_byte_size(0x04)
$C$DW$328 .dwtag DW_TAG_member
.dwattr $C$DW$328, DW_AT_type(*$C$DW$T$11)
.dwattr $C$DW$328, DW_AT_name("PRI_HINT_6")
.dwattr $C$DW$328, DW_AT_TI_symbol_name("PRI_HINT_6")
.dwattr $C$DW$328, DW_AT_bit_offset(0x16)
.dwattr $C$DW$328, DW_AT_bit_size(0x0a)
.dwattr $C$DW$328, DW_AT_data_member_location[DW_OP_plus_uconst 0x0]
.dwattr $C$DW$328, DW_AT_accessibility(DW_ACCESS_public)
.dwattr $C$DW$328, DW_AT_decl_file("/usr/share/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$328, DW_AT_decl_line(0x2a6)
.dwattr $C$DW$328, DW_AT_decl_column(0x0d)
$C$DW$329 .dwtag DW_TAG_member
.dwattr $C$DW$329, DW_AT_type(*$C$DW$T$11)
.dwattr $C$DW$329, DW_AT_name("rsvd10")
.dwattr $C$DW$329, DW_AT_TI_symbol_name("rsvd10")
.dwattr $C$DW$329, DW_AT_bit_offset(0x01)
.dwattr $C$DW$329, DW_AT_bit_size(0x15)
.dwattr $C$DW$329, DW_AT_data_member_location[DW_OP_plus_uconst 0x0]
.dwattr $C$DW$329, DW_AT_accessibility(DW_ACCESS_public)
.dwattr $C$DW$329, DW_AT_decl_file("/usr/share/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$329, DW_AT_decl_line(0x2a7)
.dwattr $C$DW$329, DW_AT_decl_column(0x0d)
$C$DW$330 .dwtag DW_TAG_member
.dwattr $C$DW$330, DW_AT_type(*$C$DW$T$11)
.dwattr $C$DW$330, DW_AT_name("NONE_HINT_6")
.dwattr $C$DW$330, DW_AT_TI_symbol_name("NONE_HINT_6")
.dwattr $C$DW$330, DW_AT_bit_offset(0x00)
.dwattr $C$DW$330, DW_AT_bit_size(0x01)
.dwattr $C$DW$330, DW_AT_data_member_location[DW_OP_plus_uconst 0x0]
.dwattr $C$DW$330, DW_AT_accessibility(DW_ACCESS_public)
.dwattr $C$DW$330, DW_AT_decl_file("/usr/share/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$330, DW_AT_decl_line(0x2a8)
.dwattr $C$DW$330, DW_AT_decl_column(0x0d)
.dwattr $C$DW$T$80, DW_AT_decl_file("/usr/share/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$T$80, DW_AT_decl_line(0x2a5)
.dwattr $C$DW$T$80, DW_AT_decl_column(0x13)
.dwendtag $C$DW$T$80
$C$DW$T$237 .dwtag DW_TAG_volatile_type
.dwattr $C$DW$T$237, DW_AT_type(*$C$DW$T$80)
$C$DW$T$81 .dwtag DW_TAG_structure_type
.dwattr $C$DW$T$81, DW_AT_byte_size(0x04)
$C$DW$331 .dwtag DW_TAG_member
.dwattr $C$DW$331, DW_AT_type(*$C$DW$T$11)
.dwattr $C$DW$331, DW_AT_name("PRI_HINT_7")
.dwattr $C$DW$331, DW_AT_TI_symbol_name("PRI_HINT_7")
.dwattr $C$DW$331, DW_AT_bit_offset(0x16)
.dwattr $C$DW$331, DW_AT_bit_size(0x0a)
.dwattr $C$DW$331, DW_AT_data_member_location[DW_OP_plus_uconst 0x0]
.dwattr $C$DW$331, DW_AT_accessibility(DW_ACCESS_public)
.dwattr $C$DW$331, DW_AT_decl_file("/usr/share/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$331, DW_AT_decl_line(0x2b2)
.dwattr $C$DW$331, DW_AT_decl_column(0x0d)
$C$DW$332 .dwtag DW_TAG_member
.dwattr $C$DW$332, DW_AT_type(*$C$DW$T$11)
.dwattr $C$DW$332, DW_AT_name("rsvd10")
.dwattr $C$DW$332, DW_AT_TI_symbol_name("rsvd10")
.dwattr $C$DW$332, DW_AT_bit_offset(0x01)
.dwattr $C$DW$332, DW_AT_bit_size(0x15)
.dwattr $C$DW$332, DW_AT_data_member_location[DW_OP_plus_uconst 0x0]
.dwattr $C$DW$332, DW_AT_accessibility(DW_ACCESS_public)
.dwattr $C$DW$332, DW_AT_decl_file("/usr/share/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$332, DW_AT_decl_line(0x2b3)
.dwattr $C$DW$332, DW_AT_decl_column(0x0d)
$C$DW$333 .dwtag DW_TAG_member
.dwattr $C$DW$333, DW_AT_type(*$C$DW$T$11)
.dwattr $C$DW$333, DW_AT_name("NONE_HINT_7")
.dwattr $C$DW$333, DW_AT_TI_symbol_name("NONE_HINT_7")
.dwattr $C$DW$333, DW_AT_bit_offset(0x00)
.dwattr $C$DW$333, DW_AT_bit_size(0x01)
.dwattr $C$DW$333, DW_AT_data_member_location[DW_OP_plus_uconst 0x0]
.dwattr $C$DW$333, DW_AT_accessibility(DW_ACCESS_public)
.dwattr $C$DW$333, DW_AT_decl_file("/usr/share/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$333, DW_AT_decl_line(0x2b4)
.dwattr $C$DW$333, DW_AT_decl_column(0x0d)
.dwattr $C$DW$T$81, DW_AT_decl_file("/usr/share/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$T$81, DW_AT_decl_line(0x2b1)
.dwattr $C$DW$T$81, DW_AT_decl_column(0x13)
.dwendtag $C$DW$T$81
$C$DW$T$239 .dwtag DW_TAG_volatile_type
.dwattr $C$DW$T$239, DW_AT_type(*$C$DW$T$81)
$C$DW$T$82 .dwtag DW_TAG_structure_type
.dwattr $C$DW$T$82, DW_AT_byte_size(0x04)
$C$DW$334 .dwtag DW_TAG_member
.dwattr $C$DW$334, DW_AT_type(*$C$DW$T$11)
.dwattr $C$DW$334, DW_AT_name("PRI_HINT_8")
.dwattr $C$DW$334, DW_AT_TI_symbol_name("PRI_HINT_8")
.dwattr $C$DW$334, DW_AT_bit_offset(0x16)
.dwattr $C$DW$334, DW_AT_bit_size(0x0a)
.dwattr $C$DW$334, DW_AT_data_member_location[DW_OP_plus_uconst 0x0]
.dwattr $C$DW$334, DW_AT_accessibility(DW_ACCESS_public)
.dwattr $C$DW$334, DW_AT_decl_file("/usr/share/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$334, DW_AT_decl_line(0x2be)
.dwattr $C$DW$334, DW_AT_decl_column(0x0d)
$C$DW$335 .dwtag DW_TAG_member
.dwattr $C$DW$335, DW_AT_type(*$C$DW$T$11)
.dwattr $C$DW$335, DW_AT_name("rsvd10")
.dwattr $C$DW$335, DW_AT_TI_symbol_name("rsvd10")
.dwattr $C$DW$335, DW_AT_bit_offset(0x01)
.dwattr $C$DW$335, DW_AT_bit_size(0x15)
.dwattr $C$DW$335, DW_AT_data_member_location[DW_OP_plus_uconst 0x0]
.dwattr $C$DW$335, DW_AT_accessibility(DW_ACCESS_public)
.dwattr $C$DW$335, DW_AT_decl_file("/usr/share/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$335, DW_AT_decl_line(0x2bf)
.dwattr $C$DW$335, DW_AT_decl_column(0x0d)
$C$DW$336 .dwtag DW_TAG_member
.dwattr $C$DW$336, DW_AT_type(*$C$DW$T$11)
.dwattr $C$DW$336, DW_AT_name("NONE_HINT_8")
.dwattr $C$DW$336, DW_AT_TI_symbol_name("NONE_HINT_8")
.dwattr $C$DW$336, DW_AT_bit_offset(0x00)
.dwattr $C$DW$336, DW_AT_bit_size(0x01)
.dwattr $C$DW$336, DW_AT_data_member_location[DW_OP_plus_uconst 0x0]
.dwattr $C$DW$336, DW_AT_accessibility(DW_ACCESS_public)
.dwattr $C$DW$336, DW_AT_decl_file("/usr/share/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$336, DW_AT_decl_line(0x2c0)
.dwattr $C$DW$336, DW_AT_decl_column(0x0d)
.dwattr $C$DW$T$82, DW_AT_decl_file("/usr/share/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$T$82, DW_AT_decl_line(0x2bd)
.dwattr $C$DW$T$82, DW_AT_decl_column(0x13)
.dwendtag $C$DW$T$82
$C$DW$T$241 .dwtag DW_TAG_volatile_type
.dwattr $C$DW$T$241, DW_AT_type(*$C$DW$T$82)
$C$DW$T$83 .dwtag DW_TAG_structure_type
.dwattr $C$DW$T$83, DW_AT_byte_size(0x04)
$C$DW$337 .dwtag DW_TAG_member
.dwattr $C$DW$337, DW_AT_type(*$C$DW$T$11)
.dwattr $C$DW$337, DW_AT_name("PRI_HINT_9")
.dwattr $C$DW$337, DW_AT_TI_symbol_name("PRI_HINT_9")
.dwattr $C$DW$337, DW_AT_bit_offset(0x16)
.dwattr $C$DW$337, DW_AT_bit_size(0x0a)
.dwattr $C$DW$337, DW_AT_data_member_location[DW_OP_plus_uconst 0x0]
.dwattr $C$DW$337, DW_AT_accessibility(DW_ACCESS_public)
.dwattr $C$DW$337, DW_AT_decl_file("/usr/share/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$337, DW_AT_decl_line(0x2ca)
.dwattr $C$DW$337, DW_AT_decl_column(0x0d)
$C$DW$338 .dwtag DW_TAG_member
.dwattr $C$DW$338, DW_AT_type(*$C$DW$T$11)
.dwattr $C$DW$338, DW_AT_name("rsvd10")
.dwattr $C$DW$338, DW_AT_TI_symbol_name("rsvd10")
.dwattr $C$DW$338, DW_AT_bit_offset(0x01)
.dwattr $C$DW$338, DW_AT_bit_size(0x15)
.dwattr $C$DW$338, DW_AT_data_member_location[DW_OP_plus_uconst 0x0]
.dwattr $C$DW$338, DW_AT_accessibility(DW_ACCESS_public)
.dwattr $C$DW$338, DW_AT_decl_file("/usr/share/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$338, DW_AT_decl_line(0x2cb)
.dwattr $C$DW$338, DW_AT_decl_column(0x0d)
$C$DW$339 .dwtag DW_TAG_member
.dwattr $C$DW$339, DW_AT_type(*$C$DW$T$11)
.dwattr $C$DW$339, DW_AT_name("NONE_HINT_9")
.dwattr $C$DW$339, DW_AT_TI_symbol_name("NONE_HINT_9")
.dwattr $C$DW$339, DW_AT_bit_offset(0x00)
.dwattr $C$DW$339, DW_AT_bit_size(0x01)
.dwattr $C$DW$339, DW_AT_data_member_location[DW_OP_plus_uconst 0x0]
.dwattr $C$DW$339, DW_AT_accessibility(DW_ACCESS_public)
.dwattr $C$DW$339, DW_AT_decl_file("/usr/share/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$339, DW_AT_decl_line(0x2cc)
.dwattr $C$DW$339, DW_AT_decl_column(0x0d)
.dwattr $C$DW$T$83, DW_AT_decl_file("/usr/share/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$T$83, DW_AT_decl_line(0x2c9)
.dwattr $C$DW$T$83, DW_AT_decl_column(0x13)
.dwendtag $C$DW$T$83
$C$DW$T$243 .dwtag DW_TAG_volatile_type
.dwattr $C$DW$T$243, DW_AT_type(*$C$DW$T$83)
$C$DW$T$84 .dwtag DW_TAG_structure_type
.dwattr $C$DW$T$84, DW_AT_byte_size(0x04)
$C$DW$340 .dwtag DW_TAG_member
.dwattr $C$DW$340, DW_AT_type(*$C$DW$T$11)
.dwattr $C$DW$340, DW_AT_name("POLARITY_31_0")
.dwattr $C$DW$340, DW_AT_TI_symbol_name("POLARITY_31_0")
.dwattr $C$DW$340, DW_AT_bit_offset(0x00)
.dwattr $C$DW$340, DW_AT_bit_size(0x20)
.dwattr $C$DW$340, DW_AT_data_member_location[DW_OP_plus_uconst 0x0]
.dwattr $C$DW$340, DW_AT_accessibility(DW_ACCESS_public)
.dwattr $C$DW$340, DW_AT_decl_file("/usr/share/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$340, DW_AT_decl_line(0x2d9)
.dwattr $C$DW$340, DW_AT_decl_column(0x0d)
.dwattr $C$DW$T$84, DW_AT_decl_file("/usr/share/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$T$84, DW_AT_decl_line(0x2d8)
.dwattr $C$DW$T$84, DW_AT_decl_column(0x13)
.dwendtag $C$DW$T$84
$C$DW$T$245 .dwtag DW_TAG_volatile_type
.dwattr $C$DW$T$245, DW_AT_type(*$C$DW$T$84)
$C$DW$T$85 .dwtag DW_TAG_structure_type
.dwattr $C$DW$T$85, DW_AT_byte_size(0x04)
$C$DW$341 .dwtag DW_TAG_member
.dwattr $C$DW$341, DW_AT_type(*$C$DW$T$11)
.dwattr $C$DW$341, DW_AT_name("POLARITY_63_32")
.dwattr $C$DW$341, DW_AT_TI_symbol_name("POLARITY_63_32")
.dwattr $C$DW$341, DW_AT_bit_offset(0x00)
.dwattr $C$DW$341, DW_AT_bit_size(0x20)
.dwattr $C$DW$341, DW_AT_data_member_location[DW_OP_plus_uconst 0x0]
.dwattr $C$DW$341, DW_AT_accessibility(DW_ACCESS_public)
.dwattr $C$DW$341, DW_AT_decl_file("/usr/share/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$341, DW_AT_decl_line(0x2e3)
.dwattr $C$DW$341, DW_AT_decl_column(0x0d)
.dwattr $C$DW$T$85, DW_AT_decl_file("/usr/share/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$T$85, DW_AT_decl_line(0x2e2)
.dwattr $C$DW$T$85, DW_AT_decl_column(0x13)
.dwendtag $C$DW$T$85
$C$DW$T$247 .dwtag DW_TAG_volatile_type
.dwattr $C$DW$T$247, DW_AT_type(*$C$DW$T$85)
$C$DW$T$86 .dwtag DW_TAG_structure_type
.dwattr $C$DW$T$86, DW_AT_byte_size(0x04)
$C$DW$342 .dwtag DW_TAG_member
.dwattr $C$DW$342, DW_AT_type(*$C$DW$T$11)
.dwattr $C$DW$342, DW_AT_name("TYPE_31_0")
.dwattr $C$DW$342, DW_AT_TI_symbol_name("TYPE_31_0")
.dwattr $C$DW$342, DW_AT_bit_offset(0x00)
.dwattr $C$DW$342, DW_AT_bit_size(0x20)
.dwattr $C$DW$342, DW_AT_data_member_location[DW_OP_plus_uconst 0x0]
.dwattr $C$DW$342, DW_AT_accessibility(DW_ACCESS_public)
.dwattr $C$DW$342, DW_AT_decl_file("/usr/share/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$342, DW_AT_decl_line(0x2f0)
.dwattr $C$DW$342, DW_AT_decl_column(0x0d)
.dwattr $C$DW$T$86, DW_AT_decl_file("/usr/share/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$T$86, DW_AT_decl_line(0x2ef)
.dwattr $C$DW$T$86, DW_AT_decl_column(0x13)
.dwendtag $C$DW$T$86
$C$DW$T$249 .dwtag DW_TAG_volatile_type
.dwattr $C$DW$T$249, DW_AT_type(*$C$DW$T$86)
$C$DW$T$87 .dwtag DW_TAG_structure_type
.dwattr $C$DW$T$87, DW_AT_byte_size(0x04)
$C$DW$343 .dwtag DW_TAG_member
.dwattr $C$DW$343, DW_AT_type(*$C$DW$T$11)
.dwattr $C$DW$343, DW_AT_name("TYPE_63_32")
.dwattr $C$DW$343, DW_AT_TI_symbol_name("TYPE_63_32")
.dwattr $C$DW$343, DW_AT_bit_offset(0x00)
.dwattr $C$DW$343, DW_AT_bit_size(0x20)
.dwattr $C$DW$343, DW_AT_data_member_location[DW_OP_plus_uconst 0x0]
.dwattr $C$DW$343, DW_AT_accessibility(DW_ACCESS_public)
.dwattr $C$DW$343, DW_AT_decl_file("/usr/share/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$343, DW_AT_decl_line(0x2fa)
.dwattr $C$DW$343, DW_AT_decl_column(0x0d)
.dwattr $C$DW$T$87, DW_AT_decl_file("/usr/share/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$T$87, DW_AT_decl_line(0x2f9)
.dwattr $C$DW$T$87, DW_AT_decl_column(0x13)
.dwendtag $C$DW$T$87
$C$DW$T$251 .dwtag DW_TAG_volatile_type
.dwattr $C$DW$T$251, DW_AT_type(*$C$DW$T$87)
$C$DW$T$88 .dwtag DW_TAG_structure_type
.dwattr $C$DW$T$88, DW_AT_byte_size(0x04)
$C$DW$344 .dwtag DW_TAG_member
.dwattr $C$DW$344, DW_AT_type(*$C$DW$T$11)
.dwattr $C$DW$344, DW_AT_name("NEST_HINT_0")
.dwattr $C$DW$344, DW_AT_TI_symbol_name("NEST_HINT_0")
.dwattr $C$DW$344, DW_AT_bit_offset(0x17)
.dwattr $C$DW$344, DW_AT_bit_size(0x09)
.dwattr $C$DW$344, DW_AT_data_member_location[DW_OP_plus_uconst 0x0]
.dwattr $C$DW$344, DW_AT_accessibility(DW_ACCESS_public)
.dwattr $C$DW$344, DW_AT_decl_file("/usr/share/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$344, DW_AT_decl_line(0x307)
.dwattr $C$DW$344, DW_AT_decl_column(0x0d)
$C$DW$345 .dwtag DW_TAG_member
.dwattr $C$DW$345, DW_AT_type(*$C$DW$T$11)
.dwattr $C$DW$345, DW_AT_name("rsvd9")
.dwattr $C$DW$345, DW_AT_TI_symbol_name("rsvd9")
.dwattr $C$DW$345, DW_AT_bit_offset(0x01)
.dwattr $C$DW$345, DW_AT_bit_size(0x16)
.dwattr $C$DW$345, DW_AT_data_member_location[DW_OP_plus_uconst 0x0]
.dwattr $C$DW$345, DW_AT_accessibility(DW_ACCESS_public)
.dwattr $C$DW$345, DW_AT_decl_file("/usr/share/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$345, DW_AT_decl_line(0x308)
.dwattr $C$DW$345, DW_AT_decl_column(0x0d)
$C$DW$346 .dwtag DW_TAG_member
.dwattr $C$DW$346, DW_AT_type(*$C$DW$T$11)
.dwattr $C$DW$346, DW_AT_name("AUTO_OVERRIDE")
.dwattr $C$DW$346, DW_AT_TI_symbol_name("AUTO_OVERRIDE")
.dwattr $C$DW$346, DW_AT_bit_offset(0x00)
.dwattr $C$DW$346, DW_AT_bit_size(0x01)
.dwattr $C$DW$346, DW_AT_data_member_location[DW_OP_plus_uconst 0x0]
.dwattr $C$DW$346, DW_AT_accessibility(DW_ACCESS_public)
.dwattr $C$DW$346, DW_AT_decl_file("/usr/share/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$346, DW_AT_decl_line(0x309)
.dwattr $C$DW$346, DW_AT_decl_column(0x0d)
.dwattr $C$DW$T$88, DW_AT_decl_file("/usr/share/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$T$88, DW_AT_decl_line(0x306)
.dwattr $C$DW$T$88, DW_AT_decl_column(0x13)
.dwendtag $C$DW$T$88
$C$DW$T$253 .dwtag DW_TAG_volatile_type
.dwattr $C$DW$T$253, DW_AT_type(*$C$DW$T$88)
$C$DW$T$89 .dwtag DW_TAG_structure_type
.dwattr $C$DW$T$89, DW_AT_byte_size(0x04)
$C$DW$347 .dwtag DW_TAG_member
.dwattr $C$DW$347, DW_AT_type(*$C$DW$T$11)
.dwattr $C$DW$347, DW_AT_name("NEST_HINT_1")
.dwattr $C$DW$347, DW_AT_TI_symbol_name("NEST_HINT_1")
.dwattr $C$DW$347, DW_AT_bit_offset(0x17)
.dwattr $C$DW$347, DW_AT_bit_size(0x09)
.dwattr $C$DW$347, DW_AT_data_member_location[DW_OP_plus_uconst 0x0]
.dwattr $C$DW$347, DW_AT_accessibility(DW_ACCESS_public)
.dwattr $C$DW$347, DW_AT_decl_file("/usr/share/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$347, DW_AT_decl_line(0x313)
.dwattr $C$DW$347, DW_AT_decl_column(0x0d)
$C$DW$348 .dwtag DW_TAG_member
.dwattr $C$DW$348, DW_AT_type(*$C$DW$T$11)
.dwattr $C$DW$348, DW_AT_name("rsvd9")
.dwattr $C$DW$348, DW_AT_TI_symbol_name("rsvd9")
.dwattr $C$DW$348, DW_AT_bit_offset(0x01)
.dwattr $C$DW$348, DW_AT_bit_size(0x16)
.dwattr $C$DW$348, DW_AT_data_member_location[DW_OP_plus_uconst 0x0]
.dwattr $C$DW$348, DW_AT_accessibility(DW_ACCESS_public)
.dwattr $C$DW$348, DW_AT_decl_file("/usr/share/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$348, DW_AT_decl_line(0x314)
.dwattr $C$DW$348, DW_AT_decl_column(0x0d)
$C$DW$349 .dwtag DW_TAG_member
.dwattr $C$DW$349, DW_AT_type(*$C$DW$T$11)
.dwattr $C$DW$349, DW_AT_name("AUTO_OVERRIDE")
.dwattr $C$DW$349, DW_AT_TI_symbol_name("AUTO_OVERRIDE")
.dwattr $C$DW$349, DW_AT_bit_offset(0x00)
.dwattr $C$DW$349, DW_AT_bit_size(0x01)
.dwattr $C$DW$349, DW_AT_data_member_location[DW_OP_plus_uconst 0x0]
.dwattr $C$DW$349, DW_AT_accessibility(DW_ACCESS_public)
.dwattr $C$DW$349, DW_AT_decl_file("/usr/share/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$349, DW_AT_decl_line(0x315)
.dwattr $C$DW$349, DW_AT_decl_column(0x0d)
.dwattr $C$DW$T$89, DW_AT_decl_file("/usr/share/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$T$89, DW_AT_decl_line(0x312)
.dwattr $C$DW$T$89, DW_AT_decl_column(0x13)
.dwendtag $C$DW$T$89
$C$DW$T$255 .dwtag DW_TAG_volatile_type
.dwattr $C$DW$T$255, DW_AT_type(*$C$DW$T$89)
$C$DW$T$90 .dwtag DW_TAG_structure_type
.dwattr $C$DW$T$90, DW_AT_byte_size(0x04)
$C$DW$350 .dwtag DW_TAG_member
.dwattr $C$DW$350, DW_AT_type(*$C$DW$T$11)
.dwattr $C$DW$350, DW_AT_name("NEST_HINT_2")
.dwattr $C$DW$350, DW_AT_TI_symbol_name("NEST_HINT_2")
.dwattr $C$DW$350, DW_AT_bit_offset(0x17)
.dwattr $C$DW$350, DW_AT_bit_size(0x09)
.dwattr $C$DW$350, DW_AT_data_member_location[DW_OP_plus_uconst 0x0]
.dwattr $C$DW$350, DW_AT_accessibility(DW_ACCESS_public)
.dwattr $C$DW$350, DW_AT_decl_file("/usr/share/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$350, DW_AT_decl_line(0x31f)
.dwattr $C$DW$350, DW_AT_decl_column(0x0d)
$C$DW$351 .dwtag DW_TAG_member
.dwattr $C$DW$351, DW_AT_type(*$C$DW$T$11)
.dwattr $C$DW$351, DW_AT_name("rsvd9")
.dwattr $C$DW$351, DW_AT_TI_symbol_name("rsvd9")
.dwattr $C$DW$351, DW_AT_bit_offset(0x01)
.dwattr $C$DW$351, DW_AT_bit_size(0x16)
.dwattr $C$DW$351, DW_AT_data_member_location[DW_OP_plus_uconst 0x0]
.dwattr $C$DW$351, DW_AT_accessibility(DW_ACCESS_public)
.dwattr $C$DW$351, DW_AT_decl_file("/usr/share/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$351, DW_AT_decl_line(0x320)
.dwattr $C$DW$351, DW_AT_decl_column(0x0d)
$C$DW$352 .dwtag DW_TAG_member
.dwattr $C$DW$352, DW_AT_type(*$C$DW$T$11)
.dwattr $C$DW$352, DW_AT_name("AUTO_OVERRIDE")
.dwattr $C$DW$352, DW_AT_TI_symbol_name("AUTO_OVERRIDE")
.dwattr $C$DW$352, DW_AT_bit_offset(0x00)
.dwattr $C$DW$352, DW_AT_bit_size(0x01)
.dwattr $C$DW$352, DW_AT_data_member_location[DW_OP_plus_uconst 0x0]
.dwattr $C$DW$352, DW_AT_accessibility(DW_ACCESS_public)
.dwattr $C$DW$352, DW_AT_decl_file("/usr/share/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$352, DW_AT_decl_line(0x321)
.dwattr $C$DW$352, DW_AT_decl_column(0x0d)
.dwattr $C$DW$T$90, DW_AT_decl_file("/usr/share/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$T$90, DW_AT_decl_line(0x31e)
.dwattr $C$DW$T$90, DW_AT_decl_column(0x13)
.dwendtag $C$DW$T$90
$C$DW$T$257 .dwtag DW_TAG_volatile_type
.dwattr $C$DW$T$257, DW_AT_type(*$C$DW$T$90)
$C$DW$T$91 .dwtag DW_TAG_structure_type
.dwattr $C$DW$T$91, DW_AT_byte_size(0x04)
$C$DW$353 .dwtag DW_TAG_member
.dwattr $C$DW$353, DW_AT_type(*$C$DW$T$11)
.dwattr $C$DW$353, DW_AT_name("NEST_HINT_3")
.dwattr $C$DW$353, DW_AT_TI_symbol_name("NEST_HINT_3")
.dwattr $C$DW$353, DW_AT_bit_offset(0x17)
.dwattr $C$DW$353, DW_AT_bit_size(0x09)
.dwattr $C$DW$353, DW_AT_data_member_location[DW_OP_plus_uconst 0x0]
.dwattr $C$DW$353, DW_AT_accessibility(DW_ACCESS_public)
.dwattr $C$DW$353, DW_AT_decl_file("/usr/share/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$353, DW_AT_decl_line(0x32b)
.dwattr $C$DW$353, DW_AT_decl_column(0x0d)
$C$DW$354 .dwtag DW_TAG_member
.dwattr $C$DW$354, DW_AT_type(*$C$DW$T$11)
.dwattr $C$DW$354, DW_AT_name("rsvd9")
.dwattr $C$DW$354, DW_AT_TI_symbol_name("rsvd9")
.dwattr $C$DW$354, DW_AT_bit_offset(0x01)
.dwattr $C$DW$354, DW_AT_bit_size(0x16)
.dwattr $C$DW$354, DW_AT_data_member_location[DW_OP_plus_uconst 0x0]
.dwattr $C$DW$354, DW_AT_accessibility(DW_ACCESS_public)
.dwattr $C$DW$354, DW_AT_decl_file("/usr/share/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$354, DW_AT_decl_line(0x32c)
.dwattr $C$DW$354, DW_AT_decl_column(0x0d)
$C$DW$355 .dwtag DW_TAG_member
.dwattr $C$DW$355, DW_AT_type(*$C$DW$T$11)
.dwattr $C$DW$355, DW_AT_name("AUTO_OVERRIDE")
.dwattr $C$DW$355, DW_AT_TI_symbol_name("AUTO_OVERRIDE")
.dwattr $C$DW$355, DW_AT_bit_offset(0x00)
.dwattr $C$DW$355, DW_AT_bit_size(0x01)
.dwattr $C$DW$355, DW_AT_data_member_location[DW_OP_plus_uconst 0x0]
.dwattr $C$DW$355, DW_AT_accessibility(DW_ACCESS_public)
.dwattr $C$DW$355, DW_AT_decl_file("/usr/share/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$355, DW_AT_decl_line(0x32d)
.dwattr $C$DW$355, DW_AT_decl_column(0x0d)
.dwattr $C$DW$T$91, DW_AT_decl_file("/usr/share/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$T$91, DW_AT_decl_line(0x32a)
.dwattr $C$DW$T$91, DW_AT_decl_column(0x13)
.dwendtag $C$DW$T$91
$C$DW$T$259 .dwtag DW_TAG_volatile_type
.dwattr $C$DW$T$259, DW_AT_type(*$C$DW$T$91)
$C$DW$T$92 .dwtag DW_TAG_structure_type
.dwattr $C$DW$T$92, DW_AT_byte_size(0x04)
$C$DW$356 .dwtag DW_TAG_member
.dwattr $C$DW$356, DW_AT_type(*$C$DW$T$11)
.dwattr $C$DW$356, DW_AT_name("NEST_HINT_4")
.dwattr $C$DW$356, DW_AT_TI_symbol_name("NEST_HINT_4")
.dwattr $C$DW$356, DW_AT_bit_offset(0x17)
.dwattr $C$DW$356, DW_AT_bit_size(0x09)
.dwattr $C$DW$356, DW_AT_data_member_location[DW_OP_plus_uconst 0x0]
.dwattr $C$DW$356, DW_AT_accessibility(DW_ACCESS_public)
.dwattr $C$DW$356, DW_AT_decl_file("/usr/share/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$356, DW_AT_decl_line(0x337)
.dwattr $C$DW$356, DW_AT_decl_column(0x0d)
$C$DW$357 .dwtag DW_TAG_member
.dwattr $C$DW$357, DW_AT_type(*$C$DW$T$11)
.dwattr $C$DW$357, DW_AT_name("rsvd9")
.dwattr $C$DW$357, DW_AT_TI_symbol_name("rsvd9")
.dwattr $C$DW$357, DW_AT_bit_offset(0x01)
.dwattr $C$DW$357, DW_AT_bit_size(0x16)
.dwattr $C$DW$357, DW_AT_data_member_location[DW_OP_plus_uconst 0x0]
.dwattr $C$DW$357, DW_AT_accessibility(DW_ACCESS_public)
.dwattr $C$DW$357, DW_AT_decl_file("/usr/share/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$357, DW_AT_decl_line(0x338)
.dwattr $C$DW$357, DW_AT_decl_column(0x0d)
$C$DW$358 .dwtag DW_TAG_member
.dwattr $C$DW$358, DW_AT_type(*$C$DW$T$11)
.dwattr $C$DW$358, DW_AT_name("AUTO_OVERRIDE")
.dwattr $C$DW$358, DW_AT_TI_symbol_name("AUTO_OVERRIDE")
.dwattr $C$DW$358, DW_AT_bit_offset(0x00)
.dwattr $C$DW$358, DW_AT_bit_size(0x01)
.dwattr $C$DW$358, DW_AT_data_member_location[DW_OP_plus_uconst 0x0]
.dwattr $C$DW$358, DW_AT_accessibility(DW_ACCESS_public)
.dwattr $C$DW$358, DW_AT_decl_file("/usr/share/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$358, DW_AT_decl_line(0x339)
.dwattr $C$DW$358, DW_AT_decl_column(0x0d)
.dwattr $C$DW$T$92, DW_AT_decl_file("/usr/share/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$T$92, DW_AT_decl_line(0x336)
.dwattr $C$DW$T$92, DW_AT_decl_column(0x13)
.dwendtag $C$DW$T$92
$C$DW$T$261 .dwtag DW_TAG_volatile_type
.dwattr $C$DW$T$261, DW_AT_type(*$C$DW$T$92)
$C$DW$T$93 .dwtag DW_TAG_structure_type
.dwattr $C$DW$T$93, DW_AT_byte_size(0x04)
$C$DW$359 .dwtag DW_TAG_member
.dwattr $C$DW$359, DW_AT_type(*$C$DW$T$11)
.dwattr $C$DW$359, DW_AT_name("NEST_HINT_5")
.dwattr $C$DW$359, DW_AT_TI_symbol_name("NEST_HINT_5")
.dwattr $C$DW$359, DW_AT_bit_offset(0x17)
.dwattr $C$DW$359, DW_AT_bit_size(0x09)
.dwattr $C$DW$359, DW_AT_data_member_location[DW_OP_plus_uconst 0x0]
.dwattr $C$DW$359, DW_AT_accessibility(DW_ACCESS_public)
.dwattr $C$DW$359, DW_AT_decl_file("/usr/share/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$359, DW_AT_decl_line(0x343)
.dwattr $C$DW$359, DW_AT_decl_column(0x0d)
$C$DW$360 .dwtag DW_TAG_member
.dwattr $C$DW$360, DW_AT_type(*$C$DW$T$11)
.dwattr $C$DW$360, DW_AT_name("rsvd9")
.dwattr $C$DW$360, DW_AT_TI_symbol_name("rsvd9")
.dwattr $C$DW$360, DW_AT_bit_offset(0x01)
.dwattr $C$DW$360, DW_AT_bit_size(0x16)
.dwattr $C$DW$360, DW_AT_data_member_location[DW_OP_plus_uconst 0x0]
.dwattr $C$DW$360, DW_AT_accessibility(DW_ACCESS_public)
.dwattr $C$DW$360, DW_AT_decl_file("/usr/share/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$360, DW_AT_decl_line(0x344)
.dwattr $C$DW$360, DW_AT_decl_column(0x0d)
$C$DW$361 .dwtag DW_TAG_member
.dwattr $C$DW$361, DW_AT_type(*$C$DW$T$11)
.dwattr $C$DW$361, DW_AT_name("AUTO_OVERRIDE")
.dwattr $C$DW$361, DW_AT_TI_symbol_name("AUTO_OVERRIDE")
.dwattr $C$DW$361, DW_AT_bit_offset(0x00)
.dwattr $C$DW$361, DW_AT_bit_size(0x01)
.dwattr $C$DW$361, DW_AT_data_member_location[DW_OP_plus_uconst 0x0]
.dwattr $C$DW$361, DW_AT_accessibility(DW_ACCESS_public)
.dwattr $C$DW$361, DW_AT_decl_file("/usr/share/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$361, DW_AT_decl_line(0x345)
.dwattr $C$DW$361, DW_AT_decl_column(0x0d)
.dwattr $C$DW$T$93, DW_AT_decl_file("/usr/share/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$T$93, DW_AT_decl_line(0x342)
.dwattr $C$DW$T$93, DW_AT_decl_column(0x13)
.dwendtag $C$DW$T$93
$C$DW$T$263 .dwtag DW_TAG_volatile_type
.dwattr $C$DW$T$263, DW_AT_type(*$C$DW$T$93)
$C$DW$T$94 .dwtag DW_TAG_structure_type
.dwattr $C$DW$T$94, DW_AT_byte_size(0x04)
$C$DW$362 .dwtag DW_TAG_member
.dwattr $C$DW$362, DW_AT_type(*$C$DW$T$11)
.dwattr $C$DW$362, DW_AT_name("NEST_HINT_6")
.dwattr $C$DW$362, DW_AT_TI_symbol_name("NEST_HINT_6")
.dwattr $C$DW$362, DW_AT_bit_offset(0x17)
.dwattr $C$DW$362, DW_AT_bit_size(0x09)
.dwattr $C$DW$362, DW_AT_data_member_location[DW_OP_plus_uconst 0x0]
.dwattr $C$DW$362, DW_AT_accessibility(DW_ACCESS_public)
.dwattr $C$DW$362, DW_AT_decl_file("/usr/share/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$362, DW_AT_decl_line(0x34f)
.dwattr $C$DW$362, DW_AT_decl_column(0x0d)
$C$DW$363 .dwtag DW_TAG_member
.dwattr $C$DW$363, DW_AT_type(*$C$DW$T$11)
.dwattr $C$DW$363, DW_AT_name("rsvd9")
.dwattr $C$DW$363, DW_AT_TI_symbol_name("rsvd9")
.dwattr $C$DW$363, DW_AT_bit_offset(0x01)
.dwattr $C$DW$363, DW_AT_bit_size(0x16)
.dwattr $C$DW$363, DW_AT_data_member_location[DW_OP_plus_uconst 0x0]
.dwattr $C$DW$363, DW_AT_accessibility(DW_ACCESS_public)
.dwattr $C$DW$363, DW_AT_decl_file("/usr/share/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$363, DW_AT_decl_line(0x350)
.dwattr $C$DW$363, DW_AT_decl_column(0x0d)
$C$DW$364 .dwtag DW_TAG_member
.dwattr $C$DW$364, DW_AT_type(*$C$DW$T$11)
.dwattr $C$DW$364, DW_AT_name("AUTO_OVERRIDE")
.dwattr $C$DW$364, DW_AT_TI_symbol_name("AUTO_OVERRIDE")
.dwattr $C$DW$364, DW_AT_bit_offset(0x00)
.dwattr $C$DW$364, DW_AT_bit_size(0x01)
.dwattr $C$DW$364, DW_AT_data_member_location[DW_OP_plus_uconst 0x0]
.dwattr $C$DW$364, DW_AT_accessibility(DW_ACCESS_public)
.dwattr $C$DW$364, DW_AT_decl_file("/usr/share/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$364, DW_AT_decl_line(0x351)
.dwattr $C$DW$364, DW_AT_decl_column(0x0d)
.dwattr $C$DW$T$94, DW_AT_decl_file("/usr/share/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$T$94, DW_AT_decl_line(0x34e)
.dwattr $C$DW$T$94, DW_AT_decl_column(0x13)
.dwendtag $C$DW$T$94
$C$DW$T$265 .dwtag DW_TAG_volatile_type
.dwattr $C$DW$T$265, DW_AT_type(*$C$DW$T$94)
$C$DW$T$95 .dwtag DW_TAG_structure_type
.dwattr $C$DW$T$95, DW_AT_byte_size(0x04)
$C$DW$365 .dwtag DW_TAG_member
.dwattr $C$DW$365, DW_AT_type(*$C$DW$T$11)
.dwattr $C$DW$365, DW_AT_name("NEST_HINT_7")
.dwattr $C$DW$365, DW_AT_TI_symbol_name("NEST_HINT_7")
.dwattr $C$DW$365, DW_AT_bit_offset(0x17)
.dwattr $C$DW$365, DW_AT_bit_size(0x09)
.dwattr $C$DW$365, DW_AT_data_member_location[DW_OP_plus_uconst 0x0]
.dwattr $C$DW$365, DW_AT_accessibility(DW_ACCESS_public)
.dwattr $C$DW$365, DW_AT_decl_file("/usr/share/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$365, DW_AT_decl_line(0x35b)
.dwattr $C$DW$365, DW_AT_decl_column(0x0d)
$C$DW$366 .dwtag DW_TAG_member
.dwattr $C$DW$366, DW_AT_type(*$C$DW$T$11)
.dwattr $C$DW$366, DW_AT_name("rsvd9")
.dwattr $C$DW$366, DW_AT_TI_symbol_name("rsvd9")
.dwattr $C$DW$366, DW_AT_bit_offset(0x01)
.dwattr $C$DW$366, DW_AT_bit_size(0x16)
.dwattr $C$DW$366, DW_AT_data_member_location[DW_OP_plus_uconst 0x0]
.dwattr $C$DW$366, DW_AT_accessibility(DW_ACCESS_public)
.dwattr $C$DW$366, DW_AT_decl_file("/usr/share/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$366, DW_AT_decl_line(0x35c)
.dwattr $C$DW$366, DW_AT_decl_column(0x0d)
$C$DW$367 .dwtag DW_TAG_member
.dwattr $C$DW$367, DW_AT_type(*$C$DW$T$11)
.dwattr $C$DW$367, DW_AT_name("AUTO_OVERRIDE")
.dwattr $C$DW$367, DW_AT_TI_symbol_name("AUTO_OVERRIDE")
.dwattr $C$DW$367, DW_AT_bit_offset(0x00)
.dwattr $C$DW$367, DW_AT_bit_size(0x01)
.dwattr $C$DW$367, DW_AT_data_member_location[DW_OP_plus_uconst 0x0]
.dwattr $C$DW$367, DW_AT_accessibility(DW_ACCESS_public)
.dwattr $C$DW$367, DW_AT_decl_file("/usr/share/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$367, DW_AT_decl_line(0x35d)
.dwattr $C$DW$367, DW_AT_decl_column(0x0d)
.dwattr $C$DW$T$95, DW_AT_decl_file("/usr/share/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$T$95, DW_AT_decl_line(0x35a)
.dwattr $C$DW$T$95, DW_AT_decl_column(0x13)
.dwendtag $C$DW$T$95
$C$DW$T$267 .dwtag DW_TAG_volatile_type
.dwattr $C$DW$T$267, DW_AT_type(*$C$DW$T$95)
$C$DW$T$96 .dwtag DW_TAG_structure_type
.dwattr $C$DW$T$96, DW_AT_byte_size(0x04)
$C$DW$368 .dwtag DW_TAG_member
.dwattr $C$DW$368, DW_AT_type(*$C$DW$T$11)
.dwattr $C$DW$368, DW_AT_name("NEST_HINT_8")
.dwattr $C$DW$368, DW_AT_TI_symbol_name("NEST_HINT_8")
.dwattr $C$DW$368, DW_AT_bit_offset(0x17)
.dwattr $C$DW$368, DW_AT_bit_size(0x09)
.dwattr $C$DW$368, DW_AT_data_member_location[DW_OP_plus_uconst 0x0]
.dwattr $C$DW$368, DW_AT_accessibility(DW_ACCESS_public)
.dwattr $C$DW$368, DW_AT_decl_file("/usr/share/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$368, DW_AT_decl_line(0x367)
.dwattr $C$DW$368, DW_AT_decl_column(0x0d)
$C$DW$369 .dwtag DW_TAG_member
.dwattr $C$DW$369, DW_AT_type(*$C$DW$T$11)
.dwattr $C$DW$369, DW_AT_name("rsvd9")
.dwattr $C$DW$369, DW_AT_TI_symbol_name("rsvd9")
.dwattr $C$DW$369, DW_AT_bit_offset(0x01)
.dwattr $C$DW$369, DW_AT_bit_size(0x16)
.dwattr $C$DW$369, DW_AT_data_member_location[DW_OP_plus_uconst 0x0]
.dwattr $C$DW$369, DW_AT_accessibility(DW_ACCESS_public)
.dwattr $C$DW$369, DW_AT_decl_file("/usr/share/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$369, DW_AT_decl_line(0x368)
.dwattr $C$DW$369, DW_AT_decl_column(0x0d)
$C$DW$370 .dwtag DW_TAG_member
.dwattr $C$DW$370, DW_AT_type(*$C$DW$T$11)
.dwattr $C$DW$370, DW_AT_name("AUTO_OVERRIDE")
.dwattr $C$DW$370, DW_AT_TI_symbol_name("AUTO_OVERRIDE")
.dwattr $C$DW$370, DW_AT_bit_offset(0x00)
.dwattr $C$DW$370, DW_AT_bit_size(0x01)
.dwattr $C$DW$370, DW_AT_data_member_location[DW_OP_plus_uconst 0x0]
.dwattr $C$DW$370, DW_AT_accessibility(DW_ACCESS_public)
.dwattr $C$DW$370, DW_AT_decl_file("/usr/share/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$370, DW_AT_decl_line(0x369)
.dwattr $C$DW$370, DW_AT_decl_column(0x0d)
.dwattr $C$DW$T$96, DW_AT_decl_file("/usr/share/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$T$96, DW_AT_decl_line(0x366)
.dwattr $C$DW$T$96, DW_AT_decl_column(0x13)
.dwendtag $C$DW$T$96
$C$DW$T$269 .dwtag DW_TAG_volatile_type
.dwattr $C$DW$T$269, DW_AT_type(*$C$DW$T$96)
$C$DW$T$97 .dwtag DW_TAG_structure_type
.dwattr $C$DW$T$97, DW_AT_byte_size(0x04)
$C$DW$371 .dwtag DW_TAG_member
.dwattr $C$DW$371, DW_AT_type(*$C$DW$T$11)
.dwattr $C$DW$371, DW_AT_name("NEST_HINT_9")
.dwattr $C$DW$371, DW_AT_TI_symbol_name("NEST_HINT_9")
.dwattr $C$DW$371, DW_AT_bit_offset(0x17)
.dwattr $C$DW$371, DW_AT_bit_size(0x09)
.dwattr $C$DW$371, DW_AT_data_member_location[DW_OP_plus_uconst 0x0]
.dwattr $C$DW$371, DW_AT_accessibility(DW_ACCESS_public)
.dwattr $C$DW$371, DW_AT_decl_file("/usr/share/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$371, DW_AT_decl_line(0x373)
.dwattr $C$DW$371, DW_AT_decl_column(0x0d)
$C$DW$372 .dwtag DW_TAG_member
.dwattr $C$DW$372, DW_AT_type(*$C$DW$T$11)
.dwattr $C$DW$372, DW_AT_name("rsvd9")
.dwattr $C$DW$372, DW_AT_TI_symbol_name("rsvd9")
.dwattr $C$DW$372, DW_AT_bit_offset(0x01)
.dwattr $C$DW$372, DW_AT_bit_size(0x16)
.dwattr $C$DW$372, DW_AT_data_member_location[DW_OP_plus_uconst 0x0]
.dwattr $C$DW$372, DW_AT_accessibility(DW_ACCESS_public)
.dwattr $C$DW$372, DW_AT_decl_file("/usr/share/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$372, DW_AT_decl_line(0x374)
.dwattr $C$DW$372, DW_AT_decl_column(0x0d)
$C$DW$373 .dwtag DW_TAG_member
.dwattr $C$DW$373, DW_AT_type(*$C$DW$T$11)
.dwattr $C$DW$373, DW_AT_name("AUTO_OVERRIDE")
.dwattr $C$DW$373, DW_AT_TI_symbol_name("AUTO_OVERRIDE")
.dwattr $C$DW$373, DW_AT_bit_offset(0x00)
.dwattr $C$DW$373, DW_AT_bit_size(0x01)
.dwattr $C$DW$373, DW_AT_data_member_location[DW_OP_plus_uconst 0x0]
.dwattr $C$DW$373, DW_AT_accessibility(DW_ACCESS_public)
.dwattr $C$DW$373, DW_AT_decl_file("/usr/share/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$373, DW_AT_decl_line(0x375)
.dwattr $C$DW$373, DW_AT_decl_column(0x0d)
.dwattr $C$DW$T$97, DW_AT_decl_file("/usr/share/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$T$97, DW_AT_decl_line(0x372)
.dwattr $C$DW$T$97, DW_AT_decl_column(0x13)
.dwendtag $C$DW$T$97
$C$DW$T$271 .dwtag DW_TAG_volatile_type
.dwattr $C$DW$T$271, DW_AT_type(*$C$DW$T$97)
$C$DW$T$98 .dwtag DW_TAG_structure_type
.dwattr $C$DW$T$98, DW_AT_byte_size(0x04)
$C$DW$374 .dwtag DW_TAG_member
.dwattr $C$DW$374, DW_AT_type(*$C$DW$T$11)
.dwattr $C$DW$374, DW_AT_name("EN_HINT")
.dwattr $C$DW$374, DW_AT_TI_symbol_name("EN_HINT")
.dwattr $C$DW$374, DW_AT_bit_offset(0x16)
.dwattr $C$DW$374, DW_AT_bit_size(0x0a)
.dwattr $C$DW$374, DW_AT_data_member_location[DW_OP_plus_uconst 0x0]
.dwattr $C$DW$374, DW_AT_accessibility(DW_ACCESS_public)
.dwattr $C$DW$374, DW_AT_decl_file("/usr/share/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$374, DW_AT_decl_line(0x382)
.dwattr $C$DW$374, DW_AT_decl_column(0x0d)
$C$DW$375 .dwtag DW_TAG_member
.dwattr $C$DW$375, DW_AT_type(*$C$DW$T$11)
.dwattr $C$DW$375, DW_AT_name("rsvd9")
.dwattr $C$DW$375, DW_AT_TI_symbol_name("rsvd9")
.dwattr $C$DW$375, DW_AT_bit_offset(0x00)
.dwattr $C$DW$375, DW_AT_bit_size(0x16)
.dwattr $C$DW$375, DW_AT_data_member_location[DW_OP_plus_uconst 0x0]
.dwattr $C$DW$375, DW_AT_accessibility(DW_ACCESS_public)
.dwattr $C$DW$375, DW_AT_decl_file("/usr/share/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$375, DW_AT_decl_line(0x383)
.dwattr $C$DW$375, DW_AT_decl_column(0x0d)
.dwattr $C$DW$T$98, DW_AT_decl_file("/usr/share/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$T$98, DW_AT_decl_line(0x381)
.dwattr $C$DW$T$98, DW_AT_decl_column(0x13)
.dwendtag $C$DW$T$98
$C$DW$T$273 .dwtag DW_TAG_volatile_type
.dwattr $C$DW$T$273, DW_AT_type(*$C$DW$T$98)
$C$DW$T$106 .dwtag DW_TAG_structure_type
.dwattr $C$DW$T$106, DW_AT_byte_size(0x1504)
$C$DW$376 .dwtag DW_TAG_member
.dwattr $C$DW$376, DW_AT_type(*$C$DW$T$150)
.dwattr $C$DW$376, DW_AT_name("$P$T13")
.dwattr $C$DW$376, DW_AT_TI_symbol_name("$P$T13")
.dwattr $C$DW$376, DW_AT_data_member_location[DW_OP_plus_uconst 0x0]
.dwattr $C$DW$376, DW_AT_accessibility(DW_ACCESS_public)
.dwattr $C$DW$376, DW_AT_decl_file("/usr/share/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$376, DW_AT_decl_line(0x29)
.dwattr $C$DW$376, DW_AT_decl_column(0x02)
$C$DW$377 .dwtag DW_TAG_member
.dwattr $C$DW$377, DW_AT_type(*$C$DW$T$152)
.dwattr $C$DW$377, DW_AT_name("$P$T14")
.dwattr $C$DW$377, DW_AT_TI_symbol_name("$P$T14")
.dwattr $C$DW$377, DW_AT_data_member_location[DW_OP_plus_uconst 0x4]
.dwattr $C$DW$377, DW_AT_accessibility(DW_ACCESS_public)
.dwattr $C$DW$377, DW_AT_decl_file("/usr/share/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$377, DW_AT_decl_line(0x39)
.dwattr $C$DW$377, DW_AT_decl_column(0x02)
$C$DW$378 .dwtag DW_TAG_member
.dwattr $C$DW$378, DW_AT_type(*$C$DW$T$34)
.dwattr $C$DW$378, DW_AT_name("rsvd8")
.dwattr $C$DW$378, DW_AT_TI_symbol_name("rsvd8")
.dwattr $C$DW$378, DW_AT_data_member_location[DW_OP_plus_uconst 0x8]
.dwattr $C$DW$378, DW_AT_accessibility(DW_ACCESS_public)
.dwattr $C$DW$378, DW_AT_decl_file("/usr/share/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$378, DW_AT_decl_line(0x44)
.dwattr $C$DW$378, DW_AT_decl_column(0x0b)
$C$DW$379 .dwtag DW_TAG_member
.dwattr $C$DW$379, DW_AT_type(*$C$DW$T$154)
.dwattr $C$DW$379, DW_AT_name("$P$T15")
.dwattr $C$DW$379, DW_AT_TI_symbol_name("$P$T15")
.dwattr $C$DW$379, DW_AT_data_member_location[DW_OP_plus_uconst 0x10]
.dwattr $C$DW$379, DW_AT_accessibility(DW_ACCESS_public)
.dwattr $C$DW$379, DW_AT_decl_file("/usr/share/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$379, DW_AT_decl_line(0x48)
.dwattr $C$DW$379, DW_AT_decl_column(0x02)
$C$DW$380 .dwtag DW_TAG_member
.dwattr $C$DW$380, DW_AT_type(*$C$DW$T$34)
.dwattr $C$DW$380, DW_AT_name("rsvd14")
.dwattr $C$DW$380, DW_AT_TI_symbol_name("rsvd14")
.dwattr $C$DW$380, DW_AT_data_member_location[DW_OP_plus_uconst 0x14]
.dwattr $C$DW$380, DW_AT_accessibility(DW_ACCESS_public)
.dwattr $C$DW$380, DW_AT_decl_file("/usr/share/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$380, DW_AT_decl_line(0x52)
.dwattr $C$DW$380, DW_AT_decl_column(0x0b)
$C$DW$381 .dwtag DW_TAG_member
.dwattr $C$DW$381, DW_AT_type(*$C$DW$T$156)
.dwattr $C$DW$381, DW_AT_name("$P$T16")
.dwattr $C$DW$381, DW_AT_TI_symbol_name("$P$T16")
.dwattr $C$DW$381, DW_AT_data_member_location[DW_OP_plus_uconst 0x1c]
.dwattr $C$DW$381, DW_AT_accessibility(DW_ACCESS_public)
.dwattr $C$DW$381, DW_AT_decl_file("/usr/share/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$381, DW_AT_decl_line(0x56)
.dwattr $C$DW$381, DW_AT_decl_column(0x02)
$C$DW$382 .dwtag DW_TAG_member
.dwattr $C$DW$382, DW_AT_type(*$C$DW$T$158)
.dwattr $C$DW$382, DW_AT_name("$P$T17")
.dwattr $C$DW$382, DW_AT_TI_symbol_name("$P$T17")
.dwattr $C$DW$382, DW_AT_data_member_location[DW_OP_plus_uconst 0x20]
.dwattr $C$DW$382, DW_AT_accessibility(DW_ACCESS_public)
.dwattr $C$DW$382, DW_AT_decl_file("/usr/share/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$382, DW_AT_decl_line(0x62)
.dwattr $C$DW$382, DW_AT_decl_column(0x02)
$C$DW$383 .dwtag DW_TAG_member
.dwattr $C$DW$383, DW_AT_type(*$C$DW$T$160)
.dwattr $C$DW$383, DW_AT_name("$P$T18")
.dwattr $C$DW$383, DW_AT_TI_symbol_name("$P$T18")
.dwattr $C$DW$383, DW_AT_data_member_location[DW_OP_plus_uconst 0x24]
.dwattr $C$DW$383, DW_AT_accessibility(DW_ACCESS_public)
.dwattr $C$DW$383, DW_AT_decl_file("/usr/share/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$383, DW_AT_decl_line(0x6d)
.dwattr $C$DW$383, DW_AT_decl_column(0x02)
$C$DW$384 .dwtag DW_TAG_member
.dwattr $C$DW$384, DW_AT_type(*$C$DW$T$162)
.dwattr $C$DW$384, DW_AT_name("$P$T19")
.dwattr $C$DW$384, DW_AT_TI_symbol_name("$P$T19")
.dwattr $C$DW$384, DW_AT_data_member_location[DW_OP_plus_uconst 0x28]
.dwattr $C$DW$384, DW_AT_accessibility(DW_ACCESS_public)
.dwattr $C$DW$384, DW_AT_decl_file("/usr/share/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$384, DW_AT_decl_line(0x78)
.dwattr $C$DW$384, DW_AT_decl_column(0x02)
$C$DW$385 .dwtag DW_TAG_member
.dwattr $C$DW$385, DW_AT_type(*$C$DW$T$164)
.dwattr $C$DW$385, DW_AT_name("$P$T20")
.dwattr $C$DW$385, DW_AT_TI_symbol_name("$P$T20")
.dwattr $C$DW$385, DW_AT_data_member_location[DW_OP_plus_uconst 0x2c]
.dwattr $C$DW$385, DW_AT_accessibility(DW_ACCESS_public)
.dwattr $C$DW$385, DW_AT_decl_file("/usr/share/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$385, DW_AT_decl_line(0x83)
.dwattr $C$DW$385, DW_AT_decl_column(0x02)
$C$DW$386 .dwtag DW_TAG_member
.dwattr $C$DW$386, DW_AT_type(*$C$DW$T$32)
.dwattr $C$DW$386, DW_AT_name("rsvd30")
.dwattr $C$DW$386, DW_AT_TI_symbol_name("rsvd30")
.dwattr $C$DW$386, DW_AT_data_member_location[DW_OP_plus_uconst 0x30]
.dwattr $C$DW$386, DW_AT_accessibility(DW_ACCESS_public)
.dwattr $C$DW$386, DW_AT_decl_file("/usr/share/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$386, DW_AT_decl_line(0x8d)
.dwattr $C$DW$386, DW_AT_decl_column(0x0b)
$C$DW$387 .dwtag DW_TAG_member
.dwattr $C$DW$387, DW_AT_type(*$C$DW$T$166)
.dwattr $C$DW$387, DW_AT_name("$P$T21")
.dwattr $C$DW$387, DW_AT_TI_symbol_name("$P$T21")
.dwattr $C$DW$387, DW_AT_data_member_location[DW_OP_plus_uconst 0x34]
.dwattr $C$DW$387, DW_AT_accessibility(DW_ACCESS_public)
.dwattr $C$DW$387, DW_AT_decl_file("/usr/share/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$387, DW_AT_decl_line(0x91)
.dwattr $C$DW$387, DW_AT_decl_column(0x02)
$C$DW$388 .dwtag DW_TAG_member
.dwattr $C$DW$388, DW_AT_type(*$C$DW$T$168)
.dwattr $C$DW$388, DW_AT_name("$P$T22")
.dwattr $C$DW$388, DW_AT_TI_symbol_name("$P$T22")
.dwattr $C$DW$388, DW_AT_data_member_location[DW_OP_plus_uconst 0x38]
.dwattr $C$DW$388, DW_AT_accessibility(DW_ACCESS_public)
.dwattr $C$DW$388, DW_AT_decl_file("/usr/share/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$388, DW_AT_decl_line(0x9c)
.dwattr $C$DW$388, DW_AT_decl_column(0x02)
$C$DW$389 .dwtag DW_TAG_member
.dwattr $C$DW$389, DW_AT_type(*$C$DW$T$99)
.dwattr $C$DW$389, DW_AT_name("rsvd3C")
.dwattr $C$DW$389, DW_AT_TI_symbol_name("rsvd3C")
.dwattr $C$DW$389, DW_AT_data_member_location[DW_OP_plus_uconst 0x3c]
.dwattr $C$DW$389, DW_AT_accessibility(DW_ACCESS_public)
.dwattr $C$DW$389, DW_AT_decl_file("/usr/share/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$389, DW_AT_decl_line(0xa6)
.dwattr $C$DW$389, DW_AT_decl_column(0x0b)
$C$DW$390 .dwtag DW_TAG_member
.dwattr $C$DW$390, DW_AT_type(*$C$DW$T$170)
.dwattr $C$DW$390, DW_AT_name("$P$T23")
.dwattr $C$DW$390, DW_AT_TI_symbol_name("$P$T23")
.dwattr $C$DW$390, DW_AT_data_member_location[DW_OP_plus_uconst 0x80]
.dwattr $C$DW$390, DW_AT_accessibility(DW_ACCESS_public)
.dwattr $C$DW$390, DW_AT_decl_file("/usr/share/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$390, DW_AT_decl_line(0xaa)
.dwattr $C$DW$390, DW_AT_decl_column(0x02)
$C$DW$391 .dwtag DW_TAG_member
.dwattr $C$DW$391, DW_AT_type(*$C$DW$T$100)
.dwattr $C$DW$391, DW_AT_name("rsvd84")
.dwattr $C$DW$391, DW_AT_TI_symbol_name("rsvd84")
.dwattr $C$DW$391, DW_AT_data_member_location[DW_OP_plus_uconst 0x84]
.dwattr $C$DW$391, DW_AT_accessibility(DW_ACCESS_public)
.dwattr $C$DW$391, DW_AT_decl_file("/usr/share/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$391, DW_AT_decl_line(0xb5)
.dwattr $C$DW$391, DW_AT_decl_column(0x0b)
$C$DW$392 .dwtag DW_TAG_member
.dwattr $C$DW$392, DW_AT_type(*$C$DW$T$172)
.dwattr $C$DW$392, DW_AT_name("$P$T24")
.dwattr $C$DW$392, DW_AT_TI_symbol_name("$P$T24")
.dwattr $C$DW$392, DW_AT_data_member_location[DW_OP_plus_uconst 0x200]
.dwattr $C$DW$392, DW_AT_accessibility(DW_ACCESS_public)
.dwattr $C$DW$392, DW_AT_decl_file("/usr/share/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$392, DW_AT_decl_line(0xb9)
.dwattr $C$DW$392, DW_AT_decl_column(0x02)
$C$DW$393 .dwtag DW_TAG_member
.dwattr $C$DW$393, DW_AT_type(*$C$DW$T$174)
.dwattr $C$DW$393, DW_AT_name("$P$T25")
.dwattr $C$DW$393, DW_AT_TI_symbol_name("$P$T25")
.dwattr $C$DW$393, DW_AT_data_member_location[DW_OP_plus_uconst 0x204]
.dwattr $C$DW$393, DW_AT_accessibility(DW_ACCESS_public)
.dwattr $C$DW$393, DW_AT_decl_file("/usr/share/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$393, DW_AT_decl_line(0xc3)
.dwattr $C$DW$393, DW_AT_decl_column(0x02)
$C$DW$394 .dwtag DW_TAG_member
.dwattr $C$DW$394, DW_AT_type(*$C$DW$T$101)
.dwattr $C$DW$394, DW_AT_name("rsvd208")
.dwattr $C$DW$394, DW_AT_TI_symbol_name("rsvd208")
.dwattr $C$DW$394, DW_AT_data_member_location[DW_OP_plus_uconst 0x208]
.dwattr $C$DW$394, DW_AT_accessibility(DW_ACCESS_public)
.dwattr $C$DW$394, DW_AT_decl_file("/usr/share/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$394, DW_AT_decl_line(0xcc)
.dwattr $C$DW$394, DW_AT_decl_column(0x0b)
$C$DW$395 .dwtag DW_TAG_member
.dwattr $C$DW$395, DW_AT_type(*$C$DW$T$176)
.dwattr $C$DW$395, DW_AT_name("$P$T26")
.dwattr $C$DW$395, DW_AT_TI_symbol_name("$P$T26")
.dwattr $C$DW$395, DW_AT_data_member_location[DW_OP_plus_uconst 0x280]
.dwattr $C$DW$395, DW_AT_accessibility(DW_ACCESS_public)
.dwattr $C$DW$395, DW_AT_decl_file("/usr/share/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$395, DW_AT_decl_line(0xd0)
.dwattr $C$DW$395, DW_AT_decl_column(0x02)
$C$DW$396 .dwtag DW_TAG_member
.dwattr $C$DW$396, DW_AT_type(*$C$DW$T$178)
.dwattr $C$DW$396, DW_AT_name("$P$T27")
.dwattr $C$DW$396, DW_AT_TI_symbol_name("$P$T27")
.dwattr $C$DW$396, DW_AT_data_member_location[DW_OP_plus_uconst 0x284]
.dwattr $C$DW$396, DW_AT_accessibility(DW_ACCESS_public)
.dwattr $C$DW$396, DW_AT_decl_file("/usr/share/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$396, DW_AT_decl_line(0xda)
.dwattr $C$DW$396, DW_AT_decl_column(0x02)
$C$DW$397 .dwtag DW_TAG_member
.dwattr $C$DW$397, DW_AT_type(*$C$DW$T$101)
.dwattr $C$DW$397, DW_AT_name("rsvd288")
.dwattr $C$DW$397, DW_AT_TI_symbol_name("rsvd288")
.dwattr $C$DW$397, DW_AT_data_member_location[DW_OP_plus_uconst 0x288]
.dwattr $C$DW$397, DW_AT_accessibility(DW_ACCESS_public)
.dwattr $C$DW$397, DW_AT_decl_file("/usr/share/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$397, DW_AT_decl_line(0xe3)
.dwattr $C$DW$397, DW_AT_decl_column(0x0b)
$C$DW$398 .dwtag DW_TAG_member
.dwattr $C$DW$398, DW_AT_type(*$C$DW$T$180)
.dwattr $C$DW$398, DW_AT_name("$P$T28")
.dwattr $C$DW$398, DW_AT_TI_symbol_name("$P$T28")
.dwattr $C$DW$398, DW_AT_data_member_location[DW_OP_plus_uconst 0x300]
.dwattr $C$DW$398, DW_AT_accessibility(DW_ACCESS_public)
.dwattr $C$DW$398, DW_AT_decl_file("/usr/share/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$398, DW_AT_decl_line(0xe7)
.dwattr $C$DW$398, DW_AT_decl_column(0x02)
$C$DW$399 .dwtag DW_TAG_member
.dwattr $C$DW$399, DW_AT_type(*$C$DW$T$182)
.dwattr $C$DW$399, DW_AT_name("$P$T29")
.dwattr $C$DW$399, DW_AT_TI_symbol_name("$P$T29")
.dwattr $C$DW$399, DW_AT_data_member_location[DW_OP_plus_uconst 0x304]
.dwattr $C$DW$399, DW_AT_accessibility(DW_ACCESS_public)
.dwattr $C$DW$399, DW_AT_decl_file("/usr/share/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$399, DW_AT_decl_line(0xf1)
.dwattr $C$DW$399, DW_AT_decl_column(0x02)
$C$DW$400 .dwtag DW_TAG_member
.dwattr $C$DW$400, DW_AT_type(*$C$DW$T$101)
.dwattr $C$DW$400, DW_AT_name("rsvd308")
.dwattr $C$DW$400, DW_AT_TI_symbol_name("rsvd308")
.dwattr $C$DW$400, DW_AT_data_member_location[DW_OP_plus_uconst 0x308]
.dwattr $C$DW$400, DW_AT_accessibility(DW_ACCESS_public)
.dwattr $C$DW$400, DW_AT_decl_file("/usr/share/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$400, DW_AT_decl_line(0xfa)
.dwattr $C$DW$400, DW_AT_decl_column(0x0b)
$C$DW$401 .dwtag DW_TAG_member
.dwattr $C$DW$401, DW_AT_type(*$C$DW$T$184)
.dwattr $C$DW$401, DW_AT_name("$P$T30")
.dwattr $C$DW$401, DW_AT_TI_symbol_name("$P$T30")
.dwattr $C$DW$401, DW_AT_data_member_location[DW_OP_plus_uconst 0x380]
.dwattr $C$DW$401, DW_AT_accessibility(DW_ACCESS_public)
.dwattr $C$DW$401, DW_AT_decl_file("/usr/share/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$401, DW_AT_decl_line(0xfe)
.dwattr $C$DW$401, DW_AT_decl_column(0x02)
$C$DW$402 .dwtag DW_TAG_member
.dwattr $C$DW$402, DW_AT_type(*$C$DW$T$186)
.dwattr $C$DW$402, DW_AT_name("$P$T31")
.dwattr $C$DW$402, DW_AT_TI_symbol_name("$P$T31")
.dwattr $C$DW$402, DW_AT_data_member_location[DW_OP_plus_uconst 0x384]
.dwattr $C$DW$402, DW_AT_accessibility(DW_ACCESS_public)
.dwattr $C$DW$402, DW_AT_decl_file("/usr/share/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$402, DW_AT_decl_line(0x108)
.dwattr $C$DW$402, DW_AT_decl_column(0x02)
$C$DW$403 .dwtag DW_TAG_member
.dwattr $C$DW$403, DW_AT_type(*$C$DW$T$101)
.dwattr $C$DW$403, DW_AT_name("rsvd388")
.dwattr $C$DW$403, DW_AT_TI_symbol_name("rsvd388")
.dwattr $C$DW$403, DW_AT_data_member_location[DW_OP_plus_uconst 0x388]
.dwattr $C$DW$403, DW_AT_accessibility(DW_ACCESS_public)
.dwattr $C$DW$403, DW_AT_decl_file("/usr/share/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$403, DW_AT_decl_line(0x111)
.dwattr $C$DW$403, DW_AT_decl_column(0x0b)
$C$DW$404 .dwtag DW_TAG_member
.dwattr $C$DW$404, DW_AT_type(*$C$DW$T$188)
.dwattr $C$DW$404, DW_AT_name("$P$T32")
.dwattr $C$DW$404, DW_AT_TI_symbol_name("$P$T32")
.dwattr $C$DW$404, DW_AT_data_member_location[DW_OP_plus_uconst 0x400]
.dwattr $C$DW$404, DW_AT_accessibility(DW_ACCESS_public)
.dwattr $C$DW$404, DW_AT_decl_file("/usr/share/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$404, DW_AT_decl_line(0x115)
.dwattr $C$DW$404, DW_AT_decl_column(0x02)
$C$DW$405 .dwtag DW_TAG_member
.dwattr $C$DW$405, DW_AT_type(*$C$DW$T$190)
.dwattr $C$DW$405, DW_AT_name("$P$T33")
.dwattr $C$DW$405, DW_AT_TI_symbol_name("$P$T33")
.dwattr $C$DW$405, DW_AT_data_member_location[DW_OP_plus_uconst 0x404]
.dwattr $C$DW$405, DW_AT_accessibility(DW_ACCESS_public)
.dwattr $C$DW$405, DW_AT_decl_file("/usr/share/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$405, DW_AT_decl_line(0x126)
.dwattr $C$DW$405, DW_AT_decl_column(0x02)
$C$DW$406 .dwtag DW_TAG_member
.dwattr $C$DW$406, DW_AT_type(*$C$DW$T$192)
.dwattr $C$DW$406, DW_AT_name("$P$T34")
.dwattr $C$DW$406, DW_AT_TI_symbol_name("$P$T34")
.dwattr $C$DW$406, DW_AT_data_member_location[DW_OP_plus_uconst 0x408]
.dwattr $C$DW$406, DW_AT_accessibility(DW_ACCESS_public)
.dwattr $C$DW$406, DW_AT_decl_file("/usr/share/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$406, DW_AT_decl_line(0x137)
.dwattr $C$DW$406, DW_AT_decl_column(0x02)
$C$DW$407 .dwtag DW_TAG_member
.dwattr $C$DW$407, DW_AT_type(*$C$DW$T$194)
.dwattr $C$DW$407, DW_AT_name("$P$T35")
.dwattr $C$DW$407, DW_AT_TI_symbol_name("$P$T35")
.dwattr $C$DW$407, DW_AT_data_member_location[DW_OP_plus_uconst 0x40c]
.dwattr $C$DW$407, DW_AT_accessibility(DW_ACCESS_public)
.dwattr $C$DW$407, DW_AT_decl_file("/usr/share/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$407, DW_AT_decl_line(0x148)
.dwattr $C$DW$407, DW_AT_decl_column(0x02)
$C$DW$408 .dwtag DW_TAG_member
.dwattr $C$DW$408, DW_AT_type(*$C$DW$T$196)
.dwattr $C$DW$408, DW_AT_name("$P$T36")
.dwattr $C$DW$408, DW_AT_TI_symbol_name("$P$T36")
.dwattr $C$DW$408, DW_AT_data_member_location[DW_OP_plus_uconst 0x410]
.dwattr $C$DW$408, DW_AT_accessibility(DW_ACCESS_public)
.dwattr $C$DW$408, DW_AT_decl_file("/usr/share/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$408, DW_AT_decl_line(0x159)
.dwattr $C$DW$408, DW_AT_decl_column(0x02)
$C$DW$409 .dwtag DW_TAG_member
.dwattr $C$DW$409, DW_AT_type(*$C$DW$T$198)
.dwattr $C$DW$409, DW_AT_name("$P$T37")
.dwattr $C$DW$409, DW_AT_TI_symbol_name("$P$T37")
.dwattr $C$DW$409, DW_AT_data_member_location[DW_OP_plus_uconst 0x414]
.dwattr $C$DW$409, DW_AT_accessibility(DW_ACCESS_public)
.dwattr $C$DW$409, DW_AT_decl_file("/usr/share/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$409, DW_AT_decl_line(0x16a)
.dwattr $C$DW$409, DW_AT_decl_column(0x02)
$C$DW$410 .dwtag DW_TAG_member
.dwattr $C$DW$410, DW_AT_type(*$C$DW$T$200)
.dwattr $C$DW$410, DW_AT_name("$P$T38")
.dwattr $C$DW$410, DW_AT_TI_symbol_name("$P$T38")
.dwattr $C$DW$410, DW_AT_data_member_location[DW_OP_plus_uconst 0x418]
.dwattr $C$DW$410, DW_AT_accessibility(DW_ACCESS_public)
.dwattr $C$DW$410, DW_AT_decl_file("/usr/share/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$410, DW_AT_decl_line(0x17b)
.dwattr $C$DW$410, DW_AT_decl_column(0x02)
$C$DW$411 .dwtag DW_TAG_member
.dwattr $C$DW$411, DW_AT_type(*$C$DW$T$202)
.dwattr $C$DW$411, DW_AT_name("$P$T39")
.dwattr $C$DW$411, DW_AT_TI_symbol_name("$P$T39")
.dwattr $C$DW$411, DW_AT_data_member_location[DW_OP_plus_uconst 0x41c]
.dwattr $C$DW$411, DW_AT_accessibility(DW_ACCESS_public)
.dwattr $C$DW$411, DW_AT_decl_file("/usr/share/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$411, DW_AT_decl_line(0x18c)
.dwattr $C$DW$411, DW_AT_decl_column(0x02)
$C$DW$412 .dwtag DW_TAG_member
.dwattr $C$DW$412, DW_AT_type(*$C$DW$T$204)
.dwattr $C$DW$412, DW_AT_name("$P$T40")
.dwattr $C$DW$412, DW_AT_TI_symbol_name("$P$T40")
.dwattr $C$DW$412, DW_AT_data_member_location[DW_OP_plus_uconst 0x420]
.dwattr $C$DW$412, DW_AT_accessibility(DW_ACCESS_public)
.dwattr $C$DW$412, DW_AT_decl_file("/usr/share/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$412, DW_AT_decl_line(0x19d)
.dwattr $C$DW$412, DW_AT_decl_column(0x02)
$C$DW$413 .dwtag DW_TAG_member
.dwattr $C$DW$413, DW_AT_type(*$C$DW$T$206)
.dwattr $C$DW$413, DW_AT_name("$P$T41")
.dwattr $C$DW$413, DW_AT_TI_symbol_name("$P$T41")
.dwattr $C$DW$413, DW_AT_data_member_location[DW_OP_plus_uconst 0x424]
.dwattr $C$DW$413, DW_AT_accessibility(DW_ACCESS_public)
.dwattr $C$DW$413, DW_AT_decl_file("/usr/share/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$413, DW_AT_decl_line(0x1ae)
.dwattr $C$DW$413, DW_AT_decl_column(0x02)
$C$DW$414 .dwtag DW_TAG_member
.dwattr $C$DW$414, DW_AT_type(*$C$DW$T$208)
.dwattr $C$DW$414, DW_AT_name("$P$T42")
.dwattr $C$DW$414, DW_AT_TI_symbol_name("$P$T42")
.dwattr $C$DW$414, DW_AT_data_member_location[DW_OP_plus_uconst 0x428]
.dwattr $C$DW$414, DW_AT_accessibility(DW_ACCESS_public)
.dwattr $C$DW$414, DW_AT_decl_file("/usr/share/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$414, DW_AT_decl_line(0x1bf)
.dwattr $C$DW$414, DW_AT_decl_column(0x02)
$C$DW$415 .dwtag DW_TAG_member
.dwattr $C$DW$415, DW_AT_type(*$C$DW$T$210)
.dwattr $C$DW$415, DW_AT_name("$P$T43")
.dwattr $C$DW$415, DW_AT_TI_symbol_name("$P$T43")
.dwattr $C$DW$415, DW_AT_data_member_location[DW_OP_plus_uconst 0x42c]
.dwattr $C$DW$415, DW_AT_accessibility(DW_ACCESS_public)
.dwattr $C$DW$415, DW_AT_decl_file("/usr/share/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$415, DW_AT_decl_line(0x1d0)
.dwattr $C$DW$415, DW_AT_decl_column(0x02)
$C$DW$416 .dwtag DW_TAG_member
.dwattr $C$DW$416, DW_AT_type(*$C$DW$T$212)
.dwattr $C$DW$416, DW_AT_name("$P$T44")
.dwattr $C$DW$416, DW_AT_TI_symbol_name("$P$T44")
.dwattr $C$DW$416, DW_AT_data_member_location[DW_OP_plus_uconst 0x430]
.dwattr $C$DW$416, DW_AT_accessibility(DW_ACCESS_public)
.dwattr $C$DW$416, DW_AT_decl_file("/usr/share/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$416, DW_AT_decl_line(0x1e1)
.dwattr $C$DW$416, DW_AT_decl_column(0x02)
$C$DW$417 .dwtag DW_TAG_member
.dwattr $C$DW$417, DW_AT_type(*$C$DW$T$214)
.dwattr $C$DW$417, DW_AT_name("$P$T45")
.dwattr $C$DW$417, DW_AT_TI_symbol_name("$P$T45")
.dwattr $C$DW$417, DW_AT_data_member_location[DW_OP_plus_uconst 0x434]
.dwattr $C$DW$417, DW_AT_accessibility(DW_ACCESS_public)
.dwattr $C$DW$417, DW_AT_decl_file("/usr/share/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$417, DW_AT_decl_line(0x1f2)
.dwattr $C$DW$417, DW_AT_decl_column(0x02)
$C$DW$418 .dwtag DW_TAG_member
.dwattr $C$DW$418, DW_AT_type(*$C$DW$T$216)
.dwattr $C$DW$418, DW_AT_name("$P$T46")
.dwattr $C$DW$418, DW_AT_TI_symbol_name("$P$T46")
.dwattr $C$DW$418, DW_AT_data_member_location[DW_OP_plus_uconst 0x438]
.dwattr $C$DW$418, DW_AT_accessibility(DW_ACCESS_public)
.dwattr $C$DW$418, DW_AT_decl_file("/usr/share/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$418, DW_AT_decl_line(0x203)
.dwattr $C$DW$418, DW_AT_decl_column(0x02)
$C$DW$419 .dwtag DW_TAG_member
.dwattr $C$DW$419, DW_AT_type(*$C$DW$T$218)
.dwattr $C$DW$419, DW_AT_name("$P$T47")
.dwattr $C$DW$419, DW_AT_TI_symbol_name("$P$T47")
.dwattr $C$DW$419, DW_AT_data_member_location[DW_OP_plus_uconst 0x43c]
.dwattr $C$DW$419, DW_AT_accessibility(DW_ACCESS_public)
.dwattr $C$DW$419, DW_AT_decl_file("/usr/share/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$419, DW_AT_decl_line(0x214)
.dwattr $C$DW$419, DW_AT_decl_column(0x02)
$C$DW$420 .dwtag DW_TAG_member
.dwattr $C$DW$420, DW_AT_type(*$C$DW$T$102)
.dwattr $C$DW$420, DW_AT_name("rsvd440")
.dwattr $C$DW$420, DW_AT_TI_symbol_name("rsvd440")
.dwattr $C$DW$420, DW_AT_data_member_location[DW_OP_plus_uconst 0x440]
.dwattr $C$DW$420, DW_AT_accessibility(DW_ACCESS_public)
.dwattr $C$DW$420, DW_AT_decl_file("/usr/share/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$420, DW_AT_decl_line(0x224)
.dwattr $C$DW$420, DW_AT_decl_column(0x0b)
$C$DW$421 .dwtag DW_TAG_member
.dwattr $C$DW$421, DW_AT_type(*$C$DW$T$220)
.dwattr $C$DW$421, DW_AT_name("$P$T48")
.dwattr $C$DW$421, DW_AT_TI_symbol_name("$P$T48")
.dwattr $C$DW$421, DW_AT_data_member_location[DW_OP_plus_uconst 0x800]
.dwattr $C$DW$421, DW_AT_accessibility(DW_ACCESS_public)
.dwattr $C$DW$421, DW_AT_decl_file("/usr/share/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$421, DW_AT_decl_line(0x228)
.dwattr $C$DW$421, DW_AT_decl_column(0x02)
$C$DW$422 .dwtag DW_TAG_member
.dwattr $C$DW$422, DW_AT_type(*$C$DW$T$222)
.dwattr $C$DW$422, DW_AT_name("$P$T49")
.dwattr $C$DW$422, DW_AT_TI_symbol_name("$P$T49")
.dwattr $C$DW$422, DW_AT_data_member_location[DW_OP_plus_uconst 0x804]
.dwattr $C$DW$422, DW_AT_accessibility(DW_ACCESS_public)
.dwattr $C$DW$422, DW_AT_decl_file("/usr/share/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$422, DW_AT_decl_line(0x239)
.dwattr $C$DW$422, DW_AT_decl_column(0x02)
$C$DW$423 .dwtag DW_TAG_member
.dwattr $C$DW$423, DW_AT_type(*$C$DW$T$224)
.dwattr $C$DW$423, DW_AT_name("$P$T50")
.dwattr $C$DW$423, DW_AT_TI_symbol_name("$P$T50")
.dwattr $C$DW$423, DW_AT_data_member_location[DW_OP_plus_uconst 0x808]
.dwattr $C$DW$423, DW_AT_accessibility(DW_ACCESS_public)
.dwattr $C$DW$423, DW_AT_decl_file("/usr/share/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$423, DW_AT_decl_line(0x24a)
.dwattr $C$DW$423, DW_AT_decl_column(0x02)
$C$DW$424 .dwtag DW_TAG_member
.dwattr $C$DW$424, DW_AT_type(*$C$DW$T$103)
.dwattr $C$DW$424, DW_AT_name("rsvd80C")
.dwattr $C$DW$424, DW_AT_TI_symbol_name("rsvd80C")
.dwattr $C$DW$424, DW_AT_data_member_location[DW_OP_plus_uconst 0x80c]
.dwattr $C$DW$424, DW_AT_accessibility(DW_ACCESS_public)
.dwattr $C$DW$424, DW_AT_decl_file("/usr/share/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$424, DW_AT_decl_line(0x256)
.dwattr $C$DW$424, DW_AT_decl_column(0x0b)
$C$DW$425 .dwtag DW_TAG_member
.dwattr $C$DW$425, DW_AT_type(*$C$DW$T$226)
.dwattr $C$DW$425, DW_AT_name("$P$T51")
.dwattr $C$DW$425, DW_AT_TI_symbol_name("$P$T51")
.dwattr $C$DW$425, DW_AT_data_member_location[DW_OP_plus_uconst 0x900]
.dwattr $C$DW$425, DW_AT_accessibility(DW_ACCESS_public)
.dwattr $C$DW$425, DW_AT_decl_file("/usr/share/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$425, DW_AT_decl_line(0x25a)
.dwattr $C$DW$425, DW_AT_decl_column(0x02)
$C$DW$426 .dwtag DW_TAG_member
.dwattr $C$DW$426, DW_AT_type(*$C$DW$T$228)
.dwattr $C$DW$426, DW_AT_name("$P$T52")
.dwattr $C$DW$426, DW_AT_TI_symbol_name("$P$T52")
.dwattr $C$DW$426, DW_AT_data_member_location[DW_OP_plus_uconst 0x904]
.dwattr $C$DW$426, DW_AT_accessibility(DW_ACCESS_public)
.dwattr $C$DW$426, DW_AT_decl_file("/usr/share/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$426, DW_AT_decl_line(0x266)
.dwattr $C$DW$426, DW_AT_decl_column(0x02)
$C$DW$427 .dwtag DW_TAG_member
.dwattr $C$DW$427, DW_AT_type(*$C$DW$T$230)
.dwattr $C$DW$427, DW_AT_name("$P$T53")
.dwattr $C$DW$427, DW_AT_TI_symbol_name("$P$T53")
.dwattr $C$DW$427, DW_AT_data_member_location[DW_OP_plus_uconst 0x908]
.dwattr $C$DW$427, DW_AT_accessibility(DW_ACCESS_public)
.dwattr $C$DW$427, DW_AT_decl_file("/usr/share/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$427, DW_AT_decl_line(0x272)
.dwattr $C$DW$427, DW_AT_decl_column(0x02)
$C$DW$428 .dwtag DW_TAG_member
.dwattr $C$DW$428, DW_AT_type(*$C$DW$T$232)
.dwattr $C$DW$428, DW_AT_name("$P$T54")
.dwattr $C$DW$428, DW_AT_TI_symbol_name("$P$T54")
.dwattr $C$DW$428, DW_AT_data_member_location[DW_OP_plus_uconst 0x90c]
.dwattr $C$DW$428, DW_AT_accessibility(DW_ACCESS_public)
.dwattr $C$DW$428, DW_AT_decl_file("/usr/share/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$428, DW_AT_decl_line(0x27e)
.dwattr $C$DW$428, DW_AT_decl_column(0x02)
$C$DW$429 .dwtag DW_TAG_member
.dwattr $C$DW$429, DW_AT_type(*$C$DW$T$234)
.dwattr $C$DW$429, DW_AT_name("$P$T55")
.dwattr $C$DW$429, DW_AT_TI_symbol_name("$P$T55")
.dwattr $C$DW$429, DW_AT_data_member_location[DW_OP_plus_uconst 0x910]
.dwattr $C$DW$429, DW_AT_accessibility(DW_ACCESS_public)
.dwattr $C$DW$429, DW_AT_decl_file("/usr/share/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$429, DW_AT_decl_line(0x28a)
.dwattr $C$DW$429, DW_AT_decl_column(0x02)
$C$DW$430 .dwtag DW_TAG_member
.dwattr $C$DW$430, DW_AT_type(*$C$DW$T$236)
.dwattr $C$DW$430, DW_AT_name("$P$T56")
.dwattr $C$DW$430, DW_AT_TI_symbol_name("$P$T56")
.dwattr $C$DW$430, DW_AT_data_member_location[DW_OP_plus_uconst 0x914]
.dwattr $C$DW$430, DW_AT_accessibility(DW_ACCESS_public)
.dwattr $C$DW$430, DW_AT_decl_file("/usr/share/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$430, DW_AT_decl_line(0x296)
.dwattr $C$DW$430, DW_AT_decl_column(0x02)
$C$DW$431 .dwtag DW_TAG_member
.dwattr $C$DW$431, DW_AT_type(*$C$DW$T$238)
.dwattr $C$DW$431, DW_AT_name("$P$T57")
.dwattr $C$DW$431, DW_AT_TI_symbol_name("$P$T57")
.dwattr $C$DW$431, DW_AT_data_member_location[DW_OP_plus_uconst 0x918]
.dwattr $C$DW$431, DW_AT_accessibility(DW_ACCESS_public)
.dwattr $C$DW$431, DW_AT_decl_file("/usr/share/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$431, DW_AT_decl_line(0x2a2)
.dwattr $C$DW$431, DW_AT_decl_column(0x02)
$C$DW$432 .dwtag DW_TAG_member
.dwattr $C$DW$432, DW_AT_type(*$C$DW$T$240)
.dwattr $C$DW$432, DW_AT_name("$P$T58")
.dwattr $C$DW$432, DW_AT_TI_symbol_name("$P$T58")
.dwattr $C$DW$432, DW_AT_data_member_location[DW_OP_plus_uconst 0x91c]
.dwattr $C$DW$432, DW_AT_accessibility(DW_ACCESS_public)
.dwattr $C$DW$432, DW_AT_decl_file("/usr/share/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$432, DW_AT_decl_line(0x2ae)
.dwattr $C$DW$432, DW_AT_decl_column(0x02)
$C$DW$433 .dwtag DW_TAG_member
.dwattr $C$DW$433, DW_AT_type(*$C$DW$T$242)
.dwattr $C$DW$433, DW_AT_name("$P$T59")
.dwattr $C$DW$433, DW_AT_TI_symbol_name("$P$T59")
.dwattr $C$DW$433, DW_AT_data_member_location[DW_OP_plus_uconst 0x920]
.dwattr $C$DW$433, DW_AT_accessibility(DW_ACCESS_public)
.dwattr $C$DW$433, DW_AT_decl_file("/usr/share/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$433, DW_AT_decl_line(0x2ba)
.dwattr $C$DW$433, DW_AT_decl_column(0x02)
$C$DW$434 .dwtag DW_TAG_member
.dwattr $C$DW$434, DW_AT_type(*$C$DW$T$244)
.dwattr $C$DW$434, DW_AT_name("$P$T60")
.dwattr $C$DW$434, DW_AT_TI_symbol_name("$P$T60")
.dwattr $C$DW$434, DW_AT_data_member_location[DW_OP_plus_uconst 0x924]
.dwattr $C$DW$434, DW_AT_accessibility(DW_ACCESS_public)
.dwattr $C$DW$434, DW_AT_decl_file("/usr/share/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$434, DW_AT_decl_line(0x2c6)
.dwattr $C$DW$434, DW_AT_decl_column(0x02)
$C$DW$435 .dwtag DW_TAG_member
.dwattr $C$DW$435, DW_AT_type(*$C$DW$T$104)
.dwattr $C$DW$435, DW_AT_name("rsvd928")
.dwattr $C$DW$435, DW_AT_TI_symbol_name("rsvd928")
.dwattr $C$DW$435, DW_AT_data_member_location[DW_OP_plus_uconst 0x928]
.dwattr $C$DW$435, DW_AT_accessibility(DW_ACCESS_public)
.dwattr $C$DW$435, DW_AT_decl_file("/usr/share/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$435, DW_AT_decl_line(0x2d1)
.dwattr $C$DW$435, DW_AT_decl_column(0x0b)
$C$DW$436 .dwtag DW_TAG_member
.dwattr $C$DW$436, DW_AT_type(*$C$DW$T$246)
.dwattr $C$DW$436, DW_AT_name("$P$T61")
.dwattr $C$DW$436, DW_AT_TI_symbol_name("$P$T61")
.dwattr $C$DW$436, DW_AT_data_member_location[DW_OP_plus_uconst 0xd00]
.dwattr $C$DW$436, DW_AT_accessibility(DW_ACCESS_public)
.dwattr $C$DW$436, DW_AT_decl_file("/usr/share/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$436, DW_AT_decl_line(0x2d5)
.dwattr $C$DW$436, DW_AT_decl_column(0x02)
$C$DW$437 .dwtag DW_TAG_member
.dwattr $C$DW$437, DW_AT_type(*$C$DW$T$248)
.dwattr $C$DW$437, DW_AT_name("$P$T62")
.dwattr $C$DW$437, DW_AT_TI_symbol_name("$P$T62")
.dwattr $C$DW$437, DW_AT_data_member_location[DW_OP_plus_uconst 0xd04]
.dwattr $C$DW$437, DW_AT_accessibility(DW_ACCESS_public)
.dwattr $C$DW$437, DW_AT_decl_file("/usr/share/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$437, DW_AT_decl_line(0x2df)
.dwattr $C$DW$437, DW_AT_decl_column(0x02)
$C$DW$438 .dwtag DW_TAG_member
.dwattr $C$DW$438, DW_AT_type(*$C$DW$T$101)
.dwattr $C$DW$438, DW_AT_name("rsvdD08")
.dwattr $C$DW$438, DW_AT_TI_symbol_name("rsvdD08")
.dwattr $C$DW$438, DW_AT_data_member_location[DW_OP_plus_uconst 0xd08]
.dwattr $C$DW$438, DW_AT_accessibility(DW_ACCESS_public)
.dwattr $C$DW$438, DW_AT_decl_file("/usr/share/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$438, DW_AT_decl_line(0x2e8)
.dwattr $C$DW$438, DW_AT_decl_column(0x0b)
$C$DW$439 .dwtag DW_TAG_member
.dwattr $C$DW$439, DW_AT_type(*$C$DW$T$250)
.dwattr $C$DW$439, DW_AT_name("$P$T63")
.dwattr $C$DW$439, DW_AT_TI_symbol_name("$P$T63")
.dwattr $C$DW$439, DW_AT_data_member_location[DW_OP_plus_uconst 0xd80]
.dwattr $C$DW$439, DW_AT_accessibility(DW_ACCESS_public)
.dwattr $C$DW$439, DW_AT_decl_file("/usr/share/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$439, DW_AT_decl_line(0x2ec)
.dwattr $C$DW$439, DW_AT_decl_column(0x02)
$C$DW$440 .dwtag DW_TAG_member
.dwattr $C$DW$440, DW_AT_type(*$C$DW$T$252)
.dwattr $C$DW$440, DW_AT_name("$P$T64")
.dwattr $C$DW$440, DW_AT_TI_symbol_name("$P$T64")
.dwattr $C$DW$440, DW_AT_data_member_location[DW_OP_plus_uconst 0xd84]
.dwattr $C$DW$440, DW_AT_accessibility(DW_ACCESS_public)
.dwattr $C$DW$440, DW_AT_decl_file("/usr/share/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$440, DW_AT_decl_line(0x2f6)
.dwattr $C$DW$440, DW_AT_decl_column(0x02)
$C$DW$441 .dwtag DW_TAG_member
.dwattr $C$DW$441, DW_AT_type(*$C$DW$T$105)
.dwattr $C$DW$441, DW_AT_name("rsvdD84")
.dwattr $C$DW$441, DW_AT_TI_symbol_name("rsvdD84")
.dwattr $C$DW$441, DW_AT_data_member_location[DW_OP_plus_uconst 0xd88]
.dwattr $C$DW$441, DW_AT_accessibility(DW_ACCESS_public)
.dwattr $C$DW$441, DW_AT_decl_file("/usr/share/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$441, DW_AT_decl_line(0x2ff)
.dwattr $C$DW$441, DW_AT_decl_column(0x0b)
$C$DW$442 .dwtag DW_TAG_member
.dwattr $C$DW$442, DW_AT_type(*$C$DW$T$254)
.dwattr $C$DW$442, DW_AT_name("$P$T65")
.dwattr $C$DW$442, DW_AT_TI_symbol_name("$P$T65")
.dwattr $C$DW$442, DW_AT_data_member_location[DW_OP_plus_uconst 0x1100]
.dwattr $C$DW$442, DW_AT_accessibility(DW_ACCESS_public)
.dwattr $C$DW$442, DW_AT_decl_file("/usr/share/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$442, DW_AT_decl_line(0x303)
.dwattr $C$DW$442, DW_AT_decl_column(0x02)
$C$DW$443 .dwtag DW_TAG_member
.dwattr $C$DW$443, DW_AT_type(*$C$DW$T$256)
.dwattr $C$DW$443, DW_AT_name("$P$T66")
.dwattr $C$DW$443, DW_AT_TI_symbol_name("$P$T66")
.dwattr $C$DW$443, DW_AT_data_member_location[DW_OP_plus_uconst 0x1104]
.dwattr $C$DW$443, DW_AT_accessibility(DW_ACCESS_public)
.dwattr $C$DW$443, DW_AT_decl_file("/usr/share/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$443, DW_AT_decl_line(0x30f)
.dwattr $C$DW$443, DW_AT_decl_column(0x02)
$C$DW$444 .dwtag DW_TAG_member
.dwattr $C$DW$444, DW_AT_type(*$C$DW$T$258)
.dwattr $C$DW$444, DW_AT_name("$P$T67")
.dwattr $C$DW$444, DW_AT_TI_symbol_name("$P$T67")
.dwattr $C$DW$444, DW_AT_data_member_location[DW_OP_plus_uconst 0x1108]
.dwattr $C$DW$444, DW_AT_accessibility(DW_ACCESS_public)
.dwattr $C$DW$444, DW_AT_decl_file("/usr/share/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$444, DW_AT_decl_line(0x31b)
.dwattr $C$DW$444, DW_AT_decl_column(0x02)
$C$DW$445 .dwtag DW_TAG_member
.dwattr $C$DW$445, DW_AT_type(*$C$DW$T$260)
.dwattr $C$DW$445, DW_AT_name("$P$T68")
.dwattr $C$DW$445, DW_AT_TI_symbol_name("$P$T68")
.dwattr $C$DW$445, DW_AT_data_member_location[DW_OP_plus_uconst 0x110c]
.dwattr $C$DW$445, DW_AT_accessibility(DW_ACCESS_public)
.dwattr $C$DW$445, DW_AT_decl_file("/usr/share/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$445, DW_AT_decl_line(0x327)
.dwattr $C$DW$445, DW_AT_decl_column(0x02)
$C$DW$446 .dwtag DW_TAG_member
.dwattr $C$DW$446, DW_AT_type(*$C$DW$T$262)
.dwattr $C$DW$446, DW_AT_name("$P$T69")
.dwattr $C$DW$446, DW_AT_TI_symbol_name("$P$T69")
.dwattr $C$DW$446, DW_AT_data_member_location[DW_OP_plus_uconst 0x1110]
.dwattr $C$DW$446, DW_AT_accessibility(DW_ACCESS_public)
.dwattr $C$DW$446, DW_AT_decl_file("/usr/share/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$446, DW_AT_decl_line(0x333)
.dwattr $C$DW$446, DW_AT_decl_column(0x02)
$C$DW$447 .dwtag DW_TAG_member
.dwattr $C$DW$447, DW_AT_type(*$C$DW$T$264)
.dwattr $C$DW$447, DW_AT_name("$P$T70")
.dwattr $C$DW$447, DW_AT_TI_symbol_name("$P$T70")
.dwattr $C$DW$447, DW_AT_data_member_location[DW_OP_plus_uconst 0x1114]
.dwattr $C$DW$447, DW_AT_accessibility(DW_ACCESS_public)
.dwattr $C$DW$447, DW_AT_decl_file("/usr/share/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$447, DW_AT_decl_line(0x33f)
.dwattr $C$DW$447, DW_AT_decl_column(0x02)
$C$DW$448 .dwtag DW_TAG_member
.dwattr $C$DW$448, DW_AT_type(*$C$DW$T$266)
.dwattr $C$DW$448, DW_AT_name("$P$T71")
.dwattr $C$DW$448, DW_AT_TI_symbol_name("$P$T71")
.dwattr $C$DW$448, DW_AT_data_member_location[DW_OP_plus_uconst 0x1118]
.dwattr $C$DW$448, DW_AT_accessibility(DW_ACCESS_public)
.dwattr $C$DW$448, DW_AT_decl_file("/usr/share/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$448, DW_AT_decl_line(0x34b)
.dwattr $C$DW$448, DW_AT_decl_column(0x02)
$C$DW$449 .dwtag DW_TAG_member
.dwattr $C$DW$449, DW_AT_type(*$C$DW$T$268)
.dwattr $C$DW$449, DW_AT_name("$P$T72")
.dwattr $C$DW$449, DW_AT_TI_symbol_name("$P$T72")
.dwattr $C$DW$449, DW_AT_data_member_location[DW_OP_plus_uconst 0x111c]
.dwattr $C$DW$449, DW_AT_accessibility(DW_ACCESS_public)
.dwattr $C$DW$449, DW_AT_decl_file("/usr/share/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$449, DW_AT_decl_line(0x357)
.dwattr $C$DW$449, DW_AT_decl_column(0x02)
$C$DW$450 .dwtag DW_TAG_member
.dwattr $C$DW$450, DW_AT_type(*$C$DW$T$270)
.dwattr $C$DW$450, DW_AT_name("$P$T73")
.dwattr $C$DW$450, DW_AT_TI_symbol_name("$P$T73")
.dwattr $C$DW$450, DW_AT_data_member_location[DW_OP_plus_uconst 0x1120]
.dwattr $C$DW$450, DW_AT_accessibility(DW_ACCESS_public)
.dwattr $C$DW$450, DW_AT_decl_file("/usr/share/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$450, DW_AT_decl_line(0x363)
.dwattr $C$DW$450, DW_AT_decl_column(0x02)
$C$DW$451 .dwtag DW_TAG_member
.dwattr $C$DW$451, DW_AT_type(*$C$DW$T$272)
.dwattr $C$DW$451, DW_AT_name("$P$T74")
.dwattr $C$DW$451, DW_AT_TI_symbol_name("$P$T74")
.dwattr $C$DW$451, DW_AT_data_member_location[DW_OP_plus_uconst 0x1124]
.dwattr $C$DW$451, DW_AT_accessibility(DW_ACCESS_public)
.dwattr $C$DW$451, DW_AT_decl_file("/usr/share/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$451, DW_AT_decl_line(0x36f)
.dwattr $C$DW$451, DW_AT_decl_column(0x02)
$C$DW$452 .dwtag DW_TAG_member
.dwattr $C$DW$452, DW_AT_type(*$C$DW$T$104)
.dwattr $C$DW$452, DW_AT_name("rsvd1128")
.dwattr $C$DW$452, DW_AT_TI_symbol_name("rsvd1128")
.dwattr $C$DW$452, DW_AT_data_member_location[DW_OP_plus_uconst 0x1128]
.dwattr $C$DW$452, DW_AT_accessibility(DW_ACCESS_public)
.dwattr $C$DW$452, DW_AT_decl_file("/usr/share/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$452, DW_AT_decl_line(0x37a)
.dwattr $C$DW$452, DW_AT_decl_column(0x0b)
$C$DW$453 .dwtag DW_TAG_member
.dwattr $C$DW$453, DW_AT_type(*$C$DW$T$274)
.dwattr $C$DW$453, DW_AT_name("$P$T75")
.dwattr $C$DW$453, DW_AT_TI_symbol_name("$P$T75")
.dwattr $C$DW$453, DW_AT_data_member_location[DW_OP_plus_uconst 0x1500]
.dwattr $C$DW$453, DW_AT_accessibility(DW_ACCESS_public)
.dwattr $C$DW$453, DW_AT_decl_file("/usr/share/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$453, DW_AT_decl_line(0x37e)
.dwattr $C$DW$453, DW_AT_decl_column(0x02)
.dwattr $C$DW$T$106, DW_AT_decl_file("/usr/share/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$T$106, DW_AT_decl_line(0x26)
.dwattr $C$DW$T$106, DW_AT_decl_column(0x10)
.dwendtag $C$DW$T$106
$C$DW$T$301 .dwtag DW_TAG_typedef
.dwattr $C$DW$T$301, DW_AT_name("pruIntc")
.dwattr $C$DW$T$301, DW_AT_type(*$C$DW$T$106)
.dwattr $C$DW$T$301, DW_AT_language(DW_LANG_C)
.dwattr $C$DW$T$301, DW_AT_decl_file("/usr/share/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$T$301, DW_AT_decl_line(0x387)
.dwattr $C$DW$T$301, DW_AT_decl_column(0x03)
$C$DW$T$302 .dwtag DW_TAG_volatile_type
.dwattr $C$DW$T$302, DW_AT_type(*$C$DW$T$301)
$C$DW$T$110 .dwtag DW_TAG_structure_type
.dwattr $C$DW$T$110, DW_AT_byte_size(0x1e8)
$C$DW$454 .dwtag DW_TAG_member
.dwattr $C$DW$454, DW_AT_type(*$C$DW$T$107)
.dwattr $C$DW$454, DW_AT_name("timestamp_ns")
.dwattr $C$DW$454, DW_AT_TI_symbol_name("timestamp_ns")
.dwattr $C$DW$454, DW_AT_data_member_location[DW_OP_plus_uconst 0x0]
.dwattr $C$DW$454, DW_AT_accessibility(DW_ACCESS_public)
.dwattr $C$DW$454, DW_AT_decl_file("../pru_common/shared_buffer.h")
.dwattr $C$DW$454, DW_AT_decl_line(0x0e)
.dwattr $C$DW$454, DW_AT_decl_column(0x0c)
$C$DW$455 .dwtag DW_TAG_member
.dwattr $C$DW$455, DW_AT_type(*$C$DW$T$109)
.dwattr $C$DW$455, DW_AT_name("data")
.dwattr $C$DW$455, DW_AT_TI_symbol_name("data")
.dwattr $C$DW$455, DW_AT_data_member_location[DW_OP_plus_uconst 0x8]
.dwattr $C$DW$455, DW_AT_accessibility(DW_ACCESS_public)
.dwattr $C$DW$455, DW_AT_decl_file("../pru_common/shared_buffer.h")
.dwattr $C$DW$455, DW_AT_decl_line(0x0f)
.dwattr $C$DW$455, DW_AT_decl_column(0x0c)
.dwattr $C$DW$T$110, DW_AT_decl_file("../pru_common/shared_buffer.h")
.dwattr $C$DW$T$110, DW_AT_decl_line(0x0d)
.dwattr $C$DW$T$110, DW_AT_decl_column(0x2c)
.dwendtag $C$DW$T$110
$C$DW$T$306 .dwtag DW_TAG_typedef
.dwattr $C$DW$T$306, DW_AT_name("Buffer")
.dwattr $C$DW$T$306, DW_AT_type(*$C$DW$T$110)
.dwattr $C$DW$T$306, DW_AT_language(DW_LANG_C)
.dwattr $C$DW$T$306, DW_AT_decl_file("../pru_common/shared_buffer.h")
.dwattr $C$DW$T$306, DW_AT_decl_line(0x10)
.dwattr $C$DW$T$306, DW_AT_decl_column(0x03)
$C$DW$T$307 .dwtag DW_TAG_volatile_type
.dwattr $C$DW$T$307, DW_AT_type(*$C$DW$T$306)
$C$DW$T$308 .dwtag DW_TAG_pointer_type
.dwattr $C$DW$T$308, DW_AT_type(*$C$DW$T$307)
.dwattr $C$DW$T$308, DW_AT_address_class(0x20)
$C$DW$T$309 .dwtag DW_TAG_const_type
.dwattr $C$DW$T$309, DW_AT_type(*$C$DW$T$308)
$C$DW$T$111 .dwtag DW_TAG_structure_type
.dwattr $C$DW$T$111, DW_AT_byte_size(0x04)
$C$DW$456 .dwtag DW_TAG_member
.dwattr $C$DW$456, DW_AT_type(*$C$DW$T$11)
.dwattr $C$DW$456, DW_AT_name("SOFT_RST_N")
.dwattr $C$DW$456, DW_AT_TI_symbol_name("SOFT_RST_N")
.dwattr $C$DW$456, DW_AT_bit_offset(0x1f)
.dwattr $C$DW$456, DW_AT_bit_size(0x01)
.dwattr $C$DW$456, DW_AT_data_member_location[DW_OP_plus_uconst 0x0]
.dwattr $C$DW$456, DW_AT_accessibility(DW_ACCESS_public)
.dwattr $C$DW$456, DW_AT_decl_file("/usr/share/ti/pru-software-support-package/include/am335x/pru_ctrl.h")
.dwattr $C$DW$456, DW_AT_decl_line(0x2d)
.dwattr $C$DW$456, DW_AT_decl_column(0x0d)
$C$DW$457 .dwtag DW_TAG_member
.dwattr $C$DW$457, DW_AT_type(*$C$DW$T$11)
.dwattr $C$DW$457, DW_AT_name("EN")
.dwattr $C$DW$457, DW_AT_TI_symbol_name("EN")
.dwattr $C$DW$457, DW_AT_bit_offset(0x1e)
.dwattr $C$DW$457, DW_AT_bit_size(0x01)
.dwattr $C$DW$457, DW_AT_data_member_location[DW_OP_plus_uconst 0x0]
.dwattr $C$DW$457, DW_AT_accessibility(DW_ACCESS_public)
.dwattr $C$DW$457, DW_AT_decl_file("/usr/share/ti/pru-software-support-package/include/am335x/pru_ctrl.h")
.dwattr $C$DW$457, DW_AT_decl_line(0x2e)
.dwattr $C$DW$457, DW_AT_decl_column(0x0d)
$C$DW$458 .dwtag DW_TAG_member
.dwattr $C$DW$458, DW_AT_type(*$C$DW$T$11)
.dwattr $C$DW$458, DW_AT_name("SLEEPING")
.dwattr $C$DW$458, DW_AT_TI_symbol_name("SLEEPING")
.dwattr $C$DW$458, DW_AT_bit_offset(0x1d)
.dwattr $C$DW$458, DW_AT_bit_size(0x01)
.dwattr $C$DW$458, DW_AT_data_member_location[DW_OP_plus_uconst 0x0]
.dwattr $C$DW$458, DW_AT_accessibility(DW_ACCESS_public)
.dwattr $C$DW$458, DW_AT_decl_file("/usr/share/ti/pru-software-support-package/include/am335x/pru_ctrl.h")
.dwattr $C$DW$458, DW_AT_decl_line(0x2f)
.dwattr $C$DW$458, DW_AT_decl_column(0x0d)
$C$DW$459 .dwtag DW_TAG_member
.dwattr $C$DW$459, DW_AT_type(*$C$DW$T$11)
.dwattr $C$DW$459, DW_AT_name("CTR_EN")
.dwattr $C$DW$459, DW_AT_TI_symbol_name("CTR_EN")
.dwattr $C$DW$459, DW_AT_bit_offset(0x1c)
.dwattr $C$DW$459, DW_AT_bit_size(0x01)
.dwattr $C$DW$459, DW_AT_data_member_location[DW_OP_plus_uconst 0x0]
.dwattr $C$DW$459, DW_AT_accessibility(DW_ACCESS_public)
.dwattr $C$DW$459, DW_AT_decl_file("/usr/share/ti/pru-software-support-package/include/am335x/pru_ctrl.h")
.dwattr $C$DW$459, DW_AT_decl_line(0x30)
.dwattr $C$DW$459, DW_AT_decl_column(0x0d)
$C$DW$460 .dwtag DW_TAG_member
.dwattr $C$DW$460, DW_AT_type(*$C$DW$T$11)
.dwattr $C$DW$460, DW_AT_name("rsvd4")
.dwattr $C$DW$460, DW_AT_TI_symbol_name("rsvd4")
.dwattr $C$DW$460, DW_AT_bit_offset(0x18)
.dwattr $C$DW$460, DW_AT_bit_size(0x04)
.dwattr $C$DW$460, DW_AT_data_member_location[DW_OP_plus_uconst 0x0]
.dwattr $C$DW$460, DW_AT_accessibility(DW_ACCESS_public)
.dwattr $C$DW$460, DW_AT_decl_file("/usr/share/ti/pru-software-support-package/include/am335x/pru_ctrl.h")
.dwattr $C$DW$460, DW_AT_decl_line(0x31)
.dwattr $C$DW$460, DW_AT_decl_column(0x0d)
$C$DW$461 .dwtag DW_TAG_member
.dwattr $C$DW$461, DW_AT_type(*$C$DW$T$11)
.dwattr $C$DW$461, DW_AT_name("SINGLE_STEP")
.dwattr $C$DW$461, DW_AT_TI_symbol_name("SINGLE_STEP")
.dwattr $C$DW$461, DW_AT_bit_offset(0x17)
.dwattr $C$DW$461, DW_AT_bit_size(0x01)
.dwattr $C$DW$461, DW_AT_data_member_location[DW_OP_plus_uconst 0x0]
.dwattr $C$DW$461, DW_AT_accessibility(DW_ACCESS_public)
.dwattr $C$DW$461, DW_AT_decl_file("/usr/share/ti/pru-software-support-package/include/am335x/pru_ctrl.h")
.dwattr $C$DW$461, DW_AT_decl_line(0x32)
.dwattr $C$DW$461, DW_AT_decl_column(0x0d)
$C$DW$462 .dwtag DW_TAG_member
.dwattr $C$DW$462, DW_AT_type(*$C$DW$T$11)
.dwattr $C$DW$462, DW_AT_name("rsvd9")
.dwattr $C$DW$462, DW_AT_TI_symbol_name("rsvd9")
.dwattr $C$DW$462, DW_AT_bit_offset(0x11)
.dwattr $C$DW$462, DW_AT_bit_size(0x06)
.dwattr $C$DW$462, DW_AT_data_member_location[DW_OP_plus_uconst 0x0]
.dwattr $C$DW$462, DW_AT_accessibility(DW_ACCESS_public)
.dwattr $C$DW$462, DW_AT_decl_file("/usr/share/ti/pru-software-support-package/include/am335x/pru_ctrl.h")
.dwattr $C$DW$462, DW_AT_decl_line(0x33)
.dwattr $C$DW$462, DW_AT_decl_column(0x0d)
$C$DW$463 .dwtag DW_TAG_member
.dwattr $C$DW$463, DW_AT_type(*$C$DW$T$11)
.dwattr $C$DW$463, DW_AT_name("RUNSTATE")
.dwattr $C$DW$463, DW_AT_TI_symbol_name("RUNSTATE")
.dwattr $C$DW$463, DW_AT_bit_offset(0x10)
.dwattr $C$DW$463, DW_AT_bit_size(0x01)
.dwattr $C$DW$463, DW_AT_data_member_location[DW_OP_plus_uconst 0x0]
.dwattr $C$DW$463, DW_AT_accessibility(DW_ACCESS_public)
.dwattr $C$DW$463, DW_AT_decl_file("/usr/share/ti/pru-software-support-package/include/am335x/pru_ctrl.h")
.dwattr $C$DW$463, DW_AT_decl_line(0x34)
.dwattr $C$DW$463, DW_AT_decl_column(0x0d)
$C$DW$464 .dwtag DW_TAG_member
.dwattr $C$DW$464, DW_AT_type(*$C$DW$T$11)
.dwattr $C$DW$464, DW_AT_name("PCTR_RST_VAL")
.dwattr $C$DW$464, DW_AT_TI_symbol_name("PCTR_RST_VAL")
.dwattr $C$DW$464, DW_AT_bit_offset(0x00)
.dwattr $C$DW$464, DW_AT_bit_size(0x10)
.dwattr $C$DW$464, DW_AT_data_member_location[DW_OP_plus_uconst 0x0]
.dwattr $C$DW$464, DW_AT_accessibility(DW_ACCESS_public)
.dwattr $C$DW$464, DW_AT_decl_file("/usr/share/ti/pru-software-support-package/include/am335x/pru_ctrl.h")
.dwattr $C$DW$464, DW_AT_decl_line(0x35)
.dwattr $C$DW$464, DW_AT_decl_column(0x0d)
.dwattr $C$DW$T$111, DW_AT_decl_file("/usr/share/ti/pru-software-support-package/include/am335x/pru_ctrl.h")
.dwattr $C$DW$T$111, DW_AT_decl_line(0x2c)
.dwattr $C$DW$T$111, DW_AT_decl_column(0x13)
.dwendtag $C$DW$T$111
$C$DW$T$275 .dwtag DW_TAG_volatile_type
.dwattr $C$DW$T$275, DW_AT_type(*$C$DW$T$111)
$C$DW$T$112 .dwtag DW_TAG_structure_type
.dwattr $C$DW$T$112, DW_AT_byte_size(0x04)
$C$DW$465 .dwtag DW_TAG_member
.dwattr $C$DW$465, DW_AT_type(*$C$DW$T$11)
.dwattr $C$DW$465, DW_AT_name("PCTR")
.dwattr $C$DW$465, DW_AT_TI_symbol_name("PCTR")
.dwattr $C$DW$465, DW_AT_bit_offset(0x10)
.dwattr $C$DW$465, DW_AT_bit_size(0x10)
.dwattr $C$DW$465, DW_AT_data_member_location[DW_OP_plus_uconst 0x0]
.dwattr $C$DW$465, DW_AT_accessibility(DW_ACCESS_public)
.dwattr $C$DW$465, DW_AT_decl_file("/usr/share/ti/pru-software-support-package/include/am335x/pru_ctrl.h")
.dwattr $C$DW$465, DW_AT_decl_line(0x3f)
.dwattr $C$DW$465, DW_AT_decl_column(0x0d)
$C$DW$466 .dwtag DW_TAG_member
.dwattr $C$DW$466, DW_AT_type(*$C$DW$T$11)
.dwattr $C$DW$466, DW_AT_name("rsvd16")
.dwattr $C$DW$466, DW_AT_TI_symbol_name("rsvd16")
.dwattr $C$DW$466, DW_AT_bit_offset(0x00)
.dwattr $C$DW$466, DW_AT_bit_size(0x10)
.dwattr $C$DW$466, DW_AT_data_member_location[DW_OP_plus_uconst 0x0]
.dwattr $C$DW$466, DW_AT_accessibility(DW_ACCESS_public)
.dwattr $C$DW$466, DW_AT_decl_file("/usr/share/ti/pru-software-support-package/include/am335x/pru_ctrl.h")
.dwattr $C$DW$466, DW_AT_decl_line(0x40)
.dwattr $C$DW$466, DW_AT_decl_column(0x0d)
.dwattr $C$DW$T$112, DW_AT_decl_file("/usr/share/ti/pru-software-support-package/include/am335x/pru_ctrl.h")
.dwattr $C$DW$T$112, DW_AT_decl_line(0x3e)
.dwattr $C$DW$T$112, DW_AT_decl_column(0x13)
.dwendtag $C$DW$T$112
$C$DW$T$277 .dwtag DW_TAG_volatile_type
.dwattr $C$DW$T$277, DW_AT_type(*$C$DW$T$112)
$C$DW$T$113 .dwtag DW_TAG_structure_type
.dwattr $C$DW$T$113, DW_AT_byte_size(0x04)
$C$DW$467 .dwtag DW_TAG_member
.dwattr $C$DW$467, DW_AT_type(*$C$DW$T$11)
.dwattr $C$DW$467, DW_AT_name("BITWISE_ENS")
.dwattr $C$DW$467, DW_AT_TI_symbol_name("BITWISE_ENS")
.dwattr $C$DW$467, DW_AT_bit_offset(0x00)
.dwattr $C$DW$467, DW_AT_bit_size(0x20)
.dwattr $C$DW$467, DW_AT_data_member_location[DW_OP_plus_uconst 0x0]
.dwattr $C$DW$467, DW_AT_accessibility(DW_ACCESS_public)
.dwattr $C$DW$467, DW_AT_decl_file("/usr/share/ti/pru-software-support-package/include/am335x/pru_ctrl.h")
.dwattr $C$DW$467, DW_AT_decl_line(0x4a)
.dwattr $C$DW$467, DW_AT_decl_column(0x0d)
.dwattr $C$DW$T$113, DW_AT_decl_file("/usr/share/ti/pru-software-support-package/include/am335x/pru_ctrl.h")
.dwattr $C$DW$T$113, DW_AT_decl_line(0x49)
.dwattr $C$DW$T$113, DW_AT_decl_column(0x13)
.dwendtag $C$DW$T$113
$C$DW$T$279 .dwtag DW_TAG_volatile_type
.dwattr $C$DW$T$279, DW_AT_type(*$C$DW$T$113)
$C$DW$T$114 .dwtag DW_TAG_structure_type
.dwattr $C$DW$T$114, DW_AT_byte_size(0x04)
$C$DW$468 .dwtag DW_TAG_member
.dwattr $C$DW$468, DW_AT_type(*$C$DW$T$11)
.dwattr $C$DW$468, DW_AT_name("CYCLECOUNT")
.dwattr $C$DW$468, DW_AT_TI_symbol_name("CYCLECOUNT")
.dwattr $C$DW$468, DW_AT_bit_offset(0x00)
.dwattr $C$DW$468, DW_AT_bit_size(0x20)
.dwattr $C$DW$468, DW_AT_data_member_location[DW_OP_plus_uconst 0x0]
.dwattr $C$DW$468, DW_AT_accessibility(DW_ACCESS_public)
.dwattr $C$DW$468, DW_AT_decl_file("/usr/share/ti/pru-software-support-package/include/am335x/pru_ctrl.h")
.dwattr $C$DW$468, DW_AT_decl_line(0x54)
.dwattr $C$DW$468, DW_AT_decl_column(0x0d)
.dwattr $C$DW$T$114, DW_AT_decl_file("/usr/share/ti/pru-software-support-package/include/am335x/pru_ctrl.h")
.dwattr $C$DW$T$114, DW_AT_decl_line(0x53)
.dwattr $C$DW$T$114, DW_AT_decl_column(0x13)
.dwendtag $C$DW$T$114
$C$DW$T$281 .dwtag DW_TAG_volatile_type
.dwattr $C$DW$T$281, DW_AT_type(*$C$DW$T$114)
$C$DW$T$115 .dwtag DW_TAG_structure_type
.dwattr $C$DW$T$115, DW_AT_byte_size(0x04)
$C$DW$469 .dwtag DW_TAG_member
.dwattr $C$DW$469, DW_AT_type(*$C$DW$T$11)
.dwattr $C$DW$469, DW_AT_name("STALLCOUNT")
.dwattr $C$DW$469, DW_AT_TI_symbol_name("STALLCOUNT")
.dwattr $C$DW$469, DW_AT_bit_offset(0x00)
.dwattr $C$DW$469, DW_AT_bit_size(0x20)
.dwattr $C$DW$469, DW_AT_data_member_location[DW_OP_plus_uconst 0x0]
.dwattr $C$DW$469, DW_AT_accessibility(DW_ACCESS_public)
.dwattr $C$DW$469, DW_AT_decl_file("/usr/share/ti/pru-software-support-package/include/am335x/pru_ctrl.h")
.dwattr $C$DW$469, DW_AT_decl_line(0x5e)
.dwattr $C$DW$469, DW_AT_decl_column(0x0d)
.dwattr $C$DW$T$115, DW_AT_decl_file("/usr/share/ti/pru-software-support-package/include/am335x/pru_ctrl.h")
.dwattr $C$DW$T$115, DW_AT_decl_line(0x5d)
.dwattr $C$DW$T$115, DW_AT_decl_column(0x14)
.dwendtag $C$DW$T$115
$C$DW$T$283 .dwtag DW_TAG_volatile_type
.dwattr $C$DW$T$283, DW_AT_type(*$C$DW$T$115)
$C$DW$T$116 .dwtag DW_TAG_structure_type
.dwattr $C$DW$T$116, DW_AT_byte_size(0x04)
$C$DW$470 .dwtag DW_TAG_member
.dwattr $C$DW$470, DW_AT_type(*$C$DW$T$11)
.dwattr $C$DW$470, DW_AT_name("C24_BLK_IDX")
.dwattr $C$DW$470, DW_AT_TI_symbol_name("C24_BLK_IDX")
.dwattr $C$DW$470, DW_AT_bit_offset(0x18)
.dwattr $C$DW$470, DW_AT_bit_size(0x08)
.dwattr $C$DW$470, DW_AT_data_member_location[DW_OP_plus_uconst 0x0]
.dwattr $C$DW$470, DW_AT_accessibility(DW_ACCESS_public)
.dwattr $C$DW$470, DW_AT_decl_file("/usr/share/ti/pru-software-support-package/include/am335x/pru_ctrl.h")
.dwattr $C$DW$470, DW_AT_decl_line(0x6b)
.dwattr $C$DW$470, DW_AT_decl_column(0x0d)
$C$DW$471 .dwtag DW_TAG_member
.dwattr $C$DW$471, DW_AT_type(*$C$DW$T$11)
.dwattr $C$DW$471, DW_AT_name("rsvd8")
.dwattr $C$DW$471, DW_AT_TI_symbol_name("rsvd8")
.dwattr $C$DW$471, DW_AT_bit_offset(0x10)
.dwattr $C$DW$471, DW_AT_bit_size(0x08)
.dwattr $C$DW$471, DW_AT_data_member_location[DW_OP_plus_uconst 0x0]
.dwattr $C$DW$471, DW_AT_accessibility(DW_ACCESS_public)
.dwattr $C$DW$471, DW_AT_decl_file("/usr/share/ti/pru-software-support-package/include/am335x/pru_ctrl.h")
.dwattr $C$DW$471, DW_AT_decl_line(0x6c)
.dwattr $C$DW$471, DW_AT_decl_column(0x0d)
$C$DW$472 .dwtag DW_TAG_member
.dwattr $C$DW$472, DW_AT_type(*$C$DW$T$11)
.dwattr $C$DW$472, DW_AT_name("C25_BLK_IDX")
.dwattr $C$DW$472, DW_AT_TI_symbol_name("C25_BLK_IDX")
.dwattr $C$DW$472, DW_AT_bit_offset(0x08)
.dwattr $C$DW$472, DW_AT_bit_size(0x08)
.dwattr $C$DW$472, DW_AT_data_member_location[DW_OP_plus_uconst 0x0]
.dwattr $C$DW$472, DW_AT_accessibility(DW_ACCESS_public)
.dwattr $C$DW$472, DW_AT_decl_file("/usr/share/ti/pru-software-support-package/include/am335x/pru_ctrl.h")
.dwattr $C$DW$472, DW_AT_decl_line(0x6d)
.dwattr $C$DW$472, DW_AT_decl_column(0x0d)
$C$DW$473 .dwtag DW_TAG_member
.dwattr $C$DW$473, DW_AT_type(*$C$DW$T$11)
.dwattr $C$DW$473, DW_AT_name("rsvd24")
.dwattr $C$DW$473, DW_AT_TI_symbol_name("rsvd24")
.dwattr $C$DW$473, DW_AT_bit_offset(0x00)
.dwattr $C$DW$473, DW_AT_bit_size(0x08)
.dwattr $C$DW$473, DW_AT_data_member_location[DW_OP_plus_uconst 0x0]
.dwattr $C$DW$473, DW_AT_accessibility(DW_ACCESS_public)
.dwattr $C$DW$473, DW_AT_decl_file("/usr/share/ti/pru-software-support-package/include/am335x/pru_ctrl.h")
.dwattr $C$DW$473, DW_AT_decl_line(0x6e)
.dwattr $C$DW$473, DW_AT_decl_column(0x0d)
.dwattr $C$DW$T$116, DW_AT_decl_file("/usr/share/ti/pru-software-support-package/include/am335x/pru_ctrl.h")
.dwattr $C$DW$T$116, DW_AT_decl_line(0x6a)
.dwattr $C$DW$T$116, DW_AT_decl_column(0x13)
.dwendtag $C$DW$T$116
$C$DW$T$285 .dwtag DW_TAG_volatile_type
.dwattr $C$DW$T$285, DW_AT_type(*$C$DW$T$116)
$C$DW$T$117 .dwtag DW_TAG_structure_type
.dwattr $C$DW$T$117, DW_AT_byte_size(0x04)
$C$DW$474 .dwtag DW_TAG_member
.dwattr $C$DW$474, DW_AT_type(*$C$DW$T$11)
.dwattr $C$DW$474, DW_AT_name("C26_BLK_IDX")
.dwattr $C$DW$474, DW_AT_TI_symbol_name("C26_BLK_IDX")
.dwattr $C$DW$474, DW_AT_bit_offset(0x18)
.dwattr $C$DW$474, DW_AT_bit_size(0x08)
.dwattr $C$DW$474, DW_AT_data_member_location[DW_OP_plus_uconst 0x0]
.dwattr $C$DW$474, DW_AT_accessibility(DW_ACCESS_public)
.dwattr $C$DW$474, DW_AT_decl_file("/usr/share/ti/pru-software-support-package/include/am335x/pru_ctrl.h")
.dwattr $C$DW$474, DW_AT_decl_line(0x78)
.dwattr $C$DW$474, DW_AT_decl_column(0x0d)
$C$DW$475 .dwtag DW_TAG_member
.dwattr $C$DW$475, DW_AT_type(*$C$DW$T$11)
.dwattr $C$DW$475, DW_AT_name("rsvd8")
.dwattr $C$DW$475, DW_AT_TI_symbol_name("rsvd8")
.dwattr $C$DW$475, DW_AT_bit_offset(0x10)
.dwattr $C$DW$475, DW_AT_bit_size(0x08)
.dwattr $C$DW$475, DW_AT_data_member_location[DW_OP_plus_uconst 0x0]
.dwattr $C$DW$475, DW_AT_accessibility(DW_ACCESS_public)
.dwattr $C$DW$475, DW_AT_decl_file("/usr/share/ti/pru-software-support-package/include/am335x/pru_ctrl.h")
.dwattr $C$DW$475, DW_AT_decl_line(0x79)
.dwattr $C$DW$475, DW_AT_decl_column(0x0d)
$C$DW$476 .dwtag DW_TAG_member
.dwattr $C$DW$476, DW_AT_type(*$C$DW$T$11)
.dwattr $C$DW$476, DW_AT_name("C27_BLK_IDX")
.dwattr $C$DW$476, DW_AT_TI_symbol_name("C27_BLK_IDX")
.dwattr $C$DW$476, DW_AT_bit_offset(0x08)
.dwattr $C$DW$476, DW_AT_bit_size(0x08)
.dwattr $C$DW$476, DW_AT_data_member_location[DW_OP_plus_uconst 0x0]
.dwattr $C$DW$476, DW_AT_accessibility(DW_ACCESS_public)
.dwattr $C$DW$476, DW_AT_decl_file("/usr/share/ti/pru-software-support-package/include/am335x/pru_ctrl.h")
.dwattr $C$DW$476, DW_AT_decl_line(0x7a)
.dwattr $C$DW$476, DW_AT_decl_column(0x0d)
$C$DW$477 .dwtag DW_TAG_member
.dwattr $C$DW$477, DW_AT_type(*$C$DW$T$11)
.dwattr $C$DW$477, DW_AT_name("rsvd24")
.dwattr $C$DW$477, DW_AT_TI_symbol_name("rsvd24")
.dwattr $C$DW$477, DW_AT_bit_offset(0x00)
.dwattr $C$DW$477, DW_AT_bit_size(0x08)
.dwattr $C$DW$477, DW_AT_data_member_location[DW_OP_plus_uconst 0x0]
.dwattr $C$DW$477, DW_AT_accessibility(DW_ACCESS_public)
.dwattr $C$DW$477, DW_AT_decl_file("/usr/share/ti/pru-software-support-package/include/am335x/pru_ctrl.h")
.dwattr $C$DW$477, DW_AT_decl_line(0x7b)
.dwattr $C$DW$477, DW_AT_decl_column(0x0d)
.dwattr $C$DW$T$117, DW_AT_decl_file("/usr/share/ti/pru-software-support-package/include/am335x/pru_ctrl.h")
.dwattr $C$DW$T$117, DW_AT_decl_line(0x77)
.dwattr $C$DW$T$117, DW_AT_decl_column(0x13)
.dwendtag $C$DW$T$117
$C$DW$T$287 .dwtag DW_TAG_volatile_type
.dwattr $C$DW$T$287, DW_AT_type(*$C$DW$T$117)
$C$DW$T$118 .dwtag DW_TAG_structure_type
.dwattr $C$DW$T$118, DW_AT_byte_size(0x04)
$C$DW$478 .dwtag DW_TAG_member
.dwattr $C$DW$478, DW_AT_type(*$C$DW$T$11)
.dwattr $C$DW$478, DW_AT_name("C28_BLK_POINTER")
.dwattr $C$DW$478, DW_AT_TI_symbol_name("C28_BLK_POINTER")
.dwattr $C$DW$478, DW_AT_bit_offset(0x10)
.dwattr $C$DW$478, DW_AT_bit_size(0x10)
.dwattr $C$DW$478, DW_AT_data_member_location[DW_OP_plus_uconst 0x0]
.dwattr $C$DW$478, DW_AT_accessibility(DW_ACCESS_public)
.dwattr $C$DW$478, DW_AT_decl_file("/usr/share/ti/pru-software-support-package/include/am335x/pru_ctrl.h")
.dwattr $C$DW$478, DW_AT_decl_line(0x85)
.dwattr $C$DW$478, DW_AT_decl_column(0x0d)
$C$DW$479 .dwtag DW_TAG_member
.dwattr $C$DW$479, DW_AT_type(*$C$DW$T$11)
.dwattr $C$DW$479, DW_AT_name("C29_BLK_POINTER")
.dwattr $C$DW$479, DW_AT_TI_symbol_name("C29_BLK_POINTER")
.dwattr $C$DW$479, DW_AT_bit_offset(0x00)
.dwattr $C$DW$479, DW_AT_bit_size(0x10)
.dwattr $C$DW$479, DW_AT_data_member_location[DW_OP_plus_uconst 0x0]
.dwattr $C$DW$479, DW_AT_accessibility(DW_ACCESS_public)
.dwattr $C$DW$479, DW_AT_decl_file("/usr/share/ti/pru-software-support-package/include/am335x/pru_ctrl.h")
.dwattr $C$DW$479, DW_AT_decl_line(0x86)
.dwattr $C$DW$479, DW_AT_decl_column(0x0d)
.dwattr $C$DW$T$118, DW_AT_decl_file("/usr/share/ti/pru-software-support-package/include/am335x/pru_ctrl.h")
.dwattr $C$DW$T$118, DW_AT_decl_line(0x84)
.dwattr $C$DW$T$118, DW_AT_decl_column(0x13)
.dwendtag $C$DW$T$118
$C$DW$T$289 .dwtag DW_TAG_volatile_type
.dwattr $C$DW$T$289, DW_AT_type(*$C$DW$T$118)
$C$DW$T$119 .dwtag DW_TAG_structure_type
.dwattr $C$DW$T$119, DW_AT_byte_size(0x04)
$C$DW$480 .dwtag DW_TAG_member
.dwattr $C$DW$480, DW_AT_type(*$C$DW$T$11)
.dwattr $C$DW$480, DW_AT_name("C30_BLK_POINTER")
.dwattr $C$DW$480, DW_AT_TI_symbol_name("C30_BLK_POINTER")
.dwattr $C$DW$480, DW_AT_bit_offset(0x10)
.dwattr $C$DW$480, DW_AT_bit_size(0x10)
.dwattr $C$DW$480, DW_AT_data_member_location[DW_OP_plus_uconst 0x0]
.dwattr $C$DW$480, DW_AT_accessibility(DW_ACCESS_public)
.dwattr $C$DW$480, DW_AT_decl_file("/usr/share/ti/pru-software-support-package/include/am335x/pru_ctrl.h")
.dwattr $C$DW$480, DW_AT_decl_line(0x90)
.dwattr $C$DW$480, DW_AT_decl_column(0x0d)
$C$DW$481 .dwtag DW_TAG_member
.dwattr $C$DW$481, DW_AT_type(*$C$DW$T$11)
.dwattr $C$DW$481, DW_AT_name("C31_BLK_POINTER")
.dwattr $C$DW$481, DW_AT_TI_symbol_name("C31_BLK_POINTER")
.dwattr $C$DW$481, DW_AT_bit_offset(0x00)
.dwattr $C$DW$481, DW_AT_bit_size(0x10)
.dwattr $C$DW$481, DW_AT_data_member_location[DW_OP_plus_uconst 0x0]
.dwattr $C$DW$481, DW_AT_accessibility(DW_ACCESS_public)
.dwattr $C$DW$481, DW_AT_decl_file("/usr/share/ti/pru-software-support-package/include/am335x/pru_ctrl.h")
.dwattr $C$DW$481, DW_AT_decl_line(0x91)
.dwattr $C$DW$481, DW_AT_decl_column(0x0d)
.dwattr $C$DW$T$119, DW_AT_decl_file("/usr/share/ti/pru-software-support-package/include/am335x/pru_ctrl.h")
.dwattr $C$DW$T$119, DW_AT_decl_line(0x8f)
.dwattr $C$DW$T$119, DW_AT_decl_column(0x13)
.dwendtag $C$DW$T$119
$C$DW$T$291 .dwtag DW_TAG_volatile_type
.dwattr $C$DW$T$291, DW_AT_type(*$C$DW$T$119)
$C$DW$T$121 .dwtag DW_TAG_structure_type
.dwattr $C$DW$T$121, DW_AT_byte_size(0x30)
$C$DW$482 .dwtag DW_TAG_member
.dwattr $C$DW$482, DW_AT_type(*$C$DW$T$276)
.dwattr $C$DW$482, DW_AT_name("$P$T76")
.dwattr $C$DW$482, DW_AT_TI_symbol_name("$P$T76")
.dwattr $C$DW$482, DW_AT_data_member_location[DW_OP_plus_uconst 0x0]
.dwattr $C$DW$482, DW_AT_accessibility(DW_ACCESS_public)
.dwattr $C$DW$482, DW_AT_decl_file("/usr/share/ti/pru-software-support-package/include/am335x/pru_ctrl.h")
.dwattr $C$DW$482, DW_AT_decl_line(0x29)
.dwattr $C$DW$482, DW_AT_decl_column(0x02)
$C$DW$483 .dwtag DW_TAG_member
.dwattr $C$DW$483, DW_AT_type(*$C$DW$T$278)
.dwattr $C$DW$483, DW_AT_name("$P$T77")
.dwattr $C$DW$483, DW_AT_TI_symbol_name("$P$T77")
.dwattr $C$DW$483, DW_AT_data_member_location[DW_OP_plus_uconst 0x4]
.dwattr $C$DW$483, DW_AT_accessibility(DW_ACCESS_public)
.dwattr $C$DW$483, DW_AT_decl_file("/usr/share/ti/pru-software-support-package/include/am335x/pru_ctrl.h")
.dwattr $C$DW$483, DW_AT_decl_line(0x3b)
.dwattr $C$DW$483, DW_AT_decl_column(0x02)
$C$DW$484 .dwtag DW_TAG_member
.dwattr $C$DW$484, DW_AT_type(*$C$DW$T$280)
.dwattr $C$DW$484, DW_AT_name("$P$T78")
.dwattr $C$DW$484, DW_AT_TI_symbol_name("$P$T78")
.dwattr $C$DW$484, DW_AT_data_member_location[DW_OP_plus_uconst 0x8]
.dwattr $C$DW$484, DW_AT_accessibility(DW_ACCESS_public)
.dwattr $C$DW$484, DW_AT_decl_file("/usr/share/ti/pru-software-support-package/include/am335x/pru_ctrl.h")
.dwattr $C$DW$484, DW_AT_decl_line(0x46)
.dwattr $C$DW$484, DW_AT_decl_column(0x02)
$C$DW$485 .dwtag DW_TAG_member
.dwattr $C$DW$485, DW_AT_type(*$C$DW$T$282)
.dwattr $C$DW$485, DW_AT_name("$P$T79")
.dwattr $C$DW$485, DW_AT_TI_symbol_name("$P$T79")
.dwattr $C$DW$485, DW_AT_data_member_location[DW_OP_plus_uconst 0xc]
.dwattr $C$DW$485, DW_AT_accessibility(DW_ACCESS_public)
.dwattr $C$DW$485, DW_AT_decl_file("/usr/share/ti/pru-software-support-package/include/am335x/pru_ctrl.h")
.dwattr $C$DW$485, DW_AT_decl_line(0x50)
.dwattr $C$DW$485, DW_AT_decl_column(0x02)
$C$DW$486 .dwtag DW_TAG_member
.dwattr $C$DW$486, DW_AT_type(*$C$DW$T$284)
.dwattr $C$DW$486, DW_AT_name("$P$T80")
.dwattr $C$DW$486, DW_AT_TI_symbol_name("$P$T80")
.dwattr $C$DW$486, DW_AT_data_member_location[DW_OP_plus_uconst 0x10]
.dwattr $C$DW$486, DW_AT_accessibility(DW_ACCESS_public)
.dwattr $C$DW$486, DW_AT_decl_file("/usr/share/ti/pru-software-support-package/include/am335x/pru_ctrl.h")
.dwattr $C$DW$486, DW_AT_decl_line(0x5a)
.dwattr $C$DW$486, DW_AT_decl_column(0x02)
$C$DW$487 .dwtag DW_TAG_member
.dwattr $C$DW$487, DW_AT_type(*$C$DW$T$120)
.dwattr $C$DW$487, DW_AT_name("rsvd14")
.dwattr $C$DW$487, DW_AT_TI_symbol_name("rsvd14")
.dwattr $C$DW$487, DW_AT_data_member_location[DW_OP_plus_uconst 0x14]
.dwattr $C$DW$487, DW_AT_accessibility(DW_ACCESS_public)
.dwattr $C$DW$487, DW_AT_decl_file("/usr/share/ti/pru-software-support-package/include/am335x/pru_ctrl.h")
.dwattr $C$DW$487, DW_AT_decl_line(0x63)
.dwattr $C$DW$487, DW_AT_decl_column(0x0b)
$C$DW$488 .dwtag DW_TAG_member
.dwattr $C$DW$488, DW_AT_type(*$C$DW$T$286)
.dwattr $C$DW$488, DW_AT_name("$P$T81")
.dwattr $C$DW$488, DW_AT_TI_symbol_name("$P$T81")
.dwattr $C$DW$488, DW_AT_data_member_location[DW_OP_plus_uconst 0x20]
.dwattr $C$DW$488, DW_AT_accessibility(DW_ACCESS_public)
.dwattr $C$DW$488, DW_AT_decl_file("/usr/share/ti/pru-software-support-package/include/am335x/pru_ctrl.h")
.dwattr $C$DW$488, DW_AT_decl_line(0x67)
.dwattr $C$DW$488, DW_AT_decl_column(0x02)
$C$DW$489 .dwtag DW_TAG_member
.dwattr $C$DW$489, DW_AT_type(*$C$DW$T$288)
.dwattr $C$DW$489, DW_AT_name("$P$T82")
.dwattr $C$DW$489, DW_AT_TI_symbol_name("$P$T82")
.dwattr $C$DW$489, DW_AT_data_member_location[DW_OP_plus_uconst 0x24]
.dwattr $C$DW$489, DW_AT_accessibility(DW_ACCESS_public)
.dwattr $C$DW$489, DW_AT_decl_file("/usr/share/ti/pru-software-support-package/include/am335x/pru_ctrl.h")
.dwattr $C$DW$489, DW_AT_decl_line(0x74)
.dwattr $C$DW$489, DW_AT_decl_column(0x02)
$C$DW$490 .dwtag DW_TAG_member
.dwattr $C$DW$490, DW_AT_type(*$C$DW$T$290)
.dwattr $C$DW$490, DW_AT_name("$P$T83")
.dwattr $C$DW$490, DW_AT_TI_symbol_name("$P$T83")
.dwattr $C$DW$490, DW_AT_data_member_location[DW_OP_plus_uconst 0x28]
.dwattr $C$DW$490, DW_AT_accessibility(DW_ACCESS_public)
.dwattr $C$DW$490, DW_AT_decl_file("/usr/share/ti/pru-software-support-package/include/am335x/pru_ctrl.h")
.dwattr $C$DW$490, DW_AT_decl_line(0x81)
.dwattr $C$DW$490, DW_AT_decl_column(0x02)
$C$DW$491 .dwtag DW_TAG_member
.dwattr $C$DW$491, DW_AT_type(*$C$DW$T$292)
.dwattr $C$DW$491, DW_AT_name("$P$T84")
.dwattr $C$DW$491, DW_AT_TI_symbol_name("$P$T84")
.dwattr $C$DW$491, DW_AT_data_member_location[DW_OP_plus_uconst 0x2c]
.dwattr $C$DW$491, DW_AT_accessibility(DW_ACCESS_public)
.dwattr $C$DW$491, DW_AT_decl_file("/usr/share/ti/pru-software-support-package/include/am335x/pru_ctrl.h")
.dwattr $C$DW$491, DW_AT_decl_line(0x8c)
.dwattr $C$DW$491, DW_AT_decl_column(0x02)
.dwattr $C$DW$T$121, DW_AT_decl_file("/usr/share/ti/pru-software-support-package/include/am335x/pru_ctrl.h")
.dwattr $C$DW$T$121, DW_AT_decl_line(0x26)
.dwattr $C$DW$T$121, DW_AT_decl_column(0x10)
.dwendtag $C$DW$T$121
$C$DW$T$310 .dwtag DW_TAG_typedef
.dwattr $C$DW$T$310, DW_AT_name("pruCtrl")
.dwattr $C$DW$T$310, DW_AT_type(*$C$DW$T$121)
.dwattr $C$DW$T$310, DW_AT_language(DW_LANG_C)
.dwattr $C$DW$T$310, DW_AT_decl_file("/usr/share/ti/pru-software-support-package/include/am335x/pru_ctrl.h")
.dwattr $C$DW$T$310, DW_AT_decl_line(0x95)
.dwattr $C$DW$T$310, DW_AT_decl_column(0x03)
$C$DW$T$124 .dwtag DW_TAG_union_type
.dwattr $C$DW$T$124, DW_AT_byte_size(0x04)
$C$DW$492 .dwtag DW_TAG_member
.dwattr $C$DW$492, DW_AT_type(*$C$DW$T$122)
.dwattr $C$DW$492, DW_AT_name("REVID")
.dwattr $C$DW$492, DW_AT_TI_symbol_name("REVID")
.dwattr $C$DW$492, DW_AT_data_member_location[DW_OP_plus_uconst 0x0]
.dwattr $C$DW$492, DW_AT_accessibility(DW_ACCESS_public)
.dwattr $C$DW$492, DW_AT_decl_file("/usr/share/ti/pru-software-support-package/include/am335x/pru_cfg.h")
.dwattr $C$DW$492, DW_AT_decl_line(0x2a)
.dwattr $C$DW$492, DW_AT_decl_column(0x15)
$C$DW$493 .dwtag DW_TAG_member
.dwattr $C$DW$493, DW_AT_type(*$C$DW$T$123)
.dwattr $C$DW$493, DW_AT_name("REVID_bit")
.dwattr $C$DW$493, DW_AT_TI_symbol_name("REVID_bit")
.dwattr $C$DW$493, DW_AT_data_member_location[DW_OP_plus_uconst 0x0]
.dwattr $C$DW$493, DW_AT_accessibility(DW_ACCESS_public)
.dwattr $C$DW$493, DW_AT_decl_file("/usr/share/ti/pru-software-support-package/include/am335x/pru_cfg.h")
.dwattr $C$DW$493, DW_AT_decl_line(0x2e)
.dwattr $C$DW$493, DW_AT_decl_column(0x05)
.dwattr $C$DW$T$124, DW_AT_decl_file("/usr/share/ti/pru-software-support-package/include/am335x/pru_cfg.h")
.dwattr $C$DW$T$124, DW_AT_decl_line(0x29)
.dwattr $C$DW$T$124, DW_AT_decl_column(0x08)
.dwendtag $C$DW$T$124
$C$DW$T$126 .dwtag DW_TAG_union_type
.dwattr $C$DW$T$126, DW_AT_byte_size(0x04)
$C$DW$494 .dwtag DW_TAG_member
.dwattr $C$DW$494, DW_AT_type(*$C$DW$T$122)
.dwattr $C$DW$494, DW_AT_name("SYSCFG")
.dwattr $C$DW$494, DW_AT_TI_symbol_name("SYSCFG")
.dwattr $C$DW$494, DW_AT_data_member_location[DW_OP_plus_uconst 0x0]
.dwattr $C$DW$494, DW_AT_accessibility(DW_ACCESS_public)
.dwattr $C$DW$494, DW_AT_decl_file("/usr/share/ti/pru-software-support-package/include/am335x/pru_cfg.h")
.dwattr $C$DW$494, DW_AT_decl_line(0x34)
.dwattr $C$DW$494, DW_AT_decl_column(0x15)
$C$DW$495 .dwtag DW_TAG_member
.dwattr $C$DW$495, DW_AT_type(*$C$DW$T$125)
.dwattr $C$DW$495, DW_AT_name("SYSCFG_bit")
.dwattr $C$DW$495, DW_AT_TI_symbol_name("SYSCFG_bit")
.dwattr $C$DW$495, DW_AT_data_member_location[DW_OP_plus_uconst 0x0]
.dwattr $C$DW$495, DW_AT_accessibility(DW_ACCESS_public)
.dwattr $C$DW$495, DW_AT_decl_file("/usr/share/ti/pru-software-support-package/include/am335x/pru_cfg.h")
.dwattr $C$DW$495, DW_AT_decl_line(0x3c)
.dwattr $C$DW$495, DW_AT_decl_column(0x05)
.dwattr $C$DW$T$126, DW_AT_decl_file("/usr/share/ti/pru-software-support-package/include/am335x/pru_cfg.h")
.dwattr $C$DW$T$126, DW_AT_decl_line(0x33)
.dwattr $C$DW$T$126, DW_AT_decl_column(0x08)
.dwendtag $C$DW$T$126
$C$DW$T$128 .dwtag DW_TAG_union_type
.dwattr $C$DW$T$128, DW_AT_byte_size(0x04)
$C$DW$496 .dwtag DW_TAG_member
.dwattr $C$DW$496, DW_AT_type(*$C$DW$T$122)
.dwattr $C$DW$496, DW_AT_name("GPCFG0")
.dwattr $C$DW$496, DW_AT_TI_symbol_name("GPCFG0")
.dwattr $C$DW$496, DW_AT_data_member_location[DW_OP_plus_uconst 0x0]
.dwattr $C$DW$496, DW_AT_accessibility(DW_ACCESS_public)
.dwattr $C$DW$496, DW_AT_decl_file("/usr/share/ti/pru-software-support-package/include/am335x/pru_cfg.h")
.dwattr $C$DW$496, DW_AT_decl_line(0x42)
.dwattr $C$DW$496, DW_AT_decl_column(0x15)
$C$DW$497 .dwtag DW_TAG_member
.dwattr $C$DW$497, DW_AT_type(*$C$DW$T$127)
.dwattr $C$DW$497, DW_AT_name("GPCFG0_bit")
.dwattr $C$DW$497, DW_AT_TI_symbol_name("GPCFG0_bit")
.dwattr $C$DW$497, DW_AT_data_member_location[DW_OP_plus_uconst 0x0]
.dwattr $C$DW$497, DW_AT_accessibility(DW_ACCESS_public)
.dwattr $C$DW$497, DW_AT_decl_file("/usr/share/ti/pru-software-support-package/include/am335x/pru_cfg.h")
.dwattr $C$DW$497, DW_AT_decl_line(0x4f)
.dwattr $C$DW$497, DW_AT_decl_column(0x05)
.dwattr $C$DW$T$128, DW_AT_decl_file("/usr/share/ti/pru-software-support-package/include/am335x/pru_cfg.h")
.dwattr $C$DW$T$128, DW_AT_decl_line(0x41)
.dwattr $C$DW$T$128, DW_AT_decl_column(0x08)
.dwendtag $C$DW$T$128
$C$DW$T$130 .dwtag DW_TAG_union_type
.dwattr $C$DW$T$130, DW_AT_byte_size(0x04)
$C$DW$498 .dwtag DW_TAG_member
.dwattr $C$DW$498, DW_AT_type(*$C$DW$T$122)
.dwattr $C$DW$498, DW_AT_name("GPCFG1")
.dwattr $C$DW$498, DW_AT_TI_symbol_name("GPCFG1")
.dwattr $C$DW$498, DW_AT_data_member_location[DW_OP_plus_uconst 0x0]
.dwattr $C$DW$498, DW_AT_accessibility(DW_ACCESS_public)
.dwattr $C$DW$498, DW_AT_decl_file("/usr/share/ti/pru-software-support-package/include/am335x/pru_cfg.h")
.dwattr $C$DW$498, DW_AT_decl_line(0x55)
.dwattr $C$DW$498, DW_AT_decl_column(0x15)
$C$DW$499 .dwtag DW_TAG_member
.dwattr $C$DW$499, DW_AT_type(*$C$DW$T$129)
.dwattr $C$DW$499, DW_AT_name("GPCFG1_bit")
.dwattr $C$DW$499, DW_AT_TI_symbol_name("GPCFG1_bit")
.dwattr $C$DW$499, DW_AT_data_member_location[DW_OP_plus_uconst 0x0]
.dwattr $C$DW$499, DW_AT_accessibility(DW_ACCESS_public)
.dwattr $C$DW$499, DW_AT_decl_file("/usr/share/ti/pru-software-support-package/include/am335x/pru_cfg.h")
.dwattr $C$DW$499, DW_AT_decl_line(0x62)
.dwattr $C$DW$499, DW_AT_decl_column(0x05)
.dwattr $C$DW$T$130, DW_AT_decl_file("/usr/share/ti/pru-software-support-package/include/am335x/pru_cfg.h")
.dwattr $C$DW$T$130, DW_AT_decl_line(0x54)
.dwattr $C$DW$T$130, DW_AT_decl_column(0x08)
.dwendtag $C$DW$T$130
$C$DW$T$132 .dwtag DW_TAG_union_type
.dwattr $C$DW$T$132, DW_AT_byte_size(0x04)
$C$DW$500 .dwtag DW_TAG_member
.dwattr $C$DW$500, DW_AT_type(*$C$DW$T$122)
.dwattr $C$DW$500, DW_AT_name("CGR")
.dwattr $C$DW$500, DW_AT_TI_symbol_name("CGR")
.dwattr $C$DW$500, DW_AT_data_member_location[DW_OP_plus_uconst 0x0]
.dwattr $C$DW$500, DW_AT_accessibility(DW_ACCESS_public)
.dwattr $C$DW$500, DW_AT_decl_file("/usr/share/ti/pru-software-support-package/include/am335x/pru_cfg.h")
.dwattr $C$DW$500, DW_AT_decl_line(0x68)
.dwattr $C$DW$500, DW_AT_decl_column(0x15)
$C$DW$501 .dwtag DW_TAG_member
.dwattr $C$DW$501, DW_AT_type(*$C$DW$T$131)
.dwattr $C$DW$501, DW_AT_name("CGR_bit")
.dwattr $C$DW$501, DW_AT_TI_symbol_name("CGR_bit")
.dwattr $C$DW$501, DW_AT_data_member_location[DW_OP_plus_uconst 0x0]
.dwattr $C$DW$501, DW_AT_accessibility(DW_ACCESS_public)
.dwattr $C$DW$501, DW_AT_decl_file("/usr/share/ti/pru-software-support-package/include/am335x/pru_cfg.h")
.dwattr $C$DW$501, DW_AT_decl_line(0x7e)
.dwattr $C$DW$501, DW_AT_decl_column(0x05)
.dwattr $C$DW$T$132, DW_AT_decl_file("/usr/share/ti/pru-software-support-package/include/am335x/pru_cfg.h")
.dwattr $C$DW$T$132, DW_AT_decl_line(0x67)
.dwattr $C$DW$T$132, DW_AT_decl_column(0x08)
.dwendtag $C$DW$T$132
$C$DW$T$134 .dwtag DW_TAG_union_type
.dwattr $C$DW$T$134, DW_AT_byte_size(0x04)
$C$DW$502 .dwtag DW_TAG_member
.dwattr $C$DW$502, DW_AT_type(*$C$DW$T$122)
.dwattr $C$DW$502, DW_AT_name("ISRP")
.dwattr $C$DW$502, DW_AT_TI_symbol_name("ISRP")
.dwattr $C$DW$502, DW_AT_data_member_location[DW_OP_plus_uconst 0x0]
.dwattr $C$DW$502, DW_AT_accessibility(DW_ACCESS_public)
.dwattr $C$DW$502, DW_AT_decl_file("/usr/share/ti/pru-software-support-package/include/am335x/pru_cfg.h")
.dwattr $C$DW$502, DW_AT_decl_line(0x84)
.dwattr $C$DW$502, DW_AT_decl_column(0x15)
$C$DW$503 .dwtag DW_TAG_member
.dwattr $C$DW$503, DW_AT_type(*$C$DW$T$133)
.dwattr $C$DW$503, DW_AT_name("ISRP_bit")
.dwattr $C$DW$503, DW_AT_TI_symbol_name("ISRP_bit")
.dwattr $C$DW$503, DW_AT_data_member_location[DW_OP_plus_uconst 0x0]
.dwattr $C$DW$503, DW_AT_accessibility(DW_ACCESS_public)
.dwattr $C$DW$503, DW_AT_decl_file("/usr/share/ti/pru-software-support-package/include/am335x/pru_cfg.h")
.dwattr $C$DW$503, DW_AT_decl_line(0x8d)
.dwattr $C$DW$503, DW_AT_decl_column(0x05)
.dwattr $C$DW$T$134, DW_AT_decl_file("/usr/share/ti/pru-software-support-package/include/am335x/pru_cfg.h")
.dwattr $C$DW$T$134, DW_AT_decl_line(0x83)
.dwattr $C$DW$T$134, DW_AT_decl_column(0x08)
.dwendtag $C$DW$T$134
$C$DW$T$136 .dwtag DW_TAG_union_type
.dwattr $C$DW$T$136, DW_AT_byte_size(0x04)
$C$DW$504 .dwtag DW_TAG_member
.dwattr $C$DW$504, DW_AT_type(*$C$DW$T$122)
.dwattr $C$DW$504, DW_AT_name("ISP")
.dwattr $C$DW$504, DW_AT_TI_symbol_name("ISP")
.dwattr $C$DW$504, DW_AT_data_member_location[DW_OP_plus_uconst 0x0]
.dwattr $C$DW$504, DW_AT_accessibility(DW_ACCESS_public)
.dwattr $C$DW$504, DW_AT_decl_file("/usr/share/ti/pru-software-support-package/include/am335x/pru_cfg.h")
.dwattr $C$DW$504, DW_AT_decl_line(0x93)
.dwattr $C$DW$504, DW_AT_decl_column(0x15)
$C$DW$505 .dwtag DW_TAG_member
.dwattr $C$DW$505, DW_AT_type(*$C$DW$T$135)
.dwattr $C$DW$505, DW_AT_name("ISP_bit")
.dwattr $C$DW$505, DW_AT_TI_symbol_name("ISP_bit")
.dwattr $C$DW$505, DW_AT_data_member_location[DW_OP_plus_uconst 0x0]
.dwattr $C$DW$505, DW_AT_accessibility(DW_ACCESS_public)
.dwattr $C$DW$505, DW_AT_decl_file("/usr/share/ti/pru-software-support-package/include/am335x/pru_cfg.h")
.dwattr $C$DW$505, DW_AT_decl_line(0x9c)
.dwattr $C$DW$505, DW_AT_decl_column(0x05)
.dwattr $C$DW$T$136, DW_AT_decl_file("/usr/share/ti/pru-software-support-package/include/am335x/pru_cfg.h")
.dwattr $C$DW$T$136, DW_AT_decl_line(0x92)
.dwattr $C$DW$T$136, DW_AT_decl_column(0x08)
.dwendtag $C$DW$T$136
$C$DW$T$138 .dwtag DW_TAG_union_type
.dwattr $C$DW$T$138, DW_AT_byte_size(0x04)
$C$DW$506 .dwtag DW_TAG_member
.dwattr $C$DW$506, DW_AT_type(*$C$DW$T$122)
.dwattr $C$DW$506, DW_AT_name("IESP")
.dwattr $C$DW$506, DW_AT_TI_symbol_name("IESP")
.dwattr $C$DW$506, DW_AT_data_member_location[DW_OP_plus_uconst 0x0]
.dwattr $C$DW$506, DW_AT_accessibility(DW_ACCESS_public)
.dwattr $C$DW$506, DW_AT_decl_file("/usr/share/ti/pru-software-support-package/include/am335x/pru_cfg.h")
.dwattr $C$DW$506, DW_AT_decl_line(0xa1)
.dwattr $C$DW$506, DW_AT_decl_column(0x15)
$C$DW$507 .dwtag DW_TAG_member
.dwattr $C$DW$507, DW_AT_type(*$C$DW$T$137)
.dwattr $C$DW$507, DW_AT_name("IESP_bit")
.dwattr $C$DW$507, DW_AT_TI_symbol_name("IESP_bit")
.dwattr $C$DW$507, DW_AT_data_member_location[DW_OP_plus_uconst 0x0]
.dwattr $C$DW$507, DW_AT_accessibility(DW_ACCESS_public)
.dwattr $C$DW$507, DW_AT_decl_file("/usr/share/ti/pru-software-support-package/include/am335x/pru_cfg.h")
.dwattr $C$DW$507, DW_AT_decl_line(0xaa)
.dwattr $C$DW$507, DW_AT_decl_column(0x05)
.dwattr $C$DW$T$138, DW_AT_decl_file("/usr/share/ti/pru-software-support-package/include/am335x/pru_cfg.h")
.dwattr $C$DW$T$138, DW_AT_decl_line(0xa0)
.dwattr $C$DW$T$138, DW_AT_decl_column(0x08)
.dwendtag $C$DW$T$138
$C$DW$T$140 .dwtag DW_TAG_union_type
.dwattr $C$DW$T$140, DW_AT_byte_size(0x04)
$C$DW$508 .dwtag DW_TAG_member
.dwattr $C$DW$508, DW_AT_type(*$C$DW$T$122)
.dwattr $C$DW$508, DW_AT_name("IECP")
.dwattr $C$DW$508, DW_AT_TI_symbol_name("IECP")
.dwattr $C$DW$508, DW_AT_data_member_location[DW_OP_plus_uconst 0x0]
.dwattr $C$DW$508, DW_AT_accessibility(DW_ACCESS_public)
.dwattr $C$DW$508, DW_AT_decl_file("/usr/share/ti/pru-software-support-package/include/am335x/pru_cfg.h")
.dwattr $C$DW$508, DW_AT_decl_line(0xb0)
.dwattr $C$DW$508, DW_AT_decl_column(0x15)
$C$DW$509 .dwtag DW_TAG_member
.dwattr $C$DW$509, DW_AT_type(*$C$DW$T$139)
.dwattr $C$DW$509, DW_AT_name("IECP_bit")
.dwattr $C$DW$509, DW_AT_TI_symbol_name("IECP_bit")
.dwattr $C$DW$509, DW_AT_data_member_location[DW_OP_plus_uconst 0x0]
.dwattr $C$DW$509, DW_AT_accessibility(DW_ACCESS_public)
.dwattr $C$DW$509, DW_AT_decl_file("/usr/share/ti/pru-software-support-package/include/am335x/pru_cfg.h")
.dwattr $C$DW$509, DW_AT_decl_line(0xb8)
.dwattr $C$DW$509, DW_AT_decl_column(0x05)
.dwattr $C$DW$T$140, DW_AT_decl_file("/usr/share/ti/pru-software-support-package/include/am335x/pru_cfg.h")
.dwattr $C$DW$T$140, DW_AT_decl_line(0xaf)
.dwattr $C$DW$T$140, DW_AT_decl_column(0x08)
.dwendtag $C$DW$T$140
$C$DW$T$142 .dwtag DW_TAG_union_type
.dwattr $C$DW$T$142, DW_AT_byte_size(0x04)
$C$DW$510 .dwtag DW_TAG_member
.dwattr $C$DW$510, DW_AT_type(*$C$DW$T$122)
.dwattr $C$DW$510, DW_AT_name("PMAO")
.dwattr $C$DW$510, DW_AT_TI_symbol_name("PMAO")
.dwattr $C$DW$510, DW_AT_data_member_location[DW_OP_plus_uconst 0x0]
.dwattr $C$DW$510, DW_AT_accessibility(DW_ACCESS_public)
.dwattr $C$DW$510, DW_AT_decl_file("/usr/share/ti/pru-software-support-package/include/am335x/pru_cfg.h")
.dwattr $C$DW$510, DW_AT_decl_line(0xc1)
.dwattr $C$DW$510, DW_AT_decl_column(0x15)
$C$DW$511 .dwtag DW_TAG_member
.dwattr $C$DW$511, DW_AT_type(*$C$DW$T$141)
.dwattr $C$DW$511, DW_AT_name("PMAO_bit")
.dwattr $C$DW$511, DW_AT_TI_symbol_name("PMAO_bit")
.dwattr $C$DW$511, DW_AT_data_member_location[DW_OP_plus_uconst 0x0]
.dwattr $C$DW$511, DW_AT_accessibility(DW_ACCESS_public)
.dwattr $C$DW$511, DW_AT_decl_file("/usr/share/ti/pru-software-support-package/include/am335x/pru_cfg.h")
.dwattr $C$DW$511, DW_AT_decl_line(0xc7)
.dwattr $C$DW$511, DW_AT_decl_column(0x05)
.dwattr $C$DW$T$142, DW_AT_decl_file("/usr/share/ti/pru-software-support-package/include/am335x/pru_cfg.h")
.dwattr $C$DW$T$142, DW_AT_decl_line(0xc0)
.dwattr $C$DW$T$142, DW_AT_decl_column(0x08)
.dwendtag $C$DW$T$142
$C$DW$T$144 .dwtag DW_TAG_union_type
.dwattr $C$DW$T$144, DW_AT_byte_size(0x04)
$C$DW$512 .dwtag DW_TAG_member
.dwattr $C$DW$512, DW_AT_type(*$C$DW$T$122)
.dwattr $C$DW$512, DW_AT_name("IEPCLK")
.dwattr $C$DW$512, DW_AT_TI_symbol_name("IEPCLK")
.dwattr $C$DW$512, DW_AT_data_member_location[DW_OP_plus_uconst 0x0]
.dwattr $C$DW$512, DW_AT_accessibility(DW_ACCESS_public)
.dwattr $C$DW$512, DW_AT_decl_file("/usr/share/ti/pru-software-support-package/include/am335x/pru_cfg.h")
.dwattr $C$DW$512, DW_AT_decl_line(0xd0)
.dwattr $C$DW$512, DW_AT_decl_column(0x15)
$C$DW$513 .dwtag DW_TAG_member
.dwattr $C$DW$513, DW_AT_type(*$C$DW$T$143)
.dwattr $C$DW$513, DW_AT_name("IEPCLK_bit")
.dwattr $C$DW$513, DW_AT_TI_symbol_name("IEPCLK_bit")
.dwattr $C$DW$513, DW_AT_data_member_location[DW_OP_plus_uconst 0x0]
.dwattr $C$DW$513, DW_AT_accessibility(DW_ACCESS_public)
.dwattr $C$DW$513, DW_AT_decl_file("/usr/share/ti/pru-software-support-package/include/am335x/pru_cfg.h")
.dwattr $C$DW$513, DW_AT_decl_line(0xd5)
.dwattr $C$DW$513, DW_AT_decl_column(0x05)
.dwattr $C$DW$T$144, DW_AT_decl_file("/usr/share/ti/pru-software-support-package/include/am335x/pru_cfg.h")
.dwattr $C$DW$T$144, DW_AT_decl_line(0xcf)
.dwattr $C$DW$T$144, DW_AT_decl_column(0x08)
.dwendtag $C$DW$T$144
$C$DW$T$146 .dwtag DW_TAG_union_type
.dwattr $C$DW$T$146, DW_AT_byte_size(0x04)
$C$DW$514 .dwtag DW_TAG_member
.dwattr $C$DW$514, DW_AT_type(*$C$DW$T$122)
.dwattr $C$DW$514, DW_AT_name("SPP")
.dwattr $C$DW$514, DW_AT_TI_symbol_name("SPP")
.dwattr $C$DW$514, DW_AT_data_member_location[DW_OP_plus_uconst 0x0]
.dwattr $C$DW$514, DW_AT_accessibility(DW_ACCESS_public)
.dwattr $C$DW$514, DW_AT_decl_file("/usr/share/ti/pru-software-support-package/include/am335x/pru_cfg.h")
.dwattr $C$DW$514, DW_AT_decl_line(0xdb)
.dwattr $C$DW$514, DW_AT_decl_column(0x15)
$C$DW$515 .dwtag DW_TAG_member
.dwattr $C$DW$515, DW_AT_type(*$C$DW$T$145)
.dwattr $C$DW$515, DW_AT_name("SPP_bit")
.dwattr $C$DW$515, DW_AT_TI_symbol_name("SPP_bit")
.dwattr $C$DW$515, DW_AT_data_member_location[DW_OP_plus_uconst 0x0]
.dwattr $C$DW$515, DW_AT_accessibility(DW_ACCESS_public)
.dwattr $C$DW$515, DW_AT_decl_file("/usr/share/ti/pru-software-support-package/include/am335x/pru_cfg.h")
.dwattr $C$DW$515, DW_AT_decl_line(0xe1)
.dwattr $C$DW$515, DW_AT_decl_column(0x05)
.dwattr $C$DW$T$146, DW_AT_decl_file("/usr/share/ti/pru-software-support-package/include/am335x/pru_cfg.h")
.dwattr $C$DW$T$146, DW_AT_decl_line(0xda)
.dwattr $C$DW$T$146, DW_AT_decl_column(0x08)
.dwendtag $C$DW$T$146
$C$DW$T$148 .dwtag DW_TAG_union_type
.dwattr $C$DW$T$148, DW_AT_byte_size(0x04)
$C$DW$516 .dwtag DW_TAG_member
.dwattr $C$DW$516, DW_AT_type(*$C$DW$T$122)
.dwattr $C$DW$516, DW_AT_name("PIN_MX")
.dwattr $C$DW$516, DW_AT_TI_symbol_name("PIN_MX")
.dwattr $C$DW$516, DW_AT_data_member_location[DW_OP_plus_uconst 0x0]
.dwattr $C$DW$516, DW_AT_accessibility(DW_ACCESS_public)
.dwattr $C$DW$516, DW_AT_decl_file("/usr/share/ti/pru-software-support-package/include/am335x/pru_cfg.h")
.dwattr $C$DW$516, DW_AT_decl_line(0xe9)
.dwattr $C$DW$516, DW_AT_decl_column(0x15)
$C$DW$517 .dwtag DW_TAG_member
.dwattr $C$DW$517, DW_AT_type(*$C$DW$T$147)
.dwattr $C$DW$517, DW_AT_name("PIN_MX_bit")
.dwattr $C$DW$517, DW_AT_TI_symbol_name("PIN_MX_bit")
.dwattr $C$DW$517, DW_AT_data_member_location[DW_OP_plus_uconst 0x0]
.dwattr $C$DW$517, DW_AT_accessibility(DW_ACCESS_public)
.dwattr $C$DW$517, DW_AT_decl_file("/usr/share/ti/pru-software-support-package/include/am335x/pru_cfg.h")
.dwattr $C$DW$517, DW_AT_decl_line(0xee)
.dwattr $C$DW$517, DW_AT_decl_column(0x05)
.dwattr $C$DW$T$148, DW_AT_decl_file("/usr/share/ti/pru-software-support-package/include/am335x/pru_cfg.h")
.dwattr $C$DW$T$148, DW_AT_decl_line(0xe8)
.dwattr $C$DW$T$148, DW_AT_decl_column(0x08)
.dwendtag $C$DW$T$148
$C$DW$T$150 .dwtag DW_TAG_union_type
.dwattr $C$DW$T$150, DW_AT_byte_size(0x04)
$C$DW$518 .dwtag DW_TAG_member
.dwattr $C$DW$518, DW_AT_type(*$C$DW$T$122)
.dwattr $C$DW$518, DW_AT_name("REVID")
.dwattr $C$DW$518, DW_AT_TI_symbol_name("REVID")
.dwattr $C$DW$518, DW_AT_data_member_location[DW_OP_plus_uconst 0x0]
.dwattr $C$DW$518, DW_AT_accessibility(DW_ACCESS_public)
.dwattr $C$DW$518, DW_AT_decl_file("/usr/share/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$518, DW_AT_decl_line(0x2a)
.dwattr $C$DW$518, DW_AT_decl_column(0x15)
$C$DW$519 .dwtag DW_TAG_member
.dwattr $C$DW$519, DW_AT_type(*$C$DW$T$149)
.dwattr $C$DW$519, DW_AT_name("REVID_bit")
.dwattr $C$DW$519, DW_AT_TI_symbol_name("REVID_bit")
.dwattr $C$DW$519, DW_AT_data_member_location[DW_OP_plus_uconst 0x0]
.dwattr $C$DW$519, DW_AT_accessibility(DW_ACCESS_public)
.dwattr $C$DW$519, DW_AT_decl_file("/usr/share/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$519, DW_AT_decl_line(0x34)
.dwattr $C$DW$519, DW_AT_decl_column(0x05)
.dwattr $C$DW$T$150, DW_AT_decl_file("/usr/share/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$T$150, DW_AT_decl_line(0x29)
.dwattr $C$DW$T$150, DW_AT_decl_column(0x08)
.dwendtag $C$DW$T$150
$C$DW$T$152 .dwtag DW_TAG_union_type
.dwattr $C$DW$T$152, DW_AT_byte_size(0x04)
$C$DW$520 .dwtag DW_TAG_member
.dwattr $C$DW$520, DW_AT_type(*$C$DW$T$122)
.dwattr $C$DW$520, DW_AT_name("CR")
.dwattr $C$DW$520, DW_AT_TI_symbol_name("CR")
.dwattr $C$DW$520, DW_AT_data_member_location[DW_OP_plus_uconst 0x0]
.dwattr $C$DW$520, DW_AT_accessibility(DW_ACCESS_public)
.dwattr $C$DW$520, DW_AT_decl_file("/usr/share/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$520, DW_AT_decl_line(0x3a)
.dwattr $C$DW$520, DW_AT_decl_column(0x15)
$C$DW$521 .dwtag DW_TAG_member
.dwattr $C$DW$521, DW_AT_type(*$C$DW$T$151)
.dwattr $C$DW$521, DW_AT_name("CR_bit")
.dwattr $C$DW$521, DW_AT_TI_symbol_name("CR_bit")
.dwattr $C$DW$521, DW_AT_data_member_location[DW_OP_plus_uconst 0x0]
.dwattr $C$DW$521, DW_AT_accessibility(DW_ACCESS_public)
.dwattr $C$DW$521, DW_AT_decl_file("/usr/share/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$521, DW_AT_decl_line(0x40)
.dwattr $C$DW$521, DW_AT_decl_column(0x05)
.dwattr $C$DW$T$152, DW_AT_decl_file("/usr/share/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$T$152, DW_AT_decl_line(0x39)
.dwattr $C$DW$T$152, DW_AT_decl_column(0x08)
.dwendtag $C$DW$T$152
$C$DW$T$154 .dwtag DW_TAG_union_type
.dwattr $C$DW$T$154, DW_AT_byte_size(0x04)
$C$DW$522 .dwtag DW_TAG_member
.dwattr $C$DW$522, DW_AT_type(*$C$DW$T$122)
.dwattr $C$DW$522, DW_AT_name("GER")
.dwattr $C$DW$522, DW_AT_TI_symbol_name("GER")
.dwattr $C$DW$522, DW_AT_data_member_location[DW_OP_plus_uconst 0x0]
.dwattr $C$DW$522, DW_AT_accessibility(DW_ACCESS_public)
.dwattr $C$DW$522, DW_AT_decl_file("/usr/share/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$522, DW_AT_decl_line(0x49)
.dwattr $C$DW$522, DW_AT_decl_column(0x15)
$C$DW$523 .dwtag DW_TAG_member
.dwattr $C$DW$523, DW_AT_type(*$C$DW$T$153)
.dwattr $C$DW$523, DW_AT_name("GER_bit")
.dwattr $C$DW$523, DW_AT_TI_symbol_name("GER_bit")
.dwattr $C$DW$523, DW_AT_data_member_location[DW_OP_plus_uconst 0x0]
.dwattr $C$DW$523, DW_AT_accessibility(DW_ACCESS_public)
.dwattr $C$DW$523, DW_AT_decl_file("/usr/share/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$523, DW_AT_decl_line(0x4e)
.dwattr $C$DW$523, DW_AT_decl_column(0x05)
.dwattr $C$DW$T$154, DW_AT_decl_file("/usr/share/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$T$154, DW_AT_decl_line(0x48)
.dwattr $C$DW$T$154, DW_AT_decl_column(0x08)
.dwendtag $C$DW$T$154
$C$DW$T$156 .dwtag DW_TAG_union_type
.dwattr $C$DW$T$156, DW_AT_byte_size(0x04)
$C$DW$524 .dwtag DW_TAG_member
.dwattr $C$DW$524, DW_AT_type(*$C$DW$T$122)
.dwattr $C$DW$524, DW_AT_name("GNLR")
.dwattr $C$DW$524, DW_AT_TI_symbol_name("GNLR")
.dwattr $C$DW$524, DW_AT_data_member_location[DW_OP_plus_uconst 0x0]
.dwattr $C$DW$524, DW_AT_accessibility(DW_ACCESS_public)
.dwattr $C$DW$524, DW_AT_decl_file("/usr/share/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$524, DW_AT_decl_line(0x57)
.dwattr $C$DW$524, DW_AT_decl_column(0x15)
$C$DW$525 .dwtag DW_TAG_member
.dwattr $C$DW$525, DW_AT_type(*$C$DW$T$155)
.dwattr $C$DW$525, DW_AT_name("GNLR_bit")
.dwattr $C$DW$525, DW_AT_TI_symbol_name("GNLR_bit")
.dwattr $C$DW$525, DW_AT_data_member_location[DW_OP_plus_uconst 0x0]
.dwattr $C$DW$525, DW_AT_accessibility(DW_ACCESS_public)
.dwattr $C$DW$525, DW_AT_decl_file("/usr/share/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$525, DW_AT_decl_line(0x5d)
.dwattr $C$DW$525, DW_AT_decl_column(0x05)
.dwattr $C$DW$T$156, DW_AT_decl_file("/usr/share/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$T$156, DW_AT_decl_line(0x56)
.dwattr $C$DW$T$156, DW_AT_decl_column(0x08)
.dwendtag $C$DW$T$156
$C$DW$T$158 .dwtag DW_TAG_union_type
.dwattr $C$DW$T$158, DW_AT_byte_size(0x04)
$C$DW$526 .dwtag DW_TAG_member
.dwattr $C$DW$526, DW_AT_type(*$C$DW$T$122)
.dwattr $C$DW$526, DW_AT_name("SISR")
.dwattr $C$DW$526, DW_AT_TI_symbol_name("SISR")
.dwattr $C$DW$526, DW_AT_data_member_location[DW_OP_plus_uconst 0x0]
.dwattr $C$DW$526, DW_AT_accessibility(DW_ACCESS_public)
.dwattr $C$DW$526, DW_AT_decl_file("/usr/share/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$526, DW_AT_decl_line(0x63)
.dwattr $C$DW$526, DW_AT_decl_column(0x15)
$C$DW$527 .dwtag DW_TAG_member
.dwattr $C$DW$527, DW_AT_type(*$C$DW$T$157)
.dwattr $C$DW$527, DW_AT_name("SISR_bit")
.dwattr $C$DW$527, DW_AT_TI_symbol_name("SISR_bit")
.dwattr $C$DW$527, DW_AT_data_member_location[DW_OP_plus_uconst 0x0]
.dwattr $C$DW$527, DW_AT_accessibility(DW_ACCESS_public)
.dwattr $C$DW$527, DW_AT_decl_file("/usr/share/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$527, DW_AT_decl_line(0x68)
.dwattr $C$DW$527, DW_AT_decl_column(0x05)
.dwattr $C$DW$T$158, DW_AT_decl_file("/usr/share/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$T$158, DW_AT_decl_line(0x62)
.dwattr $C$DW$T$158, DW_AT_decl_column(0x08)
.dwendtag $C$DW$T$158
$C$DW$T$160 .dwtag DW_TAG_union_type
.dwattr $C$DW$T$160, DW_AT_byte_size(0x04)
$C$DW$528 .dwtag DW_TAG_member
.dwattr $C$DW$528, DW_AT_type(*$C$DW$T$122)
.dwattr $C$DW$528, DW_AT_name("SICR")
.dwattr $C$DW$528, DW_AT_TI_symbol_name("SICR")
.dwattr $C$DW$528, DW_AT_data_member_location[DW_OP_plus_uconst 0x0]
.dwattr $C$DW$528, DW_AT_accessibility(DW_ACCESS_public)
.dwattr $C$DW$528, DW_AT_decl_file("/usr/share/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$528, DW_AT_decl_line(0x6e)
.dwattr $C$DW$528, DW_AT_decl_column(0x15)
$C$DW$529 .dwtag DW_TAG_member
.dwattr $C$DW$529, DW_AT_type(*$C$DW$T$159)
.dwattr $C$DW$529, DW_AT_name("SICR_bit")
.dwattr $C$DW$529, DW_AT_TI_symbol_name("SICR_bit")
.dwattr $C$DW$529, DW_AT_data_member_location[DW_OP_plus_uconst 0x0]
.dwattr $C$DW$529, DW_AT_accessibility(DW_ACCESS_public)
.dwattr $C$DW$529, DW_AT_decl_file("/usr/share/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$529, DW_AT_decl_line(0x73)
.dwattr $C$DW$529, DW_AT_decl_column(0x05)
.dwattr $C$DW$T$160, DW_AT_decl_file("/usr/share/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$T$160, DW_AT_decl_line(0x6d)
.dwattr $C$DW$T$160, DW_AT_decl_column(0x08)
.dwendtag $C$DW$T$160
$C$DW$T$162 .dwtag DW_TAG_union_type
.dwattr $C$DW$T$162, DW_AT_byte_size(0x04)
$C$DW$530 .dwtag DW_TAG_member
.dwattr $C$DW$530, DW_AT_type(*$C$DW$T$122)
.dwattr $C$DW$530, DW_AT_name("EISR")
.dwattr $C$DW$530, DW_AT_TI_symbol_name("EISR")
.dwattr $C$DW$530, DW_AT_data_member_location[DW_OP_plus_uconst 0x0]
.dwattr $C$DW$530, DW_AT_accessibility(DW_ACCESS_public)
.dwattr $C$DW$530, DW_AT_decl_file("/usr/share/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$530, DW_AT_decl_line(0x79)
.dwattr $C$DW$530, DW_AT_decl_column(0x15)
$C$DW$531 .dwtag DW_TAG_member
.dwattr $C$DW$531, DW_AT_type(*$C$DW$T$161)
.dwattr $C$DW$531, DW_AT_name("EISR_bit")
.dwattr $C$DW$531, DW_AT_TI_symbol_name("EISR_bit")
.dwattr $C$DW$531, DW_AT_data_member_location[DW_OP_plus_uconst 0x0]
.dwattr $C$DW$531, DW_AT_accessibility(DW_ACCESS_public)
.dwattr $C$DW$531, DW_AT_decl_file("/usr/share/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$531, DW_AT_decl_line(0x7e)
.dwattr $C$DW$531, DW_AT_decl_column(0x05)
.dwattr $C$DW$T$162, DW_AT_decl_file("/usr/share/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$T$162, DW_AT_decl_line(0x78)
.dwattr $C$DW$T$162, DW_AT_decl_column(0x08)
.dwendtag $C$DW$T$162
$C$DW$T$164 .dwtag DW_TAG_union_type
.dwattr $C$DW$T$164, DW_AT_byte_size(0x04)
$C$DW$532 .dwtag DW_TAG_member
.dwattr $C$DW$532, DW_AT_type(*$C$DW$T$122)
.dwattr $C$DW$532, DW_AT_name("EICR")
.dwattr $C$DW$532, DW_AT_TI_symbol_name("EICR")
.dwattr $C$DW$532, DW_AT_data_member_location[DW_OP_plus_uconst 0x0]
.dwattr $C$DW$532, DW_AT_accessibility(DW_ACCESS_public)
.dwattr $C$DW$532, DW_AT_decl_file("/usr/share/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$532, DW_AT_decl_line(0x84)
.dwattr $C$DW$532, DW_AT_decl_column(0x15)
$C$DW$533 .dwtag DW_TAG_member
.dwattr $C$DW$533, DW_AT_type(*$C$DW$T$163)
.dwattr $C$DW$533, DW_AT_name("EICR_bit")
.dwattr $C$DW$533, DW_AT_TI_symbol_name("EICR_bit")
.dwattr $C$DW$533, DW_AT_data_member_location[DW_OP_plus_uconst 0x0]
.dwattr $C$DW$533, DW_AT_accessibility(DW_ACCESS_public)
.dwattr $C$DW$533, DW_AT_decl_file("/usr/share/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$533, DW_AT_decl_line(0x89)
.dwattr $C$DW$533, DW_AT_decl_column(0x05)
.dwattr $C$DW$T$164, DW_AT_decl_file("/usr/share/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$T$164, DW_AT_decl_line(0x83)
.dwattr $C$DW$T$164, DW_AT_decl_column(0x08)
.dwendtag $C$DW$T$164
$C$DW$T$166 .dwtag DW_TAG_union_type
.dwattr $C$DW$T$166, DW_AT_byte_size(0x04)
$C$DW$534 .dwtag DW_TAG_member
.dwattr $C$DW$534, DW_AT_type(*$C$DW$T$122)
.dwattr $C$DW$534, DW_AT_name("HIEISR")
.dwattr $C$DW$534, DW_AT_TI_symbol_name("HIEISR")
.dwattr $C$DW$534, DW_AT_data_member_location[DW_OP_plus_uconst 0x0]
.dwattr $C$DW$534, DW_AT_accessibility(DW_ACCESS_public)
.dwattr $C$DW$534, DW_AT_decl_file("/usr/share/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$534, DW_AT_decl_line(0x92)
.dwattr $C$DW$534, DW_AT_decl_column(0x15)
$C$DW$535 .dwtag DW_TAG_member
.dwattr $C$DW$535, DW_AT_type(*$C$DW$T$165)
.dwattr $C$DW$535, DW_AT_name("HIEISR_bit")
.dwattr $C$DW$535, DW_AT_TI_symbol_name("HIEISR_bit")
.dwattr $C$DW$535, DW_AT_data_member_location[DW_OP_plus_uconst 0x0]
.dwattr $C$DW$535, DW_AT_accessibility(DW_ACCESS_public)
.dwattr $C$DW$535, DW_AT_decl_file("/usr/share/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$535, DW_AT_decl_line(0x97)
.dwattr $C$DW$535, DW_AT_decl_column(0x05)
.dwattr $C$DW$T$166, DW_AT_decl_file("/usr/share/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$T$166, DW_AT_decl_line(0x91)
.dwattr $C$DW$T$166, DW_AT_decl_column(0x08)
.dwendtag $C$DW$T$166
$C$DW$T$168 .dwtag DW_TAG_union_type
.dwattr $C$DW$T$168, DW_AT_byte_size(0x04)
$C$DW$536 .dwtag DW_TAG_member
.dwattr $C$DW$536, DW_AT_type(*$C$DW$T$122)
.dwattr $C$DW$536, DW_AT_name("HIDISR")
.dwattr $C$DW$536, DW_AT_TI_symbol_name("HIDISR")
.dwattr $C$DW$536, DW_AT_data_member_location[DW_OP_plus_uconst 0x0]
.dwattr $C$DW$536, DW_AT_accessibility(DW_ACCESS_public)
.dwattr $C$DW$536, DW_AT_decl_file("/usr/share/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$536, DW_AT_decl_line(0x9d)
.dwattr $C$DW$536, DW_AT_decl_column(0x15)
$C$DW$537 .dwtag DW_TAG_member
.dwattr $C$DW$537, DW_AT_type(*$C$DW$T$167)
.dwattr $C$DW$537, DW_AT_name("HIDISR_bit")
.dwattr $C$DW$537, DW_AT_TI_symbol_name("HIDISR_bit")
.dwattr $C$DW$537, DW_AT_data_member_location[DW_OP_plus_uconst 0x0]
.dwattr $C$DW$537, DW_AT_accessibility(DW_ACCESS_public)
.dwattr $C$DW$537, DW_AT_decl_file("/usr/share/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$537, DW_AT_decl_line(0xa2)
.dwattr $C$DW$537, DW_AT_decl_column(0x05)
.dwattr $C$DW$T$168, DW_AT_decl_file("/usr/share/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$T$168, DW_AT_decl_line(0x9c)
.dwattr $C$DW$T$168, DW_AT_decl_column(0x08)
.dwendtag $C$DW$T$168
$C$DW$T$170 .dwtag DW_TAG_union_type
.dwattr $C$DW$T$170, DW_AT_byte_size(0x04)
$C$DW$538 .dwtag DW_TAG_member
.dwattr $C$DW$538, DW_AT_type(*$C$DW$T$122)
.dwattr $C$DW$538, DW_AT_name("GPIR")
.dwattr $C$DW$538, DW_AT_TI_symbol_name("GPIR")
.dwattr $C$DW$538, DW_AT_data_member_location[DW_OP_plus_uconst 0x0]
.dwattr $C$DW$538, DW_AT_accessibility(DW_ACCESS_public)
.dwattr $C$DW$538, DW_AT_decl_file("/usr/share/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$538, DW_AT_decl_line(0xab)
.dwattr $C$DW$538, DW_AT_decl_column(0x15)
$C$DW$539 .dwtag DW_TAG_member
.dwattr $C$DW$539, DW_AT_type(*$C$DW$T$169)
.dwattr $C$DW$539, DW_AT_name("GPIR_bit")
.dwattr $C$DW$539, DW_AT_TI_symbol_name("GPIR_bit")
.dwattr $C$DW$539, DW_AT_data_member_location[DW_OP_plus_uconst 0x0]
.dwattr $C$DW$539, DW_AT_accessibility(DW_ACCESS_public)
.dwattr $C$DW$539, DW_AT_decl_file("/usr/share/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$539, DW_AT_decl_line(0xb1)
.dwattr $C$DW$539, DW_AT_decl_column(0x05)
.dwattr $C$DW$T$170, DW_AT_decl_file("/usr/share/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$T$170, DW_AT_decl_line(0xaa)
.dwattr $C$DW$T$170, DW_AT_decl_column(0x08)
.dwendtag $C$DW$T$170
$C$DW$T$172 .dwtag DW_TAG_union_type
.dwattr $C$DW$T$172, DW_AT_byte_size(0x04)
$C$DW$540 .dwtag DW_TAG_member
.dwattr $C$DW$540, DW_AT_type(*$C$DW$T$122)
.dwattr $C$DW$540, DW_AT_name("SRSR0")
.dwattr $C$DW$540, DW_AT_TI_symbol_name("SRSR0")
.dwattr $C$DW$540, DW_AT_data_member_location[DW_OP_plus_uconst 0x0]
.dwattr $C$DW$540, DW_AT_accessibility(DW_ACCESS_public)
.dwattr $C$DW$540, DW_AT_decl_file("/usr/share/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$540, DW_AT_decl_line(0xba)
.dwattr $C$DW$540, DW_AT_decl_column(0x15)
$C$DW$541 .dwtag DW_TAG_member
.dwattr $C$DW$541, DW_AT_type(*$C$DW$T$171)
.dwattr $C$DW$541, DW_AT_name("SRSR0_bit")
.dwattr $C$DW$541, DW_AT_TI_symbol_name("SRSR0_bit")
.dwattr $C$DW$541, DW_AT_data_member_location[DW_OP_plus_uconst 0x0]
.dwattr $C$DW$541, DW_AT_accessibility(DW_ACCESS_public)
.dwattr $C$DW$541, DW_AT_decl_file("/usr/share/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$541, DW_AT_decl_line(0xbe)
.dwattr $C$DW$541, DW_AT_decl_column(0x05)
.dwattr $C$DW$T$172, DW_AT_decl_file("/usr/share/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$T$172, DW_AT_decl_line(0xb9)
.dwattr $C$DW$T$172, DW_AT_decl_column(0x08)
.dwendtag $C$DW$T$172
$C$DW$T$174 .dwtag DW_TAG_union_type
.dwattr $C$DW$T$174, DW_AT_byte_size(0x04)
$C$DW$542 .dwtag DW_TAG_member
.dwattr $C$DW$542, DW_AT_type(*$C$DW$T$122)
.dwattr $C$DW$542, DW_AT_name("SRSR1")
.dwattr $C$DW$542, DW_AT_TI_symbol_name("SRSR1")
.dwattr $C$DW$542, DW_AT_data_member_location[DW_OP_plus_uconst 0x0]
.dwattr $C$DW$542, DW_AT_accessibility(DW_ACCESS_public)
.dwattr $C$DW$542, DW_AT_decl_file("/usr/share/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$542, DW_AT_decl_line(0xc4)
.dwattr $C$DW$542, DW_AT_decl_column(0x15)
$C$DW$543 .dwtag DW_TAG_member
.dwattr $C$DW$543, DW_AT_type(*$C$DW$T$173)
.dwattr $C$DW$543, DW_AT_name("SRSR1_bit")
.dwattr $C$DW$543, DW_AT_TI_symbol_name("SRSR1_bit")
.dwattr $C$DW$543, DW_AT_data_member_location[DW_OP_plus_uconst 0x0]
.dwattr $C$DW$543, DW_AT_accessibility(DW_ACCESS_public)
.dwattr $C$DW$543, DW_AT_decl_file("/usr/share/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$543, DW_AT_decl_line(0xc8)
.dwattr $C$DW$543, DW_AT_decl_column(0x05)
.dwattr $C$DW$T$174, DW_AT_decl_file("/usr/share/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$T$174, DW_AT_decl_line(0xc3)
.dwattr $C$DW$T$174, DW_AT_decl_column(0x08)
.dwendtag $C$DW$T$174
$C$DW$T$176 .dwtag DW_TAG_union_type
.dwattr $C$DW$T$176, DW_AT_byte_size(0x04)
$C$DW$544 .dwtag DW_TAG_member
.dwattr $C$DW$544, DW_AT_type(*$C$DW$T$122)
.dwattr $C$DW$544, DW_AT_name("SECR0")
.dwattr $C$DW$544, DW_AT_TI_symbol_name("SECR0")
.dwattr $C$DW$544, DW_AT_data_member_location[DW_OP_plus_uconst 0x0]
.dwattr $C$DW$544, DW_AT_accessibility(DW_ACCESS_public)
.dwattr $C$DW$544, DW_AT_decl_file("/usr/share/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$544, DW_AT_decl_line(0xd1)
.dwattr $C$DW$544, DW_AT_decl_column(0x15)
$C$DW$545 .dwtag DW_TAG_member
.dwattr $C$DW$545, DW_AT_type(*$C$DW$T$175)
.dwattr $C$DW$545, DW_AT_name("SECR0_bit")
.dwattr $C$DW$545, DW_AT_TI_symbol_name("SECR0_bit")
.dwattr $C$DW$545, DW_AT_data_member_location[DW_OP_plus_uconst 0x0]
.dwattr $C$DW$545, DW_AT_accessibility(DW_ACCESS_public)
.dwattr $C$DW$545, DW_AT_decl_file("/usr/share/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$545, DW_AT_decl_line(0xd5)
.dwattr $C$DW$545, DW_AT_decl_column(0x05)
.dwattr $C$DW$T$176, DW_AT_decl_file("/usr/share/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$T$176, DW_AT_decl_line(0xd0)
.dwattr $C$DW$T$176, DW_AT_decl_column(0x08)
.dwendtag $C$DW$T$176
$C$DW$T$178 .dwtag DW_TAG_union_type
.dwattr $C$DW$T$178, DW_AT_byte_size(0x04)
$C$DW$546 .dwtag DW_TAG_member
.dwattr $C$DW$546, DW_AT_type(*$C$DW$T$122)
.dwattr $C$DW$546, DW_AT_name("SECR1")
.dwattr $C$DW$546, DW_AT_TI_symbol_name("SECR1")
.dwattr $C$DW$546, DW_AT_data_member_location[DW_OP_plus_uconst 0x0]
.dwattr $C$DW$546, DW_AT_accessibility(DW_ACCESS_public)
.dwattr $C$DW$546, DW_AT_decl_file("/usr/share/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$546, DW_AT_decl_line(0xdb)
.dwattr $C$DW$546, DW_AT_decl_column(0x15)
$C$DW$547 .dwtag DW_TAG_member
.dwattr $C$DW$547, DW_AT_type(*$C$DW$T$177)
.dwattr $C$DW$547, DW_AT_name("SECR1_bit")
.dwattr $C$DW$547, DW_AT_TI_symbol_name("SECR1_bit")
.dwattr $C$DW$547, DW_AT_data_member_location[DW_OP_plus_uconst 0x0]
.dwattr $C$DW$547, DW_AT_accessibility(DW_ACCESS_public)
.dwattr $C$DW$547, DW_AT_decl_file("/usr/share/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$547, DW_AT_decl_line(0xdf)
.dwattr $C$DW$547, DW_AT_decl_column(0x05)
.dwattr $C$DW$T$178, DW_AT_decl_file("/usr/share/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$T$178, DW_AT_decl_line(0xda)
.dwattr $C$DW$T$178, DW_AT_decl_column(0x08)
.dwendtag $C$DW$T$178
$C$DW$T$180 .dwtag DW_TAG_union_type
.dwattr $C$DW$T$180, DW_AT_byte_size(0x04)
$C$DW$548 .dwtag DW_TAG_member
.dwattr $C$DW$548, DW_AT_type(*$C$DW$T$122)
.dwattr $C$DW$548, DW_AT_name("ESR0")
.dwattr $C$DW$548, DW_AT_TI_symbol_name("ESR0")
.dwattr $C$DW$548, DW_AT_data_member_location[DW_OP_plus_uconst 0x0]
.dwattr $C$DW$548, DW_AT_accessibility(DW_ACCESS_public)
.dwattr $C$DW$548, DW_AT_decl_file("/usr/share/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$548, DW_AT_decl_line(0xe8)
.dwattr $C$DW$548, DW_AT_decl_column(0x15)
$C$DW$549 .dwtag DW_TAG_member
.dwattr $C$DW$549, DW_AT_type(*$C$DW$T$179)
.dwattr $C$DW$549, DW_AT_name("ESR0_bit")
.dwattr $C$DW$549, DW_AT_TI_symbol_name("ESR0_bit")
.dwattr $C$DW$549, DW_AT_data_member_location[DW_OP_plus_uconst 0x0]
.dwattr $C$DW$549, DW_AT_accessibility(DW_ACCESS_public)
.dwattr $C$DW$549, DW_AT_decl_file("/usr/share/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$549, DW_AT_decl_line(0xec)
.dwattr $C$DW$549, DW_AT_decl_column(0x05)
.dwattr $C$DW$T$180, DW_AT_decl_file("/usr/share/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$T$180, DW_AT_decl_line(0xe7)
.dwattr $C$DW$T$180, DW_AT_decl_column(0x08)
.dwendtag $C$DW$T$180
$C$DW$T$182 .dwtag DW_TAG_union_type
.dwattr $C$DW$T$182, DW_AT_byte_size(0x04)
$C$DW$550 .dwtag DW_TAG_member
.dwattr $C$DW$550, DW_AT_type(*$C$DW$T$122)
.dwattr $C$DW$550, DW_AT_name("ESR1")
.dwattr $C$DW$550, DW_AT_TI_symbol_name("ESR1")
.dwattr $C$DW$550, DW_AT_data_member_location[DW_OP_plus_uconst 0x0]
.dwattr $C$DW$550, DW_AT_accessibility(DW_ACCESS_public)
.dwattr $C$DW$550, DW_AT_decl_file("/usr/share/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$550, DW_AT_decl_line(0xf2)
.dwattr $C$DW$550, DW_AT_decl_column(0x15)
$C$DW$551 .dwtag DW_TAG_member
.dwattr $C$DW$551, DW_AT_type(*$C$DW$T$181)
.dwattr $C$DW$551, DW_AT_name("ESR1_bit")
.dwattr $C$DW$551, DW_AT_TI_symbol_name("ESR1_bit")
.dwattr $C$DW$551, DW_AT_data_member_location[DW_OP_plus_uconst 0x0]
.dwattr $C$DW$551, DW_AT_accessibility(DW_ACCESS_public)
.dwattr $C$DW$551, DW_AT_decl_file("/usr/share/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$551, DW_AT_decl_line(0xf6)
.dwattr $C$DW$551, DW_AT_decl_column(0x05)
.dwattr $C$DW$T$182, DW_AT_decl_file("/usr/share/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$T$182, DW_AT_decl_line(0xf1)
.dwattr $C$DW$T$182, DW_AT_decl_column(0x08)
.dwendtag $C$DW$T$182
$C$DW$T$184 .dwtag DW_TAG_union_type
.dwattr $C$DW$T$184, DW_AT_byte_size(0x04)
$C$DW$552 .dwtag DW_TAG_member
.dwattr $C$DW$552, DW_AT_type(*$C$DW$T$122)
.dwattr $C$DW$552, DW_AT_name("ECR0")
.dwattr $C$DW$552, DW_AT_TI_symbol_name("ECR0")
.dwattr $C$DW$552, DW_AT_data_member_location[DW_OP_plus_uconst 0x0]
.dwattr $C$DW$552, DW_AT_accessibility(DW_ACCESS_public)
.dwattr $C$DW$552, DW_AT_decl_file("/usr/share/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$552, DW_AT_decl_line(0xff)
.dwattr $C$DW$552, DW_AT_decl_column(0x15)
$C$DW$553 .dwtag DW_TAG_member
.dwattr $C$DW$553, DW_AT_type(*$C$DW$T$183)
.dwattr $C$DW$553, DW_AT_name("ECR0_bit")
.dwattr $C$DW$553, DW_AT_TI_symbol_name("ECR0_bit")
.dwattr $C$DW$553, DW_AT_data_member_location[DW_OP_plus_uconst 0x0]
.dwattr $C$DW$553, DW_AT_accessibility(DW_ACCESS_public)
.dwattr $C$DW$553, DW_AT_decl_file("/usr/share/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$553, DW_AT_decl_line(0x103)
.dwattr $C$DW$553, DW_AT_decl_column(0x05)
.dwattr $C$DW$T$184, DW_AT_decl_file("/usr/share/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$T$184, DW_AT_decl_line(0xfe)
.dwattr $C$DW$T$184, DW_AT_decl_column(0x08)
.dwendtag $C$DW$T$184
$C$DW$T$186 .dwtag DW_TAG_union_type
.dwattr $C$DW$T$186, DW_AT_byte_size(0x04)
$C$DW$554 .dwtag DW_TAG_member
.dwattr $C$DW$554, DW_AT_type(*$C$DW$T$122)
.dwattr $C$DW$554, DW_AT_name("ECR1")
.dwattr $C$DW$554, DW_AT_TI_symbol_name("ECR1")
.dwattr $C$DW$554, DW_AT_data_member_location[DW_OP_plus_uconst 0x0]
.dwattr $C$DW$554, DW_AT_accessibility(DW_ACCESS_public)
.dwattr $C$DW$554, DW_AT_decl_file("/usr/share/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$554, DW_AT_decl_line(0x109)
.dwattr $C$DW$554, DW_AT_decl_column(0x15)
$C$DW$555 .dwtag DW_TAG_member
.dwattr $C$DW$555, DW_AT_type(*$C$DW$T$185)
.dwattr $C$DW$555, DW_AT_name("ECR1_bit")
.dwattr $C$DW$555, DW_AT_TI_symbol_name("ECR1_bit")
.dwattr $C$DW$555, DW_AT_data_member_location[DW_OP_plus_uconst 0x0]
.dwattr $C$DW$555, DW_AT_accessibility(DW_ACCESS_public)
.dwattr $C$DW$555, DW_AT_decl_file("/usr/share/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$555, DW_AT_decl_line(0x10d)
.dwattr $C$DW$555, DW_AT_decl_column(0x05)
.dwattr $C$DW$T$186, DW_AT_decl_file("/usr/share/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$T$186, DW_AT_decl_line(0x108)
.dwattr $C$DW$T$186, DW_AT_decl_column(0x08)
.dwendtag $C$DW$T$186
$C$DW$T$188 .dwtag DW_TAG_union_type
.dwattr $C$DW$T$188, DW_AT_byte_size(0x04)
$C$DW$556 .dwtag DW_TAG_member
.dwattr $C$DW$556, DW_AT_type(*$C$DW$T$122)
.dwattr $C$DW$556, DW_AT_name("CMR0")
.dwattr $C$DW$556, DW_AT_TI_symbol_name("CMR0")
.dwattr $C$DW$556, DW_AT_data_member_location[DW_OP_plus_uconst 0x0]
.dwattr $C$DW$556, DW_AT_accessibility(DW_ACCESS_public)
.dwattr $C$DW$556, DW_AT_decl_file("/usr/share/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$556, DW_AT_decl_line(0x116)
.dwattr $C$DW$556, DW_AT_decl_column(0x15)
$C$DW$557 .dwtag DW_TAG_member
.dwattr $C$DW$557, DW_AT_type(*$C$DW$T$187)
.dwattr $C$DW$557, DW_AT_name("CMR0_bit")
.dwattr $C$DW$557, DW_AT_TI_symbol_name("CMR0_bit")
.dwattr $C$DW$557, DW_AT_data_member_location[DW_OP_plus_uconst 0x0]
.dwattr $C$DW$557, DW_AT_accessibility(DW_ACCESS_public)
.dwattr $C$DW$557, DW_AT_decl_file("/usr/share/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$557, DW_AT_decl_line(0x121)
.dwattr $C$DW$557, DW_AT_decl_column(0x05)
.dwattr $C$DW$T$188, DW_AT_decl_file("/usr/share/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$T$188, DW_AT_decl_line(0x115)
.dwattr $C$DW$T$188, DW_AT_decl_column(0x08)
.dwendtag $C$DW$T$188
$C$DW$T$190 .dwtag DW_TAG_union_type
.dwattr $C$DW$T$190, DW_AT_byte_size(0x04)
$C$DW$558 .dwtag DW_TAG_member
.dwattr $C$DW$558, DW_AT_type(*$C$DW$T$122)
.dwattr $C$DW$558, DW_AT_name("CMR1")
.dwattr $C$DW$558, DW_AT_TI_symbol_name("CMR1")
.dwattr $C$DW$558, DW_AT_data_member_location[DW_OP_plus_uconst 0x0]
.dwattr $C$DW$558, DW_AT_accessibility(DW_ACCESS_public)
.dwattr $C$DW$558, DW_AT_decl_file("/usr/share/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$558, DW_AT_decl_line(0x127)
.dwattr $C$DW$558, DW_AT_decl_column(0x15)
$C$DW$559 .dwtag DW_TAG_member
.dwattr $C$DW$559, DW_AT_type(*$C$DW$T$189)
.dwattr $C$DW$559, DW_AT_name("CMR1_bit")
.dwattr $C$DW$559, DW_AT_TI_symbol_name("CMR1_bit")
.dwattr $C$DW$559, DW_AT_data_member_location[DW_OP_plus_uconst 0x0]
.dwattr $C$DW$559, DW_AT_accessibility(DW_ACCESS_public)
.dwattr $C$DW$559, DW_AT_decl_file("/usr/share/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$559, DW_AT_decl_line(0x132)
.dwattr $C$DW$559, DW_AT_decl_column(0x05)
.dwattr $C$DW$T$190, DW_AT_decl_file("/usr/share/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$T$190, DW_AT_decl_line(0x126)
.dwattr $C$DW$T$190, DW_AT_decl_column(0x08)
.dwendtag $C$DW$T$190
$C$DW$T$192 .dwtag DW_TAG_union_type
.dwattr $C$DW$T$192, DW_AT_byte_size(0x04)
$C$DW$560 .dwtag DW_TAG_member
.dwattr $C$DW$560, DW_AT_type(*$C$DW$T$122)
.dwattr $C$DW$560, DW_AT_name("CMR2")
.dwattr $C$DW$560, DW_AT_TI_symbol_name("CMR2")
.dwattr $C$DW$560, DW_AT_data_member_location[DW_OP_plus_uconst 0x0]
.dwattr $C$DW$560, DW_AT_accessibility(DW_ACCESS_public)
.dwattr $C$DW$560, DW_AT_decl_file("/usr/share/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$560, DW_AT_decl_line(0x138)
.dwattr $C$DW$560, DW_AT_decl_column(0x15)
$C$DW$561 .dwtag DW_TAG_member
.dwattr $C$DW$561, DW_AT_type(*$C$DW$T$191)
.dwattr $C$DW$561, DW_AT_name("CMR2_bit")
.dwattr $C$DW$561, DW_AT_TI_symbol_name("CMR2_bit")
.dwattr $C$DW$561, DW_AT_data_member_location[DW_OP_plus_uconst 0x0]
.dwattr $C$DW$561, DW_AT_accessibility(DW_ACCESS_public)
.dwattr $C$DW$561, DW_AT_decl_file("/usr/share/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$561, DW_AT_decl_line(0x143)
.dwattr $C$DW$561, DW_AT_decl_column(0x05)
.dwattr $C$DW$T$192, DW_AT_decl_file("/usr/share/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$T$192, DW_AT_decl_line(0x137)
.dwattr $C$DW$T$192, DW_AT_decl_column(0x08)
.dwendtag $C$DW$T$192
$C$DW$T$194 .dwtag DW_TAG_union_type
.dwattr $C$DW$T$194, DW_AT_byte_size(0x04)
$C$DW$562 .dwtag DW_TAG_member
.dwattr $C$DW$562, DW_AT_type(*$C$DW$T$122)
.dwattr $C$DW$562, DW_AT_name("CMR3")
.dwattr $C$DW$562, DW_AT_TI_symbol_name("CMR3")
.dwattr $C$DW$562, DW_AT_data_member_location[DW_OP_plus_uconst 0x0]
.dwattr $C$DW$562, DW_AT_accessibility(DW_ACCESS_public)
.dwattr $C$DW$562, DW_AT_decl_file("/usr/share/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$562, DW_AT_decl_line(0x149)
.dwattr $C$DW$562, DW_AT_decl_column(0x15)
$C$DW$563 .dwtag DW_TAG_member
.dwattr $C$DW$563, DW_AT_type(*$C$DW$T$193)
.dwattr $C$DW$563, DW_AT_name("CMR3_bit")
.dwattr $C$DW$563, DW_AT_TI_symbol_name("CMR3_bit")
.dwattr $C$DW$563, DW_AT_data_member_location[DW_OP_plus_uconst 0x0]
.dwattr $C$DW$563, DW_AT_accessibility(DW_ACCESS_public)
.dwattr $C$DW$563, DW_AT_decl_file("/usr/share/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$563, DW_AT_decl_line(0x154)
.dwattr $C$DW$563, DW_AT_decl_column(0x05)
.dwattr $C$DW$T$194, DW_AT_decl_file("/usr/share/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$T$194, DW_AT_decl_line(0x148)
.dwattr $C$DW$T$194, DW_AT_decl_column(0x08)
.dwendtag $C$DW$T$194
$C$DW$T$196 .dwtag DW_TAG_union_type
.dwattr $C$DW$T$196, DW_AT_byte_size(0x04)
$C$DW$564 .dwtag DW_TAG_member
.dwattr $C$DW$564, DW_AT_type(*$C$DW$T$122)
.dwattr $C$DW$564, DW_AT_name("CMR4")
.dwattr $C$DW$564, DW_AT_TI_symbol_name("CMR4")
.dwattr $C$DW$564, DW_AT_data_member_location[DW_OP_plus_uconst 0x0]
.dwattr $C$DW$564, DW_AT_accessibility(DW_ACCESS_public)
.dwattr $C$DW$564, DW_AT_decl_file("/usr/share/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$564, DW_AT_decl_line(0x15a)
.dwattr $C$DW$564, DW_AT_decl_column(0x15)
$C$DW$565 .dwtag DW_TAG_member
.dwattr $C$DW$565, DW_AT_type(*$C$DW$T$195)
.dwattr $C$DW$565, DW_AT_name("CMR4_bit")
.dwattr $C$DW$565, DW_AT_TI_symbol_name("CMR4_bit")
.dwattr $C$DW$565, DW_AT_data_member_location[DW_OP_plus_uconst 0x0]
.dwattr $C$DW$565, DW_AT_accessibility(DW_ACCESS_public)
.dwattr $C$DW$565, DW_AT_decl_file("/usr/share/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$565, DW_AT_decl_line(0x165)
.dwattr $C$DW$565, DW_AT_decl_column(0x05)
.dwattr $C$DW$T$196, DW_AT_decl_file("/usr/share/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$T$196, DW_AT_decl_line(0x159)
.dwattr $C$DW$T$196, DW_AT_decl_column(0x08)
.dwendtag $C$DW$T$196
$C$DW$T$198 .dwtag DW_TAG_union_type
.dwattr $C$DW$T$198, DW_AT_byte_size(0x04)
$C$DW$566 .dwtag DW_TAG_member
.dwattr $C$DW$566, DW_AT_type(*$C$DW$T$122)
.dwattr $C$DW$566, DW_AT_name("CMR5")
.dwattr $C$DW$566, DW_AT_TI_symbol_name("CMR5")
.dwattr $C$DW$566, DW_AT_data_member_location[DW_OP_plus_uconst 0x0]
.dwattr $C$DW$566, DW_AT_accessibility(DW_ACCESS_public)
.dwattr $C$DW$566, DW_AT_decl_file("/usr/share/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$566, DW_AT_decl_line(0x16b)
.dwattr $C$DW$566, DW_AT_decl_column(0x15)
$C$DW$567 .dwtag DW_TAG_member
.dwattr $C$DW$567, DW_AT_type(*$C$DW$T$197)
.dwattr $C$DW$567, DW_AT_name("CMR5_bit")
.dwattr $C$DW$567, DW_AT_TI_symbol_name("CMR5_bit")
.dwattr $C$DW$567, DW_AT_data_member_location[DW_OP_plus_uconst 0x0]
.dwattr $C$DW$567, DW_AT_accessibility(DW_ACCESS_public)
.dwattr $C$DW$567, DW_AT_decl_file("/usr/share/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$567, DW_AT_decl_line(0x176)
.dwattr $C$DW$567, DW_AT_decl_column(0x05)
.dwattr $C$DW$T$198, DW_AT_decl_file("/usr/share/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$T$198, DW_AT_decl_line(0x16a)
.dwattr $C$DW$T$198, DW_AT_decl_column(0x08)
.dwendtag $C$DW$T$198
$C$DW$T$200 .dwtag DW_TAG_union_type
.dwattr $C$DW$T$200, DW_AT_byte_size(0x04)
$C$DW$568 .dwtag DW_TAG_member
.dwattr $C$DW$568, DW_AT_type(*$C$DW$T$122)
.dwattr $C$DW$568, DW_AT_name("CMR6")
.dwattr $C$DW$568, DW_AT_TI_symbol_name("CMR6")
.dwattr $C$DW$568, DW_AT_data_member_location[DW_OP_plus_uconst 0x0]
.dwattr $C$DW$568, DW_AT_accessibility(DW_ACCESS_public)
.dwattr $C$DW$568, DW_AT_decl_file("/usr/share/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$568, DW_AT_decl_line(0x17c)
.dwattr $C$DW$568, DW_AT_decl_column(0x15)
$C$DW$569 .dwtag DW_TAG_member
.dwattr $C$DW$569, DW_AT_type(*$C$DW$T$199)
.dwattr $C$DW$569, DW_AT_name("CMR6_bit")
.dwattr $C$DW$569, DW_AT_TI_symbol_name("CMR6_bit")
.dwattr $C$DW$569, DW_AT_data_member_location[DW_OP_plus_uconst 0x0]
.dwattr $C$DW$569, DW_AT_accessibility(DW_ACCESS_public)
.dwattr $C$DW$569, DW_AT_decl_file("/usr/share/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$569, DW_AT_decl_line(0x187)
.dwattr $C$DW$569, DW_AT_decl_column(0x05)
.dwattr $C$DW$T$200, DW_AT_decl_file("/usr/share/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$T$200, DW_AT_decl_line(0x17b)
.dwattr $C$DW$T$200, DW_AT_decl_column(0x08)
.dwendtag $C$DW$T$200
$C$DW$T$202 .dwtag DW_TAG_union_type
.dwattr $C$DW$T$202, DW_AT_byte_size(0x04)
$C$DW$570 .dwtag DW_TAG_member
.dwattr $C$DW$570, DW_AT_type(*$C$DW$T$122)
.dwattr $C$DW$570, DW_AT_name("CMR7")
.dwattr $C$DW$570, DW_AT_TI_symbol_name("CMR7")
.dwattr $C$DW$570, DW_AT_data_member_location[DW_OP_plus_uconst 0x0]
.dwattr $C$DW$570, DW_AT_accessibility(DW_ACCESS_public)
.dwattr $C$DW$570, DW_AT_decl_file("/usr/share/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$570, DW_AT_decl_line(0x18d)
.dwattr $C$DW$570, DW_AT_decl_column(0x15)
$C$DW$571 .dwtag DW_TAG_member
.dwattr $C$DW$571, DW_AT_type(*$C$DW$T$201)
.dwattr $C$DW$571, DW_AT_name("CMR7_bit")
.dwattr $C$DW$571, DW_AT_TI_symbol_name("CMR7_bit")
.dwattr $C$DW$571, DW_AT_data_member_location[DW_OP_plus_uconst 0x0]
.dwattr $C$DW$571, DW_AT_accessibility(DW_ACCESS_public)
.dwattr $C$DW$571, DW_AT_decl_file("/usr/share/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$571, DW_AT_decl_line(0x198)
.dwattr $C$DW$571, DW_AT_decl_column(0x05)
.dwattr $C$DW$T$202, DW_AT_decl_file("/usr/share/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$T$202, DW_AT_decl_line(0x18c)
.dwattr $C$DW$T$202, DW_AT_decl_column(0x08)
.dwendtag $C$DW$T$202
$C$DW$T$204 .dwtag DW_TAG_union_type
.dwattr $C$DW$T$204, DW_AT_byte_size(0x04)
$C$DW$572 .dwtag DW_TAG_member
.dwattr $C$DW$572, DW_AT_type(*$C$DW$T$122)
.dwattr $C$DW$572, DW_AT_name("CMR8")
.dwattr $C$DW$572, DW_AT_TI_symbol_name("CMR8")
.dwattr $C$DW$572, DW_AT_data_member_location[DW_OP_plus_uconst 0x0]
.dwattr $C$DW$572, DW_AT_accessibility(DW_ACCESS_public)
.dwattr $C$DW$572, DW_AT_decl_file("/usr/share/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$572, DW_AT_decl_line(0x19e)
.dwattr $C$DW$572, DW_AT_decl_column(0x15)
$C$DW$573 .dwtag DW_TAG_member
.dwattr $C$DW$573, DW_AT_type(*$C$DW$T$203)
.dwattr $C$DW$573, DW_AT_name("CMR8_bit")
.dwattr $C$DW$573, DW_AT_TI_symbol_name("CMR8_bit")
.dwattr $C$DW$573, DW_AT_data_member_location[DW_OP_plus_uconst 0x0]
.dwattr $C$DW$573, DW_AT_accessibility(DW_ACCESS_public)
.dwattr $C$DW$573, DW_AT_decl_file("/usr/share/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$573, DW_AT_decl_line(0x1a9)
.dwattr $C$DW$573, DW_AT_decl_column(0x05)
.dwattr $C$DW$T$204, DW_AT_decl_file("/usr/share/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$T$204, DW_AT_decl_line(0x19d)
.dwattr $C$DW$T$204, DW_AT_decl_column(0x08)
.dwendtag $C$DW$T$204
$C$DW$T$206 .dwtag DW_TAG_union_type
.dwattr $C$DW$T$206, DW_AT_byte_size(0x04)
$C$DW$574 .dwtag DW_TAG_member
.dwattr $C$DW$574, DW_AT_type(*$C$DW$T$122)
.dwattr $C$DW$574, DW_AT_name("CMR9")
.dwattr $C$DW$574, DW_AT_TI_symbol_name("CMR9")
.dwattr $C$DW$574, DW_AT_data_member_location[DW_OP_plus_uconst 0x0]
.dwattr $C$DW$574, DW_AT_accessibility(DW_ACCESS_public)
.dwattr $C$DW$574, DW_AT_decl_file("/usr/share/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$574, DW_AT_decl_line(0x1af)
.dwattr $C$DW$574, DW_AT_decl_column(0x15)
$C$DW$575 .dwtag DW_TAG_member
.dwattr $C$DW$575, DW_AT_type(*$C$DW$T$205)
.dwattr $C$DW$575, DW_AT_name("CMR9_bit")
.dwattr $C$DW$575, DW_AT_TI_symbol_name("CMR9_bit")
.dwattr $C$DW$575, DW_AT_data_member_location[DW_OP_plus_uconst 0x0]
.dwattr $C$DW$575, DW_AT_accessibility(DW_ACCESS_public)
.dwattr $C$DW$575, DW_AT_decl_file("/usr/share/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$575, DW_AT_decl_line(0x1ba)
.dwattr $C$DW$575, DW_AT_decl_column(0x05)
.dwattr $C$DW$T$206, DW_AT_decl_file("/usr/share/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$T$206, DW_AT_decl_line(0x1ae)
.dwattr $C$DW$T$206, DW_AT_decl_column(0x08)
.dwendtag $C$DW$T$206
$C$DW$T$208 .dwtag DW_TAG_union_type
.dwattr $C$DW$T$208, DW_AT_byte_size(0x04)
$C$DW$576 .dwtag DW_TAG_member
.dwattr $C$DW$576, DW_AT_type(*$C$DW$T$122)
.dwattr $C$DW$576, DW_AT_name("CMR10")
.dwattr $C$DW$576, DW_AT_TI_symbol_name("CMR10")
.dwattr $C$DW$576, DW_AT_data_member_location[DW_OP_plus_uconst 0x0]
.dwattr $C$DW$576, DW_AT_accessibility(DW_ACCESS_public)
.dwattr $C$DW$576, DW_AT_decl_file("/usr/share/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$576, DW_AT_decl_line(0x1c0)
.dwattr $C$DW$576, DW_AT_decl_column(0x15)
$C$DW$577 .dwtag DW_TAG_member
.dwattr $C$DW$577, DW_AT_type(*$C$DW$T$207)
.dwattr $C$DW$577, DW_AT_name("CMR10_bit")
.dwattr $C$DW$577, DW_AT_TI_symbol_name("CMR10_bit")
.dwattr $C$DW$577, DW_AT_data_member_location[DW_OP_plus_uconst 0x0]
.dwattr $C$DW$577, DW_AT_accessibility(DW_ACCESS_public)
.dwattr $C$DW$577, DW_AT_decl_file("/usr/share/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$577, DW_AT_decl_line(0x1cb)
.dwattr $C$DW$577, DW_AT_decl_column(0x05)
.dwattr $C$DW$T$208, DW_AT_decl_file("/usr/share/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$T$208, DW_AT_decl_line(0x1bf)
.dwattr $C$DW$T$208, DW_AT_decl_column(0x08)
.dwendtag $C$DW$T$208
$C$DW$T$210 .dwtag DW_TAG_union_type
.dwattr $C$DW$T$210, DW_AT_byte_size(0x04)
$C$DW$578 .dwtag DW_TAG_member
.dwattr $C$DW$578, DW_AT_type(*$C$DW$T$122)
.dwattr $C$DW$578, DW_AT_name("CMR11")
.dwattr $C$DW$578, DW_AT_TI_symbol_name("CMR11")
.dwattr $C$DW$578, DW_AT_data_member_location[DW_OP_plus_uconst 0x0]
.dwattr $C$DW$578, DW_AT_accessibility(DW_ACCESS_public)
.dwattr $C$DW$578, DW_AT_decl_file("/usr/share/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$578, DW_AT_decl_line(0x1d1)
.dwattr $C$DW$578, DW_AT_decl_column(0x15)
$C$DW$579 .dwtag DW_TAG_member
.dwattr $C$DW$579, DW_AT_type(*$C$DW$T$209)
.dwattr $C$DW$579, DW_AT_name("CMR11_bit")
.dwattr $C$DW$579, DW_AT_TI_symbol_name("CMR11_bit")
.dwattr $C$DW$579, DW_AT_data_member_location[DW_OP_plus_uconst 0x0]
.dwattr $C$DW$579, DW_AT_accessibility(DW_ACCESS_public)
.dwattr $C$DW$579, DW_AT_decl_file("/usr/share/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$579, DW_AT_decl_line(0x1dc)
.dwattr $C$DW$579, DW_AT_decl_column(0x05)
.dwattr $C$DW$T$210, DW_AT_decl_file("/usr/share/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$T$210, DW_AT_decl_line(0x1d0)
.dwattr $C$DW$T$210, DW_AT_decl_column(0x08)
.dwendtag $C$DW$T$210
$C$DW$T$212 .dwtag DW_TAG_union_type
.dwattr $C$DW$T$212, DW_AT_byte_size(0x04)
$C$DW$580 .dwtag DW_TAG_member
.dwattr $C$DW$580, DW_AT_type(*$C$DW$T$122)
.dwattr $C$DW$580, DW_AT_name("CMR12")
.dwattr $C$DW$580, DW_AT_TI_symbol_name("CMR12")
.dwattr $C$DW$580, DW_AT_data_member_location[DW_OP_plus_uconst 0x0]
.dwattr $C$DW$580, DW_AT_accessibility(DW_ACCESS_public)
.dwattr $C$DW$580, DW_AT_decl_file("/usr/share/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$580, DW_AT_decl_line(0x1e2)
.dwattr $C$DW$580, DW_AT_decl_column(0x15)
$C$DW$581 .dwtag DW_TAG_member
.dwattr $C$DW$581, DW_AT_type(*$C$DW$T$211)
.dwattr $C$DW$581, DW_AT_name("CMR12_bit")
.dwattr $C$DW$581, DW_AT_TI_symbol_name("CMR12_bit")
.dwattr $C$DW$581, DW_AT_data_member_location[DW_OP_plus_uconst 0x0]
.dwattr $C$DW$581, DW_AT_accessibility(DW_ACCESS_public)
.dwattr $C$DW$581, DW_AT_decl_file("/usr/share/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$581, DW_AT_decl_line(0x1ed)
.dwattr $C$DW$581, DW_AT_decl_column(0x05)
.dwattr $C$DW$T$212, DW_AT_decl_file("/usr/share/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$T$212, DW_AT_decl_line(0x1e1)
.dwattr $C$DW$T$212, DW_AT_decl_column(0x08)
.dwendtag $C$DW$T$212
$C$DW$T$214 .dwtag DW_TAG_union_type
.dwattr $C$DW$T$214, DW_AT_byte_size(0x04)
$C$DW$582 .dwtag DW_TAG_member
.dwattr $C$DW$582, DW_AT_type(*$C$DW$T$122)
.dwattr $C$DW$582, DW_AT_name("CMR13")
.dwattr $C$DW$582, DW_AT_TI_symbol_name("CMR13")
.dwattr $C$DW$582, DW_AT_data_member_location[DW_OP_plus_uconst 0x0]
.dwattr $C$DW$582, DW_AT_accessibility(DW_ACCESS_public)
.dwattr $C$DW$582, DW_AT_decl_file("/usr/share/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$582, DW_AT_decl_line(0x1f3)
.dwattr $C$DW$582, DW_AT_decl_column(0x15)
$C$DW$583 .dwtag DW_TAG_member
.dwattr $C$DW$583, DW_AT_type(*$C$DW$T$213)
.dwattr $C$DW$583, DW_AT_name("CMR13_bit")
.dwattr $C$DW$583, DW_AT_TI_symbol_name("CMR13_bit")
.dwattr $C$DW$583, DW_AT_data_member_location[DW_OP_plus_uconst 0x0]
.dwattr $C$DW$583, DW_AT_accessibility(DW_ACCESS_public)
.dwattr $C$DW$583, DW_AT_decl_file("/usr/share/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$583, DW_AT_decl_line(0x1fe)
.dwattr $C$DW$583, DW_AT_decl_column(0x05)
.dwattr $C$DW$T$214, DW_AT_decl_file("/usr/share/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$T$214, DW_AT_decl_line(0x1f2)
.dwattr $C$DW$T$214, DW_AT_decl_column(0x08)
.dwendtag $C$DW$T$214
$C$DW$T$216 .dwtag DW_TAG_union_type
.dwattr $C$DW$T$216, DW_AT_byte_size(0x04)
$C$DW$584 .dwtag DW_TAG_member
.dwattr $C$DW$584, DW_AT_type(*$C$DW$T$122)
.dwattr $C$DW$584, DW_AT_name("CMR14")
.dwattr $C$DW$584, DW_AT_TI_symbol_name("CMR14")
.dwattr $C$DW$584, DW_AT_data_member_location[DW_OP_plus_uconst 0x0]
.dwattr $C$DW$584, DW_AT_accessibility(DW_ACCESS_public)
.dwattr $C$DW$584, DW_AT_decl_file("/usr/share/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$584, DW_AT_decl_line(0x204)
.dwattr $C$DW$584, DW_AT_decl_column(0x15)
$C$DW$585 .dwtag DW_TAG_member
.dwattr $C$DW$585, DW_AT_type(*$C$DW$T$215)
.dwattr $C$DW$585, DW_AT_name("CMR14_bit")
.dwattr $C$DW$585, DW_AT_TI_symbol_name("CMR14_bit")
.dwattr $C$DW$585, DW_AT_data_member_location[DW_OP_plus_uconst 0x0]
.dwattr $C$DW$585, DW_AT_accessibility(DW_ACCESS_public)
.dwattr $C$DW$585, DW_AT_decl_file("/usr/share/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$585, DW_AT_decl_line(0x20f)
.dwattr $C$DW$585, DW_AT_decl_column(0x05)
.dwattr $C$DW$T$216, DW_AT_decl_file("/usr/share/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$T$216, DW_AT_decl_line(0x203)
.dwattr $C$DW$T$216, DW_AT_decl_column(0x08)
.dwendtag $C$DW$T$216
$C$DW$T$218 .dwtag DW_TAG_union_type
.dwattr $C$DW$T$218, DW_AT_byte_size(0x04)
$C$DW$586 .dwtag DW_TAG_member
.dwattr $C$DW$586, DW_AT_type(*$C$DW$T$122)
.dwattr $C$DW$586, DW_AT_name("CMR15")
.dwattr $C$DW$586, DW_AT_TI_symbol_name("CMR15")
.dwattr $C$DW$586, DW_AT_data_member_location[DW_OP_plus_uconst 0x0]
.dwattr $C$DW$586, DW_AT_accessibility(DW_ACCESS_public)
.dwattr $C$DW$586, DW_AT_decl_file("/usr/share/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$586, DW_AT_decl_line(0x215)
.dwattr $C$DW$586, DW_AT_decl_column(0x15)
$C$DW$587 .dwtag DW_TAG_member
.dwattr $C$DW$587, DW_AT_type(*$C$DW$T$217)
.dwattr $C$DW$587, DW_AT_name("CMR15_bit")
.dwattr $C$DW$587, DW_AT_TI_symbol_name("CMR15_bit")
.dwattr $C$DW$587, DW_AT_data_member_location[DW_OP_plus_uconst 0x0]
.dwattr $C$DW$587, DW_AT_accessibility(DW_ACCESS_public)
.dwattr $C$DW$587, DW_AT_decl_file("/usr/share/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$587, DW_AT_decl_line(0x220)
.dwattr $C$DW$587, DW_AT_decl_column(0x05)
.dwattr $C$DW$T$218, DW_AT_decl_file("/usr/share/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$T$218, DW_AT_decl_line(0x214)
.dwattr $C$DW$T$218, DW_AT_decl_column(0x08)
.dwendtag $C$DW$T$218
$C$DW$T$220 .dwtag DW_TAG_union_type
.dwattr $C$DW$T$220, DW_AT_byte_size(0x04)
$C$DW$588 .dwtag DW_TAG_member
.dwattr $C$DW$588, DW_AT_type(*$C$DW$T$122)
.dwattr $C$DW$588, DW_AT_name("HMR0")
.dwattr $C$DW$588, DW_AT_TI_symbol_name("HMR0")
.dwattr $C$DW$588, DW_AT_data_member_location[DW_OP_plus_uconst 0x0]
.dwattr $C$DW$588, DW_AT_accessibility(DW_ACCESS_public)
.dwattr $C$DW$588, DW_AT_decl_file("/usr/share/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$588, DW_AT_decl_line(0x229)
.dwattr $C$DW$588, DW_AT_decl_column(0x15)
$C$DW$589 .dwtag DW_TAG_member
.dwattr $C$DW$589, DW_AT_type(*$C$DW$T$219)
.dwattr $C$DW$589, DW_AT_name("HMR0_bit")
.dwattr $C$DW$589, DW_AT_TI_symbol_name("HMR0_bit")
.dwattr $C$DW$589, DW_AT_data_member_location[DW_OP_plus_uconst 0x0]
.dwattr $C$DW$589, DW_AT_accessibility(DW_ACCESS_public)
.dwattr $C$DW$589, DW_AT_decl_file("/usr/share/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$589, DW_AT_decl_line(0x234)
.dwattr $C$DW$589, DW_AT_decl_column(0x05)
.dwattr $C$DW$T$220, DW_AT_decl_file("/usr/share/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$T$220, DW_AT_decl_line(0x228)
.dwattr $C$DW$T$220, DW_AT_decl_column(0x08)
.dwendtag $C$DW$T$220
$C$DW$T$222 .dwtag DW_TAG_union_type
.dwattr $C$DW$T$222, DW_AT_byte_size(0x04)
$C$DW$590 .dwtag DW_TAG_member
.dwattr $C$DW$590, DW_AT_type(*$C$DW$T$122)
.dwattr $C$DW$590, DW_AT_name("HMR1")
.dwattr $C$DW$590, DW_AT_TI_symbol_name("HMR1")
.dwattr $C$DW$590, DW_AT_data_member_location[DW_OP_plus_uconst 0x0]
.dwattr $C$DW$590, DW_AT_accessibility(DW_ACCESS_public)
.dwattr $C$DW$590, DW_AT_decl_file("/usr/share/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$590, DW_AT_decl_line(0x23a)
.dwattr $C$DW$590, DW_AT_decl_column(0x15)
$C$DW$591 .dwtag DW_TAG_member
.dwattr $C$DW$591, DW_AT_type(*$C$DW$T$221)
.dwattr $C$DW$591, DW_AT_name("HMR1_bit")
.dwattr $C$DW$591, DW_AT_TI_symbol_name("HMR1_bit")
.dwattr $C$DW$591, DW_AT_data_member_location[DW_OP_plus_uconst 0x0]
.dwattr $C$DW$591, DW_AT_accessibility(DW_ACCESS_public)
.dwattr $C$DW$591, DW_AT_decl_file("/usr/share/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$591, DW_AT_decl_line(0x245)
.dwattr $C$DW$591, DW_AT_decl_column(0x05)
.dwattr $C$DW$T$222, DW_AT_decl_file("/usr/share/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$T$222, DW_AT_decl_line(0x239)
.dwattr $C$DW$T$222, DW_AT_decl_column(0x08)
.dwendtag $C$DW$T$222
$C$DW$T$224 .dwtag DW_TAG_union_type
.dwattr $C$DW$T$224, DW_AT_byte_size(0x04)
$C$DW$592 .dwtag DW_TAG_member
.dwattr $C$DW$592, DW_AT_type(*$C$DW$T$122)
.dwattr $C$DW$592, DW_AT_name("HMR2")
.dwattr $C$DW$592, DW_AT_TI_symbol_name("HMR2")
.dwattr $C$DW$592, DW_AT_data_member_location[DW_OP_plus_uconst 0x0]
.dwattr $C$DW$592, DW_AT_accessibility(DW_ACCESS_public)
.dwattr $C$DW$592, DW_AT_decl_file("/usr/share/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$592, DW_AT_decl_line(0x24b)
.dwattr $C$DW$592, DW_AT_decl_column(0x15)
$C$DW$593 .dwtag DW_TAG_member
.dwattr $C$DW$593, DW_AT_type(*$C$DW$T$223)
.dwattr $C$DW$593, DW_AT_name("HMR2_bit")
.dwattr $C$DW$593, DW_AT_TI_symbol_name("HMR2_bit")
.dwattr $C$DW$593, DW_AT_data_member_location[DW_OP_plus_uconst 0x0]
.dwattr $C$DW$593, DW_AT_accessibility(DW_ACCESS_public)
.dwattr $C$DW$593, DW_AT_decl_file("/usr/share/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$593, DW_AT_decl_line(0x252)
.dwattr $C$DW$593, DW_AT_decl_column(0x05)
.dwattr $C$DW$T$224, DW_AT_decl_file("/usr/share/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$T$224, DW_AT_decl_line(0x24a)
.dwattr $C$DW$T$224, DW_AT_decl_column(0x08)
.dwendtag $C$DW$T$224
$C$DW$T$226 .dwtag DW_TAG_union_type
.dwattr $C$DW$T$226, DW_AT_byte_size(0x04)
$C$DW$594 .dwtag DW_TAG_member
.dwattr $C$DW$594, DW_AT_type(*$C$DW$T$122)
.dwattr $C$DW$594, DW_AT_name("HIPIR0")
.dwattr $C$DW$594, DW_AT_TI_symbol_name("HIPIR0")
.dwattr $C$DW$594, DW_AT_data_member_location[DW_OP_plus_uconst 0x0]
.dwattr $C$DW$594, DW_AT_accessibility(DW_ACCESS_public)
.dwattr $C$DW$594, DW_AT_decl_file("/usr/share/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$594, DW_AT_decl_line(0x25b)
.dwattr $C$DW$594, DW_AT_decl_column(0x15)
$C$DW$595 .dwtag DW_TAG_member
.dwattr $C$DW$595, DW_AT_type(*$C$DW$T$225)
.dwattr $C$DW$595, DW_AT_name("HIPIR0_bit")
.dwattr $C$DW$595, DW_AT_TI_symbol_name("HIPIR0_bit")
.dwattr $C$DW$595, DW_AT_data_member_location[DW_OP_plus_uconst 0x0]
.dwattr $C$DW$595, DW_AT_accessibility(DW_ACCESS_public)
.dwattr $C$DW$595, DW_AT_decl_file("/usr/share/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$595, DW_AT_decl_line(0x261)
.dwattr $C$DW$595, DW_AT_decl_column(0x05)
.dwattr $C$DW$T$226, DW_AT_decl_file("/usr/share/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$T$226, DW_AT_decl_line(0x25a)
.dwattr $C$DW$T$226, DW_AT_decl_column(0x08)
.dwendtag $C$DW$T$226
$C$DW$T$228 .dwtag DW_TAG_union_type
.dwattr $C$DW$T$228, DW_AT_byte_size(0x04)
$C$DW$596 .dwtag DW_TAG_member
.dwattr $C$DW$596, DW_AT_type(*$C$DW$T$122)
.dwattr $C$DW$596, DW_AT_name("HIPIR1")
.dwattr $C$DW$596, DW_AT_TI_symbol_name("HIPIR1")
.dwattr $C$DW$596, DW_AT_data_member_location[DW_OP_plus_uconst 0x0]
.dwattr $C$DW$596, DW_AT_accessibility(DW_ACCESS_public)
.dwattr $C$DW$596, DW_AT_decl_file("/usr/share/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$596, DW_AT_decl_line(0x267)
.dwattr $C$DW$596, DW_AT_decl_column(0x15)
$C$DW$597 .dwtag DW_TAG_member
.dwattr $C$DW$597, DW_AT_type(*$C$DW$T$227)
.dwattr $C$DW$597, DW_AT_name("HIPIR1_bit")
.dwattr $C$DW$597, DW_AT_TI_symbol_name("HIPIR1_bit")
.dwattr $C$DW$597, DW_AT_data_member_location[DW_OP_plus_uconst 0x0]
.dwattr $C$DW$597, DW_AT_accessibility(DW_ACCESS_public)
.dwattr $C$DW$597, DW_AT_decl_file("/usr/share/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$597, DW_AT_decl_line(0x26d)
.dwattr $C$DW$597, DW_AT_decl_column(0x05)
.dwattr $C$DW$T$228, DW_AT_decl_file("/usr/share/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$T$228, DW_AT_decl_line(0x266)
.dwattr $C$DW$T$228, DW_AT_decl_column(0x08)
.dwendtag $C$DW$T$228
$C$DW$T$230 .dwtag DW_TAG_union_type
.dwattr $C$DW$T$230, DW_AT_byte_size(0x04)
$C$DW$598 .dwtag DW_TAG_member
.dwattr $C$DW$598, DW_AT_type(*$C$DW$T$122)
.dwattr $C$DW$598, DW_AT_name("HIPIR2")
.dwattr $C$DW$598, DW_AT_TI_symbol_name("HIPIR2")
.dwattr $C$DW$598, DW_AT_data_member_location[DW_OP_plus_uconst 0x0]
.dwattr $C$DW$598, DW_AT_accessibility(DW_ACCESS_public)
.dwattr $C$DW$598, DW_AT_decl_file("/usr/share/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$598, DW_AT_decl_line(0x273)
.dwattr $C$DW$598, DW_AT_decl_column(0x15)
$C$DW$599 .dwtag DW_TAG_member
.dwattr $C$DW$599, DW_AT_type(*$C$DW$T$229)
.dwattr $C$DW$599, DW_AT_name("HIPIR2_bit")
.dwattr $C$DW$599, DW_AT_TI_symbol_name("HIPIR2_bit")
.dwattr $C$DW$599, DW_AT_data_member_location[DW_OP_plus_uconst 0x0]
.dwattr $C$DW$599, DW_AT_accessibility(DW_ACCESS_public)
.dwattr $C$DW$599, DW_AT_decl_file("/usr/share/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$599, DW_AT_decl_line(0x279)
.dwattr $C$DW$599, DW_AT_decl_column(0x05)
.dwattr $C$DW$T$230, DW_AT_decl_file("/usr/share/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$T$230, DW_AT_decl_line(0x272)
.dwattr $C$DW$T$230, DW_AT_decl_column(0x08)
.dwendtag $C$DW$T$230
$C$DW$T$232 .dwtag DW_TAG_union_type
.dwattr $C$DW$T$232, DW_AT_byte_size(0x04)
$C$DW$600 .dwtag DW_TAG_member
.dwattr $C$DW$600, DW_AT_type(*$C$DW$T$122)
.dwattr $C$DW$600, DW_AT_name("HIPIR3")
.dwattr $C$DW$600, DW_AT_TI_symbol_name("HIPIR3")
.dwattr $C$DW$600, DW_AT_data_member_location[DW_OP_plus_uconst 0x0]
.dwattr $C$DW$600, DW_AT_accessibility(DW_ACCESS_public)
.dwattr $C$DW$600, DW_AT_decl_file("/usr/share/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$600, DW_AT_decl_line(0x27f)
.dwattr $C$DW$600, DW_AT_decl_column(0x15)
$C$DW$601 .dwtag DW_TAG_member
.dwattr $C$DW$601, DW_AT_type(*$C$DW$T$231)
.dwattr $C$DW$601, DW_AT_name("HIPIR3_bit")
.dwattr $C$DW$601, DW_AT_TI_symbol_name("HIPIR3_bit")
.dwattr $C$DW$601, DW_AT_data_member_location[DW_OP_plus_uconst 0x0]
.dwattr $C$DW$601, DW_AT_accessibility(DW_ACCESS_public)
.dwattr $C$DW$601, DW_AT_decl_file("/usr/share/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$601, DW_AT_decl_line(0x285)
.dwattr $C$DW$601, DW_AT_decl_column(0x05)
.dwattr $C$DW$T$232, DW_AT_decl_file("/usr/share/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$T$232, DW_AT_decl_line(0x27e)
.dwattr $C$DW$T$232, DW_AT_decl_column(0x08)
.dwendtag $C$DW$T$232
$C$DW$T$234 .dwtag DW_TAG_union_type
.dwattr $C$DW$T$234, DW_AT_byte_size(0x04)
$C$DW$602 .dwtag DW_TAG_member
.dwattr $C$DW$602, DW_AT_type(*$C$DW$T$122)
.dwattr $C$DW$602, DW_AT_name("HIPIR4")
.dwattr $C$DW$602, DW_AT_TI_symbol_name("HIPIR4")
.dwattr $C$DW$602, DW_AT_data_member_location[DW_OP_plus_uconst 0x0]
.dwattr $C$DW$602, DW_AT_accessibility(DW_ACCESS_public)
.dwattr $C$DW$602, DW_AT_decl_file("/usr/share/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$602, DW_AT_decl_line(0x28b)
.dwattr $C$DW$602, DW_AT_decl_column(0x15)
$C$DW$603 .dwtag DW_TAG_member
.dwattr $C$DW$603, DW_AT_type(*$C$DW$T$233)
.dwattr $C$DW$603, DW_AT_name("HIPIR4_bit")
.dwattr $C$DW$603, DW_AT_TI_symbol_name("HIPIR4_bit")
.dwattr $C$DW$603, DW_AT_data_member_location[DW_OP_plus_uconst 0x0]
.dwattr $C$DW$603, DW_AT_accessibility(DW_ACCESS_public)
.dwattr $C$DW$603, DW_AT_decl_file("/usr/share/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$603, DW_AT_decl_line(0x291)
.dwattr $C$DW$603, DW_AT_decl_column(0x05)
.dwattr $C$DW$T$234, DW_AT_decl_file("/usr/share/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$T$234, DW_AT_decl_line(0x28a)
.dwattr $C$DW$T$234, DW_AT_decl_column(0x08)
.dwendtag $C$DW$T$234
$C$DW$T$236 .dwtag DW_TAG_union_type
.dwattr $C$DW$T$236, DW_AT_byte_size(0x04)
$C$DW$604 .dwtag DW_TAG_member
.dwattr $C$DW$604, DW_AT_type(*$C$DW$T$122)
.dwattr $C$DW$604, DW_AT_name("HIPIR5")
.dwattr $C$DW$604, DW_AT_TI_symbol_name("HIPIR5")
.dwattr $C$DW$604, DW_AT_data_member_location[DW_OP_plus_uconst 0x0]
.dwattr $C$DW$604, DW_AT_accessibility(DW_ACCESS_public)
.dwattr $C$DW$604, DW_AT_decl_file("/usr/share/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$604, DW_AT_decl_line(0x297)
.dwattr $C$DW$604, DW_AT_decl_column(0x15)
$C$DW$605 .dwtag DW_TAG_member
.dwattr $C$DW$605, DW_AT_type(*$C$DW$T$235)
.dwattr $C$DW$605, DW_AT_name("HIPIR5_bit")
.dwattr $C$DW$605, DW_AT_TI_symbol_name("HIPIR5_bit")
.dwattr $C$DW$605, DW_AT_data_member_location[DW_OP_plus_uconst 0x0]
.dwattr $C$DW$605, DW_AT_accessibility(DW_ACCESS_public)
.dwattr $C$DW$605, DW_AT_decl_file("/usr/share/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$605, DW_AT_decl_line(0x29d)
.dwattr $C$DW$605, DW_AT_decl_column(0x05)
.dwattr $C$DW$T$236, DW_AT_decl_file("/usr/share/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$T$236, DW_AT_decl_line(0x296)
.dwattr $C$DW$T$236, DW_AT_decl_column(0x08)
.dwendtag $C$DW$T$236
$C$DW$T$238 .dwtag DW_TAG_union_type
.dwattr $C$DW$T$238, DW_AT_byte_size(0x04)
$C$DW$606 .dwtag DW_TAG_member
.dwattr $C$DW$606, DW_AT_type(*$C$DW$T$122)
.dwattr $C$DW$606, DW_AT_name("HIPIR6")
.dwattr $C$DW$606, DW_AT_TI_symbol_name("HIPIR6")
.dwattr $C$DW$606, DW_AT_data_member_location[DW_OP_plus_uconst 0x0]
.dwattr $C$DW$606, DW_AT_accessibility(DW_ACCESS_public)
.dwattr $C$DW$606, DW_AT_decl_file("/usr/share/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$606, DW_AT_decl_line(0x2a3)
.dwattr $C$DW$606, DW_AT_decl_column(0x15)
$C$DW$607 .dwtag DW_TAG_member
.dwattr $C$DW$607, DW_AT_type(*$C$DW$T$237)
.dwattr $C$DW$607, DW_AT_name("HIPIR6_bit")
.dwattr $C$DW$607, DW_AT_TI_symbol_name("HIPIR6_bit")
.dwattr $C$DW$607, DW_AT_data_member_location[DW_OP_plus_uconst 0x0]
.dwattr $C$DW$607, DW_AT_accessibility(DW_ACCESS_public)
.dwattr $C$DW$607, DW_AT_decl_file("/usr/share/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$607, DW_AT_decl_line(0x2a9)
.dwattr $C$DW$607, DW_AT_decl_column(0x05)
.dwattr $C$DW$T$238, DW_AT_decl_file("/usr/share/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$T$238, DW_AT_decl_line(0x2a2)
.dwattr $C$DW$T$238, DW_AT_decl_column(0x08)
.dwendtag $C$DW$T$238
$C$DW$T$240 .dwtag DW_TAG_union_type
.dwattr $C$DW$T$240, DW_AT_byte_size(0x04)
$C$DW$608 .dwtag DW_TAG_member
.dwattr $C$DW$608, DW_AT_type(*$C$DW$T$122)
.dwattr $C$DW$608, DW_AT_name("HIPIR7")
.dwattr $C$DW$608, DW_AT_TI_symbol_name("HIPIR7")
.dwattr $C$DW$608, DW_AT_data_member_location[DW_OP_plus_uconst 0x0]
.dwattr $C$DW$608, DW_AT_accessibility(DW_ACCESS_public)
.dwattr $C$DW$608, DW_AT_decl_file("/usr/share/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$608, DW_AT_decl_line(0x2af)
.dwattr $C$DW$608, DW_AT_decl_column(0x15)
$C$DW$609 .dwtag DW_TAG_member
.dwattr $C$DW$609, DW_AT_type(*$C$DW$T$239)
.dwattr $C$DW$609, DW_AT_name("HIPIR7_bit")
.dwattr $C$DW$609, DW_AT_TI_symbol_name("HIPIR7_bit")
.dwattr $C$DW$609, DW_AT_data_member_location[DW_OP_plus_uconst 0x0]
.dwattr $C$DW$609, DW_AT_accessibility(DW_ACCESS_public)
.dwattr $C$DW$609, DW_AT_decl_file("/usr/share/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$609, DW_AT_decl_line(0x2b5)
.dwattr $C$DW$609, DW_AT_decl_column(0x05)
.dwattr $C$DW$T$240, DW_AT_decl_file("/usr/share/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$T$240, DW_AT_decl_line(0x2ae)
.dwattr $C$DW$T$240, DW_AT_decl_column(0x08)
.dwendtag $C$DW$T$240
$C$DW$T$242 .dwtag DW_TAG_union_type
.dwattr $C$DW$T$242, DW_AT_byte_size(0x04)
$C$DW$610 .dwtag DW_TAG_member
.dwattr $C$DW$610, DW_AT_type(*$C$DW$T$122)
.dwattr $C$DW$610, DW_AT_name("HIPIR8")
.dwattr $C$DW$610, DW_AT_TI_symbol_name("HIPIR8")
.dwattr $C$DW$610, DW_AT_data_member_location[DW_OP_plus_uconst 0x0]
.dwattr $C$DW$610, DW_AT_accessibility(DW_ACCESS_public)
.dwattr $C$DW$610, DW_AT_decl_file("/usr/share/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$610, DW_AT_decl_line(0x2bb)
.dwattr $C$DW$610, DW_AT_decl_column(0x15)
$C$DW$611 .dwtag DW_TAG_member
.dwattr $C$DW$611, DW_AT_type(*$C$DW$T$241)
.dwattr $C$DW$611, DW_AT_name("HIPIR8_bit")
.dwattr $C$DW$611, DW_AT_TI_symbol_name("HIPIR8_bit")
.dwattr $C$DW$611, DW_AT_data_member_location[DW_OP_plus_uconst 0x0]
.dwattr $C$DW$611, DW_AT_accessibility(DW_ACCESS_public)
.dwattr $C$DW$611, DW_AT_decl_file("/usr/share/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$611, DW_AT_decl_line(0x2c1)
.dwattr $C$DW$611, DW_AT_decl_column(0x05)
.dwattr $C$DW$T$242, DW_AT_decl_file("/usr/share/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$T$242, DW_AT_decl_line(0x2ba)
.dwattr $C$DW$T$242, DW_AT_decl_column(0x08)
.dwendtag $C$DW$T$242
$C$DW$T$244 .dwtag DW_TAG_union_type
.dwattr $C$DW$T$244, DW_AT_byte_size(0x04)
$C$DW$612 .dwtag DW_TAG_member
.dwattr $C$DW$612, DW_AT_type(*$C$DW$T$122)
.dwattr $C$DW$612, DW_AT_name("HIPIR9")
.dwattr $C$DW$612, DW_AT_TI_symbol_name("HIPIR9")
.dwattr $C$DW$612, DW_AT_data_member_location[DW_OP_plus_uconst 0x0]
.dwattr $C$DW$612, DW_AT_accessibility(DW_ACCESS_public)
.dwattr $C$DW$612, DW_AT_decl_file("/usr/share/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$612, DW_AT_decl_line(0x2c7)
.dwattr $C$DW$612, DW_AT_decl_column(0x15)
$C$DW$613 .dwtag DW_TAG_member
.dwattr $C$DW$613, DW_AT_type(*$C$DW$T$243)
.dwattr $C$DW$613, DW_AT_name("HIPIR9_bit")
.dwattr $C$DW$613, DW_AT_TI_symbol_name("HIPIR9_bit")
.dwattr $C$DW$613, DW_AT_data_member_location[DW_OP_plus_uconst 0x0]
.dwattr $C$DW$613, DW_AT_accessibility(DW_ACCESS_public)
.dwattr $C$DW$613, DW_AT_decl_file("/usr/share/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$613, DW_AT_decl_line(0x2cd)
.dwattr $C$DW$613, DW_AT_decl_column(0x05)
.dwattr $C$DW$T$244, DW_AT_decl_file("/usr/share/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$T$244, DW_AT_decl_line(0x2c6)
.dwattr $C$DW$T$244, DW_AT_decl_column(0x08)
.dwendtag $C$DW$T$244
$C$DW$T$246 .dwtag DW_TAG_union_type
.dwattr $C$DW$T$246, DW_AT_byte_size(0x04)
$C$DW$614 .dwtag DW_TAG_member
.dwattr $C$DW$614, DW_AT_type(*$C$DW$T$122)
.dwattr $C$DW$614, DW_AT_name("SIPR0")
.dwattr $C$DW$614, DW_AT_TI_symbol_name("SIPR0")
.dwattr $C$DW$614, DW_AT_data_member_location[DW_OP_plus_uconst 0x0]
.dwattr $C$DW$614, DW_AT_accessibility(DW_ACCESS_public)
.dwattr $C$DW$614, DW_AT_decl_file("/usr/share/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$614, DW_AT_decl_line(0x2d6)
.dwattr $C$DW$614, DW_AT_decl_column(0x15)
$C$DW$615 .dwtag DW_TAG_member
.dwattr $C$DW$615, DW_AT_type(*$C$DW$T$245)
.dwattr $C$DW$615, DW_AT_name("SIPR0_bit")
.dwattr $C$DW$615, DW_AT_TI_symbol_name("SIPR0_bit")
.dwattr $C$DW$615, DW_AT_data_member_location[DW_OP_plus_uconst 0x0]
.dwattr $C$DW$615, DW_AT_accessibility(DW_ACCESS_public)
.dwattr $C$DW$615, DW_AT_decl_file("/usr/share/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$615, DW_AT_decl_line(0x2da)
.dwattr $C$DW$615, DW_AT_decl_column(0x05)
.dwattr $C$DW$T$246, DW_AT_decl_file("/usr/share/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$T$246, DW_AT_decl_line(0x2d5)
.dwattr $C$DW$T$246, DW_AT_decl_column(0x08)
.dwendtag $C$DW$T$246
$C$DW$T$248 .dwtag DW_TAG_union_type
.dwattr $C$DW$T$248, DW_AT_byte_size(0x04)
$C$DW$616 .dwtag DW_TAG_member
.dwattr $C$DW$616, DW_AT_type(*$C$DW$T$122)
.dwattr $C$DW$616, DW_AT_name("SIPR1")
.dwattr $C$DW$616, DW_AT_TI_symbol_name("SIPR1")
.dwattr $C$DW$616, DW_AT_data_member_location[DW_OP_plus_uconst 0x0]
.dwattr $C$DW$616, DW_AT_accessibility(DW_ACCESS_public)
.dwattr $C$DW$616, DW_AT_decl_file("/usr/share/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$616, DW_AT_decl_line(0x2e0)
.dwattr $C$DW$616, DW_AT_decl_column(0x15)
$C$DW$617 .dwtag DW_TAG_member
.dwattr $C$DW$617, DW_AT_type(*$C$DW$T$247)
.dwattr $C$DW$617, DW_AT_name("SIPR1_bit")
.dwattr $C$DW$617, DW_AT_TI_symbol_name("SIPR1_bit")
.dwattr $C$DW$617, DW_AT_data_member_location[DW_OP_plus_uconst 0x0]
.dwattr $C$DW$617, DW_AT_accessibility(DW_ACCESS_public)
.dwattr $C$DW$617, DW_AT_decl_file("/usr/share/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$617, DW_AT_decl_line(0x2e4)
.dwattr $C$DW$617, DW_AT_decl_column(0x05)
.dwattr $C$DW$T$248, DW_AT_decl_file("/usr/share/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$T$248, DW_AT_decl_line(0x2df)
.dwattr $C$DW$T$248, DW_AT_decl_column(0x08)
.dwendtag $C$DW$T$248
$C$DW$T$250 .dwtag DW_TAG_union_type
.dwattr $C$DW$T$250, DW_AT_byte_size(0x04)
$C$DW$618 .dwtag DW_TAG_member
.dwattr $C$DW$618, DW_AT_type(*$C$DW$T$122)
.dwattr $C$DW$618, DW_AT_name("SITR0")
.dwattr $C$DW$618, DW_AT_TI_symbol_name("SITR0")
.dwattr $C$DW$618, DW_AT_data_member_location[DW_OP_plus_uconst 0x0]
.dwattr $C$DW$618, DW_AT_accessibility(DW_ACCESS_public)
.dwattr $C$DW$618, DW_AT_decl_file("/usr/share/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$618, DW_AT_decl_line(0x2ed)
.dwattr $C$DW$618, DW_AT_decl_column(0x15)
$C$DW$619 .dwtag DW_TAG_member
.dwattr $C$DW$619, DW_AT_type(*$C$DW$T$249)
.dwattr $C$DW$619, DW_AT_name("SITR0_bit")
.dwattr $C$DW$619, DW_AT_TI_symbol_name("SITR0_bit")
.dwattr $C$DW$619, DW_AT_data_member_location[DW_OP_plus_uconst 0x0]
.dwattr $C$DW$619, DW_AT_accessibility(DW_ACCESS_public)
.dwattr $C$DW$619, DW_AT_decl_file("/usr/share/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$619, DW_AT_decl_line(0x2f1)
.dwattr $C$DW$619, DW_AT_decl_column(0x05)
.dwattr $C$DW$T$250, DW_AT_decl_file("/usr/share/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$T$250, DW_AT_decl_line(0x2ec)
.dwattr $C$DW$T$250, DW_AT_decl_column(0x08)
.dwendtag $C$DW$T$250
$C$DW$T$252 .dwtag DW_TAG_union_type
.dwattr $C$DW$T$252, DW_AT_byte_size(0x04)
$C$DW$620 .dwtag DW_TAG_member
.dwattr $C$DW$620, DW_AT_type(*$C$DW$T$122)
.dwattr $C$DW$620, DW_AT_name("SITR1")
.dwattr $C$DW$620, DW_AT_TI_symbol_name("SITR1")
.dwattr $C$DW$620, DW_AT_data_member_location[DW_OP_plus_uconst 0x0]
.dwattr $C$DW$620, DW_AT_accessibility(DW_ACCESS_public)
.dwattr $C$DW$620, DW_AT_decl_file("/usr/share/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$620, DW_AT_decl_line(0x2f7)
.dwattr $C$DW$620, DW_AT_decl_column(0x15)
$C$DW$621 .dwtag DW_TAG_member
.dwattr $C$DW$621, DW_AT_type(*$C$DW$T$251)
.dwattr $C$DW$621, DW_AT_name("SITR1_bit")
.dwattr $C$DW$621, DW_AT_TI_symbol_name("SITR1_bit")
.dwattr $C$DW$621, DW_AT_data_member_location[DW_OP_plus_uconst 0x0]
.dwattr $C$DW$621, DW_AT_accessibility(DW_ACCESS_public)
.dwattr $C$DW$621, DW_AT_decl_file("/usr/share/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$621, DW_AT_decl_line(0x2fb)
.dwattr $C$DW$621, DW_AT_decl_column(0x05)
.dwattr $C$DW$T$252, DW_AT_decl_file("/usr/share/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$T$252, DW_AT_decl_line(0x2f6)
.dwattr $C$DW$T$252, DW_AT_decl_column(0x08)
.dwendtag $C$DW$T$252
$C$DW$T$254 .dwtag DW_TAG_union_type
.dwattr $C$DW$T$254, DW_AT_byte_size(0x04)
$C$DW$622 .dwtag DW_TAG_member
.dwattr $C$DW$622, DW_AT_type(*$C$DW$T$122)
.dwattr $C$DW$622, DW_AT_name("HINLR0")
.dwattr $C$DW$622, DW_AT_TI_symbol_name("HINLR0")
.dwattr $C$DW$622, DW_AT_data_member_location[DW_OP_plus_uconst 0x0]
.dwattr $C$DW$622, DW_AT_accessibility(DW_ACCESS_public)
.dwattr $C$DW$622, DW_AT_decl_file("/usr/share/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$622, DW_AT_decl_line(0x304)
.dwattr $C$DW$622, DW_AT_decl_column(0x15)
$C$DW$623 .dwtag DW_TAG_member
.dwattr $C$DW$623, DW_AT_type(*$C$DW$T$253)
.dwattr $C$DW$623, DW_AT_name("HINLR0_bit")
.dwattr $C$DW$623, DW_AT_TI_symbol_name("HINLR0_bit")
.dwattr $C$DW$623, DW_AT_data_member_location[DW_OP_plus_uconst 0x0]
.dwattr $C$DW$623, DW_AT_accessibility(DW_ACCESS_public)
.dwattr $C$DW$623, DW_AT_decl_file("/usr/share/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$623, DW_AT_decl_line(0x30a)
.dwattr $C$DW$623, DW_AT_decl_column(0x05)
.dwattr $C$DW$T$254, DW_AT_decl_file("/usr/share/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$T$254, DW_AT_decl_line(0x303)
.dwattr $C$DW$T$254, DW_AT_decl_column(0x08)
.dwendtag $C$DW$T$254
$C$DW$T$256 .dwtag DW_TAG_union_type
.dwattr $C$DW$T$256, DW_AT_byte_size(0x04)
$C$DW$624 .dwtag DW_TAG_member
.dwattr $C$DW$624, DW_AT_type(*$C$DW$T$122)
.dwattr $C$DW$624, DW_AT_name("HINLR1")
.dwattr $C$DW$624, DW_AT_TI_symbol_name("HINLR1")
.dwattr $C$DW$624, DW_AT_data_member_location[DW_OP_plus_uconst 0x0]
.dwattr $C$DW$624, DW_AT_accessibility(DW_ACCESS_public)
.dwattr $C$DW$624, DW_AT_decl_file("/usr/share/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$624, DW_AT_decl_line(0x310)
.dwattr $C$DW$624, DW_AT_decl_column(0x15)
$C$DW$625 .dwtag DW_TAG_member
.dwattr $C$DW$625, DW_AT_type(*$C$DW$T$255)
.dwattr $C$DW$625, DW_AT_name("HINLR1_bit")
.dwattr $C$DW$625, DW_AT_TI_symbol_name("HINLR1_bit")
.dwattr $C$DW$625, DW_AT_data_member_location[DW_OP_plus_uconst 0x0]
.dwattr $C$DW$625, DW_AT_accessibility(DW_ACCESS_public)
.dwattr $C$DW$625, DW_AT_decl_file("/usr/share/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$625, DW_AT_decl_line(0x316)
.dwattr $C$DW$625, DW_AT_decl_column(0x05)
.dwattr $C$DW$T$256, DW_AT_decl_file("/usr/share/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$T$256, DW_AT_decl_line(0x30f)
.dwattr $C$DW$T$256, DW_AT_decl_column(0x08)
.dwendtag $C$DW$T$256
$C$DW$T$258 .dwtag DW_TAG_union_type
.dwattr $C$DW$T$258, DW_AT_byte_size(0x04)
$C$DW$626 .dwtag DW_TAG_member
.dwattr $C$DW$626, DW_AT_type(*$C$DW$T$122)
.dwattr $C$DW$626, DW_AT_name("HINLR2")
.dwattr $C$DW$626, DW_AT_TI_symbol_name("HINLR2")
.dwattr $C$DW$626, DW_AT_data_member_location[DW_OP_plus_uconst 0x0]
.dwattr $C$DW$626, DW_AT_accessibility(DW_ACCESS_public)
.dwattr $C$DW$626, DW_AT_decl_file("/usr/share/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$626, DW_AT_decl_line(0x31c)
.dwattr $C$DW$626, DW_AT_decl_column(0x15)
$C$DW$627 .dwtag DW_TAG_member
.dwattr $C$DW$627, DW_AT_type(*$C$DW$T$257)
.dwattr $C$DW$627, DW_AT_name("HINLR2_bit")
.dwattr $C$DW$627, DW_AT_TI_symbol_name("HINLR2_bit")
.dwattr $C$DW$627, DW_AT_data_member_location[DW_OP_plus_uconst 0x0]
.dwattr $C$DW$627, DW_AT_accessibility(DW_ACCESS_public)
.dwattr $C$DW$627, DW_AT_decl_file("/usr/share/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$627, DW_AT_decl_line(0x322)
.dwattr $C$DW$627, DW_AT_decl_column(0x05)
.dwattr $C$DW$T$258, DW_AT_decl_file("/usr/share/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$T$258, DW_AT_decl_line(0x31b)
.dwattr $C$DW$T$258, DW_AT_decl_column(0x08)
.dwendtag $C$DW$T$258
$C$DW$T$260 .dwtag DW_TAG_union_type
.dwattr $C$DW$T$260, DW_AT_byte_size(0x04)
$C$DW$628 .dwtag DW_TAG_member
.dwattr $C$DW$628, DW_AT_type(*$C$DW$T$122)
.dwattr $C$DW$628, DW_AT_name("HINLR3")
.dwattr $C$DW$628, DW_AT_TI_symbol_name("HINLR3")
.dwattr $C$DW$628, DW_AT_data_member_location[DW_OP_plus_uconst 0x0]
.dwattr $C$DW$628, DW_AT_accessibility(DW_ACCESS_public)
.dwattr $C$DW$628, DW_AT_decl_file("/usr/share/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$628, DW_AT_decl_line(0x328)
.dwattr $C$DW$628, DW_AT_decl_column(0x15)
$C$DW$629 .dwtag DW_TAG_member
.dwattr $C$DW$629, DW_AT_type(*$C$DW$T$259)
.dwattr $C$DW$629, DW_AT_name("HINLR3_bit")
.dwattr $C$DW$629, DW_AT_TI_symbol_name("HINLR3_bit")
.dwattr $C$DW$629, DW_AT_data_member_location[DW_OP_plus_uconst 0x0]
.dwattr $C$DW$629, DW_AT_accessibility(DW_ACCESS_public)
.dwattr $C$DW$629, DW_AT_decl_file("/usr/share/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$629, DW_AT_decl_line(0x32e)
.dwattr $C$DW$629, DW_AT_decl_column(0x05)
.dwattr $C$DW$T$260, DW_AT_decl_file("/usr/share/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$T$260, DW_AT_decl_line(0x327)
.dwattr $C$DW$T$260, DW_AT_decl_column(0x08)
.dwendtag $C$DW$T$260
$C$DW$T$262 .dwtag DW_TAG_union_type
.dwattr $C$DW$T$262, DW_AT_byte_size(0x04)
$C$DW$630 .dwtag DW_TAG_member
.dwattr $C$DW$630, DW_AT_type(*$C$DW$T$122)
.dwattr $C$DW$630, DW_AT_name("HINLR4")
.dwattr $C$DW$630, DW_AT_TI_symbol_name("HINLR4")
.dwattr $C$DW$630, DW_AT_data_member_location[DW_OP_plus_uconst 0x0]
.dwattr $C$DW$630, DW_AT_accessibility(DW_ACCESS_public)
.dwattr $C$DW$630, DW_AT_decl_file("/usr/share/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$630, DW_AT_decl_line(0x334)
.dwattr $C$DW$630, DW_AT_decl_column(0x15)
$C$DW$631 .dwtag DW_TAG_member
.dwattr $C$DW$631, DW_AT_type(*$C$DW$T$261)
.dwattr $C$DW$631, DW_AT_name("HINLR4_bit")
.dwattr $C$DW$631, DW_AT_TI_symbol_name("HINLR4_bit")
.dwattr $C$DW$631, DW_AT_data_member_location[DW_OP_plus_uconst 0x0]
.dwattr $C$DW$631, DW_AT_accessibility(DW_ACCESS_public)
.dwattr $C$DW$631, DW_AT_decl_file("/usr/share/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$631, DW_AT_decl_line(0x33a)
.dwattr $C$DW$631, DW_AT_decl_column(0x05)
.dwattr $C$DW$T$262, DW_AT_decl_file("/usr/share/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$T$262, DW_AT_decl_line(0x333)
.dwattr $C$DW$T$262, DW_AT_decl_column(0x08)
.dwendtag $C$DW$T$262
$C$DW$T$264 .dwtag DW_TAG_union_type
.dwattr $C$DW$T$264, DW_AT_byte_size(0x04)
$C$DW$632 .dwtag DW_TAG_member
.dwattr $C$DW$632, DW_AT_type(*$C$DW$T$122)
.dwattr $C$DW$632, DW_AT_name("HINLR5")
.dwattr $C$DW$632, DW_AT_TI_symbol_name("HINLR5")
.dwattr $C$DW$632, DW_AT_data_member_location[DW_OP_plus_uconst 0x0]
.dwattr $C$DW$632, DW_AT_accessibility(DW_ACCESS_public)
.dwattr $C$DW$632, DW_AT_decl_file("/usr/share/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$632, DW_AT_decl_line(0x340)
.dwattr $C$DW$632, DW_AT_decl_column(0x15)
$C$DW$633 .dwtag DW_TAG_member
.dwattr $C$DW$633, DW_AT_type(*$C$DW$T$263)
.dwattr $C$DW$633, DW_AT_name("HINLR5_bit")
.dwattr $C$DW$633, DW_AT_TI_symbol_name("HINLR5_bit")
.dwattr $C$DW$633, DW_AT_data_member_location[DW_OP_plus_uconst 0x0]
.dwattr $C$DW$633, DW_AT_accessibility(DW_ACCESS_public)
.dwattr $C$DW$633, DW_AT_decl_file("/usr/share/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$633, DW_AT_decl_line(0x346)
.dwattr $C$DW$633, DW_AT_decl_column(0x05)
.dwattr $C$DW$T$264, DW_AT_decl_file("/usr/share/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$T$264, DW_AT_decl_line(0x33f)
.dwattr $C$DW$T$264, DW_AT_decl_column(0x08)
.dwendtag $C$DW$T$264
$C$DW$T$266 .dwtag DW_TAG_union_type
.dwattr $C$DW$T$266, DW_AT_byte_size(0x04)
$C$DW$634 .dwtag DW_TAG_member
.dwattr $C$DW$634, DW_AT_type(*$C$DW$T$122)
.dwattr $C$DW$634, DW_AT_name("HINLR6")
.dwattr $C$DW$634, DW_AT_TI_symbol_name("HINLR6")
.dwattr $C$DW$634, DW_AT_data_member_location[DW_OP_plus_uconst 0x0]
.dwattr $C$DW$634, DW_AT_accessibility(DW_ACCESS_public)
.dwattr $C$DW$634, DW_AT_decl_file("/usr/share/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$634, DW_AT_decl_line(0x34c)
.dwattr $C$DW$634, DW_AT_decl_column(0x15)
$C$DW$635 .dwtag DW_TAG_member
.dwattr $C$DW$635, DW_AT_type(*$C$DW$T$265)
.dwattr $C$DW$635, DW_AT_name("HINLR6_bit")
.dwattr $C$DW$635, DW_AT_TI_symbol_name("HINLR6_bit")
.dwattr $C$DW$635, DW_AT_data_member_location[DW_OP_plus_uconst 0x0]
.dwattr $C$DW$635, DW_AT_accessibility(DW_ACCESS_public)
.dwattr $C$DW$635, DW_AT_decl_file("/usr/share/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$635, DW_AT_decl_line(0x352)
.dwattr $C$DW$635, DW_AT_decl_column(0x05)
.dwattr $C$DW$T$266, DW_AT_decl_file("/usr/share/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$T$266, DW_AT_decl_line(0x34b)
.dwattr $C$DW$T$266, DW_AT_decl_column(0x08)
.dwendtag $C$DW$T$266
$C$DW$T$268 .dwtag DW_TAG_union_type
.dwattr $C$DW$T$268, DW_AT_byte_size(0x04)
$C$DW$636 .dwtag DW_TAG_member
.dwattr $C$DW$636, DW_AT_type(*$C$DW$T$122)
.dwattr $C$DW$636, DW_AT_name("HINLR7")
.dwattr $C$DW$636, DW_AT_TI_symbol_name("HINLR7")
.dwattr $C$DW$636, DW_AT_data_member_location[DW_OP_plus_uconst 0x0]
.dwattr $C$DW$636, DW_AT_accessibility(DW_ACCESS_public)
.dwattr $C$DW$636, DW_AT_decl_file("/usr/share/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$636, DW_AT_decl_line(0x358)
.dwattr $C$DW$636, DW_AT_decl_column(0x15)
$C$DW$637 .dwtag DW_TAG_member
.dwattr $C$DW$637, DW_AT_type(*$C$DW$T$267)
.dwattr $C$DW$637, DW_AT_name("HINLR7_bit")
.dwattr $C$DW$637, DW_AT_TI_symbol_name("HINLR7_bit")
.dwattr $C$DW$637, DW_AT_data_member_location[DW_OP_plus_uconst 0x0]
.dwattr $C$DW$637, DW_AT_accessibility(DW_ACCESS_public)
.dwattr $C$DW$637, DW_AT_decl_file("/usr/share/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$637, DW_AT_decl_line(0x35e)
.dwattr $C$DW$637, DW_AT_decl_column(0x05)
.dwattr $C$DW$T$268, DW_AT_decl_file("/usr/share/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$T$268, DW_AT_decl_line(0x357)
.dwattr $C$DW$T$268, DW_AT_decl_column(0x08)
.dwendtag $C$DW$T$268
$C$DW$T$270 .dwtag DW_TAG_union_type
.dwattr $C$DW$T$270, DW_AT_byte_size(0x04)
$C$DW$638 .dwtag DW_TAG_member
.dwattr $C$DW$638, DW_AT_type(*$C$DW$T$122)
.dwattr $C$DW$638, DW_AT_name("HINLR8")
.dwattr $C$DW$638, DW_AT_TI_symbol_name("HINLR8")
.dwattr $C$DW$638, DW_AT_data_member_location[DW_OP_plus_uconst 0x0]
.dwattr $C$DW$638, DW_AT_accessibility(DW_ACCESS_public)
.dwattr $C$DW$638, DW_AT_decl_file("/usr/share/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$638, DW_AT_decl_line(0x364)
.dwattr $C$DW$638, DW_AT_decl_column(0x15)
$C$DW$639 .dwtag DW_TAG_member
.dwattr $C$DW$639, DW_AT_type(*$C$DW$T$269)
.dwattr $C$DW$639, DW_AT_name("HINLR8_bit")
.dwattr $C$DW$639, DW_AT_TI_symbol_name("HINLR8_bit")
.dwattr $C$DW$639, DW_AT_data_member_location[DW_OP_plus_uconst 0x0]
.dwattr $C$DW$639, DW_AT_accessibility(DW_ACCESS_public)
.dwattr $C$DW$639, DW_AT_decl_file("/usr/share/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$639, DW_AT_decl_line(0x36a)
.dwattr $C$DW$639, DW_AT_decl_column(0x05)
.dwattr $C$DW$T$270, DW_AT_decl_file("/usr/share/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$T$270, DW_AT_decl_line(0x363)
.dwattr $C$DW$T$270, DW_AT_decl_column(0x08)
.dwendtag $C$DW$T$270
$C$DW$T$272 .dwtag DW_TAG_union_type
.dwattr $C$DW$T$272, DW_AT_byte_size(0x04)
$C$DW$640 .dwtag DW_TAG_member
.dwattr $C$DW$640, DW_AT_type(*$C$DW$T$122)
.dwattr $C$DW$640, DW_AT_name("HINLR9")
.dwattr $C$DW$640, DW_AT_TI_symbol_name("HINLR9")
.dwattr $C$DW$640, DW_AT_data_member_location[DW_OP_plus_uconst 0x0]
.dwattr $C$DW$640, DW_AT_accessibility(DW_ACCESS_public)
.dwattr $C$DW$640, DW_AT_decl_file("/usr/share/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$640, DW_AT_decl_line(0x370)
.dwattr $C$DW$640, DW_AT_decl_column(0x15)
$C$DW$641 .dwtag DW_TAG_member
.dwattr $C$DW$641, DW_AT_type(*$C$DW$T$271)
.dwattr $C$DW$641, DW_AT_name("HINLR9_bit")
.dwattr $C$DW$641, DW_AT_TI_symbol_name("HINLR9_bit")
.dwattr $C$DW$641, DW_AT_data_member_location[DW_OP_plus_uconst 0x0]
.dwattr $C$DW$641, DW_AT_accessibility(DW_ACCESS_public)
.dwattr $C$DW$641, DW_AT_decl_file("/usr/share/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$641, DW_AT_decl_line(0x376)
.dwattr $C$DW$641, DW_AT_decl_column(0x05)
.dwattr $C$DW$T$272, DW_AT_decl_file("/usr/share/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$T$272, DW_AT_decl_line(0x36f)
.dwattr $C$DW$T$272, DW_AT_decl_column(0x08)
.dwendtag $C$DW$T$272
$C$DW$T$274 .dwtag DW_TAG_union_type
.dwattr $C$DW$T$274, DW_AT_byte_size(0x04)
$C$DW$642 .dwtag DW_TAG_member
.dwattr $C$DW$642, DW_AT_type(*$C$DW$T$122)
.dwattr $C$DW$642, DW_AT_name("HIER")
.dwattr $C$DW$642, DW_AT_TI_symbol_name("HIER")
.dwattr $C$DW$642, DW_AT_data_member_location[DW_OP_plus_uconst 0x0]
.dwattr $C$DW$642, DW_AT_accessibility(DW_ACCESS_public)
.dwattr $C$DW$642, DW_AT_decl_file("/usr/share/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$642, DW_AT_decl_line(0x37f)
.dwattr $C$DW$642, DW_AT_decl_column(0x15)
$C$DW$643 .dwtag DW_TAG_member
.dwattr $C$DW$643, DW_AT_type(*$C$DW$T$273)
.dwattr $C$DW$643, DW_AT_name("HIER_bit")
.dwattr $C$DW$643, DW_AT_TI_symbol_name("HIER_bit")
.dwattr $C$DW$643, DW_AT_data_member_location[DW_OP_plus_uconst 0x0]
.dwattr $C$DW$643, DW_AT_accessibility(DW_ACCESS_public)
.dwattr $C$DW$643, DW_AT_decl_file("/usr/share/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$643, DW_AT_decl_line(0x384)
.dwattr $C$DW$643, DW_AT_decl_column(0x05)
.dwattr $C$DW$T$274, DW_AT_decl_file("/usr/share/ti/pru-software-support-package/include/am335x/pru_intc.h")
.dwattr $C$DW$T$274, DW_AT_decl_line(0x37e)
.dwattr $C$DW$T$274, DW_AT_decl_column(0x08)
.dwendtag $C$DW$T$274
$C$DW$T$276 .dwtag DW_TAG_union_type
.dwattr $C$DW$T$276, DW_AT_byte_size(0x04)
$C$DW$644 .dwtag DW_TAG_member
.dwattr $C$DW$644, DW_AT_type(*$C$DW$T$122)
.dwattr $C$DW$644, DW_AT_name("CTRL")
.dwattr $C$DW$644, DW_AT_TI_symbol_name("CTRL")
.dwattr $C$DW$644, DW_AT_data_member_location[DW_OP_plus_uconst 0x0]
.dwattr $C$DW$644, DW_AT_accessibility(DW_ACCESS_public)
.dwattr $C$DW$644, DW_AT_decl_file("/usr/share/ti/pru-software-support-package/include/am335x/pru_ctrl.h")
.dwattr $C$DW$644, DW_AT_decl_line(0x2a)
.dwattr $C$DW$644, DW_AT_decl_column(0x15)
$C$DW$645 .dwtag DW_TAG_member
.dwattr $C$DW$645, DW_AT_type(*$C$DW$T$275)
.dwattr $C$DW$645, DW_AT_name("CTRL_bit")
.dwattr $C$DW$645, DW_AT_TI_symbol_name("CTRL_bit")
.dwattr $C$DW$645, DW_AT_data_member_location[DW_OP_plus_uconst 0x0]
.dwattr $C$DW$645, DW_AT_accessibility(DW_ACCESS_public)
.dwattr $C$DW$645, DW_AT_decl_file("/usr/share/ti/pru-software-support-package/include/am335x/pru_ctrl.h")
.dwattr $C$DW$645, DW_AT_decl_line(0x36)
.dwattr $C$DW$645, DW_AT_decl_column(0x05)
.dwattr $C$DW$T$276, DW_AT_decl_file("/usr/share/ti/pru-software-support-package/include/am335x/pru_ctrl.h")
.dwattr $C$DW$T$276, DW_AT_decl_line(0x29)
.dwattr $C$DW$T$276, DW_AT_decl_column(0x08)
.dwendtag $C$DW$T$276
$C$DW$T$278 .dwtag DW_TAG_union_type
.dwattr $C$DW$T$278, DW_AT_byte_size(0x04)
$C$DW$646 .dwtag DW_TAG_member
.dwattr $C$DW$646, DW_AT_type(*$C$DW$T$122)
.dwattr $C$DW$646, DW_AT_name("STS")
.dwattr $C$DW$646, DW_AT_TI_symbol_name("STS")
.dwattr $C$DW$646, DW_AT_data_member_location[DW_OP_plus_uconst 0x0]
.dwattr $C$DW$646, DW_AT_accessibility(DW_ACCESS_public)
.dwattr $C$DW$646, DW_AT_decl_file("/usr/share/ti/pru-software-support-package/include/am335x/pru_ctrl.h")
.dwattr $C$DW$646, DW_AT_decl_line(0x3c)
.dwattr $C$DW$646, DW_AT_decl_column(0x15)
$C$DW$647 .dwtag DW_TAG_member
.dwattr $C$DW$647, DW_AT_type(*$C$DW$T$277)
.dwattr $C$DW$647, DW_AT_name("STS_bit")
.dwattr $C$DW$647, DW_AT_TI_symbol_name("STS_bit")
.dwattr $C$DW$647, DW_AT_data_member_location[DW_OP_plus_uconst 0x0]
.dwattr $C$DW$647, DW_AT_accessibility(DW_ACCESS_public)
.dwattr $C$DW$647, DW_AT_decl_file("/usr/share/ti/pru-software-support-package/include/am335x/pru_ctrl.h")
.dwattr $C$DW$647, DW_AT_decl_line(0x41)
.dwattr $C$DW$647, DW_AT_decl_column(0x05)
.dwattr $C$DW$T$278, DW_AT_decl_file("/usr/share/ti/pru-software-support-package/include/am335x/pru_ctrl.h")
.dwattr $C$DW$T$278, DW_AT_decl_line(0x3b)
.dwattr $C$DW$T$278, DW_AT_decl_column(0x08)
.dwendtag $C$DW$T$278
$C$DW$T$280 .dwtag DW_TAG_union_type
.dwattr $C$DW$T$280, DW_AT_byte_size(0x04)
$C$DW$648 .dwtag DW_TAG_member
.dwattr $C$DW$648, DW_AT_type(*$C$DW$T$122)
.dwattr $C$DW$648, DW_AT_name("WAKEUP_EN")
.dwattr $C$DW$648, DW_AT_TI_symbol_name("WAKEUP_EN")
.dwattr $C$DW$648, DW_AT_data_member_location[DW_OP_plus_uconst 0x0]
.dwattr $C$DW$648, DW_AT_accessibility(DW_ACCESS_public)
.dwattr $C$DW$648, DW_AT_decl_file("/usr/share/ti/pru-software-support-package/include/am335x/pru_ctrl.h")
.dwattr $C$DW$648, DW_AT_decl_line(0x47)
.dwattr $C$DW$648, DW_AT_decl_column(0x15)
$C$DW$649 .dwtag DW_TAG_member
.dwattr $C$DW$649, DW_AT_type(*$C$DW$T$279)
.dwattr $C$DW$649, DW_AT_name("WAKEUP_EN_bit")
.dwattr $C$DW$649, DW_AT_TI_symbol_name("WAKEUP_EN_bit")
.dwattr $C$DW$649, DW_AT_data_member_location[DW_OP_plus_uconst 0x0]
.dwattr $C$DW$649, DW_AT_accessibility(DW_ACCESS_public)
.dwattr $C$DW$649, DW_AT_decl_file("/usr/share/ti/pru-software-support-package/include/am335x/pru_ctrl.h")
.dwattr $C$DW$649, DW_AT_decl_line(0x4b)
.dwattr $C$DW$649, DW_AT_decl_column(0x05)
.dwattr $C$DW$T$280, DW_AT_decl_file("/usr/share/ti/pru-software-support-package/include/am335x/pru_ctrl.h")
.dwattr $C$DW$T$280, DW_AT_decl_line(0x46)
.dwattr $C$DW$T$280, DW_AT_decl_column(0x08)
.dwendtag $C$DW$T$280
$C$DW$T$282 .dwtag DW_TAG_union_type
.dwattr $C$DW$T$282, DW_AT_byte_size(0x04)
$C$DW$650 .dwtag DW_TAG_member
.dwattr $C$DW$650, DW_AT_type(*$C$DW$T$122)
.dwattr $C$DW$650, DW_AT_name("CYCLE")
.dwattr $C$DW$650, DW_AT_TI_symbol_name("CYCLE")
.dwattr $C$DW$650, DW_AT_data_member_location[DW_OP_plus_uconst 0x0]
.dwattr $C$DW$650, DW_AT_accessibility(DW_ACCESS_public)
.dwattr $C$DW$650, DW_AT_decl_file("/usr/share/ti/pru-software-support-package/include/am335x/pru_ctrl.h")
.dwattr $C$DW$650, DW_AT_decl_line(0x51)
.dwattr $C$DW$650, DW_AT_decl_column(0x15)
$C$DW$651 .dwtag DW_TAG_member
.dwattr $C$DW$651, DW_AT_type(*$C$DW$T$281)
.dwattr $C$DW$651, DW_AT_name("CYCLE_bit")
.dwattr $C$DW$651, DW_AT_TI_symbol_name("CYCLE_bit")
.dwattr $C$DW$651, DW_AT_data_member_location[DW_OP_plus_uconst 0x0]
.dwattr $C$DW$651, DW_AT_accessibility(DW_ACCESS_public)
.dwattr $C$DW$651, DW_AT_decl_file("/usr/share/ti/pru-software-support-package/include/am335x/pru_ctrl.h")
.dwattr $C$DW$651, DW_AT_decl_line(0x55)
.dwattr $C$DW$651, DW_AT_decl_column(0x05)
.dwattr $C$DW$T$282, DW_AT_decl_file("/usr/share/ti/pru-software-support-package/include/am335x/pru_ctrl.h")
.dwattr $C$DW$T$282, DW_AT_decl_line(0x50)
.dwattr $C$DW$T$282, DW_AT_decl_column(0x08)
.dwendtag $C$DW$T$282
$C$DW$T$284 .dwtag DW_TAG_union_type
.dwattr $C$DW$T$284, DW_AT_byte_size(0x04)
$C$DW$652 .dwtag DW_TAG_member
.dwattr $C$DW$652, DW_AT_type(*$C$DW$T$122)
.dwattr $C$DW$652, DW_AT_name("STALL")
.dwattr $C$DW$652, DW_AT_TI_symbol_name("STALL")
.dwattr $C$DW$652, DW_AT_data_member_location[DW_OP_plus_uconst 0x0]
.dwattr $C$DW$652, DW_AT_accessibility(DW_ACCESS_public)
.dwattr $C$DW$652, DW_AT_decl_file("/usr/share/ti/pru-software-support-package/include/am335x/pru_ctrl.h")
.dwattr $C$DW$652, DW_AT_decl_line(0x5b)
.dwattr $C$DW$652, DW_AT_decl_column(0x15)
$C$DW$653 .dwtag DW_TAG_member
.dwattr $C$DW$653, DW_AT_type(*$C$DW$T$283)
.dwattr $C$DW$653, DW_AT_name("STALL_bit")
.dwattr $C$DW$653, DW_AT_TI_symbol_name("STALL_bit")
.dwattr $C$DW$653, DW_AT_data_member_location[DW_OP_plus_uconst 0x0]
.dwattr $C$DW$653, DW_AT_accessibility(DW_ACCESS_public)
.dwattr $C$DW$653, DW_AT_decl_file("/usr/share/ti/pru-software-support-package/include/am335x/pru_ctrl.h")
.dwattr $C$DW$653, DW_AT_decl_line(0x5f)
.dwattr $C$DW$653, DW_AT_decl_column(0x05)
.dwattr $C$DW$T$284, DW_AT_decl_file("/usr/share/ti/pru-software-support-package/include/am335x/pru_ctrl.h")
.dwattr $C$DW$T$284, DW_AT_decl_line(0x5a)
.dwattr $C$DW$T$284, DW_AT_decl_column(0x08)
.dwendtag $C$DW$T$284
$C$DW$T$286 .dwtag DW_TAG_union_type
.dwattr $C$DW$T$286, DW_AT_byte_size(0x04)
$C$DW$654 .dwtag DW_TAG_member
.dwattr $C$DW$654, DW_AT_type(*$C$DW$T$122)
.dwattr $C$DW$654, DW_AT_name("CTBIR0")
.dwattr $C$DW$654, DW_AT_TI_symbol_name("CTBIR0")
.dwattr $C$DW$654, DW_AT_data_member_location[DW_OP_plus_uconst 0x0]
.dwattr $C$DW$654, DW_AT_accessibility(DW_ACCESS_public)
.dwattr $C$DW$654, DW_AT_decl_file("/usr/share/ti/pru-software-support-package/include/am335x/pru_ctrl.h")
.dwattr $C$DW$654, DW_AT_decl_line(0x68)
.dwattr $C$DW$654, DW_AT_decl_column(0x15)
$C$DW$655 .dwtag DW_TAG_member
.dwattr $C$DW$655, DW_AT_type(*$C$DW$T$285)
.dwattr $C$DW$655, DW_AT_name("CTBIR0_bit")
.dwattr $C$DW$655, DW_AT_TI_symbol_name("CTBIR0_bit")
.dwattr $C$DW$655, DW_AT_data_member_location[DW_OP_plus_uconst 0x0]
.dwattr $C$DW$655, DW_AT_accessibility(DW_ACCESS_public)
.dwattr $C$DW$655, DW_AT_decl_file("/usr/share/ti/pru-software-support-package/include/am335x/pru_ctrl.h")
.dwattr $C$DW$655, DW_AT_decl_line(0x6f)
.dwattr $C$DW$655, DW_AT_decl_column(0x05)
.dwattr $C$DW$T$286, DW_AT_decl_file("/usr/share/ti/pru-software-support-package/include/am335x/pru_ctrl.h")
.dwattr $C$DW$T$286, DW_AT_decl_line(0x67)
.dwattr $C$DW$T$286, DW_AT_decl_column(0x08)
.dwendtag $C$DW$T$286
$C$DW$T$288 .dwtag DW_TAG_union_type
.dwattr $C$DW$T$288, DW_AT_byte_size(0x04)
$C$DW$656 .dwtag DW_TAG_member
.dwattr $C$DW$656, DW_AT_type(*$C$DW$T$122)
.dwattr $C$DW$656, DW_AT_name("CTBIR1")
.dwattr $C$DW$656, DW_AT_TI_symbol_name("CTBIR1")
.dwattr $C$DW$656, DW_AT_data_member_location[DW_OP_plus_uconst 0x0]
.dwattr $C$DW$656, DW_AT_accessibility(DW_ACCESS_public)
.dwattr $C$DW$656, DW_AT_decl_file("/usr/share/ti/pru-software-support-package/include/am335x/pru_ctrl.h")
.dwattr $C$DW$656, DW_AT_decl_line(0x75)
.dwattr $C$DW$656, DW_AT_decl_column(0x15)
$C$DW$657 .dwtag DW_TAG_member
.dwattr $C$DW$657, DW_AT_type(*$C$DW$T$287)
.dwattr $C$DW$657, DW_AT_name("CTBIR1_bit")
.dwattr $C$DW$657, DW_AT_TI_symbol_name("CTBIR1_bit")
.dwattr $C$DW$657, DW_AT_data_member_location[DW_OP_plus_uconst 0x0]
.dwattr $C$DW$657, DW_AT_accessibility(DW_ACCESS_public)
.dwattr $C$DW$657, DW_AT_decl_file("/usr/share/ti/pru-software-support-package/include/am335x/pru_ctrl.h")
.dwattr $C$DW$657, DW_AT_decl_line(0x7c)
.dwattr $C$DW$657, DW_AT_decl_column(0x05)
.dwattr $C$DW$T$288, DW_AT_decl_file("/usr/share/ti/pru-software-support-package/include/am335x/pru_ctrl.h")
.dwattr $C$DW$T$288, DW_AT_decl_line(0x74)
.dwattr $C$DW$T$288, DW_AT_decl_column(0x08)
.dwendtag $C$DW$T$288
$C$DW$T$290 .dwtag DW_TAG_union_type
.dwattr $C$DW$T$290, DW_AT_byte_size(0x04)
$C$DW$658 .dwtag DW_TAG_member
.dwattr $C$DW$658, DW_AT_type(*$C$DW$T$122)
.dwattr $C$DW$658, DW_AT_name("CTPPR0")
.dwattr $C$DW$658, DW_AT_TI_symbol_name("CTPPR0")
.dwattr $C$DW$658, DW_AT_data_member_location[DW_OP_plus_uconst 0x0]
.dwattr $C$DW$658, DW_AT_accessibility(DW_ACCESS_public)
.dwattr $C$DW$658, DW_AT_decl_file("/usr/share/ti/pru-software-support-package/include/am335x/pru_ctrl.h")
.dwattr $C$DW$658, DW_AT_decl_line(0x82)
.dwattr $C$DW$658, DW_AT_decl_column(0x15)
$C$DW$659 .dwtag DW_TAG_member
.dwattr $C$DW$659, DW_AT_type(*$C$DW$T$289)
.dwattr $C$DW$659, DW_AT_name("CTPPR0_bit")
.dwattr $C$DW$659, DW_AT_TI_symbol_name("CTPPR0_bit")
.dwattr $C$DW$659, DW_AT_data_member_location[DW_OP_plus_uconst 0x0]
.dwattr $C$DW$659, DW_AT_accessibility(DW_ACCESS_public)
.dwattr $C$DW$659, DW_AT_decl_file("/usr/share/ti/pru-software-support-package/include/am335x/pru_ctrl.h")
.dwattr $C$DW$659, DW_AT_decl_line(0x87)
.dwattr $C$DW$659, DW_AT_decl_column(0x05)
.dwattr $C$DW$T$290, DW_AT_decl_file("/usr/share/ti/pru-software-support-package/include/am335x/pru_ctrl.h")
.dwattr $C$DW$T$290, DW_AT_decl_line(0x81)
.dwattr $C$DW$T$290, DW_AT_decl_column(0x08)
.dwendtag $C$DW$T$290
$C$DW$T$292 .dwtag DW_TAG_union_type
.dwattr $C$DW$T$292, DW_AT_byte_size(0x04)
$C$DW$660 .dwtag DW_TAG_member
.dwattr $C$DW$660, DW_AT_type(*$C$DW$T$122)
.dwattr $C$DW$660, DW_AT_name("CTPPR1")
.dwattr $C$DW$660, DW_AT_TI_symbol_name("CTPPR1")
.dwattr $C$DW$660, DW_AT_data_member_location[DW_OP_plus_uconst 0x0]
.dwattr $C$DW$660, DW_AT_accessibility(DW_ACCESS_public)
.dwattr $C$DW$660, DW_AT_decl_file("/usr/share/ti/pru-software-support-package/include/am335x/pru_ctrl.h")
.dwattr $C$DW$660, DW_AT_decl_line(0x8d)
.dwattr $C$DW$660, DW_AT_decl_column(0x15)
$C$DW$661 .dwtag DW_TAG_member
.dwattr $C$DW$661, DW_AT_type(*$C$DW$T$291)
.dwattr $C$DW$661, DW_AT_name("CTPPR1_bit")
.dwattr $C$DW$661, DW_AT_TI_symbol_name("CTPPR1_bit")
.dwattr $C$DW$661, DW_AT_data_member_location[DW_OP_plus_uconst 0x0]
.dwattr $C$DW$661, DW_AT_accessibility(DW_ACCESS_public)
.dwattr $C$DW$661, DW_AT_decl_file("/usr/share/ti/pru-software-support-package/include/am335x/pru_ctrl.h")
.dwattr $C$DW$661, DW_AT_decl_line(0x92)
.dwattr $C$DW$661, DW_AT_decl_column(0x05)
.dwattr $C$DW$T$292, DW_AT_decl_file("/usr/share/ti/pru-software-support-package/include/am335x/pru_ctrl.h")
.dwattr $C$DW$T$292, DW_AT_decl_line(0x8c)
.dwattr $C$DW$T$292, DW_AT_decl_column(0x08)
.dwendtag $C$DW$T$292
$C$DW$T$2 .dwtag DW_TAG_unspecified_type
.dwattr $C$DW$T$2, DW_AT_name("void")
$C$DW$T$4 .dwtag DW_TAG_base_type
.dwattr $C$DW$T$4, DW_AT_encoding(DW_ATE_boolean)
.dwattr $C$DW$T$4, DW_AT_name("bool")
.dwattr $C$DW$T$4, DW_AT_byte_size(0x01)
$C$DW$T$5 .dwtag DW_TAG_base_type
.dwattr $C$DW$T$5, DW_AT_encoding(DW_ATE_signed_char)
.dwattr $C$DW$T$5, DW_AT_name("signed char")
.dwattr $C$DW$T$5, DW_AT_byte_size(0x01)
$C$DW$T$317 .dwtag DW_TAG_typedef
.dwattr $C$DW$T$317, DW_AT_name("int8_t")
.dwattr $C$DW$T$317, DW_AT_type(*$C$DW$T$5)
.dwattr $C$DW$T$317, DW_AT_language(DW_LANG_C)
.dwattr $C$DW$T$317, DW_AT_decl_file("/usr/share/ti/cgt-pru/include/stdint.h")
.dwattr $C$DW$T$317, DW_AT_decl_line(0x3c)
.dwattr $C$DW$T$317, DW_AT_decl_column(0x1d)
$C$DW$T$6 .dwtag DW_TAG_base_type
.dwattr $C$DW$T$6, DW_AT_encoding(DW_ATE_unsigned_char)
.dwattr $C$DW$T$6, DW_AT_name("unsigned char")
.dwattr $C$DW$T$6, DW_AT_byte_size(0x01)
$C$DW$T$318 .dwtag DW_TAG_volatile_type
.dwattr $C$DW$T$318, DW_AT_type(*$C$DW$T$6)
$C$DW$T$319 .dwtag DW_TAG_pointer_type
.dwattr $C$DW$T$319, DW_AT_type(*$C$DW$T$318)
.dwattr $C$DW$T$319, DW_AT_address_class(0x20)
$C$DW$T$324 .dwtag DW_TAG_typedef
.dwattr $C$DW$T$324, DW_AT_name("uint8_t")
.dwattr $C$DW$T$324, DW_AT_type(*$C$DW$T$6)
.dwattr $C$DW$T$324, DW_AT_language(DW_LANG_C)
.dwattr $C$DW$T$324, DW_AT_decl_file("/usr/share/ti/cgt-pru/include/stdint.h")
.dwattr $C$DW$T$324, DW_AT_decl_line(0x3d)
.dwattr $C$DW$T$324, DW_AT_decl_column(0x1c)
$C$DW$T$325 .dwtag DW_TAG_array_type
.dwattr $C$DW$T$325, DW_AT_type(*$C$DW$T$324)
.dwattr $C$DW$T$325, DW_AT_language(DW_LANG_C)
.dwattr $C$DW$T$325, DW_AT_byte_size(0x06)
$C$DW$662 .dwtag DW_TAG_subrange_type
.dwattr $C$DW$662, DW_AT_upper_bound(0x05)
.dwendtag $C$DW$T$325
$C$DW$T$326 .dwtag DW_TAG_volatile_type
.dwattr $C$DW$T$326, DW_AT_type(*$C$DW$T$324)
$C$DW$T$327 .dwtag DW_TAG_pointer_type
.dwattr $C$DW$T$327, DW_AT_type(*$C$DW$T$326)
.dwattr $C$DW$T$327, DW_AT_address_class(0x20)
$C$DW$T$328 .dwtag DW_TAG_const_type
.dwattr $C$DW$T$328, DW_AT_type(*$C$DW$T$327)
$C$DW$T$329 .dwtag DW_TAG_const_type
.dwattr $C$DW$T$329, DW_AT_type(*$C$DW$T$324)
$C$DW$T$7 .dwtag DW_TAG_base_type
.dwattr $C$DW$T$7, DW_AT_encoding(DW_ATE_signed_char)
.dwattr $C$DW$T$7, DW_AT_name("wchar_t")
.dwattr $C$DW$T$7, DW_AT_byte_size(0x04)
$C$DW$T$8 .dwtag DW_TAG_base_type
.dwattr $C$DW$T$8, DW_AT_encoding(DW_ATE_signed)
.dwattr $C$DW$T$8, DW_AT_name("short")
.dwattr $C$DW$T$8, DW_AT_byte_size(0x02)
$C$DW$T$9 .dwtag DW_TAG_base_type
.dwattr $C$DW$T$9, DW_AT_encoding(DW_ATE_unsigned)
.dwattr $C$DW$T$9, DW_AT_name("unsigned short")
.dwattr $C$DW$T$9, DW_AT_byte_size(0x02)
$C$DW$T$108 .dwtag DW_TAG_typedef
.dwattr $C$DW$T$108, DW_AT_name("uint16_t")
.dwattr $C$DW$T$108, DW_AT_type(*$C$DW$T$9)
.dwattr $C$DW$T$108, DW_AT_language(DW_LANG_C)
.dwattr $C$DW$T$108, DW_AT_decl_file("/usr/share/ti/cgt-pru/include/stdint.h")
.dwattr $C$DW$T$108, DW_AT_decl_line(0x3f)
.dwattr $C$DW$T$108, DW_AT_decl_column(0x1c)
$C$DW$T$109 .dwtag DW_TAG_array_type
.dwattr $C$DW$T$109, DW_AT_type(*$C$DW$T$108)
.dwattr $C$DW$T$109, DW_AT_language(DW_LANG_C)
.dwattr $C$DW$T$109, DW_AT_byte_size(0x1e0)
$C$DW$663 .dwtag DW_TAG_subrange_type
.dwattr $C$DW$663, DW_AT_upper_bound(0xef)
.dwendtag $C$DW$T$109
$C$DW$T$10 .dwtag DW_TAG_base_type
.dwattr $C$DW$T$10, DW_AT_encoding(DW_ATE_signed)
.dwattr $C$DW$T$10, DW_AT_name("int")
.dwattr $C$DW$T$10, DW_AT_byte_size(0x04)
$C$DW$T$11 .dwtag DW_TAG_base_type
.dwattr $C$DW$T$11, DW_AT_encoding(DW_ATE_unsigned)
.dwattr $C$DW$T$11, DW_AT_name("unsigned int")
.dwattr $C$DW$T$11, DW_AT_byte_size(0x04)
$C$DW$T$336 .dwtag DW_TAG_volatile_type
.dwattr $C$DW$T$336, DW_AT_type(*$C$DW$T$11)
$C$DW$T$337 .dwtag DW_TAG_pointer_type
.dwattr $C$DW$T$337, DW_AT_type(*$C$DW$T$336)
.dwattr $C$DW$T$337, DW_AT_address_class(0x20)
$C$DW$T$32 .dwtag DW_TAG_typedef
.dwattr $C$DW$T$32, DW_AT_name("uint32_t")
.dwattr $C$DW$T$32, DW_AT_type(*$C$DW$T$11)
.dwattr $C$DW$T$32, DW_AT_language(DW_LANG_C)
.dwattr $C$DW$T$32, DW_AT_decl_file("/usr/share/ti/cgt-pru/include/stdint.h")
.dwattr $C$DW$T$32, DW_AT_decl_line(0x41)
.dwattr $C$DW$T$32, DW_AT_decl_column(0x1c)
$C$DW$T$33 .dwtag DW_TAG_array_type
.dwattr $C$DW$T$33, DW_AT_type(*$C$DW$T$32)
.dwattr $C$DW$T$33, DW_AT_language(DW_LANG_C)
.dwattr $C$DW$T$33, DW_AT_byte_size(0x04)
$C$DW$664 .dwtag DW_TAG_subrange_type
.dwattr $C$DW$664, DW_AT_upper_bound(0x00)
.dwendtag $C$DW$T$33
$C$DW$T$34 .dwtag DW_TAG_array_type
.dwattr $C$DW$T$34, DW_AT_type(*$C$DW$T$32)
.dwattr $C$DW$T$34, DW_AT_language(DW_LANG_C)
.dwattr $C$DW$T$34, DW_AT_byte_size(0x08)
$C$DW$665 .dwtag DW_TAG_subrange_type
.dwattr $C$DW$665, DW_AT_upper_bound(0x01)
.dwendtag $C$DW$T$34
$C$DW$T$99 .dwtag DW_TAG_array_type
.dwattr $C$DW$T$99, DW_AT_type(*$C$DW$T$32)
.dwattr $C$DW$T$99, DW_AT_language(DW_LANG_C)
.dwattr $C$DW$T$99, DW_AT_byte_size(0x44)
$C$DW$666 .dwtag DW_TAG_subrange_type
.dwattr $C$DW$666, DW_AT_upper_bound(0x10)
.dwendtag $C$DW$T$99
$C$DW$T$100 .dwtag DW_TAG_array_type
.dwattr $C$DW$T$100, DW_AT_type(*$C$DW$T$32)
.dwattr $C$DW$T$100, DW_AT_language(DW_LANG_C)
.dwattr $C$DW$T$100, DW_AT_byte_size(0x17c)
$C$DW$667 .dwtag DW_TAG_subrange_type
.dwattr $C$DW$667, DW_AT_upper_bound(0x5e)
.dwendtag $C$DW$T$100
$C$DW$T$101 .dwtag DW_TAG_array_type
.dwattr $C$DW$T$101, DW_AT_type(*$C$DW$T$32)
.dwattr $C$DW$T$101, DW_AT_language(DW_LANG_C)
.dwattr $C$DW$T$101, DW_AT_byte_size(0x78)
$C$DW$668 .dwtag DW_TAG_subrange_type
.dwattr $C$DW$668, DW_AT_upper_bound(0x1d)
.dwendtag $C$DW$T$101
$C$DW$T$102 .dwtag DW_TAG_array_type
.dwattr $C$DW$T$102, DW_AT_type(*$C$DW$T$32)
.dwattr $C$DW$T$102, DW_AT_language(DW_LANG_C)
.dwattr $C$DW$T$102, DW_AT_byte_size(0x3c0)
$C$DW$669 .dwtag DW_TAG_subrange_type
.dwattr $C$DW$669, DW_AT_upper_bound(0xef)
.dwendtag $C$DW$T$102
$C$DW$T$103 .dwtag DW_TAG_array_type
.dwattr $C$DW$T$103, DW_AT_type(*$C$DW$T$32)
.dwattr $C$DW$T$103, DW_AT_language(DW_LANG_C)
.dwattr $C$DW$T$103, DW_AT_byte_size(0xf4)
$C$DW$670 .dwtag DW_TAG_subrange_type
.dwattr $C$DW$670, DW_AT_upper_bound(0x3c)
.dwendtag $C$DW$T$103
$C$DW$T$104 .dwtag DW_TAG_array_type
.dwattr $C$DW$T$104, DW_AT_type(*$C$DW$T$32)
.dwattr $C$DW$T$104, DW_AT_language(DW_LANG_C)
.dwattr $C$DW$T$104, DW_AT_byte_size(0x3d8)
$C$DW$671 .dwtag DW_TAG_subrange_type
.dwattr $C$DW$671, DW_AT_upper_bound(0xf5)
.dwendtag $C$DW$T$104
$C$DW$T$105 .dwtag DW_TAG_array_type
.dwattr $C$DW$T$105, DW_AT_type(*$C$DW$T$32)
.dwattr $C$DW$T$105, DW_AT_language(DW_LANG_C)
.dwattr $C$DW$T$105, DW_AT_byte_size(0x378)
$C$DW$672 .dwtag DW_TAG_subrange_type
.dwattr $C$DW$672, DW_AT_upper_bound(0xdd)
.dwendtag $C$DW$T$105
$C$DW$T$120 .dwtag DW_TAG_array_type
.dwattr $C$DW$T$120, DW_AT_type(*$C$DW$T$32)
.dwattr $C$DW$T$120, DW_AT_language(DW_LANG_C)
.dwattr $C$DW$T$120, DW_AT_byte_size(0x0c)
$C$DW$673 .dwtag DW_TAG_subrange_type
.dwattr $C$DW$673, DW_AT_upper_bound(0x02)
.dwendtag $C$DW$T$120
$C$DW$T$122 .dwtag DW_TAG_volatile_type
.dwattr $C$DW$T$122, DW_AT_type(*$C$DW$T$32)
$C$DW$T$12 .dwtag DW_TAG_base_type
.dwattr $C$DW$T$12, DW_AT_encoding(DW_ATE_signed)
.dwattr $C$DW$T$12, DW_AT_name("long")
.dwattr $C$DW$T$12, DW_AT_byte_size(0x04)
$C$DW$T$13 .dwtag DW_TAG_base_type
.dwattr $C$DW$T$13, DW_AT_encoding(DW_ATE_unsigned)
.dwattr $C$DW$T$13, DW_AT_name("unsigned long")
.dwattr $C$DW$T$13, DW_AT_byte_size(0x04)
$C$DW$T$14 .dwtag DW_TAG_base_type
.dwattr $C$DW$T$14, DW_AT_encoding(DW_ATE_signed)
.dwattr $C$DW$T$14, DW_AT_name("long long")
.dwattr $C$DW$T$14, DW_AT_byte_size(0x08)
$C$DW$T$15 .dwtag DW_TAG_base_type
.dwattr $C$DW$T$15, DW_AT_encoding(DW_ATE_unsigned)
.dwattr $C$DW$T$15, DW_AT_name("unsigned long long")
.dwattr $C$DW$T$15, DW_AT_byte_size(0x08)
$C$DW$T$107 .dwtag DW_TAG_typedef
.dwattr $C$DW$T$107, DW_AT_name("uint64_t")
.dwattr $C$DW$T$107, DW_AT_type(*$C$DW$T$15)
.dwattr $C$DW$T$107, DW_AT_language(DW_LANG_C)
.dwattr $C$DW$T$107, DW_AT_decl_file("/usr/share/ti/cgt-pru/include/stdint.h")
.dwattr $C$DW$T$107, DW_AT_decl_line(0x53)
.dwattr $C$DW$T$107, DW_AT_decl_column(0x20)
$C$DW$T$16 .dwtag DW_TAG_base_type
.dwattr $C$DW$T$16, DW_AT_encoding(DW_ATE_float)
.dwattr $C$DW$T$16, DW_AT_name("float")
.dwattr $C$DW$T$16, DW_AT_byte_size(0x04)
$C$DW$T$17 .dwtag DW_TAG_base_type
.dwattr $C$DW$T$17, DW_AT_encoding(DW_ATE_float)
.dwattr $C$DW$T$17, DW_AT_name("double")
.dwattr $C$DW$T$17, DW_AT_byte_size(0x08)
$C$DW$T$18 .dwtag DW_TAG_base_type
.dwattr $C$DW$T$18, DW_AT_encoding(DW_ATE_float)
.dwattr $C$DW$T$18, DW_AT_name("long double")
.dwattr $C$DW$T$18, DW_AT_byte_size(0x08)
$C$DW$T$293 .dwtag DW_TAG_structure_type
.dwattr $C$DW$T$293, DW_AT_name("my_resource_table")
.dwattr $C$DW$T$293, DW_AT_byte_size(0x14)
$C$DW$674 .dwtag DW_TAG_member
.dwattr $C$DW$674, DW_AT_type(*$C$DW$T$294)
.dwattr $C$DW$674, DW_AT_name("base")
.dwattr $C$DW$674, DW_AT_TI_symbol_name("base")
.dwattr $C$DW$674, DW_AT_data_member_location[DW_OP_plus_uconst 0x0]
.dwattr $C$DW$674, DW_AT_accessibility(DW_ACCESS_public)
.dwattr $C$DW$674, DW_AT_decl_file("resource_table_empty.h")
.dwattr $C$DW$674, DW_AT_decl_line(0x39)
.dwattr $C$DW$674, DW_AT_decl_column(0x18)
$C$DW$675 .dwtag DW_TAG_member
.dwattr $C$DW$675, DW_AT_type(*$C$DW$T$33)
.dwattr $C$DW$675, DW_AT_name("offset")
.dwattr $C$DW$675, DW_AT_TI_symbol_name("offset")
.dwattr $C$DW$675, DW_AT_data_member_location[DW_OP_plus_uconst 0x10]
.dwattr $C$DW$675, DW_AT_accessibility(DW_ACCESS_public)
.dwattr $C$DW$675, DW_AT_decl_file("resource_table_empty.h")
.dwattr $C$DW$675, DW_AT_decl_line(0x3b)
.dwattr $C$DW$675, DW_AT_decl_column(0x0b)
.dwattr $C$DW$T$293, DW_AT_decl_file("resource_table_empty.h")
.dwattr $C$DW$T$293, DW_AT_decl_line(0x38)
.dwattr $C$DW$T$293, DW_AT_decl_column(0x08)
.dwendtag $C$DW$T$293
$C$DW$T$294 .dwtag DW_TAG_structure_type
.dwattr $C$DW$T$294, DW_AT_name("resource_table")
.dwattr $C$DW$T$294, DW_AT_byte_size(0x10)
$C$DW$676 .dwtag DW_TAG_member
.dwattr $C$DW$676, DW_AT_type(*$C$DW$T$32)
.dwattr $C$DW$676, DW_AT_name("ver")
.dwattr $C$DW$676, DW_AT_TI_symbol_name("ver")
.dwattr $C$DW$676, DW_AT_data_member_location[DW_OP_plus_uconst 0x0]
.dwattr $C$DW$676, DW_AT_accessibility(DW_ACCESS_public)
.dwattr $C$DW$676, DW_AT_decl_file("/usr/share/ti/pru-software-support-package/include/rsc_types.h")
.dwattr $C$DW$676, DW_AT_decl_line(0x5c)
.dwattr $C$DW$676, DW_AT_decl_column(0x0b)
$C$DW$677 .dwtag DW_TAG_member
.dwattr $C$DW$677, DW_AT_type(*$C$DW$T$32)
.dwattr $C$DW$677, DW_AT_name("num")
.dwattr $C$DW$677, DW_AT_TI_symbol_name("num")
.dwattr $C$DW$677, DW_AT_data_member_location[DW_OP_plus_uconst 0x4]
.dwattr $C$DW$677, DW_AT_accessibility(DW_ACCESS_public)
.dwattr $C$DW$677, DW_AT_decl_file("/usr/share/ti/pru-software-support-package/include/rsc_types.h")
.dwattr $C$DW$677, DW_AT_decl_line(0x5d)
.dwattr $C$DW$677, DW_AT_decl_column(0x0b)
$C$DW$678 .dwtag DW_TAG_member
.dwattr $C$DW$678, DW_AT_type(*$C$DW$T$34)
.dwattr $C$DW$678, DW_AT_name("reserved")
.dwattr $C$DW$678, DW_AT_TI_symbol_name("reserved")
.dwattr $C$DW$678, DW_AT_data_member_location[DW_OP_plus_uconst 0x8]
.dwattr $C$DW$678, DW_AT_accessibility(DW_ACCESS_public)
.dwattr $C$DW$678, DW_AT_decl_file("/usr/share/ti/pru-software-support-package/include/rsc_types.h")
.dwattr $C$DW$678, DW_AT_decl_line(0x5e)
.dwattr $C$DW$678, DW_AT_decl_column(0x0b)
.dwattr $C$DW$T$294, DW_AT_decl_file("/usr/share/ti/pru-software-support-package/include/rsc_types.h")
.dwattr $C$DW$T$294, DW_AT_decl_line(0x5b)
.dwattr $C$DW$T$294, DW_AT_decl_column(0x08)
.dwendtag $C$DW$T$294
.dwattr $C$DW$CU, DW_AT_language(DW_LANG_C)
;***************************************************************
;* DWARF CIE ENTRIES *
;***************************************************************
$C$DW$CIE .dwcie 14
.dwcfi cfa_register, 8
.dwcfi cfa_offset, 0
.dwcfi same_value, 8
.dwcfi same_value, 9
.dwcfi same_value, 10
.dwcfi same_value, 11
.dwcfi same_value, 16
.dwcfi same_value, 17
.dwcfi same_value, 18
.dwcfi same_value, 19
.dwcfi same_value, 20
.dwcfi same_value, 21
.dwcfi same_value, 22
.dwcfi same_value, 23
.dwcfi same_value, 24
.dwcfi same_value, 25
.dwcfi same_value, 26
.dwcfi same_value, 27
.dwcfi same_value, 28
.dwcfi same_value, 29
.dwcfi same_value, 30
.dwcfi same_value, 31
.dwcfi same_value, 32
.dwcfi same_value, 33
.dwcfi same_value, 34
.dwcfi same_value, 35
.dwcfi same_value, 36
.dwcfi same_value, 37
.dwcfi same_value, 38
.dwcfi same_value, 39
.dwcfi same_value, 40
.dwcfi same_value, 41
.dwcfi same_value, 42
.dwcfi same_value, 43
.dwcfi same_value, 44
.dwcfi same_value, 45
.dwcfi same_value, 46
.dwcfi same_value, 47
.dwcfi same_value, 48
.dwcfi same_value, 49
.dwcfi same_value, 50
.dwcfi same_value, 51
.dwcfi same_value, 52
.dwcfi same_value, 53
.dwcfi same_value, 54
.dwcfi same_value, 55
.dwendentry
;***************************************************************
;* DWARF REGISTER MAP *
;***************************************************************
$C$DW$679 .dwtag DW_TAG_TI_assign_register
.dwattr $C$DW$679, DW_AT_name("R0_b0")
.dwattr $C$DW$679, DW_AT_location[DW_OP_reg0]
$C$DW$680 .dwtag DW_TAG_TI_assign_register
.dwattr $C$DW$680, DW_AT_name("R0_b1")
.dwattr $C$DW$680, DW_AT_location[DW_OP_reg1]
$C$DW$681 .dwtag DW_TAG_TI_assign_register
.dwattr $C$DW$681, DW_AT_name("R0_b2")
.dwattr $C$DW$681, DW_AT_location[DW_OP_reg2]
$C$DW$682 .dwtag DW_TAG_TI_assign_register
.dwattr $C$DW$682, DW_AT_name("R0_b3")
.dwattr $C$DW$682, DW_AT_location[DW_OP_reg3]
$C$DW$683 .dwtag DW_TAG_TI_assign_register
.dwattr $C$DW$683, DW_AT_name("R1_b0")
.dwattr $C$DW$683, DW_AT_location[DW_OP_reg4]
$C$DW$684 .dwtag DW_TAG_TI_assign_register
.dwattr $C$DW$684, DW_AT_name("R1_b1")
.dwattr $C$DW$684, DW_AT_location[DW_OP_reg5]
$C$DW$685 .dwtag DW_TAG_TI_assign_register
.dwattr $C$DW$685, DW_AT_name("R1_b2")
.dwattr $C$DW$685, DW_AT_location[DW_OP_reg6]
$C$DW$686 .dwtag DW_TAG_TI_assign_register
.dwattr $C$DW$686, DW_AT_name("R1_b3")
.dwattr $C$DW$686, DW_AT_location[DW_OP_reg7]
$C$DW$687 .dwtag DW_TAG_TI_assign_register
.dwattr $C$DW$687, DW_AT_name("R2_b0")
.dwattr $C$DW$687, DW_AT_location[DW_OP_reg8]
$C$DW$688 .dwtag DW_TAG_TI_assign_register
.dwattr $C$DW$688, DW_AT_name("R2_b1")
.dwattr $C$DW$688, DW_AT_location[DW_OP_reg9]
$C$DW$689 .dwtag DW_TAG_TI_assign_register
.dwattr $C$DW$689, DW_AT_name("R2_b2")
.dwattr $C$DW$689, DW_AT_location[DW_OP_reg10]
$C$DW$690 .dwtag DW_TAG_TI_assign_register
.dwattr $C$DW$690, DW_AT_name("R2_b3")
.dwattr $C$DW$690, DW_AT_location[DW_OP_reg11]
$C$DW$691 .dwtag DW_TAG_TI_assign_register
.dwattr $C$DW$691, DW_AT_name("R3_b0")
.dwattr $C$DW$691, DW_AT_location[DW_OP_reg12]
$C$DW$692 .dwtag DW_TAG_TI_assign_register
.dwattr $C$DW$692, DW_AT_name("R3_b1")
.dwattr $C$DW$692, DW_AT_location[DW_OP_reg13]
$C$DW$693 .dwtag DW_TAG_TI_assign_register
.dwattr $C$DW$693, DW_AT_name("R3_b2")
.dwattr $C$DW$693, DW_AT_location[DW_OP_reg14]
$C$DW$694 .dwtag DW_TAG_TI_assign_register
.dwattr $C$DW$694, DW_AT_name("R3_b3")
.dwattr $C$DW$694, DW_AT_location[DW_OP_reg15]
$C$DW$695 .dwtag DW_TAG_TI_assign_register
.dwattr $C$DW$695, DW_AT_name("R4_b0")
.dwattr $C$DW$695, DW_AT_location[DW_OP_reg16]
$C$DW$696 .dwtag DW_TAG_TI_assign_register
.dwattr $C$DW$696, DW_AT_name("R4_b1")
.dwattr $C$DW$696, DW_AT_location[DW_OP_reg17]
$C$DW$697 .dwtag DW_TAG_TI_assign_register
.dwattr $C$DW$697, DW_AT_name("R4_b2")
.dwattr $C$DW$697, DW_AT_location[DW_OP_reg18]
$C$DW$698 .dwtag DW_TAG_TI_assign_register
.dwattr $C$DW$698, DW_AT_name("R4_b3")
.dwattr $C$DW$698, DW_AT_location[DW_OP_reg19]
$C$DW$699 .dwtag DW_TAG_TI_assign_register
.dwattr $C$DW$699, DW_AT_name("R5_b0")
.dwattr $C$DW$699, DW_AT_location[DW_OP_reg20]
$C$DW$700 .dwtag DW_TAG_TI_assign_register
.dwattr $C$DW$700, DW_AT_name("R5_b1")
.dwattr $C$DW$700, DW_AT_location[DW_OP_reg21]
$C$DW$701 .dwtag DW_TAG_TI_assign_register
.dwattr $C$DW$701, DW_AT_name("R5_b2")
.dwattr $C$DW$701, DW_AT_location[DW_OP_reg22]
$C$DW$702 .dwtag DW_TAG_TI_assign_register
.dwattr $C$DW$702, DW_AT_name("R5_b3")
.dwattr $C$DW$702, DW_AT_location[DW_OP_reg23]
$C$DW$703 .dwtag DW_TAG_TI_assign_register
.dwattr $C$DW$703, DW_AT_name("R6_b0")
.dwattr $C$DW$703, DW_AT_location[DW_OP_reg24]
$C$DW$704 .dwtag DW_TAG_TI_assign_register
.dwattr $C$DW$704, DW_AT_name("R6_b1")
.dwattr $C$DW$704, DW_AT_location[DW_OP_reg25]
$C$DW$705 .dwtag DW_TAG_TI_assign_register
.dwattr $C$DW$705, DW_AT_name("R6_b2")
.dwattr $C$DW$705, DW_AT_location[DW_OP_reg26]
$C$DW$706 .dwtag DW_TAG_TI_assign_register
.dwattr $C$DW$706, DW_AT_name("R6_b3")
.dwattr $C$DW$706, DW_AT_location[DW_OP_reg27]
$C$DW$707 .dwtag DW_TAG_TI_assign_register
.dwattr $C$DW$707, DW_AT_name("R7_b0")
.dwattr $C$DW$707, DW_AT_location[DW_OP_reg28]
$C$DW$708 .dwtag DW_TAG_TI_assign_register
.dwattr $C$DW$708, DW_AT_name("R7_b1")
.dwattr $C$DW$708, DW_AT_location[DW_OP_reg29]
$C$DW$709 .dwtag DW_TAG_TI_assign_register
.dwattr $C$DW$709, DW_AT_name("R7_b2")
.dwattr $C$DW$709, DW_AT_location[DW_OP_reg30]
$C$DW$710 .dwtag DW_TAG_TI_assign_register
.dwattr $C$DW$710, DW_AT_name("R7_b3")
.dwattr $C$DW$710, DW_AT_location[DW_OP_reg31]
$C$DW$711 .dwtag DW_TAG_TI_assign_register
.dwattr $C$DW$711, DW_AT_name("R8_b0")
.dwattr $C$DW$711, DW_AT_location[DW_OP_regx 0x20]
$C$DW$712 .dwtag DW_TAG_TI_assign_register
.dwattr $C$DW$712, DW_AT_name("R8_b1")
.dwattr $C$DW$712, DW_AT_location[DW_OP_regx 0x21]
$C$DW$713 .dwtag DW_TAG_TI_assign_register
.dwattr $C$DW$713, DW_AT_name("R8_b2")
.dwattr $C$DW$713, DW_AT_location[DW_OP_regx 0x22]
$C$DW$714 .dwtag DW_TAG_TI_assign_register
.dwattr $C$DW$714, DW_AT_name("R8_b3")
.dwattr $C$DW$714, DW_AT_location[DW_OP_regx 0x23]
$C$DW$715 .dwtag DW_TAG_TI_assign_register
.dwattr $C$DW$715, DW_AT_name("R9_b0")
.dwattr $C$DW$715, DW_AT_location[DW_OP_regx 0x24]
$C$DW$716 .dwtag DW_TAG_TI_assign_register
.dwattr $C$DW$716, DW_AT_name("R9_b1")
.dwattr $C$DW$716, DW_AT_location[DW_OP_regx 0x25]
$C$DW$717 .dwtag DW_TAG_TI_assign_register
.dwattr $C$DW$717, DW_AT_name("R9_b2")
.dwattr $C$DW$717, DW_AT_location[DW_OP_regx 0x26]
$C$DW$718 .dwtag DW_TAG_TI_assign_register
.dwattr $C$DW$718, DW_AT_name("R9_b3")
.dwattr $C$DW$718, DW_AT_location[DW_OP_regx 0x27]
$C$DW$719 .dwtag DW_TAG_TI_assign_register
.dwattr $C$DW$719, DW_AT_name("R10_b0")
.dwattr $C$DW$719, DW_AT_location[DW_OP_regx 0x28]
$C$DW$720 .dwtag DW_TAG_TI_assign_register
.dwattr $C$DW$720, DW_AT_name("R10_b1")
.dwattr $C$DW$720, DW_AT_location[DW_OP_regx 0x29]
$C$DW$721 .dwtag DW_TAG_TI_assign_register
.dwattr $C$DW$721, DW_AT_name("R10_b2")
.dwattr $C$DW$721, DW_AT_location[DW_OP_regx 0x2a]
$C$DW$722 .dwtag DW_TAG_TI_assign_register
.dwattr $C$DW$722, DW_AT_name("R10_b3")
.dwattr $C$DW$722, DW_AT_location[DW_OP_regx 0x2b]
$C$DW$723 .dwtag DW_TAG_TI_assign_register
.dwattr $C$DW$723, DW_AT_name("R11_b0")
.dwattr $C$DW$723, DW_AT_location[DW_OP_regx 0x2c]
$C$DW$724 .dwtag DW_TAG_TI_assign_register
.dwattr $C$DW$724, DW_AT_name("R11_b1")
.dwattr $C$DW$724, DW_AT_location[DW_OP_regx 0x2d]
$C$DW$725 .dwtag DW_TAG_TI_assign_register
.dwattr $C$DW$725, DW_AT_name("R11_b2")
.dwattr $C$DW$725, DW_AT_location[DW_OP_regx 0x2e]
$C$DW$726 .dwtag DW_TAG_TI_assign_register
.dwattr $C$DW$726, DW_AT_name("R11_b3")
.dwattr $C$DW$726, DW_AT_location[DW_OP_regx 0x2f]
$C$DW$727 .dwtag DW_TAG_TI_assign_register
.dwattr $C$DW$727, DW_AT_name("R12_b0")
.dwattr $C$DW$727, DW_AT_location[DW_OP_regx 0x30]
$C$DW$728 .dwtag DW_TAG_TI_assign_register
.dwattr $C$DW$728, DW_AT_name("R12_b1")
.dwattr $C$DW$728, DW_AT_location[DW_OP_regx 0x31]
$C$DW$729 .dwtag DW_TAG_TI_assign_register
.dwattr $C$DW$729, DW_AT_name("R12_b2")
.dwattr $C$DW$729, DW_AT_location[DW_OP_regx 0x32]
$C$DW$730 .dwtag DW_TAG_TI_assign_register
.dwattr $C$DW$730, DW_AT_name("R12_b3")
.dwattr $C$DW$730, DW_AT_location[DW_OP_regx 0x33]
$C$DW$731 .dwtag DW_TAG_TI_assign_register
.dwattr $C$DW$731, DW_AT_name("R13_b0")
.dwattr $C$DW$731, DW_AT_location[DW_OP_regx 0x34]
$C$DW$732 .dwtag DW_TAG_TI_assign_register
.dwattr $C$DW$732, DW_AT_name("R13_b1")
.dwattr $C$DW$732, DW_AT_location[DW_OP_regx 0x35]
$C$DW$733 .dwtag DW_TAG_TI_assign_register
.dwattr $C$DW$733, DW_AT_name("R13_b2")
.dwattr $C$DW$733, DW_AT_location[DW_OP_regx 0x36]
$C$DW$734 .dwtag DW_TAG_TI_assign_register
.dwattr $C$DW$734, DW_AT_name("R13_b3")
.dwattr $C$DW$734, DW_AT_location[DW_OP_regx 0x37]
$C$DW$735 .dwtag DW_TAG_TI_assign_register
.dwattr $C$DW$735, DW_AT_name("R14_b0")
.dwattr $C$DW$735, DW_AT_location[DW_OP_regx 0x38]
$C$DW$736 .dwtag DW_TAG_TI_assign_register
.dwattr $C$DW$736, DW_AT_name("R14_b1")
.dwattr $C$DW$736, DW_AT_location[DW_OP_regx 0x39]
$C$DW$737 .dwtag DW_TAG_TI_assign_register
.dwattr $C$DW$737, DW_AT_name("R14_b2")
.dwattr $C$DW$737, DW_AT_location[DW_OP_regx 0x3a]
$C$DW$738 .dwtag DW_TAG_TI_assign_register
.dwattr $C$DW$738, DW_AT_name("R14_b3")
.dwattr $C$DW$738, DW_AT_location[DW_OP_regx 0x3b]
$C$DW$739 .dwtag DW_TAG_TI_assign_register
.dwattr $C$DW$739, DW_AT_name("R15_b0")
.dwattr $C$DW$739, DW_AT_location[DW_OP_regx 0x3c]
$C$DW$740 .dwtag DW_TAG_TI_assign_register
.dwattr $C$DW$740, DW_AT_name("R15_b1")
.dwattr $C$DW$740, DW_AT_location[DW_OP_regx 0x3d]
$C$DW$741 .dwtag DW_TAG_TI_assign_register
.dwattr $C$DW$741, DW_AT_name("R15_b2")
.dwattr $C$DW$741, DW_AT_location[DW_OP_regx 0x3e]
$C$DW$742 .dwtag DW_TAG_TI_assign_register
.dwattr $C$DW$742, DW_AT_name("R15_b3")
.dwattr $C$DW$742, DW_AT_location[DW_OP_regx 0x3f]
$C$DW$743 .dwtag DW_TAG_TI_assign_register
.dwattr $C$DW$743, DW_AT_name("R16_b0")
.dwattr $C$DW$743, DW_AT_location[DW_OP_regx 0x40]
$C$DW$744 .dwtag DW_TAG_TI_assign_register
.dwattr $C$DW$744, DW_AT_name("R16_b1")
.dwattr $C$DW$744, DW_AT_location[DW_OP_regx 0x41]
$C$DW$745 .dwtag DW_TAG_TI_assign_register
.dwattr $C$DW$745, DW_AT_name("R16_b2")
.dwattr $C$DW$745, DW_AT_location[DW_OP_regx 0x42]
$C$DW$746 .dwtag DW_TAG_TI_assign_register
.dwattr $C$DW$746, DW_AT_name("R16_b3")
.dwattr $C$DW$746, DW_AT_location[DW_OP_regx 0x43]
$C$DW$747 .dwtag DW_TAG_TI_assign_register
.dwattr $C$DW$747, DW_AT_name("R17_b0")
.dwattr $C$DW$747, DW_AT_location[DW_OP_regx 0x44]
$C$DW$748 .dwtag DW_TAG_TI_assign_register
.dwattr $C$DW$748, DW_AT_name("R17_b1")
.dwattr $C$DW$748, DW_AT_location[DW_OP_regx 0x45]
$C$DW$749 .dwtag DW_TAG_TI_assign_register
.dwattr $C$DW$749, DW_AT_name("R17_b2")
.dwattr $C$DW$749, DW_AT_location[DW_OP_regx 0x46]
$C$DW$750 .dwtag DW_TAG_TI_assign_register
.dwattr $C$DW$750, DW_AT_name("R17_b3")
.dwattr $C$DW$750, DW_AT_location[DW_OP_regx 0x47]
$C$DW$751 .dwtag DW_TAG_TI_assign_register
.dwattr $C$DW$751, DW_AT_name("R18_b0")
.dwattr $C$DW$751, DW_AT_location[DW_OP_regx 0x48]
$C$DW$752 .dwtag DW_TAG_TI_assign_register
.dwattr $C$DW$752, DW_AT_name("R18_b1")
.dwattr $C$DW$752, DW_AT_location[DW_OP_regx 0x49]
$C$DW$753 .dwtag DW_TAG_TI_assign_register
.dwattr $C$DW$753, DW_AT_name("R18_b2")
.dwattr $C$DW$753, DW_AT_location[DW_OP_regx 0x4a]
$C$DW$754 .dwtag DW_TAG_TI_assign_register
.dwattr $C$DW$754, DW_AT_name("R18_b3")
.dwattr $C$DW$754, DW_AT_location[DW_OP_regx 0x4b]
$C$DW$755 .dwtag DW_TAG_TI_assign_register
.dwattr $C$DW$755, DW_AT_name("R19_b0")
.dwattr $C$DW$755, DW_AT_location[DW_OP_regx 0x4c]
$C$DW$756 .dwtag DW_TAG_TI_assign_register
.dwattr $C$DW$756, DW_AT_name("R19_b1")
.dwattr $C$DW$756, DW_AT_location[DW_OP_regx 0x4d]
$C$DW$757 .dwtag DW_TAG_TI_assign_register
.dwattr $C$DW$757, DW_AT_name("R19_b2")
.dwattr $C$DW$757, DW_AT_location[DW_OP_regx 0x4e]
$C$DW$758 .dwtag DW_TAG_TI_assign_register
.dwattr $C$DW$758, DW_AT_name("R19_b3")
.dwattr $C$DW$758, DW_AT_location[DW_OP_regx 0x4f]
$C$DW$759 .dwtag DW_TAG_TI_assign_register
.dwattr $C$DW$759, DW_AT_name("R20_b0")
.dwattr $C$DW$759, DW_AT_location[DW_OP_regx 0x50]
$C$DW$760 .dwtag DW_TAG_TI_assign_register
.dwattr $C$DW$760, DW_AT_name("R20_b1")
.dwattr $C$DW$760, DW_AT_location[DW_OP_regx 0x51]
$C$DW$761 .dwtag DW_TAG_TI_assign_register
.dwattr $C$DW$761, DW_AT_name("R20_b2")
.dwattr $C$DW$761, DW_AT_location[DW_OP_regx 0x52]
$C$DW$762 .dwtag DW_TAG_TI_assign_register
.dwattr $C$DW$762, DW_AT_name("R20_b3")
.dwattr $C$DW$762, DW_AT_location[DW_OP_regx 0x53]
$C$DW$763 .dwtag DW_TAG_TI_assign_register
.dwattr $C$DW$763, DW_AT_name("R21_b0")
.dwattr $C$DW$763, DW_AT_location[DW_OP_regx 0x54]
$C$DW$764 .dwtag DW_TAG_TI_assign_register
.dwattr $C$DW$764, DW_AT_name("R21_b1")
.dwattr $C$DW$764, DW_AT_location[DW_OP_regx 0x55]
$C$DW$765 .dwtag DW_TAG_TI_assign_register
.dwattr $C$DW$765, DW_AT_name("R21_b2")
.dwattr $C$DW$765, DW_AT_location[DW_OP_regx 0x56]
$C$DW$766 .dwtag DW_TAG_TI_assign_register
.dwattr $C$DW$766, DW_AT_name("R21_b3")
.dwattr $C$DW$766, DW_AT_location[DW_OP_regx 0x57]
$C$DW$767 .dwtag DW_TAG_TI_assign_register
.dwattr $C$DW$767, DW_AT_name("R22_b0")
.dwattr $C$DW$767, DW_AT_location[DW_OP_regx 0x58]
$C$DW$768 .dwtag DW_TAG_TI_assign_register
.dwattr $C$DW$768, DW_AT_name("R22_b1")
.dwattr $C$DW$768, DW_AT_location[DW_OP_regx 0x59]
$C$DW$769 .dwtag DW_TAG_TI_assign_register
.dwattr $C$DW$769, DW_AT_name("R22_b2")
.dwattr $C$DW$769, DW_AT_location[DW_OP_regx 0x5a]
$C$DW$770 .dwtag DW_TAG_TI_assign_register
.dwattr $C$DW$770, DW_AT_name("R22_b3")
.dwattr $C$DW$770, DW_AT_location[DW_OP_regx 0x5b]
$C$DW$771 .dwtag DW_TAG_TI_assign_register
.dwattr $C$DW$771, DW_AT_name("R23_b0")
.dwattr $C$DW$771, DW_AT_location[DW_OP_regx 0x5c]
$C$DW$772 .dwtag DW_TAG_TI_assign_register
.dwattr $C$DW$772, DW_AT_name("R23_b1")
.dwattr $C$DW$772, DW_AT_location[DW_OP_regx 0x5d]
$C$DW$773 .dwtag DW_TAG_TI_assign_register
.dwattr $C$DW$773, DW_AT_name("R23_b2")
.dwattr $C$DW$773, DW_AT_location[DW_OP_regx 0x5e]
$C$DW$774 .dwtag DW_TAG_TI_assign_register
.dwattr $C$DW$774, DW_AT_name("R23_b3")
.dwattr $C$DW$774, DW_AT_location[DW_OP_regx 0x5f]
$C$DW$775 .dwtag DW_TAG_TI_assign_register
.dwattr $C$DW$775, DW_AT_name("R24_b0")
.dwattr $C$DW$775, DW_AT_location[DW_OP_regx 0x60]
$C$DW$776 .dwtag DW_TAG_TI_assign_register
.dwattr $C$DW$776, DW_AT_name("R24_b1")
.dwattr $C$DW$776, DW_AT_location[DW_OP_regx 0x61]
$C$DW$777 .dwtag DW_TAG_TI_assign_register
.dwattr $C$DW$777, DW_AT_name("R24_b2")
.dwattr $C$DW$777, DW_AT_location[DW_OP_regx 0x62]
$C$DW$778 .dwtag DW_TAG_TI_assign_register
.dwattr $C$DW$778, DW_AT_name("R24_b3")
.dwattr $C$DW$778, DW_AT_location[DW_OP_regx 0x63]
$C$DW$779 .dwtag DW_TAG_TI_assign_register
.dwattr $C$DW$779, DW_AT_name("R25_b0")
.dwattr $C$DW$779, DW_AT_location[DW_OP_regx 0x64]
$C$DW$780 .dwtag DW_TAG_TI_assign_register
.dwattr $C$DW$780, DW_AT_name("R25_b1")
.dwattr $C$DW$780, DW_AT_location[DW_OP_regx 0x65]
$C$DW$781 .dwtag DW_TAG_TI_assign_register
.dwattr $C$DW$781, DW_AT_name("R25_b2")
.dwattr $C$DW$781, DW_AT_location[DW_OP_regx 0x66]
$C$DW$782 .dwtag DW_TAG_TI_assign_register
.dwattr $C$DW$782, DW_AT_name("R25_b3")
.dwattr $C$DW$782, DW_AT_location[DW_OP_regx 0x67]
$C$DW$783 .dwtag DW_TAG_TI_assign_register
.dwattr $C$DW$783, DW_AT_name("R26_b0")
.dwattr $C$DW$783, DW_AT_location[DW_OP_regx 0x68]
$C$DW$784 .dwtag DW_TAG_TI_assign_register
.dwattr $C$DW$784, DW_AT_name("R26_b1")
.dwattr $C$DW$784, DW_AT_location[DW_OP_regx 0x69]
$C$DW$785 .dwtag DW_TAG_TI_assign_register
.dwattr $C$DW$785, DW_AT_name("R26_b2")
.dwattr $C$DW$785, DW_AT_location[DW_OP_regx 0x6a]
$C$DW$786 .dwtag DW_TAG_TI_assign_register
.dwattr $C$DW$786, DW_AT_name("R26_b3")
.dwattr $C$DW$786, DW_AT_location[DW_OP_regx 0x6b]
$C$DW$787 .dwtag DW_TAG_TI_assign_register
.dwattr $C$DW$787, DW_AT_name("R27_b0")
.dwattr $C$DW$787, DW_AT_location[DW_OP_regx 0x6c]
$C$DW$788 .dwtag DW_TAG_TI_assign_register
.dwattr $C$DW$788, DW_AT_name("R27_b1")
.dwattr $C$DW$788, DW_AT_location[DW_OP_regx 0x6d]
$C$DW$789 .dwtag DW_TAG_TI_assign_register
.dwattr $C$DW$789, DW_AT_name("R27_b2")
.dwattr $C$DW$789, DW_AT_location[DW_OP_regx 0x6e]
$C$DW$790 .dwtag DW_TAG_TI_assign_register
.dwattr $C$DW$790, DW_AT_name("R27_b3")
.dwattr $C$DW$790, DW_AT_location[DW_OP_regx 0x6f]
$C$DW$791 .dwtag DW_TAG_TI_assign_register
.dwattr $C$DW$791, DW_AT_name("R28_b0")
.dwattr $C$DW$791, DW_AT_location[DW_OP_regx 0x70]
$C$DW$792 .dwtag DW_TAG_TI_assign_register
.dwattr $C$DW$792, DW_AT_name("R28_b1")
.dwattr $C$DW$792, DW_AT_location[DW_OP_regx 0x71]
$C$DW$793 .dwtag DW_TAG_TI_assign_register
.dwattr $C$DW$793, DW_AT_name("R28_b2")
.dwattr $C$DW$793, DW_AT_location[DW_OP_regx 0x72]
$C$DW$794 .dwtag DW_TAG_TI_assign_register
.dwattr $C$DW$794, DW_AT_name("R28_b3")
.dwattr $C$DW$794, DW_AT_location[DW_OP_regx 0x73]
$C$DW$795 .dwtag DW_TAG_TI_assign_register
.dwattr $C$DW$795, DW_AT_name("R29_b0")
.dwattr $C$DW$795, DW_AT_location[DW_OP_regx 0x74]
$C$DW$796 .dwtag DW_TAG_TI_assign_register
.dwattr $C$DW$796, DW_AT_name("R29_b1")
.dwattr $C$DW$796, DW_AT_location[DW_OP_regx 0x75]
$C$DW$797 .dwtag DW_TAG_TI_assign_register
.dwattr $C$DW$797, DW_AT_name("R29_b2")
.dwattr $C$DW$797, DW_AT_location[DW_OP_regx 0x76]
$C$DW$798 .dwtag DW_TAG_TI_assign_register
.dwattr $C$DW$798, DW_AT_name("R29_b3")
.dwattr $C$DW$798, DW_AT_location[DW_OP_regx 0x77]
$C$DW$799 .dwtag DW_TAG_TI_assign_register
.dwattr $C$DW$799, DW_AT_name("R30_b0")
.dwattr $C$DW$799, DW_AT_location[DW_OP_regx 0x78]
$C$DW$800 .dwtag DW_TAG_TI_assign_register
.dwattr $C$DW$800, DW_AT_name("R30_b1")
.dwattr $C$DW$800, DW_AT_location[DW_OP_regx 0x79]
$C$DW$801 .dwtag DW_TAG_TI_assign_register
.dwattr $C$DW$801, DW_AT_name("R30_b2")
.dwattr $C$DW$801, DW_AT_location[DW_OP_regx 0x7a]
$C$DW$802 .dwtag DW_TAG_TI_assign_register
.dwattr $C$DW$802, DW_AT_name("R30_b3")
.dwattr $C$DW$802, DW_AT_location[DW_OP_regx 0x7b]
$C$DW$803 .dwtag DW_TAG_TI_assign_register
.dwattr $C$DW$803, DW_AT_name("R31_b0")
.dwattr $C$DW$803, DW_AT_location[DW_OP_regx 0x7c]
$C$DW$804 .dwtag DW_TAG_TI_assign_register
.dwattr $C$DW$804, DW_AT_name("R31_b1")
.dwattr $C$DW$804, DW_AT_location[DW_OP_regx 0x7d]
$C$DW$805 .dwtag DW_TAG_TI_assign_register
.dwattr $C$DW$805, DW_AT_name("R31_b2")
.dwattr $C$DW$805, DW_AT_location[DW_OP_regx 0x7e]
$C$DW$806 .dwtag DW_TAG_TI_assign_register
.dwattr $C$DW$806, DW_AT_name("R31_b3")
.dwattr $C$DW$806, DW_AT_location[DW_OP_regx 0x7f]
.dwendtag $C$DW$CU
|
_cat: file format elf32-i386
Disassembly of section .text:
00000000 <main>:
}
}
int
main(int argc, char *argv[])
{
0: 55 push %ebp
1: 89 e5 mov %esp,%ebp
3: 57 push %edi
4: 56 push %esi
exit();
}
}
int
main(int argc, char *argv[])
5: be 01 00 00 00 mov $0x1,%esi
{
a: 53 push %ebx
b: 83 e4 f0 and $0xfffffff0,%esp
e: 83 ec 20 sub $0x20,%esp
11: 8b 7d 08 mov 0x8(%ebp),%edi
exit();
}
}
int
main(int argc, char *argv[])
14: 8b 5d 0c mov 0xc(%ebp),%ebx
17: 83 c3 04 add $0x4,%ebx
{
int fd, i;
if(argc <= 1){
1a: 83 ff 01 cmp $0x1,%edi
1d: 7e 5d jle 7c <main+0x7c>
1f: 90 nop
cat(0);
exit();
}
for(i = 1; i < argc; i++){
if((fd = open(argv[i], 0)) < 0){
20: c7 44 24 04 00 00 00 movl $0x0,0x4(%esp)
27: 00
28: 8b 03 mov (%ebx),%eax
2a: 89 04 24 mov %eax,(%esp)
2d: e8 62 03 00 00 call 394 <open>
32: 85 c0 test %eax,%eax
34: 78 27 js 5d <main+0x5d>
printf(1, "cat: cannot open %s\n", argv[i]);
exit();
}
cat(fd);
36: 89 04 24 mov %eax,(%esp)
if(argc <= 1){
cat(0);
exit();
}
for(i = 1; i < argc; i++){
39: 83 c6 01 add $0x1,%esi
3c: 83 c3 04 add $0x4,%ebx
if((fd = open(argv[i], 0)) < 0){
printf(1, "cat: cannot open %s\n", argv[i]);
exit();
}
cat(fd);
3f: 89 44 24 1c mov %eax,0x1c(%esp)
43: e8 48 00 00 00 call 90 <cat>
close(fd);
48: 8b 44 24 1c mov 0x1c(%esp),%eax
4c: 89 04 24 mov %eax,(%esp)
4f: e8 28 03 00 00 call 37c <close>
if(argc <= 1){
cat(0);
exit();
}
for(i = 1; i < argc; i++){
54: 39 fe cmp %edi,%esi
56: 75 c8 jne 20 <main+0x20>
exit();
}
cat(fd);
close(fd);
}
exit();
58: e8 f7 02 00 00 call 354 <exit>
exit();
}
for(i = 1; i < argc; i++){
if((fd = open(argv[i], 0)) < 0){
printf(1, "cat: cannot open %s\n", argv[i]);
5d: 8b 03 mov (%ebx),%eax
5f: c7 44 24 04 b1 07 00 movl $0x7b1,0x4(%esp)
66: 00
67: c7 04 24 01 00 00 00 movl $0x1,(%esp)
6e: 89 44 24 08 mov %eax,0x8(%esp)
72: e8 39 04 00 00 call 4b0 <printf>
exit();
77: e8 d8 02 00 00 call 354 <exit>
main(int argc, char *argv[])
{
int fd, i;
if(argc <= 1){
cat(0);
7c: c7 04 24 00 00 00 00 movl $0x0,(%esp)
83: e8 08 00 00 00 call 90 <cat>
exit();
88: e8 c7 02 00 00 call 354 <exit>
8d: 90 nop
8e: 90 nop
8f: 90 nop
00000090 <cat>:
char buf[512];
void
cat(int fd)
{
90: 55 push %ebp
91: 89 e5 mov %esp,%ebp
93: 56 push %esi
94: 53 push %ebx
95: 83 ec 10 sub $0x10,%esp
98: 8b 75 08 mov 0x8(%ebp),%esi
int n;
while((n = read(fd, buf, sizeof(buf))) > 0) {
9b: eb 1f jmp bc <cat+0x2c>
9d: 8d 76 00 lea 0x0(%esi),%esi
if (write(1, buf, n) != n) {
a0: 89 5c 24 08 mov %ebx,0x8(%esp)
a4: c7 44 24 04 e0 0a 00 movl $0xae0,0x4(%esp)
ab: 00
ac: c7 04 24 01 00 00 00 movl $0x1,(%esp)
b3: e8 bc 02 00 00 call 374 <write>
b8: 39 d8 cmp %ebx,%eax
ba: 75 28 jne e4 <cat+0x54>
void
cat(int fd)
{
int n;
while((n = read(fd, buf, sizeof(buf))) > 0) {
bc: c7 44 24 08 00 02 00 movl $0x200,0x8(%esp)
c3: 00
c4: c7 44 24 04 e0 0a 00 movl $0xae0,0x4(%esp)
cb: 00
cc: 89 34 24 mov %esi,(%esp)
cf: e8 98 02 00 00 call 36c <read>
d4: 83 f8 00 cmp $0x0,%eax
d7: 89 c3 mov %eax,%ebx
d9: 7f c5 jg a0 <cat+0x10>
if (write(1, buf, n) != n) {
printf(1, "cat: write error\n");
exit();
}
}
if(n < 0){
db: 75 20 jne fd <cat+0x6d>
printf(1, "cat: read error\n");
exit();
}
}
dd: 83 c4 10 add $0x10,%esp
e0: 5b pop %ebx
e1: 5e pop %esi
e2: 5d pop %ebp
e3: c3 ret
{
int n;
while((n = read(fd, buf, sizeof(buf))) > 0) {
if (write(1, buf, n) != n) {
printf(1, "cat: write error\n");
e4: c7 44 24 04 8e 07 00 movl $0x78e,0x4(%esp)
eb: 00
ec: c7 04 24 01 00 00 00 movl $0x1,(%esp)
f3: e8 b8 03 00 00 call 4b0 <printf>
exit();
f8: e8 57 02 00 00 call 354 <exit>
}
}
if(n < 0){
printf(1, "cat: read error\n");
fd: c7 44 24 04 a0 07 00 movl $0x7a0,0x4(%esp)
104: 00
105: c7 04 24 01 00 00 00 movl $0x1,(%esp)
10c: e8 9f 03 00 00 call 4b0 <printf>
exit();
111: e8 3e 02 00 00 call 354 <exit>
116: 90 nop
117: 90 nop
118: 90 nop
119: 90 nop
11a: 90 nop
11b: 90 nop
11c: 90 nop
11d: 90 nop
11e: 90 nop
11f: 90 nop
00000120 <strcpy>:
#include "user.h"
#include "x86.h"
char*
strcpy(char *s, const char *t)
{
120: 55 push %ebp
char *os;
os = s;
while((*s++ = *t++) != 0)
121: 31 d2 xor %edx,%edx
#include "user.h"
#include "x86.h"
char*
strcpy(char *s, const char *t)
{
123: 89 e5 mov %esp,%ebp
125: 8b 45 08 mov 0x8(%ebp),%eax
128: 53 push %ebx
129: 8b 5d 0c mov 0xc(%ebp),%ebx
12c: 8d 74 26 00 lea 0x0(%esi,%eiz,1),%esi
char *os;
os = s;
while((*s++ = *t++) != 0)
130: 0f b6 0c 13 movzbl (%ebx,%edx,1),%ecx
134: 88 0c 10 mov %cl,(%eax,%edx,1)
137: 83 c2 01 add $0x1,%edx
13a: 84 c9 test %cl,%cl
13c: 75 f2 jne 130 <strcpy+0x10>
;
return os;
}
13e: 5b pop %ebx
13f: 5d pop %ebp
140: c3 ret
141: eb 0d jmp 150 <strcmp>
143: 90 nop
144: 90 nop
145: 90 nop
146: 90 nop
147: 90 nop
148: 90 nop
149: 90 nop
14a: 90 nop
14b: 90 nop
14c: 90 nop
14d: 90 nop
14e: 90 nop
14f: 90 nop
00000150 <strcmp>:
int
strcmp(const char *p, const char *q)
{
150: 55 push %ebp
151: 89 e5 mov %esp,%ebp
153: 8b 4d 08 mov 0x8(%ebp),%ecx
156: 56 push %esi
157: 8b 55 0c mov 0xc(%ebp),%edx
15a: 53 push %ebx
while(*p && *p == *q)
15b: 0f b6 01 movzbl (%ecx),%eax
15e: 0f b6 1a movzbl (%edx),%ebx
161: 84 c0 test %al,%al
163: 74 23 je 188 <strcmp+0x38>
165: 38 d8 cmp %bl,%al
167: 74 10 je 179 <strcmp+0x29>
169: eb 2d jmp 198 <strcmp+0x48>
16b: 90 nop
16c: 8d 74 26 00 lea 0x0(%esi,%eiz,1),%esi
170: 83 c1 01 add $0x1,%ecx
173: 38 d8 cmp %bl,%al
175: 75 21 jne 198 <strcmp+0x48>
p++, q++;
177: 89 f2 mov %esi,%edx
}
int
strcmp(const char *p, const char *q)
{
while(*p && *p == *q)
179: 0f b6 41 01 movzbl 0x1(%ecx),%eax
p++, q++;
17d: 8d 72 01 lea 0x1(%edx),%esi
}
int
strcmp(const char *p, const char *q)
{
while(*p && *p == *q)
180: 0f b6 5a 01 movzbl 0x1(%edx),%ebx
184: 84 c0 test %al,%al
186: 75 e8 jne 170 <strcmp+0x20>
p++, q++;
return (uchar)*p - (uchar)*q;
188: 0f b6 db movzbl %bl,%ebx
}
int
strcmp(const char *p, const char *q)
{
while(*p && *p == *q)
18b: 31 c0 xor %eax,%eax
p++, q++;
return (uchar)*p - (uchar)*q;
18d: 29 d8 sub %ebx,%eax
}
18f: 5b pop %ebx
190: 5e pop %esi
191: 5d pop %ebp
192: c3 ret
193: 90 nop
194: 8d 74 26 00 lea 0x0(%esi,%eiz,1),%esi
int
strcmp(const char *p, const char *q)
{
while(*p && *p == *q)
p++, q++;
return (uchar)*p - (uchar)*q;
198: 0f b6 db movzbl %bl,%ebx
}
int
strcmp(const char *p, const char *q)
{
while(*p && *p == *q)
19b: 0f b6 c0 movzbl %al,%eax
p++, q++;
return (uchar)*p - (uchar)*q;
19e: 29 d8 sub %ebx,%eax
}
1a0: 5b pop %ebx
1a1: 5e pop %esi
1a2: 5d pop %ebp
1a3: c3 ret
1a4: 8d b6 00 00 00 00 lea 0x0(%esi),%esi
1aa: 8d bf 00 00 00 00 lea 0x0(%edi),%edi
000001b0 <strlen>:
uint
strlen(const char *s)
{
1b0: 55 push %ebp
int n;
for(n = 0; s[n]; n++)
1b1: 31 c0 xor %eax,%eax
return (uchar)*p - (uchar)*q;
}
uint
strlen(const char *s)
{
1b3: 89 e5 mov %esp,%ebp
1b5: 8b 4d 08 mov 0x8(%ebp),%ecx
int n;
for(n = 0; s[n]; n++)
1b8: 80 39 00 cmpb $0x0,(%ecx)
1bb: 74 0e je 1cb <strlen+0x1b>
1bd: 31 d2 xor %edx,%edx
1bf: 90 nop
1c0: 83 c2 01 add $0x1,%edx
1c3: 80 3c 11 00 cmpb $0x0,(%ecx,%edx,1)
1c7: 89 d0 mov %edx,%eax
1c9: 75 f5 jne 1c0 <strlen+0x10>
;
return n;
}
1cb: 5d pop %ebp
1cc: c3 ret
1cd: 8d 76 00 lea 0x0(%esi),%esi
000001d0 <memset>:
void*
memset(void *dst, int c, uint n)
{
1d0: 55 push %ebp
1d1: 89 e5 mov %esp,%ebp
1d3: 8b 55 08 mov 0x8(%ebp),%edx
1d6: 57 push %edi
}
static inline void
stosb(void *addr, int data, int cnt)
{
asm volatile("cld; rep stosb" :
1d7: 8b 4d 10 mov 0x10(%ebp),%ecx
1da: 8b 45 0c mov 0xc(%ebp),%eax
1dd: 89 d7 mov %edx,%edi
1df: fc cld
1e0: f3 aa rep stos %al,%es:(%edi)
stosb(dst, c, n);
return dst;
}
1e2: 89 d0 mov %edx,%eax
1e4: 5f pop %edi
1e5: 5d pop %ebp
1e6: c3 ret
1e7: 89 f6 mov %esi,%esi
1e9: 8d bc 27 00 00 00 00 lea 0x0(%edi,%eiz,1),%edi
000001f0 <strchr>:
char*
strchr(const char *s, char c)
{
1f0: 55 push %ebp
1f1: 89 e5 mov %esp,%ebp
1f3: 8b 45 08 mov 0x8(%ebp),%eax
1f6: 0f b6 4d 0c movzbl 0xc(%ebp),%ecx
for(; *s; s++)
1fa: 0f b6 10 movzbl (%eax),%edx
1fd: 84 d2 test %dl,%dl
1ff: 75 12 jne 213 <strchr+0x23>
201: eb 1d jmp 220 <strchr+0x30>
203: 90 nop
204: 8d 74 26 00 lea 0x0(%esi,%eiz,1),%esi
208: 0f b6 50 01 movzbl 0x1(%eax),%edx
20c: 84 d2 test %dl,%dl
20e: 74 10 je 220 <strchr+0x30>
210: 83 c0 01 add $0x1,%eax
if(*s == c)
213: 38 ca cmp %cl,%dl
215: 75 f1 jne 208 <strchr+0x18>
return (char*)s;
return 0;
}
217: 5d pop %ebp
218: c3 ret
219: 8d b4 26 00 00 00 00 lea 0x0(%esi,%eiz,1),%esi
strchr(const char *s, char c)
{
for(; *s; s++)
if(*s == c)
return (char*)s;
return 0;
220: 31 c0 xor %eax,%eax
}
222: 5d pop %ebp
223: c3 ret
224: 8d b6 00 00 00 00 lea 0x0(%esi),%esi
22a: 8d bf 00 00 00 00 lea 0x0(%edi),%edi
00000230 <gets>:
char*
gets(char *buf, int max)
{
230: 55 push %ebp
231: 89 e5 mov %esp,%ebp
233: 57 push %edi
234: 56 push %esi
int i, cc;
char c;
for(i=0; i+1 < max; ){
235: 31 f6 xor %esi,%esi
return 0;
}
char*
gets(char *buf, int max)
{
237: 53 push %ebx
238: 83 ec 2c sub $0x2c,%esp
23b: 8b 7d 08 mov 0x8(%ebp),%edi
int i, cc;
char c;
for(i=0; i+1 < max; ){
23e: eb 31 jmp 271 <gets+0x41>
cc = read(0, &c, 1);
240: 8d 45 e7 lea -0x19(%ebp),%eax
243: c7 44 24 08 01 00 00 movl $0x1,0x8(%esp)
24a: 00
24b: 89 44 24 04 mov %eax,0x4(%esp)
24f: c7 04 24 00 00 00 00 movl $0x0,(%esp)
256: e8 11 01 00 00 call 36c <read>
if(cc < 1)
25b: 85 c0 test %eax,%eax
25d: 7e 1a jle 279 <gets+0x49>
break;
buf[i++] = c;
25f: 0f b6 45 e7 movzbl -0x19(%ebp),%eax
gets(char *buf, int max)
{
int i, cc;
char c;
for(i=0; i+1 < max; ){
263: 89 de mov %ebx,%esi
cc = read(0, &c, 1);
if(cc < 1)
break;
buf[i++] = c;
if(c == '\n' || c == '\r')
265: 3c 0d cmp $0xd,%al
for(i=0; i+1 < max; ){
cc = read(0, &c, 1);
if(cc < 1)
break;
buf[i++] = c;
267: 88 44 1f ff mov %al,-0x1(%edi,%ebx,1)
if(c == '\n' || c == '\r')
26b: 74 0c je 279 <gets+0x49>
26d: 3c 0a cmp $0xa,%al
26f: 74 08 je 279 <gets+0x49>
gets(char *buf, int max)
{
int i, cc;
char c;
for(i=0; i+1 < max; ){
271: 8d 5e 01 lea 0x1(%esi),%ebx
274: 3b 5d 0c cmp 0xc(%ebp),%ebx
277: 7c c7 jl 240 <gets+0x10>
break;
buf[i++] = c;
if(c == '\n' || c == '\r')
break;
}
buf[i] = '\0';
279: c6 04 37 00 movb $0x0,(%edi,%esi,1)
return buf;
}
27d: 83 c4 2c add $0x2c,%esp
280: 89 f8 mov %edi,%eax
282: 5b pop %ebx
283: 5e pop %esi
284: 5f pop %edi
285: 5d pop %ebp
286: c3 ret
287: 89 f6 mov %esi,%esi
289: 8d bc 27 00 00 00 00 lea 0x0(%edi,%eiz,1),%edi
00000290 <stat>:
int
stat(const char *n, struct stat *st)
{
290: 55 push %ebp
291: 89 e5 mov %esp,%ebp
293: 83 ec 18 sub $0x18,%esp
int fd;
int r;
fd = open(n, O_RDONLY);
296: 8b 45 08 mov 0x8(%ebp),%eax
return buf;
}
int
stat(const char *n, struct stat *st)
{
299: 89 5d f8 mov %ebx,-0x8(%ebp)
29c: 89 75 fc mov %esi,-0x4(%ebp)
int fd;
int r;
fd = open(n, O_RDONLY);
if(fd < 0)
return -1;
29f: be ff ff ff ff mov $0xffffffff,%esi
stat(const char *n, struct stat *st)
{
int fd;
int r;
fd = open(n, O_RDONLY);
2a4: c7 44 24 04 00 00 00 movl $0x0,0x4(%esp)
2ab: 00
2ac: 89 04 24 mov %eax,(%esp)
2af: e8 e0 00 00 00 call 394 <open>
if(fd < 0)
2b4: 85 c0 test %eax,%eax
stat(const char *n, struct stat *st)
{
int fd;
int r;
fd = open(n, O_RDONLY);
2b6: 89 c3 mov %eax,%ebx
if(fd < 0)
2b8: 78 19 js 2d3 <stat+0x43>
return -1;
r = fstat(fd, st);
2ba: 8b 45 0c mov 0xc(%ebp),%eax
2bd: 89 1c 24 mov %ebx,(%esp)
2c0: 89 44 24 04 mov %eax,0x4(%esp)
2c4: e8 e3 00 00 00 call 3ac <fstat>
close(fd);
2c9: 89 1c 24 mov %ebx,(%esp)
int r;
fd = open(n, O_RDONLY);
if(fd < 0)
return -1;
r = fstat(fd, st);
2cc: 89 c6 mov %eax,%esi
close(fd);
2ce: e8 a9 00 00 00 call 37c <close>
return r;
}
2d3: 89 f0 mov %esi,%eax
2d5: 8b 5d f8 mov -0x8(%ebp),%ebx
2d8: 8b 75 fc mov -0x4(%ebp),%esi
2db: 89 ec mov %ebp,%esp
2dd: 5d pop %ebp
2de: c3 ret
2df: 90 nop
000002e0 <atoi>:
int
atoi(const char *s)
{
2e0: 55 push %ebp
int n;
n = 0;
2e1: 31 c0 xor %eax,%eax
return r;
}
int
atoi(const char *s)
{
2e3: 89 e5 mov %esp,%ebp
2e5: 8b 4d 08 mov 0x8(%ebp),%ecx
2e8: 53 push %ebx
int n;
n = 0;
while('0' <= *s && *s <= '9')
2e9: 0f b6 11 movzbl (%ecx),%edx
2ec: 8d 5a d0 lea -0x30(%edx),%ebx
2ef: 80 fb 09 cmp $0x9,%bl
2f2: 77 1c ja 310 <atoi+0x30>
2f4: 8d 74 26 00 lea 0x0(%esi,%eiz,1),%esi
n = n*10 + *s++ - '0';
2f8: 0f be d2 movsbl %dl,%edx
2fb: 83 c1 01 add $0x1,%ecx
2fe: 8d 04 80 lea (%eax,%eax,4),%eax
301: 8d 44 42 d0 lea -0x30(%edx,%eax,2),%eax
atoi(const char *s)
{
int n;
n = 0;
while('0' <= *s && *s <= '9')
305: 0f b6 11 movzbl (%ecx),%edx
308: 8d 5a d0 lea -0x30(%edx),%ebx
30b: 80 fb 09 cmp $0x9,%bl
30e: 76 e8 jbe 2f8 <atoi+0x18>
n = n*10 + *s++ - '0';
return n;
}
310: 5b pop %ebx
311: 5d pop %ebp
312: c3 ret
313: 8d b6 00 00 00 00 lea 0x0(%esi),%esi
319: 8d bc 27 00 00 00 00 lea 0x0(%edi,%eiz,1),%edi
00000320 <memmove>:
void*
memmove(void *vdst, const void *vsrc, int n)
{
320: 55 push %ebp
321: 89 e5 mov %esp,%ebp
323: 56 push %esi
324: 8b 45 08 mov 0x8(%ebp),%eax
327: 53 push %ebx
328: 8b 5d 10 mov 0x10(%ebp),%ebx
32b: 8b 75 0c mov 0xc(%ebp),%esi
char *dst;
const char *src;
dst = vdst;
src = vsrc;
while(n-- > 0)
32e: 85 db test %ebx,%ebx
330: 7e 14 jle 346 <memmove+0x26>
n = n*10 + *s++ - '0';
return n;
}
void*
memmove(void *vdst, const void *vsrc, int n)
332: 31 d2 xor %edx,%edx
334: 8d 74 26 00 lea 0x0(%esi,%eiz,1),%esi
const char *src;
dst = vdst;
src = vsrc;
while(n-- > 0)
*dst++ = *src++;
338: 0f b6 0c 16 movzbl (%esi,%edx,1),%ecx
33c: 88 0c 10 mov %cl,(%eax,%edx,1)
33f: 83 c2 01 add $0x1,%edx
char *dst;
const char *src;
dst = vdst;
src = vsrc;
while(n-- > 0)
342: 39 da cmp %ebx,%edx
344: 75 f2 jne 338 <memmove+0x18>
*dst++ = *src++;
return vdst;
}
346: 5b pop %ebx
347: 5e pop %esi
348: 5d pop %ebp
349: c3 ret
34a: 90 nop
34b: 90 nop
0000034c <fork>:
name: \
movl $SYS_ ## name, %eax; \
int $T_SYSCALL; \
ret
SYSCALL(fork)
34c: b8 01 00 00 00 mov $0x1,%eax
351: cd 40 int $0x40
353: c3 ret
00000354 <exit>:
SYSCALL(exit)
354: b8 02 00 00 00 mov $0x2,%eax
359: cd 40 int $0x40
35b: c3 ret
0000035c <wait>:
SYSCALL(wait)
35c: b8 03 00 00 00 mov $0x3,%eax
361: cd 40 int $0x40
363: c3 ret
00000364 <pipe>:
SYSCALL(pipe)
364: b8 04 00 00 00 mov $0x4,%eax
369: cd 40 int $0x40
36b: c3 ret
0000036c <read>:
SYSCALL(read)
36c: b8 05 00 00 00 mov $0x5,%eax
371: cd 40 int $0x40
373: c3 ret
00000374 <write>:
SYSCALL(write)
374: b8 10 00 00 00 mov $0x10,%eax
379: cd 40 int $0x40
37b: c3 ret
0000037c <close>:
SYSCALL(close)
37c: b8 15 00 00 00 mov $0x15,%eax
381: cd 40 int $0x40
383: c3 ret
00000384 <kill>:
SYSCALL(kill)
384: b8 06 00 00 00 mov $0x6,%eax
389: cd 40 int $0x40
38b: c3 ret
0000038c <exec>:
SYSCALL(exec)
38c: b8 07 00 00 00 mov $0x7,%eax
391: cd 40 int $0x40
393: c3 ret
00000394 <open>:
SYSCALL(open)
394: b8 0f 00 00 00 mov $0xf,%eax
399: cd 40 int $0x40
39b: c3 ret
0000039c <mknod>:
SYSCALL(mknod)
39c: b8 11 00 00 00 mov $0x11,%eax
3a1: cd 40 int $0x40
3a3: c3 ret
000003a4 <unlink>:
SYSCALL(unlink)
3a4: b8 12 00 00 00 mov $0x12,%eax
3a9: cd 40 int $0x40
3ab: c3 ret
000003ac <fstat>:
SYSCALL(fstat)
3ac: b8 08 00 00 00 mov $0x8,%eax
3b1: cd 40 int $0x40
3b3: c3 ret
000003b4 <link>:
SYSCALL(link)
3b4: b8 13 00 00 00 mov $0x13,%eax
3b9: cd 40 int $0x40
3bb: c3 ret
000003bc <mkdir>:
SYSCALL(mkdir)
3bc: b8 14 00 00 00 mov $0x14,%eax
3c1: cd 40 int $0x40
3c3: c3 ret
000003c4 <chdir>:
SYSCALL(chdir)
3c4: b8 09 00 00 00 mov $0x9,%eax
3c9: cd 40 int $0x40
3cb: c3 ret
000003cc <dup>:
SYSCALL(dup)
3cc: b8 0a 00 00 00 mov $0xa,%eax
3d1: cd 40 int $0x40
3d3: c3 ret
000003d4 <getpid>:
SYSCALL(getpid)
3d4: b8 0b 00 00 00 mov $0xb,%eax
3d9: cd 40 int $0x40
3db: c3 ret
000003dc <sbrk>:
SYSCALL(sbrk)
3dc: b8 0c 00 00 00 mov $0xc,%eax
3e1: cd 40 int $0x40
3e3: c3 ret
000003e4 <sleep>:
SYSCALL(sleep)
3e4: b8 0d 00 00 00 mov $0xd,%eax
3e9: cd 40 int $0x40
3eb: c3 ret
000003ec <uptime>:
SYSCALL(uptime)
3ec: b8 0e 00 00 00 mov $0xe,%eax
3f1: cd 40 int $0x40
3f3: c3 ret
3f4: 90 nop
3f5: 90 nop
3f6: 90 nop
3f7: 90 nop
3f8: 90 nop
3f9: 90 nop
3fa: 90 nop
3fb: 90 nop
3fc: 90 nop
3fd: 90 nop
3fe: 90 nop
3ff: 90 nop
00000400 <putc>:
#include "stat.h"
#include "user.h"
static void
putc(int fd, char c)
{
400: 55 push %ebp
401: 89 e5 mov %esp,%ebp
403: 83 ec 28 sub $0x28,%esp
406: 88 55 f4 mov %dl,-0xc(%ebp)
write(fd, &c, 1);
409: 8d 55 f4 lea -0xc(%ebp),%edx
40c: c7 44 24 08 01 00 00 movl $0x1,0x8(%esp)
413: 00
414: 89 54 24 04 mov %edx,0x4(%esp)
418: 89 04 24 mov %eax,(%esp)
41b: e8 54 ff ff ff call 374 <write>
}
420: c9 leave
421: c3 ret
422: 8d b4 26 00 00 00 00 lea 0x0(%esi,%eiz,1),%esi
429: 8d bc 27 00 00 00 00 lea 0x0(%edi,%eiz,1),%edi
00000430 <printint>:
static void
printint(int fd, int xx, int base, int sgn)
{
430: 55 push %ebp
431: 89 e5 mov %esp,%ebp
433: 57 push %edi
434: 56 push %esi
435: 89 c6 mov %eax,%esi
437: 53 push %ebx
438: 83 ec 1c sub $0x1c,%esp
char buf[16];
int i, neg;
uint x;
neg = 0;
if(sgn && xx < 0){
43b: 8b 45 08 mov 0x8(%ebp),%eax
43e: 85 c0 test %eax,%eax
440: 74 5e je 4a0 <printint+0x70>
442: 89 d0 mov %edx,%eax
444: c1 e8 1f shr $0x1f,%eax
447: 84 c0 test %al,%al
449: 74 55 je 4a0 <printint+0x70>
neg = 1;
x = -xx;
44b: 89 d0 mov %edx,%eax
int i, neg;
uint x;
neg = 0;
if(sgn && xx < 0){
neg = 1;
44d: bf 01 00 00 00 mov $0x1,%edi
x = -xx;
452: f7 d8 neg %eax
} else {
x = xx;
}
i = 0;
454: 31 db xor %ebx,%ebx
456: eb 02 jmp 45a <printint+0x2a>
do{
buf[i++] = digits[x % base];
458: 89 d3 mov %edx,%ebx
45a: 31 d2 xor %edx,%edx
45c: f7 f1 div %ecx
45e: 0f b6 92 cd 07 00 00 movzbl 0x7cd(%edx),%edx
}while((x /= base) != 0);
465: 85 c0 test %eax,%eax
x = xx;
}
i = 0;
do{
buf[i++] = digits[x % base];
467: 88 54 1d d8 mov %dl,-0x28(%ebp,%ebx,1)
46b: 8d 53 01 lea 0x1(%ebx),%edx
}while((x /= base) != 0);
46e: 75 e8 jne 458 <printint+0x28>
if(neg)
470: 85 ff test %edi,%edi
472: 74 08 je 47c <printint+0x4c>
buf[i++] = '-';
474: c6 44 15 d8 2d movb $0x2d,-0x28(%ebp,%edx,1)
479: 8d 53 02 lea 0x2(%ebx),%edx
while(--i >= 0)
47c: 8d 5a ff lea -0x1(%edx),%ebx
47f: 90 nop
putc(fd, buf[i]);
480: 0f be 54 1d d8 movsbl -0x28(%ebp,%ebx,1),%edx
485: 89 f0 mov %esi,%eax
buf[i++] = digits[x % base];
}while((x /= base) != 0);
if(neg)
buf[i++] = '-';
while(--i >= 0)
487: 83 eb 01 sub $0x1,%ebx
putc(fd, buf[i]);
48a: e8 71 ff ff ff call 400 <putc>
buf[i++] = digits[x % base];
}while((x /= base) != 0);
if(neg)
buf[i++] = '-';
while(--i >= 0)
48f: 83 fb ff cmp $0xffffffff,%ebx
492: 75 ec jne 480 <printint+0x50>
putc(fd, buf[i]);
}
494: 83 c4 1c add $0x1c,%esp
497: 5b pop %ebx
498: 5e pop %esi
499: 5f pop %edi
49a: 5d pop %ebp
49b: c3 ret
49c: 8d 74 26 00 lea 0x0(%esi,%eiz,1),%esi
neg = 0;
if(sgn && xx < 0){
neg = 1;
x = -xx;
} else {
x = xx;
4a0: 89 d0 mov %edx,%eax
static char digits[] = "0123456789ABCDEF";
char buf[16];
int i, neg;
uint x;
neg = 0;
4a2: 31 ff xor %edi,%edi
4a4: eb ae jmp 454 <printint+0x24>
4a6: 8d 76 00 lea 0x0(%esi),%esi
4a9: 8d bc 27 00 00 00 00 lea 0x0(%edi,%eiz,1),%edi
000004b0 <printf>:
}
// Print to the given fd. Only understands %d, %x, %p, %s.
void
printf(int fd, const char *fmt, ...)
{
4b0: 55 push %ebp
4b1: 89 e5 mov %esp,%ebp
4b3: 57 push %edi
4b4: 56 push %esi
4b5: 53 push %ebx
4b6: 83 ec 2c sub $0x2c,%esp
int c, i, state;
uint *ap;
state = 0;
ap = (uint*)(void*)&fmt + 1;
for(i = 0; fmt[i]; i++){
4b9: 8b 5d 0c mov 0xc(%ebp),%ebx
4bc: 0f b6 0b movzbl (%ebx),%ecx
4bf: 84 c9 test %cl,%cl
4c1: 0f 84 89 00 00 00 je 550 <printf+0xa0>
char *s;
int c, i, state;
uint *ap;
state = 0;
ap = (uint*)(void*)&fmt + 1;
4c7: 8d 45 10 lea 0x10(%ebp),%eax
{
char *s;
int c, i, state;
uint *ap;
state = 0;
4ca: 31 f6 xor %esi,%esi
ap = (uint*)(void*)&fmt + 1;
4cc: 89 45 e4 mov %eax,-0x1c(%ebp)
4cf: eb 21 jmp 4f2 <printf+0x42>
4d1: 8d b4 26 00 00 00 00 lea 0x0(%esi,%eiz,1),%esi
for(i = 0; fmt[i]; i++){
c = fmt[i] & 0xff;
if(state == 0){
if(c == '%'){
4d8: 83 f9 25 cmp $0x25,%ecx
4db: 74 7b je 558 <printf+0xa8>
state = '%';
} else {
putc(fd, c);
4dd: 8b 45 08 mov 0x8(%ebp),%eax
4e0: 0f be d1 movsbl %cl,%edx
4e3: e8 18 ff ff ff call 400 <putc>
} else if(c == '%'){
putc(fd, c);
} else {
// Unknown % sequence. Print it to draw attention.
putc(fd, '%');
putc(fd, c);
4e8: 83 c3 01 add $0x1,%ebx
int c, i, state;
uint *ap;
state = 0;
ap = (uint*)(void*)&fmt + 1;
for(i = 0; fmt[i]; i++){
4eb: 0f b6 0b movzbl (%ebx),%ecx
4ee: 84 c9 test %cl,%cl
4f0: 74 5e je 550 <printf+0xa0>
c = fmt[i] & 0xff;
if(state == 0){
4f2: 85 f6 test %esi,%esi
uint *ap;
state = 0;
ap = (uint*)(void*)&fmt + 1;
for(i = 0; fmt[i]; i++){
c = fmt[i] & 0xff;
4f4: 0f b6 c9 movzbl %cl,%ecx
if(state == 0){
4f7: 74 df je 4d8 <printf+0x28>
if(c == '%'){
state = '%';
} else {
putc(fd, c);
}
} else if(state == '%'){
4f9: 83 fe 25 cmp $0x25,%esi
4fc: 75 ea jne 4e8 <printf+0x38>
if(c == 'd'){
4fe: 83 f9 64 cmp $0x64,%ecx
501: 0f 84 c9 00 00 00 je 5d0 <printf+0x120>
printint(fd, *ap, 10, 1);
ap++;
} else if(c == 'x' || c == 'p'){
507: 83 f9 70 cmp $0x70,%ecx
50a: 74 54 je 560 <printf+0xb0>
50c: 83 f9 78 cmp $0x78,%ecx
50f: 90 nop
510: 74 4e je 560 <printf+0xb0>
printint(fd, *ap, 16, 0);
ap++;
} else if(c == 's'){
512: 83 f9 73 cmp $0x73,%ecx
515: 74 71 je 588 <printf+0xd8>
s = "(null)";
while(*s != 0){
putc(fd, *s);
s++;
}
} else if(c == 'c'){
517: 83 f9 63 cmp $0x63,%ecx
51a: 0f 84 d2 00 00 00 je 5f2 <printf+0x142>
putc(fd, *ap);
ap++;
} else if(c == '%'){
520: 83 f9 25 cmp $0x25,%ecx
putc(fd, c);
523: ba 25 00 00 00 mov $0x25,%edx
528: 8b 45 08 mov 0x8(%ebp),%eax
s++;
}
} else if(c == 'c'){
putc(fd, *ap);
ap++;
} else if(c == '%'){
52b: 74 11 je 53e <printf+0x8e>
putc(fd, c);
} else {
// Unknown % sequence. Print it to draw attention.
putc(fd, '%');
52d: 89 4d e0 mov %ecx,-0x20(%ebp)
530: e8 cb fe ff ff call 400 <putc>
putc(fd, c);
535: 8b 4d e0 mov -0x20(%ebp),%ecx
538: 8b 45 08 mov 0x8(%ebp),%eax
53b: 0f be d1 movsbl %cl,%edx
53e: 83 c3 01 add $0x1,%ebx
}
state = 0;
541: 31 f6 xor %esi,%esi
} else if(c == '%'){
putc(fd, c);
} else {
// Unknown % sequence. Print it to draw attention.
putc(fd, '%');
putc(fd, c);
543: e8 b8 fe ff ff call 400 <putc>
int c, i, state;
uint *ap;
state = 0;
ap = (uint*)(void*)&fmt + 1;
for(i = 0; fmt[i]; i++){
548: 0f b6 0b movzbl (%ebx),%ecx
54b: 84 c9 test %cl,%cl
54d: 75 a3 jne 4f2 <printf+0x42>
54f: 90 nop
putc(fd, c);
}
state = 0;
}
}
}
550: 83 c4 2c add $0x2c,%esp
553: 5b pop %ebx
554: 5e pop %esi
555: 5f pop %edi
556: 5d pop %ebp
557: c3 ret
ap = (uint*)(void*)&fmt + 1;
for(i = 0; fmt[i]; i++){
c = fmt[i] & 0xff;
if(state == 0){
if(c == '%'){
state = '%';
558: be 25 00 00 00 mov $0x25,%esi
55d: eb 89 jmp 4e8 <printf+0x38>
55f: 90 nop
} else if(state == '%'){
if(c == 'd'){
printint(fd, *ap, 10, 1);
ap++;
} else if(c == 'x' || c == 'p'){
printint(fd, *ap, 16, 0);
560: 8b 45 e4 mov -0x1c(%ebp),%eax
563: b9 10 00 00 00 mov $0x10,%ecx
} else {
// Unknown % sequence. Print it to draw attention.
putc(fd, '%');
putc(fd, c);
}
state = 0;
568: 31 f6 xor %esi,%esi
} else if(state == '%'){
if(c == 'd'){
printint(fd, *ap, 10, 1);
ap++;
} else if(c == 'x' || c == 'p'){
printint(fd, *ap, 16, 0);
56a: c7 04 24 00 00 00 00 movl $0x0,(%esp)
571: 8b 10 mov (%eax),%edx
573: 8b 45 08 mov 0x8(%ebp),%eax
576: e8 b5 fe ff ff call 430 <printint>
ap++;
57b: 83 45 e4 04 addl $0x4,-0x1c(%ebp)
57f: e9 64 ff ff ff jmp 4e8 <printf+0x38>
584: 8d 74 26 00 lea 0x0(%esi,%eiz,1),%esi
} else if(c == 's'){
s = (char*)*ap;
588: 8b 45 e4 mov -0x1c(%ebp),%eax
58b: 8b 38 mov (%eax),%edi
ap++;
58d: 83 c0 04 add $0x4,%eax
590: 89 45 e4 mov %eax,-0x1c(%ebp)
if(s == 0)
s = "(null)";
593: b8 c6 07 00 00 mov $0x7c6,%eax
598: 85 ff test %edi,%edi
59a: 0f 44 f8 cmove %eax,%edi
} else {
// Unknown % sequence. Print it to draw attention.
putc(fd, '%');
putc(fd, c);
}
state = 0;
59d: 31 f6 xor %esi,%esi
} else if(c == 's'){
s = (char*)*ap;
ap++;
if(s == 0)
s = "(null)";
while(*s != 0){
59f: 0f b6 17 movzbl (%edi),%edx
5a2: 84 d2 test %dl,%dl
5a4: 0f 84 3e ff ff ff je 4e8 <printf+0x38>
5aa: 89 de mov %ebx,%esi
5ac: 8b 5d 08 mov 0x8(%ebp),%ebx
5af: 90 nop
putc(fd, *s);
5b0: 0f be d2 movsbl %dl,%edx
s++;
5b3: 83 c7 01 add $0x1,%edi
s = (char*)*ap;
ap++;
if(s == 0)
s = "(null)";
while(*s != 0){
putc(fd, *s);
5b6: 89 d8 mov %ebx,%eax
5b8: e8 43 fe ff ff call 400 <putc>
} else if(c == 's'){
s = (char*)*ap;
ap++;
if(s == 0)
s = "(null)";
while(*s != 0){
5bd: 0f b6 17 movzbl (%edi),%edx
5c0: 84 d2 test %dl,%dl
5c2: 75 ec jne 5b0 <printf+0x100>
5c4: 89 f3 mov %esi,%ebx
} else {
// Unknown % sequence. Print it to draw attention.
putc(fd, '%');
putc(fd, c);
}
state = 0;
5c6: 31 f6 xor %esi,%esi
5c8: e9 1b ff ff ff jmp 4e8 <printf+0x38>
5cd: 8d 76 00 lea 0x0(%esi),%esi
} else {
putc(fd, c);
}
} else if(state == '%'){
if(c == 'd'){
printint(fd, *ap, 10, 1);
5d0: 8b 45 e4 mov -0x1c(%ebp),%eax
5d3: b1 0a mov $0xa,%cl
} else {
// Unknown % sequence. Print it to draw attention.
putc(fd, '%');
putc(fd, c);
}
state = 0;
5d5: 66 31 f6 xor %si,%si
} else {
putc(fd, c);
}
} else if(state == '%'){
if(c == 'd'){
printint(fd, *ap, 10, 1);
5d8: c7 04 24 01 00 00 00 movl $0x1,(%esp)
5df: 8b 10 mov (%eax),%edx
5e1: 8b 45 08 mov 0x8(%ebp),%eax
5e4: e8 47 fe ff ff call 430 <printint>
ap++;
5e9: 83 45 e4 04 addl $0x4,-0x1c(%ebp)
5ed: e9 f6 fe ff ff jmp 4e8 <printf+0x38>
while(*s != 0){
putc(fd, *s);
s++;
}
} else if(c == 'c'){
putc(fd, *ap);
5f2: 8b 45 e4 mov -0x1c(%ebp),%eax
} else {
// Unknown % sequence. Print it to draw attention.
putc(fd, '%');
putc(fd, c);
}
state = 0;
5f5: 31 f6 xor %esi,%esi
while(*s != 0){
putc(fd, *s);
s++;
}
} else if(c == 'c'){
putc(fd, *ap);
5f7: 0f be 10 movsbl (%eax),%edx
5fa: 8b 45 08 mov 0x8(%ebp),%eax
5fd: e8 fe fd ff ff call 400 <putc>
ap++;
602: 83 45 e4 04 addl $0x4,-0x1c(%ebp)
606: e9 dd fe ff ff jmp 4e8 <printf+0x38>
60b: 90 nop
60c: 90 nop
60d: 90 nop
60e: 90 nop
60f: 90 nop
00000610 <free>:
static Header base;
static Header *freep;
void
free(void *ap)
{
610: 55 push %ebp
Header *bp, *p;
bp = (Header*)ap - 1;
for(p = freep; !(bp > p && bp < p->s.ptr); p = p->s.ptr)
611: a1 c0 0a 00 00 mov 0xac0,%eax
static Header base;
static Header *freep;
void
free(void *ap)
{
616: 89 e5 mov %esp,%ebp
618: 57 push %edi
619: 56 push %esi
61a: 53 push %ebx
61b: 8b 5d 08 mov 0x8(%ebp),%ebx
Header *bp, *p;
bp = (Header*)ap - 1;
61e: 8d 4b f8 lea -0x8(%ebx),%ecx
621: 8d b4 26 00 00 00 00 lea 0x0(%esi,%eiz,1),%esi
for(p = freep; !(bp > p && bp < p->s.ptr); p = p->s.ptr)
628: 39 c8 cmp %ecx,%eax
62a: 8b 10 mov (%eax),%edx
62c: 73 04 jae 632 <free+0x22>
62e: 39 d1 cmp %edx,%ecx
630: 72 16 jb 648 <free+0x38>
if(p >= p->s.ptr && (bp > p || bp < p->s.ptr))
632: 39 d0 cmp %edx,%eax
634: 72 0c jb 642 <free+0x32>
636: 39 c8 cmp %ecx,%eax
638: 72 0e jb 648 <free+0x38>
63a: 39 d1 cmp %edx,%ecx
63c: 8d 74 26 00 lea 0x0(%esi,%eiz,1),%esi
640: 72 06 jb 648 <free+0x38>
static Header base;
static Header *freep;
void
free(void *ap)
{
642: 89 d0 mov %edx,%eax
644: eb e2 jmp 628 <free+0x18>
646: 66 90 xchg %ax,%ax
bp = (Header*)ap - 1;
for(p = freep; !(bp > p && bp < p->s.ptr); p = p->s.ptr)
if(p >= p->s.ptr && (bp > p || bp < p->s.ptr))
break;
if(bp + bp->s.size == p->s.ptr){
648: 8b 73 fc mov -0x4(%ebx),%esi
64b: 8d 3c f1 lea (%ecx,%esi,8),%edi
64e: 39 d7 cmp %edx,%edi
650: 74 19 je 66b <free+0x5b>
bp->s.size += p->s.ptr->s.size;
bp->s.ptr = p->s.ptr->s.ptr;
} else
bp->s.ptr = p->s.ptr;
652: 89 53 f8 mov %edx,-0x8(%ebx)
if(p + p->s.size == bp){
655: 8b 50 04 mov 0x4(%eax),%edx
658: 8d 34 d0 lea (%eax,%edx,8),%esi
65b: 39 f1 cmp %esi,%ecx
65d: 74 23 je 682 <free+0x72>
p->s.size += bp->s.size;
p->s.ptr = bp->s.ptr;
} else
p->s.ptr = bp;
65f: 89 08 mov %ecx,(%eax)
freep = p;
661: a3 c0 0a 00 00 mov %eax,0xac0
}
666: 5b pop %ebx
667: 5e pop %esi
668: 5f pop %edi
669: 5d pop %ebp
66a: c3 ret
bp = (Header*)ap - 1;
for(p = freep; !(bp > p && bp < p->s.ptr); p = p->s.ptr)
if(p >= p->s.ptr && (bp > p || bp < p->s.ptr))
break;
if(bp + bp->s.size == p->s.ptr){
bp->s.size += p->s.ptr->s.size;
66b: 03 72 04 add 0x4(%edx),%esi
66e: 89 73 fc mov %esi,-0x4(%ebx)
bp->s.ptr = p->s.ptr->s.ptr;
671: 8b 10 mov (%eax),%edx
673: 8b 12 mov (%edx),%edx
675: 89 53 f8 mov %edx,-0x8(%ebx)
} else
bp->s.ptr = p->s.ptr;
if(p + p->s.size == bp){
678: 8b 50 04 mov 0x4(%eax),%edx
67b: 8d 34 d0 lea (%eax,%edx,8),%esi
67e: 39 f1 cmp %esi,%ecx
680: 75 dd jne 65f <free+0x4f>
p->s.size += bp->s.size;
682: 03 53 fc add -0x4(%ebx),%edx
p->s.ptr = bp->s.ptr;
} else
p->s.ptr = bp;
freep = p;
685: a3 c0 0a 00 00 mov %eax,0xac0
bp->s.size += p->s.ptr->s.size;
bp->s.ptr = p->s.ptr->s.ptr;
} else
bp->s.ptr = p->s.ptr;
if(p + p->s.size == bp){
p->s.size += bp->s.size;
68a: 89 50 04 mov %edx,0x4(%eax)
p->s.ptr = bp->s.ptr;
68d: 8b 53 f8 mov -0x8(%ebx),%edx
690: 89 10 mov %edx,(%eax)
} else
p->s.ptr = bp;
freep = p;
}
692: 5b pop %ebx
693: 5e pop %esi
694: 5f pop %edi
695: 5d pop %ebp
696: c3 ret
697: 89 f6 mov %esi,%esi
699: 8d bc 27 00 00 00 00 lea 0x0(%edi,%eiz,1),%edi
000006a0 <malloc>:
return freep;
}
void*
malloc(uint nbytes)
{
6a0: 55 push %ebp
6a1: 89 e5 mov %esp,%ebp
6a3: 57 push %edi
6a4: 56 push %esi
6a5: 53 push %ebx
6a6: 83 ec 2c sub $0x2c,%esp
Header *p, *prevp;
uint nunits;
nunits = (nbytes + sizeof(Header) - 1)/sizeof(Header) + 1;
6a9: 8b 5d 08 mov 0x8(%ebp),%ebx
if((prevp = freep) == 0){
6ac: 8b 15 c0 0a 00 00 mov 0xac0,%edx
malloc(uint nbytes)
{
Header *p, *prevp;
uint nunits;
nunits = (nbytes + sizeof(Header) - 1)/sizeof(Header) + 1;
6b2: 83 c3 07 add $0x7,%ebx
6b5: c1 eb 03 shr $0x3,%ebx
6b8: 83 c3 01 add $0x1,%ebx
if((prevp = freep) == 0){
6bb: 85 d2 test %edx,%edx
6bd: 0f 84 a3 00 00 00 je 766 <malloc+0xc6>
6c3: 8b 02 mov (%edx),%eax
6c5: 8b 48 04 mov 0x4(%eax),%ecx
base.s.ptr = freep = prevp = &base;
base.s.size = 0;
}
for(p = prevp->s.ptr; ; prevp = p, p = p->s.ptr){
if(p->s.size >= nunits){
6c8: 39 d9 cmp %ebx,%ecx
6ca: 73 74 jae 740 <malloc+0xa0>
p->s.size -= nunits;
p += p->s.size;
p->s.size = nunits;
}
freep = prevp;
return (void*)(p + 1);
6cc: 8d 14 dd 00 00 00 00 lea 0x0(,%ebx,8),%edx
morecore(uint nu)
{
char *p;
Header *hp;
if(nu < 4096)
6d3: bf 00 80 00 00 mov $0x8000,%edi
p->s.size -= nunits;
p += p->s.size;
p->s.size = nunits;
}
freep = prevp;
return (void*)(p + 1);
6d8: 89 55 e4 mov %edx,-0x1c(%ebp)
6db: eb 0c jmp 6e9 <malloc+0x49>
6dd: 8d 76 00 lea 0x0(%esi),%esi
nunits = (nbytes + sizeof(Header) - 1)/sizeof(Header) + 1;
if((prevp = freep) == 0){
base.s.ptr = freep = prevp = &base;
base.s.size = 0;
}
for(p = prevp->s.ptr; ; prevp = p, p = p->s.ptr){
6e0: 8b 02 mov (%edx),%eax
if(p->s.size >= nunits){
6e2: 8b 48 04 mov 0x4(%eax),%ecx
6e5: 39 cb cmp %ecx,%ebx
6e7: 76 57 jbe 740 <malloc+0xa0>
p->s.size = nunits;
}
freep = prevp;
return (void*)(p + 1);
}
if(p == freep)
6e9: 3b 05 c0 0a 00 00 cmp 0xac0,%eax
6ef: 89 c2 mov %eax,%edx
6f1: 75 ed jne 6e0 <malloc+0x40>
morecore(uint nu)
{
char *p;
Header *hp;
if(nu < 4096)
6f3: 8b 45 e4 mov -0x1c(%ebp),%eax
6f6: 81 fb 00 10 00 00 cmp $0x1000,%ebx
6fc: be 00 10 00 00 mov $0x1000,%esi
701: 0f 43 f3 cmovae %ebx,%esi
704: 0f 42 c7 cmovb %edi,%eax
nu = 4096;
p = sbrk(nu * sizeof(Header));
707: 89 04 24 mov %eax,(%esp)
70a: e8 cd fc ff ff call 3dc <sbrk>
if(p == (char*)-1)
70f: 83 f8 ff cmp $0xffffffff,%eax
712: 74 1c je 730 <malloc+0x90>
return 0;
hp = (Header*)p;
hp->s.size = nu;
714: 89 70 04 mov %esi,0x4(%eax)
free((void*)(hp + 1));
717: 83 c0 08 add $0x8,%eax
71a: 89 04 24 mov %eax,(%esp)
71d: e8 ee fe ff ff call 610 <free>
return freep;
722: 8b 15 c0 0a 00 00 mov 0xac0,%edx
}
freep = prevp;
return (void*)(p + 1);
}
if(p == freep)
if((p = morecore(nunits)) == 0)
728: 85 d2 test %edx,%edx
72a: 75 b4 jne 6e0 <malloc+0x40>
72c: 8d 74 26 00 lea 0x0(%esi,%eiz,1),%esi
return 0;
}
}
730: 83 c4 2c add $0x2c,%esp
freep = prevp;
return (void*)(p + 1);
}
if(p == freep)
if((p = morecore(nunits)) == 0)
return 0;
733: 31 c0 xor %eax,%eax
}
}
735: 5b pop %ebx
736: 5e pop %esi
737: 5f pop %edi
738: 5d pop %ebp
739: c3 ret
73a: 8d b6 00 00 00 00 lea 0x0(%esi),%esi
base.s.ptr = freep = prevp = &base;
base.s.size = 0;
}
for(p = prevp->s.ptr; ; prevp = p, p = p->s.ptr){
if(p->s.size >= nunits){
if(p->s.size == nunits)
740: 39 cb cmp %ecx,%ebx
742: 74 1c je 760 <malloc+0xc0>
prevp->s.ptr = p->s.ptr;
else {
p->s.size -= nunits;
744: 29 d9 sub %ebx,%ecx
746: 89 48 04 mov %ecx,0x4(%eax)
p += p->s.size;
749: 8d 04 c8 lea (%eax,%ecx,8),%eax
p->s.size = nunits;
74c: 89 58 04 mov %ebx,0x4(%eax)
}
freep = prevp;
74f: 89 15 c0 0a 00 00 mov %edx,0xac0
}
if(p == freep)
if((p = morecore(nunits)) == 0)
return 0;
}
}
755: 83 c4 2c add $0x2c,%esp
p->s.size -= nunits;
p += p->s.size;
p->s.size = nunits;
}
freep = prevp;
return (void*)(p + 1);
758: 83 c0 08 add $0x8,%eax
}
if(p == freep)
if((p = morecore(nunits)) == 0)
return 0;
}
}
75b: 5b pop %ebx
75c: 5e pop %esi
75d: 5f pop %edi
75e: 5d pop %ebp
75f: c3 ret
base.s.size = 0;
}
for(p = prevp->s.ptr; ; prevp = p, p = p->s.ptr){
if(p->s.size >= nunits){
if(p->s.size == nunits)
prevp->s.ptr = p->s.ptr;
760: 8b 08 mov (%eax),%ecx
762: 89 0a mov %ecx,(%edx)
764: eb e9 jmp 74f <malloc+0xaf>
Header *p, *prevp;
uint nunits;
nunits = (nbytes + sizeof(Header) - 1)/sizeof(Header) + 1;
if((prevp = freep) == 0){
base.s.ptr = freep = prevp = &base;
766: c7 05 c0 0a 00 00 c4 movl $0xac4,0xac0
76d: 0a 00 00
base.s.size = 0;
770: b8 c4 0a 00 00 mov $0xac4,%eax
Header *p, *prevp;
uint nunits;
nunits = (nbytes + sizeof(Header) - 1)/sizeof(Header) + 1;
if((prevp = freep) == 0){
base.s.ptr = freep = prevp = &base;
775: c7 05 c4 0a 00 00 c4 movl $0xac4,0xac4
77c: 0a 00 00
base.s.size = 0;
77f: c7 05 c8 0a 00 00 00 movl $0x0,0xac8
786: 00 00 00
789: e9 3e ff ff ff jmp 6cc <malloc+0x2c>
|
--- FUNCTION SOURCE (pow) id{0,0} ---
(k,l){
return %_MathPow((%_ToNumber(k)),(%_ToNumber(l)));
}
--- END ---
--- Raw source ---
(k,l){
return %_MathPow((%_ToNumber(k)),(%_ToNumber(l)));
}
--- Optimized code ---
optimization_id = 0
source_position = 470
kind = OPTIMIZED_FUNCTION
name = pow
stack_slots = 7
compiler = crankshaft
Instructions (size = 360)
0x20a317c42aa0 0 55 push rbp
0x20a317c42aa1 1 4889e5 REX.W movq rbp,rsp
0x20a317c42aa4 4 56 push rsi
0x20a317c42aa5 5 57 push rdi
0x20a317c42aa6 6 4883ec18 REX.W subq rsp,0x18
;;; <@0,#0> -------------------- B0 --------------------
;;; <@8,#5> prologue
;;; Prologue begin
;;; Prologue end
;;; <@12,#7> -------------------- B1 --------------------
;;; <@14,#8> context
0x20a317c42aaa 10 488b45f8 REX.W movq rax,[rbp-0x8] ;; debug: position 470
;;; <@15,#8> gap
0x20a317c42aae 14 488945e8 REX.W movq [rbp-0x18],rax
;;; <@18,#12> -------------------- B2 --------------------
;;; <@19,#12> gap
0x20a317c42ab2 18 488bf0 REX.W movq rsi,rax
;;; <@20,#14> stack-check
0x20a317c42ab5 21 493ba5880a0000 REX.W cmpq rsp,[r13+0xa88]
0x20a317c42abc 28 7305 jnc 35 (0x20a317c42ac3)
0x20a317c42abe 30 e81da1ffff call StackCheck (0x20a317c3cbe0) ;; code: BUILTIN
;;; <@22,#14> lazy-bailout
;;; <@23,#14> gap
0x20a317c42ac3 35 488b75e8 REX.W movq rsi,[rbp-0x18]
0x20a317c42ac7 39 488b4518 REX.W movq rax,[rbp+0x18]
;;; <@24,#17> call-with-descriptor
0x20a317c42acb 43 0f1f440000 nop
0x20a317c42ad0 48 e8eb09feff call 0x20a317c234c0 ;; debug: position 495
;; code: STUB, ToNumberStub, minor: 0
;;; <@25,#17> gap
0x20a317c42ad5 53 488945e0 REX.W movq [rbp-0x20],rax
0x20a317c42ad9 57 488bd8 REX.W movq rbx,rax
;;; <@26,#18> lazy-bailout
;;; <@27,#18> gap
0x20a317c42adc 60 488b75e8 REX.W movq rsi,[rbp-0x18]
0x20a317c42ae0 64 488b4510 REX.W movq rax,[rbp+0x10]
;;; <@28,#20> call-with-descriptor
0x20a317c42ae4 68 0f1f440000 nop
0x20a317c42ae9 73 e8d209feff call 0x20a317c234c0 ;; debug: position 511
;; code: STUB, ToNumberStub, minor: 0
;;; <@29,#20> gap
0x20a317c42aee 78 488945d8 REX.W movq [rbp-0x28],rax
;;; <@30,#21> lazy-bailout
;;; <@31,#21> gap
0x20a317c42af2 82 488b5de0 REX.W movq rbx,[rbp-0x20]
;;; <@32,#26> double-untag
0x20a317c42af6 86 f6c301 testb rbx,0x1 ;; debug: position 484
0x20a317c42af9 89 7415 jz 112 (0x20a317c42b10)
0x20a317c42afb 91 4d8b55f8 REX.W movq r10,[r13-0x8]
0x20a317c42aff 95 4c3953ff REX.W cmpq [rbx-0x1],r10
0x20a317c42b03 99 c5fb105307 vmovsd xmm2,[rbx+0x7]
0x20a317c42b08 104 0f85b9000000 jnz 295 (0x20a317c42bc7)
0x20a317c42b0e 110 eb10 jmp 128 (0x20a317c42b20)
0x20a317c42b10 112 4c8bd3 REX.W movq r10,rbx
0x20a317c42b13 115 49c1ea20 REX.W shrq r10, 32
0x20a317c42b17 119 c5e957d2 vxorpd xmm2,xmm2,xmm2
0x20a317c42b1b 123 c4c16b2ad2 vcvtlsi2sd xmm2,xmm2,r10
;;; <@33,#26> gap
0x20a317c42b20 128 488bd0 REX.W movq rdx,rax
;;; <@34,#22> power
0x20a317c42b23 131 f6c201 testb rdx,0x1
0x20a317c42b26 134 740e jz 150 (0x20a317c42b36)
0x20a317c42b28 136 488b4aff REX.W movq rcx,[rdx-0x1]
0x20a317c42b2c 140 80790b81 cmpb [rcx+0xb],0x81
0x20a317c42b30 144 0f8596000000 jnz 300 (0x20a317c42bcc)
0x20a317c42b36 150 e8e5fdffff call 0x20a317c42920 ;; code: STUB, MathPowStub, minor: 2
;;; <@36,#22> lazy-bailout
;;; <@38,#27> number-tag-d
0x20a317c42b3b 155 498b9d480f0000 REX.W movq rbx,[r13+0xf48] ;; debug: position 477
0x20a317c42b42 162 488bc3 REX.W movq rax,rbx
0x20a317c42b45 165 4883c010 REX.W addq rax,0x10
0x20a317c42b49 169 0f822e000000 jc 221 (0x20a317c42b7d)
0x20a317c42b4f 175 493b85500f0000 REX.W cmpq rax,[r13+0xf50]
0x20a317c42b56 182 0f8721000000 ja 221 (0x20a317c42b7d)
0x20a317c42b5c 188 498985480f0000 REX.W movq [r13+0xf48],rax
0x20a317c42b63 195 48ffc3 REX.W incq rbx
0x20a317c42b66 198 4d8b55f8 REX.W movq r10,[r13-0x8]
0x20a317c42b6a 202 4c8953ff REX.W movq [rbx-0x1],r10
0x20a317c42b6e 206 c5fb115b07 vmovsd [rbx+0x7],xmm3
;;; <@39,#27> gap
0x20a317c42b73 211 488bc3 REX.W movq rax,rbx
;;; <@40,#24> return
0x20a317c42b76 214 488be5 REX.W movq rsp,rbp
0x20a317c42b79 217 5d pop rbp
0x20a317c42b7a 218 c21800 ret 0x18
;;; <@38,#27> -------------------- Deferred number-tag-d --------------------
0x20a317c42b7d 221 33db xorl rbx,rbx
0x20a317c42b7f 223 50 push rax
0x20a317c42b80 224 51 push rcx
0x20a317c42b81 225 52 push rdx
0x20a317c42b82 226 53 push rbx
0x20a317c42b83 227 56 push rsi
0x20a317c42b84 228 57 push rdi
0x20a317c42b85 229 4150 push r8
0x20a317c42b87 231 4151 push r9
0x20a317c42b89 233 4153 push r11
0x20a317c42b8b 235 4154 push r12
0x20a317c42b8d 237 4156 push r14
0x20a317c42b8f 239 4157 push r15
0x20a317c42b91 241 488d6424e0 REX.W leaq rsp,[rsp-0x20]
0x20a317c42b96 246 488b75f8 REX.W movq rsi,[rbp-0x8]
0x20a317c42b9a 250 33c0 xorl rax,rax
0x20a317c42b9c 252 498d9d58e7dffe REX.W leaq rbx,[r13-0x12018a8]
0x20a317c42ba3 259 e8384dfcff call 0x20a317c078e0 ;; code: STUB, CEntryStub, minor: 5
0x20a317c42ba8 264 4c8bd0 REX.W movq r10,rax
0x20a317c42bab 267 488d642420 REX.W leaq rsp,[rsp+0x20]
0x20a317c42bb0 272 415f pop r15
0x20a317c42bb2 274 415e pop r14
0x20a317c42bb4 276 415c pop r12
0x20a317c42bb6 278 415b pop r11
0x20a317c42bb8 280 4159 pop r9
0x20a317c42bba 282 4158 pop r8
0x20a317c42bbc 284 5f pop rdi
0x20a317c42bbd 285 5e pop rsi
0x20a317c42bbe 286 5b pop rbx
0x20a317c42bbf 287 5a pop rdx
0x20a317c42bc0 288 59 pop rcx
0x20a317c42bc1 289 58 pop rax
0x20a317c42bc2 290 498bda REX.W movq rbx,r10
0x20a317c42bc5 293 eba7 jmp 206 (0x20a317c42b6e)
;;; -------------------- Jump table --------------------
0x20a317c42bc7 295 e85234ccff call 0x20a31790601e ;; debug: position 7168
;; debug: deopt reason 'not a heap number'
;; deoptimization bailout 3
0x20a317c42bcc 300 e85734ccff call 0x20a317906028 ;; debug: position 7168
;; debug: deopt reason 'not a heap number'
;; deoptimization bailout 4
0x20a317c42bd1 305 0f1f00 nop
;;; Safepoint table.
Inlined functions (count = 0)
Deoptimization Input Data (deopt points = 6)
index ast id argc pc
0 4 0 35
1 8 0 60
2 14 0 82
3 14 0 -1
4 14 0 -1
5 14 0 155
Safepoints (size = 52)
0x20a317c42ac3 35 0010000 (sp -> fp) 0
0x20a317c42ad5 53 0010000 (sp -> fp) 1
0x20a317c42aee 78 0110000 (sp -> fp) 2
0x20a317c42ba8 264 0000000 | rbx (sp -> fp) <none>
RelocInfo (size = 335)
0x20a317c42aaa position (470)
0x20a317c42aaa comment (;;; <@0,#0> -------------------- B0 --------------------)
0x20a317c42aaa comment (;;; <@8,#5> prologue)
0x20a317c42aaa comment (;;; Prologue begin)
0x20a317c42aaa comment (;;; Prologue end)
0x20a317c42aaa comment (;;; <@12,#7> -------------------- B1 --------------------)
0x20a317c42aaa comment (;;; <@14,#8> context)
0x20a317c42aae comment (;;; <@15,#8> gap)
0x20a317c42ab2 comment (;;; <@18,#12> -------------------- B2 --------------------)
0x20a317c42ab2 comment (;;; <@19,#12> gap)
0x20a317c42ab5 comment (;;; <@20,#14> stack-check)
0x20a317c42abf code target (BUILTIN) (0x20a317c3cbe0)
0x20a317c42ac3 comment (;;; <@22,#14> lazy-bailout)
0x20a317c42ac3 comment (;;; <@23,#14> gap)
0x20a317c42acb comment (;;; <@24,#17> call-with-descriptor)
0x20a317c42ad0 position (495)
0x20a317c42ad1 code target (STUB) (0x20a317c234c0)
0x20a317c42ad5 comment (;;; <@25,#17> gap)
0x20a317c42adc comment (;;; <@26,#18> lazy-bailout)
0x20a317c42adc comment (;;; <@27,#18> gap)
0x20a317c42ae4 comment (;;; <@28,#20> call-with-descriptor)
0x20a317c42ae9 position (511)
0x20a317c42aea code target (STUB) (0x20a317c234c0)
0x20a317c42aee comment (;;; <@29,#20> gap)
0x20a317c42af2 comment (;;; <@30,#21> lazy-bailout)
0x20a317c42af2 comment (;;; <@31,#21> gap)
0x20a317c42af6 comment (;;; <@32,#26> double-untag)
0x20a317c42af6 position (484)
0x20a317c42b20 comment (;;; <@33,#26> gap)
0x20a317c42b23 comment (;;; <@34,#22> power)
0x20a317c42b37 code target (STUB) (0x20a317c42920)
0x20a317c42b3b comment (;;; <@36,#22> lazy-bailout)
0x20a317c42b3b comment (;;; <@38,#27> number-tag-d)
0x20a317c42b3b position (477)
0x20a317c42b73 comment (;;; <@39,#27> gap)
0x20a317c42b76 comment (;;; <@40,#24> return)
0x20a317c42b7d comment (;;; <@38,#27> -------------------- Deferred number-tag-d --------------------)
0x20a317c42ba4 code target (STUB) (0x20a317c078e0)
0x20a317c42bc7 comment (;;; -------------------- Jump table --------------------)
0x20a317c42bc7 position (7168)
0x20a317c42bc7 deopt reason (not a heap number)
0x20a317c42bc8 runtime entry (deoptimization bailout 3)
0x20a317c42bcc position (7168)
0x20a317c42bcc deopt reason (not a heap number)
0x20a317c42bcd runtime entry (deoptimization bailout 4)
0x20a317c42bd4 comment (;;; Safepoint table.)
--- End code ---
--- FUNCTION SOURCE (benchmark) id{1,0} ---
() {
var sum = 0;
for (var i = 0; i < 1000000; i++) {
sum += Math.pow(i, 2);
}
return sum;
}
--- END ---
--- Raw source ---
() {
var sum = 0;
for (var i = 0; i < 1000000; i++) {
sum += Math.pow(i, 2);
}
return sum;
}
--- Optimized code ---
optimization_id = 1
source_position = 18
kind = OPTIMIZED_FUNCTION
name = benchmark
stack_slots = 7
compiler = crankshaft
Instructions (size = 541)
0x20a317c42ec0 0 55 push rbp
0x20a317c42ec1 1 4889e5 REX.W movq rbp,rsp
0x20a317c42ec4 4 56 push rsi
0x20a317c42ec5 5 57 push rdi
0x20a317c42ec6 6 4883ec18 REX.W subq rsp,0x18
;;; <@0,#0> -------------------- B0 --------------------
;;; <@4,#3> prologue
;;; Prologue begin
;;; Prologue end
;;; <@8,#5> -------------------- B1 --------------------
;;; <@10,#6> context
0x20a317c42eca 10 488b45f8 REX.W movq rax,[rbp-0x8] ;; debug: position 18
;;; <@11,#6> gap
0x20a317c42ece 14 488945d8 REX.W movq [rbp-0x28],rax
;;; <@14,#10> -------------------- B2 --------------------
;;; <@15,#10> gap
0x20a317c42ed2 18 488bf0 REX.W movq rsi,rax
;;; <@16,#12> stack-check
0x20a317c42ed5 21 493ba5880a0000 REX.W cmpq rsp,[r13+0xa88]
0x20a317c42edc 28 7305 jnc 35 (0x20a317c42ee3)
0x20a317c42ede 30 e8fd9cffff call StackCheck (0x20a317c3cbe0) ;; code: BUILTIN
;;; <@18,#12> lazy-bailout
;;; <@21,#18> goto
0x20a317c42ee3 35 e95a000000 jmp 130 (0x20a317c42f42) ;; debug: position 40
;;; <@22,#22> -------------------- B3 (OSR entry) --------------------
0x20a317c42ee8 40 4883ec08 REX.W subq rsp,0x8
;;; <@34,#29> context
0x20a317c42eec 44 488b45f8 REX.W movq rax,[rbp-0x8]
;;; <@35,#29> gap
0x20a317c42ef0 48 488b5de8 REX.W movq rbx,[rbp-0x18]
;;; <@36,#81> double-untag
0x20a317c42ef4 52 f6c301 testb rbx,0x1
0x20a317c42ef7 55 7415 jz 78 (0x20a317c42f0e)
0x20a317c42ef9 57 4d8b55f8 REX.W movq r10,[r13-0x8]
0x20a317c42efd 61 4c3953ff REX.W cmpq [rbx-0x1],r10
0x20a317c42f01 65 c5fb105307 vmovsd xmm2,[rbx+0x7]
0x20a317c42f06 70 0f858e010000 jnz 474 (0x20a317c4309a)
0x20a317c42f0c 76 eb10 jmp 94 (0x20a317c42f1e)
0x20a317c42f0e 78 4c8bd3 REX.W movq r10,rbx
0x20a317c42f11 81 49c1ea20 REX.W shrq r10, 32
0x20a317c42f15 85 c5e957d2 vxorpd xmm2,xmm2,xmm2
0x20a317c42f19 89 c4c16b2ad2 vcvtlsi2sd xmm2,xmm2,r10
;;; <@37,#81> gap
0x20a317c42f1e 94 488b55e0 REX.W movq rdx,[rbp-0x20]
;;; <@38,#82> tagged-to-i
0x20a317c42f22 98 f6c201 testb rdx,0x1
0x20a317c42f25 101 0f8594000000 jnz 255 (0x20a317c42fbf)
0x20a317c42f2b 107 48c1ea20 REX.W shrq rdx, 32
;;; <@40,#31> gap
0x20a317c42f2f 111 488bd8 REX.W movq rbx,rax
0x20a317c42f32 114 488bc2 REX.W movq rax,rdx
0x20a317c42f35 117 488b5510 REX.W movq rdx,[rbp+0x10]
0x20a317c42f39 121 c5f928ca vmovapd xmm1,xmm2
;;; <@41,#31> goto
0x20a317c42f3d 125 e90e000000 jmp 144 (0x20a317c42f50)
;;; <@42,#19> -------------------- B4 --------------------
;;; <@44,#80> constant-d
0x20a317c42f42 130 c5f157c9 vxorpd xmm1,xmm1,xmm1
;;; <@46,#21> gap
0x20a317c42f46 134 488b5510 REX.W movq rdx,[rbp+0x10]
0x20a317c42f4a 138 488b5dd8 REX.W movq rbx,[rbp-0x28]
0x20a317c42f4e 142 33c0 xorl rax,rax
;;; <@48,#40> -------------------- B5 --------------------
;;; <@50,#59> check-maps
;;; <@54,#43> -------------------- B6 (loop header) --------------------
;;; <@57,#47> compare-numeric-and-branch
0x20a317c42f50 144 3d40420f00 cmp rax,0xf4240 ;; debug: position 56
;; debug: position 58
0x20a317c42f55 149 0f8d22000000 jge 189 (0x20a317c42f7d)
;;; <@58,#48> -------------------- B7 (unreachable/replaced) --------------------
;;; <@62,#54> -------------------- B8 --------------------
;;; <@64,#56> stack-check
0x20a317c42f5b 155 493ba5880a0000 REX.W cmpq rsp,[r13+0xa88] ;; debug: position 40
0x20a317c42f62 162 0f82a0000000 jc 328 (0x20a317c43008)
;;; <@66,#84> int32-to-double
0x20a317c42f68 168 c5e957d2 vxorpd xmm2,xmm2,xmm2 ;; debug: position 92
0x20a317c42f6c 172 c5eb2ad0 vcvtlsi2sd xmm2,xmm2,rax
;;; <@68,#63> mul-d
0x20a317c42f70 176 c5eb59d2 vmulsd xmm2,xmm2,xmm2
;;; <@70,#65> add-d
0x20a317c42f74 180 c5eb58c9 vaddsd xmm1,xmm2,xmm1 ;; debug: position 85
;;; <@72,#70> add-i
0x20a317c42f78 184 83c001 addl rax,0x1 ;; debug: position 70
;;; <@75,#73> goto
0x20a317c42f7b 187 ebd3 jmp 144 (0x20a317c42f50) ;; debug: position 40
;;; <@76,#51> -------------------- B9 (unreachable/replaced) --------------------
;;; <@80,#74> -------------------- B10 --------------------
;;; <@82,#83> number-tag-d
0x20a317c42f7d 189 498b9d480f0000 REX.W movq rbx,[r13+0xf48] ;; debug: position 116
;; debug: position 109
0x20a317c42f84 196 488bc3 REX.W movq rax,rbx
0x20a317c42f87 199 4883c010 REX.W addq rax,0x10
0x20a317c42f8b 203 0f82bc000000 jc 397 (0x20a317c4304d)
0x20a317c42f91 209 493b85500f0000 REX.W cmpq rax,[r13+0xf50]
0x20a317c42f98 216 0f87af000000 ja 397 (0x20a317c4304d)
0x20a317c42f9e 222 498985480f0000 REX.W movq [r13+0xf48],rax
0x20a317c42fa5 229 48ffc3 REX.W incq rbx
0x20a317c42fa8 232 4d8b55f8 REX.W movq r10,[r13-0x8]
0x20a317c42fac 236 4c8953ff REX.W movq [rbx-0x1],r10
0x20a317c42fb0 240 c5fb114b07 vmovsd [rbx+0x7],xmm1
;;; <@83,#83> gap
0x20a317c42fb5 245 488bc3 REX.W movq rax,rbx
;;; <@84,#77> return
0x20a317c42fb8 248 488be5 REX.W movq rsp,rbp
0x20a317c42fbb 251 5d pop rbp
0x20a317c42fbc 252 c20800 ret 0x8
;;; <@38,#82> -------------------- Deferred tagged-to-i --------------------
0x20a317c42fbf 255 4d8b55f8 REX.W movq r10,[r13-0x8] ;; debug: position 40
0x20a317c42fc3 259 4c3952ff REX.W cmpq [rdx-0x1],r10
0x20a317c42fc7 263 0f85d2000000 jnz 479 (0x20a317c4309f)
0x20a317c42fcd 269 c5fb104207 vmovsd xmm0,[rdx+0x7]
0x20a317c42fd2 274 c5fb2cd0 vcvttsd2si rdx,xmm0
0x20a317c42fd6 278 c5f157c9 vxorpd xmm1,xmm1,xmm1
0x20a317c42fda 282 c5f32aca vcvtlsi2sd xmm1,xmm1,rdx
0x20a317c42fde 286 c5f92ec1 vucomisd xmm0,xmm1
0x20a317c42fe2 290 0f85bc000000 jnz 484 (0x20a317c430a4)
0x20a317c42fe8 296 0f8abb000000 jpe 489 (0x20a317c430a9)
0x20a317c42fee 302 85d2 testl rdx,rdx
0x20a317c42ff0 304 0f8539ffffff jnz 111 (0x20a317c42f2f)
0x20a317c42ff6 310 c5f950d0 vmovmskpd rdx,xmm0
0x20a317c42ffa 314 83e201 andl rdx,0x1
0x20a317c42ffd 317 0f85ab000000 jnz 494 (0x20a317c430ae)
0x20a317c43003 323 e927ffffff jmp 111 (0x20a317c42f2f)
;;; <@64,#56> -------------------- Deferred stack-check --------------------
0x20a317c43008 328 50 push rax
0x20a317c43009 329 51 push rcx
0x20a317c4300a 330 52 push rdx
0x20a317c4300b 331 53 push rbx
0x20a317c4300c 332 56 push rsi
0x20a317c4300d 333 57 push rdi
0x20a317c4300e 334 4150 push r8
0x20a317c43010 336 4151 push r9
0x20a317c43012 338 4153 push r11
0x20a317c43014 340 4154 push r12
0x20a317c43016 342 4156 push r14
0x20a317c43018 344 4157 push r15
0x20a317c4301a 346 488d6424e0 REX.W leaq rsp,[rsp-0x20]
0x20a317c4301f 351 488b75f8 REX.W movq rsi,[rbp-0x8]
0x20a317c43023 355 33c0 xorl rax,rax
0x20a317c43025 357 498d9da8f6ddfe REX.W leaq rbx,[r13-0x1220958]
0x20a317c4302c 364 e8af48fcff call 0x20a317c078e0 ;; code: STUB, CEntryStub, minor: 5
0x20a317c43031 369 488d642420 REX.W leaq rsp,[rsp+0x20]
0x20a317c43036 374 415f pop r15
0x20a317c43038 376 415e pop r14
0x20a317c4303a 378 415c pop r12
0x20a317c4303c 380 415b pop r11
0x20a317c4303e 382 4159 pop r9
0x20a317c43040 384 4158 pop r8
0x20a317c43042 386 5f pop rdi
0x20a317c43043 387 5e pop rsi
0x20a317c43044 388 5b pop rbx
0x20a317c43045 389 5a pop rdx
0x20a317c43046 390 59 pop rcx
0x20a317c43047 391 58 pop rax
0x20a317c43048 392 e91bffffff jmp 168 (0x20a317c42f68)
;;; <@82,#83> -------------------- Deferred number-tag-d --------------------
0x20a317c4304d 397 33db xorl rbx,rbx ;; debug: position 109
0x20a317c4304f 399 50 push rax
0x20a317c43050 400 51 push rcx
0x20a317c43051 401 52 push rdx
0x20a317c43052 402 53 push rbx
0x20a317c43053 403 56 push rsi
0x20a317c43054 404 57 push rdi
0x20a317c43055 405 4150 push r8
0x20a317c43057 407 4151 push r9
0x20a317c43059 409 4153 push r11
0x20a317c4305b 411 4154 push r12
0x20a317c4305d 413 4156 push r14
0x20a317c4305f 415 4157 push r15
0x20a317c43061 417 488d6424e0 REX.W leaq rsp,[rsp-0x20]
0x20a317c43066 422 488b75f8 REX.W movq rsi,[rbp-0x8]
0x20a317c4306a 426 33c0 xorl rax,rax
0x20a317c4306c 428 498d9d58e7dffe REX.W leaq rbx,[r13-0x12018a8]
0x20a317c43073 435 e86848fcff call 0x20a317c078e0 ;; code: STUB, CEntryStub, minor: 5
0x20a317c43078 440 4c8bd0 REX.W movq r10,rax
0x20a317c4307b 443 488d642420 REX.W leaq rsp,[rsp+0x20]
0x20a317c43080 448 415f pop r15
0x20a317c43082 450 415e pop r14
0x20a317c43084 452 415c pop r12
0x20a317c43086 454 415b pop r11
0x20a317c43088 456 4159 pop r9
0x20a317c4308a 458 4158 pop r8
0x20a317c4308c 460 5f pop rdi
0x20a317c4308d 461 5e pop rsi
0x20a317c4308e 462 5b pop rbx
0x20a317c4308f 463 5a pop rdx
0x20a317c43090 464 59 pop rcx
0x20a317c43091 465 58 pop rax
0x20a317c43092 466 498bda REX.W movq rbx,r10
0x20a317c43095 469 e916ffffff jmp 240 (0x20a317c42fb0)
;;; -------------------- Jump table --------------------
0x20a317c4309a 474 e8752fccff call 0x20a317906014 ;; debug: position 11264
;; debug: deopt reason 'not a heap number'
;; deoptimization bailout 2
0x20a317c4309f 479 e8842fccff call 0x20a317906028 ;; debug: position 11264
;; debug: deopt reason 'not a heap number'
;; deoptimization bailout 4
0x20a317c430a4 484 e87f2fccff call 0x20a317906028 ;; debug: position 11264
;; debug: deopt reason 'lost precision'
;; deoptimization bailout 4
0x20a317c430a9 489 e87a2fccff call 0x20a317906028 ;; debug: position 11264
;; debug: deopt reason 'NaN'
;; deoptimization bailout 4
0x20a317c430ae 494 e8752fccff call 0x20a317906028 ;; debug: position 11264
;; debug: deopt reason 'minus zero'
;; deoptimization bailout 4
0x20a317c430b3 499 90 nop
;;; Safepoint table.
Inlined functions (count = 0)
Deoptimization Input Data (deopt points = 5)
index ast id argc pc
0 4 0 35
1 26 0 -1
2 24 0 -1
3 28 0 168
4 24 0 -1
Safepoints (size = 41)
0x20a317c42ee3 35 1000000 (sp -> fp) 0
0x20a317c43031 369 0000000 | rdx | rbx (sp -> fp) 3
0x20a317c43078 440 0000000 | rbx (sp -> fp) <none>
RelocInfo (size = 531)
0x20a317c42eca position (18)
0x20a317c42eca comment (;;; <@0,#0> -------------------- B0 --------------------)
0x20a317c42eca comment (;;; <@4,#3> prologue)
0x20a317c42eca comment (;;; Prologue begin)
0x20a317c42eca comment (;;; Prologue end)
0x20a317c42eca comment (;;; <@8,#5> -------------------- B1 --------------------)
0x20a317c42eca comment (;;; <@10,#6> context)
0x20a317c42ece comment (;;; <@11,#6> gap)
0x20a317c42ed2 comment (;;; <@14,#10> -------------------- B2 --------------------)
0x20a317c42ed2 comment (;;; <@15,#10> gap)
0x20a317c42ed5 comment (;;; <@16,#12> stack-check)
0x20a317c42edf code target (BUILTIN) (0x20a317c3cbe0)
0x20a317c42ee3 comment (;;; <@18,#12> lazy-bailout)
0x20a317c42ee3 position (40)
0x20a317c42ee3 comment (;;; <@21,#18> goto)
0x20a317c42ee8 comment (;;; <@22,#22> -------------------- B3 (OSR entry) --------------------)
0x20a317c42eec comment (;;; <@34,#29> context)
0x20a317c42ef0 comment (;;; <@35,#29> gap)
0x20a317c42ef4 comment (;;; <@36,#81> double-untag)
0x20a317c42f1e comment (;;; <@37,#81> gap)
0x20a317c42f22 comment (;;; <@38,#82> tagged-to-i)
0x20a317c42f2f comment (;;; <@40,#31> gap)
0x20a317c42f3d comment (;;; <@41,#31> goto)
0x20a317c42f42 comment (;;; <@42,#19> -------------------- B4 --------------------)
0x20a317c42f42 comment (;;; <@44,#80> constant-d)
0x20a317c42f46 comment (;;; <@46,#21> gap)
0x20a317c42f50 comment (;;; <@48,#40> -------------------- B5 --------------------)
0x20a317c42f50 comment (;;; <@50,#59> check-maps)
0x20a317c42f50 position (56)
0x20a317c42f50 comment (;;; <@54,#43> -------------------- B6 (loop header) --------------------)
0x20a317c42f50 position (58)
0x20a317c42f50 comment (;;; <@57,#47> compare-numeric-and-branch)
0x20a317c42f5b comment (;;; <@58,#48> -------------------- B7 (unreachable/replaced) --------------------)
0x20a317c42f5b position (40)
0x20a317c42f5b comment (;;; <@62,#54> -------------------- B8 --------------------)
0x20a317c42f5b comment (;;; <@64,#56> stack-check)
0x20a317c42f68 comment (;;; <@66,#84> int32-to-double)
0x20a317c42f68 position (92)
0x20a317c42f70 comment (;;; <@68,#63> mul-d)
0x20a317c42f74 comment (;;; <@70,#65> add-d)
0x20a317c42f74 position (85)
0x20a317c42f78 comment (;;; <@72,#70> add-i)
0x20a317c42f78 position (70)
0x20a317c42f7b position (40)
0x20a317c42f7b comment (;;; <@75,#73> goto)
0x20a317c42f7d comment (;;; <@76,#51> -------------------- B9 (unreachable/replaced) --------------------)
0x20a317c42f7d position (116)
0x20a317c42f7d comment (;;; <@80,#74> -------------------- B10 --------------------)
0x20a317c42f7d comment (;;; <@82,#83> number-tag-d)
0x20a317c42f7d position (109)
0x20a317c42fb5 comment (;;; <@83,#83> gap)
0x20a317c42fb8 comment (;;; <@84,#77> return)
0x20a317c42fbf position (40)
0x20a317c42fbf comment (;;; <@38,#82> -------------------- Deferred tagged-to-i --------------------)
0x20a317c43008 comment (;;; <@64,#56> -------------------- Deferred stack-check --------------------)
0x20a317c4302d code target (STUB) (0x20a317c078e0)
0x20a317c4304d position (109)
0x20a317c4304d comment (;;; <@82,#83> -------------------- Deferred number-tag-d --------------------)
0x20a317c43074 code target (STUB) (0x20a317c078e0)
0x20a317c4309a comment (;;; -------------------- Jump table --------------------)
0x20a317c4309a position (11264)
0x20a317c4309a deopt reason (not a heap number)
0x20a317c4309b runtime entry (deoptimization bailout 2)
0x20a317c4309f position (11264)
0x20a317c4309f deopt reason (not a heap number)
0x20a317c430a0 runtime entry (deoptimization bailout 4)
0x20a317c430a4 position (11264)
0x20a317c430a4 deopt reason (lost precision)
0x20a317c430a5 runtime entry (deoptimization bailout 4)
0x20a317c430a9 position (11264)
0x20a317c430a9 deopt reason (NaN)
0x20a317c430aa runtime entry (deoptimization bailout 4)
0x20a317c430ae position (11264)
0x20a317c430ae deopt reason (minus zero)
0x20a317c430af runtime entry (deoptimization bailout 4)
0x20a317c430b4 comment (;;; Safepoint table.)
--- End code ---
|
// POPGssapi.cpp: Implementation file for POP GSSAPI authenticator class.
//
// Copyright (c) 2002 by QUALCOMM, Incorporated
/* Copyright (c) 2016, Computer History Museum
All rights reserved.
Redistribution and use in source and binary forms, with or without modification, are permitted (subject to
the limitations in the disclaimer below) provided that the following conditions are met:
* Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer.
* 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.
* Neither the name of Computer History Museum nor the names of its contributors may be used to endorse or promote products
derived from this software without specific prior written permission.
NO EXPRESS OR IMPLIED LICENSES TO ANY PARTY'S PATENT RIGHTS ARE GRANTED BY THIS LICENSE. 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. */
//
#include "stdafx.h"
#include "POPSession.h"
#include "sasl.h"
#include "POPGssapi.h"
#include "rs.h"
#include "resource.h"
#include "guiutils.h"
// Include the files in the correct order to allow leak checking with malloc.
// CRTDBG_MAP_ALLOC already defined in stdafx.h
#include <stdlib.h>
#include <crtdbg.h>
#include "DebugNewHelpers.h"
// Disable "assignment within conditional expression" warning:
#pragma warning( disable : 4706 )
CPOPGssapi::CPOPGssapi (void *challenger,
void *responder,
void *s,
LPCSTR pHost,
LPCSTR pUser)
: CGssapi(challenger,
responder,
s,
pHost,
pUser)
{
m_szService = GetServiceName();
}
CPOPGssapi::~CPOPGssapi()
{
}
//
// CPOPGssapi::GetDLLName()
//
// Returns the name of the GSSAPI DLL file.
//
// Return:
// A CString containing the DLL file name.
//
CString CPOPGssapi::GetDLLName()
{
CString strDLLName;
if (m_pProtocol)
{
CPOPSession *pPOPSession = (CPOPSession*)m_pProtocol;
strDLLName = pPOPSession->GetGSSLibraryName();
}
return strDLLName;
}
//
// CPOPGssapi::GetServiceName()
//
// Returns the service name for this protocol (POP).
//
// Return:
// A CString containing the service name.
//
CString CPOPGssapi::GetServiceName()
{
CString strServiceName;
strServiceName.LoadString(IDS_POP_SERVICE_A);
return strServiceName;
}
//
// CPOPGssapi::GetChallenge()
//
// Obtains the challenge from the m_pChallenger routine.
//
// Parameters:
// lSize[out] - Length of challenge data returned.
//
// Return:
// The challenge data or NULL if the read failed.
//
void *CPOPGssapi::GetChallenge(unsigned long *lLength)
{
*lLength = MAILTMPLEN;
char *szOut = (char*)malloc(*lLength);
if (szOut)
{
memset(szOut, 0, *lLength);
PAuthChallenger pChallenger = (PAuthChallenger)m_pChallenger;
*lLength = pChallenger(m_pProtocol, szOut, *lLength);
if (*lLength == 0)
{
free(szOut);
szOut = NULL;
}
}
return szOut;
}
//
// CPOPGssapi::SendResponse()
//
// Sends the specified response to the m_pResponder routine.
//
// Parameters:
// szResp[in] - Buffer to send. If this is NULL the NULL will be passed
// along causing the authentication to be aborted. If this is an empty
// string the appropriate "end of data" string will be passed along.
// In all other cases this data is simply passed to the server.
// lSize[in] - Length of data in szResp.
//
// Return:
// The return value of the responder routine (TRUE on success, FALSE on failure).
//
BOOL CPOPGssapi::SendResponse(char *szResp, unsigned long lSize)
{
PAuthResponder pResponder = (PAuthResponder)m_pResponder;
return pResponder(m_pProtocol, szResp, lSize);
}
//
// CPOPGssapi::AddLastErrorString()
//
// Displays to the user and logs the specified error.
//
// Parameters:
// szError[in] - Error string to display and log.
//
void CPOPGssapi::AddLastErrorString(const char *szError)
{
if (m_pProtocol)
{
CPOPSession *pPOPSession = (CPOPSession*)m_pProtocol;
CTaskInfoMT *pInfo = pPOPSession->GetTaskInfo();
if (pInfo)
{
pInfo->CreateError(szError, TERR_POPAUTH);
}
}
}
//
// IMAPGssapiAuthenticator()
//
// Client authenticator routine. Creates an instance of the appropriate authenticator
// class and calls its Authenticate() method.
//
// Parameters:
// challenger[in] - Challenger function.
// responder[in] - Responder function.
// stream[in] - Stream argument for functions.
// user[in] - User name.
// szHost[in] - Host name.
//
// Returns:
// T if success, NIL otherwise, number of trials incremented if retry.
//
long POPGssapiAuthenticator(void *challenger,
void *responder,
void *s,
char *szUser,
CString szHost)
{
// Sanity:
if (! (challenger && responder && s && szUser && !szHost.IsEmpty()) )
{
return 0;
}
// Instantiate a CGssapi to do all the work.
CPOPGssapi gssAuth(challenger, responder, s, szHost, szUser);
return gssAuth.Authenticate();
}
|
SELECTOR_KERNEL_CS equ 8
extern cstart
extern gdt_ptr
extern exception_handler
extern spurious_irq
extern idt_ptr
extern disp_pos
[section .bss]
StackSpace resb 2*1024
StackTop:
[section .text]
global _start
;int handler
global divide_error
global single_step_exception
global nmi
global breakpoint_exception
global overflow
global bounds_check
global inval_opcode
global copr_not_available
global double_fault
global copr_seg_overrun
global inval_tss
global segment_not_present
global stack_exception
global general_protection
global page_fault
global copr_error
global hwint00
global hwint01
global hwint02
global hwint03
global hwint04
global hwint05
global hwint06
global hwint07
global hwint08
global hwint09
global hwint10
global hwint11
global hwint12
global hwint13
global hwint14
global hwint15
_start:
mov esp ,StackTop
sgdt [gdt_ptr]
call cstart
lgdt [gdt_ptr]
lidt [idt_ptr]
jmp SELECTOR_KERNEL_CS:csinit
csinit:
mov ah ,07h
mov al ,'K'
mov [gs:(80*5+40)*2] ,ax
push 0
popfd
sti
ud2
hlt
%macro hwint_master 1
push %1
call spurious_irq
add esp, 4
hlt
%endmacro
; ---------------------------------
ALIGN 16
hwint00: ; Interrupt routine for irq 0 (the clock).
hwint_master 0
ALIGN 16
hwint01: ; Interrupt routine for irq 1 (keyboard)
hwint_master 1
ALIGN 16
hwint02: ; Interrupt routine for irq 2 (cascade!)
hwint_master 2
ALIGN 16
hwint03: ; Interrupt routine for irq 3 (second serial)
hwint_master 3
ALIGN 16
hwint04: ; Interrupt routine for irq 4 (first serial)
hwint_master 4
ALIGN 16
hwint05: ; Interrupt routine for irq 5 (XT winchester)
hwint_master 5
ALIGN 16
hwint06: ; Interrupt routine for irq 6 (floppy)
hwint_master 6
ALIGN 16
hwint07: ; Interrupt routine for irq 7 (printer)
hwint_master 7
; ---------------------------------
%macro hwint_slave 1
push %1
call spurious_irq
add esp, 4
hlt
%endmacro
; ---------------------------------
ALIGN 16
hwint08: ; Interrupt routine for irq 8 (realtime clock).
hwint_slave 8
ALIGN 16
hwint09: ; Interrupt routine for irq 9 (irq 2 redirected)
hwint_slave 9
ALIGN 16
hwint10: ; Interrupt routine for irq 10
hwint_slave 10
ALIGN 16
hwint11: ; Interrupt routine for irq 11
hwint_slave 11
ALIGN 16
hwint12: ; Interrupt routine for irq 12
hwint_slave 12
ALIGN 16
hwint13: ; Interrupt routine for irq 13 (FPU exception)
hwint_slave 13
ALIGN 16
hwint14: ; Interrupt routine for irq 14 (AT winchester)
hwint_slave 14
ALIGN 16
hwint15: ; Interrupt routine for irq 15
hwint_slave 15
; 中断和异常 -- 异常
divide_error:
push 0xFFFFFFFF ; no err code
push 0 ; vector_no = 0
jmp exception
single_step_exception:
push 0xFFFFFFFF ; no err code
push 1 ; vector_no = 1
jmp exception
nmi:
push 0xFFFFFFFF ; no err code
push 2 ; vector_no = 2
jmp exception
breakpoint_exception:
push 0xFFFFFFFF ; no err code
push 3 ; vector_no = 3
jmp exception
overflow:
push 0xFFFFFFFF ; no err code
push 4 ; vector_no = 4
jmp exception
bounds_check:
push 0xFFFFFFFF ; no err code
push 5 ; vector_no = 5
jmp exception
inval_opcode:
push 0xFFFFFFFF ; no err code
push 6 ; vector_no = 6
jmp exception
copr_not_available:
push 0xFFFFFFFF ; no err code
push 7 ; vector_no = 7
jmp exception
double_fault:
push 8 ; vector_no = 8
jmp exception
copr_seg_overrun:
push 0xFFFFFFFF ; no err code
push 9 ; vector_no = 9
jmp exception
inval_tss:
push 10 ; vector_no = A
jmp exception
segment_not_present:
push 11 ; vector_no = B
jmp exception
stack_exception:
push 12 ; vector_no = C
jmp exception
general_protection:
push 13 ; vector_no = D
jmp exception
page_fault:
push 14 ; vector_no = E
jmp exception
copr_error:
push 0xFFFFFFFF ; no err code
push 16 ; vector_no = 10h
jmp exception
exception:
call exception_handler
add esp, 4*2 ; 让栈顶指向 EIP,堆栈中从顶向下依次是:EIP、CS、EFLAGS
hlt
|
; A282211: Coefficients in q-expansion of (6*E_2^2*E_4 - 8*E_2*E_6 + 3*E_4^2 - E_2^4)/6912, where E_2, E_4, E_6 are the Eisenstein series shown in A006352, A004009, A013973, respectively.
; 0,1,24,108,448,750,2592,2744,7680,9477,18000,15972,48384,30758,65856,81000,126976,88434,227448,137180,336000,296352,383328,292008,829440,484375,738192,787320,1229312,731670,1944000,953312,2064384,1724976,2122416,2058000,4245696,1924814,3292320,3321864,5760000,2894682,7112448,3498308,7155456,7107750,7008192,4983504,13713408,6705993,11625000,9550872,13779584,8039358,18895680,11979000,21073920,14815440,17560080,12322740,36288000,14072822,22879488,26004888,33292288,23068500,41399424,20451884
mov $1,$0
seq $1,282097 ; Coefficients in q-expansion of (3*E_2*E_4 - 2*E_6 - E_2^3)/1728, where E_2, E_4, E_6 are the Eisenstein series shown in A006352, A004009, A013973, respectively.
mul $0,$1
|
header_VmCmp
vm_cmp PROC
push ebp
mov ebp, esp
; read first argument
push [ebp+arg0]
call_vm_stack_pop_enc
mov edx, eax
; read second argument
push [ebp+arg0]
call_vm_stack_pop_enc
; do comparison and save result
cmp edx, eax
pushfd
; read the current flags
mov ebx, [ebp+arg0]
mov ecx, [ebx+vm_flags]
; check zero flag
jz set_zero_flag
and ecx, 0DFFFFFFFh
jmp check_carry_flag
set_zero_flag:
or ecx, 020000000h
check_carry_flag:
; restore flags
popfd
jc set_carry_flag
and ecx, 0EFFFFFFFh
jmp finish
set_carry_flag:
or ecx, 010000000h
finish:
mov [ebx+vm_flags], ecx
mov esp, ebp
pop ebp
ret
vm_cmp ENDP
header_marker |
;;
;; Copyright (c) 2020-2022, Intel Corporation
;;
;; Redistribution and use in source and binary forms, with or without
;; modification, are permitted provided that the following conditions are met:
;;
;; * Redistributions of source code must retain the above copyright notice,
;; this list of conditions and the following disclaimer.
;; * 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.
;; * Neither the name of Intel Corporation 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 OWNER 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.
;;
%define NUM_LANES 8
%define AES_CBC_MAC aes128_cbc_mac_x8_sse
%define SUBMIT_JOB_AES_CCM_AUTH submit_job_aes128_ccm_auth_x8_sse
%define FLUSH_JOB_AES_CCM_AUTH flush_job_aes128_ccm_auth_x8_sse
%include "sse/mb_mgr_aes128_ccm_auth_submit_flush_x4_sse.asm"
|
; A079004: Least x>=3 such that F(x)==1 (mod 3^n) where F(x) denotes the x-th Fibonacci number (A000045).
; 7,10,10,34,106,322,970,2914,8746,26242,78730,236194,708586,2125762,6377290,19131874,57395626,172186882,516560650,1549681954,4649045866,13947137602,41841412810,125524238434,376572715306,1129718145922
lpb $0
sub $0,1
mov $3,3
trn $3,$0
trn $0,$3
add $1,4
mov $2,$1
sub $1,4
mul $2,2
add $1,$2
lpe
trn $1,5
add $1,7
mov $0,$1
|
; A195171: a(n) = 5*n - floor(n*r), where r=(1+sqrt(5))/2 (the golden ratio).
; 0,4,7,11,14,17,21,24,28,31,34,38,41,44,48,51,55,58,61,65,68,72,75,78,82,85,88,92,95,99,102,105,109,112,115,119,122,126,129,132,136,139,143,146,149,153,156,159,163,166,170,173,176,180,183,187,190,193,197,200,203,207,210,214,217,220,224,227,230,234,237,241,244,247,251,254,258,261,264,268,271,274,278,281,285,288,291,295,298,301,305,308,312,315,318,322,325,329,332,335,339,342,345,349,352,356,359,362,366,369,373,376,379,383,386,389,393,396,400,403,406,410,413,416,420,423,427,430,433,437,440,444,447,450,454,457,460,464,467,471,474,477,481,484,488,491,494,498,501,504,508,511,515,518,521,525,528,531,535,538,542,545,548,552,555,559,562,565,569,572,575,579,582,586,589,592,596,599,602,606,609,613,616,619,623,626,630,633,636,640,643,646,650,653,657,660,663,667,670,674,677,680,684,687,690,694,697,701,704,707,711,714,717,721,724,728,731,734,738,741,745,748,751,755,758,761,765,768,772,775,778,782,785,788,792,795,799,802,805,809,812,816,819,822,826,829,832,836,839,843
mov $3,$0
mov $4,$0
mov $6,$0
lpb $6
mov $0,$3
sub $6,1
sub $0,$6
sub $0,1
cal $0,96270 ; Fixed point of the morphism 0->01, 1->011.
gcd $0,52090
mul $0,8
mov $1,$0
div $1,416711
add $5,$1
lpe
mov $1,$5
mov $2,$4
mul $2,3
add $1,$2
|
; A330395: Number of nontrivial equivalence classes of S_n under the {1234,3412} pattern-replacement equivalence.
; 1,9,26,51,85,129,184,251,331,425,534,659,801,961,1140,1339,1559,1801,2066,2355,2669,3009,3376,3771,4195,4649,5134,5651,6201,6785,7404,8059,8751,9481,10250,11059,11909,12801,13736,14715,15739,16809,17926,19091,20305,21569,22884,24251
mov $12,$0
mov $14,$0
add $14,1
lpb $14
clr $0,12
mov $0,$12
sub $14,1
sub $0,$14
mov $9,$0
mov $11,$0
add $11,1
lpb $11
mov $0,$9
sub $11,1
sub $0,$11
mov $1,$0
mov $2,$0
mov $5,8
mov $8,5
lpb $2
lpb $5
mul $0,2
add $8,$1
trn $5,$8
lpe
add $0,8
sub $2,$2
lpe
mov $1,$0
div $1,2
add $1,1
add $10,$1
lpe
add $13,$10
lpe
mov $1,$13
|
; A116487: First digit after decimal point in decimal representation of (1+1/n)^n.
; Submitted by Christian Krause
; 0,2,3,4,4,5,5,5,5,5,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7
add $0,1
mov $1,1
add $1,$0
pow $1,$0
pow $0,$0
mul $1,10
div $1,$0
mov $0,$1
sub $0,20
|
; A211665: Minimal number of iterations of log_10 applied to n until the result is < 1.
; 1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2
trn $0,8
cmp $0,0
gcd $0,2
|
; A128174: Transform, (1,0,1,...) in every column.
; Submitted by Jamie Morken(m3)
; 1,0,1,1,0,1,0,1,0,1,1,0,1,0,1,0,1,0,1,0,1,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0
lpb $0
add $1,1
sub $0,$1
lpe
sub $1,$0
mov $0,$1
add $0,1
mod $0,2
|
;/*
; * FreeRTOS Kernel V10.4.2
; * Copyright (C) 2020 Amazon.com, Inc. or its affiliates. All Rights Reserved.
; *
; * Permission is hereby granted, free of charge, to any person obtaining a copy of
; * this software and associated documentation files (the "Software"), to deal in
; * the Software without restriction, including without limitation the rights to
; * use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of
; * the Software, and to permit persons to whom the Software is furnished to do so,
; * subject to the following conditions:
; *
; * The above copyright notice and this permission notice shall be included in all
; * copies or substantial portions of the Software.
; *
; * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
; * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS
; * FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR
; * COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER
; * IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
; * CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
; *
; * https://www.FreeRTOS.org
; * https://github.com/FreeRTOS
; *
; * 1 tab == 4 spaces!
; */
; * The definition of the "register test" tasks, as described at the top of
; * main.c
.include data_model.h
.global xTaskIncrementTick
.global vTaskSwitchContext
.global vPortSetupTimerInterrupt
.global pxCurrentTCB
.global usCriticalNesting
.def vPortPreemptiveTickISR
.def vPortCooperativeTickISR
.def vPortYield
.def xPortStartScheduler
;-----------------------------------------------------------
portSAVE_CONTEXT .macro
;Save the remaining registers.
pushm_x #12, r15
mov.w &usCriticalNesting, r14
push_x r14
mov_x &pxCurrentTCB, r12
mov_x sp, 0( r12 )
.endm
;-----------------------------------------------------------
portRESTORE_CONTEXT .macro
mov_x &pxCurrentTCB, r12
mov_x @r12, sp
pop_x r15
mov.w r15, &usCriticalNesting
popm_x #12, r15
nop
pop.w sr
nop
ret_x
.endm
;-----------------------------------------------------------
;*
;* The RTOS tick ISR.
;*
;* If the cooperative scheduler is in use this simply increments the tick
;* count.
;*
;* If the preemptive scheduler is in use a context switch can also occur.
;*/
.text
.align 2
vPortPreemptiveTickISR: .asmfunc
; The sr is not saved in portSAVE_CONTEXT() because vPortYield() needs
;to save it manually before it gets modified (interrupts get disabled).
push.w sr
portSAVE_CONTEXT
call_x #xTaskIncrementTick
call_x #vTaskSwitchContext
portRESTORE_CONTEXT
.endasmfunc
;-----------------------------------------------------------
.align 2
vPortCooperativeTickISR: .asmfunc
; The sr is not saved in portSAVE_CONTEXT() because vPortYield() needs
;to save it manually before it gets modified (interrupts get disabled).
push.w sr
portSAVE_CONTEXT
call_x #xTaskIncrementTick
portRESTORE_CONTEXT
.endasmfunc
;-----------------------------------------------------------
;
; Manual context switch called by the portYIELD() macro.
;
.align 2
vPortYield: .asmfunc
; The sr needs saving before it is modified.
push.w sr
; Now the SR is stacked we can disable interrupts.
dint
nop
; Save the context of the current task.
portSAVE_CONTEXT
; Select the next task to run.
call_x #vTaskSwitchContext
; Restore the context of the new task.
portRESTORE_CONTEXT
.endasmfunc
;-----------------------------------------------------------
;
; Start off the scheduler by initialising the RTOS tick timer, then restoring
; the context of the first task.
;
.align 2
xPortStartScheduler: .asmfunc
; Setup the hardware to generate the tick. Interrupts are disabled
; when this function is called.
call_x #vPortSetupTimerInterrupt
; Restore the context of the first task that is going to run.
portRESTORE_CONTEXT
.endasmfunc
;-----------------------------------------------------------
.end
|
.global s_prepare_buffers
s_prepare_buffers:
push %r15
push %r8
push %r9
push %rbp
push %rcx
push %rdi
push %rsi
lea addresses_WC_ht+0xd0a9, %rsi
lea addresses_WT_ht+0x6ce1, %rdi
nop
nop
nop
cmp %r9, %r9
mov $108, %rcx
rep movsl
nop
nop
nop
nop
dec %rbp
lea addresses_WC_ht+0x12639, %rsi
lea addresses_UC_ht+0x12e61, %rdi
nop
nop
nop
nop
nop
xor %rbp, %rbp
mov $83, %rcx
rep movsl
nop
nop
xor $53498, %rbp
lea addresses_WC_ht+0x8ce1, %rsi
lea addresses_UC_ht+0xf5f9, %rdi
nop
nop
nop
xor $80, %r15
mov $9, %rcx
rep movsl
sub $2720, %rdi
lea addresses_normal_ht+0x1bee1, %rsi
lea addresses_normal_ht+0x1d2e1, %rdi
clflush (%rsi)
nop
nop
nop
nop
nop
add $23073, %r8
mov $30, %rcx
rep movsw
nop
nop
cmp $61053, %rbp
pop %rsi
pop %rdi
pop %rcx
pop %rbp
pop %r9
pop %r8
pop %r15
ret
.global s_faulty_load
s_faulty_load:
push %r10
push %r12
push %r13
push %r8
push %rax
push %rdx
push %rsi
// Store
lea addresses_D+0xc7ef, %r13
nop
nop
nop
nop
nop
sub %rdx, %rdx
movl $0x51525354, (%r13)
nop
nop
nop
add %rdx, %rdx
// Store
lea addresses_PSE+0x68e1, %r10
nop
nop
nop
sub $16995, %r12
movw $0x5152, (%r10)
nop
add %r8, %r8
// Faulty Load
lea addresses_D+0xd4e1, %r13
and %r8, %r8
mov (%r13), %rdx
lea oracles, %r8
and $0xff, %rdx
shlq $12, %rdx
mov (%r8,%rdx,1), %rdx
pop %rsi
pop %rdx
pop %rax
pop %r8
pop %r13
pop %r12
pop %r10
ret
/*
<gen_faulty_load>
[REF]
{'OP': 'LOAD', 'src': {'type': 'addresses_D', 'AVXalign': False, 'congruent': 0, 'size': 32, 'same': True, 'NT': False}}
{'OP': 'STOR', 'dst': {'type': 'addresses_D', 'AVXalign': False, 'congruent': 1, 'size': 4, 'same': False, 'NT': False}}
{'OP': 'STOR', 'dst': {'type': 'addresses_PSE', 'AVXalign': False, 'congruent': 9, 'size': 2, 'same': False, 'NT': False}}
[Faulty Load]
{'OP': 'LOAD', 'src': {'type': 'addresses_D', 'AVXalign': False, 'congruent': 0, 'size': 8, 'same': True, 'NT': False}}
<gen_prepare_buffer>
{'OP': 'REPM', 'src': {'type': 'addresses_WC_ht', 'congruent': 1, 'same': False}, 'dst': {'type': 'addresses_WT_ht', 'congruent': 10, 'same': False}}
{'OP': 'REPM', 'src': {'type': 'addresses_WC_ht', 'congruent': 1, 'same': False}, 'dst': {'type': 'addresses_UC_ht', 'congruent': 7, 'same': True}}
{'OP': 'REPM', 'src': {'type': 'addresses_WC_ht', 'congruent': 9, 'same': False}, 'dst': {'type': 'addresses_UC_ht', 'congruent': 3, 'same': False}}
{'OP': 'REPM', 'src': {'type': 'addresses_normal_ht', 'congruent': 7, 'same': False}, 'dst': {'type': 'addresses_normal_ht', 'congruent': 8, 'same': False}}
{'36': 21829}
36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36
*/
|
.global s_prepare_buffers
s_prepare_buffers:
push %r12
push %r8
push %rbp
push %rcx
push %rdi
push %rdx
push %rsi
lea addresses_UC_ht+0x7dc2, %rsi
lea addresses_normal_ht+0xd5c2, %rdi
clflush (%rsi)
nop
nop
nop
cmp $57243, %rdx
mov $50, %rcx
rep movsb
add $31720, %rdx
lea addresses_normal_ht+0x1ab42, %rdx
nop
nop
sub %r12, %r12
movups (%rdx), %xmm7
vpextrq $0, %xmm7, %rcx
nop
nop
dec %r12
lea addresses_WC_ht+0x1cee2, %r12
dec %rbp
mov $0x6162636465666768, %rcx
movq %rcx, %xmm0
vmovups %ymm0, (%r12)
add $30871, %rbp
lea addresses_normal_ht+0x14742, %rbp
nop
nop
nop
xor $25073, %r8
movups (%rbp), %xmm6
vpextrq $0, %xmm6, %rcx
nop
inc %rcx
lea addresses_A_ht+0x750c, %rsi
lea addresses_D_ht+0x6582, %rdi
clflush (%rdi)
nop
nop
cmp $37237, %rdx
mov $114, %rcx
rep movsl
nop
nop
nop
xor %r12, %r12
lea addresses_UC_ht+0x1d242, %r12
nop
nop
nop
nop
nop
inc %rdx
mov $0x6162636465666768, %rcx
movq %rcx, %xmm1
and $0xffffffffffffffc0, %r12
vmovntdq %ymm1, (%r12)
nop
nop
nop
add %r8, %r8
pop %rsi
pop %rdx
pop %rdi
pop %rcx
pop %rbp
pop %r8
pop %r12
ret
.global s_faulty_load
s_faulty_load:
push %r11
push %r13
push %r9
push %rbp
push %rbx
push %rdi
push %rsi
// Load
lea addresses_WC+0xb882, %rdi
nop
nop
nop
nop
and $26314, %rsi
vmovaps (%rdi), %ymm4
vextracti128 $1, %ymm4, %xmm4
vpextrq $1, %xmm4, %r11
nop
dec %rbx
// Store
mov $0x14842700000007c2, %r9
nop
nop
nop
nop
dec %r13
movl $0x51525354, (%r9)
nop
nop
inc %rbx
// Load
lea addresses_RW+0xc5c2, %r11
clflush (%r11)
nop
nop
nop
nop
xor %rbp, %rbp
vmovups (%r11), %ymm5
vextracti128 $1, %ymm5, %xmm5
vpextrq $1, %xmm5, %rsi
nop
nop
xor %rbx, %rbx
// Faulty Load
lea addresses_US+0x189c2, %rdi
nop
nop
nop
nop
nop
add $21403, %r13
movntdqa (%rdi), %xmm7
vpextrq $1, %xmm7, %r11
lea oracles, %rdi
and $0xff, %r11
shlq $12, %r11
mov (%rdi,%r11,1), %r11
pop %rsi
pop %rdi
pop %rbx
pop %rbp
pop %r9
pop %r13
pop %r11
ret
/*
<gen_faulty_load>
[REF]
{'src': {'congruent': 0, 'AVXalign': True, 'same': False, 'size': 4, 'NT': False, 'type': 'addresses_US'}, 'OP': 'LOAD'}
{'src': {'congruent': 6, 'AVXalign': True, 'same': False, 'size': 32, 'NT': False, 'type': 'addresses_WC'}, 'OP': 'LOAD'}
{'OP': 'STOR', 'dst': {'congruent': 6, 'AVXalign': False, 'same': False, 'size': 4, 'NT': False, 'type': 'addresses_NC'}}
{'src': {'congruent': 10, 'AVXalign': False, 'same': False, 'size': 32, 'NT': False, 'type': 'addresses_RW'}, 'OP': 'LOAD'}
[Faulty Load]
{'src': {'congruent': 0, 'AVXalign': False, 'same': True, 'size': 16, 'NT': True, 'type': 'addresses_US'}, 'OP': 'LOAD'}
<gen_prepare_buffer>
{'src': {'congruent': 8, 'same': False, 'type': 'addresses_UC_ht'}, 'OP': 'REPM', 'dst': {'congruent': 10, 'same': False, 'type': 'addresses_normal_ht'}}
{'src': {'congruent': 6, 'AVXalign': False, 'same': False, 'size': 16, 'NT': False, 'type': 'addresses_normal_ht'}, 'OP': 'LOAD'}
{'OP': 'STOR', 'dst': {'congruent': 3, 'AVXalign': False, 'same': False, 'size': 32, 'NT': False, 'type': 'addresses_WC_ht'}}
{'src': {'congruent': 2, 'AVXalign': False, 'same': False, 'size': 16, 'NT': False, 'type': 'addresses_normal_ht'}, 'OP': 'LOAD'}
{'src': {'congruent': 0, 'same': False, 'type': 'addresses_A_ht'}, 'OP': 'REPM', 'dst': {'congruent': 3, 'same': False, 'type': 'addresses_D_ht'}}
{'OP': 'STOR', 'dst': {'congruent': 6, 'AVXalign': False, 'same': False, 'size': 32, 'NT': True, 'type': 'addresses_UC_ht'}}
{'44': 6867, '00': 12010, '45': 2952}
45 00 45 00 44 00 44 00 44 45 44 45 00 00 44 00 44 00 44 45 00 45 00 00 00 44 00 44 00 00 44 00 00 00 45 00 00 00 45 44 44 00 00 00 45 00 44 45 00 00 44 44 00 45 00 45 00 44 00 45 00 44 00 00 45 00 44 00 44 00 00 44 00 44 00 00 44 00 45 00 00 45 00 44 00 45 00 45 00 44 00 44 00 00 44 00 44 44 00 00 45 00 00 00 44 00 00 44 45 00 00 00 00 00 45 00 00 44 45 00 00 45 00 44 00 00 00 00 00 44 00 44 00 44 45 00 44 00 44 00 00 44 45 00 00 44 00 45 00 00 45 00 00 44 00 00 00 00 00 44 00 44 00 44 00 00 45 00 44 00 44 00 44 00 00 00 44 00 00 00 44 00 00 00 00 00 00 00 44 00 00 45 44 45 00 45 00 00 45 00 44 44 00 44 45 00 00 00 44 00 44 45 00 00 44 00 44 00 00 44 44 00 44 00 00 45 00 44 44 00 44 45 00 44 00 44 00 00 00 44 45 00 00 44 00 44 45 00 44 00 00 00 44 00 44 00 44 00 44 44 00 44 00 00 44 00 44 00 00 44 45 00 44 00 44 00 00 00 44 00 44 45 00 44 00 44 00 44 00 44 00 45 00 44 00 00 44 00 44 00 00 00 44 00 00 00 44 00 00 00 00 45 00 44 45 00 45 00 44 00 45 00 44 45 00 44 00 44 00 45 00 00 00 44 00 44 00 00 00 44 00 00 44 00 44 00 00 45 00 45 44 45 00 44 00 44 45 00 00 44 00 45 00 44 45 00 44 45 00 00 00 00 44 00 44 44 00 44 44 00 44 45 44 00 44 00 00 45 00 00 44 00 45 00 45 00 44 00 44 00 00 44 00 00 00 44 00 45 00 00 00 44 45 00 00 00 44 00 44 00 00 44 00 44 00 00 44 00 00 44 45 00 00 44 44 00 44 45 00 00 00 44 45 00 00 44 45 00 44 00 00 44 44 00 44 00 00 44 00 00 00 44 00 45 00 00 44 44 00 44 00 45 00 44 00 00 00 44 45 00 44 00 44 44 00 44 44 00 44 00 44 00 44 45 00 44 00 44 00 00 44 00 44 00 00 44 44 00 44 00 00 44 00 44 45 00 44 00 00 00 44 00 00 44 00 44 00 00 45 00 44 00 00 44 00 44 45 00 44 00 00 00 44 45 44 00 45 00 44 00 44 44 00 44 00 00 00 44 44 00 44 00 00 44 44 00 45 00 44 00 45 00 44 00 45 00 44 45 00 45 00 44 45 00 45 45 00 44 00 44 00 00 44 00 00 44 45 00 44 00 44 44 00 45 00 45 00 44 00 44 45 00 44 00 44 00 00 00 00 45 00 00 44 45 00 44 00 45 00 44 00 45 00 44 00 44 44 00 00 00 44 45 00 00 00 45 00 44 44 00 44 45 00 45 00 00 00 00 00 00 00 00 00 00 44 00 44 45 00 45 00 44 44 00 44 00 44 44 00 44 00 45 00 00 44 44 00 44 00 44 00 45 00 44 00 00 44 45 00 44 00 00 45 00 44 45 44 44 00 00 45 00 45 00 00 45 00 44 00 00 44 00 45 00 00 00 45 00 44 00 44 45 00 00 44 45 00 44 45 44 45 00 45 44 00 45 00 00 44 00 00 00 00 00 44 00 00 00 44 00 00 00 44 45 00 00 44 00 00 44 00 00 44 00 44 44 44 00 44 45 44 00 00 44 45 00 44 44 00 44 00 00 45 00 44 00 00 44 45 00 00 00 44 00 00 00 00 44 00 44 00 44 00 00 44 45 00 44 00 00 44 00 00 44 00 44 44 00 44 00 44 00 00 00 44 00 44 45 00 00 44 00 00 44 45 00 44 00 44 45 00 44 00 00 45 00 44 00 00 44 00 00 00 44 00 44 45 00 00 44 44 00 45 00 00 45 00 45 00 44 45 00 44 00 44 00 00 44 45 00 00 00 44 00 44 45 00 00 00 45 00 00 00 00 44 00 45 00 44 00 00 44 00 44 00 00 44 00 00 45 00 44 00 00 44 00 44 00 44 44 00 00 00 45 00 00 00 45 00 45 00 44 45 00 00 44 44 00 44 00 44 00 00 44 00 44 00 44 00 00 00 00 44 00 44 00 45 00 44 00 44 44 00 00 44 44 00 44 44 00 44 00 45 00 45 00 44 45 00 44 00 44 45 00 44 45 00 44 00 00
*/
|
; DCL_DF23_L1.asm - Full Direct Form 2 implementation in third order
;
; Copyright (C) 2018 Texas Instruments Incorporated - http://www.ti.com/
; ALL RIGHTS RESERVED
.if __TI_EABI__
.asg DCL_runDF23_L1, _DCL_runDF23_L1
.endif
.global _DCL_runDF23_L1
.def __cla_DCL_DF23_L1_sp
SIZEOF_LFRAME .set 2
LFRAME_MR3 .set 0
.align 2
__cla_DCL_DF23_L1_sp .usect ".scratchpad:Cla1Prog:_DCL_DF23_L1_LSECT", SIZEOF_LFRAME, 0, 1
.asg __cla_DCL_DF23_L1_sp, LFRAME
.sect "Cla1Prog:_DCL_DF23_L1_LSECT"
; C prototype: float DCL_runDF23_L1(DCL_DF23 *p, float32_t ek);
; argument 1 = *p : 32-bit structure address [MAR0]
; argument 2 = ek : 32-bit floating-point [MR0]
; return = uk : 32-bit floating-point [MR0]
_DCL_runDF23_L1:
MMOV32 @LFRAME + LFRAME_MR3, MR3 ; save MR3
MNOP ; MAR0 load delay slot 2
MNOP ; MAR0 load delay slot 3
MMOV32 MR1, *MAR0[2]++ ; MR1 = b0
MMPYF32 MR2, MR1, MR0 ; MR2 = v1
|| MMOV32 MR3, *MAR0[12]++ ; MR3 = b1
MMOV32 MR1, *MAR0[2]++ ; MR1 = x1
MADDF32 MR2, MR1, MR2 ; MR2 = uk
MMPYF32 MR3, MR0, MR3 ; MR3 = v2
MMOV32 MR1, *MAR0[-8]++ ; MR1 = x2
MADDF32 MR3, MR1, MR3 ; MR3 = x2 + v2
|| MMOV32 MR1, *MAR0[-4]++ ; MR1 = a1
MMPYF32 MR1, MR1, MR2 ; MR1 = v3
MNOP
MSUBF32 MR3, MR3, MR1 ; MR3 = x1d
MMOV32 MR1, *MAR0[10]++ ; MR1 = b2
MMOV32 *MAR0[4]++, MR3 ; save x1
MMPYF32 MR1, MR0, MR1 ; MR1 = v4
MMOV32 MR3, *MAR0[-8]++ ; MR3 = x3
MADDF32 MR3, MR1, MR3 ; MR3 = x3 + v4
|| MMOV32 MR1, *MAR0[-4]++ ; MR1 = a2
MMPYF32 MR1, MR1, MR2 ; MR1 = v5
MNOP
MSUBF32 MR3, MR3, MR1 ; MR3 = x2d
MMOV32 MR1, *MAR0[10]++ ; MR1 = b3
MMOV32 *MAR0[-4]++, MR3 ; save x2
MMPYF32 MR1, MR0, MR1 ; MR1 = v6
|| MMOV32 MR3, *MAR0[6]++ ; MR3 = a3
MMPYF32 MR3, MR2, MR3 ; MR3 = v7
MSUBF32 MR1, MR1, MR3 ; MR1 = x3d
MRCNDD UNC ; return call
MMOV32 MR0, MR2, UNC ; return uk
MMOV32 MR3, @LFRAME + LFRAME_MR3 ; restore MR3
MMOV32 *MAR0[0]++, MR1 ; save x3
.unasg LFRAME
; end of file
|
; A138409: a(n) = prime(n)^6 - prime(n)^2.
; 60,720,15600,117600,1771440,4826640,24137280,47045520,148035360,594822480,887502720,2565725040,4750102560,6321361200,10779213120,22164358320,42180530160,51520370640,90458377680,128100278880,151334220960,243087449280,326940366480,496981283040,832971995520,1061520140400,1194052285920,1500730340400,1677100098960,2081951739840,4195872898560,5053913127120,6611856231840,7212549393840,10942526564400,11853911565600,14976071806800,18755369551440,21691961568480,26808753302160,32894113412880
seq $0,40 ; The prime numbers.
mov $2,$0
pow $2,5
sub $2,$0
mul $0,$2
|
; A177788: binomial(n^2,n+1)/(n-1).
; Submitted by Jon Maiga
; 4,63,1456,44275,1669536,75163011,3934369216,234799050915,15736644960400,1170354134607658,95648578915114512,8520904136405458044,821828481957792579648,85317719822978885714475
mov $1,$0
add $0,2
add $1,3
mov $2,$0
sub $0,1
pow $2,2
bin $2,$1
div $2,$0
mov $0,$2
|
; A085697: a(n) = T(n+2)^2, where T(n) = tribonacci numbers (A000073).
; 0,0,1,1,4,16,49,169,576,1936,6561,22201,75076,254016,859329,2907025,9834496,33269824,112550881,380757169,1288092100,4357584144,14741602225,49870482489,168710633536,570743986576,1930813074369,6531893843049
cal $0,73 ; Tribonacci numbers: a(n) = a(n-1) + a(n-2) + a(n-3) for n >= 3 with a(0) = a(1) = 0 and a(2) = 1.
pow $0,2
mov $1,$0
|
; A020606: Expansion of 1/((1-6x)(1-9x)(1-11x)).
; Submitted by Jamie Morken(s2)
; 1,26,457,6782,91693,1170218,14373409,171896534,2016642805,23325176930,266916367081,3029497622606,34167408893437,383440973924762,4286324362209073,47766301010614598,530982729463501189,5890807715878623314,65248965660642516985,721789958700606642110,7976155229766963723661,88065920620929857282186,971679176293371579268417,10715058174125598768034742,118104929767849527334738453,1301307864548844298589030978,14333769414541510945219720969,157845910723985002421549602094,1737875048581032679319055163165
add $0,1
mov $3,1
lpb $0
sub $0,1
add $2,$3
add $1,$2
mul $1,6
mul $2,11
mul $3,9
lpe
mov $0,$1
div $0,6
|
adc (hl) ; 8E
adc (ix) ; DD 8E 00
adc (ix+127) ; DD 8E 7F
adc (ix-128) ; DD 8E 80
adc (iy) ; FD 8E 00
adc (iy+127) ; FD 8E 7F
adc (iy-128) ; FD 8E 80
adc -128 ; CE 80
adc 127 ; CE 7F
adc 255 ; CE FF
adc a ; 8F
adc a,(hl) ; 8E
adc a,(ix) ; DD 8E 00
adc a,(ix+127) ; DD 8E 7F
adc a,(ix-128) ; DD 8E 80
adc a,(iy) ; FD 8E 00
adc a,(iy+127) ; FD 8E 7F
adc a,(iy-128) ; FD 8E 80
adc a,-128 ; CE 80
adc a,127 ; CE 7F
adc a,255 ; CE FF
adc a,a ; 8F
adc a,b ; 88
adc a,c ; 89
adc a,d ; 8A
adc a,e ; 8B
adc a,h ; 8C
adc a,l ; 8D
adc b ; 88
adc c ; 89
adc d ; 8A
adc e ; 8B
adc h ; 8C
adc hl,bc ; ED 4A
adc hl,de ; ED 5A
adc hl,hl ; ED 6A
adc hl,sp ; ED 7A
adc l ; 8D
add (hl) ; 86
add (ix) ; DD 86 00
add (ix+127) ; DD 86 7F
add (ix-128) ; DD 86 80
add (iy) ; FD 86 00
add (iy+127) ; FD 86 7F
add (iy-128) ; FD 86 80
add -128 ; C6 80
add 127 ; C6 7F
add 255 ; C6 FF
add a ; 87
add a,(hl) ; 86
add a,(ix) ; DD 86 00
add a,(ix+127) ; DD 86 7F
add a,(ix-128) ; DD 86 80
add a,(iy) ; FD 86 00
add a,(iy+127) ; FD 86 7F
add a,(iy-128) ; FD 86 80
add a,-128 ; C6 80
add a,127 ; C6 7F
add a,255 ; C6 FF
add a,a ; 87
add a,b ; 80
add a,c ; 81
add a,d ; 82
add a,e ; 83
add a,h ; 84
add a,l ; 85
add b ; 80
add c ; 81
add d ; 82
add e ; 83
add h ; 84
add hl,bc ; 09
add hl,de ; 19
add hl,hl ; 29
add hl,sp ; 39
add ix,bc ; DD 09
add ix,de ; DD 19
add ix,ix ; DD 29
add ix,sp ; DD 39
add iy,bc ; FD 09
add iy,de ; FD 19
add iy,iy ; FD 29
add iy,sp ; FD 39
add l ; 85
and (hl) ; A6
and (ix) ; DD A6 00
and (ix+127) ; DD A6 7F
and (ix-128) ; DD A6 80
and (iy) ; FD A6 00
and (iy+127) ; FD A6 7F
and (iy-128) ; FD A6 80
and -128 ; E6 80
and 127 ; E6 7F
and 255 ; E6 FF
and a ; A7
and a,(hl) ; A6
and a,(ix) ; DD A6 00
and a,(ix+127) ; DD A6 7F
and a,(ix-128) ; DD A6 80
and a,(iy) ; FD A6 00
and a,(iy+127) ; FD A6 7F
and a,(iy-128) ; FD A6 80
and a,-128 ; E6 80
and a,127 ; E6 7F
and a,255 ; E6 FF
and a,a ; A7
and a,b ; A0
and a,c ; A1
and a,d ; A2
and a,e ; A3
and a,h ; A4
and a,l ; A5
and b ; A0
and c ; A1
and d ; A2
and e ; A3
and h ; A4
and l ; A5
bit 0,(hl) ; CB 46
bit 0,(ix) ; DD CB 00 46
bit 0,(ix+127) ; DD CB 7F 46
bit 0,(ix-128) ; DD CB 80 46
bit 0,(iy) ; FD CB 00 46
bit 0,(iy+127) ; FD CB 7F 46
bit 0,(iy-128) ; FD CB 80 46
bit 0,a ; CB 47
bit 0,b ; CB 40
bit 0,c ; CB 41
bit 0,d ; CB 42
bit 0,e ; CB 43
bit 0,h ; CB 44
bit 0,l ; CB 45
bit 1,(hl) ; CB 4E
bit 1,(ix) ; DD CB 00 4E
bit 1,(ix+127) ; DD CB 7F 4E
bit 1,(ix-128) ; DD CB 80 4E
bit 1,(iy) ; FD CB 00 4E
bit 1,(iy+127) ; FD CB 7F 4E
bit 1,(iy-128) ; FD CB 80 4E
bit 1,a ; CB 4F
bit 1,b ; CB 48
bit 1,c ; CB 49
bit 1,d ; CB 4A
bit 1,e ; CB 4B
bit 1,h ; CB 4C
bit 1,l ; CB 4D
bit 2,(hl) ; CB 56
bit 2,(ix) ; DD CB 00 56
bit 2,(ix+127) ; DD CB 7F 56
bit 2,(ix-128) ; DD CB 80 56
bit 2,(iy) ; FD CB 00 56
bit 2,(iy+127) ; FD CB 7F 56
bit 2,(iy-128) ; FD CB 80 56
bit 2,a ; CB 57
bit 2,b ; CB 50
bit 2,c ; CB 51
bit 2,d ; CB 52
bit 2,e ; CB 53
bit 2,h ; CB 54
bit 2,l ; CB 55
bit 3,(hl) ; CB 5E
bit 3,(ix) ; DD CB 00 5E
bit 3,(ix+127) ; DD CB 7F 5E
bit 3,(ix-128) ; DD CB 80 5E
bit 3,(iy) ; FD CB 00 5E
bit 3,(iy+127) ; FD CB 7F 5E
bit 3,(iy-128) ; FD CB 80 5E
bit 3,a ; CB 5F
bit 3,b ; CB 58
bit 3,c ; CB 59
bit 3,d ; CB 5A
bit 3,e ; CB 5B
bit 3,h ; CB 5C
bit 3,l ; CB 5D
bit 4,(hl) ; CB 66
bit 4,(ix) ; DD CB 00 66
bit 4,(ix+127) ; DD CB 7F 66
bit 4,(ix-128) ; DD CB 80 66
bit 4,(iy) ; FD CB 00 66
bit 4,(iy+127) ; FD CB 7F 66
bit 4,(iy-128) ; FD CB 80 66
bit 4,a ; CB 67
bit 4,b ; CB 60
bit 4,c ; CB 61
bit 4,d ; CB 62
bit 4,e ; CB 63
bit 4,h ; CB 64
bit 4,l ; CB 65
bit 5,(hl) ; CB 6E
bit 5,(ix) ; DD CB 00 6E
bit 5,(ix+127) ; DD CB 7F 6E
bit 5,(ix-128) ; DD CB 80 6E
bit 5,(iy) ; FD CB 00 6E
bit 5,(iy+127) ; FD CB 7F 6E
bit 5,(iy-128) ; FD CB 80 6E
bit 5,a ; CB 6F
bit 5,b ; CB 68
bit 5,c ; CB 69
bit 5,d ; CB 6A
bit 5,e ; CB 6B
bit 5,h ; CB 6C
bit 5,l ; CB 6D
bit 6,(hl) ; CB 76
bit 6,(ix) ; DD CB 00 76
bit 6,(ix+127) ; DD CB 7F 76
bit 6,(ix-128) ; DD CB 80 76
bit 6,(iy) ; FD CB 00 76
bit 6,(iy+127) ; FD CB 7F 76
bit 6,(iy-128) ; FD CB 80 76
bit 6,a ; CB 77
bit 6,b ; CB 70
bit 6,c ; CB 71
bit 6,d ; CB 72
bit 6,e ; CB 73
bit 6,h ; CB 74
bit 6,l ; CB 75
bit 7,(hl) ; CB 7E
bit 7,(ix) ; DD CB 00 7E
bit 7,(ix+127) ; DD CB 7F 7E
bit 7,(ix-128) ; DD CB 80 7E
bit 7,(iy) ; FD CB 00 7E
bit 7,(iy+127) ; FD CB 7F 7E
bit 7,(iy-128) ; FD CB 80 7E
bit 7,a ; CB 7F
bit 7,b ; CB 78
bit 7,c ; CB 79
bit 7,d ; CB 7A
bit 7,e ; CB 7B
bit 7,h ; CB 7C
bit 7,l ; CB 7D
call -32768 ; CD 00 80
call 32767 ; CD FF 7F
call 65535 ; CD FF FF
call nv,-32768 ; E4 00 80
call nv,32767 ; E4 FF 7F
call nv,65535 ; E4 FF FF
call v,-32768 ; EC 00 80
call v,32767 ; EC FF 7F
call v,65535 ; EC FF FF
ccf ; 3F
ccf f ; 3F
cp (hl) ; BE
cp (ix) ; DD BE 00
cp (ix+127) ; DD BE 7F
cp (ix-128) ; DD BE 80
cp (iy) ; FD BE 00
cp (iy+127) ; FD BE 7F
cp (iy-128) ; FD BE 80
cp -128 ; FE 80
cp 127 ; FE 7F
cp 255 ; FE FF
cp a ; BF
cp a,(hl) ; BE
cp a,(ix) ; DD BE 00
cp a,(ix+127) ; DD BE 7F
cp a,(ix-128) ; DD BE 80
cp a,(iy) ; FD BE 00
cp a,(iy+127) ; FD BE 7F
cp a,(iy-128) ; FD BE 80
cp a,-128 ; FE 80
cp a,127 ; FE 7F
cp a,255 ; FE FF
cp a,a ; BF
cp a,b ; B8
cp a,c ; B9
cp a,d ; BA
cp a,e ; BB
cp a,h ; BC
cp a,l ; BD
cp b ; B8
cp c ; B9
cp d ; BA
cp e ; BB
cp h ; BC
cp l ; BD
cpd ; ED A9
cpdr ; ED B9
cpi ; ED A1
cpir ; ED B1
cpl ; 2F
cpl a ; 2F
daa ; 27
dec (hl) ; 35
dec (ix) ; DD 35 00
dec (ix+127) ; DD 35 7F
dec (ix-128) ; DD 35 80
dec (iy) ; FD 35 00
dec (iy+127) ; FD 35 7F
dec (iy-128) ; FD 35 80
dec a ; 3D
dec b ; 05
dec bc ; 0B
dec c ; 0D
dec d ; 15
dec de ; 1B
dec e ; 1D
dec h ; 25
dec hl ; 2B
dec ix ; DD 2B
dec iy ; FD 2B
dec l ; 2D
dec sp ; 3B
di ; F3
djnz ASMPC ; 10 FE
djnz b,ASMPC ; 10 FE
ei ; FB
ex (sp),hl ; E3
ex (sp),ix ; DD E3
ex (sp),iy ; FD E3
ex af,af ; 08
ex af,af' ; 08
ex de,hl ; EB
exx ; D9
halt ; 76
im 0 ; ED 46
im 1 ; ED 56
im 2 ; ED 5E
in a,(-128) ; DB 80
in a,(127) ; DB 7F
in a,(255) ; DB FF
in a,(c) ; ED 78
in b,(c) ; ED 40
in c,(c) ; ED 48
in d,(c) ; ED 50
in e,(c) ; ED 58
in f,(c) ; ED 70
in h,(c) ; ED 60
in l,(c) ; ED 68
in0 a,(-128) ; ED 38 80
in0 a,(127) ; ED 38 7F
in0 a,(255) ; ED 38 FF
in0 b,(-128) ; ED 00 80
in0 b,(127) ; ED 00 7F
in0 b,(255) ; ED 00 FF
in0 c,(-128) ; ED 08 80
in0 c,(127) ; ED 08 7F
in0 c,(255) ; ED 08 FF
in0 d,(-128) ; ED 10 80
in0 d,(127) ; ED 10 7F
in0 d,(255) ; ED 10 FF
in0 e,(-128) ; ED 18 80
in0 e,(127) ; ED 18 7F
in0 e,(255) ; ED 18 FF
in0 f,(-128) ; ED 30 80
in0 f,(127) ; ED 30 7F
in0 f,(255) ; ED 30 FF
in0 h,(-128) ; ED 20 80
in0 h,(127) ; ED 20 7F
in0 h,(255) ; ED 20 FF
in0 l,(-128) ; ED 28 80
in0 l,(127) ; ED 28 7F
in0 l,(255) ; ED 28 FF
inc (hl) ; 34
inc (ix) ; DD 34 00
inc (ix+127) ; DD 34 7F
inc (ix-128) ; DD 34 80
inc (iy) ; FD 34 00
inc (iy+127) ; FD 34 7F
inc (iy-128) ; FD 34 80
inc a ; 3C
inc b ; 04
inc bc ; 03
inc c ; 0C
inc d ; 14
inc de ; 13
inc e ; 1C
inc h ; 24
inc hl ; 23
inc ix ; DD 23
inc iy ; FD 23
inc l ; 2C
inc sp ; 33
ind ; ED AA
indr ; ED BA
ini ; ED A2
inir ; ED B2
jp (hl) ; E9
jp (ix) ; DD E9
jp (iy) ; FD E9
jp -32768 ; C3 00 80
jp 32767 ; C3 FF 7F
jp 65535 ; C3 FF FF
jp c,-32768 ; DA 00 80
jp c,32767 ; DA FF 7F
jp c,65535 ; DA FF FF
jp m,-32768 ; FA 00 80
jp m,32767 ; FA FF 7F
jp m,65535 ; FA FF FF
jp nc,-32768 ; D2 00 80
jp nc,32767 ; D2 FF 7F
jp nc,65535 ; D2 FF FF
jp nv,-32768 ; E2 00 80
jp nv,32767 ; E2 FF 7F
jp nv,65535 ; E2 FF FF
jp nz,-32768 ; C2 00 80
jp nz,32767 ; C2 FF 7F
jp nz,65535 ; C2 FF FF
jp p,-32768 ; F2 00 80
jp p,32767 ; F2 FF 7F
jp p,65535 ; F2 FF FF
jp pe,-32768 ; EA 00 80
jp pe,32767 ; EA FF 7F
jp pe,65535 ; EA FF FF
jp po,-32768 ; E2 00 80
jp po,32767 ; E2 FF 7F
jp po,65535 ; E2 FF FF
jp v,-32768 ; EA 00 80
jp v,32767 ; EA FF 7F
jp v,65535 ; EA FF FF
jp z,-32768 ; CA 00 80
jp z,32767 ; CA FF 7F
jp z,65535 ; CA FF FF
jr ASMPC ; 18 FE
jr c,ASMPC ; 38 FE
jr nc,ASMPC ; 30 FE
jr nz,ASMPC ; 20 FE
jr z,ASMPC ; 28 FE
ld (-32768),a ; 32 00 80
ld (-32768),bc ; ED 43 00 80
ld (-32768),de ; ED 53 00 80
ld (-32768),hl ; 22 00 80
ld (-32768),ix ; DD 22 00 80
ld (-32768),iy ; FD 22 00 80
ld (-32768),sp ; ED 73 00 80
ld (32767),a ; 32 FF 7F
ld (32767),bc ; ED 43 FF 7F
ld (32767),de ; ED 53 FF 7F
ld (32767),hl ; 22 FF 7F
ld (32767),ix ; DD 22 FF 7F
ld (32767),iy ; FD 22 FF 7F
ld (32767),sp ; ED 73 FF 7F
ld (65535),a ; 32 FF FF
ld (65535),bc ; ED 43 FF FF
ld (65535),de ; ED 53 FF FF
ld (65535),hl ; 22 FF FF
ld (65535),ix ; DD 22 FF FF
ld (65535),iy ; FD 22 FF FF
ld (65535),sp ; ED 73 FF FF
ld (bc),a ; 02
ld (de),a ; 12
ld (hl),-128 ; 36 80
ld (hl),127 ; 36 7F
ld (hl),255 ; 36 FF
ld (hl),a ; 77
ld (hl),b ; 70
ld (hl),c ; 71
ld (hl),d ; 72
ld (hl),e ; 73
ld (hl),h ; 74
ld (hl),l ; 75
ld (ix),-128 ; DD 36 00 80
ld (ix),127 ; DD 36 00 7F
ld (ix),255 ; DD 36 00 FF
ld (ix),a ; DD 77 00
ld (ix),b ; DD 70 00
ld (ix),c ; DD 71 00
ld (ix),d ; DD 72 00
ld (ix),e ; DD 73 00
ld (ix),h ; DD 74 00
ld (ix),l ; DD 75 00
ld (ix+127),-128 ; DD 36 7F 80
ld (ix+127),127 ; DD 36 7F 7F
ld (ix+127),255 ; DD 36 7F FF
ld (ix+127),a ; DD 77 7F
ld (ix+127),b ; DD 70 7F
ld (ix+127),c ; DD 71 7F
ld (ix+127),d ; DD 72 7F
ld (ix+127),e ; DD 73 7F
ld (ix+127),h ; DD 74 7F
ld (ix+127),l ; DD 75 7F
ld (ix-128),-128 ; DD 36 80 80
ld (ix-128),127 ; DD 36 80 7F
ld (ix-128),255 ; DD 36 80 FF
ld (ix-128),a ; DD 77 80
ld (ix-128),b ; DD 70 80
ld (ix-128),c ; DD 71 80
ld (ix-128),d ; DD 72 80
ld (ix-128),e ; DD 73 80
ld (ix-128),h ; DD 74 80
ld (ix-128),l ; DD 75 80
ld (iy),-128 ; FD 36 00 80
ld (iy),127 ; FD 36 00 7F
ld (iy),255 ; FD 36 00 FF
ld (iy),a ; FD 77 00
ld (iy),b ; FD 70 00
ld (iy),c ; FD 71 00
ld (iy),d ; FD 72 00
ld (iy),e ; FD 73 00
ld (iy),h ; FD 74 00
ld (iy),l ; FD 75 00
ld (iy+127),-128 ; FD 36 7F 80
ld (iy+127),127 ; FD 36 7F 7F
ld (iy+127),255 ; FD 36 7F FF
ld (iy+127),a ; FD 77 7F
ld (iy+127),b ; FD 70 7F
ld (iy+127),c ; FD 71 7F
ld (iy+127),d ; FD 72 7F
ld (iy+127),e ; FD 73 7F
ld (iy+127),h ; FD 74 7F
ld (iy+127),l ; FD 75 7F
ld (iy-128),-128 ; FD 36 80 80
ld (iy-128),127 ; FD 36 80 7F
ld (iy-128),255 ; FD 36 80 FF
ld (iy-128),a ; FD 77 80
ld (iy-128),b ; FD 70 80
ld (iy-128),c ; FD 71 80
ld (iy-128),d ; FD 72 80
ld (iy-128),e ; FD 73 80
ld (iy-128),h ; FD 74 80
ld (iy-128),l ; FD 75 80
ld a,(-32768) ; 3A 00 80
ld a,(32767) ; 3A FF 7F
ld a,(65535) ; 3A FF FF
ld a,(bc) ; 0A
ld a,(de) ; 1A
ld a,(hl) ; 7E
ld a,(ix) ; DD 7E 00
ld a,(ix+127) ; DD 7E 7F
ld a,(ix-128) ; DD 7E 80
ld a,(iy) ; FD 7E 00
ld a,(iy+127) ; FD 7E 7F
ld a,(iy-128) ; FD 7E 80
ld a,-128 ; 3E 80
ld a,127 ; 3E 7F
ld a,255 ; 3E FF
ld a,a ; 7F
ld a,b ; 78
ld a,c ; 79
ld a,d ; 7A
ld a,e ; 7B
ld a,h ; 7C
ld a,i ; ED 57
ld a,l ; 7D
ld a,r ; ED 5F
ld b,(hl) ; 46
ld b,(ix) ; DD 46 00
ld b,(ix+127) ; DD 46 7F
ld b,(ix-128) ; DD 46 80
ld b,(iy) ; FD 46 00
ld b,(iy+127) ; FD 46 7F
ld b,(iy-128) ; FD 46 80
ld b,-128 ; 06 80
ld b,127 ; 06 7F
ld b,255 ; 06 FF
ld b,a ; 47
ld b,b ; 40
ld b,c ; 41
ld b,d ; 42
ld b,e ; 43
ld b,h ; 44
ld b,l ; 45
ld bc,(-32768) ; ED 4B 00 80
ld bc,(32767) ; ED 4B FF 7F
ld bc,(65535) ; ED 4B FF FF
ld bc,-32768 ; 01 00 80
ld bc,32767 ; 01 FF 7F
ld bc,65535 ; 01 FF FF
ld c,(hl) ; 4E
ld c,(ix) ; DD 4E 00
ld c,(ix+127) ; DD 4E 7F
ld c,(ix-128) ; DD 4E 80
ld c,(iy) ; FD 4E 00
ld c,(iy+127) ; FD 4E 7F
ld c,(iy-128) ; FD 4E 80
ld c,-128 ; 0E 80
ld c,127 ; 0E 7F
ld c,255 ; 0E FF
ld c,a ; 4F
ld c,b ; 48
ld c,c ; 49
ld c,d ; 4A
ld c,e ; 4B
ld c,h ; 4C
ld c,l ; 4D
ld d,(hl) ; 56
ld d,(ix) ; DD 56 00
ld d,(ix+127) ; DD 56 7F
ld d,(ix-128) ; DD 56 80
ld d,(iy) ; FD 56 00
ld d,(iy+127) ; FD 56 7F
ld d,(iy-128) ; FD 56 80
ld d,-128 ; 16 80
ld d,127 ; 16 7F
ld d,255 ; 16 FF
ld d,a ; 57
ld d,b ; 50
ld d,c ; 51
ld d,d ; 52
ld d,e ; 53
ld d,h ; 54
ld d,l ; 55
ld de,(-32768) ; ED 5B 00 80
ld de,(32767) ; ED 5B FF 7F
ld de,(65535) ; ED 5B FF FF
ld de,-32768 ; 11 00 80
ld de,32767 ; 11 FF 7F
ld de,65535 ; 11 FF FF
ld e,(hl) ; 5E
ld e,(ix) ; DD 5E 00
ld e,(ix+127) ; DD 5E 7F
ld e,(ix-128) ; DD 5E 80
ld e,(iy) ; FD 5E 00
ld e,(iy+127) ; FD 5E 7F
ld e,(iy-128) ; FD 5E 80
ld e,-128 ; 1E 80
ld e,127 ; 1E 7F
ld e,255 ; 1E FF
ld e,a ; 5F
ld e,b ; 58
ld e,c ; 59
ld e,d ; 5A
ld e,e ; 5B
ld e,h ; 5C
ld e,l ; 5D
ld h,(hl) ; 66
ld h,(ix) ; DD 66 00
ld h,(ix+127) ; DD 66 7F
ld h,(ix-128) ; DD 66 80
ld h,(iy) ; FD 66 00
ld h,(iy+127) ; FD 66 7F
ld h,(iy-128) ; FD 66 80
ld h,-128 ; 26 80
ld h,127 ; 26 7F
ld h,255 ; 26 FF
ld h,a ; 67
ld h,b ; 60
ld h,c ; 61
ld h,d ; 62
ld h,e ; 63
ld h,h ; 64
ld h,l ; 65
ld hl,(-32768) ; 2A 00 80
ld hl,(32767) ; 2A FF 7F
ld hl,(65535) ; 2A FF FF
ld hl,-32768 ; 21 00 80
ld hl,32767 ; 21 FF 7F
ld hl,65535 ; 21 FF FF
ld i,a ; ED 47
ld ix,(-32768) ; DD 2A 00 80
ld ix,(32767) ; DD 2A FF 7F
ld ix,(65535) ; DD 2A FF FF
ld ix,-32768 ; DD 21 00 80
ld ix,32767 ; DD 21 FF 7F
ld ix,65535 ; DD 21 FF FF
ld iy,(-32768) ; FD 2A 00 80
ld iy,(32767) ; FD 2A FF 7F
ld iy,(65535) ; FD 2A FF FF
ld iy,-32768 ; FD 21 00 80
ld iy,32767 ; FD 21 FF 7F
ld iy,65535 ; FD 21 FF FF
ld l,(hl) ; 6E
ld l,(ix) ; DD 6E 00
ld l,(ix+127) ; DD 6E 7F
ld l,(ix-128) ; DD 6E 80
ld l,(iy) ; FD 6E 00
ld l,(iy+127) ; FD 6E 7F
ld l,(iy-128) ; FD 6E 80
ld l,-128 ; 2E 80
ld l,127 ; 2E 7F
ld l,255 ; 2E FF
ld l,a ; 6F
ld l,b ; 68
ld l,c ; 69
ld l,d ; 6A
ld l,e ; 6B
ld l,h ; 6C
ld l,l ; 6D
ld r,a ; ED 4F
ld sp,(-32768) ; ED 7B 00 80
ld sp,(32767) ; ED 7B FF 7F
ld sp,(65535) ; ED 7B FF FF
ld sp,-32768 ; 31 00 80
ld sp,32767 ; 31 FF 7F
ld sp,65535 ; 31 FF FF
ld sp,hl ; F9
ld sp,ix ; DD F9
ld sp,iy ; FD F9
ldd ; ED A8
lddr ; ED B8
ldi ; ED A0
ldir ; ED B0
mlt bc ; ED 4C
mlt de ; ED 5C
mlt hl ; ED 6C
mlt sp ; ED 7C
neg ; ED 44
neg a ; ED 44
nop ; 00
or (hl) ; B6
or (ix) ; DD B6 00
or (ix+127) ; DD B6 7F
or (ix-128) ; DD B6 80
or (iy) ; FD B6 00
or (iy+127) ; FD B6 7F
or (iy-128) ; FD B6 80
or -128 ; F6 80
or 127 ; F6 7F
or 255 ; F6 FF
or a ; B7
or a,(hl) ; B6
or a,(ix) ; DD B6 00
or a,(ix+127) ; DD B6 7F
or a,(ix-128) ; DD B6 80
or a,(iy) ; FD B6 00
or a,(iy+127) ; FD B6 7F
or a,(iy-128) ; FD B6 80
or a,-128 ; F6 80
or a,127 ; F6 7F
or a,255 ; F6 FF
or a,a ; B7
or a,b ; B0
or a,c ; B1
or a,d ; B2
or a,e ; B3
or a,h ; B4
or a,l ; B5
or b ; B0
or c ; B1
or d ; B2
or e ; B3
or h ; B4
or l ; B5
otdm ; ED 8B
otdmr ; ED 9B
otdr ; ED BB
otim ; ED 83
otimr ; ED 93
otir ; ED B3
out (-128),a ; D3 80
out (127),a ; D3 7F
out (255),a ; D3 FF
out (c),0 ; ED 71
out (c),a ; ED 79
out (c),b ; ED 41
out (c),c ; ED 49
out (c),d ; ED 51
out (c),e ; ED 59
out (c),h ; ED 61
out (c),l ; ED 69
out0 (-128),a ; ED 39 80
out0 (-128),b ; ED 01 80
out0 (-128),c ; ED 09 80
out0 (-128),d ; ED 11 80
out0 (-128),e ; ED 19 80
out0 (-128),h ; ED 21 80
out0 (-128),l ; ED 29 80
out0 (127),a ; ED 39 7F
out0 (127),b ; ED 01 7F
out0 (127),c ; ED 09 7F
out0 (127),d ; ED 11 7F
out0 (127),e ; ED 19 7F
out0 (127),h ; ED 21 7F
out0 (127),l ; ED 29 7F
out0 (255),a ; ED 39 FF
out0 (255),b ; ED 01 FF
out0 (255),c ; ED 09 FF
out0 (255),d ; ED 11 FF
out0 (255),e ; ED 19 FF
out0 (255),h ; ED 21 FF
out0 (255),l ; ED 29 FF
outd ; ED AB
outi ; ED A3
pop af ; F1
pop bc ; C1
pop de ; D1
pop hl ; E1
pop ix ; DD E1
pop iy ; FD E1
push af ; F5
push bc ; C5
push de ; D5
push hl ; E5
push ix ; DD E5
push iy ; FD E5
res 0,(hl) ; CB 86
res 0,(ix) ; DD CB 00 86
res 0,(ix+127) ; DD CB 7F 86
res 0,(ix-128) ; DD CB 80 86
res 0,(iy) ; FD CB 00 86
res 0,(iy+127) ; FD CB 7F 86
res 0,(iy-128) ; FD CB 80 86
res 0,a ; CB 87
res 0,b ; CB 80
res 0,c ; CB 81
res 0,d ; CB 82
res 0,e ; CB 83
res 0,h ; CB 84
res 0,l ; CB 85
res 1,(hl) ; CB 8E
res 1,(ix) ; DD CB 00 8E
res 1,(ix+127) ; DD CB 7F 8E
res 1,(ix-128) ; DD CB 80 8E
res 1,(iy) ; FD CB 00 8E
res 1,(iy+127) ; FD CB 7F 8E
res 1,(iy-128) ; FD CB 80 8E
res 1,a ; CB 8F
res 1,b ; CB 88
res 1,c ; CB 89
res 1,d ; CB 8A
res 1,e ; CB 8B
res 1,h ; CB 8C
res 1,l ; CB 8D
res 2,(hl) ; CB 96
res 2,(ix) ; DD CB 00 96
res 2,(ix+127) ; DD CB 7F 96
res 2,(ix-128) ; DD CB 80 96
res 2,(iy) ; FD CB 00 96
res 2,(iy+127) ; FD CB 7F 96
res 2,(iy-128) ; FD CB 80 96
res 2,a ; CB 97
res 2,b ; CB 90
res 2,c ; CB 91
res 2,d ; CB 92
res 2,e ; CB 93
res 2,h ; CB 94
res 2,l ; CB 95
res 3,(hl) ; CB 9E
res 3,(ix) ; DD CB 00 9E
res 3,(ix+127) ; DD CB 7F 9E
res 3,(ix-128) ; DD CB 80 9E
res 3,(iy) ; FD CB 00 9E
res 3,(iy+127) ; FD CB 7F 9E
res 3,(iy-128) ; FD CB 80 9E
res 3,a ; CB 9F
res 3,b ; CB 98
res 3,c ; CB 99
res 3,d ; CB 9A
res 3,e ; CB 9B
res 3,h ; CB 9C
res 3,l ; CB 9D
res 4,(hl) ; CB A6
res 4,(ix) ; DD CB 00 A6
res 4,(ix+127) ; DD CB 7F A6
res 4,(ix-128) ; DD CB 80 A6
res 4,(iy) ; FD CB 00 A6
res 4,(iy+127) ; FD CB 7F A6
res 4,(iy-128) ; FD CB 80 A6
res 4,a ; CB A7
res 4,b ; CB A0
res 4,c ; CB A1
res 4,d ; CB A2
res 4,e ; CB A3
res 4,h ; CB A4
res 4,l ; CB A5
res 5,(hl) ; CB AE
res 5,(ix) ; DD CB 00 AE
res 5,(ix+127) ; DD CB 7F AE
res 5,(ix-128) ; DD CB 80 AE
res 5,(iy) ; FD CB 00 AE
res 5,(iy+127) ; FD CB 7F AE
res 5,(iy-128) ; FD CB 80 AE
res 5,a ; CB AF
res 5,b ; CB A8
res 5,c ; CB A9
res 5,d ; CB AA
res 5,e ; CB AB
res 5,h ; CB AC
res 5,l ; CB AD
res 6,(hl) ; CB B6
res 6,(ix) ; DD CB 00 B6
res 6,(ix+127) ; DD CB 7F B6
res 6,(ix-128) ; DD CB 80 B6
res 6,(iy) ; FD CB 00 B6
res 6,(iy+127) ; FD CB 7F B6
res 6,(iy-128) ; FD CB 80 B6
res 6,a ; CB B7
res 6,b ; CB B0
res 6,c ; CB B1
res 6,d ; CB B2
res 6,e ; CB B3
res 6,h ; CB B4
res 6,l ; CB B5
res 7,(hl) ; CB BE
res 7,(ix) ; DD CB 00 BE
res 7,(ix+127) ; DD CB 7F BE
res 7,(ix-128) ; DD CB 80 BE
res 7,(iy) ; FD CB 00 BE
res 7,(iy+127) ; FD CB 7F BE
res 7,(iy-128) ; FD CB 80 BE
res 7,a ; CB BF
res 7,b ; CB B8
res 7,c ; CB B9
res 7,d ; CB BA
res 7,e ; CB BB
res 7,h ; CB BC
res 7,l ; CB BD
ret ; C9
ret c ; D8
ret m ; F8
ret nc ; D0
ret nv ; E0
ret nz ; C0
ret p ; F0
ret pe ; E8
ret po ; E0
ret v ; E8
ret z ; C8
reti ; ED 4D
retn ; ED 45
rl (hl) ; CB 16
rl (ix) ; DD CB 00 16
rl (ix+127) ; DD CB 7F 16
rl (ix-128) ; DD CB 80 16
rl (iy) ; FD CB 00 16
rl (iy+127) ; FD CB 7F 16
rl (iy-128) ; FD CB 80 16
rl a ; CB 17
rl b ; CB 10
rl c ; CB 11
rl d ; CB 12
rl e ; CB 13
rl h ; CB 14
rl l ; CB 15
rla ; 17
rlc (hl) ; CB 06
rlc (ix) ; DD CB 00 06
rlc (ix+127) ; DD CB 7F 06
rlc (ix-128) ; DD CB 80 06
rlc (iy) ; FD CB 00 06
rlc (iy+127) ; FD CB 7F 06
rlc (iy-128) ; FD CB 80 06
rlc a ; CB 07
rlc b ; CB 00
rlc c ; CB 01
rlc d ; CB 02
rlc e ; CB 03
rlc h ; CB 04
rlc l ; CB 05
rlca ; 07
rld ; ED 6F
rr (hl) ; CB 1E
rr (ix) ; DD CB 00 1E
rr (ix+127) ; DD CB 7F 1E
rr (ix-128) ; DD CB 80 1E
rr (iy) ; FD CB 00 1E
rr (iy+127) ; FD CB 7F 1E
rr (iy-128) ; FD CB 80 1E
rr a ; CB 1F
rr b ; CB 18
rr c ; CB 19
rr d ; CB 1A
rr e ; CB 1B
rr h ; CB 1C
rr l ; CB 1D
rra ; 1F
rrc (hl) ; CB 0E
rrc (ix) ; DD CB 00 0E
rrc (ix+127) ; DD CB 7F 0E
rrc (ix-128) ; DD CB 80 0E
rrc (iy) ; FD CB 00 0E
rrc (iy+127) ; FD CB 7F 0E
rrc (iy-128) ; FD CB 80 0E
rrc a ; CB 0F
rrc b ; CB 08
rrc c ; CB 09
rrc d ; CB 0A
rrc e ; CB 0B
rrc h ; CB 0C
rrc l ; CB 0D
rrca ; 0F
rrd ; ED 67
rst 0 ; C7
rst 16 ; D7
rst 24 ; DF
rst 32 ; E7
rst 40 ; EF
rst 48 ; F7
rst 56 ; FF
rst 8 ; CF
sbc (hl) ; 9E
sbc (ix) ; DD 9E 00
sbc (ix+127) ; DD 9E 7F
sbc (ix-128) ; DD 9E 80
sbc (iy) ; FD 9E 00
sbc (iy+127) ; FD 9E 7F
sbc (iy-128) ; FD 9E 80
sbc -128 ; DE 80
sbc 127 ; DE 7F
sbc 255 ; DE FF
sbc a ; 9F
sbc a,(hl) ; 9E
sbc a,(ix) ; DD 9E 00
sbc a,(ix+127) ; DD 9E 7F
sbc a,(ix-128) ; DD 9E 80
sbc a,(iy) ; FD 9E 00
sbc a,(iy+127) ; FD 9E 7F
sbc a,(iy-128) ; FD 9E 80
sbc a,-128 ; DE 80
sbc a,127 ; DE 7F
sbc a,255 ; DE FF
sbc a,a ; 9F
sbc a,b ; 98
sbc a,c ; 99
sbc a,d ; 9A
sbc a,e ; 9B
sbc a,h ; 9C
sbc a,l ; 9D
sbc b ; 98
sbc c ; 99
sbc d ; 9A
sbc e ; 9B
sbc h ; 9C
sbc hl,bc ; ED 42
sbc hl,de ; ED 52
sbc hl,hl ; ED 62
sbc hl,sp ; ED 72
sbc l ; 9D
scf ; 37
scf f ; 37
set 0,(hl) ; CB C6
set 0,(ix) ; DD CB 00 C6
set 0,(ix+127) ; DD CB 7F C6
set 0,(ix-128) ; DD CB 80 C6
set 0,(iy) ; FD CB 00 C6
set 0,(iy+127) ; FD CB 7F C6
set 0,(iy-128) ; FD CB 80 C6
set 0,a ; CB C7
set 0,b ; CB C0
set 0,c ; CB C1
set 0,d ; CB C2
set 0,e ; CB C3
set 0,h ; CB C4
set 0,l ; CB C5
set 1,(hl) ; CB CE
set 1,(ix) ; DD CB 00 CE
set 1,(ix+127) ; DD CB 7F CE
set 1,(ix-128) ; DD CB 80 CE
set 1,(iy) ; FD CB 00 CE
set 1,(iy+127) ; FD CB 7F CE
set 1,(iy-128) ; FD CB 80 CE
set 1,a ; CB CF
set 1,b ; CB C8
set 1,c ; CB C9
set 1,d ; CB CA
set 1,e ; CB CB
set 1,h ; CB CC
set 1,l ; CB CD
set 2,(hl) ; CB D6
set 2,(ix) ; DD CB 00 D6
set 2,(ix+127) ; DD CB 7F D6
set 2,(ix-128) ; DD CB 80 D6
set 2,(iy) ; FD CB 00 D6
set 2,(iy+127) ; FD CB 7F D6
set 2,(iy-128) ; FD CB 80 D6
set 2,a ; CB D7
set 2,b ; CB D0
set 2,c ; CB D1
set 2,d ; CB D2
set 2,e ; CB D3
set 2,h ; CB D4
set 2,l ; CB D5
set 3,(hl) ; CB DE
set 3,(ix) ; DD CB 00 DE
set 3,(ix+127) ; DD CB 7F DE
set 3,(ix-128) ; DD CB 80 DE
set 3,(iy) ; FD CB 00 DE
set 3,(iy+127) ; FD CB 7F DE
set 3,(iy-128) ; FD CB 80 DE
set 3,a ; CB DF
set 3,b ; CB D8
set 3,c ; CB D9
set 3,d ; CB DA
set 3,e ; CB DB
set 3,h ; CB DC
set 3,l ; CB DD
set 4,(hl) ; CB E6
set 4,(ix) ; DD CB 00 E6
set 4,(ix+127) ; DD CB 7F E6
set 4,(ix-128) ; DD CB 80 E6
set 4,(iy) ; FD CB 00 E6
set 4,(iy+127) ; FD CB 7F E6
set 4,(iy-128) ; FD CB 80 E6
set 4,a ; CB E7
set 4,b ; CB E0
set 4,c ; CB E1
set 4,d ; CB E2
set 4,e ; CB E3
set 4,h ; CB E4
set 4,l ; CB E5
set 5,(hl) ; CB EE
set 5,(ix) ; DD CB 00 EE
set 5,(ix+127) ; DD CB 7F EE
set 5,(ix-128) ; DD CB 80 EE
set 5,(iy) ; FD CB 00 EE
set 5,(iy+127) ; FD CB 7F EE
set 5,(iy-128) ; FD CB 80 EE
set 5,a ; CB EF
set 5,b ; CB E8
set 5,c ; CB E9
set 5,d ; CB EA
set 5,e ; CB EB
set 5,h ; CB EC
set 5,l ; CB ED
set 6,(hl) ; CB F6
set 6,(ix) ; DD CB 00 F6
set 6,(ix+127) ; DD CB 7F F6
set 6,(ix-128) ; DD CB 80 F6
set 6,(iy) ; FD CB 00 F6
set 6,(iy+127) ; FD CB 7F F6
set 6,(iy-128) ; FD CB 80 F6
set 6,a ; CB F7
set 6,b ; CB F0
set 6,c ; CB F1
set 6,d ; CB F2
set 6,e ; CB F3
set 6,h ; CB F4
set 6,l ; CB F5
set 7,(hl) ; CB FE
set 7,(ix) ; DD CB 00 FE
set 7,(ix+127) ; DD CB 7F FE
set 7,(ix-128) ; DD CB 80 FE
set 7,(iy) ; FD CB 00 FE
set 7,(iy+127) ; FD CB 7F FE
set 7,(iy-128) ; FD CB 80 FE
set 7,a ; CB FF
set 7,b ; CB F8
set 7,c ; CB F9
set 7,d ; CB FA
set 7,e ; CB FB
set 7,h ; CB FC
set 7,l ; CB FD
sla (hl) ; CB 26
sla (ix) ; DD CB 00 26
sla (ix+127) ; DD CB 7F 26
sla (ix-128) ; DD CB 80 26
sla (iy) ; FD CB 00 26
sla (iy+127) ; FD CB 7F 26
sla (iy-128) ; FD CB 80 26
sla a ; CB 27
sla b ; CB 20
sla c ; CB 21
sla d ; CB 22
sla e ; CB 23
sla h ; CB 24
sla l ; CB 25
sli (hl) ; CB 36
sli (ix) ; DD CB 00 36
sli (ix+127) ; DD CB 7F 36
sli (ix-128) ; DD CB 80 36
sli (iy) ; FD CB 00 36
sli (iy+127) ; FD CB 7F 36
sli (iy-128) ; FD CB 80 36
sli a ; CB 37
sli b ; CB 30
sli c ; CB 31
sli d ; CB 32
sli e ; CB 33
sli h ; CB 34
sli l ; CB 35
sll (hl) ; CB 36
sll (ix) ; DD CB 00 36
sll (ix+127) ; DD CB 7F 36
sll (ix-128) ; DD CB 80 36
sll (iy) ; FD CB 00 36
sll (iy+127) ; FD CB 7F 36
sll (iy-128) ; FD CB 80 36
sll a ; CB 37
sll b ; CB 30
sll c ; CB 31
sll d ; CB 32
sll e ; CB 33
sll h ; CB 34
sll l ; CB 35
slp ; ED 76
sra (hl) ; CB 2E
sra (ix) ; DD CB 00 2E
sra (ix+127) ; DD CB 7F 2E
sra (ix-128) ; DD CB 80 2E
sra (iy) ; FD CB 00 2E
sra (iy+127) ; FD CB 7F 2E
sra (iy-128) ; FD CB 80 2E
sra a ; CB 2F
sra b ; CB 28
sra c ; CB 29
sra d ; CB 2A
sra e ; CB 2B
sra h ; CB 2C
sra l ; CB 2D
srl (hl) ; CB 3E
srl (ix) ; DD CB 00 3E
srl (ix+127) ; DD CB 7F 3E
srl (ix-128) ; DD CB 80 3E
srl (iy) ; FD CB 00 3E
srl (iy+127) ; FD CB 7F 3E
srl (iy-128) ; FD CB 80 3E
srl a ; CB 3F
srl b ; CB 38
srl c ; CB 39
srl d ; CB 3A
srl e ; CB 3B
srl h ; CB 3C
srl l ; CB 3D
sub (hl) ; 96
sub (ix) ; DD 96 00
sub (ix+127) ; DD 96 7F
sub (ix-128) ; DD 96 80
sub (iy) ; FD 96 00
sub (iy+127) ; FD 96 7F
sub (iy-128) ; FD 96 80
sub -128 ; D6 80
sub 127 ; D6 7F
sub 255 ; D6 FF
sub a ; 97
sub a,(hl) ; 96
sub a,(ix) ; DD 96 00
sub a,(ix+127) ; DD 96 7F
sub a,(ix-128) ; DD 96 80
sub a,(iy) ; FD 96 00
sub a,(iy+127) ; FD 96 7F
sub a,(iy-128) ; FD 96 80
sub a,-128 ; D6 80
sub a,127 ; D6 7F
sub a,255 ; D6 FF
sub a,a ; 97
sub a,b ; 90
sub a,c ; 91
sub a,d ; 92
sub a,e ; 93
sub a,h ; 94
sub a,l ; 95
sub b ; 90
sub c ; 91
sub d ; 92
sub e ; 93
sub h ; 94
sub l ; 95
tst (hl) ; ED 34
tst -128 ; ED 64 80
tst 127 ; ED 64 7F
tst 255 ; ED 64 FF
tst a ; ED 3C
tst a,(hl) ; ED 34
tst a,-128 ; ED 64 80
tst a,127 ; ED 64 7F
tst a,255 ; ED 64 FF
tst a,a ; ED 3C
tst a,b ; ED 04
tst a,c ; ED 0C
tst a,d ; ED 14
tst a,e ; ED 1C
tst a,h ; ED 24
tst a,l ; ED 2C
tst b ; ED 04
tst c ; ED 0C
tst d ; ED 14
tst e ; ED 1C
tst h ; ED 24
tst l ; ED 2C
tstio -128 ; ED 74 80
tstio 127 ; ED 74 7F
tstio 255 ; ED 74 FF
xor (hl) ; AE
xor (ix) ; DD AE 00
xor (ix+127) ; DD AE 7F
xor (ix-128) ; DD AE 80
xor (iy) ; FD AE 00
xor (iy+127) ; FD AE 7F
xor (iy-128) ; FD AE 80
xor -128 ; EE 80
xor 127 ; EE 7F
xor 255 ; EE FF
xor a ; AF
xor a,(hl) ; AE
xor a,(ix) ; DD AE 00
xor a,(ix+127) ; DD AE 7F
xor a,(ix-128) ; DD AE 80
xor a,(iy) ; FD AE 00
xor a,(iy+127) ; FD AE 7F
xor a,(iy-128) ; FD AE 80
xor a,-128 ; EE 80
xor a,127 ; EE 7F
xor a,255 ; EE FF
xor a,a ; AF
xor a,b ; A8
xor a,c ; A9
xor a,d ; AA
xor a,e ; AB
xor a,h ; AC
xor a,l ; AD
xor b ; A8
xor c ; A9
xor d ; AA
xor e ; AB
xor h ; AC
xor l ; AD
|
_ls: file format elf32-i386
Disassembly of section .text:
00000000 <main>:
close(fd);
}
int
main(int argc, char *argv[])
{
0: 8d 4c 24 04 lea 0x4(%esp),%ecx
4: 83 e4 f0 and $0xfffffff0,%esp
7: ff 71 fc pushl -0x4(%ecx)
a: 55 push %ebp
b: 89 e5 mov %esp,%ebp
d: 56 push %esi
e: 53 push %ebx
f: 51 push %ecx
10: 83 ec 0c sub $0xc,%esp
13: 8b 01 mov (%ecx),%eax
15: 8b 51 04 mov 0x4(%ecx),%edx
int i;
if(argc < 2){
18: 83 f8 01 cmp $0x1,%eax
1b: 7e 24 jle 41 <main+0x41>
1d: 8d 5a 04 lea 0x4(%edx),%ebx
20: 8d 34 82 lea (%edx,%eax,4),%esi
23: 90 nop
24: 8d 74 26 00 lea 0x0(%esi,%eiz,1),%esi
ls(".");
exit();
}
for(i=1; i<argc; i++)
ls(argv[i]);
28: 83 ec 0c sub $0xc,%esp
2b: ff 33 pushl (%ebx)
2d: 83 c3 04 add $0x4,%ebx
30: e8 cb 00 00 00 call 100 <ls>
for(i=1; i<argc; i++)
35: 83 c4 10 add $0x10,%esp
38: 39 f3 cmp %esi,%ebx
3a: 75 ec jne 28 <main+0x28>
exit();
3c: e8 41 05 00 00 call 582 <exit>
ls(".");
41: 83 ec 0c sub $0xc,%esp
44: 68 90 0a 00 00 push $0xa90
49: e8 b2 00 00 00 call 100 <ls>
exit();
4e: e8 2f 05 00 00 call 582 <exit>
53: 66 90 xchg %ax,%ax
55: 66 90 xchg %ax,%ax
57: 66 90 xchg %ax,%ax
59: 66 90 xchg %ax,%ax
5b: 66 90 xchg %ax,%ax
5d: 66 90 xchg %ax,%ax
5f: 90 nop
00000060 <fmtname>:
{
60: 55 push %ebp
61: 89 e5 mov %esp,%ebp
63: 56 push %esi
64: 53 push %ebx
65: 8b 5d 08 mov 0x8(%ebp),%ebx
for(p=path+strlen(path); p >= path && *p != '/'; p--)
68: 83 ec 0c sub $0xc,%esp
6b: 53 push %ebx
6c: e8 3f 03 00 00 call 3b0 <strlen>
71: 83 c4 10 add $0x10,%esp
74: 01 d8 add %ebx,%eax
76: 73 0f jae 87 <fmtname+0x27>
78: eb 12 jmp 8c <fmtname+0x2c>
7a: 8d b6 00 00 00 00 lea 0x0(%esi),%esi
80: 83 e8 01 sub $0x1,%eax
83: 39 c3 cmp %eax,%ebx
85: 77 05 ja 8c <fmtname+0x2c>
87: 80 38 2f cmpb $0x2f,(%eax)
8a: 75 f4 jne 80 <fmtname+0x20>
p++;
8c: 8d 58 01 lea 0x1(%eax),%ebx
if(strlen(p) >= DIRSIZ)
8f: 83 ec 0c sub $0xc,%esp
92: 53 push %ebx
93: e8 18 03 00 00 call 3b0 <strlen>
98: 83 c4 10 add $0x10,%esp
9b: 83 f8 0d cmp $0xd,%eax
9e: 77 4a ja ea <fmtname+0x8a>
memmove(buf, p, strlen(p));
a0: 83 ec 0c sub $0xc,%esp
a3: 53 push %ebx
a4: e8 07 03 00 00 call 3b0 <strlen>
a9: 83 c4 0c add $0xc,%esp
ac: 50 push %eax
ad: 53 push %ebx
ae: 68 bc 0d 00 00 push $0xdbc
b3: e8 98 04 00 00 call 550 <memmove>
memset(buf+strlen(p), ' ', DIRSIZ-strlen(p));
b8: 89 1c 24 mov %ebx,(%esp)
bb: e8 f0 02 00 00 call 3b0 <strlen>
c0: 89 1c 24 mov %ebx,(%esp)
c3: 89 c6 mov %eax,%esi
return buf;
c5: bb bc 0d 00 00 mov $0xdbc,%ebx
memset(buf+strlen(p), ' ', DIRSIZ-strlen(p));
ca: e8 e1 02 00 00 call 3b0 <strlen>
cf: ba 0e 00 00 00 mov $0xe,%edx
d4: 83 c4 0c add $0xc,%esp
d7: 05 bc 0d 00 00 add $0xdbc,%eax
dc: 29 f2 sub %esi,%edx
de: 52 push %edx
df: 6a 20 push $0x20
e1: 50 push %eax
e2: e8 f9 02 00 00 call 3e0 <memset>
return buf;
e7: 83 c4 10 add $0x10,%esp
}
ea: 8d 65 f8 lea -0x8(%ebp),%esp
ed: 89 d8 mov %ebx,%eax
ef: 5b pop %ebx
f0: 5e pop %esi
f1: 5d pop %ebp
f2: c3 ret
f3: 8d b6 00 00 00 00 lea 0x0(%esi),%esi
f9: 8d bc 27 00 00 00 00 lea 0x0(%edi,%eiz,1),%edi
00000100 <ls>:
{
100: 55 push %ebp
101: 89 e5 mov %esp,%ebp
103: 57 push %edi
104: 56 push %esi
105: 53 push %ebx
106: 81 ec 64 02 00 00 sub $0x264,%esp
10c: 8b 7d 08 mov 0x8(%ebp),%edi
if((fd = open(path, 0)) < 0){
10f: 6a 00 push $0x0
111: 57 push %edi
112: e8 ab 04 00 00 call 5c2 <open>
117: 83 c4 10 add $0x10,%esp
11a: 85 c0 test %eax,%eax
11c: 78 52 js 170 <ls+0x70>
if(fstat(fd, &st) < 0){
11e: 8d b5 d4 fd ff ff lea -0x22c(%ebp),%esi
124: 83 ec 08 sub $0x8,%esp
127: 89 c3 mov %eax,%ebx
129: 56 push %esi
12a: 50 push %eax
12b: e8 aa 04 00 00 call 5da <fstat>
130: 83 c4 10 add $0x10,%esp
133: 85 c0 test %eax,%eax
135: 0f 88 c5 00 00 00 js 200 <ls+0x100>
switch(st.type){
13b: 0f b7 85 d4 fd ff ff movzwl -0x22c(%ebp),%eax
142: 66 83 f8 01 cmp $0x1,%ax
146: 0f 84 84 00 00 00 je 1d0 <ls+0xd0>
14c: 66 83 f8 02 cmp $0x2,%ax
150: 74 3e je 190 <ls+0x90>
close(fd);
152: 83 ec 0c sub $0xc,%esp
155: 53 push %ebx
156: e8 4f 04 00 00 call 5aa <close>
15b: 83 c4 10 add $0x10,%esp
}
15e: 8d 65 f4 lea -0xc(%ebp),%esp
161: 5b pop %ebx
162: 5e pop %esi
163: 5f pop %edi
164: 5d pop %ebp
165: c3 ret
166: 8d 76 00 lea 0x0(%esi),%esi
169: 8d bc 27 00 00 00 00 lea 0x0(%edi,%eiz,1),%edi
printf(2, "ls: cannot open %s\n", path);
170: 83 ec 04 sub $0x4,%esp
173: 57 push %edi
174: 68 48 0a 00 00 push $0xa48
179: 6a 02 push $0x2
17b: e8 70 05 00 00 call 6f0 <printf>
return;
180: 83 c4 10 add $0x10,%esp
}
183: 8d 65 f4 lea -0xc(%ebp),%esp
186: 5b pop %ebx
187: 5e pop %esi
188: 5f pop %edi
189: 5d pop %ebp
18a: c3 ret
18b: 90 nop
18c: 8d 74 26 00 lea 0x0(%esi,%eiz,1),%esi
printf(1, "%s %d %d %d\n", fmtname(path), st.type, st.ino, st.size);
190: 83 ec 0c sub $0xc,%esp
193: 8b 95 e4 fd ff ff mov -0x21c(%ebp),%edx
199: 8b b5 dc fd ff ff mov -0x224(%ebp),%esi
19f: 57 push %edi
1a0: 89 95 b4 fd ff ff mov %edx,-0x24c(%ebp)
1a6: e8 b5 fe ff ff call 60 <fmtname>
1ab: 8b 95 b4 fd ff ff mov -0x24c(%ebp),%edx
1b1: 59 pop %ecx
1b2: 5f pop %edi
1b3: 52 push %edx
1b4: 56 push %esi
1b5: 6a 02 push $0x2
1b7: 50 push %eax
1b8: 68 70 0a 00 00 push $0xa70
1bd: 6a 01 push $0x1
1bf: e8 2c 05 00 00 call 6f0 <printf>
break;
1c4: 83 c4 20 add $0x20,%esp
1c7: eb 89 jmp 152 <ls+0x52>
1c9: 8d b4 26 00 00 00 00 lea 0x0(%esi,%eiz,1),%esi
if(strlen(path) + 1 + DIRSIZ + 1 > sizeof buf){
1d0: 83 ec 0c sub $0xc,%esp
1d3: 57 push %edi
1d4: e8 d7 01 00 00 call 3b0 <strlen>
1d9: 83 c0 10 add $0x10,%eax
1dc: 83 c4 10 add $0x10,%esp
1df: 3d 00 02 00 00 cmp $0x200,%eax
1e4: 76 42 jbe 228 <ls+0x128>
printf(1, "ls: path too long\n");
1e6: 83 ec 08 sub $0x8,%esp
1e9: 68 7d 0a 00 00 push $0xa7d
1ee: 6a 01 push $0x1
1f0: e8 fb 04 00 00 call 6f0 <printf>
break;
1f5: 83 c4 10 add $0x10,%esp
1f8: e9 55 ff ff ff jmp 152 <ls+0x52>
1fd: 8d 76 00 lea 0x0(%esi),%esi
printf(2, "ls: cannot stat %s\n", path);
200: 83 ec 04 sub $0x4,%esp
203: 57 push %edi
204: 68 5c 0a 00 00 push $0xa5c
209: 6a 02 push $0x2
20b: e8 e0 04 00 00 call 6f0 <printf>
close(fd);
210: 89 1c 24 mov %ebx,(%esp)
213: e8 92 03 00 00 call 5aa <close>
return;
218: 83 c4 10 add $0x10,%esp
}
21b: 8d 65 f4 lea -0xc(%ebp),%esp
21e: 5b pop %ebx
21f: 5e pop %esi
220: 5f pop %edi
221: 5d pop %ebp
222: c3 ret
223: 90 nop
224: 8d 74 26 00 lea 0x0(%esi,%eiz,1),%esi
strcpy(buf, path);
228: 83 ec 08 sub $0x8,%esp
22b: 57 push %edi
22c: 8d bd e8 fd ff ff lea -0x218(%ebp),%edi
232: 57 push %edi
233: e8 f8 00 00 00 call 330 <strcpy>
p = buf+strlen(buf);
238: 89 3c 24 mov %edi,(%esp)
23b: e8 70 01 00 00 call 3b0 <strlen>
240: 01 f8 add %edi,%eax
while(read(fd, &de, sizeof(de)) == sizeof(de)){
242: 83 c4 10 add $0x10,%esp
*p++ = '/';
245: 8d 48 01 lea 0x1(%eax),%ecx
p = buf+strlen(buf);
248: 89 85 a8 fd ff ff mov %eax,-0x258(%ebp)
*p++ = '/';
24e: c6 00 2f movb $0x2f,(%eax)
251: 89 8d a4 fd ff ff mov %ecx,-0x25c(%ebp)
257: 89 f6 mov %esi,%esi
259: 8d bc 27 00 00 00 00 lea 0x0(%edi,%eiz,1),%edi
while(read(fd, &de, sizeof(de)) == sizeof(de)){
260: 8d 85 c4 fd ff ff lea -0x23c(%ebp),%eax
266: 83 ec 04 sub $0x4,%esp
269: 6a 10 push $0x10
26b: 50 push %eax
26c: 53 push %ebx
26d: e8 28 03 00 00 call 59a <read>
272: 83 c4 10 add $0x10,%esp
275: 83 f8 10 cmp $0x10,%eax
278: 0f 85 d4 fe ff ff jne 152 <ls+0x52>
if(de.inum == 0)
27e: 66 83 bd c4 fd ff ff cmpw $0x0,-0x23c(%ebp)
285: 00
286: 74 d8 je 260 <ls+0x160>
memmove(p, de.name, DIRSIZ);
288: 8d 85 c6 fd ff ff lea -0x23a(%ebp),%eax
28e: 83 ec 04 sub $0x4,%esp
291: 6a 0e push $0xe
293: 50 push %eax
294: ff b5 a4 fd ff ff pushl -0x25c(%ebp)
29a: e8 b1 02 00 00 call 550 <memmove>
p[DIRSIZ] = 0;
29f: 8b 85 a8 fd ff ff mov -0x258(%ebp),%eax
2a5: c6 40 0f 00 movb $0x0,0xf(%eax)
if(stat(buf, &st) < 0){
2a9: 58 pop %eax
2aa: 5a pop %edx
2ab: 56 push %esi
2ac: 57 push %edi
2ad: e8 0e 02 00 00 call 4c0 <stat>
2b2: 83 c4 10 add $0x10,%esp
2b5: 85 c0 test %eax,%eax
2b7: 78 5f js 318 <ls+0x218>
printf(1, "%s %d %d %d\n", fmtname(buf), st.type, st.ino, st.size);
2b9: 0f bf 85 d4 fd ff ff movswl -0x22c(%ebp),%eax
2c0: 83 ec 0c sub $0xc,%esp
2c3: 8b 8d e4 fd ff ff mov -0x21c(%ebp),%ecx
2c9: 8b 95 dc fd ff ff mov -0x224(%ebp),%edx
2cf: 57 push %edi
2d0: 89 8d ac fd ff ff mov %ecx,-0x254(%ebp)
2d6: 89 95 b0 fd ff ff mov %edx,-0x250(%ebp)
2dc: 89 85 b4 fd ff ff mov %eax,-0x24c(%ebp)
2e2: e8 79 fd ff ff call 60 <fmtname>
2e7: 5a pop %edx
2e8: 8b 95 b0 fd ff ff mov -0x250(%ebp),%edx
2ee: 59 pop %ecx
2ef: 8b 8d ac fd ff ff mov -0x254(%ebp),%ecx
2f5: 51 push %ecx
2f6: 52 push %edx
2f7: ff b5 b4 fd ff ff pushl -0x24c(%ebp)
2fd: 50 push %eax
2fe: 68 70 0a 00 00 push $0xa70
303: 6a 01 push $0x1
305: e8 e6 03 00 00 call 6f0 <printf>
30a: 83 c4 20 add $0x20,%esp
30d: e9 4e ff ff ff jmp 260 <ls+0x160>
312: 8d b6 00 00 00 00 lea 0x0(%esi),%esi
printf(1, "ls: cannot stat %s\n", buf);
318: 83 ec 04 sub $0x4,%esp
31b: 57 push %edi
31c: 68 5c 0a 00 00 push $0xa5c
321: 6a 01 push $0x1
323: e8 c8 03 00 00 call 6f0 <printf>
continue;
328: 83 c4 10 add $0x10,%esp
32b: e9 30 ff ff ff jmp 260 <ls+0x160>
00000330 <strcpy>:
#include "user.h"
#include "x86.h"
char*
strcpy(char *s, const char *t)
{
330: 55 push %ebp
331: 89 e5 mov %esp,%ebp
333: 53 push %ebx
334: 8b 45 08 mov 0x8(%ebp),%eax
337: 8b 4d 0c mov 0xc(%ebp),%ecx
char *os;
os = s;
while((*s++ = *t++) != 0)
33a: 89 c2 mov %eax,%edx
33c: 8d 74 26 00 lea 0x0(%esi,%eiz,1),%esi
340: 83 c1 01 add $0x1,%ecx
343: 0f b6 59 ff movzbl -0x1(%ecx),%ebx
347: 83 c2 01 add $0x1,%edx
34a: 84 db test %bl,%bl
34c: 88 5a ff mov %bl,-0x1(%edx)
34f: 75 ef jne 340 <strcpy+0x10>
;
return os;
}
351: 5b pop %ebx
352: 5d pop %ebp
353: c3 ret
354: 8d b6 00 00 00 00 lea 0x0(%esi),%esi
35a: 8d bf 00 00 00 00 lea 0x0(%edi),%edi
00000360 <strcmp>:
int
strcmp(const char *p, const char *q)
{
360: 55 push %ebp
361: 89 e5 mov %esp,%ebp
363: 53 push %ebx
364: 8b 55 08 mov 0x8(%ebp),%edx
367: 8b 4d 0c mov 0xc(%ebp),%ecx
while(*p && *p == *q)
36a: 0f b6 02 movzbl (%edx),%eax
36d: 0f b6 19 movzbl (%ecx),%ebx
370: 84 c0 test %al,%al
372: 75 1c jne 390 <strcmp+0x30>
374: eb 2a jmp 3a0 <strcmp+0x40>
376: 8d 76 00 lea 0x0(%esi),%esi
379: 8d bc 27 00 00 00 00 lea 0x0(%edi,%eiz,1),%edi
p++, q++;
380: 83 c2 01 add $0x1,%edx
while(*p && *p == *q)
383: 0f b6 02 movzbl (%edx),%eax
p++, q++;
386: 83 c1 01 add $0x1,%ecx
389: 0f b6 19 movzbl (%ecx),%ebx
while(*p && *p == *q)
38c: 84 c0 test %al,%al
38e: 74 10 je 3a0 <strcmp+0x40>
390: 38 d8 cmp %bl,%al
392: 74 ec je 380 <strcmp+0x20>
return (uchar)*p - (uchar)*q;
394: 29 d8 sub %ebx,%eax
}
396: 5b pop %ebx
397: 5d pop %ebp
398: c3 ret
399: 8d b4 26 00 00 00 00 lea 0x0(%esi,%eiz,1),%esi
3a0: 31 c0 xor %eax,%eax
return (uchar)*p - (uchar)*q;
3a2: 29 d8 sub %ebx,%eax
}
3a4: 5b pop %ebx
3a5: 5d pop %ebp
3a6: c3 ret
3a7: 89 f6 mov %esi,%esi
3a9: 8d bc 27 00 00 00 00 lea 0x0(%edi,%eiz,1),%edi
000003b0 <strlen>:
uint
strlen(const char *s)
{
3b0: 55 push %ebp
3b1: 89 e5 mov %esp,%ebp
3b3: 8b 4d 08 mov 0x8(%ebp),%ecx
int n;
for(n = 0; s[n]; n++)
3b6: 80 39 00 cmpb $0x0,(%ecx)
3b9: 74 15 je 3d0 <strlen+0x20>
3bb: 31 d2 xor %edx,%edx
3bd: 8d 76 00 lea 0x0(%esi),%esi
3c0: 83 c2 01 add $0x1,%edx
3c3: 80 3c 11 00 cmpb $0x0,(%ecx,%edx,1)
3c7: 89 d0 mov %edx,%eax
3c9: 75 f5 jne 3c0 <strlen+0x10>
;
return n;
}
3cb: 5d pop %ebp
3cc: c3 ret
3cd: 8d 76 00 lea 0x0(%esi),%esi
for(n = 0; s[n]; n++)
3d0: 31 c0 xor %eax,%eax
}
3d2: 5d pop %ebp
3d3: c3 ret
3d4: 8d b6 00 00 00 00 lea 0x0(%esi),%esi
3da: 8d bf 00 00 00 00 lea 0x0(%edi),%edi
000003e0 <memset>:
void*
memset(void *dst, int c, uint n)
{
3e0: 55 push %ebp
3e1: 89 e5 mov %esp,%ebp
3e3: 57 push %edi
3e4: 8b 55 08 mov 0x8(%ebp),%edx
}
static inline void
stosb(void *addr, int data, int cnt)
{
asm volatile("cld; rep stosb" :
3e7: 8b 4d 10 mov 0x10(%ebp),%ecx
3ea: 8b 45 0c mov 0xc(%ebp),%eax
3ed: 89 d7 mov %edx,%edi
3ef: fc cld
3f0: f3 aa rep stos %al,%es:(%edi)
stosb(dst, c, n);
return dst;
}
3f2: 89 d0 mov %edx,%eax
3f4: 5f pop %edi
3f5: 5d pop %ebp
3f6: c3 ret
3f7: 89 f6 mov %esi,%esi
3f9: 8d bc 27 00 00 00 00 lea 0x0(%edi,%eiz,1),%edi
00000400 <strchr>:
char*
strchr(const char *s, char c)
{
400: 55 push %ebp
401: 89 e5 mov %esp,%ebp
403: 53 push %ebx
404: 8b 45 08 mov 0x8(%ebp),%eax
407: 8b 5d 0c mov 0xc(%ebp),%ebx
for(; *s; s++)
40a: 0f b6 10 movzbl (%eax),%edx
40d: 84 d2 test %dl,%dl
40f: 74 1d je 42e <strchr+0x2e>
if(*s == c)
411: 38 d3 cmp %dl,%bl
413: 89 d9 mov %ebx,%ecx
415: 75 0d jne 424 <strchr+0x24>
417: eb 17 jmp 430 <strchr+0x30>
419: 8d b4 26 00 00 00 00 lea 0x0(%esi,%eiz,1),%esi
420: 38 ca cmp %cl,%dl
422: 74 0c je 430 <strchr+0x30>
for(; *s; s++)
424: 83 c0 01 add $0x1,%eax
427: 0f b6 10 movzbl (%eax),%edx
42a: 84 d2 test %dl,%dl
42c: 75 f2 jne 420 <strchr+0x20>
return (char*)s;
return 0;
42e: 31 c0 xor %eax,%eax
}
430: 5b pop %ebx
431: 5d pop %ebp
432: c3 ret
433: 8d b6 00 00 00 00 lea 0x0(%esi),%esi
439: 8d bc 27 00 00 00 00 lea 0x0(%edi,%eiz,1),%edi
00000440 <gets>:
char*
gets(char *buf, int max)
{
440: 55 push %ebp
441: 89 e5 mov %esp,%ebp
443: 57 push %edi
444: 56 push %esi
445: 53 push %ebx
int i, cc;
char c;
for(i=0; i+1 < max; ){
446: 31 f6 xor %esi,%esi
448: 89 f3 mov %esi,%ebx
{
44a: 83 ec 1c sub $0x1c,%esp
44d: 8b 7d 08 mov 0x8(%ebp),%edi
for(i=0; i+1 < max; ){
450: eb 2f jmp 481 <gets+0x41>
452: 8d b6 00 00 00 00 lea 0x0(%esi),%esi
cc = read(0, &c, 1);
458: 8d 45 e7 lea -0x19(%ebp),%eax
45b: 83 ec 04 sub $0x4,%esp
45e: 6a 01 push $0x1
460: 50 push %eax
461: 6a 00 push $0x0
463: e8 32 01 00 00 call 59a <read>
if(cc < 1)
468: 83 c4 10 add $0x10,%esp
46b: 85 c0 test %eax,%eax
46d: 7e 1c jle 48b <gets+0x4b>
break;
buf[i++] = c;
46f: 0f b6 45 e7 movzbl -0x19(%ebp),%eax
473: 83 c7 01 add $0x1,%edi
476: 88 47 ff mov %al,-0x1(%edi)
if(c == '\n' || c == '\r')
479: 3c 0a cmp $0xa,%al
47b: 74 23 je 4a0 <gets+0x60>
47d: 3c 0d cmp $0xd,%al
47f: 74 1f je 4a0 <gets+0x60>
for(i=0; i+1 < max; ){
481: 83 c3 01 add $0x1,%ebx
484: 3b 5d 0c cmp 0xc(%ebp),%ebx
487: 89 fe mov %edi,%esi
489: 7c cd jl 458 <gets+0x18>
48b: 89 f3 mov %esi,%ebx
break;
}
buf[i] = '\0';
return buf;
}
48d: 8b 45 08 mov 0x8(%ebp),%eax
buf[i] = '\0';
490: c6 03 00 movb $0x0,(%ebx)
}
493: 8d 65 f4 lea -0xc(%ebp),%esp
496: 5b pop %ebx
497: 5e pop %esi
498: 5f pop %edi
499: 5d pop %ebp
49a: c3 ret
49b: 90 nop
49c: 8d 74 26 00 lea 0x0(%esi,%eiz,1),%esi
4a0: 8b 75 08 mov 0x8(%ebp),%esi
4a3: 8b 45 08 mov 0x8(%ebp),%eax
4a6: 01 de add %ebx,%esi
4a8: 89 f3 mov %esi,%ebx
buf[i] = '\0';
4aa: c6 03 00 movb $0x0,(%ebx)
}
4ad: 8d 65 f4 lea -0xc(%ebp),%esp
4b0: 5b pop %ebx
4b1: 5e pop %esi
4b2: 5f pop %edi
4b3: 5d pop %ebp
4b4: c3 ret
4b5: 8d 74 26 00 lea 0x0(%esi,%eiz,1),%esi
4b9: 8d bc 27 00 00 00 00 lea 0x0(%edi,%eiz,1),%edi
000004c0 <stat>:
int
stat(const char *n, struct stat *st)
{
4c0: 55 push %ebp
4c1: 89 e5 mov %esp,%ebp
4c3: 56 push %esi
4c4: 53 push %ebx
int fd;
int r;
fd = open(n, O_RDONLY);
4c5: 83 ec 08 sub $0x8,%esp
4c8: 6a 00 push $0x0
4ca: ff 75 08 pushl 0x8(%ebp)
4cd: e8 f0 00 00 00 call 5c2 <open>
if(fd < 0)
4d2: 83 c4 10 add $0x10,%esp
4d5: 85 c0 test %eax,%eax
4d7: 78 27 js 500 <stat+0x40>
return -1;
r = fstat(fd, st);
4d9: 83 ec 08 sub $0x8,%esp
4dc: ff 75 0c pushl 0xc(%ebp)
4df: 89 c3 mov %eax,%ebx
4e1: 50 push %eax
4e2: e8 f3 00 00 00 call 5da <fstat>
close(fd);
4e7: 89 1c 24 mov %ebx,(%esp)
r = fstat(fd, st);
4ea: 89 c6 mov %eax,%esi
close(fd);
4ec: e8 b9 00 00 00 call 5aa <close>
return r;
4f1: 83 c4 10 add $0x10,%esp
}
4f4: 8d 65 f8 lea -0x8(%ebp),%esp
4f7: 89 f0 mov %esi,%eax
4f9: 5b pop %ebx
4fa: 5e pop %esi
4fb: 5d pop %ebp
4fc: c3 ret
4fd: 8d 76 00 lea 0x0(%esi),%esi
return -1;
500: be ff ff ff ff mov $0xffffffff,%esi
505: eb ed jmp 4f4 <stat+0x34>
507: 89 f6 mov %esi,%esi
509: 8d bc 27 00 00 00 00 lea 0x0(%edi,%eiz,1),%edi
00000510 <atoi>:
int
atoi(const char *s)
{
510: 55 push %ebp
511: 89 e5 mov %esp,%ebp
513: 53 push %ebx
514: 8b 4d 08 mov 0x8(%ebp),%ecx
int n;
n = 0;
while('0' <= *s && *s <= '9')
517: 0f be 11 movsbl (%ecx),%edx
51a: 8d 42 d0 lea -0x30(%edx),%eax
51d: 3c 09 cmp $0x9,%al
n = 0;
51f: b8 00 00 00 00 mov $0x0,%eax
while('0' <= *s && *s <= '9')
524: 77 1f ja 545 <atoi+0x35>
526: 8d 76 00 lea 0x0(%esi),%esi
529: 8d bc 27 00 00 00 00 lea 0x0(%edi,%eiz,1),%edi
n = n*10 + *s++ - '0';
530: 8d 04 80 lea (%eax,%eax,4),%eax
533: 83 c1 01 add $0x1,%ecx
536: 8d 44 42 d0 lea -0x30(%edx,%eax,2),%eax
while('0' <= *s && *s <= '9')
53a: 0f be 11 movsbl (%ecx),%edx
53d: 8d 5a d0 lea -0x30(%edx),%ebx
540: 80 fb 09 cmp $0x9,%bl
543: 76 eb jbe 530 <atoi+0x20>
return n;
}
545: 5b pop %ebx
546: 5d pop %ebp
547: c3 ret
548: 90 nop
549: 8d b4 26 00 00 00 00 lea 0x0(%esi,%eiz,1),%esi
00000550 <memmove>:
void*
memmove(void *vdst, const void *vsrc, int n)
{
550: 55 push %ebp
551: 89 e5 mov %esp,%ebp
553: 56 push %esi
554: 53 push %ebx
555: 8b 5d 10 mov 0x10(%ebp),%ebx
558: 8b 45 08 mov 0x8(%ebp),%eax
55b: 8b 75 0c mov 0xc(%ebp),%esi
char *dst;
const char *src;
dst = vdst;
src = vsrc;
while(n-- > 0)
55e: 85 db test %ebx,%ebx
560: 7e 14 jle 576 <memmove+0x26>
562: 31 d2 xor %edx,%edx
564: 8d 74 26 00 lea 0x0(%esi,%eiz,1),%esi
*dst++ = *src++;
568: 0f b6 0c 16 movzbl (%esi,%edx,1),%ecx
56c: 88 0c 10 mov %cl,(%eax,%edx,1)
56f: 83 c2 01 add $0x1,%edx
while(n-- > 0)
572: 39 d3 cmp %edx,%ebx
574: 75 f2 jne 568 <memmove+0x18>
return vdst;
}
576: 5b pop %ebx
577: 5e pop %esi
578: 5d pop %ebp
579: c3 ret
0000057a <fork>:
name: \
movl $SYS_ ## name, %eax; \
int $T_SYSCALL; \
ret
SYSCALL(fork)
57a: b8 01 00 00 00 mov $0x1,%eax
57f: cd 40 int $0x40
581: c3 ret
00000582 <exit>:
SYSCALL(exit)
582: b8 02 00 00 00 mov $0x2,%eax
587: cd 40 int $0x40
589: c3 ret
0000058a <wait>:
SYSCALL(wait)
58a: b8 03 00 00 00 mov $0x3,%eax
58f: cd 40 int $0x40
591: c3 ret
00000592 <pipe>:
SYSCALL(pipe)
592: b8 04 00 00 00 mov $0x4,%eax
597: cd 40 int $0x40
599: c3 ret
0000059a <read>:
SYSCALL(read)
59a: b8 05 00 00 00 mov $0x5,%eax
59f: cd 40 int $0x40
5a1: c3 ret
000005a2 <write>:
SYSCALL(write)
5a2: b8 10 00 00 00 mov $0x10,%eax
5a7: cd 40 int $0x40
5a9: c3 ret
000005aa <close>:
SYSCALL(close)
5aa: b8 15 00 00 00 mov $0x15,%eax
5af: cd 40 int $0x40
5b1: c3 ret
000005b2 <kill>:
SYSCALL(kill)
5b2: b8 06 00 00 00 mov $0x6,%eax
5b7: cd 40 int $0x40
5b9: c3 ret
000005ba <exec>:
SYSCALL(exec)
5ba: b8 07 00 00 00 mov $0x7,%eax
5bf: cd 40 int $0x40
5c1: c3 ret
000005c2 <open>:
SYSCALL(open)
5c2: b8 0f 00 00 00 mov $0xf,%eax
5c7: cd 40 int $0x40
5c9: c3 ret
000005ca <mknod>:
SYSCALL(mknod)
5ca: b8 11 00 00 00 mov $0x11,%eax
5cf: cd 40 int $0x40
5d1: c3 ret
000005d2 <unlink>:
SYSCALL(unlink)
5d2: b8 12 00 00 00 mov $0x12,%eax
5d7: cd 40 int $0x40
5d9: c3 ret
000005da <fstat>:
SYSCALL(fstat)
5da: b8 08 00 00 00 mov $0x8,%eax
5df: cd 40 int $0x40
5e1: c3 ret
000005e2 <link>:
SYSCALL(link)
5e2: b8 13 00 00 00 mov $0x13,%eax
5e7: cd 40 int $0x40
5e9: c3 ret
000005ea <mkdir>:
SYSCALL(mkdir)
5ea: b8 14 00 00 00 mov $0x14,%eax
5ef: cd 40 int $0x40
5f1: c3 ret
000005f2 <chdir>:
SYSCALL(chdir)
5f2: b8 09 00 00 00 mov $0x9,%eax
5f7: cd 40 int $0x40
5f9: c3 ret
000005fa <dup>:
SYSCALL(dup)
5fa: b8 0a 00 00 00 mov $0xa,%eax
5ff: cd 40 int $0x40
601: c3 ret
00000602 <getpid>:
SYSCALL(getpid)
602: b8 0b 00 00 00 mov $0xb,%eax
607: cd 40 int $0x40
609: c3 ret
0000060a <sbrk>:
SYSCALL(sbrk)
60a: b8 0c 00 00 00 mov $0xc,%eax
60f: cd 40 int $0x40
611: c3 ret
00000612 <sleep>:
SYSCALL(sleep)
612: b8 0d 00 00 00 mov $0xd,%eax
617: cd 40 int $0x40
619: c3 ret
0000061a <uptime>:
SYSCALL(uptime)
61a: b8 0e 00 00 00 mov $0xe,%eax
61f: cd 40 int $0x40
621: c3 ret
00000622 <getyear>:
SYSCALL(getyear)
622: b8 16 00 00 00 mov $0x16,%eax
627: cd 40 int $0x40
629: c3 ret
0000062a <runtime>:
SYSCALL(runtime)
62a: b8 17 00 00 00 mov $0x17,%eax
62f: cd 40 int $0x40
631: c3 ret
00000632 <waittime>:
SYSCALL(waittime)
632: b8 18 00 00 00 mov $0x18,%eax
637: cd 40 int $0x40
639: c3 ret
0000063a <turntime>:
SYSCALL(turntime)
63a: b8 19 00 00 00 mov $0x19,%eax
63f: cd 40 int $0x40
641: c3 ret
642: 66 90 xchg %ax,%ax
644: 66 90 xchg %ax,%ax
646: 66 90 xchg %ax,%ax
648: 66 90 xchg %ax,%ax
64a: 66 90 xchg %ax,%ax
64c: 66 90 xchg %ax,%ax
64e: 66 90 xchg %ax,%ax
00000650 <printint>:
write(fd, &c, 1);
}
static void
printint(int fd, int xx, int base, int sgn)
{
650: 55 push %ebp
651: 89 e5 mov %esp,%ebp
653: 57 push %edi
654: 56 push %esi
655: 53 push %ebx
656: 83 ec 3c sub $0x3c,%esp
char buf[16];
int i, neg;
uint x;
neg = 0;
if(sgn && xx < 0){
659: 85 d2 test %edx,%edx
{
65b: 89 45 c0 mov %eax,-0x40(%ebp)
neg = 1;
x = -xx;
65e: 89 d0 mov %edx,%eax
if(sgn && xx < 0){
660: 79 76 jns 6d8 <printint+0x88>
662: f6 45 08 01 testb $0x1,0x8(%ebp)
666: 74 70 je 6d8 <printint+0x88>
x = -xx;
668: f7 d8 neg %eax
neg = 1;
66a: c7 45 c4 01 00 00 00 movl $0x1,-0x3c(%ebp)
} else {
x = xx;
}
i = 0;
671: 31 f6 xor %esi,%esi
673: 8d 5d d7 lea -0x29(%ebp),%ebx
676: eb 0a jmp 682 <printint+0x32>
678: 90 nop
679: 8d b4 26 00 00 00 00 lea 0x0(%esi,%eiz,1),%esi
do{
buf[i++] = digits[x % base];
680: 89 fe mov %edi,%esi
682: 31 d2 xor %edx,%edx
684: 8d 7e 01 lea 0x1(%esi),%edi
687: f7 f1 div %ecx
689: 0f b6 92 9c 0a 00 00 movzbl 0xa9c(%edx),%edx
}while((x /= base) != 0);
690: 85 c0 test %eax,%eax
buf[i++] = digits[x % base];
692: 88 14 3b mov %dl,(%ebx,%edi,1)
}while((x /= base) != 0);
695: 75 e9 jne 680 <printint+0x30>
if(neg)
697: 8b 45 c4 mov -0x3c(%ebp),%eax
69a: 85 c0 test %eax,%eax
69c: 74 08 je 6a6 <printint+0x56>
buf[i++] = '-';
69e: c6 44 3d d8 2d movb $0x2d,-0x28(%ebp,%edi,1)
6a3: 8d 7e 02 lea 0x2(%esi),%edi
6a6: 8d 74 3d d7 lea -0x29(%ebp,%edi,1),%esi
6aa: 8b 7d c0 mov -0x40(%ebp),%edi
6ad: 8d 76 00 lea 0x0(%esi),%esi
6b0: 0f b6 06 movzbl (%esi),%eax
write(fd, &c, 1);
6b3: 83 ec 04 sub $0x4,%esp
6b6: 83 ee 01 sub $0x1,%esi
6b9: 6a 01 push $0x1
6bb: 53 push %ebx
6bc: 57 push %edi
6bd: 88 45 d7 mov %al,-0x29(%ebp)
6c0: e8 dd fe ff ff call 5a2 <write>
while(--i >= 0)
6c5: 83 c4 10 add $0x10,%esp
6c8: 39 de cmp %ebx,%esi
6ca: 75 e4 jne 6b0 <printint+0x60>
putc(fd, buf[i]);
}
6cc: 8d 65 f4 lea -0xc(%ebp),%esp
6cf: 5b pop %ebx
6d0: 5e pop %esi
6d1: 5f pop %edi
6d2: 5d pop %ebp
6d3: c3 ret
6d4: 8d 74 26 00 lea 0x0(%esi,%eiz,1),%esi
neg = 0;
6d8: c7 45 c4 00 00 00 00 movl $0x0,-0x3c(%ebp)
6df: eb 90 jmp 671 <printint+0x21>
6e1: eb 0d jmp 6f0 <printf>
6e3: 90 nop
6e4: 90 nop
6e5: 90 nop
6e6: 90 nop
6e7: 90 nop
6e8: 90 nop
6e9: 90 nop
6ea: 90 nop
6eb: 90 nop
6ec: 90 nop
6ed: 90 nop
6ee: 90 nop
6ef: 90 nop
000006f0 <printf>:
// Print to the given fd. Only understands %d, %x, %p, %s.
void
printf(int fd, const char *fmt, ...)
{
6f0: 55 push %ebp
6f1: 89 e5 mov %esp,%ebp
6f3: 57 push %edi
6f4: 56 push %esi
6f5: 53 push %ebx
6f6: 83 ec 2c sub $0x2c,%esp
int c, i, state;
uint *ap;
state = 0;
ap = (uint*)(void*)&fmt + 1;
for(i = 0; fmt[i]; i++){
6f9: 8b 75 0c mov 0xc(%ebp),%esi
6fc: 0f b6 1e movzbl (%esi),%ebx
6ff: 84 db test %bl,%bl
701: 0f 84 b3 00 00 00 je 7ba <printf+0xca>
ap = (uint*)(void*)&fmt + 1;
707: 8d 45 10 lea 0x10(%ebp),%eax
70a: 83 c6 01 add $0x1,%esi
state = 0;
70d: 31 ff xor %edi,%edi
ap = (uint*)(void*)&fmt + 1;
70f: 89 45 d4 mov %eax,-0x2c(%ebp)
712: eb 2f jmp 743 <printf+0x53>
714: 8d 74 26 00 lea 0x0(%esi,%eiz,1),%esi
c = fmt[i] & 0xff;
if(state == 0){
if(c == '%'){
718: 83 f8 25 cmp $0x25,%eax
71b: 0f 84 a7 00 00 00 je 7c8 <printf+0xd8>
write(fd, &c, 1);
721: 8d 45 e2 lea -0x1e(%ebp),%eax
724: 83 ec 04 sub $0x4,%esp
727: 88 5d e2 mov %bl,-0x1e(%ebp)
72a: 6a 01 push $0x1
72c: 50 push %eax
72d: ff 75 08 pushl 0x8(%ebp)
730: e8 6d fe ff ff call 5a2 <write>
735: 83 c4 10 add $0x10,%esp
738: 83 c6 01 add $0x1,%esi
for(i = 0; fmt[i]; i++){
73b: 0f b6 5e ff movzbl -0x1(%esi),%ebx
73f: 84 db test %bl,%bl
741: 74 77 je 7ba <printf+0xca>
if(state == 0){
743: 85 ff test %edi,%edi
c = fmt[i] & 0xff;
745: 0f be cb movsbl %bl,%ecx
748: 0f b6 c3 movzbl %bl,%eax
if(state == 0){
74b: 74 cb je 718 <printf+0x28>
state = '%';
} else {
putc(fd, c);
}
} else if(state == '%'){
74d: 83 ff 25 cmp $0x25,%edi
750: 75 e6 jne 738 <printf+0x48>
if(c == 'd'){
752: 83 f8 64 cmp $0x64,%eax
755: 0f 84 05 01 00 00 je 860 <printf+0x170>
printint(fd, *ap, 10, 1);
ap++;
} else if(c == 'x' || c == 'p'){
75b: 81 e1 f7 00 00 00 and $0xf7,%ecx
761: 83 f9 70 cmp $0x70,%ecx
764: 74 72 je 7d8 <printf+0xe8>
printint(fd, *ap, 16, 0);
ap++;
} else if(c == 's'){
766: 83 f8 73 cmp $0x73,%eax
769: 0f 84 99 00 00 00 je 808 <printf+0x118>
s = "(null)";
while(*s != 0){
putc(fd, *s);
s++;
}
} else if(c == 'c'){
76f: 83 f8 63 cmp $0x63,%eax
772: 0f 84 08 01 00 00 je 880 <printf+0x190>
putc(fd, *ap);
ap++;
} else if(c == '%'){
778: 83 f8 25 cmp $0x25,%eax
77b: 0f 84 ef 00 00 00 je 870 <printf+0x180>
write(fd, &c, 1);
781: 8d 45 e7 lea -0x19(%ebp),%eax
784: 83 ec 04 sub $0x4,%esp
787: c6 45 e7 25 movb $0x25,-0x19(%ebp)
78b: 6a 01 push $0x1
78d: 50 push %eax
78e: ff 75 08 pushl 0x8(%ebp)
791: e8 0c fe ff ff call 5a2 <write>
796: 83 c4 0c add $0xc,%esp
799: 8d 45 e6 lea -0x1a(%ebp),%eax
79c: 88 5d e6 mov %bl,-0x1a(%ebp)
79f: 6a 01 push $0x1
7a1: 50 push %eax
7a2: ff 75 08 pushl 0x8(%ebp)
7a5: 83 c6 01 add $0x1,%esi
} else {
// Unknown % sequence. Print it to draw attention.
putc(fd, '%');
putc(fd, c);
}
state = 0;
7a8: 31 ff xor %edi,%edi
write(fd, &c, 1);
7aa: e8 f3 fd ff ff call 5a2 <write>
for(i = 0; fmt[i]; i++){
7af: 0f b6 5e ff movzbl -0x1(%esi),%ebx
write(fd, &c, 1);
7b3: 83 c4 10 add $0x10,%esp
for(i = 0; fmt[i]; i++){
7b6: 84 db test %bl,%bl
7b8: 75 89 jne 743 <printf+0x53>
}
}
}
7ba: 8d 65 f4 lea -0xc(%ebp),%esp
7bd: 5b pop %ebx
7be: 5e pop %esi
7bf: 5f pop %edi
7c0: 5d pop %ebp
7c1: c3 ret
7c2: 8d b6 00 00 00 00 lea 0x0(%esi),%esi
state = '%';
7c8: bf 25 00 00 00 mov $0x25,%edi
7cd: e9 66 ff ff ff jmp 738 <printf+0x48>
7d2: 8d b6 00 00 00 00 lea 0x0(%esi),%esi
printint(fd, *ap, 16, 0);
7d8: 83 ec 0c sub $0xc,%esp
7db: b9 10 00 00 00 mov $0x10,%ecx
7e0: 6a 00 push $0x0
7e2: 8b 7d d4 mov -0x2c(%ebp),%edi
7e5: 8b 45 08 mov 0x8(%ebp),%eax
7e8: 8b 17 mov (%edi),%edx
7ea: e8 61 fe ff ff call 650 <printint>
ap++;
7ef: 89 f8 mov %edi,%eax
7f1: 83 c4 10 add $0x10,%esp
state = 0;
7f4: 31 ff xor %edi,%edi
ap++;
7f6: 83 c0 04 add $0x4,%eax
7f9: 89 45 d4 mov %eax,-0x2c(%ebp)
7fc: e9 37 ff ff ff jmp 738 <printf+0x48>
801: 8d b4 26 00 00 00 00 lea 0x0(%esi,%eiz,1),%esi
s = (char*)*ap;
808: 8b 45 d4 mov -0x2c(%ebp),%eax
80b: 8b 08 mov (%eax),%ecx
ap++;
80d: 83 c0 04 add $0x4,%eax
810: 89 45 d4 mov %eax,-0x2c(%ebp)
if(s == 0)
813: 85 c9 test %ecx,%ecx
815: 0f 84 8e 00 00 00 je 8a9 <printf+0x1b9>
while(*s != 0){
81b: 0f b6 01 movzbl (%ecx),%eax
state = 0;
81e: 31 ff xor %edi,%edi
s = (char*)*ap;
820: 89 cb mov %ecx,%ebx
while(*s != 0){
822: 84 c0 test %al,%al
824: 0f 84 0e ff ff ff je 738 <printf+0x48>
82a: 89 75 d0 mov %esi,-0x30(%ebp)
82d: 89 de mov %ebx,%esi
82f: 8b 5d 08 mov 0x8(%ebp),%ebx
832: 8d 7d e3 lea -0x1d(%ebp),%edi
835: 8d 76 00 lea 0x0(%esi),%esi
write(fd, &c, 1);
838: 83 ec 04 sub $0x4,%esp
s++;
83b: 83 c6 01 add $0x1,%esi
83e: 88 45 e3 mov %al,-0x1d(%ebp)
write(fd, &c, 1);
841: 6a 01 push $0x1
843: 57 push %edi
844: 53 push %ebx
845: e8 58 fd ff ff call 5a2 <write>
while(*s != 0){
84a: 0f b6 06 movzbl (%esi),%eax
84d: 83 c4 10 add $0x10,%esp
850: 84 c0 test %al,%al
852: 75 e4 jne 838 <printf+0x148>
854: 8b 75 d0 mov -0x30(%ebp),%esi
state = 0;
857: 31 ff xor %edi,%edi
859: e9 da fe ff ff jmp 738 <printf+0x48>
85e: 66 90 xchg %ax,%ax
printint(fd, *ap, 10, 1);
860: 83 ec 0c sub $0xc,%esp
863: b9 0a 00 00 00 mov $0xa,%ecx
868: 6a 01 push $0x1
86a: e9 73 ff ff ff jmp 7e2 <printf+0xf2>
86f: 90 nop
write(fd, &c, 1);
870: 83 ec 04 sub $0x4,%esp
873: 88 5d e5 mov %bl,-0x1b(%ebp)
876: 8d 45 e5 lea -0x1b(%ebp),%eax
879: 6a 01 push $0x1
87b: e9 21 ff ff ff jmp 7a1 <printf+0xb1>
putc(fd, *ap);
880: 8b 7d d4 mov -0x2c(%ebp),%edi
write(fd, &c, 1);
883: 83 ec 04 sub $0x4,%esp
putc(fd, *ap);
886: 8b 07 mov (%edi),%eax
write(fd, &c, 1);
888: 6a 01 push $0x1
ap++;
88a: 83 c7 04 add $0x4,%edi
putc(fd, *ap);
88d: 88 45 e4 mov %al,-0x1c(%ebp)
write(fd, &c, 1);
890: 8d 45 e4 lea -0x1c(%ebp),%eax
893: 50 push %eax
894: ff 75 08 pushl 0x8(%ebp)
897: e8 06 fd ff ff call 5a2 <write>
ap++;
89c: 89 7d d4 mov %edi,-0x2c(%ebp)
89f: 83 c4 10 add $0x10,%esp
state = 0;
8a2: 31 ff xor %edi,%edi
8a4: e9 8f fe ff ff jmp 738 <printf+0x48>
s = "(null)";
8a9: bb 92 0a 00 00 mov $0xa92,%ebx
while(*s != 0){
8ae: b8 28 00 00 00 mov $0x28,%eax
8b3: e9 72 ff ff ff jmp 82a <printf+0x13a>
8b8: 66 90 xchg %ax,%ax
8ba: 66 90 xchg %ax,%ax
8bc: 66 90 xchg %ax,%ax
8be: 66 90 xchg %ax,%ax
000008c0 <free>:
static Header base;
static Header *freep;
void
free(void *ap)
{
8c0: 55 push %ebp
Header *bp, *p;
bp = (Header*)ap - 1;
for(p = freep; !(bp > p && bp < p->s.ptr); p = p->s.ptr)
8c1: a1 cc 0d 00 00 mov 0xdcc,%eax
{
8c6: 89 e5 mov %esp,%ebp
8c8: 57 push %edi
8c9: 56 push %esi
8ca: 53 push %ebx
8cb: 8b 5d 08 mov 0x8(%ebp),%ebx
bp = (Header*)ap - 1;
8ce: 8d 4b f8 lea -0x8(%ebx),%ecx
8d1: 8d b4 26 00 00 00 00 lea 0x0(%esi,%eiz,1),%esi
for(p = freep; !(bp > p && bp < p->s.ptr); p = p->s.ptr)
8d8: 39 c8 cmp %ecx,%eax
8da: 8b 10 mov (%eax),%edx
8dc: 73 32 jae 910 <free+0x50>
8de: 39 d1 cmp %edx,%ecx
8e0: 72 04 jb 8e6 <free+0x26>
if(p >= p->s.ptr && (bp > p || bp < p->s.ptr))
8e2: 39 d0 cmp %edx,%eax
8e4: 72 32 jb 918 <free+0x58>
break;
if(bp + bp->s.size == p->s.ptr){
8e6: 8b 73 fc mov -0x4(%ebx),%esi
8e9: 8d 3c f1 lea (%ecx,%esi,8),%edi
8ec: 39 fa cmp %edi,%edx
8ee: 74 30 je 920 <free+0x60>
bp->s.size += p->s.ptr->s.size;
bp->s.ptr = p->s.ptr->s.ptr;
} else
bp->s.ptr = p->s.ptr;
8f0: 89 53 f8 mov %edx,-0x8(%ebx)
if(p + p->s.size == bp){
8f3: 8b 50 04 mov 0x4(%eax),%edx
8f6: 8d 34 d0 lea (%eax,%edx,8),%esi
8f9: 39 f1 cmp %esi,%ecx
8fb: 74 3a je 937 <free+0x77>
p->s.size += bp->s.size;
p->s.ptr = bp->s.ptr;
} else
p->s.ptr = bp;
8fd: 89 08 mov %ecx,(%eax)
freep = p;
8ff: a3 cc 0d 00 00 mov %eax,0xdcc
}
904: 5b pop %ebx
905: 5e pop %esi
906: 5f pop %edi
907: 5d pop %ebp
908: c3 ret
909: 8d b4 26 00 00 00 00 lea 0x0(%esi,%eiz,1),%esi
if(p >= p->s.ptr && (bp > p || bp < p->s.ptr))
910: 39 d0 cmp %edx,%eax
912: 72 04 jb 918 <free+0x58>
914: 39 d1 cmp %edx,%ecx
916: 72 ce jb 8e6 <free+0x26>
{
918: 89 d0 mov %edx,%eax
91a: eb bc jmp 8d8 <free+0x18>
91c: 8d 74 26 00 lea 0x0(%esi,%eiz,1),%esi
bp->s.size += p->s.ptr->s.size;
920: 03 72 04 add 0x4(%edx),%esi
923: 89 73 fc mov %esi,-0x4(%ebx)
bp->s.ptr = p->s.ptr->s.ptr;
926: 8b 10 mov (%eax),%edx
928: 8b 12 mov (%edx),%edx
92a: 89 53 f8 mov %edx,-0x8(%ebx)
if(p + p->s.size == bp){
92d: 8b 50 04 mov 0x4(%eax),%edx
930: 8d 34 d0 lea (%eax,%edx,8),%esi
933: 39 f1 cmp %esi,%ecx
935: 75 c6 jne 8fd <free+0x3d>
p->s.size += bp->s.size;
937: 03 53 fc add -0x4(%ebx),%edx
freep = p;
93a: a3 cc 0d 00 00 mov %eax,0xdcc
p->s.size += bp->s.size;
93f: 89 50 04 mov %edx,0x4(%eax)
p->s.ptr = bp->s.ptr;
942: 8b 53 f8 mov -0x8(%ebx),%edx
945: 89 10 mov %edx,(%eax)
}
947: 5b pop %ebx
948: 5e pop %esi
949: 5f pop %edi
94a: 5d pop %ebp
94b: c3 ret
94c: 8d 74 26 00 lea 0x0(%esi,%eiz,1),%esi
00000950 <malloc>:
return freep;
}
void*
malloc(uint nbytes)
{
950: 55 push %ebp
951: 89 e5 mov %esp,%ebp
953: 57 push %edi
954: 56 push %esi
955: 53 push %ebx
956: 83 ec 0c sub $0xc,%esp
Header *p, *prevp;
uint nunits;
nunits = (nbytes + sizeof(Header) - 1)/sizeof(Header) + 1;
959: 8b 45 08 mov 0x8(%ebp),%eax
if((prevp = freep) == 0){
95c: 8b 15 cc 0d 00 00 mov 0xdcc,%edx
nunits = (nbytes + sizeof(Header) - 1)/sizeof(Header) + 1;
962: 8d 78 07 lea 0x7(%eax),%edi
965: c1 ef 03 shr $0x3,%edi
968: 83 c7 01 add $0x1,%edi
if((prevp = freep) == 0){
96b: 85 d2 test %edx,%edx
96d: 0f 84 9d 00 00 00 je a10 <malloc+0xc0>
973: 8b 02 mov (%edx),%eax
975: 8b 48 04 mov 0x4(%eax),%ecx
base.s.ptr = freep = prevp = &base;
base.s.size = 0;
}
for(p = prevp->s.ptr; ; prevp = p, p = p->s.ptr){
if(p->s.size >= nunits){
978: 39 cf cmp %ecx,%edi
97a: 76 6c jbe 9e8 <malloc+0x98>
97c: 81 ff 00 10 00 00 cmp $0x1000,%edi
982: bb 00 10 00 00 mov $0x1000,%ebx
987: 0f 43 df cmovae %edi,%ebx
p = sbrk(nu * sizeof(Header));
98a: 8d 34 dd 00 00 00 00 lea 0x0(,%ebx,8),%esi
991: eb 0e jmp 9a1 <malloc+0x51>
993: 90 nop
994: 8d 74 26 00 lea 0x0(%esi,%eiz,1),%esi
for(p = prevp->s.ptr; ; prevp = p, p = p->s.ptr){
998: 8b 02 mov (%edx),%eax
if(p->s.size >= nunits){
99a: 8b 48 04 mov 0x4(%eax),%ecx
99d: 39 f9 cmp %edi,%ecx
99f: 73 47 jae 9e8 <malloc+0x98>
p->s.size = nunits;
}
freep = prevp;
return (void*)(p + 1);
}
if(p == freep)
9a1: 39 05 cc 0d 00 00 cmp %eax,0xdcc
9a7: 89 c2 mov %eax,%edx
9a9: 75 ed jne 998 <malloc+0x48>
p = sbrk(nu * sizeof(Header));
9ab: 83 ec 0c sub $0xc,%esp
9ae: 56 push %esi
9af: e8 56 fc ff ff call 60a <sbrk>
if(p == (char*)-1)
9b4: 83 c4 10 add $0x10,%esp
9b7: 83 f8 ff cmp $0xffffffff,%eax
9ba: 74 1c je 9d8 <malloc+0x88>
hp->s.size = nu;
9bc: 89 58 04 mov %ebx,0x4(%eax)
free((void*)(hp + 1));
9bf: 83 ec 0c sub $0xc,%esp
9c2: 83 c0 08 add $0x8,%eax
9c5: 50 push %eax
9c6: e8 f5 fe ff ff call 8c0 <free>
return freep;
9cb: 8b 15 cc 0d 00 00 mov 0xdcc,%edx
if((p = morecore(nunits)) == 0)
9d1: 83 c4 10 add $0x10,%esp
9d4: 85 d2 test %edx,%edx
9d6: 75 c0 jne 998 <malloc+0x48>
return 0;
}
}
9d8: 8d 65 f4 lea -0xc(%ebp),%esp
return 0;
9db: 31 c0 xor %eax,%eax
}
9dd: 5b pop %ebx
9de: 5e pop %esi
9df: 5f pop %edi
9e0: 5d pop %ebp
9e1: c3 ret
9e2: 8d b6 00 00 00 00 lea 0x0(%esi),%esi
if(p->s.size == nunits)
9e8: 39 cf cmp %ecx,%edi
9ea: 74 54 je a40 <malloc+0xf0>
p->s.size -= nunits;
9ec: 29 f9 sub %edi,%ecx
9ee: 89 48 04 mov %ecx,0x4(%eax)
p += p->s.size;
9f1: 8d 04 c8 lea (%eax,%ecx,8),%eax
p->s.size = nunits;
9f4: 89 78 04 mov %edi,0x4(%eax)
freep = prevp;
9f7: 89 15 cc 0d 00 00 mov %edx,0xdcc
}
9fd: 8d 65 f4 lea -0xc(%ebp),%esp
return (void*)(p + 1);
a00: 83 c0 08 add $0x8,%eax
}
a03: 5b pop %ebx
a04: 5e pop %esi
a05: 5f pop %edi
a06: 5d pop %ebp
a07: c3 ret
a08: 90 nop
a09: 8d b4 26 00 00 00 00 lea 0x0(%esi,%eiz,1),%esi
base.s.ptr = freep = prevp = &base;
a10: c7 05 cc 0d 00 00 d0 movl $0xdd0,0xdcc
a17: 0d 00 00
a1a: c7 05 d0 0d 00 00 d0 movl $0xdd0,0xdd0
a21: 0d 00 00
base.s.size = 0;
a24: b8 d0 0d 00 00 mov $0xdd0,%eax
a29: c7 05 d4 0d 00 00 00 movl $0x0,0xdd4
a30: 00 00 00
a33: e9 44 ff ff ff jmp 97c <malloc+0x2c>
a38: 90 nop
a39: 8d b4 26 00 00 00 00 lea 0x0(%esi,%eiz,1),%esi
prevp->s.ptr = p->s.ptr;
a40: 8b 08 mov (%eax),%ecx
a42: 89 0a mov %ecx,(%edx)
a44: eb b1 jmp 9f7 <malloc+0xa7>
|
BattleCommand_Encore:
; encore
ld hl, wEnemyMonMoves
ld de, wEnemyEncoreCount
ldh a, [hBattleTurn]
and a
jr z, .ok
ld hl, wBattleMonMoves
ld de, wPlayerEncoreCount
.ok
ld a, BATTLE_VARS_LAST_MOVE_OPP
call GetBattleVar
ld b, a
push hl
ld hl, .invalid_moves
call CheckMoveInList
pop hl
jp c, .failed
.got_move
ld a, [hli]
cp b
jr nz, .got_move
ld bc, wBattleMonPP - wBattleMonMoves - 1
add hl, bc
ld a, [hl]
and PP_MASK
jp z, .failed
ld a, [wAttackMissed]
and a
jp nz, .failed
ld a, BATTLE_VARS_SUBSTATUS5_OPP
call GetBattleVarAddr
bit SUBSTATUS_ENCORED, [hl]
jp nz, .failed
set SUBSTATUS_ENCORED, [hl]
call BattleRandom
and $3
inc a
inc a
inc a
ld [de], a
call CheckOpponentWentFirst
jr nz, .finish_move
ldh a, [hBattleTurn]
and a
jr z, .force_last_enemy_move
push hl
ld a, [wLastPlayerMove]
ld b, a
ld c, 0
ld hl, wBattleMonMoves
.find_player_move
ld a, [hli]
cp b
jr z, .got_player_move
inc c
ld a, c
cp NUM_MOVES
jr c, .find_player_move
pop hl
res SUBSTATUS_ENCORED, [hl]
xor a
ld [de], a
jr .failed
.got_player_move
pop hl
ld a, c
ld [wCurMoveNum], a
ld a, b
ld [wCurPlayerMove], a
ld de, wPlayerMoveStruct
call GetMoveData
jr .finish_move
.force_last_enemy_move
push hl
ld a, [wLastEnemyMove]
ld b, a
ld c, 0
ld hl, wEnemyMonMoves
.find_enemy_move
ld a, [hli]
cp b
jr z, .got_enemy_move
inc c
ld a, c
cp NUM_MOVES
jr c, .find_enemy_move
pop hl
res SUBSTATUS_ENCORED, [hl]
xor a
ld [de], a
jr .failed
.got_enemy_move
pop hl
ld a, c
ld [wCurEnemyMoveNum], a
ld a, b
ld [wCurEnemyMove], a
ld de, wEnemyMoveStruct
call GetMoveData
.finish_move
call AnimateCurrentMove
ld hl, GotAnEncoreText
jp StdBattleTextbox
.failed
jp PrintDidntAffect2
.invalid_moves
dw NO_MOVE
dw STRUGGLE
dw ENCORE
dw MIRROR_MOVE
dw -1
|
; -------------------------------------------------------------------------------------------------
; REGISTERS
; -------------------------------------------------------------------------------------------------
.EQU SREG = 0x3F ; avr status register
.EQU SREG_I = 7 ; global interrupt enable
.EQU SREG_T = 6 ; bit copy storage
.EQU SREG_H = 5 ; half carry flag
.EQU SREG_S = 4 ; sign bit
.EQU SREG_V = 3 ; twos complement overflow flag
.EQU SREG_N = 2 ; negative flag
.EQU SREG_Z = 1 ; zero flag
.EQU SREG_C = 0 ; carry flag
.EQU SPH = 0x3E ; stack pointer high
.EQU SP9 = 1 ; bit 9
.EQU SP8 = 0 ; bit 8
.EQU SPL = 0x3D ; stack pointer low
.EQU SP7 = 7 ; bit 7
.EQU SP6 = 6 ; bit 6
.EQU SP5 = 5 ; bit 5
.EQU SP4 = 4 ; bit 4
.EQU SP3 = 3 ; bit 3
.EQU SP2 = 2 ; bit 2
.EQU SP1 = 1 ; bit 1
.EQU SP0 = 0 ; bit 0
; reserved
.EQU GIMSK = 0x3B
.EQU INT0 = 6
.EQU PCIE = 5
.EQU GIFR = 0x3A
.EQU INTF0 = 6
.EQU PCIF = 5
.EQU TIMSK = 0x39 ; timer interrupt mask
.EQU OCIE1A = 6 ; output compare interrupt enable timer counter 1 A
.EQU OCIE1B = 5 ; output compare interrupt enable timer counter 1 B
.EQU OCIE0A = 4 ; output compare interrupt enable timer counter 0 A
.EQU OCIE0B = 3 ; output compare interrupt enable timer counter 0 B
.EQU TOIE1 = 2 ; timer counter 1 overflow interrupt enable
.EQU TOIE0 = 1 ; timer coutner 0 overflow interrupt enable
.EQU TIFR = 0x38 ; timer interrupt flag register
.EQU OCF1A = 6 ; output compare flag A timer counter 1
.EQU OCF1B = 5 ; output compare flag B timer counter 1
.EQU OCF0A = 4 ; output compare flag A timer counter 0
.EQU OCF0B = 3 ; output compare flag B timer counter 0
.EQU TOV1 = 2 ; timer counter 1 overflow flag
.EQU TOV0 = 1 ; timer counter 1 overflow flag
.EQU SPMCSR = 0x37
.EQU RSIG = 5
.EQU CTPB = 4
.EQU RFLB = 3
.EQU PGWRT = 2
.EQU PGERS = 1
.EQU SPMEN = 0
; reserved
.EQU MCUCR = 0x35
.EQU BODS = 7
.EQU PUD = 6
.EQU SE = 5
.EQU SM1 = 4
.EQU SM0 = 3
.EQU BODSE = 2
.EQU ISC01 = 1
.EQU ISC00 = 0
.EQU MCUSR = 0x34
.EQU WDRF = 3
.EQU BORF = 2
.EQU EXTRF = 1
.EQU PORF = 0
.EQU TCCR0B = 0x33 ; timer couter 0 control register B
.EQU FOC0A = 7 ; force output compare A timer counter 0
.EQU FOC0B = 6 ; force output compare B timer counter 0
.EQU WGM02 = 3 ; waveform generation mode 2 timer counter 0
.EQU CS02 = 2 ; clock source 2 timer counter 0
.EQU CS01 = 1 ; clock source 1 timer counter 0
.EQU CS00 = 0 ; clock source 0 timer counter 0
.EQU TCNT0 = 0x32 ; timer counter 0
.EQU OSCCAL = 0x31 ; oscillator calibration register
.EQU TCCR1 = 0x30 ; timer counter 1 control register
.EQU CTC1 = 7
.EQU PWM1A = 6
.EQU COM1A1 = 5 ; compare output 1 A timer counter 1
.EQU COM1A0 = 4 ; compare output 0 A timer counter 1
.EQU CS13 = 3 ; clock source 3 timer counter 1
.EQU CS12 = 2 ; clock source 2 timer counter 1
.EQU CS11 = 1 ; clock source 1 timer counter 1
.EQU CS10 = 0 ; clock source 0 timer counter 1
.EQU TCNT1 = 0x2F ; timer counter 1
.EQU OCR1A = 0x2E ; timer counter 1 compare register A
.EQU OCR1C = 0x2D ; timer counter 1 compare register C
.EQU GTCCR = 0x2C ; general timer counter control register
.EQU TSM = 7 ; timer counter synchronisation mode
.EQU PWM1B = 6
.EQU COM1B1 = 5
.EQU COM1B0 = 4
.EQU FOC1B = 3
.EQU FOC1A = 2
.EQU PSR1 = 1 ; prescaler reset timer counter 1
.EQU PSR0 = 0 ; prescaler reset timer counter 0
.EQU OCR1B = 0x2B ; timer counter 1 compare register B
.EQU TCCR0A = 0x2A ; timer conter 0 control register A
.EQU COM0A1 = 7 ; compare output 1 A timer counter 0
.EQU COM0A0 = 6 ; compare output 0 A timer counter 0
.EQU COM0B1 = 5 ; compare output 1 B timer counter 0
.EQU COM0B0 = 4 ; compare output 0 B timer counter 0
.EQU WGM01 = 1 ; waveform generation mode 1 timer counter 0
.EQU WGM00 = 0 ; waveform generation mode 0 timer counter 0
.EQU OCR0A = 0x29 ; timer counter 0 compare register A
.EQU OCR0B = 0x28 ; timer counter 0 compare register B
.EQU PLLCSR = 0x27
.EQU LSM = 7
.EQU PCKE = 2
.EQU PLLE = 1
.EQU PLOCK = 0
.EQU CLKPR = 0x26
.EQU CLKPCE = 7
.EQU CLKPS3 = 3
.EQU CLKPS2 = 2
.EQU CLKPS1 = 1
.EQU CLKPS0 = 0
.EQU DT1A = 0x25
.EQU DT1AH3 = 7
.EQU DT1AH2 = 6
.EQU DT1AH1 = 5
.EQU DT1AH0 = 4
.EQU DT1AL3 = 3
.EQU DT1AL2 = 2
.EQU DT1AL1 = 1
.EQU DT1AL0 = 0
.EQU DT1B = 0x24
.EQU DT1BH3 = 7
.EQU DT1BH2 = 6
.EQU DT1BH1 = 5
.EQU DT1BH0 = 4
.EQU DT1BL3 = 3
.EQU DT1BL2 = 2
.EQU DT1BL1 = 1
.EQU DT1BL0 = 0
.EQU DTPS1 = 0x23
.EQU DTPS11 = 1
.EQU DTPS10 = 0
.EQU DWDR = 0x22
.EQU WDTCR = 0x21
.EQU WDIF = 7
.EQU WDIE = 6
.EQU WDP3 = 5
.EQU WDCE = 4
.EQU WDE = 3
.EQU WDP2 = 2
.EQU WDP1 = 1
.EQU WDP0 = 0
.EQU PRR = 0x20
.EQU PRTIM1 = 3
.EQU PRTIM0 = 2
.EQU PRUSI = 1
.EQU PRADC = 0
.EQU EEARH = 0x1F
.EQU EEAR8 = 0
.EQU EEARL = 0x1E
.EQU EEAR7 = 7
.EQU EEAR6 = 6
.EQU EEAR5 = 5
.EQU EEAR4 = 4
.EQU EEAR3 = 3
.EQU EEAR2 = 2
.EQU EEAR1 = 1
.EQU EEAR0 = 0
.EQU EEDR = 0x1D ; eeprom data register
.EQU EECR = 0x1C
.EQU EEPM1 = 5
.EQU EEPM0 = 4
.EQU EERIE = 3
.EQU EEMPE = 2
.EQU EEPE = 1
.EQU EERE = 0
; reserved
; reserved
; reserved
.EQU PORTB = 0x18 ; data output register port B
.EQU PORTB5 = 5
.EQU PORTB4 = 4
.EQU PORTB3 = 3
.EQU PORTB2 = 2
.EQU PORTB1 = 1
.EQU PORTB0 = 0
.EQU DDRB = 0x17 ; data direction register port B
.EQU DDB5 = 5
.EQU DDB4 = 4
.EQU DDB3 = 3
.EQU DDB2 = 2
.EQU DDB1 = 1
.EQU DDB0 = 0
.EQU PINB = 0x16 ; data input register port B
.EQU PINB5 = 5
.EQU PINB4 = 4
.EQU PINB3 = 3
.EQU PINB2 = 2
.EQU PINB1 = 1
.EQU PINB0 = 0
.EQU PCMSK = 0x15 ; pin change interrupt mask
.EQU PCINT5 = 5
.EQU PCINT4 = 4
.EQU PCINT3 = 3
.EQU PCINT2 = 2
.EQU PCINT1 = 1
.EQU PCINT0 = 0
.EQU DIDR0 = 0x14
.EQU ADC0D = 5
.EQU ADC2D = 4
.EQU ADC3D = 3
.EQU ADC1D = 2
.EQU AIN1D = 1
.EQU AIN0D = 0
.EQU GPIOR2 = 0x13 ; general purpose io register 2
.EQU GPIOR1 = 0x12 ; general purpose io register 1
.EQU GPIOR0 = 0x11 ; general purpose io register 0
.EQU USIBR = 0x10 ; usi buffer register
.EQU USIDR = 0x0F ; usi data register
.EQU USISR = 0x0E ; usi status register
.EQU USISIF = 7
.EQU USIOIF = 6
.EQU USIPF = 5
.EQU USIDC = 4
.EQU USICNT3 = 3
.EQU USICNT2 = 2
.EQU USICNT1 = 1
.EQU USICNT0 = 0
.EQU USICR = 0x0D ; usi counter register
.EQU USISIE = 7
.EQU USIOIE = 6
.EQU USIWM1 = 5
.EQU USIWM0 = 4
.EQU USICS1 = 3
.EQU USICS0 = 2
.EQU USICLK = 1
.EQU USITC = 0
; reserved
; reserved
; reserved
; reserved
.EQU ACSR = 0x08
.EQU ACD = 7
.EQU ACBG = 6
.EQU ACO = 5
.EQU ACI = 4
.EQU ACIE = 3
.EQU ACIS1 = 1
.EQU ACIS0 = 0
.EQU ADMUX = 0x07
.EQU REFS1 = 7
.EQU REFS0 = 6
.EQU ADLAR = 5
.EQU REFS2 = 4
.EQU MUX3 = 3
.EQU MUX2 = 2
.EQU MUX1 = 1
.EQU MUX0 = 0
.EQU ADCSRA = 0x06
.EQU ADEN = 7
.EQU ADSC = 6
.EQU ADATE = 5
.EQU ADIF = 4
.EQU ADIE = 3
.EQU ADPS2 = 2
.EQU ADPS1 = 1
.EQU ADPS0 = 0
.EQU ADCH = 0x05 ; adc data high
.EQU ADCL = 0x04 ; adc data low
.EQU ADCSRB = 0x03
.EQU BIN = 7
.EQU ACME = 6
.EQU IPR = 5
.EQU ADTS2 = 2
.EQU ADTS1 = 1
.EQU ADTS0 = 0
; reserved
; reserved
; reserved
; -------------------------------------------------------------------------------------------------
; STANDARD VALUES
; -------------------------------------------------------------------------------------------------
.EQU RAMEND = 0x025F |
//
// Copyright (c) 2016-2017 Vinnie Falco (vinnie dot falco at gmail dot com)
//
// Distributed under the Boost Software License, Version 1.0. (See accompanying
// file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)
//
// Official repository: https://github.com/boostorg/beast
//
// Test that header file is self-contained.
#include <boost/beast/http/verb.hpp>
#include <boost/beast/unit_test/suite.hpp>
namespace boost {
namespace beast {
namespace http {
class verb_test
: public beast::unit_test::suite
{
public:
void
testVerb()
{
auto const good =
[&](verb v)
{
BEAST_EXPECT(string_to_verb(to_string(v)) == v);
};
good(verb::unknown);
good(verb::delete_);
good(verb::get);
good(verb::head);
good(verb::post);
good(verb::put);
good(verb::connect);
good(verb::options);
good(verb::trace);
good(verb::copy);
good(verb::lock);
good(verb::mkcol);
good(verb::move);
good(verb::propfind);
good(verb::proppatch);
good(verb::search);
good(verb::unlock);
good(verb::bind);
good(verb::rebind);
good(verb::unbind);
good(verb::acl);
good(verb::report);
good(verb::mkactivity);
good(verb::checkout);
good(verb::merge);
good(verb::msearch);
good(verb::notify);
good(verb::subscribe);
good(verb::unsubscribe);
good(verb::patch);
good(verb::purge);
good(verb::mkcalendar);
good(verb::link);
good(verb::unlink);
auto const bad =
[&](string_view s)
{
auto const v = string_to_verb(s);
BEAST_EXPECTS(v == verb::unknown, to_string(v));
};
bad("AC_");
bad("BIN_");
bad("CHECKOU_");
bad("CONNEC_");
bad("COP_");
bad("DELET_");
bad("GE_");
bad("HEA_");
bad("LIN_");
bad("LOC_");
bad("M-SEARC_");
bad("MERG_");
bad("MKACTIVIT_");
bad("MKCALENDA_");
bad("MKCO_");
bad("MOV_");
bad("NOTIF_");
bad("OPTION_");
bad("PATC_");
bad("POS_");
bad("PROPFIN_");
bad("PROPPATC_");
bad("PURG_");
bad("PU_");
bad("REBIN_");
bad("REPOR_");
bad("SEARC_");
bad("SUBSCRIB_");
bad("TRAC_");
bad("UNBIN_");
bad("UNLIN_");
bad("UNLOC_");
bad("UNSUBSCRIB_");
try
{
to_string(static_cast<verb>(-1));
fail("", __FILE__, __LINE__);
}
catch(std::exception const&)
{
pass();
}
}
void
run()
{
testVerb();
}
};
BEAST_DEFINE_TESTSUITE(beast,http,verb);
} // http
} // beast
} // boost
|
[bits 32]
[section .text]
INT_VECTOR_SYS_CALL equ 0x80
_NR_READDIR EQU 19
global readdir
readdir:
mov eax, _NR_READDIR
mov ebx, [esp + 4]
int INT_VECTOR_SYS_CALL
ret |
push 512
!define top <[-0]
!define rax [0:64]
!define rbx [64:64]
!define rcx [128:64]
!define rdx [192:64]
!define rex [256:64]
.first-start
ext print, "Input first number to add: "
ext prompt
ext inputnumlen, rax
ext valid, rbx
je rbx, 0, first-fail
jmp first-good
.first-fail
ext print, "Invalid number!\n"
jmp first-start
.first-good
mov rbx, top
push rax
ext inputnum, [rbx:rax]
ext print, "You input: "
ext printnum, [rbx:rax]
ext print, "\n"
.second-start
ext print, "Input first number to add: "
ext prompt
ext inputnumlen, rcx
ext valid, rdx
je rdx, 0, second-fail
jmp second-good
.second-fail
ext print, "Invalid number!\n"
jmp second-start
.second-good
mov rdx, top
push rcx
ext inputnum, [rdx:rcx]
ext print, "You input: "
ext printnum, [rdx:rcx]
ext print, "\n"
jg rax, rcx, comp-large
jmp comp-small
.comp-small
mov rex, rcx
jmp comp-end
.comp-large
mov rex, rax
jmp comp-end
.comp-end
add rex, rex, 1
push rex
add [-rex:rex], [rbx:rax], [rdx:rcx]
ext print, "Result: "
ext printnum, [-rex:rex]
ext print, "\nBits used: "
ext printnum, rex
ext print, "\n"
pop rex
pop rcx
pop rax
|
; A051885: Smallest number whose sum of digits is n.
; 0,1,2,3,4,5,6,7,8,9,19,29,39,49,59,69,79,89,99,199,299,399,499,599,699,799,899,999,1999,2999,3999,4999,5999,6999,7999,8999,9999,19999,29999,39999,49999,59999,69999,79999,89999,99999,199999,299999,399999,499999,599999,699999,799999,899999,999999,1999999,2999999,3999999,4999999,5999999,6999999,7999999,8999999,9999999,19999999,29999999,39999999,49999999,59999999,69999999,79999999,89999999,99999999,199999999,299999999,399999999,499999999,599999999,699999999,799999999,899999999,999999999,1999999999,2999999999,3999999999,4999999999,5999999999,6999999999,7999999999,8999999999,9999999999,19999999999,29999999999,39999999999,49999999999,59999999999,69999999999,79999999999,89999999999,99999999999,199999999999,299999999999,399999999999,499999999999,599999999999,699999999999,799999999999,899999999999,999999999999,1999999999999,2999999999999,3999999999999,4999999999999,5999999999999,6999999999999,7999999999999,8999999999999,9999999999999,19999999999999,29999999999999,39999999999999,49999999999999,59999999999999,69999999999999,79999999999999,89999999999999,99999999999999,199999999999999,299999999999999,399999999999999,499999999999999,599999999999999,699999999999999,799999999999999,899999999999999,999999999999999,1999999999999999,2999999999999999,3999999999999999,4999999999999999,5999999999999999,6999999999999999,7999999999999999,8999999999999999
cal $0,71061 ; Abjad values of the Arabic letters in the traditional order for abjad calculations.
mov $1,$0
sub $1,1
|
; DO NOT MODIFY THIS FILE DIRECTLY!
; author: @TinySecEx
; shadowssdt asm stub for 5.1.2600-sp3-windows-xp i386
.686
.mmx
.xmm
.model flat,stdcall
option casemap:none
option prologue:none
option epilogue:none
.code
; ULONG __stdcall NtGdiAbortDoc( ULONG arg_01 );
_5_1_2600_sp3_windows_xp_NtGdiAbortDoc PROC STDCALL arg_01:DWORD
mov eax , 4096
mov edx , 7FFE0300h
call dword ptr [edx]
ret 4
_5_1_2600_sp3_windows_xp_NtGdiAbortDoc ENDP
; ULONG __stdcall NtGdiAbortPath( ULONG arg_01 );
_5_1_2600_sp3_windows_xp_NtGdiAbortPath PROC STDCALL arg_01:DWORD
mov eax , 4097
mov edx , 7FFE0300h
call dword ptr [edx]
ret 4
_5_1_2600_sp3_windows_xp_NtGdiAbortPath ENDP
; ULONG __stdcall NtGdiAddFontResourceW( ULONG arg_01 , ULONG arg_02 , ULONG arg_03 , ULONG arg_04 , ULONG arg_05 , ULONG arg_06 );
_5_1_2600_sp3_windows_xp_NtGdiAddFontResourceW PROC STDCALL arg_01:DWORD , arg_02:DWORD , arg_03:DWORD , arg_04:DWORD , arg_05:DWORD , arg_06:DWORD
mov eax , 4098
mov edx , 7FFE0300h
call dword ptr [edx]
ret 24
_5_1_2600_sp3_windows_xp_NtGdiAddFontResourceW ENDP
; ULONG __stdcall NtGdiAddRemoteFontToDC( ULONG arg_01 , ULONG arg_02 , ULONG arg_03 , ULONG arg_04 );
_5_1_2600_sp3_windows_xp_NtGdiAddRemoteFontToDC PROC STDCALL arg_01:DWORD , arg_02:DWORD , arg_03:DWORD , arg_04:DWORD
mov eax , 4099
mov edx , 7FFE0300h
call dword ptr [edx]
ret 16
_5_1_2600_sp3_windows_xp_NtGdiAddRemoteFontToDC ENDP
; ULONG __stdcall NtGdiAddFontMemResourceEx( ULONG arg_01 , ULONG arg_02 , ULONG arg_03 , ULONG arg_04 , ULONG arg_05 );
_5_1_2600_sp3_windows_xp_NtGdiAddFontMemResourceEx PROC STDCALL arg_01:DWORD , arg_02:DWORD , arg_03:DWORD , arg_04:DWORD , arg_05:DWORD
mov eax , 4100
mov edx , 7FFE0300h
call dword ptr [edx]
ret 20
_5_1_2600_sp3_windows_xp_NtGdiAddFontMemResourceEx ENDP
; ULONG __stdcall NtGdiRemoveMergeFont( ULONG arg_01 , ULONG arg_02 );
_5_1_2600_sp3_windows_xp_NtGdiRemoveMergeFont PROC STDCALL arg_01:DWORD , arg_02:DWORD
mov eax , 4101
mov edx , 7FFE0300h
call dword ptr [edx]
ret 8
_5_1_2600_sp3_windows_xp_NtGdiRemoveMergeFont ENDP
; ULONG __stdcall NtGdiAddRemoteMMInstanceToDC( ULONG arg_01 , ULONG arg_02 , ULONG arg_03 );
_5_1_2600_sp3_windows_xp_NtGdiAddRemoteMMInstanceToDC PROC STDCALL arg_01:DWORD , arg_02:DWORD , arg_03:DWORD
mov eax , 4102
mov edx , 7FFE0300h
call dword ptr [edx]
ret 12
_5_1_2600_sp3_windows_xp_NtGdiAddRemoteMMInstanceToDC ENDP
; ULONG __stdcall NtGdiAlphaBlend( ULONG arg_01 , ULONG arg_02 , ULONG arg_03 , ULONG arg_04 , ULONG arg_05 , ULONG arg_06 , ULONG arg_07 , ULONG arg_08 , ULONG arg_09 , ULONG arg_10 , ULONG arg_11 , ULONG arg_12 );
_5_1_2600_sp3_windows_xp_NtGdiAlphaBlend PROC STDCALL arg_01:DWORD , arg_02:DWORD , arg_03:DWORD , arg_04:DWORD , arg_05:DWORD , arg_06:DWORD , arg_07:DWORD , arg_08:DWORD , arg_09:DWORD , arg_10:DWORD , arg_11:DWORD , arg_12:DWORD
mov eax , 4103
mov edx , 7FFE0300h
call dword ptr [edx]
ret 48
_5_1_2600_sp3_windows_xp_NtGdiAlphaBlend ENDP
; ULONG __stdcall NtGdiAngleArc( ULONG arg_01 , ULONG arg_02 , ULONG arg_03 , ULONG arg_04 , ULONG arg_05 , ULONG arg_06 );
_5_1_2600_sp3_windows_xp_NtGdiAngleArc PROC STDCALL arg_01:DWORD , arg_02:DWORD , arg_03:DWORD , arg_04:DWORD , arg_05:DWORD , arg_06:DWORD
mov eax , 4104
mov edx , 7FFE0300h
call dword ptr [edx]
ret 24
_5_1_2600_sp3_windows_xp_NtGdiAngleArc ENDP
; ULONG __stdcall NtGdiAnyLinkedFonts( );
_5_1_2600_sp3_windows_xp_NtGdiAnyLinkedFonts PROC STDCALL
mov eax , 4105
mov edx , 7FFE0300h
call dword ptr [edx]
ret
_5_1_2600_sp3_windows_xp_NtGdiAnyLinkedFonts ENDP
; ULONG __stdcall NtGdiFontIsLinked( ULONG arg_01 );
_5_1_2600_sp3_windows_xp_NtGdiFontIsLinked PROC STDCALL arg_01:DWORD
mov eax , 4106
mov edx , 7FFE0300h
call dword ptr [edx]
ret 4
_5_1_2600_sp3_windows_xp_NtGdiFontIsLinked ENDP
; ULONG __stdcall NtGdiArcInternal( ULONG arg_01 , ULONG arg_02 , ULONG arg_03 , ULONG arg_04 , ULONG arg_05 , ULONG arg_06 , ULONG arg_07 , ULONG arg_08 , ULONG arg_09 , ULONG arg_10 );
_5_1_2600_sp3_windows_xp_NtGdiArcInternal PROC STDCALL arg_01:DWORD , arg_02:DWORD , arg_03:DWORD , arg_04:DWORD , arg_05:DWORD , arg_06:DWORD , arg_07:DWORD , arg_08:DWORD , arg_09:DWORD , arg_10:DWORD
mov eax , 4107
mov edx , 7FFE0300h
call dword ptr [edx]
ret 40
_5_1_2600_sp3_windows_xp_NtGdiArcInternal ENDP
; ULONG __stdcall NtGdiBeginPath( ULONG arg_01 );
_5_1_2600_sp3_windows_xp_NtGdiBeginPath PROC STDCALL arg_01:DWORD
mov eax , 4108
mov edx , 7FFE0300h
call dword ptr [edx]
ret 4
_5_1_2600_sp3_windows_xp_NtGdiBeginPath ENDP
; ULONG __stdcall NtGdiBitBlt( ULONG arg_01 , ULONG arg_02 , ULONG arg_03 , ULONG arg_04 , ULONG arg_05 , ULONG arg_06 , ULONG arg_07 , ULONG arg_08 , ULONG arg_09 , ULONG arg_10 , ULONG arg_11 );
_5_1_2600_sp3_windows_xp_NtGdiBitBlt PROC STDCALL arg_01:DWORD , arg_02:DWORD , arg_03:DWORD , arg_04:DWORD , arg_05:DWORD , arg_06:DWORD , arg_07:DWORD , arg_08:DWORD , arg_09:DWORD , arg_10:DWORD , arg_11:DWORD
mov eax , 4109
mov edx , 7FFE0300h
call dword ptr [edx]
ret 44
_5_1_2600_sp3_windows_xp_NtGdiBitBlt ENDP
; ULONG __stdcall NtGdiCancelDC( ULONG arg_01 );
_5_1_2600_sp3_windows_xp_NtGdiCancelDC PROC STDCALL arg_01:DWORD
mov eax , 4110
mov edx , 7FFE0300h
call dword ptr [edx]
ret 4
_5_1_2600_sp3_windows_xp_NtGdiCancelDC ENDP
; ULONG __stdcall NtGdiCheckBitmapBits( ULONG arg_01 , ULONG arg_02 , ULONG arg_03 , ULONG arg_04 , ULONG arg_05 , ULONG arg_06 , ULONG arg_07 , ULONG arg_08 );
_5_1_2600_sp3_windows_xp_NtGdiCheckBitmapBits PROC STDCALL arg_01:DWORD , arg_02:DWORD , arg_03:DWORD , arg_04:DWORD , arg_05:DWORD , arg_06:DWORD , arg_07:DWORD , arg_08:DWORD
mov eax , 4111
mov edx , 7FFE0300h
call dword ptr [edx]
ret 32
_5_1_2600_sp3_windows_xp_NtGdiCheckBitmapBits ENDP
; ULONG __stdcall NtGdiCloseFigure( ULONG arg_01 );
_5_1_2600_sp3_windows_xp_NtGdiCloseFigure PROC STDCALL arg_01:DWORD
mov eax , 4112
mov edx , 7FFE0300h
call dword ptr [edx]
ret 4
_5_1_2600_sp3_windows_xp_NtGdiCloseFigure ENDP
; ULONG __stdcall NtGdiClearBitmapAttributes( ULONG arg_01 , ULONG arg_02 );
_5_1_2600_sp3_windows_xp_NtGdiClearBitmapAttributes PROC STDCALL arg_01:DWORD , arg_02:DWORD
mov eax , 4113
mov edx , 7FFE0300h
call dword ptr [edx]
ret 8
_5_1_2600_sp3_windows_xp_NtGdiClearBitmapAttributes ENDP
; ULONG __stdcall NtGdiClearBrushAttributes( ULONG arg_01 , ULONG arg_02 );
_5_1_2600_sp3_windows_xp_NtGdiClearBrushAttributes PROC STDCALL arg_01:DWORD , arg_02:DWORD
mov eax , 4114
mov edx , 7FFE0300h
call dword ptr [edx]
ret 8
_5_1_2600_sp3_windows_xp_NtGdiClearBrushAttributes ENDP
; ULONG __stdcall NtGdiColorCorrectPalette( ULONG arg_01 , ULONG arg_02 , ULONG arg_03 , ULONG arg_04 , ULONG arg_05 , ULONG arg_06 );
_5_1_2600_sp3_windows_xp_NtGdiColorCorrectPalette PROC STDCALL arg_01:DWORD , arg_02:DWORD , arg_03:DWORD , arg_04:DWORD , arg_05:DWORD , arg_06:DWORD
mov eax , 4115
mov edx , 7FFE0300h
call dword ptr [edx]
ret 24
_5_1_2600_sp3_windows_xp_NtGdiColorCorrectPalette ENDP
; ULONG __stdcall NtGdiCombineRgn( ULONG arg_01 , ULONG arg_02 , ULONG arg_03 , ULONG arg_04 );
_5_1_2600_sp3_windows_xp_NtGdiCombineRgn PROC STDCALL arg_01:DWORD , arg_02:DWORD , arg_03:DWORD , arg_04:DWORD
mov eax , 4116
mov edx , 7FFE0300h
call dword ptr [edx]
ret 16
_5_1_2600_sp3_windows_xp_NtGdiCombineRgn ENDP
; ULONG __stdcall NtGdiCombineTransform( ULONG arg_01 , ULONG arg_02 , ULONG arg_03 );
_5_1_2600_sp3_windows_xp_NtGdiCombineTransform PROC STDCALL arg_01:DWORD , arg_02:DWORD , arg_03:DWORD
mov eax , 4117
mov edx , 7FFE0300h
call dword ptr [edx]
ret 12
_5_1_2600_sp3_windows_xp_NtGdiCombineTransform ENDP
; ULONG __stdcall NtGdiComputeXformCoefficients( ULONG arg_01 );
_5_1_2600_sp3_windows_xp_NtGdiComputeXformCoefficients PROC STDCALL arg_01:DWORD
mov eax , 4118
mov edx , 7FFE0300h
call dword ptr [edx]
ret 4
_5_1_2600_sp3_windows_xp_NtGdiComputeXformCoefficients ENDP
; ULONG __stdcall NtGdiConsoleTextOut( ULONG arg_01 , ULONG arg_02 , ULONG arg_03 , ULONG arg_04 );
_5_1_2600_sp3_windows_xp_NtGdiConsoleTextOut PROC STDCALL arg_01:DWORD , arg_02:DWORD , arg_03:DWORD , arg_04:DWORD
mov eax , 4119
mov edx , 7FFE0300h
call dword ptr [edx]
ret 16
_5_1_2600_sp3_windows_xp_NtGdiConsoleTextOut ENDP
; ULONG __stdcall NtGdiConvertMetafileRect( ULONG arg_01 , ULONG arg_02 );
_5_1_2600_sp3_windows_xp_NtGdiConvertMetafileRect PROC STDCALL arg_01:DWORD , arg_02:DWORD
mov eax , 4120
mov edx , 7FFE0300h
call dword ptr [edx]
ret 8
_5_1_2600_sp3_windows_xp_NtGdiConvertMetafileRect ENDP
; ULONG __stdcall NtGdiCreateBitmap( ULONG arg_01 , ULONG arg_02 , ULONG arg_03 , ULONG arg_04 , ULONG arg_05 );
_5_1_2600_sp3_windows_xp_NtGdiCreateBitmap PROC STDCALL arg_01:DWORD , arg_02:DWORD , arg_03:DWORD , arg_04:DWORD , arg_05:DWORD
mov eax , 4121
mov edx , 7FFE0300h
call dword ptr [edx]
ret 20
_5_1_2600_sp3_windows_xp_NtGdiCreateBitmap ENDP
; ULONG __stdcall NtGdiCreateClientObj( ULONG arg_01 );
_5_1_2600_sp3_windows_xp_NtGdiCreateClientObj PROC STDCALL arg_01:DWORD
mov eax , 4122
mov edx , 7FFE0300h
call dword ptr [edx]
ret 4
_5_1_2600_sp3_windows_xp_NtGdiCreateClientObj ENDP
; ULONG __stdcall NtGdiCreateColorSpace( ULONG arg_01 );
_5_1_2600_sp3_windows_xp_NtGdiCreateColorSpace PROC STDCALL arg_01:DWORD
mov eax , 4123
mov edx , 7FFE0300h
call dword ptr [edx]
ret 4
_5_1_2600_sp3_windows_xp_NtGdiCreateColorSpace ENDP
; ULONG __stdcall NtGdiCreateColorTransform( ULONG arg_01 , ULONG arg_02 , ULONG arg_03 , ULONG arg_04 , ULONG arg_05 , ULONG arg_06 , ULONG arg_07 , ULONG arg_08 );
_5_1_2600_sp3_windows_xp_NtGdiCreateColorTransform PROC STDCALL arg_01:DWORD , arg_02:DWORD , arg_03:DWORD , arg_04:DWORD , arg_05:DWORD , arg_06:DWORD , arg_07:DWORD , arg_08:DWORD
mov eax , 4124
mov edx , 7FFE0300h
call dword ptr [edx]
ret 32
_5_1_2600_sp3_windows_xp_NtGdiCreateColorTransform ENDP
; ULONG __stdcall NtGdiCreateCompatibleBitmap( ULONG arg_01 , ULONG arg_02 , ULONG arg_03 );
_5_1_2600_sp3_windows_xp_NtGdiCreateCompatibleBitmap PROC STDCALL arg_01:DWORD , arg_02:DWORD , arg_03:DWORD
mov eax , 4125
mov edx , 7FFE0300h
call dword ptr [edx]
ret 12
_5_1_2600_sp3_windows_xp_NtGdiCreateCompatibleBitmap ENDP
; ULONG __stdcall NtGdiCreateCompatibleDC( ULONG arg_01 );
_5_1_2600_sp3_windows_xp_NtGdiCreateCompatibleDC PROC STDCALL arg_01:DWORD
mov eax , 4126
mov edx , 7FFE0300h
call dword ptr [edx]
ret 4
_5_1_2600_sp3_windows_xp_NtGdiCreateCompatibleDC ENDP
; ULONG __stdcall NtGdiCreateDIBBrush( ULONG arg_01 , ULONG arg_02 , ULONG arg_03 , ULONG arg_04 , ULONG arg_05 , ULONG arg_06 );
_5_1_2600_sp3_windows_xp_NtGdiCreateDIBBrush PROC STDCALL arg_01:DWORD , arg_02:DWORD , arg_03:DWORD , arg_04:DWORD , arg_05:DWORD , arg_06:DWORD
mov eax , 4127
mov edx , 7FFE0300h
call dword ptr [edx]
ret 24
_5_1_2600_sp3_windows_xp_NtGdiCreateDIBBrush ENDP
; ULONG __stdcall NtGdiCreateDIBitmapInternal( ULONG arg_01 , ULONG arg_02 , ULONG arg_03 , ULONG arg_04 , ULONG arg_05 , ULONG arg_06 , ULONG arg_07 , ULONG arg_08 , ULONG arg_09 , ULONG arg_10 , ULONG arg_11 );
_5_1_2600_sp3_windows_xp_NtGdiCreateDIBitmapInternal PROC STDCALL arg_01:DWORD , arg_02:DWORD , arg_03:DWORD , arg_04:DWORD , arg_05:DWORD , arg_06:DWORD , arg_07:DWORD , arg_08:DWORD , arg_09:DWORD , arg_10:DWORD , arg_11:DWORD
mov eax , 4128
mov edx , 7FFE0300h
call dword ptr [edx]
ret 44
_5_1_2600_sp3_windows_xp_NtGdiCreateDIBitmapInternal ENDP
; ULONG __stdcall NtGdiCreateDIBSection( ULONG arg_01 , ULONG arg_02 , ULONG arg_03 , ULONG arg_04 , ULONG arg_05 , ULONG arg_06 , ULONG arg_07 , ULONG arg_08 , ULONG arg_09 );
_5_1_2600_sp3_windows_xp_NtGdiCreateDIBSection PROC STDCALL arg_01:DWORD , arg_02:DWORD , arg_03:DWORD , arg_04:DWORD , arg_05:DWORD , arg_06:DWORD , arg_07:DWORD , arg_08:DWORD , arg_09:DWORD
mov eax , 4129
mov edx , 7FFE0300h
call dword ptr [edx]
ret 36
_5_1_2600_sp3_windows_xp_NtGdiCreateDIBSection ENDP
; ULONG __stdcall NtGdiCreateEllipticRgn( ULONG arg_01 , ULONG arg_02 , ULONG arg_03 , ULONG arg_04 );
_5_1_2600_sp3_windows_xp_NtGdiCreateEllipticRgn PROC STDCALL arg_01:DWORD , arg_02:DWORD , arg_03:DWORD , arg_04:DWORD
mov eax , 4130
mov edx , 7FFE0300h
call dword ptr [edx]
ret 16
_5_1_2600_sp3_windows_xp_NtGdiCreateEllipticRgn ENDP
; ULONG __stdcall NtGdiCreateHalftonePalette( ULONG arg_01 );
_5_1_2600_sp3_windows_xp_NtGdiCreateHalftonePalette PROC STDCALL arg_01:DWORD
mov eax , 4131
mov edx , 7FFE0300h
call dword ptr [edx]
ret 4
_5_1_2600_sp3_windows_xp_NtGdiCreateHalftonePalette ENDP
; ULONG __stdcall NtGdiCreateHatchBrushInternal( ULONG arg_01 , ULONG arg_02 , ULONG arg_03 );
_5_1_2600_sp3_windows_xp_NtGdiCreateHatchBrushInternal PROC STDCALL arg_01:DWORD , arg_02:DWORD , arg_03:DWORD
mov eax , 4132
mov edx , 7FFE0300h
call dword ptr [edx]
ret 12
_5_1_2600_sp3_windows_xp_NtGdiCreateHatchBrushInternal ENDP
; ULONG __stdcall NtGdiCreateMetafileDC( ULONG arg_01 );
_5_1_2600_sp3_windows_xp_NtGdiCreateMetafileDC PROC STDCALL arg_01:DWORD
mov eax , 4133
mov edx , 7FFE0300h
call dword ptr [edx]
ret 4
_5_1_2600_sp3_windows_xp_NtGdiCreateMetafileDC ENDP
; ULONG __stdcall NtGdiCreatePaletteInternal( ULONG arg_01 , ULONG arg_02 );
_5_1_2600_sp3_windows_xp_NtGdiCreatePaletteInternal PROC STDCALL arg_01:DWORD , arg_02:DWORD
mov eax , 4134
mov edx , 7FFE0300h
call dword ptr [edx]
ret 8
_5_1_2600_sp3_windows_xp_NtGdiCreatePaletteInternal ENDP
; ULONG __stdcall NtGdiCreatePatternBrushInternal( ULONG arg_01 , ULONG arg_02 , ULONG arg_03 );
_5_1_2600_sp3_windows_xp_NtGdiCreatePatternBrushInternal PROC STDCALL arg_01:DWORD , arg_02:DWORD , arg_03:DWORD
mov eax , 4135
mov edx , 7FFE0300h
call dword ptr [edx]
ret 12
_5_1_2600_sp3_windows_xp_NtGdiCreatePatternBrushInternal ENDP
; ULONG __stdcall NtGdiCreatePen( ULONG arg_01 , ULONG arg_02 , ULONG arg_03 , ULONG arg_04 );
_5_1_2600_sp3_windows_xp_NtGdiCreatePen PROC STDCALL arg_01:DWORD , arg_02:DWORD , arg_03:DWORD , arg_04:DWORD
mov eax , 4136
mov edx , 7FFE0300h
call dword ptr [edx]
ret 16
_5_1_2600_sp3_windows_xp_NtGdiCreatePen ENDP
; ULONG __stdcall NtGdiCreateRectRgn( ULONG arg_01 , ULONG arg_02 , ULONG arg_03 , ULONG arg_04 );
_5_1_2600_sp3_windows_xp_NtGdiCreateRectRgn PROC STDCALL arg_01:DWORD , arg_02:DWORD , arg_03:DWORD , arg_04:DWORD
mov eax , 4137
mov edx , 7FFE0300h
call dword ptr [edx]
ret 16
_5_1_2600_sp3_windows_xp_NtGdiCreateRectRgn ENDP
; ULONG __stdcall NtGdiCreateRoundRectRgn( ULONG arg_01 , ULONG arg_02 , ULONG arg_03 , ULONG arg_04 , ULONG arg_05 , ULONG arg_06 );
_5_1_2600_sp3_windows_xp_NtGdiCreateRoundRectRgn PROC STDCALL arg_01:DWORD , arg_02:DWORD , arg_03:DWORD , arg_04:DWORD , arg_05:DWORD , arg_06:DWORD
mov eax , 4138
mov edx , 7FFE0300h
call dword ptr [edx]
ret 24
_5_1_2600_sp3_windows_xp_NtGdiCreateRoundRectRgn ENDP
; ULONG __stdcall NtGdiCreateServerMetaFile( ULONG arg_01 , ULONG arg_02 , ULONG arg_03 , ULONG arg_04 , ULONG arg_05 , ULONG arg_06 );
_5_1_2600_sp3_windows_xp_NtGdiCreateServerMetaFile PROC STDCALL arg_01:DWORD , arg_02:DWORD , arg_03:DWORD , arg_04:DWORD , arg_05:DWORD , arg_06:DWORD
mov eax , 4139
mov edx , 7FFE0300h
call dword ptr [edx]
ret 24
_5_1_2600_sp3_windows_xp_NtGdiCreateServerMetaFile ENDP
; ULONG __stdcall NtGdiCreateSolidBrush( ULONG arg_01 , ULONG arg_02 );
_5_1_2600_sp3_windows_xp_NtGdiCreateSolidBrush PROC STDCALL arg_01:DWORD , arg_02:DWORD
mov eax , 4140
mov edx , 7FFE0300h
call dword ptr [edx]
ret 8
_5_1_2600_sp3_windows_xp_NtGdiCreateSolidBrush ENDP
; ULONG __stdcall NtGdiD3dContextCreate( ULONG arg_01 , ULONG arg_02 , ULONG arg_03 , ULONG arg_04 );
_5_1_2600_sp3_windows_xp_NtGdiD3dContextCreate PROC STDCALL arg_01:DWORD , arg_02:DWORD , arg_03:DWORD , arg_04:DWORD
mov eax , 4141
mov edx , 7FFE0300h
call dword ptr [edx]
ret 16
_5_1_2600_sp3_windows_xp_NtGdiD3dContextCreate ENDP
; ULONG __stdcall NtGdiD3dContextDestroy( ULONG arg_01 );
_5_1_2600_sp3_windows_xp_NtGdiD3dContextDestroy PROC STDCALL arg_01:DWORD
mov eax , 4142
mov edx , 7FFE0300h
call dword ptr [edx]
ret 4
_5_1_2600_sp3_windows_xp_NtGdiD3dContextDestroy ENDP
; ULONG __stdcall NtGdiD3dContextDestroyAll( ULONG arg_01 );
_5_1_2600_sp3_windows_xp_NtGdiD3dContextDestroyAll PROC STDCALL arg_01:DWORD
mov eax , 4143
mov edx , 7FFE0300h
call dword ptr [edx]
ret 4
_5_1_2600_sp3_windows_xp_NtGdiD3dContextDestroyAll ENDP
; ULONG __stdcall NtGdiD3dValidateTextureStageState( ULONG arg_01 );
_5_1_2600_sp3_windows_xp_NtGdiD3dValidateTextureStageState PROC STDCALL arg_01:DWORD
mov eax , 4144
mov edx , 7FFE0300h
call dword ptr [edx]
ret 4
_5_1_2600_sp3_windows_xp_NtGdiD3dValidateTextureStageState ENDP
; ULONG __stdcall NtGdiD3dDrawPrimitives2( ULONG arg_01 , ULONG arg_02 , ULONG arg_03 , ULONG arg_04 , ULONG arg_05 , ULONG arg_06 , ULONG arg_07 );
_5_1_2600_sp3_windows_xp_NtGdiD3dDrawPrimitives2 PROC STDCALL arg_01:DWORD , arg_02:DWORD , arg_03:DWORD , arg_04:DWORD , arg_05:DWORD , arg_06:DWORD , arg_07:DWORD
mov eax , 4145
mov edx , 7FFE0300h
call dword ptr [edx]
ret 28
_5_1_2600_sp3_windows_xp_NtGdiD3dDrawPrimitives2 ENDP
; ULONG __stdcall NtGdiDdGetDriverState( ULONG arg_01 );
_5_1_2600_sp3_windows_xp_NtGdiDdGetDriverState PROC STDCALL arg_01:DWORD
mov eax , 4146
mov edx , 7FFE0300h
call dword ptr [edx]
ret 4
_5_1_2600_sp3_windows_xp_NtGdiDdGetDriverState ENDP
; ULONG __stdcall NtGdiDdAddAttachedSurface( ULONG arg_01 , ULONG arg_02 , ULONG arg_03 );
_5_1_2600_sp3_windows_xp_NtGdiDdAddAttachedSurface PROC STDCALL arg_01:DWORD , arg_02:DWORD , arg_03:DWORD
mov eax , 4147
mov edx , 7FFE0300h
call dword ptr [edx]
ret 12
_5_1_2600_sp3_windows_xp_NtGdiDdAddAttachedSurface ENDP
; ULONG __stdcall NtGdiDdAlphaBlt( ULONG arg_01 , ULONG arg_02 , ULONG arg_03 );
_5_1_2600_sp3_windows_xp_NtGdiDdAlphaBlt PROC STDCALL arg_01:DWORD , arg_02:DWORD , arg_03:DWORD
mov eax , 4148
mov edx , 7FFE0300h
call dword ptr [edx]
ret 12
_5_1_2600_sp3_windows_xp_NtGdiDdAlphaBlt ENDP
; ULONG __stdcall NtGdiDdAttachSurface( ULONG arg_01 , ULONG arg_02 );
_5_1_2600_sp3_windows_xp_NtGdiDdAttachSurface PROC STDCALL arg_01:DWORD , arg_02:DWORD
mov eax , 4149
mov edx , 7FFE0300h
call dword ptr [edx]
ret 8
_5_1_2600_sp3_windows_xp_NtGdiDdAttachSurface ENDP
; ULONG __stdcall NtGdiDdBeginMoCompFrame( ULONG arg_01 , ULONG arg_02 );
_5_1_2600_sp3_windows_xp_NtGdiDdBeginMoCompFrame PROC STDCALL arg_01:DWORD , arg_02:DWORD
mov eax , 4150
mov edx , 7FFE0300h
call dword ptr [edx]
ret 8
_5_1_2600_sp3_windows_xp_NtGdiDdBeginMoCompFrame ENDP
; ULONG __stdcall NtGdiDdBlt( ULONG arg_01 , ULONG arg_02 , ULONG arg_03 );
_5_1_2600_sp3_windows_xp_NtGdiDdBlt PROC STDCALL arg_01:DWORD , arg_02:DWORD , arg_03:DWORD
mov eax , 4151
mov edx , 7FFE0300h
call dword ptr [edx]
ret 12
_5_1_2600_sp3_windows_xp_NtGdiDdBlt ENDP
; ULONG __stdcall NtGdiDdCanCreateSurface( ULONG arg_01 , ULONG arg_02 );
_5_1_2600_sp3_windows_xp_NtGdiDdCanCreateSurface PROC STDCALL arg_01:DWORD , arg_02:DWORD
mov eax , 4152
mov edx , 7FFE0300h
call dword ptr [edx]
ret 8
_5_1_2600_sp3_windows_xp_NtGdiDdCanCreateSurface ENDP
; ULONG __stdcall NtGdiDdCanCreateD3DBuffer( ULONG arg_01 , ULONG arg_02 );
_5_1_2600_sp3_windows_xp_NtGdiDdCanCreateD3DBuffer PROC STDCALL arg_01:DWORD , arg_02:DWORD
mov eax , 4153
mov edx , 7FFE0300h
call dword ptr [edx]
ret 8
_5_1_2600_sp3_windows_xp_NtGdiDdCanCreateD3DBuffer ENDP
; ULONG __stdcall NtGdiDdColorControl( ULONG arg_01 , ULONG arg_02 );
_5_1_2600_sp3_windows_xp_NtGdiDdColorControl PROC STDCALL arg_01:DWORD , arg_02:DWORD
mov eax , 4154
mov edx , 7FFE0300h
call dword ptr [edx]
ret 8
_5_1_2600_sp3_windows_xp_NtGdiDdColorControl ENDP
; ULONG __stdcall NtGdiDdCreateDirectDrawObject( ULONG arg_01 );
_5_1_2600_sp3_windows_xp_NtGdiDdCreateDirectDrawObject PROC STDCALL arg_01:DWORD
mov eax , 4155
mov edx , 7FFE0300h
call dword ptr [edx]
ret 4
_5_1_2600_sp3_windows_xp_NtGdiDdCreateDirectDrawObject ENDP
; ULONG __stdcall NtGdiDdCreateSurface( ULONG arg_01 , ULONG arg_02 , ULONG arg_03 , ULONG arg_04 , ULONG arg_05 , ULONG arg_06 , ULONG arg_07 , ULONG arg_08 );
_5_1_2600_sp3_windows_xp_NtGdiDdCreateSurface PROC STDCALL arg_01:DWORD , arg_02:DWORD , arg_03:DWORD , arg_04:DWORD , arg_05:DWORD , arg_06:DWORD , arg_07:DWORD , arg_08:DWORD
mov eax , 4156
mov edx , 7FFE0300h
call dword ptr [edx]
ret 32
_5_1_2600_sp3_windows_xp_NtGdiDdCreateSurface ENDP
; ULONG __stdcall NtGdiDdCreateD3DBuffer( ULONG arg_01 , ULONG arg_02 , ULONG arg_03 , ULONG arg_04 , ULONG arg_05 , ULONG arg_06 , ULONG arg_07 , ULONG arg_08 );
_5_1_2600_sp3_windows_xp_NtGdiDdCreateD3DBuffer PROC STDCALL arg_01:DWORD , arg_02:DWORD , arg_03:DWORD , arg_04:DWORD , arg_05:DWORD , arg_06:DWORD , arg_07:DWORD , arg_08:DWORD
mov eax , 4157
mov edx , 7FFE0300h
call dword ptr [edx]
ret 32
_5_1_2600_sp3_windows_xp_NtGdiDdCreateD3DBuffer ENDP
; ULONG __stdcall NtGdiDdCreateMoComp( ULONG arg_01 , ULONG arg_02 );
_5_1_2600_sp3_windows_xp_NtGdiDdCreateMoComp PROC STDCALL arg_01:DWORD , arg_02:DWORD
mov eax , 4158
mov edx , 7FFE0300h
call dword ptr [edx]
ret 8
_5_1_2600_sp3_windows_xp_NtGdiDdCreateMoComp ENDP
; ULONG __stdcall NtGdiDdCreateSurfaceObject( ULONG arg_01 , ULONG arg_02 , ULONG arg_03 , ULONG arg_04 , ULONG arg_05 , ULONG arg_06 );
_5_1_2600_sp3_windows_xp_NtGdiDdCreateSurfaceObject PROC STDCALL arg_01:DWORD , arg_02:DWORD , arg_03:DWORD , arg_04:DWORD , arg_05:DWORD , arg_06:DWORD
mov eax , 4159
mov edx , 7FFE0300h
call dword ptr [edx]
ret 24
_5_1_2600_sp3_windows_xp_NtGdiDdCreateSurfaceObject ENDP
; ULONG __stdcall NtGdiDdDeleteDirectDrawObject( ULONG arg_01 );
_5_1_2600_sp3_windows_xp_NtGdiDdDeleteDirectDrawObject PROC STDCALL arg_01:DWORD
mov eax , 4160
mov edx , 7FFE0300h
call dword ptr [edx]
ret 4
_5_1_2600_sp3_windows_xp_NtGdiDdDeleteDirectDrawObject ENDP
; ULONG __stdcall NtGdiDdDeleteSurfaceObject( ULONG arg_01 );
_5_1_2600_sp3_windows_xp_NtGdiDdDeleteSurfaceObject PROC STDCALL arg_01:DWORD
mov eax , 4161
mov edx , 7FFE0300h
call dword ptr [edx]
ret 4
_5_1_2600_sp3_windows_xp_NtGdiDdDeleteSurfaceObject ENDP
; ULONG __stdcall NtGdiDdDestroyMoComp( ULONG arg_01 , ULONG arg_02 );
_5_1_2600_sp3_windows_xp_NtGdiDdDestroyMoComp PROC STDCALL arg_01:DWORD , arg_02:DWORD
mov eax , 4162
mov edx , 7FFE0300h
call dword ptr [edx]
ret 8
_5_1_2600_sp3_windows_xp_NtGdiDdDestroyMoComp ENDP
; ULONG __stdcall NtGdiDdDestroySurface( ULONG arg_01 , ULONG arg_02 );
_5_1_2600_sp3_windows_xp_NtGdiDdDestroySurface PROC STDCALL arg_01:DWORD , arg_02:DWORD
mov eax , 4163
mov edx , 7FFE0300h
call dword ptr [edx]
ret 8
_5_1_2600_sp3_windows_xp_NtGdiDdDestroySurface ENDP
; ULONG __stdcall NtGdiDdDestroyD3DBuffer( ULONG arg_01 );
_5_1_2600_sp3_windows_xp_NtGdiDdDestroyD3DBuffer PROC STDCALL arg_01:DWORD
mov eax , 4164
mov edx , 7FFE0300h
call dword ptr [edx]
ret 4
_5_1_2600_sp3_windows_xp_NtGdiDdDestroyD3DBuffer ENDP
; ULONG __stdcall NtGdiDdEndMoCompFrame( ULONG arg_01 , ULONG arg_02 );
_5_1_2600_sp3_windows_xp_NtGdiDdEndMoCompFrame PROC STDCALL arg_01:DWORD , arg_02:DWORD
mov eax , 4165
mov edx , 7FFE0300h
call dword ptr [edx]
ret 8
_5_1_2600_sp3_windows_xp_NtGdiDdEndMoCompFrame ENDP
; ULONG __stdcall NtGdiDdFlip( ULONG arg_01 , ULONG arg_02 , ULONG arg_03 , ULONG arg_04 , ULONG arg_05 );
_5_1_2600_sp3_windows_xp_NtGdiDdFlip PROC STDCALL arg_01:DWORD , arg_02:DWORD , arg_03:DWORD , arg_04:DWORD , arg_05:DWORD
mov eax , 4166
mov edx , 7FFE0300h
call dword ptr [edx]
ret 20
_5_1_2600_sp3_windows_xp_NtGdiDdFlip ENDP
; ULONG __stdcall NtGdiDdFlipToGDISurface( ULONG arg_01 , ULONG arg_02 );
_5_1_2600_sp3_windows_xp_NtGdiDdFlipToGDISurface PROC STDCALL arg_01:DWORD , arg_02:DWORD
mov eax , 4167
mov edx , 7FFE0300h
call dword ptr [edx]
ret 8
_5_1_2600_sp3_windows_xp_NtGdiDdFlipToGDISurface ENDP
; ULONG __stdcall NtGdiDdGetAvailDriverMemory( ULONG arg_01 , ULONG arg_02 );
_5_1_2600_sp3_windows_xp_NtGdiDdGetAvailDriverMemory PROC STDCALL arg_01:DWORD , arg_02:DWORD
mov eax , 4168
mov edx , 7FFE0300h
call dword ptr [edx]
ret 8
_5_1_2600_sp3_windows_xp_NtGdiDdGetAvailDriverMemory ENDP
; ULONG __stdcall NtGdiDdGetBltStatus( ULONG arg_01 , ULONG arg_02 );
_5_1_2600_sp3_windows_xp_NtGdiDdGetBltStatus PROC STDCALL arg_01:DWORD , arg_02:DWORD
mov eax , 4169
mov edx , 7FFE0300h
call dword ptr [edx]
ret 8
_5_1_2600_sp3_windows_xp_NtGdiDdGetBltStatus ENDP
; ULONG __stdcall NtGdiDdGetDC( ULONG arg_01 , ULONG arg_02 );
_5_1_2600_sp3_windows_xp_NtGdiDdGetDC PROC STDCALL arg_01:DWORD , arg_02:DWORD
mov eax , 4170
mov edx , 7FFE0300h
call dword ptr [edx]
ret 8
_5_1_2600_sp3_windows_xp_NtGdiDdGetDC ENDP
; ULONG __stdcall NtGdiDdGetDriverInfo( ULONG arg_01 , ULONG arg_02 );
_5_1_2600_sp3_windows_xp_NtGdiDdGetDriverInfo PROC STDCALL arg_01:DWORD , arg_02:DWORD
mov eax , 4171
mov edx , 7FFE0300h
call dword ptr [edx]
ret 8
_5_1_2600_sp3_windows_xp_NtGdiDdGetDriverInfo ENDP
; ULONG __stdcall NtGdiDdGetDxHandle( ULONG arg_01 , ULONG arg_02 , ULONG arg_03 );
_5_1_2600_sp3_windows_xp_NtGdiDdGetDxHandle PROC STDCALL arg_01:DWORD , arg_02:DWORD , arg_03:DWORD
mov eax , 4172
mov edx , 7FFE0300h
call dword ptr [edx]
ret 12
_5_1_2600_sp3_windows_xp_NtGdiDdGetDxHandle ENDP
; ULONG __stdcall NtGdiDdGetFlipStatus( ULONG arg_01 , ULONG arg_02 );
_5_1_2600_sp3_windows_xp_NtGdiDdGetFlipStatus PROC STDCALL arg_01:DWORD , arg_02:DWORD
mov eax , 4173
mov edx , 7FFE0300h
call dword ptr [edx]
ret 8
_5_1_2600_sp3_windows_xp_NtGdiDdGetFlipStatus ENDP
; ULONG __stdcall NtGdiDdGetInternalMoCompInfo( ULONG arg_01 , ULONG arg_02 );
_5_1_2600_sp3_windows_xp_NtGdiDdGetInternalMoCompInfo PROC STDCALL arg_01:DWORD , arg_02:DWORD
mov eax , 4174
mov edx , 7FFE0300h
call dword ptr [edx]
ret 8
_5_1_2600_sp3_windows_xp_NtGdiDdGetInternalMoCompInfo ENDP
; ULONG __stdcall NtGdiDdGetMoCompBuffInfo( ULONG arg_01 , ULONG arg_02 );
_5_1_2600_sp3_windows_xp_NtGdiDdGetMoCompBuffInfo PROC STDCALL arg_01:DWORD , arg_02:DWORD
mov eax , 4175
mov edx , 7FFE0300h
call dword ptr [edx]
ret 8
_5_1_2600_sp3_windows_xp_NtGdiDdGetMoCompBuffInfo ENDP
; ULONG __stdcall NtGdiDdGetMoCompGuids( ULONG arg_01 , ULONG arg_02 );
_5_1_2600_sp3_windows_xp_NtGdiDdGetMoCompGuids PROC STDCALL arg_01:DWORD , arg_02:DWORD
mov eax , 4176
mov edx , 7FFE0300h
call dword ptr [edx]
ret 8
_5_1_2600_sp3_windows_xp_NtGdiDdGetMoCompGuids ENDP
; ULONG __stdcall NtGdiDdGetMoCompFormats( ULONG arg_01 , ULONG arg_02 );
_5_1_2600_sp3_windows_xp_NtGdiDdGetMoCompFormats PROC STDCALL arg_01:DWORD , arg_02:DWORD
mov eax , 4177
mov edx , 7FFE0300h
call dword ptr [edx]
ret 8
_5_1_2600_sp3_windows_xp_NtGdiDdGetMoCompFormats ENDP
; ULONG __stdcall NtGdiDdGetScanLine( ULONG arg_01 , ULONG arg_02 );
_5_1_2600_sp3_windows_xp_NtGdiDdGetScanLine PROC STDCALL arg_01:DWORD , arg_02:DWORD
mov eax , 4178
mov edx , 7FFE0300h
call dword ptr [edx]
ret 8
_5_1_2600_sp3_windows_xp_NtGdiDdGetScanLine ENDP
; ULONG __stdcall NtGdiDdLock( ULONG arg_01 , ULONG arg_02 , ULONG arg_03 );
_5_1_2600_sp3_windows_xp_NtGdiDdLock PROC STDCALL arg_01:DWORD , arg_02:DWORD , arg_03:DWORD
mov eax , 4179
mov edx , 7FFE0300h
call dword ptr [edx]
ret 12
_5_1_2600_sp3_windows_xp_NtGdiDdLock ENDP
; ULONG __stdcall NtGdiDdLockD3D( ULONG arg_01 , ULONG arg_02 );
_5_1_2600_sp3_windows_xp_NtGdiDdLockD3D PROC STDCALL arg_01:DWORD , arg_02:DWORD
mov eax , 4180
mov edx , 7FFE0300h
call dword ptr [edx]
ret 8
_5_1_2600_sp3_windows_xp_NtGdiDdLockD3D ENDP
; ULONG __stdcall NtGdiDdQueryDirectDrawObject( ULONG arg_01 , ULONG arg_02 , ULONG arg_03 , ULONG arg_04 , ULONG arg_05 , ULONG arg_06 , ULONG arg_07 , ULONG arg_08 , ULONG arg_09 , ULONG arg_10 , ULONG arg_11 );
_5_1_2600_sp3_windows_xp_NtGdiDdQueryDirectDrawObject PROC STDCALL arg_01:DWORD , arg_02:DWORD , arg_03:DWORD , arg_04:DWORD , arg_05:DWORD , arg_06:DWORD , arg_07:DWORD , arg_08:DWORD , arg_09:DWORD , arg_10:DWORD , arg_11:DWORD
mov eax , 4181
mov edx , 7FFE0300h
call dword ptr [edx]
ret 44
_5_1_2600_sp3_windows_xp_NtGdiDdQueryDirectDrawObject ENDP
; ULONG __stdcall NtGdiDdQueryMoCompStatus( ULONG arg_01 , ULONG arg_02 );
_5_1_2600_sp3_windows_xp_NtGdiDdQueryMoCompStatus PROC STDCALL arg_01:DWORD , arg_02:DWORD
mov eax , 4182
mov edx , 7FFE0300h
call dword ptr [edx]
ret 8
_5_1_2600_sp3_windows_xp_NtGdiDdQueryMoCompStatus ENDP
; ULONG __stdcall NtGdiDdReenableDirectDrawObject( ULONG arg_01 , ULONG arg_02 );
_5_1_2600_sp3_windows_xp_NtGdiDdReenableDirectDrawObject PROC STDCALL arg_01:DWORD , arg_02:DWORD
mov eax , 4183
mov edx , 7FFE0300h
call dword ptr [edx]
ret 8
_5_1_2600_sp3_windows_xp_NtGdiDdReenableDirectDrawObject ENDP
; ULONG __stdcall NtGdiDdReleaseDC( ULONG arg_01 );
_5_1_2600_sp3_windows_xp_NtGdiDdReleaseDC PROC STDCALL arg_01:DWORD
mov eax , 4184
mov edx , 7FFE0300h
call dword ptr [edx]
ret 4
_5_1_2600_sp3_windows_xp_NtGdiDdReleaseDC ENDP
; ULONG __stdcall NtGdiDdRenderMoComp( ULONG arg_01 , ULONG arg_02 );
_5_1_2600_sp3_windows_xp_NtGdiDdRenderMoComp PROC STDCALL arg_01:DWORD , arg_02:DWORD
mov eax , 4185
mov edx , 7FFE0300h
call dword ptr [edx]
ret 8
_5_1_2600_sp3_windows_xp_NtGdiDdRenderMoComp ENDP
; ULONG __stdcall NtGdiDdResetVisrgn( ULONG arg_01 , ULONG arg_02 );
_5_1_2600_sp3_windows_xp_NtGdiDdResetVisrgn PROC STDCALL arg_01:DWORD , arg_02:DWORD
mov eax , 4186
mov edx , 7FFE0300h
call dword ptr [edx]
ret 8
_5_1_2600_sp3_windows_xp_NtGdiDdResetVisrgn ENDP
; ULONG __stdcall NtGdiDdSetColorKey( ULONG arg_01 , ULONG arg_02 );
_5_1_2600_sp3_windows_xp_NtGdiDdSetColorKey PROC STDCALL arg_01:DWORD , arg_02:DWORD
mov eax , 4187
mov edx , 7FFE0300h
call dword ptr [edx]
ret 8
_5_1_2600_sp3_windows_xp_NtGdiDdSetColorKey ENDP
; ULONG __stdcall NtGdiDdSetExclusiveMode( ULONG arg_01 , ULONG arg_02 );
_5_1_2600_sp3_windows_xp_NtGdiDdSetExclusiveMode PROC STDCALL arg_01:DWORD , arg_02:DWORD
mov eax , 4188
mov edx , 7FFE0300h
call dword ptr [edx]
ret 8
_5_1_2600_sp3_windows_xp_NtGdiDdSetExclusiveMode ENDP
; ULONG __stdcall NtGdiDdSetGammaRamp( ULONG arg_01 , ULONG arg_02 , ULONG arg_03 );
_5_1_2600_sp3_windows_xp_NtGdiDdSetGammaRamp PROC STDCALL arg_01:DWORD , arg_02:DWORD , arg_03:DWORD
mov eax , 4189
mov edx , 7FFE0300h
call dword ptr [edx]
ret 12
_5_1_2600_sp3_windows_xp_NtGdiDdSetGammaRamp ENDP
; ULONG __stdcall NtGdiDdCreateSurfaceEx( ULONG arg_01 , ULONG arg_02 , ULONG arg_03 );
_5_1_2600_sp3_windows_xp_NtGdiDdCreateSurfaceEx PROC STDCALL arg_01:DWORD , arg_02:DWORD , arg_03:DWORD
mov eax , 4190
mov edx , 7FFE0300h
call dword ptr [edx]
ret 12
_5_1_2600_sp3_windows_xp_NtGdiDdCreateSurfaceEx ENDP
; ULONG __stdcall NtGdiDdSetOverlayPosition( ULONG arg_01 , ULONG arg_02 , ULONG arg_03 );
_5_1_2600_sp3_windows_xp_NtGdiDdSetOverlayPosition PROC STDCALL arg_01:DWORD , arg_02:DWORD , arg_03:DWORD
mov eax , 4191
mov edx , 7FFE0300h
call dword ptr [edx]
ret 12
_5_1_2600_sp3_windows_xp_NtGdiDdSetOverlayPosition ENDP
; ULONG __stdcall NtGdiDdUnattachSurface( ULONG arg_01 , ULONG arg_02 );
_5_1_2600_sp3_windows_xp_NtGdiDdUnattachSurface PROC STDCALL arg_01:DWORD , arg_02:DWORD
mov eax , 4192
mov edx , 7FFE0300h
call dword ptr [edx]
ret 8
_5_1_2600_sp3_windows_xp_NtGdiDdUnattachSurface ENDP
; ULONG __stdcall NtGdiDdUnlock( ULONG arg_01 , ULONG arg_02 );
_5_1_2600_sp3_windows_xp_NtGdiDdUnlock PROC STDCALL arg_01:DWORD , arg_02:DWORD
mov eax , 4193
mov edx , 7FFE0300h
call dword ptr [edx]
ret 8
_5_1_2600_sp3_windows_xp_NtGdiDdUnlock ENDP
; ULONG __stdcall NtGdiDdUnlockD3D( ULONG arg_01 , ULONG arg_02 );
_5_1_2600_sp3_windows_xp_NtGdiDdUnlockD3D PROC STDCALL arg_01:DWORD , arg_02:DWORD
mov eax , 4194
mov edx , 7FFE0300h
call dword ptr [edx]
ret 8
_5_1_2600_sp3_windows_xp_NtGdiDdUnlockD3D ENDP
; ULONG __stdcall NtGdiDdUpdateOverlay( ULONG arg_01 , ULONG arg_02 , ULONG arg_03 );
_5_1_2600_sp3_windows_xp_NtGdiDdUpdateOverlay PROC STDCALL arg_01:DWORD , arg_02:DWORD , arg_03:DWORD
mov eax , 4195
mov edx , 7FFE0300h
call dword ptr [edx]
ret 12
_5_1_2600_sp3_windows_xp_NtGdiDdUpdateOverlay ENDP
; ULONG __stdcall NtGdiDdWaitForVerticalBlank( ULONG arg_01 , ULONG arg_02 );
_5_1_2600_sp3_windows_xp_NtGdiDdWaitForVerticalBlank PROC STDCALL arg_01:DWORD , arg_02:DWORD
mov eax , 4196
mov edx , 7FFE0300h
call dword ptr [edx]
ret 8
_5_1_2600_sp3_windows_xp_NtGdiDdWaitForVerticalBlank ENDP
; ULONG __stdcall NtGdiDvpCanCreateVideoPort( ULONG arg_01 , ULONG arg_02 );
_5_1_2600_sp3_windows_xp_NtGdiDvpCanCreateVideoPort PROC STDCALL arg_01:DWORD , arg_02:DWORD
mov eax , 4197
mov edx , 7FFE0300h
call dword ptr [edx]
ret 8
_5_1_2600_sp3_windows_xp_NtGdiDvpCanCreateVideoPort ENDP
; ULONG __stdcall NtGdiDvpColorControl( ULONG arg_01 , ULONG arg_02 );
_5_1_2600_sp3_windows_xp_NtGdiDvpColorControl PROC STDCALL arg_01:DWORD , arg_02:DWORD
mov eax , 4198
mov edx , 7FFE0300h
call dword ptr [edx]
ret 8
_5_1_2600_sp3_windows_xp_NtGdiDvpColorControl ENDP
; ULONG __stdcall NtGdiDvpCreateVideoPort( ULONG arg_01 , ULONG arg_02 );
_5_1_2600_sp3_windows_xp_NtGdiDvpCreateVideoPort PROC STDCALL arg_01:DWORD , arg_02:DWORD
mov eax , 4199
mov edx , 7FFE0300h
call dword ptr [edx]
ret 8
_5_1_2600_sp3_windows_xp_NtGdiDvpCreateVideoPort ENDP
; ULONG __stdcall NtGdiDvpDestroyVideoPort( ULONG arg_01 , ULONG arg_02 );
_5_1_2600_sp3_windows_xp_NtGdiDvpDestroyVideoPort PROC STDCALL arg_01:DWORD , arg_02:DWORD
mov eax , 4200
mov edx , 7FFE0300h
call dword ptr [edx]
ret 8
_5_1_2600_sp3_windows_xp_NtGdiDvpDestroyVideoPort ENDP
; ULONG __stdcall NtGdiDvpFlipVideoPort( ULONG arg_01 , ULONG arg_02 , ULONG arg_03 , ULONG arg_04 );
_5_1_2600_sp3_windows_xp_NtGdiDvpFlipVideoPort PROC STDCALL arg_01:DWORD , arg_02:DWORD , arg_03:DWORD , arg_04:DWORD
mov eax , 4201
mov edx , 7FFE0300h
call dword ptr [edx]
ret 16
_5_1_2600_sp3_windows_xp_NtGdiDvpFlipVideoPort ENDP
; ULONG __stdcall NtGdiDvpGetVideoPortBandwidth( ULONG arg_01 , ULONG arg_02 );
_5_1_2600_sp3_windows_xp_NtGdiDvpGetVideoPortBandwidth PROC STDCALL arg_01:DWORD , arg_02:DWORD
mov eax , 4202
mov edx , 7FFE0300h
call dword ptr [edx]
ret 8
_5_1_2600_sp3_windows_xp_NtGdiDvpGetVideoPortBandwidth ENDP
; ULONG __stdcall NtGdiDvpGetVideoPortField( ULONG arg_01 , ULONG arg_02 );
_5_1_2600_sp3_windows_xp_NtGdiDvpGetVideoPortField PROC STDCALL arg_01:DWORD , arg_02:DWORD
mov eax , 4203
mov edx , 7FFE0300h
call dword ptr [edx]
ret 8
_5_1_2600_sp3_windows_xp_NtGdiDvpGetVideoPortField ENDP
; ULONG __stdcall NtGdiDvpGetVideoPortFlipStatus( ULONG arg_01 , ULONG arg_02 );
_5_1_2600_sp3_windows_xp_NtGdiDvpGetVideoPortFlipStatus PROC STDCALL arg_01:DWORD , arg_02:DWORD
mov eax , 4204
mov edx , 7FFE0300h
call dword ptr [edx]
ret 8
_5_1_2600_sp3_windows_xp_NtGdiDvpGetVideoPortFlipStatus ENDP
; ULONG __stdcall NtGdiDvpGetVideoPortInputFormats( ULONG arg_01 , ULONG arg_02 );
_5_1_2600_sp3_windows_xp_NtGdiDvpGetVideoPortInputFormats PROC STDCALL arg_01:DWORD , arg_02:DWORD
mov eax , 4205
mov edx , 7FFE0300h
call dword ptr [edx]
ret 8
_5_1_2600_sp3_windows_xp_NtGdiDvpGetVideoPortInputFormats ENDP
; ULONG __stdcall NtGdiDvpGetVideoPortLine( ULONG arg_01 , ULONG arg_02 );
_5_1_2600_sp3_windows_xp_NtGdiDvpGetVideoPortLine PROC STDCALL arg_01:DWORD , arg_02:DWORD
mov eax , 4206
mov edx , 7FFE0300h
call dword ptr [edx]
ret 8
_5_1_2600_sp3_windows_xp_NtGdiDvpGetVideoPortLine ENDP
; ULONG __stdcall NtGdiDvpGetVideoPortOutputFormats( ULONG arg_01 , ULONG arg_02 );
_5_1_2600_sp3_windows_xp_NtGdiDvpGetVideoPortOutputFormats PROC STDCALL arg_01:DWORD , arg_02:DWORD
mov eax , 4207
mov edx , 7FFE0300h
call dword ptr [edx]
ret 8
_5_1_2600_sp3_windows_xp_NtGdiDvpGetVideoPortOutputFormats ENDP
; ULONG __stdcall NtGdiDvpGetVideoPortConnectInfo( ULONG arg_01 , ULONG arg_02 );
_5_1_2600_sp3_windows_xp_NtGdiDvpGetVideoPortConnectInfo PROC STDCALL arg_01:DWORD , arg_02:DWORD
mov eax , 4208
mov edx , 7FFE0300h
call dword ptr [edx]
ret 8
_5_1_2600_sp3_windows_xp_NtGdiDvpGetVideoPortConnectInfo ENDP
; ULONG __stdcall NtGdiDvpGetVideoSignalStatus( ULONG arg_01 , ULONG arg_02 );
_5_1_2600_sp3_windows_xp_NtGdiDvpGetVideoSignalStatus PROC STDCALL arg_01:DWORD , arg_02:DWORD
mov eax , 4209
mov edx , 7FFE0300h
call dword ptr [edx]
ret 8
_5_1_2600_sp3_windows_xp_NtGdiDvpGetVideoSignalStatus ENDP
; ULONG __stdcall NtGdiDvpUpdateVideoPort( ULONG arg_01 , ULONG arg_02 , ULONG arg_03 , ULONG arg_04 );
_5_1_2600_sp3_windows_xp_NtGdiDvpUpdateVideoPort PROC STDCALL arg_01:DWORD , arg_02:DWORD , arg_03:DWORD , arg_04:DWORD
mov eax , 4210
mov edx , 7FFE0300h
call dword ptr [edx]
ret 16
_5_1_2600_sp3_windows_xp_NtGdiDvpUpdateVideoPort ENDP
; ULONG __stdcall NtGdiDvpWaitForVideoPortSync( ULONG arg_01 , ULONG arg_02 );
_5_1_2600_sp3_windows_xp_NtGdiDvpWaitForVideoPortSync PROC STDCALL arg_01:DWORD , arg_02:DWORD
mov eax , 4211
mov edx , 7FFE0300h
call dword ptr [edx]
ret 8
_5_1_2600_sp3_windows_xp_NtGdiDvpWaitForVideoPortSync ENDP
; ULONG __stdcall NtGdiDvpAcquireNotification( ULONG arg_01 , ULONG arg_02 , ULONG arg_03 );
_5_1_2600_sp3_windows_xp_NtGdiDvpAcquireNotification PROC STDCALL arg_01:DWORD , arg_02:DWORD , arg_03:DWORD
mov eax , 4212
mov edx , 7FFE0300h
call dword ptr [edx]
ret 12
_5_1_2600_sp3_windows_xp_NtGdiDvpAcquireNotification ENDP
; ULONG __stdcall NtGdiDvpReleaseNotification( ULONG arg_01 , ULONG arg_02 );
_5_1_2600_sp3_windows_xp_NtGdiDvpReleaseNotification PROC STDCALL arg_01:DWORD , arg_02:DWORD
mov eax , 4213
mov edx , 7FFE0300h
call dword ptr [edx]
ret 8
_5_1_2600_sp3_windows_xp_NtGdiDvpReleaseNotification ENDP
; ULONG __stdcall NtGdiDxgGenericThunk( ULONG arg_01 , ULONG arg_02 , ULONG arg_03 , ULONG arg_04 , ULONG arg_05 , ULONG arg_06 );
_5_1_2600_sp3_windows_xp_NtGdiDxgGenericThunk PROC STDCALL arg_01:DWORD , arg_02:DWORD , arg_03:DWORD , arg_04:DWORD , arg_05:DWORD , arg_06:DWORD
mov eax , 4214
mov edx , 7FFE0300h
call dword ptr [edx]
ret 24
_5_1_2600_sp3_windows_xp_NtGdiDxgGenericThunk ENDP
; ULONG __stdcall NtGdiDeleteClientObj( ULONG arg_01 );
_5_1_2600_sp3_windows_xp_NtGdiDeleteClientObj PROC STDCALL arg_01:DWORD
mov eax , 4215
mov edx , 7FFE0300h
call dword ptr [edx]
ret 4
_5_1_2600_sp3_windows_xp_NtGdiDeleteClientObj ENDP
; ULONG __stdcall NtGdiDeleteColorSpace( ULONG arg_01 );
_5_1_2600_sp3_windows_xp_NtGdiDeleteColorSpace PROC STDCALL arg_01:DWORD
mov eax , 4216
mov edx , 7FFE0300h
call dword ptr [edx]
ret 4
_5_1_2600_sp3_windows_xp_NtGdiDeleteColorSpace ENDP
; ULONG __stdcall NtGdiDeleteColorTransform( ULONG arg_01 , ULONG arg_02 );
_5_1_2600_sp3_windows_xp_NtGdiDeleteColorTransform PROC STDCALL arg_01:DWORD , arg_02:DWORD
mov eax , 4217
mov edx , 7FFE0300h
call dword ptr [edx]
ret 8
_5_1_2600_sp3_windows_xp_NtGdiDeleteColorTransform ENDP
; ULONG __stdcall NtGdiDeleteObjectApp( ULONG arg_01 );
_5_1_2600_sp3_windows_xp_NtGdiDeleteObjectApp PROC STDCALL arg_01:DWORD
mov eax , 4218
mov edx , 7FFE0300h
call dword ptr [edx]
ret 4
_5_1_2600_sp3_windows_xp_NtGdiDeleteObjectApp ENDP
; ULONG __stdcall NtGdiDescribePixelFormat( ULONG arg_01 , ULONG arg_02 , ULONG arg_03 , ULONG arg_04 );
_5_1_2600_sp3_windows_xp_NtGdiDescribePixelFormat PROC STDCALL arg_01:DWORD , arg_02:DWORD , arg_03:DWORD , arg_04:DWORD
mov eax , 4219
mov edx , 7FFE0300h
call dword ptr [edx]
ret 16
_5_1_2600_sp3_windows_xp_NtGdiDescribePixelFormat ENDP
; ULONG __stdcall NtGdiGetPerBandInfo( ULONG arg_01 , ULONG arg_02 );
_5_1_2600_sp3_windows_xp_NtGdiGetPerBandInfo PROC STDCALL arg_01:DWORD , arg_02:DWORD
mov eax , 4220
mov edx , 7FFE0300h
call dword ptr [edx]
ret 8
_5_1_2600_sp3_windows_xp_NtGdiGetPerBandInfo ENDP
; ULONG __stdcall NtGdiDoBanding( ULONG arg_01 , ULONG arg_02 , ULONG arg_03 , ULONG arg_04 );
_5_1_2600_sp3_windows_xp_NtGdiDoBanding PROC STDCALL arg_01:DWORD , arg_02:DWORD , arg_03:DWORD , arg_04:DWORD
mov eax , 4221
mov edx , 7FFE0300h
call dword ptr [edx]
ret 16
_5_1_2600_sp3_windows_xp_NtGdiDoBanding ENDP
; ULONG __stdcall NtGdiDoPalette( ULONG arg_01 , ULONG arg_02 , ULONG arg_03 , ULONG arg_04 , ULONG arg_05 , ULONG arg_06 );
_5_1_2600_sp3_windows_xp_NtGdiDoPalette PROC STDCALL arg_01:DWORD , arg_02:DWORD , arg_03:DWORD , arg_04:DWORD , arg_05:DWORD , arg_06:DWORD
mov eax , 4222
mov edx , 7FFE0300h
call dword ptr [edx]
ret 24
_5_1_2600_sp3_windows_xp_NtGdiDoPalette ENDP
; ULONG __stdcall NtGdiDrawEscape( ULONG arg_01 , ULONG arg_02 , ULONG arg_03 , ULONG arg_04 );
_5_1_2600_sp3_windows_xp_NtGdiDrawEscape PROC STDCALL arg_01:DWORD , arg_02:DWORD , arg_03:DWORD , arg_04:DWORD
mov eax , 4223
mov edx , 7FFE0300h
call dword ptr [edx]
ret 16
_5_1_2600_sp3_windows_xp_NtGdiDrawEscape ENDP
; ULONG __stdcall NtGdiEllipse( ULONG arg_01 , ULONG arg_02 , ULONG arg_03 , ULONG arg_04 , ULONG arg_05 );
_5_1_2600_sp3_windows_xp_NtGdiEllipse PROC STDCALL arg_01:DWORD , arg_02:DWORD , arg_03:DWORD , arg_04:DWORD , arg_05:DWORD
mov eax , 4224
mov edx , 7FFE0300h
call dword ptr [edx]
ret 20
_5_1_2600_sp3_windows_xp_NtGdiEllipse ENDP
; ULONG __stdcall NtGdiEnableEudc( ULONG arg_01 );
_5_1_2600_sp3_windows_xp_NtGdiEnableEudc PROC STDCALL arg_01:DWORD
mov eax , 4225
mov edx , 7FFE0300h
call dword ptr [edx]
ret 4
_5_1_2600_sp3_windows_xp_NtGdiEnableEudc ENDP
; ULONG __stdcall NtGdiEndDoc( ULONG arg_01 );
_5_1_2600_sp3_windows_xp_NtGdiEndDoc PROC STDCALL arg_01:DWORD
mov eax , 4226
mov edx , 7FFE0300h
call dword ptr [edx]
ret 4
_5_1_2600_sp3_windows_xp_NtGdiEndDoc ENDP
; ULONG __stdcall NtGdiEndPage( ULONG arg_01 );
_5_1_2600_sp3_windows_xp_NtGdiEndPage PROC STDCALL arg_01:DWORD
mov eax , 4227
mov edx , 7FFE0300h
call dword ptr [edx]
ret 4
_5_1_2600_sp3_windows_xp_NtGdiEndPage ENDP
; ULONG __stdcall NtGdiEndPath( ULONG arg_01 );
_5_1_2600_sp3_windows_xp_NtGdiEndPath PROC STDCALL arg_01:DWORD
mov eax , 4228
mov edx , 7FFE0300h
call dword ptr [edx]
ret 4
_5_1_2600_sp3_windows_xp_NtGdiEndPath ENDP
; ULONG __stdcall NtGdiEnumFontChunk( ULONG arg_01 , ULONG arg_02 , ULONG arg_03 , ULONG arg_04 , ULONG arg_05 );
_5_1_2600_sp3_windows_xp_NtGdiEnumFontChunk PROC STDCALL arg_01:DWORD , arg_02:DWORD , arg_03:DWORD , arg_04:DWORD , arg_05:DWORD
mov eax , 4229
mov edx , 7FFE0300h
call dword ptr [edx]
ret 20
_5_1_2600_sp3_windows_xp_NtGdiEnumFontChunk ENDP
; ULONG __stdcall NtGdiEnumFontClose( ULONG arg_01 );
_5_1_2600_sp3_windows_xp_NtGdiEnumFontClose PROC STDCALL arg_01:DWORD
mov eax , 4230
mov edx , 7FFE0300h
call dword ptr [edx]
ret 4
_5_1_2600_sp3_windows_xp_NtGdiEnumFontClose ENDP
; ULONG __stdcall NtGdiEnumFontOpen( ULONG arg_01 , ULONG arg_02 , ULONG arg_03 , ULONG arg_04 , ULONG arg_05 , ULONG arg_06 , ULONG arg_07 );
_5_1_2600_sp3_windows_xp_NtGdiEnumFontOpen PROC STDCALL arg_01:DWORD , arg_02:DWORD , arg_03:DWORD , arg_04:DWORD , arg_05:DWORD , arg_06:DWORD , arg_07:DWORD
mov eax , 4231
mov edx , 7FFE0300h
call dword ptr [edx]
ret 28
_5_1_2600_sp3_windows_xp_NtGdiEnumFontOpen ENDP
; ULONG __stdcall NtGdiEnumObjects( ULONG arg_01 , ULONG arg_02 , ULONG arg_03 , ULONG arg_04 );
_5_1_2600_sp3_windows_xp_NtGdiEnumObjects PROC STDCALL arg_01:DWORD , arg_02:DWORD , arg_03:DWORD , arg_04:DWORD
mov eax , 4232
mov edx , 7FFE0300h
call dword ptr [edx]
ret 16
_5_1_2600_sp3_windows_xp_NtGdiEnumObjects ENDP
; ULONG __stdcall NtGdiEqualRgn( ULONG arg_01 , ULONG arg_02 );
_5_1_2600_sp3_windows_xp_NtGdiEqualRgn PROC STDCALL arg_01:DWORD , arg_02:DWORD
mov eax , 4233
mov edx , 7FFE0300h
call dword ptr [edx]
ret 8
_5_1_2600_sp3_windows_xp_NtGdiEqualRgn ENDP
; ULONG __stdcall NtGdiEudcLoadUnloadLink( ULONG arg_01 , ULONG arg_02 , ULONG arg_03 , ULONG arg_04 , ULONG arg_05 , ULONG arg_06 , ULONG arg_07 );
_5_1_2600_sp3_windows_xp_NtGdiEudcLoadUnloadLink PROC STDCALL arg_01:DWORD , arg_02:DWORD , arg_03:DWORD , arg_04:DWORD , arg_05:DWORD , arg_06:DWORD , arg_07:DWORD
mov eax , 4234
mov edx , 7FFE0300h
call dword ptr [edx]
ret 28
_5_1_2600_sp3_windows_xp_NtGdiEudcLoadUnloadLink ENDP
; ULONG __stdcall NtGdiExcludeClipRect( ULONG arg_01 , ULONG arg_02 , ULONG arg_03 , ULONG arg_04 , ULONG arg_05 );
_5_1_2600_sp3_windows_xp_NtGdiExcludeClipRect PROC STDCALL arg_01:DWORD , arg_02:DWORD , arg_03:DWORD , arg_04:DWORD , arg_05:DWORD
mov eax , 4235
mov edx , 7FFE0300h
call dword ptr [edx]
ret 20
_5_1_2600_sp3_windows_xp_NtGdiExcludeClipRect ENDP
; ULONG __stdcall NtGdiExtCreatePen( ULONG arg_01 , ULONG arg_02 , ULONG arg_03 , ULONG arg_04 , ULONG arg_05 , ULONG arg_06 , ULONG arg_07 , ULONG arg_08 , ULONG arg_09 , ULONG arg_10 , ULONG arg_11 );
_5_1_2600_sp3_windows_xp_NtGdiExtCreatePen PROC STDCALL arg_01:DWORD , arg_02:DWORD , arg_03:DWORD , arg_04:DWORD , arg_05:DWORD , arg_06:DWORD , arg_07:DWORD , arg_08:DWORD , arg_09:DWORD , arg_10:DWORD , arg_11:DWORD
mov eax , 4236
mov edx , 7FFE0300h
call dword ptr [edx]
ret 44
_5_1_2600_sp3_windows_xp_NtGdiExtCreatePen ENDP
; ULONG __stdcall NtGdiExtCreateRegion( ULONG arg_01 , ULONG arg_02 , ULONG arg_03 );
_5_1_2600_sp3_windows_xp_NtGdiExtCreateRegion PROC STDCALL arg_01:DWORD , arg_02:DWORD , arg_03:DWORD
mov eax , 4237
mov edx , 7FFE0300h
call dword ptr [edx]
ret 12
_5_1_2600_sp3_windows_xp_NtGdiExtCreateRegion ENDP
; ULONG __stdcall NtGdiExtEscape( ULONG arg_01 , ULONG arg_02 , ULONG arg_03 , ULONG arg_04 , ULONG arg_05 , ULONG arg_06 , ULONG arg_07 , ULONG arg_08 );
_5_1_2600_sp3_windows_xp_NtGdiExtEscape PROC STDCALL arg_01:DWORD , arg_02:DWORD , arg_03:DWORD , arg_04:DWORD , arg_05:DWORD , arg_06:DWORD , arg_07:DWORD , arg_08:DWORD
mov eax , 4238
mov edx , 7FFE0300h
call dword ptr [edx]
ret 32
_5_1_2600_sp3_windows_xp_NtGdiExtEscape ENDP
; ULONG __stdcall NtGdiExtFloodFill( ULONG arg_01 , ULONG arg_02 , ULONG arg_03 , ULONG arg_04 , ULONG arg_05 );
_5_1_2600_sp3_windows_xp_NtGdiExtFloodFill PROC STDCALL arg_01:DWORD , arg_02:DWORD , arg_03:DWORD , arg_04:DWORD , arg_05:DWORD
mov eax , 4239
mov edx , 7FFE0300h
call dword ptr [edx]
ret 20
_5_1_2600_sp3_windows_xp_NtGdiExtFloodFill ENDP
; ULONG __stdcall NtGdiExtGetObjectW( ULONG arg_01 , ULONG arg_02 , ULONG arg_03 );
_5_1_2600_sp3_windows_xp_NtGdiExtGetObjectW PROC STDCALL arg_01:DWORD , arg_02:DWORD , arg_03:DWORD
mov eax , 4240
mov edx , 7FFE0300h
call dword ptr [edx]
ret 12
_5_1_2600_sp3_windows_xp_NtGdiExtGetObjectW ENDP
; ULONG __stdcall NtGdiExtSelectClipRgn( ULONG arg_01 , ULONG arg_02 , ULONG arg_03 );
_5_1_2600_sp3_windows_xp_NtGdiExtSelectClipRgn PROC STDCALL arg_01:DWORD , arg_02:DWORD , arg_03:DWORD
mov eax , 4241
mov edx , 7FFE0300h
call dword ptr [edx]
ret 12
_5_1_2600_sp3_windows_xp_NtGdiExtSelectClipRgn ENDP
; ULONG __stdcall NtGdiExtTextOutW( ULONG arg_01 , ULONG arg_02 , ULONG arg_03 , ULONG arg_04 , ULONG arg_05 , ULONG arg_06 , ULONG arg_07 , ULONG arg_08 , ULONG arg_09 );
_5_1_2600_sp3_windows_xp_NtGdiExtTextOutW PROC STDCALL arg_01:DWORD , arg_02:DWORD , arg_03:DWORD , arg_04:DWORD , arg_05:DWORD , arg_06:DWORD , arg_07:DWORD , arg_08:DWORD , arg_09:DWORD
mov eax , 4242
mov edx , 7FFE0300h
call dword ptr [edx]
ret 36
_5_1_2600_sp3_windows_xp_NtGdiExtTextOutW ENDP
; ULONG __stdcall NtGdiFillPath( ULONG arg_01 );
_5_1_2600_sp3_windows_xp_NtGdiFillPath PROC STDCALL arg_01:DWORD
mov eax , 4243
mov edx , 7FFE0300h
call dword ptr [edx]
ret 4
_5_1_2600_sp3_windows_xp_NtGdiFillPath ENDP
; ULONG __stdcall NtGdiFillRgn( ULONG arg_01 , ULONG arg_02 , ULONG arg_03 );
_5_1_2600_sp3_windows_xp_NtGdiFillRgn PROC STDCALL arg_01:DWORD , arg_02:DWORD , arg_03:DWORD
mov eax , 4244
mov edx , 7FFE0300h
call dword ptr [edx]
ret 12
_5_1_2600_sp3_windows_xp_NtGdiFillRgn ENDP
; ULONG __stdcall NtGdiFlattenPath( ULONG arg_01 );
_5_1_2600_sp3_windows_xp_NtGdiFlattenPath PROC STDCALL arg_01:DWORD
mov eax , 4245
mov edx , 7FFE0300h
call dword ptr [edx]
ret 4
_5_1_2600_sp3_windows_xp_NtGdiFlattenPath ENDP
; ULONG __stdcall NtGdiFlushUserBatch( );
_5_1_2600_sp3_windows_xp_NtGdiFlushUserBatch PROC STDCALL
mov eax , 4246
mov edx , 7FFE0300h
call dword ptr [edx]
ret
_5_1_2600_sp3_windows_xp_NtGdiFlushUserBatch ENDP
; ULONG __stdcall NtGdiFlush( );
_5_1_2600_sp3_windows_xp_NtGdiFlush PROC STDCALL
mov eax , 4247
mov edx , 7FFE0300h
call dword ptr [edx]
ret
_5_1_2600_sp3_windows_xp_NtGdiFlush ENDP
; ULONG __stdcall NtGdiForceUFIMapping( ULONG arg_01 , ULONG arg_02 );
_5_1_2600_sp3_windows_xp_NtGdiForceUFIMapping PROC STDCALL arg_01:DWORD , arg_02:DWORD
mov eax , 4248
mov edx , 7FFE0300h
call dword ptr [edx]
ret 8
_5_1_2600_sp3_windows_xp_NtGdiForceUFIMapping ENDP
; ULONG __stdcall NtGdiFrameRgn( ULONG arg_01 , ULONG arg_02 , ULONG arg_03 , ULONG arg_04 , ULONG arg_05 );
_5_1_2600_sp3_windows_xp_NtGdiFrameRgn PROC STDCALL arg_01:DWORD , arg_02:DWORD , arg_03:DWORD , arg_04:DWORD , arg_05:DWORD
mov eax , 4249
mov edx , 7FFE0300h
call dword ptr [edx]
ret 20
_5_1_2600_sp3_windows_xp_NtGdiFrameRgn ENDP
; ULONG __stdcall NtGdiFullscreenControl( ULONG arg_01 , ULONG arg_02 , ULONG arg_03 , ULONG arg_04 , ULONG arg_05 );
_5_1_2600_sp3_windows_xp_NtGdiFullscreenControl PROC STDCALL arg_01:DWORD , arg_02:DWORD , arg_03:DWORD , arg_04:DWORD , arg_05:DWORD
mov eax , 4250
mov edx , 7FFE0300h
call dword ptr [edx]
ret 20
_5_1_2600_sp3_windows_xp_NtGdiFullscreenControl ENDP
; ULONG __stdcall NtGdiGetAndSetDCDword( ULONG arg_01 , ULONG arg_02 , ULONG arg_03 , ULONG arg_04 );
_5_1_2600_sp3_windows_xp_NtGdiGetAndSetDCDword PROC STDCALL arg_01:DWORD , arg_02:DWORD , arg_03:DWORD , arg_04:DWORD
mov eax , 4251
mov edx , 7FFE0300h
call dword ptr [edx]
ret 16
_5_1_2600_sp3_windows_xp_NtGdiGetAndSetDCDword ENDP
; ULONG __stdcall NtGdiGetAppClipBox( ULONG arg_01 , ULONG arg_02 );
_5_1_2600_sp3_windows_xp_NtGdiGetAppClipBox PROC STDCALL arg_01:DWORD , arg_02:DWORD
mov eax , 4252
mov edx , 7FFE0300h
call dword ptr [edx]
ret 8
_5_1_2600_sp3_windows_xp_NtGdiGetAppClipBox ENDP
; ULONG __stdcall NtGdiGetBitmapBits( ULONG arg_01 , ULONG arg_02 , ULONG arg_03 );
_5_1_2600_sp3_windows_xp_NtGdiGetBitmapBits PROC STDCALL arg_01:DWORD , arg_02:DWORD , arg_03:DWORD
mov eax , 4253
mov edx , 7FFE0300h
call dword ptr [edx]
ret 12
_5_1_2600_sp3_windows_xp_NtGdiGetBitmapBits ENDP
; ULONG __stdcall NtGdiGetBitmapDimension( ULONG arg_01 , ULONG arg_02 );
_5_1_2600_sp3_windows_xp_NtGdiGetBitmapDimension PROC STDCALL arg_01:DWORD , arg_02:DWORD
mov eax , 4254
mov edx , 7FFE0300h
call dword ptr [edx]
ret 8
_5_1_2600_sp3_windows_xp_NtGdiGetBitmapDimension ENDP
; ULONG __stdcall NtGdiGetBoundsRect( ULONG arg_01 , ULONG arg_02 , ULONG arg_03 );
_5_1_2600_sp3_windows_xp_NtGdiGetBoundsRect PROC STDCALL arg_01:DWORD , arg_02:DWORD , arg_03:DWORD
mov eax , 4255
mov edx , 7FFE0300h
call dword ptr [edx]
ret 12
_5_1_2600_sp3_windows_xp_NtGdiGetBoundsRect ENDP
; ULONG __stdcall NtGdiGetCharABCWidthsW( ULONG arg_01 , ULONG arg_02 , ULONG arg_03 , ULONG arg_04 , ULONG arg_05 , ULONG arg_06 );
_5_1_2600_sp3_windows_xp_NtGdiGetCharABCWidthsW PROC STDCALL arg_01:DWORD , arg_02:DWORD , arg_03:DWORD , arg_04:DWORD , arg_05:DWORD , arg_06:DWORD
mov eax , 4256
mov edx , 7FFE0300h
call dword ptr [edx]
ret 24
_5_1_2600_sp3_windows_xp_NtGdiGetCharABCWidthsW ENDP
; ULONG __stdcall NtGdiGetCharacterPlacementW( ULONG arg_01 , ULONG arg_02 , ULONG arg_03 , ULONG arg_04 , ULONG arg_05 , ULONG arg_06 );
_5_1_2600_sp3_windows_xp_NtGdiGetCharacterPlacementW PROC STDCALL arg_01:DWORD , arg_02:DWORD , arg_03:DWORD , arg_04:DWORD , arg_05:DWORD , arg_06:DWORD
mov eax , 4257
mov edx , 7FFE0300h
call dword ptr [edx]
ret 24
_5_1_2600_sp3_windows_xp_NtGdiGetCharacterPlacementW ENDP
; ULONG __stdcall NtGdiGetCharSet( ULONG arg_01 );
_5_1_2600_sp3_windows_xp_NtGdiGetCharSet PROC STDCALL arg_01:DWORD
mov eax , 4258
mov edx , 7FFE0300h
call dword ptr [edx]
ret 4
_5_1_2600_sp3_windows_xp_NtGdiGetCharSet ENDP
; ULONG __stdcall NtGdiGetCharWidthW( ULONG arg_01 , ULONG arg_02 , ULONG arg_03 , ULONG arg_04 , ULONG arg_05 , ULONG arg_06 );
_5_1_2600_sp3_windows_xp_NtGdiGetCharWidthW PROC STDCALL arg_01:DWORD , arg_02:DWORD , arg_03:DWORD , arg_04:DWORD , arg_05:DWORD , arg_06:DWORD
mov eax , 4259
mov edx , 7FFE0300h
call dword ptr [edx]
ret 24
_5_1_2600_sp3_windows_xp_NtGdiGetCharWidthW ENDP
; ULONG __stdcall NtGdiGetCharWidthInfo( ULONG arg_01 , ULONG arg_02 );
_5_1_2600_sp3_windows_xp_NtGdiGetCharWidthInfo PROC STDCALL arg_01:DWORD , arg_02:DWORD
mov eax , 4260
mov edx , 7FFE0300h
call dword ptr [edx]
ret 8
_5_1_2600_sp3_windows_xp_NtGdiGetCharWidthInfo ENDP
; ULONG __stdcall NtGdiGetColorAdjustment( ULONG arg_01 , ULONG arg_02 );
_5_1_2600_sp3_windows_xp_NtGdiGetColorAdjustment PROC STDCALL arg_01:DWORD , arg_02:DWORD
mov eax , 4261
mov edx , 7FFE0300h
call dword ptr [edx]
ret 8
_5_1_2600_sp3_windows_xp_NtGdiGetColorAdjustment ENDP
; ULONG __stdcall NtGdiGetColorSpaceforBitmap( ULONG arg_01 );
_5_1_2600_sp3_windows_xp_NtGdiGetColorSpaceforBitmap PROC STDCALL arg_01:DWORD
mov eax , 4262
mov edx , 7FFE0300h
call dword ptr [edx]
ret 4
_5_1_2600_sp3_windows_xp_NtGdiGetColorSpaceforBitmap ENDP
; ULONG __stdcall NtGdiGetDCDword( ULONG arg_01 , ULONG arg_02 , ULONG arg_03 );
_5_1_2600_sp3_windows_xp_NtGdiGetDCDword PROC STDCALL arg_01:DWORD , arg_02:DWORD , arg_03:DWORD
mov eax , 4263
mov edx , 7FFE0300h
call dword ptr [edx]
ret 12
_5_1_2600_sp3_windows_xp_NtGdiGetDCDword ENDP
; ULONG __stdcall NtGdiGetDCforBitmap( ULONG arg_01 );
_5_1_2600_sp3_windows_xp_NtGdiGetDCforBitmap PROC STDCALL arg_01:DWORD
mov eax , 4264
mov edx , 7FFE0300h
call dword ptr [edx]
ret 4
_5_1_2600_sp3_windows_xp_NtGdiGetDCforBitmap ENDP
; ULONG __stdcall NtGdiGetDCObject( ULONG arg_01 , ULONG arg_02 );
_5_1_2600_sp3_windows_xp_NtGdiGetDCObject PROC STDCALL arg_01:DWORD , arg_02:DWORD
mov eax , 4265
mov edx , 7FFE0300h
call dword ptr [edx]
ret 8
_5_1_2600_sp3_windows_xp_NtGdiGetDCObject ENDP
; ULONG __stdcall NtGdiGetDCPoint( ULONG arg_01 , ULONG arg_02 , ULONG arg_03 );
_5_1_2600_sp3_windows_xp_NtGdiGetDCPoint PROC STDCALL arg_01:DWORD , arg_02:DWORD , arg_03:DWORD
mov eax , 4266
mov edx , 7FFE0300h
call dword ptr [edx]
ret 12
_5_1_2600_sp3_windows_xp_NtGdiGetDCPoint ENDP
; ULONG __stdcall NtGdiGetDeviceCaps( ULONG arg_01 , ULONG arg_02 );
_5_1_2600_sp3_windows_xp_NtGdiGetDeviceCaps PROC STDCALL arg_01:DWORD , arg_02:DWORD
mov eax , 4267
mov edx , 7FFE0300h
call dword ptr [edx]
ret 8
_5_1_2600_sp3_windows_xp_NtGdiGetDeviceCaps ENDP
; ULONG __stdcall NtGdiGetDeviceGammaRamp( ULONG arg_01 , ULONG arg_02 );
_5_1_2600_sp3_windows_xp_NtGdiGetDeviceGammaRamp PROC STDCALL arg_01:DWORD , arg_02:DWORD
mov eax , 4268
mov edx , 7FFE0300h
call dword ptr [edx]
ret 8
_5_1_2600_sp3_windows_xp_NtGdiGetDeviceGammaRamp ENDP
; ULONG __stdcall NtGdiGetDeviceCapsAll( ULONG arg_01 , ULONG arg_02 );
_5_1_2600_sp3_windows_xp_NtGdiGetDeviceCapsAll PROC STDCALL arg_01:DWORD , arg_02:DWORD
mov eax , 4269
mov edx , 7FFE0300h
call dword ptr [edx]
ret 8
_5_1_2600_sp3_windows_xp_NtGdiGetDeviceCapsAll ENDP
; ULONG __stdcall NtGdiGetDIBitsInternal( ULONG arg_01 , ULONG arg_02 , ULONG arg_03 , ULONG arg_04 , ULONG arg_05 , ULONG arg_06 , ULONG arg_07 , ULONG arg_08 , ULONG arg_09 );
_5_1_2600_sp3_windows_xp_NtGdiGetDIBitsInternal PROC STDCALL arg_01:DWORD , arg_02:DWORD , arg_03:DWORD , arg_04:DWORD , arg_05:DWORD , arg_06:DWORD , arg_07:DWORD , arg_08:DWORD , arg_09:DWORD
mov eax , 4270
mov edx , 7FFE0300h
call dword ptr [edx]
ret 36
_5_1_2600_sp3_windows_xp_NtGdiGetDIBitsInternal ENDP
; ULONG __stdcall NtGdiGetETM( ULONG arg_01 , ULONG arg_02 );
_5_1_2600_sp3_windows_xp_NtGdiGetETM PROC STDCALL arg_01:DWORD , arg_02:DWORD
mov eax , 4271
mov edx , 7FFE0300h
call dword ptr [edx]
ret 8
_5_1_2600_sp3_windows_xp_NtGdiGetETM ENDP
; ULONG __stdcall NtGdiGetEudcTimeStampEx( ULONG arg_01 , ULONG arg_02 , ULONG arg_03 );
_5_1_2600_sp3_windows_xp_NtGdiGetEudcTimeStampEx PROC STDCALL arg_01:DWORD , arg_02:DWORD , arg_03:DWORD
mov eax , 4272
mov edx , 7FFE0300h
call dword ptr [edx]
ret 12
_5_1_2600_sp3_windows_xp_NtGdiGetEudcTimeStampEx ENDP
; ULONG __stdcall NtGdiGetFontData( ULONG arg_01 , ULONG arg_02 , ULONG arg_03 , ULONG arg_04 , ULONG arg_05 );
_5_1_2600_sp3_windows_xp_NtGdiGetFontData PROC STDCALL arg_01:DWORD , arg_02:DWORD , arg_03:DWORD , arg_04:DWORD , arg_05:DWORD
mov eax , 4273
mov edx , 7FFE0300h
call dword ptr [edx]
ret 20
_5_1_2600_sp3_windows_xp_NtGdiGetFontData ENDP
; ULONG __stdcall NtGdiGetFontResourceInfoInternalW( ULONG arg_01 , ULONG arg_02 , ULONG arg_03 , ULONG arg_04 , ULONG arg_05 , ULONG arg_06 , ULONG arg_07 );
_5_1_2600_sp3_windows_xp_NtGdiGetFontResourceInfoInternalW PROC STDCALL arg_01:DWORD , arg_02:DWORD , arg_03:DWORD , arg_04:DWORD , arg_05:DWORD , arg_06:DWORD , arg_07:DWORD
mov eax , 4274
mov edx , 7FFE0300h
call dword ptr [edx]
ret 28
_5_1_2600_sp3_windows_xp_NtGdiGetFontResourceInfoInternalW ENDP
; ULONG __stdcall NtGdiGetGlyphIndicesW( ULONG arg_01 , ULONG arg_02 , ULONG arg_03 , ULONG arg_04 , ULONG arg_05 );
_5_1_2600_sp3_windows_xp_NtGdiGetGlyphIndicesW PROC STDCALL arg_01:DWORD , arg_02:DWORD , arg_03:DWORD , arg_04:DWORD , arg_05:DWORD
mov eax , 4275
mov edx , 7FFE0300h
call dword ptr [edx]
ret 20
_5_1_2600_sp3_windows_xp_NtGdiGetGlyphIndicesW ENDP
; ULONG __stdcall NtGdiGetGlyphIndicesWInternal( ULONG arg_01 , ULONG arg_02 , ULONG arg_03 , ULONG arg_04 , ULONG arg_05 , ULONG arg_06 );
_5_1_2600_sp3_windows_xp_NtGdiGetGlyphIndicesWInternal PROC STDCALL arg_01:DWORD , arg_02:DWORD , arg_03:DWORD , arg_04:DWORD , arg_05:DWORD , arg_06:DWORD
mov eax , 4276
mov edx , 7FFE0300h
call dword ptr [edx]
ret 24
_5_1_2600_sp3_windows_xp_NtGdiGetGlyphIndicesWInternal ENDP
; ULONG __stdcall NtGdiGetGlyphOutline( ULONG arg_01 , ULONG arg_02 , ULONG arg_03 , ULONG arg_04 , ULONG arg_05 , ULONG arg_06 , ULONG arg_07 , ULONG arg_08 );
_5_1_2600_sp3_windows_xp_NtGdiGetGlyphOutline PROC STDCALL arg_01:DWORD , arg_02:DWORD , arg_03:DWORD , arg_04:DWORD , arg_05:DWORD , arg_06:DWORD , arg_07:DWORD , arg_08:DWORD
mov eax , 4277
mov edx , 7FFE0300h
call dword ptr [edx]
ret 32
_5_1_2600_sp3_windows_xp_NtGdiGetGlyphOutline ENDP
; ULONG __stdcall NtGdiGetKerningPairs( ULONG arg_01 , ULONG arg_02 , ULONG arg_03 );
_5_1_2600_sp3_windows_xp_NtGdiGetKerningPairs PROC STDCALL arg_01:DWORD , arg_02:DWORD , arg_03:DWORD
mov eax , 4278
mov edx , 7FFE0300h
call dword ptr [edx]
ret 12
_5_1_2600_sp3_windows_xp_NtGdiGetKerningPairs ENDP
; ULONG __stdcall NtGdiGetLinkedUFIs( ULONG arg_01 , ULONG arg_02 , ULONG arg_03 );
_5_1_2600_sp3_windows_xp_NtGdiGetLinkedUFIs PROC STDCALL arg_01:DWORD , arg_02:DWORD , arg_03:DWORD
mov eax , 4279
mov edx , 7FFE0300h
call dword ptr [edx]
ret 12
_5_1_2600_sp3_windows_xp_NtGdiGetLinkedUFIs ENDP
; ULONG __stdcall NtGdiGetMiterLimit( ULONG arg_01 , ULONG arg_02 );
_5_1_2600_sp3_windows_xp_NtGdiGetMiterLimit PROC STDCALL arg_01:DWORD , arg_02:DWORD
mov eax , 4280
mov edx , 7FFE0300h
call dword ptr [edx]
ret 8
_5_1_2600_sp3_windows_xp_NtGdiGetMiterLimit ENDP
; ULONG __stdcall NtGdiGetMonitorID( ULONG arg_01 , ULONG arg_02 , ULONG arg_03 );
_5_1_2600_sp3_windows_xp_NtGdiGetMonitorID PROC STDCALL arg_01:DWORD , arg_02:DWORD , arg_03:DWORD
mov eax , 4281
mov edx , 7FFE0300h
call dword ptr [edx]
ret 12
_5_1_2600_sp3_windows_xp_NtGdiGetMonitorID ENDP
; ULONG __stdcall NtGdiGetNearestColor( ULONG arg_01 , ULONG arg_02 );
_5_1_2600_sp3_windows_xp_NtGdiGetNearestColor PROC STDCALL arg_01:DWORD , arg_02:DWORD
mov eax , 4282
mov edx , 7FFE0300h
call dword ptr [edx]
ret 8
_5_1_2600_sp3_windows_xp_NtGdiGetNearestColor ENDP
; ULONG __stdcall NtGdiGetNearestPaletteIndex( ULONG arg_01 , ULONG arg_02 );
_5_1_2600_sp3_windows_xp_NtGdiGetNearestPaletteIndex PROC STDCALL arg_01:DWORD , arg_02:DWORD
mov eax , 4283
mov edx , 7FFE0300h
call dword ptr [edx]
ret 8
_5_1_2600_sp3_windows_xp_NtGdiGetNearestPaletteIndex ENDP
; ULONG __stdcall NtGdiGetObjectBitmapHandle( ULONG arg_01 , ULONG arg_02 );
_5_1_2600_sp3_windows_xp_NtGdiGetObjectBitmapHandle PROC STDCALL arg_01:DWORD , arg_02:DWORD
mov eax , 4284
mov edx , 7FFE0300h
call dword ptr [edx]
ret 8
_5_1_2600_sp3_windows_xp_NtGdiGetObjectBitmapHandle ENDP
; ULONG __stdcall NtGdiGetOutlineTextMetricsInternalW( ULONG arg_01 , ULONG arg_02 , ULONG arg_03 , ULONG arg_04 );
_5_1_2600_sp3_windows_xp_NtGdiGetOutlineTextMetricsInternalW PROC STDCALL arg_01:DWORD , arg_02:DWORD , arg_03:DWORD , arg_04:DWORD
mov eax , 4285
mov edx , 7FFE0300h
call dword ptr [edx]
ret 16
_5_1_2600_sp3_windows_xp_NtGdiGetOutlineTextMetricsInternalW ENDP
; ULONG __stdcall NtGdiGetPath( ULONG arg_01 , ULONG arg_02 , ULONG arg_03 , ULONG arg_04 );
_5_1_2600_sp3_windows_xp_NtGdiGetPath PROC STDCALL arg_01:DWORD , arg_02:DWORD , arg_03:DWORD , arg_04:DWORD
mov eax , 4286
mov edx , 7FFE0300h
call dword ptr [edx]
ret 16
_5_1_2600_sp3_windows_xp_NtGdiGetPath ENDP
; ULONG __stdcall NtGdiGetPixel( ULONG arg_01 , ULONG arg_02 , ULONG arg_03 );
_5_1_2600_sp3_windows_xp_NtGdiGetPixel PROC STDCALL arg_01:DWORD , arg_02:DWORD , arg_03:DWORD
mov eax , 4287
mov edx , 7FFE0300h
call dword ptr [edx]
ret 12
_5_1_2600_sp3_windows_xp_NtGdiGetPixel ENDP
; ULONG __stdcall NtGdiGetRandomRgn( ULONG arg_01 , ULONG arg_02 , ULONG arg_03 );
_5_1_2600_sp3_windows_xp_NtGdiGetRandomRgn PROC STDCALL arg_01:DWORD , arg_02:DWORD , arg_03:DWORD
mov eax , 4288
mov edx , 7FFE0300h
call dword ptr [edx]
ret 12
_5_1_2600_sp3_windows_xp_NtGdiGetRandomRgn ENDP
; ULONG __stdcall NtGdiGetRasterizerCaps( ULONG arg_01 , ULONG arg_02 );
_5_1_2600_sp3_windows_xp_NtGdiGetRasterizerCaps PROC STDCALL arg_01:DWORD , arg_02:DWORD
mov eax , 4289
mov edx , 7FFE0300h
call dword ptr [edx]
ret 8
_5_1_2600_sp3_windows_xp_NtGdiGetRasterizerCaps ENDP
; ULONG __stdcall NtGdiGetRealizationInfo( ULONG arg_01 , ULONG arg_02 , ULONG arg_03 );
_5_1_2600_sp3_windows_xp_NtGdiGetRealizationInfo PROC STDCALL arg_01:DWORD , arg_02:DWORD , arg_03:DWORD
mov eax , 4290
mov edx , 7FFE0300h
call dword ptr [edx]
ret 12
_5_1_2600_sp3_windows_xp_NtGdiGetRealizationInfo ENDP
; ULONG __stdcall NtGdiGetRegionData( ULONG arg_01 , ULONG arg_02 , ULONG arg_03 );
_5_1_2600_sp3_windows_xp_NtGdiGetRegionData PROC STDCALL arg_01:DWORD , arg_02:DWORD , arg_03:DWORD
mov eax , 4291
mov edx , 7FFE0300h
call dword ptr [edx]
ret 12
_5_1_2600_sp3_windows_xp_NtGdiGetRegionData ENDP
; ULONG __stdcall NtGdiGetRgnBox( ULONG arg_01 , ULONG arg_02 );
_5_1_2600_sp3_windows_xp_NtGdiGetRgnBox PROC STDCALL arg_01:DWORD , arg_02:DWORD
mov eax , 4292
mov edx , 7FFE0300h
call dword ptr [edx]
ret 8
_5_1_2600_sp3_windows_xp_NtGdiGetRgnBox ENDP
; ULONG __stdcall NtGdiGetServerMetaFileBits( ULONG arg_01 , ULONG arg_02 , ULONG arg_03 , ULONG arg_04 , ULONG arg_05 , ULONG arg_06 , ULONG arg_07 );
_5_1_2600_sp3_windows_xp_NtGdiGetServerMetaFileBits PROC STDCALL arg_01:DWORD , arg_02:DWORD , arg_03:DWORD , arg_04:DWORD , arg_05:DWORD , arg_06:DWORD , arg_07:DWORD
mov eax , 4293
mov edx , 7FFE0300h
call dword ptr [edx]
ret 28
_5_1_2600_sp3_windows_xp_NtGdiGetServerMetaFileBits ENDP
; ULONG __stdcall NtGdiGetSpoolMessage( ULONG arg_01 , ULONG arg_02 , ULONG arg_03 , ULONG arg_04 );
_5_1_2600_sp3_windows_xp_NtGdiGetSpoolMessage PROC STDCALL arg_01:DWORD , arg_02:DWORD , arg_03:DWORD , arg_04:DWORD
mov eax , 4294
mov edx , 7FFE0300h
call dword ptr [edx]
ret 16
_5_1_2600_sp3_windows_xp_NtGdiGetSpoolMessage ENDP
; ULONG __stdcall NtGdiGetStats( ULONG arg_01 , ULONG arg_02 , ULONG arg_03 , ULONG arg_04 , ULONG arg_05 );
_5_1_2600_sp3_windows_xp_NtGdiGetStats PROC STDCALL arg_01:DWORD , arg_02:DWORD , arg_03:DWORD , arg_04:DWORD , arg_05:DWORD
mov eax , 4295
mov edx , 7FFE0300h
call dword ptr [edx]
ret 20
_5_1_2600_sp3_windows_xp_NtGdiGetStats ENDP
; ULONG __stdcall NtGdiGetStockObject( ULONG arg_01 );
_5_1_2600_sp3_windows_xp_NtGdiGetStockObject PROC STDCALL arg_01:DWORD
mov eax , 4296
mov edx , 7FFE0300h
call dword ptr [edx]
ret 4
_5_1_2600_sp3_windows_xp_NtGdiGetStockObject ENDP
; ULONG __stdcall NtGdiGetStringBitmapW( ULONG arg_01 , ULONG arg_02 , ULONG arg_03 , ULONG arg_04 , ULONG arg_05 );
_5_1_2600_sp3_windows_xp_NtGdiGetStringBitmapW PROC STDCALL arg_01:DWORD , arg_02:DWORD , arg_03:DWORD , arg_04:DWORD , arg_05:DWORD
mov eax , 4297
mov edx , 7FFE0300h
call dword ptr [edx]
ret 20
_5_1_2600_sp3_windows_xp_NtGdiGetStringBitmapW ENDP
; ULONG __stdcall NtGdiGetSystemPaletteUse( ULONG arg_01 );
_5_1_2600_sp3_windows_xp_NtGdiGetSystemPaletteUse PROC STDCALL arg_01:DWORD
mov eax , 4298
mov edx , 7FFE0300h
call dword ptr [edx]
ret 4
_5_1_2600_sp3_windows_xp_NtGdiGetSystemPaletteUse ENDP
; ULONG __stdcall NtGdiGetTextCharsetInfo( ULONG arg_01 , ULONG arg_02 , ULONG arg_03 );
_5_1_2600_sp3_windows_xp_NtGdiGetTextCharsetInfo PROC STDCALL arg_01:DWORD , arg_02:DWORD , arg_03:DWORD
mov eax , 4299
mov edx , 7FFE0300h
call dword ptr [edx]
ret 12
_5_1_2600_sp3_windows_xp_NtGdiGetTextCharsetInfo ENDP
; ULONG __stdcall NtGdiGetTextExtent( ULONG arg_01 , ULONG arg_02 , ULONG arg_03 , ULONG arg_04 , ULONG arg_05 );
_5_1_2600_sp3_windows_xp_NtGdiGetTextExtent PROC STDCALL arg_01:DWORD , arg_02:DWORD , arg_03:DWORD , arg_04:DWORD , arg_05:DWORD
mov eax , 4300
mov edx , 7FFE0300h
call dword ptr [edx]
ret 20
_5_1_2600_sp3_windows_xp_NtGdiGetTextExtent ENDP
; ULONG __stdcall NtGdiGetTextExtentExW( ULONG arg_01 , ULONG arg_02 , ULONG arg_03 , ULONG arg_04 , ULONG arg_05 , ULONG arg_06 , ULONG arg_07 , ULONG arg_08 );
_5_1_2600_sp3_windows_xp_NtGdiGetTextExtentExW PROC STDCALL arg_01:DWORD , arg_02:DWORD , arg_03:DWORD , arg_04:DWORD , arg_05:DWORD , arg_06:DWORD , arg_07:DWORD , arg_08:DWORD
mov eax , 4301
mov edx , 7FFE0300h
call dword ptr [edx]
ret 32
_5_1_2600_sp3_windows_xp_NtGdiGetTextExtentExW ENDP
; ULONG __stdcall NtGdiGetTextFaceW( ULONG arg_01 , ULONG arg_02 , ULONG arg_03 , ULONG arg_04 );
_5_1_2600_sp3_windows_xp_NtGdiGetTextFaceW PROC STDCALL arg_01:DWORD , arg_02:DWORD , arg_03:DWORD , arg_04:DWORD
mov eax , 4302
mov edx , 7FFE0300h
call dword ptr [edx]
ret 16
_5_1_2600_sp3_windows_xp_NtGdiGetTextFaceW ENDP
; ULONG __stdcall NtGdiGetTextMetricsW( ULONG arg_01 , ULONG arg_02 , ULONG arg_03 );
_5_1_2600_sp3_windows_xp_NtGdiGetTextMetricsW PROC STDCALL arg_01:DWORD , arg_02:DWORD , arg_03:DWORD
mov eax , 4303
mov edx , 7FFE0300h
call dword ptr [edx]
ret 12
_5_1_2600_sp3_windows_xp_NtGdiGetTextMetricsW ENDP
; ULONG __stdcall NtGdiGetTransform( ULONG arg_01 , ULONG arg_02 , ULONG arg_03 );
_5_1_2600_sp3_windows_xp_NtGdiGetTransform PROC STDCALL arg_01:DWORD , arg_02:DWORD , arg_03:DWORD
mov eax , 4304
mov edx , 7FFE0300h
call dword ptr [edx]
ret 12
_5_1_2600_sp3_windows_xp_NtGdiGetTransform ENDP
; ULONG __stdcall NtGdiGetUFI( ULONG arg_01 , ULONG arg_02 , ULONG arg_03 , ULONG arg_04 , ULONG arg_05 , ULONG arg_06 );
_5_1_2600_sp3_windows_xp_NtGdiGetUFI PROC STDCALL arg_01:DWORD , arg_02:DWORD , arg_03:DWORD , arg_04:DWORD , arg_05:DWORD , arg_06:DWORD
mov eax , 4305
mov edx , 7FFE0300h
call dword ptr [edx]
ret 24
_5_1_2600_sp3_windows_xp_NtGdiGetUFI ENDP
; ULONG __stdcall NtGdiGetEmbUFI( ULONG arg_01 , ULONG arg_02 , ULONG arg_03 , ULONG arg_04 , ULONG arg_05 , ULONG arg_06 , ULONG arg_07 );
_5_1_2600_sp3_windows_xp_NtGdiGetEmbUFI PROC STDCALL arg_01:DWORD , arg_02:DWORD , arg_03:DWORD , arg_04:DWORD , arg_05:DWORD , arg_06:DWORD , arg_07:DWORD
mov eax , 4306
mov edx , 7FFE0300h
call dword ptr [edx]
ret 28
_5_1_2600_sp3_windows_xp_NtGdiGetEmbUFI ENDP
; ULONG __stdcall NtGdiGetUFIPathname( ULONG arg_01 , ULONG arg_02 , ULONG arg_03 , ULONG arg_04 , ULONG arg_05 , ULONG arg_06 , ULONG arg_07 , ULONG arg_08 , ULONG arg_09 , ULONG arg_10 );
_5_1_2600_sp3_windows_xp_NtGdiGetUFIPathname PROC STDCALL arg_01:DWORD , arg_02:DWORD , arg_03:DWORD , arg_04:DWORD , arg_05:DWORD , arg_06:DWORD , arg_07:DWORD , arg_08:DWORD , arg_09:DWORD , arg_10:DWORD
mov eax , 4307
mov edx , 7FFE0300h
call dword ptr [edx]
ret 40
_5_1_2600_sp3_windows_xp_NtGdiGetUFIPathname ENDP
; ULONG __stdcall NtGdiGetEmbedFonts( );
_5_1_2600_sp3_windows_xp_NtGdiGetEmbedFonts PROC STDCALL
mov eax , 4308
mov edx , 7FFE0300h
call dword ptr [edx]
ret
_5_1_2600_sp3_windows_xp_NtGdiGetEmbedFonts ENDP
; ULONG __stdcall NtGdiChangeGhostFont( ULONG arg_01 , ULONG arg_02 );
_5_1_2600_sp3_windows_xp_NtGdiChangeGhostFont PROC STDCALL arg_01:DWORD , arg_02:DWORD
mov eax , 4309
mov edx , 7FFE0300h
call dword ptr [edx]
ret 8
_5_1_2600_sp3_windows_xp_NtGdiChangeGhostFont ENDP
; ULONG __stdcall NtGdiAddEmbFontToDC( ULONG arg_01 , ULONG arg_02 );
_5_1_2600_sp3_windows_xp_NtGdiAddEmbFontToDC PROC STDCALL arg_01:DWORD , arg_02:DWORD
mov eax , 4310
mov edx , 7FFE0300h
call dword ptr [edx]
ret 8
_5_1_2600_sp3_windows_xp_NtGdiAddEmbFontToDC ENDP
; ULONG __stdcall NtGdiGetFontUnicodeRanges( ULONG arg_01 , ULONG arg_02 );
_5_1_2600_sp3_windows_xp_NtGdiGetFontUnicodeRanges PROC STDCALL arg_01:DWORD , arg_02:DWORD
mov eax , 4311
mov edx , 7FFE0300h
call dword ptr [edx]
ret 8
_5_1_2600_sp3_windows_xp_NtGdiGetFontUnicodeRanges ENDP
; ULONG __stdcall NtGdiGetWidthTable( ULONG arg_01 , ULONG arg_02 , ULONG arg_03 , ULONG arg_04 , ULONG arg_05 , ULONG arg_06 , ULONG arg_07 );
_5_1_2600_sp3_windows_xp_NtGdiGetWidthTable PROC STDCALL arg_01:DWORD , arg_02:DWORD , arg_03:DWORD , arg_04:DWORD , arg_05:DWORD , arg_06:DWORD , arg_07:DWORD
mov eax , 4312
mov edx , 7FFE0300h
call dword ptr [edx]
ret 28
_5_1_2600_sp3_windows_xp_NtGdiGetWidthTable ENDP
; ULONG __stdcall NtGdiGradientFill( ULONG arg_01 , ULONG arg_02 , ULONG arg_03 , ULONG arg_04 , ULONG arg_05 , ULONG arg_06 );
_5_1_2600_sp3_windows_xp_NtGdiGradientFill PROC STDCALL arg_01:DWORD , arg_02:DWORD , arg_03:DWORD , arg_04:DWORD , arg_05:DWORD , arg_06:DWORD
mov eax , 4313
mov edx , 7FFE0300h
call dword ptr [edx]
ret 24
_5_1_2600_sp3_windows_xp_NtGdiGradientFill ENDP
; ULONG __stdcall NtGdiHfontCreate( ULONG arg_01 , ULONG arg_02 , ULONG arg_03 , ULONG arg_04 , ULONG arg_05 );
_5_1_2600_sp3_windows_xp_NtGdiHfontCreate PROC STDCALL arg_01:DWORD , arg_02:DWORD , arg_03:DWORD , arg_04:DWORD , arg_05:DWORD
mov eax , 4314
mov edx , 7FFE0300h
call dword ptr [edx]
ret 20
_5_1_2600_sp3_windows_xp_NtGdiHfontCreate ENDP
; ULONG __stdcall NtGdiIcmBrushInfo( ULONG arg_01 , ULONG arg_02 , ULONG arg_03 , ULONG arg_04 , ULONG arg_05 , ULONG arg_06 , ULONG arg_07 , ULONG arg_08 );
_5_1_2600_sp3_windows_xp_NtGdiIcmBrushInfo PROC STDCALL arg_01:DWORD , arg_02:DWORD , arg_03:DWORD , arg_04:DWORD , arg_05:DWORD , arg_06:DWORD , arg_07:DWORD , arg_08:DWORD
mov eax , 4315
mov edx , 7FFE0300h
call dword ptr [edx]
ret 32
_5_1_2600_sp3_windows_xp_NtGdiIcmBrushInfo ENDP
; ULONG __stdcall NtGdiInit( );
_5_1_2600_sp3_windows_xp_NtGdiInit PROC STDCALL
mov eax , 4316
mov edx , 7FFE0300h
call dword ptr [edx]
ret
_5_1_2600_sp3_windows_xp_NtGdiInit ENDP
; ULONG __stdcall NtGdiInitSpool( );
_5_1_2600_sp3_windows_xp_NtGdiInitSpool PROC STDCALL
mov eax , 4317
mov edx , 7FFE0300h
call dword ptr [edx]
ret
_5_1_2600_sp3_windows_xp_NtGdiInitSpool ENDP
; ULONG __stdcall NtGdiIntersectClipRect( ULONG arg_01 , ULONG arg_02 , ULONG arg_03 , ULONG arg_04 , ULONG arg_05 );
_5_1_2600_sp3_windows_xp_NtGdiIntersectClipRect PROC STDCALL arg_01:DWORD , arg_02:DWORD , arg_03:DWORD , arg_04:DWORD , arg_05:DWORD
mov eax , 4318
mov edx , 7FFE0300h
call dword ptr [edx]
ret 20
_5_1_2600_sp3_windows_xp_NtGdiIntersectClipRect ENDP
; ULONG __stdcall NtGdiInvertRgn( ULONG arg_01 , ULONG arg_02 );
_5_1_2600_sp3_windows_xp_NtGdiInvertRgn PROC STDCALL arg_01:DWORD , arg_02:DWORD
mov eax , 4319
mov edx , 7FFE0300h
call dword ptr [edx]
ret 8
_5_1_2600_sp3_windows_xp_NtGdiInvertRgn ENDP
; ULONG __stdcall NtGdiLineTo( ULONG arg_01 , ULONG arg_02 , ULONG arg_03 );
_5_1_2600_sp3_windows_xp_NtGdiLineTo PROC STDCALL arg_01:DWORD , arg_02:DWORD , arg_03:DWORD
mov eax , 4320
mov edx , 7FFE0300h
call dword ptr [edx]
ret 12
_5_1_2600_sp3_windows_xp_NtGdiLineTo ENDP
; ULONG __stdcall NtGdiMakeFontDir( ULONG arg_01 , ULONG arg_02 , ULONG arg_03 , ULONG arg_04 , ULONG arg_05 );
_5_1_2600_sp3_windows_xp_NtGdiMakeFontDir PROC STDCALL arg_01:DWORD , arg_02:DWORD , arg_03:DWORD , arg_04:DWORD , arg_05:DWORD
mov eax , 4321
mov edx , 7FFE0300h
call dword ptr [edx]
ret 20
_5_1_2600_sp3_windows_xp_NtGdiMakeFontDir ENDP
; ULONG __stdcall NtGdiMakeInfoDC( ULONG arg_01 , ULONG arg_02 );
_5_1_2600_sp3_windows_xp_NtGdiMakeInfoDC PROC STDCALL arg_01:DWORD , arg_02:DWORD
mov eax , 4322
mov edx , 7FFE0300h
call dword ptr [edx]
ret 8
_5_1_2600_sp3_windows_xp_NtGdiMakeInfoDC ENDP
; ULONG __stdcall NtGdiMaskBlt( ULONG arg_01 , ULONG arg_02 , ULONG arg_03 , ULONG arg_04 , ULONG arg_05 , ULONG arg_06 , ULONG arg_07 , ULONG arg_08 , ULONG arg_09 , ULONG arg_10 , ULONG arg_11 , ULONG arg_12 , ULONG arg_13 );
_5_1_2600_sp3_windows_xp_NtGdiMaskBlt PROC STDCALL arg_01:DWORD , arg_02:DWORD , arg_03:DWORD , arg_04:DWORD , arg_05:DWORD , arg_06:DWORD , arg_07:DWORD , arg_08:DWORD , arg_09:DWORD , arg_10:DWORD , arg_11:DWORD , arg_12:DWORD , arg_13:DWORD
mov eax , 4323
mov edx , 7FFE0300h
call dword ptr [edx]
ret 52
_5_1_2600_sp3_windows_xp_NtGdiMaskBlt ENDP
; ULONG __stdcall NtGdiModifyWorldTransform( ULONG arg_01 , ULONG arg_02 , ULONG arg_03 );
_5_1_2600_sp3_windows_xp_NtGdiModifyWorldTransform PROC STDCALL arg_01:DWORD , arg_02:DWORD , arg_03:DWORD
mov eax , 4324
mov edx , 7FFE0300h
call dword ptr [edx]
ret 12
_5_1_2600_sp3_windows_xp_NtGdiModifyWorldTransform ENDP
; ULONG __stdcall NtGdiMonoBitmap( ULONG arg_01 );
_5_1_2600_sp3_windows_xp_NtGdiMonoBitmap PROC STDCALL arg_01:DWORD
mov eax , 4325
mov edx , 7FFE0300h
call dword ptr [edx]
ret 4
_5_1_2600_sp3_windows_xp_NtGdiMonoBitmap ENDP
; ULONG __stdcall NtGdiMoveTo( ULONG arg_01 , ULONG arg_02 , ULONG arg_03 , ULONG arg_04 );
_5_1_2600_sp3_windows_xp_NtGdiMoveTo PROC STDCALL arg_01:DWORD , arg_02:DWORD , arg_03:DWORD , arg_04:DWORD
mov eax , 4326
mov edx , 7FFE0300h
call dword ptr [edx]
ret 16
_5_1_2600_sp3_windows_xp_NtGdiMoveTo ENDP
; ULONG __stdcall NtGdiOffsetClipRgn( ULONG arg_01 , ULONG arg_02 , ULONG arg_03 );
_5_1_2600_sp3_windows_xp_NtGdiOffsetClipRgn PROC STDCALL arg_01:DWORD , arg_02:DWORD , arg_03:DWORD
mov eax , 4327
mov edx , 7FFE0300h
call dword ptr [edx]
ret 12
_5_1_2600_sp3_windows_xp_NtGdiOffsetClipRgn ENDP
; ULONG __stdcall NtGdiOffsetRgn( ULONG arg_01 , ULONG arg_02 , ULONG arg_03 );
_5_1_2600_sp3_windows_xp_NtGdiOffsetRgn PROC STDCALL arg_01:DWORD , arg_02:DWORD , arg_03:DWORD
mov eax , 4328
mov edx , 7FFE0300h
call dword ptr [edx]
ret 12
_5_1_2600_sp3_windows_xp_NtGdiOffsetRgn ENDP
; ULONG __stdcall NtGdiOpenDCW( ULONG arg_01 , ULONG arg_02 , ULONG arg_03 , ULONG arg_04 , ULONG arg_05 , ULONG arg_06 , ULONG arg_07 );
_5_1_2600_sp3_windows_xp_NtGdiOpenDCW PROC STDCALL arg_01:DWORD , arg_02:DWORD , arg_03:DWORD , arg_04:DWORD , arg_05:DWORD , arg_06:DWORD , arg_07:DWORD
mov eax , 4329
mov edx , 7FFE0300h
call dword ptr [edx]
ret 28
_5_1_2600_sp3_windows_xp_NtGdiOpenDCW ENDP
; ULONG __stdcall NtGdiPatBlt( ULONG arg_01 , ULONG arg_02 , ULONG arg_03 , ULONG arg_04 , ULONG arg_05 , ULONG arg_06 );
_5_1_2600_sp3_windows_xp_NtGdiPatBlt PROC STDCALL arg_01:DWORD , arg_02:DWORD , arg_03:DWORD , arg_04:DWORD , arg_05:DWORD , arg_06:DWORD
mov eax , 4330
mov edx , 7FFE0300h
call dword ptr [edx]
ret 24
_5_1_2600_sp3_windows_xp_NtGdiPatBlt ENDP
; ULONG __stdcall NtGdiPolyPatBlt( ULONG arg_01 , ULONG arg_02 , ULONG arg_03 , ULONG arg_04 , ULONG arg_05 );
_5_1_2600_sp3_windows_xp_NtGdiPolyPatBlt PROC STDCALL arg_01:DWORD , arg_02:DWORD , arg_03:DWORD , arg_04:DWORD , arg_05:DWORD
mov eax , 4331
mov edx , 7FFE0300h
call dword ptr [edx]
ret 20
_5_1_2600_sp3_windows_xp_NtGdiPolyPatBlt ENDP
; ULONG __stdcall NtGdiPathToRegion( ULONG arg_01 );
_5_1_2600_sp3_windows_xp_NtGdiPathToRegion PROC STDCALL arg_01:DWORD
mov eax , 4332
mov edx , 7FFE0300h
call dword ptr [edx]
ret 4
_5_1_2600_sp3_windows_xp_NtGdiPathToRegion ENDP
; ULONG __stdcall NtGdiPlgBlt( ULONG arg_01 , ULONG arg_02 , ULONG arg_03 , ULONG arg_04 , ULONG arg_05 , ULONG arg_06 , ULONG arg_07 , ULONG arg_08 , ULONG arg_09 , ULONG arg_10 , ULONG arg_11 );
_5_1_2600_sp3_windows_xp_NtGdiPlgBlt PROC STDCALL arg_01:DWORD , arg_02:DWORD , arg_03:DWORD , arg_04:DWORD , arg_05:DWORD , arg_06:DWORD , arg_07:DWORD , arg_08:DWORD , arg_09:DWORD , arg_10:DWORD , arg_11:DWORD
mov eax , 4333
mov edx , 7FFE0300h
call dword ptr [edx]
ret 44
_5_1_2600_sp3_windows_xp_NtGdiPlgBlt ENDP
; ULONG __stdcall NtGdiPolyDraw( ULONG arg_01 , ULONG arg_02 , ULONG arg_03 , ULONG arg_04 );
_5_1_2600_sp3_windows_xp_NtGdiPolyDraw PROC STDCALL arg_01:DWORD , arg_02:DWORD , arg_03:DWORD , arg_04:DWORD
mov eax , 4334
mov edx , 7FFE0300h
call dword ptr [edx]
ret 16
_5_1_2600_sp3_windows_xp_NtGdiPolyDraw ENDP
; ULONG __stdcall NtGdiPolyPolyDraw( ULONG arg_01 , ULONG arg_02 , ULONG arg_03 , ULONG arg_04 , ULONG arg_05 );
_5_1_2600_sp3_windows_xp_NtGdiPolyPolyDraw PROC STDCALL arg_01:DWORD , arg_02:DWORD , arg_03:DWORD , arg_04:DWORD , arg_05:DWORD
mov eax , 4335
mov edx , 7FFE0300h
call dword ptr [edx]
ret 20
_5_1_2600_sp3_windows_xp_NtGdiPolyPolyDraw ENDP
; ULONG __stdcall NtGdiPolyTextOutW( ULONG arg_01 , ULONG arg_02 , ULONG arg_03 , ULONG arg_04 );
_5_1_2600_sp3_windows_xp_NtGdiPolyTextOutW PROC STDCALL arg_01:DWORD , arg_02:DWORD , arg_03:DWORD , arg_04:DWORD
mov eax , 4336
mov edx , 7FFE0300h
call dword ptr [edx]
ret 16
_5_1_2600_sp3_windows_xp_NtGdiPolyTextOutW ENDP
; ULONG __stdcall NtGdiPtInRegion( ULONG arg_01 , ULONG arg_02 , ULONG arg_03 );
_5_1_2600_sp3_windows_xp_NtGdiPtInRegion PROC STDCALL arg_01:DWORD , arg_02:DWORD , arg_03:DWORD
mov eax , 4337
mov edx , 7FFE0300h
call dword ptr [edx]
ret 12
_5_1_2600_sp3_windows_xp_NtGdiPtInRegion ENDP
; ULONG __stdcall NtGdiPtVisible( ULONG arg_01 , ULONG arg_02 , ULONG arg_03 );
_5_1_2600_sp3_windows_xp_NtGdiPtVisible PROC STDCALL arg_01:DWORD , arg_02:DWORD , arg_03:DWORD
mov eax , 4338
mov edx , 7FFE0300h
call dword ptr [edx]
ret 12
_5_1_2600_sp3_windows_xp_NtGdiPtVisible ENDP
; ULONG __stdcall NtGdiQueryFonts( ULONG arg_01 , ULONG arg_02 , ULONG arg_03 );
_5_1_2600_sp3_windows_xp_NtGdiQueryFonts PROC STDCALL arg_01:DWORD , arg_02:DWORD , arg_03:DWORD
mov eax , 4339
mov edx , 7FFE0300h
call dword ptr [edx]
ret 12
_5_1_2600_sp3_windows_xp_NtGdiQueryFonts ENDP
; ULONG __stdcall NtGdiQueryFontAssocInfo( ULONG arg_01 );
_5_1_2600_sp3_windows_xp_NtGdiQueryFontAssocInfo PROC STDCALL arg_01:DWORD
mov eax , 4340
mov edx , 7FFE0300h
call dword ptr [edx]
ret 4
_5_1_2600_sp3_windows_xp_NtGdiQueryFontAssocInfo ENDP
; ULONG __stdcall NtGdiRectangle( ULONG arg_01 , ULONG arg_02 , ULONG arg_03 , ULONG arg_04 , ULONG arg_05 );
_5_1_2600_sp3_windows_xp_NtGdiRectangle PROC STDCALL arg_01:DWORD , arg_02:DWORD , arg_03:DWORD , arg_04:DWORD , arg_05:DWORD
mov eax , 4341
mov edx , 7FFE0300h
call dword ptr [edx]
ret 20
_5_1_2600_sp3_windows_xp_NtGdiRectangle ENDP
; ULONG __stdcall NtGdiRectInRegion( ULONG arg_01 , ULONG arg_02 );
_5_1_2600_sp3_windows_xp_NtGdiRectInRegion PROC STDCALL arg_01:DWORD , arg_02:DWORD
mov eax , 4342
mov edx , 7FFE0300h
call dword ptr [edx]
ret 8
_5_1_2600_sp3_windows_xp_NtGdiRectInRegion ENDP
; ULONG __stdcall NtGdiRectVisible( ULONG arg_01 , ULONG arg_02 );
_5_1_2600_sp3_windows_xp_NtGdiRectVisible PROC STDCALL arg_01:DWORD , arg_02:DWORD
mov eax , 4343
mov edx , 7FFE0300h
call dword ptr [edx]
ret 8
_5_1_2600_sp3_windows_xp_NtGdiRectVisible ENDP
; ULONG __stdcall NtGdiRemoveFontResourceW( ULONG arg_01 , ULONG arg_02 , ULONG arg_03 , ULONG arg_04 , ULONG arg_05 , ULONG arg_06 );
_5_1_2600_sp3_windows_xp_NtGdiRemoveFontResourceW PROC STDCALL arg_01:DWORD , arg_02:DWORD , arg_03:DWORD , arg_04:DWORD , arg_05:DWORD , arg_06:DWORD
mov eax , 4344
mov edx , 7FFE0300h
call dword ptr [edx]
ret 24
_5_1_2600_sp3_windows_xp_NtGdiRemoveFontResourceW ENDP
; ULONG __stdcall NtGdiRemoveFontMemResourceEx( ULONG arg_01 );
_5_1_2600_sp3_windows_xp_NtGdiRemoveFontMemResourceEx PROC STDCALL arg_01:DWORD
mov eax , 4345
mov edx , 7FFE0300h
call dword ptr [edx]
ret 4
_5_1_2600_sp3_windows_xp_NtGdiRemoveFontMemResourceEx ENDP
; ULONG __stdcall NtGdiResetDC( ULONG arg_01 , ULONG arg_02 , ULONG arg_03 , ULONG arg_04 , ULONG arg_05 );
_5_1_2600_sp3_windows_xp_NtGdiResetDC PROC STDCALL arg_01:DWORD , arg_02:DWORD , arg_03:DWORD , arg_04:DWORD , arg_05:DWORD
mov eax , 4346
mov edx , 7FFE0300h
call dword ptr [edx]
ret 20
_5_1_2600_sp3_windows_xp_NtGdiResetDC ENDP
; ULONG __stdcall NtGdiResizePalette( ULONG arg_01 , ULONG arg_02 );
_5_1_2600_sp3_windows_xp_NtGdiResizePalette PROC STDCALL arg_01:DWORD , arg_02:DWORD
mov eax , 4347
mov edx , 7FFE0300h
call dword ptr [edx]
ret 8
_5_1_2600_sp3_windows_xp_NtGdiResizePalette ENDP
; ULONG __stdcall NtGdiRestoreDC( ULONG arg_01 , ULONG arg_02 );
_5_1_2600_sp3_windows_xp_NtGdiRestoreDC PROC STDCALL arg_01:DWORD , arg_02:DWORD
mov eax , 4348
mov edx , 7FFE0300h
call dword ptr [edx]
ret 8
_5_1_2600_sp3_windows_xp_NtGdiRestoreDC ENDP
; ULONG __stdcall NtGdiRoundRect( ULONG arg_01 , ULONG arg_02 , ULONG arg_03 , ULONG arg_04 , ULONG arg_05 , ULONG arg_06 , ULONG arg_07 );
_5_1_2600_sp3_windows_xp_NtGdiRoundRect PROC STDCALL arg_01:DWORD , arg_02:DWORD , arg_03:DWORD , arg_04:DWORD , arg_05:DWORD , arg_06:DWORD , arg_07:DWORD
mov eax , 4349
mov edx , 7FFE0300h
call dword ptr [edx]
ret 28
_5_1_2600_sp3_windows_xp_NtGdiRoundRect ENDP
; ULONG __stdcall NtGdiSaveDC( ULONG arg_01 );
_5_1_2600_sp3_windows_xp_NtGdiSaveDC PROC STDCALL arg_01:DWORD
mov eax , 4350
mov edx , 7FFE0300h
call dword ptr [edx]
ret 4
_5_1_2600_sp3_windows_xp_NtGdiSaveDC ENDP
; ULONG __stdcall NtGdiScaleViewportExtEx( ULONG arg_01 , ULONG arg_02 , ULONG arg_03 , ULONG arg_04 , ULONG arg_05 , ULONG arg_06 );
_5_1_2600_sp3_windows_xp_NtGdiScaleViewportExtEx PROC STDCALL arg_01:DWORD , arg_02:DWORD , arg_03:DWORD , arg_04:DWORD , arg_05:DWORD , arg_06:DWORD
mov eax , 4351
mov edx , 7FFE0300h
call dword ptr [edx]
ret 24
_5_1_2600_sp3_windows_xp_NtGdiScaleViewportExtEx ENDP
; ULONG __stdcall NtGdiScaleWindowExtEx( ULONG arg_01 , ULONG arg_02 , ULONG arg_03 , ULONG arg_04 , ULONG arg_05 , ULONG arg_06 );
_5_1_2600_sp3_windows_xp_NtGdiScaleWindowExtEx PROC STDCALL arg_01:DWORD , arg_02:DWORD , arg_03:DWORD , arg_04:DWORD , arg_05:DWORD , arg_06:DWORD
mov eax , 4352
mov edx , 7FFE0300h
call dword ptr [edx]
ret 24
_5_1_2600_sp3_windows_xp_NtGdiScaleWindowExtEx ENDP
; ULONG __stdcall NtGdiSelectBitmap( ULONG arg_01 , ULONG arg_02 );
_5_1_2600_sp3_windows_xp_NtGdiSelectBitmap PROC STDCALL arg_01:DWORD , arg_02:DWORD
mov eax , 4353
mov edx , 7FFE0300h
call dword ptr [edx]
ret 8
_5_1_2600_sp3_windows_xp_NtGdiSelectBitmap ENDP
; ULONG __stdcall NtGdiSelectBrush( ULONG arg_01 , ULONG arg_02 );
_5_1_2600_sp3_windows_xp_NtGdiSelectBrush PROC STDCALL arg_01:DWORD , arg_02:DWORD
mov eax , 4354
mov edx , 7FFE0300h
call dword ptr [edx]
ret 8
_5_1_2600_sp3_windows_xp_NtGdiSelectBrush ENDP
; ULONG __stdcall NtGdiSelectClipPath( ULONG arg_01 , ULONG arg_02 );
_5_1_2600_sp3_windows_xp_NtGdiSelectClipPath PROC STDCALL arg_01:DWORD , arg_02:DWORD
mov eax , 4355
mov edx , 7FFE0300h
call dword ptr [edx]
ret 8
_5_1_2600_sp3_windows_xp_NtGdiSelectClipPath ENDP
; ULONG __stdcall NtGdiSelectFont( ULONG arg_01 , ULONG arg_02 );
_5_1_2600_sp3_windows_xp_NtGdiSelectFont PROC STDCALL arg_01:DWORD , arg_02:DWORD
mov eax , 4356
mov edx , 7FFE0300h
call dword ptr [edx]
ret 8
_5_1_2600_sp3_windows_xp_NtGdiSelectFont ENDP
; ULONG __stdcall NtGdiSelectPen( ULONG arg_01 , ULONG arg_02 );
_5_1_2600_sp3_windows_xp_NtGdiSelectPen PROC STDCALL arg_01:DWORD , arg_02:DWORD
mov eax , 4357
mov edx , 7FFE0300h
call dword ptr [edx]
ret 8
_5_1_2600_sp3_windows_xp_NtGdiSelectPen ENDP
; ULONG __stdcall NtGdiSetBitmapAttributes( ULONG arg_01 , ULONG arg_02 );
_5_1_2600_sp3_windows_xp_NtGdiSetBitmapAttributes PROC STDCALL arg_01:DWORD , arg_02:DWORD
mov eax , 4358
mov edx , 7FFE0300h
call dword ptr [edx]
ret 8
_5_1_2600_sp3_windows_xp_NtGdiSetBitmapAttributes ENDP
; ULONG __stdcall NtGdiSetBitmapBits( ULONG arg_01 , ULONG arg_02 , ULONG arg_03 );
_5_1_2600_sp3_windows_xp_NtGdiSetBitmapBits PROC STDCALL arg_01:DWORD , arg_02:DWORD , arg_03:DWORD
mov eax , 4359
mov edx , 7FFE0300h
call dword ptr [edx]
ret 12
_5_1_2600_sp3_windows_xp_NtGdiSetBitmapBits ENDP
; ULONG __stdcall NtGdiSetBitmapDimension( ULONG arg_01 , ULONG arg_02 , ULONG arg_03 , ULONG arg_04 );
_5_1_2600_sp3_windows_xp_NtGdiSetBitmapDimension PROC STDCALL arg_01:DWORD , arg_02:DWORD , arg_03:DWORD , arg_04:DWORD
mov eax , 4360
mov edx , 7FFE0300h
call dword ptr [edx]
ret 16
_5_1_2600_sp3_windows_xp_NtGdiSetBitmapDimension ENDP
; ULONG __stdcall NtGdiSetBoundsRect( ULONG arg_01 , ULONG arg_02 , ULONG arg_03 );
_5_1_2600_sp3_windows_xp_NtGdiSetBoundsRect PROC STDCALL arg_01:DWORD , arg_02:DWORD , arg_03:DWORD
mov eax , 4361
mov edx , 7FFE0300h
call dword ptr [edx]
ret 12
_5_1_2600_sp3_windows_xp_NtGdiSetBoundsRect ENDP
; ULONG __stdcall NtGdiSetBrushAttributes( ULONG arg_01 , ULONG arg_02 );
_5_1_2600_sp3_windows_xp_NtGdiSetBrushAttributes PROC STDCALL arg_01:DWORD , arg_02:DWORD
mov eax , 4362
mov edx , 7FFE0300h
call dword ptr [edx]
ret 8
_5_1_2600_sp3_windows_xp_NtGdiSetBrushAttributes ENDP
; ULONG __stdcall NtGdiSetBrushOrg( ULONG arg_01 , ULONG arg_02 , ULONG arg_03 , ULONG arg_04 );
_5_1_2600_sp3_windows_xp_NtGdiSetBrushOrg PROC STDCALL arg_01:DWORD , arg_02:DWORD , arg_03:DWORD , arg_04:DWORD
mov eax , 4363
mov edx , 7FFE0300h
call dword ptr [edx]
ret 16
_5_1_2600_sp3_windows_xp_NtGdiSetBrushOrg ENDP
; ULONG __stdcall NtGdiSetColorAdjustment( ULONG arg_01 , ULONG arg_02 );
_5_1_2600_sp3_windows_xp_NtGdiSetColorAdjustment PROC STDCALL arg_01:DWORD , arg_02:DWORD
mov eax , 4364
mov edx , 7FFE0300h
call dword ptr [edx]
ret 8
_5_1_2600_sp3_windows_xp_NtGdiSetColorAdjustment ENDP
; ULONG __stdcall NtGdiSetColorSpace( ULONG arg_01 , ULONG arg_02 );
_5_1_2600_sp3_windows_xp_NtGdiSetColorSpace PROC STDCALL arg_01:DWORD , arg_02:DWORD
mov eax , 4365
mov edx , 7FFE0300h
call dword ptr [edx]
ret 8
_5_1_2600_sp3_windows_xp_NtGdiSetColorSpace ENDP
; ULONG __stdcall NtGdiSetDeviceGammaRamp( ULONG arg_01 , ULONG arg_02 );
_5_1_2600_sp3_windows_xp_NtGdiSetDeviceGammaRamp PROC STDCALL arg_01:DWORD , arg_02:DWORD
mov eax , 4366
mov edx , 7FFE0300h
call dword ptr [edx]
ret 8
_5_1_2600_sp3_windows_xp_NtGdiSetDeviceGammaRamp ENDP
; ULONG __stdcall NtGdiSetDIBitsToDeviceInternal( ULONG arg_01 , ULONG arg_02 , ULONG arg_03 , ULONG arg_04 , ULONG arg_05 , ULONG arg_06 , ULONG arg_07 , ULONG arg_08 , ULONG arg_09 , ULONG arg_10 , ULONG arg_11 , ULONG arg_12 , ULONG arg_13 , ULONG arg_14 , ULONG arg_15 , ULONG arg_16 );
_5_1_2600_sp3_windows_xp_NtGdiSetDIBitsToDeviceInternal PROC STDCALL arg_01:DWORD , arg_02:DWORD , arg_03:DWORD , arg_04:DWORD , arg_05:DWORD , arg_06:DWORD , arg_07:DWORD , arg_08:DWORD , arg_09:DWORD , arg_10:DWORD , arg_11:DWORD , arg_12:DWORD , arg_13:DWORD , arg_14:DWORD , arg_15:DWORD , arg_16:DWORD
mov eax , 4367
mov edx , 7FFE0300h
call dword ptr [edx]
ret 64
_5_1_2600_sp3_windows_xp_NtGdiSetDIBitsToDeviceInternal ENDP
; ULONG __stdcall NtGdiSetFontEnumeration( ULONG arg_01 );
_5_1_2600_sp3_windows_xp_NtGdiSetFontEnumeration PROC STDCALL arg_01:DWORD
mov eax , 4368
mov edx , 7FFE0300h
call dword ptr [edx]
ret 4
_5_1_2600_sp3_windows_xp_NtGdiSetFontEnumeration ENDP
; ULONG __stdcall NtGdiSetFontXform( ULONG arg_01 , ULONG arg_02 , ULONG arg_03 );
_5_1_2600_sp3_windows_xp_NtGdiSetFontXform PROC STDCALL arg_01:DWORD , arg_02:DWORD , arg_03:DWORD
mov eax , 4369
mov edx , 7FFE0300h
call dword ptr [edx]
ret 12
_5_1_2600_sp3_windows_xp_NtGdiSetFontXform ENDP
; ULONG __stdcall NtGdiSetIcmMode( ULONG arg_01 , ULONG arg_02 , ULONG arg_03 );
_5_1_2600_sp3_windows_xp_NtGdiSetIcmMode PROC STDCALL arg_01:DWORD , arg_02:DWORD , arg_03:DWORD
mov eax , 4370
mov edx , 7FFE0300h
call dword ptr [edx]
ret 12
_5_1_2600_sp3_windows_xp_NtGdiSetIcmMode ENDP
; ULONG __stdcall NtGdiSetLinkedUFIs( ULONG arg_01 , ULONG arg_02 , ULONG arg_03 );
_5_1_2600_sp3_windows_xp_NtGdiSetLinkedUFIs PROC STDCALL arg_01:DWORD , arg_02:DWORD , arg_03:DWORD
mov eax , 4371
mov edx , 7FFE0300h
call dword ptr [edx]
ret 12
_5_1_2600_sp3_windows_xp_NtGdiSetLinkedUFIs ENDP
; ULONG __stdcall NtGdiSetMagicColors( ULONG arg_01 , ULONG arg_02 , ULONG arg_03 );
_5_1_2600_sp3_windows_xp_NtGdiSetMagicColors PROC STDCALL arg_01:DWORD , arg_02:DWORD , arg_03:DWORD
mov eax , 4372
mov edx , 7FFE0300h
call dword ptr [edx]
ret 12
_5_1_2600_sp3_windows_xp_NtGdiSetMagicColors ENDP
; ULONG __stdcall NtGdiSetMetaRgn( ULONG arg_01 );
_5_1_2600_sp3_windows_xp_NtGdiSetMetaRgn PROC STDCALL arg_01:DWORD
mov eax , 4373
mov edx , 7FFE0300h
call dword ptr [edx]
ret 4
_5_1_2600_sp3_windows_xp_NtGdiSetMetaRgn ENDP
; ULONG __stdcall NtGdiSetMiterLimit( ULONG arg_01 , ULONG arg_02 , ULONG arg_03 );
_5_1_2600_sp3_windows_xp_NtGdiSetMiterLimit PROC STDCALL arg_01:DWORD , arg_02:DWORD , arg_03:DWORD
mov eax , 4374
mov edx , 7FFE0300h
call dword ptr [edx]
ret 12
_5_1_2600_sp3_windows_xp_NtGdiSetMiterLimit ENDP
; ULONG __stdcall NtGdiGetDeviceWidth( ULONG arg_01 );
_5_1_2600_sp3_windows_xp_NtGdiGetDeviceWidth PROC STDCALL arg_01:DWORD
mov eax , 4375
mov edx , 7FFE0300h
call dword ptr [edx]
ret 4
_5_1_2600_sp3_windows_xp_NtGdiGetDeviceWidth ENDP
; ULONG __stdcall NtGdiMirrorWindowOrg( ULONG arg_01 );
_5_1_2600_sp3_windows_xp_NtGdiMirrorWindowOrg PROC STDCALL arg_01:DWORD
mov eax , 4376
mov edx , 7FFE0300h
call dword ptr [edx]
ret 4
_5_1_2600_sp3_windows_xp_NtGdiMirrorWindowOrg ENDP
; ULONG __stdcall NtGdiSetLayout( ULONG arg_01 , ULONG arg_02 , ULONG arg_03 );
_5_1_2600_sp3_windows_xp_NtGdiSetLayout PROC STDCALL arg_01:DWORD , arg_02:DWORD , arg_03:DWORD
mov eax , 4377
mov edx , 7FFE0300h
call dword ptr [edx]
ret 12
_5_1_2600_sp3_windows_xp_NtGdiSetLayout ENDP
; ULONG __stdcall NtGdiSetPixel( ULONG arg_01 , ULONG arg_02 , ULONG arg_03 , ULONG arg_04 );
_5_1_2600_sp3_windows_xp_NtGdiSetPixel PROC STDCALL arg_01:DWORD , arg_02:DWORD , arg_03:DWORD , arg_04:DWORD
mov eax , 4378
mov edx , 7FFE0300h
call dword ptr [edx]
ret 16
_5_1_2600_sp3_windows_xp_NtGdiSetPixel ENDP
; ULONG __stdcall NtGdiSetPixelFormat( ULONG arg_01 , ULONG arg_02 );
_5_1_2600_sp3_windows_xp_NtGdiSetPixelFormat PROC STDCALL arg_01:DWORD , arg_02:DWORD
mov eax , 4379
mov edx , 7FFE0300h
call dword ptr [edx]
ret 8
_5_1_2600_sp3_windows_xp_NtGdiSetPixelFormat ENDP
; ULONG __stdcall NtGdiSetRectRgn( ULONG arg_01 , ULONG arg_02 , ULONG arg_03 , ULONG arg_04 , ULONG arg_05 );
_5_1_2600_sp3_windows_xp_NtGdiSetRectRgn PROC STDCALL arg_01:DWORD , arg_02:DWORD , arg_03:DWORD , arg_04:DWORD , arg_05:DWORD
mov eax , 4380
mov edx , 7FFE0300h
call dword ptr [edx]
ret 20
_5_1_2600_sp3_windows_xp_NtGdiSetRectRgn ENDP
; ULONG __stdcall NtGdiSetSystemPaletteUse( ULONG arg_01 , ULONG arg_02 );
_5_1_2600_sp3_windows_xp_NtGdiSetSystemPaletteUse PROC STDCALL arg_01:DWORD , arg_02:DWORD
mov eax , 4381
mov edx , 7FFE0300h
call dword ptr [edx]
ret 8
_5_1_2600_sp3_windows_xp_NtGdiSetSystemPaletteUse ENDP
; ULONG __stdcall NtGdiSetTextJustification( ULONG arg_01 , ULONG arg_02 , ULONG arg_03 );
_5_1_2600_sp3_windows_xp_NtGdiSetTextJustification PROC STDCALL arg_01:DWORD , arg_02:DWORD , arg_03:DWORD
mov eax , 4382
mov edx , 7FFE0300h
call dword ptr [edx]
ret 12
_5_1_2600_sp3_windows_xp_NtGdiSetTextJustification ENDP
; ULONG __stdcall NtGdiSetupPublicCFONT( ULONG arg_01 , ULONG arg_02 , ULONG arg_03 );
_5_1_2600_sp3_windows_xp_NtGdiSetupPublicCFONT PROC STDCALL arg_01:DWORD , arg_02:DWORD , arg_03:DWORD
mov eax , 4383
mov edx , 7FFE0300h
call dword ptr [edx]
ret 12
_5_1_2600_sp3_windows_xp_NtGdiSetupPublicCFONT ENDP
; ULONG __stdcall NtGdiSetVirtualResolution( ULONG arg_01 , ULONG arg_02 , ULONG arg_03 , ULONG arg_04 , ULONG arg_05 );
_5_1_2600_sp3_windows_xp_NtGdiSetVirtualResolution PROC STDCALL arg_01:DWORD , arg_02:DWORD , arg_03:DWORD , arg_04:DWORD , arg_05:DWORD
mov eax , 4384
mov edx , 7FFE0300h
call dword ptr [edx]
ret 20
_5_1_2600_sp3_windows_xp_NtGdiSetVirtualResolution ENDP
; ULONG __stdcall NtGdiSetSizeDevice( ULONG arg_01 , ULONG arg_02 , ULONG arg_03 );
_5_1_2600_sp3_windows_xp_NtGdiSetSizeDevice PROC STDCALL arg_01:DWORD , arg_02:DWORD , arg_03:DWORD
mov eax , 4385
mov edx , 7FFE0300h
call dword ptr [edx]
ret 12
_5_1_2600_sp3_windows_xp_NtGdiSetSizeDevice ENDP
; ULONG __stdcall NtGdiStartDoc( ULONG arg_01 , ULONG arg_02 , ULONG arg_03 , ULONG arg_04 );
_5_1_2600_sp3_windows_xp_NtGdiStartDoc PROC STDCALL arg_01:DWORD , arg_02:DWORD , arg_03:DWORD , arg_04:DWORD
mov eax , 4386
mov edx , 7FFE0300h
call dword ptr [edx]
ret 16
_5_1_2600_sp3_windows_xp_NtGdiStartDoc ENDP
; ULONG __stdcall NtGdiStartPage( ULONG arg_01 );
_5_1_2600_sp3_windows_xp_NtGdiStartPage PROC STDCALL arg_01:DWORD
mov eax , 4387
mov edx , 7FFE0300h
call dword ptr [edx]
ret 4
_5_1_2600_sp3_windows_xp_NtGdiStartPage ENDP
; ULONG __stdcall NtGdiStretchBlt( ULONG arg_01 , ULONG arg_02 , ULONG arg_03 , ULONG arg_04 , ULONG arg_05 , ULONG arg_06 , ULONG arg_07 , ULONG arg_08 , ULONG arg_09 , ULONG arg_10 , ULONG arg_11 , ULONG arg_12 );
_5_1_2600_sp3_windows_xp_NtGdiStretchBlt PROC STDCALL arg_01:DWORD , arg_02:DWORD , arg_03:DWORD , arg_04:DWORD , arg_05:DWORD , arg_06:DWORD , arg_07:DWORD , arg_08:DWORD , arg_09:DWORD , arg_10:DWORD , arg_11:DWORD , arg_12:DWORD
mov eax , 4388
mov edx , 7FFE0300h
call dword ptr [edx]
ret 48
_5_1_2600_sp3_windows_xp_NtGdiStretchBlt ENDP
; ULONG __stdcall NtGdiStretchDIBitsInternal( ULONG arg_01 , ULONG arg_02 , ULONG arg_03 , ULONG arg_04 , ULONG arg_05 , ULONG arg_06 , ULONG arg_07 , ULONG arg_08 , ULONG arg_09 , ULONG arg_10 , ULONG arg_11 , ULONG arg_12 , ULONG arg_13 , ULONG arg_14 , ULONG arg_15 , ULONG arg_16 );
_5_1_2600_sp3_windows_xp_NtGdiStretchDIBitsInternal PROC STDCALL arg_01:DWORD , arg_02:DWORD , arg_03:DWORD , arg_04:DWORD , arg_05:DWORD , arg_06:DWORD , arg_07:DWORD , arg_08:DWORD , arg_09:DWORD , arg_10:DWORD , arg_11:DWORD , arg_12:DWORD , arg_13:DWORD , arg_14:DWORD , arg_15:DWORD , arg_16:DWORD
mov eax , 4389
mov edx , 7FFE0300h
call dword ptr [edx]
ret 64
_5_1_2600_sp3_windows_xp_NtGdiStretchDIBitsInternal ENDP
; ULONG __stdcall NtGdiStrokeAndFillPath( ULONG arg_01 );
_5_1_2600_sp3_windows_xp_NtGdiStrokeAndFillPath PROC STDCALL arg_01:DWORD
mov eax , 4390
mov edx , 7FFE0300h
call dword ptr [edx]
ret 4
_5_1_2600_sp3_windows_xp_NtGdiStrokeAndFillPath ENDP
; ULONG __stdcall NtGdiStrokePath( ULONG arg_01 );
_5_1_2600_sp3_windows_xp_NtGdiStrokePath PROC STDCALL arg_01:DWORD
mov eax , 4391
mov edx , 7FFE0300h
call dword ptr [edx]
ret 4
_5_1_2600_sp3_windows_xp_NtGdiStrokePath ENDP
; ULONG __stdcall NtGdiSwapBuffers( ULONG arg_01 );
_5_1_2600_sp3_windows_xp_NtGdiSwapBuffers PROC STDCALL arg_01:DWORD
mov eax , 4392
mov edx , 7FFE0300h
call dword ptr [edx]
ret 4
_5_1_2600_sp3_windows_xp_NtGdiSwapBuffers ENDP
; ULONG __stdcall NtGdiTransformPoints( ULONG arg_01 , ULONG arg_02 , ULONG arg_03 , ULONG arg_04 , ULONG arg_05 );
_5_1_2600_sp3_windows_xp_NtGdiTransformPoints PROC STDCALL arg_01:DWORD , arg_02:DWORD , arg_03:DWORD , arg_04:DWORD , arg_05:DWORD
mov eax , 4393
mov edx , 7FFE0300h
call dword ptr [edx]
ret 20
_5_1_2600_sp3_windows_xp_NtGdiTransformPoints ENDP
; ULONG __stdcall NtGdiTransparentBlt( ULONG arg_01 , ULONG arg_02 , ULONG arg_03 , ULONG arg_04 , ULONG arg_05 , ULONG arg_06 , ULONG arg_07 , ULONG arg_08 , ULONG arg_09 , ULONG arg_10 , ULONG arg_11 );
_5_1_2600_sp3_windows_xp_NtGdiTransparentBlt PROC STDCALL arg_01:DWORD , arg_02:DWORD , arg_03:DWORD , arg_04:DWORD , arg_05:DWORD , arg_06:DWORD , arg_07:DWORD , arg_08:DWORD , arg_09:DWORD , arg_10:DWORD , arg_11:DWORD
mov eax , 4394
mov edx , 7FFE0300h
call dword ptr [edx]
ret 44
_5_1_2600_sp3_windows_xp_NtGdiTransparentBlt ENDP
; ULONG __stdcall NtGdiUnloadPrinterDriver( ULONG arg_01 , ULONG arg_02 );
_5_1_2600_sp3_windows_xp_NtGdiUnloadPrinterDriver PROC STDCALL arg_01:DWORD , arg_02:DWORD
mov eax , 4395
mov edx , 7FFE0300h
call dword ptr [edx]
ret 8
_5_1_2600_sp3_windows_xp_NtGdiUnloadPrinterDriver ENDP
; ULONG __stdcall NtGdiUnmapMemFont( ULONG arg_01 );
_5_1_2600_sp3_windows_xp_NtGdiUnmapMemFont PROC STDCALL arg_01:DWORD
mov eax , 4396
mov edx , 7FFE0300h
call dword ptr [edx]
ret 4
_5_1_2600_sp3_windows_xp_NtGdiUnmapMemFont ENDP
; ULONG __stdcall NtGdiUnrealizeObject( ULONG arg_01 );
_5_1_2600_sp3_windows_xp_NtGdiUnrealizeObject PROC STDCALL arg_01:DWORD
mov eax , 4397
mov edx , 7FFE0300h
call dword ptr [edx]
ret 4
_5_1_2600_sp3_windows_xp_NtGdiUnrealizeObject ENDP
; ULONG __stdcall NtGdiUpdateColors( ULONG arg_01 );
_5_1_2600_sp3_windows_xp_NtGdiUpdateColors PROC STDCALL arg_01:DWORD
mov eax , 4398
mov edx , 7FFE0300h
call dword ptr [edx]
ret 4
_5_1_2600_sp3_windows_xp_NtGdiUpdateColors ENDP
; ULONG __stdcall NtGdiWidenPath( ULONG arg_01 );
_5_1_2600_sp3_windows_xp_NtGdiWidenPath PROC STDCALL arg_01:DWORD
mov eax , 4399
mov edx , 7FFE0300h
call dword ptr [edx]
ret 4
_5_1_2600_sp3_windows_xp_NtGdiWidenPath ENDP
; ULONG __stdcall NtUserActivateKeyboardLayout( ULONG arg_01 , ULONG arg_02 );
_5_1_2600_sp3_windows_xp_NtUserActivateKeyboardLayout PROC STDCALL arg_01:DWORD , arg_02:DWORD
mov eax , 4400
mov edx , 7FFE0300h
call dword ptr [edx]
ret 8
_5_1_2600_sp3_windows_xp_NtUserActivateKeyboardLayout ENDP
; ULONG __stdcall NtUserAlterWindowStyle( ULONG arg_01 , ULONG arg_02 , ULONG arg_03 );
_5_1_2600_sp3_windows_xp_NtUserAlterWindowStyle PROC STDCALL arg_01:DWORD , arg_02:DWORD , arg_03:DWORD
mov eax , 4401
mov edx , 7FFE0300h
call dword ptr [edx]
ret 12
_5_1_2600_sp3_windows_xp_NtUserAlterWindowStyle ENDP
; ULONG __stdcall NtUserAssociateInputContext( ULONG arg_01 , ULONG arg_02 , ULONG arg_03 );
_5_1_2600_sp3_windows_xp_NtUserAssociateInputContext PROC STDCALL arg_01:DWORD , arg_02:DWORD , arg_03:DWORD
mov eax , 4402
mov edx , 7FFE0300h
call dword ptr [edx]
ret 12
_5_1_2600_sp3_windows_xp_NtUserAssociateInputContext ENDP
; ULONG __stdcall NtUserAttachThreadInput( ULONG arg_01 , ULONG arg_02 , ULONG arg_03 );
_5_1_2600_sp3_windows_xp_NtUserAttachThreadInput PROC STDCALL arg_01:DWORD , arg_02:DWORD , arg_03:DWORD
mov eax , 4403
mov edx , 7FFE0300h
call dword ptr [edx]
ret 12
_5_1_2600_sp3_windows_xp_NtUserAttachThreadInput ENDP
; ULONG __stdcall NtUserBeginPaint( ULONG arg_01 , ULONG arg_02 );
_5_1_2600_sp3_windows_xp_NtUserBeginPaint PROC STDCALL arg_01:DWORD , arg_02:DWORD
mov eax , 4404
mov edx , 7FFE0300h
call dword ptr [edx]
ret 8
_5_1_2600_sp3_windows_xp_NtUserBeginPaint ENDP
; ULONG __stdcall NtUserBitBltSysBmp( ULONG arg_01 , ULONG arg_02 , ULONG arg_03 , ULONG arg_04 , ULONG arg_05 , ULONG arg_06 , ULONG arg_07 , ULONG arg_08 );
_5_1_2600_sp3_windows_xp_NtUserBitBltSysBmp PROC STDCALL arg_01:DWORD , arg_02:DWORD , arg_03:DWORD , arg_04:DWORD , arg_05:DWORD , arg_06:DWORD , arg_07:DWORD , arg_08:DWORD
mov eax , 4405
mov edx , 7FFE0300h
call dword ptr [edx]
ret 32
_5_1_2600_sp3_windows_xp_NtUserBitBltSysBmp ENDP
; ULONG __stdcall NtUserBlockInput( ULONG arg_01 );
_5_1_2600_sp3_windows_xp_NtUserBlockInput PROC STDCALL arg_01:DWORD
mov eax , 4406
mov edx , 7FFE0300h
call dword ptr [edx]
ret 4
_5_1_2600_sp3_windows_xp_NtUserBlockInput ENDP
; ULONG __stdcall NtUserBuildHimcList( ULONG arg_01 , ULONG arg_02 , ULONG arg_03 , ULONG arg_04 );
_5_1_2600_sp3_windows_xp_NtUserBuildHimcList PROC STDCALL arg_01:DWORD , arg_02:DWORD , arg_03:DWORD , arg_04:DWORD
mov eax , 4407
mov edx , 7FFE0300h
call dword ptr [edx]
ret 16
_5_1_2600_sp3_windows_xp_NtUserBuildHimcList ENDP
; ULONG __stdcall NtUserBuildHwndList( ULONG arg_01 , ULONG arg_02 , ULONG arg_03 , ULONG arg_04 , ULONG arg_05 , ULONG arg_06 , ULONG arg_07 );
_5_1_2600_sp3_windows_xp_NtUserBuildHwndList PROC STDCALL arg_01:DWORD , arg_02:DWORD , arg_03:DWORD , arg_04:DWORD , arg_05:DWORD , arg_06:DWORD , arg_07:DWORD
mov eax , 4408
mov edx , 7FFE0300h
call dword ptr [edx]
ret 28
_5_1_2600_sp3_windows_xp_NtUserBuildHwndList ENDP
; ULONG __stdcall NtUserBuildNameList( ULONG arg_01 , ULONG arg_02 , ULONG arg_03 , ULONG arg_04 );
_5_1_2600_sp3_windows_xp_NtUserBuildNameList PROC STDCALL arg_01:DWORD , arg_02:DWORD , arg_03:DWORD , arg_04:DWORD
mov eax , 4409
mov edx , 7FFE0300h
call dword ptr [edx]
ret 16
_5_1_2600_sp3_windows_xp_NtUserBuildNameList ENDP
; ULONG __stdcall NtUserBuildPropList( ULONG arg_01 , ULONG arg_02 , ULONG arg_03 , ULONG arg_04 );
_5_1_2600_sp3_windows_xp_NtUserBuildPropList PROC STDCALL arg_01:DWORD , arg_02:DWORD , arg_03:DWORD , arg_04:DWORD
mov eax , 4410
mov edx , 7FFE0300h
call dword ptr [edx]
ret 16
_5_1_2600_sp3_windows_xp_NtUserBuildPropList ENDP
; ULONG __stdcall NtUserCallHwnd( ULONG arg_01 , ULONG arg_02 );
_5_1_2600_sp3_windows_xp_NtUserCallHwnd PROC STDCALL arg_01:DWORD , arg_02:DWORD
mov eax , 4411
mov edx , 7FFE0300h
call dword ptr [edx]
ret 8
_5_1_2600_sp3_windows_xp_NtUserCallHwnd ENDP
; ULONG __stdcall NtUserCallHwndLock( ULONG arg_01 , ULONG arg_02 );
_5_1_2600_sp3_windows_xp_NtUserCallHwndLock PROC STDCALL arg_01:DWORD , arg_02:DWORD
mov eax , 4412
mov edx , 7FFE0300h
call dword ptr [edx]
ret 8
_5_1_2600_sp3_windows_xp_NtUserCallHwndLock ENDP
; ULONG __stdcall NtUserCallHwndOpt( ULONG arg_01 , ULONG arg_02 );
_5_1_2600_sp3_windows_xp_NtUserCallHwndOpt PROC STDCALL arg_01:DWORD , arg_02:DWORD
mov eax , 4413
mov edx , 7FFE0300h
call dword ptr [edx]
ret 8
_5_1_2600_sp3_windows_xp_NtUserCallHwndOpt ENDP
; ULONG __stdcall NtUserCallHwndParam( ULONG arg_01 , ULONG arg_02 , ULONG arg_03 );
_5_1_2600_sp3_windows_xp_NtUserCallHwndParam PROC STDCALL arg_01:DWORD , arg_02:DWORD , arg_03:DWORD
mov eax , 4414
mov edx , 7FFE0300h
call dword ptr [edx]
ret 12
_5_1_2600_sp3_windows_xp_NtUserCallHwndParam ENDP
; ULONG __stdcall NtUserCallHwndParamLock( ULONG arg_01 , ULONG arg_02 , ULONG arg_03 );
_5_1_2600_sp3_windows_xp_NtUserCallHwndParamLock PROC STDCALL arg_01:DWORD , arg_02:DWORD , arg_03:DWORD
mov eax , 4415
mov edx , 7FFE0300h
call dword ptr [edx]
ret 12
_5_1_2600_sp3_windows_xp_NtUserCallHwndParamLock ENDP
; ULONG __stdcall NtUserCallMsgFilter( ULONG arg_01 , ULONG arg_02 );
_5_1_2600_sp3_windows_xp_NtUserCallMsgFilter PROC STDCALL arg_01:DWORD , arg_02:DWORD
mov eax , 4416
mov edx , 7FFE0300h
call dword ptr [edx]
ret 8
_5_1_2600_sp3_windows_xp_NtUserCallMsgFilter ENDP
; ULONG __stdcall NtUserCallNextHookEx( ULONG arg_01 , ULONG arg_02 , ULONG arg_03 , ULONG arg_04 );
_5_1_2600_sp3_windows_xp_NtUserCallNextHookEx PROC STDCALL arg_01:DWORD , arg_02:DWORD , arg_03:DWORD , arg_04:DWORD
mov eax , 4417
mov edx , 7FFE0300h
call dword ptr [edx]
ret 16
_5_1_2600_sp3_windows_xp_NtUserCallNextHookEx ENDP
; ULONG __stdcall NtUserCallNoParam( ULONG arg_01 );
_5_1_2600_sp3_windows_xp_NtUserCallNoParam PROC STDCALL arg_01:DWORD
mov eax , 4418
mov edx , 7FFE0300h
call dword ptr [edx]
ret 4
_5_1_2600_sp3_windows_xp_NtUserCallNoParam ENDP
; ULONG __stdcall NtUserCallOneParam( ULONG arg_01 , ULONG arg_02 );
_5_1_2600_sp3_windows_xp_NtUserCallOneParam PROC STDCALL arg_01:DWORD , arg_02:DWORD
mov eax , 4419
mov edx , 7FFE0300h
call dword ptr [edx]
ret 8
_5_1_2600_sp3_windows_xp_NtUserCallOneParam ENDP
; ULONG __stdcall NtUserCallTwoParam( ULONG arg_01 , ULONG arg_02 , ULONG arg_03 );
_5_1_2600_sp3_windows_xp_NtUserCallTwoParam PROC STDCALL arg_01:DWORD , arg_02:DWORD , arg_03:DWORD
mov eax , 4420
mov edx , 7FFE0300h
call dword ptr [edx]
ret 12
_5_1_2600_sp3_windows_xp_NtUserCallTwoParam ENDP
; ULONG __stdcall NtUserChangeClipboardChain( ULONG arg_01 , ULONG arg_02 );
_5_1_2600_sp3_windows_xp_NtUserChangeClipboardChain PROC STDCALL arg_01:DWORD , arg_02:DWORD
mov eax , 4421
mov edx , 7FFE0300h
call dword ptr [edx]
ret 8
_5_1_2600_sp3_windows_xp_NtUserChangeClipboardChain ENDP
; ULONG __stdcall NtUserChangeDisplaySettings( ULONG arg_01 , ULONG arg_02 , ULONG arg_03 , ULONG arg_04 , ULONG arg_05 );
_5_1_2600_sp3_windows_xp_NtUserChangeDisplaySettings PROC STDCALL arg_01:DWORD , arg_02:DWORD , arg_03:DWORD , arg_04:DWORD , arg_05:DWORD
mov eax , 4422
mov edx , 7FFE0300h
call dword ptr [edx]
ret 20
_5_1_2600_sp3_windows_xp_NtUserChangeDisplaySettings ENDP
; ULONG __stdcall NtUserCheckImeHotKey( ULONG arg_01 , ULONG arg_02 );
_5_1_2600_sp3_windows_xp_NtUserCheckImeHotKey PROC STDCALL arg_01:DWORD , arg_02:DWORD
mov eax , 4423
mov edx , 7FFE0300h
call dword ptr [edx]
ret 8
_5_1_2600_sp3_windows_xp_NtUserCheckImeHotKey ENDP
; ULONG __stdcall NtUserCheckMenuItem( ULONG arg_01 , ULONG arg_02 , ULONG arg_03 );
_5_1_2600_sp3_windows_xp_NtUserCheckMenuItem PROC STDCALL arg_01:DWORD , arg_02:DWORD , arg_03:DWORD
mov eax , 4424
mov edx , 7FFE0300h
call dword ptr [edx]
ret 12
_5_1_2600_sp3_windows_xp_NtUserCheckMenuItem ENDP
; ULONG __stdcall NtUserChildWindowFromPointEx( ULONG arg_01 , ULONG arg_02 , ULONG arg_03 , ULONG arg_04 );
_5_1_2600_sp3_windows_xp_NtUserChildWindowFromPointEx PROC STDCALL arg_01:DWORD , arg_02:DWORD , arg_03:DWORD , arg_04:DWORD
mov eax , 4425
mov edx , 7FFE0300h
call dword ptr [edx]
ret 16
_5_1_2600_sp3_windows_xp_NtUserChildWindowFromPointEx ENDP
; ULONG __stdcall NtUserClipCursor( ULONG arg_01 );
_5_1_2600_sp3_windows_xp_NtUserClipCursor PROC STDCALL arg_01:DWORD
mov eax , 4426
mov edx , 7FFE0300h
call dword ptr [edx]
ret 4
_5_1_2600_sp3_windows_xp_NtUserClipCursor ENDP
; ULONG __stdcall NtUserCloseClipboard( );
_5_1_2600_sp3_windows_xp_NtUserCloseClipboard PROC STDCALL
mov eax , 4427
mov edx , 7FFE0300h
call dword ptr [edx]
ret
_5_1_2600_sp3_windows_xp_NtUserCloseClipboard ENDP
; ULONG __stdcall NtUserCloseDesktop( ULONG arg_01 );
_5_1_2600_sp3_windows_xp_NtUserCloseDesktop PROC STDCALL arg_01:DWORD
mov eax , 4428
mov edx , 7FFE0300h
call dword ptr [edx]
ret 4
_5_1_2600_sp3_windows_xp_NtUserCloseDesktop ENDP
; ULONG __stdcall NtUserCloseWindowStation( ULONG arg_01 );
_5_1_2600_sp3_windows_xp_NtUserCloseWindowStation PROC STDCALL arg_01:DWORD
mov eax , 4429
mov edx , 7FFE0300h
call dword ptr [edx]
ret 4
_5_1_2600_sp3_windows_xp_NtUserCloseWindowStation ENDP
; ULONG __stdcall NtUserConsoleControl( ULONG arg_01 , ULONG arg_02 , ULONG arg_03 );
_5_1_2600_sp3_windows_xp_NtUserConsoleControl PROC STDCALL arg_01:DWORD , arg_02:DWORD , arg_03:DWORD
mov eax , 4430
mov edx , 7FFE0300h
call dword ptr [edx]
ret 12
_5_1_2600_sp3_windows_xp_NtUserConsoleControl ENDP
; ULONG __stdcall NtUserConvertMemHandle( ULONG arg_01 , ULONG arg_02 );
_5_1_2600_sp3_windows_xp_NtUserConvertMemHandle PROC STDCALL arg_01:DWORD , arg_02:DWORD
mov eax , 4431
mov edx , 7FFE0300h
call dword ptr [edx]
ret 8
_5_1_2600_sp3_windows_xp_NtUserConvertMemHandle ENDP
; ULONG __stdcall NtUserCopyAcceleratorTable( ULONG arg_01 , ULONG arg_02 , ULONG arg_03 );
_5_1_2600_sp3_windows_xp_NtUserCopyAcceleratorTable PROC STDCALL arg_01:DWORD , arg_02:DWORD , arg_03:DWORD
mov eax , 4432
mov edx , 7FFE0300h
call dword ptr [edx]
ret 12
_5_1_2600_sp3_windows_xp_NtUserCopyAcceleratorTable ENDP
; ULONG __stdcall NtUserCountClipboardFormats( );
_5_1_2600_sp3_windows_xp_NtUserCountClipboardFormats PROC STDCALL
mov eax , 4433
mov edx , 7FFE0300h
call dword ptr [edx]
ret
_5_1_2600_sp3_windows_xp_NtUserCountClipboardFormats ENDP
; ULONG __stdcall NtUserCreateAcceleratorTable( ULONG arg_01 , ULONG arg_02 );
_5_1_2600_sp3_windows_xp_NtUserCreateAcceleratorTable PROC STDCALL arg_01:DWORD , arg_02:DWORD
mov eax , 4434
mov edx , 7FFE0300h
call dword ptr [edx]
ret 8
_5_1_2600_sp3_windows_xp_NtUserCreateAcceleratorTable ENDP
; ULONG __stdcall NtUserCreateCaret( ULONG arg_01 , ULONG arg_02 , ULONG arg_03 , ULONG arg_04 );
_5_1_2600_sp3_windows_xp_NtUserCreateCaret PROC STDCALL arg_01:DWORD , arg_02:DWORD , arg_03:DWORD , arg_04:DWORD
mov eax , 4435
mov edx , 7FFE0300h
call dword ptr [edx]
ret 16
_5_1_2600_sp3_windows_xp_NtUserCreateCaret ENDP
; ULONG __stdcall NtUserCreateDesktop( ULONG arg_01 , ULONG arg_02 , ULONG arg_03 , ULONG arg_04 , ULONG arg_05 );
_5_1_2600_sp3_windows_xp_NtUserCreateDesktop PROC STDCALL arg_01:DWORD , arg_02:DWORD , arg_03:DWORD , arg_04:DWORD , arg_05:DWORD
mov eax , 4436
mov edx , 7FFE0300h
call dword ptr [edx]
ret 20
_5_1_2600_sp3_windows_xp_NtUserCreateDesktop ENDP
; ULONG __stdcall NtUserCreateInputContext( ULONG arg_01 );
_5_1_2600_sp3_windows_xp_NtUserCreateInputContext PROC STDCALL arg_01:DWORD
mov eax , 4437
mov edx , 7FFE0300h
call dword ptr [edx]
ret 4
_5_1_2600_sp3_windows_xp_NtUserCreateInputContext ENDP
; ULONG __stdcall NtUserCreateLocalMemHandle( ULONG arg_01 , ULONG arg_02 , ULONG arg_03 , ULONG arg_04 );
_5_1_2600_sp3_windows_xp_NtUserCreateLocalMemHandle PROC STDCALL arg_01:DWORD , arg_02:DWORD , arg_03:DWORD , arg_04:DWORD
mov eax , 4438
mov edx , 7FFE0300h
call dword ptr [edx]
ret 16
_5_1_2600_sp3_windows_xp_NtUserCreateLocalMemHandle ENDP
; ULONG __stdcall NtUserCreateWindowEx( ULONG arg_01 , ULONG arg_02 , ULONG arg_03 , ULONG arg_04 , ULONG arg_05 , ULONG arg_06 , ULONG arg_07 , ULONG arg_08 , ULONG arg_09 , ULONG arg_10 , ULONG arg_11 , ULONG arg_12 , ULONG arg_13 , ULONG arg_14 , ULONG arg_15 );
_5_1_2600_sp3_windows_xp_NtUserCreateWindowEx PROC STDCALL arg_01:DWORD , arg_02:DWORD , arg_03:DWORD , arg_04:DWORD , arg_05:DWORD , arg_06:DWORD , arg_07:DWORD , arg_08:DWORD , arg_09:DWORD , arg_10:DWORD , arg_11:DWORD , arg_12:DWORD , arg_13:DWORD , arg_14:DWORD , arg_15:DWORD
mov eax , 4439
mov edx , 7FFE0300h
call dword ptr [edx]
ret 60
_5_1_2600_sp3_windows_xp_NtUserCreateWindowEx ENDP
; ULONG __stdcall NtUserCreateWindowStation( ULONG arg_01 , ULONG arg_02 , ULONG arg_03 , ULONG arg_04 , ULONG arg_05 , ULONG arg_06 , ULONG arg_07 );
_5_1_2600_sp3_windows_xp_NtUserCreateWindowStation PROC STDCALL arg_01:DWORD , arg_02:DWORD , arg_03:DWORD , arg_04:DWORD , arg_05:DWORD , arg_06:DWORD , arg_07:DWORD
mov eax , 4440
mov edx , 7FFE0300h
call dword ptr [edx]
ret 28
_5_1_2600_sp3_windows_xp_NtUserCreateWindowStation ENDP
; ULONG __stdcall NtUserDdeGetQualityOfService( ULONG arg_01 , ULONG arg_02 , ULONG arg_03 );
_5_1_2600_sp3_windows_xp_NtUserDdeGetQualityOfService PROC STDCALL arg_01:DWORD , arg_02:DWORD , arg_03:DWORD
mov eax , 4441
mov edx , 7FFE0300h
call dword ptr [edx]
ret 12
_5_1_2600_sp3_windows_xp_NtUserDdeGetQualityOfService ENDP
; ULONG __stdcall NtUserDdeInitialize( ULONG arg_01 , ULONG arg_02 , ULONG arg_03 , ULONG arg_04 , ULONG arg_05 );
_5_1_2600_sp3_windows_xp_NtUserDdeInitialize PROC STDCALL arg_01:DWORD , arg_02:DWORD , arg_03:DWORD , arg_04:DWORD , arg_05:DWORD
mov eax , 4442
mov edx , 7FFE0300h
call dword ptr [edx]
ret 20
_5_1_2600_sp3_windows_xp_NtUserDdeInitialize ENDP
; ULONG __stdcall NtUserDdeSetQualityOfService( ULONG arg_01 , ULONG arg_02 , ULONG arg_03 );
_5_1_2600_sp3_windows_xp_NtUserDdeSetQualityOfService PROC STDCALL arg_01:DWORD , arg_02:DWORD , arg_03:DWORD
mov eax , 4443
mov edx , 7FFE0300h
call dword ptr [edx]
ret 12
_5_1_2600_sp3_windows_xp_NtUserDdeSetQualityOfService ENDP
; ULONG __stdcall NtUserDeferWindowPos( ULONG arg_01 , ULONG arg_02 , ULONG arg_03 , ULONG arg_04 , ULONG arg_05 , ULONG arg_06 , ULONG arg_07 , ULONG arg_08 );
_5_1_2600_sp3_windows_xp_NtUserDeferWindowPos PROC STDCALL arg_01:DWORD , arg_02:DWORD , arg_03:DWORD , arg_04:DWORD , arg_05:DWORD , arg_06:DWORD , arg_07:DWORD , arg_08:DWORD
mov eax , 4444
mov edx , 7FFE0300h
call dword ptr [edx]
ret 32
_5_1_2600_sp3_windows_xp_NtUserDeferWindowPos ENDP
; ULONG __stdcall NtUserDefSetText( ULONG arg_01 , ULONG arg_02 );
_5_1_2600_sp3_windows_xp_NtUserDefSetText PROC STDCALL arg_01:DWORD , arg_02:DWORD
mov eax , 4445
mov edx , 7FFE0300h
call dword ptr [edx]
ret 8
_5_1_2600_sp3_windows_xp_NtUserDefSetText ENDP
; ULONG __stdcall NtUserDeleteMenu( ULONG arg_01 , ULONG arg_02 , ULONG arg_03 );
_5_1_2600_sp3_windows_xp_NtUserDeleteMenu PROC STDCALL arg_01:DWORD , arg_02:DWORD , arg_03:DWORD
mov eax , 4446
mov edx , 7FFE0300h
call dword ptr [edx]
ret 12
_5_1_2600_sp3_windows_xp_NtUserDeleteMenu ENDP
; ULONG __stdcall NtUserDestroyAcceleratorTable( ULONG arg_01 );
_5_1_2600_sp3_windows_xp_NtUserDestroyAcceleratorTable PROC STDCALL arg_01:DWORD
mov eax , 4447
mov edx , 7FFE0300h
call dword ptr [edx]
ret 4
_5_1_2600_sp3_windows_xp_NtUserDestroyAcceleratorTable ENDP
; ULONG __stdcall NtUserDestroyCursor( ULONG arg_01 , ULONG arg_02 );
_5_1_2600_sp3_windows_xp_NtUserDestroyCursor PROC STDCALL arg_01:DWORD , arg_02:DWORD
mov eax , 4448
mov edx , 7FFE0300h
call dword ptr [edx]
ret 8
_5_1_2600_sp3_windows_xp_NtUserDestroyCursor ENDP
; ULONG __stdcall NtUserDestroyInputContext( ULONG arg_01 );
_5_1_2600_sp3_windows_xp_NtUserDestroyInputContext PROC STDCALL arg_01:DWORD
mov eax , 4449
mov edx , 7FFE0300h
call dword ptr [edx]
ret 4
_5_1_2600_sp3_windows_xp_NtUserDestroyInputContext ENDP
; ULONG __stdcall NtUserDestroyMenu( ULONG arg_01 );
_5_1_2600_sp3_windows_xp_NtUserDestroyMenu PROC STDCALL arg_01:DWORD
mov eax , 4450
mov edx , 7FFE0300h
call dword ptr [edx]
ret 4
_5_1_2600_sp3_windows_xp_NtUserDestroyMenu ENDP
; ULONG __stdcall NtUserDestroyWindow( ULONG arg_01 );
_5_1_2600_sp3_windows_xp_NtUserDestroyWindow PROC STDCALL arg_01:DWORD
mov eax , 4451
mov edx , 7FFE0300h
call dword ptr [edx]
ret 4
_5_1_2600_sp3_windows_xp_NtUserDestroyWindow ENDP
; ULONG __stdcall NtUserDisableThreadIme( ULONG arg_01 );
_5_1_2600_sp3_windows_xp_NtUserDisableThreadIme PROC STDCALL arg_01:DWORD
mov eax , 4452
mov edx , 7FFE0300h
call dword ptr [edx]
ret 4
_5_1_2600_sp3_windows_xp_NtUserDisableThreadIme ENDP
; ULONG __stdcall NtUserDispatchMessage( ULONG arg_01 );
_5_1_2600_sp3_windows_xp_NtUserDispatchMessage PROC STDCALL arg_01:DWORD
mov eax , 4453
mov edx , 7FFE0300h
call dword ptr [edx]
ret 4
_5_1_2600_sp3_windows_xp_NtUserDispatchMessage ENDP
; ULONG __stdcall NtUserDragDetect( ULONG arg_01 , ULONG arg_02 , ULONG arg_03 );
_5_1_2600_sp3_windows_xp_NtUserDragDetect PROC STDCALL arg_01:DWORD , arg_02:DWORD , arg_03:DWORD
mov eax , 4454
mov edx , 7FFE0300h
call dword ptr [edx]
ret 12
_5_1_2600_sp3_windows_xp_NtUserDragDetect ENDP
; ULONG __stdcall NtUserDragObject( ULONG arg_01 , ULONG arg_02 , ULONG arg_03 , ULONG arg_04 , ULONG arg_05 );
_5_1_2600_sp3_windows_xp_NtUserDragObject PROC STDCALL arg_01:DWORD , arg_02:DWORD , arg_03:DWORD , arg_04:DWORD , arg_05:DWORD
mov eax , 4455
mov edx , 7FFE0300h
call dword ptr [edx]
ret 20
_5_1_2600_sp3_windows_xp_NtUserDragObject ENDP
; ULONG __stdcall NtUserDrawAnimatedRects( ULONG arg_01 , ULONG arg_02 , ULONG arg_03 , ULONG arg_04 );
_5_1_2600_sp3_windows_xp_NtUserDrawAnimatedRects PROC STDCALL arg_01:DWORD , arg_02:DWORD , arg_03:DWORD , arg_04:DWORD
mov eax , 4456
mov edx , 7FFE0300h
call dword ptr [edx]
ret 16
_5_1_2600_sp3_windows_xp_NtUserDrawAnimatedRects ENDP
; ULONG __stdcall NtUserDrawCaption( ULONG arg_01 , ULONG arg_02 , ULONG arg_03 , ULONG arg_04 );
_5_1_2600_sp3_windows_xp_NtUserDrawCaption PROC STDCALL arg_01:DWORD , arg_02:DWORD , arg_03:DWORD , arg_04:DWORD
mov eax , 4457
mov edx , 7FFE0300h
call dword ptr [edx]
ret 16
_5_1_2600_sp3_windows_xp_NtUserDrawCaption ENDP
; ULONG __stdcall NtUserDrawCaptionTemp( ULONG arg_01 , ULONG arg_02 , ULONG arg_03 , ULONG arg_04 , ULONG arg_05 , ULONG arg_06 , ULONG arg_07 );
_5_1_2600_sp3_windows_xp_NtUserDrawCaptionTemp PROC STDCALL arg_01:DWORD , arg_02:DWORD , arg_03:DWORD , arg_04:DWORD , arg_05:DWORD , arg_06:DWORD , arg_07:DWORD
mov eax , 4458
mov edx , 7FFE0300h
call dword ptr [edx]
ret 28
_5_1_2600_sp3_windows_xp_NtUserDrawCaptionTemp ENDP
; ULONG __stdcall NtUserDrawIconEx( ULONG arg_01 , ULONG arg_02 , ULONG arg_03 , ULONG arg_04 , ULONG arg_05 , ULONG arg_06 , ULONG arg_07 , ULONG arg_08 , ULONG arg_09 , ULONG arg_10 , ULONG arg_11 );
_5_1_2600_sp3_windows_xp_NtUserDrawIconEx PROC STDCALL arg_01:DWORD , arg_02:DWORD , arg_03:DWORD , arg_04:DWORD , arg_05:DWORD , arg_06:DWORD , arg_07:DWORD , arg_08:DWORD , arg_09:DWORD , arg_10:DWORD , arg_11:DWORD
mov eax , 4459
mov edx , 7FFE0300h
call dword ptr [edx]
ret 44
_5_1_2600_sp3_windows_xp_NtUserDrawIconEx ENDP
; ULONG __stdcall NtUserDrawMenuBarTemp( ULONG arg_01 , ULONG arg_02 , ULONG arg_03 , ULONG arg_04 , ULONG arg_05 );
_5_1_2600_sp3_windows_xp_NtUserDrawMenuBarTemp PROC STDCALL arg_01:DWORD , arg_02:DWORD , arg_03:DWORD , arg_04:DWORD , arg_05:DWORD
mov eax , 4460
mov edx , 7FFE0300h
call dword ptr [edx]
ret 20
_5_1_2600_sp3_windows_xp_NtUserDrawMenuBarTemp ENDP
; ULONG __stdcall NtUserEmptyClipboard( );
_5_1_2600_sp3_windows_xp_NtUserEmptyClipboard PROC STDCALL
mov eax , 4461
mov edx , 7FFE0300h
call dword ptr [edx]
ret
_5_1_2600_sp3_windows_xp_NtUserEmptyClipboard ENDP
; ULONG __stdcall NtUserEnableMenuItem( ULONG arg_01 , ULONG arg_02 , ULONG arg_03 );
_5_1_2600_sp3_windows_xp_NtUserEnableMenuItem PROC STDCALL arg_01:DWORD , arg_02:DWORD , arg_03:DWORD
mov eax , 4462
mov edx , 7FFE0300h
call dword ptr [edx]
ret 12
_5_1_2600_sp3_windows_xp_NtUserEnableMenuItem ENDP
; ULONG __stdcall NtUserEnableScrollBar( ULONG arg_01 , ULONG arg_02 , ULONG arg_03 );
_5_1_2600_sp3_windows_xp_NtUserEnableScrollBar PROC STDCALL arg_01:DWORD , arg_02:DWORD , arg_03:DWORD
mov eax , 4463
mov edx , 7FFE0300h
call dword ptr [edx]
ret 12
_5_1_2600_sp3_windows_xp_NtUserEnableScrollBar ENDP
; ULONG __stdcall NtUserEndDeferWindowPosEx( ULONG arg_01 , ULONG arg_02 );
_5_1_2600_sp3_windows_xp_NtUserEndDeferWindowPosEx PROC STDCALL arg_01:DWORD , arg_02:DWORD
mov eax , 4464
mov edx , 7FFE0300h
call dword ptr [edx]
ret 8
_5_1_2600_sp3_windows_xp_NtUserEndDeferWindowPosEx ENDP
; ULONG __stdcall NtUserEndMenu( );
_5_1_2600_sp3_windows_xp_NtUserEndMenu PROC STDCALL
mov eax , 4465
mov edx , 7FFE0300h
call dword ptr [edx]
ret
_5_1_2600_sp3_windows_xp_NtUserEndMenu ENDP
; ULONG __stdcall NtUserEndPaint( ULONG arg_01 , ULONG arg_02 );
_5_1_2600_sp3_windows_xp_NtUserEndPaint PROC STDCALL arg_01:DWORD , arg_02:DWORD
mov eax , 4466
mov edx , 7FFE0300h
call dword ptr [edx]
ret 8
_5_1_2600_sp3_windows_xp_NtUserEndPaint ENDP
; ULONG __stdcall NtUserEnumDisplayDevices( ULONG arg_01 , ULONG arg_02 , ULONG arg_03 , ULONG arg_04 );
_5_1_2600_sp3_windows_xp_NtUserEnumDisplayDevices PROC STDCALL arg_01:DWORD , arg_02:DWORD , arg_03:DWORD , arg_04:DWORD
mov eax , 4467
mov edx , 7FFE0300h
call dword ptr [edx]
ret 16
_5_1_2600_sp3_windows_xp_NtUserEnumDisplayDevices ENDP
; ULONG __stdcall NtUserEnumDisplayMonitors( ULONG arg_01 , ULONG arg_02 , ULONG arg_03 , ULONG arg_04 );
_5_1_2600_sp3_windows_xp_NtUserEnumDisplayMonitors PROC STDCALL arg_01:DWORD , arg_02:DWORD , arg_03:DWORD , arg_04:DWORD
mov eax , 4468
mov edx , 7FFE0300h
call dword ptr [edx]
ret 16
_5_1_2600_sp3_windows_xp_NtUserEnumDisplayMonitors ENDP
; ULONG __stdcall NtUserEnumDisplaySettings( ULONG arg_01 , ULONG arg_02 , ULONG arg_03 , ULONG arg_04 );
_5_1_2600_sp3_windows_xp_NtUserEnumDisplaySettings PROC STDCALL arg_01:DWORD , arg_02:DWORD , arg_03:DWORD , arg_04:DWORD
mov eax , 4469
mov edx , 7FFE0300h
call dword ptr [edx]
ret 16
_5_1_2600_sp3_windows_xp_NtUserEnumDisplaySettings ENDP
; ULONG __stdcall NtUserEvent( ULONG arg_01 );
_5_1_2600_sp3_windows_xp_NtUserEvent PROC STDCALL arg_01:DWORD
mov eax , 4470
mov edx , 7FFE0300h
call dword ptr [edx]
ret 4
_5_1_2600_sp3_windows_xp_NtUserEvent ENDP
; ULONG __stdcall NtUserExcludeUpdateRgn( ULONG arg_01 , ULONG arg_02 );
_5_1_2600_sp3_windows_xp_NtUserExcludeUpdateRgn PROC STDCALL arg_01:DWORD , arg_02:DWORD
mov eax , 4471
mov edx , 7FFE0300h
call dword ptr [edx]
ret 8
_5_1_2600_sp3_windows_xp_NtUserExcludeUpdateRgn ENDP
; ULONG __stdcall NtUserFillWindow( ULONG arg_01 , ULONG arg_02 , ULONG arg_03 , ULONG arg_04 );
_5_1_2600_sp3_windows_xp_NtUserFillWindow PROC STDCALL arg_01:DWORD , arg_02:DWORD , arg_03:DWORD , arg_04:DWORD
mov eax , 4472
mov edx , 7FFE0300h
call dword ptr [edx]
ret 16
_5_1_2600_sp3_windows_xp_NtUserFillWindow ENDP
; ULONG __stdcall NtUserFindExistingCursorIcon( ULONG arg_01 , ULONG arg_02 , ULONG arg_03 );
_5_1_2600_sp3_windows_xp_NtUserFindExistingCursorIcon PROC STDCALL arg_01:DWORD , arg_02:DWORD , arg_03:DWORD
mov eax , 4473
mov edx , 7FFE0300h
call dword ptr [edx]
ret 12
_5_1_2600_sp3_windows_xp_NtUserFindExistingCursorIcon ENDP
; ULONG __stdcall NtUserFindWindowEx( ULONG arg_01 , ULONG arg_02 , ULONG arg_03 , ULONG arg_04 , ULONG arg_05 );
_5_1_2600_sp3_windows_xp_NtUserFindWindowEx PROC STDCALL arg_01:DWORD , arg_02:DWORD , arg_03:DWORD , arg_04:DWORD , arg_05:DWORD
mov eax , 4474
mov edx , 7FFE0300h
call dword ptr [edx]
ret 20
_5_1_2600_sp3_windows_xp_NtUserFindWindowEx ENDP
; ULONG __stdcall NtUserFlashWindowEx( ULONG arg_01 );
_5_1_2600_sp3_windows_xp_NtUserFlashWindowEx PROC STDCALL arg_01:DWORD
mov eax , 4475
mov edx , 7FFE0300h
call dword ptr [edx]
ret 4
_5_1_2600_sp3_windows_xp_NtUserFlashWindowEx ENDP
; ULONG __stdcall NtUserGetAltTabInfo( ULONG arg_01 , ULONG arg_02 , ULONG arg_03 , ULONG arg_04 , ULONG arg_05 , ULONG arg_06 );
_5_1_2600_sp3_windows_xp_NtUserGetAltTabInfo PROC STDCALL arg_01:DWORD , arg_02:DWORD , arg_03:DWORD , arg_04:DWORD , arg_05:DWORD , arg_06:DWORD
mov eax , 4476
mov edx , 7FFE0300h
call dword ptr [edx]
ret 24
_5_1_2600_sp3_windows_xp_NtUserGetAltTabInfo ENDP
; ULONG __stdcall NtUserGetAncestor( ULONG arg_01 , ULONG arg_02 );
_5_1_2600_sp3_windows_xp_NtUserGetAncestor PROC STDCALL arg_01:DWORD , arg_02:DWORD
mov eax , 4477
mov edx , 7FFE0300h
call dword ptr [edx]
ret 8
_5_1_2600_sp3_windows_xp_NtUserGetAncestor ENDP
; ULONG __stdcall NtUserGetAppImeLevel( ULONG arg_01 );
_5_1_2600_sp3_windows_xp_NtUserGetAppImeLevel PROC STDCALL arg_01:DWORD
mov eax , 4478
mov edx , 7FFE0300h
call dword ptr [edx]
ret 4
_5_1_2600_sp3_windows_xp_NtUserGetAppImeLevel ENDP
; ULONG __stdcall NtUserGetAsyncKeyState( ULONG arg_01 );
_5_1_2600_sp3_windows_xp_NtUserGetAsyncKeyState PROC STDCALL arg_01:DWORD
mov eax , 4479
mov edx , 7FFE0300h
call dword ptr [edx]
ret 4
_5_1_2600_sp3_windows_xp_NtUserGetAsyncKeyState ENDP
; ULONG __stdcall NtUserGetAtomName( ULONG arg_01 , ULONG arg_02 );
_5_1_2600_sp3_windows_xp_NtUserGetAtomName PROC STDCALL arg_01:DWORD , arg_02:DWORD
mov eax , 4480
mov edx , 7FFE0300h
call dword ptr [edx]
ret 8
_5_1_2600_sp3_windows_xp_NtUserGetAtomName ENDP
; ULONG __stdcall NtUserGetCaretBlinkTime( );
_5_1_2600_sp3_windows_xp_NtUserGetCaretBlinkTime PROC STDCALL
mov eax , 4481
mov edx , 7FFE0300h
call dword ptr [edx]
ret
_5_1_2600_sp3_windows_xp_NtUserGetCaretBlinkTime ENDP
; ULONG __stdcall NtUserGetCaretPos( ULONG arg_01 );
_5_1_2600_sp3_windows_xp_NtUserGetCaretPos PROC STDCALL arg_01:DWORD
mov eax , 4482
mov edx , 7FFE0300h
call dword ptr [edx]
ret 4
_5_1_2600_sp3_windows_xp_NtUserGetCaretPos ENDP
; ULONG __stdcall NtUserGetClassInfo( ULONG arg_01 , ULONG arg_02 , ULONG arg_03 , ULONG arg_04 , ULONG arg_05 );
_5_1_2600_sp3_windows_xp_NtUserGetClassInfo PROC STDCALL arg_01:DWORD , arg_02:DWORD , arg_03:DWORD , arg_04:DWORD , arg_05:DWORD
mov eax , 4483
mov edx , 7FFE0300h
call dword ptr [edx]
ret 20
_5_1_2600_sp3_windows_xp_NtUserGetClassInfo ENDP
; ULONG __stdcall NtUserGetClassName( ULONG arg_01 , ULONG arg_02 , ULONG arg_03 );
_5_1_2600_sp3_windows_xp_NtUserGetClassName PROC STDCALL arg_01:DWORD , arg_02:DWORD , arg_03:DWORD
mov eax , 4484
mov edx , 7FFE0300h
call dword ptr [edx]
ret 12
_5_1_2600_sp3_windows_xp_NtUserGetClassName ENDP
; ULONG __stdcall NtUserGetClipboardData( ULONG arg_01 , ULONG arg_02 );
_5_1_2600_sp3_windows_xp_NtUserGetClipboardData PROC STDCALL arg_01:DWORD , arg_02:DWORD
mov eax , 4485
mov edx , 7FFE0300h
call dword ptr [edx]
ret 8
_5_1_2600_sp3_windows_xp_NtUserGetClipboardData ENDP
; ULONG __stdcall NtUserGetClipboardFormatName( ULONG arg_01 , ULONG arg_02 , ULONG arg_03 );
_5_1_2600_sp3_windows_xp_NtUserGetClipboardFormatName PROC STDCALL arg_01:DWORD , arg_02:DWORD , arg_03:DWORD
mov eax , 4486
mov edx , 7FFE0300h
call dword ptr [edx]
ret 12
_5_1_2600_sp3_windows_xp_NtUserGetClipboardFormatName ENDP
; ULONG __stdcall NtUserGetClipboardOwner( );
_5_1_2600_sp3_windows_xp_NtUserGetClipboardOwner PROC STDCALL
mov eax , 4487
mov edx , 7FFE0300h
call dword ptr [edx]
ret
_5_1_2600_sp3_windows_xp_NtUserGetClipboardOwner ENDP
; ULONG __stdcall NtUserGetClipboardSequenceNumber( );
_5_1_2600_sp3_windows_xp_NtUserGetClipboardSequenceNumber PROC STDCALL
mov eax , 4488
mov edx , 7FFE0300h
call dword ptr [edx]
ret
_5_1_2600_sp3_windows_xp_NtUserGetClipboardSequenceNumber ENDP
; ULONG __stdcall NtUserGetClipboardViewer( );
_5_1_2600_sp3_windows_xp_NtUserGetClipboardViewer PROC STDCALL
mov eax , 4489
mov edx , 7FFE0300h
call dword ptr [edx]
ret
_5_1_2600_sp3_windows_xp_NtUserGetClipboardViewer ENDP
; ULONG __stdcall NtUserGetClipCursor( ULONG arg_01 );
_5_1_2600_sp3_windows_xp_NtUserGetClipCursor PROC STDCALL arg_01:DWORD
mov eax , 4490
mov edx , 7FFE0300h
call dword ptr [edx]
ret 4
_5_1_2600_sp3_windows_xp_NtUserGetClipCursor ENDP
; ULONG __stdcall NtUserGetComboBoxInfo( ULONG arg_01 , ULONG arg_02 );
_5_1_2600_sp3_windows_xp_NtUserGetComboBoxInfo PROC STDCALL arg_01:DWORD , arg_02:DWORD
mov eax , 4491
mov edx , 7FFE0300h
call dword ptr [edx]
ret 8
_5_1_2600_sp3_windows_xp_NtUserGetComboBoxInfo ENDP
; ULONG __stdcall NtUserGetControlBrush( ULONG arg_01 , ULONG arg_02 , ULONG arg_03 );
_5_1_2600_sp3_windows_xp_NtUserGetControlBrush PROC STDCALL arg_01:DWORD , arg_02:DWORD , arg_03:DWORD
mov eax , 4492
mov edx , 7FFE0300h
call dword ptr [edx]
ret 12
_5_1_2600_sp3_windows_xp_NtUserGetControlBrush ENDP
; ULONG __stdcall NtUserGetControlColor( ULONG arg_01 , ULONG arg_02 , ULONG arg_03 , ULONG arg_04 );
_5_1_2600_sp3_windows_xp_NtUserGetControlColor PROC STDCALL arg_01:DWORD , arg_02:DWORD , arg_03:DWORD , arg_04:DWORD
mov eax , 4493
mov edx , 7FFE0300h
call dword ptr [edx]
ret 16
_5_1_2600_sp3_windows_xp_NtUserGetControlColor ENDP
; ULONG __stdcall NtUserGetCPD( ULONG arg_01 , ULONG arg_02 , ULONG arg_03 );
_5_1_2600_sp3_windows_xp_NtUserGetCPD PROC STDCALL arg_01:DWORD , arg_02:DWORD , arg_03:DWORD
mov eax , 4494
mov edx , 7FFE0300h
call dword ptr [edx]
ret 12
_5_1_2600_sp3_windows_xp_NtUserGetCPD ENDP
; ULONG __stdcall NtUserGetCursorFrameInfo( ULONG arg_01 , ULONG arg_02 , ULONG arg_03 , ULONG arg_04 );
_5_1_2600_sp3_windows_xp_NtUserGetCursorFrameInfo PROC STDCALL arg_01:DWORD , arg_02:DWORD , arg_03:DWORD , arg_04:DWORD
mov eax , 4495
mov edx , 7FFE0300h
call dword ptr [edx]
ret 16
_5_1_2600_sp3_windows_xp_NtUserGetCursorFrameInfo ENDP
; ULONG __stdcall NtUserGetCursorInfo( ULONG arg_01 );
_5_1_2600_sp3_windows_xp_NtUserGetCursorInfo PROC STDCALL arg_01:DWORD
mov eax , 4496
mov edx , 7FFE0300h
call dword ptr [edx]
ret 4
_5_1_2600_sp3_windows_xp_NtUserGetCursorInfo ENDP
; ULONG __stdcall NtUserGetDC( ULONG arg_01 );
_5_1_2600_sp3_windows_xp_NtUserGetDC PROC STDCALL arg_01:DWORD
mov eax , 4497
mov edx , 7FFE0300h
call dword ptr [edx]
ret 4
_5_1_2600_sp3_windows_xp_NtUserGetDC ENDP
; ULONG __stdcall NtUserGetDCEx( ULONG arg_01 , ULONG arg_02 , ULONG arg_03 );
_5_1_2600_sp3_windows_xp_NtUserGetDCEx PROC STDCALL arg_01:DWORD , arg_02:DWORD , arg_03:DWORD
mov eax , 4498
mov edx , 7FFE0300h
call dword ptr [edx]
ret 12
_5_1_2600_sp3_windows_xp_NtUserGetDCEx ENDP
; ULONG __stdcall NtUserGetDoubleClickTime( );
_5_1_2600_sp3_windows_xp_NtUserGetDoubleClickTime PROC STDCALL
mov eax , 4499
mov edx , 7FFE0300h
call dword ptr [edx]
ret
_5_1_2600_sp3_windows_xp_NtUserGetDoubleClickTime ENDP
; ULONG __stdcall NtUserGetForegroundWindow( );
_5_1_2600_sp3_windows_xp_NtUserGetForegroundWindow PROC STDCALL
mov eax , 4500
mov edx , 7FFE0300h
call dword ptr [edx]
ret
_5_1_2600_sp3_windows_xp_NtUserGetForegroundWindow ENDP
; ULONG __stdcall NtUserGetGuiResources( ULONG arg_01 , ULONG arg_02 );
_5_1_2600_sp3_windows_xp_NtUserGetGuiResources PROC STDCALL arg_01:DWORD , arg_02:DWORD
mov eax , 4501
mov edx , 7FFE0300h
call dword ptr [edx]
ret 8
_5_1_2600_sp3_windows_xp_NtUserGetGuiResources ENDP
; ULONG __stdcall NtUserGetGUIThreadInfo( ULONG arg_01 , ULONG arg_02 );
_5_1_2600_sp3_windows_xp_NtUserGetGUIThreadInfo PROC STDCALL arg_01:DWORD , arg_02:DWORD
mov eax , 4502
mov edx , 7FFE0300h
call dword ptr [edx]
ret 8
_5_1_2600_sp3_windows_xp_NtUserGetGUIThreadInfo ENDP
; ULONG __stdcall NtUserGetIconInfo( ULONG arg_01 , ULONG arg_02 , ULONG arg_03 , ULONG arg_04 , ULONG arg_05 , ULONG arg_06 );
_5_1_2600_sp3_windows_xp_NtUserGetIconInfo PROC STDCALL arg_01:DWORD , arg_02:DWORD , arg_03:DWORD , arg_04:DWORD , arg_05:DWORD , arg_06:DWORD
mov eax , 4503
mov edx , 7FFE0300h
call dword ptr [edx]
ret 24
_5_1_2600_sp3_windows_xp_NtUserGetIconInfo ENDP
; ULONG __stdcall NtUserGetIconSize( ULONG arg_01 , ULONG arg_02 , ULONG arg_03 , ULONG arg_04 );
_5_1_2600_sp3_windows_xp_NtUserGetIconSize PROC STDCALL arg_01:DWORD , arg_02:DWORD , arg_03:DWORD , arg_04:DWORD
mov eax , 4504
mov edx , 7FFE0300h
call dword ptr [edx]
ret 16
_5_1_2600_sp3_windows_xp_NtUserGetIconSize ENDP
; ULONG __stdcall NtUserGetImeHotKey( ULONG arg_01 , ULONG arg_02 , ULONG arg_03 , ULONG arg_04 );
_5_1_2600_sp3_windows_xp_NtUserGetImeHotKey PROC STDCALL arg_01:DWORD , arg_02:DWORD , arg_03:DWORD , arg_04:DWORD
mov eax , 4505
mov edx , 7FFE0300h
call dword ptr [edx]
ret 16
_5_1_2600_sp3_windows_xp_NtUserGetImeHotKey ENDP
; ULONG __stdcall NtUserGetImeInfoEx( ULONG arg_01 , ULONG arg_02 );
_5_1_2600_sp3_windows_xp_NtUserGetImeInfoEx PROC STDCALL arg_01:DWORD , arg_02:DWORD
mov eax , 4506
mov edx , 7FFE0300h
call dword ptr [edx]
ret 8
_5_1_2600_sp3_windows_xp_NtUserGetImeInfoEx ENDP
; ULONG __stdcall NtUserGetInternalWindowPos( ULONG arg_01 , ULONG arg_02 , ULONG arg_03 );
_5_1_2600_sp3_windows_xp_NtUserGetInternalWindowPos PROC STDCALL arg_01:DWORD , arg_02:DWORD , arg_03:DWORD
mov eax , 4507
mov edx , 7FFE0300h
call dword ptr [edx]
ret 12
_5_1_2600_sp3_windows_xp_NtUserGetInternalWindowPos ENDP
; ULONG __stdcall NtUserGetKeyboardLayoutList( ULONG arg_01 , ULONG arg_02 );
_5_1_2600_sp3_windows_xp_NtUserGetKeyboardLayoutList PROC STDCALL arg_01:DWORD , arg_02:DWORD
mov eax , 4508
mov edx , 7FFE0300h
call dword ptr [edx]
ret 8
_5_1_2600_sp3_windows_xp_NtUserGetKeyboardLayoutList ENDP
; ULONG __stdcall NtUserGetKeyboardLayoutName( ULONG arg_01 );
_5_1_2600_sp3_windows_xp_NtUserGetKeyboardLayoutName PROC STDCALL arg_01:DWORD
mov eax , 4509
mov edx , 7FFE0300h
call dword ptr [edx]
ret 4
_5_1_2600_sp3_windows_xp_NtUserGetKeyboardLayoutName ENDP
; ULONG __stdcall NtUserGetKeyboardState( ULONG arg_01 );
_5_1_2600_sp3_windows_xp_NtUserGetKeyboardState PROC STDCALL arg_01:DWORD
mov eax , 4510
mov edx , 7FFE0300h
call dword ptr [edx]
ret 4
_5_1_2600_sp3_windows_xp_NtUserGetKeyboardState ENDP
; ULONG __stdcall NtUserGetKeyNameText( ULONG arg_01 , ULONG arg_02 , ULONG arg_03 );
_5_1_2600_sp3_windows_xp_NtUserGetKeyNameText PROC STDCALL arg_01:DWORD , arg_02:DWORD , arg_03:DWORD
mov eax , 4511
mov edx , 7FFE0300h
call dword ptr [edx]
ret 12
_5_1_2600_sp3_windows_xp_NtUserGetKeyNameText ENDP
; ULONG __stdcall NtUserGetKeyState( ULONG arg_01 );
_5_1_2600_sp3_windows_xp_NtUserGetKeyState PROC STDCALL arg_01:DWORD
mov eax , 4512
mov edx , 7FFE0300h
call dword ptr [edx]
ret 4
_5_1_2600_sp3_windows_xp_NtUserGetKeyState ENDP
; ULONG __stdcall NtUserGetListBoxInfo( ULONG arg_01 );
_5_1_2600_sp3_windows_xp_NtUserGetListBoxInfo PROC STDCALL arg_01:DWORD
mov eax , 4513
mov edx , 7FFE0300h
call dword ptr [edx]
ret 4
_5_1_2600_sp3_windows_xp_NtUserGetListBoxInfo ENDP
; ULONG __stdcall NtUserGetMenuBarInfo( ULONG arg_01 , ULONG arg_02 , ULONG arg_03 , ULONG arg_04 );
_5_1_2600_sp3_windows_xp_NtUserGetMenuBarInfo PROC STDCALL arg_01:DWORD , arg_02:DWORD , arg_03:DWORD , arg_04:DWORD
mov eax , 4514
mov edx , 7FFE0300h
call dword ptr [edx]
ret 16
_5_1_2600_sp3_windows_xp_NtUserGetMenuBarInfo ENDP
; ULONG __stdcall NtUserGetMenuIndex( ULONG arg_01 , ULONG arg_02 );
_5_1_2600_sp3_windows_xp_NtUserGetMenuIndex PROC STDCALL arg_01:DWORD , arg_02:DWORD
mov eax , 4515
mov edx , 7FFE0300h
call dword ptr [edx]
ret 8
_5_1_2600_sp3_windows_xp_NtUserGetMenuIndex ENDP
; ULONG __stdcall NtUserGetMenuItemRect( ULONG arg_01 , ULONG arg_02 , ULONG arg_03 , ULONG arg_04 );
_5_1_2600_sp3_windows_xp_NtUserGetMenuItemRect PROC STDCALL arg_01:DWORD , arg_02:DWORD , arg_03:DWORD , arg_04:DWORD
mov eax , 4516
mov edx , 7FFE0300h
call dword ptr [edx]
ret 16
_5_1_2600_sp3_windows_xp_NtUserGetMenuItemRect ENDP
; ULONG __stdcall NtUserGetMessage( ULONG arg_01 , ULONG arg_02 , ULONG arg_03 , ULONG arg_04 );
_5_1_2600_sp3_windows_xp_NtUserGetMessage PROC STDCALL arg_01:DWORD , arg_02:DWORD , arg_03:DWORD , arg_04:DWORD
mov eax , 4517
mov edx , 7FFE0300h
call dword ptr [edx]
ret 16
_5_1_2600_sp3_windows_xp_NtUserGetMessage ENDP
; ULONG __stdcall NtUserGetMouseMovePointsEx( ULONG arg_01 , ULONG arg_02 , ULONG arg_03 , ULONG arg_04 , ULONG arg_05 );
_5_1_2600_sp3_windows_xp_NtUserGetMouseMovePointsEx PROC STDCALL arg_01:DWORD , arg_02:DWORD , arg_03:DWORD , arg_04:DWORD , arg_05:DWORD
mov eax , 4518
mov edx , 7FFE0300h
call dword ptr [edx]
ret 20
_5_1_2600_sp3_windows_xp_NtUserGetMouseMovePointsEx ENDP
; ULONG __stdcall NtUserGetObjectInformation( ULONG arg_01 , ULONG arg_02 , ULONG arg_03 , ULONG arg_04 , ULONG arg_05 );
_5_1_2600_sp3_windows_xp_NtUserGetObjectInformation PROC STDCALL arg_01:DWORD , arg_02:DWORD , arg_03:DWORD , arg_04:DWORD , arg_05:DWORD
mov eax , 4519
mov edx , 7FFE0300h
call dword ptr [edx]
ret 20
_5_1_2600_sp3_windows_xp_NtUserGetObjectInformation ENDP
; ULONG __stdcall NtUserGetOpenClipboardWindow( );
_5_1_2600_sp3_windows_xp_NtUserGetOpenClipboardWindow PROC STDCALL
mov eax , 4520
mov edx , 7FFE0300h
call dword ptr [edx]
ret
_5_1_2600_sp3_windows_xp_NtUserGetOpenClipboardWindow ENDP
; ULONG __stdcall NtUserGetPriorityClipboardFormat( ULONG arg_01 , ULONG arg_02 );
_5_1_2600_sp3_windows_xp_NtUserGetPriorityClipboardFormat PROC STDCALL arg_01:DWORD , arg_02:DWORD
mov eax , 4521
mov edx , 7FFE0300h
call dword ptr [edx]
ret 8
_5_1_2600_sp3_windows_xp_NtUserGetPriorityClipboardFormat ENDP
; ULONG __stdcall NtUserGetProcessWindowStation( );
_5_1_2600_sp3_windows_xp_NtUserGetProcessWindowStation PROC STDCALL
mov eax , 4522
mov edx , 7FFE0300h
call dword ptr [edx]
ret
_5_1_2600_sp3_windows_xp_NtUserGetProcessWindowStation ENDP
; ULONG __stdcall NtUserGetRawInputBuffer( ULONG arg_01 , ULONG arg_02 , ULONG arg_03 );
_5_1_2600_sp3_windows_xp_NtUserGetRawInputBuffer PROC STDCALL arg_01:DWORD , arg_02:DWORD , arg_03:DWORD
mov eax , 4523
mov edx , 7FFE0300h
call dword ptr [edx]
ret 12
_5_1_2600_sp3_windows_xp_NtUserGetRawInputBuffer ENDP
; ULONG __stdcall NtUserGetRawInputData( ULONG arg_01 , ULONG arg_02 , ULONG arg_03 , ULONG arg_04 , ULONG arg_05 );
_5_1_2600_sp3_windows_xp_NtUserGetRawInputData PROC STDCALL arg_01:DWORD , arg_02:DWORD , arg_03:DWORD , arg_04:DWORD , arg_05:DWORD
mov eax , 4524
mov edx , 7FFE0300h
call dword ptr [edx]
ret 20
_5_1_2600_sp3_windows_xp_NtUserGetRawInputData ENDP
; ULONG __stdcall NtUserGetRawInputDeviceInfo( ULONG arg_01 , ULONG arg_02 , ULONG arg_03 , ULONG arg_04 );
_5_1_2600_sp3_windows_xp_NtUserGetRawInputDeviceInfo PROC STDCALL arg_01:DWORD , arg_02:DWORD , arg_03:DWORD , arg_04:DWORD
mov eax , 4525
mov edx , 7FFE0300h
call dword ptr [edx]
ret 16
_5_1_2600_sp3_windows_xp_NtUserGetRawInputDeviceInfo ENDP
; ULONG __stdcall NtUserGetRawInputDeviceList( ULONG arg_01 , ULONG arg_02 , ULONG arg_03 );
_5_1_2600_sp3_windows_xp_NtUserGetRawInputDeviceList PROC STDCALL arg_01:DWORD , arg_02:DWORD , arg_03:DWORD
mov eax , 4526
mov edx , 7FFE0300h
call dword ptr [edx]
ret 12
_5_1_2600_sp3_windows_xp_NtUserGetRawInputDeviceList ENDP
; ULONG __stdcall NtUserGetRegisteredRawInputDevices( ULONG arg_01 , ULONG arg_02 , ULONG arg_03 );
_5_1_2600_sp3_windows_xp_NtUserGetRegisteredRawInputDevices PROC STDCALL arg_01:DWORD , arg_02:DWORD , arg_03:DWORD
mov eax , 4527
mov edx , 7FFE0300h
call dword ptr [edx]
ret 12
_5_1_2600_sp3_windows_xp_NtUserGetRegisteredRawInputDevices ENDP
; ULONG __stdcall NtUserGetScrollBarInfo( ULONG arg_01 , ULONG arg_02 , ULONG arg_03 );
_5_1_2600_sp3_windows_xp_NtUserGetScrollBarInfo PROC STDCALL arg_01:DWORD , arg_02:DWORD , arg_03:DWORD
mov eax , 4528
mov edx , 7FFE0300h
call dword ptr [edx]
ret 12
_5_1_2600_sp3_windows_xp_NtUserGetScrollBarInfo ENDP
; ULONG __stdcall NtUserGetSystemMenu( ULONG arg_01 , ULONG arg_02 );
_5_1_2600_sp3_windows_xp_NtUserGetSystemMenu PROC STDCALL arg_01:DWORD , arg_02:DWORD
mov eax , 4529
mov edx , 7FFE0300h
call dword ptr [edx]
ret 8
_5_1_2600_sp3_windows_xp_NtUserGetSystemMenu ENDP
; ULONG __stdcall NtUserGetThreadDesktop( ULONG arg_01 , ULONG arg_02 );
_5_1_2600_sp3_windows_xp_NtUserGetThreadDesktop PROC STDCALL arg_01:DWORD , arg_02:DWORD
mov eax , 4530
mov edx , 7FFE0300h
call dword ptr [edx]
ret 8
_5_1_2600_sp3_windows_xp_NtUserGetThreadDesktop ENDP
; ULONG __stdcall NtUserGetThreadState( ULONG arg_01 );
_5_1_2600_sp3_windows_xp_NtUserGetThreadState PROC STDCALL arg_01:DWORD
mov eax , 4531
mov edx , 7FFE0300h
call dword ptr [edx]
ret 4
_5_1_2600_sp3_windows_xp_NtUserGetThreadState ENDP
; ULONG __stdcall NtUserGetTitleBarInfo( ULONG arg_01 , ULONG arg_02 );
_5_1_2600_sp3_windows_xp_NtUserGetTitleBarInfo PROC STDCALL arg_01:DWORD , arg_02:DWORD
mov eax , 4532
mov edx , 7FFE0300h
call dword ptr [edx]
ret 8
_5_1_2600_sp3_windows_xp_NtUserGetTitleBarInfo ENDP
; ULONG __stdcall NtUserGetUpdateRect( ULONG arg_01 , ULONG arg_02 , ULONG arg_03 );
_5_1_2600_sp3_windows_xp_NtUserGetUpdateRect PROC STDCALL arg_01:DWORD , arg_02:DWORD , arg_03:DWORD
mov eax , 4533
mov edx , 7FFE0300h
call dword ptr [edx]
ret 12
_5_1_2600_sp3_windows_xp_NtUserGetUpdateRect ENDP
; ULONG __stdcall NtUserGetUpdateRgn( ULONG arg_01 , ULONG arg_02 , ULONG arg_03 );
_5_1_2600_sp3_windows_xp_NtUserGetUpdateRgn PROC STDCALL arg_01:DWORD , arg_02:DWORD , arg_03:DWORD
mov eax , 4534
mov edx , 7FFE0300h
call dword ptr [edx]
ret 12
_5_1_2600_sp3_windows_xp_NtUserGetUpdateRgn ENDP
; ULONG __stdcall NtUserGetWindowDC( ULONG arg_01 );
_5_1_2600_sp3_windows_xp_NtUserGetWindowDC PROC STDCALL arg_01:DWORD
mov eax , 4535
mov edx , 7FFE0300h
call dword ptr [edx]
ret 4
_5_1_2600_sp3_windows_xp_NtUserGetWindowDC ENDP
; ULONG __stdcall NtUserGetWindowPlacement( ULONG arg_01 , ULONG arg_02 );
_5_1_2600_sp3_windows_xp_NtUserGetWindowPlacement PROC STDCALL arg_01:DWORD , arg_02:DWORD
mov eax , 4536
mov edx , 7FFE0300h
call dword ptr [edx]
ret 8
_5_1_2600_sp3_windows_xp_NtUserGetWindowPlacement ENDP
; ULONG __stdcall NtUserGetWOWClass( ULONG arg_01 , ULONG arg_02 );
_5_1_2600_sp3_windows_xp_NtUserGetWOWClass PROC STDCALL arg_01:DWORD , arg_02:DWORD
mov eax , 4537
mov edx , 7FFE0300h
call dword ptr [edx]
ret 8
_5_1_2600_sp3_windows_xp_NtUserGetWOWClass ENDP
; ULONG __stdcall NtUserHardErrorControl( ULONG arg_01 , ULONG arg_02 , ULONG arg_03 );
_5_1_2600_sp3_windows_xp_NtUserHardErrorControl PROC STDCALL arg_01:DWORD , arg_02:DWORD , arg_03:DWORD
mov eax , 4538
mov edx , 7FFE0300h
call dword ptr [edx]
ret 12
_5_1_2600_sp3_windows_xp_NtUserHardErrorControl ENDP
; ULONG __stdcall NtUserHideCaret( ULONG arg_01 );
_5_1_2600_sp3_windows_xp_NtUserHideCaret PROC STDCALL arg_01:DWORD
mov eax , 4539
mov edx , 7FFE0300h
call dword ptr [edx]
ret 4
_5_1_2600_sp3_windows_xp_NtUserHideCaret ENDP
; ULONG __stdcall NtUserHiliteMenuItem( ULONG arg_01 , ULONG arg_02 , ULONG arg_03 , ULONG arg_04 );
_5_1_2600_sp3_windows_xp_NtUserHiliteMenuItem PROC STDCALL arg_01:DWORD , arg_02:DWORD , arg_03:DWORD , arg_04:DWORD
mov eax , 4540
mov edx , 7FFE0300h
call dword ptr [edx]
ret 16
_5_1_2600_sp3_windows_xp_NtUserHiliteMenuItem ENDP
; ULONG __stdcall NtUserImpersonateDdeClientWindow( ULONG arg_01 , ULONG arg_02 );
_5_1_2600_sp3_windows_xp_NtUserImpersonateDdeClientWindow PROC STDCALL arg_01:DWORD , arg_02:DWORD
mov eax , 4541
mov edx , 7FFE0300h
call dword ptr [edx]
ret 8
_5_1_2600_sp3_windows_xp_NtUserImpersonateDdeClientWindow ENDP
; ULONG __stdcall NtUserInitialize( ULONG arg_01 , ULONG arg_02 , ULONG arg_03 );
_5_1_2600_sp3_windows_xp_NtUserInitialize PROC STDCALL arg_01:DWORD , arg_02:DWORD , arg_03:DWORD
mov eax , 4542
mov edx , 7FFE0300h
call dword ptr [edx]
ret 12
_5_1_2600_sp3_windows_xp_NtUserInitialize ENDP
; ULONG __stdcall NtUserInitializeClientPfnArrays( ULONG arg_01 , ULONG arg_02 , ULONG arg_03 , ULONG arg_04 );
_5_1_2600_sp3_windows_xp_NtUserInitializeClientPfnArrays PROC STDCALL arg_01:DWORD , arg_02:DWORD , arg_03:DWORD , arg_04:DWORD
mov eax , 4543
mov edx , 7FFE0300h
call dword ptr [edx]
ret 16
_5_1_2600_sp3_windows_xp_NtUserInitializeClientPfnArrays ENDP
; ULONG __stdcall NtUserInitTask( ULONG arg_01 , ULONG arg_02 , ULONG arg_03 , ULONG arg_04 , ULONG arg_05 , ULONG arg_06 , ULONG arg_07 , ULONG arg_08 , ULONG arg_09 , ULONG arg_10 , ULONG arg_11 , ULONG arg_12 );
_5_1_2600_sp3_windows_xp_NtUserInitTask PROC STDCALL arg_01:DWORD , arg_02:DWORD , arg_03:DWORD , arg_04:DWORD , arg_05:DWORD , arg_06:DWORD , arg_07:DWORD , arg_08:DWORD , arg_09:DWORD , arg_10:DWORD , arg_11:DWORD , arg_12:DWORD
mov eax , 4544
mov edx , 7FFE0300h
call dword ptr [edx]
ret 48
_5_1_2600_sp3_windows_xp_NtUserInitTask ENDP
; ULONG __stdcall NtUserInternalGetWindowText( ULONG arg_01 , ULONG arg_02 , ULONG arg_03 );
_5_1_2600_sp3_windows_xp_NtUserInternalGetWindowText PROC STDCALL arg_01:DWORD , arg_02:DWORD , arg_03:DWORD
mov eax , 4545
mov edx , 7FFE0300h
call dword ptr [edx]
ret 12
_5_1_2600_sp3_windows_xp_NtUserInternalGetWindowText ENDP
; ULONG __stdcall NtUserInvalidateRect( ULONG arg_01 , ULONG arg_02 , ULONG arg_03 );
_5_1_2600_sp3_windows_xp_NtUserInvalidateRect PROC STDCALL arg_01:DWORD , arg_02:DWORD , arg_03:DWORD
mov eax , 4546
mov edx , 7FFE0300h
call dword ptr [edx]
ret 12
_5_1_2600_sp3_windows_xp_NtUserInvalidateRect ENDP
; ULONG __stdcall NtUserInvalidateRgn( ULONG arg_01 , ULONG arg_02 , ULONG arg_03 );
_5_1_2600_sp3_windows_xp_NtUserInvalidateRgn PROC STDCALL arg_01:DWORD , arg_02:DWORD , arg_03:DWORD
mov eax , 4547
mov edx , 7FFE0300h
call dword ptr [edx]
ret 12
_5_1_2600_sp3_windows_xp_NtUserInvalidateRgn ENDP
; ULONG __stdcall NtUserIsClipboardFormatAvailable( ULONG arg_01 );
_5_1_2600_sp3_windows_xp_NtUserIsClipboardFormatAvailable PROC STDCALL arg_01:DWORD
mov eax , 4548
mov edx , 7FFE0300h
call dword ptr [edx]
ret 4
_5_1_2600_sp3_windows_xp_NtUserIsClipboardFormatAvailable ENDP
; ULONG __stdcall NtUserKillTimer( ULONG arg_01 , ULONG arg_02 );
_5_1_2600_sp3_windows_xp_NtUserKillTimer PROC STDCALL arg_01:DWORD , arg_02:DWORD
mov eax , 4549
mov edx , 7FFE0300h
call dword ptr [edx]
ret 8
_5_1_2600_sp3_windows_xp_NtUserKillTimer ENDP
; ULONG __stdcall NtUserLoadKeyboardLayoutEx( ULONG arg_01 , ULONG arg_02 , ULONG arg_03 , ULONG arg_04 , ULONG arg_05 , ULONG arg_06 , ULONG arg_07 );
_5_1_2600_sp3_windows_xp_NtUserLoadKeyboardLayoutEx PROC STDCALL arg_01:DWORD , arg_02:DWORD , arg_03:DWORD , arg_04:DWORD , arg_05:DWORD , arg_06:DWORD , arg_07:DWORD
mov eax , 4550
mov edx , 7FFE0300h
call dword ptr [edx]
ret 28
_5_1_2600_sp3_windows_xp_NtUserLoadKeyboardLayoutEx ENDP
; ULONG __stdcall NtUserLockWindowStation( ULONG arg_01 );
_5_1_2600_sp3_windows_xp_NtUserLockWindowStation PROC STDCALL arg_01:DWORD
mov eax , 4551
mov edx , 7FFE0300h
call dword ptr [edx]
ret 4
_5_1_2600_sp3_windows_xp_NtUserLockWindowStation ENDP
; ULONG __stdcall NtUserLockWindowUpdate( ULONG arg_01 );
_5_1_2600_sp3_windows_xp_NtUserLockWindowUpdate PROC STDCALL arg_01:DWORD
mov eax , 4552
mov edx , 7FFE0300h
call dword ptr [edx]
ret 4
_5_1_2600_sp3_windows_xp_NtUserLockWindowUpdate ENDP
; ULONG __stdcall NtUserLockWorkStation( );
_5_1_2600_sp3_windows_xp_NtUserLockWorkStation PROC STDCALL
mov eax , 4553
mov edx , 7FFE0300h
call dword ptr [edx]
ret
_5_1_2600_sp3_windows_xp_NtUserLockWorkStation ENDP
; ULONG __stdcall NtUserMapVirtualKeyEx( ULONG arg_01 , ULONG arg_02 , ULONG arg_03 , ULONG arg_04 );
_5_1_2600_sp3_windows_xp_NtUserMapVirtualKeyEx PROC STDCALL arg_01:DWORD , arg_02:DWORD , arg_03:DWORD , arg_04:DWORD
mov eax , 4554
mov edx , 7FFE0300h
call dword ptr [edx]
ret 16
_5_1_2600_sp3_windows_xp_NtUserMapVirtualKeyEx ENDP
; ULONG __stdcall NtUserMenuItemFromPoint( ULONG arg_01 , ULONG arg_02 , ULONG arg_03 , ULONG arg_04 );
_5_1_2600_sp3_windows_xp_NtUserMenuItemFromPoint PROC STDCALL arg_01:DWORD , arg_02:DWORD , arg_03:DWORD , arg_04:DWORD
mov eax , 4555
mov edx , 7FFE0300h
call dword ptr [edx]
ret 16
_5_1_2600_sp3_windows_xp_NtUserMenuItemFromPoint ENDP
; ULONG __stdcall NtUserMessageCall( ULONG arg_01 , ULONG arg_02 , ULONG arg_03 , ULONG arg_04 , ULONG arg_05 , ULONG arg_06 , ULONG arg_07 );
_5_1_2600_sp3_windows_xp_NtUserMessageCall PROC STDCALL arg_01:DWORD , arg_02:DWORD , arg_03:DWORD , arg_04:DWORD , arg_05:DWORD , arg_06:DWORD , arg_07:DWORD
mov eax , 4556
mov edx , 7FFE0300h
call dword ptr [edx]
ret 28
_5_1_2600_sp3_windows_xp_NtUserMessageCall ENDP
; ULONG __stdcall NtUserMinMaximize( ULONG arg_01 , ULONG arg_02 , ULONG arg_03 );
_5_1_2600_sp3_windows_xp_NtUserMinMaximize PROC STDCALL arg_01:DWORD , arg_02:DWORD , arg_03:DWORD
mov eax , 4557
mov edx , 7FFE0300h
call dword ptr [edx]
ret 12
_5_1_2600_sp3_windows_xp_NtUserMinMaximize ENDP
; ULONG __stdcall NtUserMNDragLeave( );
_5_1_2600_sp3_windows_xp_NtUserMNDragLeave PROC STDCALL
mov eax , 4558
mov edx , 7FFE0300h
call dword ptr [edx]
ret
_5_1_2600_sp3_windows_xp_NtUserMNDragLeave ENDP
; ULONG __stdcall NtUserMNDragOver( ULONG arg_01 , ULONG arg_02 );
_5_1_2600_sp3_windows_xp_NtUserMNDragOver PROC STDCALL arg_01:DWORD , arg_02:DWORD
mov eax , 4559
mov edx , 7FFE0300h
call dword ptr [edx]
ret 8
_5_1_2600_sp3_windows_xp_NtUserMNDragOver ENDP
; ULONG __stdcall NtUserModifyUserStartupInfoFlags( ULONG arg_01 , ULONG arg_02 );
_5_1_2600_sp3_windows_xp_NtUserModifyUserStartupInfoFlags PROC STDCALL arg_01:DWORD , arg_02:DWORD
mov eax , 4560
mov edx , 7FFE0300h
call dword ptr [edx]
ret 8
_5_1_2600_sp3_windows_xp_NtUserModifyUserStartupInfoFlags ENDP
; ULONG __stdcall NtUserMoveWindow( ULONG arg_01 , ULONG arg_02 , ULONG arg_03 , ULONG arg_04 , ULONG arg_05 , ULONG arg_06 );
_5_1_2600_sp3_windows_xp_NtUserMoveWindow PROC STDCALL arg_01:DWORD , arg_02:DWORD , arg_03:DWORD , arg_04:DWORD , arg_05:DWORD , arg_06:DWORD
mov eax , 4561
mov edx , 7FFE0300h
call dword ptr [edx]
ret 24
_5_1_2600_sp3_windows_xp_NtUserMoveWindow ENDP
; ULONG __stdcall NtUserNotifyIMEStatus( ULONG arg_01 , ULONG arg_02 , ULONG arg_03 );
_5_1_2600_sp3_windows_xp_NtUserNotifyIMEStatus PROC STDCALL arg_01:DWORD , arg_02:DWORD , arg_03:DWORD
mov eax , 4562
mov edx , 7FFE0300h
call dword ptr [edx]
ret 12
_5_1_2600_sp3_windows_xp_NtUserNotifyIMEStatus ENDP
; ULONG __stdcall NtUserNotifyProcessCreate( ULONG arg_01 , ULONG arg_02 , ULONG arg_03 , ULONG arg_04 );
_5_1_2600_sp3_windows_xp_NtUserNotifyProcessCreate PROC STDCALL arg_01:DWORD , arg_02:DWORD , arg_03:DWORD , arg_04:DWORD
mov eax , 4563
mov edx , 7FFE0300h
call dword ptr [edx]
ret 16
_5_1_2600_sp3_windows_xp_NtUserNotifyProcessCreate ENDP
; ULONG __stdcall NtUserNotifyWinEvent( ULONG arg_01 , ULONG arg_02 , ULONG arg_03 , ULONG arg_04 );
_5_1_2600_sp3_windows_xp_NtUserNotifyWinEvent PROC STDCALL arg_01:DWORD , arg_02:DWORD , arg_03:DWORD , arg_04:DWORD
mov eax , 4564
mov edx , 7FFE0300h
call dword ptr [edx]
ret 16
_5_1_2600_sp3_windows_xp_NtUserNotifyWinEvent ENDP
; ULONG __stdcall NtUserOpenClipboard( ULONG arg_01 , ULONG arg_02 );
_5_1_2600_sp3_windows_xp_NtUserOpenClipboard PROC STDCALL arg_01:DWORD , arg_02:DWORD
mov eax , 4565
mov edx , 7FFE0300h
call dword ptr [edx]
ret 8
_5_1_2600_sp3_windows_xp_NtUserOpenClipboard ENDP
; ULONG __stdcall NtUserOpenDesktop( ULONG arg_01 , ULONG arg_02 , ULONG arg_03 );
_5_1_2600_sp3_windows_xp_NtUserOpenDesktop PROC STDCALL arg_01:DWORD , arg_02:DWORD , arg_03:DWORD
mov eax , 4566
mov edx , 7FFE0300h
call dword ptr [edx]
ret 12
_5_1_2600_sp3_windows_xp_NtUserOpenDesktop ENDP
; ULONG __stdcall NtUserOpenInputDesktop( ULONG arg_01 , ULONG arg_02 , ULONG arg_03 );
_5_1_2600_sp3_windows_xp_NtUserOpenInputDesktop PROC STDCALL arg_01:DWORD , arg_02:DWORD , arg_03:DWORD
mov eax , 4567
mov edx , 7FFE0300h
call dword ptr [edx]
ret 12
_5_1_2600_sp3_windows_xp_NtUserOpenInputDesktop ENDP
; ULONG __stdcall NtUserOpenWindowStation( ULONG arg_01 , ULONG arg_02 );
_5_1_2600_sp3_windows_xp_NtUserOpenWindowStation PROC STDCALL arg_01:DWORD , arg_02:DWORD
mov eax , 4568
mov edx , 7FFE0300h
call dword ptr [edx]
ret 8
_5_1_2600_sp3_windows_xp_NtUserOpenWindowStation ENDP
; ULONG __stdcall NtUserPaintDesktop( ULONG arg_01 );
_5_1_2600_sp3_windows_xp_NtUserPaintDesktop PROC STDCALL arg_01:DWORD
mov eax , 4569
mov edx , 7FFE0300h
call dword ptr [edx]
ret 4
_5_1_2600_sp3_windows_xp_NtUserPaintDesktop ENDP
; ULONG __stdcall NtUserPeekMessage( ULONG arg_01 , ULONG arg_02 , ULONG arg_03 , ULONG arg_04 , ULONG arg_05 );
_5_1_2600_sp3_windows_xp_NtUserPeekMessage PROC STDCALL arg_01:DWORD , arg_02:DWORD , arg_03:DWORD , arg_04:DWORD , arg_05:DWORD
mov eax , 4570
mov edx , 7FFE0300h
call dword ptr [edx]
ret 20
_5_1_2600_sp3_windows_xp_NtUserPeekMessage ENDP
; ULONG __stdcall NtUserPostMessage( ULONG arg_01 , ULONG arg_02 , ULONG arg_03 , ULONG arg_04 );
_5_1_2600_sp3_windows_xp_NtUserPostMessage PROC STDCALL arg_01:DWORD , arg_02:DWORD , arg_03:DWORD , arg_04:DWORD
mov eax , 4571
mov edx , 7FFE0300h
call dword ptr [edx]
ret 16
_5_1_2600_sp3_windows_xp_NtUserPostMessage ENDP
; ULONG __stdcall NtUserPostThreadMessage( ULONG arg_01 , ULONG arg_02 , ULONG arg_03 , ULONG arg_04 );
_5_1_2600_sp3_windows_xp_NtUserPostThreadMessage PROC STDCALL arg_01:DWORD , arg_02:DWORD , arg_03:DWORD , arg_04:DWORD
mov eax , 4572
mov edx , 7FFE0300h
call dword ptr [edx]
ret 16
_5_1_2600_sp3_windows_xp_NtUserPostThreadMessage ENDP
; ULONG __stdcall NtUserPrintWindow( ULONG arg_01 , ULONG arg_02 , ULONG arg_03 );
_5_1_2600_sp3_windows_xp_NtUserPrintWindow PROC STDCALL arg_01:DWORD , arg_02:DWORD , arg_03:DWORD
mov eax , 4573
mov edx , 7FFE0300h
call dword ptr [edx]
ret 12
_5_1_2600_sp3_windows_xp_NtUserPrintWindow ENDP
; ULONG __stdcall NtUserProcessConnect( ULONG arg_01 , ULONG arg_02 , ULONG arg_03 );
_5_1_2600_sp3_windows_xp_NtUserProcessConnect PROC STDCALL arg_01:DWORD , arg_02:DWORD , arg_03:DWORD
mov eax , 4574
mov edx , 7FFE0300h
call dword ptr [edx]
ret 12
_5_1_2600_sp3_windows_xp_NtUserProcessConnect ENDP
; ULONG __stdcall NtUserQueryInformationThread( ULONG arg_01 , ULONG arg_02 , ULONG arg_03 , ULONG arg_04 , ULONG arg_05 );
_5_1_2600_sp3_windows_xp_NtUserQueryInformationThread PROC STDCALL arg_01:DWORD , arg_02:DWORD , arg_03:DWORD , arg_04:DWORD , arg_05:DWORD
mov eax , 4575
mov edx , 7FFE0300h
call dword ptr [edx]
ret 20
_5_1_2600_sp3_windows_xp_NtUserQueryInformationThread ENDP
; ULONG __stdcall NtUserQueryInputContext( ULONG arg_01 , ULONG arg_02 );
_5_1_2600_sp3_windows_xp_NtUserQueryInputContext PROC STDCALL arg_01:DWORD , arg_02:DWORD
mov eax , 4576
mov edx , 7FFE0300h
call dword ptr [edx]
ret 8
_5_1_2600_sp3_windows_xp_NtUserQueryInputContext ENDP
; ULONG __stdcall NtUserQuerySendMessage( ULONG arg_01 );
_5_1_2600_sp3_windows_xp_NtUserQuerySendMessage PROC STDCALL arg_01:DWORD
mov eax , 4577
mov edx , 7FFE0300h
call dword ptr [edx]
ret 4
_5_1_2600_sp3_windows_xp_NtUserQuerySendMessage ENDP
; ULONG __stdcall NtUserQueryUserCounters( ULONG arg_01 , ULONG arg_02 , ULONG arg_03 , ULONG arg_04 , ULONG arg_05 );
_5_1_2600_sp3_windows_xp_NtUserQueryUserCounters PROC STDCALL arg_01:DWORD , arg_02:DWORD , arg_03:DWORD , arg_04:DWORD , arg_05:DWORD
mov eax , 4578
mov edx , 7FFE0300h
call dword ptr [edx]
ret 20
_5_1_2600_sp3_windows_xp_NtUserQueryUserCounters ENDP
; ULONG __stdcall NtUserQueryWindow( ULONG arg_01 , ULONG arg_02 );
_5_1_2600_sp3_windows_xp_NtUserQueryWindow PROC STDCALL arg_01:DWORD , arg_02:DWORD
mov eax , 4579
mov edx , 7FFE0300h
call dword ptr [edx]
ret 8
_5_1_2600_sp3_windows_xp_NtUserQueryWindow ENDP
; ULONG __stdcall NtUserRealChildWindowFromPoint( ULONG arg_01 , ULONG arg_02 , ULONG arg_03 );
_5_1_2600_sp3_windows_xp_NtUserRealChildWindowFromPoint PROC STDCALL arg_01:DWORD , arg_02:DWORD , arg_03:DWORD
mov eax , 4580
mov edx , 7FFE0300h
call dword ptr [edx]
ret 12
_5_1_2600_sp3_windows_xp_NtUserRealChildWindowFromPoint ENDP
; ULONG __stdcall NtUserRealInternalGetMessage( ULONG arg_01 , ULONG arg_02 , ULONG arg_03 , ULONG arg_04 , ULONG arg_05 , ULONG arg_06 );
_5_1_2600_sp3_windows_xp_NtUserRealInternalGetMessage PROC STDCALL arg_01:DWORD , arg_02:DWORD , arg_03:DWORD , arg_04:DWORD , arg_05:DWORD , arg_06:DWORD
mov eax , 4581
mov edx , 7FFE0300h
call dword ptr [edx]
ret 24
_5_1_2600_sp3_windows_xp_NtUserRealInternalGetMessage ENDP
; ULONG __stdcall NtUserRealWaitMessageEx( ULONG arg_01 , ULONG arg_02 );
_5_1_2600_sp3_windows_xp_NtUserRealWaitMessageEx PROC STDCALL arg_01:DWORD , arg_02:DWORD
mov eax , 4582
mov edx , 7FFE0300h
call dword ptr [edx]
ret 8
_5_1_2600_sp3_windows_xp_NtUserRealWaitMessageEx ENDP
; ULONG __stdcall NtUserRedrawWindow( ULONG arg_01 , ULONG arg_02 , ULONG arg_03 , ULONG arg_04 );
_5_1_2600_sp3_windows_xp_NtUserRedrawWindow PROC STDCALL arg_01:DWORD , arg_02:DWORD , arg_03:DWORD , arg_04:DWORD
mov eax , 4583
mov edx , 7FFE0300h
call dword ptr [edx]
ret 16
_5_1_2600_sp3_windows_xp_NtUserRedrawWindow ENDP
; ULONG __stdcall NtUserRegisterClassExWOW( ULONG arg_01 , ULONG arg_02 , ULONG arg_03 , ULONG arg_04 , ULONG arg_05 , ULONG arg_06 , ULONG arg_07 );
_5_1_2600_sp3_windows_xp_NtUserRegisterClassExWOW PROC STDCALL arg_01:DWORD , arg_02:DWORD , arg_03:DWORD , arg_04:DWORD , arg_05:DWORD , arg_06:DWORD , arg_07:DWORD
mov eax , 4584
mov edx , 7FFE0300h
call dword ptr [edx]
ret 28
_5_1_2600_sp3_windows_xp_NtUserRegisterClassExWOW ENDP
; ULONG __stdcall NtUserRegisterUserApiHook( ULONG arg_01 , ULONG arg_02 );
_5_1_2600_sp3_windows_xp_NtUserRegisterUserApiHook PROC STDCALL arg_01:DWORD , arg_02:DWORD
mov eax , 4585
mov edx , 7FFE0300h
call dword ptr [edx]
ret 8
_5_1_2600_sp3_windows_xp_NtUserRegisterUserApiHook ENDP
; ULONG __stdcall NtUserRegisterHotKey( ULONG arg_01 , ULONG arg_02 , ULONG arg_03 , ULONG arg_04 );
_5_1_2600_sp3_windows_xp_NtUserRegisterHotKey PROC STDCALL arg_01:DWORD , arg_02:DWORD , arg_03:DWORD , arg_04:DWORD
mov eax , 4586
mov edx , 7FFE0300h
call dword ptr [edx]
ret 16
_5_1_2600_sp3_windows_xp_NtUserRegisterHotKey ENDP
; ULONG __stdcall NtUserRegisterRawInputDevices( ULONG arg_01 , ULONG arg_02 , ULONG arg_03 );
_5_1_2600_sp3_windows_xp_NtUserRegisterRawInputDevices PROC STDCALL arg_01:DWORD , arg_02:DWORD , arg_03:DWORD
mov eax , 4587
mov edx , 7FFE0300h
call dword ptr [edx]
ret 12
_5_1_2600_sp3_windows_xp_NtUserRegisterRawInputDevices ENDP
; ULONG __stdcall NtUserRegisterTasklist( ULONG arg_01 );
_5_1_2600_sp3_windows_xp_NtUserRegisterTasklist PROC STDCALL arg_01:DWORD
mov eax , 4588
mov edx , 7FFE0300h
call dword ptr [edx]
ret 4
_5_1_2600_sp3_windows_xp_NtUserRegisterTasklist ENDP
; ULONG __stdcall NtUserRegisterWindowMessage( ULONG arg_01 );
_5_1_2600_sp3_windows_xp_NtUserRegisterWindowMessage PROC STDCALL arg_01:DWORD
mov eax , 4589
mov edx , 7FFE0300h
call dword ptr [edx]
ret 4
_5_1_2600_sp3_windows_xp_NtUserRegisterWindowMessage ENDP
; ULONG __stdcall NtUserRemoveMenu( ULONG arg_01 , ULONG arg_02 , ULONG arg_03 );
_5_1_2600_sp3_windows_xp_NtUserRemoveMenu PROC STDCALL arg_01:DWORD , arg_02:DWORD , arg_03:DWORD
mov eax , 4590
mov edx , 7FFE0300h
call dword ptr [edx]
ret 12
_5_1_2600_sp3_windows_xp_NtUserRemoveMenu ENDP
; ULONG __stdcall NtUserRemoveProp( ULONG arg_01 , ULONG arg_02 );
_5_1_2600_sp3_windows_xp_NtUserRemoveProp PROC STDCALL arg_01:DWORD , arg_02:DWORD
mov eax , 4591
mov edx , 7FFE0300h
call dword ptr [edx]
ret 8
_5_1_2600_sp3_windows_xp_NtUserRemoveProp ENDP
; ULONG __stdcall NtUserResolveDesktop( ULONG arg_01 , ULONG arg_02 , ULONG arg_03 , ULONG arg_04 );
_5_1_2600_sp3_windows_xp_NtUserResolveDesktop PROC STDCALL arg_01:DWORD , arg_02:DWORD , arg_03:DWORD , arg_04:DWORD
mov eax , 4592
mov edx , 7FFE0300h
call dword ptr [edx]
ret 16
_5_1_2600_sp3_windows_xp_NtUserResolveDesktop ENDP
; ULONG __stdcall NtUserResolveDesktopForWOW( ULONG arg_01 );
_5_1_2600_sp3_windows_xp_NtUserResolveDesktopForWOW PROC STDCALL arg_01:DWORD
mov eax , 4593
mov edx , 7FFE0300h
call dword ptr [edx]
ret 4
_5_1_2600_sp3_windows_xp_NtUserResolveDesktopForWOW ENDP
; ULONG __stdcall NtUserSBGetParms( ULONG arg_01 , ULONG arg_02 , ULONG arg_03 , ULONG arg_04 );
_5_1_2600_sp3_windows_xp_NtUserSBGetParms PROC STDCALL arg_01:DWORD , arg_02:DWORD , arg_03:DWORD , arg_04:DWORD
mov eax , 4594
mov edx , 7FFE0300h
call dword ptr [edx]
ret 16
_5_1_2600_sp3_windows_xp_NtUserSBGetParms ENDP
; ULONG __stdcall NtUserScrollDC( ULONG arg_01 , ULONG arg_02 , ULONG arg_03 , ULONG arg_04 , ULONG arg_05 , ULONG arg_06 , ULONG arg_07 );
_5_1_2600_sp3_windows_xp_NtUserScrollDC PROC STDCALL arg_01:DWORD , arg_02:DWORD , arg_03:DWORD , arg_04:DWORD , arg_05:DWORD , arg_06:DWORD , arg_07:DWORD
mov eax , 4595
mov edx , 7FFE0300h
call dword ptr [edx]
ret 28
_5_1_2600_sp3_windows_xp_NtUserScrollDC ENDP
; ULONG __stdcall NtUserScrollWindowEx( ULONG arg_01 , ULONG arg_02 , ULONG arg_03 , ULONG arg_04 , ULONG arg_05 , ULONG arg_06 , ULONG arg_07 , ULONG arg_08 );
_5_1_2600_sp3_windows_xp_NtUserScrollWindowEx PROC STDCALL arg_01:DWORD , arg_02:DWORD , arg_03:DWORD , arg_04:DWORD , arg_05:DWORD , arg_06:DWORD , arg_07:DWORD , arg_08:DWORD
mov eax , 4596
mov edx , 7FFE0300h
call dword ptr [edx]
ret 32
_5_1_2600_sp3_windows_xp_NtUserScrollWindowEx ENDP
; ULONG __stdcall NtUserSelectPalette( ULONG arg_01 , ULONG arg_02 , ULONG arg_03 );
_5_1_2600_sp3_windows_xp_NtUserSelectPalette PROC STDCALL arg_01:DWORD , arg_02:DWORD , arg_03:DWORD
mov eax , 4597
mov edx , 7FFE0300h
call dword ptr [edx]
ret 12
_5_1_2600_sp3_windows_xp_NtUserSelectPalette ENDP
; ULONG __stdcall NtUserSendInput( ULONG arg_01 , ULONG arg_02 , ULONG arg_03 );
_5_1_2600_sp3_windows_xp_NtUserSendInput PROC STDCALL arg_01:DWORD , arg_02:DWORD , arg_03:DWORD
mov eax , 4598
mov edx , 7FFE0300h
call dword ptr [edx]
ret 12
_5_1_2600_sp3_windows_xp_NtUserSendInput ENDP
; ULONG __stdcall NtUserSetActiveWindow( ULONG arg_01 );
_5_1_2600_sp3_windows_xp_NtUserSetActiveWindow PROC STDCALL arg_01:DWORD
mov eax , 4599
mov edx , 7FFE0300h
call dword ptr [edx]
ret 4
_5_1_2600_sp3_windows_xp_NtUserSetActiveWindow ENDP
; ULONG __stdcall NtUserSetAppImeLevel( ULONG arg_01 , ULONG arg_02 );
_5_1_2600_sp3_windows_xp_NtUserSetAppImeLevel PROC STDCALL arg_01:DWORD , arg_02:DWORD
mov eax , 4600
mov edx , 7FFE0300h
call dword ptr [edx]
ret 8
_5_1_2600_sp3_windows_xp_NtUserSetAppImeLevel ENDP
; ULONG __stdcall NtUserSetCapture( ULONG arg_01 );
_5_1_2600_sp3_windows_xp_NtUserSetCapture PROC STDCALL arg_01:DWORD
mov eax , 4601
mov edx , 7FFE0300h
call dword ptr [edx]
ret 4
_5_1_2600_sp3_windows_xp_NtUserSetCapture ENDP
; ULONG __stdcall NtUserSetClassLong( ULONG arg_01 , ULONG arg_02 , ULONG arg_03 , ULONG arg_04 );
_5_1_2600_sp3_windows_xp_NtUserSetClassLong PROC STDCALL arg_01:DWORD , arg_02:DWORD , arg_03:DWORD , arg_04:DWORD
mov eax , 4602
mov edx , 7FFE0300h
call dword ptr [edx]
ret 16
_5_1_2600_sp3_windows_xp_NtUserSetClassLong ENDP
; ULONG __stdcall NtUserSetClassWord( ULONG arg_01 , ULONG arg_02 , ULONG arg_03 );
_5_1_2600_sp3_windows_xp_NtUserSetClassWord PROC STDCALL arg_01:DWORD , arg_02:DWORD , arg_03:DWORD
mov eax , 4603
mov edx , 7FFE0300h
call dword ptr [edx]
ret 12
_5_1_2600_sp3_windows_xp_NtUserSetClassWord ENDP
; ULONG __stdcall NtUserSetClipboardData( ULONG arg_01 , ULONG arg_02 , ULONG arg_03 );
_5_1_2600_sp3_windows_xp_NtUserSetClipboardData PROC STDCALL arg_01:DWORD , arg_02:DWORD , arg_03:DWORD
mov eax , 4604
mov edx , 7FFE0300h
call dword ptr [edx]
ret 12
_5_1_2600_sp3_windows_xp_NtUserSetClipboardData ENDP
; ULONG __stdcall NtUserSetClipboardViewer( ULONG arg_01 );
_5_1_2600_sp3_windows_xp_NtUserSetClipboardViewer PROC STDCALL arg_01:DWORD
mov eax , 4605
mov edx , 7FFE0300h
call dword ptr [edx]
ret 4
_5_1_2600_sp3_windows_xp_NtUserSetClipboardViewer ENDP
; ULONG __stdcall NtUserSetConsoleReserveKeys( ULONG arg_01 , ULONG arg_02 );
_5_1_2600_sp3_windows_xp_NtUserSetConsoleReserveKeys PROC STDCALL arg_01:DWORD , arg_02:DWORD
mov eax , 4606
mov edx , 7FFE0300h
call dword ptr [edx]
ret 8
_5_1_2600_sp3_windows_xp_NtUserSetConsoleReserveKeys ENDP
; ULONG __stdcall NtUserSetCursor( ULONG arg_01 );
_5_1_2600_sp3_windows_xp_NtUserSetCursor PROC STDCALL arg_01:DWORD
mov eax , 4607
mov edx , 7FFE0300h
call dword ptr [edx]
ret 4
_5_1_2600_sp3_windows_xp_NtUserSetCursor ENDP
; ULONG __stdcall NtUserSetCursorContents( ULONG arg_01 , ULONG arg_02 );
_5_1_2600_sp3_windows_xp_NtUserSetCursorContents PROC STDCALL arg_01:DWORD , arg_02:DWORD
mov eax , 4608
mov edx , 7FFE0300h
call dword ptr [edx]
ret 8
_5_1_2600_sp3_windows_xp_NtUserSetCursorContents ENDP
; ULONG __stdcall NtUserSetCursorIconData( ULONG arg_01 , ULONG arg_02 , ULONG arg_03 , ULONG arg_04 );
_5_1_2600_sp3_windows_xp_NtUserSetCursorIconData PROC STDCALL arg_01:DWORD , arg_02:DWORD , arg_03:DWORD , arg_04:DWORD
mov eax , 4609
mov edx , 7FFE0300h
call dword ptr [edx]
ret 16
_5_1_2600_sp3_windows_xp_NtUserSetCursorIconData ENDP
; ULONG __stdcall NtUserSetDbgTag( ULONG arg_01 , ULONG arg_02 );
_5_1_2600_sp3_windows_xp_NtUserSetDbgTag PROC STDCALL arg_01:DWORD , arg_02:DWORD
mov eax , 4610
mov edx , 7FFE0300h
call dword ptr [edx]
ret 8
_5_1_2600_sp3_windows_xp_NtUserSetDbgTag ENDP
; ULONG __stdcall NtUserSetFocus( ULONG arg_01 );
_5_1_2600_sp3_windows_xp_NtUserSetFocus PROC STDCALL arg_01:DWORD
mov eax , 4611
mov edx , 7FFE0300h
call dword ptr [edx]
ret 4
_5_1_2600_sp3_windows_xp_NtUserSetFocus ENDP
; ULONG __stdcall NtUserSetImeHotKey( ULONG arg_01 , ULONG arg_02 , ULONG arg_03 , ULONG arg_04 , ULONG arg_05 );
_5_1_2600_sp3_windows_xp_NtUserSetImeHotKey PROC STDCALL arg_01:DWORD , arg_02:DWORD , arg_03:DWORD , arg_04:DWORD , arg_05:DWORD
mov eax , 4612
mov edx , 7FFE0300h
call dword ptr [edx]
ret 20
_5_1_2600_sp3_windows_xp_NtUserSetImeHotKey ENDP
; ULONG __stdcall NtUserSetImeInfoEx( ULONG arg_01 );
_5_1_2600_sp3_windows_xp_NtUserSetImeInfoEx PROC STDCALL arg_01:DWORD
mov eax , 4613
mov edx , 7FFE0300h
call dword ptr [edx]
ret 4
_5_1_2600_sp3_windows_xp_NtUserSetImeInfoEx ENDP
; ULONG __stdcall NtUserSetImeOwnerWindow( ULONG arg_01 , ULONG arg_02 );
_5_1_2600_sp3_windows_xp_NtUserSetImeOwnerWindow PROC STDCALL arg_01:DWORD , arg_02:DWORD
mov eax , 4614
mov edx , 7FFE0300h
call dword ptr [edx]
ret 8
_5_1_2600_sp3_windows_xp_NtUserSetImeOwnerWindow ENDP
; ULONG __stdcall NtUserSetInformationProcess( ULONG arg_01 , ULONG arg_02 , ULONG arg_03 , ULONG arg_04 );
_5_1_2600_sp3_windows_xp_NtUserSetInformationProcess PROC STDCALL arg_01:DWORD , arg_02:DWORD , arg_03:DWORD , arg_04:DWORD
mov eax , 4615
mov edx , 7FFE0300h
call dword ptr [edx]
ret 16
_5_1_2600_sp3_windows_xp_NtUserSetInformationProcess ENDP
; ULONG __stdcall NtUserSetInformationThread( ULONG arg_01 , ULONG arg_02 , ULONG arg_03 , ULONG arg_04 );
_5_1_2600_sp3_windows_xp_NtUserSetInformationThread PROC STDCALL arg_01:DWORD , arg_02:DWORD , arg_03:DWORD , arg_04:DWORD
mov eax , 4616
mov edx , 7FFE0300h
call dword ptr [edx]
ret 16
_5_1_2600_sp3_windows_xp_NtUserSetInformationThread ENDP
; ULONG __stdcall NtUserSetInternalWindowPos( ULONG arg_01 , ULONG arg_02 , ULONG arg_03 , ULONG arg_04 );
_5_1_2600_sp3_windows_xp_NtUserSetInternalWindowPos PROC STDCALL arg_01:DWORD , arg_02:DWORD , arg_03:DWORD , arg_04:DWORD
mov eax , 4617
mov edx , 7FFE0300h
call dword ptr [edx]
ret 16
_5_1_2600_sp3_windows_xp_NtUserSetInternalWindowPos ENDP
; ULONG __stdcall NtUserSetKeyboardState( ULONG arg_01 );
_5_1_2600_sp3_windows_xp_NtUserSetKeyboardState PROC STDCALL arg_01:DWORD
mov eax , 4618
mov edx , 7FFE0300h
call dword ptr [edx]
ret 4
_5_1_2600_sp3_windows_xp_NtUserSetKeyboardState ENDP
; ULONG __stdcall NtUserSetLogonNotifyWindow( ULONG arg_01 );
_5_1_2600_sp3_windows_xp_NtUserSetLogonNotifyWindow PROC STDCALL arg_01:DWORD
mov eax , 4619
mov edx , 7FFE0300h
call dword ptr [edx]
ret 4
_5_1_2600_sp3_windows_xp_NtUserSetLogonNotifyWindow ENDP
; ULONG __stdcall NtUserSetMenu( ULONG arg_01 , ULONG arg_02 , ULONG arg_03 );
_5_1_2600_sp3_windows_xp_NtUserSetMenu PROC STDCALL arg_01:DWORD , arg_02:DWORD , arg_03:DWORD
mov eax , 4620
mov edx , 7FFE0300h
call dword ptr [edx]
ret 12
_5_1_2600_sp3_windows_xp_NtUserSetMenu ENDP
; ULONG __stdcall NtUserSetMenuContextHelpId( ULONG arg_01 , ULONG arg_02 );
_5_1_2600_sp3_windows_xp_NtUserSetMenuContextHelpId PROC STDCALL arg_01:DWORD , arg_02:DWORD
mov eax , 4621
mov edx , 7FFE0300h
call dword ptr [edx]
ret 8
_5_1_2600_sp3_windows_xp_NtUserSetMenuContextHelpId ENDP
; ULONG __stdcall NtUserSetMenuDefaultItem( ULONG arg_01 , ULONG arg_02 , ULONG arg_03 );
_5_1_2600_sp3_windows_xp_NtUserSetMenuDefaultItem PROC STDCALL arg_01:DWORD , arg_02:DWORD , arg_03:DWORD
mov eax , 4622
mov edx , 7FFE0300h
call dword ptr [edx]
ret 12
_5_1_2600_sp3_windows_xp_NtUserSetMenuDefaultItem ENDP
; ULONG __stdcall NtUserSetMenuFlagRtoL( ULONG arg_01 );
_5_1_2600_sp3_windows_xp_NtUserSetMenuFlagRtoL PROC STDCALL arg_01:DWORD
mov eax , 4623
mov edx , 7FFE0300h
call dword ptr [edx]
ret 4
_5_1_2600_sp3_windows_xp_NtUserSetMenuFlagRtoL ENDP
; ULONG __stdcall NtUserSetObjectInformation( ULONG arg_01 , ULONG arg_02 , ULONG arg_03 , ULONG arg_04 );
_5_1_2600_sp3_windows_xp_NtUserSetObjectInformation PROC STDCALL arg_01:DWORD , arg_02:DWORD , arg_03:DWORD , arg_04:DWORD
mov eax , 4624
mov edx , 7FFE0300h
call dword ptr [edx]
ret 16
_5_1_2600_sp3_windows_xp_NtUserSetObjectInformation ENDP
; ULONG __stdcall NtUserSetParent( ULONG arg_01 , ULONG arg_02 );
_5_1_2600_sp3_windows_xp_NtUserSetParent PROC STDCALL arg_01:DWORD , arg_02:DWORD
mov eax , 4625
mov edx , 7FFE0300h
call dword ptr [edx]
ret 8
_5_1_2600_sp3_windows_xp_NtUserSetParent ENDP
; ULONG __stdcall NtUserSetProcessWindowStation( ULONG arg_01 );
_5_1_2600_sp3_windows_xp_NtUserSetProcessWindowStation PROC STDCALL arg_01:DWORD
mov eax , 4626
mov edx , 7FFE0300h
call dword ptr [edx]
ret 4
_5_1_2600_sp3_windows_xp_NtUserSetProcessWindowStation ENDP
; ULONG __stdcall NtUserSetProp( ULONG arg_01 , ULONG arg_02 , ULONG arg_03 );
_5_1_2600_sp3_windows_xp_NtUserSetProp PROC STDCALL arg_01:DWORD , arg_02:DWORD , arg_03:DWORD
mov eax , 4627
mov edx , 7FFE0300h
call dword ptr [edx]
ret 12
_5_1_2600_sp3_windows_xp_NtUserSetProp ENDP
; ULONG __stdcall NtUserSetRipFlags( ULONG arg_01 , ULONG arg_02 );
_5_1_2600_sp3_windows_xp_NtUserSetRipFlags PROC STDCALL arg_01:DWORD , arg_02:DWORD
mov eax , 4628
mov edx , 7FFE0300h
call dword ptr [edx]
ret 8
_5_1_2600_sp3_windows_xp_NtUserSetRipFlags ENDP
; ULONG __stdcall NtUserSetScrollInfo( ULONG arg_01 , ULONG arg_02 , ULONG arg_03 , ULONG arg_04 );
_5_1_2600_sp3_windows_xp_NtUserSetScrollInfo PROC STDCALL arg_01:DWORD , arg_02:DWORD , arg_03:DWORD , arg_04:DWORD
mov eax , 4629
mov edx , 7FFE0300h
call dword ptr [edx]
ret 16
_5_1_2600_sp3_windows_xp_NtUserSetScrollInfo ENDP
; ULONG __stdcall NtUserSetShellWindowEx( ULONG arg_01 , ULONG arg_02 );
_5_1_2600_sp3_windows_xp_NtUserSetShellWindowEx PROC STDCALL arg_01:DWORD , arg_02:DWORD
mov eax , 4630
mov edx , 7FFE0300h
call dword ptr [edx]
ret 8
_5_1_2600_sp3_windows_xp_NtUserSetShellWindowEx ENDP
; ULONG __stdcall NtUserSetSysColors( ULONG arg_01 , ULONG arg_02 , ULONG arg_03 , ULONG arg_04 );
_5_1_2600_sp3_windows_xp_NtUserSetSysColors PROC STDCALL arg_01:DWORD , arg_02:DWORD , arg_03:DWORD , arg_04:DWORD
mov eax , 4631
mov edx , 7FFE0300h
call dword ptr [edx]
ret 16
_5_1_2600_sp3_windows_xp_NtUserSetSysColors ENDP
; ULONG __stdcall NtUserSetSystemCursor( ULONG arg_01 , ULONG arg_02 );
_5_1_2600_sp3_windows_xp_NtUserSetSystemCursor PROC STDCALL arg_01:DWORD , arg_02:DWORD
mov eax , 4632
mov edx , 7FFE0300h
call dword ptr [edx]
ret 8
_5_1_2600_sp3_windows_xp_NtUserSetSystemCursor ENDP
; ULONG __stdcall NtUserSetSystemMenu( ULONG arg_01 , ULONG arg_02 );
_5_1_2600_sp3_windows_xp_NtUserSetSystemMenu PROC STDCALL arg_01:DWORD , arg_02:DWORD
mov eax , 4633
mov edx , 7FFE0300h
call dword ptr [edx]
ret 8
_5_1_2600_sp3_windows_xp_NtUserSetSystemMenu ENDP
; ULONG __stdcall NtUserSetSystemTimer( ULONG arg_01 , ULONG arg_02 , ULONG arg_03 , ULONG arg_04 );
_5_1_2600_sp3_windows_xp_NtUserSetSystemTimer PROC STDCALL arg_01:DWORD , arg_02:DWORD , arg_03:DWORD , arg_04:DWORD
mov eax , 4634
mov edx , 7FFE0300h
call dword ptr [edx]
ret 16
_5_1_2600_sp3_windows_xp_NtUserSetSystemTimer ENDP
; ULONG __stdcall NtUserSetThreadDesktop( ULONG arg_01 );
_5_1_2600_sp3_windows_xp_NtUserSetThreadDesktop PROC STDCALL arg_01:DWORD
mov eax , 4635
mov edx , 7FFE0300h
call dword ptr [edx]
ret 4
_5_1_2600_sp3_windows_xp_NtUserSetThreadDesktop ENDP
; ULONG __stdcall NtUserSetThreadLayoutHandles( ULONG arg_01 , ULONG arg_02 );
_5_1_2600_sp3_windows_xp_NtUserSetThreadLayoutHandles PROC STDCALL arg_01:DWORD , arg_02:DWORD
mov eax , 4636
mov edx , 7FFE0300h
call dword ptr [edx]
ret 8
_5_1_2600_sp3_windows_xp_NtUserSetThreadLayoutHandles ENDP
; ULONG __stdcall NtUserSetThreadState( ULONG arg_01 , ULONG arg_02 );
_5_1_2600_sp3_windows_xp_NtUserSetThreadState PROC STDCALL arg_01:DWORD , arg_02:DWORD
mov eax , 4637
mov edx , 7FFE0300h
call dword ptr [edx]
ret 8
_5_1_2600_sp3_windows_xp_NtUserSetThreadState ENDP
; ULONG __stdcall NtUserSetTimer( ULONG arg_01 , ULONG arg_02 , ULONG arg_03 , ULONG arg_04 );
_5_1_2600_sp3_windows_xp_NtUserSetTimer PROC STDCALL arg_01:DWORD , arg_02:DWORD , arg_03:DWORD , arg_04:DWORD
mov eax , 4638
mov edx , 7FFE0300h
call dword ptr [edx]
ret 16
_5_1_2600_sp3_windows_xp_NtUserSetTimer ENDP
; ULONG __stdcall NtUserSetWindowFNID( ULONG arg_01 , ULONG arg_02 );
_5_1_2600_sp3_windows_xp_NtUserSetWindowFNID PROC STDCALL arg_01:DWORD , arg_02:DWORD
mov eax , 4639
mov edx , 7FFE0300h
call dword ptr [edx]
ret 8
_5_1_2600_sp3_windows_xp_NtUserSetWindowFNID ENDP
; ULONG __stdcall NtUserSetWindowLong( ULONG arg_01 , ULONG arg_02 , ULONG arg_03 , ULONG arg_04 );
_5_1_2600_sp3_windows_xp_NtUserSetWindowLong PROC STDCALL arg_01:DWORD , arg_02:DWORD , arg_03:DWORD , arg_04:DWORD
mov eax , 4640
mov edx , 7FFE0300h
call dword ptr [edx]
ret 16
_5_1_2600_sp3_windows_xp_NtUserSetWindowLong ENDP
; ULONG __stdcall NtUserSetWindowPlacement( ULONG arg_01 , ULONG arg_02 );
_5_1_2600_sp3_windows_xp_NtUserSetWindowPlacement PROC STDCALL arg_01:DWORD , arg_02:DWORD
mov eax , 4641
mov edx , 7FFE0300h
call dword ptr [edx]
ret 8
_5_1_2600_sp3_windows_xp_NtUserSetWindowPlacement ENDP
; ULONG __stdcall NtUserSetWindowPos( ULONG arg_01 , ULONG arg_02 , ULONG arg_03 , ULONG arg_04 , ULONG arg_05 , ULONG arg_06 , ULONG arg_07 );
_5_1_2600_sp3_windows_xp_NtUserSetWindowPos PROC STDCALL arg_01:DWORD , arg_02:DWORD , arg_03:DWORD , arg_04:DWORD , arg_05:DWORD , arg_06:DWORD , arg_07:DWORD
mov eax , 4642
mov edx , 7FFE0300h
call dword ptr [edx]
ret 28
_5_1_2600_sp3_windows_xp_NtUserSetWindowPos ENDP
; ULONG __stdcall NtUserSetWindowRgn( ULONG arg_01 , ULONG arg_02 , ULONG arg_03 );
_5_1_2600_sp3_windows_xp_NtUserSetWindowRgn PROC STDCALL arg_01:DWORD , arg_02:DWORD , arg_03:DWORD
mov eax , 4643
mov edx , 7FFE0300h
call dword ptr [edx]
ret 12
_5_1_2600_sp3_windows_xp_NtUserSetWindowRgn ENDP
; ULONG __stdcall NtUserSetWindowsHookAW( ULONG arg_01 , ULONG arg_02 , ULONG arg_03 );
_5_1_2600_sp3_windows_xp_NtUserSetWindowsHookAW PROC STDCALL arg_01:DWORD , arg_02:DWORD , arg_03:DWORD
mov eax , 4644
mov edx , 7FFE0300h
call dword ptr [edx]
ret 12
_5_1_2600_sp3_windows_xp_NtUserSetWindowsHookAW ENDP
; ULONG __stdcall NtUserSetWindowsHookEx( ULONG arg_01 , ULONG arg_02 , ULONG arg_03 , ULONG arg_04 , ULONG arg_05 , ULONG arg_06 );
_5_1_2600_sp3_windows_xp_NtUserSetWindowsHookEx PROC STDCALL arg_01:DWORD , arg_02:DWORD , arg_03:DWORD , arg_04:DWORD , arg_05:DWORD , arg_06:DWORD
mov eax , 4645
mov edx , 7FFE0300h
call dword ptr [edx]
ret 24
_5_1_2600_sp3_windows_xp_NtUserSetWindowsHookEx ENDP
; ULONG __stdcall NtUserSetWindowStationUser( ULONG arg_01 , ULONG arg_02 , ULONG arg_03 , ULONG arg_04 );
_5_1_2600_sp3_windows_xp_NtUserSetWindowStationUser PROC STDCALL arg_01:DWORD , arg_02:DWORD , arg_03:DWORD , arg_04:DWORD
mov eax , 4646
mov edx , 7FFE0300h
call dword ptr [edx]
ret 16
_5_1_2600_sp3_windows_xp_NtUserSetWindowStationUser ENDP
; ULONG __stdcall NtUserSetWindowWord( ULONG arg_01 , ULONG arg_02 , ULONG arg_03 );
_5_1_2600_sp3_windows_xp_NtUserSetWindowWord PROC STDCALL arg_01:DWORD , arg_02:DWORD , arg_03:DWORD
mov eax , 4647
mov edx , 7FFE0300h
call dword ptr [edx]
ret 12
_5_1_2600_sp3_windows_xp_NtUserSetWindowWord ENDP
; ULONG __stdcall NtUserSetWinEventHook( ULONG arg_01 , ULONG arg_02 , ULONG arg_03 , ULONG arg_04 , ULONG arg_05 , ULONG arg_06 , ULONG arg_07 , ULONG arg_08 );
_5_1_2600_sp3_windows_xp_NtUserSetWinEventHook PROC STDCALL arg_01:DWORD , arg_02:DWORD , arg_03:DWORD , arg_04:DWORD , arg_05:DWORD , arg_06:DWORD , arg_07:DWORD , arg_08:DWORD
mov eax , 4648
mov edx , 7FFE0300h
call dword ptr [edx]
ret 32
_5_1_2600_sp3_windows_xp_NtUserSetWinEventHook ENDP
; ULONG __stdcall NtUserShowCaret( ULONG arg_01 );
_5_1_2600_sp3_windows_xp_NtUserShowCaret PROC STDCALL arg_01:DWORD
mov eax , 4649
mov edx , 7FFE0300h
call dword ptr [edx]
ret 4
_5_1_2600_sp3_windows_xp_NtUserShowCaret ENDP
; ULONG __stdcall NtUserShowScrollBar( ULONG arg_01 , ULONG arg_02 , ULONG arg_03 );
_5_1_2600_sp3_windows_xp_NtUserShowScrollBar PROC STDCALL arg_01:DWORD , arg_02:DWORD , arg_03:DWORD
mov eax , 4650
mov edx , 7FFE0300h
call dword ptr [edx]
ret 12
_5_1_2600_sp3_windows_xp_NtUserShowScrollBar ENDP
; ULONG __stdcall NtUserShowWindow( ULONG arg_01 , ULONG arg_02 );
_5_1_2600_sp3_windows_xp_NtUserShowWindow PROC STDCALL arg_01:DWORD , arg_02:DWORD
mov eax , 4651
mov edx , 7FFE0300h
call dword ptr [edx]
ret 8
_5_1_2600_sp3_windows_xp_NtUserShowWindow ENDP
; ULONG __stdcall NtUserShowWindowAsync( ULONG arg_01 , ULONG arg_02 );
_5_1_2600_sp3_windows_xp_NtUserShowWindowAsync PROC STDCALL arg_01:DWORD , arg_02:DWORD
mov eax , 4652
mov edx , 7FFE0300h
call dword ptr [edx]
ret 8
_5_1_2600_sp3_windows_xp_NtUserShowWindowAsync ENDP
; ULONG __stdcall NtUserSoundSentry( );
_5_1_2600_sp3_windows_xp_NtUserSoundSentry PROC STDCALL
mov eax , 4653
mov edx , 7FFE0300h
call dword ptr [edx]
ret
_5_1_2600_sp3_windows_xp_NtUserSoundSentry ENDP
; ULONG __stdcall NtUserSwitchDesktop( ULONG arg_01 );
_5_1_2600_sp3_windows_xp_NtUserSwitchDesktop PROC STDCALL arg_01:DWORD
mov eax , 4654
mov edx , 7FFE0300h
call dword ptr [edx]
ret 4
_5_1_2600_sp3_windows_xp_NtUserSwitchDesktop ENDP
; ULONG __stdcall NtUserSystemParametersInfo( ULONG arg_01 , ULONG arg_02 , ULONG arg_03 , ULONG arg_04 );
_5_1_2600_sp3_windows_xp_NtUserSystemParametersInfo PROC STDCALL arg_01:DWORD , arg_02:DWORD , arg_03:DWORD , arg_04:DWORD
mov eax , 4655
mov edx , 7FFE0300h
call dword ptr [edx]
ret 16
_5_1_2600_sp3_windows_xp_NtUserSystemParametersInfo ENDP
; ULONG __stdcall NtUserTestForInteractiveUser( ULONG arg_01 );
_5_1_2600_sp3_windows_xp_NtUserTestForInteractiveUser PROC STDCALL arg_01:DWORD
mov eax , 4656
mov edx , 7FFE0300h
call dword ptr [edx]
ret 4
_5_1_2600_sp3_windows_xp_NtUserTestForInteractiveUser ENDP
; ULONG __stdcall NtUserThunkedMenuInfo( ULONG arg_01 , ULONG arg_02 );
_5_1_2600_sp3_windows_xp_NtUserThunkedMenuInfo PROC STDCALL arg_01:DWORD , arg_02:DWORD
mov eax , 4657
mov edx , 7FFE0300h
call dword ptr [edx]
ret 8
_5_1_2600_sp3_windows_xp_NtUserThunkedMenuInfo ENDP
; ULONG __stdcall NtUserThunkedMenuItemInfo( ULONG arg_01 , ULONG arg_02 , ULONG arg_03 , ULONG arg_04 , ULONG arg_05 , ULONG arg_06 );
_5_1_2600_sp3_windows_xp_NtUserThunkedMenuItemInfo PROC STDCALL arg_01:DWORD , arg_02:DWORD , arg_03:DWORD , arg_04:DWORD , arg_05:DWORD , arg_06:DWORD
mov eax , 4658
mov edx , 7FFE0300h
call dword ptr [edx]
ret 24
_5_1_2600_sp3_windows_xp_NtUserThunkedMenuItemInfo ENDP
; ULONG __stdcall NtUserToUnicodeEx( ULONG arg_01 , ULONG arg_02 , ULONG arg_03 , ULONG arg_04 , ULONG arg_05 , ULONG arg_06 , ULONG arg_07 );
_5_1_2600_sp3_windows_xp_NtUserToUnicodeEx PROC STDCALL arg_01:DWORD , arg_02:DWORD , arg_03:DWORD , arg_04:DWORD , arg_05:DWORD , arg_06:DWORD , arg_07:DWORD
mov eax , 4659
mov edx , 7FFE0300h
call dword ptr [edx]
ret 28
_5_1_2600_sp3_windows_xp_NtUserToUnicodeEx ENDP
; ULONG __stdcall NtUserTrackMouseEvent( ULONG arg_01 );
_5_1_2600_sp3_windows_xp_NtUserTrackMouseEvent PROC STDCALL arg_01:DWORD
mov eax , 4660
mov edx , 7FFE0300h
call dword ptr [edx]
ret 4
_5_1_2600_sp3_windows_xp_NtUserTrackMouseEvent ENDP
; ULONG __stdcall NtUserTrackPopupMenuEx( ULONG arg_01 , ULONG arg_02 , ULONG arg_03 , ULONG arg_04 , ULONG arg_05 , ULONG arg_06 );
_5_1_2600_sp3_windows_xp_NtUserTrackPopupMenuEx PROC STDCALL arg_01:DWORD , arg_02:DWORD , arg_03:DWORD , arg_04:DWORD , arg_05:DWORD , arg_06:DWORD
mov eax , 4661
mov edx , 7FFE0300h
call dword ptr [edx]
ret 24
_5_1_2600_sp3_windows_xp_NtUserTrackPopupMenuEx ENDP
; ULONG __stdcall NtUserCalcMenuBar( ULONG arg_01 , ULONG arg_02 , ULONG arg_03 , ULONG arg_04 , ULONG arg_05 );
_5_1_2600_sp3_windows_xp_NtUserCalcMenuBar PROC STDCALL arg_01:DWORD , arg_02:DWORD , arg_03:DWORD , arg_04:DWORD , arg_05:DWORD
mov eax , 4662
mov edx , 7FFE0300h
call dword ptr [edx]
ret 20
_5_1_2600_sp3_windows_xp_NtUserCalcMenuBar ENDP
; ULONG __stdcall NtUserPaintMenuBar( ULONG arg_01 , ULONG arg_02 , ULONG arg_03 , ULONG arg_04 , ULONG arg_05 , ULONG arg_06 );
_5_1_2600_sp3_windows_xp_NtUserPaintMenuBar PROC STDCALL arg_01:DWORD , arg_02:DWORD , arg_03:DWORD , arg_04:DWORD , arg_05:DWORD , arg_06:DWORD
mov eax , 4663
mov edx , 7FFE0300h
call dword ptr [edx]
ret 24
_5_1_2600_sp3_windows_xp_NtUserPaintMenuBar ENDP
; ULONG __stdcall NtUserTranslateAccelerator( ULONG arg_01 , ULONG arg_02 , ULONG arg_03 );
_5_1_2600_sp3_windows_xp_NtUserTranslateAccelerator PROC STDCALL arg_01:DWORD , arg_02:DWORD , arg_03:DWORD
mov eax , 4664
mov edx , 7FFE0300h
call dword ptr [edx]
ret 12
_5_1_2600_sp3_windows_xp_NtUserTranslateAccelerator ENDP
; ULONG __stdcall NtUserTranslateMessage( ULONG arg_01 , ULONG arg_02 );
_5_1_2600_sp3_windows_xp_NtUserTranslateMessage PROC STDCALL arg_01:DWORD , arg_02:DWORD
mov eax , 4665
mov edx , 7FFE0300h
call dword ptr [edx]
ret 8
_5_1_2600_sp3_windows_xp_NtUserTranslateMessage ENDP
; ULONG __stdcall NtUserUnhookWindowsHookEx( ULONG arg_01 );
_5_1_2600_sp3_windows_xp_NtUserUnhookWindowsHookEx PROC STDCALL arg_01:DWORD
mov eax , 4666
mov edx , 7FFE0300h
call dword ptr [edx]
ret 4
_5_1_2600_sp3_windows_xp_NtUserUnhookWindowsHookEx ENDP
; ULONG __stdcall NtUserUnhookWinEvent( ULONG arg_01 );
_5_1_2600_sp3_windows_xp_NtUserUnhookWinEvent PROC STDCALL arg_01:DWORD
mov eax , 4667
mov edx , 7FFE0300h
call dword ptr [edx]
ret 4
_5_1_2600_sp3_windows_xp_NtUserUnhookWinEvent ENDP
; ULONG __stdcall NtUserUnloadKeyboardLayout( ULONG arg_01 );
_5_1_2600_sp3_windows_xp_NtUserUnloadKeyboardLayout PROC STDCALL arg_01:DWORD
mov eax , 4668
mov edx , 7FFE0300h
call dword ptr [edx]
ret 4
_5_1_2600_sp3_windows_xp_NtUserUnloadKeyboardLayout ENDP
; ULONG __stdcall NtUserUnlockWindowStation( ULONG arg_01 );
_5_1_2600_sp3_windows_xp_NtUserUnlockWindowStation PROC STDCALL arg_01:DWORD
mov eax , 4669
mov edx , 7FFE0300h
call dword ptr [edx]
ret 4
_5_1_2600_sp3_windows_xp_NtUserUnlockWindowStation ENDP
; ULONG __stdcall NtUserUnregisterClass( ULONG arg_01 , ULONG arg_02 , ULONG arg_03 );
_5_1_2600_sp3_windows_xp_NtUserUnregisterClass PROC STDCALL arg_01:DWORD , arg_02:DWORD , arg_03:DWORD
mov eax , 4670
mov edx , 7FFE0300h
call dword ptr [edx]
ret 12
_5_1_2600_sp3_windows_xp_NtUserUnregisterClass ENDP
; ULONG __stdcall NtUserUnregisterUserApiHook( );
_5_1_2600_sp3_windows_xp_NtUserUnregisterUserApiHook PROC STDCALL
mov eax , 4671
mov edx , 7FFE0300h
call dword ptr [edx]
ret
_5_1_2600_sp3_windows_xp_NtUserUnregisterUserApiHook ENDP
; ULONG __stdcall NtUserUnregisterHotKey( ULONG arg_01 , ULONG arg_02 );
_5_1_2600_sp3_windows_xp_NtUserUnregisterHotKey PROC STDCALL arg_01:DWORD , arg_02:DWORD
mov eax , 4672
mov edx , 7FFE0300h
call dword ptr [edx]
ret 8
_5_1_2600_sp3_windows_xp_NtUserUnregisterHotKey ENDP
; ULONG __stdcall NtUserUpdateInputContext( ULONG arg_01 , ULONG arg_02 , ULONG arg_03 );
_5_1_2600_sp3_windows_xp_NtUserUpdateInputContext PROC STDCALL arg_01:DWORD , arg_02:DWORD , arg_03:DWORD
mov eax , 4673
mov edx , 7FFE0300h
call dword ptr [edx]
ret 12
_5_1_2600_sp3_windows_xp_NtUserUpdateInputContext ENDP
; ULONG __stdcall NtUserUpdateInstance( ULONG arg_01 , ULONG arg_02 , ULONG arg_03 );
_5_1_2600_sp3_windows_xp_NtUserUpdateInstance PROC STDCALL arg_01:DWORD , arg_02:DWORD , arg_03:DWORD
mov eax , 4674
mov edx , 7FFE0300h
call dword ptr [edx]
ret 12
_5_1_2600_sp3_windows_xp_NtUserUpdateInstance ENDP
; ULONG __stdcall NtUserUpdateLayeredWindow( ULONG arg_01 , ULONG arg_02 , ULONG arg_03 , ULONG arg_04 , ULONG arg_05 , ULONG arg_06 , ULONG arg_07 , ULONG arg_08 , ULONG arg_09 );
_5_1_2600_sp3_windows_xp_NtUserUpdateLayeredWindow PROC STDCALL arg_01:DWORD , arg_02:DWORD , arg_03:DWORD , arg_04:DWORD , arg_05:DWORD , arg_06:DWORD , arg_07:DWORD , arg_08:DWORD , arg_09:DWORD
mov eax , 4675
mov edx , 7FFE0300h
call dword ptr [edx]
ret 36
_5_1_2600_sp3_windows_xp_NtUserUpdateLayeredWindow ENDP
; ULONG __stdcall NtUserGetLayeredWindowAttributes( ULONG arg_01 , ULONG arg_02 , ULONG arg_03 , ULONG arg_04 );
_5_1_2600_sp3_windows_xp_NtUserGetLayeredWindowAttributes PROC STDCALL arg_01:DWORD , arg_02:DWORD , arg_03:DWORD , arg_04:DWORD
mov eax , 4676
mov edx , 7FFE0300h
call dword ptr [edx]
ret 16
_5_1_2600_sp3_windows_xp_NtUserGetLayeredWindowAttributes ENDP
; ULONG __stdcall NtUserSetLayeredWindowAttributes( ULONG arg_01 , ULONG arg_02 , ULONG arg_03 , ULONG arg_04 );
_5_1_2600_sp3_windows_xp_NtUserSetLayeredWindowAttributes PROC STDCALL arg_01:DWORD , arg_02:DWORD , arg_03:DWORD , arg_04:DWORD
mov eax , 4677
mov edx , 7FFE0300h
call dword ptr [edx]
ret 16
_5_1_2600_sp3_windows_xp_NtUserSetLayeredWindowAttributes ENDP
; ULONG __stdcall NtUserUpdatePerUserSystemParameters( ULONG arg_01 , ULONG arg_02 );
_5_1_2600_sp3_windows_xp_NtUserUpdatePerUserSystemParameters PROC STDCALL arg_01:DWORD , arg_02:DWORD
mov eax , 4678
mov edx , 7FFE0300h
call dword ptr [edx]
ret 8
_5_1_2600_sp3_windows_xp_NtUserUpdatePerUserSystemParameters ENDP
; ULONG __stdcall NtUserUserHandleGrantAccess( ULONG arg_01 , ULONG arg_02 , ULONG arg_03 );
_5_1_2600_sp3_windows_xp_NtUserUserHandleGrantAccess PROC STDCALL arg_01:DWORD , arg_02:DWORD , arg_03:DWORD
mov eax , 4679
mov edx , 7FFE0300h
call dword ptr [edx]
ret 12
_5_1_2600_sp3_windows_xp_NtUserUserHandleGrantAccess ENDP
; ULONG __stdcall NtUserValidateHandleSecure( ULONG arg_01 , ULONG arg_02 );
_5_1_2600_sp3_windows_xp_NtUserValidateHandleSecure PROC STDCALL arg_01:DWORD , arg_02:DWORD
mov eax , 4680
mov edx , 7FFE0300h
call dword ptr [edx]
ret 8
_5_1_2600_sp3_windows_xp_NtUserValidateHandleSecure ENDP
; ULONG __stdcall NtUserValidateRect( ULONG arg_01 , ULONG arg_02 );
_5_1_2600_sp3_windows_xp_NtUserValidateRect PROC STDCALL arg_01:DWORD , arg_02:DWORD
mov eax , 4681
mov edx , 7FFE0300h
call dword ptr [edx]
ret 8
_5_1_2600_sp3_windows_xp_NtUserValidateRect ENDP
; ULONG __stdcall NtUserValidateTimerCallback( ULONG arg_01 , ULONG arg_02 , ULONG arg_03 );
_5_1_2600_sp3_windows_xp_NtUserValidateTimerCallback PROC STDCALL arg_01:DWORD , arg_02:DWORD , arg_03:DWORD
mov eax , 4682
mov edx , 7FFE0300h
call dword ptr [edx]
ret 12
_5_1_2600_sp3_windows_xp_NtUserValidateTimerCallback ENDP
; ULONG __stdcall NtUserVkKeyScanEx( ULONG arg_01 , ULONG arg_02 , ULONG arg_03 );
_5_1_2600_sp3_windows_xp_NtUserVkKeyScanEx PROC STDCALL arg_01:DWORD , arg_02:DWORD , arg_03:DWORD
mov eax , 4683
mov edx , 7FFE0300h
call dword ptr [edx]
ret 12
_5_1_2600_sp3_windows_xp_NtUserVkKeyScanEx ENDP
; ULONG __stdcall NtUserWaitForInputIdle( ULONG arg_01 , ULONG arg_02 , ULONG arg_03 );
_5_1_2600_sp3_windows_xp_NtUserWaitForInputIdle PROC STDCALL arg_01:DWORD , arg_02:DWORD , arg_03:DWORD
mov eax , 4684
mov edx , 7FFE0300h
call dword ptr [edx]
ret 12
_5_1_2600_sp3_windows_xp_NtUserWaitForInputIdle ENDP
; ULONG __stdcall NtUserWaitForMsgAndEvent( ULONG arg_01 );
_5_1_2600_sp3_windows_xp_NtUserWaitForMsgAndEvent PROC STDCALL arg_01:DWORD
mov eax , 4685
mov edx , 7FFE0300h
call dword ptr [edx]
ret 4
_5_1_2600_sp3_windows_xp_NtUserWaitForMsgAndEvent ENDP
; ULONG __stdcall NtUserWaitMessage( );
_5_1_2600_sp3_windows_xp_NtUserWaitMessage PROC STDCALL
mov eax , 4686
mov edx , 7FFE0300h
call dword ptr [edx]
ret
_5_1_2600_sp3_windows_xp_NtUserWaitMessage ENDP
; ULONG __stdcall NtUserWin32PoolAllocationStats( ULONG arg_01 , ULONG arg_02 , ULONG arg_03 , ULONG arg_04 , ULONG arg_05 , ULONG arg_06 );
_5_1_2600_sp3_windows_xp_NtUserWin32PoolAllocationStats PROC STDCALL arg_01:DWORD , arg_02:DWORD , arg_03:DWORD , arg_04:DWORD , arg_05:DWORD , arg_06:DWORD
mov eax , 4687
mov edx , 7FFE0300h
call dword ptr [edx]
ret 24
_5_1_2600_sp3_windows_xp_NtUserWin32PoolAllocationStats ENDP
; ULONG __stdcall NtUserWindowFromPoint( ULONG arg_01 , ULONG arg_02 );
_5_1_2600_sp3_windows_xp_NtUserWindowFromPoint PROC STDCALL arg_01:DWORD , arg_02:DWORD
mov eax , 4688
mov edx , 7FFE0300h
call dword ptr [edx]
ret 8
_5_1_2600_sp3_windows_xp_NtUserWindowFromPoint ENDP
; ULONG __stdcall NtUserYieldTask( );
_5_1_2600_sp3_windows_xp_NtUserYieldTask PROC STDCALL
mov eax , 4689
mov edx , 7FFE0300h
call dword ptr [edx]
ret
_5_1_2600_sp3_windows_xp_NtUserYieldTask ENDP
; ULONG __stdcall NtUserRemoteConnect( ULONG arg_01 , ULONG arg_02 , ULONG arg_03 );
_5_1_2600_sp3_windows_xp_NtUserRemoteConnect PROC STDCALL arg_01:DWORD , arg_02:DWORD , arg_03:DWORD
mov eax , 4690
mov edx , 7FFE0300h
call dword ptr [edx]
ret 12
_5_1_2600_sp3_windows_xp_NtUserRemoteConnect ENDP
; ULONG __stdcall NtUserRemoteRedrawRectangle( ULONG arg_01 , ULONG arg_02 , ULONG arg_03 , ULONG arg_04 );
_5_1_2600_sp3_windows_xp_NtUserRemoteRedrawRectangle PROC STDCALL arg_01:DWORD , arg_02:DWORD , arg_03:DWORD , arg_04:DWORD
mov eax , 4691
mov edx , 7FFE0300h
call dword ptr [edx]
ret 16
_5_1_2600_sp3_windows_xp_NtUserRemoteRedrawRectangle ENDP
; ULONG __stdcall NtUserRemoteRedrawScreen( );
_5_1_2600_sp3_windows_xp_NtUserRemoteRedrawScreen PROC STDCALL
mov eax , 4692
mov edx , 7FFE0300h
call dword ptr [edx]
ret
_5_1_2600_sp3_windows_xp_NtUserRemoteRedrawScreen ENDP
; ULONG __stdcall NtUserRemoteStopScreenUpdates( );
_5_1_2600_sp3_windows_xp_NtUserRemoteStopScreenUpdates PROC STDCALL
mov eax , 4693
mov edx , 7FFE0300h
call dword ptr [edx]
ret
_5_1_2600_sp3_windows_xp_NtUserRemoteStopScreenUpdates ENDP
; ULONG __stdcall NtUserCtxDisplayIOCtl( ULONG arg_01 , ULONG arg_02 , ULONG arg_03 );
_5_1_2600_sp3_windows_xp_NtUserCtxDisplayIOCtl PROC STDCALL arg_01:DWORD , arg_02:DWORD , arg_03:DWORD
mov eax , 4694
mov edx , 7FFE0300h
call dword ptr [edx]
ret 12
_5_1_2600_sp3_windows_xp_NtUserCtxDisplayIOCtl ENDP
; ULONG __stdcall NtGdiEngAssociateSurface( ULONG arg_01 , ULONG arg_02 , ULONG arg_03 );
_5_1_2600_sp3_windows_xp_NtGdiEngAssociateSurface PROC STDCALL arg_01:DWORD , arg_02:DWORD , arg_03:DWORD
mov eax , 4695
mov edx , 7FFE0300h
call dword ptr [edx]
ret 12
_5_1_2600_sp3_windows_xp_NtGdiEngAssociateSurface ENDP
; ULONG __stdcall NtGdiEngCreateBitmap( ULONG arg_01 , ULONG arg_02 , ULONG arg_03 , ULONG arg_04 , ULONG arg_05 , ULONG arg_06 );
_5_1_2600_sp3_windows_xp_NtGdiEngCreateBitmap PROC STDCALL arg_01:DWORD , arg_02:DWORD , arg_03:DWORD , arg_04:DWORD , arg_05:DWORD , arg_06:DWORD
mov eax , 4696
mov edx , 7FFE0300h
call dword ptr [edx]
ret 24
_5_1_2600_sp3_windows_xp_NtGdiEngCreateBitmap ENDP
; ULONG __stdcall NtGdiEngCreateDeviceSurface( ULONG arg_01 , ULONG arg_02 , ULONG arg_03 , ULONG arg_04 );
_5_1_2600_sp3_windows_xp_NtGdiEngCreateDeviceSurface PROC STDCALL arg_01:DWORD , arg_02:DWORD , arg_03:DWORD , arg_04:DWORD
mov eax , 4697
mov edx , 7FFE0300h
call dword ptr [edx]
ret 16
_5_1_2600_sp3_windows_xp_NtGdiEngCreateDeviceSurface ENDP
; ULONG __stdcall NtGdiEngCreateDeviceBitmap( ULONG arg_01 , ULONG arg_02 , ULONG arg_03 , ULONG arg_04 );
_5_1_2600_sp3_windows_xp_NtGdiEngCreateDeviceBitmap PROC STDCALL arg_01:DWORD , arg_02:DWORD , arg_03:DWORD , arg_04:DWORD
mov eax , 4698
mov edx , 7FFE0300h
call dword ptr [edx]
ret 16
_5_1_2600_sp3_windows_xp_NtGdiEngCreateDeviceBitmap ENDP
; ULONG __stdcall NtGdiEngCreatePalette( ULONG arg_01 , ULONG arg_02 , ULONG arg_03 , ULONG arg_04 , ULONG arg_05 , ULONG arg_06 );
_5_1_2600_sp3_windows_xp_NtGdiEngCreatePalette PROC STDCALL arg_01:DWORD , arg_02:DWORD , arg_03:DWORD , arg_04:DWORD , arg_05:DWORD , arg_06:DWORD
mov eax , 4699
mov edx , 7FFE0300h
call dword ptr [edx]
ret 24
_5_1_2600_sp3_windows_xp_NtGdiEngCreatePalette ENDP
; ULONG __stdcall NtGdiEngComputeGlyphSet( ULONG arg_01 , ULONG arg_02 , ULONG arg_03 );
_5_1_2600_sp3_windows_xp_NtGdiEngComputeGlyphSet PROC STDCALL arg_01:DWORD , arg_02:DWORD , arg_03:DWORD
mov eax , 4700
mov edx , 7FFE0300h
call dword ptr [edx]
ret 12
_5_1_2600_sp3_windows_xp_NtGdiEngComputeGlyphSet ENDP
; ULONG __stdcall NtGdiEngCopyBits( ULONG arg_01 , ULONG arg_02 , ULONG arg_03 , ULONG arg_04 , ULONG arg_05 , ULONG arg_06 );
_5_1_2600_sp3_windows_xp_NtGdiEngCopyBits PROC STDCALL arg_01:DWORD , arg_02:DWORD , arg_03:DWORD , arg_04:DWORD , arg_05:DWORD , arg_06:DWORD
mov eax , 4701
mov edx , 7FFE0300h
call dword ptr [edx]
ret 24
_5_1_2600_sp3_windows_xp_NtGdiEngCopyBits ENDP
; ULONG __stdcall NtGdiEngDeletePalette( ULONG arg_01 );
_5_1_2600_sp3_windows_xp_NtGdiEngDeletePalette PROC STDCALL arg_01:DWORD
mov eax , 4702
mov edx , 7FFE0300h
call dword ptr [edx]
ret 4
_5_1_2600_sp3_windows_xp_NtGdiEngDeletePalette ENDP
; ULONG __stdcall NtGdiEngDeleteSurface( ULONG arg_01 );
_5_1_2600_sp3_windows_xp_NtGdiEngDeleteSurface PROC STDCALL arg_01:DWORD
mov eax , 4703
mov edx , 7FFE0300h
call dword ptr [edx]
ret 4
_5_1_2600_sp3_windows_xp_NtGdiEngDeleteSurface ENDP
; ULONG __stdcall NtGdiEngEraseSurface( ULONG arg_01 , ULONG arg_02 , ULONG arg_03 );
_5_1_2600_sp3_windows_xp_NtGdiEngEraseSurface PROC STDCALL arg_01:DWORD , arg_02:DWORD , arg_03:DWORD
mov eax , 4704
mov edx , 7FFE0300h
call dword ptr [edx]
ret 12
_5_1_2600_sp3_windows_xp_NtGdiEngEraseSurface ENDP
; ULONG __stdcall NtGdiEngUnlockSurface( ULONG arg_01 );
_5_1_2600_sp3_windows_xp_NtGdiEngUnlockSurface PROC STDCALL arg_01:DWORD
mov eax , 4705
mov edx , 7FFE0300h
call dword ptr [edx]
ret 4
_5_1_2600_sp3_windows_xp_NtGdiEngUnlockSurface ENDP
; ULONG __stdcall NtGdiEngLockSurface( ULONG arg_01 );
_5_1_2600_sp3_windows_xp_NtGdiEngLockSurface PROC STDCALL arg_01:DWORD
mov eax , 4706
mov edx , 7FFE0300h
call dword ptr [edx]
ret 4
_5_1_2600_sp3_windows_xp_NtGdiEngLockSurface ENDP
; ULONG __stdcall NtGdiEngBitBlt( ULONG arg_01 , ULONG arg_02 , ULONG arg_03 , ULONG arg_04 , ULONG arg_05 , ULONG arg_06 , ULONG arg_07 , ULONG arg_08 , ULONG arg_09 , ULONG arg_10 , ULONG arg_11 );
_5_1_2600_sp3_windows_xp_NtGdiEngBitBlt PROC STDCALL arg_01:DWORD , arg_02:DWORD , arg_03:DWORD , arg_04:DWORD , arg_05:DWORD , arg_06:DWORD , arg_07:DWORD , arg_08:DWORD , arg_09:DWORD , arg_10:DWORD , arg_11:DWORD
mov eax , 4707
mov edx , 7FFE0300h
call dword ptr [edx]
ret 44
_5_1_2600_sp3_windows_xp_NtGdiEngBitBlt ENDP
; ULONG __stdcall NtGdiEngStretchBlt( ULONG arg_01 , ULONG arg_02 , ULONG arg_03 , ULONG arg_04 , ULONG arg_05 , ULONG arg_06 , ULONG arg_07 , ULONG arg_08 , ULONG arg_09 , ULONG arg_10 , ULONG arg_11 );
_5_1_2600_sp3_windows_xp_NtGdiEngStretchBlt PROC STDCALL arg_01:DWORD , arg_02:DWORD , arg_03:DWORD , arg_04:DWORD , arg_05:DWORD , arg_06:DWORD , arg_07:DWORD , arg_08:DWORD , arg_09:DWORD , arg_10:DWORD , arg_11:DWORD
mov eax , 4708
mov edx , 7FFE0300h
call dword ptr [edx]
ret 44
_5_1_2600_sp3_windows_xp_NtGdiEngStretchBlt ENDP
; ULONG __stdcall NtGdiEngPlgBlt( ULONG arg_01 , ULONG arg_02 , ULONG arg_03 , ULONG arg_04 , ULONG arg_05 , ULONG arg_06 , ULONG arg_07 , ULONG arg_08 , ULONG arg_09 , ULONG arg_10 , ULONG arg_11 );
_5_1_2600_sp3_windows_xp_NtGdiEngPlgBlt PROC STDCALL arg_01:DWORD , arg_02:DWORD , arg_03:DWORD , arg_04:DWORD , arg_05:DWORD , arg_06:DWORD , arg_07:DWORD , arg_08:DWORD , arg_09:DWORD , arg_10:DWORD , arg_11:DWORD
mov eax , 4709
mov edx , 7FFE0300h
call dword ptr [edx]
ret 44
_5_1_2600_sp3_windows_xp_NtGdiEngPlgBlt ENDP
; ULONG __stdcall NtGdiEngMarkBandingSurface( ULONG arg_01 );
_5_1_2600_sp3_windows_xp_NtGdiEngMarkBandingSurface PROC STDCALL arg_01:DWORD
mov eax , 4710
mov edx , 7FFE0300h
call dword ptr [edx]
ret 4
_5_1_2600_sp3_windows_xp_NtGdiEngMarkBandingSurface ENDP
; ULONG __stdcall NtGdiEngStrokePath( ULONG arg_01 , ULONG arg_02 , ULONG arg_03 , ULONG arg_04 , ULONG arg_05 , ULONG arg_06 , ULONG arg_07 , ULONG arg_08 );
_5_1_2600_sp3_windows_xp_NtGdiEngStrokePath PROC STDCALL arg_01:DWORD , arg_02:DWORD , arg_03:DWORD , arg_04:DWORD , arg_05:DWORD , arg_06:DWORD , arg_07:DWORD , arg_08:DWORD
mov eax , 4711
mov edx , 7FFE0300h
call dword ptr [edx]
ret 32
_5_1_2600_sp3_windows_xp_NtGdiEngStrokePath ENDP
; ULONG __stdcall NtGdiEngFillPath( ULONG arg_01 , ULONG arg_02 , ULONG arg_03 , ULONG arg_04 , ULONG arg_05 , ULONG arg_06 , ULONG arg_07 );
_5_1_2600_sp3_windows_xp_NtGdiEngFillPath PROC STDCALL arg_01:DWORD , arg_02:DWORD , arg_03:DWORD , arg_04:DWORD , arg_05:DWORD , arg_06:DWORD , arg_07:DWORD
mov eax , 4712
mov edx , 7FFE0300h
call dword ptr [edx]
ret 28
_5_1_2600_sp3_windows_xp_NtGdiEngFillPath ENDP
; ULONG __stdcall NtGdiEngStrokeAndFillPath( ULONG arg_01 , ULONG arg_02 , ULONG arg_03 , ULONG arg_04 , ULONG arg_05 , ULONG arg_06 , ULONG arg_07 , ULONG arg_08 , ULONG arg_09 , ULONG arg_10 );
_5_1_2600_sp3_windows_xp_NtGdiEngStrokeAndFillPath PROC STDCALL arg_01:DWORD , arg_02:DWORD , arg_03:DWORD , arg_04:DWORD , arg_05:DWORD , arg_06:DWORD , arg_07:DWORD , arg_08:DWORD , arg_09:DWORD , arg_10:DWORD
mov eax , 4713
mov edx , 7FFE0300h
call dword ptr [edx]
ret 40
_5_1_2600_sp3_windows_xp_NtGdiEngStrokeAndFillPath ENDP
; ULONG __stdcall NtGdiEngPaint( ULONG arg_01 , ULONG arg_02 , ULONG arg_03 , ULONG arg_04 , ULONG arg_05 );
_5_1_2600_sp3_windows_xp_NtGdiEngPaint PROC STDCALL arg_01:DWORD , arg_02:DWORD , arg_03:DWORD , arg_04:DWORD , arg_05:DWORD
mov eax , 4714
mov edx , 7FFE0300h
call dword ptr [edx]
ret 20
_5_1_2600_sp3_windows_xp_NtGdiEngPaint ENDP
; ULONG __stdcall NtGdiEngLineTo( ULONG arg_01 , ULONG arg_02 , ULONG arg_03 , ULONG arg_04 , ULONG arg_05 , ULONG arg_06 , ULONG arg_07 , ULONG arg_08 , ULONG arg_09 );
_5_1_2600_sp3_windows_xp_NtGdiEngLineTo PROC STDCALL arg_01:DWORD , arg_02:DWORD , arg_03:DWORD , arg_04:DWORD , arg_05:DWORD , arg_06:DWORD , arg_07:DWORD , arg_08:DWORD , arg_09:DWORD
mov eax , 4715
mov edx , 7FFE0300h
call dword ptr [edx]
ret 36
_5_1_2600_sp3_windows_xp_NtGdiEngLineTo ENDP
; ULONG __stdcall NtGdiEngAlphaBlend( ULONG arg_01 , ULONG arg_02 , ULONG arg_03 , ULONG arg_04 , ULONG arg_05 , ULONG arg_06 , ULONG arg_07 );
_5_1_2600_sp3_windows_xp_NtGdiEngAlphaBlend PROC STDCALL arg_01:DWORD , arg_02:DWORD , arg_03:DWORD , arg_04:DWORD , arg_05:DWORD , arg_06:DWORD , arg_07:DWORD
mov eax , 4716
mov edx , 7FFE0300h
call dword ptr [edx]
ret 28
_5_1_2600_sp3_windows_xp_NtGdiEngAlphaBlend ENDP
; ULONG __stdcall NtGdiEngGradientFill( ULONG arg_01 , ULONG arg_02 , ULONG arg_03 , ULONG arg_04 , ULONG arg_05 , ULONG arg_06 , ULONG arg_07 , ULONG arg_08 , ULONG arg_09 , ULONG arg_10 );
_5_1_2600_sp3_windows_xp_NtGdiEngGradientFill PROC STDCALL arg_01:DWORD , arg_02:DWORD , arg_03:DWORD , arg_04:DWORD , arg_05:DWORD , arg_06:DWORD , arg_07:DWORD , arg_08:DWORD , arg_09:DWORD , arg_10:DWORD
mov eax , 4717
mov edx , 7FFE0300h
call dword ptr [edx]
ret 40
_5_1_2600_sp3_windows_xp_NtGdiEngGradientFill ENDP
; ULONG __stdcall NtGdiEngTransparentBlt( ULONG arg_01 , ULONG arg_02 , ULONG arg_03 , ULONG arg_04 , ULONG arg_05 , ULONG arg_06 , ULONG arg_07 , ULONG arg_08 );
_5_1_2600_sp3_windows_xp_NtGdiEngTransparentBlt PROC STDCALL arg_01:DWORD , arg_02:DWORD , arg_03:DWORD , arg_04:DWORD , arg_05:DWORD , arg_06:DWORD , arg_07:DWORD , arg_08:DWORD
mov eax , 4718
mov edx , 7FFE0300h
call dword ptr [edx]
ret 32
_5_1_2600_sp3_windows_xp_NtGdiEngTransparentBlt ENDP
; ULONG __stdcall NtGdiEngTextOut( ULONG arg_01 , ULONG arg_02 , ULONG arg_03 , ULONG arg_04 , ULONG arg_05 , ULONG arg_06 , ULONG arg_07 , ULONG arg_08 , ULONG arg_09 , ULONG arg_10 );
_5_1_2600_sp3_windows_xp_NtGdiEngTextOut PROC STDCALL arg_01:DWORD , arg_02:DWORD , arg_03:DWORD , arg_04:DWORD , arg_05:DWORD , arg_06:DWORD , arg_07:DWORD , arg_08:DWORD , arg_09:DWORD , arg_10:DWORD
mov eax , 4719
mov edx , 7FFE0300h
call dword ptr [edx]
ret 40
_5_1_2600_sp3_windows_xp_NtGdiEngTextOut ENDP
; ULONG __stdcall NtGdiEngStretchBltROP( ULONG arg_01 , ULONG arg_02 , ULONG arg_03 , ULONG arg_04 , ULONG arg_05 , ULONG arg_06 , ULONG arg_07 , ULONG arg_08 , ULONG arg_09 , ULONG arg_10 , ULONG arg_11 , ULONG arg_12 , ULONG arg_13 );
_5_1_2600_sp3_windows_xp_NtGdiEngStretchBltROP PROC STDCALL arg_01:DWORD , arg_02:DWORD , arg_03:DWORD , arg_04:DWORD , arg_05:DWORD , arg_06:DWORD , arg_07:DWORD , arg_08:DWORD , arg_09:DWORD , arg_10:DWORD , arg_11:DWORD , arg_12:DWORD , arg_13:DWORD
mov eax , 4720
mov edx , 7FFE0300h
call dword ptr [edx]
ret 52
_5_1_2600_sp3_windows_xp_NtGdiEngStretchBltROP ENDP
; ULONG __stdcall NtGdiXLATEOBJ_cGetPalette( ULONG arg_01 , ULONG arg_02 , ULONG arg_03 , ULONG arg_04 );
_5_1_2600_sp3_windows_xp_NtGdiXLATEOBJ_cGetPalette PROC STDCALL arg_01:DWORD , arg_02:DWORD , arg_03:DWORD , arg_04:DWORD
mov eax , 4721
mov edx , 7FFE0300h
call dword ptr [edx]
ret 16
_5_1_2600_sp3_windows_xp_NtGdiXLATEOBJ_cGetPalette ENDP
; ULONG __stdcall NtGdiXLATEOBJ_iXlate( ULONG arg_01 , ULONG arg_02 );
_5_1_2600_sp3_windows_xp_NtGdiXLATEOBJ_iXlate PROC STDCALL arg_01:DWORD , arg_02:DWORD
mov eax , 4722
mov edx , 7FFE0300h
call dword ptr [edx]
ret 8
_5_1_2600_sp3_windows_xp_NtGdiXLATEOBJ_iXlate ENDP
; ULONG __stdcall NtGdiXLATEOBJ_hGetColorTransform( ULONG arg_01 );
_5_1_2600_sp3_windows_xp_NtGdiXLATEOBJ_hGetColorTransform PROC STDCALL arg_01:DWORD
mov eax , 4723
mov edx , 7FFE0300h
call dword ptr [edx]
ret 4
_5_1_2600_sp3_windows_xp_NtGdiXLATEOBJ_hGetColorTransform ENDP
; ULONG __stdcall NtGdiCLIPOBJ_bEnum( ULONG arg_01 , ULONG arg_02 , ULONG arg_03 );
_5_1_2600_sp3_windows_xp_NtGdiCLIPOBJ_bEnum PROC STDCALL arg_01:DWORD , arg_02:DWORD , arg_03:DWORD
mov eax , 4724
mov edx , 7FFE0300h
call dword ptr [edx]
ret 12
_5_1_2600_sp3_windows_xp_NtGdiCLIPOBJ_bEnum ENDP
; ULONG __stdcall NtGdiCLIPOBJ_cEnumStart( ULONG arg_01 , ULONG arg_02 , ULONG arg_03 , ULONG arg_04 , ULONG arg_05 );
_5_1_2600_sp3_windows_xp_NtGdiCLIPOBJ_cEnumStart PROC STDCALL arg_01:DWORD , arg_02:DWORD , arg_03:DWORD , arg_04:DWORD , arg_05:DWORD
mov eax , 4725
mov edx , 7FFE0300h
call dword ptr [edx]
ret 20
_5_1_2600_sp3_windows_xp_NtGdiCLIPOBJ_cEnumStart ENDP
; ULONG __stdcall NtGdiCLIPOBJ_ppoGetPath( ULONG arg_01 );
_5_1_2600_sp3_windows_xp_NtGdiCLIPOBJ_ppoGetPath PROC STDCALL arg_01:DWORD
mov eax , 4726
mov edx , 7FFE0300h
call dword ptr [edx]
ret 4
_5_1_2600_sp3_windows_xp_NtGdiCLIPOBJ_ppoGetPath ENDP
; ULONG __stdcall NtGdiEngDeletePath( ULONG arg_01 );
_5_1_2600_sp3_windows_xp_NtGdiEngDeletePath PROC STDCALL arg_01:DWORD
mov eax , 4727
mov edx , 7FFE0300h
call dword ptr [edx]
ret 4
_5_1_2600_sp3_windows_xp_NtGdiEngDeletePath ENDP
; ULONG __stdcall NtGdiEngCreateClip( );
_5_1_2600_sp3_windows_xp_NtGdiEngCreateClip PROC STDCALL
mov eax , 4728
mov edx , 7FFE0300h
call dword ptr [edx]
ret
_5_1_2600_sp3_windows_xp_NtGdiEngCreateClip ENDP
; ULONG __stdcall NtGdiEngDeleteClip( ULONG arg_01 );
_5_1_2600_sp3_windows_xp_NtGdiEngDeleteClip PROC STDCALL arg_01:DWORD
mov eax , 4729
mov edx , 7FFE0300h
call dword ptr [edx]
ret 4
_5_1_2600_sp3_windows_xp_NtGdiEngDeleteClip ENDP
; ULONG __stdcall NtGdiBRUSHOBJ_ulGetBrushColor( ULONG arg_01 );
_5_1_2600_sp3_windows_xp_NtGdiBRUSHOBJ_ulGetBrushColor PROC STDCALL arg_01:DWORD
mov eax , 4730
mov edx , 7FFE0300h
call dword ptr [edx]
ret 4
_5_1_2600_sp3_windows_xp_NtGdiBRUSHOBJ_ulGetBrushColor ENDP
; ULONG __stdcall NtGdiBRUSHOBJ_pvAllocRbrush( ULONG arg_01 , ULONG arg_02 );
_5_1_2600_sp3_windows_xp_NtGdiBRUSHOBJ_pvAllocRbrush PROC STDCALL arg_01:DWORD , arg_02:DWORD
mov eax , 4731
mov edx , 7FFE0300h
call dword ptr [edx]
ret 8
_5_1_2600_sp3_windows_xp_NtGdiBRUSHOBJ_pvAllocRbrush ENDP
; ULONG __stdcall NtGdiBRUSHOBJ_pvGetRbrush( ULONG arg_01 );
_5_1_2600_sp3_windows_xp_NtGdiBRUSHOBJ_pvGetRbrush PROC STDCALL arg_01:DWORD
mov eax , 4732
mov edx , 7FFE0300h
call dword ptr [edx]
ret 4
_5_1_2600_sp3_windows_xp_NtGdiBRUSHOBJ_pvGetRbrush ENDP
; ULONG __stdcall NtGdiBRUSHOBJ_hGetColorTransform( ULONG arg_01 );
_5_1_2600_sp3_windows_xp_NtGdiBRUSHOBJ_hGetColorTransform PROC STDCALL arg_01:DWORD
mov eax , 4733
mov edx , 7FFE0300h
call dword ptr [edx]
ret 4
_5_1_2600_sp3_windows_xp_NtGdiBRUSHOBJ_hGetColorTransform ENDP
; ULONG __stdcall NtGdiXFORMOBJ_bApplyXform( ULONG arg_01 , ULONG arg_02 , ULONG arg_03 , ULONG arg_04 , ULONG arg_05 );
_5_1_2600_sp3_windows_xp_NtGdiXFORMOBJ_bApplyXform PROC STDCALL arg_01:DWORD , arg_02:DWORD , arg_03:DWORD , arg_04:DWORD , arg_05:DWORD
mov eax , 4734
mov edx , 7FFE0300h
call dword ptr [edx]
ret 20
_5_1_2600_sp3_windows_xp_NtGdiXFORMOBJ_bApplyXform ENDP
; ULONG __stdcall NtGdiXFORMOBJ_iGetXform( ULONG arg_01 , ULONG arg_02 );
_5_1_2600_sp3_windows_xp_NtGdiXFORMOBJ_iGetXform PROC STDCALL arg_01:DWORD , arg_02:DWORD
mov eax , 4735
mov edx , 7FFE0300h
call dword ptr [edx]
ret 8
_5_1_2600_sp3_windows_xp_NtGdiXFORMOBJ_iGetXform ENDP
; ULONG __stdcall NtGdiFONTOBJ_vGetInfo( ULONG arg_01 , ULONG arg_02 , ULONG arg_03 );
_5_1_2600_sp3_windows_xp_NtGdiFONTOBJ_vGetInfo PROC STDCALL arg_01:DWORD , arg_02:DWORD , arg_03:DWORD
mov eax , 4736
mov edx , 7FFE0300h
call dword ptr [edx]
ret 12
_5_1_2600_sp3_windows_xp_NtGdiFONTOBJ_vGetInfo ENDP
; ULONG __stdcall NtGdiFONTOBJ_pxoGetXform( ULONG arg_01 );
_5_1_2600_sp3_windows_xp_NtGdiFONTOBJ_pxoGetXform PROC STDCALL arg_01:DWORD
mov eax , 4737
mov edx , 7FFE0300h
call dword ptr [edx]
ret 4
_5_1_2600_sp3_windows_xp_NtGdiFONTOBJ_pxoGetXform ENDP
; ULONG __stdcall NtGdiFONTOBJ_cGetGlyphs( ULONG arg_01 , ULONG arg_02 , ULONG arg_03 , ULONG arg_04 , ULONG arg_05 );
_5_1_2600_sp3_windows_xp_NtGdiFONTOBJ_cGetGlyphs PROC STDCALL arg_01:DWORD , arg_02:DWORD , arg_03:DWORD , arg_04:DWORD , arg_05:DWORD
mov eax , 4738
mov edx , 7FFE0300h
call dword ptr [edx]
ret 20
_5_1_2600_sp3_windows_xp_NtGdiFONTOBJ_cGetGlyphs ENDP
; ULONG __stdcall NtGdiFONTOBJ_pifi( ULONG arg_01 );
_5_1_2600_sp3_windows_xp_NtGdiFONTOBJ_pifi PROC STDCALL arg_01:DWORD
mov eax , 4739
mov edx , 7FFE0300h
call dword ptr [edx]
ret 4
_5_1_2600_sp3_windows_xp_NtGdiFONTOBJ_pifi ENDP
; ULONG __stdcall NtGdiFONTOBJ_pfdg( ULONG arg_01 );
_5_1_2600_sp3_windows_xp_NtGdiFONTOBJ_pfdg PROC STDCALL arg_01:DWORD
mov eax , 4740
mov edx , 7FFE0300h
call dword ptr [edx]
ret 4
_5_1_2600_sp3_windows_xp_NtGdiFONTOBJ_pfdg ENDP
; ULONG __stdcall NtGdiFONTOBJ_pQueryGlyphAttrs( ULONG arg_01 , ULONG arg_02 );
_5_1_2600_sp3_windows_xp_NtGdiFONTOBJ_pQueryGlyphAttrs PROC STDCALL arg_01:DWORD , arg_02:DWORD
mov eax , 4741
mov edx , 7FFE0300h
call dword ptr [edx]
ret 8
_5_1_2600_sp3_windows_xp_NtGdiFONTOBJ_pQueryGlyphAttrs ENDP
; ULONG __stdcall NtGdiFONTOBJ_pvTrueTypeFontFile( ULONG arg_01 , ULONG arg_02 );
_5_1_2600_sp3_windows_xp_NtGdiFONTOBJ_pvTrueTypeFontFile PROC STDCALL arg_01:DWORD , arg_02:DWORD
mov eax , 4742
mov edx , 7FFE0300h
call dword ptr [edx]
ret 8
_5_1_2600_sp3_windows_xp_NtGdiFONTOBJ_pvTrueTypeFontFile ENDP
; ULONG __stdcall NtGdiFONTOBJ_cGetAllGlyphHandles( ULONG arg_01 , ULONG arg_02 );
_5_1_2600_sp3_windows_xp_NtGdiFONTOBJ_cGetAllGlyphHandles PROC STDCALL arg_01:DWORD , arg_02:DWORD
mov eax , 4743
mov edx , 7FFE0300h
call dword ptr [edx]
ret 8
_5_1_2600_sp3_windows_xp_NtGdiFONTOBJ_cGetAllGlyphHandles ENDP
; ULONG __stdcall NtGdiSTROBJ_bEnum( ULONG arg_01 , ULONG arg_02 , ULONG arg_03 );
_5_1_2600_sp3_windows_xp_NtGdiSTROBJ_bEnum PROC STDCALL arg_01:DWORD , arg_02:DWORD , arg_03:DWORD
mov eax , 4744
mov edx , 7FFE0300h
call dword ptr [edx]
ret 12
_5_1_2600_sp3_windows_xp_NtGdiSTROBJ_bEnum ENDP
; ULONG __stdcall NtGdiSTROBJ_bEnumPositionsOnly( ULONG arg_01 , ULONG arg_02 , ULONG arg_03 );
_5_1_2600_sp3_windows_xp_NtGdiSTROBJ_bEnumPositionsOnly PROC STDCALL arg_01:DWORD , arg_02:DWORD , arg_03:DWORD
mov eax , 4745
mov edx , 7FFE0300h
call dword ptr [edx]
ret 12
_5_1_2600_sp3_windows_xp_NtGdiSTROBJ_bEnumPositionsOnly ENDP
; ULONG __stdcall NtGdiSTROBJ_bGetAdvanceWidths( ULONG arg_01 , ULONG arg_02 , ULONG arg_03 , ULONG arg_04 );
_5_1_2600_sp3_windows_xp_NtGdiSTROBJ_bGetAdvanceWidths PROC STDCALL arg_01:DWORD , arg_02:DWORD , arg_03:DWORD , arg_04:DWORD
mov eax , 4746
mov edx , 7FFE0300h
call dword ptr [edx]
ret 16
_5_1_2600_sp3_windows_xp_NtGdiSTROBJ_bGetAdvanceWidths ENDP
; ULONG __stdcall NtGdiSTROBJ_vEnumStart( ULONG arg_01 );
_5_1_2600_sp3_windows_xp_NtGdiSTROBJ_vEnumStart PROC STDCALL arg_01:DWORD
mov eax , 4747
mov edx , 7FFE0300h
call dword ptr [edx]
ret 4
_5_1_2600_sp3_windows_xp_NtGdiSTROBJ_vEnumStart ENDP
; ULONG __stdcall NtGdiSTROBJ_dwGetCodePage( ULONG arg_01 );
_5_1_2600_sp3_windows_xp_NtGdiSTROBJ_dwGetCodePage PROC STDCALL arg_01:DWORD
mov eax , 4748
mov edx , 7FFE0300h
call dword ptr [edx]
ret 4
_5_1_2600_sp3_windows_xp_NtGdiSTROBJ_dwGetCodePage ENDP
; ULONG __stdcall NtGdiPATHOBJ_vGetBounds( ULONG arg_01 , ULONG arg_02 );
_5_1_2600_sp3_windows_xp_NtGdiPATHOBJ_vGetBounds PROC STDCALL arg_01:DWORD , arg_02:DWORD
mov eax , 4749
mov edx , 7FFE0300h
call dword ptr [edx]
ret 8
_5_1_2600_sp3_windows_xp_NtGdiPATHOBJ_vGetBounds ENDP
; ULONG __stdcall NtGdiPATHOBJ_bEnum( ULONG arg_01 , ULONG arg_02 );
_5_1_2600_sp3_windows_xp_NtGdiPATHOBJ_bEnum PROC STDCALL arg_01:DWORD , arg_02:DWORD
mov eax , 4750
mov edx , 7FFE0300h
call dword ptr [edx]
ret 8
_5_1_2600_sp3_windows_xp_NtGdiPATHOBJ_bEnum ENDP
; ULONG __stdcall NtGdiPATHOBJ_vEnumStart( ULONG arg_01 );
_5_1_2600_sp3_windows_xp_NtGdiPATHOBJ_vEnumStart PROC STDCALL arg_01:DWORD
mov eax , 4751
mov edx , 7FFE0300h
call dword ptr [edx]
ret 4
_5_1_2600_sp3_windows_xp_NtGdiPATHOBJ_vEnumStart ENDP
; ULONG __stdcall NtGdiPATHOBJ_vEnumStartClipLines( ULONG arg_01 , ULONG arg_02 , ULONG arg_03 , ULONG arg_04 );
_5_1_2600_sp3_windows_xp_NtGdiPATHOBJ_vEnumStartClipLines PROC STDCALL arg_01:DWORD , arg_02:DWORD , arg_03:DWORD , arg_04:DWORD
mov eax , 4752
mov edx , 7FFE0300h
call dword ptr [edx]
ret 16
_5_1_2600_sp3_windows_xp_NtGdiPATHOBJ_vEnumStartClipLines ENDP
; ULONG __stdcall NtGdiPATHOBJ_bEnumClipLines( ULONG arg_01 , ULONG arg_02 , ULONG arg_03 );
_5_1_2600_sp3_windows_xp_NtGdiPATHOBJ_bEnumClipLines PROC STDCALL arg_01:DWORD , arg_02:DWORD , arg_03:DWORD
mov eax , 4753
mov edx , 7FFE0300h
call dword ptr [edx]
ret 12
_5_1_2600_sp3_windows_xp_NtGdiPATHOBJ_bEnumClipLines ENDP
; ULONG __stdcall NtGdiGetDhpdev( ULONG arg_01 );
_5_1_2600_sp3_windows_xp_NtGdiGetDhpdev PROC STDCALL arg_01:DWORD
mov eax , 4754
mov edx , 7FFE0300h
call dword ptr [edx]
ret 4
_5_1_2600_sp3_windows_xp_NtGdiGetDhpdev ENDP
; ULONG __stdcall NtGdiEngCheckAbort( ULONG arg_01 );
_5_1_2600_sp3_windows_xp_NtGdiEngCheckAbort PROC STDCALL arg_01:DWORD
mov eax , 4755
mov edx , 7FFE0300h
call dword ptr [edx]
ret 4
_5_1_2600_sp3_windows_xp_NtGdiEngCheckAbort ENDP
; ULONG __stdcall NtGdiHT_Get8BPPFormatPalette( ULONG arg_01 , ULONG arg_02 , ULONG arg_03 , ULONG arg_04 );
_5_1_2600_sp3_windows_xp_NtGdiHT_Get8BPPFormatPalette PROC STDCALL arg_01:DWORD , arg_02:DWORD , arg_03:DWORD , arg_04:DWORD
mov eax , 4756
mov edx , 7FFE0300h
call dword ptr [edx]
ret 16
_5_1_2600_sp3_windows_xp_NtGdiHT_Get8BPPFormatPalette ENDP
; ULONG __stdcall NtGdiHT_Get8BPPMaskPalette( ULONG arg_01 , ULONG arg_02 , ULONG arg_03 , ULONG arg_04 , ULONG arg_05 , ULONG arg_06 );
_5_1_2600_sp3_windows_xp_NtGdiHT_Get8BPPMaskPalette PROC STDCALL arg_01:DWORD , arg_02:DWORD , arg_03:DWORD , arg_04:DWORD , arg_05:DWORD , arg_06:DWORD
mov eax , 4757
mov edx , 7FFE0300h
call dword ptr [edx]
ret 24
_5_1_2600_sp3_windows_xp_NtGdiHT_Get8BPPMaskPalette ENDP
; ULONG __stdcall NtGdiUpdateTransform( ULONG arg_01 );
_5_1_2600_sp3_windows_xp_NtGdiUpdateTransform PROC STDCALL arg_01:DWORD
mov eax , 4758
mov edx , 7FFE0300h
call dword ptr [edx]
ret 4
_5_1_2600_sp3_windows_xp_NtGdiUpdateTransform ENDP
; ULONG __stdcall NtGdiSetPUMPDOBJ( ULONG arg_01 , ULONG arg_02 , ULONG arg_03 , ULONG arg_04 );
_5_1_2600_sp3_windows_xp_NtGdiSetPUMPDOBJ PROC STDCALL arg_01:DWORD , arg_02:DWORD , arg_03:DWORD , arg_04:DWORD
mov eax , 4759
mov edx , 7FFE0300h
call dword ptr [edx]
ret 16
_5_1_2600_sp3_windows_xp_NtGdiSetPUMPDOBJ ENDP
; ULONG __stdcall NtGdiBRUSHOBJ_DeleteRbrush( ULONG arg_01 , ULONG arg_02 );
_5_1_2600_sp3_windows_xp_NtGdiBRUSHOBJ_DeleteRbrush PROC STDCALL arg_01:DWORD , arg_02:DWORD
mov eax , 4760
mov edx , 7FFE0300h
call dword ptr [edx]
ret 8
_5_1_2600_sp3_windows_xp_NtGdiBRUSHOBJ_DeleteRbrush ENDP
; ULONG __stdcall NtGdiUnmapMemFont( ULONG arg_01 );
_5_1_2600_sp3_windows_xp_NtGdiUnmapMemFont PROC STDCALL arg_01:DWORD
mov eax , 4761
mov edx , 7FFE0300h
call dword ptr [edx]
ret 4
_5_1_2600_sp3_windows_xp_NtGdiUnmapMemFont ENDP
; ULONG __stdcall NtGdiDrawStream( ULONG arg_01 , ULONG arg_02 , ULONG arg_03 );
_5_1_2600_sp3_windows_xp_NtGdiDrawStream PROC STDCALL arg_01:DWORD , arg_02:DWORD , arg_03:DWORD
mov eax , 4762
mov edx , 7FFE0300h
call dword ptr [edx]
ret 12
_5_1_2600_sp3_windows_xp_NtGdiDrawStream ENDP
|
; A230312: Squares which cannot be written as the sum of a smaller nonzero square and twice a triangular number.
; 1,4,9,25,49,64,100,144,169,324,400,729,784,1089,1369,1764,2025,2209,3025,3364,3600,3844,3969,4225,4489,5329,5625,6084,6400,7225,7744,8100,8464,10404,10609,11025,12544,13225,13924,14400,15625,16384,16900
add $0,1
seq $0,59793 ; Stationary value of quotient in the continued fraction expansion of sqrt(prime) when the quotient-cycle-length = 1.
pow $0,2
div $0,16
|
.size 8000
.text@48
jp lstatint
.text@100
jp lbegin
.data@143
c0
.text@150
lbegin:
ld a, 00
ldff(ff), a
ld b, 91
call lwaitly_b
ld a, b1
ldff(40), a
ld a, 10
ldff(4b), a
ld c, 41
ld b, 03
lbegin_waitm3:
ldff a, (c)
and a, b
cmp a, b
jrnz lbegin_waitm3
ld a, 20
ldff(c), a
xor a, a
ldff(0f), a
ld a, 02
ldff(ff), a
ei
ld a, 03
ldff(43), a
.text@1000
lstatint:
nop
nop
nop
nop
nop
nop
nop
nop
nop
nop
nop
nop
nop
ld a, 91
ldff(40), a
.text@1036
ldff a, (c)
and a, b
jp lprint_a
.text@7000
lprint_a:
push af
ld b, 91
call lwaitly_b
xor a, a
ldff(40), a
pop af
ld(9800), a
ld bc, 7a00
ld hl, 8000
ld d, a0
lprint_copytiles:
ld a, (bc)
inc bc
ld(hl++), a
dec d
jrnz lprint_copytiles
ld a, c0
ldff(47), a
ld a, 80
ldff(68), a
ld a, ff
ldff(69), a
ldff(69), a
ldff(69), a
ldff(69), a
ldff(69), a
ldff(69), a
xor a, a
ldff(69), a
ldff(69), a
ldff(43), a
ld a, 91
ldff(40), a
lprint_limbo:
jr lprint_limbo
.text@7400
lwaitly_b:
ld c, 44
lwaitly_b_loop:
ldff a, (c)
cmp a, b
jrnz lwaitly_b_loop
ret
.data@7a00
00 00 7f 7f 41 41 41 41
41 41 41 41 41 41 7f 7f
00 00 08 08 08 08 08 08
08 08 08 08 08 08 08 08
00 00 7f 7f 01 01 01 01
7f 7f 40 40 40 40 7f 7f
00 00 7f 7f 01 01 01 01
3f 3f 01 01 01 01 7f 7f
00 00 41 41 41 41 41 41
7f 7f 01 01 01 01 01 01
00 00 7f 7f 40 40 40 40
7e 7e 01 01 01 01 7e 7e
00 00 7f 7f 40 40 40 40
7f 7f 41 41 41 41 7f 7f
00 00 7f 7f 01 01 02 02
04 04 08 08 10 10 10 10
00 00 3e 3e 41 41 41 41
3e 3e 41 41 41 41 3e 3e
00 00 7f 7f 41 41 41 41
7f 7f 01 01 01 01 7f 7f
|
; Copyright 2015-2020 Matt "MateoConLechuga" Waltz
;
; 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.
util_find_var:
call ti.Mov9ToOP1
jp ti.ChkFindSym
util_delete_prgm_from_usermem:
ld hl,(ti.asm_prgm_size) ; get program size
compare_hl_zero
ret z
ex de,hl
or a,a
sbc hl,hl
ld (ti.asm_prgm_size),hl ; delete whatever was there
ld hl,ti.userMem
jp ti.DelMem
util_move_prgm_to_usermem:
ld a,$9 ; 'add hl,bc'
ld (.smc),a
call ti.ChkFindSym
jr c,.error_not_found ; hope this doesn't happen
call ti.ChkInRam
ex de,hl
jr z,.in_ram
xor a,a
ld (.smc),a
ld de,9
add hl,de
ld e,(hl)
add hl,de
inc hl
.in_ram: ; hl -> size bytes
call ti.LoadDEInd_s
inc hl
inc hl ; bypass tExtTok, tAsm84CECmp
push hl
push de
ex de,hl
call util_check_free_ram ; check and see if we have enough memory
pop hl
jr c,.error_ram
ld (ti.asm_prgm_size),hl ; store the size of the program
ld de,ti.userMem
call ti.InsertMem ; insert memory into usermem
pop hl ; hl -> start of program
ld bc,(ti.asm_prgm_size) ; load size of current program
.smc := $
add hl,bc ; if not in ram smc it so it doesn't execute
ldir ; copy the program to userMem
xor a,a
ret ; return
.error_ram:
pop hl ; pop start of program
.error_not_found:
xor a,a
inc a
ret
util_show_time:
bit setting_clock,(iy + settings_flag)
ret z
set ti.clockOn,(iy + ti.clockFlags)
set ti.useTokensInString,(iy + ti.clockFlags)
ld de,ti.OP6
push de
call ti.FormTime
pop hl
save_cursor
set_cursor clock_x, clock_y
call util_string_inverted
restore_cursor
res ti.useTokensInString,(iy + ti.clockFlags)
ret
util_check_free_ram:
push hl
ld de,128
add hl,de ; for safety
call ti.EnoughMem
pop hl
ret nc
call gui_ram_error
;jr util_delay_one_second
util_delay_one_second:
ld bc,100
.delay:
push bc
call ti.Delay10ms
pop bc
dec bc
ld a,c
or a,b
jr nz,.delay
ret
util_set_primary:
push af
ld a,(color_primary)
ld (util_restore_primary.color),a
pop af
ld (color_primary),a
ret
util_restore_primary:
ld a,0
.color := $-1
ld (color_primary),a
ret
util_show_free_mem:
call gui_clear_status_bar
set_inverted_text
print string_ram_free, 4, 228
call ti.MemChk
call lcd_num_6
print string_rom_free, 196, 228
call ti.ArcChk
ld hl,(ti.tempFreeArc)
call lcd_num_7
set_normal_text
ret
util_string_inverted:
set_inverted_text
call lcd_string
set_normal_text
ret
; bc = x
; a = y
util_string_xy:
call util_set_cursor
jp lcd_string
; bc = x
; a = y
util_set_cursor:
ld (lcd_x),bc
ld (lcd_y),a
ret
util_save_cursor:
pop ix
ld bc,(lcd_x)
push bc
ld a,(lcd_y)
push af
jp (ix)
util_restore_cursor:
pop hl
pop af
ld (lcd_y),a
pop bc
ld (lcd_x),bc
jp (hl)
util_set_inverted_text_color:
ld a,(color_primary)
ld (lcd_text_bg),a
ld a,(color_quaternary)
ld (lcd_text_fg),a
ret
util_set_normal_text_color:
ld a,(color_senary)
ld (lcd_text_bg),a
ld a,(color_secondary)
ld (lcd_text_fg),a
ret
util_get_battery:
call ti.GetBatteryStatus
ld (battery_status),a
ret
util_get_key:
di
.run:
call util_handle_apd
ld iy,ti.flags
call ti.DisableAPD ; disable os apd and use our own
call util_show_time
call lcd_blit
call ti.GetCSC ; avoid using getcsc for usb
or a,a
jr z,.run
ret
util_get_key_nonblocking:
di
call util_handle_apd
ld iy,ti.flags
call ti.DisableAPD ; disable os apd and use our own
call util_show_time
call lcd_blit
jq util_get_key_not_csc
; jq ti.GetCSC ; avoid using getcsc for usb
;then don't use getcsc for crying out loud!
util_get_key_not_csc: ; returns same as GetCSC. :P
ld hl,$f50200 ; DI_Mode = $f5xx00
ld (hl),h
xor a,a
.loop:
cp a,(hl)
jr nz,.loop
ld l,$12 ;hl = $f50212
ld b,7
ld c,49
.scanloop:
ld a,(hl)
or a,a
jr nz,.keyispressed
inc hl
inc hl
ld a,c
sub a,8
ld c,a
djnz .scanloop
xor a,a
ret
.keyispressed:
ld b,8
.keybitloop:
rrca
jr c,.this
inc c
djnz .keybitloop
.this:
ld a,c
ret
util_setup_apd:
ld hl,$b0ff
ld (apd_timer),hl
ret
util_handle_apd:
ld hl,0
apd_timer := $-3
dec hl
ld (apd_timer),hl
add hl,de
or a,a
sbc hl,de
ret nz
jp exit_full
util_check_if_app_page_directory:
ld hl,(item_ptr)
ld hl,(hl)
compare_hl_zero
ret
util_check_if_vat_page_directory:
ld hl,(item_ptr)
ld de,6
add hl,de
ld a,(hl)
inc a
ret
util_to_one_hot:
ld b,a
xor a,a
scf
.loop:
rla
djnz .loop
ret
util_move_prgm_name_to_op1:
ld hl,(prgm_ptr)
util_prgm_ptr_to_op1:
ld hl,(hl)
push hl ; vat pointer
ld de,6
add hl,de
ld a,(hl) ; get the type byte
pop hl
ld de,ti.OP1 ; store to op1
ld (de),a
inc de
ld b,(hl)
dec hl
.copy:
ld a,(hl)
ld (de),a
inc de
dec hl
djnz .copy
xor a,a
ld (de),a ; terminate the string
ret
util_setup_shortcuts:
bit setting_enable_shortcuts,(iy + settings_flag)
ret z
ld hl,hook_get_key
jp ti.SetGetCSCHook
util_backup_prgm_name:
ld hl,ti.OP1
.entry:
ld de,backup_prgm_name
jp ti.Mov9b
util_set_more_items_flag:
set scroll_down_available,(iy + item_flag)
ret
util_delete_var:
call ti.Mov9ToOP1
.op1:
call ti.PushOP1
call ti.ChkFindSym
call nc,ti.DelVarArc
jp ti.PopOP1
util_get_archived_name:
ld de,util_temp_program_object + 1
ld b,8
.compare:
ld a,(de)
cp a,(hl)
jr nz,.no_match
inc hl
inc de
djnz .compare
ld hl,backup_prgm_name
ret
.no_match:
ld hl,ti.basic_prog
ret
util_op1_to_temp:
ld de,string_temp
push de
call ti.ZeroOP
ld hl,ti.OP1 + 1
pop de
.handle:
push de
call ti.Mov8b
pop hl
ret
util_temp_to_op1:
ld hl,string_temp
ld de,ti.OP1
jr util_op1_to_temp.handle
util_num_convert:
ld de,string_other_temp
push de
call .entry
xor a,a
ld (de),a
pop de
ret
.entry:
ld bc,-1000000
call .aqu
ld bc,-100000
call .aqu
ld bc,-10000
call .aqu
ld bc,-1000
call .aqu
ld bc,-100
call .aqu
ld c,-10
call .aqu
ld c,b
.aqu:
ld a,'0' - 1
.under:
inc a
add hl,bc
jr c,.under
sbc hl,bc
ld (de),a
inc de
ret
util_get_var_name_input:
.prgm:
ld a,0
jq .start
.appvar:
ld a,1
.start:
ld (.mode),a
ld (.buffer_ptr),hl
ld hl,(lcd_x)
ld (.starting_x),hl
ld hl,lut_character_standard
ld (.current_character_lut),hl
ld a,NORMAL_CHARS
ld (.current_input_mode),a
jq .redraw
.get_name:
call util_get_key
cp a,ti.skDel
jq z,.backspace
cp a,ti.skLeft
jq z,.backspace
cp a,ti.skAlpha
jq z,.change_input_mode
cp a,ti.skClear
ret z
cp a,ti.skMode
ret z
cp a,ti.sk2nd
jq z,.confirm
cp a,ti.skEnter
jq z,.confirm
sub a,ti.skAdd
jq c,.get_name
cp a,ti.skMath - ti.skAdd + 1
jq nc,.get_name
ld hl,lut_character_standard
.current_character_lut := $-3
call ti.AddHLAndA ; find the offset
ld a,0
.cursor_position := $-1
cp a,8 ; maximum name length
jq z,.get_name
ld a,(hl)
or a,a
jq z,.get_name
ld e,a
ld a,(.current_input_mode)
cp a,NUMBER_CHARS ; don't allow number on first
jr nz,.okay
ld a,(.mode)
or a,a
jr nz,.okay
ld a,(.cursor_position)
or a,a
jq z,.get_name
.okay:
call .get_offset
inc a
ld (.cursor_position),a
ld a,e
ld (hl),a
call lcd_char
.draw_mode:
ld a,255
.current_input_mode := $-1
call lcd_char
.backup:
ld hl,(lcd_x)
ld de,-9
add hl,de
ld (lcd_x),hl
jq .get_name
.backspace:
call .get_offset
or a,a
jq z,.get_name
dec a
ld (.cursor_position),a
dec hl
ld (hl),0
.redraw:
ld de,0
.starting_x := $-3
ld (lcd_x),de
ld hl,(lcd_y)
ld h,160
mlt hl
add hl,hl
add hl,de
ex de,hl
ld bc,86
ld a,8
ld hl,color_senary
ld (lcd_rectangle.color_ptr),hl
call lcd_rectangle.computed
ld hl,color_primary
ld (lcd_rectangle.color_ptr),hl
ld hl,(.buffer_ptr)
xor a,a
ld (.cursor_position),a
.redraw_loop:
ld a,(hl)
or a,a
jq z,.draw_mode
push bc
push hl
call lcd_char
ld hl,.cursor_position
inc (hl)
pop hl
pop bc
inc hl
jq .redraw_loop
.change_input_mode:
ld a,(.current_input_mode)
cp a,NORMAL_CHARS
jr z,.setnumbers
cp a,NUMBER_CHARS
jr z,.setlowercase
.setnormal:
ld a,NORMAL_CHARS
ld hl,lut_character_standard
jr .set_input_mode
.setlowercase:
ld a,0
.mode := $-1
or a,a
jr z,.setnormal
ld a,LOWERCASE_CHARS
ld hl,lut_character_lowercase
jr .set_input_mode
.setnumbers:
ld a,NUMBER_CHARS
ld hl,lut_character_numbers
.set_input_mode:
ld (.current_character_lut),hl
ld (.current_input_mode),a
call lcd_char
jq .backup
.confirm:
ld a,(.cursor_position)
or a,a
jq z,.get_name
call .get_offset
xor a,a
ld (hl),a
inc a
ret
.get_offset:
ld a,(.cursor_position)
ld hl,0
.buffer_ptr := $-3
jp ti.AddHLAndA
util_temp_program_object:
db ti.TempProgObj, 'MATEOTMP', 0
|
#include <iostream>
#include <algorithm>
#include <string>
#include <vector>
#include <unordered_set>
#include <map>
using namespace std;
class Trie {
public:
/** Initialize your data structure here. */
Trie() {
}
/** Inserts a word into the trie. */
void insert(string word) {
dicts.insert(word);
for (int i = 0; i < word.size(); ++i) {
cout << word.substr(0, i+1) << endl;
prefixs.insert(word.substr(0, i+1));
}
}
/** Returns if the word is in the trie. */
bool search(string word) {
return dicts.find(word) != dicts.end();
}
/** Returns if there is any word in the trie that starts with the given prefix. */
bool startsWith(string prefix) {
return prefixs.find(prefix) != prefixs.end();
}
unordered_set<string> dicts;
unordered_set<string> prefixs;
};
int main( int argc, char *argv[] ) {
Trie trie;
/*
trie.insert("apple");
cout << trie.search("apple") << endl; // returns true
cout << trie.search("app") << endl; // returns false
cout << trie.startsWith("app") << endl; // returns true
trie.insert("app");
cout << trie.search("app") << endl; // returns true
*/
trie.insert("a");
cout << trie.search("a") << endl;
cout << trie.startsWith("a") << endl;;
return 0;
}
|
.target "6502"
.org $ff00
LASTOPENL .equ $24
LASTOPENH .equ $25
STOREADDRL .equ $26
STOREADDRH .equ $27
HEXPARSEL .equ $28
HEXPARSEH .equ $29
YSAVE .equ $2A
WOZMODE .equ $2B ;$00=LastOpen, $7f= store, $AE Block examine
INBUF .equ $0200
KEYIN = $D010 ;PIA.A register
KEYCNTRLREG = $D011 ;PIA.A ctrl register
DISPLAYPORT = $D012 ;pia.b output reg
DSPLYCTRLREG= $D013 ;pia.b contrl reg
BSKEY = $DF ;Backspace ascii/arrowleft?
RETURN = $8D ;
ESCKEY = $98
PROMPT .ascii "\\"
WozReset:
cld ;clear decimal
cli ;clear interupt
ldy #$7F
sty DISPLAYPORT
lda #$A7
sta KEYCNTRLREG
sta DSPLYCTRLREG
NotReturn:
cmp BSKEY
beq Backspace
cmp ESCKEY
beq Escape
iny
bpl NextChar
Escape:
lda PROMPT ;print prompt char
Echo() ;call echo sub
GetLine:
lda RETURN ;print newline
Echo() ;call display print
ldy #0+1 ;start new input line
Backspace:
dey ;move text input
bmi GetLine
NextChar:
lda KEYCNTRLREG
bpl NextChar
lda KEYIN
sta INBUF,y ;store into inputbuffer
Echo() ;print it
cmp RETURN
bne NotReturn ;get more input
;command finished
ldy #$ff ;reset text pointer
lda #0 ;default mode is examine
tax
SetStore:
asl ;leaves $7b in stor?
SetMode:
sta WOZMODE ; set mode flags
BlockSkip:
iny
NextItem:
lda INBUF,y ;get next char
cmp RETURN
beq GetLine
cmp #"."
blt BlockSkip ; if its not . or a char ignore it.
beq SetMode ; char is . set the mode
cmp #":"
beq SetStore
cmp #"R"
beq RunCommand ;run stored program
stx HEXPARSEL ;clear input values
stx HEXPARSEH
sty YSAVE ;save y for compare
NextHex:
lda INBUF,y
xor #$B0
cmp #9+1 ;compare for decimal y not 10?
blt Dig
adc #$88
cmp #$FA
blt NotHex
Dig:
asl ;acc shift left 4
asl ;rol 4
asl
asl
ldx #4 ;number of shift
HexShift:
asl
rol HEXPARSEL
rol HEXPARSEH
dex
bne HexShift ;loop for next hex
iny ;advance text input
bne NextHex ;always taken jmp?
NotHex:
cpy YSAVE
beq Escape
bit WOZMODE
bvc NotStore
;storemode
lda HEXPARSEL
sta (STOREADDRL,x)
inc STOREADDRL
bne NextItem
inc STOREADDRH
TNI:jmp NextItem ;label to fix long jump
RunCommand:
jmp LASTOPENL
NotStore:
bmi ExamineNext
ldx #2
SetAddress:
lda HEXPARSEL-1,x
sta STOREADDRL-1,x
sta LASTOPENL-1,x
dex
bne SetAddress ;while x != 0
NextPrint:
bne PrintData
lda #RETURN
Echo()
lda LASTOPENH
jsr PrintByte
lda LASTOPENL
jsr PrintByte
lda #':'
Echo()
PrintData:
lda #" "
jsr Echo
lda (LASTOPENL,x)
jsr PrintByte
ExamineNext:
stx WOZMODE
lda LASTOPENL
cmp HEXPARSEL
lda LASTOPENH
sbc HEXPARSEH
bge TNI ;there be more data to output!#longjump
inc LASTOPENL
bne Modulo8Check ;No Carry
inc LASTOPENH
Modulo8Check: ;linefeed check could check any value?
lda LASTOPENL ;if address mod 8 = 0 start new line
and #$07
bpl NextPrint ;always taken jmp?
PrintByte:
pha
lsr
lsr
lsr
lsr
jsr PrintHex
pla
PrintHex:
and #$0f ;mask LSB
ora #"0"
cmp #"9"+1 ;is decimal?
blt Echo
adc #6 ;add w/carry 6 to offset for a-f
.function Echo()
bit DISPLAYPORT ;has b7 cleared ;maybe use this for the lcd
bmi Echo
sta DISPLAYPORT
.endf ;return from sub
.org $fffa
NMI_VECT .word $0F00
RST_VECT .word WozReset
IRQ_VECT .word $0000 |
TITLE DVPIPE - Support for the PIPE: device
;***
; DVPIPE - device IO support for the PIPE: device
;
; Copyright <C> 1986, Microsoft Corporation
;
;Purpose:
; This module contains the device specific interface for the pipe
; device.
;
; The following is the pipe dispatch table. Each entry is the addr.
; of the actual working routine. The routine name is composed by the
; prefix "PIPE_" and the function name, e.g., PIPE_EOF is the routine
; name for EOF function.
;
; B$D_PIPE:
; ________
; | |
; | EOF |
; |--------|
; | LOC |
; |--------|
; | LOF |
; |--------|
; | CLOSE |
; |--------|
; | WIDTH | *
; |--------|
; | RANDIO | = B$ERR_BFM
; |--------|
; | OPEN |
; |--------|
; | BAKC |
; |--------|
; | SINP |
; |--------|
; | SOUT | = B$PIPE_SOUT in dkio.asm
; |--------|
; | GPOS | *
; |--------|
; | GWID | *
; |--------|
; | DWID | = B$ERR_FC
; |--------|
; | BLKIN | = B$ERR_BFM
; |--------|
; | BLKOUT | = B$ERR_BFM
; |________|
; * = could use disk io routine with marginal savings.
;
;******************************************************************************
INCLUDE switch.inc
INCLUDE rmacros.inc
USESEG ER_TEXT
USESEG DV_TEXT
USESEG DK_TEXT
USESEG NH_TEXT
USESEG RT_TEXT
USESEG OS_TEXT
USESEG _DATA
USESEG _BSS
INCLUDE seg.inc
INCLUDE baslibma.inc
INCLUDE devdef.inc
INCLUDE files.inc
INCLUDE oscalls.inc
INCLUDE rtps.inc ; constants shared with QBI
INCLUDE idmac.inc ; Debugging Macros
sBegin ER_TEXT
externNP B$ERR_DNA ;device not available
sEnd
assumes CS,DV_TEXT
sBegin DV_TEXT
DSPMAC MACRO FUNC
DW B$ERR_DNA
ENDM
;Map all dispatch routines to device not available
labelNP <PUBLIC, B$D_PIPE>
DSPNAM
sEnd DV_TEXT
END
|
;;kernel.asm
;nasm directive - 32 bit
bits 32
section .text
;multiboot spec
align 4
dd 0x1BADB002 ;magic
dd 0x00 ;flags
dd - (0x1BADB002 + 0x00) ;checksum. m+f+c should be zero
global start
extern kmain ;kmain is defined in the c file
start:
cli ;block interrupts
call kmain
hlt ;halt the CPU
|
* QDOS Trap #1 Emulation V2.01 1986 Tony Tebby QJUMP
*
section qd
*
xdef qd_trap1
xdef qd_t1tab
*
include 'dev8_keys_qdos_sms'
include 'dev8_keys_err'
include 'dev8_keys_sys'
include 'dev8_keys_psf'
include 'dev8_smsq_smsq_base_keys'
dc.l 0,0,0,0 sixteen bytes for cache patch
*
* set primary stack frame and locate system variable base
*
qd_trap1
movem.l psf.reg,-(sp) save main working registers
trap1_entry
move.l sms.sysb,a6 system variable base
lea sms.t1max,a5
cmp.w (a5)+,d0 valid operation?
bhi.l sms_ikey
move.w d0,d7
lsl.w #2,d7
move.l (a5,d7.w),a5
jmp (a5)
*
page
*
xref sms_cjid
xref sms_ikey
xref sms_rtok
xref sms_rte
*
xref sms_crjb
xref sms_injb
xref sms_rmjb
xref sms_frjb
xref mem_frtp
xref qd_exv
xref shd_ssjb
xref shd_usjb
xref shd_acjb
xref shd_spjb
xref sms_alhp
xref sms_rehp
xref sms_arpa
xref sms_ampa
xref sms_rmpa
xref sms_achp
xref sms_rchp
xref sms_lexi
xref sms_rexi
xref sms_lpol
xref sms_rpol
xref sms_lshd
xref sms_rshd
xref sms_liod
xref sms_riod
xref sms_lfsd
xref sms_rfsd
xref sms_iopr
xref sms_cach
xref sms_trns
xref sms_lldm
xref sms_lenq
xref sms_lset
xref sms_pset
xref sms_mptr
xref sms_fprm
xref sms_schp
xref shd_sevt
xref shd_wevt
*
trp1_inf
bsr.l sms_cjid get current job id in d1
move.l sys_vers(a6),d2 set version
move.l a6,a0 sysvar base
qd_ok
bra.l sms_rtok ... done
qd_nop2
moveq #0,d2 no d2
qd_nop1
moveq #0,d1 no d1
qd_nop
bra.l sms_rtok
qd_spjb
and.w #$00ff,d2 increment only
jmp shd_spjb
qd_acjb
and.w #$00ff,d2 increment only
jmp shd_acjb
qd_cbas
move.l sys_jbpt(a6),sys_cbas(a6)
bra.l sms_rtok
qd_xtop
move.l psf_pc(sp),d7 operation address
move.l usp,a5
move.l (a5)+,psf_pc(sp) return address
move.l a5,usp
move.l sp,a5 psf
pea sms_rte return
move.l d7,-(sp) routine
rts
*
qd_t1tab
dc.w $3e max table size
dc.w trp1_inf-* $00
dc.w sms_crjb-*
dc.w sms_injb-*
dc.w qd_cbas-*
dc.w sms_rmjb-* $04
dc.w sms_frjb-*
dc.w mem_frtp-*
dc.w qd_exv-*
dc.w shd_ssjb-* $08
dc.w shd_usjb-*
dc.w qd_acjb-*
dc.w qd_spjb-*
dc.w sms_alhp-* $0c
dc.w sms_rehp-*
dc.w sms_arpa-*
dc.w sms_ikey-*
dc.w qd_nop2-* $10 (no mode)
dc.w qd_nop-* (no hdop)
dc.w qd_nop-* (no baud)
dc.w qd_nop1-* (no rtc)
dc.w qd_nop1-* $14 (no rtc)
dc.w qd_nop1-* (no rtc)
dc.w sms_ampa-*
dc.w sms_rmpa-*
dc.w sms_achp-* $18
dc.w sms_rchp-*
dc.w sms_lexi-*
dc.w sms_rexi-*
dc.w sms_lpol-* $1c
dc.w sms_rpol-*
dc.w sms_lshd-*
dc.w sms_rshd-*
dc.w sms_liod-* $20
dc.w sms_riod-*
dc.w sms_lfsd-*
dc.w sms_rfsd-*
dc.w sms_trns-* $24
dc.w qd_xtop-*
dc.w sms_ikey-*
dc.w sms_ikey-*
dc.w sms_ikey-* $28
dc.w sms_ikey-*
dc.w sms_ikey-*
dc.w sms_ikey-*
dc.w sms_ikey-* $2c
dc.w sms_ikey-*
dc.w sms_iopr-*
dc.w sms_cach-*
dc.w sms_lldm-* $30
dc.w sms_lenq-*
dc.w sms_lset-*
dc.w sms_pset-*
dc.w sms_mptr-* $34
dc.w sms_fprm-*
dc.w sms_ikey-*
dc.w sms_ikey-*
dc.w sms_schp-* $38
dc.w sms_ikey-*
dc.w shd_sevt-*
dc.w shd_wevt-*
dc.w sms_ikey-* $3C
dc.w sms_ikey-*
dc.w sms_ikey-*
*
end
|
; Listing generated by Microsoft (R) Optimizing Compiler Version 19.16.27026.1
TITLE Z:\Sources\Lunor\Repos\rougemeilland\Palmtree.Math.Core.Implements\Palmtree.Math.Core.Implements\TEST_op_BitwiseOr.c
.686P
.XMM
include listing.inc
.model flat
INCLUDELIB MSVCRT
INCLUDELIB OLDNAMES
END
|
//////////////////////////////////////////////////////////////////////////////////////
// This file is distributed under the University of Illinois/NCSA Open Source License.
// See LICENSE file in top directory for details.
//
// Copyright (c) 2016 Jeongnim Kim and QMCPACK developers.
//
// File developed by: Ken Esler, kpesler@gmail.com, University of Illinois at Urbana-Champaign
// Jeremy McMinnis, jmcminis@gmail.com, University of Illinois at Urbana-Champaign
// Mark A. Berrill, berrillma@ornl.gov, Oak Ridge National Laboratory
//
// File created by: Ken Esler, kpesler@gmail.com, University of Illinois at Urbana-Champaign
//////////////////////////////////////////////////////////////////////////////////////
#include "LatticeGaussianProductBuilder.h"
#include "QMCWaveFunctions/LatticeGaussianProduct.h"
#include "OhmmsData/AttributeSet.h"
namespace qmcplusplus
{
LatticeGaussianProductBuilder::LatticeGaussianProductBuilder(Communicate* comm, ParticleSet& p, PtclPoolType& psets)
: WaveFunctionComponentBuilder(comm, p), ptclPool(psets)
{}
WaveFunctionComponent* LatticeGaussianProductBuilder::buildComponent(xmlNodePtr cur)
{
ParticleSet& p = targetPtcl;
// initialize widths to zero; if no user input, then abort
widthOpt.resize(targetPtcl.getTotalNum(), 0);
OhmmsAttributeSet oAttrib;
oAttrib.add(sourceOpt, "source");
oAttrib.add(nameOpt, "name");
oAttrib.add(widthOpt, "width");
oAttrib.put(cur);
if (nameOpt == "")
{
app_warning() << " LatticeGaussianProductBuilder::put does not have name " << std::endl;
}
std::map<std::string, ParticleSet*>::iterator pa_it(ptclPool.find(sourceOpt));
if (pa_it == ptclPool.end())
{
app_error() << "Could not file source ParticleSet " << sourceOpt << " for ion wave function.\n";
}
ParticleSet* sourcePtcl = (*pa_it).second;
LatticeGaussianProduct* orb = new LatticeGaussianProduct(*sourcePtcl, targetPtcl);
orb->ParticleAlpha.resize(targetPtcl.getTotalNum());
orb->ParticleCenter.resize(targetPtcl.getTotalNum());
int num_nonzero = 0;
for (int iat = 0; iat < p.getTotalNum(); iat++)
{
RealType w = widthOpt[iat];
if (w > 0.0)
{
orb->ParticleCenter[iat] = num_nonzero++;
orb->ParticleAlpha[iat] = 0.5 / (w * w);
}
else
{
orb->ParticleCenter[iat] = -1;
orb->ParticleAlpha[iat] = 0.0;
}
}
if (num_nonzero != sourcePtcl->getTotalNum())
{
app_error() << " The number of nonzero widths should be the same as the number of\n"
<< " centers for the ionwf.\n";
abort();
}
assert(num_nonzero == sourcePtcl->getTotalNum());
return orb;
}
} // namespace qmcplusplus
|
db 0 ; species ID placeholder
db 41, 64, 45, 50, 50, 50
; hp atk def spd sat sdf
db DRAGON, DRAGON ; type
db 45 ; catch rate
db 67 ; base exp
db NO_ITEM, DRAGON_SCALE ; items
db GENDER_F50 ; gender ratio
db 100 ; unknown 1
db 40 ; step cycles to hatch
db 5 ; unknown 2
INCBIN "gfx/pokemon/dratini/front.dimensions"
db 0, 0, 0, 0 ; padding
db GROWTH_SLOW ; growth rate
dn EGG_WATER_1, EGG_DRAGON ; egg groups
; tm/hm learnset
tmhm HEADBUTT, CURSE, TOXIC, ZAP_CANNON, HIDDEN_POWER, SNORE, BLIZZARD, ICY_WIND, PROTECT, RAIN_DANCE, ENDURE, FRUSTRATION, IRON_TAIL, DRAGONBREATH, THUNDER, RETURN, DOUBLE_TEAM, SWAGGER, SLEEP_TALK, FIRE_BLAST, SWIFT, DETECT, REST, ATTRACT, WATER_SPORT, FLAMETHROWER, THUNDERBOLT, ICE_BEAM
; end
|
; A010699: Period 2: repeat (2,9).
; 2,9,2,9,2,9,2,9,2,9,2,9,2,9,2,9,2,9,2,9,2,9,2,9,2,9,2,9,2,9,2,9,2,9,2,9,2,9,2,9,2,9,2,9,2,9,2,9,2,9,2,9,2,9,2,9,2,9,2,9,2,9,2,9,2,9,2,9,2,9,2,9,2,9,2,9,2,9,2,9,2
mov $1,$0
mod $1,2
mul $1,7
add $1,2
|
/***********************************************************************************************************************
* OpenStudio(R), Copyright (c) 2008-2018, Alliance for Sustainable Energy, LLC. 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 the copyright holder nor the names of any contributors may be used to endorse or promote products
* derived from this software without specific prior written permission from the respective party.
*
* (4) Other than as required in clauses (1) and (2), distributions in any form of modifications or other derivative works
* may not use the "OpenStudio" trademark, "OS", "os", or any other confusingly similar designation without specific prior
* written permission from Alliance for Sustainable Energy, LLC.
*
* THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDER(S) AND ANY 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(S), ANY CONTRIBUTORS, THE UNITED STATES GOVERNMENT, OR THE UNITED
* STATES DEPARTMENT OF ENERGY, NOR ANY OF THEIR EMPLOYEES, 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.
***********************************************************************************************************************/
#ifndef MEASURE_REPORTINGMEASURE_HPP
#define MEASURE_REPORTINGMEASURE_HPP
#include "MeasureAPI.hpp"
#include "OSMeasure.hpp"
#include "../utilities/core/Logger.hpp"
namespace openstudio {
class IdfObject;
namespace measure {
/** ReportingMeasure is an abstract base class for UserScripts that generate reports. */
class MEASURE_API ReportingMeasure : public OSMeasure {
public:
/** @name Constructors and Destructors */
//@{
virtual ~ReportingMeasure();
//@}
/** @name Getters */
//@{
/** Returns the arguments for this script. In interactive applications, an OSRunner presents
* these arguments to the user to produce an OSArgumentMap of user_arguments that it then passes
* to this script's run method. The same basic steps should happen in applications with non-
* interactive scripts, but in that case an entity other than an OSRunner may be in charge of
* collecting user arguments. The base class implementation returns an empty vector. */
virtual std::vector<OSArgument> arguments() const;
/** Returns the outputs for this script. The base class implementation returns an empty vector. */
virtual std::vector<OSOutput> outputs() const;
//@}
/** @name Actions */
//@{
/** Run the script with the given runner and user_arguments. The base class implementation calls
* runner.prepareForMeasureRun(*this) and should be called at the beginning of derived class
* implementations of this method. (In C++, that call looks like
* ReportingMeasure::run(runner, user_arguments). In Ruby that call looks like
* super(runner, user_arguments). */
virtual bool run(OSRunner& runner,
const std::map<std::string, OSArgument>& user_arguments) const;
/** This method is called on all reporting measures immediately before the E+
* simulation. The code that injects these objects into the IDF checks that
* only objects of allowed types are added to prevent changes that impact
* energy use. The injector code also prevents duplicate report requests.
* The default implementation of this method returns an empty vector.
* The runner allows the user to load the last osm/idf and to log messages.
* The argument map is available with the arguments for the reporting measure. */
virtual std::vector<IdfObject> energyPlusOutputRequests(OSRunner& runner,
const std::map<std::string, OSArgument>& user_arguments) const;
//@}
protected:
ReportingMeasure() {}
private:
REGISTER_LOGGER("openstudio.measure.ReportingMeasure");
};
} // measure
} // openstudio
#endif // MEASURE_REPORTINGMEASURE_HPP
|
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.