openkick: incomplete implementation of AmigaOS's exec.library

栏目: IT技术 · 发布时间: 4年前

内容简介:This is anOpenkick exists because I took one look atI feel that it wins on readability. It's got documentation, for a start :)

Openkick

This is an incomplete implementation of AmigaOS 's exec.library provided for educational purposes. You will not be able to get it to compile as-is, partly because it needs a very peculiar toolchain, but mostly because I have had to redact some of the code.

Why was this written?

Openkick exists because I took one look at AROS 's source code and didn't like the way it was still in 1980s-style C. AmigaOS is an object-oriented microkernel and those are all the rage these days, and I felt it would be instructive to implement it in a more modern language and style to see if the code would be more readable, faster, and/or smaller than original AmigaOS and/or AROS.

I feel that it wins on readability. It's got documentation, for a start :)

As for the generated code's size and performance, read on…

Why was this abandoned?

GCC sucking, basically. It's the only modern compiler that supports m68k, and its support is awful and getting worse with each new release. Further, AmigaOS's calling convention places the library base in A6 and parameters in other registers, whereas GCC wants to use A6 as the frame pointer and pass parameters on the stack which causes a number of issues:

  • Stack accesses require an nnn(%a7) operand, which adds an extension word (two bytes) per access to encode nnn . Registers such as the %a7 there are encoded in the instruction word itself. Not only does this make the code larger, but it adds extra memory accesses for the extension word and the data itself. (Pedants will no doubt point out that an extension word is not required when nnn is zero, but that's the return address and parameters start at 4(%a7) .)

  • Implementations of library functions must take register parameters. This requires either a thunk or a disgusting hack to trick GCC into believing parameters are magically already in registers. GCC's "optimiser" keeps breaking the hacks, and defeating it also makes the code much less optimal.

  • To call a library function requires temporarily moving the frame pointer out of the way so that the library base can be placed into A6. Again, more waste.

exec.library has 105 functions, and so adding a few tens of bytes per function quickly adds up to a several kilobytes, which weighs heavily on a library that's only about 13kB to start with. Clearly then, if this project were pushed through to completion, it would not fit in the space available in the ROM and would be slow.

Is this based on the recent AmigaOS source leak?

No. I started this way back in 2010 and poked at it occasionally until I pretty much gave up in 2013, well before the leak. It's written based on Commodore's published API documentation, AROS source, and disassembling Kickstart as a last resort if something was still unclear.

The existence of the leak merely prompted me to dig up this ancient code and publish it.

So what is there?

  • Hardware:

    • Bare metal early startup (Incomplete.)
    • CPU/FPU detection (up to 68020 as per v33.)
  • ROMWack:

    • All v33 functions except Debug() itself, e.g. RawDoFmt() , RawIOInit() .
  • Lists:

    Enqueue()
    
  • Memory:

    • RAM tests and arena initialisation.
    • All v33 functions, e.g. AllocAbs() , AvailMem() .
    • Some v39 extensions such as MEMF_KICK .
    • Some extra debugging/test hooks.
  • Libraries:

    • ROMTag scanning and automatic library initialisation.
    • All v33 functions, e.g. SetFunction() , OpenLibrary() .
  • Tasks:

    • Stub dummy task to keep UAE debugger sweet.
  • Redacted:

    • Custom test.hook to bring up a framebuffer and print diagnostics, since it embeds topaz.font.

Will this ever be restarted and completed?

Maybe, if LLVM ever gains reasonable m68k support. Don't hold your breath.


以上就是本文的全部内容,希望对大家的学习有所帮助,也希望大家多多支持 码农网

查看所有标签

猜你喜欢:

本站部分资源来源于网络,本站转载出于传递更多信息之目的,版权归原作者或者来源机构所有,如转载稿涉及版权问题,请联系我们

智能主义

智能主义

周鸿祎 / 中信出版集团股份有限公司 / 2016-11-1 / CNY 49.00

大数据和人工智能迅猛发展,对社会和商业的影响日益深刻,从学术界到企业界,智能化时代必将来临,已经成为共识。而此次变革,将会开启新一轮的发展浪潮。企业家、互联网以及传统企业、个人,应当如何理解这一轮的发展,如何行动以抓住智能化所带来的众多机遇,成为所有人持之以恒的关注热点。 周鸿祎作为最具洞察力的互联网老兵、人工智能领域成功的先行者,通过总结360公司的战略布局、产品规划、方法论实践,从思想到......一起来看看 《智能主义》 这本书的介绍吧!

SHA 加密
SHA 加密

SHA 加密工具

UNIX 时间戳转换
UNIX 时间戳转换

UNIX 时间戳转换

正则表达式在线测试
正则表达式在线测试

正则表达式在线测试