Home
last modified time | relevance | path

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

/frameworks/libs/binary_translation/assembler/include/berberis/assembler/
Dx86_32.h80 if (IsAccumulator(dest) && src.base == no_register && src.index == no_register) { in Movb()
88 if (dest.base == no_register && dest.index == no_register && IsAccumulator(src)) { in Movb()
100 if (IsAccumulator(dest) && src.base == no_register && src.index == no_register) { in Movw()
108 if (dest.base == no_register && dest.index == no_register && IsAccumulator(src)) { in Movw()
120 if (IsAccumulator(dest) && src.base == no_register && src.index == no_register) { in Movl()
128 if (dest.base == no_register && dest.index == no_register && IsAccumulator(src)) { in Movl()
202 static bool IsAccumulator(Register reg) { return reg == eax; } in IsAccumulator() function
Dx86_64.h122 if (IsAccumulator(src) && IsAccumulator(dest)) { in Xchgl()
536 if (IsAccumulator(src) && IsAccumulator(dest)) { in Xchgq()
538 } else if (IsAccumulator(src) || IsAccumulator(dest)) { in Xchgq()
539 Register other = IsAccumulator(src) ? dest : src; in Xchgq()
Dcommon_x86.h784 if (Assembler::IsAccumulator(src) || Assembler::IsAccumulator(dest)) { in Xchgl()
785 Register other = Assembler::IsAccumulator(src) ? dest : src; in Xchgl()