/external/clang/lib/CodeGen/ |
D | ABIInfo.h | 79 bool InReg; variable 85 BoolData1(B1), InReg(IR), PaddingInReg(PIR) {} in ABIArgInfo() 162 return InReg; in getInReg()
|
D | CGCall.cpp | 1104 RetAttrs.addAttribute(llvm::Attribute::InReg); in ConstructAttributeList() 1113 SRETAttrs.addAttribute(llvm::Attribute::InReg); in ConstructAttributeList() 1143 llvm::Attribute::InReg)); in ConstructAttributeList() 1160 Attrs.addAttribute(llvm::Attribute::InReg); in ConstructAttributeList() 1177 Attrs.addAttribute(llvm::Attribute::InReg); in ConstructAttributeList()
|
D | TargetInfo.cpp | 939 bool InReg = shouldUseInReg(Ty, FreeRegs, IsFastCall, NeedsPadding); in classifyArgumentType() local 942 if (InReg) in classifyArgumentType() 946 if (InReg) in classifyArgumentType() 5160 bool InReg; member 5163 : Context(c), DL(dl), Size(0), InReg(false) {} in CoerceBuilder() 5198 InReg = true; in addFloat() 5294 if (CB.InReg) in classifyType()
|
/external/llvm/include/llvm/Target/ |
D | TargetCallingConv.h | 31 static const uint64_t InReg = 1ULL<<2; ///< Passed in register member 62 bool isInReg() const { return Flags & InReg; } in isInReg()
|
D | TargetLowering.h | 1925 IsInReg(cs.paramHasAttr(0, Attribute::InReg)), in CallLoweringInfo()
|
/external/llvm/include/llvm/IR/ |
D | Attributes.h | 75 InReg, ///< Force argument to be passed in register enumerator
|
/external/llvm/lib/IR/ |
D | Attributes.cpp | 171 if (hasAttribute(Attribute::InReg)) in getAsString() 351 case Attribute::InReg: return 1 << 3; in getAttrMask()
|
D | Verifier.cpp | 805 Attrs.hasAttribute(Idx, Attribute::InReg)) || in VerifyParameterAttrs() 807 Attrs.hasAttribute(Idx, Attribute::InReg))), "Attributes " in VerifyParameterAttrs()
|
/external/llvm/lib/Target/X86/ |
D | X86FastISel.cpp | 1747 F->getAttributes().hasAttribute(Idx, Attribute::InReg) || in FastLowerArguments() 1824 if (CS.paramHasAttr(1, Attribute::InReg)) in computeBytesPoppedByCallee() 1923 if (CS.paramHasAttr(AttrInd, Attribute::InReg)) in DoSelectCall() 2199 if (CS.paramHasAttr(0, Attribute::InReg)) in DoSelectCall()
|
D | X86ISelLowering.cpp | 11631 if (Attrs.hasAttribute(Idx, Attribute::InReg)) in LowerINIT_TRAMPOLINE()
|
/external/llvm/lib/CodeGen/SelectionDAG/ |
D | SelectionDAGBuilder.cpp | 1022 unsigned InReg = It->second; in getValue() local 1024 InReg, V->getType()); in getValue() 1180 unsigned InReg = FuncInfo.InitializeRegForValue(Inst); in getValueImpl() local 1181 RegsForValue RFV(*DAG.getContext(), *TLI, InReg, Inst->getType()); in getValueImpl() 1260 Attribute::InReg)) in visitRet() 5280 Entry.isInReg = CS.paramHasAttr(attrInd, Attribute::InReg); in LowerCallTo() 6692 if (F.getAttributes().hasAttribute(Idx, Attribute::InReg)) in LowerArguments()
|
/external/llvm/lib/CodeGen/ |
D | TargetLoweringBase.cpp | 1155 if (attr.hasAttribute(AttributeSet::ReturnIndex, Attribute::InReg)) in GetReturnInfo()
|
/external/llvm/lib/Target/ARM/ |
D | ARMFastISel.cpp | 2362 if (CS.paramHasAttr(AttrInd, Attribute::InReg) || in SelectCall() 3026 if (F->getAttributes().hasAttribute(Idx, Attribute::InReg) || in FastLowerArguments()
|
/external/llvm/lib/AsmParser/ |
D | LLParser.cpp | 1158 case lltok::kw_inreg: B.addAttribute(Attribute::InReg); break; in ParseOptionalParamAttrs() 1211 case lltok::kw_inreg: B.addAttribute(Attribute::InReg); break; in ParseOptionalReturnAttrs()
|
/external/llvm/lib/Target/CppBackend/ |
D | CPPBackend.cpp | 490 HANDLE_ATTR(InReg); in printAttributes()
|
/external/llvm/lib/Bitcode/Writer/ |
D | BitcodeWriter.cpp | 178 case Attribute::InReg: in getAttrKindEncoding()
|
/external/llvm/lib/Bitcode/Reader/ |
D | BitcodeReader.cpp | 532 *Kind = Attribute::InReg; in ParseAttrKind()
|