| /openbsd-src/gnu/llvm/llvm/bindings/ocaml/executionengine/ |
| H A D | executionengine_ocaml.c | 64 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 D | ExecutionEngineBindings.cpp | 111 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 D | 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 …]
|
| /openbsd-src/gnu/usr.bin/gcc/gcc/testsuite/g77.f-torture/compile/ |
| H A D | 19990502-0.f | 29 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 D | ttp22.C | 12 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 D | SymbolRemappingReader.cpp | 60 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 D | dyncast1.C | 57 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 D | lli.cpp | 382 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 D | GraphWriter.h | 85 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 D | cleanup.t | 44 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 D | handle_llvm.cpp | 186 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 D | ParallelJIT.cpp | 132 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 D | HowToUseJIT.cpp | 129 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 D | instantiate4.C | 10 typedef E EE; typedef 13 void Baz(Foo<int>::EE x);
|
| /openbsd-src/gnu/llvm/llvm/lib/Target/X86/ |
| H A D | X86PartialReduction.cpp | 354 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 D | fibonacci.cpp | 118 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 D | XCoreFrameToArgsOffsetElim.cpp | 52 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 D | break.out_utf8 | 9 SSEEEE AALLSSOO 14 SSEEEE _A_L_S_O
|
| H A D | break.out_ascii | 9 SSEEEE AALLSSOO 14 SSEEEE _A_L_S_O
|
| /openbsd-src/gnu/llvm/clang/include/clang/StaticAnalyzer/Core/PathSensitive/ |
| H A D | SimpleConstraintManager.h | 24 ExprEngine *EE; variable 29 : EE(exprengine), SVB(SB) {} in SimpleConstraintManager()
|
| /openbsd-src/gnu/llvm/llvm/lib/Target/MSP430/ |
| H A D | MSP430BranchSelector.cpp | 120 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 D | perlpodspec.pod | 60 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 D | perlpodspec-copy.pod | 64 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 D | toy.cpp | 940 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 D | gnu.ver | 224 _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*;
|