New jit API entrypoint: gcc_jit_context_set_logfile
[official-gcc.git] / gcc / jit / jit-result.c
blob67699e0b19809e829ab5d1ce3b2b6126469ec02a
1 /* Internals of libgccjit: implementation of gcc_jit_result
2 Copyright (C) 2013-2015 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"
29 namespace gcc {
30 namespace jit {
32 /* Constructor for gcc::jit::result. */
34 result::
35 result(logger *logger, void *dso_handle) :
36 log_user (logger),
37 m_dso_handle (dso_handle)
39 JIT_LOG_SCOPE (get_logger ());
42 /* gcc::jit::result's destructor.
44 Called implicitly by gcc_jit_result_release. */
46 result::~result()
48 JIT_LOG_SCOPE (get_logger ());
50 dlclose (m_dso_handle);
53 /* Attempt to locate the given function by name within the
54 playback::result, using dlsym.
56 Implements the post-error-checking part of
57 gcc_jit_result_get_code. */
59 void *
60 result::
61 get_code (const char *funcname)
63 JIT_LOG_SCOPE (get_logger ());
65 void *code;
66 const char *error;
68 /* Clear any existing error. */
69 dlerror ();
71 code = dlsym (m_dso_handle, funcname);
73 if ((error = dlerror()) != NULL) {
74 fprintf(stderr, "%s\n", error);
77 return code;
80 } // namespace gcc::jit
82 } // namespace gcc