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.h2037 environment_(nullptr), in HInstruction()
2236 bool HasEnvironment() const { return environment_ != nullptr; } in HasEnvironment()
2237 HEnvironment* GetEnvironment() const { return environment_; } in GetEnvironment()
2241 DCHECK(environment_ == nullptr); in SetRawEnvironment()
2243 environment_ = environment; in SetRawEnvironment()
2247 DCHECK(environment_ != nullptr); in InsertRawEnvironment()
2250 environment->parent_ = environment_; in InsertRawEnvironment()
2251 environment_ = environment; in InsertRawEnvironment()
2259 DCHECK(environment_ == nullptr); in CopyEnvironmentFrom()
2261 environment_ = new (allocator) HEnvironment(allocator, *environment, this); in CopyEnvironmentFrom()
[all …]
Dnodes.cc1278 environment_ = nullptr; in RemoveEnvironment()
1351 return HasEnvironment() ? environment_->Size() : 0; in EnvironmentSize()