Lines Matching refs:flat
507 FLAT_instruction& flat = instr->flatlike();
512 assert(flat.offset <= 0xfff);
514 assert(flat.offset >= -4096 && flat.offset < 4096);
515 encoding |= flat.offset & 0x1fff;
520 assert(flat.offset == 0);
522 assert(flat.offset >= -2048 && flat.offset <= 2047);
523 encoding |= flat.offset & 0xfff;
529 encoding |= flat.lds ? 1 << 13 : 0;
530 encoding |= flat.glc ? 1 << 16 : 0;
531 encoding |= flat.slc ? 1 << 17 : 0;
533 assert(!flat.nv);
534 encoding |= flat.dlc ? 1 << 12 : 0;
536 assert(!flat.dlc);
559 encoding |= flat.nv ? 1 << 23 : 0;