/third_party/node/deps/v8/src/zone/ |
H A 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_; in operator ==() 80 return zone_ != other.zone_; in operator !=() 86 Zone* zone_; global() member in v8::internal::ZoneAllocator [all...] |
H A 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_ in ~ZoneScope() [all...] |
H A 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; member in v8::internal::Segment
|
H A D | zone.h | 248 Zone* const zone_; member in v8::internal::final 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_; member in v8::internal::ZoneAllocationPolicy
|
/third_party/skia/third_party/externals/abseil-cpp/absl/time/internal/cctz/src/ |
H A 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_; member in absl::time_internal::cctz::time_zone::Impl
|
/third_party/node/deps/v8/src/compiler/ |
H A D | zone-stats.h | 26 zone_(nullptr), in Scope() 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_; member in v8::internal::compiler::final::final
|
H A 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_; member in v8::internal::compiler::PerIsolateCompilerCache
|
H A 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_; member in v8::internal::compiler::NodeAuxData
|
H A 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() [all...] |
H A 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_(zon in SpecialRPONumberer() 1144 Zone* zone_; global() member in v8::internal::compiler::SpecialRPONumberer 1851 Zone* zone_; global() member in v8::internal::compiler::ScheduleLateNodeVisitor [all...] |
H A D | csa-load-elimination.h | 37 zone_(zone) {} in CsaLoadElimination() 68 : zone_(zone), in HalfState() 121 Zone* zone_; member in v8::internal::compiler::final::final 174 Zone* zone() const { return zone_; } in zone() 180 Zone* zone_; member in v8::internal::compiler::final
|
H A 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_; member in v8::internal::compiler::LoopTree
|
H A D | node-observer.cc | 27 zone_->New<NodeObservation>(observer, node, zone_); in StartObserving() 39 ObservableNodeState new_state{new_node, zone_}; in OnNodeChanged()
|
H A D | control-equivalence.h | 37 : zone_(zone), in ControlEquivalence() 139 node_data_[index] = zone_->New<NodeData>(zone_); in AllocateData() 173 Zone* const zone_; member in v8::internal::compiler::final
|
/third_party/node/deps/v8/src/ast/ |
H A 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_ in NewSwitchStatement() 3350 Zone* zone_; global() member in v8::internal::final [all...] |
/third_party/node/deps/v8/src/regexp/experimental/ |
H A 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() local 225 code_.Add(RegExpInstruction::Assertion(t), zone_); in Assertion() local 229 code_.Add(RegExpInstruction::ClearRegister(register_index), zone_); in ClearRegister() local 233 code_.Add(RegExpInstruction::ConsumeRange(from, to), zone_); in ConsumeRange() local 237 code_.Add(RegExpInstruction::ConsumeAnyChar(), zone_); in ConsumeAnyChar() local 249 code_.Add(RegExpInstruction::SetRegisterToCp(register_index), zone_); in SetRegisterToCp() local 270 void Fail() { code_.Add(RegExpInstruction::Fail(), zone_); } in Fail() local 289 code_.Add(result, zone_); in LabelledInstrImpl() 292 Zone* zone_; member in v8::internal::__anon14955::BytecodeAssembler 624 Zone* zone_; global() member in v8::internal::__anon14955::CompileVisitor [all...] |
/third_party/node/deps/v8/src/asmjs/ |
H A D | asm-parser.h | 166 Zone* zone_; member in v8::internal::wasm::AsmJsParser 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/wasm/ |
H A 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_; member in v8::internal::wasm::StructType::Builder
|
/third_party/node/deps/v8/src/deoptimizer/ |
H A 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_; member in v8::internal::TranslationArrayBuilder
|
/third_party/node/deps/v8/src/handles/ |
H A D | handles.cc | 157 : zone_(zone == nullptr ? new Zone(isolate->allocator(), ZONE_NAME) : zone), in CanonicalHandleScope() 164 isolate->heap(), ZoneAllocationPolicy(zone_)); in CanonicalHandleScope() 170 // Note: both the identity_map_ (zone-allocated) and the zone_ itself may 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/compiler/backend/ |
H A 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_; member in v8::internal::compiler::BlockAssessments 264 Zone* zone() const { return zone_; } in zone() 289 Zone* const zone_; member in v8::internal::compiler::final
|
/third_party/node/deps/v8/src/compiler/backend/arm64/ |
H A D | unwinding-info-writer-arm64.h | 20 : zone_(zone), in UnwindingInfoWriter() 61 Zone* zone_; member in v8::internal::compiler::UnwindingInfoWriter
|
/third_party/node/deps/v8/src/compiler/backend/s390/ |
H A D | unwinding-info-writer-s390.h | 20 : zone_(zone), in UnwindingInfoWriter() 61 Zone* zone_; member in v8::internal::compiler::UnwindingInfoWriter
|
/third_party/node/deps/v8/src/compiler/backend/arm/ |
H A D | unwinding-info-writer-arm.h | 20 : zone_(zone), in UnwindingInfoWriter() 61 Zone* zone_; member in v8::internal::compiler::UnwindingInfoWriter
|
/third_party/node/deps/v8/src/compiler/backend/ppc/ |
H A D | unwinding-info-writer-ppc.h | 20 : zone_(zone), in UnwindingInfoWriter() 61 Zone* zone_; member in v8::internal::compiler::UnwindingInfoWriter
|