library table is no longer needed --HG-- extra : convert_revision : svn%3A39bc706e-5318-0410-9160-8a85361fbb7c/trunk%40387
		
			
				
	
	
		
			206 lines
		
	
	
		
			6.5 KiB
		
	
	
	
		
			C
		
	
	
	
	
	
			
		
		
	
	
			206 lines
		
	
	
		
			6.5 KiB
		
	
	
	
		
			C
		
	
	
	
	
	
| /**
 | |
|  * vim: set ts=4 :
 | |
|  * ================================================================
 | |
|  * SourcePawn, Copyright (C) 2004-2007 AlliedModders LLC. 
 | |
|  * All rights reserved.
 | |
|  * ================================================================
 | |
|  *
 | |
|  *  This file is part of the SourceMod/SourcePawn SDK.  This file may only be 
 | |
|  * used or modified under the Terms and Conditions of its License Agreement, 
 | |
|  * which is found in public/licenses/LICENSE.txt.  As of this notice, derivative 
 | |
|  * works must be licensed under the GNU General Public License (version 2 or 
 | |
|  * greater).  A copy of the GPL is included under public/licenses/GPL.txt.
 | |
|  * 
 | |
|  * To view the latest information, see: http://www.sourcemod.net/license.php
 | |
|  *
 | |
|  * Version: $Id$
 | |
|  */
 | |
| 
 | |
| #ifndef _INCLUDE_SPFILE_HEADERS_H
 | |
| #define _INCLUDE_SPFILE_HEADERS_H
 | |
| 
 | |
| /** 
 | |
|  * @file sp_file_headers.h
 | |
|  * @brief Defines the structure present in a SourcePawn compiled binary.
 | |
|  *
 | |
|  * Note: These structures should be 1-byte packed to match the file format.
 | |
|  */
 | |
| 
 | |
| #include <stddef.h>
 | |
| #if defined __GNUC__ || defined HAVE_STDINT_
 | |
| #include <stdint.h>
 | |
| #else
 | |
|  #if !defined HAVE_STDINT_H
 | |
| 	typedef unsigned __int64	uint64_t;		/**< 64bit unsigned integer */
 | |
| 	typedef __int64				int64_t;		/**< 64bit signed integer */
 | |
| 	typedef unsigned __int32	uint32_t;		/**< 32bit unsigned integer */
 | |
| 	typedef __int32				int32_t;		/**< 32bit signed integer */
 | |
| 	typedef unsigned __int16	uint16_t;		/**< 16bit unsigned integer */
 | |
| 	typedef __int16				int16_t;		/**< 16bit signed integer */
 | |
| 	typedef unsigned __int8		uint8_t;		/**< 8bit unsigned integer */
 | |
| 	typedef __int8				int8_t;			/**< 8bit signed integer */
 | |
|  #define HAVE_STDINT_H
 | |
|  #endif
 | |
| #endif
 | |
| 
 | |
| #define SPFILE_MAGIC	0x53504646		/**< Source Pawn File Format (SPFF) */
 | |
| #define SPFILE_VERSION	0x0101			/**< Uncompressed bytecode */
 | |
| 
 | |
| //:TODO: better compiler/nix support
 | |
| #if defined __linux__
 | |
| 	#pragma pack(1)         /* structures must be packed (byte-aligned) */
 | |
| #else
 | |
| 	#pragma pack(push)
 | |
| 	#pragma pack(1)         /* structures must be packed (byte-aligned) */
 | |
| #endif
 | |
| 
 | |
| #define SPFILE_COMPRESSION_NONE		0		/**< No compression in file */
 | |
| #define SPFILE_COMPRESSION_GZ		1		/**< GZ compression */
 | |
| 
 | |
| /**
 | |
|  * @brief File section header format.
 | |
|  */
 | |
| typedef struct sp_file_section_s
 | |
| {
 | |
| 	uint32_t	nameoffs;	/**< Relative offset into global string table */
 | |
| 	uint32_t	dataoffs;	/**< Offset into the data section of the file */
 | |
| 	uint32_t	size;		/**< Size of the section's entry in the data section */
 | |
| } sp_file_section_t;
 | |
| 
 | |
| /**
 | |
|  * @brief File header format.  If compression is 0, then disksize may be 0 
 | |
|  * to mean that only the imagesize is needed.
 | |
|  */
 | |
| typedef struct sp_file_hdr_s
 | |
| {
 | |
| 	uint32_t	magic;		/**< Magic number */
 | |
| 	uint16_t	version;	/**< Version code */
 | |
| 	uint8_t		compression;/**< Compression algorithm */
 | |
| 	uint32_t	disksize;	/**< Size on disk */
 | |
| 	uint32_t	imagesize;	/**< Size in memory */
 | |
| 	uint8_t		sections;	/**< Number of sections */
 | |
| 	uint32_t	stringtab;	/**< Offset to string table */
 | |
| 	uint32_t	dataoffs;	/**< Offset to file proper (any compression starts here) */
 | |
| } sp_file_hdr_t;
 | |
| 
 | |
| #define SP_FLAG_DEBUG	(1<<0)		/**< Debug information is present in the file */
 | |
| 
 | |
| /**
 | |
|  * @brief File-encoded format of the ".code" section.
 | |
|  */
 | |
| typedef struct sp_file_code_s
 | |
