Searched defs:instructions (Results 1 - 6 of 6) sorted by relevance

/art/compiler/sea_ir/debug/
H A Ddot_gen.cc132 std::vector<InstructionNode*>* instructions = region->GetInstructions(); local
133 for (std::vector<InstructionNode*>::const_iterator cit = instructions->begin();
134 cit != instructions->end(); cit++) {
/art/compiler/sea_ir/types/
H A Dtype_inference.cc146 // Fill the work-list with all instructions.
151 std::vector<InstructionNode*>* instructions = (*region_it)->GetInstructions(); local
152 std::copy(instructions->begin(), instructions->end(), std::back_inserter(worklist));
163 // adding consumers of instructions whose result changed type back into the work-list.
/art/compiler/utils/
H A Dassembler.cc70 void AssemblerBuffer::FinalizeInstructions(const MemoryRegion& instructions) { argument
71 // Copy the instructions from the buffer.
73 instructions.CopyFrom(0, from);
74 // Process fixups in the instructions.
75 ProcessFixups(instructions);
/art/compiler/sea_ir/ir/
H A Dsea.cc38 std::vector<InstructionNode*>* instructions = region->GetInstructions(); local
39 for (std::vector<InstructionNode*>::const_iterator cit = instructions->begin();
40 cit != instructions->end(); cit++) {
206 // by locating targets and flow-though instructions of branches.
229 // Pass: Assign instructions to region nodes and
299 std::vector<InstructionNode*>* instructions = (*region_it)->GetInstructions(); local
300 for (std::vector<InstructionNode*>::iterator inst_it = instructions->begin();
301 inst_it != instructions->end(); inst_it++) {
358 // Rename operands of instructions from the current region.
359 std::vector<InstructionNode*>* instructions local
[all...]
/art/runtime/
H A Delf_file.cc1301 uint8_t instructions[0]; variable
/art/compiler/optimizing/
H A Dnodes.h257 // A block in a method. Contains the list of instructions represented
588 // When doing liveness analysis, instructions that have uses get an SSA index.
591 // List of instructions that have this instruction as input.
689 explicit HInstructionIterator(const HInstructionList& instructions) argument
690 : instruction_(instructions.first_instruction_) {
710 explicit HBackwardInstructionIterator(const HInstructionList& instructions) argument
711 : instruction_(instructions.last_instruction_) {
1098 // Constants of the type int. Those can be from Dex instructions, or
1449 * Some DEX instructions are folded into multiple HInstructions that need

Completed in 128 milliseconds