diff options
Diffstat (limited to 'deps/v8/src/codegen.h')
-rw-r--r-- | deps/v8/src/codegen.h | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/deps/v8/src/codegen.h b/deps/v8/src/codegen.h index 08a777f2ad..0ac68c2eac 100644 --- a/deps/v8/src/codegen.h +++ b/deps/v8/src/codegen.h @@ -90,6 +90,7 @@ namespace internal { typedef double (*UnaryMathFunction)(double x); UnaryMathFunction CreateTranscendentalFunction(TranscendentalCache::Type type); +UnaryMathFunction CreateExpFunction(); UnaryMathFunction CreateSqrtFunction(); @@ -103,6 +104,19 @@ class ElementsTransitionGenerator : public AllStatic { DISALLOW_COPY_AND_ASSIGN(ElementsTransitionGenerator); }; + +class SeqStringSetCharGenerator : public AllStatic { + public: + static void Generate(MacroAssembler* masm, + String::Encoding encoding, + Register string, + Register index, + Register value); + private: + DISALLOW_COPY_AND_ASSIGN(SeqStringSetCharGenerator); +}; + + } } // namespace v8::internal #endif // V8_CODEGEN_H_ |