| {
 | |
| 	uint32_t	codesize;		/**< Codesize in bytes */
 | |
| 	uint8_t		cellsize;		/**< Cellsize in bytes */
 | |
| 	uint8_t		codeversion;	/**< Version of opcodes supported */
 | |
| 	uint16_t	flags;			/**< Flags */
 | |
| 	uint32_t	main;			/**< Address to "main," if any */
 | |
| 	uint32_t	code;			/**< Relative offset to code */
 | |
| } sp_file_code_t;
 | |
| 
 | |
| /** 
 | |
|  * @brief File-encoded format of the ".data" section.
 | |
|  */
 | |
| typedef struct sp_file_data_s
 | |
| {
 | |
| 	uint32_t	datasize;		/**< Size of data section in memory */
 | |
| 	uint32_t	memsize;		/**< Total mem required (includes data) */
 | |
| 	uint32_t	data;			/**< File offset to data (helper) */
 | |
| } sp_file_data_t;
 | |
| 
 | |
| /**
 | |
|  * @brief File-encoded format of the ".publics" section.
 | |
|  */
 | |
| typedef struct sp_file_publics_s
 | |
| {
 | |
| 	uint32_t	address;		/**< Address relative to code section */
 | |
| 	uint32_t	name;			/**< Index into nametable */
 | |
| } sp_file_publics_t;
 | |
| 
 | |
| /**
 | |
|  * @brief File-encoded format of the ".natives" section.
 | |
|  */
 | |
| typedef struct sp_file_natives_s
 | |
| {
 | |
| 	uint32_t	name;			/**< Index into nametable */
 | |
| } sp_file_natives_t;
 | |
| 
 | |
| /**
 | |
|  * @brief File-encoded format of the ".pubvars" section.
 | |
|  */
 | |
| typedef struct sp_file_pubvars_s
 | |
| {
 | |
| 	uint32_t	address;		/**< Address relative to the DAT section */
 | |
| 	uint32_t	name;			/**< Index into nametable */
 | |
| } sp_file_pubvars_t;
 | |
| 
 | |
| #if defined __linux__
 | |
| 	#pragma pack()    /* reset default packing */
 | |
| #else
 | |
| 	#pragma pack(pop) /* reset previous packing */
 | |
| #endif
 | |
| 
 | |
| /**
 | |
|  * @brief File-encoded debug information table.
 | |
|  */
 | |
| typedef struct sp_fdbg_info_s
 | |
| {
 | |
| 	uint32_t	num_files;	/**< number of files */
 | |
| 	uint32_t	num_lines;	/**< number of lines */
 | |
| 	uint32_t	num_syms;	/**< number of symbols */
 | |
| 	uint32_t	num_arrays;	/**< number of symbols which are arrays */
 | |
| } sp_fdbg_info_t;
 | |
| 
 | |
| /**
 | |
|  * @brief File-encoded debug file table.
 | |
|  */
 | |
| typedef struct sp_fdbg_file_s
 | |
| {
 | |
| 	uint32_t	addr;		/**< Address into code */
 | |
| 	uint32_t	name;		/**< Offset into debug nametable */
 | |
| } sp_fdbg_file_t;
 | |
| 
 | |
| /**
 | |
|  * @brief File-encoded debug line table.
 | |
|  */
 | |
| typedef struct sp_fdbg_line_s
 | |
| {
 | |
| 	uint32_t	addr;		/**< Address into code */
 | |
| 	uint32_t	line;		/**< Line number */
 | |
| } sp_fdbg_line_t;
 | |
| 
 | |
| #define SP_SYM_VARIABLE  1  /**< Cell that has an address and that can be fetched directly (lvalue) */
 | |
| #define SP_SYM_REFERENCE 2  /**< VARIABLE, but must be dereferenced */
 | |
| #define SP_SYM_ARRAY     3	/**< Symbol is an array */
 | |
| #define SP_SYM_REFARRAY  4  /**< An array passed by reference (i.e. a pointer) */
 | |
| #define SP_SYM_FUNCTION	 9  /**< Symbol is a function */
 | |
| 
 | |
| /**
 | |
|  * @brief File-encoded debug symbol information.
 | |
|  */
 | |
| typedef struct sp_fdbg_symbol_s
 | |
| {
 | |
| 	int32_t		addr;		/**< Address rel to DAT or stack frame */
 | |
| 	int16_t		tagid;		/**< Tag id */
 | |
| 	uint32_t	codestart;	/**< Start scope validity in code */
 | |
| 	uint32_t	codeend;	/**< End scope validity in code */
 | |
| 	uint8_t		ident;		/**< Variable type */
 | |
| 	uint8_t		vclass;		/**< Scope class (local vs global) */
 | |
| 	uint16_t	dimcount;	/**< Dimension count (for arrays) */
 | |
| 	uint32_t	name;		/**< Offset into debug nametable */
 | |
| } sp_fdbg_symbol_t;
 | |
| 
 | |
| /**
 | |
|  * @brief File-encoded debug symbol array dimension info.
 | |
|  */
 | |
| typedef struct sp_fdbg_arraydim_s
 | |
| {
 | |
| 	int16_t		tagid;		/**< Tag id */
 | |
| 	uint32_t	size;		/**< Size of dimension */
 | |
| } sp_fdbg_arraydim_t;
 | |
| 
 | |
| /** Typedef for .names table */
 | |
| typedef char * sp_file_nametab_t;
 | |
| 
 | |
| #endif //_INCLUDE_SPFILE_HEADERS_H
 |