ZJIT: Add codegen for StringCopy
Prior to this commit we compiled putstring and putchilledstring to StringCopy, but then failed to compile past HIR.
putstring
putchilledstring
StringCopy
This commit adds codegen for StringCopy to call rb_ec_str_ressurrect as the VM does for these instructions.
rb_ec_str_ressurrect
ZJIT: Add codegen for StringCopy
Prior to this commit we compiled
putstring
andputchilledstring
toStringCopy
, but then failed to compile past HIR.This commit adds codegen for
StringCopy
to callrb_ec_str_ressurrect
as the VM does for these instructions.