Lines Matching defs:SystemZAddressingMode
28 struct SystemZAddressingMode { struct
30 enum AddrForm {
43 AddrForm Form;
48 enum DispRange {
55 DispRange DR;
60 SDValue Base;
61 int64_t Disp;
62 SDValue Index;
63 bool IncludesDynAlloc;
65 SystemZAddressingMode(AddrForm form, DispRange dr) in SystemZAddressingMode() function
69 bool hasIndexField() { return Form != FormBD; } in hasIndexField()
72 bool isDynAlloc() { return Form == FormBDXDynAlloc; } in isDynAlloc()
74 void dump(const llvm::SelectionDAG *DAG) { in dump()