YARV bytecode switch loop

Hello,

I am somewhat new at this and a bit of a neophyte. I am wondering
where I would find the main YARV bytecode interpreter loop that
processes the bytecodes for YARV.

Regards,

Carter.

On Tue, Mar 29, 2011 at 3:47 AM, Carter C. [email protected]
wrote:

I am somewhat new at this and a bit of a neophyte. I am wondering
where I would find the main YARV bytecode interpreter loop that
processes the bytecodes for YARV.

You should be able to find it from main.c when looking at the source.

Kind regards

robert

Hi,

You can check vm_exec.c then vm.inc or insns.def.

          matz.

In message “Re: YARV bytecode switch loop”
on Tue, 29 Mar 2011 19:01:04 +0900, Robert K.
[email protected] writes:
|
|On Tue, Mar 29, 2011 at 3:47 AM, Carter C. [email protected] wrote:
|> I am somewhat new at this and a bit of a neophyte. I am wondering
|> where I would find the main YARV bytecode interpreter loop that
|> processes the bytecodes for YARV.
|
|You should be able to find it from main.c when looking at the source.
|
|Kind regards
|
|robert

Thanks Robert.

On Tue, Mar 29, 2011 at 6:01 AM, Robert K.

Thanks Matz.