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

1 2

  /art/compiler/optimizing/
nodes_test.cc 54 HEnvironment* environment = new (GetAllocator()) HEnvironment(
130 HEnvironment* environment = new (GetAllocator()) HEnvironment(
140 HEnvironment* parent1 = new (GetAllocator()) HEnvironment(
146 HEnvironment* parent2 = new (GetAllocator()) HEnvironment(
escape.cc 90 for (const HUseListNode<HEnvironment*>& use : reference->GetEnvUses()) {
91 HEnvironment* user = use.GetUser();
ssa_liveness_analysis_test.cc 106 HEnvironment* null_check_env = new (GetAllocator()) HEnvironment(GetAllocator(),
117 HEnvironment* bounds_check_env = new (GetAllocator()) HEnvironment(GetAllocator(),
175 HEnvironment* null_check_env = new (GetAllocator()) HEnvironment(GetAllocator(),
190 HEnvironment* deoptimize_env = new (GetAllocator()) HEnvironment(GetAllocator(),
code_sinking.cc 197 for (const HUseListNode<HEnvironment*>& use : instruction->GetEnvUses()) {
231 for (const HUseListNode<HEnvironment*>& use : instruction->GetEnvUses()) {
346 for (const HUseListNode<HEnvironment*>& use : instruction->GetEnvUses()) {
347 HEnvironment* environment = use.GetUser();
376 for (const HUseListNode<HEnvironment*>& use : instruction->GetEnvUses()) {
377 HEnvironment* environment = use.GetUser();
superblock_cloner_test.cc 118 // Adjust HEnvironment for each instruction which require that.
122 HEnvironment* env = ManuallyBuildEnvFor(suspend_check, &current_locals);
127 HEnvironment* ManuallyBuildEnvFor(HInstruction* instruction,
129 HEnvironment* environment = new (GetAllocator()) HEnvironment(
249 HEnvironment* orig_env = orig_instr->GetEnvironment();
250 HEnvironment* copy_env = copy_instr->GetEnvironment();
prepare_for_register_allocation.cc 61 HEnvironment* environment = new (allocator) HEnvironment(allocator,
244 HEnvironment* user_environment = user->GetEnvironment();
245 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 113 for (const HUseListNode<HEnvironment*>& use : phi->GetEnvUses()) {
114 HEnvironment* user = use.GetUser();
superblock_cloner.cc 119 const HEnvironment* orig_env) {
123 HEnvironment* copy_env = new (arena_) HEnvironment(arena_, *orig_env, copy_instr);
528 HEnvironment* orig_env = orig_instr->GetEnvironment();
superblock_cloner.h 239 void DeepCloneEnvironmentWithRemapping(HInstruction* copy_instr, const HEnvironment* orig_env);
nodes.h 55 class HEnvironment;
    [all...]
ssa_builder.cc 419 HEnvironment* last_user = nullptr;
420 for (const HUseListNode<HEnvironment*>& use : instruction->GetEnvUses()) {
432 const HUseList<HEnvironment*>& env_uses = instruction->GetEnvUses();
scheduler_test.cc 138 HEnvironment* environment = new (GetAllocator()) HEnvironment(GetAllocator(),
graph_checker.cc 398 for (const HUseListNode<HEnvironment*>& use : instruction->GetEnvUses()) {
399 HEnvironment* user = use.GetUser();
453 for (HEnvironment* environment = instruction->GetEnvironment();
483 HEnvironment* environment = instruction->GetEnvironment();
    [all...]
ssa_liveness_analysis.h 167 EnvUsePosition(HEnvironment* environment,
178 HEnvironment* GetEnvironment() const { return environment_; }
190 HEnvironment* const environment_;
301 HEnvironment* environment,
    [all...]
code_generator.h 741 void EmitEnvironment(HEnvironment* environment, SlowPathCode* slow_path);
    [all...]
nodes.cc 99 for (HEnvironment* environment = instruction->GetEnvironment();
112 for (HEnvironment* environment = instruction->GetEnvironment();
127 for (HEnvironment* environment = instruction->GetEnvironment();
    [all...]
code_generator.cc 133 HEnvironment* environment = instruction->GetEnvironment();
749 for (HEnvironment* env = instruction->GetEnvironment(); env != nullptr; env = env->GetParent()) {
    [all...]
load_store_elimination.cc     [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...]

Completed in 1137 milliseconds

1 2