OpenGrok
Home
Sort by:
relevance
|
last modified time
|
path
Full Search
in project(s):
src
xsrc
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:EE
(Results
1 - 25
of
76
) sorted by relevancy
1
2
3
4
/src/external/apache2/llvm/dist/llvm/bindings/ocaml/executionengine/
executionengine_ocaml.c
64
value llvm_ee_dispose(LLVMExecutionEngineRef
EE
) {
65
LLVMDisposeExecutionEngine(
EE
);
70
value llvm_ee_add_module(LLVMModuleRef M, LLVMExecutionEngineRef
EE
) {
71
LLVMAddModule(
EE
, M);
76
value llvm_ee_remove_module(LLVMModuleRef M, LLVMExecutionEngineRef
EE
) {
79
if (LLVMRemoveModule(
EE
, M, &RemovedModule, &Error))
85
value llvm_ee_run_static_ctors(LLVMExecutionEngineRef
EE
) {
86
LLVMRunStaticConstructors(
EE
);
91
value llvm_ee_run_static_dtors(LLVMExecutionEngineRef
EE
) {
92
LLVMRunStaticDestructors(
EE
);
[
all
...]
/src/external/gpl3/gdb/dist/gdb/testsuite/gdb.base/
enum_cond.c
17
enum
EE
25
enum
EE
e;
info-types.c
51
DD,
EE
, FF
/src/external/gpl3/gdb.old/dist/gdb/testsuite/gdb.base/
enum_cond.c
17
enum
EE
25
enum
EE
e;
info-types.c
51
DD,
EE
, FF
/src/external/apache2/llvm/dist/llvm/include/llvm-c/
ExecutionEngine.h
112
void LLVMDisposeExecutionEngine(LLVMExecutionEngineRef
EE
);
114
void LLVMRunStaticConstructors(LLVMExecutionEngineRef
EE
);
116
void LLVMRunStaticDestructors(LLVMExecutionEngineRef
EE
);
118
int LLVMRunFunctionAsMain(LLVMExecutionEngineRef
EE
, LLVMValueRef F,
122
LLVMGenericValueRef LLVMRunFunction(LLVMExecutionEngineRef
EE
, LLVMValueRef F,
126
void LLVMFreeMachineCodeForFunction(LLVMExecutionEngineRef
EE
, LLVMValueRef F);
128
void LLVMAddModule(LLVMExecutionEngineRef
EE
, LLVMModuleRef M);
130
LLVMBool LLVMRemoveModule(LLVMExecutionEngineRef
EE
, LLVMModuleRef M,
133
LLVMBool LLVMFindFunction(LLVMExecutionEngineRef
EE
, const char *Name,
136
void *LLVMRecompileAndRelinkFunction(LLVMExecutionEngineRef
EE
,
[
all
...]
/src/external/apache2/llvm/dist/llvm/lib/ExecutionEngine/
ExecutionEngineBindings.cpp
110
if (ExecutionEngine *
EE
= builder.create()){
111
*OutEE = wrap(
EE
);
216
void LLVMDisposeExecutionEngine(LLVMExecutionEngineRef
EE
) {
217
delete unwrap(
EE
);
220
void LLVMRunStaticConstructors(LLVMExecutionEngineRef
EE
) {
221
unwrap(
EE
)->finalizeObject();
222
unwrap(
EE
)->runStaticConstructorsDestructors(false);
225
void LLVMRunStaticDestructors(LLVMExecutionEngineRef
EE
) {
226
unwrap(
EE
)->finalizeObject();
227
unwrap(
EE
)->runStaticConstructorsDestructors(true)
[
all
...]
/src/external/apache2/llvm/dist/llvm/lib/Support/
SymbolRemappingReader.cpp
59
using
EE
= ItaniumManglingCanonicalizer::EquivalenceError;
61
case
EE
::Success:
64
case
EE
::ManglingAlreadyUsed:
69
case
EE
::InvalidFirstMangling:
73
case
EE
::InvalidSecondMangling:
/src/external/apache2/llvm/dist/llvm/examples/HowToUseJIT/
HowToUseJIT.cpp
125
ExecutionEngine*
EE
= EngineBuilder(std::move(Owner)).create();
133
GenericValue gv =
EE
->runFunction(FooF, noargs);
137
delete
EE
;
/src/external/gpl3/gdb/dist/gdb/testsuite/gdb.cp/
var-tag.cc
37
enum
EE
{ea, eb, ec}
ee
;
variable in typeref:enum:EE
/src/external/gpl3/gdb.old/dist/gdb/testsuite/gdb.cp/
var-tag.cc
37
enum
EE
{ea, eb, ec}
ee
;
variable in typeref:enum:EE
/src/external/apache2/llvm/dist/clang/include/clang/StaticAnalyzer/Core/PathSensitive/
SimpleConstraintManager.h
24
ExprEngine *
EE
;
29
:
EE
(exprengine), SVB(SB) {}
/src/external/apache2/llvm/dist/llvm/lib/Target/XCore/
XCoreFrameToArgsOffsetElim.cpp
54
for (MachineBasicBlock::iterator MBBI = MBB.begin(),
EE
= MBB.end();
55
MBBI !=
EE
; ++MBBI) {
/src/external/apache2/llvm/dist/llvm/examples/Fibonacci/
fibonacci.cpp
118
ExecutionEngine *
EE
=
123
if (!
EE
) {
142
GenericValue GV =
EE
->runFunction(FibF, Args);
/src/external/apache2/llvm/dist/clang/tools/clang-fuzzer/handle-llvm/
handle_llvm.cpp
179
std::unique_ptr<ExecutionEngine>
EE
(builder.create());
180
if (!
EE
)
183
EE
->finalizeObject();
184
EE
->runStaticConstructorsDestructors(false);
198
LLVMFunc f = reinterpret_cast<LLVMFunc>(
EE
->getPointerToFunction(EntryFunc));
207
EE
->runStaticConstructorsDestructors(true);
/src/external/apache2/llvm/dist/llvm/examples/ParallelJIT/
ParallelJIT.cpp
132
ExecutionEngine*
EE
;
253
GenericValue gv = p->
EE
->runFunction(p->F, Args);
271
ExecutionEngine*
EE
= EngineBuilder(std::move(Owner)).create();
277
struct threadParams add1 = {
EE
, add1F, 1000 };
278
struct threadParams fib1 = {
EE
, fibF, 39 };
279
struct threadParams fib2 = {
EE
, fibF, 42 };
/src/external/apache2/llvm/dist/llvm/include/llvm/Support/
GraphWriter.h
86
child_iterator
EE
= GTraits::child_end(Node);
89
for (unsigned i = 0; EI !=
EE
&& i != 64; ++EI, ++i) {
103
if (EI !=
EE
&& hasEdgeSourceLabels)
227
child_iterator
EE
= GTraits::child_end(Node);
228
for (unsigned i = 0; EI !=
EE
&& i != 64; ++EI, ++i)
231
for (; EI !=
EE
; ++EI)
/src/external/apache2/llvm/dist/llvm/lib/Target/X86/
X86PartialReduction.cpp
303
static Value *matchAddReduction(const ExtractElementInst &
EE
) {
305
auto *Index = dyn_cast<ConstantInt>(
EE
.getIndexOperand());
309
const auto *BO = dyn_cast<BinaryOperator>(
EE
.getVectorOperand());
459
auto *
EE
= dyn_cast<ExtractElementInst>(&I);
460
if (!
EE
)
465
Value *Root = matchAddReduction(*
EE
);
/src/external/apache2/llvm/dist/llvm/tools/lli/
lli.cpp
374
static void addCygMingExtraModule(ExecutionEngine &
EE
, LLVMContext &Context,
399
EE
.addModule(std::move(M));
524
std::unique_ptr<ExecutionEngine>
EE
(builder.create());
525
if (!
EE
) {
528
<< "error creating
EE
: " << ErrorMsg << "\n";
530
WithColor::error(errs(), argv[0]) << "unknown error creating
EE
!\n";
537
EE
->setObjectCache(CacheManager.get());
550
EE
->addModule(std::move(XMod));
562
EE
->addObjectFile(std::move(O));
586
EE
->addArchive(std::move(OB))
[
all
...]
/src/external/apache2/llvm/dist/clang/lib/StaticAnalyzer/Core/
SimpleConstraintManager.cpp
47
if (NotifyAssumeClients &&
EE
)
48
return
EE
->processAssume(State, Cond, Assumption);
/src/external/apache2/llvm/dist/llvm/include/llvm/ExecutionEngine/
RTDyldMemoryManager.h
47
virtual void notifyObjectLoaded(ExecutionEngine *
EE
,
/src/external/gpl3/gcc/dist/libstdc++-v3/config/abi/pre/
gnu.ver
358
_ZNSt15basic_streambufI[cw]St11char_traitsI[cw]
EE
[CD]*;
359
_ZNKSt15basic_streambufI[cw]St11char_traitsI[cw]
EE
[0-9]*;
362
_ZNSt15basic_streambufI[cw]St11char_traitsI[cw]
EE
[5-9][a-z][^t]*;
363
_ZNSt15basic_streambufI[cw]St11char_traitsI[cw]
EE
[0-9][0-9][a-z][^t]*;
369
_ZNSt15basic_stringbufI[cw]St11char_traitsI[cw]ESaI[cw]
EE
[0-9][a-r]*;
370
_ZNSt15basic_stringbufI[cw]St11char_traitsI[cw]ESaI[cw]
EE
[0-9]seek*;
371
_ZNSt15basic_stringbufI[cw]St11char_traitsI[cw]ESaI[cw]
EE
[0-9]set*;
376
_ZNSt15basic_stringbufI[cw]St11char_traitsI[cw]ESaI[cw]
EE
[0-9][t-z]*;
377
_ZNSt15basic_stringbufI[cw]St11char_traitsI[cw]ESaI[cw]
EE
[0-9]_M_[a-o]*;
378
_ZNSt15basic_stringbufI[cw]St11char_traitsI[cw]ESaI[cw]
EE
[0-9]_M_[q-z]*
[
all
...]
/src/external/apache2/llvm/dist/llvm/lib/Target/MSP430/
MSP430BranchSelector.cpp
120
for (auto MI = MBB->begin(),
EE
= MBB->end(); MI !=
EE
; ++MI) {
146
if (MI->getOpcode() == MSP430::JCC && std::next(MI) !=
EE
) {
/src/external/gpl3/gcc.old/dist/libstdc++-v3/config/abi/pre/
gnu.ver
356
_ZNSt15basic_streambufI[cw]St11char_traitsI[cw]
EE
[CD]*;
357
_ZNKSt15basic_streambufI[cw]St11char_traitsI[cw]
EE
[0-9]*;
360
_ZNSt15basic_streambufI[cw]St11char_traitsI[cw]
EE
[5-9][a-z][^t]*;
361
_ZNSt15basic_streambufI[cw]St11char_traitsI[cw]
EE
[0-9][0-9][a-z][^t]*;
367
_ZNSt15basic_stringbufI[cw]St11char_traitsI[cw]ESaI[cw]
EE
[0-9][a-r]*;
368
_ZNSt15basic_stringbufI[cw]St11char_traitsI[cw]ESaI[cw]
EE
[0-9]seek*;
369
_ZNSt15basic_stringbufI[cw]St11char_traitsI[cw]ESaI[cw]
EE
[0-9]set*;
374
_ZNSt15basic_stringbufI[cw]St11char_traitsI[cw]ESaI[cw]
EE
[0-9][t-z]*;
375
_ZNSt15basic_stringbufI[cw]St11char_traitsI[cw]ESaI[cw]
EE
[0-9]_M_[a-o]*;
376
_ZNSt15basic_stringbufI[cw]St11char_traitsI[cw]ESaI[cw]
EE
[0-9]_M_[q-z]*
[
all
...]
/src/external/apache2/llvm/dist/llvm/examples/Kaleidoscope/MCJIT/complete/
toy.cpp
877
// If we have an
EE
, the
EE
owns the module so just delete the
EE
.
940
ExecutionEngine *
EE
= EngineBuilder(M)
944
if (!
EE
) {
950
EE
->setObjectCache(&OurObjectCache);
963
FPM->add(new DataLayout(*
EE
->getDataLayout()));
990
EE
->finalizeObject();
993
EngineMap[M] =
EE
;
995
return
EE
;
[
all
...]
Completed in 53 milliseconds
1
2
3
4
Indexes created Tue Feb 24 08:35:24 UTC 2026