OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:InsertLifetime
(Results
1 - 6
of
6
) sorted by null
/external/llvm/include/llvm/Transforms/IPO/
InlinerPass.h
34
explicit Inliner(char &ID, int Threshold, bool
InsertLifetime
);
81
//
InsertLifetime
- Insert @llvm.lifetime intrinsics.
82
bool
InsertLifetime
;
/external/llvm/lib/Transforms/IPO/
InlineAlways.cpp
40
AlwaysInliner() : Inliner(ID, -2000000000, /*
InsertLifetime
*/ true),
45
AlwaysInliner(bool
InsertLifetime
)
46
: Inliner(ID, -2000000000,
InsertLifetime
), ICA(nullptr) {
75
Pass *llvm::createAlwaysInlinerPass(bool
InsertLifetime
) {
76
return new AlwaysInliner(
InsertLifetime
);
Inliner.cpp
66
: CallGraphSCCPass(ID), InlineThreshold(InlineLimit),
InsertLifetime
(true) {}
68
Inliner::Inliner(char &ID, int Threshold, bool
InsertLifetime
)
71
InsertLifetime
(
InsertLifetime
) {}
128
int InlineHistory, bool
InsertLifetime
,
135
if (!InlineFunction(CS, IFI,
InsertLifetime
))
562
InlineHistoryID,
InsertLifetime
, DL)) {
/external/llvm/include/llvm/Transforms/Utils/
Cloning.h
192
bool InlineFunction(CallInst *C, InlineFunctionInfo &IFI, bool
InsertLifetime
= true);
193
bool InlineFunction(InvokeInst *II, InlineFunctionInfo &IFI, bool
InsertLifetime
= true);
194
bool InlineFunction(CallSite CS, InlineFunctionInfo &IFI, bool
InsertLifetime
= true);
/external/llvm/include/llvm/Transforms/
IPO.h
98
Pass *createAlwaysInlinerPass(bool
InsertLifetime
);
/external/llvm/lib/Transforms/Utils/
InlineFunction.cpp
36
bool
InsertLifetime
) {
37
return InlineFunction(CallSite(CI), IFI,
InsertLifetime
);
40
bool
InsertLifetime
) {
41
return InlineFunction(CallSite(II), IFI,
InsertLifetime
);
526
bool
InsertLifetime
) {
735
if (
InsertLifetime
&& !IFI.StaticAllocas.empty()) {
[
all
...]
Completed in 834 milliseconds