| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341 |
- #pragma once
- #include "common.h"
- #include "namedict.h"
- #include "tuplelist.h"
- namespace pkpy {
-
- struct Frame;
- class VM;
- #if PK_ENABLE_STD_FUNCTION
- using NativeFuncC = std::function<PyObject*(VM*, ArgsView)>;
- #else
- typedef PyObject* (*NativeFuncC)(VM*, ArgsView);
- #endif
- enum class BindType{
- DEFAULT,
- STATICMETHOD,
- CLASSMETHOD,
- };
- struct BoundMethod {
- PyObject* self;
- PyObject* func;
- BoundMethod(PyObject* self, PyObject* func) : self(self), func(func) {}
- };
- struct StaticMethod{
- PyObject* func;
- StaticMethod(PyObject* func) : func(func) {}
- };
- struct ClassMethod{
- PyObject* func;
- ClassMethod(PyObject* func) : func(func) {}
- };
- struct Property{
- PyObject* getter;
- PyObject* setter;
- Property(PyObject* getter, PyObject* setter) : getter(getter), setter(setter) {}
- };
- struct Range {
- i64 start = 0;
- i64 stop = -1;
- i64 step = 1;
- };
- struct StarWrapper{
- int level; // either 1 or 2
- PyObject* obj;
- StarWrapper(int level, PyObject* obj) : level(level), obj(obj) {}
- };
- struct Bytes{
- unsigned char* _data;
- int _size;
- int size() const noexcept { return _size; }
- int operator[](int i) const noexcept { return (int)_data[i]; }
- const unsigned char* data() const noexcept { return _data; }
- bool operator==(const Bytes& rhs) const;
- bool operator!=(const Bytes& rhs) const;
- Str str() const noexcept { return Str((char*)_data, _size); }
- std::string_view sv() const noexcept { return std::string_view((char*)_data, _size); }
- Bytes() : _data(nullptr), _size(0) {}
- Bytes(unsigned char* p, int size): _data(p), _size(size) {}
- Bytes(const Str& str): Bytes(str.sv()) {}
- operator bool() const noexcept { return _data != nullptr; }
- Bytes(std::string_view sv);
- Bytes(const Bytes& rhs);
- Bytes(Bytes&& rhs) noexcept;
- Bytes& operator=(Bytes&& rhs) noexcept;
- Bytes& operator=(const Bytes& rhs) = delete;
- std::pair<unsigned char*, int> detach() noexcept;
- ~Bytes(){ delete[] _data;}
- };
- using Super = std::pair<PyObject*, Type>;
- struct Slice {
- PyObject* start;
- PyObject* stop;
- PyObject* step;
- Slice(PyObject* start, PyObject* stop, PyObject* step) : start(start), stop(stop), step(step) {}
- };
- struct PyObject{
- bool gc_enabled; // whether this object is managed by GC
- bool gc_marked; // whether this object is marked
- Type type;
- NameDict* _attr;
- bool is_attr_valid() const noexcept { return _attr != nullptr; }
- NameDict& attr() {
- PK_DEBUG_ASSERT(is_attr_valid())
- return *_attr;
- }
- PyObject* attr(StrName name) const {
- PK_DEBUG_ASSERT(is_attr_valid())
- return (*_attr)[name];
- }
- virtual void _obj_gc_mark() = 0;
- PyObject(Type type) : gc_enabled(true), gc_marked(false), type(type), _attr(nullptr) {}
- virtual ~PyObject(){
- if(_attr == nullptr) return;
- _attr->~NameDict();
- pool128_dealloc(_attr);
- }
- void _enable_instance_dict() {
- _attr = new(pool128_alloc<NameDict>()) NameDict();
- }
- void _enable_instance_dict(float lf){
- _attr = new(pool128_alloc<NameDict>()) NameDict(lf);
- }
- };
- const int kTpIntIndex = 2;
- const int kTpFloatIndex = 3;
- inline bool is_tagged(PyObject* p) noexcept { return (PK_BITS(p) & 0b11) != 0b00; }
- inline bool is_small_int(PyObject* p) noexcept { return (PK_BITS(p) & 0b11) == 0b10; }
- inline bool is_heap_int(PyObject* p) noexcept { return !is_tagged(p) && p->type.index == kTpIntIndex; }
- inline bool is_float(PyObject* p) noexcept { return !is_tagged(p) && p->type.index == kTpFloatIndex; }
- inline bool is_int(PyObject* p) noexcept { return is_small_int(p) || is_heap_int(p); }
- inline bool is_type(PyObject* obj, Type type) {
- PK_DEBUG_ASSERT(obj != nullptr)
- return is_small_int(obj) ? type.index == kTpIntIndex : obj->type == type;
- }
- template <typename, typename=void> struct has_gc_marker : std::false_type {};
- template <typename T> struct has_gc_marker<T, std::void_t<decltype(&T::_gc_mark)>> : std::true_type {};
- template <typename T>
- struct Py_ final: PyObject {
- static_assert(!std::is_reference_v<T>, "T must not be a reference type. Are you using `PK_OBJ_GET(T&, ...)`?");
- T _value;
- void _obj_gc_mark() override {
- if constexpr (has_gc_marker<T>::value) {
- _value._gc_mark();
- }
- }
- template <typename... Args>
- Py_(Type type, Args&&... args) : PyObject(type), _value(std::forward<Args>(args)...) { }
- };
- struct MappingProxy{
- PyObject* obj;
- MappingProxy(PyObject* obj) : obj(obj) {}
- NameDict& attr() { return obj->attr(); }
- };
- void _gc_mark_namedict(NameDict*);
- StrName _type_name(VM* vm, Type type);
- template<typename T> T to_void_p(VM*, PyObject*);
- PyObject* from_void_p(VM*, void*);
- #define PK_OBJ_GET(T, obj) (((Py_<T>*)(obj))->_value)
- #define PK_OBJ_MARK(obj) \
- if(!is_tagged(obj) && !(obj)->gc_marked) { \
- (obj)->gc_marked = true; \
- (obj)->_obj_gc_mark(); \
- if((obj)->is_attr_valid()) _gc_mark_namedict((obj)->_attr); \
- }
- #define VAR(x) py_var(vm, x)
- #define CAST(T, x) py_cast<T>(vm, x)
- #define _CAST(T, x) _py_cast<T>(vm, x)
- #define CAST_F(x) py_cast<f64>(vm, x)
- #define CAST_DEFAULT(T, x, default_value) (x != vm->None) ? py_cast<T>(vm, x) : (default_value)
- /*****************************************************************/
- template<>
- struct Py_<i64> final: PyObject {
- i64 _value;
- Py_(Type type, i64 val): PyObject(type), _value(val) {}
- void _obj_gc_mark() override {}
- };
- inline bool try_cast_int(PyObject* obj, i64* val) noexcept {
- if(is_small_int(obj)){
- *val = PK_BITS(obj) >> 2;
- return true;
- }else if(is_heap_int(obj)){
- *val = PK_OBJ_GET(i64, obj);
- return true;
- }else{
- return false;
- }
- }
- template<>
- struct Py_<List> final: PyObject {
- List _value;
- Py_(Type type, List&& val): PyObject(type), _value(std::move(val)) {}
- Py_(Type type, const List& val): PyObject(type), _value(val) {}
- void _obj_gc_mark() override {
- for(PyObject* obj: _value) PK_OBJ_MARK(obj);
- }
- };
- template<>
- struct Py_<Tuple> final: PyObject {
- Tuple _value;
- Py_(Type type, Tuple&& val): PyObject(type), _value(std::move(val)) {}
- Py_(Type type, const Tuple& val): PyObject(type), _value(val) {}
- void _obj_gc_mark() override {
- for(PyObject* obj: _value) PK_OBJ_MARK(obj);
- }
- };
- template<>
- struct Py_<MappingProxy> final: PyObject {
- MappingProxy _value;
- Py_(Type type, MappingProxy val): PyObject(type), _value(val) {}
- void _obj_gc_mark() override {
- PK_OBJ_MARK(_value.obj);
- }
- };
- template<>
- struct Py_<BoundMethod> final: PyObject {
- BoundMethod _value;
- Py_(Type type, BoundMethod val): PyObject(type), _value(val) {}
- void _obj_gc_mark() override {
- PK_OBJ_MARK(_value.self);
- PK_OBJ_MARK(_value.func);
- }
- };
- template<>
- struct Py_<StarWrapper> final: PyObject {
- StarWrapper _value;
- Py_(Type type, StarWrapper val): PyObject(type), _value(val) {}
- void _obj_gc_mark() override {
- PK_OBJ_MARK(_value.obj);
- }
- };
- template<>
- struct Py_<StaticMethod> final: PyObject {
- StaticMethod _value;
- Py_(Type type, StaticMethod val): PyObject(type), _value(val) {}
- void _obj_gc_mark() override {
- PK_OBJ_MARK(_value.func);
- }
- };
- template<>
- struct Py_<ClassMethod> final: PyObject {
- ClassMethod _value;
- Py_(Type type, ClassMethod val): PyObject(type), _value(val) {}
- void _obj_gc_mark() override {
- PK_OBJ_MARK(_value.func);
- }
- };
- template<>
- struct Py_<Property> final: PyObject {
- Property _value;
- Py_(Type type, Property val): PyObject(type), _value(val) {}
- void _obj_gc_mark() override {
- PK_OBJ_MARK(_value.getter);
- PK_OBJ_MARK(_value.setter);
- }
- };
- template<>
- struct Py_<Slice> final: PyObject {
- Slice _value;
- Py_(Type type, Slice val): PyObject(type), _value(val) {}
- void _obj_gc_mark() override {
- PK_OBJ_MARK(_value.start);
- PK_OBJ_MARK(_value.stop);
- PK_OBJ_MARK(_value.step);
- }
- };
- template<>
- struct Py_<Super> final: PyObject {
- Super _value;
- template<typename... Args>
- Py_(Type type, Args&&... args): PyObject(type), _value(std::forward<Args>(args)...) {}
- void _obj_gc_mark() override {
- PK_OBJ_MARK(_value.first);
- }
- };
- template<>
- struct Py_<DummyInstance> final: PyObject {
- Py_(Type type): PyObject(type) {
- _enable_instance_dict();
- }
- void _obj_gc_mark() override {}
- };
- template<>
- struct Py_<Type> final: PyObject {
- Type _value;
- Py_(Type type, Type val): PyObject(type), _value(val) {
- _enable_instance_dict(PK_TYPE_ATTR_LOAD_FACTOR);
- }
- void _obj_gc_mark() override {}
- };
- template<>
- struct Py_<DummyModule> final: PyObject {
- Py_(Type type): PyObject(type) {
- _enable_instance_dict(PK_TYPE_ATTR_LOAD_FACTOR);
- }
- void _obj_gc_mark() override {}
- };
- extern PyObject* const PY_NULL;
- extern PyObject* const PY_OP_CALL;
- extern PyObject* const PY_OP_YIELD;
- } // namespace pkpy
|