/external/v8/src/compiler/ |
D | zone-stats.h | 24 : zone_name_(zone_name), zone_stats_(zone_stats), zone_(nullptr) {} in Scope() 28 if (zone_ == nullptr) zone_ = zone_stats_->NewEmptyZone(zone_name_); in zone() 29 return zone_; in zone() 32 if (zone_ != nullptr) zone_stats_->ReturnZone(zone_); in Destroy() 33 zone_ = nullptr; in Destroy() 39 Zone* zone_; variable
|
D | live-range-separator.h | 23 : data_(data), zone_(zone) {} in LiveRangeSeparator() 29 Zone* zone() const { return zone_; } in zone() 32 Zone* const zone_; variable 41 : data_(data), zone_(zone) {} in LiveRangeMerger() 47 Zone* zone() const { return zone_; } in zone() 55 Zone* const zone_; variable
|
D | compilation-dependencies.cc | 15 : zone_(zone), dependencies_(zone) {} in CompilationDependencies() 294 dependencies_.push_front(new (zone_) InitialMapDependency(function, map)); in DependOnInitialMap() 302 new (zone_) PrototypePropertyDependency(function, prototype)); in DependOnPrototypeProperty() 308 dependencies_.push_front(new (zone_) StableMapDependency(map)); in DependOnStableMap() 316 dependencies_.push_front(new (zone_) TransitionDependency(target_map)); in DependOnTransition() 325 dependencies_.push_front(new (zone_) PretenureModeDependency(site, mode)); in DependOnPretenureMode() 334 dependencies_.push_front(new (zone_) in DependOnFieldType() 342 dependencies_.push_front(new (zone_) in DependOnGlobalProperty() 347 dependencies_.push_front(new (zone_) ProtectorDependency(cell)); in DependOnProtector() 357 dependencies_.push_front(new (zone_) ElementsKindDependency(site, kind)); in DependOnElementsKind() [all …]
|
D | scheduler.cc | 30 : zone_(zone), in Scheduler() 244 : zone_(zone), in CFGBuilder() 427 Node** successors = zone_->NewArray<Node*>(successor_cnt); in BuildBlocksForSuccessors() 503 zone_->NewArray<BasicBlock*>(successor_count); in ConnectSwitch() 593 Zone* zone_; member in v8::internal::compiler::CFGBuilder 609 equivalence_ = new (zone_) ControlEquivalence(zone_, graph_); in BuildCFG() 613 control_flow_builder_ = new (zone_) CFGBuilder(zone_, this); in BuildCFG() 641 : zone_(zone), in SpecialRPONumberer() 869 loop->AddOutgoing(zone_, succ); in ComputeAndInsertSpecialRPO() 961 zone_); in ComputeLoopInfo() [all …]
|
D | register-allocator-verifier.h | 137 : map_(zone), map_for_moves_(zone), zone_(zone) {} in BlockAssessments() 147 std::make_pair(operand, new (zone_) FinalAssessment(virtual_register))); in AddDefinition() 165 Zone* zone_; variable 234 Zone* zone() const { return zone_; } in zone() 258 Zone* const zone_; variable
|
D | control-equivalence.h | 37 : zone_(zone), in NON_EXPORTED_BASE() 139 node_data_[index] = new (zone_) NodeData(zone_); in NON_EXPORTED_BASE() 173 Zone* const zone_; in NON_EXPORTED_BASE() local
|
D | loop-analysis.h | 29 : zone_(zone), in LoopTree() 128 Zone* zone() const { return zone_; } in zone() 134 all_loops_.push_back(Loop(zone_)); in NewLoop() 149 Zone* zone_; variable
|
D | common-node-cache.h | 25 explicit CommonNodeCache(Zone* zone) : zone_(zone) {} in CommonNodeCache() 72 Zone* zone() const { return zone_; } in zone() 85 Zone* const zone_; variable
|
D | control-flow-optimizer.h | 40 Zone* zone() const { return zone_; } in zone() 47 Zone* const zone_; variable
|
D | type-cache.h | 21 Zone zone_; variable 26 TypeCache() : zone_(&allocator, ZONE_NAME) {} in TypeCache() 170 Zone* zone() { return &zone_; } in zone()
|
/external/v8/src/zone/ |
D | zone-allocator.h | 33 explicit ZoneAllocator(Zone* zone) throw() : zone_(zone) {} in ZoneAllocator() 35 : ZoneAllocator<T>(other.zone_) {} in ZoneAllocator() 38 : ZoneAllocator<T>(other.zone_) {} in ZoneAllocator() 46 return static_cast<T*>(zone_->NewArray<T>(static_cast<int>(n))); 65 return zone_ == other.zone_; 68 return zone_ != other.zone_; 71 Zone* zone() { return zone_; } in zone() 74 Zone* zone_;
|
D | zone-segment.h | 25 Zone* zone() const { return zone_; } in zone() 26 void set_zone(Zone* const zone) { zone_ = zone; } in set_zone() 53 Zone* zone_; variable
|
/external/v8/src/ast/ |
D | ast.h | 1453 zone_(zone) {} in AccessorTable() 1456 Iterator it = find(literal, true, ZoneAllocationPolicy(zone_)); in lookup() 1458 it->second = new (zone_) ObjectLiteral::Accessors(); in lookup() 1464 Zone* zone_; 2829 : zone_(zone), ast_value_factory_(ast_value_factory) {} in AstNodeFactory() 2834 return new (zone_) VariableDeclaration(proxy, pos); in NewVariableDeclaration() 2840 return new (zone_) NestedVariableDeclaration(proxy, scope, pos); in NewNestedVariableDeclaration() 2845 return new (zone_) FunctionDeclaration(proxy, fun, pos); in NewFunctionDeclaration() 2851 ? new (zone_) LabeledBlock(zone_, labels, capacity, 2853 : new (zone_) [all …]
|
D | ast-value-factory.cc | 185 : zone_(isolate->allocator(), ZONE_NAME), in AstStringConstants() 196 name##_string_ = new (&zone_) AstRawString(true, literal, hash_field); \ in AstStringConstants() 246 AstConsString* new_string = new (zone_) AstConsString; in NewConsString() 253 return NewConsString()->AddString(zone_, str); in NewConsString() 258 return NewConsString()->AddString(zone_, str1)->AddString(zone_, str2); in NewConsString() 291 byte* new_literal_bytes = zone_->NewArray<byte>(length); in GetString() 293 AstRawString* new_string = new (zone_) AstRawString( in GetString()
|
D | ast-value-factory.h | 256 Zone zone_; 278 zone_(zone), in AstValueFactory() 287 Zone* zone() const { return zone_; } in zone() 355 Zone* zone_; variable
|
/external/v8/src/asmjs/ |
D | asm-parser.h | 153 Zone* zone_; variable 163 CachedVectors<ValueType> cached_valuetype_vectors_{zone_}; 164 CachedVectors<AsmType*> cached_asm_type_p_vectors_{zone_}; 165 CachedVectors<AsmJsScanner::token_t> cached_token_t_vectors_{zone_}; 166 CachedVectors<int32_t> cached_int_vectors_{zone_}; 233 Zone* zone() { return zone_; } in zone()
|
/external/v8/src/ |
D | signature.h | 64 zone_(zone), in Builder() 84 return new (zone_) Signature<T>(return_count_, parameter_count_, buffer_); in Build() 88 Zone* zone_;
|
/external/v8/src/wasm/ |
D | wasm-module-builder.h | 25 : zone_(zone), buffer_(reinterpret_cast<byte*>(zone->New(initial))) { in zone_() function 129 byte* new_buffer = reinterpret_cast<byte*>(zone_->New(new_size)); in EnsureSpace() 146 Zone* zone_; 245 Zone* zone() { return zone_; } in zone() 278 Zone* zone_; variable
|
/external/v8/src/compiler/arm64/ |
D | unwinding-info-writer-arm64.h | 19 : zone_(zone), in UnwindingInfoWriter() 60 Zone* zone_; variable
|
/external/v8/src/compiler/arm/ |
D | unwinding-info-writer-arm.h | 19 : zone_(zone), in UnwindingInfoWriter() 60 Zone* zone_; variable
|
/external/v8/src/compiler/x64/ |
D | unwinding-info-writer-x64.h | 19 : zone_(zone), in UnwindingInfoWriter() 67 Zone* zone_; variable
|
/external/v8/src/regexp/ |
D | regexp-parser.h | 135 Zone* zone() const { return zone_; } in zone() 138 Zone* zone_; variable 312 Zone* zone() const { return zone_; } in zone() 324 Zone* zone_; variable
|
D | regexp-ast.cc | 141 RegExpUnparser(std::ostream& os, Zone* zone) : os_(os), zone_(zone) {} in RegExpUnparser() 148 Zone* zone_; member in v8::internal::RegExpUnparser 186 for (int i = 0; i < that->ranges(zone_)->length(); i++) { in VisitCharacterClass() 188 VisitCharacterRange(that->ranges(zone_)->at(i)); in VisitCharacterClass()
|
/external/v8/src/parsing/ |
D | rewriter.cc | 25 zone_(ast_value_factory->zone()), in Processor() 39 zone_(ast_value_factory->zone()), in Processor() 41 factory_(ast_value_factory, zone_) { in Processor() 49 Zone* zone() { return zone_; } in zone() 99 Zone* zone_; member in v8::internal::Processor
|
D | func-name-inferrer.h | 102 Zone* zone() const { return zone_; } in zone() 114 Zone* zone_; variable
|