Home
last modified time | relevance | path

Searched refs:EE (Results 1 – 25 of 184) sorted by relevance

12345678

/openbsd-src/gnu/llvm/llvm/bindings/ocaml/executionengine/
H A Dexecutionengine_ocaml.c64 value llvm_ee_dispose(LLVMExecutionEngineRef EE) { in llvm_ee_dispose() argument
65 LLVMDisposeExecutionEngine(EE); in llvm_ee_dispose()
70 value llvm_ee_add_module(LLVMModuleRef M, LLVMExecutionEngineRef EE) { in llvm_ee_add_module() argument
71 LLVMAddModule(EE, M); in llvm_ee_add_module()
76 value llvm_ee_remove_module(LLVMModuleRef M, LLVMExecutionEngineRef EE) { in llvm_ee_remove_module() argument
79 if (LLVMRemoveModule(EE, M, &RemovedModule, &Error)) in llvm_ee_remove_module()
85 value llvm_ee_run_static_ctors(LLVMExecutionEngineRef EE) { in llvm_ee_run_static_ctors() argument
86 LLVMRunStaticConstructors(EE); in llvm_ee_run_static_ctors()
91 value llvm_ee_run_static_dtors(LLVMExecutionEngineRef EE) { in llvm_ee_run_static_dtors() argument
92 LLVMRunStaticDestructors(EE); in llvm_ee_run_static_dtors()
[all …]
/openbsd-src/gnu/llvm/llvm/lib/ExecutionEngine/
H A DExecutionEngineBindings.cpp111 if (ExecutionEngine *EE = builder.create()){ in LLVMCreateExecutionEngineForModule() local
112 *OutEE = wrap(EE); in LLVMCreateExecutionEngineForModule()
216 void LLVMDisposeExecutionEngine(LLVMExecutionEngineRef EE) { in LLVMDisposeExecutionEngine() argument
217 delete unwrap(EE); in LLVMDisposeExecutionEngine()
220 void LLVMRunStaticConstructors(LLVMExecutionEngineRef EE) { in LLVMRunStaticConstructors() argument
221 unwrap(EE)->finalizeObject(); in LLVMRunStaticConstructors()
222 unwrap(EE)->runStaticConstructorsDestructors(false); in LLVMRunStaticConstructors()
225 void LLVMRunStaticDestructors(LLVMExecutionEngineRef EE) { in LLVMRunStaticDestructors() argument
226 unwrap(EE)->finalizeObject(); in LLVMRunStaticDestructors()
227 unwrap(EE)->runStaticConstructorsDestructors(true); in LLVMRunStaticDestructors()
[all …]
/openbsd-src/gnu/llvm/llvm/include/llvm-c/
H A DExecutionEngine.h112 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 …]
/openbsd-src/gnu/usr.bin/gcc/gcc/testsuite/g77.f-torture/compile/
H A D19990502-0.f29 SUBROUTINE DLASQ2( QQ, EE, TOL2, SMALL2 ) argument
31 DOUBLE PRECISION EE( * ), QQ( * ) local
38 IF( EE( N ).LE.MAX( QQ( N ), XINF, SMALL2 )*TOL2 ) THEN
40 IF( EE( N-2 ).LE.MAX( XINF, SMALL2,
41 $ ( QQ( N ) / ( QQ( N )+EE( N-1 ) ) )* QQ( N-1 ))*TOL2 ) THEN
42 QEMAX = MAX( QQ( N ), QQ( N-1 ), EE( N-1 ) )
/openbsd-src/gnu/usr.bin/gcc/gcc/testsuite/g++.old-deja/g++.pt/
H A Dttp22.C12 template<template<class> class DD,class EE> class C : DD<EE>
18 template<template<class> class DD,class EE> int C<DD,EE>::f() in f()
20 return DD<EE>::f(); in f()
/openbsd-src/gnu/llvm/llvm/lib/Support/
H A DSymbolRemappingReader.cpp60 using EE = ItaniumManglingCanonicalizer::EquivalenceError; in read() typedef
62 case EE::Success: in read()
65 case EE::ManglingAlreadyUsed: in read()
70 case EE::InvalidFirstMangling: in read()
74 case EE::InvalidSecondMangling: in read()
/openbsd-src/gnu/usr.bin/gcc/gcc/testsuite/g++.old-deja/g++.other/
H A Ddyncast1.C57 struct EE : CC, D {}; //Will search in reverse order. struct
69 EE ee; in test02()
70 if(dynamic_cast<EE*> ((A*)(D*)&ee)) error(15); in test02()
71 if(dynamic_cast<EE*> ((B*)(D*)&ee)) error(16); in test02()
72 if(&ee != dynamic_cast<EE*> ((C*)(D*)&ee)) error(17); //counter example in test02()
73 if(&ee != dynamic_cast<EE*> ((B*)(CC*)&ee)) error(18); //counter example in test02()
/openbsd-src/gnu/llvm/llvm/tools/lli/
H A Dlli.cpp382 static void addCygMingExtraModule(ExecutionEngine &EE, LLVMContext &Context, in addCygMingExtraModule() argument
407 EE.addModule(std::move(M)); in addCygMingExtraModule()
525 std::unique_ptr<ExecutionEngine> EE(builder.create()); in main() local
526 if (!EE) { in main()
538 EE->setObjectCache(CacheManager.get()); in main()
551 EE->addModule(std::move(XMod)); in main()
563 EE->addObjectFile(std::move(O)); in main()
587 EE->addArchive(std::move(OB)); in main()
593 addCygMingExtraModule(*EE, Context, Mod->getTargetTriple()); in main()
598 EE->RegisterJITEventListener( in main()
[all …]
/openbsd-src/gnu/llvm/llvm/include/llvm/Support/
H A DGraphWriter.h85 child_iterator EE = GTraits::child_end(Node); in getEdgeSourceLabels() local
91 for (unsigned i = 0; EI != EE && i != 64; ++EI, ++i) { in getEdgeSourceLabels()
109 if (EI != EE && hasEdgeSourceLabels) { in getEdgeSourceLabels()
191 child_iterator EE = GTraits::child_end(Node); in writeNode() local
192 for (; EI != EE && ColSpan != 64; ++EI, ++ColSpan) in writeNode()
197 if (EI != EE) in writeNode()
279 child_iterator EE = GTraits::child_end(Node); in writeNode() local
280 for (unsigned i = 0; EI != EE && i != 64; ++EI, ++i) in writeNode()
283 for (; EI != EE; ++EI) in writeNode()
/openbsd-src/gnu/usr.bin/perl/ext/XS-APItest/t/
H A Dcleanup.t44 format EE =
51 write(EE);
57 open EE, ">", \(my $ee);
60 close EE;
/openbsd-src/gnu/llvm/clang/tools/clang-fuzzer/handle-llvm/
H A Dhandle_llvm.cpp186 std::unique_ptr<ExecutionEngine> EE(builder.create()); in CreateAndRunJITFunc() local
187 if (!EE) in CreateAndRunJITFunc()
190 EE->finalizeObject(); in CreateAndRunJITFunc()
191 EE->runStaticConstructorsDestructors(false); in CreateAndRunJITFunc()
205 LLVMFunc f = reinterpret_cast<LLVMFunc>(EE->getPointerToFunction(EntryFunc)); in CreateAndRunJITFunc()
214 EE->runStaticConstructorsDestructors(true); in CreateAndRunJITFunc()
/openbsd-src/gnu/llvm/llvm/examples/ParallelJIT/
H A DParallelJIT.cpp132 ExecutionEngine* EE; member
253 GenericValue gv = p->EE->runFunction(p->F, Args); in callFunc()
271 ExecutionEngine* EE = EngineBuilder(std::move(Owner)).create(); in main() local
277 struct threadParams add1 = { EE, add1F, 1000 }; in main()
278 struct threadParams fib1 = { EE, fibF, 39 }; in main()
279 struct threadParams fib2 = { EE, fibF, 42 }; in main()
/openbsd-src/gnu/llvm/llvm/examples/HowToUseJIT/
H A DHowToUseJIT.cpp129 ExecutionEngine* EE = EngineBuilder(std::move(Owner)).create(); in main() local
137 GenericValue gv = EE->runFunction(FooF, noargs); in main()
141 delete EE; in main()
/openbsd-src/gnu/usr.bin/gcc/gcc/testsuite/g++.dg/template/
H A Dinstantiate4.C10 typedef E EE; typedef
13 void Baz(Foo<int>::EE x);
/openbsd-src/gnu/llvm/llvm/lib/Target/X86/
H A DX86PartialReduction.cpp354 static Value *matchAddReduction(const ExtractElementInst &EE, in matchAddReduction() argument
358 auto *Index = dyn_cast<ConstantInt>(EE.getIndexOperand()); in matchAddReduction()
362 const auto *BO = dyn_cast<BinaryOperator>(EE.getVectorOperand()); in matchAddReduction()
365 if (EE.getParent() != BO->getParent()) in matchAddReduction()
379 if (EE.getParent() != BO->getParent()) in matchAddReduction()
516 auto *EE = dyn_cast<ExtractElementInst>(&I); in runOnFunction() local
517 if (!EE) in runOnFunction()
523 Value *Root = matchAddReduction(*EE, ReduceInOneBB); in runOnFunction()
/openbsd-src/gnu/llvm/llvm/examples/Fibonacci/
H A Dfibonacci.cpp118 ExecutionEngine *EE = in main() local
123 if (!EE) { in main()
142 GenericValue GV = EE->runFunction(FibF, Args); in main()
/openbsd-src/gnu/llvm/llvm/lib/Target/XCore/
H A DXCoreFrameToArgsOffsetElim.cpp52 for (MachineBasicBlock::iterator MBBI = MBB.begin(), EE = MBB.end(); in runOnMachineFunction() local
53 MBBI != EE; ++MBBI) { in runOnMachineFunction()
/openbsd-src/regress/usr.bin/mandoc/mdoc/Rs/
H A Dbreak.out_utf89 SSEEEE AALLSSOO
14 SSEEEE _A_L_S_O
H A Dbreak.out_ascii9 SSEEEE AALLSSOO
14 SSEEEE _A_L_S_O
/openbsd-src/gnu/llvm/clang/include/clang/StaticAnalyzer/Core/PathSensitive/
H A DSimpleConstraintManager.h24 ExprEngine *EE; variable
29 : EE(exprengine), SVB(SB) {} in SimpleConstraintManager()
/openbsd-src/gnu/llvm/llvm/lib/Target/MSP430/
H A DMSP430BranchSelector.cpp120 for (auto MI = MBB->begin(), EE = MBB->end(); MI != EE; ++MI) { in expandBranches() local
146 if (MI->getOpcode() == MSP430::JCC && std::next(MI) != EE) { in expandBranches()
/openbsd-src/gnu/usr.bin/perl/pod/
H A Dperlpodspec.pod60 in Pod source, as opposed to "EE<lt>32>", which is a formatting
503 I<before> EE<lt>...> codes are resolved.
505 =item C<EE<lt>escapeE<gt>> -- a character escape
723 EE<lt>zslig>!") to STDERR (whether through printing to STDERR, or
742 In paragraphs where formatting codes (like EE<lt>...>, BE<lt>...>)
804 an approximate line number ("Nested EE<lt>>'s in Paragraph #52, near
806 number ("Nested EE<lt>>'s in Paragraph #52 of Thing/Foo.pm!"). Where
808 accompanied by an excerpt from the paragraph ("Nested EE<lt>>'s in
853 number in EE<lt>n> codes, or by an equivalent mnemonic, as in
854 EE<l
[all...]
/openbsd-src/gnu/usr.bin/perl/ext/Pod-Html/corpus/
H A Dperlpodspec-copy.pod64 in Pod source, as opposed to "EE<lt>32>", which is a formatting
483 I<before> EE<lt>...> codes are resolved.
485 =item C<EE<lt>escapeE<gt>> -- a character escape
695 EE<lt>zslig>!") to STDERR (whether through printing to STDERR, or
714 In paragraphs where formatting codes (like EE<lt>...>, BE<lt>...>)
776 an approximate line number ("Nested EE<lt>>'s in Paragraph #52, near
778 number ("Nested EE<lt>>'s in Paragraph #52 of Thing/Foo.pm!"). Where
780 accompanied by an excerpt from the paragraph ("Nested EE<lt>>'s in
825 number in EE<lt>n> codes, or by an equivalent mnemonic, as in
826 EE<lt>eacute> which is exactly equivalent to EE<lt>233>.
[all …]
/openbsd-src/gnu/llvm/llvm/examples/Kaleidoscope/MCJIT/complete/
H A Dtoy.cpp940 ExecutionEngine *EE = EngineBuilder(M) in compileModule() local
944 if (!EE) { in compileModule()
950 EE->setObjectCache(&OurObjectCache); in compileModule()
963 FPM->add(new DataLayout(*EE->getDataLayout())); in compileModule()
990 EE->finalizeObject(); in compileModule()
993 EngineMap[M] = EE; in compileModule()
995 return EE; in compileModule()
1013 ExecutionEngine *EE = compileModule(*it); in getPointerToFunction() local
1014 void *P = EE->getPointerToFunction(F); in getPointerToFunction()
1045 ExecutionEngine *EE = compileModule(*it); in getPointerToNamedFunction() local
[all …]
/openbsd-src/gnu/gcc/libstdc++-v3/config/abi/pre/
H A Dgnu.ver224 _ZNSt15basic_stringbufI[cw]St11char_traitsI[cw]ESaI[cw]EE[CD]*;
225 _ZNSt15basic_stringbufI[cw]St11char_traitsI[cw]ESaI[cw]EE[0-9][a-r]*;
226 _ZNSt15basic_stringbufI[cw]St11char_traitsI[cw]ESaI[cw]EE[0-9]seek*;
227 _ZNSt15basic_stringbufI[cw]St11char_traitsI[cw]ESaI[cw]EE[0-9]set*;
232 _ZNSt15basic_stringbufI[cw]St11char_traitsI[cw]ESaI[cw]EE[0-9][t-z]*;
233 _ZNSt15basic_stringbufI[cw]St11char_traitsI[cw]ESaI[cw]EE[0-9]_M_[a-z]*;
234 _ZNSt15basic_stringbufI[cw]St11char_traitsI[cw]ESaI[cw]EE[0-9][0-9]_M_[a-z]*;
285 _ZSt2wsI[cw]St11char_traitsI[cw]EE*;
677 _ZSt21__copy_streambufs_eofI[cw]St11char_traitsI[cw]EE[il]PSt15basic_streambuf*;

12345678