openkick: incomplete implementation of AmigaOS's exec.library

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

内容简介: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.


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

查看所有标签

猜你喜欢:

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

Vue.js前端开发

Vue.js前端开发

陈陆扬 / 人民邮电出版社 / 2017-2-1 / CNY 45.00

本书分为10章,包括简介、基础特性、指令、过滤器、过渡、组件、状态管理、常用插件、工程实例和Weex打包。本书从简单的单个实例和基础语法,到工程实例,将系统地讲述Vue.js在项目中的适用场景和具体操作。本书的特点在于案例详实,使读者体会到框架的优点和便捷之处,提升开发效率,最后能将Vue.js运用到实际项目中,避免纸上谈兵的尴尬。一起来看看 《Vue.js前端开发》 这本书的介绍吧!

图片转BASE64编码
图片转BASE64编码

在线图片转Base64编码工具

html转js在线工具
html转js在线工具

html转js在线工具

HSV CMYK 转换工具
HSV CMYK 转换工具

HSV CMYK互换工具