Lines Matching defs:SystemZAddressingMode
27 struct SystemZAddressingMode { struct
29 enum AddrForm {
42 AddrForm Form;
47 enum DispRange {
54 DispRange DR;
59 SDValue Base;
60 int64_t Disp;
61 SDValue Index;
62 bool IncludesDynAlloc;
64 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(const llvm::SelectionDAG *DAG) { in dump()