亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频

? 歡迎來到蟲蟲下載站! | ?? 資源下載 ?? 資源專輯 ?? 關于我們
? 蟲蟲下載站

?? machostruc.h

?? 功能較全面的反匯編器:反匯編器ht-2.0.15.tar.gz
?? H
?? 第 1 頁 / 共 2 頁
字號:
/*  *	HT Editor *	machostruc.h * *	Copyright (C) 1999-2002 Stefan Weyergraf * *	This program is free software; you can redistribute it and/or modify *	it under the terms of the GNU General Public License version 2 as *	published by the Free Software Foundation. * *	This program is distributed in the hope that it will be useful, *	but WITHOUT ANY WARRANTY; without even the implied warranty of *	MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the *	GNU General Public License for more details. * *	You should have received a copy of the GNU General Public License *	along with this program; if not, write to the Free Software *	Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. */#ifndef __MACHOSTRUC_H__#define __MACHOSTRUC_H__#include "io/types.h"struct MACHO_HEADER {	byte	magic[4];	uint32	cputype;	uint32	cpusubtype;	uint32	filetype;	uint32	ncmds;	uint32	sizeofcmds;	uint32	flags;} PACKED;struct MACHO_HEADER64 {	byte	magic[4];	uint32	cputype;	uint32	cpusubtype;	uint32	filetype;	uint32	ncmds;	uint32	sizeofcmds;	uint32	flags;	uint32	reserved;} PACKED;/* Constants for the filetype field of the mach_header */#define	MH_OBJECT	0x1		/* relocatable object file */#define	MH_EXECUTE	0x2		/* demand paged executable file */#define	MH_FVMLIB	0x3		/* fixed VM shared library file */#define	MH_CORE		0x4		/* core file */#define	MH_PRELOAD	0x5		/* preloaded executable file */#define	MH_DYLIB	0x6		/* dynamicly bound shared library file*/#define	MH_DYLINKER	0x7		/* dynamic link editor */#define	MH_BUNDLE	0x8		/* dynamicly bound bundle file */#define	MH_DYLIB_STUB	0x9		/* shared library stub for static */					/*  linking only, no section contents */#define	MH_DSYM		0xa		/* companion file with only debug */					/*  sections *//* Constants for the flags field of the mach_header */#define	MH_NOUNDEFS	0x1		/* the object file has no undefined references, can be executed */#define	MH_INCRLINK	0x2		/* the object file is the output of an incremental link against a base file and can't be link edited again */#define MH_DYLDLINK	0x4		/* the object file is input for the dynamic linker and can't be staticly link edited again */#define MH_BINDATLOAD	0x8		/* the object file's undefined references are bound by the dynamic linker when loaded. */#define MH_PREBOUND	0x10		/* the file has it's dynamic undefined references prebound. */#define MH_SPLIT_SEGS	0x20		/* the file has its read-only and					   read-write segments split */#define MH_LAZY_INIT	0x40		/* the shared library init routine is					   to be run lazily via catching memory					   faults to its writeable segments					   (obsolete) */#define MH_TWOLEVEL	0x80		/* the image is using two-level name					   space bindings */#define MH_FORCE_FLAT	0x100		/* the executable is forcing all images					   to use flat name space bindings */#define MH_NOMULTIDEFS	0x200		/* this umbrella guarantees no multiple					   defintions of symbols in its					   sub-images so the two-level namespace					   hints can always be used. */#define MH_NOFIXPREBINDING 0x400	/* do not have dyld notify the					   prebinding agent about this					   executable */#define MH_PREBINDABLE  0x800           /* the binary is not prebound but can					   have its prebinding redone. only used                                           when MH_PREBOUND is not set. */#define MH_ALLMODSBOUND 0x1000		/* indicates that this binary binds to                                           all two-level namespace modules of					   its dependent libraries. only used					   when MH_PREBINDABLE and MH_TWOLEVEL					   are both set. */ #define MH_SUBSECTIONS_VIA_SYMBOLS 0x2000/* safe to divide up the sections into					    sub-sections via symbols for dead					    code stripping */#define MH_CANONICAL    0x4000		/* the binary has been canonicalized					   via the unprebind operation */#define MH_WEAK_DEFINES	0x8000		/* the final linked image contains					   external weak symbols */#define MH_BINDS_TO_WEAK 0x10000	/* the final linked image uses					   weak symbols */#define MH_ALLOW_STACK_EXECUTION 0x20000/* When this bit is set, all stacks 					   in the task will be given stack					   execution privilege.  Only used in					   MH_EXECUTE filetypes. */#define MH_ROOT_SAFE 0x40000           /* When this bit is set, the binary 					  declares it is safe for use in					  processes with uid zero */                                         #define MH_SETUID_SAFE 0x80000         /* When this bit is set, the binary 					  declares it is safe for use in					  processes when issetugid() is true */#define MH_NO_REEXPORTED_DYLIBS 0x100000 /* When this bit is set on a dylib, 					  the static linker does not need to					  examine dependent dylibs to see					  if any are re-exported */#define	MH_PIE 0x200000			/* When this bit is set, the OS will					   load the main executable at a					   random address.  Only used in					   MH_EXECUTE filetypes. */struct MACHO_COMMAND {	uint32 cmd;			/* type of load command */	uint32 cmdsize;			/* total size of command in bytes */} PACKED;/* Constants for the cmd field of all load commands, the type */#define	LC_SEGMENT	0x1	/* segment of this file to be mapped */#define	LC_SYMTAB	0x2	/* link-edit stab symbol table info */#define	LC_SYMSEG	0x3	/* link-edit gdb symbol table info (obsolete) */#define	LC_THREAD	0x4	/* thread */#define	LC_UNIXTHREAD	0x5	/* unix thread (includes a stack) */#define	LC_LOADFVMLIB	0x6	/* load a specified fixed VM shared library */#define	LC_IDFVMLIB	0x7	/* fixed VM shared library identification */#define	LC_IDENT	0x8	/* object identification info (obsolete) */#define LC_FVMFILE	0x9	/* fixed VM file inclusion (internal use) */#define LC_PREPAGE      0xa     /* prepage command (internal use) */#define	LC_DYSYMTAB	0xb	/* dynamic link-edit symbol table info */#define	LC_LOAD_DYLIB	0xc	/* load a dynamicly linked shared library */#define	LC_ID_DYLIB	0xd	/* dynamicly linked shared lib identification */#define LC_LOAD_DYLINKER 0xe	/* load a dynamic linker */#define LC_ID_DYLINKER	0xf	/* dynamic linker identification */#define	LC_PREBOUND_DYLIB 0x10	/* modules prebound for a dynamicly linked shared library */#define	LC_ROUTINES	0x11	/* image routines */#define	LC_SUB_FRAMEWORK 0x12	/* sub framework */#define	LC_SUB_UMBRELLA 0x13	/* sub umbrella */#define	LC_SUB_CLIENT	0x14	/* sub client */#define	LC_SUB_LIBRARY  0x15	/* sub library */#define	LC_TWOLEVEL_HINTS 0x16	/* two-level namespace lookup hints */#define	LC_PREBIND_CKSUM  0x17	/* prebind checksum */#define	LC_LOAD_WEAK_DYLIB (0x18 | LC_REQ_DYLD)#define	LC_SEGMENT_64	0x19	/* 64-bit segment of this file to be				   mapped */#define	LC_ROUTINES_64	0x1a	/* 64-bit image routines */#define LC_UUID		0x1b	/* the uuid */#define LC_RPATH       (0x1c | LC_REQ_DYLD)    /* runpath additions */#define LC_CODE_SIGNATURE 0x1d	/* local of code signature */#define LC_SEGMENT_SPLIT_INFO 0x1e /* local of info to split segments */#define LC_REEXPORT_DYLIB (0x1f | LC_REQ_DYLD) /* load and re-export dylib */struct MACHO_SEGMENT_COMMAND {	uint32	cmd;		/* LC_SEGMENT */	uint32	cmdsize;	/* includes sizeof section structs */	byte	segname[16];	/* segment name */	uint32	vmaddr;		/* memory address of this segment */	uint32	vmsize;		/* memory size of this segment */	uint32	fileoff;	/* file offset of this segment */	uint32	filesize;	/* amount to map from the file */	uint32	maxprot;	/* maximum VM protection */	uint32	initprot;	/* initial VM protection */	uint32	nsects;		/* number of sections in segment */	uint32	flags;		/* flags */} PACKED;struct MACHO_SEGMENT_64_COMMAND {	uint32	cmd;		/* LC_SEGMENT_64 */	uint32	cmdsize;	/* includes sizeof section_64 structs */	byte	segname[16];	/* segment name */	uint64	vmaddr;		/* memory address of this segment */	uint64	vmsize;		/* memory size of this segment */	uint64	fileoff;	/* file offset of this segment */	uint64	filesize;	/* amount to map from the file */	uint32	maxprot;	/* maximum VM protection */	uint32	initprot;	/* initial VM protection */	uint32	nsects;		/* number of sections in segment */	uint32	flags;		/* flags */} PACKED;/* Constants for the flags field of the segment_command */#define	SG_HIGHVM	0x1	/* the file contents for this segment is for the high part of the VM space, the low part is zero filled (for stacks in core files) */#define	SG_FVMLIB	0x2	/* this segment is the VM that is allocated by a fixed VM library, for overlap checking in the link editor */#define	SG_NORELOC	0x4	/* this segment has nothing that was relocated in it and nothing relocated to it, that is it maybe safely replaced without relocation */#define SG_PROTECTED_VERSION_1	0x8 /* This segment is protected.  If the				       segment starts at file offset 0, the				       first page of the segment is not				       protected.  All other pages of the				       segment are protected. */struct MACHO_SECTION {	byte	sectname[16];	/* name of this section */	byte	segname[16];	/* segment this section goes in */	uint32	vmaddr;		/* memory address of this section */	uint32	vmsize;		/* size in bytes of this section */	uint32	fileoff;	/* file offset of this section */	uint32	align;		/* section alignment (power of 2) */	uint32	reloff;		/* file offset of relocation entries */	uint32	nreloc;		/* number of relocation entries */	uint32	flags;		/* flags (section type and attributes)*/	uint32	reserved1;	/* reserved */	uint32	reserved2;	/* reserved */} PACKED;struct MACHO_SECTION_64 {	byte	sectname[16];	/* name of this section */	byte	segname[16];	/* segment this section goes in */	uint64	vmaddr;		/* memory address of this section */	uint64	vmsize;		/* size in bytes of this section */	uint32	fileoff;	/* file offset of this section */	uint32	align;		/* section alignment (power of 2) */	uint32	reloff;		/* file offset of relocation entries */	uint32	nreloc;		/* number of relocation entries */	uint32	flags;		/* flags (section type and attributes)*/	uint32	reserved1;	/* reserved (for offset or index) */	uint32	reserved2;	/* reserved (for count or sizeof) */	uint32	reserved3;	/* reserved */} PACKED;struct MACHO_SECTION_U {	bool _64;	union {		MACHO_SECTION s;		MACHO_SECTION_64 s64;	};};/* * The flags field of a section structure is separated into two parts a section * type and section attributes.  The section types are mutually exclusive (it * can only have one type) but the section attributes are not (it may have more * than one attribute). */#define MACHO_SECTION_TYPE		 0x000000ff	/* 256 section types */#define MACHO_SECTION_ATTRIBUTES	 0xffffff00	/*  24 section attributes *//* Constants for the type of a section */#define	MACHO_S_REGULAR		0x0	/* regular section */#define	MACHO_S_ZEROFILL		0x1	/* zero fill on demand section */#define	MACHO_S_CSTRING_LITERALS	0x2	/* section with only literal C strings*/#define	MACHO_S_4BYTE_LITERALS	0x3	/* section with only 4 byte literals */#define	MACHO_S_8BYTE_LITERALS	0x4	/* section with only 8 byte literals */#define	MACHO_S_LITERAL_POINTERS	0x5	/* section with only pointers to */					/*  literals *//* * For the two types of symbol pointers sections and the symbol stubs section * they have indirect symbol table entries.  For each of the entries in the * section the indirect symbol table entries, in corresponding order in the * indirect symbol table, start at the index stored in the reserved1 field * of the section structure.  Since the indirect symbol table entries * correspond to the entries in the section the number of indirect symbol table * entries is inferred from the size of the section divided by the size of the * entries in the section.  For symbol pointers sections the size of the entries * in the section is 4 bytes and for symbol stubs sections the byte size of the * stubs is stored in the reserved2 field of the section structure. */#define	MACHO_S_NON_LAZY_SYMBOL_POINTERS	0x6	/* section with only non-lazy						   symbol pointers */#define	MACHO_S_LAZY_SYMBOL_POINTERS		0x7	/* section with only lazy symbol						   pointers */#define	MACHO_S_SYMBOL_STUBS			0x8	/* section with only symbol						   stubs, byte size of stub in						   the reserved2 field */#define	MACHO_S_MOD_INIT_FUNC_POINTERS	0x9	/* section with only function						   pointers for initialization*/#define	MACHO_S_MOD_TERM_FUNC_POINTERS	0xa	/* section with only function						   pointers for termination */#define	MACHO_S_COALESCED			0xb	/* section contains symbols that						   are to be coalesced */#define	MACHO_S_GB_ZEROFILL			0xc	/* zero fill on demand section						   (that can be larger than 4						   gigabytes) */#define	MACHO_S_INTERPOSING			0xd	/* section with only pairs of						   function pointers for						   interposing */#define	MACHO_S_16BYTE_LITERALS		0xe	/* section with only 16 byte						   literals */#define	MACHO_S_DTRACE_DOF			0xf	/* section contains 						   DTrace Object Format *//* * Constants for the section attributes part of the flags field of a section * structure. */#define MACHO_SECTION_ATTRIBUTES_USR	 0xff000000	/* User setable attributes */#define MACHO_S_ATTR_PURE_INSTRUCTIONS 0x80000000	/* section contains only true						   machine instructions */#define MACHO_SECTION_ATTRIBUTES_SYS	 0x00ffff00	/* system setable attributes */#define MACHO_S_ATTR_SOME_INSTRUCTIONS 0x00000400	/* section contains some						   machine instructions */#define MACHO_S_ATTR_EXT_RELOC	 0x00000200	/* section has external						   relocation entries */#define MACHO_S_ATTR_LOC_RELOC	 0x00000100	/* section has local						   relocation entries */#define MACHO_S_ATTR_NO_DEAD_STRIP	 0x10000000	/* no dead stripping */#define MACHO_S_ATTR_LIVE_SUPPORT	 0x08000000	/* blocks are live if they						   reference live blocks */#define MACHO_S_ATTR_SELF_MODIFYING_CODE 0x04000000	/* Used with i386 code stubs						   written on by dyld */struct MACHO_PPC_THREAD_STATE {	uint32 srr[2];	uint32 r[32];	uint32 cr;	uint32 xer;	uint32 lr;

