Searched refs:InReg (Results 1 – 12 of 12) sorted by relevance
/external/llvm/include/llvm/Target/ |
D | TargetCallingConv.h | 27 static const uint64_t InReg = 1ULL<<2; ///< Passed in register member 56 bool isInReg() const { return Flags & InReg; } in isInReg()
|
/external/llvm/include/llvm/ |
D | Attributes.h | 40 const Attributes InReg = 1<<3; ///< Force argument to be passed in register variable 103 ByVal | InReg | Nest | StructRet,
|
/external/llvm/lib/CodeGen/ |
D | VirtRegRewriter.cpp | 1808 unsigned InReg = Spills.getSpillSlotOrReMatPhysReg(SSorRMId); in InsertRestores() local 1809 if (InReg == Phys) { in InsertRestores() 1818 << TRI->getName(InReg) << " for " << PrintReg(VirtReg) in InsertRestores() 1827 } else if (InReg && InReg != Phys) { in InsertRestores() 1834 << TRI->getName(InReg) << " for " << PrintReg(VirtReg) in InsertRestores() 1847 .addReg(InReg, RegState::Kill); in InsertRestores() 2359 if (unsigned InReg = Spills.getSpillSlotOrReMatPhysReg(SS)) { in RewriteMBB() local 2361 if (DestReg != InReg) { in RewriteMBB() 2366 .addReg(InReg, RegState::Kill); in RewriteMBB() 2377 Spills.disallowClobberPhysReg(InReg); in RewriteMBB()
|
/external/llvm/lib/VMCore/ |
D | Attributes.cpp | 41 if (Attrs & Attribute::InReg) in getAsString()
|
/external/llvm/lib/CodeGen/SelectionDAG/ |
D | SelectionDAGBuilder.cpp | 971 unsigned InReg = It->second; in getValue() local 972 RegsForValue RFV(*DAG.getContext(), TLI, InReg, V->getType()); in getValue() 1109 unsigned InReg = FuncInfo.InitializeRegForValue(Inst); in getValueImpl() local 1110 RegsForValue RFV(*DAG.getContext(), TLI, InReg, Inst->getType()); in getValueImpl() 1186 if (F->paramHasAttr(0, Attribute::InReg)) in visitRet() 4982 Entry.isInReg = CS.paramHasAttr(attrInd, Attribute::InReg); in LowerCallTo() 5025 CS.paramHasAttr(0, Attribute::InReg), FTy->getNumParams(), in LowerCallTo() 6368 if (F.paramHasAttr(Idx, Attribute::InReg)) in LowerArguments()
|
D | TargetLowering.cpp | 1035 if (attr & Attribute::InReg) in GetReturnInfo()
|
/external/llvm/lib/Target/X86/ |
D | X86FastISel.cpp | 1563 if (CS.paramHasAttr(AttrInd, Attribute::InReg)) in DoSelectCall() 1830 if (CS.paramHasAttr(0, Attribute::InReg)) in DoSelectCall()
|
D | X86ISelLowering.cpp | 8631 if (Attrs.paramHasAttr(Idx, Attribute::InReg)) in LowerTRAMPOLINE()
|
/external/clang/lib/CodeGen/ |
D | CGCall.cpp | 802 Attributes |= llvm::Attribute::InReg; in ConstructAttributeList()
|
/external/llvm/lib/Target/CppBackend/ |
D | CPPBackend.cpp | 465 HANDLE_ATTR(InReg); in printAttributes()
|
/external/llvm/lib/Target/ARM/ |
D | ARMFastISel.cpp | 1912 if (CS.paramHasAttr(AttrInd, Attribute::InReg) || in SelectCall()
|
/external/llvm/lib/AsmParser/ |
D | LLParser.cpp | 901 case lltok::kw_inreg: Attrs |= Attribute::InReg; break; in ParseOptionalAttrs()
|