Home | History | Annotate | Download | only in PowerPC

Lines Matching refs:isDarwinABI

75   static unsigned getReturnSaveOffset(bool isPPC64, bool isDarwinABI) {
76 if (isDarwinABI)
84 static unsigned getFramePointerSaveOffset(bool isPPC64, bool isDarwinABI) {
90 if (isDarwinABI)
99 static unsigned getBasePointerSaveOffset(bool isPPC64, bool isDarwinABI) {
100 if (isDarwinABI)
109 static unsigned getLinkageSize(bool isPPC64, bool isDarwinABI) {
110 if (isDarwinABI || isPPC64)
119 static unsigned getMinCallArgumentsSize(bool isPPC64, bool isDarwinABI) {
126 if (isDarwinABI || isPPC64)
136 static unsigned getMinCallFrameSize(bool isPPC64, bool isDarwinABI) {
138 return getLinkageSize(isPPC64, isDarwinABI) +
139 getMinCallArgumentsSize(isPPC64, isDarwinABI);
145 if (Subtarget.isDarwinABI()) {