From: lrn@chromium.org Date: Thu, 9 Sep 2010 11:49:21 +0000 (+0000) Subject: Avoid collecting symbol info for one-off preparsing. X-Git-Tag: upstream/4.7.83~21227 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=67d83027795eb34f6c784842ce3278851af768b2;p=platform%2Fupstream%2Fv8.git Avoid collecting symbol info for one-off preparsing. Review URL: http://codereview.chromium.org/3356010 git-svn-id: http://v8.googlecode.com/svn/branches/bleeding_edge@5431 ce2b1a6d-e550-0410-aec6-3dcde31c8c00 --- diff --git a/src/compiler.cc b/src/compiler.cc index a7580e4..f65f941 100755 --- a/src/compiler.cc +++ b/src/compiler.cc @@ -277,13 +277,11 @@ Handle Compiler::Compile(Handle source, // for small sources, odds are that there aren't many functions // that would be compiled lazily anyway, so we skip the preparse step // in that case too. - // TODO(lrn): Maybe *only* collect function info, not symbol info, in - // this case, since it's just replacing one hash-lookup with another. ScriptDataImpl* pre_data = input_pre_data; if (pre_data == NULL && FLAG_lazy && source_length >= FLAG_min_preparse_length) { - pre_data = PreParse(source, NULL, extension); + pre_data = PartialPreParse(source, NULL, extension); } // Create a script object describing the script to be compiled. diff --git a/src/parser.cc b/src/parser.cc index 7667e89..11e2eb5 100644 --- a/src/parser.cc +++ b/src/parser.cc @@ -872,11 +872,14 @@ class ParserLog BASE_EMBEDDED { // Records the occurrence of a function. virtual FunctionEntry LogFunction(int start) { return FunctionEntry(); } virtual void LogSymbol(int start, Vector symbol) {} + virtual void LogError() { } // Return the current position in the function entry log. virtual int function_position() { return 0; } virtual int symbol_position() { return 0; } virtual int symbol_ids() { return 0; } - virtual void LogError() { } + virtual Vector ExtractData() { + return Vector(); + }; }; @@ -889,9 +892,14 @@ class AstBuildingParserFactory : public ParserFactory { virtual Handle LookupSymbol(int symbol_id, Vector string) { - // If there is no preparse data, we have no simpler way to identify similar - // symbols. - if (symbol_id < 0) return Factory::LookupSymbol(string); + // Length of symbol cache is the number of identified symbols. + // If we are larger than that, or negative, it's not a cached symbol. + // This might also happen if there is no preparser symbol data, even + // if there is some preparser data. + if (static_cast(symbol_id) + >= static_cast(symbol_cache_.length())) { + return Factory::LookupSymbol(string); + } return LookupCachedSymbol(symbol_id, string); } @@ -933,10 +941,55 @@ class AstBuildingParserFactory : public ParserFactory { }; -class ParserRecorder: public ParserLog { +// Record only functions. +class PartialParserRecorder: public ParserLog { public: - ParserRecorder(); + PartialParserRecorder(); virtual FunctionEntry LogFunction(int start); + + virtual int function_position() { return function_store_.size(); } + + virtual void LogError() { } + + virtual void LogMessage(Scanner::Location loc, + const char* message, + Vector args); + + virtual Vector ExtractData() { + int function_size = function_store_.size(); + int total_size = ScriptDataImpl::kHeaderSize + function_size; + Vector data = Vector::New(total_size); + preamble_[ScriptDataImpl::kFunctionsSizeOffset] = function_size; + preamble_[ScriptDataImpl::kSymbolCountOffset] = 0; + memcpy(data.start(), preamble_, sizeof(preamble_)); + int symbol_start = ScriptDataImpl::kHeaderSize + function_size; + if (function_size > 0) { + function_store_.WriteTo(data.SubVector(ScriptDataImpl::kHeaderSize, + symbol_start)); + } + return data; + } + + protected: + bool has_error() { + return static_cast(preamble_[ScriptDataImpl::kHasErrorOffset]); + } + + void WriteString(Vector str); + + Collector function_store_; + unsigned preamble_[ScriptDataImpl::kHeaderSize]; +#ifdef DEBUG + int prev_start; +#endif +}; + + +// Record both functions and symbols. +class CompleteParserRecorder: public PartialParserRecorder { + public: + CompleteParserRecorder(); + virtual void LogSymbol(int start, Vector literal) { int hash = vector_hash(literal); HashMap::Entry* entry = symbol_table_.Lookup(&literal, hash, true); @@ -953,11 +1006,8 @@ class ParserRecorder: public ParserLog { symbol_store_.Add(id - 1); } } - virtual void LogError() { } - virtual void LogMessage(Scanner::Location loc, - const char* message, - Vector args); - Vector ExtractData() { + + virtual Vector ExtractData() { int function_size = function_store_.size(); int symbol_size = symbol_store_.size(); int total_size = ScriptDataImpl::kHeaderSize + function_size + symbol_size; @@ -976,11 +1026,9 @@ class ParserRecorder: public ParserLog { return data; } - virtual int function_position() { return function_store_.size(); } virtual int symbol_position() { return symbol_store_.size(); } virtual int symbol_ids() { return symbol_id_; } private: - Collector function_store_; Collector symbol_store_; Collector > symbol_entries_; HashMap symbol_table_; @@ -1004,16 +1052,6 @@ class ParserRecorder: public ParserLog { if (string2->length() != length) return false; return memcmp(string1->start(), string2->start(), length) == 0; } - - unsigned preamble_[ScriptDataImpl::kHeaderSize]; -#ifdef DEBUG - int prev_start; -#endif - - bool has_error() { - return static_cast(preamble_[ScriptDataImpl::kHasErrorOffset]); - } - void WriteString(Vector str); }; @@ -1088,15 +1126,8 @@ bool ScriptDataImpl::SanityCheck() { } -ParserRecorder::ParserRecorder() - : function_store_(0), - symbol_store_(0), - symbol_entries_(0), - symbol_table_(vector_compare), - symbol_id_(0) { -#ifdef DEBUG - prev_start = -1; -#endif + +PartialParserRecorder::PartialParserRecorder() : function_store_(0) { preamble_[ScriptDataImpl::kMagicOffset] = ScriptDataImpl::kMagicNumber; preamble_[ScriptDataImpl::kVersionOffset] = ScriptDataImpl::kCurrentVersion; preamble_[ScriptDataImpl::kHasErrorOffset] = false; @@ -1104,10 +1135,22 @@ ParserRecorder::ParserRecorder() preamble_[ScriptDataImpl::kSymbolCountOffset] = 0; preamble_[ScriptDataImpl::kSizeOffset] = 0; ASSERT_EQ(6, ScriptDataImpl::kHeaderSize); +#ifdef DEBUG + prev_start = -1; +#endif } -void ParserRecorder::WriteString(Vector str) { +CompleteParserRecorder::CompleteParserRecorder() + : PartialParserRecorder(), + symbol_store_(0), + symbol_entries_(0), + symbol_table_(vector_compare), + symbol_id_(0) { +} + + +void PartialParserRecorder::WriteString(Vector str) { function_store_.Add(str.length()); for (int i = 0; i < str.length(); i++) { function_store_.Add(str[i]); @@ -1127,8 +1170,9 @@ const char* ScriptDataImpl::ReadString(unsigned* start, int* chars) { } -void ParserRecorder::LogMessage(Scanner::Location loc, const char* message, - Vector args) { +void PartialParserRecorder::LogMessage(Scanner::Location loc, + const char* message, + Vector args) { if (has_error()) return; preamble_[ScriptDataImpl::kHasErrorOffset] = true; function_store_.Reset(); @@ -1183,7 +1227,7 @@ unsigned* ScriptDataImpl::ReadAddress(int position) { } -FunctionEntry ParserRecorder::LogFunction(int start) { +FunctionEntry PartialParserRecorder::LogFunction(int start) { #ifdef DEBUG ASSERT(start > prev_start); prev_start = start; @@ -1206,7 +1250,7 @@ class AstBuildingParser : public Parser { factory(), log(), pre_data), - factory_(pre_data ? pre_data->symbol_count() : 16) { } + factory_(pre_data ? pre_data->symbol_count() : 0) { } virtual void ReportMessageAt(Scanner::Location loc, const char* message, Vector args); virtual VariableProxy* Declare(Handle name, Variable::Mode mode, @@ -1223,23 +1267,44 @@ class AstBuildingParser : public Parser { class PreParser : public Parser { public: PreParser(Handle