OpenGrok
Home
Sort by:
relevance
|
last modified time
|
path
Full Search
in project(s):
src
xsrc
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:CFGInfo
(Results
1 - 5
of
5
) sorted by relevancy
/src/external/apache2/llvm/dist/llvm/include/llvm/Analysis/
CFGPrinter.h
102
static NodeRef getEntryNode(DOTFuncInfo *
CFGInfo
) {
103
return &(
CFGInfo
->getFunction()->getEntryBlock());
109
static nodes_iterator nodes_begin(DOTFuncInfo *
CFGInfo
) {
110
return nodes_iterator(
CFGInfo
->getFunction()->begin());
113
static nodes_iterator nodes_end(DOTFuncInfo *
CFGInfo
) {
114
return nodes_iterator(
CFGInfo
->getFunction()->end());
117
static size_t size(DOTFuncInfo *
CFGInfo
) {
118
return
CFGInfo
->getFunction()->size();
130
static std::string getGraphName(DOTFuncInfo *
CFGInfo
) {
131
return "CFG for '" +
CFGInfo
->getFunction()->getName().str() + "' function"
[
all
...]
/src/external/apache2/llvm/dist/llvm/lib/Analysis/
CFGPrinter.cpp
68
DOTFuncInfo
CFGInfo
(&F, BFI, BPI, MaxFreq);
69
CFGInfo
.setHeatColors(ShowHeatColors);
70
CFGInfo
.setEdgeWeights(ShowEdgeWeight);
71
CFGInfo
.setRawEdgeWeights(UseRawEdgeWeight);
74
WriteGraph(File, &
CFGInfo
, CFGOnly);
83
DOTFuncInfo
CFGInfo
(&F, BFI, BPI, MaxFreq);
84
CFGInfo
.setHeatColors(ShowHeatColors);
85
CFGInfo
.setEdgeWeights(ShowEdgeWeight);
86
CFGInfo
.setRawEdgeWeights(UseRawEdgeWeight);
88
ViewGraph(&
CFGInfo
, "cfg." + F.getName(), CFGOnly)
[
all
...]
CallPrinter.cpp
238
CallGraphDOTInfo
CFGInfo
(&M, &CG, LookupBFI);
241
DOTGraphTraits<CallGraphDOTInfo *>::getGraphName(&
CFGInfo
);
242
ViewGraph(&
CFGInfo
, "callgraph", true, Title);
280
CallGraphDOTInfo
CFGInfo
(&M, &CG, LookupBFI);
283
WriteGraph(File, &
CFGInfo
);
MemorySSA.cpp
2246
static NodeRef getEntryNode(DOTFuncMSSAInfo *
CFGInfo
) {
2247
return &(
CFGInfo
->getFunction()->getEntryBlock());
2253
static nodes_iterator nodes_begin(DOTFuncMSSAInfo *
CFGInfo
) {
2254
return nodes_iterator(
CFGInfo
->getFunction()->begin());
2257
static nodes_iterator nodes_end(DOTFuncMSSAInfo *
CFGInfo
) {
2258
return nodes_iterator(
CFGInfo
->getFunction()->end());
2261
static size_t size(DOTFuncMSSAInfo *
CFGInfo
) {
2262
return
CFGInfo
->getFunction()->size();
2271
static std::string getGraphName(DOTFuncMSSAInfo *
CFGInfo
) {
2272
return "MSSA CFG for '" +
CFGInfo
->getFunction()->getName().str()
[
all
...]
/src/external/apache2/llvm/dist/llvm/lib/ProfileData/
SampleProfReader.cpp
97
StringRef
CFGInfo
= Input.substr(strlen("!CFGChecksum:")).trim();
98
return !
CFGInfo
.getAsInteger(10, FunctionHash);
Completed in 40 milliseconds
Indexes created Wed Jun 17 00:25:26 UTC 2026