/external/v8/src/ |
zone-allocator.h | 29 explicit zone_allocator(Zone* zone) throw() : zone_(zone) {} 31 : zone_(other.zone_) {} 33 : zone_(other.zone_) {} 40 return static_cast<pointer>(zone_->NewArray<value_type>( 54 return zone_ == other.zone_; 57 return zone_ != other.zone_; 64 Zone* zone_; member in class:v8::internal::zone_allocator [all...] |
signature.h | 41 zone_(zone), 61 return new (zone_) Signature<T>(return_count_, parameter_count_, buffer_); 65 Zone* zone_;
|
safepoint-table.cc | 112 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...] |
compilation-dependencies.h | 20 zone_(zone), 61 Zone* zone_; member in class:v8::internal::CompilationDependencies
|
zone.h | 145 explicit ZoneScope(Zone* zone) : zone_(zone) { } 146 ~ZoneScope() { zone_->DeleteAll(); } 148 Zone* zone() const { return zone_; } 151 Zone* zone_; member in class:v8::internal::final 159 explicit ZoneAllocationPolicy(Zone* zone) : zone_(zone) { } 162 Zone* zone() const { return zone_; } 165 Zone* zone_; member in class:v8::internal::final
|
identity-map.cc | 90 keys_ = zone_->NewArray<Object*>(size_); 93 values_ = zone_->NewArray<void*>(size_); 131 ZoneVector<std::pair<Object*, void*>> reinsert(zone_); 172 keys_ = zone_->NewArray<Object*>(size_); 175 values_ = zone_->NewArray<void*>(size_);
|
compilation-dependencies.cc | 46 groups_[group] = new (zone_) ZoneList<Handle<HeapObject>>(2, zone_); 48 groups_[group]->Add(object, zone_);
|
/external/v8/src/compiler/ |
zone-pool.h | 23 : zone_pool_(zone_pool), zone_(nullptr) {} 27 if (zone_ == nullptr) zone_ = zone_pool_->NewEmptyZone(); 28 return zone_; 31 if (zone_ != nullptr) zone_pool_->ReturnZone(zone_); 32 zone_ = nullptr; 37 Zone* zone_; member in class:v8::internal::compiler::final::final
|
live-range-separator.h | 24 : data_(data), zone_(zone) {} 30 Zone* zone() const { return zone_; } 33 Zone* const zone_; member in class:v8::internal::compiler::final 42 : data_(data), zone_(zone) {} 48 Zone* zone() const { return zone_; } 56 Zone* const zone_; member in class:v8::internal::compiler::final
|
type-hint-analyzer.h | 35 explicit TypeHintAnalyzer(Zone* zone) : zone_(zone) {} 40 Zone* zone() const { return zone_; } 42 Zone* const zone_; member in class:v8::internal::compiler::final
|
value-numbering-reducer.h | 25 Zone* zone() const { return zone_; } 30 Zone* zone_; member in class:v8::internal::compiler::final
|
control-flow-optimizer.h | 40 Zone* zone() const { return zone_; } 47 Zone* const zone_; member in class:v8::internal::compiler::final
|
common-node-cache.h | 25 explicit CommonNodeCache(Zone* zone) : zone_(zone) {} 58 Zone* zone() const { return zone_; } 68 Zone* const zone_; member in class:v8::internal::compiler::final
|
escape-analysis-reducer.h | 48 Zone* zone() const { return zone_; } 53 Zone* const zone_; member in class:v8::internal::compiler::final
|
register-allocator-verifier.h | 60 Zone* zone() const { return zone_; } 76 Zone* const zone_; member in class:v8::internal::compiler::final
|
escape-analysis.h | 67 Zone* zone() const { return zone_; } 71 Zone* const zone_; member in class:v8::internal::compiler::EscapeStatusAnalysis 148 Zone* zone() const { return zone_; } 154 Zone* const zone_; member in class:v8::internal::compiler::EscapeAnalysis
|
loop-analysis.h | 28 : zone_(zone), 123 all_loops_.push_back(Loop(zone_)); 138 Zone* zone_; member in class:v8::internal::compiler::LoopTree
|
/external/v8/test/unittests/compiler/ |
live-range-builder.h | 21 : id_(-1), pairs_(), uses_(), zone_(zone) {} 43 new (zone_) TopLevelLiveRange(id_, MachineRepresentation::kTagged); 51 range->AddUseInterval(start, end, zone_); 55 new (zone_) UsePosition(LifetimePosition::FromInt(pos), nullptr, 70 Zone* zone_; member in class:v8::internal::compiler::TestRangeBuilder
|
/external/v8/test/unittests/ |
test-utils.h | 99 Zone* zone() { return &zone_; } 102 Zone zone_; member in class:v8::internal::TestWithZone 113 Zone* zone() { return &zone_; } 116 Zone zone_; member in class:v8::internal::TestWithIsolateAndZone
|
/external/v8/src/crankshaft/ |
hydrogen-flow-engine.h | 72 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...] |
typing.h | 37 Zone* zone_; member in class:v8::internal::AstTyper 45 Zone* zone() const { return zone_; }
|
hydrogen-removable-simulates.cc | 16 : zone_(zone), mergelist_(2, zone), first_(true), mode_(NORMAL) { } 113 : zone_(other.zone_), 114 mergelist_(other.mergelist_, other.zone_), 123 mergelist_.Add(sim, zone_); 164 Zone* zone_; member in class:v8::internal::State
|
/external/v8/src/wasm/ |
asm-wasm-builder.h | 26 Zone* zone_; member in class:v8::internal::wasm::AsmWasmBuilder
|
/external/v8/test/cctest/compiler/ |
test-gap-resolver.cc | 134 explicit MoveInterpreter(Zone* zone) : zone_(zone) {} 138 ParallelMove* moves = new (zone_) ParallelMove(zone_); 145 ParallelMove* moves = new (zone_) ParallelMove(zone_); 158 Zone* const zone_; member in class:v8::internal::compiler::MoveInterpreter
|
/external/v8/src/ast/ |
ast-value-factory.cc | 249 AstConsString* new_string = new (zone_) AstConsString(left, right); 276 AstValue* value = new (zone_) AstValue(string); 287 AstValue* value = new (zone_) AstValue(name); 297 AstValue* value = new (zone_) AstValue(number, with_dot); 308 new (zone_) AstValue(AstValue::SMI, number); 319 value = new (zone_) AstValue(initializer); \ 365 byte* new_literal_bytes = zone_->NewArray<byte>(length); 367 AstRawString* new_string = new (zone_) AstRawString(
|