Lines Matching defs:SystemZAddressingMode
26 struct SystemZAddressingMode { struct
28 enum AddrForm {
41 AddrForm Form;
46 enum DispRange {
53 DispRange DR;
58 SDValue Base;
59 int64_t Disp;
60 SDValue Index;
61 bool IncludesDynAlloc;
63 SystemZAddressingMode(AddrForm form, DispRange dr) in SystemZAddressingMode() function
68 bool hasIndexField() { return Form != FormBD; } in hasIndexField()
71 bool isDynAlloc() { return Form == FormBDXDynAlloc; } in isDynAlloc()
73 void dump() { in dump()