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

/netbsd-current/external/apache2/llvm/dist/llvm/lib/Transforms/Scalar/
H A DTailRecursionElimination.cpp501 BasicBlock *NewEntry = BasicBlock::Create(F.getContext(), "", &F, HeaderBB);
502 NewEntry->takeName(HeaderBB);
504 BranchInst *BI = BranchInst::Create(HeaderBB, NewEntry);
520 // Move all fixed sized allocas from HeaderBB to NewEntry.
522 NEBI = NewEntry->begin();
537 PN->addIncoming(&*I, NewEntry);
551 RetPN->addIncoming(UndefValue::get(RetType), NewEntry);
552 RetKnownPN->addIncoming(ConstantInt::getFalse(BoolType), NewEntry);
555 // The entry block was changed from HeaderBB to NewEntry.
558 DTU.recalculate(*NewEntry
[all...]
H A DStructurizeCFG.cpp874 BasicBlock *NewEntry = local
879 BranchInst::Create(LoopStart, NewEntry);
880 DT->setNewRoot(NewEntry);
H A DReassociate.cpp1927 ValueEntry NewEntry = ValueEntry(getRank(V), V);
1928 Ops.insert(llvm::lower_bound(Ops, NewEntry), NewEntry);
/netbsd-current/external/apache2/llvm/dist/llvm/lib/CodeGen/
H A DMachineModuleInfo.cpp173 AddrLabelSymEntry &NewEntry = AddrLabelSymbols[New]; local
176 if (NewEntry.Symbols.empty()) {
178 NewEntry = std::move(OldEntry); // Set New's entry.
185 llvm::append_range(NewEntry.Symbols, OldEntry.Symbols);
/netbsd-current/external/apache2/llvm/dist/llvm/lib/Transforms/Instrumentation/
H A DInstrOrderFile.cpp125 BasicBlock *NewEntry = local
127 IRBuilder<> entryB(NewEntry);
/netbsd-current/external/apache2/llvm/dist/llvm/tools/obj2yaml/
H A Ddwarf2yaml.cpp230 DWARFYAML::Entry NewEntry; local
238 NewEntry.AbbrCode = EntryData.getULEB128(&offset);
301 NewEntry.Values.push_back(NewValue);
323 NewEntry.Values.push_back(NewValue);
327 NewUnit.Entries.push_back(NewEntry);
/netbsd-current/external/apache2/llvm/dist/clang/lib/AST/
H A DRecordLayoutBuilder.cpp3239 const ASTRecordLayout *NewEntry = nullptr; local
3245 NewEntry = new (*this) ASTRecordLayout(
3256 NewEntry = new (*this) ASTRecordLayout(
3278 NewEntry = new (*this) ASTRecordLayout(
3293 NewEntry = new (*this) ASTRecordLayout(
3301 ASTRecordLayouts[D] = NewEntry;
3308 return *NewEntry;
3447 const ASTRecordLayout *NewEntry = new (*this) ASTRecordLayout( local
3453 ObjCLayouts[Key] = NewEntry;
3455 return *NewEntry;
[all...]
/netbsd-current/external/apache2/llvm/dist/llvm/lib/CodeGen/SelectionDAG/
H A DSelectionDAGISel.cpp3007 MatchScope NewEntry;
3008 NewEntry.FailIndex = FailIndex;
3009 NewEntry.NodeStack.append(NodeStack.begin(), NodeStack.end());
3010 NewEntry.NumRecordedNodes = RecordedNodes.size();
3011 NewEntry.NumMatchedMemRefs = MatchedMemRefs.size();
3012 NewEntry.InputChain = InputChain;
3013 NewEntry.InputGlue = InputGlue;
3014 NewEntry.HasChainNodesMatched = !ChainNodesMatched.empty();
3015 MatchScopes.push_back(NewEntry);
/netbsd-current/external/apache2/llvm/dist/llvm/include/llvm/Analysis/
H A DRegionInfoImpl.h68 void RegionBase<Tr>::replaceEntryRecursive(BlockT *NewEntry) { argument
77 R->replaceEntry(NewEntry);
H A DRegionInfo.h344 /// @param NewEntry The new entry basic block.
345 void replaceEntryRecursive(BlockT *NewEntry);
/netbsd-current/external/apache2/llvm/dist/llvm/lib/Transforms/Coroutines/
H A DCoroSplit.cpp341 auto *NewEntry = BasicBlock::Create(C, "resume.entry", &F); local
344 IRBuilder<> Builder(NewEntry);
422 Shape.SwitchLowering.ResumeEntryBlock = NewEntry;
/netbsd-current/external/apache2/llvm/dist/llvm/lib/Target/AMDGPU/
H A DAMDGPUMachineCFGStructurizer.cpp395 void setEntry(MachineBasicBlock *NewEntry);
968 void LinearizedRegion::setEntry(MachineBasicBlock *NewEntry) {
969 Entry = NewEntry;

Completed in 231 milliseconds