1 // Copyright 2006-2009 the V8 project authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file.
5 #ifndef V8_FUNC_NAME_INFERRER_H_
6 #define V8_FUNC_NAME_INFERRER_H_
8 #include "src/handles.h"
16 class AstValueFactory;
17 class FunctionLiteral;
19 // FuncNameInferrer is a stateful class that is used to perform name
20 // inference for anonymous functions during static analysis of source code.
21 // Inference is performed in cases when an anonymous function is assigned
22 // to a variable or a property (see test-func-name-inference.cc for examples.)
24 // The basic idea is that during parsing of LHSs of certain expressions
25 // (assignments, declarations, object literals) we collect name strings,
26 // and during parsing of the RHS, a function literal can be collected. After
27 // parsing the RHS we can infer a name for function literals that do not have
29 class FuncNameInferrer : public ZoneObject {
31 FuncNameInferrer(AstValueFactory* ast_value_factory, Zone* zone);
33 // Returns whether we have entered name collection state.
34 bool IsOpen() const { return !entries_stack_.is_empty(); }
36 // Pushes an enclosing the name of enclosing function onto names stack.
37 void PushEnclosingName(const AstRawString* name);
39 // Enters name collection state.
41 entries_stack_.Add(names_stack_.length(), zone());
44 // Pushes an encountered name onto names stack when in collection state.
45 void PushLiteralName(const AstRawString* name);
47 void PushVariableName(const AstRawString* name);
49 // Adds a function to infer name for.
50 void AddFunction(FunctionLiteral* func_to_infer) {
52 funcs_to_infer_.Add(func_to_infer, zone());
56 void RemoveLastFunction() {
57 if (IsOpen() && !funcs_to_infer_.is_empty()) {
58 funcs_to_infer_.RemoveLast();
62 // Infers a function name and leaves names collection state.
65 if (!funcs_to_infer_.is_empty()) {
66 InferFunctionsNames();
70 // Leaves names collection state.
73 names_stack_.Rewind(entries_stack_.RemoveLast());
74 if (entries_stack_.is_empty())
75 funcs_to_infer_.Clear();
80 kEnclosingConstructorName,
85 Name(const AstRawString* name, NameType type) : name(name), type(type) {}
86 const AstRawString* name;
90 Zone* zone() const { return zone_; }
92 // Constructs a full name in dotted notation from gathered names.
93 const AstString* MakeNameFromStack();
95 // A helper function for MakeNameFromStack.
96 const AstString* MakeNameFromStackHelper(int pos,
97 const AstString* prev);
99 // Performs name inferring for added functions.
100 void InferFunctionsNames();
102 AstValueFactory* ast_value_factory_;
103 ZoneList<int> entries_stack_;
104 ZoneList<Name> names_stack_;
105 ZoneList<FunctionLiteral*> funcs_to_infer_;
108 DISALLOW_COPY_AND_ASSIGN(FuncNameInferrer);
112 } } // namespace v8::internal
114 #endif // V8_FUNC_NAME_INFERRER_H_