Searched refs:zone_ (Results 1 - 25 of 157) sorted by relevance

1234567

/external/v8/src/zone/
H A Dzone-allocator.h31 zone_allocator() : zone_(nullptr) { UNREACHABLE(); }
33 explicit zone_allocator(Zone* zone) throw() : zone_(zone) {}
35 : zone_(other.zone_) {}
37 zone_allocator(const zone_allocator<U>& other) throw() : zone_(other.zone_) {}
46 zone_->NewArray<value_type>(static_cast<int>(n)));
65 return zone_ == other.zone_;
68 return zone_ !
74 Zone* zone_; member in class:v8::internal::zone_allocator
[all...]
H A Dzone-segment.h25 Zone* zone() const { return zone_; }
26 void set_zone(Zone* const zone) { zone_ = zone; }
51 Zone* zone_; member in class:v8::internal::Segment
/external/v8/src/compiler/
H A Dlive-range-separator.h23 : data_(data), zone_(zone) {}
29 Zone* zone() const { return zone_; }
32 Zone* const zone_; member in class:v8::internal::compiler::final
41 : data_(data), zone_(zone) {}
47 Zone* zone() const { return zone_; }
55 Zone* const zone_; member in class:v8::internal::compiler::final
H A Dzone-stats.h24 : zone_name_(zone_name), zone_stats_(zone_stats), zone_(nullptr) {}
28 if (zone_ == nullptr) zone_ = zone_stats_->NewEmptyZone(zone_name_);
29 return zone_;
32 if (zone_ != nullptr) zone_stats_->ReturnZone(zone_);
33 zone_ = nullptr;
39 Zone* zone_; member in class:v8::internal::compiler::final::final
H A Dcontrol-flow-optimizer.h40 Zone* zone() const { return zone_; }
47 Zone* const zone_; member in class:v8::internal::compiler::final
H A Dcommon-node-cache.h25 explicit CommonNodeCache(Zone* zone) : zone_(zone) {}
72 Zone* zone() const { return zone_; }
85 Zone* const zone_; member in class:v8::internal::compiler::final
H A Descape-analysis-reducer.h51 Zone* zone() const { return zone_; }
55 Zone* const zone_; member in class:v8::internal::compiler::final
H A Dloop-analysis.h29 : zone_(zone),
129 Zone* zone() const { return zone_; }
135 all_loops_.push_back(Loop(zone_));
150 Zone* zone_; member in class:v8::internal::compiler::LoopTree
H A Dbytecode-analysis.h103 Zone* zone() const { return zone_; }
109 Zone* zone_; member in class:v8::internal::compiler::BASE_EMBEDDED
H A Dint64-lowering.h41 Zone* zone() const { return zone_; }
68 Zone* zone_; member in class:v8::internal::compiler::Int64Lowering
H A Doperation-typer.h76 Zone* zone() const { return zone_; }
78 Zone* const zone_; member in class:v8::internal::compiler::OperationTyper
H A Dredundancy-elimination.h68 Zone* zone() const { return zone_; }
71 Zone* const zone_; member in class:v8::internal::compiler::final
H A Dsimd-scalar-lowering.h41 Zone* zone() const { return zone_; }
69 Zone* zone_; member in class:v8::internal::compiler::SimdScalarLowering
/external/v8/src/crankshaft/
H A Dcompilation-phase.h27 Zone* zone() { return &zone_; }
32 Zone zone_; member in class:v8::internal::BASE_EMBEDDED
H A Dhydrogen-flow-engine.h72 zone_(zone),
85 state = state->Process(it.Current(), zone_);
102 State* state = State::Finish(StateAt(block), block, zone_);
116 state = state->Process(it.Current(), zone_);
132 State::Merge(StateAt(succ), succ, state, block, zone_));
146 effects = new(zone_) Effects(zone_);
159 effects->Union(nested, zone_);
167 effects->Process(it.Current(), zone_);
191 pred_counts_.AddBlock(0, graph_->blocks()->length(), zone_);
208 Zone* zone_; // Temporary zone. member in class:v8::internal::HFlowEngine
[all...]
H A Dhydrogen-removable-simulates.cc17 : zone_(zone), mergelist_(2, zone), first_(true), mode_(NORMAL) { }
114 : zone_(other.zone_),
115 mergelist_(other.mergelist_, other.zone_),
124 mergelist_.Add(sim, zone_);
165 Zone* zone_; member in class:v8::internal::State
H A Dcompilation-phase.cc15 : name_(name), info_(info), zone_(info->isolate()->allocator(), ZONE_NAME) {
H A Dlithium-codegen.h35 Zone* zone() const { return zone_; }
80 Zone* zone_; member in class:v8::internal::BASE_EMBEDDED
/external/v8/src/
H A Dsafepoint-table.cc112 deoptimization_info_.Add(info, zone_);
113 deopt_index_list_.Add(Safepoint::kNoDeoptimizationIndex, zone_);
117 indexes_.Add(new(zone_) ZoneList<int>(8, zone_), zone_);
119 ? new(zone_) ZoneList<int>(4, zone_)
121 zone_);
164 ZoneList<uint8_t> bits(bytes_per_entry, zone_);
169 bits.AddBlock(0, bytes_per_entry, zone_);
[all...]
H A Dsignature.h52 zone_(zone),
72 return new (zone_) Signature<T>(return_count_, parameter_count_, buffer_);
76 Zone* zone_;
H A Dcompilation-dependencies.h20 zone_(zone),
61 Zone* zone_; member in class:v8::internal::CompilationDependencies
/external/v8/src/compiler/arm/
H A Dunwinding-info-writer-arm.h19 : zone_(zone),
60 Zone* zone_; member in class:v8::internal::compiler::UnwindingInfoWriter
/external/v8/src/compiler/arm64/
H A Dunwinding-info-writer-arm64.h19 : zone_(zone),
60 Zone* zone_; member in class:v8::internal::compiler::UnwindingInfoWriter
/external/v8/src/compiler/x64/
H A Dunwinding-info-writer-x64.h19 : zone_(zone),
67 Zone* zone_; member in class:v8::internal::compiler::UnwindingInfoWriter
/external/v8/src/ast/
H A Dast-value-factory.cc293 AstConsString* new_string = new (zone_) AstConsString(left, right);
319 AstValue* value = new (zone_) AstValue(string);
325 AstValue* value = new (zone_) AstValue(symbol);
331 AstValue* value = new (zone_) AstValue(number, with_dot);
339 AstValue* value = new (zone_) AstValue(AstValue::SMI, number);
346 value = AddValue(new (zone_) AstValue(initializer)); \
387 byte* new_literal_bytes = zone_->NewArray<byte>(length);
389 AstRawString* new_string = new (zone_) AstRawString(

Completed in 453 milliseconds

1234567