Home
last modified time | relevance | path

Searched refs:InReg (Results 1 – 12 of 12) sorted by relevance

/external/llvm/include/llvm/Target/
DTargetCallingConv.h27 static const uint64_t InReg = 1ULL<<2; ///< Passed in register member
56 bool isInReg() const { return Flags & InReg; } in isInReg()
/external/llvm/include/llvm/
DAttributes.h40 const Attributes InReg = 1<<3; ///< Force argument to be passed in register variable
103 ByVal | InReg | Nest | StructRet,
/external/llvm/lib/CodeGen/
DVirtRegRewriter.cpp1808 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/
DAttributes.cpp41 if (Attrs & Attribute::InReg) in getAsString()
/external/llvm/lib/CodeGen/SelectionDAG/
DSelectionDAGBuilder.cpp971 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()
DTargetLowering.cpp1035 if (attr & Attribute::InReg) in GetReturnInfo()
/external/llvm/lib/Target/X86/
DX86FastISel.cpp1563 if (CS.paramHasAttr(AttrInd, Attribute::InReg)) in DoSelectCall()
1830 if (CS.paramHasAttr(0, Attribute::InReg)) in DoSelectCall()
DX86ISelLowering.cpp8631 if (Attrs.paramHasAttr(Idx, Attribute::InReg)) in LowerTRAMPOLINE()
/external/clang/lib/CodeGen/
DCGCall.cpp802 Attributes |= llvm::Attribute::InReg; in ConstructAttributeList()
/external/llvm/lib/Target/CppBackend/
DCPPBackend.cpp465 HANDLE_ATTR(InReg); in printAttributes()
/external/llvm/lib/Target/ARM/
DARMFastISel.cpp1912 if (CS.paramHasAttr(AttrInd, Attribute::InReg) || in SelectCall()
/external/llvm/lib/AsmParser/
DLLParser.cpp901 case lltok::kw_inreg: Attrs |= Attribute::InReg; break; in ParseOptionalAttrs()