OpenGrok
Home
Sort by:
relevance
|
last modified time
|
path
Full Search
in project(s):
src
xsrc
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:getFunction
(Results
1 - 25
of
540
) sorted by relevancy
1
2
3
4
5
6
7
8
9
10
11
>>
/src/external/apache2/llvm/dist/llvm/lib/Target/ARM/
ARMMachineFunctionInfo.cpp
19
IsCmseNSEntry(MF.
getFunction
().hasFnAttribute("cmse_nonsecure_entry")),
20
IsCmseNSCall(MF.
getFunction
().hasFnAttribute("cmse_nonsecure_call")) {}
/src/external/apache2/llvm/dist/llvm/lib/Analysis/
Trace.cpp
27
Function *Trace::
getFunction
() const {
32
return
getFunction
()->getParent();
37
Function *F =
getFunction
();
CallPrinter.cpp
70
Callers.insert(cast<Instruction>(U)->
getFunction
());
99
if (!(Visited.insert(CI->second->
getFunction
())).second) {
148
if (CallMultiGraph || Node->
getFunction
())
160
if (Function *Func = Node->
getFunction
())
178
Function *Caller = Node->
getFunction
();
182
Function *Callee = (*I)->
getFunction
();
196
Function *F = Node->
getFunction
();
BlockFrequencyInfo.cpp
107
return &G->
getFunction
()->front();
117
return nodes_iterator(G->
getFunction
()->begin());
121
return nodes_iterator(G->
getFunction
()->end());
214
return BFI->getBlockProfileCount(*
getFunction
(), BB, AllowSynthetic);
221
return BFI->getProfileCountFromFreq(*
getFunction
(), Freq);
262
const Function *BlockFrequencyInfo::
getFunction
() const {
263
return BFI ? BFI->
getFunction
() : nullptr;
CallGraph.cpp
92
Function *F = Node->
getFunction
();
131
if (Function *LF = LHS->
getFunction
())
132
if (Function *RF = RHS->
getFunction
())
135
return RHS->
getFunction
() != nullptr;
165
Function *F = CGN->
getFunction
(); // Get the function for the call graph node
190
if (Function *F =
getFunction
())
199
if (Function *FI = I.second->
getFunction
())
/src/external/apache2/llvm/dist/llvm/lib/CodeGen/
TargetFrameLoweringImpl.cpp
34
assert(MF.
getFunction
().hasFnAttribute(Attribute::NoReturn) &&
35
MF.
getFunction
().hasFnAttribute(Attribute::NoUnwind) &&
36
!MF.
getFunction
().hasFnAttribute(Attribute::UWTable));
91
isSafeForNoCSROpt(MF.
getFunction
()) &&
92
isProfitableForNoCSROpt(MF.
getFunction
()))
103
if (MF.
getFunction
().hasFnAttribute(Attribute::Naked))
113
if (MF.
getFunction
().hasFnAttribute(Attribute::NoReturn) &&
114
MF.
getFunction
().hasFnAttribute(Attribute::NoUnwind) &&
115
!MF.
getFunction
().hasFnAttribute(Attribute::UWTable) &&
133
if (LLVM_UNLIKELY(MF.
getFunction
().getCallingConv() == CallingConv::HHVM)
[
all
...]
TargetOptionsImpl.cpp
29
const Function &F = MF.
getFunction
();
PatchableFunction.cpp
58
if (MF.
getFunction
().hasFnAttribute("patchable-function-entry")) {
67
if (!MF.
getFunction
().hasFnAttribute("patchable-function"))
71
Attribute PatchAttr = MF.
getFunction
().getFnAttribute("patchable-function");
FEntryInserter.cpp
39
MF.
getFunction
().getFnAttribute("fentry-call").getValueAsString());
MachineFunctionSplitter.cpp
97
if (!MF.
getFunction
().hasProfileData())
104
if (MF.
getFunction
().hasSection() ||
105
MF.
getFunction
().hasFnAttribute("implicit-section-name"))
110
Optional<StringRef> SectionPrefix = MF.
getFunction
().getSectionPrefix();
MachineBlockFrequencyInfo.cpp
96
return &G->
getFunction
()->front();
106
return nodes_iterator(G->
getFunction
()->begin());
110
return nodes_iterator(G->
getFunction
()->end());
239
const Function &F = MBFI->
getFunction
()->
getFunction
();
248
const Function &F = MBFI->
getFunction
()->
getFunction
();
269
const MachineFunction *MachineBlockFrequencyInfo::
getFunction
() const {
270
return MBFI ? MBFI->
getFunction
() : nullptr;
MachineOptimizationRemarkEmitter.cpp
54
LLVMContext &Ctx = MF.
getFunction
().getContext();
75
if (MF.
getFunction
().getContext().getDiagnosticsHotnessRequested())
RegUsageInfoCollector.cpp
86
switch (MF.
getFunction
().getCallingConv()) {
118
if (MF.
getFunction
().use_empty()) {
131
const Function &F = MF.
getFunction
();
/src/external/apache2/llvm/dist/llvm/include/llvm/CodeGen/
MachineOptimizationRemarkEmitter.h
35
MBB->getParent()->
getFunction
(), Loc),
75
const Function &Fn =
getFunction
();
101
const Function &Fn =
getFunction
();
127
const Function &Fn =
getFunction
();
162
MF.
getFunction
().getContext().getLLVMRemarkStreamer() ||
163
MF.
getFunction
().getContext().getDiagHandlerPtr()->isAnyRemarkEnabled(
175
if (MF.
getFunction
().getContext().getLLVMRemarkStreamer() ||
176
MF.
getFunction
()
/src/external/apache2/llvm/dist/llvm/lib/Target/AMDGPU/
AMDGPUMachineFunction.cpp
18
: MachineFunctionInfo(), Mode(MF.
getFunction
()),
20
AMDGPU::isEntryFunctionCC(MF.
getFunction
().getCallingConv())),
22
AMDGPU::isModuleEntryFunctionCC(MF.
getFunction
().getCallingConv())),
28
const Function &F = MF.
getFunction
();
R600AsmPrinter.cpp
73
switch (MF.
getFunction
().getCallingConv()) {
82
switch (MF.
getFunction
().getCallingConv()) {
97
if (AMDGPU::isCompute(MF.
getFunction
().getCallingConv())) {
/src/external/apache2/llvm/dist/llvm/lib/Target/AVR/
AVRMachineFunctionInfo.h
56
unsigned CallConv = MF.
getFunction
().getCallingConv();
58
this->IsInterruptHandler = CallConv == CallingConv::AVR_INTR || MF.
getFunction
().hasFnAttribute("interrupt");
59
this->IsSignalHandler = CallConv == CallingConv::AVR_SIGNAL || MF.
getFunction
().hasFnAttribute("signal");
/src/external/apache2/llvm/dist/llvm/lib/Target/Mips/
MipsCCState.cpp
77
Function *F = G->getGlobal()->getParent()->
getFunction
(Sym);
103
originalTypeIsF128(MF.
getFunction
().getReturnType(), nullptr));
105
MF.
getFunction
().getReturnType()->isFloatingPointTy());
151
Function::const_arg_iterator FuncArg = MF.
getFunction
().arg_begin();
163
assert(Ins[i].getOrigArgIndex() < MF.
getFunction
().arg_size());
/src/external/apache2/llvm/dist/llvm/lib/CodeGen/AsmPrinter/
ErlangGCPrinter.cpp
98
unsigned StackArity = MD.
getFunction
().arg_size() > RegisteredArgs
99
? MD.
getFunction
().arg_size() - RegisteredArgs
OcamlGCPrinter.cpp
145
report_fatal_error("Function '" + FI.
getFunction
().getName() +
155
Twine(FI.
getFunction
().getName()));
162
report_fatal_error("Function '" + FI.
getFunction
().getName() +
/src/external/apache2/llvm/dist/llvm/tools/llvm-diff/
llvm-diff.cpp
46
Function *LFn = L.
getFunction
(Name);
47
Function *RFn = R.
getFunction
(Name);
/src/external/apache2/llvm/dist/llvm/tools/opt/
PrintSCC.cpp
103
errs() << ((*I)->
getFunction
() ? (*I)->
getFunction
()->getName()
/src/external/apache2/llvm/dist/llvm/lib/Target/AArch64/
AArch64RegisterInfo.cpp
67
const Function &F = MF->
getFunction
();
78
if (MF->
getFunction
().getCallingConv() == CallingConv::GHC)
82
if (MF->
getFunction
().getCallingConv() == CallingConv::AnyReg)
90
if (MF->
getFunction
().getCallingConv() == CallingConv::CFGuard_Check)
94
if (MF->
getFunction
().getCallingConv() == CallingConv::AArch64_VectorCall)
96
if (MF->
getFunction
().getCallingConv() == CallingConv::AArch64_SVE_VectorCall)
100
MF->
getFunction
().getAttributes().hasAttrSomewhere(
103
if (MF->
getFunction
().getCallingConv() == CallingConv::SwiftTail)
105
if (MF->
getFunction
().getCallingConv() == CallingConv::PreserveMost)
107
if (MF->
getFunction
().getCallingConv() == CallingConv::Win64
[
all
...]
/src/external/apache2/llvm/dist/llvm/lib/Target/X86/
X86IndirectBranchTracking.cpp
126
MF.
getFunction
().hasAddressTaken() ||
127
!MF.
getFunction
().hasLocalLinkage()) &&
128
!MF.
getFunction
().doesNoCfCheck()) {
/src/external/apache2/llvm/dist/llvm/include/llvm/Analysis/
CFGPrinter.h
79
const Function *
getFunction
() { return this->F; }
103
return &(CFGInfo->
getFunction
()->getEntryBlock());
110
return nodes_iterator(CFGInfo->
getFunction
()->begin());
114
return nodes_iterator(CFGInfo->
getFunction
()->end());
118
return CFGInfo->
getFunction
()->size();
131
return "CFG for '" + CFGInfo->
getFunction
()->getName().str() + "' function";
Completed in 64 milliseconds
1
2
3
4
5
6
7
8
9
10
11
>>
Indexes created Wed Jun 17 00:25:26 UTC 2026