| Index: src/asmjs/asm-wasm-builder.cc
|
| diff --git a/src/asmjs/asm-wasm-builder.cc b/src/asmjs/asm-wasm-builder.cc
|
| index ac2585e6eaacc5453d317981309671a121c0ec22..e58d7b5602862ee66e551c13d77b83be8d100cf6 100644
|
| --- a/src/asmjs/asm-wasm-builder.cc
|
| +++ b/src/asmjs/asm-wasm-builder.cc
|
| @@ -43,14 +43,11 @@ class AsmWasmBuilderImpl final : public AstVisitor<AsmWasmBuilderImpl> {
|
| public:
|
| AsmWasmBuilderImpl(Isolate* isolate, Zone* zone, FunctionLiteral* literal,
|
| AsmTyper* typer)
|
| - : local_variables_(base::HashMap::PointersMatch,
|
| - ZoneHashMap::kDefaultHashMapCapacity,
|
| + : local_variables_(ZoneHashMap::kDefaultHashMapCapacity,
|
| ZoneAllocationPolicy(zone)),
|
| - functions_(base::HashMap::PointersMatch,
|
| - ZoneHashMap::kDefaultHashMapCapacity,
|
| + functions_(ZoneHashMap::kDefaultHashMapCapacity,
|
| ZoneAllocationPolicy(zone)),
|
| - global_variables_(base::HashMap::PointersMatch,
|
| - ZoneHashMap::kDefaultHashMapCapacity,
|
| + global_variables_(ZoneHashMap::kDefaultHashMapCapacity,
|
| ZoneAllocationPolicy(zone)),
|
| scope_(kModuleScope),
|
| builder_(new (zone) WasmModuleBuilder(zone)),
|
| @@ -64,8 +61,7 @@ class AsmWasmBuilderImpl final : public AstVisitor<AsmWasmBuilderImpl> {
|
| init_function_index_(0),
|
| foreign_init_function_index_(0),
|
| next_table_index_(0),
|
| - function_tables_(base::HashMap::PointersMatch,
|
| - ZoneHashMap::kDefaultHashMapCapacity,
|
| + function_tables_(ZoneHashMap::kDefaultHashMapCapacity,
|
| ZoneAllocationPolicy(zone)),
|
| imported_function_table_(this) {
|
| InitializeAstVisitor(isolate);
|
| @@ -692,8 +688,7 @@ class AsmWasmBuilderImpl final : public AstVisitor<AsmWasmBuilderImpl> {
|
|
|
| public:
|
| explicit ImportedFunctionTable(AsmWasmBuilderImpl* builder)
|
| - : table_(base::HashMap::PointersMatch,
|
| - ZoneHashMap::kDefaultHashMapCapacity,
|
| + : table_(ZoneHashMap::kDefaultHashMapCapacity,
|
| ZoneAllocationPolicy(builder->zone())),
|
| builder_(builder) {}
|
|
|
|
|