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

/freebsd-13-stable/contrib/llvm-project/llvm/include/llvm/IR/
H A DModule.h181 FunctionListType FunctionList; ///< The Functions in the module member in class:llvm::Module
544 const FunctionListType &getFunctionList() const { return FunctionList; }
546 FunctionListType &getFunctionList() { return FunctionList; }
548 return &Module::FunctionList;
610 iterator begin() { return FunctionList.begin(); }
611 const_iterator begin() const { return FunctionList.begin(); }
612 iterator end () { return FunctionList.end(); }
613 const_iterator end () const { return FunctionList.end(); }
614 reverse_iterator rbegin() { return FunctionList.rbegin(); }
615 const_reverse_iterator rbegin() const{ return FunctionList
[all...]
/freebsd-13-stable/contrib/llvm-project/llvm/lib/CodeGen/
H A DMachineOutliner.cpp388 /// \param[out] FunctionList Filled with a list of \p OutlinedFunctions
391 std::vector<OutlinedFunction> &FunctionList);
397 /// \param FunctionList A list of functions to be inserted into the module.
399 bool outline(Module &M, std::vector<OutlinedFunction> &FunctionList,
518 InstructionMapper &Mapper, std::vector<OutlinedFunction> &FunctionList) {
519 FunctionList.clear();
566 EndIt, MBB, FunctionList.size(),
596 FunctionList.push_back(OF);
737 std::vector<OutlinedFunction> &FunctionList,
744 llvm::stable_sort(FunctionList, [](cons
517 findCandidates( InstructionMapper &Mapper, std::vector<OutlinedFunction> &FunctionList) argument
736 outline(Module &M, std::vector<OutlinedFunction> &FunctionList, InstructionMapper &Mapper, unsigned &OutlinedFunctionNum) argument
1034 std::vector<OutlinedFunction> FunctionList; local
[all...]
/freebsd-13-stable/contrib/llvm-project/llvm/lib/IR/
H A DModule.cpp85 FunctionList.clear();
153 FunctionList.push_back(New);
521 for (Function &F : FunctionList)
/freebsd-13-stable/contrib/llvm-project/clang/lib/Sema/
H A DSemaLookup.cpp717 /// \param FunctionList (out) List of FunctionTypes.
722 std::vector<QualType> &FunctionList, SmallVector<QualType, 1> &RetTypes,
741 FunctionList.push_back(Context.getFunctionType(
804 std::vector<QualType> FunctionList; local
805 GetOpenCLBuiltinFctOverloads(Context, GenTypeMaxCnt, FunctionList, RetTypes,
814 Context, Parent, Loc, Loc, II, FunctionList[Index],
816 FunctionList[Index]->isFunctionProtoType());
822 dyn_cast<FunctionProtoType>(FunctionList[Index])) {
720 GetOpenCLBuiltinFctOverloads( ASTContext &Context, unsigned GenTypeMaxCnt, std::vector<QualType> &FunctionList, SmallVector<QualType, 1> &RetTypes, SmallVector<SmallVector<QualType, 1>, 5> &ArgTypes) argument

Completed in 125 milliseconds