Index: src/x64/lithium-x64.h |
diff --git a/src/x64/lithium-x64.h b/src/x64/lithium-x64.h |
index a5a204647865dad3c2bf4fdc145b11515d4bf33e..926924b5d4f46c41baf5d3d69200298b0a140eec 100644 |
--- a/src/x64/lithium-x64.h |
+++ b/src/x64/lithium-x64.h |
@@ -149,6 +149,7 @@ class LCodeGen; |
V(StoreNamedGeneric) \ |
V(StorePixelArrayElement) \ |
V(StringCharCodeAt) \ |
+ V(StringCharFromCode) \ |
V(StringLength) \ |
V(SubI) \ |
V(TaggedToI) \ |
@@ -1631,6 +1632,19 @@ class LStringCharCodeAt: public LTemplateInstruction<1, 2, 0> { |
}; |
+class LStringCharFromCode: public LTemplateInstruction<1, 1, 0> { |
+ public: |
+ explicit LStringCharFromCode(LOperand* char_code) { |
+ inputs_[0] = char_code; |
+ } |
+ |
+ DECLARE_CONCRETE_INSTRUCTION(StringCharFromCode, "string-char-from-code") |
+ DECLARE_HYDROGEN_ACCESSOR(StringCharFromCode) |
+ |
+ LOperand* char_code() { return inputs_[0]; } |
+}; |
+ |
+ |
class LStringLength: public LTemplateInstruction<1, 1, 0> { |
public: |
explicit LStringLength(LOperand* string) { |