diff options
author | Gaming4JC <g4jc@hyperbola.info> | 2019-12-14 09:22:32 -0500 |
---|---|---|
committer | Gaming4JC <g4jc@hyperbola.info> | 2019-12-17 06:25:28 -0500 |
commit | 580dfb2afbef15764b56714f3eb690a67f0af9c1 (patch) | |
tree | 7f60e914b45f30a9e4e585b884cd5ca2d5827055 /js/src/jit/shared | |
parent | ef44324d916b89b95fa0ea77a3d91eafb4359bf8 (diff) | |
download | UXP-580dfb2afbef15764b56714f3eb690a67f0af9c1.tar UXP-580dfb2afbef15764b56714f3eb690a67f0af9c1.tar.gz UXP-580dfb2afbef15764b56714f3eb690a67f0af9c1.tar.lz UXP-580dfb2afbef15764b56714f3eb690a67f0af9c1.tar.xz UXP-580dfb2afbef15764b56714f3eb690a67f0af9c1.zip |
Bug 1331092 - Part 8: Support JSOP_TOASYNCITER in JIT.
Tag #1287
Diffstat (limited to 'js/src/jit/shared')
-rw-r--r-- | js/src/jit/shared/LIR-shared.h | 13 | ||||
-rw-r--r-- | js/src/jit/shared/LOpcodes-shared.h | 1 |
2 files changed, 14 insertions, 0 deletions
diff --git a/js/src/jit/shared/LIR-shared.h b/js/src/jit/shared/LIR-shared.h index 6c8ff899b..ff4915d1a 100644 --- a/js/src/jit/shared/LIR-shared.h +++ b/js/src/jit/shared/LIR-shared.h @@ -1619,6 +1619,19 @@ class LToAsyncGen : public LCallInstructionHelper<1, 1, 0> } }; +class LToAsyncIter : public LCallInstructionHelper<1, 1, 0> +{ + public: + LIR_HEADER(ToAsyncIter) + explicit LToAsyncIter(const LAllocation& input) { + setOperand(0, input); + } + + const LAllocation* unwrapped() { + return getOperand(0); + } +}; + class LToIdV : public LInstructionHelper<BOX_PIECES, BOX_PIECES, 1> { public: diff --git a/js/src/jit/shared/LOpcodes-shared.h b/js/src/jit/shared/LOpcodes-shared.h index 9e79f0266..56b98940a 100644 --- a/js/src/jit/shared/LOpcodes-shared.h +++ b/js/src/jit/shared/LOpcodes-shared.h @@ -354,6 +354,7 @@ _(TypeOfV) \ _(ToAsync) \ _(ToAsyncGen) \ + _(ToAsyncIter) \ _(ToIdV) \ _(Floor) \ _(FloorF) \ |