Home
last modified time | relevance | path

Searched refs:CodeGeneratorARM (Results 1 – 3 of 3) sorted by relevance

/art/compiler/optimizing/
Dcode_generator_arm.h28 class CodeGeneratorARM; variable
65 ParallelMoveResolverARM(ArenaAllocator* allocator, CodeGeneratorARM* codegen) in ParallelMoveResolverARM()
79 CodeGeneratorARM* const codegen_;
86 explicit LocationsBuilderARM(HGraph* graph, CodeGeneratorARM* codegen) in LocationsBuilderARM()
97 CodeGeneratorARM* const codegen_;
105 InstructionCodeGeneratorARM(HGraph* graph, CodeGeneratorARM* codegen);
119 CodeGeneratorARM* const codegen_;
124 class CodeGeneratorARM : public CodeGenerator {
126 explicit CodeGeneratorARM(HGraph* graph);
127 virtual ~CodeGeneratorARM() { } in ~CodeGeneratorARM()
[all …]
Dcode_generator_arm.cc101 CodeGeneratorARM* arm_codegen = reinterpret_cast<CodeGeneratorARM*>(codegen); in EmitNativeCode()
151 void CodeGeneratorARM::DumpCoreRegister(std::ostream& stream, int reg) const { in DumpCoreRegister()
155 void CodeGeneratorARM::DumpFloatingPointRegister(std::ostream& stream, int reg) const { in DumpFloatingPointRegister()
159 CodeGeneratorARM::CodeGeneratorARM(HGraph* graph) in CodeGeneratorARM() function in art::arm::CodeGeneratorARM
166 size_t CodeGeneratorARM::FrameEntrySpillSize() const { in FrameEntrySpillSize()
174 ManagedRegister CodeGeneratorARM::AllocateFreeRegister(Primitive::Type type, in AllocateFreeRegister()
228 void CodeGeneratorARM::SetupBlockedRegisters(bool* blocked_registers) const { in SetupBlockedRegisters()
258 size_t CodeGeneratorARM::GetNumberOfRegisters() const { in GetNumberOfRegisters()
262 InstructionCodeGeneratorARM::InstructionCodeGeneratorARM(HGraph* graph, CodeGeneratorARM* codegen) in InstructionCodeGeneratorARM()
267 void CodeGeneratorARM::GenerateFrameEntry() { in GenerateFrameEntry()
[all …]
Dcode_generator.cc260 return new (allocator) arm::CodeGeneratorARM(graph); in Create()