Searched defs:encoding_ (Results 1 - 2 of 2) sorted by relevance

/art/compiler/utils/x86/
H A Dassembler_x86.h73 return static_cast<int8_t>(encoding_[length_ - 1]);
79 memcpy(&value, &encoding_[length_ - 4], sizeof(value));
84 return ((encoding_[0] & 0xF8) == 0xC0) // Addressing mode is register only.
85 && ((encoding_[0] & 0x07) == reg); // Register codes match.
94 encoding_[0] = (mod << 6) | rm;
101 encoding_[1] = (scale << 6) | (index << 3) | base;
107 encoding_[length_++] = static_cast<uint8_t>(disp);
113 memmove(&encoding_[length_], &disp, disp_size);
119 byte encoding_[6]; member in class:art::x86::Operand
127 return encoding_[inde
[all...]
/art/compiler/utils/x86_64/
H A Dassembler_x86_64.h89 return static_cast<int8_t>(encoding_[length_ - 1]);
95 memcpy(&value, &encoding_[length_ - 4], sizeof(value));
100 return ((encoding_[0] & 0xF8) == 0xC0) // Addressing mode is register only.
101 && ((encoding_[0] & 0x07) == reg.LowBits()) // Register codes match.
114 encoding_[0] = (mod << 6) | rm.LowBits();
127 encoding_[1] = (scale << 6) | (static_cast<uint8_t>(index.LowBits()) << 3) |
134 encoding_[length_++] = static_cast<uint8_t>(disp);
140 memmove(&encoding_[length_], &disp, disp_size);
147 uint8_t encoding_[6]; member in class:art::x86_64::Operand
155 return encoding_[inde
[all...]

Completed in 64 milliseconds