Home
last modified time | relevance | path

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

/frameworks/libs/binary_translation/lite_translator/riscv64_to_x86_64/
Dallocator.h81 if (regs_allocated_ + temp_regs_allocated >= kNumRegister) { in AllocTemp()
85 kAllocatableRegisters<RegType>[kNumRegister - 1 - temp_regs_allocated]); in AllocTemp()
86 temp_regs_allocated++; in AllocTemp()
87 max_temp_regs_allocated = std::max(max_temp_regs_allocated, temp_regs_allocated); in AllocTemp()
91 void FreeTemps() { temp_regs_allocated = 0; } in FreeTemps()
97 uint32_t temp_regs_allocated = 0; variable