/third_party/node/deps/v8/src/zone/ |
D | zone-allocator.h | 43 explicit ZoneAllocator(Zone* zone) : zone_(zone) { in ZoneAllocator() 47 zone_->supports_compression()); in ZoneAllocator() 51 : ZoneAllocator<T>(other.zone_) { in ZoneAllocator() 55 zone_->supports_compression()); in ZoneAllocator() 60 T* allocate(size_t length) { return zone_->NewArray<T>(length); } in allocate() 61 void deallocate(T* p, size_t length) { zone_->DeleteArray<T>(p, length); } in deallocate() 77 return zone_ == other.zone_; 80 return zone_ != other.zone_; 83 Zone* zone() { return zone_; } in zone() 86 Zone* zone_;
|
D | zone.cc | 193 : zone_(zone), in ZoneScope() 207 Segment* current = zone_->segment_head_; in ~ZoneScope() 210 zone_->ReleaseSegment(current); in ~ZoneScope() 224 zone_->allocation_size_ = allocation_size_; in ~ZoneScope() 225 zone_->segment_bytes_allocated_ = segment_bytes_allocated_; in ~ZoneScope() 226 zone_->position_ = position_; in ~ZoneScope() 227 zone_->limit_ = limit_; in ~ZoneScope() 228 zone_->segment_head_ = segment_head_; in ~ZoneScope() 230 zone_->allocation_size_for_tracing_ = allocation_size_for_tracing_; in ~ZoneScope() 231 zone_->freed_size_for_tracing_ = freed_size_for_tracing_; in ~ZoneScope()
|
D | zone-segment.h | 24 Zone* zone() const { return zone_; } in zone() 25 void set_zone(Zone* const zone) { zone_ = zone; } in set_zone() 62 Zone* zone_ = nullptr; variable
|
D | zone.h | 248 Zone* const zone_; 293 ZoneAllocationPolicy() : zone_(nullptr) {} in ZoneAllocationPolicy() 294 explicit ZoneAllocationPolicy(Zone* zone) : zone_(zone) {} in ZoneAllocationPolicy() 305 Zone* zone() const { return zone_; } in zone() 308 Zone* zone_;
|
/third_party/skia/third_party/externals/abseil-cpp/absl/time/internal/cctz/src/ |
D | time_zone_impl.h | 54 return zone_->BreakTime(tp); in BreakTime() 61 return zone_->MakeTime(cs); in MakeTime() 67 return zone_->NextTransition(tp, trans); in NextTransition() 71 return zone_->PrevTransition(tp, trans); in PrevTransition() 75 std::string Version() const { return zone_->Version(); } in Version() 78 std::string Description() const { return zone_->Description(); } in Description() 85 std::unique_ptr<TimeZoneIf> zone_; variable
|
/third_party/node/deps/v8/src/compiler/ |
D | zone-stats.h | 26 zone_(nullptr), in zone_name_() 34 if (zone_ == nullptr) in zone() 35 zone_ = in zone() 37 return zone_; in zone() 40 if (zone_ != nullptr) zone_stats_->ReturnZone(zone_); in Destroy() 41 zone_ = nullptr; in Destroy() 49 Zone* zone_; variable
|
D | per-isolate-compiler-cache.h | 30 : zone_(zone), refs_snapshot_(nullptr) {} in PerIsolateCompilerCache() 40 refs_snapshot_ = zone_->New<RefsMap>(refs, zone_); in SetSnapshot() 44 Zone* zone() const { return zone_; } in zone() 56 Zone* const zone_;
|
D | node-aux-data.h | 31 explicit NodeAuxData(Zone* zone) : zone_(zone), aux_data_(zone) {} in NodeAuxData() 33 : zone_(zone), aux_data_(initial_size, def(zone), zone) {} in NodeAuxData() 38 if (id >= aux_data_.size()) aux_data_.resize(id + 1, def(zone_)); in Set() 48 return (id < aux_data_.size()) ? aux_data_[id] : def(zone_); in Get() 58 Zone* zone_;
|
D | csa-load-elimination.cc | 125 HalfState* result = zone_->New<HalfState>(*this); in KillField() 126 UnknownOffsetInfos empty_unknown(zone_, InnerMap(zone_)); in KillField() 137 KillOffset(result->arbitrary_entries_, num_offset, repr, zone_); in KillField() 138 result->fresh_unknown_entries_.Set(object, InnerMap(zone_)); in KillField() 144 KillOffset(result->constant_entries_, num_offset, repr, zone_); in KillField() 145 KillOffset(result->arbitrary_entries_, num_offset, repr, zone_); in KillField() 151 KillOffset(result->fresh_entries_, num_offset, repr, zone_); in KillField() 152 KillOffset(result->constant_entries_, num_offset, repr, zone_); in KillField() 153 KillOffset(result->arbitrary_entries_, num_offset, repr, zone_); in KillField() 159 ConstantOffsetInfos empty_constant(zone_, InnerMap(zone_)); in KillField() [all …]
|
D | csa-load-elimination.h | 37 zone_(zone) {} in NON_EXPORTED_BASE() 68 : zone_(zone), in NON_EXPORTED_BASE() 121 Zone* zone_; in NON_EXPORTED_BASE() local 174 Zone* zone() const { return zone_; } in NON_EXPORTED_BASE() 180 Zone* zone_; in NON_EXPORTED_BASE() local
|
D | control-equivalence.h | 37 : zone_(zone), in NON_EXPORTED_BASE() 139 node_data_[index] = zone_->New<NodeData>(zone_); in NON_EXPORTED_BASE() 173 Zone* const zone_; in NON_EXPORTED_BASE() local
|
D | node-observer.cc | 27 zone_->New<NodeObservation>(observer, node, zone_); in StartObserving() 39 ObservableNodeState new_state{new_node, zone_}; in OnNodeChanged()
|
D | scheduler.cc | 33 : zone_(zone), in Scheduler() 240 : zone_(zone), in CFGBuilder() 423 Node** successors = zone_->NewArray<Node*>(successor_cnt); in BuildBlocksForSuccessors() 534 zone_->NewArray<BasicBlock*>(successor_count); in ConnectSwitch() 630 Zone* zone_; member in v8::internal::compiler::CFGBuilder 646 equivalence_ = zone_->New<ControlEquivalence>(zone_, graph_); in BuildCFG() 650 control_flow_builder_ = zone_->New<CFGBuilder>(zone_, this); in BuildCFG() 678 : zone_(zone), in SpecialRPONumberer() 905 loop->AddOutgoing(zone_, succ); in ComputeAndInsertSpecialRPO() 998 zone_); in ComputeLoopInfo() [all …]
|
D | compilation-dependencies.cc | 43 : zone_(zone), broker_(broker), dependencies_(zone) { in CompilationDependencies() 1036 RecordDependency(zone_->New<InitialMapDependency>(broker_, function, map)); in DependOnInitialMap() 1044 zone_->New<PrototypePropertyDependency>(broker_, function, prototype)); in DependOnPrototypeProperty() 1050 RecordDependency(zone_->New<StableMapDependency>(map)); in DependOnStableMap() 1057 RecordDependency(zone_->New<ConstantInDictionaryPrototypeChainDependency>( in DependOnConstantInDictionaryPrototypeChain() 1065 RecordDependency(zone_->New<PretenureModeDependency>(site, allocation)); in DependOnPretenureMode() 1086 RecordDependency(zone_->New<FieldConstnessDependency>(map, descriptor)); in DependOnFieldConstness() 1094 RecordDependency(zone_->New<GlobalPropertyDependency>(cell, type, read_only)); in DependOnGlobalProperty() 1100 RecordDependency(zone_->New<ProtectorDependency>(cell)); in DependOnProtector() 1146 RecordDependency(zone_->New<ElementsKindDependency>(site, kind)); in DependOnElementsKind() [all …]
|
D | loop-analysis.h | 36 : zone_(zone), in LoopTree() 96 ZoneVector<const Loop*> inner_loops(zone_); in inner_loops() 146 Zone* zone() const { return zone_; } in zone() 152 all_loops_.push_back(Loop(zone_)); in NewLoop() 167 Zone* zone_; variable
|
D | control-flow-optimizer.h | 46 Zone* zone() const { return zone_; } in zone() 53 Zone* const zone_; variable
|
/third_party/node/deps/v8/src/ast/ |
D | ast.h | 2813 : zone_(zone), in AstNodeFactory() 2823 return zone_->New<VariableDeclaration>(pos); in NewVariableDeclaration() 2828 return zone_->New<NestedVariableDeclaration>(scope, pos); in NewNestedVariableDeclaration() 2832 return zone_->New<FunctionDeclaration>(fun, pos); in NewFunctionDeclaration() 2836 return zone_->New<Block>(zone_, capacity, ignore_completion_value, false); in NewBlock() 2840 return zone_->New<Block>(ignore_completion_value, is_breakable); in NewBlock() 2846 result->InitializeStatements(statements, zone_); in NewBlock() 2851 NodeType* New##NodeType(int pos) { return zone_->New<NodeType>(pos); } 2858 return zone_->New<SwitchStatement>(zone_, tag, pos); in STATEMENT_WITH_POSITION() 2865 return zone_->New<ForInStatement>(pos); in NewForEachStatement() [all …]
|
/third_party/node/deps/v8/src/regexp/experimental/ |
D | experimental-compiler.cc | 218 explicit BytecodeAssembler(Zone* zone) : zone_(zone), code_(0, zone) {} in BytecodeAssembler() 222 void Accept() { code_.Add(RegExpInstruction::Accept(), zone_); } in Accept() 225 code_.Add(RegExpInstruction::Assertion(t), zone_); in Assertion() 229 code_.Add(RegExpInstruction::ClearRegister(register_index), zone_); in ClearRegister() 233 code_.Add(RegExpInstruction::ConsumeRange(from, to), zone_); in ConsumeRange() 237 code_.Add(RegExpInstruction::ConsumeAnyChar(), zone_); in ConsumeAnyChar() 249 code_.Add(RegExpInstruction::SetRegisterToCp(register_index), zone_); in SetRegisterToCp() 270 void Fail() { code_.Add(RegExpInstruction::Fail(), zone_); } in Fail() 289 code_.Add(result, zone_); in LabelledInstrImpl() 292 Zone* zone_; member in v8::internal::__anon6d2affe80211::BytecodeAssembler [all …]
|
D | experimental-interpreter.cc | 156 zone_(zone) { in NfaInterpreter() 333 InterpreterThread{0, NewRegisterArray(kUndefinedRegisterValue)}, zone_); in FindNextMatch() 381 blocked_threads_.Add(t, zone_); in RunActiveThread() 400 active_threads_.Add(fork, zone_); in RunActiveThread() 455 active_threads_.Add(t, zone_); in FlushBlockedThreads() 554 Zone* zone_; member in v8::internal::__anon4175da610111::NfaInterpreter
|
/third_party/node/deps/v8/src/wasm/ |
D | struct-types.h | 91 zone_(zone), in Builder() 104 uint32_t* offsets = zone_->NewArray<uint32_t>(field_count_); in Build() 105 return zone_->New<StructType>(field_count_, offsets, buffer_, in Build() 111 Zone* const zone_; variable
|
/third_party/node/deps/v8/src/asmjs/ |
D | asm-parser.h | 166 Zone* zone_; variable 177 CachedVectors<ValueType> cached_valuetype_vectors_{zone_}; 178 CachedVectors<AsmType*> cached_asm_type_p_vectors_{zone_}; 179 CachedVectors<AsmJsScanner::token_t> cached_token_t_vectors_{zone_}; 180 CachedVectors<int32_t> cached_int_vectors_{zone_}; 247 Zone* zone() { return zone_; } in zone()
|
/third_party/node/deps/v8/src/compiler/backend/ |
D | register-allocator-verifier.h | 143 zone_(zone) {} in BlockAssessments() 161 std::make_pair(operand, zone_->New<FinalAssessment>(virtual_register))); in AddDefinition() 194 Zone* zone_; variable 264 Zone* zone() const { return zone_; } in zone() 289 Zone* const zone_; variable
|
/third_party/node/deps/v8/src/handles/ |
D | handles.cc | 157 : zone_(zone == nullptr ? new Zone(isolate->allocator(), ZONE_NAME) : zone), in CanonicalHandleScope() 164 isolate->heap(), ZoneAllocationPolicy(zone_)); in CanonicalHandleScope() 175 delete zone_; in ~CanonicalHandleScope() 217 zone_ = nullptr; // We don't own the zone, null it. in ~CanonicalHandleScopeForOptimization()
|
/third_party/node/deps/v8/src/deoptimizer/ |
D | translation-array.h | 50 : contents_(zone), contents_for_compression_(zone), zone_(zone) {} in TranslationArrayBuilder() 120 Zone* zone() const { return zone_; } in zone() 124 Zone* const zone_; variable
|
/third_party/node/deps/v8/src/compiler/backend/arm/ |
D | unwinding-info-writer-arm.h | 20 : zone_(zone), in UnwindingInfoWriter() 61 Zone* zone_; variable
|