| /src/external/apache2/llvm/dist/llvm/include/llvm/Analysis/ |
| ValueLatticeUtils.h | 10 // that propagate values across function boundaries. 19 class Function; 22 /// Determine if the values of the given function's arguments can be tracked 23 /// interprocedurally. The value of an argument can be tracked if the function 25 bool canTrackArgumentsInterprocedurally(Function *F); 27 /// Determine if the values of the given function's returns can be tracked 28 /// interprocedurally. Return values can be tracked if the function has an 31 bool canTrackReturnsInterprocedurally(Function *F);
|
| InstCount.h | 20 class Function; 23 PreservedAnalyses run(Function &F, FunctionAnalysisManager &);
|
| HeatUtils.h | 23 class Function; 27 getNumOfCalls(Function &callerFunction, Function &calledFunction); 29 // Returns the maximum frequency of a BB in a function. 30 uint64_t getMaxFreq(const Function &F, const BlockFrequencyInfo *BFI);
|
| /src/external/apache2/llvm/dist/llvm/include/llvm/Transforms/Scalar/ |
| NewGVN.h | 21 class Function; 25 /// Run the pass over the function. 26 PreservedAnalyses run(Function &F, AnalysisManager<Function> &AM);
|
| ADCE.h | 23 class Function; 32 PreservedAnalyses run(Function &F, FunctionAnalysisManager &);
|
| AnnotationRemarks.h | 21 class Function; 24 PreservedAnalyses run(Function &F, FunctionAnalysisManager &AM);
|
| CorrelatedValuePropagation.h | 16 class Function; 20 PreservedAnalyses run(Function &F, FunctionAnalysisManager &AM);
|
| DeadStoreElimination.h | 24 class Function; 30 PreservedAnalyses run(Function &F, FunctionAnalysisManager &FAM);
|
| EarlyCSE.h | 21 class Function; 33 /// Run the pass over the function. 34 PreservedAnalyses run(Function &F, FunctionAnalysisManager &AM);
|
| LoopDistribute.h | 23 class Function; 27 PreservedAnalyses run(Function &F, FunctionAnalysisManager &AM);
|
| LoopFuse.h | 21 class Function; 25 PreservedAnalyses run(Function &F, FunctionAnalysisManager &AM);
|
| LoopLoadElimination.h | 23 class Function; 28 PreservedAnalyses run(Function &F, FunctionAnalysisManager &AM);
|
| MergeICmps.h | 16 class Function; 20 PreservedAnalyses run(Function &F, FunctionAnalysisManager &AM);
|
| /src/external/bsd/zstd/dist/contrib/pzstd/utils/ |
| ScopeGuard.h | 17 * `Function` must be callable and take no parameters. 25 template <typename Function> 27 Function function; member in class:pzstd::ScopeGuard 31 explicit ScopeGuard(Function&& function) 32 : function(std::move(function)), dismissed(false) {} 40 function(); 45 /// Creates a scope guard from `function` [all...] |
| /src/external/apache2/llvm/dist/llvm/lib/Target/NVPTX/ |
| NVPTXUtilities.h | 16 #include "llvm/IR/Function.h" 47 bool getMaxNTIDx(const Function &, unsigned &); 48 bool getMaxNTIDy(const Function &, unsigned &); 49 bool getMaxNTIDz(const Function &, unsigned &); 51 bool getReqNTIDx(const Function &, unsigned &); 52 bool getReqNTIDy(const Function &, unsigned &); 53 bool getReqNTIDz(const Function &, unsigned &); 55 bool getMinCTASm(const Function &, unsigned &); 56 bool getMaxNReg(const Function &, unsigned &); 57 bool isKernelFunction(const Function &) [all...] |
| /src/external/apache2/llvm/dist/llvm/tools/llvm-cov/ |
| CoverageFilters.cpp | 1 //===- CoverageFilters.cpp - Function coverage mapping filters ------------===// 9 // These classes provide filtering for function coverage mapping records. 22 const coverage::FunctionRecord &Function) const { 23 StringRef FuncName = Function.Name; 29 const coverage::FunctionRecord &Function) const { 30 return llvm::Regex(Regex).match(Function.Name); 39 const coverage::FunctionRecord &Function) const { 40 return Whitelist.inSection("llvmcov", "whitelist_fun", Function.Name); 45 const coverage::FunctionRecord &Function) const { 46 return PassesThreshold(FunctionCoverageSummary::get(CM, Function) [all...] |
| /src/external/apache2/llvm/dist/llvm/include/llvm/IR/ |
| StructuralHash.h | 24 class Function; 27 uint64_t StructuralHash(const Function &F);
|
| /src/external/apache2/llvm/dist/llvm/include/llvm/Transforms/Coroutines/ |
| CoroCleanup.h | 21 class Function; 24 PreservedAnalyses run(Function &F, FunctionAnalysisManager &AM);
|
| CoroEarly.h | 24 class Function; 27 PreservedAnalyses run(Function &F, FunctionAnalysisManager &AM);
|
| CoroElide.h | 23 class Function; 26 PreservedAnalyses run(Function &F, FunctionAnalysisManager &AM);
|
| /src/external/apache2/llvm/dist/llvm/include/llvm/Transforms/Utils/ |
| AddDiscriminators.h | 22 class Function; 26 PreservedAnalyses run(Function &F, FunctionAnalysisManager &AM);
|
| CtorUtils.h | 21 class Function; 27 function_ref<bool(Function *)> ShouldRemove);
|
| Mem2Reg.h | 9 // This pass is a simple pass wrapper around the PromoteMemToReg function call 21 class Function; 25 PreservedAnalyses run(Function &F, FunctionAnalysisManager &AM);
|
| StripGCRelocates.h | 16 class Function; 20 PreservedAnalyses run(Function &F, FunctionAnalysisManager &AM);
|
| /src/external/apache2/llvm/dist/clang/tools/clang-fuzzer/ |
| ExampleClangProtoFuzzer.cpp | 10 /// This file implements a function that runs Clang on a single 11 /// input and uses libprotobuf-mutator to find new inputs. This function is 24 DEFINE_BINARY_PROTO_FUZZER(const Function& input) {
|