Home | History | Annotate | Download | only in Hexagon

Lines Matching defs:Pos

77 // Abstraction of a reference to bit at position Pos from a register Reg.
79 BitRef(unsigned R = 0, uint16_t P = 0) : Reg(R), Pos(P) {}
81 // If Reg is 0, disregard Pos.
82 return Reg == BR.Reg && (Reg == 0 || Pos == BR.Pos);
85 uint16_t Pos;
129 // number is 0. In such case the Pos field of the reference is ignored.
133 // one in which V will be contained. If the RefI.Pos refers to the posi-
146 BitValue(unsigned Reg, uint16_t Pos) : Type(Ref), RefI(Reg, Pos) {}
224 return BitValue(V.RefI.Reg, V.RefI.Pos);
231 return BitValue(Self.Reg, Self.Pos);