Home
last modified time | relevance | path

Searched refs:instructions (Results 1 – 8 of 8) sorted by relevance

/art/compiler/utils/
Dassembler.cc70 void AssemblerBuffer::FinalizeInstructions(const MemoryRegion& instructions) { in FinalizeInstructions() argument
73 instructions.CopyFrom(0, from); in FinalizeInstructions()
75 ProcessFixups(instructions); in FinalizeInstructions()
/art/test/402-optimizing-control-flow/
Dinfo.txt1 A set of tests for testing control flow instructions on the optimizing compiler.
/art/compiler/sea_ir/types/
Dtype_inference.cc151 std::vector<InstructionNode*>* instructions = (*region_it)->GetInstructions(); in ComputeTypes() local
152 std::copy(instructions->begin(), instructions->end(), std::back_inserter(worklist)); in ComputeTypes()
/art/compiler/sea_ir/debug/
Ddot_gen.cc132 std::vector<InstructionNode*>* instructions = region->GetInstructions(); in Visit() local
133 for (std::vector<InstructionNode*>::const_iterator cit = instructions->begin(); in Visit()
134 cit != instructions->end(); cit++) { in Visit()
/art/compiler/sea_ir/ir/
Dsea.cc38 std::vector<InstructionNode*>* instructions = region->GetInstructions(); in Traverse() local
39 for (std::vector<InstructionNode*>::const_iterator cit = instructions->begin(); in Traverse()
40 cit != instructions->end(); cit++) { in Traverse()
299 std::vector<InstructionNode*>* instructions = (*region_it)->GetInstructions(); in ConvertToSSA() local
300 for (std::vector<InstructionNode*>::iterator inst_it = instructions->begin(); in ConvertToSSA()
301 inst_it != instructions->end(); inst_it++) { in ConvertToSSA()
359 std::vector<InstructionNode*>* instructions = crt_region->GetInstructions(); in RenameAsSSA() local
360 for (std::vector<InstructionNode*>::const_iterator instructions_it = instructions->begin(); in RenameAsSSA()
361 instructions_it != instructions->end(); instructions_it++) { in RenameAsSSA()
/art/compiler/dex/quick/mips/
DREADME.mips26 room to fully describe def/use info for Arm and x86 instructions. However,
42 instructions in the encoding map are given a length of 8 bytes to include
/art/compiler/optimizing/
Dnodes.h689 explicit HInstructionIterator(const HInstructionList& instructions) in HInstructionIterator() argument
690 : instruction_(instructions.first_instruction_) { in HInstructionIterator()
710 explicit HBackwardInstructionIterator(const HInstructionList& instructions) in HBackwardInstructionIterator() argument
711 : instruction_(instructions.last_instruction_) { in HBackwardInstructionIterator()
/art/runtime/
Delf_file.cc1301 uint8_t instructions[0]; member