HomeSort by: relevance | last modified time | path
    Searched refs:LoOffset (Results 1 - 2 of 2) sorted by relevancy

  /src/external/apache2/llvm/dist/llvm/lib/Target/Mips/MCTargetDesc/
MipsTargetStreamer.cpp 317 unsigned LoOffset = Offset & 0x0000ffff;
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;
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);
  /src/external/apache2/llvm/dist/llvm/lib/Target/Mips/AsmParser/
MipsAsmParser.cpp 3718 int64_t LoOffset = OffsetOp.getImm() & 0xffff;
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 31 milliseconds