HomeSort by relevance Sort by last modified time
    Searched refs:VariableProxy (Results 1 - 18 of 18) sorted by null

  /external/v8/src/
scopes.h 80 // VariableProxy node. Immediately after AST construction and before variable
81 // allocation, most VariableProxy nodes are "unresolved", i.e. not bound to a
83 // allocation binds each unresolved VariableProxy to one Variable and assigns
84 // a location. Note that many VariableProxy nodes may refer to the same Java-
159 virtual VariableProxy* NewUnresolved(Handle<String> name,
169 void RemoveUnresolved(VariableProxy* var);
238 VariableProxy* receiver() const {
239 VariableProxy* proxy =
240 new VariableProxy(FACTORY->this_symbol(), true, false);
359 ZoneList<VariableProxy*> unresolved_
    [all...]
rewriter.cc 69 VariableProxy* result_proxy = new VariableProxy(result_);
225 void Processor::VisitVariableProxy(VariableProxy* node) {
351 VariableProxy* result_proxy = new VariableProxy(result);
ast.h 77 V(VariableProxy) \
365 Declaration(VariableProxy* proxy, Variable::Mode mode, FunctionLiteral* fun)
376 VariableProxy* proxy() const { return proxy_; }
382 VariableProxy* proxy_;
789 VariableProxy* catch_var,
798 VariableProxy* catch_var() const { return catch_var_; }
803 VariableProxy* catch_var_;
1048 CatchExtensionObject(Literal* key, VariableProxy* value)
1055 VariableProxy* value() const { return value_; }
1060 VariableProxy* value_
    [all...]
ast.cc 75 VariableProxy::VariableProxy(Variable* var)
86 VariableProxy::VariableProxy(Handle<String> name,
101 VariableProxy::VariableProxy(bool is_this)
109 void VariableProxy::BindTo(Variable* var) {
521 bool VariableProxy::IsInlineable() const {
scopes.cc 327 new Property(new VariableProxy(arguments_shadow_),
397 VariableProxy* Scope::NewUnresolved(Handle<String> name,
404 VariableProxy* proxy = new VariableProxy(name, false, inside_with, position);
410 void Scope::RemoveUnresolved(VariableProxy* var) {
761 VariableProxy* proxy) {
    [all...]
v8globals.h 177 class VariableProxy;
parser.cc 859 VariableProxy* v1 = e1->AsVariableProxy();
860 VariableProxy* v2 = e2->AsVariableProxy();
    [all...]
parser.h 511 Expression* MakeCatchContext(Handle<String> id, VariableProxy* value);
650 VariableProxy* Declare(Handle<String> name, Variable::Mode mode,
prettyprinter.cc 316 void PrettyPrinter::VisitVariableProxy(VariableProxy* node) {
976 void AstPrinter::VisitVariableProxy(VariableProxy* node) {
    [all...]
data-flow.cc 346 void AssignedVariablesAnalyzer::VisitVariableProxy(VariableProxy* expr) {
hydrogen.cc     [all...]
full-codegen.cc 170 void BreakableStatementChecker::VisitVariableProxy(VariableProxy* expr) {
    [all...]
  /external/v8/src/mips/
codegen-mips.cc 384 VariableProxy* arguments,
564 void CodeGenerator::VisitVariableProxy(VariableProxy* node) {
codegen-mips.h 477 VariableProxy* arguments,
full-codegen-mips.cc 306 void FullCodeGenerator::VisitVariableProxy(VariableProxy* expr) {
  /external/v8/src/arm/
full-codegen-arm.cc     [all...]
  /external/v8/src/ia32/
full-codegen-ia32.cc     [all...]
  /external/v8/src/x64/
full-codegen-x64.cc     [all...]

Completed in 461 milliseconds