1. 10 Jan, 2021 4 commits
    • dearblue's avatar
      Unified `pc` and `err` of `mrb_callinfo` · ced89c25
      dearblue authored
      This enhances self-containment.
      
      - Changed the `mrb_callinfo::pc` field to point to itself.
        Previously it indicated the return destination of the previous call level.
        `mrb_callinfo::pc` will now hold the address to its own `proc->body.irep->iseq`.
      - Removed `mrb_callinfo::err` field.
        This is because `mrb_callinfo::pc - 1` is semantically the same as the previous `err`.
      - The `pc0` and `pc_save` variables in `mrb_vm_exec()` are no longer needed and have been deleted.
      - It removes the argument because `cipush()` doesn't need to save the previous `pc`.
      ced89c25
    • dearblue's avatar
      Changes `stackent` to `stack` of `mrb_callinfo` · 16baea06
      dearblue authored
      This enhances self-containment.
      
      Previously `mrb_context::stack` had the current call level stack, but now it owns it.
      The `mrb_context::stack` field, which is no longer needed, will be removed.
      16baea06
    • dearblue's avatar
      Unified `target_class` and `env` of `mrb_callinfo` · 58e94427
      dearblue authored
      If there is `env`, `env->c` means `target_class`.
      58e94427
    • dearblue's avatar
      Use `uint16_t` for `argc` and `acc` of `mrb_callinfo` · b210cfa3
      dearblue authored
      This is because it is enough to express the range up to (-1..255) or (-3..255).
      b210cfa3
  2. 09 Jan, 2021 7 commits
  3. 08 Jan, 2021 7 commits
  4. 07 Jan, 2021 11 commits
  5. 06 Jan, 2021 10 commits
  6. 05 Jan, 2021 1 commit