Searched refs:Funcs (Results 1 - 25 of 26) sorted by relevance

12

/freebsd-11-stable/tools/regression/atm/proto_sscop/
H A DRunTest.sh4 . ../Funcs.sh
10 $LOCALBASE/bin/ats_sscop $options $DATA/Funcs $DATA/S*
/freebsd-11-stable/tools/regression/atm/proto_sscfu/
H A DRunTest.sh4 . ../Funcs.sh
10 $LOCALBASE/bin/ats_sscfu $options $DATA/Funcs $DATA/EST* $DATA/REL* \
/freebsd-11-stable/tools/regression/atm/proto_uni/
H A DRunTest.sh4 . ../Funcs.sh
10 $LOCALBASE/bin/ats_sig $options $DATA/Funcs $DATA/L3MU_Funcs $DATA/Restart.??? \
/freebsd-11-stable/tools/regression/atm/proto_cc/
H A DRunTest.sh4 . ../Funcs.sh
/freebsd-11-stable/contrib/llvm-project/llvm/lib/DebugInfo/GSYM/
H A DGsymCreator.cpp55 if (Funcs.empty())
62 if (Funcs.size() > UINT32_MAX)
65 const uint64_t MinAddr = Funcs.front().startAddress();
66 const uint64_t MaxAddr = Funcs.back().startAddress();
74 Hdr.NumAddresses = static_cast<uint32_t>(Funcs.size());
100 for (const auto &FuncInfo : Funcs) {
113 for (size_t i = 0, n = Funcs.size(); i < n; ++i)
138 for (const auto &FuncInfo : Funcs) {
165 llvm::sort(Funcs.begin(), Funcs
[all...]
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/AMDGPU/
H A DAMDGPUOpenCLEnqueuedBlockLowering.cpp92 static void collectFunctionUsers(User *U, DenseSet<Function *> &Funcs) { argument
95 if (Funcs.insert(F).second)
96 collectCallers(F, Funcs);
102 collectFunctionUsers(&*UU, Funcs);
/freebsd-11-stable/tools/regression/atm/
H A DRunTest.sh4 . ./Funcs.sh
/freebsd-11-stable/contrib/llvm-project/llvm/tools/bugpoint/
H A DBugDriver.cpp240 void llvm::PrintFunctionList(const std::vector<Function *> &Funcs) { argument
241 unsigned NumPrint = Funcs.size();
245 outs() << " " << Funcs[i]->getName();
246 if (NumPrint < Funcs.size())
247 outs() << "... <" << Funcs.size() << " total>";
H A DMiscompilation.cpp249 ReduceMiscompilingFunctions::TestFuncs(const std::vector<Function *> &Funcs) { argument
251 // functions listed in Funcs.
253 << (Funcs.size() == 1 ? "this function is" : "these functions are")
256 PrintFunctionList(Funcs);
261 // will be in the clone and Funcs will still point to valid memory
271 for (unsigned i = 0, e = Funcs.size(); i != e; ++i) {
272 Function *F = cast<Function>(VMap[Funcs[i]]);
487 // functions listed in Funcs.
1024 Expected<std::vector<Function *>> Funcs = local
1026 if (Error E = Funcs
[all...]
H A DCrashDebugger.cpp240 bool ReduceCrashingFunctions::TestFuncs(std::vector<Function *> &Funcs) { argument
242 if (KeepMain && !is_contained(Funcs, BD.getProgram().getFunction("main")))
251 for (unsigned i = 0, e = Funcs.size(); i != e; ++i) {
252 Function *CMF = cast<Function>(VMap[Funcs[i]]);
254 assert(CMF->getFunctionType() == Funcs[i]->getFunctionType() && "wrong ty");
255 assert(CMF->getName() == Funcs[i]->getName() && "wrong name");
260 PrintFunctionList(Funcs);
315 Funcs.assign(Functions.begin(), Functions.end());
H A DBugDriver.h285 void PrintFunctionList(const std::vector<Function *> &Funcs);
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/DebugInfo/GSYM/
H A DGsymCreator.h136 std::vector<FunctionInfo> Funcs; member in class:llvm::gsym::GsymCreator
/freebsd-11-stable/contrib/llvm-project/clang/lib/AST/Interp/
H A DDisasm.cpp63 for (auto &Func : Funcs) {
H A DProgram.h78 Funcs.insert({Def, std::unique_ptr<Function>(Func)});
139 llvm::DenseMap<const FunctionDecl *, std::unique_ptr<Function>> Funcs; member in class:clang::interp::Program
H A DProgram.cpp190 auto It = Funcs.find(F);
191 return It == Funcs.end() ? nullptr : It->second.get();
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/DebugInfo/PDB/
H A DUDTLayout.h124 ArrayRef<std::unique_ptr<PDBSymbolFunc>> funcs() const { return Funcs; }
136 UniquePtrVector<PDBSymbolFunc> Funcs; member in class:llvm::pdb::UDTLayoutBase
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/ExecutionEngine/Orc/RPC/
H A DRPCUtils.h1627 template <typename... Funcs>
1645 template <typename Func, typename... Funcs>
1646 class APICalls<Func, Funcs...> {
1653 APICalls<Funcs...>::template Contains<F>::value;
1660 return APICalls<Funcs...>::negotiate(R);
1665 template <typename... InnerFuncs, typename... Funcs>
1666 class APICalls<APICalls<InnerFuncs...>, Funcs...> {
1674 APICalls<Funcs...>::template Contains<F>::value;
1681 return APICalls<Funcs...>::negotiate(R);
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Transforms/Coroutines/
H A DCoroInternal.h51 void updateCallGraph(Function &Caller, ArrayRef<Function *> Funcs,
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Transforms/Instrumentation/
H A DGCOVProfiling.cpp136 SmallVector<std::unique_ptr<GCOVFunction>, 16> Funcs; member in class:__anon122::GCOVProfiler
750 Funcs.push_back(std::make_unique<GCOVFunction>(SP, &F, &out, FunctionIdent++,
753 GCOVFunction &Func = *Funcs.back();
806 for (auto &Func : Funcs) {
1051 uint32_t FuncChecksum = Funcs.empty() ? 0 : Funcs[j]->getFuncChecksum();
/freebsd-11-stable/contrib/llvm-project/llvm/lib/DebugInfo/PDB/
H A DUDTLayout.cpp191 Funcs.push_back(std::move(Func));
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/ProfileData/
H A DGCOV.h446 void printFunctionSummary(raw_ostream &OS, const FunctionVector &Funcs) const;
/freebsd-11-stable/contrib/llvm-project/llvm/lib/ProfileData/
H A DGCOV.cpp835 const FunctionVector &Funcs) const {
836 for (const GCOVFunction *Func : Funcs) {
/freebsd-11-stable/contrib/llvm-project/clang/lib/Sema/
H A DSemaCoroutine.cpp413 const StringRef Funcs[] = {"await_ready", "await_suspend", "await_resume"}; local
415 for (size_t I = 0, N = llvm::array_lengthof(Funcs); I != N; ++I) {
416 ExprResult Result = buildMemberCall(S, Operand, Loc, Funcs[I], Args[I]);
/freebsd-11-stable/contrib/llvm-project/llvm/tools/llvm-pdbutil/
H A Dllvm-pdbutil.cpp1235 std::vector<std::unique_ptr<PDBSymbolFunc>> Funcs; local
1237 Funcs.push_back(std::move(Func));
1238 llvm::sort(Funcs, opts::pretty::compareFunctionSymbols);
1239 for (const auto &Func : Funcs) {
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/IR/
H A DModuleSummaryIndex.h786 void setVTableFuncs(VTableFuncList Funcs) { argument
788 VTableFuncs = std::make_unique<VTableFuncList>(std::move(Funcs));

Completed in 169 milliseconds

12