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

/freebsd-9.3-release/contrib/llvm/lib/Target/X86/MCTargetDesc/
H A DX86MCCodeEmitter.cpp106 int ImmOffset = 0) const;
305 SmallVectorImpl<MCFixup> &Fixups, int ImmOffset) const {
313 EmitConstant(DispOp.getImm()+ImmOffset, Size, CurByte, OS);
327 assert(ImmOffset == 0);
331 ImmOffset = CurByte;
350 ImmOffset -= 4;
352 ImmOffset -= 2;
354 ImmOffset -= 1;
356 if (ImmOffset)
357 Expr = MCBinaryExpr::CreateAdd(Expr, MCConstantExpr::Create(ImmOffset, Ct
467 int ImmOffset = 0; local
[all...]
/freebsd-9.3-release/contrib/llvm/lib/Target/Mips/AsmParser/
H A DMipsAsmParser.cpp771 unsigned ImmOffset, HiOffset, LoOffset; local
785 ImmOffset = Inst.getOperand(2).getImm();
786 LoOffset = ImmOffset & 0x0000ffff;
787 HiOffset = (ImmOffset & 0xffff0000) >> 16;

Completed in 49 milliseconds