Home | History | Annotate | Download | only in x64

Lines Matching refs:base_code

202   int base_code = buf_[0] & 0x07;
203 if (base_code == rsp.code()) {
210 base_code = (buf_[1] & 0x07) | ((rex_ & 0x01) << 3);
212 if (base_code == rbp.code() && ((buf_[0] & 0xC0) == 0)) return false;
213 return code == base_code;
217 if (base_code == rbp.code() && ((buf_[0] & 0xC0) == 0)) return false;
218 base_code |= ((rex_ & 0x01) << 3);
219 return code == base_code;