1 /* Internals of libgccjit: implementation of gcc_jit_result
2 Copyright (C) 2013-2024 Free Software Foundation, Inc.
3 Contributed by David Malcolm <dmalcolm@redhat.com>.
5 This file is part of GCC.
7 GCC is free software; you can redistribute it and/or modify it
8 under the terms of the GNU General Public License as published by
9 the Free Software Foundation; either version 3, or (at your option)
12 GCC is distributed in the hope that it will be useful, but
13 WITHOUT ANY WARRANTY; without even the implied warranty of
14 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
15 General Public License for more details.
17 You should have received a copy of the GNU General Public License
18 along with GCC; see the file COPYING3. If not see
19 <http://www.gnu.org/licenses/>. */
23 #include "coretypes.h"
25 #include "jit-common.h"
26 #include "jit-logging.h"
27 #include "jit-result.h"
28 #include "jit-tempdir.h"
37 /* Constructor for gcc::jit::result. */
40 result(logger
*logger
, handle dso_handle
, tempdir
*tempdir_
) :
42 m_dso_handle (dso_handle
),
45 JIT_LOG_SCOPE (get_logger ());
48 /* gcc::jit::result's destructor.
50 Called implicitly by gcc_jit_result_release. */
54 JIT_LOG_SCOPE (get_logger ());
57 FreeLibrary(m_dso_handle
);
59 dlclose (m_dso_handle
);
61 /* Responsibility for cleaning up the tempdir (including "fake.so" within
62 the filesystem) might have been handed to us by the playback::context,
63 so that the cleanup can be delayed (see PR jit/64206).
65 If so, clean it up now. */
69 /* Attempt to locate the given function by name within the
70 playback::result, using dlsym.
72 Implements the post-error-checking part of
73 gcc_jit_result_get_code. */
77 get_code (const char *funcname
)
79 JIT_LOG_SCOPE (get_logger ());
84 /* Clear any existing error. */
87 code
= (void *)GetProcAddress(m_dso_handle
, funcname
);
88 if (GetLastError() != 0) {
93 /* Clear any existing error. */
96 code
= dlsym (m_dso_handle
, funcname
);
98 if ((error
= dlerror()) != NULL
) {
99 fprintf(stderr
, "%s\n", error
);
106 /* Attempt to locate the given global by name within the
107 playback::result, using dlsym.
109 Implements the post-error-checking part of
110 gcc_jit_result_get_global. */
114 get_global (const char *name
)
116 JIT_LOG_SCOPE (get_logger ());
121 /* Clear any existing error. */
124 global
= (void *)GetProcAddress(m_dso_handle
, name
);
125 if (GetLastError() != 0) {
130 /* Clear any existing error. */
133 global
= dlsym (m_dso_handle
, name
);
135 if ((error
= dlerror()) != NULL
) {
136 fprintf(stderr
, "%s\n", error
);
143 } // namespace gcc::jit