HomeSort by relevance Sort by last modified time
    Searched refs:ImmOffset (Results 1 - 3 of 3) sorted by null

  /external/swiftshader/third_party/LLVM/lib/Target/X86/MCTargetDesc/
X86MCCodeEmitter.cpp 93 int ImmOffset = 0) const;
195 SmallVectorImpl<MCFixup> &Fixups, int ImmOffset) const {
203 EmitConstant(DispOp.getImm()+ImmOffset, Size, CurByte, OS);
211 // If we have an immoffset, add it to the expression.
215 assert(ImmOffset == 0);
218 ImmOffset = CurByte;
226 ImmOffset -= 4;
228 ImmOffset -= 2;
230 ImmOffset -= 1;
232 if (ImmOffset)
    [all...]
  /external/llvm/lib/Target/AMDGPU/
AMDGPUISelDAGToDAG.cpp 103 SDValue &SOffset, SDValue &ImmOffset) const;
113 SDValue &ImmOffset) const;
115 SDValue &ImmOffset) const;
117 SDValue &ImmOffset, SDValue &VOffset) const;
531 ConstantSDNode *IMMOffset;
534 && (IMMOffset = dyn_cast<ConstantSDNode>(Addr.getOperand(1)))
535 && isInt<16>(IMMOffset->getZExtValue())) {
538 Offset = CurDAG->getTargetConstant(IMMOffset->getZExtValue(), SDLoc(Addr),
542 } else if ((IMMOffset = dyn_cast<ConstantSDNode>(Addr))
543 && isInt<16>(IMMOffset->getZExtValue()))
    [all...]
  /external/llvm/lib/Target/X86/MCTargetDesc/
X86MCCodeEmitter.cpp 106 int ImmOffset = 0) const;
280 SmallVectorImpl<MCFixup> &Fixups, int ImmOffset) const {
288 EmitConstant(DispOp.getImm()+ImmOffset, Size, CurByte, OS);
296 // If we have an immoffset, add it to the expression.
302 assert(ImmOffset == 0);
312 ImmOffset = CurByte;
333 ImmOffset -= 4;
335 ImmOffset -= 2;
337 ImmOffset -= 1;
339 if (ImmOffset)
    [all...]

Completed in 105 milliseconds