mirror of
https://github.com/asmjit/asmjit.git
synced 2025-12-17 20:44:37 +03:00
- Compiler no longer works on its own, it requires Assembler. - Labels created by Assembler and Compiler now share their IDs, so they can be used nearly interchangeably without weird side-effects and hacks. - Renamed getError() and setError() to getLastError() and setLastError(). - Renamed compiler nodes to "HL" nodes (preparation for HLStream). - Renamed FuncConv to CallConv. - Function calling convention is now part of FuncPrototype. - Added a possibility to align by inserting zeros (kAlignZero) - Fixed assertion in X86Compiler that didn't like unhandled function argument(s). - Added Compiler::embedConstPool() helper, which can be handy if you use your own ConstPool. - Code refactorization and other minor changes. - CpuTicks::now() renamed to Utils::getTickCount(). - error.h merged with globals.h - Documentation updates related to recent API changes.
17 lines
291 B
JavaScript
17 lines
291 B
JavaScript
module.exports = {
|
|
product: "asmjit",
|
|
version: "1.0.0",
|
|
|
|
prefix: "ASMJIT",
|
|
source: "src/asmjit",
|
|
|
|
tools: {
|
|
NoTabs : true,
|
|
NoTrailingLines : true,
|
|
NoTrailingSpaces: true,
|
|
UnixEOL : true,
|
|
SortIncludes : true,
|
|
ExpandTemplates : true
|
|
}
|
|
};
|