config.h 2.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384
  1. #pragma once
  2. /*************** feature settings ***************/
  3. // Whether to compile os-related modules or not
  4. #ifndef PK_ENABLE_OS // can be overridden by cmake
  5. #define PK_ENABLE_OS 0
  6. #endif
  7. // Enable this if you are working with multi-threading (experimental)
  8. // This triggers necessary locks to make the VM thread-safe
  9. #ifndef PK_ENABLE_THREAD // can be overridden by cmake
  10. #define PK_ENABLE_THREAD 0
  11. #endif
  12. // Enable `line_profiler` module and `breakpoint()` function
  13. #ifndef PK_ENABLE_PROFILER // can be overridden by cmake
  14. #define PK_ENABLE_PROFILER 0
  15. #endif
  16. // GC min threshold
  17. #ifndef PK_GC_MIN_THRESHOLD // can be overridden by cmake
  18. #define PK_GC_MIN_THRESHOLD 32768
  19. #endif
  20. // Whether to use `std::function` to do bindings or not
  21. // By default, functions to be binded must be a C function pointer without capture
  22. // However, someone thinks it's not convenient.
  23. // By setting this to 1, capturing lambdas can be binded,
  24. // but it's slower and may cause severe "code bloat", also needs more time to compile.
  25. #define PK_ENABLE_STD_FUNCTION 0
  26. /*************** debug settings ***************/
  27. // Enable this may help you find bugs
  28. #define PK_DEBUG_EXTRA_CHECK 0
  29. // Do not edit the following settings unless you know what you are doing
  30. #define PK_DEBUG_NO_BUILTINS 0
  31. #define PK_DEBUG_DIS_EXEC 0
  32. #define PK_DEBUG_CEVAL_STEP 0
  33. #define PK_DEBUG_MEMORY_POOL 0
  34. #define PK_DEBUG_NO_MEMORY_POOL 0
  35. #define PK_DEBUG_NO_AUTO_GC 0
  36. #define PK_DEBUG_GC_STATS 0
  37. #ifndef PK_DEBUG_PRECOMPILED_EXEC
  38. #define PK_DEBUG_PRECOMPILED_EXEC 0
  39. #endif
  40. /*************** internal settings ***************/
  41. // This is the maximum size of the value stack in void* units
  42. // The actual size in bytes equals `sizeof(void*) * PK_VM_STACK_SIZE`
  43. #define PK_VM_STACK_SIZE 32768
  44. // This is the maximum number of local variables in a function
  45. // (not recommended to change this / it should be less than 200)
  46. #define PK_MAX_CO_VARNAMES 64
  47. // Hash table load factor (smaller ones mean less collision but more memory)
  48. // For class instance
  49. #define PK_INST_ATTR_LOAD_FACTOR 0.67
  50. // For class itself
  51. #define PK_TYPE_ATTR_LOAD_FACTOR 0.5
  52. #ifdef _WIN32
  53. #define PK_PLATFORM_SEP '\\'
  54. #else
  55. #define PK_PLATFORM_SEP '/'
  56. #endif
  57. #ifdef _MSC_VER
  58. #pragma warning (disable:4267)
  59. #pragma warning (disable:4100)
  60. #pragma warning (disable:4244)
  61. #pragma warning (disable:4996)
  62. #endif
  63. #ifdef _MSC_VER
  64. #define PK_UNREACHABLE() __assume(0);
  65. #else
  66. #define PK_UNREACHABLE() __builtin_unreachable();
  67. #endif