HomeSort by relevance Sort by last modified time
    Searched refs:HEnvironment (Results 1 - 25 of 40) sorted by null

1 2

  /art/compiler/optimizing/
escape.cc 82 for (const HUseListNode<HEnvironment*>& use : reference->GetEnvUses()) {
83 HEnvironment* user = use.GetUser();
nodes_test.cc 54 HEnvironment* environment = new (&allocator) HEnvironment(
139 HEnvironment* environment = new (&allocator) HEnvironment(
150 HEnvironment* parent1 = new (&allocator) HEnvironment(
156 HEnvironment* parent2 = new (&allocator) HEnvironment(
ssa_liveness_analysis_test.cc 110 HEnvironment* null_check_env = new (&allocator_) HEnvironment(&allocator_,
121 HEnvironment* bounds_check_env = new (&allocator_) HEnvironment(&allocator_,
180 HEnvironment* null_check_env = new (&allocator_) HEnvironment(&allocator_,
195 HEnvironment* deoptimize_env = new (&allocator_) HEnvironment(&allocator_,
code_sinking.cc 186 for (const HUseListNode<HEnvironment*>& use : instruction->GetEnvUses()) {
215 for (const HUseListNode<HEnvironment*>& use : instruction->GetEnvUses()) {
328 for (const HUseListNode<HEnvironment*>& use : instruction->GetEnvUses()) {
329 HEnvironment* environment = use.GetUser();
358 for (const HUseListNode<HEnvironment*>& use : instruction->GetEnvUses()) {
359 HEnvironment* environment = use.GetUser();
prepare_for_register_allocation.cc 58 HEnvironment* environment = new (arena) HEnvironment(arena,
239 HEnvironment* user_environment = user->GetEnvironment();
240 HEnvironment* input_environment = input->GetEnvironment();
licm.cc 43 for (HEnvironment* environment = instruction->GetEnvironment();
67 static void UpdateLoopPhisIn(HEnvironment* environment, HLoopInformation* info) {
ssa_phi_elimination.cc 105 for (const HUseListNode<HEnvironment*>& use : phi->GetEnvUses()) {
106 HEnvironment* user = use.GetUser();
nodes.h 53 class HEnvironment;
    [all...]
ssa_builder.cc 408 HEnvironment* last_user = nullptr;
409 for (const HUseListNode<HEnvironment*>& use : instruction->GetEnvUses()) {
421 const HUseList<HEnvironment*>& env_uses = instruction->GetEnvUses();
scheduler_test.cc 135 HEnvironment* environment = new (&allocator_) HEnvironment(&allocator_,
graph_checker.cc 386 for (const HUseListNode<HEnvironment*>& use : instruction->GetEnvUses()) {
387 HEnvironment* user = use.GetUser();
441 for (HEnvironment* environment = instruction->GetEnvironment();
471 HEnvironment* environment = instruction->GetEnvironment();
    [all...]
ssa_liveness_analysis.h 165 EnvUsePosition(HEnvironment* environment,
176 HEnvironment* GetEnvironment() const { return environment_; }
188 HEnvironment* const environment_;
297 HEnvironment* environment,
    [all...]
load_store_elimination.cc 505 for (const HUseListNode<HEnvironment*>& use : reference->GetEnvUses()) {
506 HEnvironment* user = use.GetUser();
code_generator.h 726 void EmitEnvironment(HEnvironment* environment, SlowPathCode* slow_path);
    [all...]
code_generator.cc 130 HEnvironment* environment = instruction->GetEnvironment();
589 for (HEnvironment* env = instruction->GetEnvironment(); env != nullptr; env = env->GetParent()) {
799 for (HEnvironment* environment = instruction->GetEnvironment();
    [all...]
nodes.cc 94 for (HEnvironment* environment = instruction->GetEnvironment();
    [all...]
loop_optimization.cc 810 HEnvironment* env = vector_header_->GetFirstInstruction()->GetEnvironment();
    [all...]
  /external/v8/src/crankshaft/
hydrogen-osr.cc 45 HEnvironment *environment = builder_->environment();
hydrogen.h 30 class HEnvironment;
93 HEnvironment* last_environment() const { return last_environment_; }
121 void SetInitialEnvironment(HEnvironment* env);
128 void UpdateEnvironment(HEnvironment* env);
221 HEnvironment* last_environment_;
334 HEnvironment* start_environment() const { return start_environment_; }
481 HEnvironment* start_environment_;
530 class HEnvironment final : public ZoneObject {
532 HEnvironment(HEnvironment* outer
    [all...]
lithium.cc 512 HEnvironment* hydrogen_env = current_block->last_environment();
559 HEnvironment* hydrogen_env) {
569 HEnvironment* hydrogen_env, int* argument_index_accumulator,
580 HEnvironment* outer_hydrogen_env = hydrogen_env->outer();
hydrogen.cc 347 HEnvironment* environment = last_environment();
394 HEnvironment* env = last_environment();
415 HEnvironment* env = last_environment();
427 void HBasicBlock::SetInitialEnvironment(HEnvironment* env) {
434 void HBasicBlock::UpdateEnvironment(HEnvironment* env) {
517 HEnvironment* incoming_env = pred->last_environment();
967 HEnvironment* env = builder->environment();
    [all...]
lithium.h 747 HEnvironment* hydrogen_env);
749 LEnvironment* CreateEnvironment(HEnvironment* hydrogen_env,
  /external/v8/src/crankshaft/arm/
lithium-arm.cc 522 HEnvironment* hydrogen_env = current_block_->last_environment();
707 HEnvironment* last_environment = pred->last_environment();
725 HEnvironment* last_environment = pred->last_environment();
    [all...]
  /external/v8/src/crankshaft/arm64/
lithium-arm64.cc 548 HEnvironment* last_environment = pred->last_environment();
567 HEnvironment* last_environment = pred->last_environment();
696 HEnvironment* hydrogen_env = current_block_->last_environment();
    [all...]
  /external/v8/src/crankshaft/ia32/
lithium-ia32.cc 566 HEnvironment* hydrogen_env = current_block_->last_environment();
740 HEnvironment* last_environment = pred->last_environment();
758 HEnvironment* last_environment = pred->last_environment();
    [all...]

Completed in 598 milliseconds

1 2