Home | History | Annotate | Download | only in MCTargetDesc

Lines Matching full:encodedvalue

110   fixLoadStoreExclusive(const MCInst &MI, unsigned EncodedValue) const;
112 unsigned fixMOVZ(const MCInst &MI, unsigned EncodedValue) const;
114 unsigned fixMulHigh(const MCInst &MI, unsigned EncodedValue) const;
434 unsigned EncodedValue) const {
435 if (!hasRs) EncodedValue |= 0x001F0000;
436 if (!hasRt2) EncodedValue |= 0x00007C00;
438 return EncodedValue;
442 AArch64MCCodeEmitter::fixMOVZ(const MCInst &MI, unsigned EncodedValue) const {
451 return EncodedValue;
465 return EncodedValue & ~(1u << 30);
468 return EncodedValue;
476 unsigned EncodedValue) const {
479 EncodedValue |= 0x1f << 10;
480 return EncodedValue;