HPCToolkit
RelocateCubin.hpp
Go to the documentation of this file.
1 // * BeginRiceCopyright *****************************************************
2 //
3 // $HeadURL$
4 // $Id$
5 //
6 // --------------------------------------------------------------------------
7 // Part of HPCToolkit (hpctoolkit.org)
8 //
9 // Information about sources of support for research and development of
10 // HPCToolkit is at 'hpctoolkit.org' and in 'README.Acknowledgments'.
11 // --------------------------------------------------------------------------
12 //
13 // Copyright ((c)) 2002-2019, Rice University
14 // All rights reserved.
15 //
16 // Redistribution and use in source and binary forms, with or without
17 // modification, are permitted provided that the following conditions are
18 // met:
19 //
20 // * Redistributions of source code must retain the above copyright
21 // notice, this list of conditions and the following disclaimer.
22 //
23 // * Redistributions in binary form must reproduce the above copyright
24 // notice, this list of conditions and the following disclaimer in the
25 // documentation and/or other materials provided with the distribution.
26 //
27 // * Neither the name of Rice University (RICE) nor the names of its
28 // contributors may be used to endorse or promote products derived from
29 // this software without specific prior written permission.
30 //
31 // This software is provided by RICE and contributors "as is" and any
32 // express or implied warranties, including, but not limited to, the
33 // implied warranties of merchantability and fitness for a particular
34 // purpose are disclaimed. In no event shall RICE or contributors be
35 // liable for any direct, indirect, incidental, special, exemplary, or
36 // consequential damages (including, but not limited to, procurement of
37 // substitute goods or services; loss of use, data, or profits; or
38 // business interruption) however caused and on any theory of liability,
39 // whether in contract, strict liability, or tort (including negligence
40 // or otherwise) arising in any way out of the use of this software, even
41 // if advised of the possibility of such damage.
42 //
43 // ******************************************************* EndRiceCopyright *
44 
45 //***************************************************************************
46 //
47 // File: relocate_cubin.hpp
48 //
49 // Purpose:
50 // Interface definition for in-memory cubin relocation.
51 //
52 // Description:
53 // The associated implementation performs in-memory relocation of a cubin so
54 // that all text segments and functions are non-overlapping. Following
55 // relocation
56 // - each text segment begins at its offset in the segment
57 // - each function, which is in a unique text segment, has its symbol
58 // adjusted to point to the new position of the function in its relocated
59 // text segment
60 // - addresses in line map entries are adjusted to account for the new
61 // offsets of the instructions to which they refer
62 //
63 //***************************************************************************
64 
65 #ifndef __RelocateCubin_hpp__
66 #define __RelocateCubin_hpp__
67 
68 bool
70 (
71  char *cubin_ptr,
72  Elf *cubin_elf
73 );
74 
75 #endif
bool relocateCubin(char *cubin_ptr, Elf *cubin_elf)