From d7e59e6ec769c5925255336fdf5db9baa2ed7784 Mon Sep 17 00:00:00 2001 From: ctw-ian Date: Mon, 9 Jan 2023 11:47:41 +0800 Subject: [PATCH] Add two insns to support async generator && for-await-of Issue:I6EKU1 Signed-off-by: ctw-ian Change-Id: I925e8648cf2ca7df353c877d027741a94e5c993f --- isa/isa.yaml | 11 ++++++++++- 1 file changed, 10 insertions(+), 1 deletion(-) diff --git a/isa/isa.yaml b/isa/isa.yaml index 639d2c9241..f5650b821e 100644 --- a/isa/isa.yaml +++ b/isa/isa.yaml @@ -248,7 +248,7 @@ verification: isa_information: - description: The last encoding number of various ISA. It should be maintained as long as ISA changes. - last_opcode_idx: 0xd5 + last_opcode_idx: 0xd7 last_throw_prefixed_opcode_idx: 0x09 last_wide_prefixed_opcode_idx: 0x13 last_deprecated_prefixed_opcode_idx: 0x2e @@ -393,6 +393,11 @@ groups: opcode_idx: [0x02] format: [pref_op_v1_8_v2_8] prefix: deprecated + - sig: getasynciterator imm + acc: inout:top + opcode_idx: [0xd7] + format: [op_imm_8] + properties: [ic_slot] - title: object creaters description: instructions which create objects @@ -1429,6 +1434,10 @@ groups: opcode_idx: [0x2e] format: [pref_op_v1_8_v2_8] prefix: deprecated + - sig: setgeneratorstate imm + acc: in:top + opcode_idx: [0xd6] + format: [op_imm_8] - title: Load accumulator from string constant pool description: > -- Gitee