Home
last modified time | relevance | path

Searched refs:ee (Results 1 – 25 of 68) sorted by relevance

123

/llvm-project-15.0.7/llvm/bindings/go/llvm/
H A Dexecutionengine.go95 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 Dllvm_executionengine.mli54 (** [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 Dllvm_executionengine.ml52 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 Dexecutionengine.ml51 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 Dms-cxx17-noexcept.test21 ?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 Domp-workshare04.f9010 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 Domp-workshare02.f9017 real aa(n), bb(n), cc(n), dd(n), ee(n), ff(n) local
23 ee = ff
40 cc = ee + my_func()
H A Domp-workshare01.f908 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 Domp-workshare05.f9031 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 Dconditional-expr.c31 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 Dmcount.ll1 ; 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 Ddebug-info.ll1 ; 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 Dacc-declare-validity.f9041 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 Dv7m-neg-subfeatures.s11 @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 Dv7a-neg-subfeature.s9 @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 DBrainFDriver.cpp163 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 Drewrite-modern-private-ivars.mm34 double ee;
47 ee = 0.0;
/llvm-project-15.0.7/llvm/test/CodeGen/PowerPC/
H A Dmcount-insertion.ll1 ; RUN: opt -S -passes='function(ee-instrument),cgscc(inline),function(ee-instrument<post-inline>)' …
/llvm-project-15.0.7/clang/test/OpenMP/
H A Dparallel_sections_ast_print.cpp119 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 Dbegin.pass.cpp275 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 Dsink-blockfreq.ll22 %ee = phi i32 [ 0, %entry ], [ %inc, %F ]
23 %xx = sub i32 %a, %ee
H A Dwin-smallparams.ll21 %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 Ddump-section.test16 # DATA-CONTENT: 0000000 ee ff ee ff
/llvm-project-15.0.7/flang/test/Lower/
H A Dalternate-return.f9017 call ee(2, *3)
/llvm-project-15.0.7/flang/test/Semantics/
H A Dresolve41.f9018 integer :: ee = 2_e variable

123