Searched refs:LoOffset (Results 1 - 2 of 2) sorted by relevance

/freebsd-13-stable/contrib/llvm-project/llvm/lib/Target/Mips/MCTargetDesc/
H A DMipsTargetStreamer.cpp317 unsigned LoOffset = Offset & 0x0000ffff; local
320 // If msb of LoOffset is 1(negative number) we must increment HiOffset
322 if (LoOffset & 0x8000)
330 emitRRI(Opcode, SrcReg, ATReg, LoOffset, IDLoc, STI);
353 unsigned LoOffset = Offset & 0x0000ffff; local
356 // If msb of LoOffset is 1(negative number) we must increment HiOffset
358 if (LoOffset & 0x8000)
366 emitRRI(Opcode, DstReg, TmpReg, LoOffset, IDLoc, STI);
/freebsd-13-stable/contrib/llvm-project/llvm/lib/Target/Mips/AsmParser/
H A DMipsAsmParser.cpp3718 int64_t LoOffset = OffsetOp.getImm() & 0xffff; local
3721 // If msb of LoOffset is 1(negative number) we must increment
3723 if (LoOffset & 0x8000)
3738 emitInstWithOffset(MCOperand::createImm(int16_t(LoOffset)));

Completed in 182 milliseconds