| OLD | NEW |
| 1 // Copyright 2015 the V8 project authors. All rights reserved. | 1 // Copyright 2015 the V8 project authors. All rights reserved. |
| 2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
| 3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
| 4 | 4 |
| 5 #include "src/v8.h" | 5 #include "src/v8.h" |
| 6 | 6 |
| 7 // Required to get M_E etc. in MSVC. | 7 // Required to get M_E etc. in MSVC. |
| 8 #if defined(_WIN32) | 8 #if defined(_WIN32) |
| 9 #define _USE_MATH_DEFINES | 9 #define _USE_MATH_DEFINES |
| 10 #endif | 10 #endif |
| 11 #include <math.h> | 11 #include <math.h> |
| 12 | 12 |
| 13 #include "src/asmjs/asm-types.h" | 13 #include "src/asmjs/asm-types.h" |
| 14 #include "src/asmjs/asm-wasm-builder.h" | 14 #include "src/asmjs/asm-wasm-builder.h" |
| 15 #include "src/asmjs/switch-logic.h" | 15 #include "src/asmjs/switch-logic.h" |
| 16 | 16 |
| 17 #include "src/wasm/wasm-macro-gen.h" | 17 #include "src/wasm/wasm-macro-gen.h" |
| 18 #include "src/wasm/wasm-opcodes.h" | 18 #include "src/wasm/wasm-opcodes.h" |
| 19 | 19 |
| 20 #include "src/ast/ast.h" | 20 #include "src/ast/ast.h" |
| 21 #include "src/ast/scopes.h" | 21 #include "src/ast/scopes.h" |
| 22 #include "src/codegen.h" |
| 23 #include "src/compiler.h" |
| 24 #include "src/isolate.h" |
| 25 #include "src/parsing/parse-info.h" |
| 22 | 26 |
| 23 namespace v8 { | 27 namespace v8 { |
| 24 namespace internal { | 28 namespace internal { |
| 25 namespace wasm { | 29 namespace wasm { |
| 26 | 30 |
| 27 #define RECURSE(call) \ | 31 #define RECURSE(call) \ |
| 28 do { \ | 32 do { \ |
| 29 DCHECK(!HasStackOverflow()); \ | 33 DCHECK(!HasStackOverflow()); \ |
| 30 call; \ | 34 call; \ |
| 31 if (HasStackOverflow()) return; \ | 35 if (HasStackOverflow()) return; \ |
| 32 } while (false) | 36 } while (false) |
| 33 | 37 |
| 34 enum AsmScope { kModuleScope, kInitScope, kFuncScope, kExportScope }; | 38 enum AsmScope { kModuleScope, kInitScope, kFuncScope, kExportScope }; |
| 35 enum ValueFate { kDrop, kLeaveOnStack }; | 39 enum ValueFate { kDrop, kLeaveOnStack }; |
| 36 | 40 |
| 37 struct ForeignVariable { | 41 struct ForeignVariable { |
| 38 Handle<Name> name; | 42 Handle<Name> name; |
| 39 Variable* var; | 43 Variable* var; |
| 40 LocalType type; | 44 LocalType type; |
| 41 }; | 45 }; |
| 42 | 46 |
| 43 class AsmWasmBuilderImpl final : public AstVisitor<AsmWasmBuilderImpl> { | 47 class AsmWasmBuilderImpl final : public AstVisitor<AsmWasmBuilderImpl> { |
| 44 public: | 48 public: |
| 45 AsmWasmBuilderImpl(Isolate* isolate, Zone* zone, FunctionLiteral* literal, | 49 AsmWasmBuilderImpl(Isolate* isolate, Zone* zone, |
| 46 AsmTyper* typer) | 50 AstValueFactory* ast_value_factory, Script* script, |
| 51 FunctionLiteral* literal, AsmTyper* typer) |
| 47 : local_variables_(ZoneHashMap::kDefaultHashMapCapacity, | 52 : local_variables_(ZoneHashMap::kDefaultHashMapCapacity, |
| 48 ZoneAllocationPolicy(zone)), | 53 ZoneAllocationPolicy(zone)), |
| 49 functions_(ZoneHashMap::kDefaultHashMapCapacity, | 54 functions_(ZoneHashMap::kDefaultHashMapCapacity, |
| 50 ZoneAllocationPolicy(zone)), | 55 ZoneAllocationPolicy(zone)), |
| 51 global_variables_(ZoneHashMap::kDefaultHashMapCapacity, | 56 global_variables_(ZoneHashMap::kDefaultHashMapCapacity, |
| 52 ZoneAllocationPolicy(zone)), | 57 ZoneAllocationPolicy(zone)), |
| 53 scope_(kModuleScope), | 58 scope_(kModuleScope), |
| 54 builder_(new (zone) WasmModuleBuilder(zone)), | 59 builder_(new (zone) WasmModuleBuilder(zone)), |
| 55 current_function_builder_(nullptr), | 60 current_function_builder_(nullptr), |
| 56 literal_(literal), | 61 literal_(literal), |
| 57 isolate_(isolate), | 62 isolate_(isolate), |
| 58 zone_(zone), | 63 zone_(zone), |
| 64 ast_value_factory_(ast_value_factory), |
| 65 script_(script), |
| 59 typer_(typer), | 66 typer_(typer), |
| 67 typer_failed_(false), |
| 60 breakable_blocks_(zone), | 68 breakable_blocks_(zone), |
| 61 foreign_variables_(zone), | 69 foreign_variables_(zone), |
| 62 init_function_(nullptr), | 70 init_function_(nullptr), |
| 63 foreign_init_function_(nullptr), | 71 foreign_init_function_(nullptr), |
| 64 next_table_index_(0), | |
| 65 function_tables_(ZoneHashMap::kDefaultHashMapCapacity, | 72 function_tables_(ZoneHashMap::kDefaultHashMapCapacity, |
| 66 ZoneAllocationPolicy(zone)), | 73 ZoneAllocationPolicy(zone)), |
| 67 imported_function_table_(this) { | 74 imported_function_table_(this) { |
| 68 InitializeAstVisitor(isolate); | 75 InitializeAstVisitor(isolate); |
| 69 } | 76 } |
| 70 | 77 |
| 71 void InitializeInitFunction() { | 78 void InitializeInitFunction() { |
| 72 FunctionSig::Builder b(zone(), 0, 0); | 79 FunctionSig::Builder b(zone(), 0, 0); |
| 73 init_function_ = builder_->AddFunction(b.Build()); | 80 init_function_ = builder_->AddFunction(b.Build()); |
| 74 builder_->MarkStartFunction(init_function_); | 81 builder_->MarkStartFunction(init_function_); |
| (...skipping 20 matching lines...) Expand all Loading... |
| 95 i::Handle<i::FixedArray> GetForeignArgs() { | 102 i::Handle<i::FixedArray> GetForeignArgs() { |
| 96 i::Handle<FixedArray> ret = isolate_->factory()->NewFixedArray( | 103 i::Handle<FixedArray> ret = isolate_->factory()->NewFixedArray( |
| 97 static_cast<int>(foreign_variables_.size())); | 104 static_cast<int>(foreign_variables_.size())); |
| 98 for (size_t i = 0; i < foreign_variables_.size(); ++i) { | 105 for (size_t i = 0; i < foreign_variables_.size(); ++i) { |
| 99 ForeignVariable* fv = &foreign_variables_[i]; | 106 ForeignVariable* fv = &foreign_variables_[i]; |
| 100 ret->set(static_cast<int>(i), *fv->name); | 107 ret->set(static_cast<int>(i), *fv->name); |
| 101 } | 108 } |
| 102 return ret; | 109 return ret; |
| 103 } | 110 } |
| 104 | 111 |
| 105 void Build() { | 112 bool Build() { |
| 106 InitializeInitFunction(); | 113 InitializeInitFunction(); |
| 107 RECURSE(VisitFunctionLiteral(literal_)); | 114 if (!typer_->ValidateBeforeFunctionsPhase()) { |
| 115 return false; |
| 116 } |
| 117 DCHECK(!HasStackOverflow()); |
| 118 VisitFunctionLiteral(literal_); |
| 119 if (HasStackOverflow()) { |
| 120 return false; |
| 121 } |
| 122 if (typer_failed_) { |
| 123 return false; |
| 124 } |
| 108 BuildForeignInitFunction(); | 125 BuildForeignInitFunction(); |
| 126 return true; |
| 109 } | 127 } |
| 110 | 128 |
| 111 void VisitVariableDeclaration(VariableDeclaration* decl) {} | 129 void VisitVariableDeclaration(VariableDeclaration* decl) {} |
| 112 | 130 |
| 113 void VisitFunctionDeclaration(FunctionDeclaration* decl) { | 131 void VisitFunctionDeclaration(FunctionDeclaration* decl) { |
| 114 DCHECK_EQ(kModuleScope, scope_); | 132 DCHECK_EQ(kModuleScope, scope_); |
| 115 DCHECK_NULL(current_function_builder_); | 133 DCHECK_NULL(current_function_builder_); |
| 134 FunctionLiteral* old_func = decl->fun(); |
| 135 i::Zone zone(isolate_->allocator(), ZONE_NAME); |
| 136 if (decl->fun()->body() == nullptr) { |
| 137 // TODO(bradnelson): Refactor parser so we don't need a |
| 138 // SharedFunctionInfo to parse a single function. |
| 139 Handle<SharedFunctionInfo> shared = |
| 140 i::Compiler::NewSharedFunctionInfoFromLiteral( |
| 141 isolate_, decl->fun(), handle(script_, isolate_)); |
| 142 shared->set_is_toplevel(false); |
| 143 i::ParseInfo info(&zone, handle(script_, isolate_)); |
| 144 info.set_shared_info(shared); |
| 145 info.set_toplevel(false); |
| 146 info.set_language_mode(decl->fun()->scope()->language_mode()); |
| 147 info.set_allow_lazy_parsing(false); |
| 148 info.set_ast_value_factory(ast_value_factory_); |
| 149 info.set_ast_value_factory_owned(false); |
| 150 info.set_script_scope(decl->fun()->scope()); |
| 151 if (!i::Compiler::ParseAndAnalyze(&info)) { |
| 152 typer_failed_ = true; |
| 153 return; |
| 154 } |
| 155 FunctionLiteral* func = info.literal(); |
| 156 DCHECK_NOT_NULL(func); |
| 157 decl->set_fun(func); |
| 158 } |
| 159 if (!typer_->ValidateInnerFunction(decl)) { |
| 160 typer_failed_ = true; |
| 161 decl->set_fun(old_func); |
| 162 decl->scope()->RemoveInnerScope(decl->scope()->inner_scope()); |
| 163 return; |
| 164 } |
| 116 current_function_builder_ = LookupOrInsertFunction(decl->proxy()->var()); | 165 current_function_builder_ = LookupOrInsertFunction(decl->proxy()->var()); |
| 117 scope_ = kFuncScope; | 166 scope_ = kFuncScope; |
| 118 RECURSE(Visit(decl->fun())); | 167 RECURSE(Visit(decl->fun())); |
| 168 decl->set_fun(old_func); |
| 169 decl->scope()->RemoveInnerScope(decl->scope()->inner_scope()); |
| 119 scope_ = kModuleScope; | 170 scope_ = kModuleScope; |
| 120 current_function_builder_ = nullptr; | 171 current_function_builder_ = nullptr; |
| 121 local_variables_.Clear(); | 172 local_variables_.Clear(); |
| 122 } | 173 } |
| 123 | 174 |
| 124 void VisitStatements(ZoneList<Statement*>* stmts) { | 175 void VisitStatements(ZoneList<Statement*>* stmts) { |
| 125 for (int i = 0; i < stmts->length(); ++i) { | 176 for (int i = 0; i < stmts->length(); ++i) { |
| 126 Statement* stmt = stmts->at(i); | 177 Statement* stmt = stmts->at(i); |
| 127 ExpressionStatement* e = stmt->AsExpressionStatement(); | 178 ExpressionStatement* e = stmt->AsExpressionStatement(); |
| 128 if (e != nullptr && e->expression()->IsUndefinedLiteral()) { | 179 if (e != nullptr && e->expression()->IsUndefinedLiteral()) { |
| 129 continue; | 180 continue; |
| 130 } | 181 } |
| 131 RECURSE(Visit(stmt)); | 182 RECURSE(Visit(stmt)); |
| 183 if (typer_failed_) break; |
| 132 if (stmt->IsJump()) break; | 184 if (stmt->IsJump()) break; |
| 133 } | 185 } |
| 134 } | 186 } |
| 135 | 187 |
| 136 void VisitBlock(Block* stmt) { | 188 void VisitBlock(Block* stmt) { |
| 137 if (stmt->statements()->length() == 1) { | 189 if (stmt->statements()->length() == 1) { |
| 138 ExpressionStatement* expr = | 190 ExpressionStatement* expr = |
| 139 stmt->statements()->at(0)->AsExpressionStatement(); | 191 stmt->statements()->at(0)->AsExpressionStatement(); |
| 140 if (expr != nullptr) { | 192 if (expr != nullptr) { |
| 141 if (expr->expression()->IsAssignment()) { | 193 if (expr->expression()->IsAssignment()) { |
| (...skipping 96 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 238 void VisitContinueStatement(ContinueStatement* stmt) { | 290 void VisitContinueStatement(ContinueStatement* stmt) { |
| 239 DoBreakOrContinue(stmt->target(), true); | 291 DoBreakOrContinue(stmt->target(), true); |
| 240 } | 292 } |
| 241 | 293 |
| 242 void VisitBreakStatement(BreakStatement* stmt) { | 294 void VisitBreakStatement(BreakStatement* stmt) { |
| 243 DoBreakOrContinue(stmt->target(), false); | 295 DoBreakOrContinue(stmt->target(), false); |
| 244 } | 296 } |
| 245 | 297 |
| 246 void VisitReturnStatement(ReturnStatement* stmt) { | 298 void VisitReturnStatement(ReturnStatement* stmt) { |
| 247 if (scope_ == kModuleScope) { | 299 if (scope_ == kModuleScope) { |
| 300 if (!typer_->ValidateAfterFunctionsPhase()) { |
| 301 typer_failed_ = true; |
| 302 return; |
| 303 } |
| 248 scope_ = kExportScope; | 304 scope_ = kExportScope; |
| 249 RECURSE(Visit(stmt->expression())); | 305 RECURSE(Visit(stmt->expression())); |
| 250 scope_ = kModuleScope; | 306 scope_ = kModuleScope; |
| 251 } else if (scope_ == kFuncScope) { | 307 } else if (scope_ == kFuncScope) { |
| 252 RECURSE(Visit(stmt->expression())); | 308 RECURSE(Visit(stmt->expression())); |
| 253 current_function_builder_->Emit(kExprReturn); | 309 current_function_builder_->Emit(kExprReturn); |
| 254 } else { | 310 } else { |
| 255 UNREACHABLE(); | 311 UNREACHABLE(); |
| 256 } | 312 } |
| 257 } | 313 } |
| (...skipping 183 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 441 const auto& arguments = func_type->Arguments(); | 497 const auto& arguments = func_type->Arguments(); |
| 442 for (int i = 0; i < expr->parameter_count(); ++i) { | 498 for (int i = 0; i < expr->parameter_count(); ++i) { |
| 443 LocalType type = TypeFrom(arguments[i]); | 499 LocalType type = TypeFrom(arguments[i]); |
| 444 DCHECK_NE(kAstStmt, type); | 500 DCHECK_NE(kAstStmt, type); |
| 445 InsertParameter(scope->parameter(i), type, i); | 501 InsertParameter(scope->parameter(i), type, i); |
| 446 } | 502 } |
| 447 } else { | 503 } else { |
| 448 UNREACHABLE(); | 504 UNREACHABLE(); |
| 449 } | 505 } |
| 450 } | 506 } |
| 507 RECURSE(VisitDeclarations(scope->declarations())); |
| 508 if (typer_failed_) return; |
| 451 RECURSE(VisitStatements(expr->body())); | 509 RECURSE(VisitStatements(expr->body())); |
| 452 RECURSE(VisitDeclarations(scope->declarations())); | |
| 453 } | 510 } |
| 454 | 511 |
| 455 void VisitNativeFunctionLiteral(NativeFunctionLiteral* expr) { | 512 void VisitNativeFunctionLiteral(NativeFunctionLiteral* expr) { |
| 456 UNREACHABLE(); | 513 UNREACHABLE(); |
| 457 } | 514 } |
| 458 | 515 |
| 459 void VisitConditional(Conditional* expr) { | 516 void VisitConditional(Conditional* expr) { |
| 460 DCHECK_EQ(kFuncScope, scope_); | 517 DCHECK_EQ(kFuncScope, scope_); |
| 461 RECURSE(Visit(expr->condition())); | 518 RECURSE(Visit(expr->condition())); |
| 462 // WASM ifs come with implicit blocks for both arms. | 519 // WASM ifs come with implicit blocks for both arms. |
| (...skipping 190 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 653 void LoadInitFunction() { | 710 void LoadInitFunction() { |
| 654 current_function_builder_ = init_function_; | 711 current_function_builder_ = init_function_; |
| 655 scope_ = kInitScope; | 712 scope_ = kInitScope; |
| 656 } | 713 } |
| 657 | 714 |
| 658 void UnLoadInitFunction() { | 715 void UnLoadInitFunction() { |
| 659 scope_ = kModuleScope; | 716 scope_ = kModuleScope; |
| 660 current_function_builder_ = nullptr; | 717 current_function_builder_ = nullptr; |
| 661 } | 718 } |
| 662 | 719 |
| 663 void AddFunctionTable(VariableProxy* table, ArrayLiteral* funcs) { | 720 struct FunctionTableIndices : public ZoneObject { |
| 664 auto* func_tbl_type = typer_->TypeOf(funcs)->AsFunctionTableType(); | 721 uint32_t start_index; |
| 665 DCHECK_NOT_NULL(func_tbl_type); | 722 uint32_t signature_index; |
| 666 auto* func_type = func_tbl_type->signature()->AsFunctionType(); | 723 }; |
| 724 |
| 725 FunctionTableIndices* LookupOrAddFunctionTable(VariableProxy* table, |
| 726 Property* p) { |
| 727 FunctionTableIndices* indices = LookupFunctionTable(table->var()); |
| 728 if (indices != nullptr) { |
| 729 // Already setup. |
| 730 return indices; |
| 731 } |
| 732 indices = new (zone()) FunctionTableIndices(); |
| 733 auto* func_type = typer_->TypeOf(p)->AsFunctionType(); |
| 734 auto* func_table_type = typer_->TypeOf(p->obj()->AsVariableProxy()->var()) |
| 735 ->AsFunctionTableType(); |
| 667 const auto& arguments = func_type->Arguments(); | 736 const auto& arguments = func_type->Arguments(); |
| 668 LocalType return_type = TypeFrom(func_type->ReturnType()); | 737 LocalType return_type = TypeFrom(func_type->ReturnType()); |
| 669 FunctionSig::Builder sig(zone(), return_type == kAstStmt ? 0 : 1, | 738 FunctionSig::Builder sig(zone(), return_type == kAstStmt ? 0 : 1, |
| 670 arguments.size()); | 739 arguments.size()); |
| 671 if (return_type != kAstStmt) { | 740 if (return_type != kAstStmt) { |
| 672 sig.AddReturn(return_type); | 741 sig.AddReturn(return_type); |
| 673 } | 742 } |
| 674 for (auto* arg : arguments) { | 743 for (auto* arg : arguments) { |
| 675 sig.AddParam(TypeFrom(arg)); | 744 sig.AddParam(TypeFrom(arg)); |
| 676 } | 745 } |
| 677 uint32_t signature_index = builder_->AddSignature(sig.Build()); | 746 uint32_t signature_index = builder_->AddSignature(sig.Build()); |
| 678 InsertFunctionTable(table->var(), next_table_index_, signature_index); | 747 indices->start_index = builder_->AllocateIndirectFunctions( |
| 679 next_table_index_ += funcs->values()->length(); | 748 static_cast<uint32_t>(func_table_type->length())); |
| 680 for (int i = 0; i < funcs->values()->length(); ++i) { | 749 indices->signature_index = signature_index; |
| 681 VariableProxy* func = funcs->values()->at(i)->AsVariableProxy(); | |
| 682 DCHECK_NOT_NULL(func); | |
| 683 builder_->AddIndirectFunction( | |
| 684 LookupOrInsertFunction(func->var())->func_index()); | |
| 685 } | |
| 686 } | |
| 687 | |
| 688 struct FunctionTableIndices : public ZoneObject { | |
| 689 uint32_t start_index; | |
| 690 uint32_t signature_index; | |
| 691 }; | |
| 692 | |
| 693 void InsertFunctionTable(Variable* v, uint32_t start_index, | |
| 694 uint32_t signature_index) { | |
| 695 FunctionTableIndices* container = new (zone()) FunctionTableIndices(); | |
| 696 container->start_index = start_index; | |
| 697 container->signature_index = signature_index; | |
| 698 ZoneHashMap::Entry* entry = function_tables_.LookupOrInsert( | 750 ZoneHashMap::Entry* entry = function_tables_.LookupOrInsert( |
| 699 v, ComputePointerHash(v), ZoneAllocationPolicy(zone())); | 751 table->var(), ComputePointerHash(table->var()), |
| 700 entry->value = container; | 752 ZoneAllocationPolicy(zone())); |
| 753 entry->value = indices; |
| 754 return indices; |
| 701 } | 755 } |
| 702 | 756 |
| 703 FunctionTableIndices* LookupFunctionTable(Variable* v) { | 757 FunctionTableIndices* LookupFunctionTable(Variable* v) { |
| 704 ZoneHashMap::Entry* entry = | 758 ZoneHashMap::Entry* entry = |
| 705 function_tables_.Lookup(v, ComputePointerHash(v)); | 759 function_tables_.Lookup(v, ComputePointerHash(v)); |
| 706 DCHECK_NOT_NULL(entry); | 760 if (entry == nullptr) { |
| 761 return nullptr; |
| 762 } |
| 707 return reinterpret_cast<FunctionTableIndices*>(entry->value); | 763 return reinterpret_cast<FunctionTableIndices*>(entry->value); |
| 708 } | 764 } |
| 709 | 765 |
| 766 void PopulateFunctionTable(VariableProxy* table, ArrayLiteral* funcs) { |
| 767 FunctionTableIndices* indices = LookupFunctionTable(table->var()); |
| 768 DCHECK_NOT_NULL(indices); |
| 769 for (int i = 0; i < funcs->values()->length(); ++i) { |
| 770 VariableProxy* func = funcs->values()->at(i)->AsVariableProxy(); |
| 771 DCHECK_NOT_NULL(func); |
| 772 builder_->SetIndirectFunction( |
| 773 indices->start_index + i, |
| 774 LookupOrInsertFunction(func->var())->func_index()); |
| 775 } |
| 776 } |
| 777 |
| 710 class ImportedFunctionTable { | 778 class ImportedFunctionTable { |
| 711 private: | 779 private: |
| 712 class ImportedFunctionIndices : public ZoneObject { | 780 class ImportedFunctionIndices : public ZoneObject { |
| 713 public: | 781 public: |
| 714 const char* name_; | 782 const char* name_; |
| 715 int name_length_; | 783 int name_length_; |
| 716 WasmModuleBuilder::SignatureMap signature_to_index_; | 784 WasmModuleBuilder::SignatureMap signature_to_index_; |
| 717 | 785 |
| 718 ImportedFunctionIndices(const char* name, int name_length, Zone* zone) | 786 ImportedFunctionIndices(const char* name, int name_length, Zone* zone) |
| 719 : name_(name), name_length_(name_length), signature_to_index_(zone) {} | 787 : name_(name), name_length_(name_length), signature_to_index_(zone) {} |
| 720 }; | 788 }; |
| 721 ZoneHashMap table_; | 789 ZoneHashMap table_; |
| 722 AsmWasmBuilderImpl* builder_; | 790 AsmWasmBuilderImpl* builder_; |
| 723 | 791 |
| 724 public: | 792 public: |
| 725 explicit ImportedFunctionTable(AsmWasmBuilderImpl* builder) | 793 explicit ImportedFunctionTable(AsmWasmBuilderImpl* builder) |
| 726 : table_(ZoneHashMap::kDefaultHashMapCapacity, | 794 : table_(ZoneHashMap::kDefaultHashMapCapacity, |
| 727 ZoneAllocationPolicy(builder->zone())), | 795 ZoneAllocationPolicy(builder->zone())), |
| 728 builder_(builder) {} | 796 builder_(builder) {} |
| 729 | 797 |
| 730 void AddImport(Variable* v, const char* name, int name_length) { | 798 ImportedFunctionIndices* LookupOrInsertImport(Variable* v) { |
| 731 ImportedFunctionIndices* indices = new (builder_->zone()) | |
| 732 ImportedFunctionIndices(name, name_length, builder_->zone()); | |
| 733 auto* entry = table_.LookupOrInsert( | 799 auto* entry = table_.LookupOrInsert( |
| 734 v, ComputePointerHash(v), ZoneAllocationPolicy(builder_->zone())); | 800 v, ComputePointerHash(v), ZoneAllocationPolicy(builder_->zone())); |
| 735 entry->value = indices; | 801 ImportedFunctionIndices* indices; |
| 802 if (entry->value == nullptr) { |
| 803 indices = new (builder_->zone()) |
| 804 ImportedFunctionIndices(nullptr, 0, builder_->zone()); |
| 805 entry->value = indices; |
| 806 } else { |
| 807 indices = reinterpret_cast<ImportedFunctionIndices*>(entry->value); |
| 808 } |
| 809 return indices; |
| 810 } |
| 811 |
| 812 void SetImportName(Variable* v, const char* name, int name_length) { |
| 813 auto* indices = LookupOrInsertImport(v); |
| 814 indices->name_ = name; |
| 815 indices->name_length_ = name_length; |
| 816 for (auto i : indices->signature_to_index_) { |
| 817 builder_->builder_->SetImportName(i.second, indices->name_, |
| 818 indices->name_length_); |
| 819 } |
| 736 } | 820 } |
| 737 | 821 |
| 738 // Get a function's index (or allocate if new). | 822 // Get a function's index (or allocate if new). |
| 739 uint32_t LookupOrInsertImport(Variable* v, FunctionSig* sig) { | 823 uint32_t LookupOrInsertImportUse(Variable* v, FunctionSig* sig) { |
| 740 ZoneHashMap::Entry* entry = table_.Lookup(v, ComputePointerHash(v)); | 824 auto* indices = LookupOrInsertImport(v); |
| 741 DCHECK_NOT_NULL(entry); | |
| 742 ImportedFunctionIndices* indices = | |
| 743 reinterpret_cast<ImportedFunctionIndices*>(entry->value); | |
| 744 WasmModuleBuilder::SignatureMap::iterator pos = | 825 WasmModuleBuilder::SignatureMap::iterator pos = |
| 745 indices->signature_to_index_.find(sig); | 826 indices->signature_to_index_.find(sig); |
| 746 if (pos != indices->signature_to_index_.end()) { | 827 if (pos != indices->signature_to_index_.end()) { |
| 747 return pos->second; | 828 return pos->second; |
| 748 } else { | 829 } else { |
| 749 uint32_t index = builder_->builder_->AddImport( | 830 uint32_t index = builder_->builder_->AddImport( |
| 750 indices->name_, indices->name_length_, sig); | 831 indices->name_, indices->name_length_, sig); |
| 751 indices->signature_to_index_[sig] = index; | 832 indices->signature_to_index_[sig] = index; |
| 752 return index; | 833 return index; |
| 753 } | 834 } |
| (...skipping 140 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 894 } | 975 } |
| 895 Property* prop = expr->value()->AsProperty(); | 976 Property* prop = expr->value()->AsProperty(); |
| 896 if (prop != nullptr) { | 977 if (prop != nullptr) { |
| 897 VariableProxy* vp = prop->obj()->AsVariableProxy(); | 978 VariableProxy* vp = prop->obj()->AsVariableProxy(); |
| 898 if (vp != nullptr && vp->var()->IsParameter() && | 979 if (vp != nullptr && vp->var()->IsParameter() && |
| 899 vp->var()->index() == 1) { | 980 vp->var()->index() == 1) { |
| 900 VariableProxy* target = expr->target()->AsVariableProxy(); | 981 VariableProxy* target = expr->target()->AsVariableProxy(); |
| 901 if (typer_->TypeOf(target)->AsFFIType() != nullptr) { | 982 if (typer_->TypeOf(target)->AsFFIType() != nullptr) { |
| 902 const AstRawString* name = | 983 const AstRawString* name = |
| 903 prop->key()->AsLiteral()->AsRawPropertyName(); | 984 prop->key()->AsLiteral()->AsRawPropertyName(); |
| 904 imported_function_table_.AddImport( | 985 imported_function_table_.SetImportName( |
| 905 target->var(), reinterpret_cast<const char*>(name->raw_data()), | 986 target->var(), reinterpret_cast<const char*>(name->raw_data()), |
| 906 name->length()); | 987 name->length()); |
| 907 } | 988 } |
| 908 } | 989 } |
| 909 // Property values in module scope don't emit code, so return. | 990 // Property values in module scope don't emit code, so return. |
| 910 return; | 991 return; |
| 911 } | 992 } |
| 912 ArrayLiteral* funcs = expr->value()->AsArrayLiteral(); | 993 ArrayLiteral* funcs = expr->value()->AsArrayLiteral(); |
| 913 if (funcs != nullptr && | 994 if (funcs != nullptr) { |
| 914 typer_->TypeOf(funcs) | |
| 915 ->AsFunctionTableType() | |
| 916 ->signature() | |
| 917 ->AsFunctionType()) { | |
| 918 VariableProxy* target = expr->target()->AsVariableProxy(); | 995 VariableProxy* target = expr->target()->AsVariableProxy(); |
| 919 DCHECK_NOT_NULL(target); | 996 DCHECK_NOT_NULL(target); |
| 920 AddFunctionTable(target, funcs); | 997 PopulateFunctionTable(target, funcs); |
| 921 // Only add to the function table. No init needed. | 998 // Only add to the function table. No init needed. |
| 922 return; | 999 return; |
| 923 } | 1000 } |
| 924 if (expr->value()->IsCallNew()) { | 1001 if (expr->value()->IsCallNew()) { |
| 925 // No init code to emit for CallNew nodes. | 1002 // No init code to emit for CallNew nodes. |
| 926 return; | 1003 return; |
| 927 } | 1004 } |
| 928 as_init = true; | 1005 as_init = true; |
| 929 } | 1006 } |
| 930 | 1007 |
| (...skipping 387 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1318 FunctionSig::Builder sig(zone(), return_type == kAstStmt ? 0 : 1, | 1395 FunctionSig::Builder sig(zone(), return_type == kAstStmt ? 0 : 1, |
| 1319 args->length()); | 1396 args->length()); |
| 1320 if (return_type != kAstStmt) { | 1397 if (return_type != kAstStmt) { |
| 1321 sig.AddReturn(return_type); | 1398 sig.AddReturn(return_type); |
| 1322 } else { | 1399 } else { |
| 1323 returns_value = false; | 1400 returns_value = false; |
| 1324 } | 1401 } |
| 1325 for (int i = 0; i < args->length(); ++i) { | 1402 for (int i = 0; i < args->length(); ++i) { |
| 1326 sig.AddParam(TypeOf(args->at(i))); | 1403 sig.AddParam(TypeOf(args->at(i))); |
| 1327 } | 1404 } |
| 1328 uint32_t index = imported_function_table_.LookupOrInsertImport( | 1405 uint32_t index = imported_function_table_.LookupOrInsertImportUse( |
| 1329 vp->var(), sig.Build()); | 1406 vp->var(), sig.Build()); |
| 1330 VisitCallArgs(expr); | 1407 VisitCallArgs(expr); |
| 1331 current_function_builder_->AddAsmWasmOffset(expr->position()); | 1408 current_function_builder_->AddAsmWasmOffset(expr->position()); |
| 1332 current_function_builder_->Emit(kExprCallFunction); | 1409 current_function_builder_->Emit(kExprCallFunction); |
| 1333 current_function_builder_->EmitVarInt(index); | 1410 current_function_builder_->EmitVarInt(index); |
| 1334 } else { | 1411 } else { |
| 1335 WasmFunctionBuilder* function = LookupOrInsertFunction(vp->var()); | 1412 WasmFunctionBuilder* function = LookupOrInsertFunction(vp->var()); |
| 1336 VisitCallArgs(expr); | 1413 VisitCallArgs(expr); |
| 1337 current_function_builder_->AddAsmWasmOffset(expr->position()); | 1414 current_function_builder_->AddAsmWasmOffset(expr->position()); |
| 1338 current_function_builder_->Emit(kExprCallFunction); | 1415 current_function_builder_->Emit(kExprCallFunction); |
| 1339 current_function_builder_->EmitDirectCallIndex( | 1416 current_function_builder_->EmitDirectCallIndex( |
| 1340 function->func_index()); | 1417 function->func_index()); |
| 1341 returns_value = function->signature()->return_count() > 0; | 1418 returns_value = function->signature()->return_count() > 0; |
| 1342 } | 1419 } |
| 1343 break; | 1420 break; |
| 1344 } | 1421 } |
| 1345 case Call::KEYED_PROPERTY_CALL: { | 1422 case Call::KEYED_PROPERTY_CALL: { |
| 1346 DCHECK_EQ(kFuncScope, scope_); | 1423 DCHECK_EQ(kFuncScope, scope_); |
| 1347 Property* p = expr->expression()->AsProperty(); | 1424 Property* p = expr->expression()->AsProperty(); |
| 1348 DCHECK_NOT_NULL(p); | 1425 DCHECK_NOT_NULL(p); |
| 1349 VariableProxy* var = p->obj()->AsVariableProxy(); | 1426 VariableProxy* var = p->obj()->AsVariableProxy(); |
| 1350 DCHECK_NOT_NULL(var); | 1427 DCHECK_NOT_NULL(var); |
| 1351 FunctionTableIndices* indices = LookupFunctionTable(var->var()); | 1428 FunctionTableIndices* indices = LookupOrAddFunctionTable(var, p); |
| 1352 Visit(p->key()); // TODO(titzer): should use RECURSE() | 1429 Visit(p->key()); // TODO(titzer): should use RECURSE() |
| 1353 | 1430 |
| 1354 // We have to use a temporary for the correct order of evaluation. | 1431 // We have to use a temporary for the correct order of evaluation. |
| 1355 current_function_builder_->EmitI32Const(indices->start_index); | 1432 current_function_builder_->EmitI32Const(indices->start_index); |
| 1356 current_function_builder_->Emit(kExprI32Add); | 1433 current_function_builder_->Emit(kExprI32Add); |
| 1357 WasmTemporary tmp(current_function_builder_, kAstI32); | 1434 WasmTemporary tmp(current_function_builder_, kAstI32); |
| 1358 current_function_builder_->EmitSetLocal(tmp.index()); | 1435 current_function_builder_->EmitSetLocal(tmp.index()); |
| 1359 | 1436 |
| 1360 VisitCallArgs(expr); | 1437 VisitCallArgs(expr); |
| 1361 | 1438 |
| (...skipping 325 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1687 #undef CASE | 1764 #undef CASE |
| 1688 #undef NON_SIGNED_INT | 1765 #undef NON_SIGNED_INT |
| 1689 #undef SIGNED | 1766 #undef SIGNED |
| 1690 #undef NON_SIGNED | 1767 #undef NON_SIGNED |
| 1691 | 1768 |
| 1692 void VisitThisFunction(ThisFunction* expr) { UNREACHABLE(); } | 1769 void VisitThisFunction(ThisFunction* expr) { UNREACHABLE(); } |
| 1693 | 1770 |
| 1694 void VisitDeclarations(Declaration::List* decls) { | 1771 void VisitDeclarations(Declaration::List* decls) { |
| 1695 for (Declaration* decl : *decls) { | 1772 for (Declaration* decl : *decls) { |
| 1696 RECURSE(Visit(decl)); | 1773 RECURSE(Visit(decl)); |
| 1774 if (typer_failed_) { |
| 1775 return; |
| 1776 } |
| 1697 } | 1777 } |
| 1698 } | 1778 } |
| 1699 | 1779 |
| 1700 void VisitClassLiteral(ClassLiteral* expr) { UNREACHABLE(); } | 1780 void VisitClassLiteral(ClassLiteral* expr) { UNREACHABLE(); } |
| 1701 | 1781 |
| 1702 void VisitSpread(Spread* expr) { UNREACHABLE(); } | 1782 void VisitSpread(Spread* expr) { UNREACHABLE(); } |
| 1703 | 1783 |
| 1704 void VisitSuperPropertyReference(SuperPropertyReference* expr) { | 1784 void VisitSuperPropertyReference(SuperPropertyReference* expr) { |
| 1705 UNREACHABLE(); | 1785 UNREACHABLE(); |
| 1706 } | 1786 } |
| (...skipping 107 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1814 | 1894 |
| 1815 ZoneHashMap local_variables_; | 1895 ZoneHashMap local_variables_; |
| 1816 ZoneHashMap functions_; | 1896 ZoneHashMap functions_; |
| 1817 ZoneHashMap global_variables_; | 1897 ZoneHashMap global_variables_; |
| 1818 AsmScope scope_; | 1898 AsmScope scope_; |
| 1819 WasmModuleBuilder* builder_; | 1899 WasmModuleBuilder* builder_; |
| 1820 WasmFunctionBuilder* current_function_builder_; | 1900 WasmFunctionBuilder* current_function_builder_; |
| 1821 FunctionLiteral* literal_; | 1901 FunctionLiteral* literal_; |
| 1822 Isolate* isolate_; | 1902 Isolate* isolate_; |
| 1823 Zone* zone_; | 1903 Zone* zone_; |
| 1904 AstValueFactory* ast_value_factory_; |
| 1905 Script* script_; |
| 1824 AsmTyper* typer_; | 1906 AsmTyper* typer_; |
| 1907 bool typer_failed_; |
| 1825 ZoneVector<std::pair<BreakableStatement*, bool>> breakable_blocks_; | 1908 ZoneVector<std::pair<BreakableStatement*, bool>> breakable_blocks_; |
| 1826 ZoneVector<ForeignVariable> foreign_variables_; | 1909 ZoneVector<ForeignVariable> foreign_variables_; |
| 1827 WasmFunctionBuilder* init_function_; | 1910 WasmFunctionBuilder* init_function_; |
| 1828 WasmFunctionBuilder* foreign_init_function_; | 1911 WasmFunctionBuilder* foreign_init_function_; |
| 1829 uint32_t next_table_index_; | 1912 uint32_t next_table_index_; |
| 1830 ZoneHashMap function_tables_; | 1913 ZoneHashMap function_tables_; |
| 1831 ImportedFunctionTable imported_function_table_; | 1914 ImportedFunctionTable imported_function_table_; |
| 1832 | 1915 |
| 1833 DEFINE_AST_VISITOR_SUBCLASS_MEMBERS(); | 1916 DEFINE_AST_VISITOR_SUBCLASS_MEMBERS(); |
| 1834 | 1917 |
| 1835 private: | 1918 private: |
| 1836 DISALLOW_COPY_AND_ASSIGN(AsmWasmBuilderImpl); | 1919 DISALLOW_COPY_AND_ASSIGN(AsmWasmBuilderImpl); |
| 1837 }; | 1920 }; |
| 1838 | 1921 |
| 1839 AsmWasmBuilder::AsmWasmBuilder(Isolate* isolate, Zone* zone, | 1922 AsmWasmBuilder::AsmWasmBuilder(Isolate* isolate, Zone* zone, |
| 1840 FunctionLiteral* literal, AsmTyper* typer) | 1923 AstValueFactory* ast_value_factory, |
| 1841 : isolate_(isolate), zone_(zone), literal_(literal), typer_(typer) {} | 1924 Script* script, FunctionLiteral* literal) |
| 1925 : isolate_(isolate), |
| 1926 zone_(zone), |
| 1927 ast_value_factory_(ast_value_factory), |
| 1928 script_(script), |
| 1929 literal_(literal), |
| 1930 typer_(isolate, zone, script, literal) {} |
| 1842 | 1931 |
| 1843 // TODO(aseemgarg): probably should take zone (to write wasm to) as input so | 1932 // TODO(aseemgarg): probably should take zone (to write wasm to) as input so |
| 1844 // that zone in constructor may be thrown away once wasm module is written. | 1933 // that zone in constructor may be thrown away once wasm module is written. |
| 1845 AsmWasmBuilder::Result AsmWasmBuilder::Run( | 1934 AsmWasmBuilder::Result AsmWasmBuilder::Run( |
| 1846 i::Handle<i::FixedArray>* foreign_args) { | 1935 i::Handle<i::FixedArray>* foreign_args) { |
| 1847 AsmWasmBuilderImpl impl(isolate_, zone_, literal_, typer_); | 1936 AsmWasmBuilderImpl impl(isolate_, zone_, ast_value_factory_, script_, |
| 1848 impl.Build(); | 1937 literal_, &typer_); |
| 1938 bool success = impl.Build(); |
| 1849 *foreign_args = impl.GetForeignArgs(); | 1939 *foreign_args = impl.GetForeignArgs(); |
| 1850 ZoneBuffer* module_buffer = new (zone_) ZoneBuffer(zone_); | 1940 ZoneBuffer* module_buffer = new (zone_) ZoneBuffer(zone_); |
| 1851 impl.builder_->WriteTo(*module_buffer); | 1941 impl.builder_->WriteTo(*module_buffer); |
| 1852 ZoneBuffer* asm_offsets_buffer = new (zone_) ZoneBuffer(zone_); | 1942 ZoneBuffer* asm_offsets_buffer = new (zone_) ZoneBuffer(zone_); |
| 1853 impl.builder_->WriteAsmJsOffsetTable(*asm_offsets_buffer); | 1943 impl.builder_->WriteAsmJsOffsetTable(*asm_offsets_buffer); |
| 1854 return {module_buffer, asm_offsets_buffer}; | 1944 return {module_buffer, asm_offsets_buffer, success}; |
| 1855 } | 1945 } |
| 1856 | 1946 |
| 1857 const char* AsmWasmBuilder::foreign_init_name = "__foreign_init__"; | 1947 const char* AsmWasmBuilder::foreign_init_name = "__foreign_init__"; |
| 1858 const char* AsmWasmBuilder::single_function_name = "__single_function__"; | 1948 const char* AsmWasmBuilder::single_function_name = "__single_function__"; |
| 1859 | 1949 |
| 1860 } // namespace wasm | 1950 } // namespace wasm |
| 1861 } // namespace internal | 1951 } // namespace internal |
| 1862 } // namespace v8 | 1952 } // namespace v8 |
| OLD | NEW |