HomeSort by: relevance | last modified time | path
    Searched defs:Functions (Results 1 - 25 of 34) sorted by relevancy

1 2

  /src/external/apache2/llvm/dist/llvm/tools/llvm-reduce/deltas/
ReduceAliases.cpp 50 int Functions = countAliases(Test.getProgram());
51 runDeltaPass(Test, Functions, extractAliasesFromModule);
ReduceFunctionBodies.cpp 20 /// Removes all the bodies of defined functions that aren't inside any of the
36 /// Counts the amount of non-declaration functions and prints their
54 int Functions = countFunctionDefinitions(Test.getProgram());
55 runDeltaPass(Test, Functions, extractFunctionBodiesFromModule);
ReduceFunctions.cpp 10 // to reduce functions (and any instruction that calls it) in the provided
24 /// Removes all the Defined Functions
30 // Record all out-of-chunk functions.
32 copy_if(Program->functions(), std::back_inserter(FuncsToRemove),
54 /// Counts the amount of functions and prints their
73 errs() << "*** Reducing Functions...\n";
74 int Functions = countFunctions(Test.getProgram());
75 runDeltaPass(Test, Functions, extractFunctionsFromModule);
ReduceSpecialGlobals.cpp 59 int Functions = countSpecialGlobals(Test.getProgram());
60 runDeltaPass(Test, Functions, extractSpecialGlobalsFromModule);
  /src/sys/external/bsd/compiler_rt/dist/lib/xray/
xray_interface_internal.h 12 // Implementation of the API functions. See also include/xray/xray_interface.h.
57 size_t Functions;
71 // The following functions have to be defined in assembler, on a per-platform
  /src/sys/external/bsd/acpica/dist/tools/acpisrc/
asfile.c 311 UINT32 Functions;
324 Functions = ConversionTable->SourceFunctions;
335 Functions = ConversionTable->HeaderFunctions;
346 Functions = ConversionTable->PatchFunctions;
441 switch (((UINT32) 1 << i) & Functions)
  /src/external/apache2/llvm/dist/llvm/include/llvm/CodeGen/
GCMetadata.h 168 FuncInfoVec::iterator funcinfo_begin() { return Functions.begin(); }
169 FuncInfoVec::iterator funcinfo_end() { return Functions.end(); }
173 FuncInfoVec Functions;
  /src/external/apache2/llvm/dist/llvm/lib/Transforms/IPO/
BlockExtractor.cpp 1 //===- BlockExtractor.cpp - Extracts blocks into their own functions ------===//
10 // own functions.
41 cl::desc("Erase the existing functions"),
184 // Get all the functions.
185 SmallVector<Function *, 4> Functions;
188 Functions.push_back(&F);
235 // Erase the functions.
237 for (Function *F : Functions) {
242 // Set linkage as ExternalLinkage to avoid erasing unreachable functions.
CalledValuePropagation.cpp 11 // indicates the set of functions the call site could possibly target at
30 /// The maximum number of functions to track per lattice value. Once the number
31 /// of functions a call site can possibly target exceeds this threshold, it's
33 /// bounded by Ch(F, M), where F is the number of functions in the module and M
38 "cvp-max-functions-per-value", cl::Hidden, cl::init(4),
39 cl::desc("The maximum number of functions to track per lattice value"));
44 /// represents the return values of functions, and the memory group represents
54 /// lattice state, and a set of functions.
58 /// interesting. It indicates the set of functions to which an LLVM value may
62 /// Comparator for sorting the functions set. We want to keep the orde
    [all...]
  /src/external/apache2/llvm/dist/llvm/include/llvm/MC/
MCCodeView.h 253 /// All known functions and inlined call sites, indexed by function id.
254 std::vector<MCCVFunctionInfo> Functions;
  /src/external/apache2/llvm/dist/llvm/lib/Target/AArch64/
SVEIntrinsicOpts.cpp 61 bool optimizePTrueIntrinsicCalls(SmallSetVector<Function *, 4> &Functions);
66 bool optimizeIntrinsicCalls(SmallSetVector<Function *, 4> &Functions);
69 /// the functions themselves.
70 bool optimizeFunctions(SmallSetVector<Function *, 4> &Functions);
206 /// intrinsic in each basic block within the given functions.
254 SmallSetVector<Function *, 4> &Functions) {
257 for (auto *F : Functions) {
445 SmallSetVector<Function *, 4> &Functions) {
447 for (auto *F : Functions) {
462 SmallSetVector<Function *, 4> &Functions) {
    [all...]
  /src/external/apache2/llvm/dist/llvm/lib/Target/AMDGPU/Utils/
AMDGPUPALMetadata.cpp 764 // Reference (create if necessary) the node for the shader functions map.
775 // Get (create if necessary) the shader functions map.
782 // Get (create if necessary) a function in the shader functions map.
784 auto Functions = getShaderFunctions();
785 return Functions[Name].getMap(/*Convert=*/true);
  /src/external/apache2/llvm/dist/llvm/tools/llvm-cov/
CoverageReport.cpp 95 ArrayRef<StringRef> Functions) {
98 for (StringRef Funcname : Functions)
314 auto Functions = Coverage.getCoveredFunctions(Filename);
322 for (const auto &F : Functions)
342 for (const auto &F : Functions) {
449 OS << column("Functions", FileReportColumns[4], Column::RightAlignment)
450 << column("Missed Functions", FileReportColumns[5], Column::RightAlignment)
478 << "Files which contain no functions:\n";
CodeCoverage.cpp 389 // Skip functions which have a single instantiation.
447 warning(Twine(Mismatched) + " functions have mismatched data");
667 cl::desc("Show code coverage only for functions with the given name"),
672 cl::desc("Show code coverage only for functions listed in the given "
678 cl::desc("Show code coverage only for functions that match the given "
690 cl::desc("Show code coverage only for functions with region coverage "
696 cl::desc("Show code coverage only for functions with region coverage "
702 cl::desc("Show code coverage only for functions with line coverage less "
708 cl::desc("Show code coverage only for functions with line coverage "
1015 // Build the map of filenames to functions
    [all...]
  /src/external/apache2/llvm/dist/llvm/tools/llvm-pdbutil/
llvm-pdbutil.h 68 enum class SymLevel { Functions, Data, Thunks, All };
  /src/external/apache2/llvm/dist/llvm/lib/Analysis/
CallGraphSCCPass.cpp 13 // recursive functions, which they process all at once.
174 // Run pass P on all functions in the current SCC.
196 /// Scan the functions in the specified CFG and resync the
217 // Scan all functions in the SCC.
276 // of well known functions etc.
320 // functions in the right order.
456 std::string Functions;
458 raw_string_ostream OS(Functions);
466 dumpPassInfo(P, EXECUTION_MSG, ON_CG_MSG, Functions);
525 // functions in this SCC. However, we support iterative compilation in th
    [all...]
StackSafetyAnalysis.cpp 476 FunctionMap Functions;
486 updateOneNode(Callee, Functions.find(Callee)->second);
489 for (auto &F : Functions)
498 StackSafetyDataFlowAnalysis(uint32_t PointerBitWidth, FunctionMap Functions)
499 : Functions(std::move(Functions)),
512 auto FnIt = Functions.find(Callee);
514 if (FnIt == Functions.end())
572 for (auto &F : Functions) {
609 return Functions;
    [all...]
  /src/external/apache2/llvm/dist/llvm/lib/ExecutionEngine/
ExecutionEngineBindings.cpp 336 SimpleBindingMemoryManager(const SimpleBindingMMFunctions& Functions,
351 SimpleBindingMMFunctions Functions;
356 const SimpleBindingMMFunctions& Functions,
358 : Functions(Functions), Opaque(Opaque) {
359 assert(Functions.AllocateCodeSection &&
361 assert(Functions.AllocateDataSection &&
363 assert(Functions.FinalizeMemory &&
365 assert(Functions.Destroy &&
370 Functions.Destroy(Opaque)
    [all...]
  /src/external/apache2/llvm/dist/llvm/lib/ExecutionEngine/IntelJITEvents/
IntelJITEventListener.cpp 10 // Amplifier XE 2011 about JITted functions.
238 MethodAddressVector Functions;
240 // Use symbol info to iterate functions in the object.
285 Functions.push_back((void *)Addr);
330 LoadedObjectMap[ObjData] = Functions;
361 MethodAddressVector &Functions = OI->second;
364 for (MethodAddressVector::iterator FI = Functions.begin(),
365 FE = Functions.end();
  /src/external/apache2/llvm/dist/clang/lib/APINotes/
APINotesYAMLCompiler.cpp 501 FunctionsSeq Functions;
514 IO.mapOptional("Functions", TLI.Functions);
  /src/external/apache2/llvm/dist/clang/lib/Sema/
SemaTemplateVariadic.cpp 1232 UnresolvedSet<16> Functions;
1233 LookupBinOp(S, EllipsisLoc, Opc, Functions);
1234 if (!Functions.empty()) {
1239 DeclarationNameInfo(OpName, EllipsisLoc), Functions);
SemaAccess.cpp 111 // functions (which can gain privileges through friendship), but we
126 Functions.push_back(Function->getCanonicalDecl());
155 SmallVector<FunctionDecl*, 4> Functions;
510 I = EC.Functions.begin(), E = EC.Functions.end(); I != E; ++I) {
526 if (EC.Functions.empty()) return AR_inaccessible;
531 I = EC.Functions.begin(), E = EC.Functions.end(); I != E; ++I) {
804 // static member functions.
805 if (S.getLangOpts().MSVCCompat && !EC.Functions.empty()
    [all...]
  /src/external/apache2/llvm/dist/llvm/include/llvm/Object/
Wasm.h 153 ArrayRef<wasm::WasmFunction> functions() const { return Functions; } function in class:llvm::object::WasmObjectFile
287 std::vector<wasm::WasmFunction> Functions;
  /src/external/apache2/llvm/dist/llvm/tools/bugpoint/
CrashDebugger.cpp 53 cl::desc("When stubbing functions, replace all uses will null"),
191 /// ReduceCrashingFunctions reducer - This works by removing functions and
250 std::set<Function *> Functions;
256 Functions.insert(CMF);
259 outs() << "Checking for crash with only these functions: ";
263 // Loop over and delete any functions which we aren't supposed to be playing
266 if (!I.isDeclaration() && !Functions.count(&I))
270 // First, remove aliases to functions we're about to purge.
275 if (Functions.count(F))
293 if (!I.isDeclaration() && !Functions.count(&I))
    [all...]
  /src/external/apache2/llvm/dist/llvm/tools/llvm-lto/
llvm-lto.cpp 343 unsigned Calls = 0, Refs = 0, Functions = 0, Alias = 0, Globals = 0;
348 Functions++;
357 << (Alias + Globals + Functions) << " nodes (" << Functions
358 << " functions, " << Alias << " alias, " << Globals

Completed in 48 milliseconds

1 2