OpenGrok
Home
Sort by:
relevance
|
last modified time
|
path
Full Search
in project(s):
src
xsrc
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:Functions
(Results
1 - 25
of
88
) sorted by relevancy
1
2
3
4
/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);
ReduceSpecialGlobals.cpp
59
int
Functions
= countSpecialGlobals(Test.getProgram());
60
runDeltaPass(Test,
Functions
, extractSpecialGlobalsFromModule);
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);
/src/external/mit/libcbor/dist/docs/doxygen/search/
searchdata.js
19
3: "
functions
",
32
3: "
Functions
",
/src/external/apache2/llvm/dist/llvm/lib/Transforms/IPO/
PruneEH.cpp
11
// throw an exception, and marking
functions
'nounwind' if they cannot throw.
65
static bool runImpl(CallGraphUpdater &CGU, SetVector<Function *> &
Functions
) {
67
for (auto *F :
Functions
)
72
// First pass, scan all of the
functions
in the SCC, simplifying them
74
for (Function *F :
Functions
)
78
//
functions
in this SCC: if so, we cannot prune any
functions
in this SCC.
85
for (Function *F :
Functions
) {
94
// no-inline
functions
as
functions
which may be inlined canno
[
all
...]
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
...]
Attributor.cpp
56
"Number of
functions
with exact definitions");
58
"Number of
functions
without exact definitions");
108
"derived from non-exact
functions
via cloning"),
586
if (!
Functions
.count(IRP.getAnchorScope()))
1204
// Early exit if we don't intend to delete
functions
.
1208
// Identify dead internal
functions
and delete them. This happens outside
1209
// the other fixpoint analysis as we might treat potentially dead
functions
1213
for (Function *F :
Functions
)
1231
(
Functions
.count(Callee) && Callee->hasLocalLinkage() &&
1253
<< ToBeDeletedFunctions.size() << "
functions
and
[
all
...]
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
.
/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/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/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
xray_init.cc
89
XRayInstrMap.
Functions
= __stop_xray_fn_idx - __start_xray_fn_idx;
102
// Calling unresolved PLT
functions
in .preinit_array can lead to deadlock on
xray_interface.cc
12
// Implementation of the API
functions
.
197
// If we don't have an index, we can't patch individual
functions
.
198
if (InstrMap.
Functions
== 0)
201
// FuncId must be a positive number, less than the number of
functions
203
if (FuncId <= 0 || static_cast<size_t>(FuncId) > InstrMap.
Functions
) {
321
// FuncId must be a positive number, less than the number of
functions
323
if (FuncId <= 0 || static_cast<size_t>(FuncId) > InstrMap.
Functions
) {
369
// The following
functions
are declared `extern "C" {...}` in the header, hence
466
if (FuncId <= 0 || static_cast<size_t>(FuncId) > XRayInstrMap.
Functions
)
480
return XRayInstrMap.
Functions
;
[
all
...]
/src/external/gpl3/gcc.old/dist/libgcc/config/avr/libf7/
f7wraps.sh
41
;; Wrappers for double and long double
functions
to use
functions
that
55
;;
Functions
that usually live in libgcc: __<name> for <name> in:
77
;;
Functions
that usually live in libgcc: __<name> for <name> in:
99
;;
Functions
that usually live in libgcc: __<name>df3 for <name> in:
122
;;
Functions
that usually live in libgcc: __<name>df2 for <name> in:
144
;;
Functions
that usually live in libm: Depending on [long] double layout,
169
;;
Functions
that usually live in libm: Depending on [long] double layout,
194
;;
Functions
that usually live in libm: Depending on [long] double layout,
219
;;
Functions
that usually live in libm: Depending on [long] double layout
[
all
...]
/src/external/gpl3/gcc/dist/libgcc/config/avr/libf7/
f7wraps.sh
41
;; Wrappers for double and long double
functions
to use
functions
that
55
;;
Functions
that usually live in libgcc: __<name> for <name> in:
77
;;
Functions
that usually live in libgcc: __<name> for <name> in:
99
;;
Functions
that usually live in libgcc: __<name>df3 for <name> in:
122
;;
Functions
that usually live in libgcc: __<name>df2 for <name> in:
144
;;
Functions
that usually live in libm: Depending on [long] double layout,
169
;;
Functions
that usually live in libm: Depending on [long] double layout,
194
;;
Functions
that usually live in libm: Depending on [long] double layout,
219
;;
Functions
that usually live in libm: Depending on [long] double layout
[
all
...]
/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/CodeGen/
GCMetadata.cpp
76
Functions
.push_back(std::make_unique<GCFunctionInfo>(F, *S));
77
GCFunctionInfo *GFI =
Functions
.back().get();
83
Functions
.clear();
/src/external/apache2/llvm/dist/llvm/lib/Analysis/
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/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/gpl3/autoconf/dist/lib/Autom4te/
Configure_ac.pm
57
=head2
Functions
/src/external/apache2/llvm/dist/llvm/include/llvm/Transforms/Utils/
Debugify.h
53
/// \param
Functions
A range of
functions
to add debug information to.
59
Module &M, iterator_range<Module::iterator>
Functions
, StringRef Banner,
70
/// \param
Functions
A range of
functions
to collect debug information from.
75
iterator_range<Module::iterator>
Functions
,
82
/// \param
Functions
A range of
functions
to collect debug information from.
87
iterator_range<Module::iterator>
Functions
,
/src/external/apache2/llvm/dist/llvm/tools/llvm-cov/
CoverageExporterLcov.cpp
25
// - "FNF:<number of
functions
found>"
26
// - "FNH:<number of
functions
hit>"
57
const iterator_range<coverage::FunctionRecordIterator> &
Functions
) {
58
for (const auto &F :
Functions
) {
62
for (const auto &F :
Functions
)
/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/lib/MC/
MCCodeView.cpp
79
if (FuncId >=
Functions
.size())
81
if (
Functions
[FuncId].isUnallocatedFunctionInfo())
83
return &
Functions
[FuncId];
87
if (FuncId >=
Functions
.size())
88
Functions
.resize(FuncId + 1);
91
if (!
Functions
[FuncId].isUnallocatedFunctionInfo())
95
Functions
[FuncId].ParentFuncIdPlusOne = MCCVFunctionInfo::FunctionSentinel;
102
if (FuncId >=
Functions
.size())
103
Functions
.resize(FuncId + 1);
106
if (!
Functions
[FuncId].isUnallocatedFunctionInfo()
[
all
...]
Completed in 42 milliseconds
1
2
3
4
Indexes created Tue Feb 24 08:35:24 UTC 2026