Searched defs:InReg (Results 1 - 6 of 6) sorted by relevance

/external/clang/lib/CodeGen/
H A DABIInfo.h79 bool InReg; member in class:clang::ABIArgInfo
85 BoolData1(B1), InReg(IR), PaddingInReg(PIR) {}
162 return InReg;
H A DTargetInfo.cpp939 bool InReg = shouldUseInReg(Ty, FreeRegs, IsFastCall, NeedsPadding); local
942 if (InReg)
946 if (InReg)
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)
H A DCGCall.cpp1104 RetAttrs.addAttribute(llvm::Attribute::InReg);
1113 SRETAttrs.addAttribute(llvm::Attribute::InReg);
1143 llvm::Attribute::InReg)); member in class:llvm::Attribute
1160 Attrs.addAttribute(llvm::Attribute::InReg);
1177 Attrs.addAttribute(llvm::Attribute::InReg);
/external/llvm/include/llvm/IR/
H A DAttributes.h75 InReg, ///< Force argument to be passed in register enumerator in enum:llvm::Attribute::AttrKind
/external/llvm/include/llvm/Target/
H A DTargetCallingConv.h31 static const uint64_t InReg = 1ULL<<2; ///< Passed in register member in struct:llvm::ISD::ArgFlagsTy
62 bool isInReg() const { return Flags & InReg; }
/external/llvm/lib/CodeGen/SelectionDAG/
H A DSelectionDAGBuilder.cpp1022 unsigned InReg = It->second; local
1024 InReg, V->getType());
1180 unsigned InReg = FuncInfo.InitializeRegForValue(Inst); local
1181 RegsForValue RFV(*DAG.getContext(), *TLI, InReg, Inst->getType());
1260 Attribute::InReg))
5280 Entry.isInReg = CS.paramHasAttr(attrInd, Attribute::InReg);
6692 if (F.getAttributes().hasAttribute(Idx, Attribute::InReg))

Completed in 360 milliseconds