Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(196)

Unified Diff: src/func-name-inferrer.h

Issue 231073002: WIP: Parser: delay string internalization. (Closed) Base URL: https://v8.googlecode.com/svn/branches/bleeding_edge
Patch Set: internalizing better Created 6 years, 7 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: src/func-name-inferrer.h
diff --git a/src/func-name-inferrer.h b/src/func-name-inferrer.h
index f0fdbd22e021bd281e7e0b2f01ae8985c3574917..5b70ba359f79064019d5541e066ffba31beadf29 100644
--- a/src/func-name-inferrer.h
+++ b/src/func-name-inferrer.h
@@ -6,13 +6,13 @@
#define V8_FUNC_NAME_INFERRER_H_
#include "handles.h"
+#include "parser-symbol-table.h"
#include "zone.h"
namespace v8 {
namespace internal {
class FunctionLiteral;
-class Isolate;
// FuncNameInferrer is a stateful class that is used to perform name
// inference for anonymous functions during static analysis of source code.
@@ -26,13 +26,13 @@ class Isolate;
// a name.
class FuncNameInferrer : public ZoneObject {
public:
- FuncNameInferrer(Isolate* isolate, Zone* zone);
+ FuncNameInferrer(ParserSymbolTable* symbol_table, Zone* zone);
// Returns whether we have entered name collection state.
bool IsOpen() const { return !entries_stack_.is_empty(); }
// Pushes an enclosing the name of enclosing function onto names stack.
- void PushEnclosingName(Handle<String> name);
+ void PushEnclosingName(ParserSymbolTable::Symbol* name);
// Enters name collection state.
void Enter() {
@@ -40,9 +40,9 @@ class FuncNameInferrer : public ZoneObject {
}
// Pushes an encountered name onto names stack when in collection state.
- void PushLiteralName(Handle<String> name);
+ void PushLiteralName(ParserSymbolTable::Symbol* name);
- void PushVariableName(Handle<String> name);
+ void PushVariableName(ParserSymbolTable::Symbol* name);
// Adds a function to infer name for.
void AddFunction(FunctionLiteral* func_to_infer) {
@@ -80,24 +80,21 @@ class FuncNameInferrer : public ZoneObject {
kVariableName
};
struct Name {
- Name(Handle<String> name, NameType type) : name(name), type(type) { }
- Handle<String> name;
+ Name(ParserSymbolTable::Symbol* name, NameType type)
+ : name(name), type(type) {}
+ ParserSymbolTable::Symbol* name;
NameType type;
};
- Isolate* isolate() { return isolate_; }
Zone* zone() const { return zone_; }
// Constructs a full name in dotted notation from gathered names.
- Handle<String> MakeNameFromStack();
-
- // A helper function for MakeNameFromStack.
- Handle<String> MakeNameFromStackHelper(int pos, Handle<String> prev);
+ ParserSymbolTable::Symbol* MakeNameFromStack();
// Performs name inferring for added functions.
void InferFunctionsNames();
- Isolate* isolate_;
+ ParserSymbolTable* symbol_table_;
ZoneList<int> entries_stack_;
ZoneList<Name> names_stack_;
ZoneList<FunctionLiteral*> funcs_to_infer_;

Powered by Google App Engine
This is Rietveld 408576698