?? 快捷鍵說明

復制代碼 Ctrl + C
搜索代碼 Ctrl + F
全屏模式 F11
切換主題 Ctrl + Shift + D
顯示快捷鍵 ?
增大字號 Ctrl + =
減小字號 Ctrl + -
亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频
国产欧美一区二区精品忘忧草| 亚洲国产成人va在线观看天堂| 亚洲一区二区欧美日韩| 国内成+人亚洲+欧美+综合在线| 99精品视频在线免费观看| 精品卡一卡二卡三卡四在线| 一区二区视频免费在线观看| 久久福利资源站| 在线视频综合导航| 欧美精彩视频一区二区三区| 蜜桃av噜噜一区二区三区小说| 色嗨嗨av一区二区三区| 国产色产综合色产在线视频| 日本人妖一区二区| 欧美喷水一区二区| 亚洲精品久久久久久国产精华液| 高清久久久久久| 精品国产a毛片| 狠狠v欧美v日韩v亚洲ⅴ| 欧美美女bb生活片| 亚洲va国产va欧美va观看| 成人av影视在线观看| 久久久久国产免费免费| 蜜桃传媒麻豆第一区在线观看| 欧美在线小视频| 一区二区三区精密机械公司| 午夜免费久久看| 亚洲美女免费视频| 国产精品小仙女| 久久欧美一区二区| 日本va欧美va精品发布| 欧美亚洲高清一区二区三区不卡| 国产三级三级三级精品8ⅰ区| 免费成人在线网站| 69堂成人精品免费视频| 石原莉奈在线亚洲二区| 欧美日韩免费高清一区色橹橹| 亚洲欧美激情在线| 欧美日韩亚洲综合| 午夜日韩在线观看| 56国语精品自产拍在线观看| 午夜久久福利影院| 91精品国产黑色紧身裤美女| 丝袜诱惑制服诱惑色一区在线观看 | 亚洲欧美福利一区二区| 色综合久久九月婷婷色综合| 一区二区三区在线影院| 欧美日韩亚洲综合| 五月天激情综合| 精品国产一二三区| 国产成人午夜电影网| 中文字幕一区二区在线观看| 欧洲精品视频在线观看| 日韩中文字幕av电影| 精品国精品自拍自在线| 国产精品1024| 亚洲精品写真福利| 91麻豆精品91久久久久同性| 极品少妇xxxx精品少妇| 日本一二三四高清不卡| 欧美四级电影网| 麻豆91精品视频| 中文字幕中文字幕中文字幕亚洲无线| 色综合激情五月| 久久国产精品无码网站| 国产精品久久久久久久久果冻传媒| 成人av电影免费观看| 亚洲一二三四在线| 精品成人在线观看| 91亚洲精品乱码久久久久久蜜桃 | 午夜精品久久一牛影视| 日韩女优电影在线观看| 97久久久精品综合88久久| 午夜欧美一区二区三区在线播放| 久久久99免费| 欧美亚洲综合久久| 国产呦萝稀缺另类资源| 日韩理论在线观看| 日韩欧美激情一区| 在线观看亚洲精品| 国产主播一区二区三区| 亚洲国产日韩a在线播放性色| 久久婷婷久久一区二区三区| 欧美日韩在线直播| 处破女av一区二区| 日本一道高清亚洲日美韩| 国产精品国产自产拍高清av王其 | 亚洲一级不卡视频| 亚洲国产精品传媒在线观看| 欧美一区二区三区色| 91免费看片在线观看| 国产麻豆欧美日韩一区| 日日嗨av一区二区三区四区| 国产精品对白交换视频| 久久免费偷拍视频| 欧美一区二区免费| 在线看国产一区二区| 成人精品国产福利| 久草在线在线精品观看| 亚洲h动漫在线| 有坂深雪av一区二区精品| 欧美国产丝袜视频| 精品乱人伦小说| 日韩免费视频一区| 精品视频999| 色婷婷激情久久| www.在线成人| 国产成人综合自拍| 久久99蜜桃精品| 奇米777欧美一区二区| 五月综合激情网| 亚洲成人自拍一区| 亚洲成人一区二区在线观看| 亚洲一二三四久久| 亚洲制服欧美中文字幕中文字幕| 亚洲视频 欧洲视频| 国产精品色呦呦| 中文字幕高清一区| 欧美激情综合在线| 国产欧美一区二区三区沐欲| 久久综合色鬼综合色| 2024国产精品视频| 久久久久久久久岛国免费| 久久先锋影音av| 中文字幕电影一区| 亚洲人成网站在线| 亚洲男人的天堂av| 亚洲最大的成人av| 亚洲高清免费观看高清完整版在线观看| 亚洲日穴在线视频| 一区二区日韩电影| 亚洲国产成人91porn| 亚洲成av人片在线| 美腿丝袜在线亚洲一区| 精品一区二区影视| 国产91富婆露脸刺激对白| 成人午夜免费av| 色偷偷久久一区二区三区| 欧美怡红院视频| 精品免费99久久| 国产精品久久久久久久午夜片| 亚洲女人的天堂| 日本欧美大码aⅴ在线播放| 韩国女主播一区| 99在线精品观看| 欧美人狂配大交3d怪物一区 | 久久黄色级2电影| 国产成人免费视频网站 | 99久久免费视频.com| 91久久精品午夜一区二区| 在线成人免费观看| 国产欧美日韩卡一| 亚洲综合免费观看高清在线观看| 三级不卡在线观看| 成人app下载| 日韩你懂的在线观看| 成人免费一区二区三区视频| 亚洲sss视频在线视频| 国产精品一区二区黑丝| 91行情网站电视在线观看高清版| 欧美一级生活片| 亚洲欧美在线视频观看| 日韩激情一二三区| 成人黄色免费短视频| 在线不卡一区二区| 国产精品久久久久久久久快鸭 | 亚洲成人免费视| 国产精品自拍网站| 欧美老女人第四色| 国产精品日产欧美久久久久| 日本欧美大码aⅴ在线播放| 99vv1com这只有精品| 久久亚洲二区三区| 无码av免费一区二区三区试看| 国产精品综合网| 欧美一区二区不卡视频| 亚洲一区二区三区四区不卡| 国产99久久久久久免费看农村| 欧美一区二区二区| 亚洲制服丝袜av| 色网站国产精品| 中文字幕中文乱码欧美一区二区| 久久成人av少妇免费| 欧美色视频一区| 亚洲欧美另类在线| www.欧美亚洲| 久久久精品国产99久久精品芒果 | 欧美电影免费观看高清完整版在 | 亚洲精品一二三四区| 北岛玲一区二区三区四区| 国产三级一区二区三区| 韩国精品在线观看| 欧美一级一区二区| 视频一区视频二区中文| 91视频在线观看| 亚洲色图色小说| 色婷婷综合久久久久中文一区二区| 中文字幕不卡在线播放| 国产精品系列在线播放| 久久综合给合久久狠狠狠97色69|