From: marja@chromium.org Date: Wed, 5 Nov 2014 13:59:12 +0000 (+0000) Subject: Parser & internalization fix: ensure no heap allocs during GetString(Handle). X-Git-Tag: upstream/4.7.83~5871 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=dddeb98df98bae5afb66c3eb325e068afd30f9e8;p=platform%2Fupstream%2Fv8.git Parser & internalization fix: ensure no heap allocs during GetString(Handle). The bug has always been there: when the parser is operating in the "immediately internalize" mode and calls GetString, we get FlatContent of a string and then do heap allocation. The bug was uncovered by https://codereview.chromium.org/693803004/ (which put the parser to the "immediately internalize" mode more often), but looking at the code, it's possible that it can happen in other cases too. This CL makes AstValueFactory handle this situation gracefully: it won't try to internalize inside GetString(Handle); it's unnecessary anyway since we have the Handle already. R=rossberg@chromium.org BUG= Review URL: https://codereview.chromium.org/699343004 Cr-Commit-Position: refs/heads/master@{#25155} git-svn-id: https://v8.googlecode.com/svn/branches/bleeding_edge@25155 ce2b1a6d-e550-0410-aec6-3dcde31c8c00 --- diff --git a/src/ast-value-factory.cc b/src/ast-value-factory.cc index 895ce39..7aa9b6c 100644 --- a/src/ast-value-factory.cc +++ b/src/ast-value-factory.cc @@ -212,7 +212,7 @@ void AstValue::Internalize(Isolate* isolate) { } -const AstRawString* AstValueFactory::GetOneByteString( +AstRawString* AstValueFactory::GetOneByteStringInternal( Vector literal) { uint32_t hash = StringHasher::HashSequentialString( literal.start(), literal.length(), hash_seed_); @@ -220,7 +220,7 @@ const AstRawString* AstValueFactory::GetOneByteString( } -const AstRawString* AstValueFactory::GetTwoByteString( +AstRawString* AstValueFactory::GetTwoByteStringInternal( Vector literal) { uint32_t hash = StringHasher::HashSequentialString( literal.start(), literal.length(), hash_seed_); @@ -229,13 +229,22 @@ const AstRawString* AstValueFactory::GetTwoByteString( const AstRawString* AstValueFactory::GetString(Handle literal) { + // For the FlatContent to stay valid, we shouldn't do any heap + // allocation. Make sure we won't try to internalize the string in GetString. + AstRawString* result = NULL; + Isolate* saved_isolate = isolate_; + isolate_ = NULL; DisallowHeapAllocation no_gc; String::FlatContent content = literal->GetFlatContent(); if (content.IsOneByte()) { - return GetOneByteString(content.ToOneByteVector()); + result = GetOneByteStringInternal(content.ToOneByteVector()); + } else { + DCHECK(content.IsTwoByte()); + result = GetTwoByteStringInternal(content.ToUC16Vector()); } - DCHECK(content.IsTwoByte()); - return GetTwoByteString(content.ToUC16Vector()); + isolate_ = saved_isolate; + result->string_ = literal; + return result; } @@ -348,8 +357,8 @@ const AstValue* AstValueFactory::NewTheHole() { #undef GENERATE_VALUE_GETTER -const AstRawString* AstValueFactory::GetString( - uint32_t hash, bool is_one_byte, Vector literal_bytes) { +AstRawString* AstValueFactory::GetString(uint32_t hash, bool is_one_byte, + Vector literal_bytes) { // literal_bytes here points to whatever the user passed, and this is OK // because we use vector_compare (which checks the contents) to compare // against the AstRawStrings which are in the string_table_. We should not diff --git a/src/ast-value-factory.h b/src/ast-value-factory.h index 071ca9c..09a4140 100644 --- a/src/ast-value-factory.h +++ b/src/ast-value-factory.h @@ -287,12 +287,16 @@ class AstValueFactory { Zone* zone() const { return zone_; } - const AstRawString* GetOneByteString(Vector literal); + const AstRawString* GetOneByteString(Vector literal) { + return GetOneByteStringInternal(literal); + } const AstRawString* GetOneByteString(const char* string) { return GetOneByteString(Vector( reinterpret_cast(string), StrLength(string))); } - const AstRawString* GetTwoByteString(Vector literal); + const AstRawString* GetTwoByteString(Vector literal) { + return GetTwoByteStringInternal(literal); + } const AstRawString* GetString(Handle literal); const AstConsString* NewConsString(const AstString* left, const AstString* right); @@ -327,8 +331,10 @@ class AstValueFactory { const AstValue* NewTheHole(); private: - const AstRawString* GetString(uint32_t hash, bool is_one_byte, - Vector literal_bytes); + AstRawString* GetOneByteStringInternal(Vector literal); + AstRawString* GetTwoByteStringInternal(Vector literal); + AstRawString* GetString(uint32_t hash, bool is_one_byte, + Vector literal_bytes); // All strings are copied here, one after another (no NULLs inbetween). HashMap string_table_;