Searched refs:HInstruction (Results 1 – 12 of 12) sorted by relevance
/external/v8/src/ |
D | hydrogen.h | 62 HInstruction* first() const { return first_; } in first() 63 HInstruction* last() const { return last_; } in last() 64 void set_last(HInstruction* instr) { last_ = instr; } in set_last() 65 HInstruction* GetLastInstruction(); 101 void AddInstruction(HInstruction* instr); 160 HInstruction* first_; 161 HInstruction* last_; 279 void InsertTypeConversions(HInstruction* instr); 463 virtual void ReturnInstruction(HInstruction* instr, int ast_id) = 0; 498 virtual void ReturnInstruction(HInstruction* instr, int ast_id); [all …]
|
D | hydrogen.cc | 105 void HBasicBlock::AddInstruction(HInstruction* instr) { in AddInstruction() 424 HInstruction* current = block->first(); in Verify() 644 HInstruction* instr = blocks()->at(i)->first(); in Canonicalize() 903 HInstruction* instr = block->first(); in Analyze() 1220 HInstruction* instr = dominator->first(); in Process() 1236 HInstruction* instr = block->first(); in RemoveStackCheck() 1272 bool ShouldMove(HInstruction* instr, HBasicBlock* loop_header); 1303 HInstruction* instr = block->first(); in ComputeBlockSideEffects() 1353 HInstruction* instr = block->first(); in ProcessLoopBlock() 1355 HInstruction* next = instr->next(); in ProcessLoopBlock() [all …]
|
D | hydrogen-instructions.cc | 449 void HInstruction::PrintTo(StringStream* stream) { in PrintTo() 475 void HInstruction::Unlink() { in Unlink() 491 void HInstruction::InsertBefore(HInstruction* next) { in InsertBefore() 497 HInstruction* prev = next->previous(); in InsertBefore() 506 void HInstruction::InsertAfter(HInstruction* previous) { in InsertAfter() 522 HInstruction* next = previous->next_; in InsertAfter() 538 void HInstruction::Verify() { in Verify() 546 HInstruction* cur = cur_block->first(); in Verify() 1612 HInstruction::Verify(); in Verify() 1618 HInstruction::Verify(); in Verify() [all …]
|
D | hydrogen-instructions.h | 44 class HInstruction; variable 630 class HInstruction: public HValue { 632 HInstruction* next() const { return next_; } in next() 633 HInstruction* previous() const { return previous_; } in previous() 640 void InsertBefore(HInstruction* next); 641 void InsertAfter(HInstruction* previous); 662 HInstruction() in DECLARE_INSTRUCTION() 677 HInstruction* next_; 678 HInstruction* previous_; 685 class HControlInstruction: public HInstruction { [all …]
|
D | lithium-allocator.h | 43 class HInstruction; variable 439 void RecordDefinition(HInstruction* instr, LUnallocated* operand);
|
D | lithium-allocator.cc | 1603 void LAllocator::RecordDefinition(HInstruction* instr, LUnallocated* operand) { in RecordDefinition()
|
/external/v8/src/x64/ |
D | lithium-x64.cc | 641 HInstruction* instr = HInstruction::cast(value); in Use() 725 HInstruction* hinstr, in MarkAsCall() 943 HInstruction* current = block->first(); in DoBasicBlock() 963 void LChunkBuilder::VisitInstruction(HInstruction* current) { in VisitInstruction() 964 HInstruction* old_current = current_instruction_; in VisitInstruction()
|
D | lithium-x64.h | 2124 HInstruction* hinstr, 2134 void VisitInstruction(HInstruction* current); 2148 HInstruction* current_instruction_;
|
/external/v8/src/ia32/ |
D | lithium-ia32.cc | 640 HInstruction* instr = HInstruction::cast(value); in Use() 724 HInstruction* hinstr, in MarkAsCall() 941 HInstruction* current = block->first(); in DoBasicBlock() 961 void LChunkBuilder::VisitInstruction(HInstruction* current) { in VisitInstruction() 962 HInstruction* old_current = current_instruction_; in VisitInstruction()
|
D | lithium-ia32.h | 2198 HInstruction* hinstr, 2208 void VisitInstruction(HInstruction* current); 2222 HInstruction* current_instruction_;
|
/external/v8/src/arm/ |
D | lithium-arm.cc | 648 HInstruction* instr = HInstruction::cast(value); in Use() 730 HInstruction* hinstr, in MarkAsCall() 948 HInstruction* current = block->first(); in DoBasicBlock() 968 void LChunkBuilder::VisitInstruction(HInstruction* current) { in VisitInstruction() 969 HInstruction* old_current = current_instruction_; in VisitInstruction()
|
D | lithium-arm.h | 2141 HInstruction* hinstr, 2151 void VisitInstruction(HInstruction* current); 2165 HInstruction* current_instruction_;
|