Home | History | Annotate | Download | only in TableGen

Lines Matching defs:Slot

235   /// ResultNo - The slot number in the RecordedNodes vector that this will be,
266 /// ResultNo - The slot number in the RecordedNodes vector that this will be,
660 /// MatchNumber - This is the recorded nodes slot that contains the node we
667 /// FirstResult - This is the first slot in the RecordedNodes list that the
848 unsigned Slot;
850 EmitConvertToTargetMatcher(unsigned slot)
851 : Matcher(EmitConvertToTarget), Slot(slot) {}
853 unsigned getSlot() const { return Slot; }
862 return cast<EmitConvertToTargetMatcher>(M)->Slot == Slot;
864 virtual unsigned getHashImpl() const { return Slot; }
929 unsigned Slot;
932 EmitNodeXFormMatcher(unsigned slot, Record *nodeXForm)
933 : Matcher(EmitNodeXForm), Slot(slot), NodeXForm(nodeXForm) {}
935 unsigned getSlot() const { return Slot; }
945 return cast<EmitNodeXFormMatcher>(M)->Slot == Slot &&
949 return Slot ^ ((unsigned)(intptr_t)NodeXForm << 4);