Home | History | Annotate | Download | only in CodeGen

Lines Matching refs:Offset

117   /// OffsetedInfo: Low bits of offset.
142 /// OffsetedInfo - This struct contains the offset and an object identifier.
143 /// this represent the object as with an optional offset from it.
151 // Low bits of offset are in SmallContents.OffsetLo.
152 int OffsetHi; // An offset from the object, high 32 bits.
401 /// getOffset - Return the offset from the symbol in this operand. This always
429 void setOffset(int64_t Offset) {
432 SmallContents.OffsetLo = unsigned(Offset);
433 Contents.OffsetedInfo.OffsetHi = int(Offset >> 32);
521 static MachineOperand CreateCPI(unsigned Idx, int Offset,
525 Op.setOffset(Offset);
536 static MachineOperand CreateGA(const GlobalValue *GV, int64_t Offset,
540 Op.setOffset(Offset);
548 Op.setOffset(0); // Offset is always 0.
556 Op.setOffset(0); // Offset is always 0.