mirror of
https://github.com/pocketpy/pocketpy
synced 2025-10-20 11:30:18 +00:00
66 lines
2.1 KiB
C
66 lines
2.1 KiB
C
#pragma once
|
|
|
|
#include "pocketpy/common/memorypool.h"
|
|
#include "pocketpy/objects/codeobject.h"
|
|
#include "pocketpy/objects/namedict.h"
|
|
#include "pocketpy/objects/object.h"
|
|
#include "pocketpy/common/config.h"
|
|
#include "pocketpy/common/strname.h"
|
|
#include "pocketpy/pocketpy.h"
|
|
|
|
py_TValue* FastLocals__try_get_by_name(py_TValue* locals, const CodeObject* co, py_Name name);
|
|
NameDict* FastLocals__to_namedict(py_TValue* locals, const CodeObject* co);
|
|
|
|
typedef struct ValueStack {
|
|
// We allocate extra PK_VM_STACK_SIZE/128 places to keep `_sp` valid when `is_overflow() ==
|
|
// true`.
|
|
py_TValue* sp;
|
|
py_TValue* end;
|
|
py_TValue begin[PK_VM_STACK_SIZE + PK_VM_STACK_SIZE / 128];
|
|
} ValueStack;
|
|
|
|
void ValueStack__ctor(ValueStack* self);
|
|
void ValueStack__clear(ValueStack* self);
|
|
|
|
typedef struct UnwindTarget {
|
|
struct UnwindTarget* next;
|
|
int iblock;
|
|
int offset;
|
|
} UnwindTarget;
|
|
|
|
UnwindTarget* UnwindTarget__new(UnwindTarget* next, int iblock, int offset);
|
|
void UnwindTarget__delete(UnwindTarget* self);
|
|
|
|
typedef struct Frame {
|
|
struct Frame* f_back;
|
|
const Bytecode* ip;
|
|
const CodeObject* co;
|
|
py_GlobalRef module;
|
|
bool has_function; // is p0 a function?
|
|
py_StackRef p0; // unwinding base
|
|
py_StackRef locals; // locals base
|
|
UnwindTarget* uw_list;
|
|
} Frame;
|
|
|
|
Frame* Frame__new(const CodeObject* co,
|
|
py_GlobalRef module,
|
|
bool has_function,
|
|
py_StackRef p0,
|
|
py_StackRef locals);
|
|
void Frame__delete(Frame* self);
|
|
|
|
int Frame__ip(const Frame* self);
|
|
int Frame__lineno(const Frame* self);
|
|
int Frame__iblock(const Frame* self);
|
|
py_TValue* Frame__f_locals_try_get(Frame* self, py_Name name);
|
|
py_TValue* Frame__f_closure_try_get(Frame* self, py_Name name);
|
|
|
|
int Frame__prepare_jump_exception_handler(Frame* self, ValueStack*);
|
|
void Frame__prepare_jump_break(Frame* self, ValueStack*, int);
|
|
int Frame__prepare_loop_break(Frame* self, ValueStack*);
|
|
int Frame__exit_block(Frame* self, ValueStack*, int);
|
|
|
|
void Frame__gc_mark(Frame* self);
|
|
UnwindTarget* Frame__find_unwind_target(Frame* self, int iblock);
|
|
void Frame__set_unwind_target(Frame* self, py_TValue* sp);
|