This project contains two programs:
blink
is a virtual machine that runs x86-64-linux programs on
different operating systems and hardware architectures. It's designed to
do the same thing as the qemu-x86_64
command, except that
Blink is 221kb in size (115kb with optional features disabled), whereas qemu-x86_64 is a 4mb binary.
Blink will run your Linux binaries on any POSIX system, whereas qemu-x86_64 only supports Linux.
Blink goes 2x faster than qemu-x86_64 on some benchmarks, such as SSE integer / floating point math. Blink is also much faster at running ephemeral programs such as compilers.
blinkenlights
is a terminal user
interface that may be used for debugging x86_64-linux or i8086 programs
across platforms. Unlike GDB, Blinkenlights focuses on visualizing
program execution. It uses UNICODE IBM Code Page 437 characters to
display binary memory panels, which change as you step through your
program's assembly code. These memory panels may be scrolled and zoomed
using your mouse wheel. Blinkenlights also permits reverse debugging,
where scroll wheeling over the assembly display allows the rewinding of
execution history.
We regularly test that Blink is able run x86-64-linux binaries on the following platforms:
Blink depends on the following libraries:
Blink can be compiled on UNIX systems that have:
The instructions for compiling Blink are as follows:
./configure make -j4 doas make install # note: doas is modern sudo blink -v man blink
Here's how you can run a simple hello world program with Blink:
blink third_party/cosmo/tinyhello.elf
Blink has a debugger TUI, which works with UTF-8 ANSI terminals. The
most important keystrokes in this interface are ?
for help, s
for
step, c
for continue, and scroll wheel for reverse debugging.
blinkenlights third_party/cosmo/tinyhello.elf
For maximum tinyness, use MODE=tiny
, since it makes Blink's binary
footprint 50% smaller. The Blink executable should be on the order of
200kb in size. Performance isn't impacted. Please note that all
assertions will be removed, as well as all logging. Use this mode if
you're confident that Blink is bug-free for your use case.
make MODE=tiny strip o/tiny/blink/blink ls -hal o/tiny/blink/blink
Some distros configure their compilers to add a lot of security bloat, which might add 60kb or more to the above binary size. You can work around that by using one of Blink's toolchains. This should produce consistently the smallest possible executable size.
make MODE=tiny o/tiny/x86_64/blink/blink o/third_party/gcc/x86_64/bin/x86_64-linux-musl-strip o/tiny/x86_64/blink/blink ls -hal o/tiny/x86_64/blink/blink
If you want to make Blink even tinier (more on the order of 120kb
rather than 200kb) than you can tune the ./configure
script to disable
optional features such as jit, threads, sockets, x87, bcd, xsi, etc.
./configure --disable-all --posix make MODE=tiny o/tiny/x86_64/blink/blink o/third_party/gcc/x86_64/bin/x86_64-linux-musl-strip o/tiny/x86_64/blink/blink ls -hal o/tiny/x86_64/blink/blink
The traditional MODE=rel
or MODE=opt
modes are available. Use this
mode if you're on a non-JIT architecture (since this won't improve
performance on AMD64 and ARM64) and you're confident that Blink is
bug-free for your use case, and would rather have Blink not create a
blink.log
or print SIGSEGV
delivery warnings to standard error,
since many apps implement their own crash reporting.
make MODE=rel o/rel/blink/blink -h
You can hunt down bugs in Blink using the following build modes:
MODE=asan
helps find memory safety bugsMODE=tsan
helps find threading related bugsMODE=ubsan
to find violations of the C standardMODE=msan
helps find uninitialized memory errorsYou can check Blink's compliance with the POSIX standard using the following configuration flags:
./configure --posix # only use c11 with posix xopen standard
If you want to run a full chroot
'd Linux distro and require correct
handling of absolute symlinks, displaying of certain values in /proc
,
and so on, and you don't mind paying a small price in terms of size
and performance, you can enable the emulated VFS feature by using
the following configuration:
./configure --enable-vfs
Blink is tested primarily using precompiled binaries downloaded automatically. Blink has more than 700 test programs total. You can check how well Blink works on your local platform by running:
make check
To check that Blink works on 11 different hardware $(ARCHITECTURES)
(see Makefile), you can run the following command, which
will download statically-compiled builds of GCC and Qemu. Since our
toolchain binaries are intended for x86-64 Linux, Blink will bootstrap
itself locally first, so that it's possible to run these tests on other
operating systems and architectures.
make check2 make emulates
Blink passes 194 test suites from the Cosmopolitan Libc project (see third_party/cosmo). Blink passes 350 test suites from the Linux Test Project (see third_party/ltp). Blink passes 108 of Musl Libc's unit test suite (see third_party/libc-test). The tests we haven't included are because either (1) it wanted x87 long double to have 80-bit precision, or (2) it used Linux APIs we can't or won't support, e.g. System V message queues. Blink runs the precompiled Linux test binaries above on other operating systems too, e.g. Apple M1, FreeBSD, Cygwin.
The Blinkenlights project provides two programs which may be launched on the command line.
blink
FlagsThe headless Blinkenlights virtual machine command (named blink
by
convention) accepts command line arguments per the specification:
blink [FLAG...] PROGRAM [ARG...]
Where PROGRAM
is an x86_64-linux binary that may be specified as:
$PATH
searchedThe following FLAG
arguments are provided:
-h
shows help on command usage
-v
shows version and build configuration details
-e
means log to standard error (fd 2) in addition to the log file.
If logging to only standard error is desired, then -eL/dev/null
may be used.
-j
disables Just-In-Time (JIT) compilation, which will make Blink go
~10x slower.
-m
disables the linear memory optimization. This makes Blink memory
safe, but comes at the cost of going ~4x slower. On some platforms
this can help avoid the possibility of an mmap() crisis.
-0
allows argv[0]
to be specified on the command line. Under
normal circumstances, blink cmd arg1
is equivalent to execve("cmd", {"cmd", "arg1"})
since that's how most programs are launched. However
if you need the full power of execve() process spawning, you can say
blink -0 cmd arg0 arg1
which is equivalent to execve("cmd", {"arg0", "arg1"})
.
-L PATH
specifies the log path. The default log path is blink.log
in the current directory at startup. This log file won't be created
until something is actually logged. If logging to a file isn't
desired, then -L /dev/null
may be used. See also the -e
flag for
logging to standard error.
-s
enables system call logging. This will emit to the log file the
names of system calls each time a SYSCALL instruction in executed,
along with its arguments and result. System calls are logged once
they've completed. If this option is specified twice, then system
calls which are likely to block (e.g. poll) will be logged at entry
too. If this option is specified thrice, then all cancellation points
will be logged upon entry. System call logging isn't available in
MODE=rel
and MODE=tiny
builds, in which case this flag is ignored.
-Z
will cause internal statistics to be printed to standard error on
exit. Stats aren't available in MODE=rel
and MODE=tiny
builds, and
this flag is ignored.
-C path
will cause blink to launch the program in a chroot'd
environment. This flag is both equivalent to and overrides the
BLINK_OVERLAYS
environment variable. Note: This flag works
especially well if you use ./configure --enable-vfs
.
blinkenlights
FlagsThe Blinkenlights ANSI TUI interface command (named blinkenlights
by
convention) accepts its command line arguments in accordance with the
following specification:
blinkenlights [FLAG...] PROGRAM [ARG...]
Where PROGRAM
is an x86_64-linux binary that may be specified as:
$PATH
searchedThe following FLAG
arguments are provided:
-h
shows help on command usage
-v
shows version and build configuration details
-r
puts your virtual machine in real mode. This may be used to run
16-bit i8086 programs, such as SectorLISP. It's also used for booting
programs from Blinkenlights's simulated BIOS.
-b ADDR
pushes a breakpoint, which may be specified as a raw
hexadecimal address, or a symbolic name that's defined by your ELF
binary (or its associated .dbg
file). When pressing c
(continue)
or C
(continue harder) in the TUI, Blink will immediately stop upon
reaching an instruction that's listed as a breakpoint, after which a
modal dialog is displayed. The modal dialog may be cleared by ENTER
after which the TUI resumes its normal state.
-w ADDR
pushes a watchpoint, which may be specified as a raw
hexadecimal address, or a symbolic name that's defined by your ELF
binary (or its associated .dbg
file). When pressing c
(continue)
or C
(continue harder) in the TUI, Blink will immediately stop upon
reaching an instruction that either (a) has a ModR/M encoding that
references an address that's listed as a watchpoint, or (b) manages to
mutate the memory stored at a watchpoint address by some other means.
When Blinkenlights is stopped at a watchpoint, a modal dialog will be
displayed which may be cleared by pressing ENTER
, after which the
TUI resumes its normal state.
-j
enables Just-In-Time (JIT) compilation. This will make
Blinkenlights go significantly faster, at the cost of taking away the
ability to step through each instruction. The TUI will visualize JIT
path formation in the assembly display; see the JIT Path Glyphs
section below to learn more. Please note this flag has the opposite
meaning as it does in the blink
command.
-m
enables the linear memory optimization. This makes blinkenlights
capable of faster emulation, at the cost of losing some statistics. It
no longer becomes possible to display which percentage of a memory map
has been activated. Blinkenlights will also remove the commit /
reserve / free page statistics from the status panel on the bottom
right of the display. Please note this flag has the opposite meaning
as it does in the blink
command.
-t
may be used to disable Blinkenlights TUI mode. This makes the
program behave similarly to the blink
command, however not as good.
We're currently using this flag for unit testing real mode programs,
which are encouraged to use the SYSCALL
instruction to report their
exit status.
-L PATH
specifies the log path. The default log path is
$TMPDIR/blink.log
or /tmp/blink.log
if $TMPDIR
isn't defined.
-C path
will cause blink to launch the program in a chroot'd
environment. This flag is both equivalent to and overrides the
BLINK_OVERLAYS
environment variable.
-s
enables system call logging. This will emit to the log file the
names of system calls each time a SYSCALL instruction in executed,
along with its arguments and result. System calls are logged once
they've completed. If this option is specified twice, then system
calls which are likely to block (e.g. poll) will be logged at entry
too. If this option is specified thrice, then all cancellation points
will be logged upon entry. System call logging isn't available in
MODE=rel
and MODE=tiny
builds, in which case this flag is ignored.
-Z
will cause internal statistics to be printed to standard error on
exit. Each line will display a monitoring metric. Most metrics will
either be integer counters or floating point running averages. Most
but not all integer counters are monotonic. In the interest of not
negatively impacting Blink's performance, statistics are computed on a
best effort basis which currently isn't guaranteed to be atomic in a
multi-threaded environment. Stats aren't available in MODE=rel
and
MODE=tiny
builds, and this flag is ignored.
-z
[repeatable] may be specified to zoom the memory panels, so they
display a larger amount of memory in a smaller space. By default, one
terminal cell corresponds to a single byte of memory. When memory has
been zoomed the magic kernel is used (similar to Lanczos) to decimate
the number of bytes by half, for each -z
that's specified. Normally
this would be accomplished by using CTRL+MOUSEWHEEL
where the mouse
cursor is hovered over the panel that should be zoomed. However, many
terminal emulators (especially on Windows), do not support this xterm
feature and as such, this flag is provided as an alternative.
-V
[repeatable] increases verbosity
-R
disables reactive error mode
-H
disables syntax highlighting
-N
enables natural scrolling
Blinkenlights' TUI requires a UTF-8 VT100 / XTERM style terminal to use. We recommend the following terminals, ordered by preference:
The following fonts are recommended, ordered by preference:
When the Blinkenlights TUI is run with JITing enabled (using the -j
flag) the assembly dump display will display a glyph next to the address
of each instruction, to indicate the status of JIT path formation. Those
glyphs are defined as follows:
or space indicates no JIT path is associated with an address
S
means that a JIT path is currently being constructed which
starts at this address. By continuing to press s
(step) in the TUI
interface, the JIT path will grow longer until it is eventually
completed, and the S
glyph is replaced by *
.
*
(asterisk) means that a JIT path has been installed to the
adjacent address. When s
(step) is pressed at such addresses
within the TUI display, stepping takes on a different meaning.
Rather than stepping a single instruction, it will step the entire
length of the JIT path. The next assembly line that'll be
highlighted will be the instruction after where the path
一键生成PPT和Word,让学习生活更轻松
讯飞智文是一个利用 AI 技术的项目,能够帮助用户生成 PPT 以及各类文档。无论是商业领域的市场分析报告、年度目标制定,还是学生群体的职业生涯规 划、实习避坑指南,亦或是活动策划、旅游攻略等内容,它都能提供支持,帮助用户精准表达,轻松呈现各种信息。
深度推理能力全新升级,全面对标OpenAI o1
科大讯飞的星火大模型,支持语言理解、知识问答和文本创作等多功能,适用于多种文件和业务场景,提升办公和日常生活的效率。讯飞星火是一个提供丰富智能服务的平台,涵盖科技资讯、图像创作、写作辅助、编程解答、科研文献解读等功能,能为不同需求的用户提供便捷高效的帮助,助力用户轻松获取信息、解决问题,满足多样化使用场景。
一种基于大语言模型的高效单流解耦语音令牌文本到语音合成模型
Spark-TTS 是一个基于 PyTorch 的开源文本到语音合成项目,由多个知名机构联合参与。该项目提供了高效的 LLM(大语言模型)驱动的语音合成方案,支持语音克隆和语音创建功能,可通过命令行界面(CLI)和 Web UI 两种方式使用。用户可以根据需求调整语音的性别、音高、速度等参数,生成高质量的语音。该项目适用于多种场景,如有声读物制作、智能语音助手开发等。
字节跳动发布的AI编程神器IDE
Trae是一种自适应的集成开发环境(IDE),通过自动化和多元协作改变开发流程。利用Trae,团队能够更快速、精确地编写和部署代码,从而提高编程效率和项目交付速度。Trae具备上下文感知和代码自动完成功能,是提升开发效率的理想工具。
AI助力,做PPT更简单!
咔片是一款轻量化在线演示设计工具,借助 AI 技术,实现从内容生成到智能设计的一站式 PPT 制作服务。支持多种文档格式导入生成 PPT,提供海量模板、智能美化、素材替换等功能,适用于销售、教师、学生等各类人群,能高效制作出高品质 PPT,满足不同场景演示需求。
选题、配图、成文,一站式创作,让内容运营更高效
讯飞绘文,一个AI集成平台,支持写作、选题、配图、排版和发布。高效生成适用于各类媒体的定制内容,加速品牌传播,提升内容营销效果。
专业的AI公文写作平台,公文写作神器
AI 材料星,专业的 AI 公文写作辅助平台,为体制内工作人员提供高效的公文写作解决方案。拥有海量公文文库、9 大核心 AI 功能,支持 30 + 文稿类型生成,助力快速完成领导讲话、工作总结、述职报告等材料,提升办公效率,是体制打工人的得力写作神器。
OpenAI Agents SDK,助力开发者便捷使用 OpenAI 相关功能。
openai-agents-python 是 OpenAI 推出的一款强大 Python SDK,它为开发者提供了与 OpenAI 模型交互的高效工具,支持工具调用、结果处理、追踪等功能,涵盖多种应用场景,如研究助手、财务研究等,能显著提升开发效率,让开发者更轻松地利用 OpenAI 的技术优势。
高分辨率纹理 3D 资产生成
Hunyuan3D-2 是腾讯开发的用于 3D 资产生成的强大工具,支持从文本描述、单张图片或多视角图片生成 3D 模型,具备快速形状生成能力,可生成带纹理的高质量 3D 模型,适用于多个领域,为 3D 创作提供了高效解决方案。
一个具备存储、管理和客户端操作等多种功能的分布式文件系统相关项目。
3FS 是一个功能强大的分布式文件系统项目,涵盖了存储引擎、元数据管理、客户端工具等多个模块。它支持多种文件操作,如创建文件和目录、设置布局等,同时具备高效的事件循环、节点选择和协程池管理等特性。适用于需要大规模数据存储和管理的场景,能够提高系统的性能和可靠性,是分布式存储领域的优质解决方案。
最新AI工具、AI资讯
独家AI资源、AI项目落地
微信扫一扫关注公众号