id stringlengths 22 129 | text stringlengths 60 19.5k | arch stringclasses 9
values | syntax stringclasses 5
values | kind stringclasses 4
values | repo stringclasses 32
values | path stringlengths 7 108 | license stringclasses 10
values | commit stringlengths 40 40 | source_host stringclasses 1
value | category stringclasses 15
values | source_url stringlengths 85 192 | line_start int64 1 5.48k | line_end int64 4 5.5k |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
yasm/yasm:tests/nasm/vbeaf.asm:13 | call _CloseFile
add esp, byte _CloseFile_arglen
push dword [DriverSize]
push dword [DriverOffset]
o16 push cs
call _LockArea
add esp, byte _LockArea_arglen
xor eax, eax
jmp short .done
.errorfree:
mov eax, [DriverSize]
neg e... | arm64 | nasm-like | handwritten | yasm/yasm | tests/nasm/vbeaf.asm | BSD-2-Clause | a2f8bdf075bcad90a1b0a446080906ef6afe6847 | github | assembler | https://github.com/yasm/yasm/blob/a2f8bdf075bcad90a1b0a446080906ef6afe6847/tests/nasm/vbeaf.asm | 481 | 540 |
yasm/yasm:tests/nasm/vbeaf.asm:14 | neg eax
push eax
call ___sbrk
add esp, byte ___sbrk_arglen
mov dword [DriverOffset], 0
.error:
xor eax, eax
inc eax
.done:
pop gs
pop fs
pop es
mov esp, ebp
mov esp, ebp
pop ebp
ret
[global _InitGraphics]
_InitGraphics: push ebp
mov ebp, ... | arm64 | nasm-like | handwritten | yasm/yasm | tests/nasm/vbeaf.asm | BSD-2-Clause | a2f8bdf075bcad90a1b0a446080906ef6afe6847 | github | assembler | https://github.com/yasm/yasm/blob/a2f8bdf075bcad90a1b0a446080906ef6afe6847/tests/nasm/vbeaf.asm | 521 | 580 |
yasm/yasm:tests/nasm/vbeaf.asm:15 | [global _InitGraphics]
_InitGraphics: push ebp
mov ebp, esp
.kbINT equ 8
.kbIRQ equ 12
.kbPort equ 16
push es
push fs
push gs
mov gs, [_djgpp_gs]
mov fs, [_djgpp_fs]
mov es, [_djgpp_es]
push esi
push edi
mov esi, [DriverOffset]
test esi, esi
jnz near .foundit
... | arm64 | nasm-like | handwritten | yasm/yasm | tests/nasm/vbeaf.asm | BSD-2-Clause | a2f8bdf075bcad90a1b0a446080906ef6afe6847 | github | assembler | https://github.com/yasm/yasm/blob/a2f8bdf075bcad90a1b0a446080906ef6afe6847/tests/nasm/vbeaf.asm | 561 | 620 |
yasm/yasm:tests/nasm/vbeaf.asm:16 | mov edi, Filename
.argv0copy:
mov al, [esi]
mov [edi], al
inc esi
inc edi
or al, al
jnz .argv0copy
.findlastslash:
cmp byte [edi], '/'
je .lastslashfound
cmp byte [edi], '\'
je .lastslashfound
cmp edi, Filename
je .lastslashnotfound
dec edi
jmp short .findlastslash
.lastslashfound:
inc edi
mov ecx, 10... | arm64 | nasm-like | handwritten | yasm/yasm | tests/nasm/vbeaf.asm | BSD-2-Clause | a2f8bdf075bcad90a1b0a446080906ef6afe6847 | github | assembler | https://github.com/yasm/yasm/blob/a2f8bdf075bcad90a1b0a446080906ef6afe6847/tests/nasm/vbeaf.asm | 601 | 660 |
yasm/yasm:tests/nasm/vbeaf.asm:17 | .lastslashnotfound:
mov edi, Filename
mov dword [edi], 'C:\v'
add edi, byte 3
mov esi, VBEAFName
mov ecx, 10
rep movsb
push dword Filename
call _LoadGraphicsDriver
add esp, byte _LoadGraphicsDriver_arglen
test eax, eax
jz .foundit
push dword VBEAFEnv
... | arm64 | nasm-like | handwritten | yasm/yasm | tests/nasm/vbeaf.asm | BSD-2-Clause | a2f8bdf075bcad90a1b0a446080906ef6afe6847 | github | assembler | https://github.com/yasm/yasm/blob/a2f8bdf075bcad90a1b0a446080906ef6afe6847/tests/nasm/vbeaf.asm | 641 | 700 |
yasm/yasm:tests/nasm/vbeaf.asm:18 | mov ecx, 256
mov esi, eax
mov edi, Filename
.envcopy:
mov al, [esi]
mov [edi], al
inc esi
inc edi
or al, al
jnz .envcopy
dec edi
cmp byte [edi], '/'
je .slashpresent
cmp byte [edi], '\'
je .slashpresent
mov byte [edi], '/'
.slashpresent:
inc edi
mov esi, VBEAFName
mov ecx, 10
rep movsb
... | arm64 | nasm-like | handwritten | yasm/yasm | tests/nasm/vbeaf.asm | BSD-2-Clause | a2f8bdf075bcad90a1b0a446080906ef6afe6847 | github | assembler | https://github.com/yasm/yasm/blob/a2f8bdf075bcad90a1b0a446080906ef6afe6847/tests/nasm/vbeaf.asm | 681 | 740 |
yasm/yasm:tests/nasm/vbeaf.asm:19 | jz .foundit
jmp .error
.foundit:
mov esi, [DriverOffset]
cmp dword [esi+AF_DRIVER.Signature], 'VBEA'
jne near .errorfree
cmp dword [esi+AF_DRIVER.Signature+4], 'F.DR'
jne near .errorfree
cmp byte [esi+AF_DRIVER.Signature+8], 'V'
jne near .errorfree
cmp word [esi+AF_DRIVER.Version], 0200h
jb near .errorfr... | arm64 | nasm-like | handwritten | yasm/yasm | tests/nasm/vbeaf.asm | BSD-2-Clause | a2f8bdf075bcad90a1b0a446080906ef6afe6847 | github | assembler | https://github.com/yasm/yasm/blob/a2f8bdf075bcad90a1b0a446080906ef6afe6847/tests/nasm/vbeaf.asm | 721 | 780 |
yasm/yasm:tests/nasm/vbeaf.asm:20 | mov byte [FreeBEExt], 1
push dword (('D'<<24) | ('I'<<16) | ('C'<<8) | 'L')
push esi
call [esi+AF_DRIVER.OemExt]
add esp, byte 8
test eax, eax
jz .noext
mov dword [eax], _DispatchCall
.noext:
mov edi, [esi+AF_DRIVER.PlugAndPlayInit]
add edi, esi
mov ebx, esi
call edi
test eax, eax
jnz near .errorfree... | arm64 | nasm-like | handwritten | yasm/yasm | tests/nasm/vbeaf.asm | BSD-2-Clause | a2f8bdf075bcad90a1b0a446080906ef6afe6847 | github | assembler | https://github.com/yasm/yasm/blob/a2f8bdf075bcad90a1b0a446080906ef6afe6847/tests/nasm/vbeaf.asm | 761 | 820 |
yasm/yasm:tests/nasm/vbeaf.asm:21 | jz .defaultkb
push dword (('K'<<24) | ('E'<<16) | ('Y'<<8) | 'S')
push esi
call [esi+AF_DRIVER.OemExt]
add esp, byte 8
test eax, eax
jz .defaultkb
mov edi, eax
mov al, [edi+FAF_KEYBOARD_DATA.INT]
mov ebx, [ebp+.kbINT]
mov [ebx], al
mov al, [edi+FAF_KEYBOARD_DATA.IRQ]
mov ebx, [ebp+.kbIRQ]
mov [ebx], ... | arm64 | nasm-like | handwritten | yasm/yasm | tests/nasm/vbeaf.asm | BSD-2-Clause | a2f8bdf075bcad90a1b0a446080906ef6afe6847 | github | assembler | https://github.com/yasm/yasm/blob/a2f8bdf075bcad90a1b0a446080906ef6afe6847/tests/nasm/vbeaf.asm | 801 | 860 |
yasm/yasm:tests/nasm/vbeaf.asm:22 | mov eax, [DriverSize]
neg eax
push eax
call ___sbrk
add esp, byte ___sbrk_arglen
mov dword [DriverOffset], 0
.error:
xor eax, eax
inc eax
.done:
pop edi
pop esi
pop gs
pop fs
pop es
mov esp, ebp
pop ebp
ret
[global _ExitGraphics]
_ExitGraphics
call _Unset... | arm64 | nasm-like | handwritten | yasm/yasm | tests/nasm/vbeaf.asm | BSD-2-Clause | a2f8bdf075bcad90a1b0a446080906ef6afe6847 | github | assembler | https://github.com/yasm/yasm/blob/a2f8bdf075bcad90a1b0a446080906ef6afe6847/tests/nasm/vbeaf.asm | 841 | 900 |
yasm/yasm:tests/nasm/vbeaf.asm:23 | [global _ExitGraphics]
_ExitGraphics
call _UnsetGraphicsMode
push es
push fs
push gs
mov gs, [_djgpp_gs]
mov fs, [_djgpp_fs]
mov es, [_djgpp_es]
push esi
mov esi, [DriverOffset]
test esi, esi
jz .notloaded
mov eax, [DriverSize]
neg eax
push eax
call ___sbrk
add esp, byt... | arm64 | nasm-like | handwritten | yasm/yasm | tests/nasm/vbeaf.asm | BSD-2-Clause | a2f8bdf075bcad90a1b0a446080906ef6afe6847 | github | assembler | https://github.com/yasm/yasm/blob/a2f8bdf075bcad90a1b0a446080906ef6afe6847/tests/nasm/vbeaf.asm | 881 | 940 |
yasm/yasm:tests/nasm/vbeaf.asm:24 | pop esi
pop gs
pop fs
pop es
ret
[global _FindGraphicsMode]
_FindGraphicsMode: push ebp
mov ebp, esp
.Width equ 8
.Height equ 10
.Depth equ 12
.Emulated equ 14
push es
push fs
push gs
mov gs, [_djgpp_gs]
mov fs, [_djgpp_fs]
mov es, [_djgpp_es]
pu... | arm64 | nasm-like | handwritten | yasm/yasm | tests/nasm/vbeaf.asm | BSD-2-Clause | a2f8bdf075bcad90a1b0a446080906ef6afe6847 | github | assembler | https://github.com/yasm/yasm/blob/a2f8bdf075bcad90a1b0a446080906ef6afe6847/tests/nasm/vbeaf.asm | 921 | 980 |
yasm/yasm:tests/nasm/vbeaf.asm:25 | mov esi, [DriverOffset]
mov edi, [esi+AF_DRIVER.AvailableModes]
.modeloop:
cmp word [edi], -1
je .notfound
push dword ModeInfo
push dword [edi]
push esi
call [esi+AF_DRIVER.GetVideoModeInfo]
add esp, byte 12
test eax, eax
jnz .nextmode
mov ax, [ebp+.Width]
cmp [ModeInfo+AF_MODE_INFO.XResolution], ax
... | arm64 | nasm-like | handwritten | yasm/yasm | tests/nasm/vbeaf.asm | BSD-2-Clause | a2f8bdf075bcad90a1b0a446080906ef6afe6847 | github | assembler | https://github.com/yasm/yasm/blob/a2f8bdf075bcad90a1b0a446080906ef6afe6847/tests/nasm/vbeaf.asm | 961 | 1,020 |
yasm/yasm:tests/nasm/vbeaf.asm:26 | .nextmode:
add edi, byte 2
jmp short .modeloop
.foundit:
movzx eax, word [edi]
jmp short .done
.notfound:
xor eax, eax
.done:
pop edi
pop esi
pop gs
pop fs
pop es
mov esp, ebp
pop ebp
ret
[global _SetGraphicsMode]
_SetGraphicsMode: push ebp
mov ebp, esp
.Mode eq... | arm64 | nasm-like | handwritten | yasm/yasm | tests/nasm/vbeaf.asm | BSD-2-Clause | a2f8bdf075bcad90a1b0a446080906ef6afe6847 | github | assembler | https://github.com/yasm/yasm/blob/a2f8bdf075bcad90a1b0a446080906ef6afe6847/tests/nasm/vbeaf.asm | 1,001 | 1,060 |
yasm/yasm:tests/nasm/vbeaf.asm:27 | .Mode equ 8
push es
push fs
push gs
mov gs, [_djgpp_gs]
mov fs, [_djgpp_fs]
mov es, [_djgpp_es]
mov eax, [DriverOffset]
xor ecx, ecx
push ecx
inc ecx
push ecx
push dword ModeInfo+AF_MODE_INFO.BytesPerScanLine
movzx ecx, word [ModeInfo+AF_MODE_INFO.YResolution]
push ecx
movzx ecx, word [ModeInfo... | arm64 | nasm-like | handwritten | yasm/yasm | tests/nasm/vbeaf.asm | BSD-2-Clause | a2f8bdf075bcad90a1b0a446080906ef6afe6847 | github | assembler | https://github.com/yasm/yasm/blob/a2f8bdf075bcad90a1b0a446080906ef6afe6847/tests/nasm/vbeaf.asm | 1,041 | 1,100 |
yasm/yasm:tests/nasm/vbeaf.asm:28 | [global _UnsetGraphicsMode]
_UnsetGraphicsMode
cmp byte [InGraphicsMode], 0
jz .notingraphics
push es
push fs
push gs
mov gs, [_djgpp_gs]
mov fs, [_djgpp_fs]
mov es, [_djgpp_es]
push esi
push edi
mov esi, [DriverOffset]
mov edi, [esi+AF_DRIVER.EnableDirectAccess]
test edi, edi
jz .noEDA
push esi
... | arm64 | nasm-like | handwritten | yasm/yasm | tests/nasm/vbeaf.asm | BSD-2-Clause | a2f8bdf075bcad90a1b0a446080906ef6afe6847 | github | assembler | https://github.com/yasm/yasm/blob/a2f8bdf075bcad90a1b0a446080906ef6afe6847/tests/nasm/vbeaf.asm | 1,081 | 1,140 |
yasm/yasm:tests/nasm/vbeaf.asm:29 | call edi
add esp, byte 4
.noEDA:
mov edi, [esi+AF_DRIVER.WaitTillIdle]
test edi, edi
jz .noWTI
push esi
call edi
add esp, byte 4
.noWTI:
push esi
call [esi+AF_DRIVER.RestoreTextMode]
add esp, byte 4
mov byte [InGraphicsMode], 0
pop edi
pop esi
pop gs
pop fs
pop es
.notingraphics:
ret
... | arm64 | nasm-like | handwritten | yasm/yasm | tests/nasm/vbeaf.asm | BSD-2-Clause | a2f8bdf075bcad90a1b0a446080906ef6afe6847 | github | assembler | https://github.com/yasm/yasm/blob/a2f8bdf075bcad90a1b0a446080906ef6afe6847/tests/nasm/vbeaf.asm | 1,121 | 1,180 |
yasm/yasm:tests/nasm/vbeaf.asm:30 | [global _CopyToScreen]
_CopyToScreen: push ebp
mov ebp, esp
.Source equ 8
.SourcePitch equ 12
.SourceLeft equ 16
.SourceTop equ 20
.Width equ 24
.Height equ 28
.DestLeft equ 32
.DestTop equ 36
push es
push fs
push gs
mov gs, [_djg... | arm64 | nasm-like | handwritten | yasm/yasm | tests/nasm/vbeaf.asm | BSD-2-Clause | a2f8bdf075bcad90a1b0a446080906ef6afe6847 | github | assembler | https://github.com/yasm/yasm/blob/a2f8bdf075bcad90a1b0a446080906ef6afe6847/tests/nasm/vbeaf.asm | 1,161 | 1,220 |
yasm/yasm:tests/nasm/vbeaf.asm:31 | mov esi, [DriverOffset]
cmp dword [esi+AF_DRIVER.BitBltSys], 0
jz .NoBitBltSys
push dword 0
push dword [ebp+.DestTop]
push dword [ebp+.DestLeft]
push dword [ebp+.Height]
push dword [ebp+.Width]
push dword [ebp+.SourceTop]
push dword [ebp+.SourceLeft]
push dword [ebp+.SourcePitch]
push dword [ebp+.Source]
... | arm64 | nasm-like | handwritten | yasm/yasm | tests/nasm/vbeaf.asm | BSD-2-Clause | a2f8bdf075bcad90a1b0a446080906ef6afe6847 | github | assembler | https://github.com/yasm/yasm/blob/a2f8bdf075bcad90a1b0a446080906ef6afe6847/tests/nasm/vbeaf.asm | 1,201 | 1,260 |
yasm/yasm:tests/nasm/vbeaf.asm:32 | [global _DispatchCall]
_DispatchCall: push ebp
mov ebp, esp
.Handle equ 8
.Command equ 12
.Data equ 16
push fs
push esi
mov eax, ds
mov fs, eax
mov eax, [ebp+.Command]
shl eax, 16
mov ax, [ebp+.Handle]
clc
mov esi, [ebp+.Data]
db 0C4h, 0C4h, 058h, 002h
salc
mo... | arm64 | nasm-like | handwritten | yasm/yasm | tests/nasm/vbeaf.asm | BSD-2-Clause | a2f8bdf075bcad90a1b0a446080906ef6afe6847 | github | assembler | https://github.com/yasm/yasm/blob/a2f8bdf075bcad90a1b0a446080906ef6afe6847/tests/nasm/vbeaf.asm | 1,241 | 1,288 |
yasm/yasm:tools/Makefile.inc:1 | EXTRA_DIST += tools/re2c/Makefile.inc
EXTRA_DIST += tools/genmacro/Makefile.inc
EXTRA_DIST += tools/genperf/Makefile.inc
EXTRA_DIST += tools/python-yasm/Makefile.inc
include tools/re2c/Makefile.inc
include tools/genmacro/Makefile.inc
include tools/genperf/Makefile.inc
include tools/python-yasm/Makefile.inc | riscv | gas-like | handwritten | yasm/yasm | tools/Makefile.inc | BSD-2-Clause | a2f8bdf075bcad90a1b0a446080906ef6afe6847 | github | assembler | https://github.com/yasm/yasm/blob/a2f8bdf075bcad90a1b0a446080906ef6afe6847/tools/Makefile.inc | 1 | 9 |
yasm/yasm:tools/Makefile.inc:1 | # $Id$
EXTRA_DIST += tools/re2c/Makefile.inc
EXTRA_DIST += tools/genmacro/Makefile.inc
EXTRA_DIST += tools/genperf/Makefile.inc
EXTRA_DIST += tools/python-yasm/Makefile.inc
include tools/re2c/Makefile.inc
include tools/genmacro/Makefile.inc
include tools/genperf/Makefile.inc
include tools/python-yasm/Makefile.inc | riscv | gas-like | handwritten | yasm/yasm | tools/Makefile.inc | BSD-2-Clause | deffd98d53c850665c8179fd22235ed789811986 | github | assembler | https://github.com/yasm/yasm/blob/deffd98d53c850665c8179fd22235ed789811986/tools/Makefile.inc | 1 | 11 |
yasm/yasm:tools/Makefile.inc:1 | # $Id$
EXTRA_DIST += tools/re2c/Makefile.inc
EXTRA_DIST += tools/genperf/Makefile.inc
EXTRA_DIST += tools/python-yasm/Makefile.inc
include tools/re2c/Makefile.inc
include tools/genperf/Makefile.inc
include tools/python-yasm/Makefile.inc | riscv | gas-like | handwritten | yasm/yasm | tools/Makefile.inc | BSD-2-Clause | 00e958bcf6cbe4551d16e43307647ced8e80dc16 | github | assembler | https://github.com/yasm/yasm/blob/00e958bcf6cbe4551d16e43307647ced8e80dc16/tools/Makefile.inc | 1 | 9 |
yasm/yasm:tools/Makefile.inc:1 | # $Id$
EXTRA_DIST += tools/re2c/Makefile.inc
EXTRA_DIST += tools/gap/Makefile.inc
EXTRA_DIST += tools/python-yasm/Makefile.inc
include tools/re2c/Makefile.inc
include tools/gap/Makefile.inc
include tools/python-yasm/Makefile.inc | riscv | gas-like | handwritten | yasm/yasm | tools/Makefile.inc | BSD-2-Clause | a5d91fba6a8f20465f6a8884207f98b241d993fe | github | assembler | https://github.com/yasm/yasm/blob/a5d91fba6a8f20465f6a8884207f98b241d993fe/tools/Makefile.inc | 1 | 9 |
yasm/yasm:tools/Makefile.inc:1 | # $Id$
EXTRA_DIST += tools/re2c/Makefile.inc
EXTRA_DIST += tools/gap/Makefile.inc
include tools/re2c/Makefile.inc
include tools/gap/Makefile.inc | riscv | gas-like | handwritten | yasm/yasm | tools/Makefile.inc | BSD-2-Clause | 90a38d71b05fe4e79eab744d79ba555ff4c80986 | github | assembler | https://github.com/yasm/yasm/blob/90a38d71b05fe4e79eab744d79ba555ff4c80986/tools/Makefile.inc | 1 | 7 |
yasm/yasm:tools/Makefile.inc:1 | # $IdPath$
EXTRA_DIST += \
tools/re2c/Makefile.inc
include tools/re2c/Makefile.inc | riscv | gas-like | handwritten | yasm/yasm | tools/Makefile.inc | BSD-2-Clause | 6c7bb59857fe5c33473fcfd3fb5dfa8126d1f9c4 | github | assembler | https://github.com/yasm/yasm/blob/6c7bb59857fe5c33473fcfd3fb5dfa8126d1f9c4/tools/Makefile.inc | 1 | 6 |
yasm/yasm:tools/Makefile.inc:1 | # $IdPath$
EXTRA_DIST += \
tools/Makefile.inc
include tools/lemon/Makefile.inc | riscv | gas-like | handwritten | yasm/yasm | tools/Makefile.inc | BSD-2-Clause | 83abfe0c7248f9b81a1de8cdb88ca529679940c5 | github | assembler | https://github.com/yasm/yasm/blob/83abfe0c7248f9b81a1de8cdb88ca529679940c5/tools/Makefile.inc | 1 | 6 |
yasm/yasm:tools/gap/Makefile.inc:1 | # $Id$
# These utility programs have to be built for BUILD host in cross-build.
# This makes things rather non-standard automake
noinst_PROGRAMS += gap
gap_SOURCES =
EXTRA_DIST += tools/gap/gap.c
EXTRA_DIST += tools/gap/perfect.c
EXTRA_DIST += tools/gap/perfect.h
EXTRA_DIST += tools/gap/standard.h
gap_LDADD = gap.$... | riscv | gas-like | handwritten | yasm/yasm | tools/gap/Makefile.inc | BSD-2-Clause | be9b26519730ac5f4a84f1cede6228c13efb240a | github | assembler | https://github.com/yasm/yasm/blob/be9b26519730ac5f4a84f1cede6228c13efb240a/tools/gap/Makefile.inc | 1 | 33 |
yasm/yasm:tools/gap/Makefile.inc:1 | # $Id$
# These utility programs have to be built for BUILD host in cross-build.
# This makes things rather non-standard automake
noinst_PROGRAMS += gap
gap_SOURCES =
EXTRA_DIST += tools/gap/gap.c
EXTRA_DIST += tools/gap/perfect.c
EXTRA_DIST += tools/gap/perfect.h
EXTRA_DIST += tools/gap/standard.h
gap_LDADD = gap.$... | riscv | gas-like | handwritten | yasm/yasm | tools/gap/Makefile.inc | BSD-2-Clause | 90a38d71b05fe4e79eab744d79ba555ff4c80986 | github | assembler | https://github.com/yasm/yasm/blob/90a38d71b05fe4e79eab744d79ba555ff4c80986/tools/gap/Makefile.inc | 1 | 37 |
yasm/yasm:tools/genmacro/Makefile.inc:1 | # These utility programs have to be built for BUILD host in cross-build.
# This makes things rather non-standard automake
noinst_PROGRAMS += genmacro
genmacro_SOURCES =
EXTRA_DIST += tools/genmacro/genmacro.c
genmacro_LDADD = genmacro.$(OBJEXT)
genmacro_LINK = $(CCLD_FOR_BUILD) -o $@
genmacro.$(OBJEXT): tools/genmac... | riscv | gas-like | handwritten | yasm/yasm | tools/genmacro/Makefile.inc | BSD-2-Clause | a2f8bdf075bcad90a1b0a446080906ef6afe6847 | github | assembler | https://github.com/yasm/yasm/blob/a2f8bdf075bcad90a1b0a446080906ef6afe6847/tools/genmacro/Makefile.inc | 1 | 13 |
yasm/yasm:tools/genmacro/Makefile.inc:1 | # $Id$
# These utility programs have to be built for BUILD host in cross-build.
# This makes things rather non-standard automake
noinst_PROGRAMS += genmacro
genmacro_SOURCES =
EXTRA_DIST += tools/genmacro/genmacro.c
genmacro_LDADD = genmacro.$(OBJEXT)
genmacro_LINK = $(CCLD_FOR_BUILD) -o $@
genmacro.$(OBJEXT): tool... | riscv | gas-like | handwritten | yasm/yasm | tools/genmacro/Makefile.inc | BSD-2-Clause | 4e15ef1cc9e83edf0709b78e9e70f09901adab32 | github | assembler | https://github.com/yasm/yasm/blob/4e15ef1cc9e83edf0709b78e9e70f09901adab32/tools/genmacro/Makefile.inc | 1 | 15 |
yasm/yasm:tools/genmacro/Makefile.inc:1 | # $Id$
# These utility programs have to be built for BUILD host in cross-build.
# This makes things rather non-standard automake
noinst_PROGRAMS += genmacro
genmacro_SOURCES =
EXTRA_DIST += tools/genmacro/genmacro.c
genmacro_LDADD = genmacro.$(OBJEXT)
genmacro_LINK = $(CCLD_FOR_BUILD) -o $@
genmacro.$(OBJEXT): tool... | riscv | gas-like | handwritten | yasm/yasm | tools/genmacro/Makefile.inc | BSD-2-Clause | deffd98d53c850665c8179fd22235ed789811986 | github | assembler | https://github.com/yasm/yasm/blob/deffd98d53c850665c8179fd22235ed789811986/tools/genmacro/Makefile.inc | 1 | 14 |
yasm/yasm:tools/genperf/Makefile.inc:1 | # These utility programs have to be built for BUILD host in cross-build.
# This makes things rather non-standard automake
noinst_PROGRAMS += genperf
# Suffix rule for genperf
SUFFIXES += .gperf
.gperf.c: genperf$(EXEEXT)
$(top_builddir)/genperf$(EXEEXT) $< $@
genperf_SOURCES =
EXTRA_DIST += tools/genperf/genperf.c
... | riscv | gas-like | handwritten | yasm/yasm | tools/genperf/Makefile.inc | BSD-2-Clause | a2f8bdf075bcad90a1b0a446080906ef6afe6847 | github | assembler | https://github.com/yasm/yasm/blob/a2f8bdf075bcad90a1b0a446080906ef6afe6847/tools/genperf/Makefile.inc | 1 | 41 |
yasm/yasm:tools/genperf/Makefile.inc:1 | # $Id$
# These utility programs have to be built for BUILD host in cross-build.
# This makes things rather non-standard automake
noinst_PROGRAMS += genperf
# Suffix rule for genperf
SUFFIXES += .gperf
.gperf.c: genperf$(EXEEXT)
$(top_builddir)/genperf$(EXEEXT) $< $@
genperf_SOURCES =
EXTRA_DIST += tools/genperf/ge... | riscv | gas-like | handwritten | yasm/yasm | tools/genperf/Makefile.inc | BSD-2-Clause | 4e15ef1cc9e83edf0709b78e9e70f09901adab32 | github | assembler | https://github.com/yasm/yasm/blob/4e15ef1cc9e83edf0709b78e9e70f09901adab32/tools/genperf/Makefile.inc | 1 | 43 |
yasm/yasm:tools/genperf/Makefile.inc:1 | # $Id$
# These utility programs have to be built for BUILD host in cross-build.
# This makes things rather non-standard automake
noinst_PROGRAMS += genperf
# Suffix rule for genperf
SUFFIXES += .gperf
.gperf.c: genperf$(EXEEXT)
$(top_builddir)/genperf$(EXEEXT) $< $@
genperf_SOURCES =
EXTRA_DIST += tools/genperf/ge... | riscv | gas-like | handwritten | yasm/yasm | tools/genperf/Makefile.inc | BSD-2-Clause | d0033b06c510a3b4d67092e384fb40f052323b7e | github | assembler | https://github.com/yasm/yasm/blob/d0033b06c510a3b4d67092e384fb40f052323b7e/tools/genperf/Makefile.inc | 1 | 38 |
yasm/yasm:tools/genperf/Makefile.inc:1 | # $Id$
# These utility programs have to be built for BUILD host in cross-build.
# This makes things rather non-standard automake
noinst_PROGRAMS += genperf
# Suffix rule for genperf
SUFFIXES += .gperf
.gperf.c: genperf$(EXEEXT)
$(top_builddir)/genperf$(EXEEXT) $< > $@
genperf_SOURCES =
EXTRA_DIST += tools/genperf/... | riscv | gas-like | handwritten | yasm/yasm | tools/genperf/Makefile.inc | BSD-2-Clause | f150e45913345aa753dc3307a0266043f199b25b | github | assembler | https://github.com/yasm/yasm/blob/f150e45913345aa753dc3307a0266043f199b25b/tools/genperf/Makefile.inc | 1 | 38 |
yasm/yasm:tools/genperf/Makefile.inc:1 | # $Id$
# These utility programs have to be built for BUILD host in cross-build.
# This makes things rather non-standard automake
noinst_PROGRAMS += genperf
genperf_SOURCES =
EXTRA_DIST += tools/genperf/genperf.c
EXTRA_DIST += tools/genperf/perfect.c
EXTRA_DIST += tools/genperf/perfect.h
EXTRA_DIST += tools/genperf/s... | riscv | gas-like | handwritten | yasm/yasm | tools/genperf/Makefile.inc | BSD-2-Clause | 00e958bcf6cbe4551d16e43307647ced8e80dc16 | github | assembler | https://github.com/yasm/yasm/blob/00e958bcf6cbe4551d16e43307647ced8e80dc16/tools/genperf/Makefile.inc | 1 | 33 |
yasm/yasm:tools/lemon/Makefile.inc:1 | # $IdPath$
noinst_PROGRAMS = lemon
lemon_SOURCES = \
tools/lemon/lemon.c
EXTRA_DIST += \
tools/lemon/Makefile.inc \
tools/lemon/lemon.html \
tools/lemon/lempar.c \
tools/lemon/README | riscv | gas-like | handwritten | yasm/yasm | tools/lemon/Makefile.inc | BSD-2-Clause | 83abfe0c7248f9b81a1de8cdb88ca529679940c5 | github | assembler | https://github.com/yasm/yasm/blob/83abfe0c7248f9b81a1de8cdb88ca529679940c5/tools/lemon/Makefile.inc | 1 | 12 |
yasm/yasm:tools/python-yasm/Makefile.inc:1 | PYBINDING_DEPS = tools/python-yasm/bytecode.pxi
PYBINDING_DEPS += tools/python-yasm/errwarn.pxi
PYBINDING_DEPS += tools/python-yasm/expr.pxi
PYBINDING_DEPS += tools/python-yasm/floatnum.pxi
PYBINDING_DEPS += tools/python-yasm/intnum.pxi
PYBINDING_DEPS += tools/python-yasm/symrec.pxi
PYBINDING_DEPS += tools/python-yasm... | riscv | gas-like | handwritten | yasm/yasm | tools/python-yasm/Makefile.inc | BSD-2-Clause | a2f8bdf075bcad90a1b0a446080906ef6afe6847 | github | assembler | https://github.com/yasm/yasm/blob/a2f8bdf075bcad90a1b0a446080906ef6afe6847/tools/python-yasm/Makefile.inc | 1 | 60 |
yasm/yasm:tools/python-yasm/Makefile.inc:2 | # Actually run Cython
yasm_python.c: yasm.pyx _yasm.pxi $(PYBINDING_DEPS)
$(PYTHON) -c "from Cython.Compiler.Main import main; main(command_line=1)" \
-o $@ yasm.pyx
CLEANFILES += yasm_python.c
# Now the Python build magic...
python-setup.txt: Makefile
echo "includes=${DEFS} ${DEFAULT_INCLUDES} ${INCLUDES} ${AM_C... | riscv | gas-like | handwritten | yasm/yasm | tools/python-yasm/Makefile.inc | BSD-2-Clause | a2f8bdf075bcad90a1b0a446080906ef6afe6847 | github | assembler | https://github.com/yasm/yasm/blob/a2f8bdf075bcad90a1b0a446080906ef6afe6847/tools/python-yasm/Makefile.inc | 41 | 79 |
yasm/yasm:tools/python-yasm/Makefile.inc:1 | # $Id$
PYBINDING_DEPS = tools/python-yasm/bytecode.pxi
PYBINDING_DEPS += tools/python-yasm/errwarn.pxi
PYBINDING_DEPS += tools/python-yasm/expr.pxi
PYBINDING_DEPS += tools/python-yasm/floatnum.pxi
PYBINDING_DEPS += tools/python-yasm/intnum.pxi
PYBINDING_DEPS += tools/python-yasm/symrec.pxi
PYBINDING_DEPS += tools/pyt... | riscv | gas-like | handwritten | yasm/yasm | tools/python-yasm/Makefile.inc | BSD-2-Clause | fcb228f18cd5c1286e79ff3d0e7b6a299df76fc6 | github | assembler | https://github.com/yasm/yasm/blob/fcb228f18cd5c1286e79ff3d0e7b6a299df76fc6/tools/python-yasm/Makefile.inc | 1 | 60 |
yasm/yasm:tools/python-yasm/Makefile.inc:2 | CLEANFILES += yasm.pyx
# Actually run Cython
yasm_python.c: yasm.pyx _yasm.pxi $(PYBINDING_DEPS)
$(PYTHON) -c "from Cython.Compiler.Main import main; main(command_line=1)" \
-o $@ yasm.pyx
CLEANFILES += yasm_python.c
# Now the Python build magic...
python-setup.txt: Makefile
echo "includes=${DEFS} ${DEFAULT_INCL... | riscv | gas-like | handwritten | yasm/yasm | tools/python-yasm/Makefile.inc | BSD-2-Clause | fcb228f18cd5c1286e79ff3d0e7b6a299df76fc6 | github | assembler | https://github.com/yasm/yasm/blob/fcb228f18cd5c1286e79ff3d0e7b6a299df76fc6/tools/python-yasm/Makefile.inc | 41 | 81 |
yasm/yasm:tools/python-yasm/Makefile.inc:1 | # $Id$
PYBINDING_DEPS = tools/python-yasm/bytecode.pxi
PYBINDING_DEPS += tools/python-yasm/errwarn.pxi
PYBINDING_DEPS += tools/python-yasm/expr.pxi
PYBINDING_DEPS += tools/python-yasm/floatnum.pxi
PYBINDING_DEPS += tools/python-yasm/intnum.pxi
PYBINDING_DEPS += tools/python-yasm/symrec.pxi
PYBINDING_DEPS += tools/pyt... | riscv | gas-like | handwritten | yasm/yasm | tools/python-yasm/Makefile.inc | BSD-2-Clause | 65b18427f41294fef3193c4a5ed794d3a17c1e2a | github | assembler | https://github.com/yasm/yasm/blob/65b18427f41294fef3193c4a5ed794d3a17c1e2a/tools/python-yasm/Makefile.inc | 1 | 60 |
yasm/yasm:tools/python-yasm/Makefile.inc:2 | CLEANFILES += yasm.pyx
# Actually run Pyrex
yasm_python.c: yasm.pyx _yasm.pxi $(PYBINDING_DEPS)
$(PYTHON) -c "from Pyrex.Compiler.Main import main; main(command_line=1)" \
-o $@ yasm.pyx
CLEANFILES += yasm_python.c
# Now the Python build magic...
python-setup.txt: Makefile
echo "includes=${DEFS} ${DEFAULT_INCLUD... | riscv | gas-like | handwritten | yasm/yasm | tools/python-yasm/Makefile.inc | BSD-2-Clause | 65b18427f41294fef3193c4a5ed794d3a17c1e2a | github | assembler | https://github.com/yasm/yasm/blob/65b18427f41294fef3193c4a5ed794d3a17c1e2a/tools/python-yasm/Makefile.inc | 41 | 81 |
yasm/yasm:tools/python-yasm/Makefile.inc:1 | # $Id$
PYBINDING_DEPS = tools/python-yasm/bytecode.pxi
PYBINDING_DEPS += tools/python-yasm/errwarn.pxi
PYBINDING_DEPS += tools/python-yasm/expr.pxi
PYBINDING_DEPS += tools/python-yasm/floatnum.pxi
PYBINDING_DEPS += tools/python-yasm/intnum.pxi
PYBINDING_DEPS += tools/python-yasm/symrec.pxi
PYBINDING_DEPS += tools/pyt... | riscv | gas-like | handwritten | yasm/yasm | tools/python-yasm/Makefile.inc | BSD-2-Clause | 121de993202757ac3a5c2517f2aa80ec9816fd4d | github | assembler | https://github.com/yasm/yasm/blob/121de993202757ac3a5c2517f2aa80ec9816fd4d/tools/python-yasm/Makefile.inc | 1 | 60 |
yasm/yasm:tools/python-yasm/Makefile.inc:2 | CLEANFILES += yasm.pyx
# Actually run Pyrex
yasm_python.c: yasm.pyx _yasm.pxi $(PYBINDING_DEPS)
$(PYTHON) -c "from Pyrex.Compiler.Main import main; main(command_line=1)" \
-o $@ yasm.pyx
CLEANFILES += yasm_python.c
# Now the Python build magic...
python-setup.txt: Makefile
echo "includes=${DEFS} ${DEFAULT_INCLUD... | riscv | gas-like | handwritten | yasm/yasm | tools/python-yasm/Makefile.inc | BSD-2-Clause | 121de993202757ac3a5c2517f2aa80ec9816fd4d | github | assembler | https://github.com/yasm/yasm/blob/121de993202757ac3a5c2517f2aa80ec9816fd4d/tools/python-yasm/Makefile.inc | 41 | 81 |
yasm/yasm:tools/python-yasm/Makefile.inc:1 | # $Id$
PYBINDING_DEPS = tools/python-yasm/bytecode.pxi
PYBINDING_DEPS += tools/python-yasm/errwarn.pxi
PYBINDING_DEPS += tools/python-yasm/expr.pxi
PYBINDING_DEPS += tools/python-yasm/floatnum.pxi
PYBINDING_DEPS += tools/python-yasm/intnum.pxi
PYBINDING_DEPS += tools/python-yasm/symrec.pxi
PYBINDING_DEPS += tools/pyt... | riscv | gas-like | handwritten | yasm/yasm | tools/python-yasm/Makefile.inc | BSD-2-Clause | 5b88576b820627f9dc1f61963256b5c26325eca6 | github | assembler | https://github.com/yasm/yasm/blob/5b88576b820627f9dc1f61963256b5c26325eca6/tools/python-yasm/Makefile.inc | 1 | 60 |
yasm/yasm:tools/python-yasm/Makefile.inc:1 | # $Id$
PYBINDING_DEPS = tools/python-yasm/bytecode.pxi
PYBINDING_DEPS += tools/python-yasm/errwarn.pxi
PYBINDING_DEPS += tools/python-yasm/expr.pxi
PYBINDING_DEPS += tools/python-yasm/floatnum.pxi
PYBINDING_DEPS += tools/python-yasm/intnum.pxi
PYBINDING_DEPS += tools/python-yasm/symrec.pxi
PYBINDING_DEPS += tools/pyt... | riscv | gas-like | handwritten | yasm/yasm | tools/python-yasm/Makefile.inc | BSD-2-Clause | ee2c1b181a70141e52587b316eace00c0c3a9332 | github | assembler | https://github.com/yasm/yasm/blob/ee2c1b181a70141e52587b316eace00c0c3a9332/tools/python-yasm/Makefile.inc | 1 | 60 |
yasm/yasm:tools/python-yasm/Makefile.inc:1 | # $Id$
PYBINDING_DEPS = tools/python-yasm/bytecode.pxi
PYBINDING_DEPS += tools/python-yasm/errwarn.pxi
PYBINDING_DEPS += tools/python-yasm/expr.pxi
PYBINDING_DEPS += tools/python-yasm/floatnum.pxi
PYBINDING_DEPS += tools/python-yasm/intnum.pxi
PYBINDING_DEPS += tools/python-yasm/symrec.pxi
PYBINDING_DEPS += tools/pyt... | riscv | gas-like | handwritten | yasm/yasm | tools/python-yasm/Makefile.inc | BSD-2-Clause | 0c344700a719319c0f684a1874015d59b59374bf | github | assembler | https://github.com/yasm/yasm/blob/0c344700a719319c0f684a1874015d59b59374bf/tools/python-yasm/Makefile.inc | 1 | 60 |
yasm/yasm:tools/python-yasm/Makefile.inc:1 | # $Id$
PYBINDING_DEPS = tools/python-yasm/bytecode.pxi
PYBINDING_DEPS += tools/python-yasm/coretype.pxi
PYBINDING_DEPS += tools/python-yasm/errwarn.pxi
PYBINDING_DEPS += tools/python-yasm/expr.pxi
PYBINDING_DEPS += tools/python-yasm/floatnum.pxi
PYBINDING_DEPS += tools/python-yasm/intnum.pxi
PYBINDING_DEPS += tools/p... | arm64 | gas-like | handwritten | yasm/yasm | tools/python-yasm/Makefile.inc | BSD-2-Clause | b31c63e2e067a16cb568d7fdf179c2bb72032a07 | github | assembler | https://github.com/yasm/yasm/blob/b31c63e2e067a16cb568d7fdf179c2bb72032a07/tools/python-yasm/Makefile.inc | 1 | 55 |
yasm/yasm:tools/python-yasm/Makefile.inc:1 | # $Id$
PYBINDING_DEPS = tools/python-yasm/bytecode.pxi
PYBINDING_DEPS += tools/python-yasm/coretype.pxi
PYBINDING_DEPS += tools/python-yasm/errwarn.pxi
PYBINDING_DEPS += tools/python-yasm/expr.pxi
PYBINDING_DEPS += tools/python-yasm/floatnum.pxi
PYBINDING_DEPS += tools/python-yasm/intnum.pxi
PYBINDING_DEPS += tools/p... | arm64 | gas-like | handwritten | yasm/yasm | tools/python-yasm/Makefile.inc | BSD-2-Clause | 83b44f17d10797b789704afe9d9ccaf01975163f | github | assembler | https://github.com/yasm/yasm/blob/83b44f17d10797b789704afe9d9ccaf01975163f/tools/python-yasm/Makefile.inc | 1 | 55 |
yasm/yasm:tools/python-yasm/Makefile.inc:1 | # $Id$
PYBINDING_DEPS = tools/python-yasm/bytecode.pxi
PYBINDING_DEPS += tools/python-yasm/coretype.pxi
PYBINDING_DEPS += tools/python-yasm/errwarn.pxi
PYBINDING_DEPS += tools/python-yasm/expr.pxi
PYBINDING_DEPS += tools/python-yasm/floatnum.pxi
PYBINDING_DEPS += tools/python-yasm/intnum.pxi
PYBINDING_DEPS += tools/p... | arm64 | gas-like | handwritten | yasm/yasm | tools/python-yasm/Makefile.inc | BSD-2-Clause | 4c33af41ec62c5884c85117f91dce8a6a893b154 | github | assembler | https://github.com/yasm/yasm/blob/4c33af41ec62c5884c85117f91dce8a6a893b154/tools/python-yasm/Makefile.inc | 1 | 55 |
yasm/yasm:tools/python-yasm/Makefile.inc:1 | # $Id$
PYBINDING_DEPS = tools/python-yasm/bytecode.pxi
PYBINDING_DEPS += tools/python-yasm/coretype.pxi
PYBINDING_DEPS += tools/python-yasm/expr.pxi
PYBINDING_DEPS += tools/python-yasm/floatnum.pxi
PYBINDING_DEPS += tools/python-yasm/intnum.pxi
PYBINDING_DEPS += tools/python-yasm/symrec.pxi
PYBINDING_DEPS += tools/py... | arm64 | gas-like | handwritten | yasm/yasm | tools/python-yasm/Makefile.inc | BSD-2-Clause | 83535bec11260c03fe5a15092364dcb90edd9766 | github | assembler | https://github.com/yasm/yasm/blob/83535bec11260c03fe5a15092364dcb90edd9766/tools/python-yasm/Makefile.inc | 1 | 54 |
yasm/yasm:tools/python-yasm/Makefile.inc:1 | # $Id$
if HAVE_PYTHON
PYBINDING_DEPS = tools/python-yasm/bytecode.pxi
PYBINDING_DEPS += tools/python-yasm/coretype.pxi
PYBINDING_DEPS += tools/python-yasm/expr.pxi
PYBINDING_DEPS += tools/python-yasm/floatnum.pxi
PYBINDING_DEPS += tools/python-yasm/intnum.pxi
PYBINDING_DEPS += tools/python-yasm/symrec.pxi
PYBINDING_D... | arm64 | gas-like | handwritten | yasm/yasm | tools/python-yasm/Makefile.inc | BSD-2-Clause | 8909d99167629e059c417ed5a7d17272fb6b562b | github | assembler | https://github.com/yasm/yasm/blob/8909d99167629e059c417ed5a7d17272fb6b562b/tools/python-yasm/Makefile.inc | 1 | 50 |
yasm/yasm:tools/python-yasm/Makefile.inc:1 | # $Id$
if HAVE_PYTHON
PYBINDING_DEPS = tools/python-yasm/bytecode.pxi
PYBINDING_DEPS += tools/python-yasm/coretype.pxi
PYBINDING_DEPS += tools/python-yasm/expr.pxi
PYBINDING_DEPS += tools/python-yasm/floatnum.pxi
PYBINDING_DEPS += tools/python-yasm/intnum.pxi
PYBINDING_DEPS += tools/python-yasm/symrec.pxi
PYBINDING_D... | arm64 | gas-like | handwritten | yasm/yasm | tools/python-yasm/Makefile.inc | BSD-2-Clause | 8c82c94d1177aa1c143aa2bb09e3cb2cfa9b9e78 | github | assembler | https://github.com/yasm/yasm/blob/8c82c94d1177aa1c143aa2bb09e3cb2cfa9b9e78/tools/python-yasm/Makefile.inc | 1 | 50 |
yasm/yasm:tools/python-yasm/Makefile.inc:1 | # $Id$
if HAVE_PYTHON
PYBINDING_DEPS = tools/python-yasm/bytecode.pxi
PYBINDING_DEPS += tools/python-yasm/coretype.pxi
PYBINDING_DEPS += tools/python-yasm/expr.pxi
PYBINDING_DEPS += tools/python-yasm/floatnum.pxi
PYBINDING_DEPS += tools/python-yasm/intnum.pxi
PYBINDING_DEPS += tools/python-yasm/symrec.pxi
PYBINDING_D... | arm64 | gas-like | handwritten | yasm/yasm | tools/python-yasm/Makefile.inc | BSD-2-Clause | a79593f923e3267beb0b89dc7cdb77febfe64512 | github | assembler | https://github.com/yasm/yasm/blob/a79593f923e3267beb0b89dc7cdb77febfe64512/tools/python-yasm/Makefile.inc | 1 | 51 |
yasm/yasm:tools/python-yasm/Makefile.inc:1 | # $Id$
if HAVE_PYTHON
PYBINDING_DEPS = tools/python-yasm/bytecode.pxi
PYBINDING_DEPS += tools/python-yasm/coretype.pxi
PYBINDING_DEPS += tools/python-yasm/expr.pxi
PYBINDING_DEPS += tools/python-yasm/floatnum.pxi
PYBINDING_DEPS += tools/python-yasm/intnum.pxi
PYBINDING_DEPS += tools/python-yasm/symrec.pxi
PYBINDING_D... | arm64 | gas-like | handwritten | yasm/yasm | tools/python-yasm/Makefile.inc | BSD-2-Clause | b22db3f5cac96015a29449a968b1fcdb48d1fe93 | github | assembler | https://github.com/yasm/yasm/blob/b22db3f5cac96015a29449a968b1fcdb48d1fe93/tools/python-yasm/Makefile.inc | 1 | 50 |
yasm/yasm:tools/python-yasm/Makefile.inc:1 | # $Id$
if HAVE_PYTHON
PYBINDING_DEPS = tools/python-yasm/bytecode.pxi
PYBINDING_DEPS += tools/python-yasm/coretype.pxi
PYBINDING_DEPS += tools/python-yasm/expr.pxi
PYBINDING_DEPS += tools/python-yasm/floatnum.pxi
PYBINDING_DEPS += tools/python-yasm/intnum.pxi
PYBINDING_DEPS += tools/python-yasm/symrec.pxi
PYBINDING_D... | arm64 | gas-like | handwritten | yasm/yasm | tools/python-yasm/Makefile.inc | BSD-2-Clause | a5d91fba6a8f20465f6a8884207f98b241d993fe | github | assembler | https://github.com/yasm/yasm/blob/a5d91fba6a8f20465f6a8884207f98b241d993fe/tools/python-yasm/Makefile.inc | 1 | 49 |
yasm/yasm:tools/python-yasm/tests/Makefile.inc:1 | EXTRA_DIST += tools/python-yasm/tests/python_test.sh
EXTRA_DIST += tools/python-yasm/tests/__init__.py
EXTRA_DIST += tools/python-yasm/tests/test_bytecode.py
EXTRA_DIST += tools/python-yasm/tests/test_expr.py
EXTRA_DIST += tools/python-yasm/tests/test_intnum.py
EXTRA_DIST += tools/python-yasm/tests/test_symrec.py
if H... | riscv | gas-like | testsuite | yasm/yasm | tools/python-yasm/tests/Makefile.inc | BSD-2-Clause | a2f8bdf075bcad90a1b0a446080906ef6afe6847 | github | assembler | https://github.com/yasm/yasm/blob/a2f8bdf075bcad90a1b0a446080906ef6afe6847/tools/python-yasm/tests/Makefile.inc | 1 | 13 |
yasm/yasm:tools/python-yasm/tests/Makefile.inc:1 | # $Id$
EXTRA_DIST += tools/python-yasm/tests/python_test.sh
EXTRA_DIST += tools/python-yasm/tests/__init__.py
EXTRA_DIST += tools/python-yasm/tests/test_bytecode.py
EXTRA_DIST += tools/python-yasm/tests/test_expr.py
EXTRA_DIST += tools/python-yasm/tests/test_intnum.py
EXTRA_DIST += tools/python-yasm/tests/test_symrec.... | riscv | gas-like | testsuite | yasm/yasm | tools/python-yasm/tests/Makefile.inc | BSD-2-Clause | e774242fd1f86217192432df78f7ffc46fb792e2 | github | assembler | https://github.com/yasm/yasm/blob/e774242fd1f86217192432df78f7ffc46fb792e2/tools/python-yasm/tests/Makefile.inc | 1 | 15 |
yasm/yasm:tools/python-yasm/tests/Makefile.inc:1 | # $Id$
EXTRA_DIST += tools/python-yasm/tests/python_test.sh
EXTRA_DIST += tools/python-yasm/tests/__init__.py
EXTRA_DIST += tools/python-yasm/tests/test_bytecode.py
EXTRA_DIST += tools/python-yasm/tests/test_expr.py
EXTRA_DIST += tools/python-yasm/tests/test_intnum.py
EXTRA_DIST += tools/python-yasm/tests/test_symrec.... | riscv | gas-like | testsuite | yasm/yasm | tools/python-yasm/tests/Makefile.inc | BSD-2-Clause | 40816b2caf719c5427fa1f7b8f2c1ebe072d56f7 | github | assembler | https://github.com/yasm/yasm/blob/40816b2caf719c5427fa1f7b8f2c1ebe072d56f7/tools/python-yasm/tests/Makefile.inc | 1 | 15 |
yasm/yasm:tools/python-yasm/tests/Makefile.inc:1 | # $Id$
EXTRA_DIST += tools/python-yasm/tests/python_test.sh
EXTRA_DIST += tools/python-yasm/tests/__init__.py
EXTRA_DIST += tools/python-yasm/tests/test_intnum.py
EXTRA_DIST += tools/python-yasm/tests/test_symrec.py
if HAVE_PYTHON
TESTS_ENVIRONMENT += PYTHON=${PYTHON}
TESTS += tools/python-yasm/tests/python_test.sh
... | riscv | gas-like | testsuite | yasm/yasm | tools/python-yasm/tests/Makefile.inc | BSD-2-Clause | e4460d53340f3861dd975b5469bf8bb94b1d423e | github | assembler | https://github.com/yasm/yasm/blob/e4460d53340f3861dd975b5469bf8bb94b1d423e/tools/python-yasm/tests/Makefile.inc | 1 | 13 |
yasm/yasm:tools/python-yasm/tests/Makefile.inc:1 | # $Id$
EXTRA_DIST += tools/python-yasm/tests/python_test.sh
EXTRA_DIST += tools/python-yasm/tests/__init__.py
EXTRA_DIST += tools/python-yasm/tests/test_intnum.py
EXTRA_DIST += tools/python-yasm/tests/test_symrec.py
if HAVE_PYTHON
TESTS += tools/python-yasm/tests/python_test.sh
endif | riscv | gas-like | testsuite | yasm/yasm | tools/python-yasm/tests/Makefile.inc | BSD-2-Clause | 1d65f372c2e74bf5b75708f688dfadbb0efdad84 | github | assembler | https://github.com/yasm/yasm/blob/1d65f372c2e74bf5b75708f688dfadbb0efdad84/tools/python-yasm/tests/Makefile.inc | 1 | 12 |
yasm/yasm:tools/python-yasm/tests/Makefile.inc:1 | # $Id$
EXTRA_DIST += tools/python-yasm/tests/python_test.sh
EXTRA_DIST += tools/python-yasm/tests/__init__.py
EXTRA_DIST += tools/python-yasm/tests/test_symrec.py
if HAVE_PYTHON
TESTS += tools/python-yasm/tests/python_test.sh
endif | riscv | gas-like | testsuite | yasm/yasm | tools/python-yasm/tests/Makefile.inc | BSD-2-Clause | 83535bec11260c03fe5a15092364dcb90edd9766 | github | assembler | https://github.com/yasm/yasm/blob/83535bec11260c03fe5a15092364dcb90edd9766/tools/python-yasm/tests/Makefile.inc | 1 | 11 |
yasm/yasm:tools/re2c/Makefile.inc:1 | # These utility programs have to be built for BUILD host in cross-build.
# This makes things rather non-standard automake
noinst_PROGRAMS += re2c
re2c_SOURCES =
EXTRA_DIST += tools/re2c/main.c
EXTRA_DIST += tools/re2c/basics.h
EXTRA_DIST += tools/re2c/globals.h
EXTRA_DIST += tools/re2c/ins.h
EXTRA_DIST += tools/re2c/... | riscv | gas-like | handwritten | yasm/yasm | tools/re2c/Makefile.inc | BSD-2-Clause | a2f8bdf075bcad90a1b0a446080906ef6afe6847 | github | assembler | https://github.com/yasm/yasm/blob/a2f8bdf075bcad90a1b0a446080906ef6afe6847/tools/re2c/Makefile.inc | 1 | 60 |
yasm/yasm:tools/re2c/Makefile.inc:2 | re2c-code.$(OBJEXT): tools/re2c/code.c
$(CC_FOR_BUILD) $(CFLAGS_FOR_BUILD) $(DEFAULT_INCLUDES) $(INCLUDES) \
-c -o $@ `test -f tools/re2c/code.c || echo '$(srcdir)/'`tools/re2c/code.c
re2c-dfa.$(OBJEXT): tools/re2c/dfa.c
$(CC_FOR_BUILD) $(CFLAGS_FOR_BUILD) $(DEFAULT_INCLUDES) $(INCLUDES) \
-c -o $@ `test -f to... | riscv | gas-like | handwritten | yasm/yasm | tools/re2c/Makefile.inc | BSD-2-Clause | a2f8bdf075bcad90a1b0a446080906ef6afe6847 | github | assembler | https://github.com/yasm/yasm/blob/a2f8bdf075bcad90a1b0a446080906ef6afe6847/tools/re2c/Makefile.inc | 41 | 93 |
yasm/yasm:tools/re2c/Makefile.inc:3 | EXTRA_DIST += tools/re2c/doc/sample.bib
EXTRA_DIST += tools/re2c/examples/basemmap.c
EXTRA_DIST += tools/re2c/examples/c.re
EXTRA_DIST += tools/re2c/examples/cmmap.re
EXTRA_DIST += tools/re2c/examples/cnokw.re
EXTRA_DIST += tools/re2c/examples/cunroll.re
EXTRA_DIST += tools/re2c/examples/modula.re
EXTRA_DIST += tools/r... | riscv | gas-like | handwritten | yasm/yasm | tools/re2c/Makefile.inc | BSD-2-Clause | a2f8bdf075bcad90a1b0a446080906ef6afe6847 | github | assembler | https://github.com/yasm/yasm/blob/a2f8bdf075bcad90a1b0a446080906ef6afe6847/tools/re2c/Makefile.inc | 81 | 93 |
yasm/yasm:tools/re2c/Makefile.inc:1 | # $Id$
# These utility programs have to be built for BUILD host in cross-build.
# This makes things rather non-standard automake
noinst_PROGRAMS += re2c
re2c_SOURCES =
EXTRA_DIST += tools/re2c/main.c
EXTRA_DIST += tools/re2c/basics.h
EXTRA_DIST += tools/re2c/globals.h
EXTRA_DIST += tools/re2c/ins.h
EXTRA_DIST += too... | riscv | gas-like | handwritten | yasm/yasm | tools/re2c/Makefile.inc | BSD-2-Clause | 4e15ef1cc9e83edf0709b78e9e70f09901adab32 | github | assembler | https://github.com/yasm/yasm/blob/4e15ef1cc9e83edf0709b78e9e70f09901adab32/tools/re2c/Makefile.inc | 1 | 60 |
yasm/yasm:tools/re2c/Makefile.inc:2 | $(CC_FOR_BUILD) $(CFLAGS_FOR_BUILD) $(DEFAULT_INCLUDES) $(INCLUDES) \
-c -o $@ `test -f tools/re2c/main.c || echo '$(srcdir)/'`tools/re2c/main.c
re2c-code.$(OBJEXT): tools/re2c/code.c
$(CC_FOR_BUILD) $(CFLAGS_FOR_BUILD) $(DEFAULT_INCLUDES) $(INCLUDES) \
-c -o $@ `test -f tools/re2c/code.c || echo '$(srcdir)/'`t... | riscv | gas-like | handwritten | yasm/yasm | tools/re2c/Makefile.inc | BSD-2-Clause | 4e15ef1cc9e83edf0709b78e9e70f09901adab32 | github | assembler | https://github.com/yasm/yasm/blob/4e15ef1cc9e83edf0709b78e9e70f09901adab32/tools/re2c/Makefile.inc | 41 | 95 |
yasm/yasm:tools/re2c/Makefile.inc:3 | EXTRA_DIST += tools/re2c/bootstrap/scanner.c
EXTRA_DIST += tools/re2c/doc/loplas.ps.gz
EXTRA_DIST += tools/re2c/doc/sample.bib
EXTRA_DIST += tools/re2c/examples/basemmap.c
EXTRA_DIST += tools/re2c/examples/c.re
EXTRA_DIST += tools/re2c/examples/cmmap.re
EXTRA_DIST += tools/re2c/examples/cnokw.re
EXTRA_DIST += tools/re2... | riscv | gas-like | handwritten | yasm/yasm | tools/re2c/Makefile.inc | BSD-2-Clause | 4e15ef1cc9e83edf0709b78e9e70f09901adab32 | github | assembler | https://github.com/yasm/yasm/blob/4e15ef1cc9e83edf0709b78e9e70f09901adab32/tools/re2c/Makefile.inc | 81 | 95 |
yasm/yasm:tools/re2c/Makefile.inc:1 | # $Id$
# These utility programs have to be built for BUILD host in cross-build.
# This makes things rather non-standard automake
noinst_PROGRAMS += re2c
re2c_SOURCES =
EXTRA_DIST += tools/re2c/main.c
EXTRA_DIST += tools/re2c/basics.h
EXTRA_DIST += tools/re2c/globals.h
EXTRA_DIST += tools/re2c/ins.h
EXTRA_DIST += too... | riscv | gas-like | handwritten | yasm/yasm | tools/re2c/Makefile.inc | BSD-2-Clause | 36a4a6c3a302de569689c00ff0f87ecf144baa6b | github | assembler | https://github.com/yasm/yasm/blob/36a4a6c3a302de569689c00ff0f87ecf144baa6b/tools/re2c/Makefile.inc | 1 | 60 |
yasm/yasm:tools/re2c/Makefile.inc:2 | $(CC_FOR_BUILD) $(DEFAULT_INCLUDES) $(INCLUDES) -c -o $@ `test -f tools/re2c/main.c || echo '$(srcdir)/'`tools/re2c/main.c
re2c-code.$(OBJEXT): tools/re2c/code.c
$(CC_FOR_BUILD) $(DEFAULT_INCLUDES) $(INCLUDES) -c -o $@ `test -f tools/re2c/code.c || echo '$(srcdir)/'`tools/re2c/code.c
re2c-dfa.$(OBJEXT): tools/re2c/d... | riscv | gas-like | handwritten | yasm/yasm | tools/re2c/Makefile.inc | BSD-2-Clause | 36a4a6c3a302de569689c00ff0f87ecf144baa6b | github | assembler | https://github.com/yasm/yasm/blob/36a4a6c3a302de569689c00ff0f87ecf144baa6b/tools/re2c/Makefile.inc | 41 | 86 |
yasm/yasm:tools/re2c/Makefile.inc:1 | # $Id$
# These utility programs have to be built for BUILD host in cross-build.
# This makes things rather non-standard automake
noinst_PROGRAMS += re2c
re2c_SOURCES =
EXTRA_DIST += tools/re2c/main.c
EXTRA_DIST += tools/re2c/basics.h
EXTRA_DIST += tools/re2c/globals.h
EXTRA_DIST += tools/re2c/ins.h
EXTRA_DIST += too... | riscv | gas-like | handwritten | yasm/yasm | tools/re2c/Makefile.inc | BSD-2-Clause | be9368d872e5c318d3a2cb489a155801e35fb4b2 | github | assembler | https://github.com/yasm/yasm/blob/be9368d872e5c318d3a2cb489a155801e35fb4b2/tools/re2c/Makefile.inc | 1 | 60 |
yasm/yasm:tools/re2c/Makefile.inc:2 | re2c-code.$(OBJEXT): tools/re2c/code.c
$(CC_FOR_BUILD) $(DEFAULT_INCLUDES) $(INCLUDES) -c -o $@ `test -f tools/re2c/code.c || echo '$(srcdir)/'`tools/re2c/code.c
re2c-dfa.$(OBJEXT): tools/re2c/dfa.c
$(CC_FOR_BUILD) $(DEFAULT_INCLUDES) $(INCLUDES) -c -o $@ `test -f tools/re2c/dfa.c || echo '$(srcdir)/'`tools/re2c/dfa... | riscv | gas-like | handwritten | yasm/yasm | tools/re2c/Makefile.inc | BSD-2-Clause | be9368d872e5c318d3a2cb489a155801e35fb4b2 | github | assembler | https://github.com/yasm/yasm/blob/be9368d872e5c318d3a2cb489a155801e35fb4b2/tools/re2c/Makefile.inc | 41 | 100 |
yasm/yasm:tools/re2c/Makefile.inc:3 | mv y.output re2c-parser.output; \
fi
sed '/^#/ s|y\.tab\.c|re2c-parser.c|' y.tab.c >re2c-parser.ct && mv re2c-parser.ct re2c-parser.c
rm -f y.tab.c
re2c-parser.h: re2c-parser.c
@if test ! -f $@; then \
rm -f re2c-parser.c; \
$(MAKE) re2c-parser.c; \
else :; fi
BUILT_SOURCES += re2c-parser.c
BUILT_SOURCES +... | riscv | gas-like | handwritten | yasm/yasm | tools/re2c/Makefile.inc | BSD-2-Clause | be9368d872e5c318d3a2cb489a155801e35fb4b2 | github | assembler | https://github.com/yasm/yasm/blob/be9368d872e5c318d3a2cb489a155801e35fb4b2/tools/re2c/Makefile.inc | 81 | 120 |
yasm/yasm:tools/re2c/Makefile.inc:3 | mv y.output re2c-parser.output; \
fi
sed '/^#/ s|y\.tab\.c|re2c-parser.c|' y.tab.c >re2c-parser.ct && mv re2c-parser.ct re2c-parser.c
rm -f y.tab.c
re2c-parser.h: re2c-parser.c
@if test ! -f $@; then \
rm -f re2c-parser.c; \
$(MAKE) re2c-parser.c; \
else :; fi
BUILT_SOURCES += re2c-parser.c
BUILT_SOURCES +... | riscv | gas-like | handwritten | yasm/yasm | tools/re2c/Makefile.inc | BSD-2-Clause | 1702e9d8334c99843e633686e7210ba636e614bf | github | assembler | https://github.com/yasm/yasm/blob/1702e9d8334c99843e633686e7210ba636e614bf/tools/re2c/Makefile.inc | 81 | 121 |
yasm/yasm:tools/re2c/Makefile.inc:1 | # $Id$
# These utility programs have to be built for BUILD host in cross-build.
# This makes things rather non-standard automake
noinst_PROGRAMS += re2c cleanup
re2c_SOURCES =
EXTRA_DIST += tools/re2c/main.c
EXTRA_DIST += tools/re2c/basics.h
EXTRA_DIST += tools/re2c/globals.h
EXTRA_DIST += tools/re2c/ins.h
EXTRA_DIS... | riscv | gas-like | handwritten | yasm/yasm | tools/re2c/Makefile.inc | BSD-2-Clause | 90b7a5d9da922115ca50172e3b1da8303c862f44 | github | assembler | https://github.com/yasm/yasm/blob/90b7a5d9da922115ca50172e3b1da8303c862f44/tools/re2c/Makefile.inc | 1 | 60 |
yasm/yasm:tools/re2c/Makefile.inc:2 | re2c-code.$(OBJEXT): tools/re2c/code.c
$(CC_FOR_BUILD) $(DEFAULT_INCLUDES) $(INCLUDES) -c -o $@ `test -f tools/re2c/code.c || echo '$(srcdir)/'`tools/re2c/code.c
re2c-dfa.$(OBJEXT): tools/re2c/dfa.c
$(CC_FOR_BUILD) $(DEFAULT_INCLUDES) $(INCLUDES) -c -o $@ `test -f tools/re2c/dfa.c || echo '$(srcdir)/'`tools/re2c/dfa... | riscv | gas-like | handwritten | yasm/yasm | tools/re2c/Makefile.inc | BSD-2-Clause | 90b7a5d9da922115ca50172e3b1da8303c862f44 | github | assembler | https://github.com/yasm/yasm/blob/90b7a5d9da922115ca50172e3b1da8303c862f44/tools/re2c/Makefile.inc | 41 | 100 |
yasm/yasm:tools/re2c/Makefile.inc:3 | mv y.output re2c-parser.output; \
fi
sed '/^#/ s|y\.tab\.c|re2c-parser.c|' y.tab.c >re2c-parser.ct && mv re2c-parser.ct re2c-parser.c
rm -f y.tab.c
re2c-parser.h: re2c-parser.c
@if test ! -f $@; then \
rm -f re2c-parser.c; \
$(MAKE) re2c-parser.c; \
else :; fi
cleanup_SOURCES =
EXTRA_DIST += tools/re2c/cle... | riscv | gas-like | handwritten | yasm/yasm | tools/re2c/Makefile.inc | BSD-2-Clause | 90b7a5d9da922115ca50172e3b1da8303c862f44 | github | assembler | https://github.com/yasm/yasm/blob/90b7a5d9da922115ca50172e3b1da8303c862f44/tools/re2c/Makefile.inc | 81 | 129 |
yasm/yasm:tools/re2c/Makefile.inc:1 | # $Id$
# These utility programs have to be built for BUILD host in cross-build.
# This makes things rather non-standard automake
noinst_PROGRAMS += re2c cleanup
re2c_SOURCES =
EXTRA_DIST += tools/re2c/main.c
EXTRA_DIST += tools/re2c/basics.h
EXTRA_DIST += tools/re2c/globals.h
EXTRA_DIST += tools/re2c/ins.h
EXTRA_DIS... | riscv | gas-like | handwritten | yasm/yasm | tools/re2c/Makefile.inc | BSD-2-Clause | fd25e2545dc834c6c5fc7a9aa62f3d0368ba8ff9 | github | assembler | https://github.com/yasm/yasm/blob/fd25e2545dc834c6c5fc7a9aa62f3d0368ba8ff9/tools/re2c/Makefile.inc | 1 | 60 |
yasm/yasm:tools/re2c/Makefile.inc:2 | re2c-dfa.$(OBJEXT): tools/re2c/dfa.c
$(CC_FOR_BUILD) $(DEFAULT_INCLUDES) $(INCLUDES) -c -o $@ `test -f tools/re2c/dfa.c || echo '$(srcdir)/'`tools/re2c/dfa.c
re2c-parser.$(OBJEXT): re2c-parser.c
$(CC_FOR_BUILD) $(DEFAULT_INCLUDES) $(INCLUDES) -c -o $@ `test -f re2c-parser.c || echo '$(srcdir)/'`re2c-parser.c
re2c-a... | riscv | gas-like | handwritten | yasm/yasm | tools/re2c/Makefile.inc | BSD-2-Clause | fd25e2545dc834c6c5fc7a9aa62f3d0368ba8ff9 | github | assembler | https://github.com/yasm/yasm/blob/fd25e2545dc834c6c5fc7a9aa62f3d0368ba8ff9/tools/re2c/Makefile.inc | 41 | 100 |
yasm/yasm:tools/re2c/Makefile.inc:3 | @if test ! -f $@; then \
rm -f re2c-parser.c; \
$(MAKE) re2c-parser.c; \
else :; fi
cleanup_SOURCES =
EXTRA_DIST += tools/re2c/cleanup.c
cleanup_LDADD = cleanup.$(OBJEXT)
cleanup_LINK = $(CCLD_FOR_BUILD) -o $@
cleanup.$(OBJEXT): tools/re2c/cleanup.c
$(CC_FOR_BUILD) $(DEFAULT_INCLUDES) $(INCLUDES) -c -o $@ `te... | riscv | gas-like | handwritten | yasm/yasm | tools/re2c/Makefile.inc | BSD-2-Clause | fd25e2545dc834c6c5fc7a9aa62f3d0368ba8ff9 | github | assembler | https://github.com/yasm/yasm/blob/fd25e2545dc834c6c5fc7a9aa62f3d0368ba8ff9/tools/re2c/Makefile.inc | 81 | 122 |
yasm/yasm:tools/re2c/Makefile.inc:1 | # $Id$
# These utility programs have to be built for BUILD host in cross-build.
# This makes things rather non-standard automake
noinst_PROGRAMS += re2c cleanup
re2c_SOURCES =
EXTRA_DIST += tools/re2c/main.c
EXTRA_DIST += tools/re2c/basics.h
EXTRA_DIST += tools/re2c/globals.h
EXTRA_DIST += tools/re2c/ins.h
EXTRA_DIS... | riscv | gas-like | handwritten | yasm/yasm | tools/re2c/Makefile.inc | BSD-2-Clause | 1a86c340266f98dbcb03cee8de382431d916fde9 | github | assembler | https://github.com/yasm/yasm/blob/1a86c340266f98dbcb03cee8de382431d916fde9/tools/re2c/Makefile.inc | 1 | 60 |
yasm/yasm:tools/re2c/Makefile.inc:2 | re2c-dfa.$(OBJEXT): tools/re2c/dfa.c
$(CC_FOR_BUILD) $(DEFAULT_INCLUDES) $(INCLUDES) -c -o $@ `test -f tools/re2c/dfa.c || echo '$(srcdir)/'`tools/re2c/dfa.c
re2c-re2c-parser.$(OBJEXT): re2c-parser.c
$(CC_FOR_BUILD) $(DEFAULT_INCLUDES) $(INCLUDES) -c -o $@ `test -f re2c-parser.c || echo '$(srcdir)/'`re2c-parser.c
r... | riscv | gas-like | handwritten | yasm/yasm | tools/re2c/Makefile.inc | BSD-2-Clause | 1a86c340266f98dbcb03cee8de382431d916fde9 | github | assembler | https://github.com/yasm/yasm/blob/1a86c340266f98dbcb03cee8de382431d916fde9/tools/re2c/Makefile.inc | 41 | 100 |
yasm/yasm:tools/re2c/Makefile.inc:3 | CLEANFILES += re2c-parser.c
CLEANFILES += re2c-parser.h
EXTRA_DIST += tools/re2c/CHANGELOG
EXTRA_DIST += tools/re2c/NO_WARRANTY
EXTRA_DIST += tools/re2c/README
EXTRA_DIST += tools/re2c/scanner.re
EXTRA_DIST += tools/re2c/re2c.1
EXTRA_DIST += tools/re2c/bootstrap/re2c.man
EXTRA_DIST += tools/re2c/bootstrap/scanner.c
EX... | riscv | gas-like | handwritten | yasm/yasm | tools/re2c/Makefile.inc | BSD-2-Clause | 1a86c340266f98dbcb03cee8de382431d916fde9 | github | assembler | https://github.com/yasm/yasm/blob/1a86c340266f98dbcb03cee8de382431d916fde9/tools/re2c/Makefile.inc | 81 | 104 |
yasm/yasm:tools/re2c/Makefile.inc:1 | # $IdPath$
# These utility programs have to be built for BUILD host in cross-build.
# This makes things rather non-standard automake
noinst_PROGRAMS += re2c cleanup
re2c_SOURCES =
EXTRA_DIST += tools/re2c/main.c
EXTRA_DIST += tools/re2c/basics.h
EXTRA_DIST += tools/re2c/globals.h
EXTRA_DIST += tools/re2c/ins.h
EXTRA... | riscv | gas-like | handwritten | yasm/yasm | tools/re2c/Makefile.inc | BSD-2-Clause | f094f47abbd13b58dc7820b6c895f658a3a26ddc | github | assembler | https://github.com/yasm/yasm/blob/f094f47abbd13b58dc7820b6c895f658a3a26ddc/tools/re2c/Makefile.inc | 1 | 60 |
yasm/yasm:tools/re2c/Makefile.inc:1 | # $IdPath$
noinst_PROGRAMS += re2c cleanup
re2c_CFLAGS =
re2c_SOURCES = tools/re2c/main.c
re2c_SOURCES += tools/re2c/basics.h
re2c_SOURCES += tools/re2c/globals.h
re2c_SOURCES += tools/re2c/ins.h
re2c_SOURCES += tools/re2c/re.h
re2c_SOURCES += tools/re2c/token.h
re2c_SOURCES += tools/re2c/code.c
re2c_SOURCES += tool... | riscv | gas-like | handwritten | yasm/yasm | tools/re2c/Makefile.inc | BSD-2-Clause | 2edc4e2865e3407b4171deb49d1bc782e2f1718e | github | assembler | https://github.com/yasm/yasm/blob/2edc4e2865e3407b4171deb49d1bc782e2f1718e/tools/re2c/Makefile.inc | 1 | 51 |
yasm/yasm:tools/re2c/Makefile.inc:1 | # $IdPath$
noinst_PROGRAMS += re2c
re2c_CFLAGS =
re2c_SOURCES = tools/re2c/main.c
re2c_SOURCES += tools/re2c/basics.h
re2c_SOURCES += tools/re2c/globals.h
re2c_SOURCES += tools/re2c/ins.h
re2c_SOURCES += tools/re2c/re.h
re2c_SOURCES += tools/re2c/token.h
re2c_SOURCES += tools/re2c/code.c
re2c_SOURCES += tools/re2c/d... | riscv | gas-like | handwritten | yasm/yasm | tools/re2c/Makefile.inc | BSD-2-Clause | 823fb1b781f14ac354cc5d08202fb08357e82c0e | github | assembler | https://github.com/yasm/yasm/blob/823fb1b781f14ac354cc5d08202fb08357e82c0e/tools/re2c/Makefile.inc | 1 | 50 |
yasm/yasm:tools/re2c/Makefile.inc:1 | # $IdPath$
noinst_PROGRAMS += re2c
re2c_CFLAGS =
re2c_SOURCES = \
tools/re2c/basics.h \
tools/re2c/globals.h \
tools/re2c/ins.h \
tools/re2c/re.h \
tools/re2c/token.h \
tools/re2c/code.c \
tools/re2c/dfa.h \
tools/re2c/dfa.c \
tools/re2c/main.c \
tools/re2c/parse.h \
tools/re2c/re2c-parser.y \
... | riscv | gas-like | handwritten | yasm/yasm | tools/re2c/Makefile.inc | BSD-2-Clause | c998053da905232d6d266d9f4b9d8aecc6763e6f | github | assembler | https://github.com/yasm/yasm/blob/c998053da905232d6d266d9f4b9d8aecc6763e6f/tools/re2c/Makefile.inc | 1 | 54 |
yasm/yasm:tools/re2c/Makefile.inc:1 | # $IdPath$
noinst_PROGRAMS += re2c
re2c_SOURCES = \
tools/re2c/basics.h \
tools/re2c/globals.h \
tools/re2c/ins.h \
tools/re2c/re.h \
tools/re2c/token.h \
tools/re2c/code.c \
tools/re2c/dfa.h \
tools/re2c/dfa.c \
tools/re2c/re2c.c \
tools/re2c/parse.h \
tools/re2c/re2c-parser.y \
tools/re2c/act... | riscv | gas-like | handwritten | yasm/yasm | tools/re2c/Makefile.inc | BSD-2-Clause | 00497afd8f656f75eb88c37290f551e45810f4f4 | github | assembler | https://github.com/yasm/yasm/blob/00497afd8f656f75eb88c37290f551e45810f4f4/tools/re2c/Makefile.inc | 1 | 53 |
yasm/yasm:tools/re2c/Makefile.inc:1 | # $IdPath$
noinst_PROGRAMS += re2c
re2c_SOURCES = \
tools/re2c/basics.h \
tools/re2c/globals.h \
tools/re2c/ins.h \
tools/re2c/re.h \
tools/re2c/token.h \
tools/re2c/code.c \
tools/re2c/dfa.h \
tools/re2c/dfa.c \
tools/re2c/re2c.c \
tools/re2c/parse.h \
tools/re2c/re2c-parser.y \
tools/re2c/action... | riscv | gas-like | handwritten | yasm/yasm | tools/re2c/Makefile.inc | BSD-2-Clause | 6c7bb59857fe5c33473fcfd3fb5dfa8126d1f9c4 | github | assembler | https://github.com/yasm/yasm/blob/6c7bb59857fe5c33473fcfd3fb5dfa8126d1f9c4/tools/re2c/Makefile.inc | 1 | 53 |
yasm/yasm:tools/re2c/Makefile.inc:1 | # $IdPath$
AM_YFLAGS = -d
INCLUDES = -I$(top_srcdir)
noinst_PROGRAMS = re2c
re2c_SOURCES = \
basics.h \
globals.h \
ins.h \
re.h \
token.h \
code.c \
dfa.h \
dfa.c \
main.c \
parse.h \
parser.y \
actions.c \
scanner.h \
scanner.c \
substr.h \
substr.c \
translate.c
BUILT_SOURCES = \
parser... | riscv | gas-like | handwritten | yasm/yasm | tools/re2c/Makefile.inc | BSD-2-Clause | 9eedce2b89b546aea44595bad1bf0bb6ad5061ad | github | assembler | https://github.com/yasm/yasm/blob/9eedce2b89b546aea44595bad1bf0bb6ad5061ad/tools/re2c/Makefile.inc | 1 | 56 |
yasm/yasm:tools/re2c/Makefile.inc:1 | # $IdPath$
AM_YFLAGS = -d
INCLUDES = -I$(top_srcdir)
noinst_PROGRAMS = re2c
re2c_SOURCES = \
basics.h \
globals.h \
ins.h \
re.h \
token.h \
code.c \
dfa.h \
dfa.c \
main.c \
parse.h \
parser.y \
actions.c \
scanner.h \
scanner.c \
substr.h \
substr.c \
translate.c
BUILT_SOURCES = \
parser... | riscv | gas-like | handwritten | yasm/yasm | tools/re2c/Makefile.inc | BSD-2-Clause | 3bbc38508277e985ceb64cb53dcd64271a1c962d | github | assembler | https://github.com/yasm/yasm/blob/3bbc38508277e985ceb64cb53dcd64271a1c962d/tools/re2c/Makefile.inc | 1 | 55 |
yasm/yasm:tools/re2c/Makefile.inc:1 | # $IdPath$
AM_YFLAGS = -d
INCLUDES = -I$(top_srcdir)
noinst_PROGRAMS = re2c
re2c_SOURCES = \
basics.h \
globals.h \
ins.h \
re.h \
token.h \
code.c \
dfa.h \
dfa.c \
main.c \
parse.h \
parser.y \
actions.c \
scanner.h \
scanner.c \
substr.h \
substr.c \
translate.c
EXTRA_DIST = \
CHANGELOG... | riscv | gas-like | handwritten | yasm/yasm | tools/re2c/Makefile.inc | BSD-2-Clause | d11a29728350ed1e7e8c3e1cb750ae8e87bf12ff | github | assembler | https://github.com/yasm/yasm/blob/d11a29728350ed1e7e8c3e1cb750ae8e87bf12ff/tools/re2c/Makefile.inc | 1 | 47 |
yasm/yasm:tools/re2c/Makefile.inc:1 | # $IdPath$
AM_YFLAGS = -d
noinst_PROGRAMS = re2c
re2c_SOURCES = \
basics.h \
globals.h \
ins.h \
re.h \
token.h \
code.c \
dfa.h \
dfa.c \
main.c \
parse.h \
parser.y \
actions.c \
scanner.h \
scanner.c \
substr.h \
substr.c \
translate.c
EXTRA_DIST = \
CHANGELOG \
NO_WARRANTY \
README ... | riscv | gas-like | handwritten | yasm/yasm | tools/re2c/Makefile.inc | BSD-2-Clause | c23b8437d70dd3f55c06e7c7a456ce1391f48d0d | github | assembler | https://github.com/yasm/yasm/blob/c23b8437d70dd3f55c06e7c7a456ce1391f48d0d/tools/re2c/Makefile.inc | 1 | 45 |
zephyrproject-rtos/zephyr:arch/arc/core/cpu_idle.S:1 | /*
* Copyright (c) 2014 Wind River Systems, Inc.
*
* SPDX-License-Identifier: Apache-2.0
*/
/**
* @file
* @brief CPU power management
*
* CPU power management routines.
*/
#include <zephyr/kernel_structs.h>
#include <offsets_short.h>
#include <zephyr/toolchain.h>
#include <zephyr/linker/sections.h>
#include ... | arm | gas-like | handwritten | zephyrproject-rtos/zephyr | arch/arc/core/cpu_idle.S | Apache-2.0 | 5e802fe73d979b1e0aa9d675429be303a0d2e7b2 | github | rtos | https://github.com/zephyrproject-rtos/zephyr/blob/5e802fe73d979b1e0aa9d675429be303a0d2e7b2/arch/arc/core/cpu_idle.S | 1 | 60 |
zephyrproject-rtos/zephyr:arch/arc/core/cpu_idle.S:2 | PUSHR blink
jl sys_trace_idle
POPR blink
#endif
/* z_arc_cpu_sleep_mode is 32 bit despite of platform bittnes */
ld r1, [z_arc_cpu_sleep_mode]
or r1, r1, (1 << 4) /* set IRQ-enabled bit */
sleep r1
j_s [blink]
nop
#endif
#ifndef CONFIG_ARCH_HAS_CUSTOM_CPU_ATOMIC_IDLE
/*
* @brief Put the CPU in low-power m... | arm | gas-like | handwritten | zephyrproject-rtos/zephyr | arch/arc/core/cpu_idle.S | Apache-2.0 | 5e802fe73d979b1e0aa9d675429be303a0d2e7b2 | github | rtos | https://github.com/zephyrproject-rtos/zephyr/blob/5e802fe73d979b1e0aa9d675429be303a0d2e7b2/arch/arc/core/cpu_idle.S | 41 | 77 |
zephyrproject-rtos/zephyr:arch/arc/core/fast_irq.S:2 | *
* Assumption by _isr_demux: r3 is untouched by _firq_enter.
*/
SECTION_FUNC(TEXT, _firq_enter)
/*
* ATTENTION:
* If CONFIG_RGF_NUM_BANKS>1, firq uses a 2nd register bank so GPRs do
* not need to be saved.
* If CONFIG_RGF_NUM_BANKS==1, firq must use the stack to save registers.
* This has already been done by ... | arm64 | intel-like | handwritten | zephyrproject-rtos/zephyr | arch/arc/core/fast_irq.S | Apache-2.0 | 5e802fe73d979b1e0aa9d675429be303a0d2e7b2 | github | rtos | https://github.com/zephyrproject-rtos/zephyr/blob/5e802fe73d979b1e0aa9d675429be303a0d2e7b2/arch/arc/core/fast_irq.S | 41 | 100 |
zephyrproject-rtos/zephyr:arch/arc/core/fast_irq.S:3 | mov_s r0, sp
_get_curr_cpu_irq_stack sp
#if CONFIG_RGF_NUM_BANKS != 1
b firq_nest_1
firq_nest:
/*
* because firq and rirq share the same interrupt stack,
* switch back to original register bank to get correct sp.
* to get better firq latency, an approach is to prepare
* separate interrupt stack for firq and... | arm64 | intel-like | handwritten | zephyrproject-rtos/zephyr | arch/arc/core/fast_irq.S | Apache-2.0 | 5e802fe73d979b1e0aa9d675429be303a0d2e7b2 | github | rtos | https://github.com/zephyrproject-rtos/zephyr/blob/5e802fe73d979b1e0aa9d675429be303a0d2e7b2/arch/arc/core/fast_irq.S | 81 | 140 |
zephyrproject-rtos/zephyr:arch/arc/core/fast_irq.S:4 | firq_nest_1:
#else
firq_nest:
#endif
push_s r0
j _isr_demux
/**
* @brief Work to be done exiting a FIRQ
*/
SECTION_FUNC(TEXT, _firq_exit)
#if CONFIG_RGF_NUM_BANKS != 1
/* restore lp_count, lp_start, lp_end from r23-r25 */
mov lp_count,r23
sr r24, [_ARC_V2_LP_START]
sr r25, [_ARC_V2_LP_END]
#endif
_dec_int... | arm64 | intel-like | handwritten | zephyrproject-rtos/zephyr | arch/arc/core/fast_irq.S | Apache-2.0 | 5e802fe73d979b1e0aa9d675429be303a0d2e7b2 | github | rtos | https://github.com/zephyrproject-rtos/zephyr/blob/5e802fe73d979b1e0aa9d675429be303a0d2e7b2/arch/arc/core/fast_irq.S | 121 | 180 |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.