Searched refs:FunctionList (Results 1 - 4 of 4) sorted by relevance

/freebsd-12-stable/contrib/llvm-project/llvm/include/llvm/IR/
H A DModule.h173 FunctionListType FunctionList; ///< The Functions in the module member in class:llvm::Module
534 const FunctionListType &getFunctionList() const { return FunctionList; }
536 FunctionListType &getFunctionList() { return FunctionList; }
538 return &Module::FunctionList;
599 iterator begin() { return FunctionList.begin(); }
600 const_iterator begin() const { return FunctionList.begin(); }
601 iterator end () { return FunctionList.end(); }
602 const_iterator end () const { return FunctionList.end(); }
603 reverse_iterator rbegin() { return FunctionList.rbegin(); }
604 const_reverse_iterator rbegin() const{ return FunctionList
[all...]
/freebsd-12-stable/contrib/llvm-project/llvm/lib/CodeGen/
H A DMachineOutliner.cpp883 /// \param[out] FunctionList Filled with a list of \p OutlinedFunctions
886 std::vector<OutlinedFunction> &FunctionList);
892 /// \param FunctionList A list of functions to be inserted into the module.
894 bool outline(Module &M, std::vector<OutlinedFunction> &FunctionList,
1013 InstructionMapper &Mapper, std::vector<OutlinedFunction> &FunctionList) {
1014 FunctionList.clear();
1061 EndIt, MBB, FunctionList.size(),
1091 FunctionList.push_back(OF);
1195 std::vector<OutlinedFunction> &FunctionList,
1202 llvm::stable_sort(FunctionList, [](cons
1012 findCandidates( InstructionMapper &Mapper, std::vector<OutlinedFunction> &FunctionList) argument
1194 outline(Module &M, std::vector<OutlinedFunction> &FunctionList, InstructionMapper &Mapper, unsigned &OutlinedFunctionNum) argument
1456 std::vector<OutlinedFunction> FunctionList; local
[all...]
/freebsd-12-stable/contrib/llvm-project/llvm/lib/IR/
H A DModule.cpp84 FunctionList.clear();
153 FunctionList.push_back(New);
493 for (Function &F : FunctionList)
/freebsd-12-stable/contrib/llvm-project/clang/lib/Sema/
H A DSemaLookup.cpp713 /// \param FunctionList (out) List of FunctionTypes.
718 std::vector<QualType> &FunctionList, SmallVector<QualType, 1> &RetTypes,
737 FunctionList.push_back(Context.getFunctionType(
800 std::vector<QualType> FunctionList; local
801 GetOpenCLBuiltinFctOverloads(Context, GenTypeMaxCnt, FunctionList, RetTypes,
810 Context, Parent, Loc, Loc, II, FunctionList[Index],
812 FunctionList[Index]->isFunctionProtoType());
818 dyn_cast<FunctionProtoType>(FunctionList[Index])) {
716 GetOpenCLBuiltinFctOverloads( ASTContext &Context, unsigned GenTypeMaxCnt, std::vector<QualType> &FunctionList, SmallVector<QualType, 1> &RetTypes, SmallVector<SmallVector<QualType, 1>, 5> &ArgTypes) argument

Completed in 110 milliseconds