Lines Matching defs:InReg
471 // Floating-point types don't go inreg.
939 bool InReg = shouldUseInReg(Ty, FreeRegs, IsFastCall, NeedsPadding);
942 if (InReg)
946 if (InReg)
1776 // arguments to the function (so that any subsequent inreg values came first),
1778 // might be inreg.
3988 "inreg");
5125 // with the LLVM IR inreg attribute:
5127 // declare void f(i32 inreg %i, float inreg %f)
5130 // the inreg arguments. All other arguments are allocated a multiple of 8
5152 // We also compute the InReg flag which indicates that the struct contains
5160 bool InReg;
5163 : Context(c), DL(dl), Size(0), InReg(false) {}
5196 // The InReg flag is only required if there are any floats < 64 bits.
5198 InReg = true;
5294 if (CB.InReg)