HomeSort by relevance Sort by last modified time
    Searched refs:GetLocal (Results 1 - 10 of 10) sorted by null

  /external/chromium_org/v8/test/webkit/
dfg-flush-get-local.js 25 "Tests that if we emit a Flush of a GetLocal, we flush the source of the GetLocal."
dfg-cfg-simplify-phantom-get-local-on-same-block-set-local.js 25 "Tests that attempts by the DFG simplification to short-circuit a Phantom to a GetLocal on a variable that is SetLocal'd in the same block, and where the predecessor block(s) make no mention of that variable, do not result in crashes."
39 stuff(z); // Force a Flush, and then a Phantom on the GetLocal of x.
dfg-cfg-simplify-redundant-dead-get-local.js 25 "Tests if the CFG simplifier gracefully handles the case where Block #1 and #2 are merged, #1 has a dead GetLocal, and #2 has a live GetLocal on the same local."
dfg-phantom-get-local.js 25 "Tests that Phantom(GetLocal) is treated as being relevant to OSR."
dfg-constant-fold-uncaptured-variable-that-is-later-captured.js 44 // using GetLocal (which happens because of the CheckFunction to check the callee).
  /art/compiler/optimizing/
ssa_builder.cc 133 load->ReplaceWith(current_locals_->Get(load->GetLocal()->GetRegNumber()));
138 current_locals_->Put(store->GetLocal()->GetRegNumber(), store->InputAt(1));
code_generator_x86_64.cc 251 return Location::DoubleStackSlot(GetStackSlot(load->GetLocal()));
256 return Location::StackSlot(GetStackSlot(load->GetLocal()));
333 Move(location, Location::StackSlot(GetStackSlot(instruction->AsLoadLocal()->GetLocal())));
337 Move(location, Location::DoubleStackSlot(GetStackSlot(instruction->AsLoadLocal()->GetLocal())));
454 locations->SetInAt(1, Location::StackSlot(codegen_->GetStackSlot(store->GetLocal())));
458 locations->SetInAt(1, Location::DoubleStackSlot(codegen_->GetStackSlot(store->GetLocal())));
    [all...]
code_generator_x86.cc 279 return Location::DoubleStackSlot(GetStackSlot(load->GetLocal()));
284 return Location::StackSlot(GetStackSlot(load->GetLocal()));
448 Move32(location, Location::StackSlot(GetStackSlot(instruction->AsLoadLocal()->GetLocal())));
453 GetStackSlot(instruction->AsLoadLocal()->GetLocal())));
575 locations->SetInAt(1, Location::StackSlot(codegen_->GetStackSlot(store->GetLocal())));
579 locations->SetInAt(1, Location::DoubleStackSlot(codegen_->GetStackSlot(store->GetLocal())));
    [all...]
code_generator_arm.cc 304 return Location::DoubleStackSlot(GetStackSlot(load->GetLocal()));
309 return Location::StackSlot(GetStackSlot(load->GetLocal()));
483 uint32_t stack_slot = GetStackSlot(instruction->AsLoadLocal()->GetLocal());
706 locations->SetInAt(1, Location::StackSlot(codegen_->GetStackSlot(store->GetLocal())));
710 locations->SetInAt(1, Location::DoubleStackSlot(codegen_->GetStackSlot(store->GetLocal())));
    [all...]
nodes.h 1063 HLocal* GetLocal() const { return reinterpret_cast<HLocal*>(InputAt(0)); }
1080 HLocal* GetLocal() const { return reinterpret_cast<HLocal*>(InputAt(0)); }
    [all...]

Completed in 167 milliseconds