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

  /art/compiler/optimizing/
escape.cc 41 for (const HUseListNode<HInstruction*>& use : reference->GetUses()) {
82 for (const HUseListNode<HEnvironment*>& use : reference->GetEnvUses()) {
code_sinking.cc 172 for (const HUseListNode<HInstruction*>& use : instruction->GetUses()) {
186 for (const HUseListNode<HEnvironment*>& use : instruction->GetEnvUses()) {
209 for (const HUseListNode<HInstruction*>& use : instruction->GetUses()) {
215 for (const HUseListNode<HEnvironment*>& use : instruction->GetEnvUses()) {
306 for (const HUseListNode<HInstruction*>& use : instruction->GetUses()) {
328 for (const HUseListNode<HEnvironment*>& use : instruction->GetEnvUses()) {
358 for (const HUseListNode<HEnvironment*>& use : instruction->GetEnvUses()) {
371 for (const HUseListNode<HInstruction*>& use : instruction->GetUses()) {
ssa_phi_elimination.cc 46 for (const HUseListNode<HInstruction*>& use : phi->GetUses()) {
96 for (const HUseListNode<HInstruction*>& use : phi->GetUses()) {
105 for (const HUseListNode<HEnvironment*>& use : phi->GetEnvUses()) {
231 for (const HUseListNode<HInstruction*>& use : current->GetUses()) {
pretty_printer.h 60 for (const HUseListNode<HInstruction*>& use : instruction->GetUses()) {
instruction_simplifier_arm.cc 117 for (const HUseListNode<HInstruction*>& use : uses) {
instruction_simplifier_arm64.cc 114 for (const HUseListNode<HInstruction*>& use : uses) {
prepare_for_register_allocation.cc 88 for (const HUseListNode<HInstruction*>& use : check->GetUses()) {
scheduler.cc 288 for (const HUseListNode<HInstruction*>& use : instruction->GetUses()) {
354 for (const HUseListNode<HEnvironment*>& use : instruction->GetEnvUses()) {
ssa_builder.cc 112 for (const HUseListNode<HInstruction*>& use : instruction->GetUses()) {
409 for (const HUseListNode<HEnvironment*>& use : instruction->GetEnvUses()) {
instruction_simplifier_shared.cc 367 for (const HUseListNode<HInstruction*>& use : index->GetUses()) {
graph_checker.cc 361 for (const HUseListNode<HInstruction*>& use : instruction->GetUses()) {
386 for (const HUseListNode<HEnvironment*>& use : instruction->GetEnvUses()) {
417 for (const HUseListNode<HInstruction*>& use : instruction->GetUses()) {
    [all...]
loop_optimization.cc     [all...]
reference_type_propagation.cc 187 for (const HUseListNode<HInstruction*>& use : obj->GetUses()) {
    [all...]
load_store_elimination.cc 505 for (const HUseListNode<HEnvironment*>& use : reference->GetEnvUses()) {
ssa_liveness_analysis.cc 214 for (const HUseListNode<HInstruction*>& use : current->GetUses()) {
nodes.h     [all...]
nodes.cc     [all...]
bounds_check_elimination.cc     [all...]
instruction_simplifier.cc 461 for (const HUseListNode<HInstruction*>& use : input->GetUses()) {
    [all...]
  /external/v8/src/crankshaft/
hydrogen-instructions.cc 351 HUseListNode* HUseListNode::tail() {
392 HUseIterator::HUseIterator(HUseListNode* head) : next_(head) {
414 HUseListNode* HValue::RemoveUse(HValue* value, int index) {
415 HUseListNode* previous = NULL;
416 HUseListNode* current = use_list_;
434 HUseListNode* temp =
436 HUseListNode(current->value(), current->index(), NULL);
525 HUseListNode* list_node = use_list_;
544 HUseListNode* first = operand->use_list_
    [all...]
hydrogen-instructions.h 267 class HUseListNode: public ZoneObject {
269 HUseListNode(HValue* value, int index, HUseListNode* tail)
273 HUseListNode* tail();
277 void set_tail(HUseListNode* list) { tail_ = list; }
281 tail_ = reinterpret_cast<HUseListNode*>(1);
288 HUseListNode* tail_;
312 explicit HUseIterator(HUseListNode* head);
314 HUseListNode* current_;
315 HUseListNode* next_
    [all...]

Completed in 137 milliseconds