OpenGrok
Home
Sort by:
relevance
|
last modified time
|
path
Full Search
in project(s):
src
xsrc
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:TSM
(Results
1 - 14
of
14
) sorted by relevancy
/src/external/apache2/llvm/dist/llvm/examples/OrcV2Examples/OrcV2CBindingsBasicUsage/
OrcV2CBindingsBasicUsage.c
60
LLVMOrcThreadSafeModuleRef
TSM
= LLVMOrcCreateNewThreadSafeModule(M, TSCtx);
63
// will be kept alive by our ThreadSafeModule,
TSM
.
67
return
TSM
;
93
LLVMOrcThreadSafeModuleRef
TSM
= createDemoModule();
99
if ((Err = LLVMOrcLLJITAddLLVMIRModule(J, MainJD,
TSM
))) {
102
LLVMOrcDisposeThreadSafeModule(
TSM
);
/src/external/apache2/llvm/dist/llvm/examples/OrcV2Examples/OrcV2CBindingsRemovableCode/
OrcV2CBindingsRemovableCode.c
60
LLVMOrcThreadSafeModuleRef
TSM
= LLVMOrcCreateNewThreadSafeModule(M, TSCtx);
63
// will be kept alive by our ThreadSafeModule,
TSM
.
67
return
TSM
;
93
LLVMOrcThreadSafeModuleRef
TSM
= createDemoModule();
101
if ((Err = LLVMOrcLLJITAddLLVMIRModuleWithRT(J, RT,
TSM
))) {
104
LLVMOrcDisposeThreadSafeModule(
TSM
);
/src/external/apache2/llvm/dist/llvm/include/llvm/ExecutionEngine/Orc/
Layer.h
39
ThreadSafeModule
TSM
);
46
IRMaterializationUnit(ThreadSafeModule
TSM
, SymbolFlagsMap SymbolFlags,
54
const ThreadSafeModule &getModule() const { return
TSM
; }
57
ThreadSafeModule
TSM
;
62
const ThreadSafeModule &
TSM
);
101
virtual Error add(ResourceTrackerSP RT, ThreadSafeModule
TSM
);
105
Error add(JITDylib &JD, ThreadSafeModule
TSM
) {
106
return add(JD.getDefaultResourceTracker(), std::move(
TSM
));
111
ThreadSafeModule
TSM
) = 0;
125
ThreadSafeModule
TSM
);
[
all
...]
/src/external/apache2/llvm/dist/llvm/lib/Target/X86/
X86PadShortFunction.cpp
94
TargetSchedModel
TSM
;
116
TSM
.init(&MF.getSubtarget());
212
CyclesToEnd +=
TSM
.computeInstrLatency(&MI);
226
unsigned IssueWidth =
TSM
.getIssueWidth();
229
BuildMI(*MBB, MBBI, DL,
TSM
.getInstrInfo()->get(X86::NOOP));
X86FixupLEAs.cpp
124
TargetSchedModel
TSM
;
214
TSM
.init(&ST);
304
InstrDistance +=
TSM
.computeInstrLatency(&*CurInst);
/src/external/apache2/llvm/dist/llvm/examples/OrcV2Examples/OrcV2CBindingsReflectProcessSymbols/
OrcV2CBindingsReflectProcessSymbols.c
105
LLVMOrcThreadSafeModuleRef
TSM
= LLVMOrcCreateNewThreadSafeModule(M, TSCtx);
108
// will be kept alive by our ThreadSafeModule,
TSM
.
112
return
TSM
;
160
LLVMOrcThreadSafeModuleRef
TSM
= createDemoModule();
166
if ((Err = LLVMOrcLLJITAddLLVMIRModule(J, MainJD,
TSM
))) {
169
LLVMOrcDisposeThreadSafeModule(
TSM
);
/src/external/apache2/llvm/dist/llvm/examples/Kaleidoscope/Chapter4/
toy.cpp
614
auto
TSM
= ThreadSafeModule(std::move(TheModule), std::move(TheContext));
615
ExitOnErr(TheJIT->addModule(std::move(
TSM
), RT));
/src/external/apache2/llvm/dist/llvm/examples/Kaleidoscope/BuildingAJIT/Chapter1/
toy.cpp
1121
auto
TSM
= ThreadSafeModule(std::move(TheModule), std::move(TheContext));
1122
ExitOnErr(TheJIT->addModule(std::move(
TSM
)));
1153
auto
TSM
= ThreadSafeModule(std::move(TheModule), std::move(TheContext));
1154
ExitOnErr(TheJIT->addModule(std::move(
TSM
), RT));
/src/external/apache2/llvm/dist/llvm/examples/Kaleidoscope/BuildingAJIT/Chapter2/
toy.cpp
1121
auto
TSM
= ThreadSafeModule(std::move(TheModule), std::move(TheContext));
1122
ExitOnErr(TheJIT->addModule(std::move(
TSM
)));
1153
auto
TSM
= ThreadSafeModule(std::move(TheModule), std::move(TheContext));
1154
ExitOnErr(TheJIT->addModule(std::move(
TSM
), RT));
/src/external/apache2/llvm/dist/llvm/examples/Kaleidoscope/BuildingAJIT/Chapter3/
toy.cpp
1121
auto
TSM
= ThreadSafeModule(std::move(TheModule), std::move(TheContext));
1122
ExitOnErr(TheJIT->addModule(std::move(
TSM
)));
1153
auto
TSM
= ThreadSafeModule(std::move(TheModule), std::move(TheContext));
1154
ExitOnErr(TheJIT->addModule(std::move(
TSM
), RT));
/src/external/apache2/llvm/dist/llvm/examples/Kaleidoscope/BuildingAJIT/Chapter4/
toy.cpp
1110
auto
TSM
= ThreadSafeModule(std::move(TheModule), std::move(TheContext));
1113
return
TSM
;
1151
auto
TSM
= ThreadSafeModule(std::move(TheModule), std::move(TheContext));
1152
ExitOnErr(TheJIT->addModule(std::move(
TSM
), RT));
/src/external/apache2/llvm/dist/llvm/examples/Kaleidoscope/Chapter5/
toy.cpp
888
auto
TSM
= ThreadSafeModule(std::move(TheModule), std::move(TheContext));
889
ExitOnErr(TheJIT->addModule(std::move(
TSM
), RT));
/src/external/apache2/llvm/dist/llvm/examples/Kaleidoscope/Chapter6/
toy.cpp
1007
auto
TSM
= ThreadSafeModule(std::move(TheModule), std::move(TheContext));
1008
ExitOnErr(TheJIT->addModule(std::move(
TSM
), RT));
/src/external/apache2/llvm/dist/llvm/examples/Kaleidoscope/Chapter7/
toy.cpp
1178
auto
TSM
= ThreadSafeModule(std::move(TheModule), std::move(TheContext));
1179
ExitOnErr(TheJIT->addModule(std::move(
TSM
), RT));
Completed in 66 milliseconds
Indexes created Thu Mar 26 00:23:24 UTC 2026