blob: 7ba30244a2138084fcdeb360810ec6d9bd7f3aa3 [file] [log] [blame]
Gabor Greifa99be512007-07-05 17:07:56 +00001//===-- lib/Archive/ArchiveInternals.h -------------------------*- C++ -*-===//
Misha Brukman2b37d7c2005-04-21 21:13:18 +00002//
Reid Spencer362cbf02004-11-06 08:51:45 +00003// The LLVM Compiler Infrastructure
4//
Chris Lattner4ee451d2007-12-29 20:36:04 +00005// This file is distributed under the University of Illinois Open Source
6// License. See LICENSE.TXT for details.
Misha Brukman2b37d7c2005-04-21 21:13:18 +00007//
Reid Spencer362cbf02004-11-06 08:51:45 +00008//===----------------------------------------------------------------------===//
9//
10// Internal implementation header for LLVM Archive files.
11//
12//===----------------------------------------------------------------------===//
13
Gabor Greifa99be512007-07-05 17:07:56 +000014#ifndef LIB_ARCHIVE_ARCHIVEINTERNALS_H
15#define LIB_ARCHIVE_ARCHIVEINTERNALS_H
Reid Spencer362cbf02004-11-06 08:51:45 +000016
Chris Lattnerc1d56242007-05-06 09:28:33 +000017#include "llvm/Bitcode/Archive.h"
Reid Spencer362cbf02004-11-06 08:51:45 +000018#include "llvm/System/TimeValue.h"
Reid Spencerbc9fc842004-11-14 21:57:46 +000019#include "llvm/ADT/StringExtras.h"
Reid Spencer362cbf02004-11-06 08:51:45 +000020
Anton Korobeynikovae9f3a32008-02-20 11:08:44 +000021#include <cstring>
22
Misha Brukman2b37d7c2005-04-21 21:13:18 +000023#define ARFILE_MAGIC "!<arch>\n" ///< magic string
24#define ARFILE_MAGIC_LEN (sizeof(ARFILE_MAGIC)-1) ///< length of magic string
Reid Spencer9a29db42004-11-20 07:29:40 +000025#define ARFILE_SVR4_SYMTAB_NAME "/ " ///< SVR4 symtab entry name
26#define ARFILE_LLVM_SYMTAB_NAME "#_LLVM_SYM_TAB_#" ///< LLVM symtab entry name
27#define ARFILE_BSD4_SYMTAB_NAME "__.SYMDEF SORTED" ///< BSD4 symtab entry name
28#define ARFILE_STRTAB_NAME "// " ///< Name of string table
Reid Spencerbc9fc842004-11-14 21:57:46 +000029#define ARFILE_PAD "\n" ///< inter-file align padding
30#define ARFILE_MEMBER_MAGIC "`\n" ///< fmag field magic #
Reid Spencer362cbf02004-11-06 08:51:45 +000031
32namespace llvm {
33
Gabor Greifa99be512007-07-05 17:07:56 +000034 /// The ArchiveMemberHeader structure is used internally for bitcode
Misha Brukman2b37d7c2005-04-21 21:13:18 +000035 /// archives.
36 /// The header precedes each file member in the archive. This structure is
Reid Spencer362cbf02004-11-06 08:51:45 +000037 /// defined using character arrays for direct and correct interpretation
38 /// regardless of the endianess of the machine that produced it.
39 /// @brief Archive File Member Header
40 class ArchiveMemberHeader {
Reid Spencerbc9fc842004-11-14 21:57:46 +000041 /// @name Data
42 /// @{
43 public:
Misha Brukman2b37d7c2005-04-21 21:13:18 +000044 char name[16]; ///< Name of the file member.
Reid Spencerbc9fc842004-11-14 21:57:46 +000045 char date[12]; ///< File date, decimal seconds since Epoch
46 char uid[6]; ///< user id in ASCII decimal
47 char gid[6]; ///< group id in ASCII decimal
48 char mode[8]; ///< file mode in ASCII octal
49 char size[10]; ///< file size in ASCII decimal
50 char fmag[2]; ///< Always contains ARFILE_MAGIC_TERMINATOR
51
52 /// @}
53 /// @name Methods
54 /// @{
Reid Spencer362cbf02004-11-06 08:51:45 +000055 public:
56 void init() {
57 memset(name,' ',16);
58 memset(date,' ',12);
59 memset(uid,' ',6);
60 memset(gid,' ',6);
61 memset(mode,' ',8);
62 memset(size,' ',10);
63 fmag[0] = '`';
64 fmag[1] = '\n';
65 }
Reid Spencer362cbf02004-11-06 08:51:45 +000066
Reid Spencerbc9fc842004-11-14 21:57:46 +000067 bool checkSignature() {
68 return 0 == memcmp(fmag, ARFILE_MEMBER_MAGIC,2);
Reid Spencer362cbf02004-11-06 08:51:45 +000069 }
Reid Spencer362cbf02004-11-06 08:51:45 +000070 };
Chris Lattnerf36c7b82007-02-07 23:53:17 +000071
Gabor Greifa99be512007-07-05 17:07:56 +000072 // Get just the externally visible defined symbols from the bitcode
73 bool GetBitcodeSymbols(const sys::Path& fName,
Chris Lattnerf36c7b82007-02-07 23:53:17 +000074 std::vector<std::string>& symbols,
Chris Lattnerc1d56242007-05-06 09:28:33 +000075 std::string* ErrMsg);
Chris Lattnerf36c7b82007-02-07 23:53:17 +000076
Gabor Greifa99be512007-07-05 17:07:56 +000077 ModuleProvider* GetBitcodeSymbols(const unsigned char*Buffer,unsigned Length,
78 const std::string& ModuleID,
79 std::vector<std::string>& symbols,
80 std::string* ErrMsg);
Reid Spencer362cbf02004-11-06 08:51:45 +000081}
82
83#endif
84
85// vim: sw=2 ai