Fix gnat.dg/opt39.adb on hppa.
[official-gcc.git] / gcc / jit / jit-result.cc
blobe00f4d861d861f73ce15a2adfcd663dc3a7d4b79
1 /* Internals of libgccjit: implementation of gcc_jit_result
2 Copyright (C) 2013-2023 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)
10 any later version.
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/>. */
21 #include "config.h"
22 #include "system.h"
23 #include "coretypes.h"
25 #include "jit-common.h"
26 #include "jit-logging.h"
27 #include "jit-result.h"
28 #include "jit-tempdir.h"
30 #ifdef _WIN32
31 #include "jit-w32.h"
32 #endif
34 namespace gcc {
35 namespace jit {
37 /* Constructor for gcc::jit::result. */
39 result::
40 result(logger *logger, handle dso_handle, tempdir *tempdir_) :
41 log_user (logger),
42 m_dso_handle (dso_handle),
43 m_tempdir (tempdir_)
45 JIT_LOG_SCOPE (get_logger ());
48 /* gcc::jit::result's destructor.
50 Called implicitly by gcc_jit_result_release. */
52 result::~result()
54 JIT_LOG_SCOPE (get_logger ());
56 #ifdef _WIN32
57 FreeLibrary(m_dso_handle);
58 #else
59 dlclose (m_dso_handle);
60 #endif
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. */
66 delete m_tempdir;
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. */
75 void *
76 result::
77 get_code (const char *funcname)
79 JIT_LOG_SCOPE (get_logger ());
81 void *code;
83 #ifdef _WIN32
84 /* Clear any existing error. */
85 SetLastError(0);
87 code = (void *)GetProcAddress(m_dso_handle, funcname);
88 if (GetLastError() != 0) {
89 print_last_error ();
91 #else
92 const char *error;
93 /* Clear any existing error. */
94 dlerror ();
96 code = dlsym (m_dso_handle, funcname);
98 if ((error = dlerror()) != NULL) {
99 fprintf(stderr, "%s\n", error);
101 #endif
103 return code;
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. */
112 void *
113 result::
114 get_global (const char *name)
116 JIT_LOG_SCOPE (get_logger ());
118 void *global;
120 #ifdef _WIN32
121 /* Clear any existing error. */
122 SetLastError(0);
124 global = (void *)GetProcAddress(m_dso_handle, name);
125 if (GetLastError() != 0) {
126 print_last_error ();
128 #else
129 const char *error;
130 /* Clear any existing error. */
131 dlerror ();
133 global = dlsym (m_dso_handle, name);
135 if ((error = dlerror()) != NULL) {
136 fprintf(stderr, "%s\n", error);
138 #endif
140 return global;
143 } // namespace gcc::jit
145 } // namespace gcc