-
Notifications
You must be signed in to change notification settings - Fork 45
Initial exploration around JIT #240
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Draft
ClementWalter
wants to merge
1
commit into
kkrt-labs:main
Choose a base branch
from
ClementWalter:cw/jit
base: main
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Draft
Changes from all commits
Commits
File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,199 @@ | ||
from starkware.cairo.common.alloc import alloc | ||
from starkware.cairo.common.registers import get_label_location | ||
from starkware.cairo.lang.compiler.lib.registers import get_fp_and_pc | ||
|
||
// Compiled Instructions | ||
const CALL_ABS = 0x1084800180018000; | ||
|
||
// Modified return instruction to update the offset of return_pc. | ||
// Putting an offset >= 0 let's dynamically chose where to return. | ||
// Offset = -1 is the default ret opcode. | ||
const RET_HIGH = 0x208b7fff; | ||
const RET_LOW = 0x7fff7ffe; | ||
const RET = RET_HIGH * 256 ** 4 + RET_LOW; | ||
const RET_0 = (RET_HIGH + 1) * 256 ** 4 + RET_LOW; | ||
|
||
// Bytecode Opcode | ||
const OP_JUMP4 = 0; | ||
const OP_RET = 1; | ||
const OP_PUSH = 2; | ||
const OP_PC = 3; | ||
const OP_CALL = 4; | ||
const OP_ADD = 5; | ||
const OP_MUL = 6; | ||
|
||
func compile(input: felt, code_len: felt, code_ptr: felt*) -> ( | ||
compiled_code_len: felt, compiled_code_ptr: felt* | ||
) { | ||
alloc_locals; | ||
let (local op: felt*) = get_label_location(opcodes_location); | ||
let (local compiled_code) = alloc(); | ||
if (code_len == 0) { | ||
return (0, compiled_code); | ||
} | ||
|
||
tempvar i = 0; | ||
tempvar compiled_code = compiled_code; | ||
|
||
loop: | ||
let i = [ap - 2]; | ||
let compiled_code = cast([ap - 1], felt*); | ||
|
||
let code_len = [fp - 4]; | ||
let code = cast([fp - 3], felt*); | ||
let op = cast([fp], felt*); | ||
|
||
tempvar opcode_number = code[i]; | ||
assert [compiled_code] = CALL_ABS; | ||
assert [compiled_code + 1] = cast(op + 2 * opcode_number + op[2 * opcode_number + 1], felt); | ||
|
||
tempvar is_push = opcode_number - OP_PUSH; | ||
jmp not_push if is_push != 0; | ||
|
||
push: | ||
assert [compiled_code + 3] = code[i + 1]; | ||
tempvar stop = code_len - i - 2; | ||
tempvar i = i + 2; | ||
tempvar compiled_code = compiled_code + 4; | ||
jmp loop if stop != 0; | ||
jmp end; | ||
|
||
not_push: | ||
tempvar stop = code_len - i - 1; | ||
tempvar i = i + 1; | ||
tempvar compiled_code = compiled_code + 2; | ||
|
||
static_assert i == [ap - 2]; | ||
static_assert compiled_code == [ap - 1]; | ||
jmp loop if stop != 0; | ||
jmp end; | ||
|
||
end: | ||
let i = [ap - 2]; | ||
let compiled_code = cast([ap - 1], felt*); | ||
assert [compiled_code] = RET; | ||
|
||
let compiled_code = cast([fp + 1], felt*); | ||
|
||
return (i, compiled_code); | ||
} | ||
|
||
func main() { | ||
alloc_locals; | ||
|
||
let (bytecode_start) = alloc(); | ||
let bytecode = bytecode_start; | ||
assert [bytecode] = OP_JUMP4; | ||
let bytecode = bytecode + 1; | ||
assert [bytecode] = OP_RET; | ||
let bytecode = bytecode + 1; | ||
assert [bytecode] = OP_RET; | ||
let bytecode = bytecode + 1; | ||
assert [bytecode] = OP_RET; | ||
let bytecode = bytecode + 1; | ||
assert [bytecode] = OP_RET; | ||
let bytecode = bytecode + 1; | ||
assert [bytecode] = OP_PUSH; | ||
let bytecode = bytecode + 1; | ||
assert [bytecode] = OP_PC; | ||
let bytecode = bytecode + 1; | ||
assert [bytecode] = OP_PC; | ||
let bytecode = bytecode + 1; | ||
assert [bytecode] = OP_CALL; | ||
let bytecode = bytecode + 1; | ||
assert [bytecode] = OP_ADD; | ||
let bytecode = bytecode + 1; | ||
assert [bytecode] = OP_MUL; | ||
let bytecode = bytecode + 1; | ||
assert [bytecode] = OP_RET; | ||
|
||
tempvar input = 0xdead; | ||
let (compiled_code_len, compiled_code_ptr) = compile( | ||
input, bytecode - bytecode_start, bytecode_start | ||
); | ||
|
||
call abs compiled_code_ptr; | ||
let result = [ap - 1]; | ||
assert result = 2; | ||
|
||
return (); | ||
} | ||
|
||
func op_jump(input: felt) -> felt { | ||
alloc_locals; | ||
local return_pc; | ||
tempvar jump_size = 4; | ||
assert return_pc = [fp - 1] + 2 * jump_size; | ||
|
||
tempvar result = 0; | ||
|
||
dw RET_0; | ||
} | ||
|
||
func op_ret(input: felt) -> felt { | ||
alloc_locals; | ||
local main_return_pc; | ||
|
||
let return_fp = [fp - 2]; | ||
main_return_pc = [return_fp - 1]; | ||
|
||
tempvar result = input; | ||
dw RET_0; | ||
} | ||
|
||
func op_push(input: felt) -> felt { | ||
alloc_locals; | ||
// [fp - 1] is next CALL_ABS instruction | ||
// [[fp - 1] + 1] is the word to push | ||
// [fp - 1] + 2 where to move the PC after the push | ||
local return_pc = [fp - 1] + 2; | ||
tempvar word = [[fp - 1] + 1]; | ||
|
||
dw RET_0; | ||
} | ||
|
||
func op_pc(input: felt) -> felt { | ||
let return_pc = [fp - 1]; | ||
let calling_pc = return_pc - 2; | ||
let return_fp = [fp - 2]; | ||
let main_return_fp = [return_fp - 2]; | ||
let compiled_code_ptr = [return_fp - 3]; | ||
|
||
return (calling_pc - compiled_code_ptr) / 2; | ||
} | ||
|
||
func op_call(input: felt) -> felt { | ||
let (bytecode_start) = alloc(); | ||
let bytecode = bytecode_start; | ||
assert [bytecode] = OP_PC; | ||
let bytecode = bytecode + 1; | ||
assert [bytecode] = OP_RET; | ||
|
||
let (compiled_code_len, compiled_code_ptr) = compile( | ||
input, bytecode - bytecode_start, bytecode_start | ||
); | ||
|
||
call abs compiled_code_ptr; | ||
ret; | ||
} | ||
|
||
func op_add(input: felt) -> felt { | ||
let result = input + 1; | ||
return result; | ||
} | ||
|
||
func op_mul(input: felt) -> felt { | ||
let result = input * 2; | ||
return result; | ||
} | ||
|
||
// Create a label and a list of call rel op to be able to get all the opcodes locations | ||
// with a single call to get_label_location. | ||
opcodes_location: | ||
call op_jump; | ||
call op_ret; | ||
call op_push; | ||
call op_pc; | ||
call op_call; | ||
call op_add; | ||
call op_mul; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
class TestMain: | ||
|
||
def test_main(self, cairo_run): | ||
cairo_run("main") |
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Uh oh!
There was an error while loading. Please reload this page.