Home
last modified time | relevance | path

Searched refs:environment_ (Results 1 – 3 of 3) sorted by relevance

/art/compiler/optimizing/
Dssa_liveness_analysis.h170 : environment_(environment), in EnvUsePosition()
178 HEnvironment* GetEnvironment() const { return environment_; } in GetEnvironment()
186 return new (allocator) EnvUsePosition(environment_, input_index_, position_); in Clone()
190 HEnvironment* const environment_;
Dnodes.h2108 environment_(nullptr), in HInstruction()
2308 bool HasEnvironment() const { return environment_ != nullptr; } in HasEnvironment()
2309 HEnvironment* GetEnvironment() const { return environment_; } in GetEnvironment()
2313 DCHECK(environment_ == nullptr); in SetRawEnvironment()
2315 environment_ = environment; in SetRawEnvironment()
2319 DCHECK(environment_ != nullptr); in InsertRawEnvironment()
2322 environment->parent_ = environment_; in InsertRawEnvironment()
2323 environment_ = environment; in InsertRawEnvironment()
2331 DCHECK(environment_ == nullptr); in CopyEnvironmentFrom()
2333 environment_ = new (allocator) HEnvironment(allocator, *environment, this); in CopyEnvironmentFrom()
[all …]
Dnodes.cc1277 environment_ = nullptr; in RemoveEnvironment()
1350 return HasEnvironment() ? environment_->Size() : 0; in EnvironmentSize()