Home
last modified time | relevance | path

Searched refs:IsLive (Results 1 – 10 of 10) sorted by relevance

/netbsd-src/external/apache2/llvm/dist/llvm/include/llvm/ExecutionEngine/JITLink/
H A DJITLink.h322 JITTargetAddress Size, Linkage L, Scope S, bool IsLive, in Symbol() argument
328 setLive(IsLive); in Symbol()
333 JITTargetAddress Size, Scope S, bool IsLive) { in constructCommon() argument
341 new (Sym) Symbol(Base, 0, Name, Size, Linkage::Weak, S, IsLive, false); in constructCommon()
359 Linkage L, Scope S, bool IsLive) { in constructAbsolute() argument
364 new (Sym) Symbol(Base, 0, Name, Size, L, S, IsLive, false); in constructAbsolute()
371 bool IsLive) { in constructAnonDef() argument
377 Scope::Local, IsLive, IsCallable); in constructAnonDef()
384 bool IsLive, bool IsCallable) { in constructNamedDef() argument
390 new (Sym) Symbol(Base, Offset, Name, Size, L, S, IsLive, IsCallable); in constructNamedDef()
[all …]
/netbsd-src/external/apache2/llvm/dist/llvm/lib/CodeGen/
H A DAggressiveAntiDepBreaker.cpp114 bool AggressiveAntiDepState::IsLive(unsigned Reg) { in IsLive() function in AggressiveAntiDepState
211 if (State->IsLive(Reg)) { in Observe()
307 if (TRI->isSuperRegister(Reg, *AI) && State->IsLive(*AI)) { in HandleLastUse()
312 if (!State->IsLive(Reg)) { in HandleLastUse()
328 if (!State->IsLive(SubregReg)) { in HandleLastUse()
391 if (State->IsLive(AliasReg)) { in PrescanInstruction()
427 if (TRI->isSuperRegister(Reg, *AI) && State->IsLive(*AI)) in PrescanInstruction()
675 if (State->IsLive(NewReg) || (KillIndices[Reg] > DefIndices[NewReg])) { in FindSuitableFreeRegisters()
682 if (State->IsLive(AliasReg) || in FindSuitableFreeRegisters()
793 if (!State->IsLive(Reg)) in BreakAntiDependencies()
H A DAggressiveAntiDepBreaker.h113 bool IsLive(unsigned Reg);
H A DRDFLiveness.cpp958 bool IsLive = false; in resetKills() local
962 IsLive = true; in resetKills()
965 if (!IsLive) in resetKills()
/netbsd-src/external/apache2/llvm/dist/llvm/lib/Transforms/IPO/
H A DDeadArgumentElimination.cpp363 if (IsLive(Use)) in MarkIfNotLive()
663 assert(!IsLive(RA) && "Use is already live!"); in MarkValue()
665 if (IsLive(MaybeLiveUse)) { in MarkValue()
700 if (IsLive(RA)) in MarkLive()
710 bool DeadArgumentEliminationPass::IsLive(const RetOrArg &RA) { in IsLive() function in DeadArgumentEliminationPass
/netbsd-src/external/apache2/llvm/dist/llvm/include/llvm/Transforms/IPO/
H A DDeadArgumentElimination.h131 bool IsLive(const RetOrArg &RA);
/netbsd-src/external/apache2/llvm/dist/llvm/lib/Target/SystemZ/
H A DSystemZFrameLowering.cpp191 bool IsLive = MBB.isLiveIn(GPR64) || MBB.isLiveIn(GPR32); in addSavedGPR() local
192 if (!IsLive || !IsImplicit) { in addSavedGPR()
193 MIB.addReg(GPR64, getImplRegState(IsImplicit) | getKillRegState(!IsLive)); in addSavedGPR()
194 if (!IsLive) in addSavedGPR()
/netbsd-src/external/apache2/llvm/dist/llvm/lib/Target/Hexagon/
H A DHexagonGenMux.cpp357 auto IsLive = [&LPR,this] (unsigned Reg) -> bool { in genMuxInBlock() local
374 bool Live = IsLive(Op.getReg()); in genMuxInBlock()
/netbsd-src/external/apache2/llvm/dist/llvm/lib/ExecutionEngine/JITLink/
H A DMachOLinkGraphBuilder.cpp319 uint32_t Alignment, bool IsLive) { in addSectionStartSymAndBlock() argument
324 auto &Sym = G->addAnonymousSymbol(B, 0, Size, false, IsLive); in addSectionStartSymAndBlock()
H A DMachOLinkGraphBuilder.h194 uint32_t Alignment, bool IsLive);