Home
last modified time | relevance | path

Searched refs:NewEntry (Results 1 – 16 of 16) sorted by relevance

/external/swiftshader/third_party/LLVM/lib/CodeGen/
DMachineModuleInfo.cpp208 AddrLabelSymEntry &NewEntry = AddrLabelSymbols[New]; in UpdateForRAUWBlock() local
211 if (NewEntry.Symbols.isNull()) { in UpdateForRAUWBlock()
213 NewEntry = OldEntry; // Set New's entry. in UpdateForRAUWBlock()
221 if (MCSymbol *PrevSym = NewEntry.Symbols.dyn_cast<MCSymbol*>()) { in UpdateForRAUWBlock()
224 NewEntry.Symbols = SymList; in UpdateForRAUWBlock()
228 NewEntry.Symbols.get<std::vector<MCSymbol*>*>(); in UpdateForRAUWBlock()
/external/llvm/lib/CodeGen/
DMachineModuleInfo.cpp161 AddrLabelSymEntry &NewEntry = AddrLabelSymbols[New]; in UpdateForRAUWBlock() local
164 if (NewEntry.Symbols.empty()) { in UpdateForRAUWBlock()
166 NewEntry = std::move(OldEntry); // Set New's entry. in UpdateForRAUWBlock()
173 NewEntry.Symbols.insert(NewEntry.Symbols.end(), OldEntry.Symbols.begin(), in UpdateForRAUWBlock()
/external/swiftshader/third_party/LLVM/lib/Transforms/Scalar/
DTailRecursionElimination.cpp477 BasicBlock *NewEntry = BasicBlock::Create(F->getContext(), "", F, OldEntry); in EliminateRecursiveTailCall() local
478 NewEntry->takeName(OldEntry); in EliminateRecursiveTailCall()
480 BranchInst::Create(OldEntry, NewEntry); in EliminateRecursiveTailCall()
488 NEBI = NewEntry->begin(); OEBI != E; ) in EliminateRecursiveTailCall()
503 PN->addIncoming(I, NewEntry); in EliminateRecursiveTailCall()
/external/llvm/lib/Transforms/Scalar/
DTailRecursionElimination.cpp565 BasicBlock *NewEntry = BasicBlock::Create(F->getContext(), "", F, OldEntry); in eliminateRecursiveTailCall() local
566 NewEntry->takeName(OldEntry); in eliminateRecursiveTailCall()
568 BranchInst::Create(OldEntry, NewEntry); in eliminateRecursiveTailCall()
576 NEBI = NewEntry->begin(); OEBI != E; ) in eliminateRecursiveTailCall()
591 PN->addIncoming(&*I, NewEntry); in eliminateRecursiveTailCall()
DStructurizeCFG.cpp847 BasicBlock *NewEntry = in handleLoops() local
852 BranchInst::Create(LoopStart, NewEntry); in handleLoops()
DReassociate.cpp1783 ValueEntry NewEntry = ValueEntry(getRank(V), V); in OptimizeMul() local
1784 Ops.insert(std::lower_bound(Ops.begin(), Ops.end(), NewEntry), NewEntry); in OptimizeMul()
/external/llvm/tools/llvm-dwp/
Dllvm-dwp.cpp564 auto &NewEntry = P.first->second; in write() local
565 NewEntry.Name = ID.Name; in write()
566 NewEntry.DWOName = ID.DWOName; in write()
567 NewEntry.DWPName = Input; in write()
569 auto &C = NewEntry.Contributions[Kind - DW_SECT_INFO]; in write()
/external/protobuf/src/google/protobuf/
Dmap_field_lite.h72 EntryType* NewEntry() const;
229 default_enum_value>::NewEntry() const { in NewEntry() function
Dstruct.pb.cc304 ::google::protobuf::scoped_ptr<Struct_FieldsEntry> entry(fields_.NewEntry()); in MergePartialFromCodedStream()
/external/swiftshader/third_party/LLVM/lib/VMCore/
DDebugLoc.cpp307 int NewEntry = Ctx->getOrAddScopeRecordIdxEntry(NewVal, Idx); in allUsesReplacedWith() local
311 if (NewEntry != Idx) in allUsesReplacedWith()
/external/swiftshader/third_party/LLVM/lib/CodeGen/SelectionDAG/
DSelectionDAGISel.cpp2184 MatchScope NewEntry; in SelectCodeCommon() local
2185 NewEntry.FailIndex = FailIndex; in SelectCodeCommon()
2186 NewEntry.NodeStack.append(NodeStack.begin(), NodeStack.end()); in SelectCodeCommon()
2187 NewEntry.NumRecordedNodes = RecordedNodes.size(); in SelectCodeCommon()
2188 NewEntry.NumMatchedMemRefs = MatchedMemRefs.size(); in SelectCodeCommon()
2189 NewEntry.InputChain = InputChain; in SelectCodeCommon()
2190 NewEntry.InputGlue = InputGlue; in SelectCodeCommon()
2191 NewEntry.HasChainNodesMatched = !ChainNodesMatched.empty(); in SelectCodeCommon()
2192 NewEntry.HasGlueResultNodesMatched = !GlueResultNodesMatched.empty(); in SelectCodeCommon()
2193 MatchScopes.push_back(NewEntry); in SelectCodeCommon()
/external/clang/lib/AST/
DRecordLayoutBuilder.cpp2943 const ASTRecordLayout *NewEntry = nullptr; in getASTRecordLayout() local
2949 NewEntry = new (*this) ASTRecordLayout( in getASTRecordLayout()
2959 NewEntry = new (*this) ASTRecordLayout( in getASTRecordLayout()
2980 NewEntry = new (*this) ASTRecordLayout( in getASTRecordLayout()
2993 NewEntry = new (*this) ASTRecordLayout( in getASTRecordLayout()
3000 ASTRecordLayouts[D] = NewEntry; in getASTRecordLayout()
3007 return *NewEntry; in getASTRecordLayout()
3110 const ASTRecordLayout *NewEntry = in getObjCLayout() local
3118 ObjCLayouts[Key] = NewEntry; in getObjCLayout()
3120 return *NewEntry; in getObjCLayout()
/external/llvm/lib/CodeGen/SelectionDAG/
DSelectionDAGISel.cpp2907 MatchScope NewEntry; in SelectCodeCommon() local
2908 NewEntry.FailIndex = FailIndex; in SelectCodeCommon()
2909 NewEntry.NodeStack.append(NodeStack.begin(), NodeStack.end()); in SelectCodeCommon()
2910 NewEntry.NumRecordedNodes = RecordedNodes.size(); in SelectCodeCommon()
2911 NewEntry.NumMatchedMemRefs = MatchedMemRefs.size(); in SelectCodeCommon()
2912 NewEntry.InputChain = InputChain; in SelectCodeCommon()
2913 NewEntry.InputGlue = InputGlue; in SelectCodeCommon()
2914 NewEntry.HasChainNodesMatched = !ChainNodesMatched.empty(); in SelectCodeCommon()
2915 MatchScopes.push_back(NewEntry); in SelectCodeCommon()
/external/swiftshader/third_party/LLVM/unittests/ExecutionEngine/JIT/
DJITTest.cpp564 BasicBlock *NewEntry = BasicBlock::Create(Context, "new_entry", F); in TEST_F() local
565 Builder.SetInsertPoint(NewEntry); in TEST_F()
/external/llvm/include/llvm/Analysis/
DRegionInfoImpl.h64 void RegionBase<Tr>::replaceEntryRecursive(BlockT *NewEntry) { in replaceEntryRecursive() argument
73 R->replaceEntry(NewEntry); in replaceEntryRecursive()
DRegionInfo.h338 void replaceEntryRecursive(BlockT *NewEntry);