Searched refs:NewEntry (Results 1 - 11 of 11) sorted by relevance

/freebsd-13-stable/contrib/llvm-project/llvm/lib/CodeGen/
H A DMachineModuleInfo.cpp134 AddrLabelSymEntry &NewEntry = AddrLabelSymbols[New]; local
137 if (NewEntry.Symbols.empty()) {
139 NewEntry = std::move(OldEntry); // Set New's entry.
146 NewEntry.Symbols.insert(NewEntry.Symbols.end(), OldEntry.Symbols.begin(),
/freebsd-13-stable/contrib/llvm-project/llvm/lib/Transforms/Instrumentation/
H A DInstrOrderFile.cpp125 BasicBlock *NewEntry = local
127 IRBuilder<> entryB(NewEntry);
/freebsd-13-stable/contrib/llvm-project/llvm/lib/Transforms/Scalar/
H A DTailRecursionElimination.cpp495 BasicBlock *NewEntry = BasicBlock::Create(F.getContext(), "", &F, HeaderBB);
496 NewEntry->takeName(HeaderBB);
498 BranchInst *BI = BranchInst::Create(HeaderBB, NewEntry);
514 // Move all fixed sized allocas from HeaderBB to NewEntry.
516 NEBI = NewEntry->begin();
531 PN->addIncoming(&*I, NewEntry);
545 RetPN->addIncoming(UndefValue::get(RetType), NewEntry);
546 RetKnownPN->addIncoming(ConstantInt::getFalse(BoolType), NewEntry);
549 // The entry block was changed from HeaderBB to NewEntry.
552 DTU.recalculate(*NewEntry
[all...]
H A DStructurizeCFG.cpp872 BasicBlock *NewEntry = local
877 BranchInst::Create(LoopStart, NewEntry);
878 DT->setNewRoot(NewEntry);
H A DReassociate.cpp1833 ValueEntry NewEntry = ValueEntry(getRank(V), V);
1834 Ops.insert(llvm::lower_bound(Ops, NewEntry), NewEntry);
/freebsd-13-stable/contrib/llvm-project/clang/lib/AST/
H A DRecordLayoutBuilder.cpp3058 const ASTRecordLayout *NewEntry = nullptr; local
3064 NewEntry = new (*this) ASTRecordLayout(
3075 NewEntry = new (*this) ASTRecordLayout(
3097 NewEntry = new (*this) ASTRecordLayout(
3110 NewEntry = new (*this) ASTRecordLayout(
3117 ASTRecordLayouts[D] = NewEntry;
3124 return *NewEntry;
3263 const ASTRecordLayout *NewEntry = local
3272 ObjCLayouts[Key] = NewEntry;
3274 return *NewEntry;
[all...]
/freebsd-13-stable/contrib/llvm-project/llvm/lib/CodeGen/SelectionDAG/
H A DSelectionDAGISel.cpp2941 MatchScope NewEntry;
2942 NewEntry.FailIndex = FailIndex;
2943 NewEntry.NodeStack.append(NodeStack.begin(), NodeStack.end());
2944 NewEntry.NumRecordedNodes = RecordedNodes.size();
2945 NewEntry.NumMatchedMemRefs = MatchedMemRefs.size();
2946 NewEntry.InputChain = InputChain;
2947 NewEntry.InputGlue = InputGlue;
2948 NewEntry.HasChainNodesMatched = !ChainNodesMatched.empty();
2949 MatchScopes.push_back(NewEntry);
/freebsd-13-stable/contrib/llvm-project/llvm/include/llvm/Analysis/
H A DRegionInfoImpl.h68 void RegionBase<Tr>::replaceEntryRecursive(BlockT *NewEntry) { argument
77 R->replaceEntry(NewEntry);
H A DRegionInfo.h345 /// @param NewEntry The new entry basic block.
346 void replaceEntryRecursive(BlockT *NewEntry);
/freebsd-13-stable/contrib/llvm-project/llvm/lib/Transforms/Coroutines/
H A DCoroSplit.cpp280 auto *NewEntry = BasicBlock::Create(C, "resume.entry", &F); local
283 IRBuilder<> Builder(NewEntry);
361 Shape.SwitchLowering.ResumeEntryBlock = NewEntry;
/freebsd-13-stable/contrib/llvm-project/llvm/lib/Target/AMDGPU/
H A DAMDGPUMachineCFGStructurizer.cpp414 void setEntry(MachineBasicBlock *NewEntry);
986 void LinearizedRegion::setEntry(MachineBasicBlock *NewEntry) {
987 Entry = NewEntry;

Completed in 153 milliseconds