| /llvm-project-15.0.7/llvm/bindings/go/llvm/ |
| H A D | executionengine.go | 95 ee.C = nil 106 ee.C = nil 123 ee.C = nil 130 func (ee ExecutionEngine) Dispose() { C.LLVMDisposeExecutionEngine(ee.C) } 131 func (ee ExecutionEngine) RunStaticConstructors() { C.LLVMRunStaticConstructors(ee.C) } 132 func (ee ExecutionEngine) RunStaticDestructors() { C.LLVMRunStaticDestructors(ee.C) } 140 g.C = C.LLVMRunFunction(ee.C, f.C, 146 C.LLVMFreeMachineCodeForFunction(ee.C, f.C) 148 func (ee ExecutionEngine) AddModule(m Module) { C.LLVMAddModule(ee.C, m.C) } 152 C.LLVMRemoveModule(ee.C, m.C, &modtmp, nil) [all …]
|
| /llvm-project-15.0.7/llvm/bindings/ocaml/executionengine/ |
| H A D | llvm_executionengine.mli | 54 (** [add_module m ee] adds the module [m] to the execution engine [ee]. *) 58 [ee]. Raises [Error msg] if an error occurs. *) 62 the execution engine [ee]. *) 66 the execution engine [ee]. *) 69 (** [data_layout ee] is the data layout of the execution engine [ee]. *) 72 (** [add_global_mapping gv ptr ee] tells the execution engine [ee] that 74 [gv] and [ee]. 78 (** [get_global_value_address id typ ee] returns a pointer to the 80 value, and which will be live as long as [id] and [ee] 86 (** [get_function_address fn typ ee] returns a pointer to the function [all …]
|
| H A D | llvm_executionengine.ml | 52 let add_global_mapping llval ptr ee = 53 add_global_mapping_ llval (Ctypes.raw_address_of_ptr (Ctypes.to_voidp ptr)) ee 55 let get_global_value_address name typ ee = 56 let vptr = get_global_value_address_ name ee in 62 let get_function_address name typ ee = 63 let fptr = get_function_address_ name ee in
|
| /llvm-project-15.0.7/llvm/test/Bindings/OCaml/ |
| H A D | executionengine.ml | 51 let ee = create m in 61 add_module m2 ee; 68 add_global_mapping g cg ee; 71 let cg' = get_pointer_to_global g (ptr void) ee in 78 run_static_ctors ee; 81 let varh = get_global_value_address "globvar" int32_t ee in 86 let cplus = get_function_address "plus" cplusty ee in 95 remove_module m2 ee; 99 run_static_dtors ee; 102 let dl = data_layout ee in [all …]
|
| /llvm-project-15.0.7/llvm/test/Demangle/ |
| H A D | ms-cxx17-noexcept.test | 21 ?ee@?$e@$$A6AXXZ@@EEAAXXZ 22 ; CHECK: private: virtual void __cdecl e<void __cdecl(void)>::ee(void) 24 ?ee@?$e@$$A6AXX_E@@EEAAXXZ 25 ; CHECK: private: virtual void __cdecl e<void __cdecl(void) noexcept>::ee(void)
|
| /llvm-project-15.0.7/flang/test/Semantics/OpenMP/ |
| H A D | omp-workshare04.f90 | 10 real aa(n,n), bb(n,n), cc(n,n), dd(n,n), ee(n,n), ff(n,n) local 25 ee = ff 36 cc = dd + ee
|
| H A D | omp-workshare02.f90 | 17 real aa(n), bb(n), cc(n), dd(n), ee(n), ff(n) local 23 ee = ff 40 cc = ee + my_func()
|
| H A D | omp-workshare01.f90 | 8 real aa(n,n), bb(n,n), cc(n,n), dd(n,n), ee(n,n), ff(n,n) local 30 ee = ff
|
| H A D | omp-workshare05.f90 | 31 real :: aa(n,n), bb(n,n), cc(n,n), dd(n,n), ee(n,n), ff(n,n) variable 39 ee = ff
|
| /llvm-project-15.0.7/clang/test/Sema/ |
| H A D | conditional-expr.c | 31 enum {xxx,yyy,zzz} e, *ee; in foo() local 33 ee = ee ? &x : ee ? &i : &e; // expected-warning {{pointer type mismatch}} in foo()
|
| /llvm-project-15.0.7/llvm/test/Transforms/EntryExitInstrumenter/ |
| H A D | mcount.ll | 1 ; RUN: opt -passes="function(ee-instrument),cgscc(inline),function(ee-instrument<post-inline>)" -S … 4 …UN: opt -passes="function(ee-instrument),function(ee-instrument),cgscc(inline),function(ee-instrum…
|
| H A D | debug-info.ll | 1 ; RUN: opt -passes="function(ee-instrument),cgscc(inline),function(ee-instrument<post-inline>)" -S …
|
| /llvm-project-15.0.7/flang/test/Semantics/OpenACC/ |
| H A D | acc-declare-validity.f90 | 41 function fct1(ee, ff, gg, hh, ii) 43 real(8), intent(in) :: ee(:) local
|
| /llvm-project-15.0.7/llvm/test/tools/llvm-objdump/ELF/ARM/ |
| H A D | v7m-neg-subfeatures.s | 11 @CHECK-NOT: 00 ee 81 0a vmla.f32 s0, s1, s2 18 @CHECK-NOT: b6 ee 00 0a vmov.f32 s0, #5.000000e-01
|
| H A D | v7a-neg-subfeature.s | 9 @CHECK-NOT: 81 0a 00 ee vmla.f32 s0, s1, s2 16 @CHECK-NOT: 00 0a b6 ee vmov.f32 s0, #5.000000e-01
|
| /llvm-project-15.0.7/llvm/examples/BrainF/ |
| H A D | BrainFDriver.cpp | 163 ExecutionEngine *ee = EngineBuilder(std::move(Mod)).create(); in main() local 164 if (!ee) { in main() 170 GenericValue gv = ee->runFunction(brainf_func, args); in main()
|
| /llvm-project-15.0.7/clang/test/Rewriter/ |
| H A D | rewrite-modern-private-ivars.mm | 34 double ee; 47 ee = 0.0;
|
| /llvm-project-15.0.7/llvm/test/CodeGen/PowerPC/ |
| H A D | mcount-insertion.ll | 1 ; RUN: opt -S -passes='function(ee-instrument),cgscc(inline),function(ee-instrument<post-inline>)' …
|
| /llvm-project-15.0.7/clang/test/OpenMP/ |
| H A D | parallel_sections_ast_print.cpp | 119 Enum ee; in main() local 129 …fault(none), private(argc, b) firstprivate(argv) if (argc > 0) num_threads(ee) copyin(a) proc_bind… in main()
|
| /llvm-project-15.0.7/libcxx/test/std/ranges/range.access/ |
| H A D | begin.pass.cpp | 275 const BeginFunctionWithDataMember ee{}; in testBeginFunction() local 277 assert(std::ranges::begin(ee) == &ee.x); in testBeginFunction() 279 assert(std::ranges::cbegin(ee) == &ee.x); in testBeginFunction()
|
| /llvm-project-15.0.7/llvm/test/CodeGen/X86/ |
| H A D | sink-blockfreq.ll | 22 %ee = phi i32 [ 0, %entry ], [ %inc, %F ] 23 %xx = sub i32 %a, %ee
|
| H A D | win-smallparams.ll | 21 %ee = zext i8 %e to i32 26 %t3 = add i32 %t2, %ee
|
| /llvm-project-15.0.7/llvm/test/tools/llvm-objcopy/MachO/ |
| H A D | dump-section.test | 16 # DATA-CONTENT: 0000000 ee ff ee ff
|
| /llvm-project-15.0.7/flang/test/Lower/ |
| H A D | alternate-return.f90 | 17 call ee(2, *3)
|
| /llvm-project-15.0.7/flang/test/Semantics/ |
| H A D | resolve41.f90 | 18 integer :: ee = 2_e variable
|