./crmod.ko: file format elf32-i386 Disassembly of section .text: 00000000 : /////////////////////////////////////////////////////////////////////////////// // Function implementations /////////////////////////////////////////////////////////////////////////////// int init_module(void) { 0: 55 push %ebp 1: 89 e5 mov %esp,%ebp 3: 83 ec 04 sub $0x4,%esp //struct module *cur_mod = NULL; // Set up our workqueue: crmod_workqueue_struct = create_singlethread_workqueue 6: ba 01 00 00 00 mov $0x1,%edx b: b8 00 00 00 00 mov $0x0,%eax 10: e8 fc ff ff ff call 11 15: a3 24 00 00 00 mov %eax,0x24 #define LIST_HEAD(name) \ struct list_head name = LIST_HEAD_INIT(name) static inline void INIT_LIST_HEAD(struct list_head *list) { 1a: c7 45 fc 44 00 00 00 movl $0x44,0xfffffffc(%ebp) list->next = list; 21: 8b 55 fc mov 0xfffffffc(%ebp),%edx 24: 8b 45 fc mov 0xfffffffc(%ebp),%eax 27: 89 02 mov %eax,(%edx) list->prev = list; 29: 8b 55 fc mov 0xfffffffc(%ebp),%edx 2c: 8b 45 fc mov 0xfffffffc(%ebp),%eax 2f: 89 42 04 mov %eax,0x4(%edx) ("crmod_workqueue_struct"); #if LINUX_VERSION_CODE < KERNEL_VERSION(2,6,19) INIT_WORK(&crmod_work_struct, crmod_work_thread, NULL); 32: c7 05 40 00 00 00 00 movl $0x0,0x40 39: 00 00 00 3c: c7 05 4c 00 00 00 0c movl $0x30c,0x4c 43: 03 00 00 46: c7 05 50 00 00 00 00 movl $0x0,0x50 4d: 00 00 00 50: b8 58 00 00 00 mov $0x58,%eax 55: e8 fc ff ff ff call 56 #else INIT_DELAYED_WORK(&crmod_work_struct, crmod_work_thread); #endif queue_delayed_work (crmod_workqueue_struct, &crmod_work_struct, crmod_timer_length); 5a: b9 e8 03 00 00 mov $0x3e8,%ecx 5f: ba 40 00 00 00 mov $0x40,%edx 64: a1 24 00 00 00 mov 0x24,%eax 69: e8 fc ff ff ff call 6a /* list_for_each_entry(cur_mod, &THIS_MODULE->list, list) { */ /* printk ("%s ", cur_mod->name); */ /* printk ("0x%p ", cur_mod->module_core); */ /* printk ("%lu\n", cur_mod->core_size); */ /* } */ // Initialize linux kernel junk cr_setup.minor = CR_MINOR; 6e: c7 05 08 00 00 00 2f movl $0x2f,0x8 75: 00 00 00 cr_setup.name = "runtime"; 78: c7 05 0c 00 00 00 17 movl $0x17,0xc 7f: 00 00 00 cr_setup.fops = &cr_fops; 82: c7 05 10 00 00 00 00 movl $0x0,0x10 89: 00 00 00 return misc_register(&cr_setup); 8c: b8 08 00 00 00 mov $0x8,%eax 91: e8 fc ff ff ff call 92 } 96: c9 leave 97: c3 ret 00000098 : void cleanup_module (void) { 98: 55 push %ebp 99: 89 e5 mov %esp,%ebp 9b: 83 ec 20 sub $0x20,%esp * function may still be running on return from cancel_delayed_work(). Run * flush_scheduled_work() to wait on it. */ static inline int cancel_delayed_work(struct work_struct *work) { 9e: c7 45 f8 40 00 00 00 movl $0x40,0xfffffff8(%ebp) int ret; ret = del_timer_sync(&work->timer); a5: 8b 45 f8 mov 0xfffffff8(%ebp),%eax a8: 83 c0 18 add $0x18,%eax ab: e8 fc ff ff ff call ac b0: 89 45 f0 mov %eax,0xfffffff0(%ebp) if (ret) b3: 83 7d f0 00 cmpl $0x0,0xfffffff0(%ebp) b7: 74 17 je d0 * you should call smp_mb__before_clear_bit() and/or smp_mb__after_clear_bit() * in order to ensure changes are visible on other processors. */ static inline void clear_bit(int nr, volatile unsigned long * addr) { b9: c7 45 ec 00 00 00 00 movl $0x0,0xffffffec(%ebp) c0: 8b 45 f8 mov 0xfffffff8(%ebp),%eax c3: 89 45 e8 mov %eax,0xffffffe8(%ebp) __asm__ __volatile__( LOCK_PREFIX c6: 8b 45 e8 mov 0xffffffe8(%ebp),%eax c9: 8b 55 ec mov 0xffffffec(%ebp),%edx cc: f0 0f b3 10 lock btr %edx,(%eax) int ret; ret = del_timer_sync(&work->timer); if (ret) clear_bit(0, &work->pending); d0: 8b 45 f0 mov 0xfffffff0(%ebp),%eax d3: 89 45 f4 mov %eax,0xfffffff4(%ebp) int number; cancel_delayed_work(&crmod_work_struct); flush_workqueue(crmod_workqueue_struct); d6: a1 24 00 00 00 mov 0x24,%eax db: e8 fc ff ff ff call dc destroy_workqueue(crmod_workqueue_struct); e0: a1 24 00 00 00 mov 0x24,%eax e5: e8 fc ff ff ff call e6 number = misc_deregister(&cr_setup); ea: b8 08 00 00 00 mov $0x8,%eax ef: e8 fc ff ff ff call f0 f4: 89 45 fc mov %eax,0xfffffffc(%ebp) if (number < 0) { f7: 83 7d fc 00 cmpl $0x0,0xfffffffc(%ebp) fb: 79 13 jns 110 printk ("misc_deregister failed. %d\n", number); fd: 8b 45 fc mov 0xfffffffc(%ebp),%eax 100: 89 44 24 04 mov %eax,0x4(%esp) 104: c7 04 24 1f 00 00 00 movl $0x1f,(%esp) 10b: e8 fc ff ff ff call 10c } } 110: c9 leave 111: c3 ret 00000112 : int cr_ioctl (struct inode *inode, struct file *fp, unsigned int cmd, unsigned long arg) { 112: 55 push %ebp 113: 89 e5 mov %esp,%ebp 115: 83 ec 14 sub $0x14,%esp 118: 89 45 fc mov %eax,0xfffffffc(%ebp) 11b: 89 55 f8 mov %edx,0xfffffff8(%ebp) 11e: 89 4d f4 mov %ecx,0xfffffff4(%ebp) int rc = 0; 121: c7 45 f0 00 00 00 00 movl $0x0,0xfffffff0(%ebp) switch (cmd) { 128: 8b 45 f4 mov 0xfffffff4(%ebp),%eax 12b: 83 f8 01 cmp $0x1,%eax 12e: 74 0c je 13c case (1): break; default: printk ("Specify a valid cmd\n"); 130: c7 04 24 3b 00 00 00 movl $0x3b,(%esp) 137: e8 fc ff ff ff call 138 break; } return rc; 13c: 8b 45 f0 mov 0xfffffff0(%ebp),%eax } 13f: c9 leave 140: c3 ret 00000141 : /* http://lxr.linux.no/linux+v2.6.18.1/include/linux/page-flags.h 31 * Note that the referenced bit, the page->lru list_head and the active, 32 * inactive_dirty and inactive_clean lists are protected by the 33 * zone->lru_lock, and *NOT* by the usual PG_locked bit! */ void crmod_check_function (void) { 141: 55 push %ebp 142: 89 e5 mov %esp,%ebp 144: 83 ec 48 sub $0x48,%esp void *cur_addr; /* struct page *cur_page; */ /* for (cur_addr = cr_base_address; */ /* cur_addr < cr_base_address + cr_module_size; */ /* cur_addr += PAGE_SIZE) { */ /* int referenced; */ /* int active; */ /* cur_page = virt_to_page (cur_addr); */ /* referenced = PageReferenced(cur_page); */ /* active = PageActive (cur_page); */ /* printk ("cur_page: %p cur_addr: %p referenced: %d active: %d flags: 0x%lx\n", */ /* cur_page, cur_addr, referenced, active, cur_page->flags); */ /* //ClearPageReferenced(cur_page); */ /* //SetPageReferenced(cur_page); */ /* mark_page_accessed (cur_page); */ /* } */ for (cur_addr = cr_base_address; 147: a1 00 00 00 00 mov 0x0,%eax 14c: 89 45 fc mov %eax,0xfffffffc(%ebp) 14f: a1 04 00 00 00 mov 0x4,%eax 154: 03 05 00 00 00 00 add 0x0,%eax 15a: 3b 45 fc cmp 0xfffffffc(%ebp),%eax 15d: 0f 86 a2 01 00 00 jbe 305 cur_addr < cr_base_address + cr_module_size; cur_addr += PAGE_SIZE) { unsigned long phys_addr; pgd_t *pgd; pud_t *pud; pmd_t *pmd; pte_t *pte; unsigned long pg = (unsigned long) cur_addr /*& PAGE_MASK*/; 163: 8b 45 fc mov 0xfffffffc(%ebp),%eax 166: 89 45 e4 mov %eax,0xffffffe4(%ebp) if (pg > TASK_SIZE) 169: 81 7d e4 00 00 00 c0 cmpl $0xc0000000,0xffffffe4(%ebp) 170: 76 17 jbe 189 pgd = pgd_offset_k(pg); 172: 8b 45 e4 mov 0xffffffe4(%ebp),%eax 175: c1 e8 1e shr $0x1e,%eax 178: 83 e0 03 and $0x3,%eax 17b: c1 e0 03 shl $0x3,%eax 17e: 03 05 24 00 00 00 add 0x24,%eax 184: 89 45 f4 mov %eax,0xfffffff4(%ebp) 187: eb 13 jmp 19c else panic ("pg < TASK_SIZE: 0x%lx\n", pg); 189: 8b 45 e4 mov 0xffffffe4(%ebp),%eax 18c: 89 44 24 04 mov %eax,0x4(%esp) 190: c7 04 24 50 00 00 00 movl $0x50,(%esp) 197: e8 fc ff ff ff call 198 * The "pgd_xxx()" functions here are trivial for a folded two-level * setup: the pud is never bad, and a pud always exists (as it's folded * into the pgd entry) */ static inline int pgd_none(pgd_t pgd) { return 0; } 19c: 8b 45 f4 mov 0xfffffff4(%ebp),%eax 19f: 8b 50 04 mov 0x4(%eax),%edx 1a2: 8b 00 mov (%eax),%eax 1a4: 89 45 dc mov %eax,0xffffffdc(%ebp) 1a7: 89 55 e0 mov %edx,0xffffffe0(%ebp) 1aa: c7 45 d8 00 00 00 00 movl $0x0,0xffffffd8(%ebp) 1b1: 8b 45 d8 mov 0xffffffd8(%ebp),%eax 1b4: 85 c0 test %eax,%eax 1b6: 74 08 je 1c0 BUG_ON(pgd_none(*pgd)); 1b8: 0f 0b ud2a 1ba: ce into 1bb: 00 67 00 add %ah,0x0(%edi) 1be: 00 00 add %al,(%eax) */ #define set_pgd(pgdptr, pgdval) set_pud((pud_t *)(pgdptr), (pud_t) { pgdval }) static inline pud_t * pud_offset(pgd_t * pgd, unsigned long address) { 1c0: 8b 45 f4 mov 0xfffffff4(%ebp),%eax 1c3: 89 45 d8 mov %eax,0xffffffd8(%ebp) 1c6: 8b 45 e4 mov 0xffffffe4(%ebp),%eax 1c9: 89 45 d4 mov %eax,0xffffffd4(%ebp) return (pud_t *)pgd; 1cc: 8b 45 d8 mov 0xffffffd8(%ebp),%eax 1cf: 89 45 d0 mov %eax,0xffffffd0(%ebp) 1d2: 8b 45 d0 mov 0xffffffd0(%ebp),%eax 1d5: 89 45 f0 mov %eax,0xfffffff0(%ebp) pud = pud_offset(pgd, pg); BUG_ON(pud_none(*pud)); pmd = pmd_offset(pud, pg); 1d8: 8b 45 f0 mov 0xfffffff0(%ebp),%eax 1db: 8b 10 mov (%eax),%edx 1dd: 81 e2 00 f0 ff ff and $0xfffff000,%edx 1e3: 8b 45 e4 mov 0xffffffe4(%ebp),%eax 1e6: c1 e8 15 shr $0x15,%eax 1e9: 25 ff 01 00 00 and $0x1ff,%eax 1ee: c1 e0 03 shl $0x3,%eax 1f1: 8d 04 02 lea (%edx,%eax,1),%eax 1f4: 2d 00 00 00 40 sub $0x40000000,%eax 1f9: 89 45 ec mov %eax,0xffffffec(%ebp) if (pmd_none(*pmd)) { 1fc: 8b 45 ec mov 0xffffffec(%ebp),%eax 1ff: 83 38 00 cmpl $0x0,(%eax) 202: 75 18 jne 21c printk ("None %p?\n", cur_addr); 204: 8b 45 fc mov 0xfffffffc(%ebp),%eax 207: 89 44 24 04 mov %eax,0x4(%esp) 20b: c7 04 24 85 00 00 00 movl $0x85,(%esp) 212: e8 fc ff ff ff call 213 continue; 217: e9 db 00 00 00 jmp 2f7 } pte = pte_offset_map(pmd, pg); 21c: 8b 45 ec mov 0xffffffec(%ebp),%eax 21f: 8b 50 04 mov 0x4(%eax),%edx 222: 8b 00 mov (%eax),%eax 224: 0f ac d0 0c shrd $0xc,%edx,%eax 228: c1 ea 0c shr $0xc,%edx 22b: 89 c2 mov %eax,%edx 22d: 89 d0 mov %edx,%eax 22f: c1 e0 02 shl $0x2,%eax 232: 01 d0 add %edx,%eax 234: c1 e0 03 shl $0x3,%eax 237: 03 05 00 00 00 00 add 0x0,%eax 23d: ba 0f 00 00 00 mov $0xf,%edx 242: e8 fc ff ff ff call 243 247: 89 c2 mov %eax,%edx 249: 8b 45 e4 mov 0xffffffe4(%ebp),%eax 24c: c1 e8 0c shr $0xc,%eax 24f: 25 ff 01 00 00 and $0x1ff,%eax 254: c1 e0 03 shl $0x3,%eax 257: 8d 04 02 lea (%edx,%eax,1),%eax 25a: 89 45 e8 mov %eax,0xffffffe8(%ebp) #define pte_page(x) pfn_to_page(pte_pfn(x)) static inline int pte_none(pte_t pte) { 25d: 8b 45 e8 mov 0xffffffe8(%ebp),%eax 260: 8b 50 04 mov 0x4(%eax),%edx 263: 8b 00 mov (%eax),%eax 265: 89 45 dc mov %eax,0xffffffdc(%ebp) 268: 89 55 e0 mov %edx,0xffffffe0(%ebp) return !pte.pte_low && !pte.pte_high; 26b: c7 45 d0 00 00 00 00 movl $0x0,0xffffffd0(%ebp) 272: 83 7d dc 00 cmpl $0x0,0xffffffdc(%ebp) 276: 75 0d jne 285 278: 83 7d e0 00 cmpl $0x0,0xffffffe0(%ebp) 27c: 75 07 jne 285 27e: c7 45 d0 01 00 00 00 movl $0x1,0xffffffd0(%ebp) 285: 8b 45 d0 mov 0xffffffd0(%ebp),%eax 288: 85 c0 test %eax,%eax 28a: 74 20 je 2ac if (pte_none(*pte)) { pte_unmap(pte); 28c: 8b 45 e8 mov 0xffffffe8(%ebp),%eax 28f: ba 0f 00 00 00 mov $0xf,%edx 294: e8 fc ff ff ff call 295 printk ("None2 %p?\n", cur_addr); 299: 8b 45 fc mov 0xfffffffc(%ebp),%eax 29c: 89 44 24 04 mov %eax,0x4(%esp) 2a0: c7 04 24 8f 00 00 00 movl $0x8f,(%esp) 2a7: e8 fc ff ff ff call 2a8 * this function */ static inline unsigned long virt_to_phys(volatile void * address) { 2ac: 8b 45 fc mov 0xfffffffc(%ebp),%eax 2af: 89 45 d4 mov %eax,0xffffffd4(%ebp) return __pa(address); 2b2: 8b 45 d4 mov 0xffffffd4(%ebp),%eax 2b5: 05 00 00 00 40 add $0x40000000,%eax 2ba: 89 45 d8 mov %eax,0xffffffd8(%ebp) 2bd: 8b 45 d8 mov 0xffffffd8(%ebp),%eax 2c0: 89 45 f8 mov %eax,0xfffffff8(%ebp) } phys_addr = virt_to_phys (cur_addr); printk ("cur_addr: %p phys_addr: 0x%lx pte: 0x%p flags: 0x%lx 0x%lx\n", 2c3: 8b 45 e8 mov 0xffffffe8(%ebp),%eax 2c6: 8b 00 mov (%eax),%eax 2c8: 89 44 24 14 mov %eax,0x14(%esp) 2cc: 8b 45 e8 mov 0xffffffe8(%ebp),%eax 2cf: 8b 40 04 mov 0x4(%eax),%eax 2d2: 89 44 24 10 mov %eax,0x10(%esp) 2d6: 8b 45 e8 mov 0xffffffe8(%ebp),%eax 2d9: 89 44 24 0c mov %eax,0xc(%esp) 2dd: 8b 45 f8 mov 0xfffffff8(%ebp),%eax 2e0: 89 44 24 08 mov %eax,0x8(%esp) 2e4: 8b 45 fc mov 0xfffffffc(%ebp),%eax 2e7: 89 44 24 04 mov %eax,0x4(%esp) 2eb: c7 04 24 9c 00 00 00 movl $0x9c,(%esp) 2f2: e8 fc ff ff ff call 2f3 2f7: 8d 45 fc lea 0xfffffffc(%ebp),%eax 2fa: 81 00 00 10 00 00 addl $0x1000,(%eax) 300: e9 4a fe ff ff jmp 14f cur_addr, phys_addr, pte, pte->pte_high, pte->pte_low); } global_flush_tlb(); 305: e8 fc ff ff ff call 306 } 30a: c9 leave 30b: c3 ret 0000030c : #if LINUX_VERSION_CODE <= KERNEL_VERSION(2,6,19) void crmod_work_thread (void *param) { 30c: 55 push %ebp 30d: 89 e5 mov %esp,%ebp 30f: 83 ec 04 sub $0x4,%esp 312: 89 45 fc mov %eax,0xfffffffc(%ebp) #else void crmod_work_thread (struct work_struct *work) { #endif crmod_check_function (); 315: e8 fc ff ff ff call 316 #if LINUX_VERSION_CODE <= KERNEL_VERSION(2,6,19) queue_delayed_work(crmod_workqueue_struct, &crmod_work_struct, crmod_timer_length); 31a: b9 e8 03 00 00 mov $0x3e8,%ecx 31f: ba 40 00 00 00 mov $0x40,%edx 324: a1 24 00 00 00 mov 0x24,%eax 329: e8 fc ff ff ff call 32a #else // No need to reschedule in the new version of the kernel. #endif } 32e: c9 leave 32f: c3 ret 00000330 : // // Module initialization // int cr_pci_register_driver (struct pci_driver *driver, struct module *this_mod) { 330: 55 push %ebp 331: 89 e5 mov %esp,%ebp 333: 83 ec 18 sub $0x18,%esp 336: 89 45 fc mov %eax,0xfffffffc(%ebp) 339: 89 55 f8 mov %edx,0xfffffff8(%ebp) cr_base_address = this_mod->module_core; 33c: 8b 45 f8 mov 0xfffffff8(%ebp),%eax 33f: 8b 80 f4 00 00 00 mov 0xf4(%eax),%eax 345: a3 00 00 00 00 mov %eax,0x0 cr_module_size = this_mod->core_size; 34a: 8b 45 f8 mov 0xfffffff8(%ebp),%eax 34d: 8b 80 fc 00 00 00 mov 0xfc(%eax),%eax 353: a3 04 00 00 00 mov %eax,0x4 printk ("Module: %s, base address %p, size %lu\n", 358: 8b 45 f8 mov 0xfffffff8(%ebp),%eax 35b: 8b 80 fc 00 00 00 mov 0xfc(%eax),%eax 361: 89 44 24 0c mov %eax,0xc(%esp) 365: 8b 45 f8 mov 0xfffffff8(%ebp),%eax 368: 8b 80 f4 00 00 00 mov 0xf4(%eax),%eax 36e: 89 44 24 08 mov %eax,0x8(%esp) 372: 8b 45 f8 mov 0xfffffff8(%ebp),%eax 375: 83 c0 0c add $0xc,%eax 378: 89 44 24 04 mov %eax,0x4(%esp) 37c: c7 04 24 d4 00 00 00 movl $0xd4,(%esp) 383: e8 fc ff ff ff call 384 this_mod->name, this_mod->module_core, this_mod->core_size); return __pci_register_driver (driver, this_mod); 388: 8b 55 f8 mov 0xfffffff8(%ebp),%edx 38b: 8b 45 fc mov 0xfffffffc(%ebp),%eax 38e: e8 fc ff ff ff call 38f } 393: c9 leave 394: c3 ret 00000395 : // // Interrupt handler wrapper // #if LINUX_VERSION_CODE < KERNEL_VERSION(2,6,19) irqreturn_t cr_irq_handler(int irq, void *dev_instance, struct pt_regs *regs) #else irqreturn_t cr_irq_handler(int irq, void *dev_instance) #endif { 395: 55 push %ebp 396: 89 e5 mov %esp,%ebp 398: 56 push %esi 399: 53 push %ebx 39a: 83 ec 10 sub $0x10,%esp 39d: 89 45 f4 mov %eax,0xfffffff4(%ebp) 3a0: 89 55 f0 mov %edx,0xfffffff0(%ebp) 3a3: 89 4d ec mov %ecx,0xffffffec(%ebp) int ret; #if LINUX_VERSION_CODE < KERNEL_VERSION(2,6,19) ret = cr_irq_handlers[irq](irq, dev_instance, regs); 3a6: 8b 45 f4 mov 0xfffffff4(%ebp),%eax 3a9: 8b 4d ec mov 0xffffffec(%ebp),%ecx 3ac: 8b 55 f0 mov 0xfffffff0(%ebp),%edx 3af: 8b 5d f4 mov 0xfffffff4(%ebp),%ebx 3b2: 8b 34 85 80 00 00 00 mov 0x80(,%eax,4),%esi 3b9: 89 d8 mov %ebx,%eax 3bb: ff d6 call *%esi 3bd: 89 45 e8 mov %eax,0xffffffe8(%ebp) #else ret = cr_irq_handlers[irq](irq, dev_instance); #endif return ret; 3c0: 8b 45 e8 mov 0xffffffe8(%ebp),%eax } 3c3: 83 c4 10 add $0x10,%esp 3c6: 5b pop %ebx 3c7: 5e pop %esi 3c8: 5d pop %ebp 3c9: c3 ret 000003ca : // // Request wrapper, keeps track of IRQ numbers requested // #if LINUX_VERSION_CODE < KERNEL_VERSION(2,6,19) int cr_request_irq(unsigned int irq, irqreturn_t (*handler)(int, void *, struct pt_regs *), unsigned long flags, const char *dev_name, void *dev_id) #else int cr_request_irq(unsigned int irq, irqreturn_t (*handler)(int, void *), unsigned long flags, const char *dev_name, void *dev_id) #endif { 3ca: 55 push %ebp 3cb: 89 e5 mov %esp,%ebp 3cd: 53 push %ebx 3ce: 83 ec 14 sub $0x14,%esp 3d1: 89 45 f8 mov %eax,0xfffffff8(%ebp) 3d4: 89 55 f4 mov %edx,0xfffffff4(%ebp) 3d7: 89 4d f0 mov %ecx,0xfffffff0(%ebp) //uprintk("%s", __FUNCTION__); if (cr_irq_handlers[irq] != NULL) { 3da: 8b 45 f8 mov 0xfffffff8(%ebp),%eax 3dd: 83 3c 85 80 00 00 00 cmpl $0x0,0x80(,%eax,4) 3e4: 00 3e5: 74 13 je 3fa printk ("Already requested IRQ %d, overwriting...\n", irq); 3e7: 8b 45 f8 mov 0xfffffff8(%ebp),%eax 3ea: 89 44 24 04 mov %eax,0x4(%esp) 3ee: c7 04 24 0c 01 00 00 movl $0x10c,(%esp) 3f5: e8 fc ff ff ff call 3f6 } if (irq >= CR_MAP_SIZE) { 3fa: 81 7d f8 ff 00 00 00 cmpl $0xff,0xfffffff8(%ebp) 401: 76 14 jbe 417 panic ("%s: map too small\n", __FUNCTION__); 403: c7 44 24 04 fb 00 00 movl $0xfb,0x4(%esp) 40a: 00 40b: c7 04 24 36 01 00 00 movl $0x136,(%esp) 412: e8 fc ff ff ff call 413 } cr_irq_handlers[irq] = handler; 417: 8b 55 f8 mov 0xfffffff8(%ebp),%edx 41a: 8b 45 f4 mov 0xfffffff4(%ebp),%eax 41d: 89 04 95 80 00 00 00 mov %eax,0x80(,%edx,4) return request_irq(irq, cr_irq_handler, flags, dev_name, dev_id); 424: 8b 4d f0 mov 0xfffffff0(%ebp),%ecx 427: 8b 5d f8 mov 0xfffffff8(%ebp),%ebx 42a: 8b 45 0c mov 0xc(%ebp),%eax 42d: 89 44 24 04 mov %eax,0x4(%esp) 431: 8b 45 08 mov 0x8(%ebp),%eax 434: 89 04 24 mov %eax,(%esp) 437: ba 00 00 00 00 mov $0x0,%edx 43c: 89 d8 mov %ebx,%eax 43e: e8 fc ff ff ff call 43f } 443: 83 c4 14 add $0x14,%esp 446: 5b pop %ebx 447: 5d pop %ebp 448: c3 ret 00000449 : // // Free IRQ wrapper, clears our state // void cr_free_irq (unsigned int irq, void *dev_id) { 449: 55 push %ebp 44a: 89 e5 mov %esp,%ebp 44c: 83 ec 14 sub $0x14,%esp 44f: 89 45 fc mov %eax,0xfffffffc(%ebp) 452: 89 55 f8 mov %edx,0xfffffff8(%ebp) //uprintk("%s", __FUNCTION__); if (cr_irq_handlers[irq] == NULL) { 455: 8b 45 fc mov 0xfffffffc(%ebp),%eax 458: 83 3c 85 80 00 00 00 cmpl $0x0,0x80(,%eax,4) 45f: 00 460: 75 1b jne 47d printk ("%s: Already freed IRQ %d, ignoring...\n", __FUNCTION__, irq); 462: 8b 45 fc mov 0xfffffffc(%ebp),%eax 465: 89 44 24 08 mov %eax,0x8(%esp) 469: c7 44 24 04 49 01 00 movl $0x149,0x4(%esp) 470: 00 471: c7 04 24 58 01 00 00 movl $0x158,(%esp) 478: e8 fc ff ff ff call 479 } cr_irq_handlers[irq] = NULL; 47d: 8b 45 fc mov 0xfffffffc(%ebp),%eax 480: c7 04 85 80 00 00 00 movl $0x0,0x80(,%eax,4) 487: 00 00 00 00 free_irq (irq, dev_id); 48b: 8b 55 f8 mov 0xfffffff8(%ebp),%edx 48e: 8b 45 fc mov 0xfffffffc(%ebp),%eax 491: e8 fc ff ff ff call 492 } 496: c9 leave 497: c3 ret Disassembly of section .rodata: 00000000 <__func__.3-0xfb>: 0: 63 72 6d arpl %si,0x6d(%edx) 3: 6f outsl %ds:(%esi),(%dx) 4: 64 fs 5: 5f pop %edi 6: 77 6f ja 77 <__func__.3-0x84> 8: 72 6b jb 75 <__func__.3-0x86> a: 71 75 jno 81 <__func__.3-0x7a> c: 65 gs d: 75 65 jne 74 <__func__.3-0x87> f: 5f pop %edi 10: 73 74 jae 86 <__func__.3-0x75> 12: 72 75 jb 89 <__func__.3-0x72> 14: 63 74 00 72 arpl %si,0x72(%eax,%eax,1) 18: 75 6e jne 88 <__func__.3-0x73> 1a: 74 69 je 85 <__func__.3-0x76> 1c: 6d insl (%dx),%es:(%edi) 1d: 65 00 6d 69 add %ch,%gs:0x69(%ebp) 21: 73 63 jae 86 <__func__.3-0x75> 23: 5f pop %edi 24: 64 fs 25: 65 gs 26: 72 65 jb 8d <__func__.3-0x6e> 28: 67 69 73 74 65 72 20 addr16 imul $0x66207265,116(%bp,%di),%esi 2f: 66 30: 61 popa 31: 69 6c 65 64 2e 20 25 imul $0x6425202e,0x64(%ebp),%ebp 38: 64 39: 0a 00 or (%eax),%al 3b: 53 push %ebx 3c: 70 65 jo a3 <__func__.3-0x58> 3e: 63 69 66 arpl %bp,0x66(%ecx) 41: 79 20 jns 63 <__func__.3-0x98> 43: 61 popa 44: 20 76 61 and %dh,0x61(%esi) 47: 6c insb (%dx),%es:(%edi) 48: 69 64 20 63 6d 64 0a imul $0xa646d,0x63(%eax),%esp 4f: 00 50: 70 67 jo b9 <__func__.3-0x42> 52: 20 3c 20 and %bh,(%eax) 55: 54 push %esp 56: 41 inc %ecx 57: 53 push %ebx 58: 4b dec %ebx 59: 5f pop %edi 5a: 53 push %ebx 5b: 49 dec %ecx 5c: 5a pop %edx 5d: 45 inc %ebp 5e: 3a 20 cmp (%eax),%ah 60: 30 78 25 xor %bh,0x25(%eax) 63: 6c insb (%dx),%es:(%edi) 64: 78 0a js 70 <__func__.3-0x8b> 66: 00 2f add %ch,(%edi) 68: 73 63 jae cd <__func__.3-0x2e> 6a: 72 61 jb cd <__func__.3-0x2e> 6c: 74 63 je d1 <__func__.3-0x2a> 6e: 68 2f 66 69 2f push $0x2f69662f 73: 66 69 5f 6d 6f 64 imul $0x646f,0x6d(%edi),%bx 79: 75 6c jne e7 <__func__.3-0x14> 7b: 65 gs 7c: 2f das 7d: 63 72 6d arpl %si,0x6d(%edx) 80: 6f outsl %ds:(%esi),(%dx) 81: 64 2e 63 00 arpl %ax,%cs:%fs:(%eax) 85: 4e dec %esi 86: 6f outsl %ds:(%esi),(%dx) 87: 6e outsb %ds:(%esi),(%dx) 88: 65 20 25 70 3f 0a 00 and %ah,%gs:0xa3f70 8f: 4e dec %esi 90: 6f outsl %ds:(%esi),(%dx) 91: 6e outsb %ds:(%esi),(%dx) 92: 65 32 20 xor %gs:(%eax),%ah 95: 25 70 3f 0a 00 and $0xa3f70,%eax 9a: 00 00 add %al,(%eax) 9c: 63 75 72 arpl %si,0x72(%ebp) 9f: 5f pop %edi a0: 61 popa a1: 64 fs a2: 64 fs a3: 72 3a jb df <__func__.3-0x1c> a5: 20 25 70 20 70 68 and %ah,0x68702070 ab: 79 73 jns 120 <__func__.3+0x25> ad: 5f pop %edi ae: 61 popa af: 64 fs b0: 64 fs b1: 72 3a jb ed <__func__.3-0xe> b3: 20 25 6c 64 20 70 and %ah,0x7020646c b9: 74 65 je 120 <__func__.3+0x25> bb: 3a 20 cmp (%eax),%ah bd: 25 70 20 66 6c and $0x6c662070,%eax c2: 61 popa c3: 67 73 3a addr16 jae 100 <__func__.3+0x5> c6: 20 30 and %dh,(%eax) c8: 78 25 js ef <__func__.3-0xc> ca: 6c insb (%dx),%es:(%edi) cb: 78 20 js ed <__func__.3-0xe> cd: 30 78 25 xor %bh,0x25(%eax) d0: 6c insb (%dx),%es:(%edi) d1: 78 0a js dd <__func__.3-0x1e> d3: 00 4d 6f add %cl,0x6f(%ebp) d6: 64 fs d7: 75 6c jne 145 <__func__.3+0x4a> d9: 65 3a 20 cmp %gs:(%eax),%ah dc: 25 73 2c 20 62 and $0x62202c73,%eax e1: 61 popa e2: 73 65 jae 149 <__func__.4> e4: 20 61 64 and %ah,0x64(%ecx) e7: 64 fs e8: 72 65 jb 14f <__func__.4+0x6> ea: 73 73 jae 15f <__func__.4+0x16> ec: 20 25 70 2c 20 73 and %ah,0x73202c70 f2: 69 7a 65 20 25 6c 75 imul $0x756c2520,0x65(%edx),%edi f9: 0a 00 or (%eax),%al 000000fb <__func__.3>: fb: 63 72 5f arpl %si,0x5f(%edx) fe: 72 65 jb 165 <__func__.4+0x1c> 100: 71 75 jno 177 <__func__.4+0x2e> 102: 65 gs 103: 73 74 jae 179 <__func__.4+0x30> 105: 5f pop %edi 106: 69 72 71 00 00 00 41 imul $0x41000000,0x71(%edx),%esi 10d: 6c insb (%dx),%es:(%edi) 10e: 72 65 jb 175 <__func__.4+0x2c> 110: 61 popa 111: 64 fs 112: 79 20 jns 134 <__func__.3+0x39> 114: 72 65 jb 17b <__func__.4+0x32> 116: 71 75 jno 18d <__func__.4+0x44> 118: 65 gs 119: 73 74 jae 18f <__func__.4+0x46> 11b: 65 64 20 49 52 and %cl,%fs:%gs:0x52(%ecx) 120: 51 push %ecx 121: 20 25 64 2c 20 6f and %ah,0x6f202c64 127: 76 65 jbe 18e <__func__.4+0x45> 129: 72 77 jb 1a2 <__func__.4+0x59> 12b: 72 69 jb 196 <__func__.4+0x4d> 12d: 74 69 je 198 <__func__.4+0x4f> 12f: 6e outsb %ds:(%esi),(%dx) 130: 67 2e 2e 2e 0a 00 addr16 or %cs:(%bx,%si),%al 136: 25 73 3a 20 6d and $0x6d203a73,%eax 13b: 61 popa 13c: 70 20 jo 15e <__func__.4+0x15> 13e: 74 6f je 1af <__func__.4+0x66> 140: 6f outsl %ds:(%esi),(%dx) 141: 20 73 6d and %dh,0x6d(%ebx) 144: 61 popa 145: 6c insb (%dx),%es:(%edi) 146: 6c insb (%dx),%es:(%edi) 147: 0a 00 or (%eax),%al 00000149 <__func__.4>: 149: 63 72 5f arpl %si,0x5f(%edx) 14c: 66 data16 14d: 72 65 jb 1b4 <__func__.4+0x6b> 14f: 65 gs 150: 5f pop %edi 151: 69 72 71 00 00 00 00 imul $0x0,0x71(%edx),%esi 158: 25 73 3a 20 41 and $0x41203a73,%eax 15d: 6c insb (%dx),%es:(%edi) 15e: 72 65 jb 1c5 <__func__.4+0x7c> 160: 61 popa 161: 64 fs 162: 79 20 jns 184 <__func__.4+0x3b> 164: 66 data16 165: 72 65 jb 1cc <__func__.4+0x83> 167: 65 64 20 49 52 and %cl,%fs:%gs:0x52(%ecx) 16c: 51 push %ecx 16d: 20 25 64 2c 20 69 and %ah,0x69202c64 173: 67 6e addr16 outsb %ds:(%si),(%dx) 175: 6f outsl %ds:(%esi),(%dx) 176: 72 69 jb 1e1 <__func__.4+0x98> 178: 6e outsb %ds:(%esi),(%dx) 179: 67 2e 2e 2e 0a 00 addr16 or %cs:(%bx,%si),%al Disassembly of section .modinfo: 00000000 <__mod_license63>: 0: 6c insb (%dx),%es:(%edi) 1: 69 63 65 6e 73 65 3d imul $0x3d65736e,0x65(%ebx),%esp 8: 47 inc %edi 9: 50 push %eax a: 4c dec %esp ... 00000020 <__mod_vermagic5>: 20: 76 65 jbe 87 22: 72 6d jb 91 24: 61 popa 25: 67 69 63 3d 32 2e 36 addr16 imul $0x2e362e32,61(%bp,%di),%esp 2c: 2e 2d: 31 38 xor %edi,(%eax) 2f: 2e 38 20 cmp %ah,%cs:(%eax) 32: 53 push %ebx 33: 4d dec %ebp 34: 50 push %eax 35: 20 6d 6f and %ch,0x6f(%ebp) 38: 64 fs 39: 5f pop %edi 3a: 75 6e jne aa 3c: 6c insb (%dx),%es:(%edi) 3d: 6f outsl %ds:(%esi),(%dx) 3e: 61 popa 3f: 64 20 36 and %dh,%fs:(%esi) 42: 38 36 cmp %dh,(%esi) 44: 20 52 45 and %dl,0x45(%edx) 47: 47 inc %edi 48: 50 push %eax 49: 41 inc %ecx 4a: 52 push %edx 4b: 4d dec %ebp 4c: 20 67 63 and %ah,0x63(%edi) 4f: 63 2d 33 2e 34 00 arpl %bp,0x342e33 00000055 <__module_depends>: 55: 64 fs 56: 65 gs 57: 70 65 jo be 59: 6e outsb %ds:(%esi),(%dx) 5a: 64 fs 5b: 73 3d jae 9a ... Disassembly of section .smp_locks: 00000000 <.smp_locks>: 0: cc int3 1: 00 00 add %al,(%eax) ... Disassembly of section __kcrctab: 00000000 <__kcrctab_cr_pci_register_driver>: 0: 00 00 add %al,(%eax) ... 00000004 <__kcrctab_cr_request_irq>: 4: 00 00 add %al,(%eax) ... 00000008 <__kcrctab_cr_free_irq>: 8: 00 00 add %al,(%eax) ... Disassembly of section __ksymtab_strings: 00000000 <__kstrtab_cr_pci_register_driver>: 0: 63 72 5f arpl %si,0x5f(%edx) 3: 70 63 jo 68 <__module_depends+0x13> 5: 69 5f 72 65 67 69 73 imul $0x73696765,0x72(%edi),%ebx c: 74 65 je 73 <__module_depends+0x1e> e: 72 5f jb 6f <__module_depends+0x1a> 10: 64 fs 11: 72 69 jb 7c <__module_depends+0x27> 13: 76 65 jbe 7a <__module_depends+0x25> 15: 72 00 jb 17 <__kstrtab_cr_request_irq> 00000017 <__kstrtab_cr_request_irq>: 17: 63 72 5f arpl %si,0x5f(%edx) 1a: 72 65 jb 81 1c: 71 75 jno 93 1e: 65 gs 1f: 73 74 jae 95 21: 5f pop %edi 22: 69 72 71 00 63 72 5f imul $0x5f726300,0x71(%edx),%esi 00000026 <__kstrtab_cr_free_irq>: 26: 63 72 5f arpl %si,0x5f(%edx) 29: 66 data16 2a: 72 65 jb 91 2c: 65 gs 2d: 5f pop %edi 2e: 69 .byte 0x69 2f: 72 71 jb a2 ... Disassembly of section __ksymtab: 00000000 <__ksymtab_cr_pci_register_driver>: ... 00000008 <__ksymtab_cr_request_irq>: 8: 00 00 add %al,(%eax) a: 00 00 add %al,(%eax) c: 17 pop %ss d: 00 00 add %al,(%eax) ... 00000010 <__ksymtab_cr_free_irq>: 10: 00 00 add %al,(%eax) 12: 00 00 add %al,(%eax) 14: 26 00 00 add %al,%es:(%eax) ... Disassembly of section __versions: 00000000 <____versions>: 0: 2a fb sub %bl,%bh 2: 8c db movl %ds,%ebx 4: 73 74 jae 7a <____versions+0x7a> 6: 72 75 jb 7d <____versions+0x7d> 8: 63 74 5f 6d arpl %si,0x6d(%edi,%ebx,2) c: 6f outsl %ds:(%esi),(%dx) d: 64 fs e: 75 6c jne 7c <____versions+0x7c> 10: 65 00 00 add %al,%gs:(%eax) ... 3f: 00 22 add %ah,(%edx) 41: b9 d4 f2 6d 65 mov $0x656df2d4,%ecx 46: 6d insl (%dx),%es:(%edi) 47: 5f pop %edi 48: 6d insl (%dx),%es:(%edi) 49: 61 popa 4a: 70 00 jo 4c <____versions+0x4c> ... 80: 11 45 da adc %eax,0xffffffda(%ebp) 83: 66 69 6e 69 74 5f imul $0x5f74,0x69(%esi),%bp 89: 6d insl (%dx),%es:(%edi) 8a: 6d insl (%dx),%es:(%edi) ... bf: 00 be 86 6b 01 6b add %bh,0x6b016b86(%esi) c5: 75 6e jne 135 <____versions+0x135> c7: 6d insl (%dx),%es:(%edi) c8: 61 popa c9: 70 5f jo 12a <____versions+0x12a> cb: 61 popa cc: 74 6f je 13d <____versions+0x13d> ce: 6d insl (%dx),%es:(%edi) cf: 69 63 00 00 00 00 00 imul $0x0,0x0(%ebx),%esp ... fe: 00 00 add %al,(%eax) 100: df 39 fistpll (%ecx) 102: 1a af 5f 5f 63 72 sbb 0x72635f5f(%edi),%ch 108: 65 gs 109: 61 popa 10a: 74 65 je 171 <____versions+0x171> 10c: 5f pop %edi 10d: 77 6f ja 17e <____versions+0x17e> 10f: 72 6b jb 17c <____versions+0x17c> 111: 71 75 jno 188 <____versions+0x188> 113: 65 gs 114: 75 65 jne 17b <____versions+0x17b> ... 13e: 00 00 add %al,(%eax) 140: 37 aaa 141: 29 9e ed 6b 6d 61 sub %ebx,0x616d6bed(%esi) 147: 70 5f jo 1a8 <____versions+0x1a8> 149: 61 popa 14a: 74 6f je 1bb <____versions+0x1bb> 14c: 6d insl (%dx),%es:(%edi) 14d: 69 63 00 00 00 00 00 imul $0x0,0x0(%ebx),%esp ... 180: 90 nop 181: a5 movsl %ds:(%esi),%es:(%edi) 182: 5e pop %esi 183: ad lods %ds:(%esi),%eax 184: 6d insl (%dx),%es:(%edi) 185: 69 73 63 5f 72 65 67 imul $0x6765725f,0x63(%ebx),%esi 18c: 69 73 74 65 72 00 00 imul $0x7265,0x74(%ebx),%esi ... 1bf: 00 47 37 add %al,0x37(%edi) 1c2: d9 f0 f2xm1 1c4: 64 fs 1c5: 65 gs 1c6: 6c insb (%dx),%es:(%edi) 1c7: 5f pop %edi 1c8: 74 69 je 233 <____versions+0x233> 1ca: 6d insl (%dx),%es:(%edi) 1cb: 65 gs 1cc: 72 5f jb 22d <____versions+0x22d> 1ce: 73 79 jae 249 <____versions+0x249> 1d0: 6e outsb %ds:(%esi),(%dx) 1d1: 63 00 arpl %ax,(%eax) ... 1ff: 00 74 40 7d add %dh,0x7d(%eax,%eax,2) 203: 1b 70 72 sbb 0x72(%eax),%esi 206: 69 6e 74 6b 00 00 00 imul $0x6b,0x74(%esi),%ebp ... 23d: 00 00 add %al,(%eax) 23f: 00 f0 add %dh,%al 241: 5b pop %ebx 242: 07 pop %es 243: 01 70 61 add %esi,0x61(%eax) 246: 6e outsb %ds:(%esi),(%dx) 247: 69 63 00 00 00 00 00 imul $0x0,0x0(%ebx),%esp ... 27e: 00 00 add %al,(%eax) 280: 6e outsb %ds:(%esi),(%dx) 281: a8 47 test $0x47,%al 283: 85 64 65 73 test %esp,0x73(%ebp) 287: 74 72 je 2fb <____versions+0x2fb> 289: 6f outsl %ds:(%esi),(%dx) 28a: 79 5f jns 2eb <____versions+0x2eb> 28c: 77 6f ja 2fd <____versions+0x2fd> 28e: 72 6b jb 2fb <____versions+0x2fb> 290: 71 75 jno 307 <____versions+0x307> 292: 65 gs 293: 75 65 jne 2fa <____versions+0x2fa> ... 2bd: 00 00 add %al,(%eax) 2bf: 00 c3 add %al,%bl 2c1: 0c e4 or $0xe4,%al 2c3: fd std 2c4: 66 data16 2c5: 6c insb (%dx),%es:(%edi) 2c6: 75 73 jne 33b <____versions+0x33b> 2c8: 68 5f 77 6f 72 push $0x726f775f 2cd: 6b 71 75 65 imul $0x65,0x75(%ecx),%esi 2d1: 75 65 jne 338 <____versions+0x338> ... 2ff: 00 37 add %dh,(%edi) 301: 66 e9 26 72 jmpw 752b 305: 65 gs 306: 71 75 jno 37d <____versions+0x37d> 308: 65 gs 309: 73 74 jae 37f <____versions+0x37f> 30b: 5f pop %edi 30c: 69 72 71 00 00 00 00 imul $0x0,0x71(%edx),%esi ... 33f: 00 66 c8 add %ah,0xffffffc8(%esi) 342: 0d c8 69 6e 69 or $0x696e69c8,%eax 347: 74 5f je 3a8 <____versions+0x3a8> 349: 74 69 je 3b4 <____versions+0x3b4> 34b: 6d insl (%dx),%es:(%edi) 34c: 65 gs 34d: 72 00 jb 34f <____versions+0x34f> ... 37f: 00 7b 4a add %bh,0x4a(%ebx) 382: 22 1e and (%esi),%bl 384: 5f pop %edi 385: 5f pop %edi 386: 70 63 jo 3eb <____versions+0x3eb> 388: 69 5f 72 65 67 69 73 imul $0x73696765,0x72(%edi),%ebx 38f: 74 65 je 3f6 <____versions+0x3f6> 391: 72 5f jb 3f2 <____versions+0x3f2> 393: 64 fs 394: 72 69 jb 3ff <____versions+0x3ff> 396: 76 65 jbe 3fd <____versions+0x3fd> 398: 72 00 jb 39a <____versions+0x39a> ... 3be: 00 00 add %al,(%eax) 3c0: 5d pop %ebp 3c1: 6d insl (%dx),%es:(%edi) 3c2: eb eb jmp 3af <____versions+0x3af> 3c4: 6d insl (%dx),%es:(%edi) 3c5: 69 73 63 5f 64 65 72 imul $0x7265645f,0x63(%ebx),%esi 3cc: 65 67 69 73 74 65 72 addr16 imul $0x7265,%gs:116(%bp,%di),%esi 3d3: 00 00 ... 3fd: 00 00 add %al,(%eax) 3ff: 00 cc add %cl,%ah 401: bd c0 06 71 75 mov $0x757106c0,%ebp 406: 65 gs 407: 75 65 jne 46e <____versions+0x46e> 409: 5f pop %edi 40a: 64 fs 40b: 65 gs 40c: 6c insb (%dx),%es:(%edi) 40d: 61 popa 40e: 79 65 jns 475 <____versions+0x475> 410: 64 fs 411: 5f pop %edi 412: 77 6f ja 483 <____versions+0x483> 414: 72 6b jb 481 <____versions+0x481> ... 43e: 00 00 add %al,(%eax) 440: d8 ab 0d f2 66 72 fsubrs 0x7266f20d(%ebx) 446: 65 gs 447: 65 gs 448: 5f pop %edi 449: 69 72 71 00 00 00 00 imul $0x0,0x71(%edx),%esi ... 480: 19 ea sbb %ebp,%edx 482: 67 31 67 6c addr16 xor %esp,108(%bx) 486: 6f outsl %ds:(%esi),(%dx) 487: 62 61 6c bound %esp,0x6c(%ecx) 48a: 5f pop %edi 48b: 66 data16 48c: 6c insb (%dx),%es:(%edi) 48d: 75 73 jne 502 48f: 68 5f 74 6c 62 push $0x626c745f ... Disassembly of section .eh_frame: 00000000 <.eh_frame>: 0: 10 00 adc %al,(%eax) 2: 00 00 add %al,(%eax) 4: 00 00 add %al,(%eax) 6: 00 00 add %al,(%eax) 8: 01 00 add %eax,(%eax) a: 01 7c 08 0c add %edi,0xc(%eax,%ecx,1) e: 04 04 add $0x4,%al 10: 88 01 mov %al,(%ecx) 12: 00 00 add %al,(%eax) 14: 14 00 adc $0x0,%al 16: 00 00 add %al,(%eax) 18: 18 00 sbb %al,(%eax) 1a: 00 00 add %al,(%eax) 1c: 00 00 add %al,(%eax) 1e: 00 00 add %al,(%eax) 20: 98 cwtl 21: 00 00 add %al,(%eax) 23: 00 41 0e add %al,0xe(%ecx) 26: 08 85 02 42 0d 05 or %al,0x50d4202(%ebp) 2c: 14 00 adc $0x0,%al 2e: 00 00 add %al,(%eax) 30: 30 00 xor %al,(%eax) 32: 00 00 add %al,(%eax) 34: 98 cwtl 35: 00 00 add %al,(%eax) 37: 00 7a 00 add %bh,0x0(%edx) 3a: 00 00 add %al,(%eax) 3c: 41 inc %ecx 3d: 0e push %cs 3e: 08 85 02 42 0d 05 or %al,0x50d4202(%ebp) 44: 14 00 adc $0x0,%al 46: 00 00 add %al,(%eax) 48: 48 dec %eax 49: 00 00 add %al,(%eax) 4b: 00 12 add %dl,(%edx) 4d: 01 00 add %eax,(%eax) 4f: 00 2f add %ch,(%edi) 51: 00 00 add %al,(%eax) 53: 00 41 0e add %al,0xe(%ecx) 56: 08 85 02 42 0d 05 or %al,0x50d4202(%ebp) 5c: 14 00 adc $0x0,%al 5e: 00 00 add %al,(%eax) 60: 60 pusha 61: 00 00 add %al,(%eax) 63: 00 41 01 add %al,0x1(%ecx) 66: 00 00 add %al,(%eax) 68: cb lret 69: 01 00 add %eax,(%eax) 6b: 00 41 0e add %al,0xe(%ecx) 6e: 08 85 02 42 0d 05 or %al,0x50d4202(%ebp) 74: 14 00 adc $0x0,%al 76: 00 00 add %al,(%eax) 78: 78 00 js 7a <.eh_frame+0x7a> 7a: 00 00 add %al,(%eax) 7c: 0c 03 or $0x3,%al 7e: 00 00 add %al,(%eax) 80: 24 00 and $0x0,%al 82: 00 00 add %al,(%eax) 84: 41 inc %ecx 85: 0e push %cs 86: 08 85 02 42 0d 05 or %al,0x50d4202(%ebp) 8c: 14 00 adc $0x0,%al 8e: 00 00 add %al,(%eax) 90: 90 nop 91: 00 00 add %al,(%eax) 93: 00 30 add %dh,(%eax) 95: 03 00 add (%eax),%eax 97: 00 65 00 add %ah,0x0(%ebp) 9a: 00 00 add %al,(%eax) 9c: 41 inc %ecx 9d: 0e push %cs 9e: 08 85 02 42 0d 05 or %al,0x50d4202(%ebp) a4: 1c 00 sbb $0x0,%al a6: 00 00 add %al,(%eax) a8: a8 00 test $0x0,%al aa: 00 00 add %al,(%eax) ac: 95 xchg %eax,%ebp ad: 03 00 add (%eax),%eax af: 00 35 00 00 00 41 add %dh,0x41000000 b5: 0e push %cs b6: 08 85 02 42 0d 05 or %al,0x50d4202(%ebp) bc: 45 inc %ebp bd: 83 04 86 03 addl $0x3,(%esi,%eax,4) c1: 00 00 add %al,(%eax) c3: 00 18 add %bl,(%eax) c5: 00 00 add %al,(%eax) c7: 00 c8 add %cl,%al c9: 00 00 add %al,(%eax) cb: 00 ca add %cl,%dl cd: 03 00 add (%eax),%eax cf: 00 7f 00 add %bh,0x0(%edi) d2: 00 00 add %al,(%eax) d4: 41 inc %ecx d5: 0e push %cs d6: 08 85 02 42 0d 05 or %al,0x50d4202(%ebp) dc: 44 inc %esp dd: 83 03 00 addl $0x0,(%ebx) e0: 14 00 adc $0x0,%al e2: 00 00 add %al,(%eax) e4: e4 00 in $0x0,%al e6: 00 00 add %al,(%eax) e8: 49 dec %ecx e9: 04 00 add $0x0,%al eb: 00 4f 00 add %cl,0x0(%edi) ee: 00 00 add %al,(%eax) f0: 41 inc %ecx f1: 0e push %cs f2: 08 85 02 42 0d 05 or %al,0x50d4202(%ebp) Disassembly of section .data: 00000000 : ... Disassembly of section .gnu.linkonce.this_module: 00000000 <__this_module>: ... c: 63 72 6d arpl %si,0x6d(%edx) f: 6f outsl %ds:(%esi),(%dx) 10: 64 00 00 add %al,%fs:(%eax) ... Disassembly of section .bss: 00000000 : 0: 00 00 add %al,(%eax) ... 00000004 : 4: 00 00 add %al,(%eax) ... 00000008 : ... 00000024 : ... 00000040 : ... 00000080 : ... Disassembly of section .comment: 00000000 <.comment>: 0: 00 47 43 add %al,0x43(%edi) 3: 43 inc %ebx 4: 3a 20 cmp (%eax),%ah 6: 28 47 4e sub %al,0x4e(%edi) 9: 55 push %ebp a: 29 20 sub %esp,(%eax) c: 33 2e xor (%esi),%ebp e: 34 2e xor $0x2e,%al 10: 34 00 xor $0x0,%al 12: 00 47 43 add %al,0x43(%edi) 15: 43 inc %ebx 16: 3a 20 cmp (%eax),%ah 18: 28 47 4e sub %al,0x4e(%edi) #define LIST_HEAD(name) \ struct list_head name = LIST_HEAD_INIT(name) static inline void INIT_LIST_HEAD(struct list_head *list) { 1b: 55 push %ebp 1c: 29 20 sub %esp,(%eax) 1e: 33 2e xor (%esi),%ebp 20: 34 2e xor $0x2e,%al list->next = list; 22: 34 00 xor $0x0,%al Disassembly of section .debug_aranges: 00000000 <.debug_aranges>: 0: 1c 00 sbb $0x0,%al 2: 00 00 add %al,(%eax) 4: 02 00 add (%eax),%al 6: 00 00 add %al,(%eax) 8: 00 00 add %al,(%eax) a: 04 00 add $0x0,%al ... 14: 98 cwtl 15: 04 00 add $0x0,%al ... Disassembly of section .debug_pubnames: 00000000 <.debug_pubnames>: 0: b4 00 mov $0x0,%ah 2: 00 00 add %al,(%eax) 4: 02 00 add (%eax),%al 6: 00 00 add %al,(%eax) 8: 00 00 add %al,(%eax) a: 9b fwait b: bc 00 00 0d b0 mov $0xb00d0000,%esp 10: 00 00 add %al,(%eax) 12: 69 6e 69 74 5f 6d 6f imul $0x6f6d5f74,0x69(%esi),%ebp 19: 64 fs #define LIST_HEAD(name) \ struct list_head name = LIST_HEAD_INIT(name) static inline void INIT_LIST_HEAD(struct list_head *list) { 1a: 75 6c jne 88 <.debug_pubnames+0x88> 1c: 65 00 6b b0 add %ch,%gs:0xffffffb0(%ebx) 20: 00 00 add %al,(%eax) list->next = list; 22: 63 6c 65 61 arpl %bp,0x61(%ebp) 26: 6e outsb %ds:(%esi),(%dx) 27: 75 70 jne 99 <.debug_pubnames+0x99> list->prev = list; 29: 5f pop %edi 2a: 6d insl (%dx),%es:(%edi) 2b: 6f outsl %ds:(%esi),(%dx) 2c: 64 fs 2d: 75 6c jne 9b <.debug_pubnames+0x9b> 2f: 65 00 59 b1 add %bl,%gs:0xffffffb1(%ecx) 33: 00 00 add %al,(%eax) 35: 63 72 5f arpl %si,0x5f(%edx) 38: 69 6f 63 74 6c 00 c0 imul $0xc0006c74,0x63(%edi),%ebp 3f: b1 00 mov $0x0,%cl 41: 00 63 72 add %ah,0x72(%ebx) 44: 6d insl (%dx),%es:(%edi) 45: 6f outsl %ds:(%esi),(%dx) 46: 64 fs 47: 5f pop %edi 48: 63 68 65 arpl %bp,0x65(%eax) 4b: 63 6b 5f arpl %bp,0x5f(%ebx) 4e: 66 data16 4f: 75 6e jne bf <.debug_pubnames+0xbf> 51: 63 74 69 6f arpl %si,0x6f(%ecx,%ebp,2) 55: 6e outsb %ds:(%esi),(%dx) 56: 00 b2 b3 00 00 63 add %dh,0x630000b3(%edx) 5c: 72 5f jb bd <.debug_pubnames+0xbd> 5e: 70 63 jo c3 <.debug_pubnames+0xc3> 60: 69 5f 72 65 67 69 73 imul $0x73696765,0x72(%edi),%ebx 67: 74 65 je ce <.debug_pubnames+0xce> 69: 72 5f jb ca <.debug_pubnames+0xca> 6b: 64 fs 6c: 72 69 jb d7 <.debug_pubnames+0xd7> 6e: 76 65 jbe d5 <.debug_pubnames+0xd5> 70: 72 00 jb 72 <.debug_pubnames+0x72> 72: 02 b4 00 00 63 72 5f add 0x5f726300(%eax,%eax,1),%dh 79: 69 72 71 5f 68 61 6e imul $0x6e61685f,0x71(%edx),%esi 80: 64 fs 81: 6c insb (%dx),%es:(%edi) 82: 65 gs 83: 72 00 jb 85 <.debug_pubnames+0x85> 85: 70 b4 jo 3b <.debug_pubnames+0x3b> 87: 00 00 add %al,(%eax) 89: 63 72 5f arpl %si,0x5f(%edx) 8c: 72 65 jb f3 8e: 71 75 jno 105 <__func__.3+0xa> 90: 65 gs 91: 73 74 jae 107 <__func__.3+0xc> 93: 5f pop %edi 94: 69 72 71 00 11 b5 00 imul $0xb51100,0x71(%edx),%esi 9b: 00 63 72 add %ah,0x72(%ebx) * function may still be running on return from cancel_delayed_work(). Run * flush_scheduled_work() to wait on it. */ static inline int cancel_delayed_work(struct work_struct *work) { 9e: 5f pop %edi 9f: 66 data16 a0: 72 65 jb 107 <__func__.3+0xc> a2: 65 gs a3: 5f pop %edi a4: 69 72 71 00 c6 b9 00 imul $0xb9c600,0x71(%edx),%esi int ret; ret = del_timer_sync(&work->timer); ab: 00 63 72 add %ah,0x72(%ebx) ae: 5f pop %edi af: 66 6f outsw %ds:(%esi),(%dx) b1: 70 73 jo 126 if (ret) b3: 00 00 add %al,(%eax) b5: 00 00 add %al,(%eax) b7: 00 20 add %ah,(%eax) * you should call smp_mb__before_clear_bit() and/or smp_mb__after_clear_bit() * in order to ensure changes are visible on other processors. */ static inline void clear_bit(int nr, volatile unsigned long * addr) { b9: 00 00 add %al,(%eax) bb: 00 02 add %al,(%edx) bd: 00 9b bc 00 00 5b add %bl,0x5b0000bc(%ebx) c3: 43 inc %ebx c4: 00 00 add %al,(%eax) __asm__ __volatile__( LOCK_PREFIX c6: d1 42 00 roll 0x0(%edx) c9: 00 5f 5f add %bl,0x5f(%edi) cc: 74 68 je 136 ce: 69 73 5f 6d 6f 64 75 imul $0x75646f6d,0x5f(%ebx),%esi int ret; ret = del_timer_sync(&work->timer); if (ret) clear_bit(0, &work->pending); d5: 6c insb (%dx),%es:(%edi) d6: 65 00 00 add %al,%gs:(%eax) d9: 00 00 add %al,(%eax) ... Disassembly of section .debug_info: 00000000 <.debug_info>: 0: 97 xchg %eax,%edi 1: bc 00 00 02 00 mov $0x20000,%esp 6: 00 00 add %al,(%eax) 8: 00 00 add %al,(%eax) a: 04 01 add $0x1,%al c: 00 00 add %al,(%eax) e: 00 00 add %al,(%eax) 10: 98 cwtl 11: 04 00 add $0x0,%al 13: 00 00 add %al,(%eax) 15: 00 00 add %al,(%eax) 17: 00 47 4e add %al,0x4e(%edi) #define LIST_HEAD(name) \ struct list_head name = LIST_HEAD_INIT(name) static inline void INIT_LIST_HEAD(struct list_head *list) { 1a: 55 push %ebp 1b: 20 43 20 and %al,0x20(%ebx) 1e: 33 2e xor (%esi),%ebp 20: 34 2e xor $0x2e,%al list->next = list; 22: 34 00 xor $0x0,%al 24: 01 2f add %ebp,(%edi) 26: 73 63 jae 8b <.debug_info+0x8b> 28: 72 61 jb 8b <.debug_info+0x8b> list->prev = list; 2a: 74 63 je 8f <.debug_info+0x8f> 2c: 68 2f 66 69 2f push $0x2f69662f 31: 66 69 5f 6d 6f 64 imul $0x646f,0x6d(%edi),%bx 37: 75 6c jne a5 <.debug_info+0xa5> 39: 65 gs 3a: 2f das 3b: 63 72 6d arpl %si,0x6d(%edx) 3e: 6f outsl %ds:(%esi),(%dx) 3f: 64 2e 63 00 arpl %ax,%cs:%fs:(%eax) 43: 2f das 44: 73 63 jae a9 <.debug_info+0xa9> 46: 72 61 jb a9 <.debug_info+0xa9> 48: 74 63 je ad <.debug_info+0xad> 4a: 68 2f 66 69 2f push $0x2f69662f 4f: 6b 65 72 6e imul $0x6e,0x72(%ebp),%esp 53: 65 gs 54: 6c insb (%dx),%es:(%edi) 55: 73 2f jae 86 <.debug_info+0x86> 57: 63 6f 6d arpl %bp,0x6d(%edi) 5a: 70 69 jo c5 <.debug_info+0xc5> 5c: 6c insb (%dx),%es:(%edi) 5d: 65 gs 5e: 64 fs 5f: 5f pop %edi 60: 69 6d 61 67 65 73 2f imul $0x2f736567,0x61(%ebp),%ebp 67: 32 2e xor (%esi),%ch 69: 36 2e 31 38 xor %edi,%cs:%ss:(%eax) 6d: 2e 38 2d 66 69 2d 76 cmp %ch,%cs:0x762d6966 74: 6d insl (%dx),%es:(%edi) 75: 77 61 ja d8 <.debug_info+0xd8> 77: 72 65 jb de <.debug_info+0xde> 79: 00 02 add %al,(%edx) 7b: 69 6e 74 00 04 05 03 imul $0x3050400,0x74(%esi),%ebp 82: 91 xchg %eax,%ecx 83: 00 00 add %al,(%eax) 85: 00 98 00 00 00 04 add %bl,0x4000000(%eax) 8b: 91 xchg %eax,%ecx 8c: 00 00 add %al,(%eax) 8e: 00 1f add %bl,(%edi) 90: 00 05 97 03 00 00 add %al,0x397 96: 04 07 add $0x7,%al 98: 02 6c 6f 6e add 0x6e(%edi,%ebp,2),%ch 9c: 67 20 75 6e addr16 and %dh,110(%di) * function may still be running on return from cancel_delayed_work(). Run * flush_scheduled_work() to wait on it. */ static inline int cancel_delayed_work(struct work_struct *work) { a0: 73 69 jae 10b <.debug_info+0x10b> a2: 67 6e addr16 outsb %ds:(%si),(%dx) a4: 65 64 20 69 6e and %ch,%fs:%gs:0x6e(%ecx) int ret; ret = del_timer_sync(&work->timer); a9: 74 00 je ab <.debug_info+0xab> ab: 04 07 add $0x7,%al ad: 06 push %es ae: 04 b3 add $0xb3,%al b0: 00 00 add %al,(%eax) b2: 00 07 add %al,(%edi) if (ret) b4: bf 00 00 00 01 mov $0x1000000,%edi * you should call smp_mb__before_clear_bit() and/or smp_mb__after_clear_bit() * in order to ensure changes are visible on other processors. */ static inline void clear_bit(int nr, volatile unsigned long * addr) { b9: 08 7a 00 or %bh,0x0(%edx) bc: 00 00 add %al,(%eax) be: 00 09 add %cl,(%ecx) c0: 5f pop %edi c1: 5f pop %edi c2: 6b 65 72 6e imul $0x6e,0x72(%ebp),%esp __asm__ __volatile__( LOCK_PREFIX c6: 65 gs c7: 6c insb (%dx),%es:(%edi) c8: 5f pop %edi c9: 69 6e 6f 5f 74 00 0e imul $0xe00745f,0x6f(%esi),%ebp int ret; ret = del_timer_sync(&work->timer); if (ret) clear_bit(0, &work->pending); d0: 0a 98 00 00 00 09 or 0x9000000(%eax),%bl d6: 5f pop %edi d7: 5f pop %edi d8: 6b 65 72 6e imul $0x6e,0x72(%ebp),%esp dc: 65 gs dd: 6c insb (%dx),%es:(%edi) de: 5f pop %edi df: 6d insl (%dx),%es:(%edi) e0: 6f outsl %ds:(%esi),(%dx) e1: 64 fs e2: 65 gs e3: 5f pop %edi e4: 74 00 je e6 <.debug_info+0xe6> e6: 0e push %cs e7: 0b ec or %esp,%ebp e9: 00 00 add %al,(%eax) eb: 00 02 add %al,(%edx) ed: 73 68 jae 157 <.debug_info+0x157> ef: 6f outsl %ds:(%esi),(%dx) f0: 72 74 jb 166 <.debug_info+0x166> f2: 20 75 6e and %dh,0x6e(%ebp) f5: 73 69 jae 160 <.debug_info+0x160> f7: 67 6e addr16 outsb %ds:(%si),(%dx) f9: 65 64 20 69 6e and %ch,%fs:%gs:0x6e(%ecx) fe: 74 00 je 100 <.debug_info+0x100> 100: 02 07 add (%edi),%al 102: 02 6c 6f 6e add 0x6e(%edi,%ebp,2),%ch 106: 67 20 69 6e addr16 and %ch,110(%bx,%di) 10a: 74 00 je 10c <.debug_info+0x10c> 10c: 04 05 add $0x5,%al 10e: 09 5f 5f or %ebx,0x5f(%edi) 111: 6b 65 72 6e imul $0x6e,0x72(%ebp),%esp 115: 65 gs 116: 6c insb (%dx),%es:(%edi) 117: 5f pop %edi 118: 70 69 jo 183 <.debug_info+0x183> 11a: 64 fs 11b: 5f pop %edi 11c: 74 00 je 11e <.debug_info+0x11e> 11e: 0e push %cs 11f: 0e push %cs 120: 7a 00 jp 122 <.debug_info+0x122> 122: 00 00 add %al,(%eax) 124: 09 5f 5f or %ebx,0x5f(%edi) 127: 6b 65 72 6e imul $0x6e,0x72(%ebp),%esp 12b: 65 gs 12c: 6c insb (%dx),%es:(%edi) 12d: 5f pop %edi 12e: 73 69 jae 199 <.debug_info+0x199> 130: 7a 65 jp 197 <.debug_info+0x197> 132: 5f pop %edi 133: 74 00 je 135 <.debug_info+0x135> 135: 0e push %cs 136: 12 3b adc (%ebx),%bh 138: 01 00 add %eax,(%eax) 13a: 00 05 97 03 00 00 add %al,0x397 140: 04 07 add $0x7,%al 142: 09 5f 5f or %ebx,0x5f(%edi) 145: 6b 65 72 6e imul $0x6e,0x72(%ebp),%esp 149: 65 gs 14a: 6c insb (%dx),%es:(%edi) 14b: 5f pop %edi 14c: 73 73 jae 1c1 <.debug_info+0x1c1> 14e: 69 7a 65 5f 74 00 0e imul $0xe00745f,0x65(%edx),%edi 155: 13 7a 00 adc 0x0(%edx),%edi 158: 00 00 add %al,(%eax) 15a: 09 5f 5f or %ebx,0x5f(%edi) 15d: 6b 65 72 6e imul $0x6e,0x72(%ebp),%esp 161: 65 gs 162: 6c insb (%dx),%es:(%edi) 163: 5f pop %edi 164: 74 69 je 1cf <.debug_info+0x1cf> 166: 6d insl (%dx),%es:(%edi) 167: 65 gs 168: 5f pop %edi 169: 74 00 je 16b <.debug_info+0x16b> 16b: 0e push %cs 16c: 15 02 01 00 00 adc $0x102,%eax 171: 09 5f 5f or %ebx,0x5f(%edi) 174: 6b 65 72 6e imul $0x6e,0x72(%ebp),%esp 178: 65 gs 179: 6c insb (%dx),%es:(%edi) 17a: 5f pop %edi 17b: 63 6c 6f 63 arpl %bp,0x63(%edi,%ebp,2) 17f: 6b 5f 74 00 imul $0x0,0x74(%edi),%ebx 183: 0e push %cs 184: 17 pop %ss 185: 02 01 add (%ecx),%al 187: 00 00 add %al,(%eax) 189: 09 5f 5f or %ebx,0x5f(%edi) 18c: 6b 65 72 6e imul $0x6e,0x72(%ebp),%esp 190: 65 gs 191: 6c insb (%dx),%es:(%edi) 192: 5f pop %edi 193: 74 69 je 1fe <.debug_info+0x1fe> 195: 6d insl (%dx),%es:(%edi) 196: 65 gs 197: 72 5f jb 1f8 <.debug_info+0x1f8> 199: 74 00 je 19b <.debug_info+0x19b> 19b: 0e push %cs * The "pgd_xxx()" functions here are trivial for a folded two-level * setup: the pud is never bad, and a pud always exists (as it's folded * into the pgd entry) */ static inline int pgd_none(pgd_t pgd) { return 0; } 19c: 18 7a 00 sbb %bh,0x0(%edx) 19f: 00 00 add %al,(%eax) 1a1: 09 5f 5f or %ebx,0x5f(%edi) 1a4: 6b 65 72 6e imul $0x6e,0x72(%ebp),%esp 1a8: 65 gs 1a9: 6c insb (%dx),%es:(%edi) 1aa: 5f pop %edi 1ab: 63 6c 6f 63 arpl %bp,0x63(%edi,%ebp,2) 1af: 6b 69 64 5f imul $0x5f,0x64(%ecx),%ebp 1b3: 74 00 je 1b5 <.debug_info+0x1b5> 1b5: 0e push %cs 1b6: 19 7a 00 sbb %edi,0x0(%edx) 1b9: 00 00 add %al,(%eax) 1bb: 06 push %es 1bc: 04 c1 add $0xc1,%al 1be: 01 00 add %eax,(%eax) */ #define set_pgd(pgdptr, pgdval) set_pud((pud_t *)(pgdptr), (pud_t) { pgdval }) static inline pud_t * pud_offset(pgd_t * pgd, unsigned long address) { 1c0: 00 02 add %al,(%edx) 1c2: 63 68 61 arpl %bp,0x61(%eax) 1c5: 72 00 jb 1c7 <.debug_info+0x1c7> 1c7: 01 06 add %eax,(%esi) 1c9: 09 5f 5f or %ebx,0x5f(%edi) return (pud_t *)pgd; 1cc: 6b 65 72 6e imul $0x6e,0x72(%ebp),%esp 1d0: 65 gs 1d1: 6c insb (%dx),%es:(%edi) 1d2: 5f pop %edi 1d3: 75 69 jne 23e <.debug_info+0x23e> 1d5: 64 33 32 xor %fs:(%edx),%esi 1d8: 5f pop %edi 1d9: 74 00 je 1db <.debug_info+0x1db> 1db: 0e push %cs 1dc: 1e push %ds 1dd: 3b 01 cmp (%ecx),%eax 1df: 00 00 add %al,(%eax) 1e1: 09 5f 5f or %ebx,0x5f(%edi) 1e4: 6b 65 72 6e imul $0x6e,0x72(%ebp),%esp 1e8: 65 gs 1e9: 6c insb (%dx),%es:(%edi) 1ea: 5f pop %edi 1eb: 67 69 64 33 32 5f 74 addr16 imul $0x745f32,51(%si),%esp 1f2: 00 1f3: 0e push %cs 1f4: 1f pop %ds 1f5: 3b 01 cmp (%ecx),%eax 1f7: 00 00 add %al,(%eax) 1f9: 09 5f 5f or %ebx,0x5f(%edi) 1fc: 6b 65 72 6e imul $0x6e,0x72(%ebp),%esp 200: 65 gs 201: 6c insb (%dx),%es:(%edi) 202: 5f pop %edi 203: 6c insb (%dx),%es:(%edi) 204: 6f outsl %ds:(%esi),(%dx) 205: 66 66 5f pop %di 208: 74 00 je 20a <.debug_info+0x20a> 20a: 0e push %cs 20b: 26 10 02 adc %al,%es:(%edx) 20e: 00 00 add %al,(%eax) 210: 02 6c 6f 6e add 0x6e(%edi,%ebp,2),%ch 214: 67 20 6c 6f addr16 and %ch,111(%si) 218: 6e outsb %ds:(%esi),(%dx) 219: 67 20 69 6e addr16 and %ch,110(%bx,%di) 21d: 74 00 je 21f <.debug_info+0x21f> 21f: 08 05 09 75 6d 6f or %al,0x6f6d7509 225: 64 fs 226: 65 gs 227: 5f pop %edi 228: 74 00 je 22a <.debug_info+0x22a> 22a: 0c 06 or $0x6,%al 22c: ec in (%dx),%al 22d: 00 00 add %al,(%eax) 22f: 00 09 add %cl,(%ecx) 231: 5f pop %edi 232: 5f pop %edi 233: 73 38 jae 26d <.debug_info+0x26d> 235: 00 0c 0d 3c 02 00 00 add %cl,0x23c(,%ecx,1) 23c: 02 73 69 add 0x69(%ebx),%dh 23f: 67 6e addr16 outsb %ds:(%si),(%dx) 241: 65 64 20 63 68 and %ah,%fs:%gs:0x68(%ebx) 246: 61 popa 247: 72 00 jb 249 <.debug_info+0x249> 249: 01 06 add %eax,(%esi) 24b: 09 5f 5f or %ebx,0x5f(%edi) 24e: 75 38 jne 288 <.debug_info+0x288> 250: 00 0c 0e add %cl,(%esi,%ecx,1) 253: 57 push %edi 254: 02 00 add (%eax),%al 256: 00 02 add %al,(%edx) 258: 75 6e jne 2c8 <.debug_info+0x2c8> 25a: 73 69 jae 2c5 <.debug_info+0x2c5> 25c: 67 6e addr16 outsb %ds:(%si),(%dx) #define pte_page(x) pfn_to_page(pte_pfn(x)) static inline int pte_none(pte_t pte) { 25e: 65 64 20 63 68 and %ah,%fs:%gs:0x68(%ebx) 263: 61 popa 264: 72 00 jb 266 <.debug_info+0x266> 266: 01 08 add %ecx,(%eax) 268: 09 5f 5f or %ebx,0x5f(%edi) return !pte.pte_low && !pte.pte_high; 26b: 73 31 jae 29e <.debug_info+0x29e> 26d: 36 00 0c 10 add %cl,%ss:(%eax,%edx,1) 271: 75 02 jne 275 <.debug_info+0x275> 273: 00 00 add %al,(%eax) 275: 02 73 68 add 0x68(%ebx),%dh 278: 6f outsl %ds:(%esi),(%dx) 279: 72 74 jb 2ef <.debug_info+0x2ef> 27b: 20 69 6e and %ch,0x6e(%ecx) 27e: 74 00 je 280 <.debug_info+0x280> 280: 02 05 09 5f 5f 75 add 0x755f5f09,%al 286: 31 36 xor %esi,(%esi) 288: 00 0c 11 add %cl,(%ecx,%edx,1) 28b: ec in (%dx),%al 28c: 00 00 add %al,(%eax) 28e: 00 09 add %cl,(%ecx) 290: 5f pop %edi 291: 5f pop %edi 292: 73 33 jae 2c7 <.debug_info+0x2c7> 294: 32 00 xor (%eax),%al 296: 0c 13 or $0x13,%al 298: 7a 00 jp 29a <.debug_info+0x29a> 29a: 00 00 add %al,(%eax) 29c: 09 5f 5f or %ebx,0x5f(%edi) 29f: 75 33 jne 2d4 <.debug_info+0x2d4> 2a1: 32 00 xor (%eax),%al 2a3: 0c 14 or $0x14,%al 2a5: 3b 01 cmp (%ecx),%eax 2a7: 00 00 add %al,(%eax) 2a9: 09 5f 5f or %ebx,0x5f(%edi) * this function */ static inline unsigned long virt_to_phys(volatile void * address) { 2ac: 73 36 jae 2e4 <.debug_info+0x2e4> 2ae: 34 00 xor $0x0,%al 2b0: 0c 17 or $0x17,%al return __pa(address); 2b2: 10 02 adc %al,(%edx) 2b4: 00 00 add %al,(%eax) 2b6: 09 5f 5f or %ebx,0x5f(%edi) 2b9: 75 36 jne 2f1 <.debug_info+0x2f1> 2bb: 34 00 xor $0x0,%al 2bd: 0c 18 or $0x18,%al 2bf: c3 ret 2c0: 02 00 add (%eax),%al 2c2: 00 02 add %al,(%edx) 2c4: 6c insb (%dx),%es:(%edi) 2c5: 6f outsl %ds:(%esi),(%dx) 2c6: 6e outsb %ds:(%esi),(%dx) 2c7: 67 20 6c 6f addr16 and %ch,111(%si) 2cb: 6e outsb %ds:(%esi),(%dx) 2cc: 67 20 75 6e addr16 and %dh,110(%di) 2d0: 73 69 jae 33b <.debug_info+0x33b> 2d2: 67 6e addr16 outsb %ds:(%si),(%dx) 2d4: 65 64 20 69 6e and %ch,%fs:%gs:0x6e(%ecx) 2d9: 74 00 je 2db <.debug_info+0x2db> 2db: 08 07 or %al,(%edi) 2dd: 09 73 38 or %esi,0x38(%ebx) 2e0: 00 0c 27 add %cl,(%edi) 2e3: 3c 02 cmp $0x2,%al 2e5: 00 00 add %al,(%eax) 2e7: 09 75 38 or %esi,0x38(%ebp) 2ea: 00 0c 28 add %cl,(%eax,%ebp,1) 2ed: 57 push %edi 2ee: 02 00 add (%eax),%al 2f0: 00 09 add %cl,(%ecx) 2f2: 75 33 jne 327 <.debug_info+0x327> 2f4: 32 00 xor (%eax),%al 2f6: 0c 2e or $0x2e,%al 2f8: 3b 01 cmp (%ecx),%eax 2fa: 00 00 add %al,(%eax) 2fc: 09 73 36 or %esi,0x36(%ebx) 2ff: 34 00 xor $0x0,%al 301: 0c 30 or $0x30,%al 303: 10 02 adc %al,(%edx) 305: 00 00 add %al,(%eax) 307: 09 75 36 or %esi,0x36(%ebp) 30a: 34 00 xor $0x0,%al 30c: 0c 31 or $0x31,%al 30e: c3 ret 30f: 02 00 add (%eax),%al 311: 00 09 add %cl,(%ecx) 313: 73 65 jae 37a <.debug_info+0x37a> 315: 63 74 6f 72 arpl %si,0x72(%edi,%ebp,2) 319: 5f pop %edi 31a: 74 00 je 31c <.debug_info+0x31c> 31c: 0c 3d or $0x3d,%al 31e: 07 pop %es 31f: 03 00 add (%eax),%eax 321: 00 09 add %cl,(%ecx) 323: 5f pop %edi 324: 5f pop %edi 325: 6b 65 72 6e imul $0x6e,0x72(%ebp),%esp 329: 65 gs 32a: 6c insb (%dx),%es:(%edi) 32b: 5f pop %edi 32c: 64 fs 32d: 65 gs 32e: 76 5f jbe 38f <.debug_info+0x38f> 330: 74 00 je 332 <.debug_info+0x332> 332: 0d 13 9c 02 00 or $0x29c13,%eax 337: 00 09 add %cl,(%ecx) 339: 64 fs 33a: 65 gs 33b: 76 5f jbe 39c <.debug_info+0x39c> 33d: 74 00 je 33f <.debug_info+0x33f> 33f: 0d 16 22 03 00 or $0x32216,%eax 344: 00 09 add %cl,(%ecx) 346: 69 6e 6f 5f 74 00 0d imul $0xd00745f,0x6f(%esi),%ebp 34d: 17 pop %ss 34e: bf 00 00 00 09 mov $0x9000000,%edi 353: 6d insl (%dx),%es:(%edi) 354: 6f outsl %ds:(%esi),(%dx) 355: 64 fs 356: 65 gs 357: 5f pop %edi 358: 74 00 je 35a <.debug_info+0x35a> 35a: 0d 18 d5 00 00 or $0xd518,%eax 35f: 00 09 add %cl,(%ecx) 361: 70 69 jo 3cc <.debug_info+0x3cc> 363: 64 fs 364: 5f pop %edi 365: 74 00 je 367 <.debug_info+0x367> 367: 0d 1b 0e 01 00 or $0x10e1b,%eax 36c: 00 09 add %cl,(%ecx) 36e: 74 69 je 3d9 <.debug_info+0x3d9> 370: 6d insl (%dx),%es:(%edi) 371: 65 gs 372: 72 5f jb 3d3 <.debug_info+0x3d3> 374: 74 00 je 376 <.debug_info+0x376> 376: 0d 1f 89 01 00 or $0x1891f,%eax 37b: 00 09 add %cl,(%ecx) 37d: 63 6c 6f 63 arpl %bp,0x63(%edi,%ebp,2) 381: 6b 69 64 5f imul $0x5f,0x64(%ecx),%ebp 385: 74 00 je 387 <.debug_info+0x387> 387: 0d 20 a1 01 00 or $0x1a120,%eax 38c: 00 09 add %cl,(%ecx) 38e: 75 69 jne 3f9 <.debug_info+0x3f9> 390: 64 fs 391: 5f pop %edi 392: 74 00 je 394 <.debug_info+0x394> 394: 0d 24 c9 01 00 or $0x1c924,%eax 399: 00 09 add %cl,(%ecx) 39b: 67 69 64 5f 74 00 0d addr16 imul $0x250d0074,95(%si),%esp 3a2: 25 3a3: e1 01 loope 3a6 <.debug_info+0x3a6> 3a5: 00 00 add %al,(%eax) 3a7: 09 6c 6f 66 or %ebp,0x66(%edi,%ebp,2) 3ab: 66 5f pop %di 3ad: 74 00 je 3af <.debug_info+0x3af> 3af: 0d 38 f9 01 00 or $0x1f938,%eax 3b4: 00 09 add %cl,(%ecx) 3b6: 73 69 jae 421 <.debug_info+0x421> 3b8: 7a 65 jp 41f <.debug_info+0x41f> 3ba: 5f pop %edi 3bb: 74 00 je 3bd <.debug_info+0x3bd> 3bd: 0d 41 24 01 00 or $0x12441,%eax 3c2: 00 09 add %cl,(%ecx) 3c4: 73 73 jae 439 <.debug_info+0x439> 3c6: 69 7a 65 5f 74 00 0d imul $0xd00745f,0x65(%edx),%edi 3cd: 46 inc %esi 3ce: 42 inc %edx 3cf: 01 00 add %eax,(%eax) 3d1: 00 09 add %cl,(%ecx) 3d3: 74 69 je 43e <.debug_info+0x43e> 3d5: 6d insl (%dx),%es:(%edi) 3d6: 65 gs 3d7: 5f pop %edi 3d8: 74 00 je 3da <.debug_info+0x3da> 3da: 0d 50 5a 01 00 or $0x15a50,%eax 3df: 00 09 add %cl,(%ecx) 3e1: 63 6c 6f 63 arpl %bp,0x63(%edi,%ebp,2) 3e5: 6b 5f 74 00 imul $0x0,0x74(%edi),%ebx 3e9: 0d 55 71 01 00 or $0x17155,%eax 3ee: 00 09 add %cl,(%ecx) 3f0: 62 6c 6b 63 bound %ebp,0x63(%ebx,%ebp,2) 3f4: 6e outsb %ds:(%esi),(%dx) 3f5: 74 5f je 456 <.debug_info+0x456> 3f7: 74 00 je 3f9 <.debug_info+0x3f9> 3f9: 0d 8c 98 00 00 or $0x988c,%eax 3fe: 00 09 add %cl,(%ecx) 400: 67 addr16 401: 66 data16 402: 70 5f jo 463 <.debug_info+0x463> 404: 74 00 je 406 <.debug_info+0x406> 406: 0d b3 3b 01 00 or $0x13bb3,%eax 40b: 00 09 add %cl,(%ecx) 40d: 72 65 jb 474 <.debug_info+0x474> 40f: 73 6f jae 480 <.debug_info+0x480> 411: 75 72 jne 485 <.debug_info+0x485> 413: 63 65 5f arpl %sp,0x5f(%ebp) 416: 73 69 jae 481 <.debug_info+0x481> 418: 7a 65 jp 47f <.debug_info+0x47f> 41a: 5f pop %edi 41b: 74 00 je 41d <.debug_info+0x41d> 41d: 0d b6 07 03 00 or $0x307b6,%eax 422: 00 0a add %cl,(%edx) 424: 79 04 jns 42a <.debug_info+0x42a> 426: 00 00 add %al,(%eax) 428: db 02 fildl (%edx) 42a: 00 00 add %al,(%eax) 42c: 14 49 adc $0x49,%al 42e: 0d 0b 66 6e 00 or $0x6e660b,%eax 433: 49 dec %ecx 434: 0e push %cs 435: 8f 04 00 popl (%eax,%eax,1) 438: 00 02 add %al,(%edx) 43a: 23 00 and (%eax),%eax 43c: 0b 61 72 or 0x72(%ecx),%esp 43f: 67 30 00 addr16 xor %al,(%bx,%si) 442: 49 dec %ecx 443: 0f 98 00 sets (%eax) 446: 00 00 add %al,(%eax) 448: 02 23 add (%ebx),%ah 44a: 04 0b add $0xb,%al 44c: 61 popa 44d: 72 67 jb 4b6 <.debug_info+0x4b6> 44f: 31 00 xor %eax,(%eax) 451: 49 dec %ecx 452: 0f 98 00 sets (%eax) 455: 00 00 add %al,(%eax) 457: 02 23 add (%ebx),%ah 459: 08 0b or %cl,(%ebx) 45b: 61 popa 45c: 72 67 jb 4c5 <.debug_info+0x4c5> 45e: 32 00 xor (%eax),%al 460: 49 dec %ecx 461: 0f 98 00 sets (%eax) 464: 00 00 add %al,(%eax) 466: 02 23 add (%ebx),%ah 468: 0c 0b or $0xb,%al 46a: 61 popa 46b: 72 67 jb 4d4 <.debug_info+0x4d4> 46d: 33 00 xor (%eax),%eax 46f: 49 dec %ecx 470: 0f 98 00 sets (%eax) 473: 00 00 add %al,(%eax) 475: 02 23 add (%ebx),%ah 477: 10 00 adc %al,(%eax) 479: 0c 89 or $0x89,%al 47b: 04 00 add $0x0,%al 47d: 00 01 add %al,(%ecx) 47f: 02 01 add (%ecx),%al 481: 00 00 add %al,(%eax) 483: 08 89 04 00 00 00 or %cl,0x4(%ecx) 489: 06 push %es 48a: 04 23 add $0x23,%al 48c: 04 00 add $0x0,%al 48e: 00 06 add %al,(%esi) 490: 04 79 add $0x79,%al 492: 04 00 add $0x0,%al 494: 00 0d c3 04 00 00 add %cl,0x4c3 49a: 08 18 or %bl,(%eax) 49c: 2f das 49d: 0b 70 74 or 0x74(%eax),%esi 4a0: 65 gs 4a1: 5f pop %edi 4a2: 6c insb (%dx),%es:(%edi) 4a3: 6f outsl %ds:(%esi),(%dx) 4a4: 77 00 ja 4a6 <.debug_info+0x4a6> 4a6: 18 2f sbb %ch,(%edi) 4a8: 98 cwtl 4a9: 00 00 add %al,(%eax) 4ab: 00 02 add %al,(%edx) 4ad: 23 00 and (%eax),%eax 4af: 0b 70 74 or 0x74(%eax),%esi 4b2: 65 gs 4b3: 5f pop %edi 4b4: 68 69 67 68 00 push $0x686769 4b9: 18 2f sbb %ch,(%edi) 4bb: 98 cwtl 4bc: 00 00 add %al,(%eax) 4be: 00 02 add %al,(%edx) 4c0: 23 04 00 and (%eax,%eax,1),%eax 4c3: 09 70 74 or %esi,0x74(%eax) 4c6: 65 gs 4c7: 5f pop %edi 4c8: 74 00 je 4ca <.debug_info+0x4ca> 4ca: 18 2f sbb %ch,(%edi) 4cc: 95 xchg %eax,%ebp 4cd: 04 00 add $0x0,%al 4cf: 00 0d e7 04 00 00 add %cl,0x4e7 4d5: 08 18 or %bl,(%eax) 4d7: 30 0b xor %cl,(%ebx) 4d9: 70 6d jo 548 <.debug_info+0x548> 4db: 64 00 18 add %bl,%fs:(%eax) 4de: 30 c3 xor %al,%bl 4e0: 02 00 add (%eax),%al 4e2: 00 02 add %al,(%edx) 4e4: 23 00 and (%eax),%eax 4e6: 00 09 add %cl,(%ecx) 4e8: 70 6d jo 557 <.debug_info+0x557> 4ea: 64 fs 4eb: 5f pop %edi 4ec: 74 00 je 4ee <.debug_info+0x4ee> 4ee: 18 30 sbb %dh,(%eax) 4f0: d0 04 00 rolb (%eax,%eax,1) 4f3: 00 0d 0b 05 00 00 add %cl,0x50b 4f9: 08 18 or %bl,(%eax) 4fb: 31 0b xor %ecx,(%ebx) 4fd: 70 67 jo 566 <.debug_info+0x566> 4ff: 64 00 18 add %bl,%fs:(%eax) 502: 31 c3 xor %eax,%ebx 504: 02 00 add (%eax),%al 506: 00 02 add %al,(%edx) 508: 23 00 and (%eax),%eax 50a: 00 09 add %cl,(%ecx) 50c: 70 67 jo 575 <.debug_info+0x575> 50e: 64 fs 50f: 5f pop %edi 510: 74 00 je 512 <.debug_info+0x512> 512: 18 31 sbb %dh,(%ecx) 514: f4 hlt 515: 04 00 add $0x0,%al 517: 00 0d 32 05 00 00 add %cl,0x532 51d: 08 18 or %bl,(%eax) 51f: 32 0b xor (%ebx),%cl 521: 70 67 jo 58a <.debug_info+0x58a> 523: 70 72 jo 597 <.debug_info+0x597> 525: 6f outsl %ds:(%esi),(%dx) 526: 74 00 je 528 <.debug_info+0x528> 528: 18 32 sbb %dh,(%edx) 52a: c3 ret 52b: 02 00 add (%eax),%al 52d: 00 02 add %al,(%edx) 52f: 23 00 and (%eax),%eax 531: 00 09 add %cl,(%ecx) 533: 70 67 jo 59c <.debug_info+0x59c> 535: 70 72 jo 5a9 <.debug_info+0x5a9> 537: 6f outsl %ds:(%esi),(%dx) 538: 74 5f je 599 <.debug_info+0x599> 53a: 74 00 je 53c <.debug_info+0x53c> 53c: 18 32 sbb %dh,(%edx) 53e: 18 05 00 00 0e f0 sbb %al,0xf00e0000 544: 06 push %es 545: 00 00 add %al,(%eax) 547: 76 6d jbe 5b6 <.debug_info+0x5b6> 549: 38 36 cmp %dh,(%esi) 54b: 5f pop %edi 54c: 72 65 jb 5b3 <.debug_info+0x5b3> 54e: 67 73 00 addr16 jae 551 <.debug_info+0x551> 551: 54 push %esp 552: 14 48 adc $0x48,%al 554: 0b 65 62 or 0x62(%ebp),%esp 557: 78 00 js 559 <.debug_info+0x559> 559: 14 4c adc $0x4c,%al 55b: 02 01 add (%ecx),%al 55d: 00 00 add %al,(%eax) 55f: 02 23 add (%ebx),%ah 561: 00 0b add %cl,(%ebx) 563: 65 63 78 00 arpl %di,%gs:0x0(%eax) 567: 14 4d adc $0x4d,%al 569: 02 01 add (%ecx),%al 56b: 00 00 add %al,(%eax) 56d: 02 23 add (%ebx),%ah 56f: 04 0b add $0xb,%al 571: 65 gs 572: 64 fs 573: 78 00 js 575 <.debug_info+0x575> 575: 14 4e adc $0x4e,%al 577: 02 01 add (%ecx),%al 579: 00 00 add %al,(%eax) 57b: 02 23 add (%ebx),%ah 57d: 08 0b or %cl,(%ebx) 57f: 65 gs 580: 73 69 jae 5eb <.debug_info+0x5eb> 582: 00 14 4f add %dl,(%edi,%ecx,2) 585: 02 01 add (%ecx),%al 587: 00 00 add %al,(%eax) 589: 02 23 add (%ebx),%ah 58b: 0c 0b or $0xb,%al 58d: 65 64 69 00 14 50 02 imul $0x1025014,%fs:%gs:(%eax),%eax 594: 01 595: 00 00 add %al,(%eax) 597: 02 23 add (%ebx),%ah 599: 10 0b adc %cl,(%ebx) 59b: 65 62 70 00 bound %esi,%gs:0x0(%eax) 59f: 14 51 adc $0x51,%al 5a1: 02 01 add (%ecx),%al 5a3: 00 00 add %al,(%eax) 5a5: 02 23 add (%ebx),%ah 5a7: 14 0b adc $0xb,%al 5a9: 65 gs 5aa: 61 popa 5ab: 78 00 js 5ad <.debug_info+0x5ad> 5ad: 14 52 adc $0x52,%al 5af: 02 01 add (%ecx),%al 5b1: 00 00 add %al,(%eax) 5b3: 02 23 add (%ebx),%ah 5b5: 18 0b sbb %cl,(%ebx) 5b7: 5f pop %edi 5b8: 5f pop %edi 5b9: 6e outsb %ds:(%esi),(%dx) 5ba: 75 6c jne 628 <.debug_info+0x628> 5bc: 6c insb (%dx),%es:(%edi) 5bd: 5f pop %edi 5be: 64 fs 5bf: 73 00 jae 5c1 <.debug_info+0x5c1> 5c1: 14 53 adc $0x53,%al 5c3: 02 01 add (%ecx),%al 5c5: 00 00 add %al,(%eax) 5c7: 02 23 add (%ebx),%ah 5c9: 1c 0b sbb $0xb,%al 5cb: 5f pop %edi 5cc: 5f pop %edi 5cd: 6e outsb %ds:(%esi),(%dx) 5ce: 75 6c jne 63c <.debug_info+0x63c> 5d0: 6c insb (%dx),%es:(%edi) 5d1: 5f pop %edi 5d2: 65 gs 5d3: 73 00 jae 5d5 <.debug_info+0x5d5> 5d5: 14 54 adc $0x54,%al 5d7: 02 01 add (%ecx),%al 5d9: 00 00 add %al,(%eax) 5db: 02 23 add (%ebx),%ah 5dd: 20 0b and %cl,(%ebx) 5df: 5f pop %edi 5e0: 5f pop %edi 5e1: 6e outsb %ds:(%esi),(%dx) 5e2: 75 6c jne 650 <.debug_info+0x650> 5e4: 6c insb (%dx),%es:(%edi) 5e5: 5f pop %edi 5e6: 66 data16 5e7: 73 00 jae 5e9 <.debug_info+0x5e9> 5e9: 14 55 adc $0x55,%al 5eb: 02 01 add (%ecx),%al 5ed: 00 00 add %al,(%eax) 5ef: 02 23 add (%ebx),%ah 5f1: 24 0b and $0xb,%al 5f3: 5f pop %edi 5f4: 5f pop %edi 5f5: 6e outsb %ds:(%esi),(%dx) 5f6: 75 6c jne 664 <.debug_info+0x664> 5f8: 6c insb (%dx),%es:(%edi) 5f9: 5f pop %edi 5fa: 67 73 00 addr16 jae 5fd <.debug_info+0x5fd> 5fd: 14 56 adc $0x56,%al 5ff: 02 01 add (%ecx),%al 601: 00 00 add %al,(%eax) 603: 02 23 add (%ebx),%ah 605: 28 0f sub %cl,(%edi) 607: cd 02 int $0x2 609: 00 00 add %al,(%eax) 60b: 14 57 adc $0x57,%al 60d: 02 01 add (%ecx),%al 60f: 00 00 add %al,(%eax) 611: 02 23 add (%ebx),%ah 613: 2c 0b sub $0xb,%al 615: 65 69 70 00 14 58 02 imul $0x1025814,%gs:0x0(%eax),%esi 61c: 01 61d: 00 00 add %al,(%eax) 61f: 02 23 add (%ebx),%ah 621: 30 0b xor %cl,(%ebx) 623: 63 73 00 arpl %si,0x0(%ebx) 626: 14 59 adc $0x59,%al 628: ec in (%dx),%al 629: 00 00 add %al,(%eax) 62b: 00 02 add %al,(%edx) 62d: 23 34 0b and (%ebx,%ecx,1),%esi 630: 5f pop %edi 631: 5f pop %edi 632: 63 73 68 arpl %si,0x68(%ebx) 635: 00 14 59 add %dl,(%ecx,%ebx,2) 638: ec in (%dx),%al 639: 00 00 add %al,(%eax) 63b: 00 02 add %al,(%edx) 63d: 23 36 and (%esi),%esi 63f: 0b 65 66 or 0x66(%ebp),%esp 642: 6c insb (%dx),%es:(%edi) 643: 61 popa 644: 67 73 00 addr16 jae 647 <.debug_info+0x647> 647: 14 5a adc $0x5a,%al 649: 02 01 add (%ecx),%al 64b: 00 00 add %al,(%eax) 64d: 02 23 add (%ebx),%ah 64f: 38 0b cmp %cl,(%ebx) 651: 65 gs 652: 73 70 jae 6c4 <.debug_info+0x6c4> 654: 00 14 5b add %dl,(%ebx,%ebx,2) 657: 02 01 add (%ecx),%al 659: 00 00 add %al,(%eax) 65b: 02 23 add (%ebx),%ah 65d: 3c 0b cmp $0xb,%al 65f: 73 73 jae 6d4 <.debug_info+0x6d4> 661: 00 14 5c add %dl,(%esp,%ebx,2) 664: ec in (%dx),%al 665: 00 00 add %al,(%eax) 667: 00 02 add %al,(%edx) 669: 23 40 0b and 0xb(%eax),%eax 66c: 5f pop %edi 66d: 5f pop %edi 66e: 73 73 jae 6e3 <.debug_info+0x6e3> 670: 68 00 14 5c ec push $0xec5c1400 675: 00 00 add %al,(%eax) 677: 00 02 add %al,(%edx) 679: 23 42 0b and 0xb(%edx),%eax 67c: 65 gs 67d: 73 00 jae 67f <.debug_info+0x67f> 67f: 14 60 adc $0x60,%al 681: ec in (%dx),%al 682: 00 00 add %al,(%eax) 684: 00 02 add %al,(%edx) 686: 23 44 0b 5f and 0x5f(%ebx,%ecx,1),%eax 68a: 5f pop %edi 68b: 65 gs 68c: 73 68 jae 6f6 <.debug_info+0x6f6> 68e: 00 14 60 add %dl,(%eax) 691: ec in (%dx),%al 692: 00 00 add %al,(%eax) 694: 00 02 add %al,(%edx) 696: 23 46 0b and 0xb(%esi),%eax 699: 64 fs 69a: 73 00 jae 69c <.debug_info+0x69c> 69c: 14 61 adc $0x61,%al 69e: ec in (%dx),%al 69f: 00 00 add %al,(%eax) 6a1: 00 02 add %al,(%edx) 6a3: 23 48 0b and 0xb(%eax),%ecx 6a6: 5f pop %edi 6a7: 5f pop %edi 6a8: 64 fs 6a9: 73 68 jae 713 <.debug_info+0x713> 6ab: 00 14 61 add %dl,(%ecx) 6ae: ec in (%dx),%al 6af: 00 00 add %al,(%eax) 6b1: 00 02 add %al,(%edx) 6b3: 23 4a 0b and 0xb(%edx),%ecx 6b6: 66 data16 6b7: 73 00 jae 6b9 <.debug_info+0x6b9> 6b9: 14 62 adc $0x62,%al 6bb: ec in (%dx),%al 6bc: 00 00 add %al,(%eax) 6be: 00 02 add %al,(%edx) 6c0: 23 4c 0b 5f and 0x5f(%ebx,%ecx,1),%ecx 6c4: 5f pop %edi 6c5: 66 data16 6c6: 73 68 jae 730 <.debug_info+0x730> 6c8: 00 14 62 add %dl,(%edx) 6cb: ec in (%dx),%al 6cc: 00 00 add %al,(%eax) 6ce: 00 02 add %al,(%edx) 6d0: 23 4e 0b and 0xb(%esi),%ecx 6d3: 67 73 00 addr16 jae 6d6 <.debug_info+0x6d6> 6d6: 14 63 adc $0x63,%al 6d8: ec in (%dx),%al 6d9: 00 00 add %al,(%eax) 6db: 00 02 add %al,(%edx) 6dd: 23 50 0b and 0xb(%eax),%edx 6e0: 5f pop %edi 6e1: 5f pop %edi 6e2: 67 73 68 addr16 jae 74d <.debug_info+0x74d> 6e5: 00 14 63 add %dl,(%ebx) 6e8: ec in (%dx),%al 6e9: 00 00 add %al,(%eax) 6eb: 00 02 add %al,(%edx) 6ed: 23 52 00 and 0x0(%edx),%edx 6f0: 0e push %cs 6f1: 1b 07 sbb (%edi),%eax 6f3: 00 00 add %al,(%eax) 6f5: 72 65 jb 75c <.debug_info+0x75c> 6f7: 76 65 jbe 75e <.debug_info+0x75e> 6f9: 63 74 6f 72 arpl %si,0x72(%edi,%ebp,2) 6fd: 65 gs 6fe: 64 fs 6ff: 5f pop %edi 700: 73 74 jae 776 <.debug_info+0x776> 702: 72 75 jb 779 <.debug_info+0x779> 704: 63 74 00 20 arpl %si,0x20(%eax,%eax,1) 708: 14 66 adc $0x66,%al 70a: 0b 5f 5f or 0x5f(%edi),%ebx 70d: 6d insl (%dx),%es:(%edi) 70e: 61 popa 70f: 70 00 jo 711 <.debug_info+0x711> 711: 14 67 adc $0x67,%al 713: 1b 07 sbb (%edi),%eax 715: 00 00 add %al,(%eax) 717: 02 23 add (%ebx),%ah 719: 00 00 add %al,(%eax) 71b: 03 2b add (%ebx),%ebp 71d: 07 pop %es 71e: 00 00 add %al,(%eax) 720: 98 cwtl 721: 00 00 add %al,(%eax) 723: 00 04 91 add %al,(%ecx,%edx,4) 726: 00 00 add %al,(%eax) 728: 00 07 add %al,(%edi) 72a: 00 0e add %cl,(%esi) 72c: b3 07 mov $0x7,%bl 72e: 00 00 add %al,(%eax) 730: 76 6d jbe 79f <.debug_info+0x79f> 732: 38 36 cmp %dh,(%esi) 734: 5f pop %edi 735: 73 74 jae 7ab <.debug_info+0x7ab> 737: 72 75 jb 7ae <.debug_info+0x7ae> 739: 63 74 00 a0 arpl %si,0xffffffa0(%eax,%eax,1) 73d: 14 6a adc $0x6a,%al 73f: 0b 72 65 or 0x65(%edx),%esi 742: 67 73 00 addr16 jae 745 <.debug_info+0x745> 745: 14 6b adc $0x6b,%al 747: 42 inc %edx 748: 05 00 00 02 23 add $0x23020000,%eax 74d: 00 0f add %cl,(%edi) 74f: b3 03 mov $0x3,%bl 751: 00 00 add %al,(%eax) 753: 14 6c adc $0x6c,%al 755: 98 cwtl 756: 00 00 add %al,(%eax) 758: 00 02 add %al,(%edx) 75a: 23 54 0f bf and 0xffffffbf(%edi,%ecx,1),%edx 75e: 02 00 add (%eax),%al 760: 00 14 6d 98 00 00 00 add %dl,0x98(,%ebp,2) 767: 02 23 add (%ebx),%ah 769: 58 pop %eax 76a: 0b 63 70 or 0x70(%ebx),%esp 76d: 75 5f jne 7ce <.debug_info+0x7ce> 76f: 74 79 je 7ea <.debug_info+0x7ea> 771: 70 65 jo 7d8 <.debug_info+0x7d8> 773: 00 14 6e add %dl,(%esi,%ebp,2) 776: 98 cwtl 777: 00 00 add %al,(%eax) 779: 00 02 add %al,(%edx) 77b: 23 5c 0b 69 and 0x69(%ebx,%ecx,1),%ebx 77f: 6e outsb %ds:(%esi),(%dx) 780: 74 5f je 7e1 <.debug_info+0x7e1> 782: 72 65 jb 7e9 <.debug_info+0x7e9> 784: 76 65 jbe 7eb <.debug_info+0x7eb> 786: 63 74 6f 72 arpl %si,0x72(%edi,%ebp,2) 78a: 65 64 00 14 6f add %dl,%fs:%gs:(%edi,%ebp,2) 78f: f0 06 lock push %es 791: 00 00 add %al,(%eax) 793: 02 23 add (%ebx),%ah 795: 60 pusha 796: 0b 69 6e or 0x6e(%ecx),%ebp 799: 74 32 je 7cd <.debug_info+0x7cd> 79b: 31 5f 72 xor %ebx,0x72(%edi) 79e: 65 gs 79f: 76 65 jbe 806 <.debug_info+0x806> 7a1: 63 74 6f 72 arpl %si,0x72(%edi,%ebp,2) 7a5: 65 64 00 14 70 add %dl,%fs:%gs:(%eax,%esi,2) 7aa: f0 06 lock push %es 7ac: 00 00 add %al,(%eax) 7ae: 03 23 add (%ebx),%esp 7b0: 80 01 00 addb $0x0,(%ecx) 7b3: 0e push %cs 7b4: 99 cltd 7b5: 08 00 or %al,(%eax) 7b7: 00 70 74 add %dh,0x74(%eax) 7ba: 5f pop %edi 7bb: 72 65 jb 822 <.debug_info+0x822> 7bd: 67 73 00 addr16 jae 7c0 <.debug_info+0x7c0> 7c0: 3c 14 cmp $0x14,%al 7c2: c2 0b 65 ret $0x650b 7c5: 62 78 00 bound %edi,0x0(%eax) 7c8: 54 push %esp 7c9: 1b 02 sbb (%edx),%eax 7cb: 01 00 add %eax,(%eax) 7cd: 00 02 add %al,(%edx) 7cf: 23 00 and (%eax),%eax 7d1: 0b 65 63 or 0x63(%ebp),%esp 7d4: 78 00 js 7d6 <.debug_info+0x7d6> 7d6: 54 push %esp 7d7: 1c 02 sbb $0x2,%al 7d9: 01 00 add %eax,(%eax) 7db: 00 02 add %al,(%edx) 7dd: 23 04 0b and (%ebx,%ecx,1),%eax 7e0: 65 gs 7e1: 64 fs 7e2: 78 00 js 7e4 <.debug_info+0x7e4> 7e4: 54 push %esp 7e5: 1d 02 01 00 00 sbb $0x102,%eax 7ea: 02 23 add (%ebx),%ah 7ec: 08 0b or %cl,(%ebx) 7ee: 65 gs 7ef: 73 69 jae 85a <.debug_info+0x85a> 7f1: 00 54 1e 02 add %dl,0x2(%esi,%ebx,1) 7f5: 01 00 add %eax,(%eax) 7f7: 00 02 add %al,(%edx) 7f9: 23 0c 0b and (%ebx,%ecx,1),%ecx 7fc: 65 64 69 00 54 1f 02 imul $0x1021f54,%fs:%gs:(%eax),%eax 803: 01 804: 00 00 add %al,(%eax) 806: 02 23 add (%ebx),%ah 808: 10 0b adc %cl,(%ebx) 80a: 65 62 70 00 bound %esi,%gs:0x0(%eax) 80e: 54 push %esp 80f: 20 02 and %al,(%edx) 811: 01 00 add %eax,(%eax) 813: 00 02 add %al,(%edx) 815: 23 14 0b and (%ebx,%ecx,1),%edx 818: 65 gs 819: 61 popa 81a: 78 00 js 81c <.debug_info+0x81c> 81c: 54 push %esp 81d: 21 02 and %eax,(%edx) 81f: 01 00 add %eax,(%eax) 821: 00 02 add %al,(%edx) 823: 23 18 and (%eax),%ebx 825: 0b 78 64 or 0x64(%eax),%edi 828: 73 00 jae 82a <.debug_info+0x82a> 82a: 54 push %esp 82b: 22 7a 00 and 0x0(%edx),%bh 82e: 00 00 add %al,(%eax) 830: 02 23 add (%ebx),%ah 832: 1c 0b sbb $0xb,%al 834: 78 65 js 89b <.debug_info+0x89b> 836: 73 00 jae 838 <.debug_info+0x838> 838: 54 push %esp 839: 23 7a 00 and 0x0(%edx),%edi 83c: 00 00 add %al,(%eax) 83e: 02 23 add (%ebx),%ah 840: 20 0f and %cl,(%edi) 842: cd 02 int $0x2 844: 00 00 add %al,(%eax) 846: 54 push %esp 847: 24 02 and $0x2,%al 849: 01 00 add %eax,(%eax) 84b: 00 02 add %al,(%edx) 84d: 23 24 0b and (%ebx,%ecx,1),%esp 850: 65 69 70 00 54 25 02 imul $0x1022554,%gs:0x0(%eax),%esi 857: 01 858: 00 00 add %al,(%eax) 85a: 02 23 add (%ebx),%ah 85c: 28 0b sub %cl,(%ebx) 85e: 78 63 js 8c3 <.debug_info+0x8c3> 860: 73 00 jae 862 <.debug_info+0x862> 862: 54 push %esp 863: 26 es 864: 7a 00 jp 866 <.debug_info+0x866> 866: 00 00 add %al,(%eax) 868: 02 23 add (%ebx),%ah 86a: 2c 0b sub $0xb,%al 86c: 65 gs 86d: 66 data16 86e: 6c insb (%dx),%es:(%edi) 86f: 61 popa 870: 67 73 00 addr16 jae 873 <.debug_info+0x873> 873: 54 push %esp 874: 27 daa 875: 02 01 add (%ecx),%al 877: 00 00 add %al,(%eax) 879: 02 23 add (%ebx),%ah 87b: 30 0b xor %cl,(%ebx) 87d: 65 gs 87e: 73 70 jae 8f0 <.debug_info+0x8f0> 880: 00 54 28 02 add %dl,0x2(%eax,%ebp,1) 884: 01 00 add %eax,(%eax) 886: 00 02 add %al,(%edx) 888: 23 34 0b and (%ebx,%ecx,1),%esi 88b: 78 73 js 900 <.debug_info+0x900> 88d: 73 00 jae 88f <.debug_info+0x88f> 88f: 54 push %esp 890: 29 7a 00 sub %edi,0x0(%edx) 893: 00 00 add %al,(%eax) 895: 02 23 add (%ebx),%ah 897: 38 00 cmp %al,(%eax) 899: 06 push %es 89a: 04 b3 add $0xb3,%al 89c: 07 pop %es 89d: 00 00 add %al,(%eax) 89f: 03 af 08 00 00 ec add 0xec000008(%edi),%ebp 8a5: 00 00 add %al,(%eax) 8a7: 00 04 91 add %al,(%ecx,%edx,4) 8aa: 00 00 add %al,(%eax) 8ac: 00 03 add %al,(%ebx) 8ae: 00 03 add %al,(%ebx) 8b0: bf 08 00 00 98 mov $0x98000008,%edi 8b5: 00 00 add %al,(%eax) 8b7: 00 04 91 add %al,(%ecx,%edx,4) 8ba: 00 00 add %al,(%eax) 8bc: 00 03 add %al,(%ebx) 8be: 00 0e add %cl,(%esi) 8c0: 3a 0a cmp (%edx),%cl 8c2: 00 00 add %al,(%eax) 8c4: 69 6e 66 6f 00 50 3e imul $0x3e50006f,0x66(%esi),%ebp 8cb: 0d 0b 5f 5f 5f or $0x5f5f5f0b,%eax 8d0: 6f outsl %ds:(%esi),(%dx) 8d1: 72 69 jb 93c <.debug_info+0x93c> 8d3: 67 5f addr16 pop %edi 8d5: 65 69 70 00 3e 0e 02 imul $0x1020e3e,%gs:0x0(%eax),%esi 8dc: 01 8dd: 00 00 add %al,(%eax) 8df: 02 23 add (%ebx),%ah 8e1: 00 0b add %cl,(%ebx) 8e3: 5f pop %edi 8e4: 5f pop %edi 8e5: 5f pop %edi 8e6: 65 62 78 00 bound %edi,%gs:0x0(%eax) 8ea: 3e 0f 02 01 lar %ds:(%ecx),%eax 8ee: 00 00 add %al,(%eax) 8f0: 02 23 add (%ebx),%ah 8f2: 04 0b add $0xb,%al 8f4: 5f pop %edi 8f5: 5f pop %edi 8f6: 5f pop %edi 8f7: 65 63 78 00 arpl %di,%gs:0x0(%eax) 8fb: 3e 10 02 adc %al,%ds:(%edx) 8fe: 01 00 add %eax,(%eax) 900: 00 02 add %al,(%edx) 902: 23 08 and (%eax),%ecx 904: 0b 5f 5f or 0x5f(%edi),%ebx 907: 5f pop %edi 908: 65 gs 909: 64 fs 90a: 78 00 js 90c <.debug_info+0x90c> 90c: 3e 11 02 adc %eax,%ds:(%edx) 90f: 01 00 add %eax,(%eax) 911: 00 02 add %al,(%edx) 913: 23 0c 0b and (%ebx,%ecx,1),%ecx 916: 5f pop %edi 917: 5f pop %edi 918: 5f pop %edi 919: 65 gs 91a: 73 69 jae 985 <.debug_info+0x985> 91c: 00 3e add %bh,(%esi) 91e: 12 02 adc (%edx),%al 920: 01 00 add %eax,(%eax) 922: 00 02 add %al,(%edx) 924: 23 10 and (%eax),%edx 926: 0b 5f 5f or 0x5f(%edi),%ebx 929: 5f pop %edi 92a: 65 64 69 00 3e 13 02 imul $0x102133e,%fs:%gs:(%eax),%eax 931: 01 932: 00 00 add %al,(%eax) 934: 02 23 add (%ebx),%ah 936: 14 0b adc $0xb,%al 938: 5f pop %edi 939: 5f pop %edi 93a: 5f pop %edi 93b: 65 62 70 00 bound %esi,%gs:0x0(%eax) 93f: 3e ds 940: 14 02 adc $0x2,%al 942: 01 00 add %eax,(%eax) 944: 00 02 add %al,(%edx) 946: 23 18 and (%eax),%ebx 948: 0b 5f 5f or 0x5f(%edi),%ebx 94b: 5f pop %edi 94c: 65 gs 94d: 61 popa 94e: 78 00 js 950 <.debug_info+0x950> 950: 3e ds 951: 15 02 01 00 00 adc $0x102,%eax 956: 02 23 add (%ebx),%ah 958: 1c 0b sbb $0xb,%al 95a: 5f pop %edi 95b: 5f pop %edi 95c: 5f pop %edi 95d: 64 fs 95e: 73 00 jae 960 <.debug_info+0x960> 960: 3e ds 961: 16 push %ss 962: 02 01 add (%ecx),%al 964: 00 00 add %al,(%eax) 966: 02 23 add (%ebx),%ah 968: 20 0b and %cl,(%ebx) 96a: 5f pop %edi 96b: 5f pop %edi 96c: 5f pop %edi 96d: 65 gs 96e: 73 00 jae 970 <.debug_info+0x970> 970: 3e ds 971: 17 pop %ss 972: 02 01 add (%ecx),%al 974: 00 00 add %al,(%eax) 976: 02 23 add (%ebx),%ah 978: 24 0b and $0xb,%al 97a: 5f pop %edi 97b: 5f pop %edi 97c: 5f pop %edi 97d: 6f outsl %ds:(%esi),(%dx) 97e: 72 69 jb 9e9 <.debug_info+0x9e9> 980: 67 5f addr16 pop %edi 982: 65 gs 983: 61 popa 984: 78 00 js 986 <.debug_info+0x986> 986: 3e 18 02 sbb %al,%ds:(%edx) 989: 01 00 add %eax,(%eax) 98b: 00 02 add %al,(%edx) 98d: 23 28 and (%eax),%ebp 98f: 0b 5f 5f or 0x5f(%edi),%ebx 992: 5f pop %edi 993: 65 69 70 00 3e 19 02 imul $0x102193e,%gs:0x0(%eax),%esi 99a: 01 99b: 00 00 add %al,(%eax) 99d: 02 23 add (%ebx),%ah 99f: 2c 0b sub $0xb,%al 9a1: 5f pop %edi 9a2: 5f pop %edi 9a3: 5f pop %edi 9a4: 63 73 00 arpl %si,0x0(%ebx) 9a7: 3e 1a 02 sbb %ds:(%edx),%al 9aa: 01 00 add %eax,(%eax) 9ac: 00 02 add %al,(%edx) 9ae: 23 30 and (%eax),%esi 9b0: 0b 5f 5f or 0x5f(%edi),%ebx 9b3: 5f pop %edi 9b4: 65 gs 9b5: 66 data16 9b6: 6c insb (%dx),%es:(%edi) 9b7: 61 popa 9b8: 67 73 00 addr16 jae 9bb <.debug_info+0x9bb> 9bb: 3e 1b 02 sbb %ds:(%edx),%eax 9be: 01 00 add %eax,(%eax) 9c0: 00 02 add %al,(%edx) 9c2: 23 34 0b and (%ebx,%ecx,1),%esi 9c5: 5f pop %edi 9c6: 5f pop %edi 9c7: 5f pop %edi 9c8: 65 gs 9c9: 73 70 jae a3b <.debug_info+0xa3b> 9cb: 00 3e add %bh,(%esi) 9cd: 1c 02 sbb $0x2,%al 9cf: 01 00 add %eax,(%eax) 9d1: 00 02 add %al,(%edx) 9d3: 23 38 and (%eax),%edi 9d5: 0b 5f 5f or 0x5f(%edi),%ebx 9d8: 5f pop %edi 9d9: 73 73 jae a4e <.debug_info+0xa4e> 9db: 00 3e add %bh,(%esi) 9dd: 1d 02 01 00 00 sbb $0x102,%eax 9e2: 02 23 add (%ebx),%ah 9e4: 3c 0b cmp $0xb,%al 9e6: 5f pop %edi 9e7: 5f pop %edi 9e8: 5f pop %edi 9e9: 76 6d jbe a58 <.debug_info+0xa58> 9eb: 38 36 cmp %dh,(%esi) 9ed: 5f pop %edi 9ee: 65 gs 9ef: 73 00 jae 9f1 <.debug_info+0x9f1> 9f1: 3e ds 9f2: 1e push %ds 9f3: 02 01 add (%ecx),%al 9f5: 00 00 add %al,(%eax) 9f7: 02 23 add (%ebx),%ah 9f9: 40 inc %eax 9fa: 0b 5f 5f or 0x5f(%edi),%ebx 9fd: 5f pop %edi 9fe: 76 6d jbe a6d <.debug_info+0xa6d> a00: 38 36 cmp %dh,(%esi) a02: 5f pop %edi a03: 64 fs a04: 73 00 jae a06 <.debug_info+0xa06> a06: 3e ds a07: 1f pop %ds a08: 02 01 add (%ecx),%al a0a: 00 00 add %al,(%eax) a0c: 02 23 add (%ebx),%ah a0e: 44 inc %esp a0f: 0b 5f 5f or 0x5f(%edi),%ebx a12: 5f pop %edi a13: 76 6d jbe a82 <.debug_info+0xa82> a15: 38 36 cmp %dh,(%esi) a17: 5f pop %edi a18: 66 data16 a19: 73 00 jae a1b <.debug_info+0xa1b> a1b: 3e 20 02 and %al,%ds:(%edx) a1e: 01 00 add %eax,(%eax) a20: 00 02 add %al,(%edx) a22: 23 48 0b and 0xb(%eax),%ecx a25: 5f pop %edi a26: 5f pop %edi a27: 5f pop %edi a28: 76 6d jbe a97 <.debug_info+0xa97> a2a: 38 36 cmp %dh,(%esi) a2c: 5f pop %edi a2d: 67 73 00 addr16 jae a30 <.debug_info+0xa30> a30: 3e 21 02 and %eax,%ds:(%edx) a33: 01 00 add %eax,(%eax) a35: 00 02 add %al,(%edx) a37: 23 4c 00 03 and 0x3(%eax,%eax,1),%ecx a3b: 4a dec %edx a3c: 0a 00 or (%eax),%al a3e: 00 c1 add %al,%cl a40: 01 00 add %eax,(%eax) a42: 00 04 91 add %al,(%ecx,%edx,4) a45: 00 00 add %al,(%eax) a47: 00 07 add %al,(%edi) a49: 00 0d 62 0a 00 00 add %cl,0xa62 a4f: 04 16 add $0x16,%al a51: 58 pop %eax a52: 0b 62 69 or 0x69(%edx),%esp a55: 74 73 je aca <.debug_info+0xaca> a57: 00 16 add %dl,(%esi) a59: 58 pop %eax a5a: 62 0a bound %ecx,(%edx) a5c: 00 00 add %al,(%eax) a5e: 02 23 add (%ebx),%ah a60: 00 00 add %al,(%eax) a62: 03 72 0a add 0xa(%edx),%esi a65: 00 00 add %al,(%eax) a67: 98 cwtl a68: 00 00 add %al,(%eax) a6a: 00 04 91 add %al,(%ecx,%edx,4) a6d: 00 00 add %al,(%eax) a6f: 00 00 add %al,(%eax) a71: 00 09 add %cl,(%ecx) a73: 63 70 75 arpl %si,0x75(%eax) a76: 6d insl (%dx),%es:(%edi) a77: 61 popa a78: 73 6b jae ae5 <.debug_info+0xae5> a7a: 5f pop %edi a7b: 74 00 je a7d <.debug_info+0xa7d> a7d: 16 push %ss a7e: 58 pop %eax a7f: 4a dec %edx a80: 0a 00 or (%eax),%al a82: 00 0e add %cl,(%esi) a84: b0 0a mov $0xa,%al a86: 00 00 add %al,(%eax) a88: 64 fs a89: 65 gs a8a: 73 63 jae aef <.debug_info+0xaef> a8c: 5f pop %edi a8d: 73 74 jae b03 <.debug_info+0xb03> a8f: 72 75 jb b06 <.debug_info+0xb06> a91: 63 74 00 08 arpl %si,0x8(%eax,%eax,1) a95: 17 pop %ss a96: 1b 0b sbb (%ebx),%ecx a98: 61 popa a99: 00 17 add %dl,(%edi) a9b: 1c 98 sbb $0x98,%al a9d: 00 00 add %al,(%eax) a9f: 00 02 add %al,(%edx) aa1: 23 00 and (%eax),%eax aa3: 0b 62 00 or 0x0(%edx),%esp aa6: 17 pop %ss aa7: 1c 98 sbb $0x98,%al aa9: 00 00 add %al,(%eax) aab: 00 02 add %al,(%edx) aad: 23 04 00 and (%eax,%eax,1),%eax ab0: 10 fc adc %bh,%ah ab2: 0c 00 or $0x0,%al ab4: 00 63 70 add %ah,0x70(%ebx) ab7: 75 69 jne b22 <.debug_info+0xb22> ab9: 6e outsb %ds:(%esi),(%dx) aba: 66 6f outsw %ds:(%esi),(%dx) abc: 5f pop %edi abd: 78 38 js af7 <.debug_info+0xaf7> abf: 36 00 00 add %al,%ss:(%eax) ac2: 01 17 add %edx,(%edi) ac4: 30 0b xor %cl,(%ebx) ac6: 78 38 js b00 <.debug_info+0xb00> ac8: 36 00 17 add %dl,%ss:(%edi) acb: 31 4b 02 xor %ecx,0x2(%ebx) ace: 00 00 add %al,(%eax) ad0: 02 23 add (%ebx),%ah ad2: 00 0b add %cl,(%ebx) ad4: 78 38 js b0e <.debug_info+0xb0e> ad6: 36 ss ad7: 5f pop %edi ad8: 76 65 jbe b3f <.debug_info+0xb3f> ada: 6e outsb %ds:(%esi),(%dx) adb: 64 6f outsl %fs:(%esi),(%dx) add: 72 00 jb adf <.debug_info+0xadf> adf: 17 pop %ss ae0: 32 4b 02 xor 0x2(%ebx),%cl ae3: 00 00 add %al,(%eax) ae5: 02 23 add (%ebx),%ah ae7: 01 0b add %ecx,(%ebx) ae9: 78 38 js b23 <.debug_info+0xb23> aeb: 36 ss aec: 5f pop %edi aed: 6d insl (%dx),%es:(%edi) aee: 6f outsl %ds:(%esi),(%dx) aef: 64 fs af0: 65 gs af1: 6c insb (%dx),%es:(%edi) af2: 00 17 add %dl,(%edi) af4: 33 4b 02 xor 0x2(%ebx),%ecx af7: 00 00 add %al,(%eax) af9: 02 23 add (%ebx),%ah afb: 02 0b add (%ebx),%cl afd: 78 38 js b37 <.debug_info+0xb37> aff: 36 ss b00: 5f pop %edi b01: 6d insl (%dx),%es:(%edi) b02: 61 popa b03: 73 6b jae b70 <.debug_info+0xb70> b05: 00 17 add %dl,(%edi) b07: 34 4b xor $0x4b,%al b09: 02 00 add (%eax),%al b0b: 00 02 add %al,(%edx) b0d: 23 03 and (%ebx),%eax b0f: 0b 77 70 or 0x70(%edi),%esi b12: 5f pop %edi b13: 77 6f ja b84 <.debug_info+0xb84> b15: 72 6b jb b82 <.debug_info+0xb82> b17: 73 5f jae b78 <.debug_info+0xb78> b19: 6f outsl %ds:(%esi),(%dx) b1a: 6b 00 17 imul $0x17,(%eax),%eax b1d: 35 c1 01 00 00 xor $0x1c1,%eax b22: 02 23 add (%ebx),%ah b24: 04 0b add $0xb,%al b26: 68 6c 74 5f 77 push $0x775f746c b2b: 6f outsl %ds:(%esi),(%dx) b2c: 72 6b jb b99 <.debug_info+0xb99> b2e: 73 5f jae b8f <.debug_info+0xb8f> b30: 6f outsl %ds:(%esi),(%dx) b31: 6b 00 17 imul $0x17,(%eax),%eax b34: 36 c1 01 00 roll $0x0,%ss:(%ecx) b38: 00 02 add %al,(%edx) b3a: 23 05 0b 68 61 72 and 0x7261680b,%eax b40: 64 fs b41: 5f pop %edi b42: 6d insl (%dx),%es:(%edi) b43: 61 popa b44: 74 68 je bae <.debug_info+0xbae> b46: 00 17 add %dl,(%edi) b48: 37 aaa b49: c1 01 00 roll $0x0,(%ecx) b4c: 00 02 add %al,(%edx) b4e: 23 06 and (%esi),%eax b50: 0b 72 66 or 0x66(%edx),%esi b53: 75 00 jne b55 <.debug_info+0xb55> b55: 17 pop %ss b56: 38 c1 cmp %al,%cl b58: 01 00 add %eax,(%eax) b5a: 00 02 add %al,(%edx) b5c: 23 07 and (%edi),%eax b5e: 0b 63 70 or 0x70(%ebx),%esp b61: 75 69 jne bcc <.debug_info+0xbcc> b63: 64 fs b64: 5f pop %edi b65: 6c insb (%dx),%es:(%edi) b66: 65 gs b67: 76 65 jbe bce <.debug_info+0xbce> b69: 6c insb (%dx),%es:(%edi) b6a: 00 17 add %dl,(%edi) b6c: 39 7a 00 cmp %edi,0x0(%edx) b6f: 00 00 add %al,(%eax) b71: 02 23 add (%ebx),%ah b73: 08 0b or %cl,(%ebx) b75: 78 38 js baf <.debug_info+0xbaf> b77: 36 ss b78: 5f pop %edi b79: 63 61 70 arpl %sp,0x70(%ecx) b7c: 61 popa b7d: 62 69 6c bound %ebp,0x6c(%ecx) b80: 69 74 79 00 17 3a fc imul $0xcfc3a17,0x0(%ecx,%edi,2),%esi b87: 0c b88: 00 00 add %al,(%eax) b8a: 02 23 add (%ebx),%ah b8c: 0c 0b or $0xb,%al b8e: 78 38 js bc8 <.debug_info+0xbc8> b90: 36 ss b91: 5f pop %edi b92: 76 65 jbe bf9 <.debug_info+0xbf9> b94: 6e outsb %ds:(%esi),(%dx) b95: 64 6f outsl %fs:(%esi),(%dx) b97: 72 5f jb bf8 <.debug_info+0xbf8> b99: 69 64 00 17 3b 0c 0d imul $0xd0c3b,0x17(%eax,%eax,1),%esp ba0: 00 ba1: 00 02 add %al,(%edx) ba3: 23 28 and (%eax),%ebp ba5: 0b 78 38 or 0x38(%eax),%edi ba8: 36 ss ba9: 5f pop %edi baa: 6d insl (%dx),%es:(%edi) bab: 6f outsl %ds:(%esi),(%dx) bac: 64 fs bad: 65 gs bae: 6c insb (%dx),%es:(%edi) baf: 5f pop %edi bb0: 69 64 00 17 3c 1c 0d imul $0xd1c3c,0x17(%eax,%eax,1),%esp bb7: 00 bb8: 00 02 add %al,(%edx) bba: 23 38 and (%eax),%edi bbc: 0b 78 38 or 0x38(%eax),%edi bbf: 36 ss bc0: 5f pop %edi bc1: 63 61 63 arpl %sp,0x63(%ecx) bc4: 68 65 5f 73 69 push $0x69735f65 bc9: 7a 65 jp c30 <.debug_info+0xc30> bcb: 00 17 add %dl,(%edi) bcd: 3d 7a 00 00 00 cmp $0x7a,%eax bd2: 02 23 add (%ebx),%ah bd4: 78 0b js be1 <.debug_info+0xbe1> bd6: 78 38 js c10 <.debug_info+0xc10> bd8: 36 ss bd9: 5f pop %edi bda: 63 61 63 arpl %sp,0x63(%ecx) bdd: 68 65 5f 61 6c push $0x6c615f65 be2: 69 67 6e 6d 65 6e 74 imul $0x746e656d,0x6e(%edi),%esp be9: 00 17 add %dl,(%edi) beb: 3f aas bec: 7a 00 jp bee <.debug_info+0xbee> bee: 00 00 add %al,(%eax) bf0: 02 23 add (%ebx),%ah bf2: 7c 0b jl bff <.debug_info+0xbff> bf4: 66 64 69 76 5f 62 75 imul $0x7562,%fs:0x5f(%esi),%si bfb: 67 00 17 addr16 add %dl,(%bx) bfe: 40 inc %eax bff: c1 01 00 roll $0x0,(%ecx) c02: 00 03 add %al,(%ebx) c04: 23 80 01 0b 66 30 and 0x30660b01(%eax),%eax c0a: 30 66 5f xor %ah,0x5f(%esi) c0d: 62 75 67 bound %esi,0x67(%ebp) c10: 00 17 add %dl,(%edi) c12: 41 inc %ecx c13: c1 01 00 roll $0x0,(%ecx) c16: 00 03 add %al,(%ebx) c18: 23 81 01 0b 63 6f and 0x6f630b01(%ecx),%eax c1e: 6d insl (%dx),%es:(%edi) c1f: 61 popa c20: 5f pop %edi c21: 62 75 67 bound %esi,0x67(%ebp) c24: 00 17 add %dl,(%edi) c26: 42 inc %edx c27: c1 01 00 roll $0x0,(%ecx) c2a: 00 03 add %al,(%ebx) c2c: 23 82 01 0b 70 61 and 0x61700b01(%edx),%eax c32: 64 30 00 xor %al,%fs:(%eax) c35: 17 pop %ss c36: 43 inc %ebx c37: c1 01 00 roll $0x0,(%ecx) c3a: 00 03 add %al,(%ebx) c3c: 23 83 01 0b 78 38 and 0x38780b01(%ebx),%eax c42: 36 ss c43: 5f pop %edi c44: 70 6f jo cb5 <.debug_info+0xcb5> c46: 77 65 ja cad <.debug_info+0xcad> c48: 72 00 jb c4a <.debug_info+0xc4a> c4a: 17 pop %ss c4b: 44 inc %esp c4c: 7a 00 jp c4e <.debug_info+0xc4e> c4e: 00 00 add %al,(%eax) c50: 03 23 add (%ebx),%esp c52: 84 01 test %al,(%ecx) c54: 0b 6c 6f 6f or 0x6f(%edi,%ebp,2),%ebp c58: 70 73 jo ccd <.debug_info+0xccd> c5a: 5f pop %edi c5b: 70 65 jo cc2 <.debug_info+0xcc2> c5d: 72 5f jb cbe <.debug_info+0xcbe> c5f: 6a 69 push $0x69 c61: 66 data16 c62: 66 data16 c63: 79 00 jns c65 <.debug_info+0xc65> c65: 17 pop %ss c66: 45 inc %ebp c67: 98 cwtl c68: 00 00 add %al,(%eax) c6a: 00 03 add %al,(%ebx) c6c: 23 88 01 0b 6c 6c and 0x6c6c0b01(%eax),%ecx c72: 63 5f 73 arpl %bx,0x73(%edi) c75: 68 61 72 65 64 push $0x64657261 c7a: 5f pop %edi c7b: 6d insl (%dx),%es:(%edi) c7c: 61 popa c7d: 70 00 jo c7f <.debug_info+0xc7f> c7f: 17 pop %ss c80: 47 inc %edi c81: 72 0a jb c8d <.debug_info+0xc8d> c83: 00 00 add %al,(%eax) c85: 03 23 add (%ebx),%esp c87: 8c 01 movw %es,(%ecx) c89: 0b 78 38 or 0x38(%eax),%edi c8c: 36 ss c8d: 5f pop %edi c8e: 6d insl (%dx),%es:(%edi) c8f: 61 popa c90: 78 5f js cf1 <.debug_info+0xcf1> c92: 63 6f 72 arpl %bp,0x72(%edi) c95: 65 gs c96: 73 00 jae c98 <.debug_info+0xc98> c98: 17 pop %ss c99: 49 dec %ecx c9a: 57 push %edi c9b: 02 00 add (%eax),%al c9d: 00 03 add %al,(%ebx) c9f: 23 90 01 0b 61 70 and 0x70610b01(%eax),%edx ca5: 69 63 69 64 00 17 4a imul $0x4a170064,0x69(%ebx),%esp cac: 57 push %edi cad: 02 00 add (%eax),%al caf: 00 03 add %al,(%ebx) cb1: 23 91 01 0b 62 6f and 0x6f620b01(%ecx),%edx cb7: 6f outsl %ds:(%esi),(%dx) cb8: 74 65 je d1f <.debug_info+0xd1f> cba: 64 fs cbb: 5f pop %edi cbc: 63 6f 72 arpl %bp,0x72(%edi) cbf: 65 gs cc0: 73 00 jae cc2 <.debug_info+0xcc2> cc2: 17 pop %ss cc3: 4c dec %esp cc4: 57 push %edi cc5: 02 00 add (%eax),%al cc7: 00 03 add %al,(%ebx) cc9: 23 92 01 0b 70 68 and 0x68700b01(%edx),%edx ccf: 79 73 jns d44 <.debug_info+0xd44> cd1: 5f pop %edi cd2: 70 72 jo d46 <.debug_info+0xd46> cd4: 6f outsl %ds:(%esi),(%dx) cd5: 63 5f 69 arpl %bx,0x69(%edi) cd8: 64 00 17 add %dl,%fs:(%edi) cdb: 4d dec %ebp cdc: 4b dec %ebx cdd: 02 00 add (%eax),%al cdf: 00 03 add %al,(%ebx) ce1: 23 93 01 0b 63 70 and 0x70630b01(%ebx),%edx ce7: 75 5f jne d48 <.debug_info+0xd48> ce9: 63 6f 72 arpl %bp,0x72(%edi) cec: 65 gs ced: 5f pop %edi cee: 69 64 00 17 4e 4b 02 imul $0x24b4e,0x17(%eax,%eax,1),%esp cf5: 00 cf6: 00 03 add %al,(%ebx) cf8: 23 94 01 00 03 0c 0d and 0xd0c0300(%ecx,%eax,1),%edx cff: 00 00 add %al,(%eax) d01: 98 cwtl d02: 00 00 add %al,(%eax) d04: 00 04 91 add %al,(%ecx,%edx,4) d07: 00 00 add %al,(%eax) d09: 00 06 add %al,(%esi) d0b: 00 03 add %al,(%ebx) d0d: 1c 0d sbb $0xd,%al d0f: 00 00 add %al,(%eax) d11: c1 01 00 roll $0x0,(%ecx) d14: 00 04 91 add %al,(%ecx,%edx,4) d17: 00 00 add %al,(%eax) d19: 00 0f add %cl,(%edi) d1b: 00 03 add %al,(%ebx) d1d: 2c 0d sub $0xd,%al d1f: 00 00 add %al,(%eax) d21: c1 01 00 roll $0x0,(%ecx) d24: 00 04 91 add %al,(%ecx,%edx,4) d27: 00 00 add %al,(%eax) d29: 00 3f add %bh,(%edi) d2b: 00 11 add %dl,(%ecx) d2d: cf iret d2e: 0d 00 00 69 33 or $0x33690000,%eax d33: 38 37 cmp %dh,(%edi) d35: 5f pop %edi d36: 66 data16 d37: 73 61 jae d9a <.debug_info+0xd9a> d39: 76 65 jbe da0 <.debug_info+0xda0> d3b: 5f pop %edi d3c: 73 74 jae db2 <.debug_info+0xdb2> d3e: 72 75 jb db5 <.debug_info+0xdb5> d40: 63 74 00 70 arpl %si,0x70(%eax,%eax,1) d44: 17 pop %ss d45: 5b pop %ebx d46: 01 12 add %edx,(%edx) d48: 63 77 64 arpl %si,0x64(%edi) d4b: 00 17 add %dl,(%edi) d4d: 5c pop %esp d4e: 01 02 add %eax,(%edx) d50: 01 00 add %eax,(%eax) d52: 00 02 add %al,(%edx) d54: 23 00 and (%eax),%eax d56: 12 73 77 adc 0x77(%ebx),%dh d59: 64 00 17 add %dl,%fs:(%edi) d5c: 5d pop %ebp d5d: 01 02 add %eax,(%edx) d5f: 01 00 add %eax,(%eax) d61: 00 02 add %al,(%edx) d63: 23 04 12 and (%edx,%edx,1),%eax d66: 74 77 je ddf <.debug_info+0xddf> d68: 64 00 17 add %dl,%fs:(%edi) d6b: 5e pop %esi d6c: 01 02 add %eax,(%edx) d6e: 01 00 add %eax,(%eax) d70: 00 02 add %al,(%edx) d72: 23 08 and (%eax),%ecx d74: 12 66 69 adc 0x69(%esi),%ah d77: 70 00 jo d79 <.debug_info+0xd79> d79: 17 pop %ss d7a: 5f pop %edi d7b: 01 02 add %eax,(%edx) d7d: 01 00 add %eax,(%eax) d7f: 00 02 add %al,(%edx) d81: 23 0c 12 and (%edx,%edx,1),%ecx d84: 66 data16 d85: 63 73 00 arpl %si,0x0(%ebx) d88: 17 pop %ss d89: 60 pusha d8a: 01 02 add %eax,(%edx) d8c: 01 00 add %eax,(%eax) d8e: 00 02 add %al,(%edx) d90: 23 10 and (%eax),%edx d92: 12 66 6f adc 0x6f(%esi),%ah d95: 6f outsl %ds:(%esi),(%dx) d96: 00 17 add %dl,(%edi) d98: 61 popa d99: 01 02 add %eax,(%edx) d9b: 01 00 add %eax,(%eax) d9d: 00 02 add %al,(%edx) d9f: 23 14 12 and (%edx,%edx,1),%edx da2: 66 6f outsw %ds:(%esi),(%dx) da4: 73 00 jae da6 <.debug_info+0xda6> da6: 17 pop %ss da7: 62 01 bound %eax,(%ecx) da9: 02 01 add (%ecx),%al dab: 00 00 add %al,(%eax) dad: 02 23 add (%ebx),%ah daf: 18 13 sbb %dl,(%ebx) db1: c7 00 00 00 17 63 movl $0x63170000,(%eax) db7: 01 cf add %ecx,%edi db9: 0d 00 00 02 23 or $0x23020000,%eax dbe: 1c 13 sbb $0x13,%al dc0: e0 01 loopne dc3 <.debug_info+0xdc3> dc2: 00 00 add %al,(%eax) dc4: 17 pop %ss dc5: 64 01 02 add %eax,%fs:(%edx) dc8: 01 00 add %eax,(%eax) dca: 00 02 add %al,(%edx) dcc: 23 6c 00 03 and 0x3(%eax,%eax,1),%ebp dd0: df 0d 00 00 02 01 fisttp 0x1020000 dd6: 00 00 add %al,(%eax) dd8: 04 91 add $0x91,%al dda: 00 00 add %al,(%eax) ddc: 00 13 add %dl,(%ebx) dde: 00 14 d5 0e 00 00 69 add %dl,0x6900000e(,%edx,8) de5: 33 38 xor (%eax),%edi de7: 37 aaa de8: 5f pop %edi de9: 66 data16 dea: 78 73 js e5f <.debug_info+0xe5f> dec: 61 popa ded: 76 65 jbe e54 <.debug_info+0xe54> def: 5f pop %edi df0: 73 74 jae e66 <.debug_info+0xe66> df2: 72 75 jb e69 <.debug_info+0xe69> df4: 63 74 00 00 arpl %si,0x0(%eax,%eax,1) df8: 02 17 add (%edi),%dl dfa: 67 01 12 addr16 add %edx,(%bp,%si) dfd: 63 77 64 arpl %si,0x64(%edi) e00: 00 17 add %dl,(%edi) e02: 68 01 ec 00 00 push $0xec01 e07: 00 02 add %al,(%edx) e09: 23 00 and (%eax),%eax e0b: 12 73 77 adc 0x77(%ebx),%dh e0e: 64 00 17 add %dl,%fs:(%edi) e11: 69 01 ec 00 00 00 imul $0xec,(%ecx),%eax e17: 02 23 add (%ebx),%ah e19: 02 12 add (%edx),%dl e1b: 74 77 je e94 <.debug_info+0xe94> e1d: 64 00 17 add %dl,%fs:(%edi) e20: 6a 01 push $0x1 e22: ec in (%dx),%al e23: 00 00 add %al,(%eax) e25: 00 02 add %al,(%edx) e27: 23 04 12 and (%edx,%edx,1),%eax e2a: 66 6f outsw %ds:(%esi),(%dx) e2c: 70 00 jo e2e <.debug_info+0xe2e> e2e: 17 pop %ss e2f: 6b 01 ec imul $0xffffffec,(%ecx),%eax e32: 00 00 add %al,(%eax) e34: 00 02 add %al,(%edx) e36: 23 06 and (%esi),%eax e38: 12 66 69 adc 0x69(%esi),%ah e3b: 70 00 jo e3d <.debug_info+0xe3d> e3d: 17 pop %ss e3e: 6c insb (%dx),%es:(%edi) e3f: 01 02 add %eax,(%edx) e41: 01 00 add %eax,(%eax) e43: 00 02 add %al,(%edx) e45: 23 08 and (%eax),%ecx e47: 12 66 63 adc 0x63(%esi),%ah e4a: 73 00 jae e4c <.debug_info+0xe4c> e4c: 17 pop %ss e4d: 6d insl (%dx),%es:(%edi) e4e: 01 02 add %eax,(%edx) e50: 01 00 add %eax,(%eax) e52: 00 02 add %al,(%edx) e54: 23 0c 12 and (%edx,%edx,1),%ecx e57: 66 6f outsw %ds:(%esi),(%dx) e59: 6f outsl %ds:(%esi),(%dx) e5a: 00 17 add %dl,(%edi) e5c: 6e outsb %ds:(%esi),(%dx) e5d: 01 02 add %eax,(%edx) e5f: 01 00 add %eax,(%eax) e61: 00 02 add %al,(%edx) e63: 23 10 and (%eax),%edx e65: 12 66 6f adc 0x6f(%esi),%ah e68: 73 00 jae e6a <.debug_info+0xe6a> e6a: 17 pop %ss e6b: 6f outsl %ds:(%esi),(%dx) e6c: 01 02 add %eax,(%edx) e6e: 01 00 add %eax,(%eax) e70: 00 02 add %al,(%edx) e72: 23 14 12 and (%edx,%edx,1),%edx e75: 6d insl (%dx),%es:(%edi) e76: 78 63 js edb <.debug_info+0xedb> e78: 73 72 jae eec <.debug_info+0xeec> e7a: 00 17 add %dl,(%edi) e7c: 70 01 jo e7f <.debug_info+0xe7f> e7e: 02 01 add (%ecx),%al e80: 00 00 add %al,(%eax) e82: 02 23 add (%ebx),%ah e84: 18 12 sbb %dl,(%edx) e86: 6d insl (%dx),%es:(%edi) e87: 78 63 js eec <.debug_info+0xeec> e89: 73 72 jae efd <.debug_info+0xefd> e8b: 5f pop %edi e8c: 6d insl (%dx),%es:(%edi) e8d: 61 popa e8e: 73 6b jae efb <.debug_info+0xefb> e90: 00 17 add %dl,(%edi) e92: 71 01 jno e95 <.debug_info+0xe95> e94: 02 01 add (%ecx),%al e96: 00 00 add %al,(%eax) e98: 02 23 add (%ebx),%ah e9a: 1c 13 sbb $0x13,%al e9c: c7 00 00 00 17 72 movl $0x72170000,(%eax) ea2: 01 d5 add %edx,%ebp ea4: 0e push %cs ea5: 00 00 add %al,(%eax) ea7: 02 23 add (%ebx),%ah ea9: 20 12 and %dl,(%edx) eab: 78 6d js f1a <.debug_info+0xf1a> ead: 6d insl (%dx),%es:(%edi) eae: 5f pop %edi eaf: 73 70 jae f21 <.debug_info+0xf21> eb1: 61 popa eb2: 63 65 00 arpl %sp,0x0(%ebp) eb5: 17 pop %ss eb6: 73 01 jae eb9 <.debug_info+0xeb9> eb8: d5 0e aad $0xe eba: 00 00 add %al,(%eax) ebc: 03 23 add (%ebx),%esp ebe: a0 01 12 70 61 mov 0x61701201,%al ec3: 64 64 69 6e 67 00 17 imul $0x1741700,%fs:0x67(%esi),%ebp eca: 74 01 ecc: e5 0e in $0xe,%eax ece: 00 00 add %al,(%eax) ed0: 03 23 add (%ebx),%esp ed2: a0 02 00 03 e5 mov 0xe5030002,%al ed7: 0e push %cs ed8: 00 00 add %al,(%eax) eda: 02 01 add (%ecx),%al edc: 00 00 add %al,(%eax) ede: 04 91 add $0x91,%al ee0: 00 00 add %al,(%eax) ee2: 00 1f add %bl,(%edi) ee4: 00 03 add %al,(%ebx) ee6: f5 cmc ee7: 0e push %cs ee8: 00 00 add %al,(%eax) eea: 02 01 add (%ecx),%al eec: 00 00 add %al,(%eax) eee: 04 91 add $0x91,%al ef0: 00 00 add %al,(%eax) ef2: 00 37 add %dh,(%edi) ef4: 00 11 add %dl,(%ecx) ef6: 1a 10 sbb (%eax),%dl ef8: 00 00 add %al,(%eax) efa: 69 33 38 37 5f 73 imul $0x735f3738,(%ebx),%esi f00: 6f outsl %ds:(%esi),(%dx) f01: 66 data16 f02: 74 5f je f63 <.debug_info+0xf63> f04: 73 74 jae f7a <.debug_info+0xf7a> f06: 72 75 jb f7d <.debug_info+0xf7d> f08: 63 74 00 7c arpl %si,0x7c(%eax,%eax,1) f0c: 17 pop %ss f0d: 77 01 ja f10 <.debug_info+0xf10> f0f: 12 63 77 adc 0x77(%ebx),%ah f12: 64 00 17 add %dl,%fs:(%edi) f15: 78 01 js f18 <.debug_info+0xf18> f17: 02 01 add (%ecx),%al f19: 00 00 add %al,(%eax) f1b: 02 23 add (%ebx),%ah f1d: 00 12 add %dl,(%edx) f1f: 73 77 jae f98 <.debug_info+0xf98> f21: 64 00 17 add %dl,%fs:(%edi) f24: 79 01 jns f27 <.debug_info+0xf27> f26: 02 01 add (%ecx),%al f28: 00 00 add %al,(%eax) f2a: 02 23 add (%ebx),%ah f2c: 04 12 add $0x12,%al f2e: 74 77 je fa7 <.debug_info+0xfa7> f30: 64 00 17 add %dl,%fs:(%edi) f33: 7a 01 jp f36 <.debug_info+0xf36> f35: 02 01 add (%ecx),%al f37: 00 00 add %al,(%eax) f39: 02 23 add (%ebx),%ah f3b: 08 12 or %dl,(%edx) f3d: 66 69 70 00 17 7b imul $0x7b17,0x0(%eax),%si f43: 01 02 add %eax,(%edx) f45: 01 00 add %eax,(%eax) f47: 00 02 add %al,(%edx) f49: 23 0c 12 and (%edx,%edx,1),%ecx f4c: 66 data16 f4d: 63 73 00 arpl %si,0x0(%ebx) f50: 17 pop %ss f51: 7c 01 jl f54 <.debug_info+0xf54> f53: 02 01 add (%ecx),%al f55: 00 00 add %al,(%eax) f57: 02 23 add (%ebx),%ah f59: 10 12 adc %dl,(%edx) f5b: 66 6f outsw %ds:(%esi),(%dx) f5d: 6f outsl %ds:(%esi),(%dx) f5e: 00 17 add %dl,(%edi) f60: 7d 01 jge f63 <.debug_info+0xf63> f62: 02 01 add (%ecx),%al f64: 00 00 add %al,(%eax) f66: 02 23 add (%ebx),%ah f68: 14 12 adc $0x12,%al f6a: 66 6f outsw %ds:(%esi),(%dx) f6c: 73 00 jae f6e <.debug_info+0xf6e> f6e: 17 pop %ss f6f: 7e 01 jle f72 <.debug_info+0xf72> f71: 02 01 add (%ecx),%al f73: 00 00 add %al,(%eax) f75: 02 23 add (%ebx),%ah f77: 18 13 sbb %dl,(%ebx) f79: c7 00 00 00 17 7f movl $0x7f170000,(%eax) f7f: 01 cf add %ecx,%edi f81: 0d 00 00 02 23 or $0x23020000,%eax f86: 1c 12 sbb $0x12,%al f88: 66 data16 f89: 74 6f je ffa <.debug_info+0xffa> f8b: 70 00 jo f8d <.debug_info+0xf8d> f8d: 17 pop %ss f8e: 80 01 57 addb $0x57,(%ecx) f91: 02 00 add (%eax),%al f93: 00 02 add %al,(%edx) f95: 23 6c 12 63 and 0x63(%edx,%edx,1),%ebp f99: 68 61 6e 67 65 push $0x65676e61 f9e: 64 00 17 add %dl,%fs:(%edi) fa1: 80 01 57 addb $0x57,(%ecx) fa4: 02 00 add (%eax),%al fa6: 00 02 add %al,(%edx) fa8: 23 6d 12 and 0x12(%ebp),%ebp fab: 6c insb (%dx),%es:(%edi) fac: 6f outsl %ds:(%esi),(%dx) fad: 6f outsl %ds:(%esi),(%dx) fae: 6b 61 68 65 imul $0x65,0x68(%ecx),%esp fb2: 61 popa fb3: 64 00 17 add %dl,%fs:(%edi) fb6: 80 01 57 addb $0x57,(%ecx) fb9: 02 00 add (%eax),%al fbb: 00 02 add %al,(%edx) fbd: 23 6e 12 and 0x12(%esi),%ebp fc0: 6e outsb %ds:(%esi),(%dx) fc1: 6f outsl %ds:(%esi),(%dx) fc2: 5f pop %edi fc3: 75 70 jne 1035 <.debug_info+0x1035> fc5: 64 fs fc6: 61 popa fc7: 74 65 je 102e <.debug_info+0x102e> fc9: 00 17 add %dl,(%edi) fcb: 80 01 57 addb $0x57,(%ecx) fce: 02 00 add (%eax),%al fd0: 00 02 add %al,(%edx) fd2: 23 6f 12 and 0x12(%edi),%ebp fd5: 72 6d jb 1044 <.debug_info+0x1044> fd7: 00 17 add %dl,(%edi) fd9: 80 01 57 addb $0x57,(%ecx) fdc: 02 00 add (%eax),%al fde: 00 02 add %al,(%edx) fe0: 23 70 12 and 0x12(%eax),%esi fe3: 61 popa fe4: 6c insb (%dx),%es:(%edi) fe5: 69 6d 69 74 00 17 80 imul $0x80170074,0x69(%ebp),%ebp fec: 01 57 02 add %edx,0x2(%edi) fef: 00 00 add %al,(%eax) ff1: 02 23 add (%ebx),%ah ff3: 71 12 jno 1007 <.debug_info+0x1007> ff5: 69 6e 66 6f 00 17 81 imul $0x8117006f,0x66(%esi),%ebp ffc: 01 1a add %ebx,(%edx) ffe: 10 00 adc %al,(%eax) 1000: 00 02 add %al,(%edx) 1002: 23 74 12 65 and 0x65(%edx,%edx,1),%esi 1006: 6e outsb %ds:(%esi),(%dx) 1007: 74 72 je 107b <.debug_info+0x107b> 1009: 79 5f jns 106a <.debug_info+0x106a> 100b: 65 69 70 00 17 82 01 imul $0x98018217,%gs:0x0(%eax),%esi 1012: 98 1013: 00 00 add %al,(%eax) 1015: 00 02 add %al,(%edx) 1017: 23 78 00 and 0x0(%eax),%edi 101a: 06 push %es 101b: 04 bf add $0xbf,%al 101d: 08 00 or %al,(%eax) 101f: 00 15 60 10 00 00 add %dl,0x1060 1025: 69 33 38 37 5f 75 imul $0x755f3738,(%ebx),%esi 102b: 6e outsb %ds:(%esi),(%dx) 102c: 69 6f 6e 00 00 02 17 imul $0x17020000,0x6e(%edi),%ebp 1033: 85 01 test %eax,(%ecx) 1035: 16 push %ss 1036: 66 data16 1037: 73 61 jae 109a <.debug_info+0x109a> 1039: 76 65 jbe 10a0 <.debug_info+0x10a0> 103b: 00 17 add %dl,(%edi) 103d: 86 01 xchg %al,(%ecx) 103f: 2c 0d sub $0xd,%al 1041: 00 00 add %al,(%eax) 1043: 16 push %ss 1044: 66 data16 1045: 78 73 js 10ba <.debug_info+0x10ba> 1047: 61 popa 1048: 76 65 jbe 10af <.debug_info+0x10af> 104a: 00 17 add %dl,(%edi) 104c: 87 01 xchg %eax,(%ecx) 104e: df 0d 00 00 16 73 fisttp 0x73160000 1054: 6f outsl %ds:(%esi),(%dx) 1055: 66 data16 1056: 74 00 je 1058 <.debug_info+0x1058> 1058: 17 pop %ss 1059: 88 01 mov %al,(%ecx) 105b: f5 cmc 105c: 0e push %cs 105d: 00 00 add %al,(%eax) 105f: 00 17 add %dl,(%edi) 1061: 79 10 jns 1073 <.debug_info+0x1073> 1063: 00 00 add %al,(%eax) 1065: 04 17 add $0x17,%al 1067: 8d 01 lea (%ecx),%eax 1069: 12 73 65 adc 0x65(%ebx),%dh 106c: 67 00 17 addr16 add %dl,(%bx) 106f: 8c 01 movw %es,(%ecx) 1071: 98 cwtl 1072: 00 00 add %al,(%eax) 1074: 00 02 add %al,(%edx) 1076: 23 00 and (%eax),%eax 1078: 00 18 add %bl,(%eax) 107a: 6d insl (%dx),%es:(%edi) 107b: 6d insl (%dx),%es:(%edi) 107c: 5f pop %edi 107d: 73 65 jae 10e4 <.debug_info+0x10e4> 107f: 67 6d addr16 insl (%dx),%es:(%di) 1081: 65 6e outsb %gs:(%esi),(%dx) 1083: 74 5f je 10e4 <.debug_info+0x10e4> 1085: 74 00 je 1087 <.debug_info+0x1087> 1087: 17 pop %ss 1088: 8d 01 lea (%ecx),%eax 108a: 60 pusha 108b: 10 00 adc %al,(%eax) 108d: 00 14 4e add %dl,(%esi,%ecx,2) 1090: 12 00 adc (%eax),%al 1092: 00 74 68 72 add %dh,0x72(%eax,%ebp,2) 1096: 65 gs 1097: 61 popa 1098: 64 fs 1099: 5f pop %edi 109a: 73 74 jae 1110 <.debug_info+0x1110> 109c: 72 75 jb 1113 <.debug_info+0x1113> 109e: 63 74 00 90 arpl %si,0xffffff90(%eax,%eax,1) 10a2: 02 17 add (%edi),%dl 10a4: 8f 01 popl (%ecx) 10a6: 12 74 6c 73 adc 0x73(%esp,%ebp,2),%dh 10aa: 5f pop %edi 10ab: 61 popa 10ac: 72 72 jb 1120 <.debug_info+0x1120> 10ae: 61 popa 10af: 79 00 jns 10b1 <.debug_info+0x10b1> 10b1: 17 pop %ss 10b2: c3 ret 10b3: 01 4e 12 add %ecx,0x12(%esi) 10b6: 00 00 add %al,(%eax) 10b8: 02 23 add (%ebx),%ah 10ba: 00 12 add %dl,(%edx) 10bc: 65 gs 10bd: 73 70 jae 112f <.debug_info+0x112f> 10bf: 30 00 xor %al,(%eax) 10c1: 17 pop %ss 10c2: c4 01 les (%ecx),%eax 10c4: 98 cwtl 10c5: 00 00 add %al,(%eax) 10c7: 00 02 add %al,(%edx) 10c9: 23 18 and (%eax),%ebx 10cb: 12 73 79 adc 0x79(%ebx),%dh 10ce: 73 65 jae 1135 <.debug_info+0x1135> 10d0: 6e outsb %ds:(%esi),(%dx) 10d1: 74 65 je 1138 <.debug_info+0x1138> 10d3: 72 5f jb 1134 <.debug_info+0x1134> 10d5: 63 73 00 arpl %si,0x0(%ebx) 10d8: 17 pop %ss 10d9: c5 01 lds (%ecx),%eax 10db: 98 cwtl 10dc: 00 00 add %al,(%eax) 10de: 00 02 add %al,(%edx) 10e0: 23 1c 12 and (%edx,%edx,1),%ebx 10e3: 65 69 70 00 17 c6 01 imul $0x9801c617,%gs:0x0(%eax),%esi 10ea: 98 10eb: 00 00 add %al,(%eax) 10ed: 00 02 add %al,(%edx) 10ef: 23 20 and (%eax),%esp 10f1: 12 65 73 adc 0x73(%ebp),%ah 10f4: 70 00 jo 10f6 <.debug_info+0x10f6> 10f6: 17 pop %ss 10f7: c7 01 98 00 00 00 movl $0x98,(%ecx) 10fd: 02 23 add (%ebx),%ah 10ff: 24 12 and $0x12,%al 1101: 66 data16 1102: 73 00 jae 1104 <.debug_info+0x1104> 1104: 17 pop %ss 1105: c8 01 98 00 enter $0x9801,$0x0 1109: 00 00 add %al,(%eax) 110b: 02 23 add (%ebx),%ah 110d: 28 12 sub %dl,(%edx) 110f: 67 73 00 addr16 jae 1112 <.debug_info+0x1112> 1112: 17 pop %ss 1113: c9 leave 1114: 01 98 00 00 00 02 add %ebx,0x2000000(%eax) 111a: 23 2c 12 and (%edx,%edx,1),%ebp 111d: 64 65 62 75 67 bound %esi,%fs:%gs:0x67(%ebp) 1122: 72 65 jb 1189 <.debug_info+0x1189> 1124: 67 00 17 addr16 add %dl,(%bx) 1127: cb lret 1128: 01 1b add %ebx,(%ebx) 112a: 07 pop %es 112b: 00 00 add %al,(%eax) 112d: 02 23 add (%ebx),%ah 112f: 30 12 xor %dl,(%edx) 1131: 63 72 32 arpl %si,0x32(%edx) 1134: 00 17 add %dl,(%edi) 1136: cd 01 int $0x1 1138: 98 cwtl 1139: 00 00 add %al,(%eax) 113b: 00 02 add %al,(%edx) 113d: 23 50 12 and 0x12(%eax),%edx 1140: 74 72 je 11b4 <.debug_info+0x11b4> 1142: 61 popa 1143: 70 5f jo 11a4 <.debug_info+0x11a4> 1145: 6e outsb %ds:(%esi),(%dx) 1146: 6f outsl %ds:(%esi),(%dx) 1147: 00 17 add %dl,(%edi) 1149: cd 01 int $0x1 114b: 98 cwtl 114c: 00 00 add %al,(%eax) 114e: 00 02 add %al,(%edx) 1150: 23 54 12 65 and 0x65(%edx,%edx,1),%edx 1154: 72 72 jb 11c8 <.debug_info+0x11c8> 1156: 6f outsl %ds:(%esi),(%dx) 1157: 72 5f jb 11b8 <.debug_info+0x11b8> 1159: 63 6f 64 arpl %bp,0x64(%edi) 115c: 65 00 17 add %dl,%gs:(%edi) 115f: cd 01 int $0x1 1161: 98 cwtl 1162: 00 00 add %al,(%eax) 1164: 00 02 add %al,(%edx) 1166: 23 58 12 and 0x12(%eax),%ebx 1169: 69 33 38 37 00 17 imul $0x17003738,(%ebx),%esi 116f: cf iret 1170: 01 20 add %esp,(%eax) 1172: 10 00 adc %al,(%eax) 1174: 00 02 add %al,(%edx) 1176: 23 60 12 and 0x12(%eax),%esp 1179: 76 6d jbe 11e8 <.debug_info+0x11e8> 117b: 38 36 cmp %dh,(%esi) 117d: 5f pop %edi 117e: 69 6e 66 6f 00 17 d1 imul $0xd117006f,0x66(%esi),%ebp 1185: 01 5e 12 add %ebx,0x12(%esi) 1188: 00 00 add %al,(%eax) 118a: 03 23 add (%ebx),%esp 118c: e0 04 loopne 1192 <.debug_info+0x1192> 118e: 13 bf 02 00 00 17 adc 0x17000002(%edi),%edi 1194: d2 01 rolb %cl,(%ecx) 1196: 98 cwtl 1197: 00 00 add %al,(%eax) 1199: 00 03 add %al,(%ebx) 119b: 23 e4 and %esp,%esp 119d: 04 12 add $0x12,%al 119f: 76 38 jbe 11d9 <.debug_info+0x11d9> 11a1: 36 ss 11a2: 66 data16 11a3: 6c insb (%dx),%es:(%edi) 11a4: 61 popa 11a5: 67 73 00 addr16 jae 11a8 <.debug_info+0x11a8> 11a8: 17 pop %ss 11a9: d3 01 roll %cl,(%ecx) 11ab: 98 cwtl 11ac: 00 00 add %al,(%eax) 11ae: 00 03 add %al,(%ebx) 11b0: 23 e8 and %eax,%ebp 11b2: 04 12 add $0x12,%al 11b4: 76 38 jbe 11ee <.debug_info+0x11ee> 11b6: 36 ss 11b7: 6d insl (%dx),%es:(%edi) 11b8: 61 popa 11b9: 73 6b jae 1226 <.debug_info+0x1226> 11bb: 00 17 add %dl,(%edi) 11bd: d3 01 roll %cl,(%ecx) 11bf: 98 cwtl 11c0: 00 00 add %al,(%eax) 11c2: 00 03 add %al,(%ebx) 11c4: 23 ec and %esp,%ebp 11c6: 04 12 add $0x12,%al 11c8: 73 61 jae 122b <.debug_info+0x122b> 11ca: 76 65 jbe 1231 <.debug_info+0x1231> 11cc: 64 fs 11cd: 5f pop %edi 11ce: 65 gs 11cf: 73 70 jae 1241 <.debug_info+0x1241> 11d1: 30 00 xor %al,(%eax) 11d3: 17 pop %ss 11d4: d3 01 roll %cl,(%ecx) 11d6: 98 cwtl 11d7: 00 00 add %al,(%eax) 11d9: 00 03 add %al,(%ebx) 11db: 23 f0 and %eax,%esi 11dd: 04 12 add $0x12,%al 11df: 73 61 jae 1242 <.debug_info+0x1242> 11e1: 76 65 jbe 1248 <.debug_info+0x1248> 11e3: 64 fs 11e4: 5f pop %edi 11e5: 66 data16 11e6: 73 00 jae 11e8 <.debug_info+0x11e8> 11e8: 17 pop %ss 11e9: d4 01 aam $0x1 11eb: 3b 01 cmp (%ecx),%eax 11ed: 00 00 add %al,(%eax) 11ef: 03 23 add (%ebx),%esp 11f1: f4 hlt 11f2: 04 12 add $0x12,%al 11f4: 73 61 jae 1257 <.debug_info+0x1257> 11f6: 76 65 jbe 125d <.debug_info+0x125d> 11f8: 64 fs 11f9: 5f pop %edi 11fa: 67 73 00 addr16 jae 11fd <.debug_info+0x11fd> 11fd: 17 pop %ss 11fe: d4 01 aam $0x1 1200: 3b 01 cmp (%ecx),%eax 1202: 00 00 add %al,(%eax) 1204: 03 23 add (%ebx),%esp 1206: f8 clc 1207: 04 12 add $0x12,%al 1209: 69 6f 5f 62 69 74 6d imul $0x6d746962,0x5f(%edi),%ebp 1210: 61 popa 1211: 70 5f jo 1272 <.debug_info+0x1272> 1213: 70 74 jo 1289 <.debug_info+0x1289> 1215: 72 00 jb 1217 <.debug_info+0x1217> 1217: 17 pop %ss 1218: d6 (bad) 1219: 01 64 12 00 add %esp,0x0(%edx,%edx,1) 121d: 00 03 add %al,(%ebx) 121f: 23 fc and %esp,%edi 1221: 04 12 add $0x12,%al 1223: 69 6f 70 6c 00 17 d7 imul $0xd717006c,0x70(%edi),%ebp 122a: 01 98 00 00 00 03 add %ebx,0x3000000(%eax) 1230: 23 80 05 12 69 6f and 0x6f691205(%eax),%eax 1236: 5f pop %edi 1237: 62 69 74 bound %ebp,0x74(%ecx) 123a: 6d insl (%dx),%es:(%edi) 123b: 61 popa 123c: 70 5f jo 129d <.debug_info+0x129d> 123e: 6d insl (%dx),%es:(%edi) 123f: 61 popa 1240: 78 00 js 1242 <.debug_info+0x1242> 1242: 17 pop %ss 1243: d9 01 flds (%ecx) 1245: 98 cwtl 1246: 00 00 add %al,(%eax) 1248: 00 03 add %al,(%ebx) 124a: 23 84 05 00 03 5e 12 and 0x125e0300(%ebp,%eax,1),%eax 1251: 00 00 add %al,(%eax) 1253: 83 0a 00 orl $0x0,(%edx) 1256: 00 04 91 add %al,(%ecx,%edx,4) 1259: 00 00 add %al,(%eax) 125b: 00 02 add %al,(%edx) 125d: 00 06 add %al,(%esi) 125f: 04 2b add $0x2b,%al 1261: 07 pop %es 1262: 00 00 add %al,(%eax) 1264: 06 push %es 1265: 04 98 add $0x98,%al 1267: 00 00 add %al,(%eax) 1269: 00 0a add %cl,(%edx) 126b: 45 inc %ebp 126c: 13 00 adc (%eax),%eax 126e: 00 5c 02 00 add %bl,0x0(%edx,%eax,1) 1272: 00 38 add %bh,(%eax) 1274: 13 1b adc (%ebx),%ebx 1276: 0b 74 61 73 or 0x73(%ecx),%esi 127a: 6b 00 13 imul $0x13,(%eax),%eax 127d: 1c a5 sbb $0xa5,%al 127f: 1d 00 00 02 23 sbb $0x23020000,%eax 1284: 00 0f add %cl,(%edi) 1286: 86 01 xchg %al,(%ecx) 1288: 00 00 add %al,(%eax) 128a: 13 1d b1 1d 00 00 adc 0x1db1,%ebx 1290: 02 23 add (%ebx),%ah 1292: 04 0f add $0xf,%al 1294: b3 03 mov $0x3,%bl 1296: 00 00 add %al,(%eax) 1298: 13 1e adc (%esi),%ebx 129a: 98 cwtl 129b: 00 00 add %al,(%eax) 129d: 00 02 add %al,(%edx) 129f: 23 08 and (%eax),%ecx 12a1: 0f e0 01 pavgb (%ecx),%mm0 12a4: 00 00 add %al,(%eax) 12a6: 13 1f adc (%edi),%ebx 12a8: 98 cwtl 12a9: 00 00 add %al,(%eax) 12ab: 00 02 add %al,(%edx) 12ad: 23 0c 0b and (%ebx,%ecx,1),%ecx 12b0: 63 70 75 arpl %si,0x75(%eax) 12b3: 00 13 add %dl,(%ebx) 12b5: 20 9c 02 00 00 02 23 and %bl,0x23020000(%edx,%eax,1) 12bc: 10 0b adc %cl,(%ebx) 12be: 70 72 jo 1332 <.debug_info+0x1332> 12c0: 65 gs 12c1: 65 gs 12c2: 6d insl (%dx),%es:(%edi) 12c3: 70 74 jo 1339 <.debug_info+0x1339> 12c5: 5f pop %edi 12c6: 63 6f 75 arpl %bp,0x75(%edi) 12c9: 6e outsb %ds:(%esi),(%dx) 12ca: 74 00 je 12cc <.debug_info+0x12cc> 12cc: 13 21 adc (%ecx),%esp 12ce: 7a 00 jp 12d0 <.debug_info+0x12d0> 12d0: 00 00 add %al,(%eax) 12d2: 02 23 add (%ebx),%ah 12d4: 14 0b adc $0xb,%al 12d6: 61 popa 12d7: 64 fs 12d8: 64 fs 12d9: 72 5f jb 133a <.debug_info+0x133a> 12db: 6c insb (%dx),%es:(%edi) 12dc: 69 6d 69 74 00 13 24 imul $0x24130074,0x69(%ebp),%ebp 12e3: 79 10 jns 12f5 <.debug_info+0x12f5> 12e5: 00 00 add %al,(%eax) 12e7: 02 23 add (%ebx),%ah 12e9: 18 0b sbb %cl,(%ebx) 12eb: 73 79 jae 1366 <.debug_info+0x1366> 12ed: 73 65 jae 1354 <.debug_info+0x1354> 12ef: 6e outsb %ds:(%esi),(%dx) 12f0: 74 65 je 1357 <.debug_info+0x1357> 12f2: 72 5f jb 1353 <.debug_info+0x1353> 12f4: 72 65 jb 135b <.debug_info+0x135b> 12f6: 74 75 je 136d <.debug_info+0x136d> 12f8: 72 6e jb 1368 <.debug_info+0x1368> 12fa: 00 13 add %dl,(%ebx) 12fc: 28 b7 1d 00 00 02 sub %dh,0x200001d(%edi) 1302: 23 1c 0f and (%edi,%ecx,1),%ebx 1305: db 02 fildl (%edx) 1307: 00 00 add %al,(%eax) 1309: 13 29 adc (%ecx),%ebp 130b: 23 04 00 and (%eax,%eax,1),%eax 130e: 00 02 add %al,(%edx) 1310: 23 20 and (%eax),%esp 1312: 0b 70 72 or 0x72(%eax),%esi 1315: 65 gs 1316: 76 69 jbe 1381 <.debug_info+0x1381> 1318: 6f outsl %ds:(%esi),(%dx) 1319: 75 73 jne 138e <.debug_info+0x138e> 131b: 5f pop %edi 131c: 65 gs 131d: 73 70 jae 138f <.debug_info+0x138f> 131f: 00 13 add %dl,(%ebx) 1321: 2b 98 00 00 00 02 sub 0x2000000(%eax),%ebx 1327: 23 34 0b and (%ebx,%ecx,1),%esi 132a: 73 75 jae 13a1 <.debug_info+0x13a1> 132c: 70 65 jo 1393 <.debug_info+0x1393> 132e: 72 76 jb 13a6 <.debug_info+0x13a6> 1330: 69 73 6f 72 5f 73 74 imul $0x74735f72,0x6f(%ebx),%esi 1337: 61 popa 1338: 63 6b 00 arpl %bp,0x0(%ebx) 133b: 13 2e adc (%esi),%ebp 133d: b9 1d 00 00 02 mov $0x200001d,%ecx 1342: 23 38 and (%eax),%edi 1344: 00 10 add %dl,(%eax) 1346: a5 movsl %ds:(%esi),%es:(%edi) 1347: 1d 00 00 74 61 sbb $0x61740000,%eax 134c: 73 6b jae 13b9 <.debug_info+0x13b9> 134e: 5f pop %edi 134f: 73 74 jae 13c5 <.debug_info+0x13c5> 1351: 72 75 jb 13c8 <.debug_info+0x13c8> 1353: 63 74 00 60 arpl %si,0x60(%eax,%eax,1) 1357: 05 14 d4 12 73 add $0x7312d414,%eax 135c: 74 61 je 13bf <.debug_info+0x13bf> 135e: 74 65 je 13c5 <.debug_info+0x13c5> 1360: 00 15 00 03 a5 54 add %dl,0x54a50300 1366: 00 00 add %al,(%eax) 1368: 02 23 add (%ebx),%ah 136a: 00 13 add %dl,(%ebx) 136c: 5c pop %esp 136d: 02 00 add (%eax),%al 136f: 00 15 01 03 12 3d add %dl,0x3d120301 1375: 00 00 add %al,(%eax) 1377: 02 23 add (%ebx),%ah 1379: 04 12 add $0x12,%al 137b: 75 73 jne 13f0 <.debug_info+0x13f0> 137d: 61 popa 137e: 67 65 00 15 addr16 add %dl,%gs:(%di) 1382: 02 03 add (%ebx),%al 1384: a1 1f 00 00 02 mov 0x200001f,%eax 1389: 23 08 and (%eax),%ecx 138b: 13 b3 03 00 00 15 adc 0x15000003(%ebx),%esi 1391: 03 03 add (%ebx),%eax 1393: 98 cwtl 1394: 00 00 add %al,(%eax) 1396: 00 02 add %al,(%edx) 1398: 23 0c 12 and (%edx,%edx,1),%ecx 139b: 70 74 jo 1411 <.debug_info+0x1411> 139d: 72 61 jb 1400 <.debug_info+0x1400> 139f: 63 65 00 arpl %sp,0x0(%ebp) 13a2: 15 04 03 98 00 adc $0x980304,%eax 13a7: 00 00 add %al,(%eax) 13a9: 02 23 add (%ebx),%ah 13ab: 10 12 adc %dl,(%edx) 13ad: 6c insb (%dx),%es:(%edi) 13ae: 6f outsl %ds:(%esi),(%dx) 13af: 63 6b 5f arpl %bp,0x5f(%ebx) 13b2: 64 fs 13b3: 65 gs 13b4: 70 74 jo 142a <.debug_info+0x142a> 13b6: 68 00 15 06 03 push $0x3061500 13bb: 7a 00 jp 13bd <.debug_info+0x13bd> 13bd: 00 00 add %al,(%eax) 13bf: 02 23 add (%ebx),%ah 13c1: 14 12 adc $0x12,%al 13c3: 6c insb (%dx),%es:(%edi) 13c4: 6f outsl %ds:(%esi),(%dx) 13c5: 61 popa 13c6: 64 fs 13c7: 5f pop %edi 13c8: 77 65 ja 142f <.debug_info+0x142f> 13ca: 69 67 68 74 00 15 0d imul $0xd150074,0x68(%edi),%esp 13d1: 03 7a 00 add 0x0(%edx),%edi 13d4: 00 00 add %al,(%eax) 13d6: 02 23 add (%ebx),%ah 13d8: 18 12 sbb %dl,(%edx) 13da: 70 72 jo 144e <.debug_info+0x144e> 13dc: 69 6f 00 15 0e 03 7a imul $0x7a030e15,0x0(%edi),%ebp 13e3: 00 00 add %al,(%eax) 13e5: 00 02 add %al,(%edx) 13e7: 23 1c 12 and (%edx,%edx,1),%ebx 13ea: 73 74 jae 1460 <.debug_info+0x1460> 13ec: 61 popa 13ed: 74 69 je 1458 <.debug_info+0x1458> 13ef: 63 5f 70 arpl %bx,0x70(%edi) 13f2: 72 69 jb 145d <.debug_info+0x145d> 13f4: 6f outsl %ds:(%esi),(%dx) 13f5: 00 15 0e 03 7a 00 add %dl,0x7a030e 13fb: 00 00 add %al,(%eax) 13fd: 02 23 add (%ebx),%ah 13ff: 20 12 and %dl,(%edx) 1401: 6e outsb %ds:(%esi),(%dx) 1402: 6f outsl %ds:(%esi),(%dx) 1403: 72 6d jb 1472 <.debug_info+0x1472> 1405: 61 popa 1406: 6c insb (%dx),%es:(%edi) 1407: 5f pop %edi 1408: 70 72 jo 147c <.debug_info+0x147c> 140a: 69 6f 00 15 0e 03 7a imul $0x7a030e15,0x0(%edi),%ebp 1411: 00 00 add %al,(%eax) 1413: 00 02 add %al,(%edx) 1415: 23 24 13 and (%ebx,%edx,1),%esp 1418: a7 cmpsl %es:(%edi),%ds:(%esi) 1419: 02 00 add (%eax),%al 141b: 00 15 0f 03 c8 1d add %dl,0x1dc8030f 1421: 00 00 add %al,(%eax) 1423: 02 23 add (%ebx),%ah 1425: 28 12 sub %dl,(%edx) 1427: 61 popa 1428: 72 72 jb 149c <.debug_info+0x149c> 142a: 61 popa 142b: 79 00 jns 142d <.debug_info+0x142d> 142d: 15 10 03 b7 54 adc $0x54b70310,%eax 1432: 00 00 add %al,(%eax) 1434: 02 23 add (%ebx),%ah 1436: 30 12 xor %dl,(%edx) 1438: 69 6f 70 72 69 6f 00 imul $0x6f6972,0x70(%edi),%ebp 143f: 15 12 03 ec 00 adc $0xec0312,%eax 1444: 00 00 add %al,(%eax) 1446: 02 23 add (%ebx),%ah 1448: 34 12 xor $0x12,%al 144a: 62 74 72 61 bound %esi,0x61(%edx,%esi,2) 144e: 63 65 5f arpl %sp,0x5f(%ebp) 1451: 73 65 jae 14b8 <.debug_info+0x14b8> 1453: 71 00 jno 1455 <.debug_info+0x1455> 1455: 15 13 03 3b 01 adc $0x13b0313,%eax 145a: 00 00 add %al,(%eax) 145c: 02 23 add (%ebx),%ah 145e: 38 12 cmp %dl,(%edx) 1460: 73 6c jae 14ce <.debug_info+0x14ce> 1462: 65 gs 1463: 65 gs 1464: 70 5f jo 14c5 <.debug_info+0x14c5> 1466: 61 popa 1467: 76 67 jbe 14d0 <.debug_info+0x14d0> 1469: 00 15 15 03 98 00 add %dl,0x980315 146f: 00 00 add %al,(%eax) 1471: 02 23 add (%ebx),%ah 1473: 3c 12 cmp $0x12,%al 1475: 74 69 je 14e0 <.debug_info+0x14e0> 1477: 6d insl (%dx),%es:(%edi) 1478: 65 gs 1479: 73 74 jae 14ef <.debug_info+0x14ef> 147b: 61 popa 147c: 6d insl (%dx),%es:(%edi) 147d: 70 00 jo 147f <.debug_info+0x147f> 147f: 15 16 03 c3 02 adc $0x2c30316,%eax 1484: 00 00 add %al,(%eax) 1486: 02 23 add (%ebx),%ah 1488: 40 inc %eax 1489: 12 6c 61 73 adc 0x73(%ecx),%ch 148d: 74 5f je 14ee <.debug_info+0x14ee> 148f: 72 61 jb 14f2 <.debug_info+0x14f2> 1491: 6e outsb %ds:(%esi),(%dx) 1492: 00 15 16 03 c3 02 add %dl,0x2c30316 1498: 00 00 add %al,(%eax) 149a: 02 23 add (%ebx),%ah 149c: 48 dec %eax 149d: 13 7c 02 00 adc 0x0(%edx,%eax,1),%edi 14a1: 00 15 17 03 c3 02 add %dl,0x2c30317 14a7: 00 00 add %al,(%eax) 14a9: 02 23 add (%ebx),%ah 14ab: 50 push %eax 14ac: 13 2a adc (%edx),%ebp 14ae: 03 00 add (%eax),%eax 14b0: 00 15 18 03 49 54 add %dl,0x54490318 14b6: 00 00 add %al,(%eax) 14b8: 02 23 add (%ebx),%ah 14ba: 58 pop %eax 14bb: 12 70 6f adc 0x6f(%eax),%dh 14be: 6c insb (%dx),%es:(%edi) 14bf: 69 63 79 00 15 1a 03 imul $0x31a1500,0x79(%ebx),%esp 14c6: 98 cwtl 14c7: 00 00 add %al,(%eax) 14c9: 00 02 add %al,(%edx) 14cb: 23 5c 12 63 and 0x63(%edx,%edx,1),%ebx 14cf: 70 75 jo 1546 <.debug_info+0x1546> 14d1: 73 5f jae 1532 <.debug_info+0x1532> 14d3: 61 popa 14d4: 6c insb (%dx),%es:(%edi) 14d5: 6c insb (%dx),%es:(%edi) 14d6: 6f outsl %ds:(%esi),(%dx) 14d7: 77 65 ja 153e <.debug_info+0x153e> 14d9: 64 00 15 1b 03 72 0a add %dl,%fs:0xa72031b 14e0: 00 00 add %al,(%eax) 14e2: 02 23 add (%ebx),%ah 14e4: 60 pusha 14e5: 12 74 69 6d adc 0x6d(%ecx,%ebp,2),%dh 14e9: 65 gs 14ea: 5f pop %edi 14eb: 73 6c jae 1559 <.debug_info+0x1559> 14ed: 69 63 65 00 15 1c 03 imul $0x31c1500,0x65(%ebx),%esp 14f4: 3b 01 cmp (%ecx),%eax 14f6: 00 00 add %al,(%eax) 14f8: 02 23 add (%ebx),%ah 14fa: 64 12 66 69 adc %fs:0x69(%esi),%ah 14fe: 72 73 jb 1573 <.debug_info+0x1573> 1500: 74 5f je 1561 <.debug_info+0x1561> 1502: 74 69 je 156d <.debug_info+0x156d> 1504: 6d insl (%dx),%es:(%edi) 1505: 65 gs 1506: 5f pop %edi 1507: 73 6c jae 1575 <.debug_info+0x1575> 1509: 69 63 65 00 15 1c 03 imul $0x31c1500,0x65(%ebx),%esp 1510: 3b 01 cmp (%ecx),%eax 1512: 00 00 add %al,(%eax) 1514: 02 23 add (%ebx),%ah 1516: 68 12 74 61 73 push $0x73617412 151b: 6b 73 00 15 imul $0x15,0x0(%ebx),%esi 151f: 22 03 and (%ebx),%al 1521: c8 1d 00 00 enter $0x1d,$0x0 1525: 02 23 add (%ebx),%ah 1527: 6c insb (%dx),%es:(%edi) 1528: 12 70 74 adc 0x74(%eax),%dh 152b: 72 61 jb 158e <.debug_info+0x158e> 152d: 63 65 5f arpl %sp,0x5f(%ebp) 1530: 63 68 69 arpl %bp,0x69(%eax) 1533: 6c insb (%dx),%es:(%edi) 1534: 64 fs 1535: 72 65 jb 159c <.debug_info+0x159c> 1537: 6e outsb %ds:(%esi),(%dx) 1538: 00 15 27 03 c8 1d add %dl,0x1dc80327 153e: 00 00 add %al,(%eax) 1540: 02 23 add (%ebx),%ah 1542: 74 12 je 1556 <.debug_info+0x1556> 1544: 70 74 jo 15ba <.debug_info+0x15ba> 1546: 72 61 jb 15a9 <.debug_info+0x15a9> 1548: 63 65 5f arpl %sp,0x5f(%ebp) 154b: 6c insb (%dx),%es:(%edi) 154c: 69 73 74 00 15 28 03 imul $0x3281500,0x74(%ebx),%esi 1553: c8 1d 00 00 enter $0x1d,$0x0 1557: 02 23 add (%ebx),%ah 1559: 7c 12 jl 156d <.debug_info+0x156d> 155b: 6d insl (%dx),%es:(%edi) 155c: 6d insl (%dx),%es:(%edi) 155d: 00 15 2a 03 60 4d add %dl,0x4d60032a 1563: 00 00 add %al,(%eax) 1565: 03 23 add (%ebx),%esp 1567: 84 01 test %al,(%ecx) 1569: 12 61 63 adc 0x63(%ecx),%ah 156c: 74 69 je 15d7 <.debug_info+0x15d7> 156e: 76 65 jbe 15d5 <.debug_info+0x15d5> 1570: 5f pop %edi 1571: 6d insl (%dx),%es:(%edi) 1572: 6d insl (%dx),%es:(%edi) 1573: 00 15 2a 03 60 4d add %dl,0x4d60032a 1579: 00 00 add %al,(%eax) 157b: 03 23 add (%ebx),%esp 157d: 88 01 mov %al,(%ecx) 157f: 12 62 69 adc 0x69(%edx),%ah 1582: 6e outsb %ds:(%esi),(%dx) 1583: 66 6d insw (%dx),%es:(%edi) 1585: 74 00 je 1587 <.debug_info+0x1587> 1587: 15 2d 03 cc 54 adc $0x54cc032d,%eax 158c: 00 00 add %al,(%eax) 158e: 03 23 add (%ebx),%esp 1590: 8c 01 movw %es,(%ecx) 1592: 12 65 78 adc 0x78(%ebp),%ah 1595: 69 74 5f 73 74 61 74 imul $0x65746174,0x73(%edi,%ebx,2),%esi 159c: 65 159d: 00 15 2e 03 02 01 add %dl,0x102032e 15a3: 00 00 add %al,(%eax) 15a5: 03 23 add (%ebx),%esp 15a7: 90 nop 15a8: 01 12 add %edx,(%edx) 15aa: 65 gs 15ab: 78 69 js 1616 <.debug_info+0x1616> 15ad: 74 5f je 160e <.debug_info+0x160e> 15af: 63 6f 64 arpl %bp,0x64(%edi) 15b2: 65 00 15 2f 03 7a 00 add %dl,%gs:0x7a032f 15b9: 00 00 add %al,(%eax) 15bb: 03 23 add (%ebx),%esp 15bd: 94 xchg %eax,%esp 15be: 01 12 add %edx,(%edx) 15c0: 65 gs 15c1: 78 69 js 162c <.debug_info+0x162c> 15c3: 74 5f je 1624 <.debug_info+0x1624> 15c5: 73 69 jae 1630 <.debug_info+0x1630> 15c7: 67 6e addr16 outsb %ds:(%si),(%dx) 15c9: 61 popa 15ca: 6c insb (%dx),%es:(%edi) 15cb: 00 15 2f 03 7a 00 add %dl,0x7a032f 15d1: 00 00 add %al,(%eax) 15d3: 03 23 add (%ebx),%esp 15d5: 98 cwtl 15d6: 01 12 add %edx,(%edx) 15d8: 70 64 jo 163e <.debug_info+0x163e> 15da: 65 gs 15db: 61 popa 15dc: 74 68 je 1646 <.debug_info+0x1646> 15de: 5f pop %edi 15df: 73 69 jae 164a <.debug_info+0x164a> 15e1: 67 6e addr16 outsb %ds:(%si),(%dx) 15e3: 61 popa 15e4: 6c insb (%dx),%es:(%edi) 15e5: 00 15 30 03 7a 00 add %dl,0x7a0330 15eb: 00 00 add %al,(%eax) 15ed: 03 23 add (%ebx),%esp 15ef: 9c pushf 15f0: 01 12 add %edx,(%edx) 15f2: 70 65 jo 1659 <.debug_info+0x1659> 15f4: 72 73 jb 1669 <.debug_info+0x1669> 15f6: 6f outsl %ds:(%esi),(%dx) 15f7: 6e outsb %ds:(%esi),(%dx) 15f8: 61 popa 15f9: 6c insb (%dx),%es:(%edi) 15fa: 69 74 79 00 15 32 03 imul $0x98033215,0x0(%ecx,%edi,2),%esi 1601: 98 1602: 00 00 add %al,(%eax) 1604: 00 03 add %al,(%ebx) 1606: 23 a0 01 19 64 69 and 0x69641901(%eax),%esp 160c: 64 fs 160d: 5f pop %edi 160e: 65 gs 160f: 78 65 js 1676 <.debug_info+0x1676> 1611: 63 00 arpl %ax,(%eax) 1613: 15 33 03 3b 01 adc $0x13b0333,%eax 1618: 00 00 add %al,(%eax) 161a: 04 01 add $0x1,%al 161c: 1f pop %ds 161d: 03 23 add (%ebx),%esp 161f: a4 movsb %ds:(%esi),%es:(%edi) 1620: 01 12 add %edx,(%edx) 1622: 70 69 jo 168d <.debug_info+0x168d> 1624: 64 00 15 34 03 60 03 add %dl,%fs:0x3600334 162b: 00 00 add %al,(%eax) 162d: 03 23 add (%ebx),%esp 162f: a8 01 test $0x1,%al 1631: 12 74 67 69 adc 0x69(%edi),%dh 1635: 64 00 15 35 03 60 03 add %dl,%fs:0x3600335 163c: 00 00 add %al,(%eax) 163e: 03 23 add (%ebx),%esp 1640: ac lods %ds:(%esi),%al 1641: 01 12 add %edx,(%edx) 1643: 72 65 jb 16aa <.debug_info+0x16aa> 1645: 61 popa 1646: 6c insb (%dx),%es:(%edi) 1647: 5f pop %edi 1648: 70 61 jo 16ab <.debug_info+0x16ab> 164a: 72 65 jb 16b1 <.debug_info+0x16b1> 164c: 6e outsb %ds:(%esi),(%dx) 164d: 74 00 je 164f <.debug_info+0x164f> 164f: 15 3b 03 a5 1d adc $0x1da5033b,%eax 1654: 00 00 add %al,(%eax) 1656: 03 23 add (%ebx),%esp 1658: b0 01 mov $0x1,%al 165a: 13 76 03 adc 0x3(%esi),%esi 165d: 00 00 add %al,(%eax) 165f: 15 3c 03 a5 1d adc $0x1da5033c,%eax 1664: 00 00 add %al,(%eax) 1666: 03 23 add (%ebx),%esp 1668: b4 01 mov $0x1,%ah 166a: 13 07 adc (%edi),%eax 166c: 03 00 add (%eax),%eax 166e: 00 15 41 03 c8 1d add %dl,0x1dc80341 1674: 00 00 add %al,(%eax) 1676: 03 23 add (%ebx),%esp 1678: b8 01 12 73 69 mov $0x69731201,%eax 167d: 62 6c 69 6e bound %ebp,0x6e(%ecx,%ebp,2) 1681: 67 00 15 addr16 add %dl,(%di) 1684: 42 inc %edx 1685: 03 c8 add %eax,%ecx 1687: 1d 00 00 03 23 sbb $0x23030000,%eax 168c: c0 01 12 rolb $0x12,(%ecx) 168f: 67 72 6f addr16 jb 1701 <.debug_info+0x1701> 1692: 75 70 jne 1704 <.debug_info+0x1704> 1694: 5f pop %edi 1695: 6c insb (%dx),%es:(%edi) 1696: 65 gs 1697: 61 popa 1698: 64 fs 1699: 65 gs 169a: 72 00 jb 169c <.debug_info+0x169c> 169c: 15 43 03 a5 1d adc $0x1da50343,%eax 16a1: 00 00 add %al,(%eax) 16a3: 03 23 add (%ebx),%esp 16a5: c8 01 12 70 enter $0x1201,$0x70 16a9: 69 64 73 00 15 46 03 imul $0xd2034615,0x0(%ebx,%esi,2),%esp 16b0: d2 16b1: 54 push %esp 16b2: 00 00 add %al,(%eax) 16b4: 03 23 add (%ebx),%esp 16b6: cc int3 16b7: 01 12 add %edx,(%edx) 16b9: 74 68 je 1723 <.debug_info+0x1723> 16bb: 72 65 jb 1722 <.debug_info+0x1722> 16bd: 61 popa 16be: 64 fs 16bf: 5f pop %edi 16c0: 67 72 6f addr16 jb 1732 <.debug_info+0x1732> 16c3: 75 70 jne 1735 <.debug_info+0x1735> 16c5: 00 15 47 03 c8 1d add %dl,0x1dc80347 16cb: 00 00 add %al,(%eax) 16cd: 03 23 add (%ebx),%esp 16cf: f0 01 12 lock add %edx,(%edx) 16d2: 76 66 jbe 173a <.debug_info+0x173a> 16d4: 6f outsl %ds:(%esi),(%dx) 16d5: 72 6b jb 1742 <.debug_info+0x1742> 16d7: 5f pop %edi 16d8: 64 6f outsl %fs:(%esi),(%dx) 16da: 6e outsb %ds:(%esi),(%dx) 16db: 65 00 15 49 03 13 4f add %dl,%gs:0x4f130349 16e2: 00 00 add %al,(%eax) 16e4: 03 23 add (%ebx),%esp 16e6: f8 clc 16e7: 01 12 add %edx,(%edx) 16e9: 73 65 jae 1750 <.debug_info+0x1750> 16eb: 74 5f je 174c <.debug_info+0x174c> 16ed: 63 68 69 arpl %bp,0x69(%eax) 16f0: 6c insb (%dx),%es:(%edi) 16f1: 64 fs 16f2: 5f pop %edi 16f3: 74 69 je 175e <.debug_info+0x175e> 16f5: 64 00 15 4a 03 e2 54 add %dl,%fs:0x54e2034a 16fc: 00 00 add %al,(%eax) 16fe: 03 23 add (%ebx),%esp 1700: fc cld 1701: 01 12 add %edx,(%edx) 1703: 63 6c 65 61 arpl %bp,0x61(%ebp) 1707: 72 5f jb 1768 <.debug_info+0x1768> 1709: 63 68 69 arpl %bp,0x69(%eax) 170c: 6c insb (%dx),%es:(%edi) 170d: 64 fs 170e: 5f pop %edi 170f: 74 69 je 177a <.debug_info+0x177a> 1711: 64 00 15 4b 03 e2 54 add %dl,%fs:0x54e2034b 1718: 00 00 add %al,(%eax) 171a: 03 23 add (%ebx),%esp 171c: 80 02 12 addb $0x12,(%edx) 171f: 72 74 jb 1795 <.debug_info+0x1795> 1721: 5f pop %edi 1722: 70 72 jo 1796 <.debug_info+0x1796> 1724: 69 6f 72 69 74 79 00 imul $0x797469,0x72(%edi),%ebp 172b: 15 4d 03 98 00 adc $0x98034d,%eax 1730: 00 00 add %al,(%eax) 1732: 03 23 add (%ebx),%esp 1734: 84 02 test %al,(%edx) 1736: 12 75 74 adc 0x74(%ebp),%dh 1739: 69 6d 65 00 15 4e 03 imul $0x34e1500,0x65(%ebp),%ebp 1740: 90 nop 1741: 22 00 and (%eax),%al 1743: 00 03 add %al,(%ebx) 1745: 23 88 02 12 73 74 and 0x74731202(%eax),%ecx 174b: 69 6d 65 00 15 4e 03 imul $0x34e1500,0x65(%ebp),%ebp 1752: 90 nop 1753: 22 00 and (%eax),%al 1755: 00 03 add %al,(%ebx) 1757: 23 8c 02 12 6e 76 63 and 0x63766e12(%edx,%eax,1),%ecx 175e: 73 77 jae 17d7 <.debug_info+0x17d7> 1760: 00 15 4f 03 98 00 add %dl,0x98034f 1766: 00 00 add %al,(%eax) 1768: 03 23 add (%ebx),%esp 176a: 90 nop 176b: 02 12 add (%edx),%dl 176d: 6e outsb %ds:(%esi),(%dx) 176e: 69 76 63 73 77 00 15 imul $0x15007773,0x63(%esi),%esi 1775: 4f dec %edi 1776: 03 98 00 00 00 03 add 0x3000000(%eax),%ebx 177c: 23 94 02 12 73 74 61 and 0x61747312(%edx,%eax,1),%edx 1783: 72 74 jb 17f9 <.debug_info+0x17f9> 1785: 5f pop %edi 1786: 74 69 je 17f1 <.debug_info+0x17f1> 1788: 6d insl (%dx),%es:(%edi) 1789: 65 00 15 50 03 11 20 add %dl,%gs:0x20110350 1790: 00 00 add %al,(%eax) 1792: 03 23 add (%ebx),%esp 1794: 98 cwtl 1795: 02 12 add (%edx),%dl 1797: 6d insl (%dx),%es:(%edi) 1798: 69 6e 5f 66 6c 74 00 imul $0x746c66,0x5f(%esi),%ebp 179f: 15 52 03 98 00 adc $0x980352,%eax 17a4: 00 00 add %al,(%eax) 17a6: 03 23 add (%ebx),%esp 17a8: a0 02 12 6d 61 mov 0x616d1202,%al 17ad: 6a 5f push $0x5f 17af: 66 data16 17b0: 6c insb (%dx),%es:(%edi) 17b1: 74 00 je 17b3 <.debug_info+0x17b3> 17b3: 15 52 03 98 00 adc $0x980352,%eax 17b8: 00 00 add %al,(%eax) 17ba: 03 23 add (%ebx),%esp 17bc: a4 movsb %ds:(%esi),%es:(%edi) 17bd: 02 13 add (%ebx),%dl 17bf: 5a pop %edx 17c0: 00 00 add %al,(%eax) 17c2: 00 15 54 03 90 22 add %dl,0x22900354 17c8: 00 00 add %al,(%eax) 17ca: 03 23 add (%ebx),%esp 17cc: a8 02 test $0x2,%al 17ce: 13 87 02 00 00 15 adc 0x15000002(%edi),%eax 17d4: 54 push %esp 17d5: 03 90 22 00 00 03 add 0x3000022(%eax),%edx 17db: 23 ac 02 12 69 74 5f and 0x5f746912(%edx,%eax,1),%ebp 17e2: 73 63 jae 1847 <.debug_info+0x1847> 17e4: 68 65 64 5f 65 push $0x655f6465 17e9: 78 70 js 185b <.debug_info+0x185b> 17eb: 69 72 65 73 00 15 55 imul $0x55150073,0x65(%edx),%esi 17f2: 03 c3 add %ebx,%eax 17f4: 02 00 add (%eax),%al 17f6: 00 03 add %al,(%ebx) 17f8: 23 b0 02 13 d5 01 and 0x1d51302(%eax),%esi 17fe: 00 00 add %al,(%eax) 1800: 15 56 03 98 53 adc $0x53980356,%eax 1805: 00 00 add %al,(%eax) 1807: 03 23 add (%ebx),%esp 1809: b8 02 12 75 69 mov $0x69751202,%eax 180e: 64 00 15 59 03 8d 03 add %dl,%fs:0x38d0359 1815: 00 00 add %al,(%eax) 1817: 03 23 add (%ebx),%esp 1819: d0 02 rolb (%edx) 181b: 12 65 75 adc 0x75(%ebp),%ah 181e: 69 64 00 15 59 03 8d imul $0x38d0359,0x15(%eax,%eax,1),%esp 1825: 03 1826: 00 00 add %al,(%eax) 1828: 03 23 add (%ebx),%esp 182a: d4 02 aam $0x2 182c: 12 73 75 adc 0x75(%ebx),%dh 182f: 69 64 00 15 59 03 8d imul $0x38d0359,0x15(%eax,%eax,1),%esp 1836: 03 1837: 00 00 add %al,(%eax) 1839: 03 23 add (%ebx),%esp 183b: d8 02 fadds (%edx) 183d: 12 66 73 adc 0x73(%esi),%ah 1840: 75 69 jne 18ab <.debug_info+0x18ab> 1842: 64 00 15 59 03 8d 03 add %dl,%fs:0x38d0359 1849: 00 00 add %al,(%eax) 184b: 03 23 add (%ebx),%esp 184d: dc 02 faddl (%edx) 184f: 12 67 69 adc 0x69(%edi),%ah 1852: 64 00 15 5a 03 9a 03 add %dl,%fs:0x39a035a 1859: 00 00 add %al,(%eax) 185b: 03 23 add (%ebx),%esp 185d: e0 02 loopne 1861 <.debug_info+0x1861> 185f: 12 65 67 adc 0x67(%ebp),%ah 1862: 69 64 00 15 5a 03 9a imul $0x39a035a,0x15(%eax,%eax,1),%esp 1869: 03 186a: 00 00 add %al,(%eax) 186c: 03 23 add (%ebx),%esp 186e: e4 02 in $0x2,%al 1870: 12 73 67 adc 0x67(%ebx),%dh 1873: 69 64 00 15 5a 03 9a imul $0x39a035a,0x15(%eax,%eax,1),%esp 187a: 03 187b: 00 00 add %al,(%eax) 187d: 03 23 add (%ebx),%esp 187f: e8 02 12 66 73 call 73662a86 1884: 67 69 64 00 15 5a 03 addr16 imul $0x9a035a15,0(%si),%esp 188b: 9a 188c: 03 00 add (%eax),%eax 188e: 00 03 add %al,(%ebx) 1890: 23 ec and %esp,%ebp 1892: 02 13 add (%ebx),%dl 1894: 6b 03 00 imul $0x0,(%ebx),%eax 1897: 00 15 5b 03 e8 54 add %dl,0x54e8035b 189d: 00 00 add %al,(%eax) 189f: 03 23 add (%ebx),%esp 18a1: f0 02 12 lock add (%edx),%dl 18a4: 63 61 70 arpl %sp,0x70(%ecx) 18a7: 5f pop %edi 18a8: 65 gs 18a9: 66 data16 18aa: 66 data16 18ab: 65 63 74 69 76 arpl %si,%gs:0x76(%ecx,%ebp,2) 18b0: 65 00 15 5c 03 c6 1f add %dl,%gs:0x1fc6035c 18b7: 00 00 add %al,(%eax) 18b9: 03 23 add (%ebx),%esp 18bb: f4 hlt 18bc: 02 12 add (%edx),%dl 18be: 63 61 70 arpl %sp,0x70(%ecx) 18c1: 5f pop %edi 18c2: 69 6e 68 65 72 69 74 imul $0x74697265,0x68(%esi),%ebp 18c9: 61 popa 18ca: 62 6c 65 00 bound %ebp,0x0(%ebp) 18ce: 15 5c 03 c6 1f adc $0x1fc6035c,%eax 18d3: 00 00 add %al,(%eax) 18d5: 03 23 add (%ebx),%esp 18d7: f8 clc 18d8: 02 12 add (%edx),%dl 18da: 63 61 70 arpl %sp,0x70(%ecx) 18dd: 5f pop %edi 18de: 70 65 jo 1945 <.debug_info+0x1945> 18e0: 72 6d jb 194f <.debug_info+0x194f> 18e2: 69 74 74 65 64 00 15 imul $0x5c150064,0x65(%esp,%esi,2),%esi 18e9: 5c 18ea: 03 c6 add %esi,%eax 18ec: 1f pop %ds 18ed: 00 00 add %al,(%eax) 18ef: 03 23 add (%ebx),%esp 18f1: fc cld 18f2: 02 19 add (%ecx),%bl 18f4: 6b 65 65 70 imul $0x70,0x65(%ebp),%esp 18f8: 5f pop %edi 18f9: 63 61 70 arpl %sp,0x70(%ecx) 18fc: 61 popa 18fd: 62 69 6c bound %ebp,0x6c(%ecx) 1900: 69 74 69 65 73 00 15 imul $0x5d150073,0x65(%ecx,%ebp,2),%esi 1907: 5d 1908: 03 3b add (%ebx),%edi 190a: 01 00 add %eax,(%eax) 190c: 00 04 01 add %al,(%ecx,%eax,1) 190f: 1f pop %ds 1910: 03 23 add (%ebx),%esp 1912: 80 03 12 addb $0x12,(%ebx) 1915: 75 73 jne 198a <.debug_info+0x198a> 1917: 65 gs 1918: 72 00 jb 191a <.debug_info+0x191a> 191a: 15 5e 03 d4 33 adc $0x33d4035e,%eax 191f: 00 00 add %al,(%eax) 1921: 03 23 add (%ebx),%esp 1923: 84 03 test %al,(%ebx) 1925: 12 72 65 adc 0x65(%edx),%dh 1928: 71 75 jno 199f <.debug_info+0x199f> 192a: 65 gs 192b: 73 74 jae 19a1 <.debug_info+0x19a1> 192d: 5f pop %edi 192e: 6b 65 79 5f imul $0x5f,0x79(%ebp),%esp 1932: 61 popa 1933: 75 74 jne 19a9 <.debug_info+0x19a9> 1935: 68 00 15 60 03 push $0x3601500 193a: ae scas %es:(%edi),%al 193b: 53 push %ebx 193c: 00 00 add %al,(%eax) 193e: 03 23 add (%ebx),%esp 1940: 88 03 mov %al,(%ebx) 1942: 12 74 68 72 adc 0x72(%eax,%ebp,2),%dh 1946: 65 gs 1947: 61 popa 1948: 64 fs 1949: 5f pop %edi 194a: 6b 65 79 72 imul $0x72,0x79(%ebp),%esp 194e: 69 6e 67 00 15 61 03 imul $0x3611500,0x67(%esi),%ebp 1955: ae scas %es:(%edi),%al 1956: 53 push %ebx 1957: 00 00 add %al,(%eax) 1959: 03 23 add (%ebx),%esp 195b: 8c 03 movw %es,(%ebx) 195d: 12 6a 69 adc 0x69(%edx),%ch 1960: 74 5f je 19c1 <.debug_info+0x19c1> 1962: 6b 65 79 72 imul $0x72,0x79(%ebp),%esp 1966: 69 6e 67 00 15 62 03 imul $0x3621500,0x67(%esi),%ebp 196d: 57 push %edi 196e: 02 00 add (%eax),%al 1970: 00 03 add %al,(%ebx) 1972: 23 90 03 12 6f 6f and 0x6f6f1203(%eax),%edx 1978: 6d insl (%dx),%es:(%edi) 1979: 6b 69 6c 6c imul $0x6c,0x6c(%ecx),%ebp 197d: 61 popa 197e: 64 fs 197f: 6a 00 push $0x0 1981: 15 64 03 7a 00 adc $0x7a0364,%eax 1986: 00 00 add %al,(%eax) 1988: 03 23 add (%ebx),%esp 198a: 94 xchg %eax,%esp 198b: 03 12 add (%edx),%edx 198d: 63 6f 6d arpl %bp,0x6d(%edi) 1990: 6d insl (%dx),%es:(%edi) 1991: 00 15 65 03 0c 0d add %dl,0xd0c0365 1997: 00 00 add %al,(%eax) 1999: 03 23 add (%ebx),%esp 199b: 98 cwtl 199c: 03 12 add (%edx),%edx 199e: 6c insb (%dx),%es:(%edi) 199f: 69 6e 6b 5f 63 6f 75 imul $0x756f635f,0x6b(%esi),%ebp 19a6: 6e outsb %ds:(%esi),(%dx) 19a7: 74 00 je 19a9 <.debug_info+0x19a9> 19a9: 15 6a 03 7a 00 adc $0x7a036a,%eax 19ae: 00 00 add %al,(%eax) 19b0: 03 23 add (%ebx),%esp 19b2: a8 03 test $0x3,%al 19b4: 12 74 6f 74 adc 0x74(%edi,%ebp,2),%dh 19b8: 61 popa 19b9: 6c insb (%dx),%es:(%edi) 19ba: 5f pop %edi 19bb: 6c insb (%dx),%es:(%edi) 19bc: 69 6e 6b 5f 63 6f 75 imul $0x756f635f,0x6b(%esi),%ebp 19c3: 6e outsb %ds:(%esi),(%dx) 19c4: 74 00 je 19c6 <.debug_info+0x19c6> 19c6: 15 6a 03 7a 00 adc $0x7a036a,%eax 19cb: 00 00 add %al,(%eax) 19cd: 03 23 add (%ebx),%esp 19cf: ac lods %ds:(%esi),%al 19d0: 03 12 add (%edx),%edx 19d2: 73 79 jae 1a4d <.debug_info+0x1a4d> 19d4: 73 76 jae 1a4c <.debug_info+0x1a4c> 19d6: 73 65 jae 1a3d <.debug_info+0x1a3d> 19d8: 6d insl (%dx),%es:(%edi) 19d9: 00 15 6c 03 07 2f add %dl,0x2f07036c 19df: 00 00 add %al,(%eax) 19e1: 03 23 add (%ebx),%esp 19e3: b0 03 mov $0x3,%al 19e5: 12 74 68 72 adc 0x72(%eax,%ebp,2),%dh 19e9: 65 gs 19ea: 61 popa 19eb: 64 00 15 6e 03 8e 10 add %dl,%fs:0x108e036e 19f2: 00 00 add %al,(%eax) 19f4: 03 23 add (%ebx),%esp 19f6: c0 03 12 rolb $0x12,(%ebx) 19f9: 66 data16 19fa: 73 00 jae 19fc <.debug_info+0x19fc> 19fc: 15 70 03 ee 54 adc $0x54ee0370,%eax 1a01: 00 00 add %al,(%eax) 1a03: 03 23 add (%ebx),%esp 1a05: d0 08 rorb (%eax) 1a07: 12 66 69 adc 0x69(%esi),%ah 1a0a: 6c insb (%dx),%es:(%edi) 1a0b: 65 gs 1a0c: 73 00 jae 1a0e <.debug_info+0x1a0e> 1a0e: 15 72 03 03 55 adc $0x55030372,%eax 1a13: 00 00 add %al,(%eax) 1a15: 03 23 add (%ebx),%esp 1a17: d4 08 aam $0x8 1a19: 13 b0 02 00 00 15 adc 0x15000002(%eax),%esi 1a1f: 74 03 je 1a24 <.debug_info+0x1a24> 1a21: 0f 55 00 andnps (%eax),%xmm0 1a24: 00 03 add %al,(%ebx) 1a26: 23 d8 and %eax,%ebx 1a28: 08 12 or %dl,(%edx) 1a2a: 73 69 jae 1a95 <.debug_info+0x1a95> 1a2c: 67 6e addr16 outsb %ds:(%si),(%dx) 1a2e: 61 popa 1a2f: 6c insb (%dx),%es:(%edi) 1a30: 00 15 76 03 15 55 add %dl,0x55150376 1a36: 00 00 add %al,(%eax) 1a38: 03 23 add (%ebx),%esp 1a3a: dc 08 fmull (%eax) 1a3c: 12 73 69 adc 0x69(%ebx),%dh 1a3f: 67 68 61 6e 64 00 addr16 push $0x646e61 1a45: 15 77 03 1b 55 adc $0x551b0377,%eax 1a4a: 00 00 add %al,(%eax) 1a4c: 03 23 add (%ebx),%esp 1a4e: e0 08 loopne 1a58 <.debug_info+0x1a58> 1a50: 12 62 6c adc 0x6c(%edx),%ah 1a53: 6f outsl %ds:(%esi),(%dx) 1a54: 63 6b 65 arpl %bp,0x65(%ebx) 1a57: 64 00 15 79 03 4a 2f add %dl,%fs:0x2f4a0379 1a5e: 00 00 add %al,(%eax) 1a60: 03 23 add (%ebx),%esp 1a62: e4 08 in $0x8,%al 1a64: 12 72 65 adc 0x65(%edx),%dh 1a67: 61 popa 1a68: 6c insb (%dx),%es:(%edi) 1a69: 5f pop %edi 1a6a: 62 6c 6f 63 bound %ebp,0x63(%edi,%ebp,2) 1a6e: 6b 65 64 00 imul $0x0,0x64(%ebp),%esp 1a72: 15 79 03 4a 2f adc $0x2f4a0379,%eax 1a77: 00 00 add %al,(%eax) 1a79: 03 23 add (%ebx),%esp 1a7b: ec in (%dx),%al 1a7c: 08 12 or %dl,(%edx) 1a7e: 73 61 jae 1ae1 <.debug_info+0x1ae1> 1a80: 76 65 jbe 1ae7 <.debug_info+0x1ae7> 1a82: 64 fs 1a83: 5f pop %edi 1a84: 73 69 jae 1aef <.debug_info+0x1aef> 1a86: 67 6d addr16 insl (%dx),%es:(%di) 1a88: 61 popa 1a89: 73 6b jae 1af6 <.debug_info+0x1af6> 1a8b: 00 15 7a 03 4a 2f add %dl,0x2f4a037a 1a91: 00 00 add %al,(%eax) 1a93: 03 23 add (%ebx),%esp 1a95: f4 hlt 1a96: 08 12 or %dl,(%edx) 1a98: 70 65 jo 1aff <.debug_info+0x1aff> 1a9a: 6e outsb %ds:(%esi),(%dx) 1a9b: 64 69 6e 67 00 15 7b imul $0x37b1500,%fs:0x67(%esi),%ebp 1aa2: 03 1aa3: da 33 fidivl (%ebx) 1aa5: 00 00 add %al,(%eax) 1aa7: 03 23 add (%ebx),%esp 1aa9: fc cld 1aaa: 08 12 or %dl,(%edx) 1aac: 73 61 jae 1b0f <.debug_info+0x1b0f> 1aae: 73 5f jae 1b0f <.debug_info+0x1b0f> 1ab0: 73 73 jae 1b25 <.debug_info+0x1b25> 1ab2: 5f pop %edi 1ab3: 73 70 jae 1b25 <.debug_info+0x1b25> 1ab5: 00 15 7d 03 98 00 add %dl,0x98037d 1abb: 00 00 add %al,(%eax) 1abd: 03 23 add (%ebx),%esp 1abf: 8c 09 movw %cs,(%ecx) 1ac1: 12 73 61 adc 0x61(%ebx),%dh 1ac4: 73 5f jae 1b25 <.debug_info+0x1b25> 1ac6: 73 73 jae 1b3b <.debug_info+0x1b3b> 1ac8: 5f pop %edi 1ac9: 73 69 jae 1b34 <.debug_info+0x1b34> 1acb: 7a 65 jp 1b32 <.debug_info+0x1b32> 1acd: 00 15 7e 03 b5 03 add %dl,0x3b5037e 1ad3: 00 00 add %al,(%eax) 1ad5: 03 23 add (%ebx),%esp 1ad7: 90 nop 1ad8: 09 12 or %edx,(%edx) 1ada: 6e outsb %ds:(%esi),(%dx) 1adb: 6f outsl %ds:(%esi),(%dx) 1adc: 74 69 je 1b47 <.debug_info+0x1b47> 1ade: 66 69 65 72 00 15 imul $0x1500,0x72(%ebp),%sp 1ae4: 7f 03 jg 1ae9 <.debug_info+0x1ae9> 1ae6: 31 55 00 xor %edx,0x0(%ebp) 1ae9: 00 03 add %al,(%ebx) 1aeb: 23 94 09 12 6e 6f 74 and 0x746f6e12(%ecx,%ecx,1),%edx 1af2: 69 66 69 65 72 5f 64 imul $0x645f7265,0x69(%esi),%esp 1af9: 61 popa 1afa: 74 61 je 1b5d <.debug_info+0x1b5d> 1afc: 00 15 80 03 b7 1d add %dl,0x1db70380 1b02: 00 00 add %al,(%eax) 1b04: 03 23 add (%ebx),%esp 1b06: 98 cwtl 1b07: 09 12 or %edx,(%edx) 1b09: 6e outsb %ds:(%esi),(%dx) 1b0a: 6f outsl %ds:(%esi),(%dx) 1b0b: 74 69 je 1b76 <.debug_info+0x1b76> 1b0d: 66 69 65 72 5f 6d imul $0x6d5f,0x72(%ebp),%sp 1b13: 61 popa 1b14: 73 6b jae 1b81 <.debug_info+0x1b81> 1b16: 00 15 81 03 37 55 add %dl,0x55370381 1b1c: 00 00 add %al,(%eax) 1b1e: 03 23 add (%ebx),%esp 1b20: 9c pushf 1b21: 09 13 or %edx,(%ebx) 1b23: bc 01 00 00 15 mov $0x15000001,%esp 1b28: 83 03 b7 addl $0xffffffb7,(%ebx) 1b2b: 1d 00 00 03 23 sbb $0x23030000,%eax 1b30: a0 09 13 12 01 mov 0x1121309,%al 1b35: 00 00 add %al,(%eax) 1b37: 15 84 03 43 55 adc $0x55430384,%eax 1b3c: 00 00 add %al,(%eax) 1b3e: 03 23 add (%ebx),%esp 1b40: a4 movsb %ds:(%esi),%es:(%edi) 1b41: 09 12 or %edx,(%edx) 1b43: 73 65 jae 1baa <.debug_info+0x1baa> 1b45: 63 63 6f arpl %sp,0x6f(%ebx) 1b48: 6d insl (%dx),%es:(%edi) 1b49: 70 00 jo 1b4b <.debug_info+0x1b4b> 1b4b: 15 85 03 fd 3f adc $0x3ffd0385,%eax 1b50: 00 00 add %al,(%eax) 1b52: 03 23 add (%ebx),%esp 1b54: a8 09 test $0x9,%al 1b56: 12 70 61 adc 0x61(%eax),%dh 1b59: 72 65 jb 1bc0 <.debug_info+0x1bc0> 1b5b: 6e outsb %ds:(%esi),(%dx) 1b5c: 74 5f je 1bbd <.debug_info+0x1bbd> 1b5e: 65 gs 1b5f: 78 65 js 1bc6 <.debug_info+0x1bc6> 1b61: 63 5f 69 arpl %bx,0x69(%edi) 1b64: 64 00 15 88 03 f1 02 add %dl,%fs:0x2f10388 1b6b: 00 00 add %al,(%eax) 1b6d: 03 23 add (%ebx),%esp 1b6f: ac lods %ds:(%esi),%al 1b70: 09 12 or %edx,(%edx) 1b72: 73 65 jae 1bd9 <.debug_info+0x1bd9> 1b74: 6c insb (%dx),%es:(%edi) 1b75: 66 5f pop %di 1b77: 65 gs 1b78: 78 65 js 1bdf <.debug_info+0x1bdf> 1b7a: 63 5f 69 arpl %bx,0x69(%edi) 1b7d: 64 00 15 89 03 f1 02 add %dl,%fs:0x2f10389 1b84: 00 00 add %al,(%eax) 1b86: 03 23 add (%ebx),%esp 1b88: b0 09 mov $0x9,%al 1b8a: 12 61 6c adc 0x6c(%ecx),%ah 1b8d: 6c insb (%dx),%es:(%edi) 1b8e: 6f outsl %ds:(%esi),(%dx) 1b8f: 63 5f 6c arpl %bx,0x6c(%edi) 1b92: 6f outsl %ds:(%esi),(%dx) 1b93: 63 6b 00 arpl %bp,0x0(%ebx) 1b96: 15 8b 03 1e 1f adc $0x1f1e038b,%eax 1b9b: 00 00 add %al,(%eax) 1b9d: 03 23 add (%ebx),%esp 1b9f: b4 09 mov $0x9,%ah 1ba1: 12 70 69 adc 0x69(%eax),%dh 1ba4: 5f pop %edi 1ba5: 6c insb (%dx),%es:(%edi) 1ba6: 6f outsl %ds:(%esi),(%dx) 1ba7: 63 6b 00 arpl %bp,0x0(%ebx) 1baa: 15 8e 03 1e 1f adc $0x1f1e038e,%eax 1baf: 00 00 add %al,(%eax) 1bb1: 03 23 add (%ebx),%esp 1bb3: c4 09 les (%ecx),%ecx 1bb5: 12 70 69 adc 0x69(%eax),%dh 1bb8: 5f pop %edi 1bb9: 77 61 ja 1c1c <.debug_info+0x1c1c> 1bbb: 69 74 65 72 73 00 15 imul $0x92150073,0x72(%ebp),%esi 1bc2: 92 1bc3: 03 88 40 00 00 03 add 0x3000040(%eax),%ecx 1bc9: 23 d4 and %esp,%edx 1bcb: 09 12 or %edx,(%edx) 1bcd: 70 69 jo 1c38 <.debug_info+0x1c38> 1bcf: 5f pop %edi 1bd0: 62 6c 6f 63 bound %ebp,0x63(%edi,%ebp,2) 1bd4: 6b 65 64 5f imul $0x5f,0x64(%ebp),%esp 1bd8: 6f outsl %ds:(%esi),(%dx) 1bd9: 6e outsb %ds:(%esi),(%dx) 1bda: 00 15 94 03 5b 55 add %dl,0x555b0394 1be0: 00 00 add %al,(%eax) 1be2: 03 23 add (%ebx),%esp 1be4: e4 09 in $0x9,%al 1be6: 12 62 6c adc 0x6c(%edx),%ah 1be9: 6f outsl %ds:(%esi),(%dx) 1bea: 63 6b 65 arpl %bp,0x65(%ebx) 1bed: 64 fs 1bee: 5f pop %edi 1bef: 6f outsl %ds:(%esi),(%dx) 1bf0: 6e outsb %ds:(%esi),(%dx) 1bf1: 00 15 99 03 61 55 add %dl,0x55610399 1bf7: 00 00 add %al,(%eax) 1bf9: 03 23 add (%ebx),%esp 1bfb: e8 09 12 6a 6f call 6f6a2e09 1c00: 75 72 jne 1c74 <.debug_info+0x1c74> 1c02: 6e outsb %ds:(%esi),(%dx) 1c03: 61 popa 1c04: 6c insb (%dx),%es:(%edi) 1c05: 5f pop %edi 1c06: 69 6e 66 6f 00 15 b3 imul $0xb315006f,0x66(%esi),%ebp 1c0d: 03 b7 1d 00 00 03 add 0x300001d(%edi),%esi 1c13: 23 ec and %esp,%ebp 1c15: 09 13 or %edx,(%ebx) 1c17: 04 01 add $0x1,%al 1c19: 00 00 add %al,(%eax) 1c1b: 15 b6 03 8e 55 adc $0x558e03b6,%eax 1c20: 00 00 add %al,(%eax) 1c22: 03 23 add (%ebx),%esp 1c24: f0 09 13 lock or %edx,(%ebx) 1c27: 86 03 xchg %al,(%ebx) 1c29: 00 00 add %al,(%eax) 1c2b: 15 b8 03 9a 55 adc $0x559a03b8,%eax 1c30: 00 00 add %al,(%eax) 1c32: 03 23 add (%ebx),%esp 1c34: f4 hlt 1c35: 09 13 or %edx,(%ebx) 1c37: 35 01 00 00 15 xor $0x15000001,%eax 1c3c: ba 03 a6 55 00 mov $0x55a603,%edx 1c41: 00 03 add %al,(%ebx) 1c43: 23 f8 and %eax,%edi 1c45: 09 12 or %edx,(%edx) 1c47: 70 74 jo 1cbd <.debug_info+0x1cbd> 1c49: 72 61 jb 1cac <.debug_info+0x1cac> 1c4b: 63 65 5f arpl %sp,0x5f(%ebp) 1c4e: 6d insl (%dx),%es:(%edi) 1c4f: 65 gs 1c50: 73 73 jae 1cc5 <.debug_info+0x1cc5> 1c52: 61 popa 1c53: 67 65 00 15 addr16 add %dl,%gs:(%di) 1c57: bc 03 98 00 00 mov $0x9803,%esp 1c5c: 00 03 add %al,(%ebx) 1c5e: 23 fc and %esp,%edi 1c60: 09 12 or %edx,(%edx) 1c62: 6c insb (%dx),%es:(%edi) 1c63: 61 popa 1c64: 73 74 jae 1cda <.debug_info+0x1cda> 1c66: 5f pop %edi 1c67: 73 69 jae 1cd2 <.debug_info+0x1cd2> 1c69: 67 69 6e 66 6f 00 15 addr16 imul $0xbd15006f,102(%bp),%ebp 1c70: bd 1c71: 03 ac 55 00 00 03 23 add 0x23030000(%ebp,%edx,2),%ebp 1c78: 80 0a 12 orb $0x12,(%edx) 1c7b: 69 6f 5f 77 61 69 74 imul $0x74696177,0x5f(%edi),%ebp 1c82: 00 15 c4 03 60 21 add %dl,0x216003c4 1c88: 00 00 add %al,(%eax) 1c8a: 03 23 add (%ebx),%esp 1c8c: 84 0a test %cl,(%edx) 1c8e: 12 72 63 adc 0x63(%edx),%dh 1c91: 68 61 72 00 15 push $0x15007261 1c96: c6 03 07 movb $0x7,(%ebx) 1c99: 03 00 add (%eax),%eax 1c9b: 00 03 add %al,(%ebx) 1c9d: 23 88 0a 12 77 63 and 0x6377120a(%eax),%ecx 1ca3: 68 61 72 00 15 push $0x15007261 1ca8: c6 03 07 movb $0x7,(%ebx) 1cab: 03 00 add (%eax),%eax 1cad: 00 03 add %al,(%ebx) 1caf: 23 90 0a 12 73 79 and 0x7973120a(%eax),%edx 1cb5: 73 63 jae 1d1a <.debug_info+0x1d1a> 1cb7: 72 00 jb 1cb9 <.debug_info+0x1cb9> 1cb9: 15 c6 03 07 03 adc $0x30703c6,%eax 1cbe: 00 00 add %al,(%eax) 1cc0: 03 23 add (%ebx),%esp 1cc2: 98 cwtl 1cc3: 0a 12 or (%edx),%dl 1cc5: 73 79 jae 1d40 <.debug_info+0x1d40> 1cc7: 73 63 jae 1d2c <.debug_info+0x1d2c> 1cc9: 77 00 ja 1ccb <.debug_info+0x1ccb> 1ccb: 15 c6 03 07 03 adc $0x30703c6,%eax 1cd0: 00 00 add %al,(%eax) 1cd2: 03 23 add (%ebx),%esp 1cd4: a0 0a 12 61 63 mov 0x6361120a,%al 1cd9: 63 74 5f 72 arpl %si,0x72(%edi,%ebx,2) 1cdd: 73 73 jae 1d52 <.debug_info+0x1d52> 1cdf: 5f pop %edi 1ce0: 6d insl (%dx),%es:(%edi) 1ce1: 65 gs 1ce2: 6d insl (%dx),%es:(%edi) 1ce3: 31 00 xor %eax,(%eax) 1ce5: 15 c8 03 07 03 adc $0x30703c8,%eax 1cea: 00 00 add %al,(%eax) 1cec: 03 23 add (%ebx),%esp 1cee: a8 0a test $0xa,%al 1cf0: 12 61 63 adc 0x63(%ecx),%ah 1cf3: 63 74 5f 76 arpl %si,0x76(%edi,%ebx,2) 1cf7: 6d insl (%dx),%es:(%edi) 1cf8: 5f pop %edi 1cf9: 6d insl (%dx),%es:(%edi) 1cfa: 65 gs 1cfb: 6d insl (%dx),%es:(%edi) 1cfc: 31 00 xor %eax,(%eax) 1cfe: 15 c9 03 07 03 adc $0x30703c9,%eax 1d03: 00 00 add %al,(%eax) 1d05: 03 23 add (%ebx),%esp 1d07: b0 0a mov $0xa,%al 1d09: 12 61 63 adc 0x63(%ecx),%ah 1d0c: 63 74 5f 73 arpl %si,0x73(%edi,%ebx,2) 1d10: 74 69 je 1d7b <.debug_info+0x1d7b> 1d12: 6d insl (%dx),%es:(%edi) 1d13: 65 gs 1d14: 78 70 js 1d86 <.debug_info+0x1d86> 1d16: 64 00 15 ca 03 e0 03 add %dl,%fs:0x3e003ca 1d1d: 00 00 add %al,(%eax) 1d1f: 03 23 add (%ebx),%esp 1d21: b8 0a 13 4e 00 mov $0x4e130a,%eax 1d26: 00 00 add %al,(%eax) 1d28: 15 d6 03 b2 55 adc $0x55b203d6,%eax 1d2d: 00 00 add %al,(%eax) 1d2f: 03 23 add (%ebx),%esp 1d31: bc 0a 12 70 69 mov $0x6970120a,%esp 1d36: 5f pop %edi 1d37: 73 74 jae 1dad <.debug_info+0x1dad> 1d39: 61 popa 1d3a: 74 65 je 1da1 <.debug_info+0x1da1> 1d3c: 5f pop %edi 1d3d: 6c insb (%dx),%es:(%edi) 1d3e: 69 73 74 00 15 da 03 imul $0x3da1500,0x74(%ebx),%esi 1d45: c8 1d 00 00 enter $0x1d,$0x0 1d49: 03 23 add (%ebx),%esp 1d4b: c0 0a 12 rorb $0x12,(%edx) 1d4e: 70 69 jo 1db9 <.debug_info+0x1db9> 1d50: 5f pop %edi 1d51: 73 74 jae 1dc7 <.debug_info+0x1dc7> 1d53: 61 popa 1d54: 74 65 je 1dbb <.debug_info+0x1dbb> 1d56: 5f pop %edi 1d57: 63 61 63 arpl %sp,0x63(%ecx) 1d5a: 68 65 00 15 db push $0xdb150065 1d5f: 03 c9 add %ecx,%ecx 1d61: 55 push %ebp 1d62: 00 00 add %al,(%eax) 1d64: 03 23 add (%ebx),%esp 1d66: c8 0a 12 66 enter $0x120a,$0x66 1d6a: 73 5f jae 1dcb <.debug_info+0x1dcb> 1d6c: 65 gs 1d6d: 78 63 js 1dd2 <.debug_info+0x1dd2> 1d6f: 6c insb (%dx),%es:(%edi) 1d70: 00 15 dd 03 a1 1f add %dl,0x1fa103dd 1d76: 00 00 add %al,(%eax) 1d78: 03 23 add (%ebx),%esp 1d7a: cc int3 1d7b: 0a 12 or (%edx),%dl 1d7d: 72 63 jb 1de2 <.debug_info+0x1de2> 1d7f: 75 00 jne 1d81 <.debug_info+0x1d81> 1d81: 15 de 03 d0 3d adc $0x3dd003de,%eax 1d86: 00 00 add %al,(%eax) 1d88: 03 23 add (%ebx),%esp 1d8a: d0 0a rorb (%edx) 1d8c: 12 73 70 adc 0x70(%ebx),%dh 1d8f: 6c insb (%dx),%es:(%edi) 1d90: 69 63 65 5f 70 69 70 imul $0x7069705f,0x65(%ebx),%esp 1d97: 65 00 15 e3 03 e1 55 add %dl,%gs:0x55e103e3 1d9e: 00 00 add %al,(%eax) 1da0: 03 23 add (%ebx),%esp 1da2: d8 0a fmuls (%edx) 1da4: 00 06 add %al,(%esi) 1da6: 04 45 add $0x45,%al 1da8: 13 00 adc (%eax),%eax 1daa: 00 1a add %bl,(%edx) 1dac: 86 01 xchg %al,(%ecx) 1dae: 00 00 add %al,(%eax) 1db0: 01 06 add %eax,(%esi) 1db2: 04 ab add $0xab,%al 1db4: 1d 00 00 1b 04 sbb $0x41b0000,%eax 1db9: 03 c8 add %eax,%ecx 1dbb: 1d 00 00 4b 02 sbb $0x24b0000,%eax 1dc0: 00 00 add %al,(%eax) 1dc2: 1c 91 sbb $0x91,%al 1dc4: 00 00 add %al,(%eax) 1dc6: 00 00 add %al,(%eax) 1dc8: 0e push %cs 1dc9: f8 clc 1dca: 1d 00 00 6c 69 sbb $0x696c0000,%eax 1dcf: 73 74 jae 1e45 <.debug_info+0x1e45> 1dd1: 5f pop %edi 1dd2: 68 65 61 64 00 push $0x646165 1dd7: 08 02 or %al,(%edx) 1dd9: 15 0f ae 03 00 adc $0x3ae0f,%eax 1dde: 00 02 add %al,(%edx) 1de0: 16 push %ss 1de1: f8 clc 1de2: 1d 00 00 02 23 sbb $0x23020000,%eax 1de7: 00 0b add %cl,(%ebx) 1de9: 70 72 jo 1e5d <.debug_info+0x1e5d> 1deb: 65 gs 1dec: 76 00 jbe 1dee <.debug_info+0x1dee> 1dee: 02 16 add (%esi),%dl 1df0: f8 clc 1df1: 1d 00 00 02 23 sbb $0x23020000,%eax 1df6: 04 00 add $0x0,%al 1df8: 06 push %es 1df9: 04 c8 add $0xc8,%al 1dfb: 1d 00 00 11 24 sbb $0x24110000,%eax 1e00: 1e push %ds 1e01: 00 00 add %al,(%eax) 1e03: 68 6c 69 73 74 push $0x7473696c 1e08: 5f pop %edi 1e09: 68 65 61 64 00 push $0x646165 1e0e: 04 02 add $0x2,%al 1e10: 50 push %eax 1e11: 02 12 add (%edx),%dl 1e13: 66 69 72 73 74 00 imul $0x74,0x73(%edx),%si 1e19: 02 51 02 add 0x2(%ecx),%dl 1e1c: 59 pop %ecx 1e1d: 1e push %ds 1e1e: 00 00 add %al,(%eax) 1e20: 02 23 add (%ebx),%ah 1e22: 00 00 add %al,(%eax) 1e24: 11 59 1e adc %ebx,0x1e(%ecx) 1e27: 00 00 add %al,(%eax) 1e29: 68 6c 69 73 74 push $0x7473696c 1e2e: 5f pop %edi 1e2f: 6e outsb %ds:(%esi),(%dx) 1e30: 6f outsl %ds:(%esi),(%dx) 1e31: 64 65 00 08 add %cl,%fs:%gs:(%eax) 1e35: 02 51 02 add 0x2(%ecx),%dl 1e38: 13 ae 03 00 00 02 adc 0x2000003(%esi),%ebp 1e3e: 55 push %ebp 1e3f: 02 59 1e add 0x1e(%ecx),%bl 1e42: 00 00 add %al,(%eax) 1e44: 02 23 add (%ebx),%ah 1e46: 00 12 add %dl,(%edx) 1e48: 70 70 jo 1eba <.debug_info+0x1eba> 1e4a: 72 65 jb 1eb1 <.debug_info+0x1eb1> 1e4c: 76 00 jbe 1e4e <.debug_info+0x1e4e> 1e4e: 02 55 02 add 0x2(%ebp),%dl 1e51: 5f pop %edi 1e52: 1e push %ds 1e53: 00 00 add %al,(%eax) 1e55: 02 23 add (%ebx),%ah 1e57: 04 00 add $0x0,%al 1e59: 06 push %es 1e5a: 04 24 add $0x24,%al 1e5c: 1e push %ds 1e5d: 00 00 add %al,(%eax) 1e5f: 06 push %es 1e60: 04 59 add $0x59,%al 1e62: 1e push %ds 1e63: 00 00 add %al,(%eax) 1e65: 1d 6c 6f 63 6b sbb $0x6b636f6c,%eax 1e6a: 5f pop %edi 1e6b: 63 6c 61 73 arpl %bp,0x73(%ecx) 1e6f: 73 5f jae 1ed0 <.debug_info+0x1ed0> 1e71: 6b 65 79 00 imul $0x0,0x79(%ebp),%esp 1e75: 00 2b add %ch,(%ebx) 1e77: 0e push %cs 1e78: 01 0d 92 1e 00 00 add %ecx,0x1e92 1e7e: 04 11 add $0x11,%al 1e80: 0a 0b or (%ebx),%cl 1e82: 73 6c jae 1ef0 <.debug_info+0x1ef0> 1e84: 6f outsl %ds:(%esi),(%dx) 1e85: 63 6b 00 arpl %bp,0x0(%ebx) 1e88: 11 09 adc %ecx,(%ecx) 1e8a: 92 xchg %eax,%edx 1e8b: 1e push %ds 1e8c: 00 00 add %al,(%eax) 1e8e: 02 23 add (%ebx),%ah 1e90: 00 00 add %al,(%eax) 1e92: 1e push %ds 1e93: 3b 01 cmp (%ecx),%eax 1e95: 00 00 add %al,(%eax) 1e97: 09 72 61 or %esi,0x61(%edx) 1e9a: 77 5f ja 1efb <.debug_info+0x1efb> 1e9c: 73 70 jae 1f0e <.debug_info+0x1f0e> 1e9e: 69 6e 6c 6f 63 6b 5f imul $0x5f6b636f,0x6c(%esi),%ebp 1ea5: 74 00 je 1ea7 <.debug_info+0x1ea7> 1ea7: 11 0a adc %ecx,(%edx) 1ea9: 79 1e jns 1ec9 <.debug_info+0x1ec9> 1eab: 00 00 add %al,(%eax) 1ead: 0d c4 1e 00 00 or $0x1ec4,%eax 1eb2: 04 11 add $0x11,%al 1eb4: 10 0f adc %cl,(%edi) 1eb6: d6 (bad) 1eb7: 02 00 add (%eax),%al 1eb9: 00 11 add %dl,(%ecx) 1ebb: 0f c4 1e 00 pinsrw $0x0,(%esi),%mm3 1ebf: 00 02 add %al,(%edx) 1ec1: 23 00 and (%eax),%eax 1ec3: 00 1e add %bl,(%esi) 1ec5: 3b 01 cmp (%ecx),%eax 1ec7: 00 00 add %al,(%eax) 1ec9: 09 72 61 or %esi,0x61(%edx) 1ecc: 77 5f ja 1f2d <.debug_info+0x1f2d> 1ece: 72 77 jb 1f47 <.debug_info+0x1f47> 1ed0: 6c insb (%dx),%es:(%edi) 1ed1: 6f outsl %ds:(%esi),(%dx) 1ed2: 63 6b 5f arpl %bp,0x5f(%ebx) 1ed5: 74 00 je 1ed7 <.debug_info+0x1ed7> 1ed7: 11 10 adc %edx,(%eax) 1ed9: ad lods %ds:(%esi),%eax 1eda: 1e push %ds 1edb: 00 00 add %al,(%eax) 1edd: 0d 1e 1f 00 00 or $0x1f1e,%eax 1ee2: 10 10 adc %dl,(%eax) 1ee4: 20 0f and %cl,(%edi) 1ee6: 16 push %ss 1ee7: 00 00 add %al,(%eax) 1ee9: 00 10 add %dl,(%eax) 1eeb: 15 97 1e 00 00 adc $0x1e97,%eax 1ef0: 02 23 add (%ebx),%ah 1ef2: 00 0f add %cl,(%edi) 1ef4: a1 01 00 00 10 mov 0x10000001,%eax 1ef9: 1a 3b sbb (%ebx),%bh 1efb: 01 00 add %eax,(%eax) 1efd: 00 02 add %al,(%edx) 1eff: 23 04 0f and (%edi,%ecx,1),%eax 1f02: 72 00 jb 1f04 <.debug_info+0x1f04> 1f04: 00 00 add %al,(%eax) 1f06: 10 1a adc %bl,(%edx) 1f08: 3b 01 cmp (%ecx),%eax 1f0a: 00 00 add %al,(%eax) 1f0c: 02 23 add (%ebx),%ah 1f0e: 08 0f or %cl,(%edi) 1f10: 2f das 1f11: 01 00 add %eax,(%eax) 1f13: 00 10 add %dl,(%eax) 1f15: 1b b7 1d 00 00 02 sbb 0x200001d(%edi),%esi 1f1b: 23 0c 00 and (%eax,%eax,1),%ecx 1f1e: 09 73 70 or %esi,0x70(%ebx) 1f21: 69 6e 6c 6f 63 6b 5f imul $0x5f6b636f,0x6c(%esi),%ebp 1f28: 74 00 je 1f2a <.debug_info+0x1f2a> 1f2a: 10 20 adc %ah,(%eax) 1f2c: dd 1e fstpl (%esi) 1f2e: 00 00 add %al,(%eax) 1f30: 0d 71 1f 00 00 or $0x1f71,%eax 1f35: 10 10 adc %dl,(%eax) 1f37: 30 0f xor %cl,(%edi) 1f39: 16 push %ss 1f3a: 00 00 add %al,(%eax) 1f3c: 00 10 add %dl,(%eax) 1f3e: 25 c9 1e 00 00 and $0x1ec9,%eax 1f43: 02 23 add (%ebx),%ah 1f45: 00 0f add %cl,(%edi) 1f47: a1 01 00 00 10 mov 0x10000001,%eax 1f4c: 2a 3b sub (%ebx),%bh 1f4e: 01 00 add %eax,(%eax) 1f50: 00 02 add %al,(%edx) 1f52: 23 04 0f and (%edi,%ecx,1),%eax 1f55: 72 00 jb 1f57 <.debug_info+0x1f57> 1f57: 00 00 add %al,(%eax) 1f59: 10 2a adc %ch,(%edx) 1f5b: 3b 01 cmp (%ecx),%eax 1f5d: 00 00 add %al,(%eax) 1f5f: 02 23 add (%ebx),%ah 1f61: 08 0f or %cl,(%edi) 1f63: 2f das 1f64: 01 00 add %eax,(%eax) 1f66: 00 10 add %dl,(%eax) 1f68: 2b b7 1d 00 00 02 sub 0x200001d(%edi),%esi 1f6e: 23 0c 00 and (%eax,%eax,1),%ecx 1f71: 09 72 77 or %esi,0x77(%edx) 1f74: 6c insb (%dx),%es:(%edi) 1f75: 6f outsl %ds:(%esi),(%dx) 1f76: 63 6b 5f arpl %bp,0x5f(%ebx) 1f79: 74 00 je 1f7b <.debug_info+0x1f7b> 1f7b: 10 30 adc %dh,(%eax) 1f7d: 30 1f xor %bl,(%edi) 1f7f: 00 00 add %al,(%eax) 1f81: 0d 9c 1f 00 00 or $0x1f9c,%eax 1f86: 04 0b add $0xb,%al 1f88: 11 0b adc %ecx,(%ebx) 1f8a: 63 6f 75 arpl %bp,0x75(%edi) 1f8d: 6e outsb %ds:(%esi),(%dx) 1f8e: 74 65 je 1ff5 <.debug_info+0x1ff5> 1f90: 72 00 jb 1f92 <.debug_info+0x1f92> 1f92: 0b 11 or (%ecx),%edx 1f94: 9c pushf 1f95: 1f pop %ds 1f96: 00 00 add %al,(%eax) 1f98: 02 23 add (%ebx),%ah 1f9a: 00 00 add %al,(%eax) 1f9c: 1e push %ds 1f9d: 7a 00 jp 1f9f <.debug_info+0x1f9f> 1f9f: 00 00 add %al,(%eax) 1fa1: 09 61 74 or %esp,0x74(%ecx) 1fa4: 6f outsl %ds:(%esi),(%dx) 1fa5: 6d insl (%dx),%es:(%edi) 1fa6: 69 63 5f 74 00 0b 11 imul $0x110b0074,0x5f(%ebx),%esp 1fad: 81 1f 00 00 09 61 sbbl $0x61090000,(%edi) 1fb3: 74 6f je 2024 <.debug_info+0x2024> 1fb5: 6d insl (%dx),%es:(%edi) 1fb6: 69 63 5f 6c 6f 6e 67 imul $0x676e6f6c,0x5f(%ebx),%esp 1fbd: 5f pop %edi 1fbe: 74 00 je 1fc0 <.debug_info+0x1fc0> 1fc0: 34 47 xor $0x47,%al 1fc2: a1 1f 00 00 09 mov 0x900001f,%eax 1fc7: 6b 65 72 6e imul $0x6e,0x72(%ebp),%esp 1fcb: 65 gs 1fcc: 6c insb (%dx),%es:(%edi) 1fcd: 5f pop %edi 1fce: 63 61 70 arpl %sp,0x70(%ecx) 1fd1: 5f pop %edi 1fd2: 74 00 je 1fd4 <.debug_info+0x1fd4> 1fd4: 3b 3a cmp (%edx),%edi 1fd6: 9c pushf 1fd7: 02 00 add (%eax),%al 1fd9: 00 0e add %cl,(%esi) 1fdb: ff 1f lcall *(%edi) 1fdd: 00 00 add %al,(%eax) 1fdf: 73 65 jae 2046 <.debug_info+0x2046> 1fe1: 71 63 jno 2046 <.debug_info+0x2046> 1fe3: 6f outsl %ds:(%esi),(%dx) 1fe4: 75 6e jne 2054 <.debug_info+0x2054> 1fe6: 74 00 je 1fe8 <.debug_info+0x1fe8> 1fe8: 04 4b add $0x4b,%al 1fea: 70 0b jo 1ff7 <.debug_info+0x1ff7> 1fec: 73 65 jae 2053 <.debug_info+0x2053> 1fee: 71 75 jno 2065 <.debug_info+0x2065> 1ff0: 65 6e outsb %gs:(%esi),(%dx) 1ff2: 63 65 00 arpl %sp,0x0(%ebp) 1ff5: 4b dec %ebx 1ff6: 71 3b jno 2033 <.debug_info+0x2033> 1ff8: 01 00 add %eax,(%eax) 1ffa: 00 02 add %al,(%edx) 1ffc: 23 00 and (%eax),%eax 1ffe: 00 09 add %cl,(%ecx) 2000: 73 65 jae 2067 <.debug_info+0x2067> 2002: 71 63 jno 2067 <.debug_info+0x2067> 2004: 6f outsl %ds:(%esi),(%dx) 2005: 75 6e jne 2075 <.debug_info+0x2075> 2007: 74 5f je 2068 <.debug_info+0x2068> 2009: 74 00 je 200b <.debug_info+0x200b> 200b: 4b dec %ebx 200c: 72 da jb 1fe8 <.debug_info+0x1fe8> 200e: 1f pop %ds 200f: 00 00 add %al,(%eax) 2011: 0e push %cs 2012: 46 inc %esi 2013: 20 00 and %al,(%eax) 2015: 00 74 69 6d add %dh,0x6d(%ecx,%ebp,2) 2019: 65 gs 201a: 73 70 jae 208c <.debug_info+0x208c> 201c: 65 63 00 arpl %ax,%gs:(%eax) 201f: 08 0f or %cl,(%edi) 2021: 0c 0b or $0xb,%al 2023: 74 76 je 209b <.debug_info+0x209b> 2025: 5f pop %edi 2026: 73 65 jae 208d <.debug_info+0x208d> 2028: 63 00 arpl %ax,(%eax) 202a: 0f 0d (bad) 202c: d2 03 rolb %cl,(%ebx) 202e: 00 00 add %al,(%eax) 2030: 02 23 add (%ebx),%ah 2032: 00 0b add %cl,(%ebx) 2034: 74 76 je 20ac <.debug_info+0x20ac> 2036: 5f pop %edi 2037: 6e outsb %ds:(%esi),(%dx) 2038: 73 65 jae 209f <.debug_info+0x209f> 203a: 63 00 arpl %ax,(%eax) 203c: 0f 0e femms 203e: 02 01 add (%ecx),%al 2040: 00 00 add %al,(%eax) 2042: 02 23 add (%ebx),%ah 2044: 04 00 add $0x0,%al 2046: 0e push %cs 2047: 96 xchg %eax,%esi 2048: 20 00 and %al,(%eax) 204a: 00 72 62 add %dh,0x62(%edx) 204d: 5f pop %edi 204e: 6e outsb %ds:(%esi),(%dx) 204f: 6f outsl %ds:(%esi),(%dx) 2050: 64 65 00 0c 1a add %cl,%fs:%gs:(%edx,%ebx,1) 2055: 65 0b 72 62 or %gs:0x62(%edx),%esi 2059: 5f pop %edi 205a: 70 61 jo 20bd <.debug_info+0x20bd> 205c: 72 65 jb 20c3 <.debug_info+0x20c3> 205e: 6e outsb %ds:(%esi),(%dx) 205f: 74 5f je 20c0 <.debug_info+0x20c0> 2061: 63 6f 6c arpl %bp,0x6c(%edi) 2064: 6f outsl %ds:(%esi),(%dx) 2065: 72 00 jb 2067 <.debug_info+0x2067> 2067: 1a 66 98 sbb 0xffffff98(%esi),%ah 206a: 00 00 add %al,(%eax) 206c: 00 02 add %al,(%edx) 206e: 23 00 and (%eax),%eax 2070: 0b 72 62 or 0x62(%edx),%esi 2073: 5f pop %edi 2074: 72 69 jb 20df <.debug_info+0x20df> 2076: 67 68 74 00 1a 69 addr16 push $0x691a0074 207c: 96 xchg %eax,%esi 207d: 20 00 and %al,(%eax) 207f: 00 02 add %al,(%edx) 2081: 23 04 0b and (%ebx,%ecx,1),%eax 2084: 72 62 jb 20e8 <.debug_info+0x20e8> 2086: 5f pop %edi 2087: 6c insb (%dx),%es:(%edi) 2088: 65 gs 2089: 66 data16 208a: 74 00 je 208c <.debug_info+0x208c> 208c: 1a 6a 96 sbb 0xffffff96(%edx),%ch 208f: 20 00 and %al,(%eax) 2091: 00 02 add %al,(%edx) 2093: 23 08 and (%eax),%ecx 2095: 00 06 add %al,(%esi) 2097: 04 46 add $0x46,%al 2099: 20 00 and %al,(%eax) 209b: 00 0e add %cl,(%esi) 209d: bf 20 00 00 72 mov $0x72000020,%edi 20a2: 62 5f 72 bound %ebx,0x72(%edi) 20a5: 6f outsl %ds:(%esi),(%dx) 20a6: 6f outsl %ds:(%esi),(%dx) 20a7: 74 00 je 20a9 <.debug_info+0x20a9> 20a9: 04 1a add $0x1a,%al 20ab: 6f outsl %ds:(%esi),(%dx) 20ac: 0b 72 62 or 0x62(%edx),%esi 20af: 5f pop %edi 20b0: 6e outsb %ds:(%esi),(%dx) 20b1: 6f outsl %ds:(%esi),(%dx) 20b2: 64 65 00 1a add %bl,%fs:%gs:(%edx) 20b6: 70 96 jo 204e <.debug_info+0x204e> 20b8: 20 00 and %al,(%eax) 20ba: 00 02 add %al,(%edx) 20bc: 23 00 and (%eax),%eax 20be: 00 09 add %cl,(%ecx) 20c0: 77 61 ja 2123 <.debug_info+0x2123> 20c2: 69 74 5f 71 75 65 75 imul $0x65756575,0x71(%edi,%ebx,2),%esi 20c9: 65 20ca: 5f pop %edi 20cb: 74 00 je 20cd <.debug_info+0x20cd> 20cd: 27 daa 20ce: 1c d3 sbb $0xd3,%al 20d0: 20 00 and %al,(%eax) 20d2: 00 0e add %cl,(%esi) 20d4: 22 21 and (%ecx),%ah 20d6: 00 00 add %al,(%eax) 20d8: 5f pop %edi 20d9: 5f pop %edi 20da: 77 61 ja 213d <.debug_info+0x213d> 20dc: 69 74 5f 71 75 65 75 imul $0x65756575,0x71(%edi,%ebx,2),%esi 20e3: 65 20e4: 00 14 27 add %dl,(%edi) 20e7: 1c 0f sbb $0xf,%al 20e9: b3 03 mov $0x3,%bl 20eb: 00 00 add %al,(%eax) 20ed: 27 daa 20ee: 21 3b and %edi,(%ebx) 20f0: 01 00 add %eax,(%eax) 20f2: 00 02 add %al,(%edx) 20f4: 23 00 and (%eax),%eax 20f6: 0f 6a 00 punpckhdq (%eax),%mm0 20f9: 00 00 add %al,(%eax) 20fb: 27 daa 20fc: 23 b7 1d 00 00 02 and 0x200001d(%edi),%esi 2102: 23 04 0b and (%ebx,%ecx,1),%eax 2105: 66 data16 2106: 75 6e jne 2176 <.debug_info+0x2176> 2108: 63 00 arpl %ax,(%eax) 210a: 27 daa 210b: 24 22 and $0x22,%al 210d: 21 00 and %eax,(%eax) 210f: 00 02 add %al,(%edx) 2111: 23 08 and (%eax),%ecx 2113: 0f 38 02 00 phaddd (%eax),%mm0 2117: 00 27 add %ah,(%edi) 2119: 25 c8 1d 00 00 and $0x1dc8,%eax 211e: 02 23 add (%ebx),%ah 2120: 0c 00 or $0x0,%al 2122: 09 77 61 or %esi,0x61(%edi) 2125: 69 74 5f 71 75 65 75 imul $0x65756575,0x71(%edi,%ebx,2),%esi 212c: 65 212d: 5f pop %edi 212e: 66 data16 212f: 75 6e jne 219f <.debug_info+0x219f> 2131: 63 5f 74 arpl %bx,0x74(%edi) 2134: 00 27 add %ah,(%edi) 2136: 1d 3b 21 00 00 sbb $0x213b,%eax 213b: 06 push %es 213c: 04 41 add $0x41,%al 213e: 21 00 and %eax,(%eax) 2140: 00 0c 60 add %cl,(%eax) 2143: 21 00 and %eax,(%eax) 2145: 00 01 add %al,(%ecx) 2147: 7a 00 jp 2149 <.debug_info+0x2149> 2149: 00 00 add %al,(%eax) 214b: 08 60 21 or %ah,0x21(%eax) 214e: 00 00 add %al,(%eax) 2150: 08 3b or %bh,(%ebx) 2152: 01 00 add %eax,(%eax) 2154: 00 08 add %cl,(%eax) 2156: 7a 00 jp 2158 <.debug_info+0x2158> 2158: 00 00 add %al,(%eax) 215a: 08 b7 1d 00 00 00 or %dh,0x1d(%edi) 2160: 06 push %es 2161: 04 bf add $0xbf,%al 2163: 20 00 and %al,(%eax) 2165: 00 0e add %cl,(%esi) 2167: 9d popf 2168: 21 00 and %eax,(%eax) 216a: 00 5f 5f add %bl,0x5f(%edi) 216d: 77 61 ja 21d0 <.debug_info+0x21d0> 216f: 69 74 5f 71 75 65 75 imul $0x65756575,0x71(%edi,%ebx,2),%esi 2176: 65 2177: 5f pop %edi 2178: 68 65 61 64 00 push $0x646165 217d: 18 27 sbb %ah,(%edi) 217f: 32 0f xor (%edi),%cl 2181: d6 (bad) 2182: 02 00 add (%eax),%al 2184: 00 27 add %ah,(%edi) 2186: 33 1e xor (%esi),%ebx 2188: 1f pop %ds 2189: 00 00 add %al,(%eax) 218b: 02 23 add (%ebx),%ah 218d: 00 0f add %cl,(%edi) 218f: 38 02 cmp %al,(%edx) 2191: 00 00 add %al,(%eax) 2193: 27 daa 2194: 34 c8 xor $0xc8,%al 2196: 1d 00 00 02 23 sbb $0x23020000,%eax 219b: 10 00 adc %al,(%eax) 219d: 09 77 61 or %esi,0x61(%edi) 21a0: 69 74 5f 71 75 65 75 imul $0x65756575,0x71(%edi,%ebx,2),%esi 21a7: 65 21a8: 5f pop %edi 21a9: 68 65 61 64 5f push $0x5f646165 21ae: 74 00 je 21b0 <.debug_info+0x21b0> 21b0: 27 daa 21b1: 36 66 21 00 and %ax,%ss:(%eax) 21b5: 00 0e add %cl,(%esi) 21b7: f6 21 mulb (%ecx) 21b9: 00 00 add %al,(%eax) 21bb: 72 77 jb 2234 <.debug_info+0x2234> 21bd: 5f pop %edi 21be: 73 65 jae 2225 <.debug_info+0x2225> 21c0: 6d insl (%dx),%es:(%edi) 21c1: 61 popa 21c2: 70 68 jo 222c <.debug_info+0x222c> 21c4: 6f outsl %ds:(%esi),(%dx) 21c5: 72 65 jb 222c <.debug_info+0x222c> 21c7: 00 1c 25 13 0f e7 01 add %bl,0x1e70f13 21ce: 00 00 add %al,(%eax) 21d0: 26 38 02 cmp %al,%es:(%edx) 21d3: 01 00 add %eax,(%eax) 21d5: 00 02 add %al,(%edx) 21d7: 23 00 and (%eax),%eax 21d9: 0f ee 00 pmaxsw (%eax),%mm0 21dc: 00 00 add %al,(%eax) 21de: 26 es 21df: 3f aas 21e0: 1e push %ds 21e1: 1f pop %ds 21e2: 00 00 add %al,(%eax) 21e4: 02 23 add (%ebx),%ah 21e6: 04 0f add $0xf,%al 21e8: bd 00 00 00 26 mov $0x26000000,%ebp 21ed: 40 inc %eax 21ee: c8 1d 00 00 enter $0x1d,$0x0 21f2: 02 23 add (%ebx),%ah 21f4: 14 00 adc $0x0,%al 21f6: 0e push %cs 21f7: 39 22 cmp %esp,(%edx) 21f9: 00 00 add %al,(%eax) 21fb: 73 65 jae 2262 <.debug_info+0x2262> 21fd: 6d insl (%dx),%es:(%edi) 21fe: 61 popa 21ff: 70 68 jo 2269 <.debug_info+0x2269> 2201: 6f outsl %ds:(%esi),(%dx) 2202: 72 65 jb 2269 <.debug_info+0x2269> 2204: 00 20 add %ah,(%eax) 2206: 36 ss 2207: 2c 0f sub $0xf,%al 2209: e7 01 out %eax,$0x1 220b: 00 00 add %al,(%eax) 220d: 36 ss 220e: 2d a1 1f 00 00 sub $0x1fa1,%eax 2213: 02 23 add (%ebx),%ah 2215: 00 0b add %cl,(%ebx) 2217: 73 6c jae 2285 <.debug_info+0x2285> 2219: 65 gs 221a: 65 gs 221b: 70 65 jo 2282 <.debug_info+0x2282> 221d: 72 73 jb 2292 <.debug_info+0x2292> 221f: 00 36 add %dh,(%esi) 2221: 2e 7a 00 jp,pn 2224 <.debug_info+0x2224> 2224: 00 00 add %al,(%eax) 2226: 02 23 add (%ebx),%ah 2228: 04 0b add $0xb,%al 222a: 77 61 ja 228d <.debug_info+0x228d> 222c: 69 74 00 36 2f 9d 21 imul $0x219d2f,0x36(%eax,%eax,1),%esi 2233: 00 2234: 00 02 add %al,(%edx) 2236: 23 08 and (%eax),%ecx 2238: 00 0d 7c 22 00 00 add %cl,0x227c 223e: 2c 35 sub $0x35,%al 2240: 10 0b adc %cl,(%ebx) 2242: 73 69 jae 22ad <.debug_info+0x22ad> 2244: 7a 65 jp 22ab <.debug_info+0x22ab> 2246: 00 35 0c 7a 00 00 add %dh,0x7a0c 224c: 00 02 add %al,(%edx) 224e: 23 00 and (%eax),%eax 2250: 0b 73 65 or 0x65(%ebx),%esi 2253: 6d insl (%dx),%es:(%edi) 2254: 00 35 0d f6 21 00 add %dh,0x21f60d 225a: 00 02 add %al,(%edx) 225c: 23 04 0b and (%ebx,%ecx,1),%eax 225f: 6c insb (%dx),%es:(%edi) 2260: 64 fs 2261: 74 00 je 2263 <.debug_info+0x2263> 2263: 35 0e b7 1d 00 xor $0x1db70e,%eax 2268: 00 02 add %al,(%edx) 226a: 23 24 0b and (%ebx,%ecx,1),%esp 226d: 76 64 jbe 22d3 <.debug_info+0x22d3> 226f: 73 6f jae 22e0 <.debug_info+0x22e0> 2271: 00 35 0f b7 1d 00 add %dh,0x1db70f 2277: 00 02 add %al,(%edx) 2279: 23 28 and (%eax),%ebp 227b: 00 09 add %cl,(%ecx) 227d: 6d insl (%dx),%es:(%edi) 227e: 6d insl (%dx),%es:(%edi) 227f: 5f pop %edi 2280: 63 6f 6e arpl %bp,0x6e(%edi) 2283: 74 65 je 22ea <.debug_info+0x22ea> 2285: 78 74 js 22fb <.debug_info+0x22fb> 2287: 5f pop %edi 2288: 74 00 je 228a <.debug_info+0x228a> 228a: 35 10 39 22 00 xor $0x223910,%eax 228f: 00 09 add %cl,(%ecx) 2291: 63 70 75 arpl %si,0x75(%eax) 2294: 74 69 je 22ff <.debug_info+0x22ff> 2296: 6d insl (%dx),%es:(%edi) 2297: 65 gs 2298: 5f pop %edi 2299: 74 00 je 229b <.debug_info+0x229b> 229b: 3a 07 cmp (%edi),%al 229d: 98 cwtl 229e: 00 00 add %al,(%eax) 22a0: 00 03 add %al,(%ebx) 22a2: b1 22 mov $0x22,%cl 22a4: 00 00 add %al,(%eax) 22a6: c1 01 00 roll $0x0,(%ecx) 22a9: 00 04 91 add %al,(%ecx,%edx,4) 22ac: 00 00 add %al,(%eax) 22ae: 00 03 add %al,(%ebx) 22b0: 00 0e add %cl,(%esi) 22b2: b4 23 mov $0x23,%ah 22b4: 00 00 add %al,(%eax) 22b6: 6d insl (%dx),%es:(%edi) 22b7: 70 5f jo 2318 <.debug_info+0x2318> 22b9: 63 6f 6e arpl %bp,0x6e(%edi) 22bc: 66 69 67 5f 74 61 imul $0x6174,0x5f(%edi),%sp 22c2: 62 6c 65 00 bound %ebp,0x0(%ebp) 22c6: 2c 59 sub $0x59,%al 22c8: 22 0b and (%ebx),%cl 22ca: 6d insl (%dx),%es:(%edi) 22cb: 70 63 jo 2330 <.debug_info+0x2330> 22cd: 5f pop %edi 22ce: 73 69 jae 2339 <.debug_info+0x2339> 22d0: 67 6e addr16 outsb %ds:(%si),(%dx) 22d2: 61 popa 22d3: 74 75 je 234a <.debug_info+0x234a> 22d5: 72 65 jb 233c <.debug_info+0x233c> 22d7: 00 59 23 add %bl,0x23(%ecx) 22da: a1 22 00 00 02 mov 0x2000022,%eax 22df: 23 00 and (%eax),%eax 22e1: 0b 6d 70 or 0x70(%ebp),%ebp 22e4: 63 5f 6c arpl %bx,0x6c(%edi) 22e7: 65 6e outsb %gs:(%esi),(%dx) 22e9: 67 74 68 addr16 je 2354 <.debug_info+0x2354> 22ec: 00 59 25 add %bl,0x25(%ecx) 22ef: ec in (%dx),%al 22f0: 00 00 add %al,(%eax) 22f2: 00 02 add %al,(%edx) 22f4: 23 04 0b and (%ebx,%ecx,1),%eax 22f7: 6d insl (%dx),%es:(%edi) 22f8: 70 63 jo 235d <.debug_info+0x235d> 22fa: 5f pop %edi 22fb: 73 70 jae 236d <.debug_info+0x236d> 22fd: 65 63 00 arpl %ax,%gs:(%eax) 2300: 59 pop %ecx 2301: 26 c1 01 00 roll $0x0,%es:(%ecx) 2305: 00 02 add %al,(%edx) 2307: 23 06 and (%esi),%eax 2309: 0b 6d 70 or 0x70(%ebp),%ebp 230c: 63 5f 63 arpl %bx,0x63(%edi) 230f: 68 65 63 6b 73 push $0x736b6365 2314: 75 6d jne 2383 <.debug_info+0x2383> 2316: 00 59 27 add %bl,0x27(%ecx) 2319: c1 01 00 roll $0x0,(%ecx) 231c: 00 02 add %al,(%edx) 231e: 23 07 and (%edi),%eax 2320: 0b 6d 70 or 0x70(%ebp),%ebp 2323: 63 5f 6f arpl %bx,0x6f(%edi) 2326: 65 gs 2327: 6d insl (%dx),%es:(%edi) 2328: 00 59 28 add %bl,0x28(%ecx) 232b: 3a 0a cmp (%edx),%cl 232d: 00 00 add %al,(%eax) 232f: 02 23 add (%ebx),%ah 2331: 08 0b or %cl,(%ebx) 2333: 6d insl (%dx),%es:(%edi) 2334: 70 63 jo 2399 <.debug_info+0x2399> 2336: 5f pop %edi 2337: 70 72 jo 23ab <.debug_info+0x23ab> 2339: 6f outsl %ds:(%esi),(%dx) 233a: 64 fs 233b: 75 63 jne 23a0 <.debug_info+0x23a0> 233d: 74 69 je 23a8 <.debug_info+0x23a8> 233f: 64 00 59 29 add %bl,%fs:0x29(%ecx) 2343: b4 23 mov $0x23,%ah 2345: 00 00 add %al,(%eax) 2347: 02 23 add (%ebx),%ah 2349: 10 0b adc %cl,(%ebx) 234b: 6d insl (%dx),%es:(%edi) 234c: 70 63 jo 23b1 <.debug_info+0x23b1> 234e: 5f pop %edi 234f: 6f outsl %ds:(%esi),(%dx) 2350: 65 gs 2351: 6d insl (%dx),%es:(%edi) 2352: 70 74 jo 23c8 <.debug_info+0x23c8> 2354: 72 00 jb 2356 <.debug_info+0x2356> 2356: 59 pop %ecx 2357: 2a 98 00 00 00 02 sub 0x2000000(%eax),%bl 235d: 23 1c 0b and (%ebx,%ecx,1),%ebx 2360: 6d insl (%dx),%es:(%edi) 2361: 70 63 jo 23c6 <.debug_info+0x23c6> 2363: 5f pop %edi 2364: 6f outsl %ds:(%esi),(%dx) 2365: 65 gs 2366: 6d insl (%dx),%es:(%edi) 2367: 73 69 jae 23d2 <.debug_info+0x23d2> 2369: 7a 65 jp 23d0 <.debug_info+0x23d0> 236b: 00 59 2b add %bl,0x2b(%ecx) 236e: ec in (%dx),%al 236f: 00 00 add %al,(%eax) 2371: 00 02 add %al,(%edx) 2373: 23 20 and (%eax),%esp 2375: 0b 6d 70 or 0x70(%ebp),%ebp 2378: 63 5f 6f arpl %bx,0x6f(%edi) 237b: 65 gs 237c: 6d insl (%dx),%es:(%edi) 237d: 63 6f 75 arpl %bp,0x75(%edi) 2380: 6e outsb %ds:(%esi),(%dx) 2381: 74 00 je 2383 <.debug_info+0x2383> 2383: 59 pop %ecx 2384: 2c ec sub $0xec,%al 2386: 00 00 add %al,(%eax) 2388: 00 02 add %al,(%edx) 238a: 23 22 and (%edx),%esp 238c: 0b 6d 70 or 0x70(%ebp),%ebp 238f: 63 5f 6c arpl %bx,0x6c(%edi) 2392: 61 popa 2393: 70 69 jo 23fe <.debug_info+0x23fe> 2395: 63 00 arpl %ax,(%eax) 2397: 59 pop %ecx 2398: 2d 98 00 00 00 sub $0x98,%eax 239d: 02 23 add (%ebx),%ah 239f: 24 0b and $0xb,%al 23a1: 72 65 jb 2408 <.debug_info+0x2408> 23a3: 73 65 jae 240a <.debug_info+0x240a> 23a5: 72 76 jb 241d <.debug_info+0x241d> 23a7: 65 64 00 59 2e add %bl,%fs:%gs:0x2e(%ecx) 23ac: 98 cwtl 23ad: 00 00 add %al,(%eax) 23af: 00 02 add %al,(%edx) 23b1: 23 28 and (%eax),%ebp 23b3: 00 03 add %al,(%ebx) 23b5: c4 23 les (%ebx),%esp 23b7: 00 00 add %al,(%eax) 23b9: c1 01 00 roll $0x0,(%ecx) 23bc: 00 04 91 add %al,(%ecx,%edx,4) 23bf: 00 00 add %al,(%eax) 23c1: 00 0b add %cl,(%ebx) 23c3: 00 0e add %cl,(%esi) 23c5: 6c insb (%dx),%es:(%edi) 23c6: 24 00 and $0x0,%al 23c8: 00 6d 70 add %ch,0x70(%ebp) 23cb: 63 5f 63 arpl %bx,0x63(%edi) 23ce: 6f outsl %ds:(%esi),(%dx) 23cf: 6e outsb %ds:(%esi),(%dx) 23d0: 66 69 67 5f 70 72 imul $0x7270,0x5f(%edi),%sp 23d6: 6f outsl %ds:(%esi),(%dx) 23d7: 63 65 73 arpl %sp,0x73(%ebp) 23da: 73 6f jae 244b <.debug_info+0x244b> 23dc: 72 00 jb 23de <.debug_info+0x23de> 23de: 14 59 adc $0x59,%al 23e0: 3b 0f cmp (%edi),%ecx 23e2: 45 inc %ebp 23e3: 03 00 add (%eax),%eax 23e5: 00 59 3c add %bl,0x3c(%ecx) 23e8: 57 push %edi 23e9: 02 00 add (%eax),%al 23eb: 00 02 add %al,(%edx) 23ed: 23 00 and (%eax),%eax 23ef: 0f 92 00 setb (%eax) 23f2: 00 00 add %al,(%eax) 23f4: 59 pop %ecx 23f5: 3d 57 02 00 00 cmp $0x257,%eax 23fa: 02 23 add (%ebx),%ah 23fc: 01 0f add %ecx,(%edi) 23fe: 1f pop %ds 23ff: 00 00 add %al,(%eax) 2401: 00 59 3e add %bl,0x3e(%ecx) 2404: 57 push %edi 2405: 02 00 add (%eax),%al 2407: 00 02 add %al,(%edx) 2409: 23 02 and (%edx),%eax 240b: 0b 6d 70 or 0x70(%ebp),%ebp 240e: 63 5f 63 arpl %bx,0x63(%edi) 2411: 70 75 jo 2488 <.debug_info+0x2488> 2413: 66 data16 2414: 6c insb (%dx),%es:(%edi) 2415: 61 popa 2416: 67 00 59 3f addr16 add %bl,63(%bx,%di) 241a: 57 push %edi 241b: 02 00 add (%eax),%al 241d: 00 02 add %al,(%edx) 241f: 23 03 and (%ebx),%eax 2421: 0b 6d 70 or 0x70(%ebp),%ebp 2424: 63 5f 63 arpl %bx,0x63(%edi) 2427: 70 75 jo 249e <.debug_info+0x249e> 2429: 66 data16 242a: 65 gs 242b: 61 popa 242c: 74 75 je 24a3 <.debug_info+0x24a3> 242e: 72 65 jb 2495 <.debug_info+0x2495> 2430: 00 59 42 add %bl,0x42(%ecx) 2433: 98 cwtl 2434: 00 00 add %al,(%eax) 2436: 00 02 add %al,(%edx) 2438: 23 04 0b and (%ebx,%ecx,1),%eax 243b: 6d insl (%dx),%es:(%edi) 243c: 70 63 jo 24a1 <.debug_info+0x24a1> 243e: 5f pop %edi 243f: 66 data16 2440: 65 gs 2441: 61 popa 2442: 74 75 je 24b9 <.debug_info+0x24b9> 2444: 72 65 jb 24ab <.debug_info+0x24ab> 2446: 66 data16 2447: 6c insb (%dx),%es:(%edi) 2448: 61 popa 2449: 67 00 59 46 addr16 add %bl,70(%bx,%di) 244d: 98 cwtl 244e: 00 00 add %al,(%eax) 2450: 00 02 add %al,(%edx) 2452: 23 08 and (%eax),%ecx 2454: 0b 6d 70 or 0x70(%ebp),%ebp 2457: 63 5f 72 arpl %bx,0x72(%edi) 245a: 65 gs 245b: 73 65 jae 24c2 <.debug_info+0x24c2> 245d: 72 76 jb 24d5 <.debug_info+0x24d5> 245f: 65 64 00 59 47 add %bl,%fs:%gs:0x47(%ecx) 2464: 6c insb (%dx),%es:(%edi) 2465: 24 00 and $0x0,%al 2467: 00 02 add %al,(%edx) 2469: 23 0c 00 and (%eax,%eax,1),%ecx 246c: 03 7c 24 00 add 0x0(%esp),%edi 2470: 00 98 00 00 00 04 add %bl,0x4000000(%eax) 2476: 91 xchg %eax,%ecx 2477: 00 00 add %al,(%eax) 2479: 00 01 add %al,(%ecx) 247b: 00 0e add %cl,(%esi) 247d: cc int3 247e: 24 00 and $0x0,%al 2480: 00 6d 70 add %ch,0x70(%ebp) 2483: 63 5f 63 arpl %bx,0x63(%edi) 2486: 6f outsl %ds:(%esi),(%dx) 2487: 6e outsb %ds:(%esi),(%dx) 2488: 66 69 67 5f 62 75 imul $0x7562,0x5f(%edi),%sp 248e: 73 00 jae 2490 <.debug_info+0x2490> 2490: 08 59 4b or %bl,0x4b(%ecx) 2493: 0f 45 03 cmovne (%ebx),%eax 2496: 00 00 add %al,(%eax) 2498: 59 pop %ecx 2499: 4c dec %esp 249a: 57 push %edi 249b: 02 00 add (%eax),%al 249d: 00 02 add %al,(%edx) 249f: 23 00 and (%eax),%eax 24a1: 0b 6d 70 or 0x70(%ebp),%ebp 24a4: 63 5f 62 arpl %bx,0x62(%edi) 24a7: 75 73 jne 251c <.debug_info+0x251c> 24a9: 69 64 00 59 4d 57 02 imul $0x2574d,0x59(%eax,%eax,1),%esp 24b0: 00 24b1: 00 02 add %al,(%edx) 24b3: 23 01 and (%ecx),%eax 24b5: 0b 6d 70 or 0x70(%ebp),%ebp 24b8: 63 5f 62 arpl %bx,0x62(%edi) 24bb: 75 73 jne 2530 <.debug_info+0x2530> 24bd: 74 79 je 2538 <.debug_info+0x2538> 24bf: 70 65 jo 2526 <.debug_info+0x2526> 24c1: 00 59 4e add %bl,0x4e(%ecx) 24c4: cc int3 24c5: 24 00 and $0x0,%al 24c7: 00 02 add %al,(%edx) 24c9: 23 02 and (%edx),%eax 24cb: 00 03 add %al,(%ebx) 24cd: dc 24 00 fsubl (%eax,%eax,1) 24d0: 00 57 02 add %dl,0x2(%edi) 24d3: 00 00 add %al,(%eax) 24d5: 04 91 add $0x91,%al 24d7: 00 00 add %al,(%eax) 24d9: 00 05 00 0e 4c 25 add %al,0x254c0e00 24df: 00 00 add %al,(%eax) 24e1: 6d insl (%dx),%es:(%edi) 24e2: 70 63 jo 2547 <.debug_info+0x2547> 24e4: 5f pop %edi 24e5: 63 6f 6e arpl %bp,0x6e(%edi) 24e8: 66 69 67 5f 69 6f imul $0x6f69,0x5f(%edi),%sp 24ee: 61 popa 24ef: 70 69 jo 255a <.debug_info+0x255a> 24f1: 63 00 arpl %ax,(%eax) 24f3: 08 59 67 or %bl,0x67(%ecx) 24f6: 0f 45 03 cmovne (%ebx),%eax 24f9: 00 00 add %al,(%eax) 24fb: 59 pop %ecx 24fc: 68 57 02 00 00 push $0x257 2501: 02 23 add (%ebx),%ah 2503: 00 0f add %cl,(%edi) 2505: 92 xchg %eax,%edx 2506: 00 00 add %al,(%eax) 2508: 00 59 69 add %bl,0x69(%ecx) 250b: 57 push %edi 250c: 02 00 add (%eax),%al 250e: 00 02 add %al,(%edx) 2510: 23 01 and (%ecx),%eax 2512: 0f 1f 00 nopl (%eax) 2515: 00 00 add %al,(%eax) 2517: 59 pop %ecx 2518: 6a 57 push $0x57 251a: 02 00 add (%eax),%al 251c: 00 02 add %al,(%edx) 251e: 23 02 and (%edx),%eax 2520: 0b 6d 70 or 0x70(%ebp),%ebp 2523: 63 5f 66 arpl %bx,0x66(%edi) 2526: 6c insb (%dx),%es:(%edi) 2527: 61 popa 2528: 67 73 00 addr16 jae 252b <.debug_info+0x252b> 252b: 59 pop %ecx 252c: 6b 57 02 00 imul $0x0,0x2(%edi),%edx 2530: 00 02 add %al,(%edx) 2532: 23 03 and (%ebx),%eax 2534: 0b 6d 70 or 0x70(%ebp),%ebp 2537: 63 5f 61 arpl %bx,0x61(%edi) 253a: 70 69 jo 25a5 <.debug_info+0x25a5> 253c: 63 61 64 arpl %sp,0x64(%ecx) 253f: 64 fs 2540: 72 00 jb 2542 <.debug_info+0x2542> 2542: 59 pop %ecx 2543: 6d insl (%dx),%es:(%edi) 2544: 98 cwtl 2545: 00 00 add %al,(%eax) 2547: 00 02 add %al,(%edx) 2549: 23 04 00 and (%eax,%eax,1),%eax 254c: 0e push %cs 254d: fe (bad) 254e: 25 00 00 6d 70 and $0x706d0000,%eax 2553: 63 5f 63 arpl %bx,0x63(%edi) 2556: 6f outsl %ds:(%esi),(%dx) 2557: 6e outsb %ds:(%esi),(%dx) 2558: 66 69 67 5f 74 72 imul $0x7274,0x5f(%edi),%sp 255e: 61 popa 255f: 6e outsb %ds:(%esi),(%dx) 2560: 73 6c jae 25ce <.debug_info+0x25ce> 2562: 61 popa 2563: 74 69 je 25ce <.debug_info+0x25ce> 2565: 6f outsl %ds:(%esi),(%dx) 2566: 6e outsb %ds:(%esi),(%dx) 2567: 00 08 add %cl,(%eax) 2569: 59 pop %ecx 256a: 9e sahf 256b: 0f 45 03 cmovne (%ebx),%eax 256e: 00 00 add %al,(%eax) 2570: 59 pop %ecx 2571: 9f lahf 2572: 57 push %edi 2573: 02 00 add (%eax),%al 2575: 00 02 add %al,(%edx) 2577: 23 00 and (%eax),%eax 2579: 0b 74 72 61 or 0x61(%edx,%esi,2),%esi 257d: 6e outsb %ds:(%esi),(%dx) 257e: 73 5f jae 25df <.debug_info+0x25df> 2580: 6c insb (%dx),%es:(%edi) 2581: 65 6e outsb %gs:(%esi),(%dx) 2583: 00 59 a0 add %bl,0xffffffa0(%ecx) 2586: 57 push %edi 2587: 02 00 add (%eax),%al 2589: 00 02 add %al,(%edx) 258b: 23 01 and (%ecx),%eax 258d: 0b 74 72 61 or 0x61(%edx,%esi,2),%esi 2591: 6e outsb %ds:(%esi),(%dx) 2592: 73 5f jae 25f3 <.debug_info+0x25f3> 2594: 74 79 je 260f <.debug_info+0x260f> 2596: 70 65 jo 25fd <.debug_info+0x25fd> 2598: 00 59 a1 add %bl,0xffffffa1(%ecx) 259b: 57 push %edi 259c: 02 00 add (%eax),%al 259e: 00 02 add %al,(%edx) 25a0: 23 02 and (%edx),%eax 25a2: 0b 74 72 61 or 0x61(%edx,%esi,2),%esi 25a6: 6e outsb %ds:(%esi),(%dx) 25a7: 73 5f jae 2608 <.debug_info+0x2608> 25a9: 71 75 jno 2620 <.debug_info+0x2620> 25ab: 61 popa 25ac: 64 00 59 a2 add %bl,%fs:0xffffffa2(%ecx) 25b0: 57 push %edi 25b1: 02 00 add (%eax),%al 25b3: 00 02 add %al,(%edx) 25b5: 23 03 and (%ebx),%eax 25b7: 0b 74 72 61 or 0x61(%edx,%esi,2),%esi 25bb: 6e outsb %ds:(%esi),(%dx) 25bc: 73 5f jae 261d <.debug_info+0x261d> 25be: 67 6c addr16 insb (%dx),%es:(%di) 25c0: 6f outsl %ds:(%esi),(%dx) 25c1: 62 61 6c bound %esp,0x6c(%ecx) 25c4: 00 59 a3 add %bl,0xffffffa3(%ecx) 25c7: 57 push %edi 25c8: 02 00 add (%eax),%al 25ca: 00 02 add %al,(%edx) 25cc: 23 04 0b and (%ebx,%ecx,1),%eax 25cf: 74 72 je 2643 <.debug_info+0x2643> 25d1: 61 popa 25d2: 6e outsb %ds:(%esi),(%dx) 25d3: 73 5f jae 2634 <.debug_info+0x2634> 25d5: 6c insb (%dx),%es:(%edi) 25d6: 6f outsl %ds:(%esi),(%dx) 25d7: 63 61 6c arpl %sp,0x6c(%ecx) 25da: 00 59 a4 add %bl,0xffffffa4(%ecx) 25dd: 57 push %edi 25de: 02 00 add (%eax),%al 25e0: 00 02 add %al,(%edx) 25e2: 23 05 0b 74 72 61 and 0x6172740b,%eax 25e8: 6e outsb %ds:(%esi),(%dx) 25e9: 73 5f jae 264a <.debug_info+0x264a> 25eb: 72 65 jb 2652 <.debug_info+0x2652> 25ed: 73 65 jae 2654 <.debug_info+0x2654> 25ef: 72 76 jb 2667 <.debug_info+0x2667> 25f1: 65 64 00 59 a5 add %bl,%fs:%gs:0xffffffa5(%ecx) 25f6: ec in (%dx),%al 25f7: 00 00 add %al,(%eax) 25f9: 00 02 add %al,(%edx) 25fb: 23 06 and (%esi),%eax 25fd: 00 0e add %cl,(%esi) 25ff: 22 26 and (%esi),%ah 2601: 00 00 add %al,(%eax) 2603: 70 68 jo 266d <.debug_info+0x266d> 2605: 79 73 jns 267a <.debug_info+0x267a> 2607: 69 64 5f 6d 61 73 6b imul $0x6b7361,0x6d(%edi,%ebx,2),%esp 260e: 00 260f: 20 5d 28 and %bl,0x28(%ebp) 2612: 0b 6d 61 or 0x61(%ebp),%ebp 2615: 73 6b jae 2682 <.debug_info+0x2682> 2617: 00 5d 29 add %bl,0x29(%ebp) 261a: 1b 07 sbb (%edi),%eax 261c: 00 00 add %al,(%eax) 261e: 02 23 add (%ebx),%ah 2620: 00 00 add %al,(%eax) 2622: 09 70 68 or %esi,0x68(%eax) 2625: 79 73 jns 269a <.debug_info+0x269a> 2627: 69 64 5f 6d 61 73 6b imul $0x5f6b7361,0x6d(%edi,%ebx,2),%esp 262e: 5f 262f: 74 00 je 2631 <.debug_info+0x2631> 2631: 5d pop %ebp 2632: 2c fe sub $0xfe,%al 2634: 25 00 00 0e 5b and $0x5b0e0000,%eax 2639: 26 00 00 add %al,%es:(%eax) 263c: 70 6d jo 26ab <.debug_info+0x26ab> 263e: 5f pop %edi 263f: 6d insl (%dx),%es:(%edi) 2640: 65 gs 2641: 73 73 jae 26b6 <.debug_info+0x26b6> 2643: 61 popa 2644: 67 65 00 04 addr16 add %al,%gs:(%si) 2648: 4f dec %edi 2649: 8c 0b movw %cs,(%ebx) 264b: 65 gs 264c: 76 65 jbe 26b3 <.debug_info+0x26b3> 264e: 6e outsb %ds:(%esi),(%dx) 264f: 74 00 je 2651 <.debug_info+0x2651> 2651: 4f dec %edi 2652: 8d 7a 00 lea 0x0(%edx),%edi 2655: 00 00 add %al,(%eax) 2657: 02 23 add (%ebx),%ah 2659: 00 00 add %al,(%eax) 265b: 09 70 6d or %esi,0x6d(%eax) 265e: 5f pop %edi 265f: 6d insl (%dx),%es:(%edi) 2660: 65 gs 2661: 73 73 jae 26d6 <.debug_info+0x26d6> 2663: 61 popa 2664: 67 addr16 2665: 65 gs 2666: 5f pop %edi 2667: 74 00 je 2669 <.debug_info+0x2669> 2669: 4f dec %edi 266a: 8e 37 movw (%edi),%? 266c: 26 00 00 add %al,%es:(%eax) 266f: 0e push %cs 2670: 1a 27 sbb (%edi),%ah 2672: 00 00 add %al,(%eax) 2674: 64 fs 2675: 65 gs 2676: 76 5f jbe 26d7 <.debug_info+0x26d7> 2678: 70 6d jo 26e7 <.debug_info+0x26e7> 267a: 5f pop %edi 267b: 69 6e 66 6f 00 1c 4f imul $0x4f1c006f,0x66(%esi),%ebp 2682: ab stos %eax,%es:(%edi) 2683: 0b 70 6f or 0x6f(%eax),%esi 2686: 77 65 ja 26ed <.debug_info+0x26ed> 2688: 72 5f jb 26e9 <.debug_info+0x26e9> 268a: 73 74 jae 2700 <.debug_info+0x2700> 268c: 61 popa 268d: 74 65 je 26f4 <.debug_info+0x26f4> 268f: 00 4f ac add %cl,0xffffffac(%edi) 2692: 5b pop %ebx 2693: 26 00 00 add %al,%es:(%eax) 2696: 02 23 add (%ebx),%ah 2698: 00 1f add %bl,(%edi) 269a: 63 61 6e arpl %sp,0x6e(%ecx) 269d: 5f pop %edi 269e: 77 61 ja 2701 <.debug_info+0x2701> 26a0: 6b 65 75 70 imul $0x70,0x75(%ebp),%esp 26a4: 00 4f ad add %cl,0xffffffad(%edi) 26a7: 3b 01 cmp (%ecx),%eax 26a9: 00 00 add %al,(%eax) 26ab: 04 01 add $0x1,%al 26ad: 1f pop %ds 26ae: 02 23 add (%ebx),%ah 26b0: 04 1f add $0x1f,%al 26b2: 73 68 jae 271c <.debug_info+0x271c> 26b4: 6f outsl %ds:(%esi),(%dx) 26b5: 75 6c jne 2723 <.debug_info+0x2723> 26b7: 64 fs 26b8: 5f pop %edi 26b9: 77 61 ja 271c <.debug_info+0x271c> 26bb: 6b 65 75 70 imul $0x70,0x75(%ebp),%esp 26bf: 00 4f af add %cl,0xffffffaf(%edi) 26c2: 3b 01 cmp (%ecx),%eax 26c4: 00 00 add %al,(%eax) 26c6: 04 01 add $0x1,%al 26c8: 1e push %ds 26c9: 02 23 add (%ebx),%ah 26cb: 04 0b add $0xb,%al 26cd: 70 72 jo 2741 <.debug_info+0x2741> 26cf: 65 gs 26d0: 76 5f jbe 2731 <.debug_info+0x2731> 26d2: 73 74 jae 2748 <.debug_info+0x2748> 26d4: 61 popa 26d5: 74 65 je 273c <.debug_info+0x273c> 26d7: 00 4f b0 add %cl,0xffffffb0(%edi) 26da: 5b pop %ebx 26db: 26 00 00 add %al,%es:(%eax) 26de: 02 23 add (%ebx),%ah 26e0: 08 0b or %cl,(%ebx) 26e2: 73 61 jae 2745 <.debug_info+0x2745> 26e4: 76 65 jbe 274b <.debug_info+0x274b> 26e6: 64 fs 26e7: 5f pop %edi 26e8: 73 74 jae 275e <.debug_info+0x275e> 26ea: 61 popa 26eb: 74 65 je 2752 <.debug_info+0x2752> 26ed: 00 4f b1 add %cl,0xffffffb1(%edi) 26f0: b7 1d mov $0x1d,%bh 26f2: 00 00 add %al,(%eax) 26f4: 02 23 add (%ebx),%ah 26f6: 0c 0b or $0xb,%al 26f8: 70 6d jo 2767 <.debug_info+0x2767> 26fa: 5f pop %edi 26fb: 70 61 jo 275e <.debug_info+0x275e> 26fd: 72 65 jb 2764 <.debug_info+0x2764> 26ff: 6e outsb %ds:(%esi),(%dx) 2700: 74 00 je 2702 <.debug_info+0x2702> 2702: 4f dec %edi 2703: b2 f4 mov $0xf4,%dl 2705: 28 00 sub %al,(%eax) 2707: 00 02 add %al,(%edx) 2709: 23 10 and (%eax),%edx 270b: 0f 97 02 seta (%edx) 270e: 00 00 add %al,(%eax) 2710: 4f dec %edi 2711: b3 c8 mov $0xc8,%bl 2713: 1d 00 00 02 23 sbb $0x23020000,%eax 2718: 14 00 adc $0x0,%al 271a: 20 f4 and %dh,%ah 271c: 28 00 sub %al,(%eax) 271e: 00 68 02 add %ch,0x2(%eax) 2721: 00 00 add %al,(%eax) 2723: 9c pushf 2724: 01 4f 8a add %ecx,0xffffff8a(%edi) 2727: 12 6b 6c adc 0x6c(%ebx),%ch 272a: 69 73 74 5f 63 68 69 imul $0x6968635f,0x74(%ebx),%esi 2731: 6c insb (%dx),%es:(%edi) 2732: 64 fs 2733: 72 65 jb 279a <.debug_info+0x279a> 2735: 6e outsb %ds:(%esi),(%dx) 2736: 00 50 2c add %dl,0x2c(%eax) 2739: 01 1e add %ebx,(%esi) 273b: a3 00 00 02 23 mov %eax,0x23020000 2740: 00 12 add %dl,(%edx) 2742: 6b 6e 6f 64 imul $0x64,0x6f(%esi),%ebp 2746: 65 gs 2747: 5f pop %edi 2748: 70 61 jo 27ab <.debug_info+0x27ab> 274a: 72 65 jb 27b1 <.debug_info+0x27b1> 274c: 6e outsb %ds:(%esi),(%dx) 274d: 74 00 je 274f <.debug_info+0x274f> 274f: 50 push %eax 2750: 2d 01 7d a3 00 sub $0xa37d01,%eax 2755: 00 02 add %al,(%edx) 2757: 23 20 and (%eax),%esp 2759: 12 6b 6e adc 0x6e(%ebx),%ch 275c: 6f outsl %ds:(%esi),(%dx) 275d: 64 fs 275e: 65 gs 275f: 5f pop %edi 2760: 64 fs 2761: 72 69 jb 27cc <.debug_info+0x27cc> 2763: 76 65 jbe 27ca <.debug_info+0x27ca> 2765: 72 00 jb 2767 <.debug_info+0x2767> 2767: 50 push %eax 2768: 2e 01 7d a3 add %edi,%cs:0xffffffa3(%ebp) 276c: 00 00 add %al,(%eax) 276e: 02 23 add (%ebx),%ah 2770: 4c dec %esp 2771: 13 9d 02 00 00 50 adc 0x50000002(%ebp),%ebx 2777: 2f das 2778: 01 7d a3 add %edi,0xffffffa3(%ebp) 277b: 00 00 add %al,(%eax) 277d: 02 23 add (%ebx),%ah 277f: 78 13 js 2794 <.debug_info+0x2794> 2781: 76 03 jbe 2786 <.debug_info+0x2786> 2783: 00 00 add %al,(%eax) 2785: 50 push %eax 2786: 30 01 xor %al,(%ecx) 2788: f4 hlt 2789: 28 00 sub %al,(%eax) 278b: 00 03 add %al,(%ebx) 278d: 23 a4 01 12 6b 6f 62 and 0x626f6b12(%ecx,%eax,1),%esp 2794: 6a 00 push $0x0 2796: 50 push %eax 2797: 32 01 xor (%ecx),%al 2799: 18 5b 00 sbb %bl,0x0(%ebx) 279c: 00 03 add %al,(%ebx) 279e: 23 a8 01 12 62 75 and 0x75621201(%eax),%ebp 27a4: 73 5f jae 2805 <.debug_info+0x2805> 27a6: 69 64 00 50 33 01 2f imul $0x5d2f0133,0x50(%eax,%eax,1),%esp 27ad: 5d 27ae: 00 00 add %al,(%eax) 27b0: 03 23 add (%ebx),%esp 27b2: f4 hlt 27b3: 01 13 add %edx,(%ebx) 27b5: 30 00 xor %al,(%eax) 27b7: 00 00 add %al,(%eax) 27b9: 50 push %eax 27ba: 34 01 xor $0x1,%al 27bc: 4e dec %esi 27bd: a5 movsl %ds:(%esi),%es:(%edi) 27be: 00 00 add %al,(%eax) 27c0: 03 23 add (%ebx),%esp 27c2: 88 02 mov %al,(%edx) 27c4: 13 d6 adc %esi,%edx 27c6: 00 00 add %al,(%eax) 27c8: 00 50 35 add %dl,0x35(%eax) 27cb: 01 95 a5 00 00 03 add %edx,0x30000a5(%ebp) 27d1: 23 9c 02 12 73 65 6d and 0x6d657312(%edx,%eax,1),%ebx 27d8: 00 50 37 add %dl,0x37(%eax) 27db: 01 f6 add %esi,%esi 27dd: 21 00 and %eax,(%eax) 27df: 00 03 add %al,(%ebx) 27e1: 23 a0 02 12 62 75 and 0x75621202(%eax),%esp 27e7: 73 00 jae 27e9 <.debug_info+0x27e9> 27e9: 50 push %eax 27ea: 3b 01 cmp (%ecx),%eax 27ec: 55 push %ebp 27ed: a7 cmpsl %es:(%edi),%ds:(%esi) 27ee: 00 00 add %al,(%eax) 27f0: 03 23 add (%ebx),%esp 27f2: c0 02 13 rolb $0x13,(%edx) 27f5: 27 daa 27f6: 02 00 add (%eax),%al 27f8: 00 50 3c add %dl,0x3c(%eax) 27fb: 01 fa add %edi,%edx 27fd: a5 movsl %ds:(%esi),%es:(%edi) 27fe: 00 00 add %al,(%eax) 2800: 03 23 add (%ebx),%esp 2802: c4 02 les (%edx),%eax 2804: 13 6b 01 adc 0x1(%ebx),%ebp 2807: 00 00 add %al,(%eax) 2809: 50 push %eax 280a: 3e 01 b7 1d 00 00 03 add %esi,%ds:0x300001d(%edi) 2811: 23 c8 and %eax,%ecx 2813: 02 12 add (%edx),%dl 2815: 70 6c jo 2883 <.debug_info+0x2883> 2817: 61 popa 2818: 74 66 je 2880 <.debug_info+0x2880> 281a: 6f outsl %ds:(%esi),(%dx) 281b: 72 6d jb 288a <.debug_info+0x288a> 281d: 5f pop %edi 281e: 64 fs 281f: 61 popa 2820: 74 61 je 2883 <.debug_info+0x2883> 2822: 00 50 3f add %dl,0x3f(%eax) 2825: 01 b7 1d 00 00 03 add %esi,0x300001d(%edi) 282b: 23 cc and %esp,%ecx 282d: 02 12 add (%edx),%dl 282f: 66 69 72 6d 77 61 imul $0x6177,0x6d(%edx),%si 2835: 72 65 jb 289c <.debug_info+0x289c> 2837: 5f pop %edi 2838: 64 fs 2839: 61 popa 283a: 74 61 je 289d <.debug_info+0x289d> 283c: 00 50 41 add %dl,0x41(%eax) 283f: 01 b7 1d 00 00 03 add %esi,0x300001d(%edi) 2845: 23 d0 and %eax,%edx 2847: 02 12 add (%edx),%dl 2849: 70 6f jo 28ba <.debug_info+0x28ba> 284b: 77 65 ja 28b2 <.debug_info+0x28b2> 284d: 72 00 jb 284f <.debug_info+0x284f> 284f: 50 push %eax 2850: 43 inc %ebx 2851: 01 6f 26 add %ebp,0x26(%edi) 2854: 00 00 add %al,(%eax) 2856: 03 23 add (%ebx),%esp 2858: d4 02 aam $0x2 285a: 13 7d 03 adc 0x3(%ebp),%edi 285d: 00 00 add %al,(%eax) 285f: 50 push %eax 2860: 45 inc %ebp 2861: 01 53 aa add %edx,0xffffffaa(%ebx) 2864: 00 00 add %al,(%eax) 2866: 03 23 add (%ebx),%esp 2868: f0 02 12 lock add (%edx),%dl 286b: 63 6f 68 arpl %bp,0x68(%edi) 286e: 65 gs 286f: 72 65 jb 28d6 <.debug_info+0x28d6> 2871: 6e outsb %ds:(%esi),(%dx) 2872: 74 5f je 28d3 <.debug_info+0x28d3> 2874: 64 fs 2875: 6d insl (%dx),%es:(%edi) 2876: 61 popa 2877: 5f pop %edi 2878: 6d insl (%dx),%es:(%edi) 2879: 61 popa 287a: 73 6b jae 28e7 <.debug_info+0x28e7> 287c: 00 50 46 add %dl,0x46(%eax) 287f: 01 07 add %eax,(%edi) 2881: 03 00 add (%eax),%eax 2883: 00 03 add %al,(%ebx) 2885: 23 f4 and %esp,%esi 2887: 02 12 add (%edx),%dl 2889: 64 fs 288a: 6d insl (%dx),%es:(%edi) 288b: 61 popa 288c: 5f pop %edi 288d: 70 6f jo 28fe <.debug_info+0x28fe> 288f: 6f outsl %ds:(%esi),(%dx) 2890: 6c insb (%dx),%es:(%edi) 2891: 73 00 jae 2893 <.debug_info+0x2893> 2893: 50 push %eax 2894: 4c dec %esp 2895: 01 c8 add %ecx,%eax 2897: 1d 00 00 03 23 sbb $0x23030000,%eax 289c: fc cld 289d: 02 12 add (%edx),%dl 289f: 64 fs 28a0: 6d insl (%dx),%es:(%edi) 28a1: 61 popa 28a2: 5f pop %edi 28a3: 6d insl (%dx),%es:(%edi) 28a4: 65 gs 28a5: 6d insl (%dx),%es:(%edi) 28a6: 00 50 4e add %dl,0x4e(%eax) 28a9: 01 6c aa 00 add %ebp,0x0(%edx,%ebp,4) 28ad: 00 03 add %al,(%ebx) 28af: 23 84 03 13 ba 02 00 and 0x2ba13(%ebx,%eax,1),%eax 28b6: 00 50 52 add %dl,0x52(%eax) 28b9: 01 c8 add %ecx,%eax 28bb: 1d 00 00 03 23 sbb $0x23030000,%eax 28c0: 88 03 mov %al,(%ebx) 28c2: 13 d0 adc %eax,%edx 28c4: 00 00 add %al,(%eax) 28c6: 00 50 53 add %dl,0x53(%eax) 28c9: 01 80 a9 00 00 03 add %eax,0x30000a9(%eax) 28cf: 23 90 03 12 64 65 and 0x65641203(%eax),%edx 28d5: 76 74 jbe 294b <.debug_info+0x294b> 28d7: 00 50 54 add %dl,0x54(%eax) 28da: 01 38 add %edi,(%eax) 28dc: 03 00 add (%eax),%eax 28de: 00 03 add %al,(%ebx) 28e0: 23 94 03 13 1b 03 00 and 0x31b13(%ebx,%eax,1),%edx 28e7: 00 50 56 add %dl,0x56(%eax) 28ea: 01 1f add %ebx,(%edi) 28ec: a7 cmpsl %es:(%edi),%ds:(%esi) 28ed: 00 00 add %al,(%eax) 28ef: 03 23 add (%ebx),%esp 28f1: 98 cwtl 28f2: 03 00 add (%eax),%eax 28f4: 06 push %es 28f5: 04 1a add $0x1a,%al 28f7: 27 daa 28f8: 00 00 add %al,(%eax) 28fa: 0e push %cs 28fb: ab stos %eax,%es:(%edi) 28fc: 2c 00 sub $0x0,%al 28fe: 00 67 65 add %ah,0x65(%edi) 2901: 6e outsb %ds:(%esi),(%dx) 2902: 61 popa 2903: 70 69 jo 296e <.debug_info+0x296e> 2905: 63 00 arpl %ax,(%eax) 2907: 8c 5c 14 0f movw %ds,0xf(%esp,%edx,1) 290b: a7 cmpsl %es:(%edi),%ds:(%esi) 290c: 01 00 add %eax,(%eax) 290e: 00 5c 15 bb add %bl,0xffffffbb(%ebp,%edx,1) 2912: 01 00 add %eax,(%eax) 2914: 00 02 add %al,(%edx) 2916: 23 00 and (%eax),%eax 2918: 0f 9d 00 setge (%eax) 291b: 00 00 add %al,(%eax) 291d: 5c pop %esp 291e: 16 push %ss 291f: b1 2c mov $0x2c,%cl 2921: 00 00 add %al,(%eax) 2923: 02 23 add (%ebx),%ah 2925: 04 0b add $0xb,%al 2927: 61 popa 2928: 70 69 jo 2993 <.debug_info+0x2993> 292a: 63 5f 69 arpl %bx,0x69(%edi) 292d: 64 fs 292e: 5f pop %edi 292f: 72 65 jb 2996 <.debug_info+0x2996> 2931: 67 69 73 74 65 72 65 addr16 imul $0x64657265,116(%bp,%di),%esi 2938: 64 2939: 00 5c 18 b1 add %bl,0xffffffb1(%eax,%ebx,1) 293d: 2c 00 sub $0x0,%al 293f: 00 02 add %al,(%edx) 2941: 23 08 and (%eax),%ecx 2943: 0b 74 61 72 or 0x72(%ecx),%esi 2947: 67 addr16 2948: 65 gs 2949: 74 5f je 29aa <.debug_info+0x29aa> 294b: 63 70 75 arpl %si,0x75(%eax) 294e: 73 00 jae 2950 <.debug_info+0x2950> 2950: 5c pop %esp 2951: 19 bd 2c 00 00 02 sbb %edi,0x200002c(%ebp) 2957: 23 0c 0b and (%ebx,%ecx,1),%ecx 295a: 69 6e 74 5f 64 65 6c imul $0x6c65645f,0x74(%esi),%ebp 2961: 69 76 65 72 79 5f 6d imul $0x6d5f7972,0x65(%esi),%esi 2968: 6f outsl %ds:(%esi),(%dx) 2969: 64 65 00 5c 1a 7a add %bl,%fs:%gs:0x7a(%edx,%ebx,1) 296f: 00 00 add %al,(%eax) 2971: 00 02 add %al,(%edx) 2973: 23 10 and (%eax),%edx 2975: 0b 69 6e or 0x6e(%ecx),%ebp 2978: 74 5f je 29d9 <.debug_info+0x29d9> 297a: 64 fs 297b: 65 gs 297c: 73 74 jae 29f2 <.debug_info+0x29f2> 297e: 5f pop %edi 297f: 6d insl (%dx),%es:(%edi) 2980: 6f outsl %ds:(%esi),(%dx) 2981: 64 65 00 5c 1b 7a add %bl,%fs:%gs:0x7a(%ebx,%ebx,1) 2987: 00 00 add %al,(%eax) 2989: 00 02 add %al,(%edx) 298b: 23 14 0b and (%ebx,%ecx,1),%edx 298e: 45 inc %ebp 298f: 53 push %ebx 2990: 52 push %edx 2991: 5f pop %edi 2992: 44 inc %esp 2993: 49 dec %ecx 2994: 53 push %ebx 2995: 41 inc %ecx 2996: 42 inc %edx 2997: 4c dec %esp 2998: 45 inc %ebp 2999: 00 5c 1c 7a add %bl,0x7a(%esp,%ebx,1) 299d: 00 00 add %al,(%eax) 299f: 00 02 add %al,(%edx) 29a1: 23 18 and (%eax),%ebx 29a3: 0b 61 70 or 0x70(%ecx),%esp 29a6: 69 63 5f 64 65 73 74 imul $0x74736564,0x5f(%ebx),%esp 29ad: 69 6e 61 74 69 6f 6e imul $0x6e6f6974,0x61(%esi),%ebp 29b4: 5f pop %edi 29b5: 6c insb (%dx),%es:(%edi) 29b6: 6f outsl %ds:(%esi),(%dx) 29b7: 67 69 63 61 6c 00 5c addr16 imul $0x1d5c006c,97(%bp,%di),%esp 29be: 1d 29bf: 7a 00 jp 29c1 <.debug_info+0x29c1> 29c1: 00 00 add %al,(%eax) 29c3: 02 23 add (%ebx),%ah 29c5: 1c 0b sbb $0xb,%al 29c7: 63 68 65 arpl %bp,0x65(%eax) 29ca: 63 6b 5f arpl %bp,0x5f(%ebx) 29cd: 61 popa 29ce: 70 69 jo 2a39 <.debug_info+0x2a39> 29d0: 63 69 64 arpl %bp,0x64(%ecx) 29d3: 5f pop %edi 29d4: 75 73 jne 2a49 <.debug_info+0x2a49> 29d6: 65 64 00 5c 1e d8 add %bl,%fs:%gs:0xffffffd8(%esi,%ebx,1) 29dc: 2c 00 sub $0x0,%al 29de: 00 02 add %al,(%edx) 29e0: 23 20 and (%eax),%esp 29e2: 0b 63 68 or 0x68(%ebx),%esp 29e5: 65 63 6b 5f arpl %bp,%gs:0x5f(%ebx) 29e9: 61 popa 29ea: 70 69 jo 2a55 <.debug_info+0x2a55> 29ec: 63 69 64 arpl %bp,0x64(%ecx) 29ef: 5f pop %edi 29f0: 70 72 jo 2a64 <.debug_info+0x2a64> 29f2: 65 gs 29f3: 73 65 jae 2a5a <.debug_info+0x2a5a> 29f5: 6e outsb %ds:(%esi),(%dx) 29f6: 74 00 je 29f8 <.debug_info+0x29f8> 29f8: 5c pop %esp 29f9: 1f pop %ds 29fa: ee out %al,(%dx) 29fb: 2c 00 sub $0x0,%al 29fd: 00 02 add %al,(%edx) 29ff: 23 24 0b and (%ebx,%ecx,1),%esp 2a02: 6e outsb %ds:(%esi),(%dx) 2a03: 6f outsl %ds:(%esi),(%dx) 2a04: 5f pop %edi 2a05: 62 61 6c bound %esp,0x6c(%ecx) 2a08: 61 popa 2a09: 6e outsb %ds:(%esi),(%dx) 2a0a: 63 65 5f arpl %sp,0x5f(%ebp) 2a0d: 69 72 71 00 5c 20 7a imul $0x7a205c00,0x71(%edx),%esi 2a14: 00 00 add %al,(%eax) 2a16: 00 02 add %al,(%edx) 2a18: 23 28 and (%eax),%ebp 2a1a: 0b 6e 6f or 0x6f(%esi),%ebp 2a1d: 5f pop %edi 2a1e: 69 6f 61 70 69 63 5f imul $0x5f636970,0x61(%edi),%ebp 2a25: 63 68 65 arpl %bp,0x65(%eax) 2a28: 63 6b 00 arpl %bp,0x0(%ebx) 2a2b: 5c pop %esp 2a2c: 21 7a 00 and %edi,0x0(%edx) 2a2f: 00 00 add %al,(%eax) 2a31: 02 23 add (%ebx),%ah 2a33: 2c 0b sub $0xb,%al 2a35: 69 6e 69 74 5f 61 70 imul $0x70615f74,0x69(%esi),%ebp 2a3c: 69 63 5f 6c 64 72 00 imul $0x72646c,0x5f(%ebx),%esp 2a43: 5c pop %esp 2a44: 22 f6 and %dh,%dh 2a46: 2c 00 sub $0x0,%al 2a48: 00 02 add %al,(%edx) 2a4a: 23 30 and (%eax),%esi 2a4c: 0b 69 6f or 0x6f(%ecx),%ebp 2a4f: 61 popa 2a50: 70 69 jo 2abb <.debug_info+0x2abb> 2a52: 63 5f 70 arpl %bx,0x70(%edi) 2a55: 68 79 73 5f 69 push $0x695f7379 2a5a: 64 fs 2a5b: 5f pop %edi 2a5c: 6d insl (%dx),%es:(%edi) 2a5d: 61 popa 2a5e: 70 00 jo 2a60 <.debug_info+0x2a60> 2a60: 5c pop %esp 2a61: 23 0c 2d 00 00 02 23 and 0x23020000(,%ebp,1),%ecx 2a68: 34 0b xor $0xb,%al 2a6a: 63 6c 75 73 arpl %bp,0x73(%ebp,%esi,2) 2a6e: 74 65 je 2ad5 <.debug_info+0x2ad5> 2a70: 72 65 jb 2ad7 <.debug_info+0x2ad7> 2a72: 64 fs 2a73: 5f pop %edi 2a74: 61 popa 2a75: 70 69 jo 2ae0 <.debug_info+0x2ae0> 2a77: 63 5f 63 arpl %bx,0x63(%edi) 2a7a: 68 65 63 6b 00 push $0x6b6365 2a7f: 5c pop %esp 2a80: 25 f6 2c 00 00 and $0x2cf6,%eax 2a85: 02 23 add (%ebx),%ah 2a87: 38 0b cmp %cl,(%ebx) 2a89: 6d insl (%dx),%es:(%edi) 2a8a: 75 6c jne 2af8 <.debug_info+0x2af8> 2a8c: 74 69 je 2af7 <.debug_info+0x2af7> 2a8e: 5f pop %edi 2a8f: 74 69 je 2afa <.debug_info+0x2afa> 2a91: 6d insl (%dx),%es:(%edi) 2a92: 65 gs 2a93: 72 5f jb 2af4 <.debug_info+0x2af4> 2a95: 63 68 65 arpl %bp,0x65(%eax) 2a98: 63 6b 00 arpl %bp,0x0(%ebx) 2a9b: 5c pop %esp 2a9c: 26 es 2a9d: 27 daa 2a9e: 2d 00 00 02 23 sub $0x23020000,%eax 2aa3: 3c 0b cmp $0xb,%al 2aa5: 61 popa 2aa6: 70 69 jo 2b11 <.debug_info+0x2b11> 2aa8: 63 69 64 arpl %bp,0x64(%ecx) 2aab: 5f pop %edi 2aac: 74 6f je 2b1d <.debug_info+0x2b1d> 2aae: 5f pop %edi 2aaf: 6e outsb %ds:(%esi),(%dx) 2ab0: 6f outsl %ds:(%esi),(%dx) 2ab1: 64 65 00 5c 27 3d add %bl,%fs:%gs:0x3d(%edi) 2ab7: 2d 00 00 02 23 sub $0x23020000,%eax 2abc: 40 inc %eax 2abd: 0b 63 70 or 0x70(%ebx),%esp 2ac0: 75 5f jne 2b21 <.debug_info+0x2b21> 2ac2: 74 6f je 2b33 <.debug_info+0x2b33> 2ac4: 5f pop %edi 2ac5: 6c insb (%dx),%es:(%edi) 2ac6: 6f outsl %ds:(%esi),(%dx) 2ac7: 67 69 63 61 6c 5f 61 addr16 imul $0x70615f6c,97(%bp,%di),%esp 2ace: 70 2acf: 69 63 69 64 00 5c 28 imul $0x285c0064,0x69(%ebx),%esp 2ad6: 3d 2d 00 00 02 cmp $0x200002d,%eax 2adb: 23 44 0b 63 and 0x63(%ebx,%ecx,1),%eax 2adf: 70 75 jo 2b56 <.debug_info+0x2b56> 2ae1: 5f pop %edi 2ae2: 70 72 jo 2b56 <.debug_info+0x2b56> 2ae4: 65 gs 2ae5: 73 65 jae 2b4c <.debug_info+0x2b4c> 2ae7: 6e outsb %ds:(%esi),(%dx) 2ae8: 74 5f je 2b49 <.debug_info+0x2b49> 2aea: 74 6f je 2b5b <.debug_info+0x2b5b> 2aec: 5f pop %edi 2aed: 61 popa 2aee: 70 69 jo 2b59 <.debug_info+0x2b59> 2af0: 63 69 64 arpl %bp,0x64(%ecx) 2af3: 00 5c 29 3d add %bl,0x3d(%ecx,%ebp,1) 2af7: 2d 00 00 02 23 sub $0x23020000,%eax 2afc: 48 dec %eax 2afd: 0b 61 70 or 0x70(%ecx),%esp 2b00: 69 63 69 64 5f 74 6f imul $0x6f745f64,0x69(%ebx),%esp 2b07: 5f pop %edi 2b08: 63 70 75 arpl %si,0x75(%eax) 2b0b: 5f pop %edi 2b0c: 70 72 jo 2b80 <.debug_info+0x2b80> 2b0e: 65 gs 2b0f: 73 65 jae 2b76 <.debug_info+0x2b76> 2b11: 6e outsb %ds:(%esi),(%dx) 2b12: 74 00 je 2b14 <.debug_info+0x2b14> 2b14: 5c pop %esp 2b15: 2a 53 2d sub 0x2d(%ebx),%dl 2b18: 00 00 add %al,(%eax) 2b1a: 02 23 add (%ebx),%ah 2b1c: 4c dec %esp 2b1d: 0b 6d 70 or 0x70(%ebp),%ebp 2b20: 63 5f 61 arpl %bx,0x61(%edi) 2b23: 70 69 jo 2b8e <.debug_info+0x2b8e> 2b25: 63 5f 69 arpl %bx,0x69(%edi) 2b28: 64 00 5c 2c 7a add %bl,%fs:0x7a(%esp,%ebp,1) 2b2d: 2d 00 00 02 23 sub $0x23020000,%eax 2b32: 50 push %eax 2b33: 0b 73 65 or 0x65(%ebx),%esi 2b36: 74 75 je 2bad <.debug_info+0x2bad> 2b38: 70 5f jo 2b99 <.debug_info+0x2b99> 2b3a: 70 6f jo 2bab <.debug_info+0x2bab> 2b3c: 72 74 jb 2bb2 <.debug_info+0x2bb2> 2b3e: 69 6f 5f 72 65 6d 61 imul $0x616d6572,0x5f(%edi),%ebp 2b45: 70 00 jo 2b47 <.debug_info+0x2b47> 2b47: 5c pop %esp 2b48: 2d f6 2c 00 00 sub $0x2cf6,%eax 2b4d: 02 23 add (%ebx),%ah 2b4f: 54 push %esp 2b50: 0b 63 68 or 0x68(%ebx),%esp 2b53: 65 63 6b 5f arpl %bp,%gs:0x5f(%ebx) 2b57: 70 68 jo 2bc1 <.debug_info+0x2bc1> 2b59: 79 73 jns 2bce <.debug_info+0x2bce> 2b5b: 5f pop %edi 2b5c: 61 popa 2b5d: 70 69 jo 2bc8 <.debug_info+0x2bc8> 2b5f: 63 69 64 arpl %bp,0x64(%ecx) 2b62: 5f pop %edi 2b63: 70 72 jo 2bd7 <.debug_info+0x2bd7> 2b65: 65 gs 2b66: 73 65 jae 2bcd <.debug_info+0x2bcd> 2b68: 6e outsb %ds:(%esi),(%dx) 2b69: 74 00 je 2b6b <.debug_info+0x2b6b> 2b6b: 5c pop %esp 2b6c: 2e cs 2b6d: 3d 2d 00 00 02 cmp $0x200002d,%eax 2b72: 23 58 0b and 0xb(%eax),%ebx 2b75: 65 6e outsb %gs:(%esi),(%dx) 2b77: 61 popa 2b78: 62 6c 65 5f bound %ebp,0x5f(%ebp) 2b7c: 61 popa 2b7d: 70 69 jo 2be8 <.debug_info+0x2be8> 2b7f: 63 5f 6d arpl %bx,0x6d(%edi) 2b82: 6f outsl %ds:(%esi),(%dx) 2b83: 64 65 00 5c 2f f6 add %bl,%fs:%gs:0xfffffff6(%edi,%ebp,1) 2b89: 2c 00 sub $0x0,%al 2b8b: 00 02 add %al,(%edx) 2b8d: 23 5c 0b 70 and 0x70(%ebx,%ecx,1),%ebx 2b91: 68 79 73 5f 70 push $0x705f7379 2b96: 6b 67 5f 69 imul $0x69,0x5f(%edi),%esp 2b9a: 64 00 5c 30 95 add %bl,%fs:0xffffff95(%eax,%esi,1) 2b9f: 2d 00 00 02 23 sub $0x23020000,%eax 2ba4: 60 pusha 2ba5: 0b 6d 70 or 0x70(%ebp),%ebp 2ba8: 63 5f 6f arpl %bx,0x6f(%edi) 2bab: 65 gs 2bac: 6d insl (%dx),%es:(%edi) 2bad: 5f pop %edi 2bae: 62 75 73 bound %esi,0x73(%ebp) 2bb1: 5f pop %edi 2bb2: 69 6e 66 6f 00 5c 34 imul $0x345c006f,0x66(%esi),%ebp 2bb9: b7 2d mov $0x2d,%bh 2bbb: 00 00 add %al,(%eax) 2bbd: 02 23 add (%ebx),%ah 2bbf: 64 0b 6d 70 or %fs:0x70(%ebp),%ebp 2bc3: 63 5f 6f arpl %bx,0x6f(%edi) 2bc6: 65 gs 2bc7: 6d insl (%dx),%es:(%edi) 2bc8: 5f pop %edi 2bc9: 70 63 jo 2c2e <.debug_info+0x2c2e> 2bcb: 69 5f 62 75 73 00 5c imul $0x5c007375,0x62(%edi),%ebx 2bd2: 36 ss 2bd3: ce into 2bd4: 2d 00 00 02 23 sub $0x23020000,%eax 2bd9: 68 0b 6d 70 73 push $0x73706d0b 2bde: 5f pop %edi 2bdf: 6f outsl %ds:(%esi),(%dx) 2be0: 65 gs 2be1: 6d insl (%dx),%es:(%edi) 2be2: 5f pop %edi 2be3: 63 68 65 arpl %bp,0x65(%eax) 2be6: 63 6b 00 arpl %bp,0x0(%ebx) 2be9: 5c pop %esp 2bea: 3c f4 cmp $0xf4,%al 2bec: 2d 00 00 02 23 sub $0x23020000,%eax 2bf1: 6c insb (%dx),%es:(%edi) 2bf2: 0b 61 63 or 0x63(%ecx),%esp 2bf5: 70 69 jo 2c60 <.debug_info+0x2c60> 2bf7: 5f pop %edi 2bf8: 6d insl (%dx),%es:(%edi) 2bf9: 61 popa 2bfa: 64 fs 2bfb: 74 5f je 2c5c <.debug_info+0x2c5c> 2bfd: 6f outsl %ds:(%esi),(%dx) 2bfe: 65 gs 2bff: 6d insl (%dx),%es:(%edi) 2c00: 5f pop %edi 2c01: 63 68 65 arpl %bp,0x65(%eax) 2c04: 63 6b 00 arpl %bp,0x0(%ebx) 2c07: 5c pop %esp 2c08: 3d 0f 2e 00 00 cmp $0x2e0f,%eax 2c0d: 02 23 add (%ebx),%ah 2c0f: 70 0b jo 2c1c <.debug_info+0x2c1c> 2c11: 67 addr16 2c12: 65 gs 2c13: 74 5f je 2c74 <.debug_info+0x2c74> 2c15: 61 popa 2c16: 70 69 jo 2c81 <.debug_info+0x2c81> 2c18: 63 5f 69 arpl %bx,0x69(%edi) 2c1b: 64 00 5c 3f 25 add %bl,%fs:0x25(%edi,%edi,1) 2c20: 2e 00 00 add %al,%cs:(%eax) 2c23: 02 23 add (%ebx),%ah 2c25: 74 0b je 2c32 <.debug_info+0x2c32> 2c27: 61 popa 2c28: 70 69 jo 2c93 <.debug_info+0x2c93> 2c2a: 63 5f 69 arpl %bx,0x69(%edi) 2c2d: 64 fs 2c2e: 5f pop %edi 2c2f: 6d insl (%dx),%es:(%edi) 2c30: 61 popa 2c31: 73 6b jae 2c9e <.debug_info+0x2c9e> 2c33: 00 5c 40 98 add %bl,0xffffff98(%eax,%eax,2) 2c37: 00 00 add %al,(%eax) 2c39: 00 02 add %al,(%edx) 2c3b: 23 78 0b and 0xb(%eax),%edi 2c3e: 63 70 75 arpl %si,0x75(%eax) 2c41: 5f pop %edi 2c42: 6d insl (%dx),%es:(%edi) 2c43: 61 popa 2c44: 73 6b jae 2cb1 <.debug_info+0x2cb1> 2c46: 5f pop %edi 2c47: 74 6f je 2cb8 <.debug_info+0x2cb8> 2c49: 5f pop %edi 2c4a: 61 popa 2c4b: 70 69 jo 2cb6 <.debug_info+0x2cb6> 2c4d: 63 69 64 arpl %bp,0x64(%ecx) 2c50: 00 5c 41 3b add %bl,0x3b(%ecx,%eax,2) 2c54: 2e 00 00 add %al,%cs:(%eax) 2c57: 02 23 add (%ebx),%ah 2c59: 7c 0b jl 2c66 <.debug_info+0x2c66> 2c5b: 73 65 jae 2cc2 <.debug_info+0x2cc2> 2c5d: 6e outsb %ds:(%esi),(%dx) 2c5e: 64 fs 2c5f: 5f pop %edi 2c60: 49 dec %ecx 2c61: 50 push %eax 2c62: 49 dec %ecx 2c63: 5f pop %edi 2c64: 6d insl (%dx),%es:(%edi) 2c65: 61 popa 2c66: 73 6b jae 2cd3 <.debug_info+0x2cd3> 2c68: 00 5c 44 52 add %bl,0x52(%esp,%eax,2) 2c6c: 2e 00 00 add %al,%cs:(%eax) 2c6f: 03 23 add (%ebx),%esp 2c71: 80 01 0b addb $0xb,(%ecx) 2c74: 73 65 jae 2cdb <.debug_info+0x2cdb> 2c76: 6e outsb %ds:(%esi),(%dx) 2c77: 64 fs 2c78: 5f pop %edi 2c79: 49 dec %ecx 2c7a: 50 push %eax 2c7b: 49 dec %ecx 2c7c: 5f pop %edi 2c7d: 61 popa 2c7e: 6c insb (%dx),%es:(%edi) 2c7f: 6c insb (%dx),%es:(%edi) 2c80: 62 75 74 bound %esi,0x74(%ebp) 2c83: 73 65 jae 2cea <.debug_info+0x2cea> 2c85: 6c insb (%dx),%es:(%edi) 2c86: 66 data16 2c87: 00 5c 45 ad add %bl,0xffffffad(%ebp,%eax,2) 2c8b: 00 00 add %al,(%eax) 2c8d: 00 03 add %al,(%ebx) 2c8f: 23 84 01 0b 73 65 6e and 0x6e65730b(%ecx,%eax,1),%eax 2c96: 64 fs 2c97: 5f pop %edi 2c98: 49 dec %ecx 2c99: 50 push %eax 2c9a: 49 dec %ecx 2c9b: 5f pop %edi 2c9c: 61 popa 2c9d: 6c insb (%dx),%es:(%edi) 2c9e: 6c insb (%dx),%es:(%edi) 2c9f: 00 5c 46 ad add %bl,0xffffffad(%esi,%eax,2) 2ca3: 00 00 add %al,(%eax) 2ca5: 00 03 add %al,(%ebx) 2ca7: 23 88 01 00 21 01 and 0x1210001(%eax),%ecx 2cad: 7a 00 jp 2caf <.debug_info+0x2caf> 2caf: 00 00 add %al,(%eax) 2cb1: 06 push %es 2cb2: 04 ab add $0xab,%al 2cb4: 2c 00 sub $0x0,%al 2cb6: 00 21 add %ah,(%ecx) 2cb8: 01 72 0a add %esi,0xa(%edx) 2cbb: 00 00 add %al,(%eax) 2cbd: 06 push %es 2cbe: 04 b7 add $0xb7,%al 2cc0: 2c 00 sub $0x0,%al 2cc2: 00 0c d8 add %cl,(%eax,%ebx,8) 2cc5: 2c 00 sub $0x0,%al 2cc7: 00 01 add %al,(%ecx) 2cc9: 98 cwtl 2cca: 00 00 add %al,(%eax) 2ccc: 00 08 add %cl,(%eax) 2cce: 22 26 and (%esi),%ah 2cd0: 00 00 add %al,(%eax) 2cd2: 08 7a 00 or %bh,0x0(%edx) 2cd5: 00 00 add %al,(%eax) 2cd7: 00 06 add %al,(%esi) 2cd9: 04 c3 add $0xc3,%al 2cdb: 2c 00 sub $0x0,%al 2cdd: 00 0c ee add %cl,(%esi,%ebp,8) 2ce0: 2c 00 sub $0x0,%al 2ce2: 00 01 add %al,(%ecx) 2ce4: 98 cwtl 2ce5: 00 00 add %al,(%eax) 2ce7: 00 08 add %cl,(%eax) 2ce9: 7a 00 jp 2ceb <.debug_info+0x2ceb> 2ceb: 00 00 add %al,(%eax) 2ced: 00 06 add %al,(%esi) 2cef: 04 de add $0xde,%al 2cf1: 2c 00 sub $0x0,%al 2cf3: 00 22 add %ah,(%edx) 2cf5: 01 06 add %eax,(%esi) 2cf7: 04 f4 add $0xf4,%al 2cf9: 2c 00 sub $0x0,%al 2cfb: 00 0c 0c add %cl,(%esp,%ecx,1) 2cfe: 2d 00 00 01 22 sub $0x22010000,%eax 2d03: 26 00 00 add %al,%es:(%eax) 2d06: 08 22 or %ah,(%edx) 2d08: 26 00 00 add %al,%es:(%eax) 2d0b: 00 06 add %al,(%esi) 2d0d: 04 fc add $0xfc,%al 2d0f: 2c 00 sub $0x0,%al 2d11: 00 0c 27 add %cl,(%edi) 2d14: 2d 00 00 01 7a sub $0x7a010000,%eax 2d19: 00 00 add %al,(%eax) 2d1b: 00 08 add %cl,(%eax) 2d1d: 7a 00 jp 2d1f <.debug_info+0x2d1f> 2d1f: 00 00 add %al,(%eax) 2d21: 08 7a 00 or %bh,0x0(%edx) 2d24: 00 00 add %al,(%eax) 2d26: 00 06 add %al,(%esi) 2d28: 04 12 add $0x12,%al 2d2a: 2d 00 00 0c 3d sub $0x3d0c0000,%eax 2d2f: 2d 00 00 01 7a sub $0x7a010000,%eax 2d34: 00 00 add %al,(%eax) 2d36: 00 08 add %cl,(%eax) 2d38: 7a 00 jp 2d3a <.debug_info+0x2d3a> 2d3a: 00 00 add %al,(%eax) 2d3c: 00 06 add %al,(%esi) 2d3e: 04 2d add $0x2d,%al 2d40: 2d 00 00 0c 53 sub $0x530c0000,%eax 2d45: 2d 00 00 01 22 sub $0x22010000,%eax 2d4a: 26 00 00 add %al,%es:(%eax) 2d4d: 08 7a 00 or %bh,0x0(%edx) 2d50: 00 00 add %al,(%eax) 2d52: 00 06 add %al,(%esi) 2d54: 04 43 add $0x43,%al 2d56: 2d 00 00 0c 6e sub $0x6e0c0000,%eax 2d5b: 2d 00 00 01 7a sub $0x7a010000,%eax 2d60: 00 00 add %al,(%eax) 2d62: 00 08 add %cl,(%eax) 2d64: 6e outsb %ds:(%esi),(%dx) 2d65: 2d 00 00 08 74 sub $0x74080000,%eax 2d6a: 2d 00 00 00 06 sub $0x6000000,%eax 2d6f: 04 c4 add $0xc4,%al 2d71: 23 00 and (%eax),%eax 2d73: 00 06 add %al,(%esi) 2d75: 04 4c add $0x4c,%al 2d77: 25 00 00 06 04 and $0x4060000,%eax 2d7c: 59 pop %ecx 2d7d: 2d 00 00 0c 95 sub $0x950c0000,%eax 2d82: 2d 00 00 01 f1 sub $0xf1010000,%eax 2d87: 02 00 add (%eax),%al 2d89: 00 08 add %cl,(%eax) 2d8b: f1 icebp 2d8c: 02 00 add (%eax),%al 2d8e: 00 08 add %cl,(%eax) 2d90: 7a 00 jp 2d92 <.debug_info+0x2d92> 2d92: 00 00 add %al,(%eax) 2d94: 00 06 add %al,(%esi) 2d96: 04 80 add $0x80,%al 2d98: 2d 00 00 07 b1 sub $0xb1070000,%eax 2d9d: 2d 00 00 01 08 sub $0x8010000,%eax 2da2: b1 2d mov $0x2d,%cl 2da4: 00 00 add %al,(%eax) 2da6: 08 bb 01 00 00 08 or %bh,0x8000001(%ebx) 2dac: 74 2d je 2ddb <.debug_info+0x2ddb> 2dae: 00 00 add %al,(%eax) 2db0: 00 06 add %al,(%esi) 2db2: 04 7c add $0x7c,%al 2db4: 24 00 and $0x0,%al 2db6: 00 06 add %al,(%esi) 2db8: 04 9b add $0x9b,%al 2dba: 2d 00 00 07 ce sub $0xce070000,%eax 2dbf: 2d 00 00 01 08 sub $0x8010000,%eax 2dc4: b1 2d mov $0x2d,%cl 2dc6: 00 00 add %al,(%eax) 2dc8: 08 74 2d 00 or %dh,0x0(%ebp,%ebp,1) 2dcc: 00 00 add %al,(%eax) 2dce: 06 push %es 2dcf: 04 bd add $0xbd,%al 2dd1: 2d 00 00 0c ee sub $0xee0c0000,%eax 2dd6: 2d 00 00 01 7a sub $0x7a010000,%eax 2ddb: 00 00 add %al,(%eax) 2ddd: 00 08 add %cl,(%eax) 2ddf: ee out %al,(%dx) 2de0: 2d 00 00 08 bb sub $0xbb080000,%eax 2de5: 01 00 add %eax,(%eax) 2de7: 00 08 add %cl,(%eax) 2de9: bb 01 00 00 00 mov $0x1,%ebx 2dee: 06 push %es 2def: 04 b1 add $0xb1,%al 2df1: 22 00 and (%eax),%al 2df3: 00 06 add %al,(%esi) 2df5: 04 d4 add $0xd4,%al 2df7: 2d 00 00 0c 0f sub $0xf0c0000,%eax 2dfc: 2e 00 00 add %al,%cs:(%eax) 2dff: 01 7a 00 add %edi,0x0(%edx) 2e02: 00 00 add %al,(%eax) 2e04: 08 bb 01 00 00 08 or %bh,0x8000001(%ebx) 2e0a: bb 01 00 00 00 mov $0x1,%ebx 2e0f: 06 push %es 2e10: 04 fa add $0xfa,%al 2e12: 2d 00 00 0c 25 sub $0x250c0000,%eax 2e17: 2e 00 00 add %al,%cs:(%eax) 2e1a: 01 3b add %edi,(%ebx) 2e1c: 01 00 add %eax,(%eax) 2e1e: 00 08 add %cl,(%eax) 2e20: 98 cwtl 2e21: 00 00 add %al,(%eax) 2e23: 00 00 add %al,(%eax) 2e25: 06 push %es 2e26: 04 15 add $0x15,%al 2e28: 2e 00 00 add %al,%cs:(%eax) 2e2b: 0c 3b or $0x3b,%al 2e2d: 2e 00 00 add %al,%cs:(%eax) 2e30: 01 3b add %edi,(%ebx) 2e32: 01 00 add %eax,(%eax) 2e34: 00 08 add %cl,(%eax) 2e36: 72 0a jb 2e42 <.debug_info+0x2e42> 2e38: 00 00 add %al,(%eax) 2e3a: 00 06 add %al,(%esi) 2e3c: 04 2b add $0x2b,%al 2e3e: 2e 00 00 add %al,%cs:(%eax) 2e41: 07 pop %es 2e42: 52 push %edx 2e43: 2e 00 00 add %al,%cs:(%eax) 2e46: 01 08 add %ecx,(%eax) 2e48: 72 0a jb 2e54 <.debug_info+0x2e54> 2e4a: 00 00 add %al,(%eax) 2e4c: 08 7a 00 or %bh,0x0(%edx) 2e4f: 00 00 add %al,(%eax) 2e51: 00 06 add %al,(%esi) 2e53: 04 41 add $0x41,%al 2e55: 2e 00 00 add %al,%cs:(%eax) 2e58: 0e push %cs 2e59: b1 2e mov $0x2e,%cl 2e5b: 00 00 add %al,(%eax) 2e5d: 73 65 jae 2ec4 <.debug_info+0x2ec4> 2e5f: 6d insl (%dx),%es:(%edi) 2e60: 5f pop %edi 2e61: 75 6e jne 2ed1 <.debug_info+0x2ed1> 2e63: 64 6f outsl %fs:(%esi),(%dx) 2e65: 00 10 add %dl,(%eax) 2e67: 3d 1e 0b 70 72 cmp $0x72700b1e,%eax 2e6c: 6f outsl %ds:(%esi),(%dx) 2e6d: 63 5f 6e arpl %bx,0x6e(%edi) 2e70: 65 gs 2e71: 78 74 js 2ee7 <.debug_info+0x2ee7> 2e73: 00 3d 7a b1 2e 00 add %bh,0x2eb17a 2e79: 00 02 add %al,(%edx) 2e7b: 23 00 and (%eax),%eax 2e7d: 0b 69 64 or 0x64(%ecx),%ebp 2e80: 5f pop %edi 2e81: 6e outsb %ds:(%esi),(%dx) 2e82: 65 gs 2e83: 78 74 js 2ef9 <.debug_info+0x2ef9> 2e85: 00 3d 7b b1 2e 00 add %bh,0x2eb17b 2e8b: 00 02 add %al,(%edx) 2e8d: 23 04 0b and (%ebx,%ecx,1),%eax 2e90: 73 65 jae 2ef7 <.debug_info+0x2ef7> 2e92: 6d insl (%dx),%es:(%edi) 2e93: 69 64 00 3d 7c 7a 00 imul $0x7a7c,0x3d(%eax,%eax,1),%esp 2e9a: 00 2e9b: 00 02 add %al,(%edx) 2e9d: 23 08 and (%eax),%ecx 2e9f: 0b 73 65 or 0x65(%ebx),%esi 2ea2: 6d insl (%dx),%es:(%edi) 2ea3: 61 popa 2ea4: 64 fs 2ea5: 6a 00 push $0x0 2ea7: 3d 7d b7 2e 00 cmp $0x2eb77d,%eax 2eac: 00 02 add %al,(%edx) 2eae: 23 0c 00 and (%eax,%eax,1),%ecx 2eb1: 06 push %es 2eb2: 04 58 add $0x58,%al 2eb4: 2e 00 00 add %al,%cs:(%eax) 2eb7: 06 push %es 2eb8: 04 75 add $0x75,%al 2eba: 02 00 add (%eax),%al 2ebc: 00 0e add %cl,(%esi) 2ebe: 07 pop %es 2ebf: 2f das 2ec0: 00 00 add %al,(%eax) 2ec2: 73 65 jae 2f29 <.debug_info+0x2f29> 2ec4: 6d insl (%dx),%es:(%edi) 2ec5: 5f pop %edi 2ec6: 75 6e jne 2f36 <.debug_info+0x2f36> 2ec8: 64 6f outsl %fs:(%esi),(%dx) 2eca: 5f pop %edi 2ecb: 6c insb (%dx),%es:(%edi) 2ecc: 69 73 74 00 18 3d 83 imul $0x833d1800,0x74(%ebx),%esi 2ed3: 0b 72 65 or 0x65(%edx),%esi 2ed6: 66 data16 2ed7: 63 6e 74 arpl %bp,0x74(%esi) 2eda: 00 3d 84 a1 1f 00 add %bh,0x1fa184 2ee0: 00 02 add %al,(%edx) 2ee2: 23 00 and (%eax),%eax 2ee4: 0f d6 02 (bad) %xmm0,(%edx) 2ee7: 00 00 add %al,(%eax) 2ee9: 3d 85 1e 1f 00 cmp $0x1f1e85,%eax 2eee: 00 02 add %al,(%edx) 2ef0: 23 04 0b and (%ebx,%ecx,1),%eax 2ef3: 70 72 jo 2f67 <.debug_info+0x2f67> 2ef5: 6f outsl %ds:(%esi),(%dx) 2ef6: 63 5f 6c arpl %bx,0x6c(%edi) 2ef9: 69 73 74 00 3d 86 b1 imul $0xb1863d00,0x74(%ebx),%esi 2f00: 2e 00 00 add %al,%cs:(%eax) 2f03: 02 23 add (%ebx),%ah 2f05: 14 00 adc $0x0,%al 2f07: 0e push %cs 2f08: 2d 2f 00 00 73 sub $0x7300002f,%eax 2f0d: 79 73 jns 2f82 <.debug_info+0x2f82> 2f0f: 76 5f jbe 2f70 <.debug_info+0x2f70> 2f11: 73 65 jae 2f78 <.debug_info+0x2f78> 2f13: 6d insl (%dx),%es:(%edi) 2f14: 00 04 3d 89 0b 75 6e add %al,0x6e750b89(,%edi,1) 2f1b: 64 6f outsl %fs:(%esi),(%dx) 2f1d: 5f pop %edi 2f1e: 6c insb (%dx),%es:(%edi) 2f1f: 69 73 74 00 3d 8a 2d imul $0x2d8a3d00,0x74(%ebx),%esi 2f26: 2f das 2f27: 00 00 add %al,(%eax) 2f29: 02 23 add (%ebx),%ah 2f2b: 00 00 add %al,(%eax) 2f2d: 06 push %es 2f2e: 04 bd add $0xbd,%al 2f30: 2e 00 00 add %al,%cs:(%eax) 2f33: 0d 4a 2f 00 00 or $0x2f4a,%eax 2f38: 08 3f or %bh,(%edi) 2f3a: 1a 0b sbb (%ebx),%cl 2f3c: 73 69 jae 2fa7 <.debug_info+0x2fa7> 2f3e: 67 00 3f addr16 add %bh,(%bx) 2f41: 19 6c 24 00 sbb %ebp,0x0(%esp) 2f45: 00 02 add %al,(%edx) 2f47: 23 00 and (%eax),%eax 2f49: 00 09 add %cl,(%ecx) 2f4b: 73 69 jae 2fb6 <.debug_info+0x2fb6> 2f4d: 67 73 65 addr16 jae 2fb5 <.debug_info+0x2fb5> 2f50: 74 5f je 2fb1 <.debug_info+0x2fb1> 2f52: 74 00 je 2f54 <.debug_info+0x2f54> 2f54: 3f aas 2f55: 1a 33 sbb (%ebx),%dh 2f57: 2f das 2f58: 00 00 add %al,(%eax) 2f5a: 09 5f 5f or %ebx,0x5f(%edi) 2f5d: 73 69 jae 2fc8 <.debug_info+0x2fc8> 2f5f: 67 6e addr16 outsb %ds:(%si),(%dx) 2f61: 61 popa 2f62: 6c insb (%dx),%es:(%edi) 2f63: 66 data16 2f64: 6e outsb %ds:(%esi),(%dx) 2f65: 5f pop %edi 2f66: 74 00 je 2f68 <.debug_info+0x2f68> 2f68: 43 inc %ebx 2f69: 11 b3 00 00 00 09 adc %esi,0x9000000(%ebx) 2f6f: 5f pop %edi 2f70: 5f pop %edi 2f71: 73 69 jae 2fdc <.debug_info+0x2fdc> 2f73: 67 68 61 6e 64 6c addr16 push $0x6c646e61 2f79: 65 gs 2f7a: 72 5f jb 2fdb <.debug_info+0x2fdb> 2f7c: 74 00 je 2f7e <.debug_info+0x2f7e> 2f7e: 43 inc %ebx 2f7f: 12 84 2f 00 00 06 04 adc 0x4060000(%edi,%ebp,1),%al 2f86: 5a pop %edx 2f87: 2f das 2f88: 00 00 add %al,(%eax) 2f8a: 09 5f 5f or %ebx,0x5f(%edi) 2f8d: 72 65 jb 2ff4 <.debug_info+0x2ff4> 2f8f: 73 74 jae 3005 <.debug_info+0x3005> 2f91: 6f outsl %ds:(%esi),(%dx) 2f92: 72 65 jb 2ff9 <.debug_info+0x2ff9> 2f94: 66 data16 2f95: 6e outsb %ds:(%esi),(%dx) 2f96: 5f pop %edi 2f97: 74 00 je 2f99 <.debug_info+0x2f99> 2f99: 43 inc %ebx 2f9a: 14 f4 adc $0xf4,%al 2f9c: 2c 00 sub $0x0,%al 2f9e: 00 09 add %cl,(%ecx) 2fa0: 5f pop %edi 2fa1: 5f pop %edi 2fa2: 73 69 jae 300d <.debug_info+0x300d> 2fa4: 67 72 65 addr16 jb 300c <.debug_info+0x300c> 2fa7: 73 74 jae 301d <.debug_info+0x301d> 2fa9: 6f outsl %ds:(%esi),(%dx) 2faa: 72 65 jb 3011 <.debug_info+0x3011> 2fac: 5f pop %edi 2fad: 74 00 je 2faf <.debug_info+0x2faf> 2faf: 43 inc %ebx 2fb0: 15 b5 2f 00 00 adc $0x2fb5,%eax 2fb5: 06 push %es 2fb6: 04 8a add $0x8a,%al 2fb8: 2f das 2fb9: 00 00 add %al,(%eax) 2fbb: 0e push %cs 2fbc: 1e push %ds 2fbd: 30 00 xor %al,(%eax) 2fbf: 00 73 69 add %dh,0x69(%ebx) 2fc2: 67 61 addr16 popa 2fc4: 63 74 69 6f arpl %si,0x6f(%ecx,%ebp,2) 2fc8: 6e outsb %ds:(%esi),(%dx) 2fc9: 00 14 3f add %dl,(%edi,%edi,1) 2fcc: 7b 0b jnp 2fd9 <.debug_info+0x2fd9> 2fce: 73 61 jae 3031 <.debug_info+0x3031> 2fd0: 5f pop %edi 2fd1: 68 61 6e 64 6c push $0x6c646e61 2fd6: 65 gs 2fd7: 72 00 jb 2fd9 <.debug_info+0x2fd9> 2fd9: 3f aas 2fda: 7c 6e jl 304a <.debug_info+0x304a> 2fdc: 2f das 2fdd: 00 00 add %al,(%eax) 2fdf: 02 23 add (%ebx),%ah 2fe1: 00 0b add %cl,(%ebx) 2fe3: 73 61 jae 3046 <.debug_info+0x3046> 2fe5: 5f pop %edi 2fe6: 66 data16 2fe7: 6c insb (%dx),%es:(%edi) 2fe8: 61 popa 2fe9: 67 73 00 addr16 jae 2fec <.debug_info+0x2fec> 2fec: 3f aas 2fed: 7d 98 jge 2f87 <.debug_info+0x2f87> 2fef: 00 00 add %al,(%eax) 2ff1: 00 02 add %al,(%edx) 2ff3: 23 04 0b and (%ebx,%ecx,1),%eax 2ff6: 73 61 jae 3059 <.debug_info+0x3059> 2ff8: 5f pop %edi 2ff9: 72 65 jb 3060 <.debug_info+0x3060> 2ffb: 73 74 jae 3071 <.debug_info+0x3071> 2ffd: 6f outsl %ds:(%esi),(%dx) 2ffe: 72 65 jb 3065 <.debug_info+0x3065> 3000: 72 00 jb 3002 <.debug_info+0x3002> 3002: 3f aas 3003: 7e 9f jle 2fa4 <.debug_info+0x2fa4> 3005: 2f das 3006: 00 00 add %al,(%eax) 3008: 02 23 add (%ebx),%ah 300a: 08 0b or %cl,(%ebx) 300c: 73 61 jae 306f <.debug_info+0x306f> 300e: 5f pop %edi 300f: 6d insl (%dx),%es:(%edi) 3010: 61 popa 3011: 73 6b jae 307e <.debug_info+0x307e> 3013: 00 3f add %bh,(%edi) 3015: 7f 4a jg 3061 <.debug_info+0x3061> 3017: 2f das 3018: 00 00 add %al,(%eax) 301a: 02 23 add (%ebx),%ah 301c: 0c 00 or $0x0,%al 301e: 0e push %cs 301f: 40 inc %eax 3020: 30 00 xor %al,(%eax) 3022: 00 6b 5f add %ch,0x5f(%ebx) 3025: 73 69 jae 3090 <.debug_info+0x3090> 3027: 67 61 addr16 popa 3029: 63 74 69 6f arpl %si,0x6f(%ecx,%ebp,2) 302d: 6e outsb %ds:(%esi),(%dx) 302e: 00 14 3f add %dl,(%edi,%edi,1) 3031: 82 (bad) 3032: 0b 73 61 or 0x61(%ebx),%esi 3035: 00 3f add %bh,(%edi) 3037: 83 bb 2f 00 00 02 23 cmpl $0x23,0x200002f(%ebx) 303e: 00 00 add %al,(%eax) 3040: 23 72 30 and 0x30(%edx),%esi 3043: 00 00 add %al,(%eax) 3045: 73 69 jae 30b0 <.debug_info+0x30b0> 3047: 67 76 61 addr16 jbe 30ab <.debug_info+0x30ab> 304a: 6c insb (%dx),%es:(%edi) 304b: 00 04 47 add %al,(%edi,%eax,2) 304e: 07 pop %es 304f: 24 73 and $0x73,%al 3051: 69 76 61 6c 5f 69 6e imul $0x6e695f6c,0x61(%esi),%esi 3058: 74 00 je 305a <.debug_info+0x305a> 305a: 47 inc %edi 305b: 08 7a 00 or %bh,0x0(%edx) 305e: 00 00 add %al,(%eax) 3060: 24 73 and $0x73,%al 3062: 69 76 61 6c 5f 70 74 imul $0x74705f6c,0x61(%esi),%esi 3069: 72 00 jb 306b <.debug_info+0x306b> 306b: 47 inc %edi 306c: 09 b7 1d 00 00 00 or %esi,0x1d(%edi) 3072: 09 73 69 or %esi,0x69(%ebx) 3075: 67 76 61 addr16 jbe 30d9 <.debug_info+0x30d9> 3078: 6c insb (%dx),%es:(%edi) 3079: 5f pop %edi 307a: 74 00 je 307c <.debug_info+0x307c> 307c: 47 inc %edi 307d: 0a 40 30 or 0x30(%eax),%al 3080: 00 00 add %al,(%eax) 3082: 0d a9 30 00 00 or $0x30a9,%eax 3087: 08 47 34 or %al,0x34(%edi) 308a: 0b 5f 70 or 0x70(%edi),%ebx 308d: 69 64 00 47 32 60 03 imul $0x36032,0x47(%eax,%eax,1),%esp 3094: 00 3095: 00 02 add %al,(%edx) 3097: 23 00 and (%eax),%eax 3099: 0b 5f 75 or 0x75(%edi),%ebx 309c: 69 64 00 47 33 8d 03 imul $0x38d33,0x47(%eax,%eax,1),%esp 30a3: 00 30a4: 00 02 add %al,(%edx) 30a6: 23 04 00 and (%eax,%eax,1),%eax 30a9: 0d 0c 31 00 00 or $0x310c,%eax 30ae: 10 47 3d adc %al,0x3d(%edi) 30b1: 0b 5f 74 or 0x74(%edi),%ebx 30b4: 69 64 00 47 38 6d 03 imul $0x36d38,0x47(%eax,%eax,1),%esp 30bb: 00 30bc: 00 02 add %al,(%edx) 30be: 23 00 and (%eax),%eax 30c0: 0b 5f 6f or 0x6f(%edi),%ebx 30c3: 76 65 jbe 312a <.debug_info+0x312a> 30c5: 72 72 jb 3139 <.debug_info+0x3139> 30c7: 75 6e jne 3137 <.debug_info+0x3137> 30c9: 00 47 39 add %al,0x39(%edi) 30cc: 7a 00 jp 30ce <.debug_info+0x30ce> 30ce: 00 00 add %al,(%eax) 30d0: 02 23 add (%ebx),%ah 30d2: 04 0b add $0xb,%al 30d4: 5f pop %edi 30d5: 70 61 jo 3138 <.debug_info+0x3138> 30d7: 64 00 47 3a add %al,%fs:0x3a(%edi) 30db: 0c 31 or $0x31,%al 30dd: 00 00 add %al,(%eax) 30df: 02 23 add (%ebx),%ah 30e1: 08 0b or %cl,(%ebx) 30e3: 5f pop %edi 30e4: 73 69 jae 314f <.debug_info+0x314f> 30e6: 67 76 61 addr16 jbe 314a <.debug_info+0x314a> 30e9: 6c insb (%dx),%es:(%edi) 30ea: 00 47 3b add %al,0x3b(%edi) 30ed: 72 30 jb 311f <.debug_info+0x311f> 30ef: 00 00 add %al,(%eax) 30f1: 02 23 add (%ebx),%ah 30f3: 08 0b or %cl,(%ebx) 30f5: 5f pop %edi 30f6: 73 79 jae 3171 <.debug_info+0x3171> 30f8: 73 5f jae 3159 <.debug_info+0x3159> 30fa: 70 72 jo 316e <.debug_info+0x316e> 30fc: 69 76 61 74 65 00 47 imul $0x47006574,0x61(%esi),%esi 3103: 3c 7a cmp $0x7a,%al 3105: 00 00 add %al,(%eax) 3107: 00 02 add %al,(%edx) 3109: 23 0c 00 and (%eax,%eax,1),%ecx 310c: 03 1b add (%ebx),%ebx 310e: 31 00 xor %eax,(%eax) 3110: 00 c1 add %al,%cl 3112: 01 00 add %eax,(%eax) 3114: 00 1c 91 add %bl,(%ecx,%edx,4) 3117: 00 00 add %al,(%eax) 3119: 00 00 add %al,(%eax) 311b: 0d 54 31 00 00 or $0x3154,%eax 3120: 0c 47 or $0x47,%al 3122: 44 inc %esp 3123: 0b 5f 70 or 0x70(%edi),%ebx 3126: 69 64 00 47 41 60 03 imul $0x36041,0x47(%eax,%eax,1),%esp 312d: 00 312e: 00 02 add %al,(%edx) 3130: 23 00 and (%eax),%eax 3132: 0b 5f 75 or 0x75(%edi),%ebx 3135: 69 64 00 47 42 8d 03 imul $0x38d42,0x47(%eax,%eax,1),%esp 313c: 00 313d: 00 02 add %al,(%edx) 313f: 23 04 0b and (%ebx,%ecx,1),%eax 3142: 5f pop %edi 3143: 73 69 jae 31ae <.debug_info+0x31ae> 3145: 67 76 61 addr16 jbe 31a9 <.debug_info+0x31a9> 3148: 6c insb (%dx),%es:(%edi) 3149: 00 47 43 add %al,0x43(%edi) 314c: 72 30 jb 317e <.debug_info+0x317e> 314e: 00 00 add %al,(%eax) 3150: 02 23 add (%ebx),%ah 3152: 08 00 or %al,(%eax) 3154: 0d af 31 00 00 or $0x31af,%eax 3159: 14 47 adc $0x47,%al 315b: 4d dec %ebp 315c: 0b 5f 70 or 0x70(%edi),%ebx 315f: 69 64 00 47 48 60 03 imul $0x36048,0x47(%eax,%eax,1),%esp 3166: 00 3167: 00 02 add %al,(%edx) 3169: 23 00 and (%eax),%eax 316b: 0b 5f 75 or 0x75(%edi),%ebx 316e: 69 64 00 47 49 8d 03 imul $0x38d49,0x47(%eax,%eax,1),%esp 3175: 00 3176: 00 02 add %al,(%edx) 3178: 23 04 0b and (%ebx,%ecx,1),%eax 317b: 5f pop %edi 317c: 73 74 jae 31f2 <.debug_info+0x31f2> 317e: 61 popa 317f: 74 75 je 31f6 <.debug_info+0x31f6> 3181: 73 00 jae 3183 <.debug_info+0x3183> 3183: 47 inc %edi 3184: 4a dec %edx 3185: 7a 00 jp 3187 <.debug_info+0x3187> 3187: 00 00 add %al,(%eax) 3189: 02 23 add (%ebx),%ah 318b: 08 0b or %cl,(%ebx) 318d: 5f pop %edi 318e: 75 74 jne 3204 <.debug_info+0x3204> 3190: 69 6d 65 00 47 4b e0 imul $0xe04b4700,0x65(%ebp),%ebp 3197: 03 00 add (%eax),%eax 3199: 00 02 add %al,(%edx) 319b: 23 0c 0b and (%ebx,%ecx,1),%ecx 319e: 5f pop %edi 319f: 73 74 jae 3215 <.debug_info+0x3215> 31a1: 69 6d 65 00 47 4c e0 imul $0xe04c4700,0x65(%ebp),%ebp 31a8: 03 00 add (%eax),%eax 31aa: 00 02 add %al,(%edx) 31ac: 23 10 and (%eax),%edx 31ae: 00 0d c8 31 00 00 add %cl,0x31c8 31b4: 04 47 add $0x47,%al 31b6: 55 push %ebp 31b7: 0b 5f 61 or 0x61(%edi),%ebx 31ba: 64 fs 31bb: 64 fs 31bc: 72 00 jb 31be <.debug_info+0x31be> 31be: 47 inc %edi 31bf: 51 push %ecx 31c0: b7 1d mov $0x1d,%bh 31c2: 00 00 add %al,(%eax) 31c4: 02 23 add (%ebx),%ah 31c6: 00 00 add %al,(%eax) 31c8: 0d ef 31 00 00 or $0x31ef,%eax 31cd: 08 47 5b or %al,0x5b(%edi) 31d0: 0b 5f 62 or 0x62(%edi),%ebx 31d3: 61 popa 31d4: 6e outsb %ds:(%esi),(%dx) 31d5: 64 00 47 59 add %al,%fs:0x59(%edi) 31d9: 02 01 add (%ecx),%al 31db: 00 00 add %al,(%eax) 31dd: 02 23 add (%ebx),%ah 31df: 00 0b add %cl,(%ebx) 31e1: 5f pop %edi 31e2: 66 data16 31e3: 64 00 47 5a add %al,%fs:0x5a(%edi) 31e7: 7a 00 jp 31e9 <.debug_info+0x31e9> 31e9: 00 00 add %al,(%eax) 31eb: 02 23 add (%ebx),%ah 31ed: 04 00 add $0x0,%al 31ef: 25 5b 32 00 00 and $0x325b,%eax 31f4: 74 47 je 323d <.debug_info+0x323d> 31f6: 5c pop %esp 31f7: 24 5f and $0x5f,%al 31f9: 70 61 jo 325c <.debug_info+0x325c> 31fb: 64 00 47 2e add %al,%fs:0x2e(%edi) 31ff: 5b pop %ebx 3200: 32 00 xor (%eax),%al 3202: 00 24 5f add %ah,(%edi,%ebx,2) 3205: 6b 69 6c 6c imul $0x6c,0x6c(%ecx),%ebp 3209: 00 47 34 add %al,0x34(%edi) 320c: 82 (bad) 320d: 30 00 xor %al,(%eax) 320f: 00 24 5f add %ah,(%edi,%ebx,2) 3212: 74 69 je 327d <.debug_info+0x327d> 3214: 6d insl (%dx),%es:(%edi) 3215: 65 gs 3216: 72 00 jb 3218 <.debug_info+0x3218> 3218: 47 inc %edi 3219: 3d a9 30 00 00 cmp $0x30a9,%eax 321e: 24 5f and $0x5f,%al 3220: 72 74 jb 3296 <.debug_info+0x3296> 3222: 00 47 44 add %al,0x44(%edi) 3225: 1b 31 sbb (%ecx),%esi 3227: 00 00 add %al,(%eax) 3229: 24 5f and $0x5f,%al 322b: 73 69 jae 3296 <.debug_info+0x3296> 322d: 67 63 68 6c addr16 arpl %bp,108(%bx,%si) 3231: 64 00 47 4d add %al,%fs:0x4d(%edi) 3235: 54 push %esp 3236: 31 00 xor %eax,(%eax) 3238: 00 24 5f add %ah,(%edi,%ebx,2) 323b: 73 69 jae 32a6 <.debug_info+0x32a6> 323d: 67 66 61 addr16 popaw 3240: 75 6c jne 32ae <.debug_info+0x32ae> 3242: 74 00 je 3244 <.debug_info+0x3244> 3244: 47 inc %edi 3245: 55 push %ebp 3246: af scas %es:(%edi),%eax 3247: 31 00 xor %eax,(%eax) 3249: 00 24 5f add %ah,(%edi,%ebx,2) 324c: 73 69 jae 32b7 <.debug_info+0x32b7> 324e: 67 70 6f addr16 jo 32c0 <.debug_info+0x32c0> 3251: 6c insb (%dx),%es:(%edi) 3252: 6c insb (%dx),%es:(%edi) 3253: 00 47 5b add %al,0x5b(%edi) 3256: c8 31 00 00 enter $0x31,$0x0 325a: 00 03 add %al,(%ebx) 325c: 6b 32 00 imul $0x0,(%edx),%esi 325f: 00 7a 00 add %bh,0x0(%edx) 3262: 00 00 add %al,(%eax) 3264: 04 91 add $0x91,%al 3266: 00 00 add %al,(%eax) 3268: 00 1c 00 add %bl,(%eax,%eax,1) 326b: 0e push %cs 326c: c8 32 00 00 enter $0x32,$0x0 3270: 73 69 jae 32db <.debug_info+0x32db> 3272: 67 69 6e 66 6f 00 80 addr16 imul $0x3f80006f,102(%bp),%ebp 3279: 3f 327a: 09 0b or %ecx,(%ebx) 327c: 73 69 jae 32e7 <.debug_info+0x32e7> 327e: 5f pop %edi 327f: 73 69 jae 32ea <.debug_info+0x32ea> 3281: 67 6e addr16 outsb %ds:(%si),(%dx) 3283: 6f outsl %ds:(%esi),(%dx) 3284: 00 47 29 add %al,0x29(%edi) 3287: 7a 00 jp 3289 <.debug_info+0x3289> 3289: 00 00 add %al,(%eax) 328b: 02 23 add (%ebx),%ah 328d: 00 0b add %cl,(%ebx) 328f: 73 69 jae 32fa <.debug_info+0x32fa> 3291: 5f pop %edi 3292: 65 gs 3293: 72 72 jb 3307 <.debug_info+0x3307> 3295: 6e outsb %ds:(%esi),(%dx) 3296: 6f outsl %ds:(%esi),(%dx) 3297: 00 47 2a add %al,0x2a(%edi) 329a: 7a 00 jp 329c <.debug_info+0x329c> 329c: 00 00 add %al,(%eax) 329e: 02 23 add (%ebx),%ah 32a0: 04 0b add $0xb,%al 32a2: 73 69 jae 330d <.debug_info+0x330d> 32a4: 5f pop %edi 32a5: 63 6f 64 arpl %bp,0x64(%edi) 32a8: 65 00 47 2b add %al,%gs:0x2b(%edi) 32ac: 7a 00 jp 32ae <.debug_info+0x32ae> 32ae: 00 00 add %al,(%eax) 32b0: 02 23 add (%ebx),%ah 32b2: 08 0b or %cl,(%ebx) 32b4: 5f pop %edi 32b5: 73 69 jae 3320 <.debug_info+0x3320> 32b7: 66 69 65 6c 64 73 imul $0x7364,0x6c(%ebp),%sp 32bd: 00 47 5c add %al,0x5c(%edi) 32c0: ef out %eax,(%dx) 32c1: 31 00 xor %eax,(%eax) 32c3: 00 02 add %al,(%edx) 32c5: 23 0c 00 and (%eax,%eax,1),%ecx 32c8: 09 73 69 or %esi,0x69(%ebx) 32cb: 67 69 6e 66 6f 5f 74 addr16 imul $0x745f6f,102(%bp),%ebp 32d2: 00 32d3: 47 inc %edi 32d4: 5d pop %ebp 32d5: 6b 32 00 imul $0x0,(%edx),%esi 32d8: 00 0e add %cl,(%esi) 32da: d4 33 aam $0x33 32dc: 00 00 add %al,(%eax) 32de: 75 73 jne 3353 <.debug_info+0x3353> 32e0: 65 gs 32e1: 72 5f jb 3342 <.debug_info+0x3342> 32e3: 73 74 jae 3359 <.debug_info+0x3359> 32e5: 72 75 jb 335c <.debug_info+0x335c> 32e7: 63 74 00 34 arpl %si,0x34(%eax,%eax,1) 32eb: 3c 13 cmp $0x13,%al 32ed: 12 5f 5f adc 0x5f(%edi),%bl 32f0: 63 6f 75 arpl %bp,0x75(%edi) 32f3: 6e outsb %ds:(%esi),(%dx) 32f4: 74 00 je 32f6 <.debug_info+0x32f6> 32f6: 15 02 02 a1 1f adc $0x1fa10202,%eax 32fb: 00 00 add %al,(%eax) 32fd: 02 23 add (%ebx),%ah 32ff: 00 12 add %dl,(%edx) 3301: 70 72 jo 3375 <.debug_info+0x3375> 3303: 6f outsl %ds:(%esi),(%dx) 3304: 63 65 73 arpl %sp,0x73(%ebp) 3307: 73 65 jae 336e <.debug_info+0x336e> 3309: 73 00 jae 330b <.debug_info+0x330b> 330b: 15 03 02 a1 1f adc $0x1fa10203,%eax 3310: 00 00 add %al,(%eax) 3312: 02 23 add (%ebx),%ah 3314: 04 12 add $0x12,%al 3316: 66 69 6c 65 73 00 15 imul $0x1500,0x73(%ebp),%bp 331d: 04 02 add $0x2,%al 331f: a1 1f 00 00 02 mov 0x200001f,%eax 3324: 23 08 and (%eax),%ecx 3326: 13 58 01 adc 0x1(%eax),%ebx 3329: 00 00 add %al,(%eax) 332b: 15 05 02 a1 1f adc $0x1fa10205,%eax 3330: 00 00 add %al,(%eax) 3332: 02 23 add (%ebx),%ah 3334: 0c 13 or $0x13,%al 3336: a3 00 00 00 15 mov %eax,0x15000000 333b: 07 pop %es 333c: 02 a1 1f 00 00 02 add 0x200001f(%ecx),%ah 3342: 23 10 and (%eax),%edx 3344: 12 69 6e adc 0x6e(%ecx),%ch 3347: 6f outsl %ds:(%esi),(%dx) 3348: 74 69 je 33b3 <.debug_info+0x33b3> 334a: 66 data16 334b: 79 5f jns 33ac <.debug_info+0x33ac> 334d: 64 fs 334e: 65 gs 334f: 76 73 jbe 33c4 <.debug_info+0x33c4> 3351: 00 15 08 02 a1 1f add %dl,0x1fa10208 3357: 00 00 add %al,(%eax) 3359: 02 23 add (%ebx),%ah 335b: 14 12 adc $0x12,%al 335d: 6d insl (%dx),%es:(%edi) 335e: 71 5f jno 33bf <.debug_info+0x33bf> 3360: 62 79 74 bound %edi,0x74(%ecx) 3363: 65 gs 3364: 73 00 jae 3366 <.debug_info+0x3366> 3366: 15 0b 02 98 00 adc $0x98020b,%eax 336b: 00 00 add %al,(%eax) 336d: 02 23 add (%ebx),%ah 336f: 18 12 sbb %dl,(%edx) 3371: 6c insb (%dx),%es:(%edi) 3372: 6f outsl %ds:(%esi),(%dx) 3373: 63 6b 65 arpl %bp,0x65(%ebx) 3376: 64 fs 3377: 5f pop %edi 3378: 73 68 jae 33e2 <.debug_info+0x33e2> 337a: 6d insl (%dx),%es:(%edi) 337b: 00 15 0c 02 98 00 add %dl,0x98020c 3381: 00 00 add %al,(%eax) 3383: 02 23 add (%ebx),%ah 3385: 1c 12 sbb $0x12,%al 3387: 75 69 jne 33f2 <.debug_info+0x33f2> 3389: 64 fs 338a: 5f pop %edi 338b: 6b 65 79 72 imul $0x72,0x79(%ebp),%esp 338f: 69 6e 67 00 15 0f 02 imul $0x20f1500,0x67(%esi),%ebp 3396: ae scas %es:(%edi),%al 3397: 53 push %ebx 3398: 00 00 add %al,(%eax) 339a: 02 23 add (%ebx),%ah 339c: 20 13 and %dl,(%ebx) 339e: 40 inc %eax 339f: 01 00 add %eax,(%eax) 33a1: 00 15 10 02 ae 53 add %dl,0x53ae0210 33a7: 00 00 add %al,(%eax) 33a9: 02 23 add (%ebx),%ah 33ab: 24 12 and $0x12,%al 33ad: 75 69 jne 3418 <.debug_info+0x3418> 33af: 64 fs 33b0: 68 61 73 68 5f push $0x5f687361 33b5: 6c insb (%dx),%es:(%edi) 33b6: 69 73 74 00 15 14 02 imul $0x2141500,0x74(%ebx),%esi 33bd: c8 1d 00 00 enter $0x1d,$0x0 33c1: 02 23 add (%ebx),%ah 33c3: 28 12 sub %dl,(%edx) 33c5: 75 69 jne 3430 <.debug_info+0x3430> 33c7: 64 00 15 15 02 8d 03 add %dl,%fs:0x38d0215 33ce: 00 00 add %al,(%eax) 33d0: 02 23 add (%ebx),%ah 33d2: 30 00 xor %al,(%eax) 33d4: 06 push %es 33d5: 04 d9 add $0xd9,%al 33d7: 32 00 xor (%eax),%al 33d9: 00 0a add %cl,(%edx) 33db: 06 push %es 33dc: 34 00 xor $0x0,%al 33de: 00 58 01 add %bl,0x1(%eax) 33e1: 00 00 add %al,(%eax) 33e3: 10 3c 19 adc %bh,(%ecx,%ebx,1) 33e6: 0f 42 02 cmovb (%edx),%eax 33e9: 00 00 add %al,(%eax) 33eb: 3c 1a cmp $0x1a,%al 33ed: c8 1d 00 00 enter $0x1d,$0x0 33f1: 02 23 add (%ebx),%ah 33f3: 00 0b add %cl,(%ebx) 33f5: 73 69 jae 3460 <.debug_info+0x3460> 33f7: 67 6e addr16 outsb %ds:(%si),(%dx) 33f9: 61 popa 33fa: 6c insb (%dx),%es:(%edi) 33fb: 00 3c 1b add %bh,(%ebx,%ebx,1) 33fe: 4a dec %edx 33ff: 2f das 3400: 00 00 add %al,(%eax) 3402: 02 23 add (%ebx),%ah 3404: 08 00 or %al,(%eax) 3406: 0e push %cs 3407: ac lods %ds:(%esi),%al 3408: 34 00 xor $0x0,%al 340a: 00 66 73 add %ah,0x73(%esi) 340d: 5f pop %edi 340e: 73 74 jae 3484 <.debug_info+0x3484> 3410: 72 75 jb 3487 <.debug_info+0x3487> 3412: 63 74 00 30 arpl %si,0x30(%eax,%eax,1) 3416: 1f pop %ds 3417: 07 pop %es 3418: 0f e7 01 movntq %mm0,(%ecx) 341b: 00 00 add %al,(%eax) 341d: 1f pop %ds 341e: 08 a1 1f 00 00 02 or %ah,0x200001f(%ecx) 3424: 23 00 and (%eax),%eax 3426: 0f d6 02 (bad) %xmm0,(%edx) 3429: 00 00 add %al,(%eax) 342b: 1f pop %ds 342c: 09 71 1f or %esi,0x1f(%ecx) 342f: 00 00 add %al,(%eax) 3431: 02 23 add (%ebx),%ah 3433: 04 0b add $0xb,%al 3435: 75 6d jne 34a4 <.debug_info+0x34a4> 3437: 61 popa 3438: 73 6b jae 34a5 <.debug_info+0x34a5> 343a: 00 1f add %bl,(%edi) 343c: 0a 7a 00 or 0x0(%edx),%bh 343f: 00 00 add %al,(%eax) 3441: 02 23 add (%ebx),%ah 3443: 14 0b adc $0xb,%al 3445: 72 6f jb 34b6 <.debug_info+0x34b6> 3447: 6f outsl %ds:(%esi),(%dx) 3448: 74 00 je 344a <.debug_info+0x344a> 344a: 1f pop %ds 344b: 0b f7 or %edi,%esi 344d: 35 00 00 02 23 xor $0x23020000,%eax 3452: 18 0b sbb %cl,(%ebx) 3454: 70 77 jo 34cd <.debug_info+0x34cd> 3456: 64 00 1f add %bl,%fs:(%edi) 3459: 0b f7 or %edi,%esi 345b: 35 00 00 02 23 xor $0x23020000,%eax 3460: 1c 0b sbb $0xb,%al 3462: 61 popa 3463: 6c insb (%dx),%es:(%edi) 3464: 74 72 je 34d8 <.debug_info+0x34d8> 3466: 6f outsl %ds:(%esi),(%dx) 3467: 6f outsl %ds:(%esi),(%dx) 3468: 74 00 je 346a <.debug_info+0x346a> 346a: 1f pop %ds 346b: 0b f7 or %edi,%esi 346d: 35 00 00 02 23 xor $0x23020000,%eax 3472: 20 0b and %cl,(%ebx) 3474: 72 6f jb 34e5 <.debug_info+0x34e5> 3476: 6f outsl %ds:(%esi),(%dx) 3477: 74 6d je 34e6 <.debug_info+0x34e6> 3479: 6e outsb %ds:(%esi),(%dx) 347a: 74 00 je 347c <.debug_info+0x347c> 347c: 1f pop %ds 347d: 0c 08 or $0x8,%al 347f: 36 00 00 add %al,%ss:(%eax) 3482: 02 23 add (%ebx),%ah 3484: 24 0b and $0xb,%al 3486: 70 77 jo 34ff <.debug_info+0x34ff> 3488: 64 fs 3489: 6d insl (%dx),%es:(%edi) 348a: 6e outsb %ds:(%esi),(%dx) 348b: 74 00 je 348d <.debug_info+0x348d> 348d: 1f pop %ds 348e: 0c 08 or $0x8,%al 3490: 36 00 00 add %al,%ss:(%eax) 3493: 02 23 add (%ebx),%ah 3495: 28 0b sub %cl,(%ebx) 3497: 61 popa 3498: 6c insb (%dx),%es:(%edi) 3499: 74 72 je 350d <.debug_info+0x350d> 349b: 6f outsl %ds:(%esi),(%dx) 349c: 6f outsl %ds:(%esi),(%dx) 349d: 74 6d je 350c <.debug_info+0x350c> 349f: 6e outsb %ds:(%esi),(%dx) 34a0: 74 00 je 34a2 <.debug_info+0x34a2> 34a2: 1f pop %ds 34a3: 0c 08 or $0x8,%al 34a5: 36 00 00 add %al,%ss:(%eax) 34a8: 02 23 add (%ebx),%ah 34aa: 2c 00 sub $0x0,%al 34ac: 0e push %cs 34ad: f7 35 00 00 64 65 divl 0x65640000 34b3: 6e outsb %ds:(%esi),(%dx) 34b4: 74 72 je 3528 <.debug_info+0x3528> 34b6: 79 00 jns 34b8 <.debug_info+0x34b8> 34b8: 90 nop 34b9: 1f pop %ds 34ba: 04 0b add $0xb,%al 34bc: 64 fs 34bd: 5f pop %edi 34be: 63 6f 75 arpl %bp,0x75(%edi) 34c1: 6e outsb %ds:(%esi),(%dx) 34c2: 74 00 je 34c4 <.debug_info+0x34c4> 34c4: 09 53 a1 or %edx,0xffffffa1(%ebx) 34c7: 1f pop %ds 34c8: 00 00 add %al,(%eax) 34ca: 02 23 add (%ebx),%ah 34cc: 00 0b add %cl,(%ebx) 34ce: 64 fs 34cf: 5f pop %edi 34d0: 66 data16 34d1: 6c insb (%dx),%es:(%edi) 34d2: 61 popa 34d3: 67 73 00 addr16 jae 34d6 <.debug_info+0x34d6> 34d6: 09 54 3b 01 or %edx,0x1(%ebx,%edi,1) 34da: 00 00 add %al,(%eax) 34dc: 02 23 add (%ebx),%ah 34de: 04 0b add $0xb,%al 34e0: 64 fs 34e1: 5f pop %edi 34e2: 6c insb (%dx),%es:(%edi) 34e3: 6f outsl %ds:(%esi),(%dx) 34e4: 63 6b 00 arpl %bp,0x0(%ebx) 34e7: 09 55 1e or %edx,0x1e(%ebp) 34ea: 1f pop %ds 34eb: 00 00 add %al,(%eax) 34ed: 02 23 add (%ebx),%ah 34ef: 08 0b or %cl,(%ebx) 34f1: 64 fs 34f2: 5f pop %edi 34f3: 69 6e 6f 64 65 00 09 imul $0x9006564,0x6f(%esi),%ebp 34fa: 56 push %esi 34fb: 54 push %esp 34fc: 68 00 00 02 23 push $0x23020000 3501: 18 0b sbb %cl,(%ebx) 3503: 64 fs 3504: 5f pop %edi 3505: 68 61 73 68 00 push $0x687361 350a: 09 5c 24 1e or %ebx,0x1e(%esp) 350e: 00 00 add %al,(%eax) 3510: 02 23 add (%ebx),%ah 3512: 1c 0b sbb $0xb,%al 3514: 64 fs 3515: 5f pop %edi 3516: 70 61 jo 3579 <.debug_info+0x3579> 3518: 72 65 jb 357f <.debug_info+0x357f> 351a: 6e outsb %ds:(%esi),(%dx) 351b: 74 00 je 351d <.debug_info+0x351d> 351d: 09 5d f7 or %ebx,0xfffffff7(%ebp) 3520: 35 00 00 02 23 xor $0x23020000,%eax 3525: 24 0b and $0xb,%al 3527: 64 fs 3528: 5f pop %edi 3529: 6e outsb %ds:(%esi),(%dx) 352a: 61 popa 352b: 6d insl (%dx),%es:(%edi) 352c: 65 00 09 add %cl,%gs:(%ecx) 352f: 5e pop %esi 3530: 2a 64 00 00 sub 0x0(%eax,%eax,1),%ah 3534: 02 23 add (%ebx),%ah 3536: 28 0b sub %cl,(%ebx) 3538: 64 fs 3539: 5f pop %edi 353a: 6c insb (%dx),%es:(%edi) 353b: 72 75 jb 35b2 <.debug_info+0x35b2> 353d: 00 09 add %cl,(%ecx) 353f: 60 pusha 3540: c8 1d 00 00 enter $0x1d,$0x0 3544: 02 23 add (%ebx),%ah 3546: 34 0b xor $0xb,%al 3548: 64 fs 3549: 5f pop %edi 354a: 75 00 jne 354c <.debug_info+0x354c> 354c: 09 67 6e or %esp,0x6e(%edi) 354f: 64 00 00 add %al,%fs:(%eax) 3552: 02 23 add (%ebx),%ah 3554: 3c 0b cmp $0xb,%al 3556: 64 fs 3557: 5f pop %edi 3558: 73 75 jae 35cf <.debug_info+0x35cf> 355a: 62 64 69 72 bound %esp,0x72(%ecx,%ebp,2) 355e: 73 00 jae 3560 <.debug_info+0x3560> 3560: 09 68 c8 or %ebp,0xffffffc8(%eax) 3563: 1d 00 00 02 23 sbb $0x23020000,%eax 3568: 44 inc %esp 3569: 0b 64 5f 61 or 0x61(%edi,%ebx,2),%esp 356d: 6c insb (%dx),%es:(%edi) 356e: 69 61 73 00 09 69 c8 imul $0xc8690900,0x73(%ecx),%esp 3575: 1d 00 00 02 23 sbb $0x23020000,%eax 357a: 4c dec %esp 357b: 0b 64 5f 74 or 0x74(%edi,%ebx,2),%esp 357f: 69 6d 65 00 09 6a 98 imul $0x986a0900,0x65(%ebp),%ebp 3586: 00 00 add %al,(%eax) 3588: 00 02 add %al,(%edx) 358a: 23 54 0b 64 and 0x64(%ebx,%ecx,1),%edx 358e: 5f pop %edi 358f: 6f outsl %ds:(%esi),(%dx) 3590: 70 00 jo 3592 <.debug_info+0x3592> 3592: 09 6b e9 or %ebp,0xffffffe9(%ebx) 3595: 68 00 00 02 23 push $0x23020000 359a: 58 pop %eax 359b: 0b 64 5f 73 or 0x73(%edi,%ebx,2),%esp 359f: 62 00 bound %eax,(%eax) 35a1: 09 6c f1 6b or %ebp,0x6b(%ecx,%esi,8) 35a5: 00 00 add %al,(%eax) 35a7: 02 23 add (%ebx),%ah 35a9: 5c pop %esp 35aa: 0b 64 5f 66 or 0x66(%edi,%ebx,2),%esp 35ae: 73 64 jae 3614 <.debug_info+0x3614> 35b0: 61 popa 35b1: 74 61 je 3614 <.debug_info+0x3614> 35b3: 00 09 add %cl,(%ecx) 35b5: 6d insl (%dx),%es:(%edi) 35b6: b7 1d mov $0x1d,%bh 35b8: 00 00 add %al,(%eax) 35ba: 02 23 add (%ebx),%ah 35bc: 60 pusha 35bd: 0b 64 5f 63 or 0x63(%edi,%ebx,2),%esp 35c1: 6f outsl %ds:(%esi),(%dx) 35c2: 6f outsl %ds:(%esi),(%dx) 35c3: 6b 69 65 00 imul $0x0,0x65(%ecx),%ebp 35c7: 09 6f 08 or %ebp,0x8(%edi) 35ca: 6c insb (%dx),%es:(%edi) 35cb: 00 00 add %al,(%eax) 35cd: 02 23 add (%ebx),%ah 35cf: 64 0b 64 5f 6d or %fs:0x6d(%edi,%ebx,2),%esp 35d4: 6f outsl %ds:(%esi),(%dx) 35d5: 75 6e jne 3645 <.debug_info+0x3645> 35d7: 74 65 je 363e <.debug_info+0x363e> 35d9: 64 00 09 add %cl,%fs:(%ecx) 35dc: 71 7a jno 3658 <.debug_info+0x3658> 35de: 00 00 add %al,(%eax) 35e0: 00 02 add %al,(%edx) 35e2: 23 68 0b and 0xb(%eax),%ebp 35e5: 64 fs 35e6: 5f pop %edi 35e7: 69 6e 61 6d 65 00 09 imul $0x900656d,0x61(%esi),%ebp 35ee: 72 0e jb 35fe <.debug_info+0x35fe> 35f0: 6c insb (%dx),%es:(%edi) 35f1: 00 00 add %al,(%eax) 35f3: 02 23 add (%ebx),%ah 35f5: 6c insb (%dx),%es:(%edi) 35f6: 00 06 add %al,(%esi) 35f8: 04 ac add $0xac,%al 35fa: 34 00 xor $0x0,%al 35fc: 00 26 add %ah,(%esi) 35fe: 76 66 jbe 3666 <.debug_info+0x3666> 3600: 73 6d jae 366f <.debug_info+0x366f> 3602: 6f outsl %ds:(%esi),(%dx) 3603: 75 6e jne 3673 <.debug_info+0x3673> 3605: 74 00 je 3607 <.debug_info+0x3607> 3607: 01 06 add %eax,(%esi) 3609: 04 fd add $0xfd,%al 360b: 35 00 00 0e 40 xor $0x400e0000,%eax 3610: 36 00 00 add %al,%ss:(%eax) 3613: 63 6f 6d arpl %bp,0x6d(%edi) 3616: 70 6c jo 3684 <.debug_info+0x3684> 3618: 65 gs 3619: 74 69 je 3684 <.debug_info+0x3684> 361b: 6f outsl %ds:(%esi),(%dx) 361c: 6e outsb %ds:(%esi),(%dx) 361d: 00 1c 37 add %bl,(%edi,%esi,1) 3620: 36 0b 64 6f 6e or %ss:0x6e(%edi,%ebp,2),%esp 3625: 65 00 38 add %bh,%gs:(%eax) 3628: 0e push %cs 3629: 3b 01 cmp (%ecx),%eax 362b: 00 00 add %al,(%eax) 362d: 02 23 add (%ebx),%ah 362f: 00 0b add %cl,(%ebx) 3631: 77 61 ja 3694 <.debug_info+0x3694> 3633: 69 74 00 38 0f 9d 21 imul $0x219d0f,0x38(%eax,%eax,1),%esi 363a: 00 363b: 00 02 add %al,(%edx) 363d: 23 04 00 and (%eax,%eax,1),%eax 3640: 09 6b 6d or %ebp,0x6d(%ebx) 3643: 65 gs 3644: 6d insl (%dx),%es:(%edi) 3645: 5f pop %edi 3646: 63 61 63 arpl %sp,0x63(%ecx) 3649: 68 65 5f 74 00 push $0x745f65 364e: 5e pop %esi 364f: 0c 54 or $0x54,%al 3651: 36 00 00 add %al,%ss:(%eax) 3654: 26 6b 6d 65 6d imul $0x6d,%es:0x65(%ebp),%ebp 3659: 5f pop %edi 365a: 63 61 63 arpl %sp,0x63(%ecx) 365d: 68 65 00 01 0a push $0xa010065 3662: 94 xchg %eax,%esp 3663: 36 00 00 add %al,%ss:(%eax) 3666: a4 movsb %ds:(%esi),%es:(%edi) 3667: 03 00 add (%eax),%eax 3669: 00 0c 1d 1b 0b 66 72 add %cl,0x72660b1b(,%ebx,1) 3670: 65 gs 3671: 65 gs 3672: 5f pop %edi 3673: 6c insb (%dx),%es:(%edi) 3674: 69 73 74 00 1d 1c c8 imul $0xc81c1d00,0x74(%ebx),%esi 367b: 1d 00 00 02 23 sbb $0x23020000,%eax 3680: 00 0b add %cl,(%ebx) 3682: 6e outsb %ds:(%esi),(%dx) 3683: 72 5f jb 36e4 <.debug_info+0x36e4> 3685: 66 data16 3686: 72 65 jb 36ed <.debug_info+0x36ed> 3688: 65 00 1d 1d 98 00 00 add %bl,%gs:0x981d 368f: 00 02 add %al,(%edx) 3691: 23 08 and (%eax),%ecx 3693: 00 0e add %cl,(%esi) 3695: b6 36 mov $0x36,%dh 3697: 00 00 add %al,(%eax) 3699: 7a 6f jp 370a <.debug_info+0x370a> 369b: 6e outsb %ds:(%esi),(%dx) 369c: 65 gs 369d: 5f pop %edi 369e: 70 61 jo 3701 <.debug_info+0x3701> 36a0: 64 64 69 6e 67 00 00 imul $0x291d0000,%fs:0x67(%esi),%ebp 36a7: 1d 29 36a9: 0b 78 00 or 0x0(%eax),%edi 36ac: 1d 2a b6 36 00 sbb $0x36b62a,%eax 36b1: 00 02 add %al,(%edx) 36b3: 23 00 and (%eax),%eax 36b5: 00 03 add %al,(%ebx) 36b7: c5 36 lds (%esi),%esi 36b9: 00 00 add %al,(%eax) 36bb: c1 01 00 roll $0x0,(%ecx) 36be: 00 1c 91 add %bl,(%ecx,%edx,4) 36c1: 00 00 add %al,(%eax) 36c3: 00 00 add %al,(%eax) 36c5: 0e push %cs 36c6: 17 pop %ss 36c7: 37 aaa 36c8: 00 00 add %al,(%eax) 36ca: 70 65 jo 3731 <.debug_info+0x3731> 36cc: 72 5f jb 372d <.debug_info+0x372d> 36ce: 63 70 75 arpl %si,0x75(%eax) 36d1: 5f pop %edi 36d2: 70 61 jo 3735 <.debug_info+0x3735> 36d4: 67 addr16 36d5: 65 gs 36d6: 73 00 jae 36d8 <.debug_info+0x36d8> 36d8: 14 1d adc $0x1d,%al 36da: 46 inc %esi 36db: 0f e7 01 movntq %mm0,(%ecx) 36de: 00 00 add %al,(%eax) 36e0: 1d 47 7a 00 00 sbb $0x7a47,%eax 36e5: 00 02 add %al,(%edx) 36e7: 23 00 and (%eax),%eax 36e9: 0b 68 69 or 0x69(%eax),%ebp 36ec: 67 68 00 1d 48 7a addr16 push $0x7a481d00 36f2: 00 00 add %al,(%eax) 36f4: 00 02 add %al,(%edx) 36f6: 23 04 0b and (%ebx,%ecx,1),%eax 36f9: 62 61 74 bound %esp,0x74(%ecx) 36fc: 63 68 00 arpl %bp,0x0(%eax) 36ff: 1d 49 7a 00 00 sbb $0x7a49,%eax 3704: 00 02 add %al,(%edx) 3706: 23 08 and (%eax),%ecx 3708: 0f 42 02 cmovb (%edx),%eax 370b: 00 00 add %al,(%eax) 370d: 1d 4a c8 1d 00 sbb $0x1dc84a,%eax 3712: 00 02 add %al,(%edx) 3714: 23 0c 00 and (%eax,%eax,1),%ecx 3717: 0e push %cs 3718: 6e outsb %ds:(%esi),(%dx) 3719: 37 aaa 371a: 00 00 add %al,(%eax) 371c: 70 65 jo 3783 <.debug_info+0x3783> 371e: 72 5f jb 377f <.debug_info+0x377f> 3720: 63 70 75 arpl %si,0x75(%eax) 3723: 5f pop %edi 3724: 70 61 jo 3787 <.debug_info+0x3787> 3726: 67 addr16 3727: 65 gs 3728: 73 65 jae 378f <.debug_info+0x378f> 372a: 74 00 je 372c <.debug_info+0x372c> 372c: 80 1d 4d 0b 70 63 70 sbbb $0x70,0x63700b4d 3733: 00 1d 4e 6e 37 00 add %bl,0x376e4e 3739: 00 02 add %al,(%edx) 373b: 23 00 and (%eax),%eax 373d: 0b 73 74 or 0x74(%ebx),%esi 3740: 61 popa 3741: 74 5f je 37a2 <.debug_info+0x37a2> 3743: 74 68 je 37ad <.debug_info+0x37ad> 3745: 72 65 jb 37ac <.debug_info+0x37ac> 3747: 73 68 jae 37b1 <.debug_info+0x37b1> 3749: 6f outsl %ds:(%esi),(%dx) 374a: 6c insb (%dx),%es:(%edi) 374b: 64 00 1d 50 dd 02 00 add %bl,%fs:0x2dd50 3752: 00 02 add %al,(%edx) 3754: 23 28 and (%eax),%ebp 3756: 0b 76 6d or 0x6d(%esi),%esi 3759: 5f pop %edi 375a: 73 74 jae 37d0 <.debug_info+0x37d0> 375c: 61 popa 375d: 74 5f je 37be <.debug_info+0x37be> 375f: 64 69 66 66 00 1d 51 imul $0x7e511d00,%fs:0x66(%esi),%esp 3766: 7e 3767: 37 aaa 3768: 00 00 add %al,(%eax) 376a: 02 23 add (%ebx),%ah 376c: 29 00 sub %eax,(%eax) 376e: 03 7e 37 add 0x37(%esi),%edi 3771: 00 00 add %al,(%eax) 3773: c5 36 lds (%esi),%esi 3775: 00 00 add %al,(%eax) 3777: 04 91 add $0x91,%al 3779: 00 00 add %al,(%eax) 377b: 00 01 add %al,(%ecx) 377d: 00 03 add %al,(%ebx) 377f: 8e 37 movw (%edi),%? 3781: 00 00 add %al,(%eax) 3783: dd 02 fldl (%edx) 3785: 00 00 add %al,(%eax) 3787: 04 91 add $0x91,%al 3789: 00 00 add %al,(%eax) 378b: 00 08 add %cl,(%eax) 378d: 00 10 add %dl,(%eax) 378f: 4f dec %edi 3790: 3a 00 cmp (%eax),%al 3792: 00 7a 6f add %bh,0x6f(%edx) 3795: 6e outsb %ds:(%esi),(%dx) 3796: 65 00 80 12 1d 8b 0b add %al,%gs:0xb8b1d12(%eax) 379d: 66 data16 379e: 72 65 jb 3805 <.debug_info+0x3805> 37a0: 65 gs 37a1: 5f pop %edi 37a2: 70 61 jo 3805 <.debug_info+0x3805> 37a4: 67 addr16 37a5: 65 gs 37a6: 73 00 jae 37a8 <.debug_info+0x37a8> 37a8: 1d 8d 98 00 00 sbb $0x988d,%eax 37ad: 00 02 add %al,(%edx) 37af: 23 00 and (%eax),%eax 37b1: 0b 70 61 or 0x61(%eax),%esi 37b4: 67 addr16 37b5: 65 gs 37b6: 73 5f jae 3817 <.debug_info+0x3817> 37b8: 6d insl (%dx),%es:(%edi) 37b9: 69 6e 00 1d 8e 98 00 imul $0x988e1d,0x0(%esi),%ebp 37c0: 00 00 add %al,(%eax) 37c2: 02 23 add (%ebx),%ah 37c4: 04 0b add $0xb,%al 37c6: 70 61 jo 3829 <.debug_info+0x3829> 37c8: 67 addr16 37c9: 65 gs 37ca: 73 5f jae 382b <.debug_info+0x382b> 37cc: 6c insb (%dx),%es:(%edi) 37cd: 6f outsl %ds:(%esi),(%dx) 37ce: 77 00 ja 37d0 <.debug_info+0x37d0> 37d0: 1d 8e 98 00 00 sbb $0x988e,%eax 37d5: 00 02 add %al,(%edx) 37d7: 23 08 and (%eax),%ecx 37d9: 0b 70 61 or 0x61(%eax),%esi 37dc: 67 addr16 37dd: 65 gs 37de: 73 5f jae 383f <.debug_info+0x383f> 37e0: 68 69 67 68 00 push $0x686769 37e5: 1d 8e 98 00 00 sbb $0x988e,%eax 37ea: 00 02 add %al,(%edx) 37ec: 23 0c 0b and (%ebx,%ecx,1),%ecx 37ef: 6c insb (%dx),%es:(%edi) 37f0: 6f outsl %ds:(%esi),(%dx) 37f1: 77 6d ja 3860 <.debug_info+0x3860> 37f3: 65 gs 37f4: 6d insl (%dx),%es:(%edi) 37f5: 5f pop %edi 37f6: 72 65 jb 385d <.debug_info+0x385d> 37f8: 73 65 jae 385f <.debug_info+0x385f> 37fa: 72 76 jb 3872 <.debug_info+0x3872> 37fc: 65 00 1d 97 af 08 00 add %bl,%gs:0x8af97 3803: 00 02 add %al,(%edx) 3805: 23 10 and (%eax),%edx 3807: 0b 70 61 or 0x61(%eax),%esi 380a: 67 addr16 380b: 65 gs 380c: 73 65 jae 3873 <.debug_info+0x3873> 380e: 74 00 je 3810 <.debug_info+0x3810> 3810: 1d a1 4f 3a 00 sbb $0x3a4fa1,%eax 3815: 00 03 add %al,(%ebx) 3817: 23 80 01 0f d6 02 and 0x2d60f01(%eax),%eax 381d: 00 00 add %al,(%eax) 381f: 1d a6 1e 1f 00 sbb $0x1f1ea6,%eax 3824: 00 03 add %al,(%ebx) 3826: 23 80 21 0f a4 03 and 0x3a40f21(%eax),%eax 382c: 00 00 add %al,(%eax) 382e: 1d ab 5f 3a 00 sbb $0x3a5fab,%eax 3833: 00 03 add %al,(%ebx) 3835: 23 90 21 0b 5f 70 and 0x705f0b21(%eax),%edx 383b: 61 popa 383c: 64 31 5f 00 xor %ebx,%fs:0x0(%edi) 3840: 1d ae 94 36 00 sbb $0x3694ae,%eax 3845: 00 03 add %al,(%ebx) 3847: 23 80 23 0b 6c 72 and 0x726c0b23(%eax),%eax 384d: 75 5f jne 38ae <.debug_info+0x38ae> 384f: 6c insb (%dx),%es:(%edi) 3850: 6f outsl %ds:(%esi),(%dx) 3851: 63 6b 00 arpl %bp,0x0(%ebx) 3854: 1d b1 1e 1f 00 sbb $0x1f1eb1,%eax 3859: 00 03 add %al,(%ebx) 385b: 23 80 23 0b 61 63 and 0x63610b23(%eax),%eax 3861: 74 69 je 38cc <.debug_info+0x38cc> 3863: 76 65 jbe 38ca <.debug_info+0x38ca> 3865: 5f pop %edi 3866: 6c insb (%dx),%es:(%edi) 3867: 69 73 74 00 1d b2 c8 imul $0xc8b21d00,0x74(%ebx),%esi 386e: 1d 00 00 03 23 sbb $0x23030000,%eax 3873: 90 nop 3874: 23 0b and (%ebx),%ecx 3876: 69 6e 61 63 74 69 76 imul $0x76697463,0x61(%esi),%ebp 387d: 65 gs 387e: 5f pop %edi 387f: 6c insb (%dx),%es:(%edi) 3880: 69 73 74 00 1d b3 c8 imul $0xc8b31d00,0x74(%ebx),%esi 3887: 1d 00 00 03 23 sbb $0x23030000,%eax 388c: 98 cwtl 388d: 23 0b and (%ebx),%ecx 388f: 6e outsb %ds:(%esi),(%dx) 3890: 72 5f jb 38f1 <.debug_info+0x38f1> 3892: 73 63 jae 38f7 <.debug_info+0x38f7> 3894: 61 popa 3895: 6e outsb %ds:(%esi),(%dx) 3896: 5f pop %edi 3897: 61 popa 3898: 63 74 69 76 arpl %si,0x76(%ecx,%ebp,2) 389c: 65 00 1d b4 98 00 00 add %bl,%gs:0x98b4 38a3: 00 03 add %al,(%ebx) 38a5: 23 a0 23 0b 6e 72 and 0x726e0b23(%eax),%esp 38ab: 5f pop %edi 38ac: 73 63 jae 3911 <.debug_info+0x3911> 38ae: 61 popa 38af: 6e outsb %ds:(%esi),(%dx) 38b0: 5f pop %edi 38b1: 69 6e 61 63 74 69 76 imul $0x76697463,0x61(%esi),%ebp 38b8: 65 00 1d b5 98 00 00 add %bl,%gs:0x98b5 38bf: 00 03 add %al,(%ebx) 38c1: 23 a4 23 0b 6e 72 5f and 0x5f726e0b(%ebx),%esp 38c8: 61 popa 38c9: 63 74 69 76 arpl %si,0x76(%ecx,%ebp,2) 38cd: 65 00 1d b6 98 00 00 add %bl,%gs:0x98b6 38d4: 00 03 add %al,(%ebx) 38d6: 23 a8 23 0b 6e 72 and 0x726e0b23(%eax),%ebp 38dc: 5f pop %edi 38dd: 69 6e 61 63 74 69 76 imul $0x76697463,0x61(%esi),%ebp 38e4: 65 00 1d b7 98 00 00 add %bl,%gs:0x98b7 38eb: 00 03 add %al,(%ebx) 38ed: 23 ac 23 0b 70 61 67 and 0x6761700b(%ebx),%ebp 38f4: 65 gs 38f5: 73 5f jae 3956 <.debug_info+0x3956> 38f7: 73 63 jae 395c <.debug_info+0x395c> 38f9: 61 popa 38fa: 6e outsb %ds:(%esi),(%dx) 38fb: 6e outsb %ds:(%esi),(%dx) 38fc: 65 64 00 1d b8 98 00 add %bl,%fs:%gs:0x98b8 3903: 00 3904: 00 03 add %al,(%ebx) 3906: 23 b0 23 0b 61 6c and 0x6c610b23(%eax),%esi 390c: 6c insb (%dx),%es:(%edi) 390d: 5f pop %edi 390e: 75 6e jne 397e <.debug_info+0x397e> 3910: 72 65 jb 3977 <.debug_info+0x3977> 3912: 63 6c 61 69 arpl %bp,0x69(%ecx) 3916: 6d insl (%dx),%es:(%edi) 3917: 61 popa 3918: 62 6c 65 00 bound %ebp,0x0(%ebp) 391c: 1d b9 7a 00 00 sbb $0x7ab9,%eax 3921: 00 03 add %al,(%ebx) 3923: 23 b4 23 0b 72 65 63 and 0x6365720b(%ebx),%esi 392a: 6c insb (%dx),%es:(%edi) 392b: 61 popa 392c: 69 6d 5f 69 6e 5f 70 imul $0x705f6e69,0x5f(%ebp),%ebp 3933: 72 6f jb 39a4 <.debug_info+0x39a4> 3935: 67 72 65 addr16 jb 399d <.debug_info+0x399d> 3938: 73 73 jae 39ad <.debug_info+0x39ad> 393a: 00 1d bc a1 1f 00 add %bl,0x1fa1bc 3940: 00 03 add %al,(%ebx) 3942: 23 b8 23 0b 76 6d and 0x6d760b23(%eax),%edi 3948: 5f pop %edi 3949: 73 74 jae 39bf <.debug_info+0x39bf> 394b: 61 popa 394c: 74 00 je 394e <.debug_info+0x394e> 394e: 1d bf 6f 3a 00 sbb $0x3a6fbf,%eax 3953: 00 03 add %al,(%ebx) 3955: 23 bc 23 0b 70 72 65 and 0x6572700b(%ebx),%edi 395c: 76 5f jbe 39bd <.debug_info+0x39bd> 395e: 70 72 jo 39d2 <.debug_info+0x39d2> 3960: 69 6f 72 69 74 79 00 imul $0x797469,0x72(%edi),%ebp 3967: 1d ce 7a 00 00 sbb $0x7ace,%eax 396c: 00 03 add %al,(%ebx) 396e: 23 e0 and %eax,%esp 3970: 23 0b and (%ebx),%ecx 3972: 5f pop %edi 3973: 70 61 jo 39d6 <.debug_info+0x39d6> 3975: 64 32 5f 00 xor %fs:0x0(%edi),%bl 3979: 1d d1 94 36 00 sbb $0x3694d1,%eax 397e: 00 03 add %al,(%ebx) 3980: 23 80 24 0b 77 61 and 0x61770b24(%eax),%eax 3986: 69 74 5f 74 61 62 6c imul $0x656c6261,0x74(%edi,%ebx,2),%esi 398d: 65 398e: 00 1d ec 7f 3a 00 add %bl,0x3a7fec 3994: 00 03 add %al,(%ebx) 3996: 23 80 24 0b 77 61 and 0x61770b24(%eax),%eax 399c: 69 74 5f 74 61 62 6c imul $0x656c6261,0x74(%edi,%ebx,2),%esi 39a3: 65 39a4: 5f pop %edi 39a5: 68 61 73 68 5f push $0x5f687361 39aa: 6e outsb %ds:(%esi),(%dx) 39ab: 72 5f jb 3a0c <.debug_info+0x3a0c> 39ad: 65 6e outsb %gs:(%esi),(%dx) 39af: 74 72 je 3a23 <.debug_info+0x3a23> 39b1: 69 65 73 00 1d ed 98 imul $0x98ed1d00,0x73(%ebp),%esp 39b8: 00 00 add %al,(%eax) 39ba: 00 03 add %al,(%ebx) 39bc: 23 84 24 0b 77 61 69 and 0x6961770b(%esp),%eax 39c3: 74 5f je 3a24 <.debug_info+0x3a24> 39c5: 74 61 je 3a28 <.debug_info+0x3a28> 39c7: 62 6c 65 5f bound %ebp,0x5f(%ebp) 39cb: 62 69 74 bound %ebp,0x74(%ecx) 39ce: 73 00 jae 39d0 <.debug_info+0x39d0> 39d0: 1d ee 98 00 00 sbb $0x98ee,%eax 39d5: 00 03 add %al,(%ebx) 39d7: 23 88 24 0b 7a 6f and 0x6f7a0b24(%eax),%ecx 39dd: 6e outsb %ds:(%esi),(%dx) 39de: 65 gs 39df: 5f pop %edi 39e0: 70 67 jo 3a49 <.debug_info+0x3a49> 39e2: 64 fs 39e3: 61 popa 39e4: 74 00 je 39e6 <.debug_info+0x39e6> 39e6: 1d f3 cc 3b 00 sbb $0x3bccf3,%eax 39eb: 00 03 add %al,(%ebx) 39ed: 23 8c 24 0b 7a 6f 6e and 0x6e6f7a0b(%esp),%ecx 39f4: 65 gs 39f5: 5f pop %edi 39f6: 73 74 jae 3a6c <.debug_info+0x3a6c> 39f8: 61 popa 39f9: 72 74 jb 3a6f <.debug_info+0x3a6f> 39fb: 5f pop %edi 39fc: 70 66 jo 3a64 <.debug_info+0x3a64> 39fe: 6e outsb %ds:(%esi),(%dx) 39ff: 00 1d f5 98 00 00 add %bl,0x98f5 3a05: 00 03 add %al,(%ebx) 3a07: 23 90 24 12 73 70 and 0x70731224(%eax),%edx 3a0d: 61 popa 3a0e: 6e outsb %ds:(%esi),(%dx) 3a0f: 6e outsb %ds:(%esi),(%dx) 3a10: 65 gs 3a11: 64 fs 3a12: 5f pop %edi 3a13: 70 61 jo 3a76 <.debug_info+0x3a76> 3a15: 67 addr16 3a16: 65 gs 3a17: 73 00 jae 3a19 <.debug_info+0x3a19> 3a19: 1d 01 01 98 00 sbb $0x980101,%eax 3a1e: 00 00 add %al,(%eax) 3a20: 03 23 add (%ebx),%esp 3a22: 94 xchg %eax,%esp 3a23: 24 12 and $0x12,%al 3a25: 70 72 jo 3a99 <.debug_info+0x3a99> 3a27: 65 gs 3a28: 73 65 jae 3a8f <.debug_info+0x3a8f> 3a2a: 6e outsb %ds:(%esi),(%dx) 3a2b: 74 5f je 3a8c <.debug_info+0x3a8c> 3a2d: 70 61 jo 3a90 <.debug_info+0x3a90> 3a2f: 67 addr16 3a30: 65 gs 3a31: 73 00 jae 3a33 <.debug_info+0x3a33> 3a33: 1d 02 01 98 00 sbb $0x980102,%eax 3a38: 00 00 add %al,(%eax) 3a3a: 03 23 add (%ebx),%esp 3a3c: 98 cwtl 3a3d: 24 13 and $0x13,%al 3a3f: a7 cmpsl %es:(%edi),%ds:(%esi) 3a40: 01 00 add %eax,(%eax) 3a42: 00 1d 07 01 bb 01 add %bl,0x1bb0107 3a48: 00 00 add %al,(%eax) 3a4a: 03 23 add (%ebx),%esp 3a4c: 9c pushf 3a4d: 24 00 and $0x0,%al 3a4f: 03 5f 3a add 0x3a(%edi),%ebx 3a52: 00 00 add %al,(%eax) 3a54: 17 pop %ss 3a55: 37 aaa 3a56: 00 00 add %al,(%eax) 3a58: 04 91 add $0x91,%al 3a5a: 00 00 add %al,(%eax) 3a5c: 00 1f add %bl,(%edi) 3a5e: 00 03 add %al,(%ebx) 3a60: 6f outsl %ds:(%esi),(%dx) 3a61: 3a 00 cmp (%eax),%al 3a63: 00 61 36 add %ah,0x36(%ecx) 3a66: 00 00 add %al,(%eax) 3a68: 04 91 add $0x91,%al 3a6a: 00 00 add %al,(%eax) 3a6c: 00 0a add %cl,(%edx) 3a6e: 00 03 add %al,(%ebx) 3a70: 7f 3a jg 3aac <.debug_info+0x3aac> 3a72: 00 00 add %al,(%eax) 3a74: b1 1f mov $0x1f,%cl 3a76: 00 00 add %al,(%eax) 3a78: 04 91 add $0x91,%al 3a7a: 00 00 add %al,(%eax) 3a7c: 00 08 add %cl,(%eax) 3a7e: 00 06 add %al,(%esi) 3a80: 04 9d add $0x9d,%al 3a82: 21 00 and %eax,(%eax) 3a84: 00 10 add %dl,(%eax) 3a86: cc int3 3a87: 3b 00 cmp (%eax),%eax 3a89: 00 70 67 add %dh,0x67(%eax) 3a8c: 6c insb (%dx),%es:(%edi) 3a8d: 69 73 74 5f 64 61 74 imul $0x7461645f,0x74(%ebx),%esi 3a94: 61 popa 3a95: 00 00 add %al,(%eax) 3a97: 4b dec %ebx 3a98: 1d 20 12 6e 6f sbb $0x6f6e1220,%eax 3a9d: 64 fs 3a9e: 65 gs 3a9f: 5f pop %edi 3aa0: 7a 6f jp 3b11 <.debug_info+0x3b11> 3aa2: 6e outsb %ds:(%esi),(%dx) 3aa3: 65 gs 3aa4: 73 00 jae 3aa6 <.debug_info+0x3aa6> 3aa6: 1d 2f 01 0c 3c sbb $0x3c0c012f,%eax 3aab: 00 00 add %al,(%eax) 3aad: 02 23 add (%ebx),%ah 3aaf: 00 12 add %dl,(%edx) 3ab1: 6e outsb %ds:(%esi),(%dx) 3ab2: 6f outsl %ds:(%esi),(%dx) 3ab3: 64 fs 3ab4: 65 gs 3ab5: 5f pop %edi 3ab6: 7a 6f jp 3b27 <.debug_info+0x3b27> 3ab8: 6e outsb %ds:(%esi),(%dx) 3ab9: 65 gs 3aba: 6c insb (%dx),%es:(%edi) 3abb: 69 73 74 73 00 1d 30 imul $0x301d0073,0x74(%ebx),%esi 3ac2: 01 1c 3c add %ebx,(%esp,%edi,1) 3ac5: 00 00 add %al,(%eax) 3ac7: 04 23 add $0x23,%al 3ac9: 80 94 01 12 6e 72 5f adcb $0x7a,0x5f726e12(%ecx,%eax,1) 3ad0: 7a 3ad1: 6f outsl %ds:(%esi),(%dx) 3ad2: 6e outsb %ds:(%esi),(%dx) 3ad3: 65 gs 3ad4: 73 00 jae 3ad6 <.debug_info+0x3ad6> 3ad6: 1d 31 01 7a 00 sbb $0x7a0131,%eax 3adb: 00 00 add %al,(%eax) 3add: 04 23 add $0x23,%al 3adf: e4 94 in $0x94,%al 3ae1: 01 12 add %edx,(%edx) 3ae3: 6e outsb %ds:(%esi),(%dx) 3ae4: 6f outsl %ds:(%esi),(%dx) 3ae5: 64 fs 3ae6: 65 gs 3ae7: 5f pop %edi 3ae8: 6d insl (%dx),%es:(%edi) 3ae9: 65 gs 3aea: 6d insl (%dx),%es:(%edi) 3aeb: 5f pop %edi 3aec: 6d insl (%dx),%es:(%edi) 3aed: 61 popa 3aee: 70 00 jo 3af0 <.debug_info+0x3af0> 3af0: 1d 33 01 94 3c sbb $0x3c940133,%eax 3af5: 00 00 add %al,(%eax) 3af7: 04 23 add $0x23,%al 3af9: e8 94 01 12 62 call 62123c92 3afe: 64 fs 3aff: 61 popa 3b00: 74 61 je 3b63 <.debug_info+0x3b63> 3b02: 00 1d 35 01 a9 3c add %bl,0x3ca90135 3b08: 00 00 add %al,(%eax) 3b0a: 04 23 add $0x23,%al 3b0c: ec in (%dx),%al 3b0d: 94 xchg %eax,%esp 3b0e: 01 12 add %edx,(%edx) 3b10: 6e outsb %ds:(%esi),(%dx) 3b11: 6f outsl %ds:(%esi),(%dx) 3b12: 64 fs 3b13: 65 gs 3b14: 5f pop %edi 3b15: 73 74 jae 3b8b <.debug_info+0x3b8b> 3b17: 61 popa 3b18: 72 74 jb 3b8e <.debug_info+0x3b8e> 3b1a: 5f pop %edi 3b1b: 70 66 jo 3b83 <.debug_info+0x3b83> 3b1d: 6e outsb %ds:(%esi),(%dx) 3b1e: 00 1d 40 01 98 00 add %bl,0x980140 3b24: 00 00 add %al,(%eax) 3b26: 04 23 add $0x23,%al 3b28: f0 94 lock xchg %eax,%esp 3b2a: 01 12 add %edx,(%edx) 3b2c: 6e outsb %ds:(%esi),(%dx) 3b2d: 6f outsl %ds:(%esi),(%dx) 3b2e: 64 fs 3b2f: 65 gs 3b30: 5f pop %edi 3b31: 70 72 jo 3ba5 <.debug_info+0x3ba5> 3b33: 65 gs 3b34: 73 65 jae 3b9b <.debug_info+0x3b9b> 3b36: 6e outsb %ds:(%esi),(%dx) 3b37: 74 5f je 3b98 <.debug_info+0x3b98> 3b39: 70 61 jo 3b9c <.debug_info+0x3b9c> 3b3b: 67 addr16 3b3c: 65 gs 3b3d: 73 00 jae 3b3f <.debug_info+0x3b3f> 3b3f: 1d 41 01 98 00 sbb $0x980141,%eax 3b44: 00 00 add %al,(%eax) 3b46: 04 23 add $0x23,%al 3b48: f4 hlt 3b49: 94 xchg %eax,%esp 3b4a: 01 12 add %edx,(%edx) 3b4c: 6e outsb %ds:(%esi),(%dx) 3b4d: 6f outsl %ds:(%esi),(%dx) 3b4e: 64 fs 3b4f: 65 gs 3b50: 5f pop %edi 3b51: 73 70 jae 3bc3 <.debug_info+0x3bc3> 3b53: 61 popa 3b54: 6e outsb %ds:(%esi),(%dx) 3b55: 6e outsb %ds:(%esi),(%dx) 3b56: 65 gs 3b57: 64 fs 3b58: 5f pop %edi 3b59: 70 61 jo 3bbc <.debug_info+0x3bbc> 3b5b: 67 addr16 3b5c: 65 gs 3b5d: 73 00 jae 3b5f <.debug_info+0x3b5f> 3b5f: 1d 42 01 98 00 sbb $0x980142,%eax 3b64: 00 00 add %al,(%eax) 3b66: 04 23 add $0x23,%al 3b68: f8 clc 3b69: 94 xchg %eax,%esp 3b6a: 01 12 add %edx,(%edx) 3b6c: 6e outsb %ds:(%esi),(%dx) 3b6d: 6f outsl %ds:(%esi),(%dx) 3b6e: 64 fs 3b6f: 65 gs 3b70: 5f pop %edi 3b71: 69 64 00 1d 44 01 7a imul $0x7a0144,0x1d(%eax,%eax,1),%esp 3b78: 00 3b79: 00 00 add %al,(%eax) 3b7b: 04 23 add $0x23,%al 3b7d: fc cld 3b7e: 94 xchg %eax,%esp 3b7f: 01 12 add %edx,(%edx) 3b81: 6b 73 77 61 imul $0x61,0x77(%ebx),%esi 3b85: 70 64 jo 3beb <.debug_info+0x3beb> 3b87: 5f pop %edi 3b88: 77 61 ja 3beb <.debug_info+0x3beb> 3b8a: 69 74 00 1d 45 01 9d imul $0x219d0145,0x1d(%eax,%eax,1),%esi 3b91: 21 3b92: 00 00 add %al,(%eax) 3b94: 04 23 add $0x23,%al 3b96: 80 95 01 12 6b 73 77 adcb $0x77,0x736b1201(%ebp) 3b9d: 61 popa 3b9e: 70 64 jo 3c04 <.debug_info+0x3c04> 3ba0: 00 1d 46 01 a5 1d add %bl,0x1da50146 3ba6: 00 00 add %al,(%eax) 3ba8: 04 23 add $0x23,%al 3baa: 98 cwtl 3bab: 95 xchg %eax,%ebp 3bac: 01 12 add %edx,(%edx) 3bae: 6b 73 77 61 imul $0x61,0x77(%ebx),%esi 3bb2: 70 64 jo 3c18 <.debug_info+0x3c18> 3bb4: 5f pop %edi 3bb5: 6d insl (%dx),%es:(%edi) 3bb6: 61 popa 3bb7: 78 5f js 3c18 <.debug_info+0x3c18> 3bb9: 6f outsl %ds:(%esi),(%dx) 3bba: 72 64 jb 3c20 <.debug_info+0x3c20> 3bbc: 65 gs 3bbd: 72 00 jb 3bbf <.debug_info+0x3bbf> 3bbf: 1d 47 01 7a 00 sbb $0x7a0147,%eax 3bc4: 00 00 add %al,(%eax) 3bc6: 04 23 add $0x23,%al 3bc8: 9c pushf 3bc9: 95 xchg %eax,%ebp 3bca: 01 00 add %eax,(%eax) 3bcc: 06 push %es 3bcd: 04 85 add $0x85,%al 3bcf: 3a 00 cmp (%eax),%al 3bd1: 00 11 add %dl,(%ecx) 3bd3: f6 3b idivb (%ebx) 3bd5: 00 00 add %al,(%eax) 3bd7: 7a 6f jp 3c48 <.debug_info+0x3c48> 3bd9: 6e outsb %ds:(%esi),(%dx) 3bda: 65 gs 3bdb: 6c insb (%dx),%es:(%edi) 3bdc: 69 73 74 00 14 1d 1d imul $0x1d1d1400,0x74(%ebx),%esi 3be3: 01 12 add %edx,(%edx) 3be5: 7a 6f jp 3c56 <.debug_info+0x3c56> 3be7: 6e outsb %ds:(%esi),(%dx) 3be8: 65 gs 3be9: 73 00 jae 3beb <.debug_info+0x3beb> 3beb: 1d 1e 01 f6 3b sbb $0x3bf6011e,%eax 3bf0: 00 00 add %al,(%eax) 3bf2: 02 23 add (%ebx),%ah 3bf4: 00 00 add %al,(%eax) 3bf6: 03 06 add (%esi),%eax 3bf8: 3c 00 cmp $0x0,%al 3bfa: 00 06 add %al,(%esi) 3bfc: 3c 00 cmp $0x0,%al 3bfe: 00 04 91 add %al,(%ecx,%edx,4) 3c01: 00 00 add %al,(%eax) 3c03: 00 04 00 add %al,(%eax,%eax,1) 3c06: 06 push %es 3c07: 04 8e add $0x8e,%al 3c09: 37 aaa 3c0a: 00 00 add %al,(%eax) 3c0c: 03 1c 3c add (%esp,%edi,1),%ebx 3c0f: 00 00 add %al,(%eax) 3c11: 8e 37 movw (%edi),%? 3c13: 00 00 add %al,(%eax) 3c15: 04 91 add $0x91,%al 3c17: 00 00 add %al,(%eax) 3c19: 00 03 add %al,(%ebx) 3c1b: 00 03 add %al,(%ebx) 3c1d: 2c 3c sub $0x3c,%al 3c1f: 00 00 add %al,(%eax) 3c21: d2 3b sarb %cl,(%ebx) 3c23: 00 00 add %al,(%eax) 3c25: 04 91 add $0x91,%al 3c27: 00 00 add %al,(%eax) 3c29: 00 04 00 add %al,(%eax,%eax,1) 3c2c: 11 94 3c 00 00 70 61 adc %edx,0x61700000(%esp,%edi,1) 3c33: 67 65 00 28 addr16 add %ch,%gs:(%bx,%si) 3c37: 1d 33 01 0f b3 sbb $0xb30f0133,%eax 3c3c: 03 00 add (%eax),%eax 3c3e: 00 19 add %bl,(%ecx) 3c40: e0 98 loopne 3bda <.debug_info+0x3bda> 3c42: 00 00 add %al,(%eax) 3c44: 00 02 add %al,(%edx) 3c46: 23 00 and (%eax),%eax 3c48: 0b 5f 63 or 0x63(%edi),%ebx 3c4b: 6f outsl %ds:(%esi),(%dx) 3c4c: 75 6e jne 3cbc <.debug_info+0x3cbc> 3c4e: 74 00 je 3c50 <.debug_info+0x3c50> 3c50: 19 e2 sbb %esp,%edx 3c52: a1 1f 00 00 02 mov 0x200001f,%eax 3c57: 23 04 0b and (%ebx,%ecx,1),%eax 3c5a: 5f pop %edi 3c5b: 6d insl (%dx),%es:(%edi) 3c5c: 61 popa 3c5d: 70 63 jo 3cc2 <.debug_info+0x3cc2> 3c5f: 6f outsl %ds:(%esi),(%dx) 3c60: 75 6e jne 3cd0 <.debug_info+0x3cd0> 3c62: 74 00 je 3c64 <.debug_info+0x3c64> 3c64: 19 e3 sbb %esp,%ebx 3c66: a1 1f 00 00 02 mov 0x200001f,%eax 3c6b: 23 08 and (%eax),%ecx 3c6d: 27 daa 3c6e: 6e outsb %ds:(%esi),(%dx) 3c6f: 9a 00 00 02 23 0c 0b lcall $0xb0c,$0x23020000 3c76: 69 6e 64 65 78 00 19 imul $0x19007865,0x64(%esi),%ebp 3c7d: fc cld 3c7e: 98 cwtl 3c7f: 00 00 add %al,(%eax) 3c81: 00 02 add %al,(%edx) 3c83: 23 1c 0b and (%ebx,%ecx,1),%ebx 3c86: 6c insb (%dx),%es:(%edi) 3c87: 72 75 jb 3cfe <.debug_info+0x3cfe> 3c89: 00 19 add %bl,(%ecx) 3c8b: fd std 3c8c: c8 1d 00 00 enter $0x1d,$0x0 3c90: 02 23 add (%ebx),%ah 3c92: 20 00 and %al,(%eax) 3c94: 06 push %es 3c95: 04 2c add $0x2c,%al 3c97: 3c 00 cmp $0x0,%al 3c99: 00 26 add %ah,(%esi) 3c9b: 62 6f 6f bound %ebp,0x6f(%edi) 3c9e: 74 6d je 3d0d <.debug_info+0x3d0d> 3ca0: 65 gs 3ca1: 6d insl (%dx),%es:(%edi) 3ca2: 5f pop %edi 3ca3: 64 fs 3ca4: 61 popa 3ca5: 74 61 je 3d08 <.debug_info+0x3d08> 3ca7: 00 01 add %al,(%ecx) 3ca9: 06 push %es 3caa: 04 9a add $0x9a,%al 3cac: 3c 00 cmp $0x0,%al 3cae: 00 0e add %cl,(%esi) 3cb0: 12 3d 00 00 6d 75 adc 0x756d0000,%bh 3cb6: 74 65 je 3d1d <.debug_info+0x3d1d> 3cb8: 78 00 js 3cba <.debug_info+0x3cba> 3cba: 28 12 sub %dl,(%edx) 3cbc: 2f das 3cbd: 0f e7 01 movntq %mm0,(%ecx) 3cc0: 00 00 add %al,(%eax) 3cc2: 12 31 adc (%ecx),%dh 3cc4: a1 1f 00 00 02 mov 0x200001f,%eax 3cc9: 23 00 and (%eax),%eax 3ccb: 0f ee 00 pmaxsw (%eax),%mm0 3cce: 00 00 add %al,(%eax) 3cd0: 12 32 adc (%edx),%dh 3cd2: 1e push %ds 3cd3: 1f pop %ds 3cd4: 00 00 add %al,(%eax) 3cd6: 02 23 add (%ebx),%ah 3cd8: 04 0f add $0xf,%al 3cda: bd 00 00 00 12 mov $0x12000000,%ebp 3cdf: 33 c8 xor %eax,%ecx 3ce1: 1d 00 00 02 23 sbb $0x23020000,%eax 3ce6: 14 0f adc $0xf,%al 3ce8: 2f das 3ce9: 01 00 add %eax,(%eax) 3ceb: 00 12 add %dl,(%edx) 3ced: 35 12 3d 00 00 xor $0x3d12,%eax 3cf2: 02 23 add (%ebx),%ah 3cf4: 1c 0f sbb $0xf,%al 3cf6: a7 cmpsl %es:(%edi),%ds:(%esi) 3cf7: 01 00 add %eax,(%eax) 3cf9: 00 12 add %dl,(%edx) 3cfb: 36 18 3d 00 00 02 23 sbb %bh,%ss:0x23020000 3d02: 20 0f and %cl,(%edi) 3d04: a1 01 00 00 12 mov 0x12000001,%eax 3d09: 37 aaa 3d0a: b7 1d mov $0x1d,%bh 3d0c: 00 00 add %al,(%eax) 3d0e: 02 23 add (%ebx),%ah 3d10: 24 00 and $0x0,%al 3d12: 06 push %es 3d13: 04 6a add $0x6a,%al 3d15: 12 00 adc (%eax),%al 3d17: 00 06 add %al,(%esi) 3d19: 04 1e add $0x1e,%al 3d1b: 3d 00 00 28 c1 cmp $0xc1280000,%eax 3d20: 01 00 add %eax,(%eax) 3d22: 00 0e add %cl,(%esi) 3d24: 72 3d jb 3d63 <.debug_info+0x3d63> 3d26: 00 00 add %al,(%eax) 3d28: 6d insl (%dx),%es:(%edi) 3d29: 75 74 jne 3d9f <.debug_info+0x3d9f> 3d2b: 65 gs 3d2c: 78 5f js 3d8d <.debug_info+0x3d8d> 3d2e: 77 61 ja 3d91 <.debug_info+0x3d91> 3d30: 69 74 65 72 00 14 12 imul $0x42121400,0x72(%ebp),%esi 3d37: 42 3d38: 0f 42 02 cmovb (%edx),%eax 3d3b: 00 00 add %al,(%eax) 3d3d: 12 43 c8 adc 0xffffffc8(%ebx),%al 3d40: 1d 00 00 02 23 sbb $0x23020000,%eax 3d45: 00 0b add %cl,(%ebx) 3d47: 74 61 je 3daa <.debug_info+0x3daa> 3d49: 73 6b jae 3db6 <.debug_info+0x3db6> 3d4b: 00 12 add %dl,(%edx) 3d4d: 44 inc %esp 3d4e: a5 movsl %ds:(%esi),%es:(%edi) 3d4f: 1d 00 00 02 23 sbb $0x23020000,%eax 3d54: 08 0f or %cl,(%edi) 3d56: d6 (bad) 3d57: 02 00 add (%eax),%al 3d59: 00 12 add %dl,(%edx) 3d5b: 46 inc %esi 3d5c: 72 3d jb 3d9b <.debug_info+0x3d9b> 3d5e: 00 00 add %al,(%eax) 3d60: 02 23 add (%ebx),%ah 3d62: 0c 0f or $0xf,%al 3d64: a1 01 00 00 12 mov 0x12000001,%eax 3d69: 47 inc %edi 3d6a: b7 1d mov $0x1d,%bh 3d6c: 00 00 add %al,(%eax) 3d6e: 02 23 add (%ebx),%ah 3d70: 10 00 adc %al,(%eax) 3d72: 06 push %es 3d73: 04 af add $0xaf,%al 3d75: 3c 00 cmp $0x0,%al 3d77: 00 0e add %cl,(%esi) 3d79: ca 3d 00 lret $0x3d 3d7c: 00 63 61 add %ah,0x61(%ebx) 3d7f: 63 68 65 arpl %bp,0x65(%eax) 3d82: 5f pop %edi 3d83: 73 69 jae 3dee <.debug_info+0x3dee> 3d85: 7a 65 jp 3dec <.debug_info+0x3dec> 3d87: 73 00 jae 3d89 <.debug_info+0x3d89> 3d89: 0c 5e or $0x5e,%al 3d8b: 49 dec %ecx 3d8c: 0b 63 73 or 0x73(%ebx),%esp 3d8f: 5f pop %edi 3d90: 73 69 jae 3dfb <.debug_info+0x3dfb> 3d92: 7a 65 jp 3df9 <.debug_info+0x3df9> 3d94: 00 5e 4a add %bl,0x4a(%esi) 3d97: b5 03 mov $0x3,%ch 3d99: 00 00 add %al,(%eax) 3d9b: 02 23 add (%ebx),%ah 3d9d: 00 0b add %cl,(%ebx) 3d9f: 63 73 5f arpl %si,0x5f(%ebx) 3da2: 63 61 63 arpl %sp,0x63(%ecx) 3da5: 68 65 70 00 5e push $0x5e007065 3daa: 4b dec %ebx 3dab: ca 3d 00 lret $0x3d 3dae: 00 02 add %al,(%edx) 3db0: 23 04 0b and (%ebx,%ecx,1),%eax 3db3: 63 73 5f arpl %si,0x5f(%ebx) 3db6: 64 fs 3db7: 6d insl (%dx),%es:(%edi) 3db8: 61 popa 3db9: 63 61 63 arpl %sp,0x63(%ecx) 3dbc: 68 65 70 00 5e push $0x5e007065 3dc1: 4c dec %esp 3dc2: ca 3d 00 lret $0x3d 3dc5: 00 02 add %al,(%edx) 3dc7: 23 08 and (%eax),%ecx 3dc9: 00 06 add %al,(%esi) 3dcb: 04 40 add $0x40,%al 3dcd: 36 00 00 add %al,%ss:(%eax) 3dd0: 0e push %cs 3dd1: ff (bad) 3dd2: 3d 00 00 72 63 cmp $0x63720000,%eax 3dd7: 75 5f jne 3e38 <.debug_info+0x3e38> 3dd9: 68 65 61 64 00 push $0x646165 3dde: 08 1e or %bl,(%esi) 3de0: 32 0f xor (%edi),%cl 3de2: ae scas %es:(%edi),%al 3de3: 03 00 add (%eax),%eax 3de5: 00 1e add %bl,(%esi) 3de7: 33 ff xor %edi,%edi 3de9: 3d 00 00 02 23 cmp $0x23020000,%eax 3dee: 00 0b add %cl,(%ebx) 3df0: 66 data16 3df1: 75 6e jne 3e61 <.debug_info+0x3e61> 3df3: 63 00 arpl %ax,(%eax) 3df5: 1e push %ds 3df6: 34 11 xor $0x11,%al 3df8: 3e 00 00 add %al,%ds:(%eax) 3dfb: 02 23 add (%ebx),%ah 3dfd: 04 00 add $0x0,%al 3dff: 06 push %es 3e00: 04 d0 add $0xd0,%al 3e02: 3d 00 00 07 11 cmp $0x11070000,%eax 3e07: 3e 00 00 add %al,%ds:(%eax) 3e0a: 01 08 add %ecx,(%eax) 3e0c: ff (bad) 3e0d: 3d 00 00 00 06 cmp $0x6000000,%eax 3e12: 04 05 add $0x5,%al 3e14: 3e 00 00 add %al,%ds:(%eax) 3e17: 0e push %cs 3e18: 41 inc %ecx 3e19: 3f aas 3e1a: 00 00 add %al,(%eax) 3e1c: 72 63 jb 3e81 <.debug_info+0x3e81> 3e1e: 75 5f jne 3e7f <.debug_info+0x3e7f> 3e20: 64 fs 3e21: 61 popa 3e22: 74 61 je 3e85 <.debug_info+0x3e85> 3e24: 00 40 1e add %al,0x1e(%eax) 3e27: 5b pop %ebx 3e28: 0b 71 75 or 0x75(%ecx),%esi 3e2b: 69 65 73 63 62 61 74 imul $0x74616263,0x73(%ebp),%esp 3e32: 63 68 00 arpl %bp,0x0(%eax) 3e35: 1e push %ds 3e36: 5d pop %ebp 3e37: 02 01 add (%ecx),%al 3e39: 00 00 add %al,(%eax) 3e3b: 02 23 add (%ebx),%ah 3e3d: 00 0b add %cl,(%ebx) 3e3f: 70 61 jo 3ea2 <.debug_info+0x3ea2> 3e41: 73 73 jae 3eb6 <.debug_info+0x3eb6> 3e43: 65 gs 3e44: 64 fs 3e45: 5f pop %edi 3e46: 71 75 jno 3ebd <.debug_info+0x3ebd> 3e48: 69 65 73 63 00 1e 5e imul $0x5e1e0063,0x73(%ebp),%esp 3e4f: 7a 00 jp 3e51 <.debug_info+0x3e51> 3e51: 00 00 add %al,(%eax) 3e53: 02 23 add (%ebx),%ah 3e55: 04 0b add $0xb,%al 3e57: 71 73 jno 3ecc <.debug_info+0x3ecc> 3e59: 5f pop %edi 3e5a: 70 65 jo 3ec1 <.debug_info+0x3ec1> 3e5c: 6e outsb %ds:(%esi),(%dx) 3e5d: 64 69 6e 67 00 1e 5f imul $0x7a5f1e00,%fs:0x67(%esi),%ebp 3e64: 7a 3e65: 00 00 add %al,(%eax) 3e67: 00 02 add %al,(%edx) 3e69: 23 08 and (%eax),%ecx 3e6b: 0b 62 61 or 0x61(%edx),%esp 3e6e: 74 63 je 3ed3 <.debug_info+0x3ed3> 3e70: 68 00 1e 62 02 push $0x2621e00 3e75: 01 00 add %eax,(%eax) 3e77: 00 02 add %al,(%edx) 3e79: 23 0c 0b and (%ebx,%ecx,1),%ecx 3e7c: 6e outsb %ds:(%esi),(%dx) 3e7d: 78 74 js 3ef3 <.debug_info+0x3ef3> 3e7f: 6c insb (%dx),%es:(%edi) 3e80: 69 73 74 00 1e 63 ff imul $0xff631e00,0x74(%ebx),%esi 3e87: 3d 00 00 02 23 cmp $0x23020000,%eax 3e8c: 10 0b adc %cl,(%ebx) 3e8e: 6e outsb %ds:(%esi),(%dx) 3e8f: 78 74 js 3f05 <.debug_info+0x3f05> 3e91: 74 61 je 3ef4 <.debug_info+0x3ef4> 3e93: 69 6c 00 1e 64 41 3f imul $0x3f4164,0x1e(%eax,%eax,1),%ebp 3e9a: 00 3e9b: 00 02 add %al,(%edx) 3e9d: 23 14 0b and (%ebx,%ecx,1),%edx 3ea0: 71 6c jno 3f0e <.debug_info+0x3f0e> 3ea2: 65 6e outsb %gs:(%esi),(%dx) 3ea4: 00 1e add %bl,(%esi) 3ea6: 65 02 01 add %gs:(%ecx),%al 3ea9: 00 00 add %al,(%eax) 3eab: 02 23 add (%ebx),%ah 3ead: 18 0b sbb %cl,(%ebx) 3eaf: 63 75 72 arpl %si,0x72(%ebp) 3eb2: 6c insb (%dx),%es:(%edi) 3eb3: 69 73 74 00 1e 66 ff imul $0xff661e00,0x74(%ebx),%esi 3eba: 3d 00 00 02 23 cmp $0x23020000,%eax 3ebf: 1c 0b sbb $0xb,%al 3ec1: 63 75 72 arpl %si,0x72(%ebp) 3ec4: 74 61 je 3f27 <.debug_info+0x3f27> 3ec6: 69 6c 00 1e 67 41 3f imul $0x3f4167,0x1e(%eax,%eax,1),%ebp 3ecd: 00 3ece: 00 02 add %al,(%edx) 3ed0: 23 20 and (%eax),%esp 3ed2: 0b 64 6f 6e or 0x6e(%edi,%ebp,2),%esp 3ed6: 65 gs 3ed7: 6c insb (%dx),%es:(%edi) 3ed8: 69 73 74 00 1e 68 ff imul $0xff681e00,0x74(%ebx),%esi 3edf: 3d 00 00 02 23 cmp $0x23020000,%eax 3ee4: 24 0b and $0xb,%al 3ee6: 64 6f outsl %fs:(%esi),(%dx) 3ee8: 6e outsb %ds:(%esi),(%dx) 3ee9: 65 gs 3eea: 74 61 je 3f4d <.debug_info+0x3f4d> 3eec: 69 6c 00 1e 69 41 3f imul $0x3f4169,0x1e(%eax,%eax,1),%ebp 3ef3: 00 3ef4: 00 02 add %al,(%edx) 3ef6: 23 28 and (%eax),%ebp 3ef8: 0b 62 6c or 0x6c(%edx),%esp 3efb: 69 6d 69 74 00 1e 6a imul $0x6a1e0074,0x69(%ebp),%ebp 3f02: 02 01 add (%ecx),%al 3f04: 00 00 add %al,(%eax) 3f06: 02 23 add (%ebx),%ah 3f08: 2c 0b sub $0xb,%al 3f0a: 63 70 75 arpl %si,0x75(%eax) 3f0d: 00 1e add %bl,(%esi) 3f0f: 6b 7a 00 00 imul $0x0,0x0(%edx),%edi 3f13: 00 02 add %al,(%edx) 3f15: 23 30 and (%eax),%esi 3f17: 0b 62 61 or 0x61(%edx),%esp 3f1a: 72 72 jb 3f8e <.debug_info+0x3f8e> 3f1c: 69 65 72 00 1e 6c d0 imul $0xd06c1e00,0x72(%ebp),%esp 3f23: 3d 00 00 02 23 cmp $0x23020000,%eax 3f28: 34 0b xor $0xb,%al 3f2a: 6c insb (%dx),%es:(%edi) 3f2b: 61 popa 3f2c: 73 74 jae 3fa2 <.debug_info+0x3fa2> 3f2e: 5f pop %edi 3f2f: 72 73 jb 3fa4 <.debug_info+0x3fa4> 3f31: 5f pop %edi 3f32: 71 6c jno 3fa0 <.debug_info+0x3fa0> 3f34: 65 6e outsb %gs:(%esi),(%dx) 3f36: 00 1e add %bl,(%esi) 3f38: 6e outsb %ds:(%esi),(%dx) 3f39: 02 01 add (%ecx),%al 3f3b: 00 00 add %al,(%eax) 3f3d: 02 23 add (%ebx),%ah 3f3f: 3c 00 cmp $0x0,%al 3f41: 06 push %es 3f42: 04 ff add $0xff,%al 3f44: 3d 00 00 0e a1 cmp $0xa10e0000,%eax 3f49: 3f aas 3f4a: 00 00 add %al,(%eax) 3f4c: 70 69 jo 3fb7 <.debug_info+0x3fb7> 3f4e: 64 00 24 39 add %ah,%fs:(%ecx,%edi,1) 3f52: 2b 0f sub (%edi),%ecx 3f54: e7 01 out %eax,$0x1 3f56: 00 00 add %al,(%eax) 3f58: 39 2c a1 cmp %ebp,(%ecx) 3f5b: 1f pop %ds 3f5c: 00 00 add %al,(%eax) 3f5e: 02 23 add (%ebx),%ah 3f60: 00 0b add %cl,(%ebx) 3f62: 6e outsb %ds:(%esi),(%dx) 3f63: 72 00 jb 3f65 <.debug_info+0x3f65> 3f65: 39 2e cmp %ebp,(%esi) 3f67: 7a 00 jp 3f69 <.debug_info+0x3f69> 3f69: 00 00 add %al,(%eax) 3f6b: 02 23 add (%ebx),%ah 3f6d: 04 0b add $0xb,%al 3f6f: 70 69 jo 3fda <.debug_info+0x3fda> 3f71: 64 fs 3f72: 5f pop %edi 3f73: 63 68 61 arpl %bp,0x61(%eax) 3f76: 69 6e 00 39 2f 24 1e imul $0x1e242f39,0x0(%esi),%ebp 3f7d: 00 00 add %al,(%eax) 3f7f: 02 23 add (%ebx),%ah 3f81: 08 0b or %cl,(%ebx) 3f83: 74 61 je 3fe6 <.debug_info+0x3fe6> 3f85: 73 6b jae 3ff2 <.debug_info+0x3ff2> 3f87: 73 00 jae 3f89 <.debug_info+0x3f89> 3f89: 39 31 cmp %esi,(%ecx) 3f8b: a1 3f 00 00 02 mov 0x200003f,%eax 3f90: 23 10 and (%eax),%edx 3f92: 0b 72 63 or 0x63(%edx),%esi 3f95: 75 00 jne 3f97 <.debug_info+0x3f97> 3f97: 39 32 cmp %esi,(%edx) 3f99: d0 3d 00 00 02 23 sarb 0x23020000 3f9f: 1c 00 sbb $0x0,%al 3fa1: 03 b1 3f 00 00 fe add 0xfe00003f(%ecx),%esi 3fa7: 1d 00 00 04 91 sbb $0x91040000,%eax 3fac: 00 00 add %al,(%eax) 3fae: 00 02 add %al,(%edx) 3fb0: 00 0e add %cl,(%esi) 3fb2: df 3f fistpll (%edi) 3fb4: 00 00 add %al,(%eax) 3fb6: 70 69 jo 4021 <.debug_info+0x4021> 3fb8: 64 fs 3fb9: 5f pop %edi 3fba: 6c insb (%dx),%es:(%edi) 3fbb: 69 6e 6b 00 0c 39 36 imul $0x36390c00,0x6b(%esi),%ebp 3fc2: 0f ba (bad) 3fc4: 02 00 add (%eax),%al 3fc6: 00 39 add %bh,(%ecx) 3fc8: 37 aaa 3fc9: 24 1e and $0x1e,%al 3fcb: 00 00 add %al,(%eax) 3fcd: 02 23 add (%ebx),%ah 3fcf: 00 0b add %cl,(%ebx) 3fd1: 70 69 jo 403c <.debug_info+0x403c> 3fd3: 64 00 39 add %bh,%fs:(%ecx) 3fd6: 38 df cmp %bl,%bh 3fd8: 3f aas 3fd9: 00 00 add %al,(%eax) 3fdb: 02 23 add (%ebx),%ah 3fdd: 08 00 or %al,(%eax) 3fdf: 06 push %es 3fe0: 04 47 add $0x47,%al 3fe2: 3f aas 3fe3: 00 00 add %al,(%eax) 3fe5: 0d fd 3f 00 00 or $0x3ffd,%eax 3fea: 04 44 add $0x44,%al 3fec: 0c 0b or $0xb,%al 3fee: 6d insl (%dx),%es:(%edi) 3fef: 6f outsl %ds:(%esi),(%dx) 3ff0: 64 65 00 44 0c 7a add %al,%fs:%gs:0x7a(%esp,%ecx,1) 3ff6: 00 00 add %al,(%eax) 3ff8: 00 02 add %al,(%edx) 3ffa: 23 00 and (%eax),%eax 3ffc: 00 09 add %cl,(%ecx) 3ffe: 73 65 jae 4065 <.debug_info+0x4065> 4000: 63 63 6f arpl %sp,0x6f(%ebx) 4003: 6d insl (%dx),%es:(%edi) 4004: 70 5f jo 4065 <.debug_info+0x4065> 4006: 74 00 je 4008 <.debug_info+0x4008> 4008: 44 inc %esp 4009: 0c e5 or $0xe5,%al 400b: 3f aas 400c: 00 00 add %al,(%eax) 400e: 0a 29 or (%ecx),%ch 4010: 40 inc %eax 4011: 00 00 add %al,(%eax) 4013: 4e dec %esi 4014: 00 00 add %al,(%eax) 4016: 00 04 48 add %al,(%eax,%ecx,2) 4019: 21 0f and %ecx,(%edi) 401b: ae scas %es:(%edi),%al 401c: 03 00 add (%eax),%eax 401e: 00 48 22 add %cl,0x22(%eax) 4021: 29 40 00 sub %eax,0x0(%eax) 4024: 00 02 add %al,(%edx) 4026: 23 00 and (%eax),%eax 4028: 00 06 add %al,(%esi) 402a: 04 0e add $0xe,%al 402c: 40 inc %eax 402d: 00 00 add %al,(%eax) 402f: 0e push %cs 4030: 88 40 00 mov %al,0x0(%eax) 4033: 00 72 6f add %dh,0x6f(%edx) 4036: 62 75 73 bound %esi,0x73(%ebp) 4039: 74 5f je 409a <.debug_info+0x409a> 403b: 6c insb (%dx),%es:(%edi) 403c: 69 73 74 5f 68 65 61 imul $0x6165685f,0x74(%ebx),%esi 4043: 64 00 0c 48 add %cl,%fs:(%eax,%ecx,2) 4047: 2d 0f 42 02 00 sub $0x2420f,%eax 404c: 00 48 31 add %cl,0x31(%eax) 404f: 0e push %cs 4050: 40 inc %eax 4051: 00 00 add %al,(%eax) 4053: 02 23 add (%ebx),%ah 4055: 00 0b add %cl,(%ebx) 4057: 66 data16 4058: 75 74 jne 40ce <.debug_info+0x40ce> 405a: 65 gs 405b: 78 5f js 40bc <.debug_info+0x40bc> 405d: 6f outsl %ds:(%esi),(%dx) 405e: 66 data16 405f: 66 data16 4060: 73 65 jae 40c7 <.debug_info+0x40c7> 4062: 74 00 je 4064 <.debug_info+0x4064> 4064: 48 dec %eax 4065: 39 02 cmp %eax,(%edx) 4067: 01 00 add %eax,(%eax) 4069: 00 02 add %al,(%edx) 406b: 23 04 0b and (%ebx,%ecx,1),%eax 406e: 6c insb (%dx),%es:(%edi) 406f: 69 73 74 5f 6f 70 5f imul $0x5f706f5f,0x74(%ebx),%esi 4076: 70 65 jo 40dd <.debug_info+0x40dd> 4078: 6e outsb %ds:(%esi),(%dx) 4079: 64 69 6e 67 00 48 45 imul $0x29454800,%fs:0x67(%esi),%ebp 4080: 29 4081: 40 inc %eax 4082: 00 00 add %al,(%eax) 4084: 02 23 add (%ebx),%ah 4086: 08 00 or %al,(%eax) 4088: 0e push %cs 4089: c4 40 00 les 0x0(%eax),%eax 408c: 00 70 6c add %dh,0x6c(%eax) 408f: 69 73 74 5f 68 65 61 imul $0x6165685f,0x74(%ebx),%esi 4096: 64 00 10 add %dl,%fs:(%eax) 4099: 45 inc %ebp 409a: 50 push %eax 409b: 0b 70 72 or 0x72(%eax),%esi 409e: 69 6f 5f 6c 69 73 74 imul $0x7473696c,0x5f(%edi),%ebp 40a5: 00 45 51 add %al,0x51(%ebp) 40a8: c8 1d 00 00 enter $0x1d,$0x0 40ac: 02 23 add (%ebx),%ah 40ae: 00 0b add %cl,(%ebx) 40b0: 6e outsb %ds:(%esi),(%dx) 40b1: 6f outsl %ds:(%esi),(%dx) 40b2: 64 fs 40b3: 65 gs 40b4: 5f pop %edi 40b5: 6c insb (%dx),%es:(%edi) 40b6: 69 73 74 00 45 52 c8 imul $0xc8524500,0x74(%ebx),%esi 40bd: 1d 00 00 02 23 sbb $0x23020000,%eax 40c2: 08 00 or %al,(%eax) 40c4: 0e push %cs 40c5: fa cli 40c6: 40 inc %eax 40c7: 00 00 add %al,(%eax) 40c9: 72 6c jb 4137 <.debug_info+0x4137> 40cb: 69 6d 69 74 00 08 42 imul $0x42080074,0x69(%ebp),%ebp 40d2: 2a 0b sub (%ebx),%cl 40d4: 72 6c jb 4142 <.debug_info+0x4142> 40d6: 69 6d 5f 63 75 72 00 imul $0x727563,0x5f(%ebp),%ebp 40dd: 42 inc %edx 40de: 2b 98 00 00 00 02 sub 0x2000000(%eax),%ebx 40e4: 23 00 and (%eax),%eax 40e6: 0b 72 6c or 0x6c(%edx),%esi 40e9: 69 6d 5f 6d 61 78 00 imul $0x78616d,0x5f(%ebp),%ebp 40f0: 42 inc %edx 40f1: 2c 98 sub $0x98,%al 40f3: 00 00 add %al,(%eax) 40f5: 00 02 add %al,(%edx) 40f7: 23 04 00 and (%eax,%eax,1),%eax 40fa: 0e push %cs 40fb: 5a pop %edx 40fc: 41 inc %ecx 40fd: 00 00 add %al,(%eax) 40ff: 74 69 je 416a <.debug_info+0x416a> 4101: 6d insl (%dx),%es:(%edi) 4102: 65 gs 4103: 72 5f jb 4164 <.debug_info+0x4164> 4105: 6c insb (%dx),%es:(%edi) 4106: 69 73 74 00 18 08 0a imul $0xa081800,0x74(%ebx),%esi 410d: 0f 97 02 seta (%edx) 4110: 00 00 add %al,(%eax) 4112: 08 0b or %cl,(%ebx) 4114: c8 1d 00 00 enter $0x1d,$0x0 4118: 02 23 add (%ebx),%ah 411a: 00 0b add %cl,(%ebx) 411c: 65 gs 411d: 78 70 js 418f <.debug_info+0x418f> 411f: 69 72 65 73 00 08 0c imul $0xc080073,0x65(%edx),%esi 4126: 98 cwtl 4127: 00 00 add %al,(%eax) 4129: 00 02 add %al,(%edx) 412b: 23 08 and (%eax),%ecx 412d: 0f 1e (bad) 412f: 02 00 add (%eax),%al 4131: 00 08 add %cl,(%eax) 4133: 0e push %cs 4134: 66 41 inc %cx 4136: 00 00 add %al,(%eax) 4138: 02 23 add (%ebx),%ah 413a: 0c 0b or $0xb,%al 413c: 64 fs 413d: 61 popa 413e: 74 61 je 41a1 <.debug_info+0x41a1> 4140: 00 08 add %cl,(%eax) 4142: 0f 98 00 sets (%eax) 4145: 00 00 add %al,(%eax) 4147: 02 23 add (%ebx),%ah 4149: 10 0b adc %cl,(%ebx) 414b: 62 61 73 bound %esp,0x73(%ecx) 414e: 65 00 08 add %cl,%gs:(%eax) 4151: 11 7c 41 00 adc %edi,0x0(%ecx,%eax,2) 4155: 00 02 add %al,(%edx) 4157: 23 14 00 and (%eax,%eax,1),%edx 415a: 07 pop %es 415b: 66 41 inc %cx 415d: 00 00 add %al,(%eax) 415f: 01 08 add %ecx,(%eax) 4161: 98 cwtl 4162: 00 00 add %al,(%eax) 4164: 00 00 add %al,(%eax) 4166: 06 push %es 4167: 04 5a add $0x5a,%al 4169: 41 inc %ecx 416a: 00 00 add %al,(%eax) 416c: 26 es 416d: 74 76 je 41e5 <.debug_info+0x41e5> 416f: 65 63 5f 74 arpl %bx,%gs:0x74(%edi) 4173: 5f pop %edi 4174: 62 61 73 bound %esp,0x73(%ecx) 4177: 65 gs 4178: 5f pop %edi 4179: 73 00 jae 417b <.debug_info+0x417b> 417b: 01 06 add %eax,(%esi) 417d: 04 6c add $0x6c,%al 417f: 41 inc %ecx 4180: 00 00 add %al,(%eax) 4182: 25 97 41 00 00 and $0x4197,%eax 4187: 08 41 39 or %al,0x39(%ecx) 418a: 24 74 and $0x74,%al 418c: 76 36 jbe 41c4 <.debug_info+0x41c4> 418e: 34 00 xor $0x0,%al 4190: 41 inc %ecx 4191: 2f das 4192: fc cld 4193: 02 00 add (%eax),%al 4195: 00 00 add %al,(%eax) 4197: 09 6b 74 or %ebp,0x74(%ebx) 419a: 69 6d 65 5f 74 00 41 imul $0x4100745f,0x65(%ebp),%ebp 41a1: 39 82 41 00 00 0e cmp %eax,0xe000041(%edx) 41a7: f4 hlt 41a8: 41 inc %ecx 41a9: 00 00 add %al,(%eax) 41ab: 68 72 74 69 6d push $0x6d697472 41b0: 65 gs 41b1: 72 00 jb 41b3 <.debug_info+0x41b3> 41b3: 1c 08 sbb $0x8,%al 41b5: 62 0f bound %ecx,(%edi) 41b7: ba 02 00 00 40 mov $0x40000002,%edx 41bc: 35 46 20 00 00 xor $0x2046,%eax 41c1: 02 23 add (%ebx),%ah 41c3: 00 0b add %cl,(%ebx) 41c5: 65 gs 41c6: 78 70 js 4238 <.debug_info+0x4238> 41c8: 69 72 65 73 00 40 36 imul $0x36400073,0x65(%edx),%esi 41cf: 97 xchg %eax,%edi 41d0: 41 inc %ecx 41d1: 00 00 add %al,(%eax) 41d3: 02 23 add (%ebx),%ah 41d5: 0c 0f or $0xf,%al 41d7: 1e push %ds 41d8: 02 00 add (%eax),%al 41da: 00 40 37 add %al,0x37(%eax) 41dd: 0a 42 00 or 0x0(%edx),%al 41e0: 00 02 add %al,(%edx) 41e2: 23 14 0b and (%ebx,%ecx,1),%edx 41e5: 62 61 73 bound %esp,0x73(%ecx) 41e8: 65 00 40 38 add %al,%gs:0x38(%eax) 41ec: e7 42 out %eax,$0x42 41ee: 00 00 add %al,(%eax) 41f0: 02 23 add (%ebx),%ah 41f2: 18 00 sbb %al,(%eax) 41f4: 0c 04 or $0x4,%al 41f6: 42 inc %edx 41f7: 00 00 add %al,(%eax) 41f9: 01 7a 00 add %edi,0x0(%edx) 41fc: 00 00 add %al,(%eax) 41fe: 08 04 42 or %al,(%edx,%eax,2) 4201: 00 00 add %al,(%eax) 4203: 00 06 add %al,(%esi) 4205: 04 a6 add $0xa6,%al 4207: 41 inc %ecx 4208: 00 00 add %al,(%eax) 420a: 06 push %es 420b: 04 f4 add $0xf4,%al 420d: 41 inc %ecx 420e: 00 00 add %al,(%eax) 4210: 0e push %cs 4211: e7 42 out %eax,$0x42 4213: 00 00 add %al,(%eax) 4215: 68 72 74 69 6d push $0x6d697472 421a: 65 gs 421b: 72 5f jb 427c <.debug_info+0x427c> 421d: 62 61 73 bound %esp,0x73(%ecx) 4220: 65 00 38 add %bh,%gs:(%eax) 4223: 40 inc %eax 4224: 27 daa 4225: 0b 69 6e or 0x6e(%ecx),%ebp 4228: 64 fs 4229: 65 gs 422a: 78 00 js 422c <.debug_info+0x422c> 422c: 40 inc %eax 422d: 56 push %esi 422e: 7c 03 jl 4233 <.debug_info+0x4233> 4230: 00 00 add %al,(%eax) 4232: 02 23 add (%ebx),%ah 4234: 00 0f add %cl,(%edi) 4236: d6 (bad) 4237: 02 00 add (%eax),%al 4239: 00 40 57 add %al,0x57(%eax) 423c: 1e push %ds 423d: 1f pop %ds 423e: 00 00 add %al,(%eax) 4240: 02 23 add (%ebx),%ah 4242: 04 0b add $0xb,%al 4244: 61 popa 4245: 63 74 69 76 arpl %si,0x76(%ecx,%ebp,2) 4249: 65 00 40 58 add %al,%gs:0x58(%eax) 424d: 9c pushf 424e: 20 00 and %al,(%eax) 4250: 00 02 add %al,(%edx) 4252: 23 14 0b and (%ebx,%ecx,1),%edx 4255: 66 69 72 73 74 00 imul $0x74,0x73(%edx),%si 425b: 40 inc %eax 425c: 59 pop %ecx 425d: 96 xchg %eax,%esi 425e: 20 00 and %al,(%eax) 4260: 00 02 add %al,(%edx) 4262: 23 18 and (%eax),%ebx 4264: 0b 72 65 or 0x65(%edx),%esi 4267: 73 6f jae 42d8 <.debug_info+0x42d8> 4269: 6c insb (%dx),%es:(%edi) 426a: 75 74 jne 42e0 <.debug_info+0x42e0> 426c: 69 6f 6e 00 40 5a 97 imul $0x975a4000,0x6e(%edi),%ebp 4273: 41 inc %ecx 4274: 00 00 add %al,(%eax) 4276: 02 23 add (%ebx),%ah 4278: 1c 0b sbb $0xb,%al 427a: 67 addr16 427b: 65 gs 427c: 74 5f je 42dd <.debug_info+0x42dd> 427e: 74 69 je 42e9 <.debug_info+0x42e9> 4280: 6d insl (%dx),%es:(%edi) 4281: 65 00 40 5b add %al,%gs:0x5b(%eax) 4285: f3 42 repz inc %edx 4287: 00 00 add %al,(%eax) 4289: 02 23 add (%ebx),%ah 428b: 24 0b and $0xb,%al 428d: 67 addr16 428e: 65 gs 428f: 74 5f je 42f0 <.debug_info+0x42f0> 4291: 73 6f jae 4302 <.debug_info+0x4302> 4293: 66 data16 4294: 74 69 je 42ff <.debug_info+0x42ff> 4296: 72 71 jb 4309 <.debug_info+0x4309> 4298: 5f pop %edi 4299: 74 69 je 4304 <.debug_info+0x4304> 429b: 6d insl (%dx),%es:(%edi) 429c: 65 00 40 5c add %al,%gs:0x5c(%eax) 42a0: f3 42 repz inc %edx 42a2: 00 00 add %al,(%eax) 42a4: 02 23 add (%ebx),%ah 42a6: 28 0b sub %cl,(%ebx) 42a8: 63 75 72 arpl %si,0x72(%ebp) 42ab: 72 5f jb 430c <.debug_info+0x430c> 42ad: 74 69 je 4318 <.debug_info+0x4318> 42af: 6d insl (%dx),%es:(%edi) 42b0: 65 gs 42b1: 72 00 jb 42b3 <.debug_info+0x42b3> 42b3: 40 inc %eax 42b4: 5d pop %ebp 42b5: 04 42 add $0x42,%al 42b7: 00 00 add %al,(%eax) 42b9: 02 23 add (%ebx),%ah 42bb: 2c 0b sub $0xb,%al 42bd: 73 6f jae 432e <.debug_info+0x432e> 42bf: 66 data16 42c0: 74 69 je 432b <.debug_info+0x432b> 42c2: 72 71 jb 4335 <.debug_info+0x4335> 42c4: 5f pop %edi 42c5: 74 69 je 4330 <.debug_info+0x4330> 42c7: 6d insl (%dx),%es:(%edi) 42c8: 65 00 40 5e add %al,%gs:0x5e(%eax) 42cc: 97 xchg %eax,%edi 42cd: 41 inc %ecx 42ce: 00 00 add %al,(%eax) 42d0: 02 23 add (%ebx),%ah 42d2: 30 0b xor %cl,(%ebx) 42d4: 6c insb (%dx),%es:(%edi) 42d5: 6f outsl %ds:(%esi),(%dx) 42d6: 63 6b 5f arpl %bp,0x5f(%ebx) 42d9: 6b 65 79 00 imul $0x0,0x79(%ebp),%esp 42dd: 40 inc %eax 42de: 5f pop %edi 42df: 65 gs 42e0: 1e push %ds 42e1: 00 00 add %al,(%eax) 42e3: 02 23 add (%ebx),%ah 42e5: 38 00 cmp %al,(%eax) 42e7: 06 push %es 42e8: 04 10 add $0x10,%al 42ea: 42 inc %edx 42eb: 00 00 add %al,(%eax) 42ed: 21 01 and %eax,(%ecx) 42ef: 97 xchg %eax,%edi 42f0: 41 inc %ecx 42f1: 00 00 add %al,(%eax) 42f3: 06 push %es 42f4: 04 ed add $0xed,%al 42f6: 42 inc %edx 42f7: 00 00 add %al,(%eax) 42f9: 0e push %cs 42fa: 6e outsb %ds:(%esi),(%dx) 42fb: 43 inc %ebx 42fc: 00 00 add %al,(%eax) 42fe: 77 6f ja 436f <.debug_info+0x436f> 4300: 72 6b jb 436d <.debug_info+0x436d> 4302: 5f pop %edi 4303: 73 74 jae 4379 <.debug_info+0x4379> 4305: 72 75 jb 437c <.debug_info+0x437c> 4307: 63 74 00 30 arpl %si,0x30(%eax,%eax,1) 430b: 03 0e add (%esi),%ecx 430d: 0b 70 65 or 0x65(%eax),%esi 4310: 6e outsb %ds:(%esi),(%dx) 4311: 64 69 6e 67 00 03 0f imul $0x980f0300,%fs:0x67(%esi),%ebp 4318: 98 4319: 00 00 add %al,(%eax) 431b: 00 02 add %al,(%edx) 431d: 23 00 and (%eax),%eax 431f: 0f 97 02 seta (%edx) 4322: 00 00 add %al,(%eax) 4324: 03 10 add (%eax),%edx 4326: c8 1d 00 00 enter $0x1d,$0x0 432a: 02 23 add (%ebx),%ah 432c: 04 0b add $0xb,%al 432e: 66 data16 432f: 75 6e jne 439f <.debug_info+0x439f> 4331: 63 00 arpl %ax,(%eax) 4333: 03 11 add (%ecx),%edx 4335: 7a 43 jp 437a <.debug_info+0x437a> 4337: 00 00 add %al,(%eax) 4339: 02 23 add (%ebx),%ah 433b: 0c 0b or $0xb,%al 433d: 64 fs 433e: 61 popa 433f: 74 61 je 43a2 <.debug_info+0x43a2> 4341: 00 03 add %al,(%ebx) 4343: 12 b7 1d 00 00 02 adc 0x200001d(%edi),%dh 4349: 23 10 and (%eax),%edx 434b: 0b 77 71 or 0x71(%edi),%esi 434e: 5f pop %edi 434f: 64 fs 4350: 61 popa 4351: 74 61 je 43b4 <.debug_info+0x43b4> 4353: 00 03 add %al,(%ebx) 4355: 13 b7 1d 00 00 02 adc 0x200001d(%edi),%esi 435b: 23 14 0b and (%ebx,%ecx,1),%edx 435e: 74 69 je 43c9 <.debug_info+0x43c9> 4360: 6d insl (%dx),%es:(%edi) 4361: 65 gs 4362: 72 00 jb 4364 <.debug_info+0x4364> 4364: 03 14 fa add (%edx,%edi,8),%edx 4367: 40 inc %eax 4368: 00 00 add %al,(%eax) 436a: 02 23 add (%ebx),%ah 436c: 18 00 sbb %al,(%eax) 436e: 07 pop %es 436f: 7a 43 jp 43b4 <.debug_info+0x43b4> 4371: 00 00 add %al,(%eax) 4373: 01 08 add %ecx,(%eax) 4375: b7 1d mov $0x1d,%bh 4377: 00 00 add %al,(%eax) 4379: 00 06 add %al,(%esi) 437b: 04 6e add $0x6e,%al 437d: 43 inc %ebx 437e: 00 00 add %al,(%eax) 4380: 0e push %cs 4381: cc int3 4382: 43 inc %ebx 4383: 00 00 add %al,(%eax) 4385: 69 6f 5f 65 76 65 6e imul $0x6e657665,0x5f(%edi),%ebp 438c: 74 00 je 438e <.debug_info+0x438e> 438e: 20 31 and %dh,(%ecx) 4390: 2f das 4391: 0b 64 61 74 or 0x74(%ecx),%esp 4395: 61 popa 4396: 00 31 add %dh,(%ecx) 4398: 30 b6 02 00 00 02 xor %dh,0x2000002(%esi) 439e: 23 00 and (%eax),%eax 43a0: 0b 6f 62 or 0x62(%edi),%ebp 43a3: 6a 00 push $0x0 43a5: 31 31 xor %esi,(%ecx) 43a7: b6 02 mov $0x2,%dh 43a9: 00 00 add %al,(%eax) 43ab: 02 23 add (%ebx),%ah 43ad: 08 0b or %cl,(%ebx) 43af: 72 65 jb 4416 <.debug_info+0x4416> 43b1: 73 00 jae 43b3 <.debug_info+0x43b3> 43b3: 31 32 xor %esi,(%edx) 43b5: a9 02 00 00 02 test $0x2000002,%eax 43ba: 23 10 and (%eax),%edx 43bc: 0b 72 65 or 0x65(%edx),%esi 43bf: 73 32 jae 43f3 <.debug_info+0x43f3> 43c1: 00 31 add %dh,(%ecx) 43c3: 33 a9 02 00 00 02 xor 0x2000002(%ecx),%ebp 43c9: 23 18 and (%eax),%ebx 43cb: 00 25 ec 43 00 00 add %ah,0x43ec 43d1: 04 30 add $0x30,%al 43d3: 64 fs 43d4: 24 75 and $0x75,%al 43d6: 73 65 jae 443d <.debug_info+0x443d> 43d8: 72 00 jb 43da <.debug_info+0x43da> 43da: 30 62 b7 xor %ah,0xffffffb7(%edx) 43dd: 1d 00 00 24 74 sbb $0x74240000,%eax 43e2: 73 6b jae 444f <.debug_info+0x444f> 43e4: 00 30 add %dh,(%eax) 43e6: 63 a5 1d 00 00 00 arpl %sp,0x1d(%ebp) 43ec: 0e push %cs 43ed: 97 xchg %eax,%edi 43ee: 45 inc %ebp 43ef: 00 00 add %al,(%eax) 43f1: 6b 69 6f 63 imul $0x63,0x6f(%ecx),%ebp 43f5: 62 00 bound %eax,(%eax) 43f7: 78 30 js 4429 <.debug_info+0x4429> 43f9: 55 push %ebp 43fa: 0b 6b 69 or 0x69(%ebx),%ebp 43fd: 5f pop %edi 43fe: 72 75 jb 4475 <.debug_info+0x4475> 4400: 6e outsb %ds:(%esi),(%dx) 4401: 5f pop %edi 4402: 6c insb (%dx),%es:(%edi) 4403: 69 73 74 00 30 56 c8 imul $0xc8563000,0x74(%ebx),%esi 440a: 1d 00 00 02 23 sbb $0x23020000,%eax 440f: 00 0b add %cl,(%ebx) 4411: 6b 69 5f 66 imul $0x66,0x5f(%ecx),%ebp 4415: 6c insb (%dx),%es:(%edi) 4416: 61 popa 4417: 67 73 00 addr16 jae 441a <.debug_info+0x441a> 441a: 30 57 02 xor %dl,0x2(%edi) 441d: 01 00 add %eax,(%eax) 441f: 00 02 add %al,(%edx) 4421: 23 08 and (%eax),%ecx 4423: 0b 6b 69 or 0x69(%ebx),%ebp 4426: 5f pop %edi 4427: 75 73 jne 449c <.debug_info+0x449c> 4429: 65 gs 442a: 72 73 jb 449f <.debug_info+0x449f> 442c: 00 30 add %dh,(%eax) 442e: 58 pop %eax 442f: 7a 00 jp 4431 <.debug_info+0x4431> 4431: 00 00 add %al,(%eax) 4433: 02 23 add (%ebx),%ah 4435: 0c 0b or $0xb,%al 4437: 6b 69 5f 6b imul $0x6b,0x5f(%ecx),%ebp 443b: 65 gs 443c: 79 00 jns 443e <.debug_info+0x443e> 443e: 30 59 3b xor %bl,0x3b(%ecx) 4441: 01 00 add %eax,(%eax) 4443: 00 02 add %al,(%edx) 4445: 23 10 and (%eax),%edx 4447: 0b 6b 69 or 0x69(%ebx),%ebp 444a: 5f pop %edi 444b: 66 69 6c 70 00 30 5b imul $0x5b30,0x0(%eax,%esi,2),%bp 4452: 03 47 00 add 0x0(%edi),%eax 4455: 00 02 add %al,(%edx) 4457: 23 14 0b and (%ebx,%ecx,1),%edx 445a: 6b 69 5f 63 imul $0x63,0x5f(%ecx),%ebp 445e: 74 78 je 44d8 <.debug_info+0x44d8> 4460: 00 30 add %dh,(%eax) 4462: 5c pop %esp 4463: f6 47 00 00 testb $0x0,0x0(%edi) 4467: 02 23 add (%ebx),%ah 4469: 18 0b sbb %cl,(%ebx) 446b: 6b 69 5f 63 imul $0x63,0x5f(%ecx),%ebp 446f: 61 popa 4470: 6e outsb %ds:(%esi),(%dx) 4471: 63 65 6c arpl %sp,0x6c(%ebp) 4474: 00 30 add %dh,(%eax) 4476: 5d pop %ebp 4477: 1d 48 00 00 02 sbb $0x2000048,%eax 447c: 23 1c 0b and (%ebx,%ecx,1),%ebx 447f: 6b 69 5f 72 imul $0x72,0x5f(%ecx),%ebp 4483: 65 gs 4484: 74 72 je 44f8 <.debug_info+0x44f8> 4486: 79 00 jns 4488 <.debug_info+0x4488> 4488: 30 5e 33 xor %bl,0x33(%esi) 448b: 48 dec %eax 448c: 00 00 add %al,(%eax) 448e: 02 23 add (%ebx),%ah 4490: 20 0b and %cl,(%ebx) 4492: 6b 69 5f 64 imul $0x64,0x5f(%ecx),%ebp 4496: 74 6f je 4507 <.debug_info+0x4507> 4498: 72 00 jb 449a <.debug_info+0x449a> 449a: 30 5f 45 xor %bl,0x45(%edi) 449d: 48 dec %eax 449e: 00 00 add %al,(%eax) 44a0: 02 23 add (%ebx),%ah 44a2: 24 0b and $0xb,%al 44a4: 6b 69 5f 6f imul $0x6f,0x5f(%ecx),%ebp 44a8: 62 6a 00 bound %ebp,0x0(%edx) 44ab: 30 64 cc 43 xor %ah,0x43(%esp,%ecx,8) 44af: 00 00 add %al,(%eax) 44b1: 02 23 add (%ebx),%ah 44b3: 28 0b sub %cl,(%ebx) 44b5: 6b 69 5f 75 imul $0x75,0x5f(%ecx),%ebp 44b9: 73 65 jae 4520 <.debug_info+0x4520> 44bb: 72 5f jb 451c <.debug_info+0x451c> 44bd: 64 fs 44be: 61 popa 44bf: 74 61 je 4522 <.debug_info+0x4522> 44c1: 00 30 add %dh,(%eax) 44c3: 66 data16 44c4: b6 02 mov $0x2,%dh 44c6: 00 00 add %al,(%eax) 44c8: 02 23 add (%ebx),%ah 44ca: 2c 0b sub $0xb,%al 44cc: 6b 69 5f 77 imul $0x77,0x5f(%ecx),%ebp 44d0: 61 popa 44d1: 69 74 00 30 67 bf 20 imul $0x20bf67,0x30(%eax,%eax,1),%esi 44d8: 00 44d9: 00 02 add %al,(%edx) 44db: 23 34 0b and (%ebx,%ecx,1),%esi 44de: 6b 69 5f 70 imul $0x70,0x5f(%ecx),%ebp 44e2: 6f outsl %ds:(%esi),(%dx) 44e3: 73 00 jae 44e5 <.debug_info+0x44e5> 44e5: 30 68 a7 xor %ch,0xffffffa7(%eax) 44e8: 03 00 add (%eax),%eax 44ea: 00 02 add %al,(%edx) 44ec: 23 48 0f and 0xf(%eax),%ecx 44ef: 6a 00 push $0x0 44f1: 00 00 add %al,(%eax) 44f3: 30 6a b7 xor %ch,0xffffffb7(%edx) 44f6: 1d 00 00 02 23 sbb $0x23020000,%eax 44fb: 50 push %eax 44fc: 0b 6b 69 or 0x69(%ebx),%ebp 44ff: 5f pop %edi 4500: 6f outsl %ds:(%esi),(%dx) 4501: 70 63 jo 4566 <.debug_info+0x4566> 4503: 6f outsl %ds:(%esi),(%dx) 4504: 64 65 00 30 add %dh,%fs:%gs:(%eax) 4508: 6c insb (%dx),%es:(%edi) 4509: ec in (%dx),%al 450a: 00 00 add %al,(%eax) 450c: 00 02 add %al,(%edx) 450e: 23 54 0b 6b and 0x6b(%ebx,%ecx,1),%edx 4512: 69 5f 6e 62 79 74 65 imul $0x65747962,0x6e(%edi),%ebx 4519: 73 00 jae 451b <.debug_info+0x451b> 451b: 30 6d b5 xor %ch,0xffffffb5(%ebp) 451e: 03 00 add (%eax),%eax 4520: 00 02 add %al,(%edx) 4522: 23 58 0b and 0xb(%eax),%ebx 4525: 6b 69 5f 62 imul $0x62,0x5f(%ecx),%ebp 4529: 75 66 jne 4591 <.debug_info+0x4591> 452b: 00 30 add %dh,(%eax) 452d: 6e outsb %ds:(%esi),(%dx) 452e: bb 01 00 00 02 mov $0x2000001,%ebx 4533: 23 5c 0b 6b and 0x6b(%ebx,%ecx,1),%ebx 4537: 69 5f 6c 65 66 74 00 imul $0x746665,0x6c(%edi),%ebx 453e: 30 6f b5 xor %ch,0xffffffb5(%edi) 4541: 03 00 add (%eax),%eax 4543: 00 02 add %al,(%edx) 4545: 23 60 0b and 0xb(%eax),%esp 4548: 6b 69 5f 72 imul $0x72,0x5f(%ecx),%ebp 454c: 65 gs 454d: 74 72 je 45c1 <.debug_info+0x45c1> 454f: 69 65 64 00 30 70 02 imul $0x2703000,0x64(%ebp),%esp 4556: 01 00 add %eax,(%eax) 4558: 00 02 add %al,(%edx) 455a: 23 64 0b 6b and 0x6b(%ebx,%ecx,1),%esp 455e: 69 5f 6b 69 63 6b 65 imul $0x656b6369,0x6b(%edi),%ebx 4565: 64 00 30 add %dh,%fs:(%eax) 4568: 71 02 jno 456c <.debug_info+0x456c> 456a: 01 00 add %eax,(%eax) 456c: 00 02 add %al,(%edx) 456e: 23 68 0b and 0xb(%eax),%ebp 4571: 6b 69 5f 71 imul $0x71,0x5f(%ecx),%ebp 4575: 75 65 jne 45dc <.debug_info+0x45dc> 4577: 75 65 jne 45de <.debug_info+0x45de> 4579: 64 00 30 add %dh,%fs:(%eax) 457c: 72 02 jb 4580 <.debug_info+0x4580> 457e: 01 00 add %eax,(%eax) 4580: 00 02 add %al,(%edx) 4582: 23 6c 0b 6b and 0x6b(%ebx,%ecx,1),%ebp 4586: 69 5f 6c 69 73 74 00 imul $0x747369,0x6c(%edi),%ebx 458d: 30 74 c8 1d xor %dh,0x1d(%eax,%ecx,8) 4591: 00 00 add %al,(%eax) 4593: 02 23 add (%ebx),%ah 4595: 70 00 jo 4597 <.debug_info+0x4597> 4597: 11 03 adc %eax,(%ebx) 4599: 47 inc %edi 459a: 00 00 add %al,(%eax) 459c: 66 69 6c 65 00 a4 1d imul $0x1da4,0x0(%ebp),%bp 45a3: 9b fwait 45a4: 01 12 add %edx,(%edx) 45a6: 66 5f pop %di 45a8: 75 00 jne 45aa <.debug_info+0x45aa> 45aa: 0a a7 02 3f 88 00 or 0x883f02(%edi),%ah 45b0: 00 02 add %al,(%edx) 45b2: 23 00 and (%eax),%eax 45b4: 12 66 5f adc 0x5f(%esi),%ah 45b7: 64 65 6e outsb %fs:%gs:(%esi),(%dx) 45ba: 74 72 je 462e <.debug_info+0x462e> 45bc: 79 00 jns 45be <.debug_info+0x45be> 45be: 0a a8 02 f7 35 00 or 0x35f702(%eax),%ch 45c4: 00 02 add %al,(%edx) 45c6: 23 08 and (%eax),%ecx 45c8: 12 66 5f adc 0x5f(%esi),%ah 45cb: 76 66 jbe 4633 <.debug_info+0x4633> 45cd: 73 6d jae 463c <.debug_info+0x463c> 45cf: 6e outsb %ds:(%esi),(%dx) 45d0: 74 00 je 45d2 <.debug_info+0x45d2> 45d2: 0a a9 02 08 36 00 or 0x360802(%ecx),%ch 45d8: 00 02 add %al,(%edx) 45da: 23 0c 12 and (%edx,%edx,1),%ecx 45dd: 66 5f pop %di 45df: 6f outsl %ds:(%esi),(%dx) 45e0: 70 00 jo 45e2 <.debug_info+0x45e2> 45e2: 0a aa 02 5f 85 00 or 0x855f02(%edx),%ch 45e8: 00 02 add %al,(%edx) 45ea: 23 10 and (%eax),%edx 45ec: 12 66 5f adc 0x5f(%esi),%ah 45ef: 63 6f 75 arpl %bp,0x75(%edi) 45f2: 6e outsb %ds:(%esi),(%dx) 45f3: 74 00 je 45f5 <.debug_info+0x45f5> 45f5: 0a ab 02 a1 1f 00 or 0x1fa102(%ebx),%ch 45fb: 00 02 add %al,(%edx) 45fd: 23 14 12 and (%edx,%edx,1),%edx 4600: 66 5f pop %di 4602: 66 data16 4603: 6c insb (%dx),%es:(%edi) 4604: 61 popa 4605: 67 73 00 addr16 jae 4608 <.debug_info+0x4608> 4608: 0a ac 02 3b 01 00 00 or 0x13b(%edx,%eax,1),%ch 460f: 02 23 add (%ebx),%ah 4611: 18 12 sbb %dl,(%edx) 4613: 66 5f pop %di 4615: 6d insl (%dx),%es:(%edi) 4616: 6f outsl %ds:(%esi),(%dx) 4617: 64 65 00 0a add %cl,%fs:%gs:(%edx) 461b: ad lods %ds:(%esi),%eax 461c: 02 52 03 add 0x3(%edx),%dl 461f: 00 00 add %al,(%eax) 4621: 02 23 add (%ebx),%ah 4623: 1c 12 sbb $0x12,%al 4625: 66 5f pop %di 4627: 70 6f jo 4698 <.debug_info+0x4698> 4629: 73 00 jae 462b <.debug_info+0x462b> 462b: 0a ae 02 a7 03 00 or 0x3a702(%esi),%ch 4631: 00 02 add %al,(%edx) 4633: 23 20 and (%eax),%esp 4635: 12 66 5f adc 0x5f(%esi),%ah 4638: 6f outsl %ds:(%esi),(%dx) 4639: 77 6e ja 46a9 <.debug_info+0x46a9> 463b: 65 gs 463c: 72 00 jb 463e <.debug_info+0x463e> 463e: 0a af 02 ef 86 00 or 0x86ef02(%edi),%ch 4644: 00 02 add %al,(%edx) 4646: 23 28 and (%eax),%ebp 4648: 12 66 5f adc 0x5f(%esi),%ah 464b: 75 69 jne 46b6 <.debug_info+0x46b6> 464d: 64 00 0a add %cl,%fs:(%edx) 4650: b0 02 mov $0x2,%al 4652: 3b 01 cmp (%ecx),%eax 4654: 00 00 add %al,(%eax) 4656: 02 23 add (%ebx),%ah 4658: 4c dec %esp 4659: 12 66 5f adc 0x5f(%esi),%ah 465c: 67 69 64 00 0a b0 02 addr16 imul $0x3b02b00a,0(%si),%esp 4663: 3b 4664: 01 00 add %eax,(%eax) 4666: 00 02 add %al,(%edx) 4668: 23 50 12 and 0x12(%eax),%edx 466b: 66 5f pop %di 466d: 72 61 jb 46d0 <.debug_info+0x46d0> 466f: 00 0a add %cl,(%edx) 4671: b1 02 mov $0x2,%cl 4673: 63 87 00 00 02 23 arpl %ax,0x23020000(%edi) 4679: 54 push %esp 467a: 12 66 5f adc 0x5f(%esi),%ah 467d: 76 65 jbe 46e4 <.debug_info+0x46e4> 467f: 72 73 jb 46f4 <.debug_info+0x46f4> 4681: 69 6f 6e 00 0a b3 02 imul $0x2b30a00,0x6e(%edi),%ebp 4688: 98 cwtl 4689: 00 00 add %al,(%eax) 468b: 00 02 add %al,(%edx) 468d: 23 7c 12 66 and 0x66(%edx,%edx,1),%edi 4691: 5f pop %edi 4692: 73 65 jae 46f9 <.debug_info+0x46f9> 4694: 63 75 72 arpl %si,0x72(%ebp) 4697: 69 74 79 00 0a b4 02 imul $0xb702b40a,0x0(%ecx,%edi,2),%esi 469e: b7 469f: 1d 00 00 03 23 sbb $0x23030000,%eax 46a4: 80 01 12 addb $0x12,(%ecx) 46a7: 70 72 jo 471b <.debug_info+0x471b> 46a9: 69 76 61 74 65 5f 64 imul $0x645f6574,0x61(%esi),%esi 46b0: 61 popa 46b1: 74 61 je 4714 <.debug_info+0x4714> 46b3: 00 0a add %cl,(%edx) 46b5: b7 02 mov $0x2,%bh 46b7: b7 1d mov $0x1d,%bh 46b9: 00 00 add %al,(%eax) 46bb: 03 23 add (%ebx),%esp 46bd: 84 01 test %al,(%ecx) 46bf: 12 66 5f adc 0x5f(%esi),%ah 46c2: 65 gs 46c3: 70 5f jo 4724 <.debug_info+0x4724> 46c5: 6c insb (%dx),%es:(%edi) 46c6: 69 6e 6b 73 00 0a bb imul $0xbb0a0073,0x6b(%esi),%ebp 46cd: 02 c8 add %al,%cl 46cf: 1d 00 00 03 23 sbb $0x23030000,%eax 46d4: 88 01 mov %al,(%ecx) 46d6: 12 66 5f adc 0x5f(%esi),%ah 46d9: 65 gs 46da: 70 5f jo 473b <.debug_info+0x473b> 46dc: 6c insb (%dx),%es:(%edi) 46dd: 6f outsl %ds:(%esi),(%dx) 46de: 63 6b 00 arpl %bp,0x0(%ebx) 46e1: 0a bc 02 1e 1f 00 00 or 0x1f1e(%edx,%eax,1),%bh 46e8: 03 23 add (%ebx),%esp 46ea: 90 nop 46eb: 01 12 add %edx,(%edx) 46ed: 66 5f pop %di 46ef: 6d insl (%dx),%es:(%edi) 46f0: 61 popa 46f1: 70 70 jo 4763 <.debug_info+0x4763> 46f3: 69 6e 67 00 0a be 02 imul $0x2be0a00,0x67(%esi),%ebp 46fa: ba 7c 00 00 03 mov $0x300007c,%edx 46ff: 23 a0 01 00 06 04 and 0x4060001(%eax),%esp 4705: 97 xchg %eax,%edi 4706: 45 inc %ebp 4707: 00 00 add %al,(%eax) 4709: 0e push %cs 470a: f6 47 00 00 testb $0x0,0x0(%edi) 470e: 6b 69 6f 63 imul $0x63,0x6f(%ecx),%ebp 4712: 74 78 je 478c <.debug_info+0x478c> 4714: 00 cc add %cl,%ah 4716: 30 0d 0b 75 73 65 xor %cl,0x6573750b 471c: 72 73 jb 4791 <.debug_info+0x4791> 471e: 00 30 add %dh,(%eax) 4720: ac lods %ds:(%esi),%al 4721: a1 1f 00 00 02 mov 0x200001f,%eax 4726: 23 00 and (%eax),%eax 4728: 0b 64 65 61 or 0x61(%ebp),%esp 472c: 64 00 30 add %dh,%fs:(%eax) 472f: ad lods %ds:(%esi),%eax 4730: 7a 00 jp 4732 <.debug_info+0x4732> 4732: 00 00 add %al,(%eax) 4734: 02 23 add (%ebx),%ah 4736: 04 0b add $0xb,%al 4738: 6d insl (%dx),%es:(%edi) 4739: 6d insl (%dx),%es:(%edi) 473a: 00 30 add %dh,(%eax) 473c: ae scas %es:(%edi),%al 473d: 60 pusha 473e: 4d dec %ebp 473f: 00 00 add %al,(%eax) 4741: 02 23 add (%ebx),%ah 4743: 08 0b or %cl,(%ebx) 4745: 75 73 jne 47ba <.debug_info+0x47ba> 4747: 65 gs 4748: 72 5f jb 47a9 <.debug_info+0x47a9> 474a: 69 64 00 30 b1 98 00 imul $0x98b1,0x30(%eax,%eax,1),%esp 4751: 00 4752: 00 02 add %al,(%edx) 4754: 23 0c 0f and (%edi,%ecx,1),%ecx 4757: ae scas %es:(%edi),%al 4758: 03 00 add (%eax),%eax 475a: 00 30 add %dh,(%eax) 475c: b2 f6 mov $0xf6,%dl 475e: 47 inc %edi 475f: 00 00 add %al,(%eax) 4761: 02 23 add (%ebx),%ah 4763: 10 0b adc %cl,(%ebx) 4765: 77 61 ja 47c8 <.debug_info+0x47c8> 4767: 69 74 00 30 b4 9d 21 imul $0x219db4,0x30(%eax,%eax,1),%esi 476e: 00 476f: 00 02 add %al,(%edx) 4771: 23 14 0b and (%ebx,%ecx,1),%edx 4774: 63 74 78 5f arpl %si,0x5f(%eax,%edi,2) 4778: 6c insb (%dx),%es:(%edi) 4779: 6f outsl %ds:(%esi),(%dx) 477a: 63 6b 00 arpl %bp,0x0(%ebx) 477d: 30 b6 1e 1f 00 00 xor %dh,0x1f1e(%esi) 4783: 02 23 add (%ebx),%ah 4785: 2c 0b sub $0xb,%al 4787: 72 65 jb 47ee <.debug_info+0x47ee> 4789: 71 73 jno 47fe <.debug_info+0x47fe> 478b: 5f pop %edi 478c: 61 popa 478d: 63 74 69 76 arpl %si,0x76(%ecx,%ebp,2) 4791: 65 00 30 add %dh,%gs:(%eax) 4794: b8 7a 00 00 00 mov $0x7a,%eax 4799: 02 23 add (%ebx),%ah 479b: 3c 0b cmp $0xb,%al 479d: 61 popa 479e: 63 74 69 76 arpl %si,0x76(%ecx,%ebp,2) 47a2: 65 gs 47a3: 5f pop %edi 47a4: 72 65 jb 480b <.debug_info+0x480b> 47a6: 71 73 jno 481b <.debug_info+0x481b> 47a8: 00 30 add %dh,(%eax) 47aa: b9 c8 1d 00 00 mov $0x1dc8,%ecx 47af: 02 23 add (%ebx),%ah 47b1: 40 inc %eax 47b2: 0f xstore-rng (bad) 47b3: a7 cmpsl %es:(%edi),%ds:(%esi) 47b4: 02 00 add (%eax),%al 47b6: 00 30 add %dh,(%eax) 47b8: ba c8 1d 00 00 mov $0x1dc8,%edx 47bd: 02 23 add (%ebx),%ah 47bf: 48 dec %eax 47c0: 0b 6d 61 or 0x61(%ebp),%ebp 47c3: 78 5f js 4824 <.debug_info+0x4824> 47c5: 72 65 jb 482c <.debug_info+0x482c> 47c7: 71 73 jno 483c <.debug_info+0x483c> 47c9: 00 30 add %dh,(%eax) 47cb: bd 3b 01 00 00 mov $0x13b,%ebp 47d0: 02 23 add (%ebx),%ah 47d2: 50 push %eax 47d3: 0b 72 69 or 0x69(%edx),%esi 47d6: 6e outsb %ds:(%esi),(%dx) 47d7: 67 5f addr16 pop %edi 47d9: 69 6e 66 6f 00 30 bf imul $0xbf30006f,0x66(%esi),%ebp 47e0: 4b dec %ebx 47e1: 48 dec %eax 47e2: 00 00 add %al,(%eax) 47e4: 02 23 add (%ebx),%ah 47e6: 54 push %esp 47e7: 0b 77 71 or 0x71(%edi),%esi 47ea: 00 30 add %dh,(%eax) 47ec: c1 f9 42 sar $0x42,%ecx 47ef: 00 00 add %al,(%eax) 47f1: 03 23 add (%ebx),%esp 47f3: 9c pushf 47f4: 01 00 add %eax,(%eax) 47f6: 06 push %es 47f7: 04 09 add $0x9,%al 47f9: 47 inc %edi 47fa: 00 00 add %al,(%eax) 47fc: 0c 11 or $0x11,%al 47fe: 48 dec %eax 47ff: 00 00 add %al,(%eax) 4801: 01 7a 00 add %edi,0x0(%edx) 4804: 00 00 add %al,(%eax) 4806: 08 11 or %dl,(%ecx) 4808: 48 dec %eax 4809: 00 00 add %al,(%eax) 480b: 08 17 or %dl,(%edi) 480d: 48 dec %eax 480e: 00 00 add %al,(%eax) 4810: 00 06 add %al,(%esi) 4812: 04 ec add $0xec,%al 4814: 43 inc %ebx 4815: 00 00 add %al,(%eax) 4817: 06 push %es 4818: 04 80 add $0x80,%al 481a: 43 inc %ebx 481b: 00 00 add %al,(%eax) 481d: 06 push %es 481e: 04 fc add $0xfc,%al 4820: 47 inc %edi 4821: 00 00 add %al,(%eax) 4823: 0c 33 or $0x33,%al 4825: 48 dec %eax 4826: 00 00 add %al,(%eax) 4828: 01 c3 add %eax,%ebx 482a: 03 00 add (%eax),%eax 482c: 00 08 add %cl,(%eax) 482e: 11 48 00 adc %ecx,0x0(%eax) 4831: 00 00 add %al,(%eax) 4833: 06 push %es 4834: 04 23 add $0x23,%al 4836: 48 dec %eax 4837: 00 00 add %al,(%eax) 4839: 07 pop %es 483a: 45 inc %ebp 483b: 48 dec %eax 483c: 00 00 add %al,(%eax) 483e: 01 08 add %ecx,(%eax) 4840: 11 48 00 adc %ecx,0x0(%eax) 4843: 00 00 add %al,(%eax) 4845: 06 push %es 4846: 04 39 add $0x39,%al 4848: 48 dec %eax 4849: 00 00 add %al,(%eax) 484b: 0e push %cs 484c: f5 cmc 484d: 48 dec %eax 484e: 00 00 add %al,(%eax) 4850: 61 popa 4851: 69 6f 5f 72 69 6e 67 imul $0x676e6972,0x5f(%edi),%ebp 4858: 5f pop %edi 4859: 69 6e 66 6f 00 48 30 imul $0x3048006f,0x66(%esi),%ebp 4860: 9e sahf 4861: 0f b3 00 btr %eax,(%eax) 4864: 00 00 add %al,(%eax) 4866: 30 9f 98 00 00 00 xor %bl,0x98(%edi) 486c: 02 23 add (%ebx),%ah 486e: 00 0b add %cl,(%ebx) 4870: 6d insl (%dx),%es:(%edi) 4871: 6d insl (%dx),%es:(%edi) 4872: 61 popa 4873: 70 5f jo 48d4 <.debug_info+0x48d4> 4875: 73 69 jae 48e0 <.debug_info+0x48e0> 4877: 7a 65 jp 48de <.debug_info+0x48de> 4879: 00 30 add %dh,(%eax) 487b: a0 98 00 00 00 mov 0x98,%al 4880: 02 23 add (%ebx),%ah 4882: 04 0b add $0xb,%al 4884: 72 69 jb 48ef <.debug_info+0x48ef> 4886: 6e outsb %ds:(%esi),(%dx) 4887: 67 5f addr16 pop %edi 4889: 70 61 jo 48ec <.debug_info+0x48ec> 488b: 67 addr16 488c: 65 gs 488d: 73 00 jae 488f <.debug_info+0x488f> 488f: 30 a2 f5 48 00 00 xor %ah,0x48f5(%edx) 4895: 02 23 add (%ebx),%ah 4897: 08 0b or %cl,(%ebx) 4899: 72 69 jb 4904 <.debug_info+0x4904> 489b: 6e outsb %ds:(%esi),(%dx) 489c: 67 5f addr16 pop %edi 489e: 6c insb (%dx),%es:(%edi) 489f: 6f outsl %ds:(%esi),(%dx) 48a0: 63 6b 00 arpl %bp,0x0(%ebx) 48a3: 30 a3 1e 1f 00 00 xor %ah,0x1f1e(%ebx) 48a9: 02 23 add (%ebx),%ah 48ab: 0c 0b or $0xb,%al 48ad: 6e outsb %ds:(%esi),(%dx) 48ae: 72 5f jb 490f <.debug_info+0x490f> 48b0: 70 61 jo 4913 <.debug_info+0x4913> 48b2: 67 addr16 48b3: 65 gs 48b4: 73 00 jae 48b6 <.debug_info+0x48b6> 48b6: 30 a4 02 01 00 00 02 xor %ah,0x2000001(%edx,%eax,1) 48bd: 23 1c 0b and (%ebx,%ecx,1),%ebx 48c0: 6e outsb %ds:(%esi),(%dx) 48c1: 72 00 jb 48c3 <.debug_info+0x48c3> 48c3: 30 a6 3b 01 00 00 xor %ah,0x13b(%esi) 48c9: 02 23 add (%ebx),%ah 48cb: 20 0b and %cl,(%ebx) 48cd: 74 61 je 4930 <.debug_info+0x4930> 48cf: 69 6c 00 30 a6 3b 01 imul $0x13ba6,0x30(%eax,%eax,1),%ebp 48d6: 00 48d7: 00 02 add %al,(%edx) 48d9: 23 24 0b and (%ebx,%ecx,1),%esp 48dc: 69 6e 74 65 72 6e 61 imul $0x616e7265,0x74(%esi),%ebp 48e3: 6c insb (%dx),%es:(%edi) 48e4: 5f pop %edi 48e5: 70 61 jo 4948 <.debug_info+0x4948> 48e7: 67 addr16 48e8: 65 gs 48e9: 73 00 jae 48eb <.debug_info+0x48eb> 48eb: 30 a8 fb 48 00 00 xor %ch,0x48fb(%eax) 48f1: 02 23 add (%ebx),%ah 48f3: 28 00 sub %al,(%eax) 48f5: 06 push %es 48f6: 04 94 add $0x94,%al 48f8: 3c 00 cmp $0x0,%al 48fa: 00 03 add %al,(%ebx) 48fc: 0b 49 00 or 0x0(%ecx),%ecx 48ff: 00 94 3c 00 00 04 91 add %dl,0x91040000(%esp,%edi,1) 4906: 00 00 add %al,(%eax) 4908: 00 07 add %al,(%edi) 490a: 00 14 60 add %dl,(%eax) 490d: 4d dec %ebp 490e: 00 00 add %al,(%eax) 4910: 6d insl (%dx),%es:(%edi) 4911: 6d insl (%dx),%es:(%edi) 4912: 5f pop %edi 4913: 73 74 jae 4989 <.debug_info+0x4989> 4915: 72 75 jb 498c <.debug_info+0x498c> 4917: 63 74 00 e8 arpl %si,0xffffffe8(%eax,%eax,1) 491b: 01 17 add %edx,(%edi) 491d: 22 02 and (%edx),%al 491f: 12 6d 6d adc 0x6d(%ebp),%ch 4922: 61 popa 4923: 70 00 jo 4925 <.debug_info+0x4925> 4925: 15 2b 01 b6 4e adc $0x4eb6012b,%eax 492a: 00 00 add %al,(%eax) 492c: 02 23 add (%ebx),%ah 492e: 00 12 add %dl,(%edx) 4930: 6d insl (%dx),%es:(%edi) 4931: 6d insl (%dx),%es:(%edi) 4932: 5f pop %edi 4933: 72 62 jb 4997 <.debug_info+0x4997> 4935: 00 15 2c 01 9c 20 add %dl,0x209c012c 493b: 00 00 add %al,(%eax) 493d: 02 23 add (%ebx),%ah 493f: 04 12 add $0x12,%al 4941: 6d insl (%dx),%es:(%edi) 4942: 6d insl (%dx),%es:(%edi) 4943: 61 popa 4944: 70 5f jo 49a5 <.debug_info+0x49a5> 4946: 63 61 63 arpl %sp,0x63(%ecx) 4949: 68 65 00 15 2d push $0x2d150065 494e: 01 b6 4e 00 00 02 add %esi,0x200004e(%esi) 4954: 23 08 and (%eax),%ecx 4956: 13 3c 00 adc (%eax,%eax,1),%edi 4959: 00 00 add %al,(%eax) 495b: 15 30 01 e0 4e adc $0x4ee00130,%eax 4960: 00 00 add %al,(%eax) 4962: 02 23 add (%ebx),%ah 4964: 0c 12 or $0x12,%al 4966: 75 6e jne 49d6 <.debug_info+0x49d6> 4968: 6d insl (%dx),%es:(%edi) 4969: 61 popa 496a: 70 5f jo 49cb <.debug_info+0x49cb> 496c: 61 popa 496d: 72 65 jb 49d4 <.debug_info+0x49d4> 496f: 61 popa 4970: 00 15 31 01 f7 4e add %dl,0x4ef70131 4976: 00 00 add %al,(%eax) 4978: 02 23 add (%ebx),%ah 497a: 10 13 adc %dl,(%ebx) 497c: b3 00 mov $0x0,%bl 497e: 00 00 add %al,(%eax) 4980: 15 32 01 98 00 adc $0x980132,%eax 4985: 00 00 add %al,(%eax) 4987: 02 23 add (%ebx),%ah 4989: 14 12 adc $0x12,%al 498b: 74 61 je 49ee <.debug_info+0x49ee> 498d: 73 6b jae 49fa <.debug_info+0x49fa> 498f: 5f pop %edi 4990: 73 69 jae 49fb <.debug_info+0x49fb> 4992: 7a 65 jp 49f9 <.debug_info+0x49f9> 4994: 00 15 33 01 98 00 add %dl,0x980133 499a: 00 00 add %al,(%eax) 499c: 02 23 add (%ebx),%ah 499e: 18 12 sbb %dl,(%edx) 49a0: 63 61 63 arpl %sp,0x63(%ecx) 49a3: 68 65 64 5f 68 push $0x685f6465 49a8: 6f outsl %ds:(%esi),(%dx) 49a9: 6c insb (%dx),%es:(%edi) 49aa: 65 gs 49ab: 5f pop %edi 49ac: 73 69 jae 4a17 <.debug_info+0x4a17> 49ae: 7a 65 jp 4a15 <.debug_info+0x4a15> 49b0: 00 15 34 01 98 00 add %dl,0x980134 49b6: 00 00 add %al,(%eax) 49b8: 02 23 add (%ebx),%ah 49ba: 1c 12 sbb $0x12,%al 49bc: 66 data16 49bd: 72 65 jb 4a24 <.debug_info+0x4a24> 49bf: 65 gs 49c0: 5f pop %edi 49c1: 61 popa 49c2: 72 65 jb 4a29 <.debug_info+0x4a29> 49c4: 61 popa 49c5: 5f pop %edi 49c6: 63 61 63 arpl %sp,0x63(%ecx) 49c9: 68 65 00 15 35 push $0x35150065 49ce: 01 98 00 00 00 02 add %ebx,0x2000000(%eax) 49d4: 23 20 and (%eax),%esp 49d6: 12 70 67 adc 0x67(%eax),%dh 49d9: 64 00 15 36 01 fd 4e add %dl,%fs:0x4efd0136 49e0: 00 00 add %al,(%eax) 49e2: 02 23 add (%ebx),%ah 49e4: 24 12 and $0x12,%al 49e6: 6d insl (%dx),%es:(%edi) 49e7: 6d insl (%dx),%es:(%edi) 49e8: 5f pop %edi 49e9: 75 73 jne 4a5e <.debug_info+0x4a5e> 49eb: 65 gs 49ec: 72 73 jb 4a61 <.debug_info+0x4a61> 49ee: 00 15 37 01 a1 1f add %dl,0x1fa10137 49f4: 00 00 add %al,(%eax) 49f6: 02 23 add (%ebx),%ah 49f8: 28 12 sub %dl,(%edx) 49fa: 6d insl (%dx),%es:(%edi) 49fb: 6d insl (%dx),%es:(%edi) 49fc: 5f pop %edi 49fd: 63 6f 75 arpl %bp,0x75(%edi) 4a00: 6e outsb %ds:(%esi),(%dx) 4a01: 74 00 je 4a03 <.debug_info+0x4a03> 4a03: 15 38 01 a1 1f adc $0x1fa10138,%eax 4a08: 00 00 add %al,(%eax) 4a0a: 02 23 add (%ebx),%ah 4a0c: 2c 12 sub $0x12,%al 4a0e: 6d insl (%dx),%es:(%edi) 4a0f: 61 popa 4a10: 70 5f jo 4a71 <.debug_info+0x4a71> 4a12: 63 6f 75 arpl %bp,0x75(%edi) 4a15: 6e outsb %ds:(%esi),(%dx) 4a16: 74 00 je 4a18 <.debug_info+0x4a18> 4a18: 15 39 01 7a 00 adc $0x7a0139,%eax 4a1d: 00 00 add %al,(%eax) 4a1f: 02 23 add (%ebx),%ah 4a21: 30 12 xor %dl,(%edx) 4a23: 6d insl (%dx),%es:(%edi) 4a24: 6d insl (%dx),%es:(%edi) 4a25: 61 popa 4a26: 70 5f jo 4a87 <.debug_info+0x4a87> 4a28: 73 65 jae 4a8f <.debug_info+0x4a8f> 4a2a: 6d insl (%dx),%es:(%edi) 4a2b: 00 15 3a 01 b6 21 add %dl,0x21b6013a 4a31: 00 00 add %al,(%eax) 4a33: 02 23 add (%ebx),%ah 4a35: 34 12 xor $0x12,%al 4a37: 70 61 jo 4a9a <.debug_info+0x4a9a> 4a39: 67 addr16 4a3a: 65 gs 4a3b: 5f pop %edi 4a3c: 74 61 je 4a9f <.debug_info+0x4a9f> 4a3e: 62 6c 65 5f bound %ebp,0x5f(%ebp) 4a42: 6c insb (%dx),%es:(%edi) 4a43: 6f outsl %ds:(%esi),(%dx) 4a44: 63 6b 00 arpl %bp,0x0(%ebx) 4a47: 15 3b 01 1e 1f adc $0x1f1e013b,%eax 4a4c: 00 00 add %al,(%eax) 4a4e: 02 23 add (%ebx),%ah 4a50: 50 push %eax 4a51: 12 6d 6d adc 0x6d(%ebp),%ch 4a54: 6c insb (%dx),%es:(%edi) 4a55: 69 73 74 00 15 3d 01 imul $0x13d1500,0x74(%ebx),%esi 4a5c: c8 1d 00 00 enter $0x1d,$0x0 4a60: 02 23 add (%ebx),%ah 4a62: 60 pusha 4a63: 12 5f 66 adc 0x66(%edi),%bl 4a66: 69 6c 65 5f 72 73 73 imul $0x737372,0x5f(%ebp),%ebp 4a6d: 00 4a6e: 15 45 01 66 4d adc $0x4d660145,%eax 4a73: 00 00 add %al,(%eax) 4a75: 02 23 add (%ebx),%ah 4a77: 68 12 5f 61 6e push $0x6e615f12 4a7c: 6f outsl %ds:(%esi),(%dx) 4a7d: 6e outsb %ds:(%esi),(%dx) 4a7e: 5f pop %edi 4a7f: 72 73 jb 4af4 <.debug_info+0x4af4> 4a81: 73 00 jae 4a83 <.debug_info+0x4a83> 4a83: 15 46 01 66 4d adc $0x4d660146,%eax 4a88: 00 00 add %al,(%eax) 4a8a: 02 23 add (%ebx),%ah 4a8c: 6c insb (%dx),%es:(%edi) 4a8d: 12 68 69 adc 0x69(%eax),%ch 4a90: 77 61 ja 4af3 <.debug_info+0x4af3> 4a92: 74 65 je 4af9 <.debug_info+0x4af9> 4a94: 72 5f jb 4af5 <.debug_info+0x4af5> 4a96: 72 73 jb 4b0b <.debug_info+0x4b0b> 4a98: 73 00 jae 4a9a <.debug_info+0x4a9a> 4a9a: 15 48 01 98 00 adc $0x980148,%eax 4a9f: 00 00 add %al,(%eax) 4aa1: 02 23 add (%ebx),%ah 4aa3: 70 12 jo 4ab7 <.debug_info+0x4ab7> 4aa5: 68 69 77 61 74 push $0x74617769 4aaa: 65 gs 4aab: 72 5f jb 4b0c <.debug_info+0x4b0c> 4aad: 76 6d jbe 4b1c <.debug_info+0x4b1c> 4aaf: 00 15 49 01 98 00 add %dl,0x980149 4ab5: 00 00 add %al,(%eax) 4ab7: 02 23 add (%ebx),%ah 4ab9: 74 12 je 4acd <.debug_info+0x4acd> 4abb: 74 6f je 4b2c <.debug_info+0x4b2c> 4abd: 74 61 je 4b20 <.debug_info+0x4b20> 4abf: 6c insb (%dx),%es:(%edi) 4ac0: 5f pop %edi 4ac1: 76 6d jbe 4b30 <.debug_info+0x4b30> 4ac3: 00 15 4b 01 98 00 add %dl,0x98014b 4ac9: 00 00 add %al,(%eax) 4acb: 02 23 add (%ebx),%ah 4acd: 78 12 js 4ae1 <.debug_info+0x4ae1> 4acf: 6c insb (%dx),%es:(%edi) 4ad0: 6f outsl %ds:(%esi),(%dx) 4ad1: 63 6b 65 arpl %bp,0x65(%ebx) 4ad4: 64 fs 4ad5: 5f pop %edi 4ad6: 76 6d jbe 4b45 <.debug_info+0x4b45> 4ad8: 00 15 4b 01 98 00 add %dl,0x98014b 4ade: 00 00 add %al,(%eax) 4ae0: 02 23 add (%ebx),%ah 4ae2: 7c 12 jl 4af6 <.debug_info+0x4af6> 4ae4: 73 68 jae 4b4e <.debug_info+0x4b4e> 4ae6: 61 popa 4ae7: 72 65 jb 4b4e <.debug_info+0x4b4e> 4ae9: 64 fs 4aea: 5f pop %edi 4aeb: 76 6d jbe 4b5a <.debug_info+0x4b5a> 4aed: 00 15 4b 01 98 00 add %dl,0x98014b 4af3: 00 00 add %al,(%eax) 4af5: 03 23 add (%ebx),%esp 4af7: 80 01 12 addb $0x12,(%ecx) 4afa: 65 gs 4afb: 78 65 js 4b62 <.debug_info+0x4b62> 4afd: 63 5f 76 arpl %bx,0x76(%edi) 4b00: 6d insl (%dx),%es:(%edi) 4b01: 00 15 4b 01 98 00 add %dl,0x98014b 4b07: 00 00 add %al,(%eax) 4b09: 03 23 add (%ebx),%esp 4b0b: 84 01 test %al,(%ecx) 4b0d: 12 73 74 adc 0x74(%ebx),%dh 4b10: 61 popa 4b11: 63 6b 5f arpl %bp,0x5f(%ebx) 4b14: 76 6d jbe 4b83 <.debug_info+0x4b83> 4b16: 00 15 4c 01 98 00 add %dl,0x98014c 4b1c: 00 00 add %al,(%eax) 4b1e: 03 23 add (%ebx),%esp 4b20: 88 01 mov %al,(%ecx) 4b22: 12 72 65 adc 0x65(%edx),%dh 4b25: 73 65 jae 4b8c <.debug_info+0x4b8c> 4b27: 72 76 jb 4b9f <.debug_info+0x4b9f> 4b29: 65 gs 4b2a: 64 fs 4b2b: 5f pop %edi 4b2c: 76 6d jbe 4b9b <.debug_info+0x4b9b> 4b2e: 00 15 4c 01 98 00 add %dl,0x98014c 4b34: 00 00 add %al,(%eax) 4b36: 03 23 add (%ebx),%esp 4b38: 8c 01 movw %es,(%ecx) 4b3a: 12 64 65 66 adc 0x66(%ebp),%ah 4b3e: 5f pop %edi 4b3f: 66 data16 4b40: 6c insb (%dx),%es:(%edi) 4b41: 61 popa 4b42: 67 73 00 addr16 jae 4b45 <.debug_info+0x4b45> 4b45: 15 4c 01 98 00 adc $0x98014c,%eax 4b4a: 00 00 add %al,(%eax) 4b4c: 03 23 add (%ebx),%esp 4b4e: 90 nop 4b4f: 01 12 add %edx,(%edx) 4b51: 6e outsb %ds:(%esi),(%dx) 4b52: 72 5f jb 4bb3 <.debug_info+0x4bb3> 4b54: 70 74 jo 4bca <.debug_info+0x4bca> 4b56: 65 gs 4b57: 73 00 jae 4b59 <.debug_info+0x4b59> 4b59: 15 4c 01 98 00 adc $0x98014c,%eax 4b5e: 00 00 add %al,(%eax) 4b60: 03 23 add (%ebx),%esp 4b62: 94 xchg %eax,%esp 4b63: 01 12 add %edx,(%edx) 4b65: 73 74 jae 4bdb <.debug_info+0x4bdb> 4b67: 61 popa 4b68: 72 74 jb 4bde <.debug_info+0x4bde> 4b6a: 5f pop %edi 4b6b: 63 6f 64 arpl %bp,0x64(%edi) 4b6e: 65 00 15 4d 01 98 00 add %dl,%gs:0x98014d 4b75: 00 00 add %al,(%eax) 4b77: 03 23 add (%ebx),%esp 4b79: 98 cwtl 4b7a: 01 12 add %edx,(%edx) 4b7c: 65 6e outsb %gs:(%esi),(%dx) 4b7e: 64 fs 4b7f: 5f pop %edi 4b80: 63 6f 64 arpl %bp,0x64(%edi) 4b83: 65 00 15 4d 01 98 00 add %dl,%gs:0x98014d 4b8a: 00 00 add %al,(%eax) 4b8c: 03 23 add (%ebx),%esp 4b8e: 9c pushf 4b8f: 01 12 add %edx,(%edx) 4b91: 73 74 jae 4c07 <.debug_info+0x4c07> 4b93: 61 popa 4b94: 72 74 jb 4c0a <.debug_info+0x4c0a> 4b96: 5f pop %edi 4b97: 64 fs 4b98: 61 popa 4b99: 74 61 je 4bfc <.debug_info+0x4bfc> 4b9b: 00 15 4d 01 98 00 add %dl,0x98014d 4ba1: 00 00 add %al,(%eax) 4ba3: 03 23 add (%ebx),%esp 4ba5: a0 01 12 65 6e mov 0x6e651201,%al 4baa: 64 fs 4bab: 5f pop %edi 4bac: 64 fs 4bad: 61 popa 4bae: 74 61 je 4c11 <.debug_info+0x4c11> 4bb0: 00 15 4d 01 98 00 add %dl,0x98014d 4bb6: 00 00 add %al,(%eax) 4bb8: 03 23 add (%ebx),%esp 4bba: a4 movsb %ds:(%esi),%es:(%edi) 4bbb: 01 12 add %edx,(%edx) 4bbd: 73 74 jae 4c33 <.debug_info+0x4c33> 4bbf: 61 popa 4bc0: 72 74 jb 4c36 <.debug_info+0x4c36> 4bc2: 5f pop %edi 4bc3: 62 72 6b bound %esi,0x6b(%edx) 4bc6: 00 15 4e 01 98 00 add %dl,0x98014e 4bcc: 00 00 add %al,(%eax) 4bce: 03 23 add (%ebx),%esp 4bd0: a8 01 test $0x1,%al 4bd2: 12 62 72 adc 0x72(%edx),%ah 4bd5: 6b 00 15 imul $0x15,(%eax),%eax 4bd8: 4e dec %esi 4bd9: 01 98 00 00 00 03 add %ebx,0x3000000(%eax) 4bdf: 23 ac 01 12 73 74 61 and 0x61747312(%ecx,%eax,1),%ebp 4be6: 72 74 jb 4c5c <.debug_info+0x4c5c> 4be8: 5f pop %edi 4be9: 73 74 jae 4c5f <.debug_info+0x4c5f> 4beb: 61 popa 4bec: 63 6b 00 arpl %bp,0x0(%ebx) 4bef: 15 4e 01 98 00 adc $0x98014e,%eax 4bf4: 00 00 add %al,(%eax) 4bf6: 03 23 add (%ebx),%esp 4bf8: b0 01 mov $0x1,%al 4bfa: 12 61 72 adc 0x72(%ecx),%ah 4bfd: 67 5f addr16 pop %edi 4bff: 73 74 jae 4c75 <.debug_info+0x4c75> 4c01: 61 popa 4c02: 72 74 jb 4c78 <.debug_info+0x4c78> 4c04: 00 15 4f 01 98 00 add %dl,0x98014f 4c0a: 00 00 add %al,(%eax) 4c0c: 03 23 add (%ebx),%esp 4c0e: b4 01 mov $0x1,%ah 4c10: 12 61 72 adc 0x72(%ecx),%ah 4c13: 67 5f addr16 pop %edi 4c15: 65 6e outsb %gs:(%esi),(%dx) 4c17: 64 00 15 4f 01 98 00 add %dl,%fs:0x98014f 4c1e: 00 00 add %al,(%eax) 4c20: 03 23 add (%ebx),%esp 4c22: b8 01 12 65 6e mov $0x6e651201,%eax 4c27: 76 5f jbe 4c88 <.debug_info+0x4c88> 4c29: 73 74 jae 4c9f <.debug_info+0x4c9f> 4c2b: 61 popa 4c2c: 72 74 jb 4ca2 <.debug_info+0x4ca2> 4c2e: 00 15 4f 01 98 00 add %dl,0x98014f 4c34: 00 00 add %al,(%eax) 4c36: 03 23 add (%ebx),%esp 4c38: bc 01 12 65 6e mov $0x6e651201,%esp 4c3d: 76 5f jbe 4c9e <.debug_info+0x4c9e> 4c3f: 65 6e outsb %gs:(%esi),(%dx) 4c41: 64 00 15 4f 01 98 00 add %dl,%fs:0x98014f 4c48: 00 00 add %al,(%eax) 4c4a: 03 23 add (%ebx),%esp 4c4c: c0 01 12 rolb $0x12,(%ecx) 4c4f: 73 61 jae 4cb2 <.debug_info+0x4cb2> 4c51: 76 65 jbe 4cb8 <.debug_info+0x4cb8> 4c53: 64 fs 4c54: 5f pop %edi 4c55: 61 popa 4c56: 75 78 jne 4cd0 <.debug_info+0x4cd0> 4c58: 76 00 jbe 4c5a <.debug_info+0x4c5a> 4c5a: 15 51 01 03 4f adc $0x4f030151,%eax 4c5f: 00 00 add %al,(%eax) 4c61: 03 23 add (%ebx),%esp 4c63: c4 01 les (%ecx),%eax 4c65: 19 64 75 6d sbb %esp,0x6d(%ebp,%esi,2) 4c69: 70 61 jo 4ccc <.debug_info+0x4ccc> 4c6b: 62 6c 65 00 bound %ebp,0x0(%ebp) 4c6f: 15 53 01 3b 01 adc $0x13b0153,%eax 4c74: 00 00 add %al,(%eax) 4c76: 04 02 add $0x2,%al 4c78: 1e push %ds 4c79: 03 23 add (%ebx),%esp 4c7b: f4 hlt 4c7c: 02 12 add (%edx),%dl 4c7e: 63 70 75 arpl %si,0x75(%eax) 4c81: 5f pop %edi 4c82: 76 6d jbe 4cf1 <.debug_info+0x4cf1> 4c84: 5f pop %edi 4c85: 6d insl (%dx),%es:(%edi) 4c86: 61 popa 4c87: 73 6b jae 4cf4 <.debug_info+0x4cf4> 4c89: 00 15 54 01 72 0a add %dl,0xa720154 4c8f: 00 00 add %al,(%eax) 4c91: 03 23 add (%ebx),%esp 4c93: f8 clc 4c94: 02 12 add (%edx),%dl 4c96: 63 6f 6e arpl %bp,0x6e(%edi) 4c99: 74 65 je 4d00 <.debug_info+0x4d00> 4c9b: 78 74 js 4d11 <.debug_info+0x4d11> 4c9d: 00 15 57 01 7c 22 add %dl,0x227c0157 4ca3: 00 00 add %al,(%eax) 4ca5: 03 23 add (%ebx),%esp 4ca7: fc cld 4ca8: 02 12 add (%edx),%dl 4caa: 73 77 jae 4d23 <.debug_info+0x4d23> 4cac: 61 popa 4cad: 70 5f jo 4d0e <.debug_info+0x4d0e> 4caf: 74 6f je 4d20 <.debug_info+0x4d20> 4cb1: 6b 65 6e 5f imul $0x5f,0x6e(%ebp),%esp 4cb5: 74 69 je 4d20 <.debug_info+0x4d20> 4cb7: 6d insl (%dx),%es:(%edi) 4cb8: 65 00 15 5a 01 98 00 add %dl,%gs:0x98015a 4cbf: 00 00 add %al,(%eax) 4cc1: 03 23 add (%ebx),%esp 4cc3: a8 03 test $0x3,%al 4cc5: 12 72 65 adc 0x65(%edx),%dh 4cc8: 63 65 6e arpl %sp,0x6e(%ebp) 4ccb: 74 5f je 4d2c <.debug_info+0x4d2c> 4ccd: 70 61 jo 4d30 <.debug_info+0x4d30> 4ccf: 67 65 69 6e 00 15 5b addr16 imul $0xc1015b15,%gs:0(%bp),%ebp 4cd6: 01 c1 4cd8: 01 00 add %eax,(%eax) 4cda: 00 03 add %al,(%ebx) 4cdc: 23 ac 03 12 63 6f 72 and 0x726f6312(%ebx,%eax,1),%ebp 4ce3: 65 gs 4ce4: 5f pop %edi 4ce5: 77 61 ja 4d48 <.debug_info+0x4d48> 4ce7: 69 74 65 72 73 00 15 imul $0x5e150073,0x72(%ebp),%esi 4cee: 5e 4cef: 01 7a 00 add %edi,0x0(%edx) 4cf2: 00 00 add %al,(%eax) 4cf4: 03 23 add (%ebx),%esp 4cf6: b0 03 mov $0x3,%al 4cf8: 12 63 6f adc 0x6f(%ebx),%ah 4cfb: 72 65 jb 4d62 <.debug_info+0x4d62> 4cfd: 5f pop %edi 4cfe: 73 74 jae 4d74 <.debug_info+0x4d74> 4d00: 61 popa 4d01: 72 74 jb 4d77 <.debug_info+0x4d77> 4d03: 75 70 jne 4d75 <.debug_info+0x4d75> 4d05: 5f pop %edi 4d06: 64 6f outsl %fs:(%esi),(%dx) 4d08: 6e outsb %ds:(%esi),(%dx) 4d09: 65 00 15 5f 01 13 4f add %dl,%gs:0x4f13015f 4d10: 00 00 add %al,(%eax) 4d12: 03 23 add (%ebx),%esp 4d14: b4 03 mov $0x3,%ah 4d16: 12 63 6f adc 0x6f(%ebx),%ah 4d19: 72 65 jb 4d80 <.debug_info+0x4d80> 4d1b: 5f pop %edi 4d1c: 64 6f outsl %fs:(%esi),(%dx) 4d1e: 6e outsb %ds:(%esi),(%dx) 4d1f: 65 00 15 5f 01 0e 36 add %dl,%gs:0x360e015f 4d26: 00 00 add %al,(%eax) 4d28: 03 23 add (%ebx),%esp 4d2a: b8 03 12 69 6f mov $0x6f691203,%eax 4d2f: 63 74 78 5f arpl %si,0x5f(%eax,%edi,2) 4d33: 6c insb (%dx),%es:(%edi) 4d34: 69 73 74 5f 6c 6f 63 imul $0x636f6c5f,0x74(%ebx),%esi 4d3b: 6b 00 15 imul $0x15,(%eax),%eax 4d3e: 62 01 bound %eax,(%ecx) 4d40: 71 1f jno 4d61 <.debug_info+0x4d61> 4d42: 00 00 add %al,(%eax) 4d44: 03 23 add (%ebx),%esp 4d46: d4 03 aam $0x3 4d48: 12 69 6f adc 0x6f(%ecx),%ch 4d4b: 63 74 78 5f arpl %si,0x5f(%eax,%edi,2) 4d4f: 6c insb (%dx),%es:(%edi) 4d50: 69 73 74 00 15 63 01 imul $0x1631500,0x74(%ebx),%esi 4d57: f6 47 00 00 testb $0x0,0x0(%edi) 4d5b: 03 23 add (%ebx),%esp 4d5d: e4 03 in $0x3,%al 4d5f: 00 06 add %al,(%esi) 4d61: 04 0b add $0xb,%al 4d63: 49 dec %ecx 4d64: 00 00 add %al,(%eax) 4d66: 18 6d 6d sbb %ch,0x6d(%ebp) 4d69: 5f pop %edi 4d6a: 63 6f 75 arpl %bp,0x75(%edi) 4d6d: 6e outsb %ds:(%esi),(%dx) 4d6e: 74 65 je 4dd5 <.debug_info+0x4dd5> 4d70: 72 5f jb 4dd1 <.debug_info+0x4dd1> 4d72: 74 00 je 4d74 <.debug_info+0x4d74> 4d74: 15 0e 01 b1 1f adc $0x1fb1010e,%eax 4d79: 00 00 add %al,(%eax) 4d7b: 0e push %cs 4d7c: b6 4e mov $0x4e,%dh 4d7e: 00 00 add %al,(%eax) 4d80: 76 6d jbe 4def <.debug_info+0x4def> 4d82: 5f pop %edi 4d83: 61 popa 4d84: 72 65 jb 4deb <.debug_info+0x4deb> 4d86: 61 popa 4d87: 5f pop %edi 4d88: 73 74 jae 4dfe <.debug_info+0x4dfe> 4d8a: 72 75 jb 4e01 <.debug_info+0x4e01> 4d8c: 63 74 00 58 arpl %si,0x58(%eax,%eax,1) 4d90: 18 63 0b sbb %ah,0xb(%ebx) 4d93: 76 6d jbe 4e02 <.debug_info+0x4e02> 4d95: 5f pop %edi 4d96: 6d insl (%dx),%es:(%edi) 4d97: 6d insl (%dx),%es:(%edi) 4d98: 00 19 add %bl,(%ecx) 4d9a: 3b 60 4d cmp 0x4d(%eax),%esp 4d9d: 00 00 add %al,(%eax) 4d9f: 02 23 add (%ebx),%ah 4da1: 00 0b add %cl,(%ebx) 4da3: 76 6d jbe 4e12 <.debug_info+0x4e12> 4da5: 5f pop %edi 4da6: 73 74 jae 4e1c <.debug_info+0x4e1c> 4da8: 61 popa 4da9: 72 74 jb 4e1f <.debug_info+0x4e1f> 4dab: 00 19 add %bl,(%ecx) 4dad: 3c 98 cmp $0x98,%al 4daf: 00 00 add %al,(%eax) 4db1: 00 02 add %al,(%edx) 4db3: 23 04 0b and (%ebx,%ecx,1),%eax 4db6: 76 6d jbe 4e25 <.debug_info+0x4e25> 4db8: 5f pop %edi 4db9: 65 6e outsb %gs:(%esi),(%dx) 4dbb: 64 00 19 add %bl,%fs:(%ecx) 4dbe: 3d 98 00 00 00 cmp $0x98,%eax 4dc3: 02 23 add (%ebx),%ah 4dc5: 08 0b or %cl,(%ebx) 4dc7: 76 6d jbe 4e36 <.debug_info+0x4e36> 4dc9: 5f pop %edi 4dca: 6e outsb %ds:(%esi),(%dx) 4dcb: 65 gs 4dcc: 78 74 js 4e42 <.debug_info+0x4e42> 4dce: 00 19 add %bl,(%ecx) 4dd0: 41 inc %ecx 4dd1: b6 4e mov $0x4e,%dh 4dd3: 00 00 add %al,(%eax) 4dd5: 02 23 add (%ebx),%ah 4dd7: 0c 0b or $0xb,%al 4dd9: 76 6d jbe 4e48 <.debug_info+0x4e48> 4ddb: 5f pop %edi 4ddc: 70 61 jo 4e3f <.debug_info+0x4e3f> 4dde: 67 addr16 4ddf: 65 gs 4de0: 5f pop %edi 4de1: 70 72 jo 4e55 <.debug_info+0x4e55> 4de3: 6f outsl %ds:(%esi),(%dx) 4de4: 74 00 je 4de6 <.debug_info+0x4de6> 4de6: 19 43 32 sbb %eax,0x32(%ebx) 4de9: 05 00 00 02 23 add $0x23020000,%eax 4dee: 10 0b adc %cl,(%ebx) 4df0: 76 6d jbe 4e5f <.debug_info+0x4e5f> 4df2: 5f pop %edi 4df3: 66 data16 4df4: 6c insb (%dx),%es:(%edi) 4df5: 61 popa 4df6: 67 73 00 addr16 jae 4df9 <.debug_info+0x4df9> 4df9: 19 44 98 00 sbb %eax,0x0(%eax,%ebx,4) 4dfd: 00 00 add %al,(%eax) 4dff: 02 23 add (%ebx),%ah 4e01: 18 0b sbb %cl,(%ebx) 4e03: 76 6d jbe 4e72 <.debug_info+0x4e72> 4e05: 5f pop %edi 4e06: 72 62 jb 4e6a <.debug_info+0x4e6a> 4e08: 00 19 add %bl,(%ecx) 4e0a: 46 inc %esi 4e0b: 46 inc %esi 4e0c: 20 00 and %al,(%eax) 4e0e: 00 02 add %al,(%edx) 4e10: 23 1c 0b and (%ebx,%ecx,1),%ebx 4e13: 73 68 jae 4e7d <.debug_info+0x4e7d> 4e15: 61 popa 4e16: 72 65 jb 4e7d <.debug_info+0x4e7d> 4e18: 64 00 19 add %bl,%fs:(%ecx) 4e1b: 56 push %esi 4e1c: 22 99 00 00 02 23 and 0x23020000(%ecx),%bl 4e22: 28 0b sub %cl,(%ebx) 4e24: 61 popa 4e25: 6e outsb %ds:(%esi),(%dx) 4e26: 6f outsl %ds:(%esi),(%dx) 4e27: 6e outsb %ds:(%esi),(%dx) 4e28: 5f pop %edi 4e29: 76 6d jbe 4e98 <.debug_info+0x4e98> 4e2b: 61 popa 4e2c: 5f pop %edi 4e2d: 6e outsb %ds:(%esi),(%dx) 4e2e: 6f outsl %ds:(%esi),(%dx) 4e2f: 64 65 00 19 add %bl,%fs:%gs:(%ecx) 4e33: 5e pop %esi 4e34: c8 1d 00 00 enter $0x1d,$0x0 4e38: 02 23 add (%ebx),%ah 4e3a: 38 0f cmp %cl,(%edi) 4e3c: b3 01 mov $0x1,%bl 4e3e: 00 00 add %al,(%eax) 4e40: 19 5f 6e sbb %ebx,0x6e(%edi) 4e43: 99 cltd 4e44: 00 00 add %al,(%eax) 4e46: 02 23 add (%ebx),%ah 4e48: 40 inc %eax 4e49: 0b 76 6d or 0x6d(%esi),%esi 4e4c: 5f pop %edi 4e4d: 6f outsl %ds:(%esi),(%dx) 4e4e: 70 73 jo 4ec3 <.debug_info+0x4ec3> 4e50: 00 19 add %bl,(%ecx) 4e52: 62 ec bound %ebp,%esp 4e54: 99 cltd 4e55: 00 00 add %al,(%eax) 4e57: 02 23 add (%ebx),%ah 4e59: 44 inc %esp 4e5a: 0b 76 6d or 0x6d(%esi),%esi 4e5d: 5f pop %edi 4e5e: 70 67 jo 4ec7 <.debug_info+0x4ec7> 4e60: 6f outsl %ds:(%esi),(%dx) 4e61: 66 data16 4e62: 66 data16 4e63: 00 19 add %bl,(%ecx) 4e65: 65 gs 4e66: 98 cwtl 4e67: 00 00 add %al,(%eax) 4e69: 00 02 add %al,(%edx) 4e6b: 23 48 0b and 0xb(%eax),%ecx 4e6e: 76 6d jbe 4edd <.debug_info+0x4edd> 4e70: 5f pop %edi 4e71: 66 69 6c 65 00 19 67 imul $0x6719,0x0(%ebp),%bp 4e78: 03 47 00 add 0x0(%edi),%eax 4e7b: 00 02 add %al,(%edx) 4e7d: 23 4c 0b 76 and 0x76(%ebx,%ecx,1),%ecx 4e81: 6d insl (%dx),%es:(%edi) 4e82: 5f pop %edi 4e83: 70 72 jo 4ef7 <.debug_info+0x4ef7> 4e85: 69 76 61 74 65 5f 64 imul $0x645f6574,0x61(%esi),%esi 4e8c: 61 popa 4e8d: 74 61 je 4ef0 <.debug_info+0x4ef0> 4e8f: 00 19 add %bl,(%ecx) 4e91: 68 b7 1d 00 00 push $0x1db7 4e96: 02 23 add (%ebx),%ah 4e98: 50 push %eax 4e99: 0b 76 6d or 0x6d(%esi),%esi 4e9c: 5f pop %edi 4e9d: 74 72 je 4f11 <.debug_info+0x4f11> 4e9f: 75 6e jne 4f0f <.debug_info+0x4f0f> 4ea1: 63 61 74 arpl %sp,0x74(%ecx) 4ea4: 65 gs 4ea5: 5f pop %edi 4ea6: 63 6f 75 arpl %bp,0x75(%edi) 4ea9: 6e outsb %ds:(%esi),(%dx) 4eaa: 74 00 je 4eac <.debug_info+0x4eac> 4eac: 19 69 98 sbb %ebp,0xffffff98(%ecx) 4eaf: 00 00 add %al,(%eax) 4eb1: 00 02 add %al,(%edx) 4eb3: 23 54 00 06 and 0x6(%eax,%eax,1),%edx 4eb7: 04 7b add $0x7b,%al 4eb9: 4d dec %ebp 4eba: 00 00 add %al,(%eax) 4ebc: 0c e0 or $0xe0,%al 4ebe: 4e dec %esi 4ebf: 00 00 add %al,(%eax) 4ec1: 01 98 00 00 00 08 add %ebx,0x8000000(%eax) 4ec7: 03 47 00 add 0x0(%edi),%eax 4eca: 00 08 add %cl,(%eax) 4ecc: 98 cwtl 4ecd: 00 00 add %al,(%eax) 4ecf: 00 08 add %cl,(%eax) 4ed1: 98 cwtl 4ed2: 00 00 add %al,(%eax) 4ed4: 00 08 add %cl,(%eax) 4ed6: 98 cwtl 4ed7: 00 00 add %al,(%eax) 4ed9: 00 08 add %cl,(%eax) 4edb: 98 cwtl 4edc: 00 00 add %al,(%eax) 4ede: 00 00 add %al,(%eax) 4ee0: 06 push %es 4ee1: 04 bc add $0xbc,%al 4ee3: 4e dec %esi 4ee4: 00 00 add %al,(%eax) 4ee6: 07 pop %es 4ee7: f7 (bad) 4ee8: 4e dec %esi 4ee9: 00 00 add %al,(%eax) 4eeb: 01 08 add %ecx,(%eax) 4eed: 60 pusha 4eee: 4d dec %ebp 4eef: 00 00 add %al,(%eax) 4ef1: 08 98 00 00 00 00 or %bl,0x0(%eax) 4ef7: 06 push %es 4ef8: 04 e6 add $0xe6,%al 4efa: 4e dec %esi 4efb: 00 00 add %al,(%eax) 4efd: 06 push %es 4efe: 04 0b add $0xb,%al 4f00: 05 00 00 03 13 add $0x13030000,%eax 4f05: 4f dec %edi 4f06: 00 00 add %al,(%eax) 4f08: 98 cwtl 4f09: 00 00 add %al,(%eax) 4f0b: 00 04 91 add %al,(%ecx,%edx,4) 4f0e: 00 00 add %al,(%eax) 4f10: 00 2b add %ch,(%ebx) 4f12: 00 06 add %al,(%esi) 4f14: 04 0e add $0xe,%al 4f16: 36 00 00 add %al,%ss:(%eax) 4f19: 14 68 adc $0x68,%al 4f1b: 4f dec %edi 4f1c: 00 00 add %al,(%eax) 4f1e: 73 69 jae 4f89 <.debug_info+0x4f89> 4f20: 67 68 61 6e 64 5f addr16 push $0x5f646e61 4f26: 73 74 jae 4f9c <.debug_info+0x4f9c> 4f28: 72 75 jb 4f9f <.debug_info+0x4f9f> 4f2a: 63 74 00 14 arpl %si,0x14(%eax,%eax,1) 4f2e: 05 15 66 01 13 add $0x13016615,%eax 4f33: e7 01 out %eax,$0x1 4f35: 00 00 add %al,(%eax) 4f37: 15 67 01 a1 1f adc $0x1fa10167,%eax 4f3c: 00 00 add %al,(%eax) 4f3e: 02 23 add (%ebx),%ah 4f40: 00 12 add %dl,(%edx) 4f42: 61 popa 4f43: 63 74 69 6f arpl %si,0x6f(%ecx,%ebp,2) 4f47: 6e outsb %ds:(%esi),(%dx) 4f48: 00 15 68 01 68 4f add %dl,0x4f680168 4f4e: 00 00 add %al,(%eax) 4f50: 02 23 add (%ebx),%ah 4f52: 04 12 add $0x12,%al 4f54: 73 69 jae 4fbf <.debug_info+0x4fbf> 4f56: 67 6c addr16 insb (%dx),%es:(%di) 4f58: 6f outsl %ds:(%esi),(%dx) 4f59: 63 6b 00 arpl %bp,0x0(%ebx) 4f5c: 15 69 01 1e 1f adc $0x1f1e0169,%eax 4f61: 00 00 add %al,(%eax) 4f63: 03 23 add (%ebx),%esp 4f65: 84 0a test %cl,(%edx) 4f67: 00 03 add %al,(%ebx) 4f69: 78 4f js 4fba <.debug_info+0x4fba> 4f6b: 00 00 add %al,(%eax) 4f6d: 1e push %ds 4f6e: 30 00 xor %al,(%eax) 4f70: 00 04 91 add %al,(%ecx,%edx,4) 4f73: 00 00 add %al,(%eax) 4f75: 00 3f add %bh,(%edi) 4f77: 00 11 add %dl,(%ecx) 4f79: 1d 50 00 00 70 sbb $0x70000050,%eax 4f7e: 61 popa 4f7f: 63 63 74 arpl %sp,0x74(%ebx) 4f82: 5f pop %edi 4f83: 73 74 jae 4ff9 <.debug_info+0x4ff9> 4f85: 72 75 jb 4ffc <.debug_info+0x4ffc> 4f87: 63 74 00 1c arpl %si,0x1c(%eax,%eax,1) 4f8b: 15 6c 01 12 61 adc $0x6112016c,%eax 4f90: 63 5f 66 arpl %bx,0x66(%edi) 4f93: 6c insb (%dx),%es:(%edi) 4f94: 61 popa 4f95: 67 00 15 addr16 add %dl,(%di) 4f98: 6d insl (%dx),%es:(%edi) 4f99: 01 7a 00 add %edi,0x0(%edx) 4f9c: 00 00 add %al,(%eax) 4f9e: 02 23 add (%ebx),%ah 4fa0: 00 12 add %dl,(%edx) 4fa2: 61 popa 4fa3: 63 5f 65 arpl %bx,0x65(%edi) 4fa6: 78 69 js 5011 <.debug_info+0x5011> 4fa8: 74 63 je 500d <.debug_info+0x500d> 4faa: 6f outsl %ds:(%esi),(%dx) 4fab: 64 65 00 15 6e 01 02 add %dl,%fs:%gs:0x102016e 4fb2: 01 4fb3: 00 00 add %al,(%eax) 4fb5: 02 23 add (%ebx),%ah 4fb7: 04 12 add $0x12,%al 4fb9: 61 popa 4fba: 63 5f 6d arpl %bx,0x6d(%edi) 4fbd: 65 gs 4fbe: 6d insl (%dx),%es:(%edi) 4fbf: 00 15 6f 01 98 00 add %dl,0x98016f 4fc5: 00 00 add %al,(%eax) 4fc7: 02 23 add (%ebx),%ah 4fc9: 08 12 or %dl,(%edx) 4fcb: 61 popa 4fcc: 63 5f 75 arpl %bx,0x75(%edi) 4fcf: 74 69 je 503a <.debug_info+0x503a> 4fd1: 6d insl (%dx),%es:(%edi) 4fd2: 65 00 15 70 01 90 22 add %dl,%gs:0x22900170 4fd9: 00 00 add %al,(%eax) 4fdb: 02 23 add (%ebx),%ah 4fdd: 0c 12 or $0x12,%al 4fdf: 61 popa 4fe0: 63 5f 73 arpl %bx,0x73(%edi) 4fe3: 74 69 je 504e <.debug_info+0x504e> 4fe5: 6d insl (%dx),%es:(%edi) 4fe6: 65 00 15 70 01 90 22 add %dl,%gs:0x22900170 4fed: 00 00 add %al,(%eax) 4fef: 02 23 add (%ebx),%ah 4ff1: 10 12 adc %dl,(%edx) 4ff3: 61 popa 4ff4: 63 5f 6d arpl %bx,0x6d(%edi) 4ff7: 69 6e 66 6c 74 00 15 imul $0x1500746c,0x66(%esi),%ebp 4ffe: 71 01 jno 5001 <.debug_info+0x5001> 5000: 98 cwtl 5001: 00 00 add %al,(%eax) 5003: 00 02 add %al,(%edx) 5005: 23 14 12 and (%edx,%edx,1),%edx 5008: 61 popa 5009: 63 5f 6d arpl %bx,0x6d(%edi) 500c: 61 popa 500d: 6a 66 push $0x66 500f: 6c insb (%dx),%es:(%edi) 5010: 74 00 je 5012 <.debug_info+0x5012> 5012: 15 71 01 98 00 adc $0x980171,%eax 5017: 00 00 add %al,(%eax) 5019: 02 23 add (%ebx),%ah 501b: 18 00 sbb %al,(%eax) 501d: 14 75 adc $0x75,%al 501f: 53 push %ebx 5020: 00 00 add %al,(%eax) 5022: 73 69 jae 508d <.debug_info+0x508d> 5024: 67 6e addr16 outsb %ds:(%si),(%dx) 5026: 61 popa 5027: 6c insb (%dx),%es:(%edi) 5028: 5f pop %edi 5029: 73 74 jae 509f <.debug_info+0x509f> 502b: 72 75 jb 50a2 <.debug_info+0x50a2> 502d: 63 74 00 88 arpl %si,0xffffff88(%eax,%eax,1) 5031: 01 15 7b 01 13 e7 add %edx,0xe713017b 5037: 01 00 add %eax,(%eax) 5039: 00 15 7c 01 a1 1f add %dl,0x1fa1017c 503f: 00 00 add %al,(%eax) 5041: 02 23 add (%ebx),%ah 5043: 00 12 add %dl,(%edx) 5045: 6c insb (%dx),%es:(%edi) 5046: 69 76 65 00 15 7d 01 imul $0x17d1500,0x65(%esi),%esi 504d: a1 1f 00 00 02 mov 0x200001f,%eax 5052: 23 04 12 and (%edx,%edx,1),%eax 5055: 77 61 ja 50b8 <.debug_info+0x50b8> 5057: 69 74 5f 63 68 6c 64 imul $0x65646c68,0x63(%edi,%ebx,2),%esi 505e: 65 505f: 78 69 js 50ca <.debug_info+0x50ca> 5061: 74 00 je 5063 <.debug_info+0x5063> 5063: 15 7f 01 9d 21 adc $0x219d017f,%eax 5068: 00 00 add %al,(%eax) 506a: 02 23 add (%ebx),%ah 506c: 08 12 or %dl,(%edx) 506e: 63 75 72 arpl %si,0x72(%ebp) 5071: 72 5f jb 50d2 <.debug_info+0x50d2> 5073: 74 61 je 50d6 <.debug_info+0x50d6> 5075: 72 67 jb 50de <.debug_info+0x50de> 5077: 65 gs 5078: 74 00 je 507a <.debug_info+0x507a> 507a: 15 82 01 a5 1d adc $0x1da50182,%eax 507f: 00 00 add %al,(%eax) 5081: 02 23 add (%ebx),%ah 5083: 20 12 and %dl,(%edx) 5085: 73 68 jae 50ef <.debug_info+0x50ef> 5087: 61 popa 5088: 72 65 jb 50ef <.debug_info+0x50ef> 508a: 64 fs 508b: 5f pop %edi 508c: 70 65 jo 50f3 <.debug_info+0x50f3> 508e: 6e outsb %ds:(%esi),(%dx) 508f: 64 69 6e 67 00 15 85 imul $0x1851500,%fs:0x67(%esi),%ebp 5096: 01 5097: da 33 fidivl (%ebx) 5099: 00 00 add %al,(%eax) 509b: 02 23 add (%ebx),%ah 509d: 24 12 and $0x12,%al 509f: 67 72 6f addr16 jb 5111 <.debug_info+0x5111> 50a2: 75 70 jne 5114 <.debug_info+0x5114> 50a4: 5f pop %edi 50a5: 65 gs 50a6: 78 69 js 5111 <.debug_info+0x5111> 50a8: 74 5f je 5109 <.debug_info+0x5109> 50aa: 63 6f 64 arpl %bp,0x64(%edi) 50ad: 65 00 15 88 01 7a 00 add %dl,%gs:0x7a0188 50b4: 00 00 add %al,(%eax) 50b6: 02 23 add (%ebx),%ah 50b8: 34 12 xor $0x12,%al 50ba: 67 72 6f addr16 jb 512c <.debug_info+0x512c> 50bd: 75 70 jne 512f <.debug_info+0x512f> 50bf: 5f pop %edi 50c0: 65 gs 50c1: 78 69 js 512c <.debug_info+0x512c> 50c3: 74 5f je 5124 <.debug_info+0x5124> 50c5: 74 61 je 5128 <.debug_info+0x5128> 50c7: 73 6b jae 5134 <.debug_info+0x5134> 50c9: 00 15 8e 01 a5 1d add %dl,0x1da5018e 50cf: 00 00 add %al,(%eax) 50d1: 02 23 add (%ebx),%ah 50d3: 38 12 cmp %dl,(%edx) 50d5: 6e outsb %ds:(%esi),(%dx) 50d6: 6f outsl %ds:(%esi),(%dx) 50d7: 74 69 je 5142 <.debug_info+0x5142> 50d9: 66 data16 50da: 79 5f jns 513b <.debug_info+0x513b> 50dc: 63 6f 75 arpl %bp,0x75(%edi) 50df: 6e outsb %ds:(%esi),(%dx) 50e0: 74 00 je 50e2 <.debug_info+0x50e2> 50e2: 15 8f 01 7a 00 adc $0x7a018f,%eax 50e7: 00 00 add %al,(%eax) 50e9: 02 23 add (%ebx),%ah 50eb: 3c 12 cmp $0x12,%al 50ed: 67 72 6f addr16 jb 515f <.debug_info+0x515f> 50f0: 75 70 jne 5162 <.debug_info+0x5162> 50f2: 5f pop %edi 50f3: 73 74 jae 5169 <.debug_info+0x5169> 50f5: 6f outsl %ds:(%esi),(%dx) 50f6: 70 5f jo 5157 <.debug_info+0x5157> 50f8: 63 6f 75 arpl %bp,0x75(%edi) 50fb: 6e outsb %ds:(%esi),(%dx) 50fc: 74 00 je 50fe <.debug_info+0x50fe> 50fe: 15 92 01 7a 00 adc $0x7a0192,%eax 5103: 00 00 add %al,(%eax) 5105: 02 23 add (%ebx),%ah 5107: 40 inc %eax 5108: 13 b3 03 00 00 15 adc 0x15000003(%ebx),%esi 510e: 93 xchg %eax,%ebx 510f: 01 3b add %edi,(%ebx) 5111: 01 00 add %eax,(%eax) 5113: 00 02 add %al,(%edx) 5115: 23 44 12 70 and 0x70(%edx,%edx,1),%eax 5119: 6f outsl %ds:(%esi),(%dx) 511a: 73 69 jae 5185 <.debug_info+0x5185> 511c: 78 5f js 517d <.debug_info+0x517d> 511e: 74 69 je 5189 <.debug_info+0x5189> 5120: 6d insl (%dx),%es:(%edi) 5121: 65 gs 5122: 72 73 jb 5197 <.debug_info+0x5197> 5124: 00 15 96 01 c8 1d add %dl,0x1dc80196 512a: 00 00 add %al,(%eax) 512c: 02 23 add (%ebx),%ah 512e: 48 dec %eax 512f: 12 72 65 adc 0x65(%edx),%dh 5132: 61 popa 5133: 6c insb (%dx),%es:(%edi) 5134: 5f pop %edi 5135: 74 69 je 51a0 <.debug_info+0x51a0> 5137: 6d insl (%dx),%es:(%edi) 5138: 65 gs 5139: 72 00 jb 513b <.debug_info+0x513b> 513b: 15 99 01 a6 41 adc $0x41a60199,%eax 5140: 00 00 add %al,(%eax) 5142: 02 23 add (%ebx),%ah 5144: 50 push %eax 5145: 12 74 73 6b adc 0x6b(%ebx,%esi,2),%dh 5149: 00 15 9a 01 a5 1d add %dl,0x1da5019a 514f: 00 00 add %al,(%eax) 5151: 02 23 add (%ebx),%ah 5153: 6c insb (%dx),%es:(%edi) 5154: 12 69 74 adc 0x74(%ecx),%ch 5157: 5f pop %edi 5158: 72 65 jb 51bf <.debug_info+0x51bf> 515a: 61 popa 515b: 6c insb (%dx),%es:(%edi) 515c: 5f pop %edi 515d: 69 6e 63 72 00 15 9b imul $0x9b150072,0x63(%esi),%ebp 5164: 01 97 41 00 00 02 add %edx,0x2000041(%edi) 516a: 23 70 13 and 0x13(%eax),%esi 516d: 5a pop %edx 516e: 00 00 add %al,(%eax) 5170: 00 15 9e 01 90 22 add %dl,0x2290019e 5176: 00 00 add %al,(%eax) 5178: 02 23 add (%ebx),%ah 517a: 78 13 js 518f <.debug_info+0x518f> 517c: 87 02 xchg %eax,(%edx) 517e: 00 00 add %al,(%eax) 5180: 15 9e 01 90 22 adc $0x2290019e,%eax 5185: 00 00 add %al,(%eax) 5187: 02 23 add (%ebx),%ah 5189: 7c 12 jl 519d <.debug_info+0x519d> 518b: 69 74 5f 70 72 6f 66 imul $0x5f666f72,0x70(%edi,%ebx,2),%esi 5192: 5f 5193: 69 6e 63 72 00 15 9f imul $0x9f150072,0x63(%esi),%ebp 519a: 01 90 22 00 00 03 add %edx,0x3000022(%eax) 51a0: 23 80 01 12 69 74 and 0x74691201(%eax),%eax 51a6: 5f pop %edi 51a7: 76 69 jbe 5212 <.debug_info+0x5212> 51a9: 72 74 jb 521f <.debug_info+0x521f> 51ab: 5f pop %edi 51ac: 69 6e 63 72 00 15 9f imul $0x9f150072,0x63(%esi),%ebp 51b3: 01 90 22 00 00 03 add %edx,0x3000022(%eax) 51b9: 23 84 01 12 70 67 72 and 0x72677012(%ecx,%eax,1),%eax 51c0: 70 00 jo 51c2 <.debug_info+0x51c2> 51c2: 15 a2 01 60 03 adc $0x36001a2,%eax 51c7: 00 00 add %al,(%eax) 51c9: 03 23 add (%ebx),%esp 51cb: 88 01 mov %al,(%ecx) 51cd: 12 74 74 79 adc 0x79(%esp,%esi,2),%dh 51d1: 5f pop %edi 51d2: 6f outsl %ds:(%esi),(%dx) 51d3: 6c insb (%dx),%es:(%edi) 51d4: 64 fs 51d5: 5f pop %edi 51d6: 70 67 jo 523f <.debug_info+0x523f> 51d8: 72 70 jb 524a <.debug_info+0x524a> 51da: 00 15 a3 01 60 03 add %dl,0x36001a3 51e0: 00 00 add %al,(%eax) 51e2: 03 23 add (%ebx),%esp 51e4: 8c 01 movw %es,(%ecx) 51e6: 12 73 65 adc 0x65(%ebx),%dh 51e9: 73 73 jae 525e <.debug_info+0x525e> 51eb: 69 6f 6e 00 15 a4 01 imul $0x1a41500,0x6e(%edi),%ebp 51f2: 60 pusha 51f3: 03 00 add (%eax),%eax 51f5: 00 03 add %al,(%ebx) 51f7: 23 90 01 12 6c 65 and 0x656c1201(%eax),%edx 51fd: 61 popa 51fe: 64 fs 51ff: 65 gs 5200: 72 00 jb 5202 <.debug_info+0x5202> 5202: 15 a6 01 7a 00 adc $0x7a01a6,%eax 5207: 00 00 add %al,(%eax) 5209: 03 23 add (%ebx),%esp 520b: 94 xchg %eax,%esp 520c: 01 12 add %edx,(%edx) 520e: 74 74 je 5284 <.debug_info+0x5284> 5210: 79 00 jns 5212 <.debug_info+0x5212> 5212: 15 a8 01 82 53 adc $0x538201a8,%eax 5217: 00 00 add %al,(%eax) 5219: 03 23 add (%ebx),%esp 521b: 98 cwtl 521c: 01 12 add %edx,(%edx) 521e: 75 74 jne 5294 <.debug_info+0x5294> 5220: 69 6d 65 00 15 b0 01 imul $0x1b01500,0x65(%ebp),%ebp 5227: 90 nop 5228: 22 00 and (%eax),%al 522a: 00 03 add %al,(%ebx) 522c: 23 9c 01 12 73 74 69 and 0x69747312(%ecx,%eax,1),%ebx 5233: 6d insl (%dx),%es:(%edi) 5234: 65 00 15 b0 01 90 22 add %dl,%gs:0x229001b0 523b: 00 00 add %al,(%eax) 523d: 03 23 add (%ebx),%esp 523f: a0 01 12 63 75 mov 0x75631201,%al 5244: 74 69 je 52af <.debug_info+0x52af> 5246: 6d insl (%dx),%es:(%edi) 5247: 65 00 15 b0 01 90 22 add %dl,%gs:0x229001b0 524e: 00 00 add %al,(%eax) 5250: 03 23 add (%ebx),%esp 5252: a4 movsb %ds:(%esi),%es:(%edi) 5253: 01 12 add %edx,(%edx) 5255: 63 73 74 arpl %si,0x74(%ebx) 5258: 69 6d 65 00 15 b0 01 imul $0x1b01500,0x65(%ebp),%ebp 525f: 90 nop 5260: 22 00 and (%eax),%al 5262: 00 03 add %al,(%ebx) 5264: 23 a8 01 12 6e 76 and 0x766e1201(%eax),%ebp 526a: 63 73 77 arpl %si,0x77(%ebx) 526d: 00 15 b1 01 98 00 add %dl,0x9801b1 5273: 00 00 add %al,(%eax) 5275: 03 23 add (%ebx),%esp 5277: ac lods %ds:(%esi),%al 5278: 01 12 add %edx,(%edx) 527a: 6e outsb %ds:(%esi),(%dx) 527b: 69 76 63 73 77 00 15 imul $0x15007773,0x63(%esi),%esi 5282: b1 01 mov $0x1,%cl 5284: 98 cwtl 5285: 00 00 add %al,(%eax) 5287: 00 03 add %al,(%ebx) 5289: 23 b0 01 12 63 6e and 0x6e631201(%eax),%esi 528f: 76 63 jbe 52f4 <.debug_info+0x52f4> 5291: 73 77 jae 530a <.debug_info+0x530a> 5293: 00 15 b1 01 98 00 add %dl,0x9801b1 5299: 00 00 add %al,(%eax) 529b: 03 23 add (%ebx),%esp 529d: b4 01 mov $0x1,%ah 529f: 12 63 6e adc 0x6e(%ebx),%ah 52a2: 69 76 63 73 77 00 15 imul $0x15007773,0x63(%esi),%esi 52a9: b1 01 mov $0x1,%cl 52ab: 98 cwtl 52ac: 00 00 add %al,(%eax) 52ae: 00 03 add %al,(%ebx) 52b0: 23 b8 01 12 6d 69 and 0x696d1201(%eax),%edi 52b6: 6e outsb %ds:(%esi),(%dx) 52b7: 5f pop %edi 52b8: 66 data16 52b9: 6c insb (%dx),%es:(%edi) 52ba: 74 00 je 52bc <.debug_info+0x52bc> 52bc: 15 b2 01 98 00 adc $0x9801b2,%eax 52c1: 00 00 add %al,(%eax) 52c3: 03 23 add (%ebx),%esp 52c5: bc 01 12 6d 61 mov $0x616d1201,%esp 52ca: 6a 5f push $0x5f 52cc: 66 data16 52cd: 6c insb (%dx),%es:(%edi) 52ce: 74 00 je 52d0 <.debug_info+0x52d0> 52d0: 15 b2 01 98 00 adc $0x9801b2,%eax 52d5: 00 00 add %al,(%eax) 52d7: 03 23 add (%ebx),%esp 52d9: c0 01 12 rolb $0x12,(%ecx) 52dc: 63 6d 69 arpl %bp,0x69(%ebp) 52df: 6e outsb %ds:(%esi),(%dx) 52e0: 5f pop %edi 52e1: 66 data16 52e2: 6c insb (%dx),%es:(%edi) 52e3: 74 00 je 52e5 <.debug_info+0x52e5> 52e5: 15 b2 01 98 00 adc $0x9801b2,%eax 52ea: 00 00 add %al,(%eax) 52ec: 03 23 add (%ebx),%esp 52ee: c4 01 les (%ecx),%eax 52f0: 12 63 6d adc 0x6d(%ebx),%ah 52f3: 61 popa 52f4: 6a 5f push $0x5f 52f6: 66 data16 52f7: 6c insb (%dx),%es:(%edi) 52f8: 74 00 je 52fa <.debug_info+0x52fa> 52fa: 15 b2 01 98 00 adc $0x9801b2,%eax 52ff: 00 00 add %al,(%eax) 5301: 03 23 add (%ebx),%esp 5303: c8 01 13 7c enter $0x1301,$0x7c 5307: 02 00 add (%eax),%al 5309: 00 15 ba 01 c3 02 add %dl,0x2c301ba 530f: 00 00 add %al,(%eax) 5311: 03 23 add (%ebx),%esp 5313: cc int3 5314: 01 12 add %edx,(%edx) 5316: 72 6c jb 5384 <.debug_info+0x5384> 5318: 69 6d 00 15 c5 01 88 imul $0x8801c515,0x0(%ebp),%ebp 531f: 53 push %ebx 5320: 00 00 add %al,(%eax) 5322: 03 23 add (%ebx),%esp 5324: d4 01 aam $0x1 5326: 13 d5 adc %ebp,%edx 5328: 01 00 add %eax,(%eax) 532a: 00 15 c7 01 98 53 add %dl,0x539801c7 5330: 00 00 add %al,(%eax) 5332: 03 23 add (%ebx),%esp 5334: cc int3 5335: 02 13 add (%ebx),%dl 5337: 40 inc %eax 5338: 01 00 add %eax,(%eax) 533a: 00 15 cc 01 ae 53 add %dl,0x53ae01cc 5340: 00 00 add %al,(%eax) 5342: 03 23 add (%ebx),%esp 5344: e4 02 in $0x2,%al 5346: 12 70 72 adc 0x72(%eax),%dh 5349: 6f outsl %ds:(%esi),(%dx) 534a: 63 65 73 arpl %sp,0x73(%ebp) 534d: 73 5f jae 53ae <.debug_info+0x53ae> 534f: 6b 65 79 72 imul $0x72,0x79(%ebp),%esp 5353: 69 6e 67 00 15 cd 01 imul $0x1cd1500,0x67(%esi),%ebp 535a: ae scas %es:(%edi),%al 535b: 53 push %ebx 535c: 00 00 add %al,(%eax) 535e: 03 23 add (%ebx),%esp 5360: e8 02 12 70 61 call 61706567 5365: 63 63 74 arpl %sp,0x74(%ebx) 5368: 00 15 d0 01 78 4f add %dl,0x4f7801d0 536e: 00 00 add %al,(%eax) 5370: 03 23 add (%ebx),%esp 5372: ec in (%dx),%al 5373: 02 00 add (%eax),%al 5375: 26 es 5376: 74 74 je 53ec <.debug_info+0x53ec> 5378: 79 5f jns 53d9 <.debug_info+0x53d9> 537a: 73 74 jae 53f0 <.debug_info+0x53f0> 537c: 72 75 jb 53f3 <.debug_info+0x53f3> 537e: 63 74 00 01 arpl %si,0x1(%eax,%eax,1) 5382: 06 push %es 5383: 04 75 add $0x75,%al 5385: 53 push %ebx 5386: 00 00 add %al,(%eax) 5388: 03 98 53 00 00 c4 add 0xc4000053(%eax),%ebx 538e: 40 inc %eax 538f: 00 00 add %al,(%eax) 5391: 04 91 add $0x91,%al 5393: 00 00 add %al,(%eax) 5395: 00 0e add %cl,(%esi) 5397: 00 03 add %al,(%ebx) 5399: a8 53 test $0x53,%al 539b: 00 00 add %al,(%eax) 539d: c8 1d 00 00 enter $0x1d,$0x0 53a1: 04 91 add $0x91,%al 53a3: 00 00 add %al,(%eax) 53a5: 00 02 add %al,(%edx) 53a7: 00 26 add %ah,(%esi) 53a9: 6b 65 79 00 imul $0x0,0x79(%ebp),%esp 53ad: 01 06 add %eax,(%esi) 53af: 04 a8 add $0xa8,%al 53b1: 53 push %ebx 53b2: 00 00 add %al,(%eax) 53b4: 29 24 54 sub %esp,(%esp,%edx,2) 53b7: 00 00 add %al,(%eax) 53b9: 6b 03 00 imul $0x0,(%ebx),%eax 53bc: 00 8c 15 cd 02 12 6e add %cl,0x6e1202cd(%ebp,%edx,1) 53c3: 67 72 6f addr16 jb 5435 <.debug_info+0x5435> 53c6: 75 70 jne 5438 <.debug_info+0x5438> 53c8: 73 00 jae 53ca <.debug_info+0x53ca> 53ca: 15 ce 02 7a 00 adc $0x7a02ce,%eax 53cf: 00 00 add %al,(%eax) 53d1: 02 23 add (%ebx),%ah 53d3: 00 12 add %dl,(%edx) 53d5: 75 73 jne 544a <.debug_info+0x544a> 53d7: 61 popa 53d8: 67 65 00 15 addr16 add %dl,%gs:(%di) 53dc: cf iret 53dd: 02 a1 1f 00 00 02 add 0x200001f(%ecx),%ah 53e3: 23 04 12 and (%edx,%edx,1),%eax 53e6: 73 6d jae 5455 <.debug_info+0x5455> 53e8: 61 popa 53e9: 6c insb (%dx),%es:(%edi) 53ea: 6c insb (%dx),%es:(%edi) 53eb: 5f pop %edi 53ec: 62 6c 6f 63 bound %ebp,0x63(%edi,%ebp,2) 53f0: 6b 00 15 imul $0x15,(%eax),%eax 53f3: d0 02 rolb (%edx) 53f5: 24 54 and $0x54,%al 53f7: 00 00 add %al,(%eax) 53f9: 02 23 add (%ebx),%ah 53fb: 08 12 or %dl,(%edx) 53fd: 6e outsb %ds:(%esi),(%dx) 53fe: 62 6c 6f 63 bound %ebp,0x63(%edi,%ebp,2) 5402: 6b 73 00 15 imul $0x15,0x0(%ebx),%esi 5406: d1 02 roll (%edx) 5408: 7a 00 jp 540a <.debug_info+0x540a> 540a: 00 00 add %al,(%eax) 540c: 03 23 add (%ebx),%esp 540e: 88 01 mov %al,(%ecx) 5410: 12 62 6c adc 0x6c(%edx),%ah 5413: 6f outsl %ds:(%esi),(%dx) 5414: 63 6b 73 arpl %bp,0x73(%ebx) 5417: 00 15 d2 02 34 54 add %dl,0x543402d2 541d: 00 00 add %al,(%eax) 541f: 03 23 add (%ebx),%esp 5421: 8c 01 movw %es,(%ecx) 5423: 00 03 add %al,(%ebx) 5425: 34 54 xor $0x54,%al 5427: 00 00 add %al,(%eax) 5429: 9a 03 00 00 04 91 00 lcall $0x91,$0x4000003 5430: 00 00 add %al,(%eax) 5432: 1f pop %ds 5433: 00 03 add %al,(%ebx) 5435: 43 inc %ebx 5436: 54 push %esp 5437: 00 00 add %al,(%eax) 5439: 43 inc %ebx 543a: 54 push %esp 543b: 00 00 add %al,(%eax) 543d: 1c 91 sbb $0x91,%al 543f: 00 00 add %al,(%eax) 5441: 00 00 add %al,(%eax) 5443: 06 push %es 5444: 04 9a add $0x9a,%al 5446: 03 00 add (%eax),%eax 5448: 00 2a add %ch,(%edx) 544a: a5 movsl %ds:(%esi),%es:(%edi) 544b: 54 push %esp 544c: 00 00 add %al,(%eax) 544e: 2a 03 sub (%ebx),%al 5450: 00 00 add %al,(%eax) 5452: 04 15 add $0x15,%al 5454: f6 02 2b testb $0x2b,(%edx) 5457: 53 push %ebx 5458: 4c dec %esp 5459: 45 inc %ebp 545a: 45 inc %ebp 545b: 50 push %eax 545c: 5f pop %edi 545d: 4e dec %esi 545e: 4f dec %edi 545f: 52 push %edx 5460: 4d dec %ebp 5461: 41 inc %ecx 5462: 4c dec %esp 5463: 00 00 add %al,(%eax) 5465: 2b 53 4c sub 0x4c(%ebx),%edx 5468: 45 inc %ebp 5469: 45 inc %ebp 546a: 50 push %eax 546b: 5f pop %edi 546c: 4e dec %esi 546d: 4f dec %edi 546e: 4e dec %esi 546f: 49 dec %ecx 5470: 4e dec %esi 5471: 54 push %esp 5472: 45 inc %ebp 5473: 52 push %edx 5474: 41 inc %ecx 5475: 43 inc %ebx 5476: 54 push %esp 5477: 49 dec %ecx 5478: 56 push %esi 5479: 45 inc %ebp 547a: 00 01 add %al,(%ecx) 547c: 2b 53 4c sub 0x4c(%ebx),%edx 547f: 45 inc %ebp 5480: 45 inc %ebp 5481: 50 push %eax 5482: 5f pop %edi 5483: 49 dec %ecx 5484: 4e dec %esi 5485: 54 push %esp 5486: 45 inc %ebp 5487: 52 push %edx 5488: 41 inc %ecx 5489: 43 inc %ebx 548a: 54 push %esp 548b: 49 dec %ecx 548c: 56 push %esi 548d: 45 inc %ebp 548e: 00 02 add %al,(%edx) 5490: 2b 53 4c sub 0x4c(%ebx),%edx 5493: 45 inc %ebp 5494: 45 inc %ebp 5495: 50 push %eax 5496: 5f pop %edi 5497: 49 dec %ecx 5498: 4e dec %esi 5499: 54 push %esp 549a: 45 inc %ebp 549b: 52 push %edx 549c: 52 push %edx 549d: 55 push %ebp 549e: 50 push %eax 549f: 54 push %esp 54a0: 45 inc %ebp 54a1: 44 inc %esp 54a2: 00 03 add %al,(%ebx) 54a4: 00 1e add %bl,(%esi) 54a6: 02 01 add (%ecx),%al 54a8: 00 00 add %al,(%eax) 54aa: 26 es 54ab: 70 72 jo 551f <.debug_info+0x551f> 54ad: 69 6f 5f 61 72 72 61 imul $0x61727261,0x5f(%edi),%ebp 54b4: 79 00 jns 54b6 <.debug_info+0x54b6> 54b6: 01 06 add %eax,(%esi) 54b8: 04 aa add $0xaa,%al 54ba: 54 push %esp 54bb: 00 00 add %al,(%eax) 54bd: 26 es 54be: 6c insb (%dx),%es:(%edi) 54bf: 69 6e 75 78 5f 62 69 imul $0x69625f78,0x75(%esi),%ebp 54c6: 6e outsb %ds:(%esi),(%dx) 54c7: 66 6d insw (%dx),%es:(%edi) 54c9: 74 00 je 54cb <.debug_info+0x54cb> 54cb: 01 06 add %eax,(%esi) 54cd: 04 bd add $0xbd,%al 54cf: 54 push %esp 54d0: 00 00 add %al,(%eax) 54d2: 03 e2 add %edx,%esp 54d4: 54 push %esp 54d5: 00 00 add %al,(%eax) 54d7: b1 3f mov $0x3f,%cl 54d9: 00 00 add %al,(%eax) 54db: 04 91 add $0x91,%al 54dd: 00 00 add %al,(%eax) 54df: 00 02 add %al,(%edx) 54e1: 00 06 add %al,(%esi) 54e3: 04 7a add $0x7a,%al 54e5: 00 00 add %al,(%eax) 54e7: 00 06 add %al,(%esi) 54e9: 04 b4 add $0xb4,%al 54eb: 53 push %ebx 54ec: 00 00 add %al,(%eax) 54ee: 06 push %es 54ef: 04 06 add $0x6,%al 54f1: 34 00 xor $0x0,%al 54f3: 00 26 add %ah,(%esi) 54f5: 66 69 6c 65 73 5f 73 imul $0x735f,0x73(%ebp),%bp 54fc: 74 72 je 5570 <.debug_info+0x5570> 54fe: 75 63 jne 5563 <.debug_info+0x5563> 5500: 74 00 je 5502 <.debug_info+0x5502> 5502: 01 06 add %eax,(%esi) 5504: 04 f4 add $0xf4,%al 5506: 54 push %esp 5507: 00 00 add %al,(%eax) 5509: 1a b0 02 00 00 01 sbb 0x1000002(%eax),%dh 550f: 06 push %es 5510: 04 09 add $0x9,%al 5512: 55 push %ebp 5513: 00 00 add %al,(%eax) 5515: 06 push %es 5516: 04 1d add $0x1d,%al 5518: 50 push %eax 5519: 00 00 add %al,(%eax) 551b: 06 push %es 551c: 04 19 add $0x19,%al 551e: 4f dec %edi 551f: 00 00 add %al,(%eax) 5521: 0c 31 or $0x31,%al 5523: 55 push %ebp 5524: 00 00 add %al,(%eax) 5526: 01 7a 00 add %edi,0x0(%edx) 5529: 00 00 add %al,(%eax) 552b: 08 b7 1d 00 00 00 or %dh,0x1d(%edi) 5531: 06 push %es 5532: 04 21 add $0x21,%al 5534: 55 push %ebp 5535: 00 00 add %al,(%eax) 5537: 06 push %es 5538: 04 4a add $0x4a,%al 553a: 2f das 553b: 00 00 add %al,(%eax) 553d: 1a 12 sbb (%edx),%dl 553f: 01 00 add %eax,(%eax) 5541: 00 01 add %al,(%ecx) 5543: 06 push %es 5544: 04 3d add $0x3d,%al 5546: 55 push %ebp 5547: 00 00 add %al,(%eax) 5549: 26 es 554a: 72 74 jb 55c0 <.debug_info+0x55c0> 554c: 5f pop %edi 554d: 6d insl (%dx),%es:(%edi) 554e: 75 74 jne 55c4 <.debug_info+0x55c4> 5550: 65 gs 5551: 78 5f js 55b2 <.debug_info+0x55b2> 5553: 77 61 ja 55b6 <.debug_info+0x55b6> 5555: 69 74 65 72 00 01 06 imul $0x4060100,0x72(%ebp),%esi 555c: 04 555d: 49 dec %ecx 555e: 55 push %ebp 555f: 00 00 add %al,(%eax) 5561: 06 push %es 5562: 04 23 add $0x23,%al 5564: 3d 00 00 29 8e cmp $0x8e290000,%eax 5569: 55 push %ebp 556a: 00 00 add %al,(%eax) 556c: 04 01 add $0x1,%al 556e: 00 00 add %al,(%eax) 5570: 04 15 add $0x15,%al 5572: 1e push %ds 5573: 02 0b add (%ebx),%cl 5575: 72 65 jb 55dc <.debug_info+0x55dc> 5577: 63 6c 61 69 arpl %bp,0x69(%ecx) 557b: 6d insl (%dx),%es:(%edi) 557c: 65 gs 557d: 64 fs 557e: 5f pop %edi 557f: 73 6c jae 55ed <.debug_info+0x55ed> 5581: 61 popa 5582: 62 00 bound %eax,(%eax) 5584: 46 inc %esi 5585: 52 push %edx 5586: 98 cwtl 5587: 00 00 add %al,(%eax) 5589: 00 02 add %al,(%edx) 558b: 23 00 and (%eax),%eax 558d: 00 06 add %al,(%esi) 558f: 04 67 add $0x67,%al 5591: 55 push %ebp 5592: 00 00 add %al,(%eax) 5594: 1a 86 03 00 00 01 sbb 0x1000003(%esi),%al 559a: 06 push %es 559b: 04 94 add $0x94,%al 559d: 55 push %ebp 559e: 00 00 add %al,(%eax) 55a0: 1a 35 01 00 00 01 sbb 0x1000001,%dh 55a6: 06 push %es 55a7: 04 a0 add $0xa0,%al 55a9: 55 push %ebp 55aa: 00 00 add %al,(%eax) 55ac: 06 push %es 55ad: 04 c8 add $0xc8,%al 55af: 32 00 xor (%eax),%al 55b1: 00 06 add %al,(%esi) 55b3: 04 2f add $0x2f,%al 55b5: 40 inc %eax 55b6: 00 00 add %al,(%eax) 55b8: 26 es 55b9: 66 data16 55ba: 75 74 jne 5630 <.debug_info+0x5630> 55bc: 65 gs 55bd: 78 5f js 561e <.debug_info+0x561e> 55bf: 70 69 jo 562a <.debug_info+0x562a> 55c1: 5f pop %edi 55c2: 73 74 jae 5638 <.debug_info+0x5638> 55c4: 61 popa 55c5: 74 65 je 562c <.debug_info+0x562c> 55c7: 00 01 add %al,(%ecx) 55c9: 06 push %es 55ca: 04 b8 add $0xb8,%al 55cc: 55 push %ebp 55cd: 00 00 add %al,(%eax) 55cf: 26 es 55d0: 70 69 jo 563b <.debug_info+0x563b> 55d2: 70 65 jo 5639 <.debug_info+0x5639> 55d4: 5f pop %edi 55d5: 69 6e 6f 64 65 5f 69 imul $0x695f6564,0x6f(%esi),%ebp 55dc: 6e outsb %ds:(%esi),(%dx) 55dd: 66 6f outsw %ds:(%esi),(%dx) 55df: 00 01 add %al,(%ecx) 55e1: 06 push %es 55e2: 04 cf add $0xcf,%al 55e4: 55 push %ebp 55e5: 00 00 add %al,(%eax) 55e7: 0e push %cs 55e8: 25 56 00 00 61 and $0x61000056,%eax 55ed: 74 74 je 5663 <.debug_info+0x5663> 55ef: 72 69 jb 565a <.debug_info+0x565a> 55f1: 62 75 74 bound %esi,0x74(%ebp) 55f4: 65 00 0c 22 add %cl,%gs:(%edx) 55f8: 12 0f adc (%edi),%cl 55fa: a7 cmpsl %es:(%edi),%ds:(%esi) 55fb: 01 00 add %eax,(%eax) 55fd: 00 22 add %ah,(%edx) 55ff: 13 18 adc (%eax),%ebx 5601: 3d 00 00 02 23 cmp $0x23020000,%eax 5606: 00 0f add %cl,(%edi) 5608: 2f das 5609: 01 00 add %eax,(%eax) 560b: 00 22 add %ah,(%edx) 560d: 14 3a adc $0x3a,%al 560f: 5a pop %edx 5610: 00 00 add %al,(%eax) 5612: 02 23 add (%ebx),%ah 5614: 04 0b add $0xb,%al 5616: 6d insl (%dx),%es:(%edi) 5617: 6f outsl %ds:(%esi),(%dx) 5618: 64 65 00 22 add %ah,%fs:%gs:(%edx) 561c: 15 52 03 00 00 adc $0x352,%eax 5621: 02 23 add (%ebx),%ah 5623: 08 00 or %al,(%eax) 5625: 10 3a adc %bh,(%edx) 5627: 5a pop %edx 5628: 00 00 add %al,(%eax) 562a: 6d insl (%dx),%es:(%edi) 562b: 6f outsl %ds:(%esi),(%dx) 562c: 64 fs 562d: 75 6c jne 569b <.debug_info+0x569b> 562f: 65 00 00 add %al,%gs:(%eax) 5632: 12 20 adc (%eax),%ah 5634: 15 0b 73 74 61 adc $0x6174730b,%eax 5639: 74 65 je 56a0 <.debug_info+0x56a0> 563b: 00 21 add %ah,(%ecx) 563d: f8 clc 563e: d7 xlat %ds:(%ebx) 563f: 62 00 bound %eax,(%eax) 5641: 00 02 add %al,(%edx) 5643: 23 00 and (%eax),%eax 5645: 0f 42 02 cmovb (%edx),%eax 5648: 00 00 add %al,(%eax) 564a: 21 fb and %edi,%ebx 564c: c8 1d 00 00 enter $0x1d,$0x0 5650: 02 23 add (%ebx),%ah 5652: 04 0f add $0xf,%al 5654: a7 cmpsl %es:(%edi),%ds:(%esi) 5655: 01 00 add %eax,(%eax) 5657: 00 21 add %ah,(%ecx) 5659: fe (bad) 565a: 74 61 je 56bd <.debug_info+0x56bd> 565c: 00 00 add %al,(%eax) 565e: 02 23 add (%ebx),%ah 5660: 0c 12 or $0x12,%al 5662: 6d insl (%dx),%es:(%edi) 5663: 6b 6f 62 6a imul $0x6a,0x62(%edi),%ebp 5667: 00 21 add %ah,(%ecx) 5669: 01 01 add %eax,(%ecx) 566b: 80 62 00 00 andb $0x0,0x0(%edx) 566f: 02 23 add (%ebx),%ah 5671: 48 dec %eax 5672: 12 70 61 adc 0x61(%eax),%dh 5675: 72 61 jb 56d8 <.debug_info+0x56d8> 5677: 6d insl (%dx),%es:(%edi) 5678: 5f pop %edi 5679: 61 popa 567a: 74 74 je 56f0 <.debug_info+0x56f0> 567c: 72 73 jb 56f1 <.debug_info+0x56f1> 567e: 00 21 add %ah,(%ecx) 5680: 02 01 add (%ecx),%al 5682: cf iret 5683: 63 00 arpl %ax,(%eax) 5685: 00 03 add %al,(%ebx) 5687: 23 98 01 12 6d 6f and 0x6f6d1201(%eax),%ebx 568d: 64 69 6e 66 6f 5f 61 imul $0x74615f6f,%fs:0x66(%esi),%ebp 5694: 74 5695: 74 72 je 5709 <.debug_info+0x5709> 5697: 73 00 jae 5699 <.debug_info+0x5699> 5699: 21 03 and %eax,(%ebx) 569b: 01 10 add %edx,(%eax) 569d: 62 00 bound %eax,(%eax) 569f: 00 03 add %al,(%ebx) 56a1: 23 9c 01 12 76 65 72 and 0x72657612(%ecx,%eax,1),%ebx 56a8: 73 69 jae 5713 <.debug_info+0x5713> 56aa: 6f outsl %ds:(%esi),(%dx) 56ab: 6e outsb %ds:(%esi),(%dx) 56ac: 00 21 add %ah,(%ecx) 56ae: 04 01 add $0x1,%al 56b0: 18 3d 00 00 03 23 sbb %bh,0x23030000 56b6: a0 01 12 73 72 mov 0x72731201,%al 56bb: 63 76 65 arpl %si,0x65(%esi) 56be: 72 73 jb 5733 <.debug_info+0x5733> 56c0: 69 6f 6e 00 21 05 01 imul $0x1052100,0x6e(%edi),%ebp 56c7: 18 3d 00 00 03 23 sbb %bh,0x23030000 56cd: a4 movsb %ds:(%esi),%es:(%edi) 56ce: 01 12 add %edx,(%edx) 56d0: 73 79 jae 574b <.debug_info+0x574b> 56d2: 6d insl (%dx),%es:(%edi) 56d3: 73 00 jae 56d5 <.debug_info+0x56d5> 56d5: 21 08 and %ecx,(%eax) 56d7: 01 d5 add %edx,%ebp 56d9: 63 00 arpl %ax,(%eax) 56db: 00 03 add %al,(%ebx) 56dd: 23 a8 01 12 6e 75 and 0x756e1201(%eax),%ebp 56e3: 6d insl (%dx),%es:(%edi) 56e4: 5f pop %edi 56e5: 73 79 jae 5760 <.debug_info+0x5760> 56e7: 6d insl (%dx),%es:(%edi) 56e8: 73 00 jae 56ea <.debug_info+0x56ea> 56ea: 21 09 and %ecx,(%ecx) 56ec: 01 3b add %edi,(%ebx) 56ee: 01 00 add %eax,(%eax) 56f0: 00 03 add %al,(%ebx) 56f2: 23 ac 01 12 63 72 63 and 0x63726312(%ecx,%eax,1),%ebp 56f9: 73 00 jae 56fb <.debug_info+0x56fb> 56fb: 21 0a and %ecx,(%edx) 56fd: 01 e0 add %esp,%eax 56ff: 63 00 arpl %ax,(%eax) 5701: 00 03 add %al,(%ebx) 5703: 23 b0 01 12 67 70 and 0x70671201(%eax),%esi 5709: 6c insb (%dx),%es:(%edi) 570a: 5f pop %edi 570b: 73 79 jae 5786 <.debug_info+0x5786> 570d: 6d insl (%dx),%es:(%edi) 570e: 73 00 jae 5710 <.debug_info+0x5710> 5710: 21 0d 01 d5 63 00 and %ecx,0x63d501 5716: 00 03 add %al,(%ebx) 5718: 23 b4 01 12 6e 75 6d and 0x6d756e12(%ecx,%eax,1),%esi 571f: 5f pop %edi 5720: 67 70 6c addr16 jo 578f <.debug_info+0x578f> 5723: 5f pop %edi 5724: 73 79 jae 579f <.debug_info+0x579f> 5726: 6d insl (%dx),%es:(%edi) 5727: 73 00 jae 5729 <.debug_info+0x5729> 5729: 21 0e and %ecx,(%esi) 572b: 01 3b add %edi,(%ebx) 572d: 01 00 add %eax,(%eax) 572f: 00 03 add %al,(%ebx) 5731: 23 b8 01 12 67 70 and 0x70671201(%eax),%edi 5737: 6c insb (%dx),%es:(%edi) 5738: 5f pop %edi 5739: 63 72 63 arpl %si,0x63(%edx) 573c: 73 00 jae 573e <.debug_info+0x573e> 573e: 21 0f and %ecx,(%edi) 5740: 01 e0 add %esp,%eax 5742: 63 00 arpl %ax,(%eax) 5744: 00 03 add %al,(%ebx) 5746: 23 bc 01 12 75 6e 75 and 0x756e7512(%ecx,%eax,1),%edi 574d: 73 65 jae 57b4 <.debug_info+0x57b4> 574f: 64 fs 5750: 5f pop %edi 5751: 73 79 jae 57cc <.debug_info+0x57cc> 5753: 6d insl (%dx),%es:(%edi) 5754: 73 00 jae 5756 <.debug_info+0x5756> 5756: 21 12 and %edx,(%edx) 5758: 01 d5 add %edx,%ebp 575a: 63 00 arpl %ax,(%eax) 575c: 00 03 add %al,(%ebx) 575e: 23 c0 and %eax,%eax 5760: 01 12 add %edx,(%edx) 5762: 6e outsb %ds:(%esi),(%dx) 5763: 75 6d jne 57d2 <.debug_info+0x57d2> 5765: 5f pop %edi 5766: 75 6e jne 57d6 <.debug_info+0x57d6> 5768: 75 73 jne 57dd <.debug_info+0x57dd> 576a: 65 gs 576b: 64 fs 576c: 5f pop %edi 576d: 73 79 jae 57e8 <.debug_info+0x57e8> 576f: 6d insl (%dx),%es:(%edi) 5770: 73 00 jae 5772 <.debug_info+0x5772> 5772: 21 13 and %edx,(%ebx) 5774: 01 3b add %edi,(%ebx) 5776: 01 00 add %eax,(%eax) 5778: 00 03 add %al,(%ebx) 577a: 23 c4 and %esp,%eax 577c: 01 12 add %edx,(%edx) 577e: 75 6e jne 57ee <.debug_info+0x57ee> 5780: 75 73 jne 57f5 <.debug_info+0x57f5> 5782: 65 gs 5783: 64 fs 5784: 5f pop %edi 5785: 63 72 63 arpl %si,0x63(%edx) 5788: 73 00 jae 578a <.debug_info+0x578a> 578a: 21 14 01 and %edx,(%ecx,%eax,1) 578d: e0 63 loopne 57f2 <.debug_info+0x57f2> 578f: 00 00 add %al,(%eax) 5791: 03 23 add (%ebx),%esp 5793: c8 01 12 75 enter $0x1201,$0x75 5797: 6e outsb %ds:(%esi),(%dx) 5798: 75 73 jne 580d <.debug_info+0x580d> 579a: 65 gs 579b: 64 fs 579c: 5f pop %edi 579d: 67 70 6c addr16 jo 580c <.debug_info+0x580c> 57a0: 5f pop %edi 57a1: 73 79 jae 581c <.debug_info+0x581c> 57a3: 6d insl (%dx),%es:(%edi) 57a4: 73 00 jae 57a6 <.debug_info+0x57a6> 57a6: 21 16 and %edx,(%esi) 57a8: 01 d5 add %edx,%ebp 57aa: 63 00 arpl %ax,(%eax) 57ac: 00 03 add %al,(%ebx) 57ae: 23 cc and %esp,%ecx 57b0: 01 12 add %edx,(%edx) 57b2: 6e outsb %ds:(%esi),(%dx) 57b3: 75 6d jne 5822 <.debug_info+0x5822> 57b5: 5f pop %edi 57b6: 75 6e jne 5826 <.debug_info+0x5826> 57b8: 75 73 jne 582d <.debug_info+0x582d> 57ba: 65 gs 57bb: 64 fs 57bc: 5f pop %edi 57bd: 67 70 6c addr16 jo 582c <.debug_info+0x582c> 57c0: 5f pop %edi 57c1: 73 79 jae 583c <.debug_info+0x583c> 57c3: 6d insl (%dx),%es:(%edi) 57c4: 73 00 jae 57c6 <.debug_info+0x57c6> 57c6: 21 17 and %edx,(%edi) 57c8: 01 3b add %edi,(%ebx) 57ca: 01 00 add %eax,(%eax) 57cc: 00 03 add %al,(%ebx) 57ce: 23 d0 and %eax,%edx 57d0: 01 12 add %edx,(%edx) 57d2: 75 6e jne 5842 <.debug_info+0x5842> 57d4: 75 73 jne 5849 <.debug_info+0x5849> 57d6: 65 gs 57d7: 64 fs 57d8: 5f pop %edi 57d9: 67 70 6c addr16 jo 5848 <.debug_info+0x5848> 57dc: 5f pop %edi 57dd: 63 72 63 arpl %si,0x63(%edx) 57e0: 73 00 jae 57e2 <.debug_info+0x57e2> 57e2: 21 18 and %ebx,(%eax) 57e4: 01 e0 add %esp,%eax 57e6: 63 00 arpl %ax,(%eax) 57e8: 00 03 add %al,(%ebx) 57ea: 23 d4 and %esp,%edx 57ec: 01 12 add %edx,(%edx) 57ee: 67 70 6c addr16 jo 585d <.debug_info+0x585d> 57f1: 5f pop %edi 57f2: 66 data16 57f3: 75 74 jne 5869 <.debug_info+0x5869> 57f5: 75 72 jne 5869 <.debug_info+0x5869> 57f7: 65 gs 57f8: 5f pop %edi 57f9: 73 79 jae 5874 <.debug_info+0x5874> 57fb: 6d insl (%dx),%es:(%edi) 57fc: 73 00 jae 57fe <.debug_info+0x57fe> 57fe: 21 1b and %ebx,(%ebx) 5800: 01 d5 add %edx,%ebp 5802: 63 00 arpl %ax,(%eax) 5804: 00 03 add %al,(%ebx) 5806: 23 d8 and %eax,%ebx 5808: 01 12 add %edx,(%edx) 580a: 6e outsb %ds:(%esi),(%dx) 580b: 75 6d jne 587a <.debug_info+0x587a> 580d: 5f pop %edi 580e: 67 70 6c addr16 jo 587d <.debug_info+0x587d> 5811: 5f pop %edi 5812: 66 data16 5813: 75 74 jne 5889 <.debug_info+0x5889> 5815: 75 72 jne 5889 <.debug_info+0x5889> 5817: 65 gs 5818: 5f pop %edi 5819: 73 79 jae 5894 <.debug_info+0x5894> 581b: 6d insl (%dx),%es:(%edi) 581c: 73 00 jae 581e <.debug_info+0x581e> 581e: 21 1c 01 and %ebx,(%ecx,%eax,1) 5821: 3b 01 cmp (%ecx),%eax 5823: 00 00 add %al,(%eax) 5825: 03 23 add (%ebx),%esp 5827: dc 01 faddl (%ecx) 5829: 12 67 70 adc 0x70(%edi),%ah 582c: 6c insb (%dx),%es:(%edi) 582d: 5f pop %edi 582e: 66 data16 582f: 75 74 jne 58a5 <.debug_info+0x58a5> 5831: 75 72 jne 58a5 <.debug_info+0x58a5> 5833: 65 gs 5834: 5f pop %edi 5835: 63 72 63 arpl %si,0x63(%edx) 5838: 73 00 jae 583a <.debug_info+0x583a> 583a: 21 1d 01 e0 63 00 and %ebx,0x63e001 5840: 00 03 add %al,(%ebx) 5842: 23 e0 and %eax,%esp 5844: 01 12 add %edx,(%edx) 5846: 6e outsb %ds:(%esi),(%dx) 5847: 75 6d jne 58b6 <.debug_info+0x58b6> 5849: 5f pop %edi 584a: 65 gs 584b: 78 65 js 58b2 <.debug_info+0x58b2> 584d: 6e outsb %ds:(%esi),(%dx) 584e: 74 72 je 58c2 <.debug_info+0x58c2> 5850: 69 65 73 00 21 20 01 imul $0x1202100,0x73(%ebp),%esp 5857: 3b 01 cmp (%ecx),%eax 5859: 00 00 add %al,(%eax) 585b: 03 23 add (%ebx),%esp 585d: e4 01 in $0x1,%al 585f: 12 65 78 adc 0x78(%ebp),%ah 5862: 74 61 je 58c5 <.debug_info+0x58c5> 5864: 62 6c 65 00 bound %ebp,0x0(%ebp) 5868: 21 21 and %esp,(%ecx) 586a: 01 03 add %eax,(%ebx) 586c: 64 00 00 add %al,%fs:(%eax) 586f: 03 23 add (%ebx),%esp 5871: e8 01 12 69 6e call 6e696a77 5876: 69 74 00 21 24 01 b1 imul $0x2cb10124,0x21(%eax,%eax,1),%esi 587d: 2c 587e: 00 00 add %al,(%eax) 5880: 03 23 add (%ebx),%esp 5882: ec in (%dx),%al 5883: 01 12 add %edx,(%edx) 5885: 6d insl (%dx),%es:(%edi) 5886: 6f outsl %ds:(%esi),(%dx) 5887: 64 fs 5888: 75 6c jne 58f6 <.debug_info+0x58f6> 588a: 65 gs 588b: 5f pop %edi 588c: 69 6e 69 74 00 21 27 imul $0x27210074,0x69(%esi),%ebp 5893: 01 b7 1d 00 00 03 add %esi,0x300001d(%edi) 5899: 23 f0 and %eax,%esi 589b: 01 12 add %edx,(%edx) 589d: 6d insl (%dx),%es:(%edi) 589e: 6f outsl %ds:(%esi),(%dx) 589f: 64 fs 58a0: 75 6c jne 590e <.debug_info+0x590e> 58a2: 65 gs 58a3: 5f pop %edi 58a4: 63 6f 72 arpl %bp,0x72(%edi) 58a7: 65 00 21 add %ah,%gs:(%ecx) 58aa: 2a 01 sub (%ecx),%al 58ac: b7 1d mov $0x1d,%bh 58ae: 00 00 add %al,(%eax) 58b0: 03 23 add (%ebx),%esp 58b2: f4 hlt 58b3: 01 12 add %edx,(%edx) 58b5: 69 6e 69 74 5f 73 69 imul $0x69735f74,0x69(%esi),%ebp 58bc: 7a 65 jp 5923 <.debug_info+0x5923> 58be: 00 21 add %ah,(%ecx) 58c0: 2d 01 98 00 00 sub $0x9801,%eax 58c5: 00 03 add %al,(%ebx) 58c7: 23 f8 and %eax,%edi 58c9: 01 12 add %edx,(%edx) 58cb: 63 6f 72 arpl %bp,0x72(%edi) 58ce: 65 gs 58cf: 5f pop %edi 58d0: 73 69 jae 593b <.debug_info+0x593b> 58d2: 7a 65 jp 5939 <.debug_info+0x5939> 58d4: 00 21 add %ah,(%ecx) 58d6: 2d 01 98 00 00 sub $0x9801,%eax 58db: 00 03 add %al,(%ebx) 58dd: 23 fc and %esp,%edi 58df: 01 12 add %edx,(%edx) 58e1: 69 6e 69 74 5f 74 65 imul $0x65745f74,0x69(%esi),%ebp 58e8: 78 74 js 595e <.debug_info+0x595e> 58ea: 5f pop %edi 58eb: 73 69 jae 5956 <.debug_info+0x5956> 58ed: 7a 65 jp 5954 <.debug_info+0x5954> 58ef: 00 21 add %ah,(%ecx) 58f1: 30 01 xor %al,(%ecx) 58f3: 98 cwtl 58f4: 00 00 add %al,(%eax) 58f6: 00 03 add %al,(%ebx) 58f8: 23 80 02 12 63 6f and 0x6f631202(%eax),%eax 58fe: 72 65 jb 5965 <.debug_info+0x5965> 5900: 5f pop %edi 5901: 74 65 je 5968 <.debug_info+0x5968> 5903: 78 74 js 5979 <.debug_info+0x5979> 5905: 5f pop %edi 5906: 73 69 jae 5971 <.debug_info+0x5971> 5908: 7a 65 jp 596f <.debug_info+0x596f> 590a: 00 21 add %ah,(%ecx) 590c: 30 01 xor %al,(%ecx) 590e: 98 cwtl 590f: 00 00 add %al,(%eax) 5911: 00 03 add %al,(%ebx) 5913: 23 84 02 12 75 6e 77 and 0x776e7512(%edx,%eax,1),%eax 591a: 69 6e 64 5f 69 6e 66 imul $0x666e695f,0x64(%esi),%ebp 5921: 6f outsl %ds:(%esi),(%dx) 5922: 00 21 add %ah,(%ecx) 5924: 33 01 xor (%ecx),%eax 5926: b7 1d mov $0x1d,%bh 5928: 00 00 add %al,(%eax) 592a: 03 23 add (%ebx),%esp 592c: 88 02 mov %al,(%edx) 592e: 12 61 72 adc 0x72(%ecx),%ah 5931: 63 68 00 arpl %bp,0x0(%eax) 5934: 21 36 and %esi,(%esi) 5936: 01 29 add %ebp,(%ecx) 5938: 61 popa 5939: 00 00 add %al,(%eax) 593b: 03 23 add (%ebx),%esp 593d: 8c 02 movw %es,(%edx) 593f: 12 75 6e adc 0x6e(%ebp),%dh 5942: 73 61 jae 59a5 <.debug_info+0x59a5> 5944: 66 data16 5945: 65 00 21 add %ah,%gs:(%ecx) 5948: 39 01 cmp %eax,(%ecx) 594a: 7a 00 jp 594c <.debug_info+0x594c> 594c: 00 00 add %al,(%eax) 594e: 03 23 add (%ebx),%esp 5950: 8c 02 movw %es,(%edx) 5952: 12 6c 69 63 adc 0x63(%ecx,%ebp,2),%ch 5956: 65 6e outsb %gs:(%esi),(%dx) 5958: 73 65 jae 59bf <.debug_info+0x59bf> 595a: 5f pop %edi 595b: 67 70 6c addr16 jo 59ca <.debug_info+0x59ca> 595e: 6f outsl %ds:(%esi),(%dx) 595f: 6b 00 21 imul $0x21,(%eax),%eax 5962: 3c 01 cmp $0x1,%al 5964: 7a 00 jp 5966 <.debug_info+0x5966> 5966: 00 00 add %al,(%eax) 5968: 03 23 add (%ebx),%esp 596a: 90 nop 596b: 02 12 add (%edx),%dl 596d: 72 65 jb 59d4 <.debug_info+0x59d4> 596f: 66 data16 5970: 00 21 add %ah,(%ecx) 5972: 40 inc %eax 5973: 01 0e add %ecx,(%esi) 5975: 64 00 00 add %al,%fs:(%eax) 5978: 03 23 add (%ebx),%esp 597a: 80 03 12 addb $0x12,(%ebx) 597d: 6d insl (%dx),%es:(%edi) 597e: 6f outsl %ds:(%esi),(%dx) 597f: 64 fs 5980: 75 6c jne 59ee <.debug_info+0x59ee> 5982: 65 gs 5983: 73 5f jae 59e4 <.debug_info+0x59e4> 5985: 77 68 ja 59ef <.debug_info+0x59ef> 5987: 69 63 68 5f 75 73 65 imul $0x6573755f,0x68(%ebx),%esp 598e: 5f pop %edi 598f: 6d insl (%dx),%es:(%edi) 5990: 65 00 21 add %ah,%gs:(%ecx) 5993: 43 inc %ebx 5994: 01 c8 add %ecx,%eax 5996: 1d 00 00 03 23 sbb $0x23030000,%eax 599b: 80 23 12 andb $0x12,(%ebx) 599e: 77 61 ja 5a01 <.debug_info+0x5a01> 59a0: 69 74 65 72 00 21 46 imul $0x1462100,0x72(%ebp),%esi 59a7: 01 59a8: a5 movsl %ds:(%esi),%es:(%edi) 59a9: 1d 00 00 03 23 sbb $0x23030000,%eax 59ae: 88 23 mov %ah,(%ebx) 59b0: 12 65 78 adc 0x78(%ebp),%ah 59b3: 69 74 00 21 49 01 f6 imul $0x2cf60149,0x21(%eax,%eax,1),%esi 59ba: 2c 59bb: 00 00 add %al,(%eax) 59bd: 03 23 add (%ebx),%esp 59bf: 8c 23 movw %fs,(%ebx) 59c1: 12 73 79 adc 0x79(%ebx),%dh 59c4: 6d insl (%dx),%es:(%edi) 59c5: 74 61 je 5a28 <.debug_info+0x5a28> 59c7: 62 00 bound %eax,(%eax) 59c9: 21 4e 01 and %ecx,0x1(%esi) 59cc: 1e push %ds 59cd: 64 00 00 add %al,%fs:(%eax) 59d0: 03 23 add (%ebx),%esp 59d2: 90 nop 59d3: 23 12 and (%edx),%edx 59d5: 6e outsb %ds:(%esi),(%dx) 59d6: 75 6d jne 5a45 <.debug_info+0x5a45> 59d8: 5f pop %edi 59d9: 73 79 jae 5a54 <.debug_info+0x5a54> 59db: 6d insl (%dx),%es:(%edi) 59dc: 74 61 je 5a3f <.debug_info+0x5a3f> 59de: 62 00 bound %eax,(%eax) 59e0: 21 4f 01 and %ecx,0x1(%edi) 59e3: 98 cwtl 59e4: 00 00 add %al,(%eax) 59e6: 00 03 add %al,(%ebx) 59e8: 23 94 23 12 73 74 72 and 0x72747312(%ebx),%edx 59ef: 74 61 je 5a52 <.debug_info+0x5a52> 59f1: 62 00 bound %eax,(%eax) 59f3: 21 50 01 and %edx,0x1(%eax) 59f6: bb 01 00 00 03 mov $0x3000001,%ebx 59fb: 23 98 23 12 73 65 and 0x65731223(%eax),%ebx 5a01: 63 74 5f 61 arpl %si,0x61(%edi,%ebx,2) 5a05: 74 74 je 5a7b <.debug_info+0x5a7b> 5a07: 72 73 jb 5a7c <.debug_info+0x5a7c> 5a09: 00 21 add %ah,(%ecx) 5a0b: 53 push %ebx 5a0c: 01 24 64 add %esp,(%esp) 5a0f: 00 00 add %al,(%eax) 5a11: 03 23 add (%ebx),%esp 5a13: 9c pushf 5a14: 23 12 and (%edx),%edx 5a16: 70 65 jo 5a7d <.debug_info+0x5a7d> 5a18: 72 63 jb 5a7d <.debug_info+0x5a7d> 5a1a: 70 75 jo 5a91 <.debug_info+0x5a91> 5a1c: 00 21 add %ah,(%ecx) 5a1e: 57 push %edi 5a1f: 01 b7 1d 00 00 03 add %esi,0x300001d(%edi) 5a25: 23 a0 23 12 61 72 and 0x72611223(%eax),%esp 5a2b: 67 73 00 addr16 jae 5a2e <.debug_info+0x5a2e> 5a2e: 21 5b 01 and %ebx,0x1(%ebx) 5a31: bb 01 00 00 03 mov $0x3000001,%ebx 5a36: 23 a4 23 00 06 04 25 and 0x25040600(%ebx),%esp 5a3d: 56 push %esi 5a3e: 00 00 add %al,(%eax) 5a40: 0e push %cs 5a41: 77 5a ja 5a9d <.debug_info+0x5a9d> 5a43: 00 00 add %al,(%eax) 5a45: 61 popa 5a46: 74 74 je 5abc <.debug_info+0x5abc> 5a48: 72 69 jb 5ab3 <.debug_info+0x5ab3> 5a4a: 62 75 74 bound %esi,0x74(%ebp) 5a4d: 65 gs 5a4e: 5f pop %edi 5a4f: 67 72 6f addr16 jb 5ac1 <.debug_info+0x5ac1> 5a52: 75 70 jne 5ac4 <.debug_info+0x5ac4> 5a54: 00 08 add %cl,(%eax) 5a56: 22 18 and (%eax),%bl 5a58: 0f xstore-rng (bad) 5a59: a7 cmpsl %es:(%edi),%ds:(%esi) 5a5a: 01 00 add %eax,(%eax) 5a5c: 00 22 add %ah,(%edx) 5a5e: 19 18 sbb %ebx,(%eax) 5a60: 3d 00 00 02 23 cmp $0x23020000,%eax 5a65: 00 0b add %cl,(%ebx) 5a67: 61 popa 5a68: 74 74 je 5ade <.debug_info+0x5ade> 5a6a: 72 73 jb 5adf <.debug_info+0x5adf> 5a6c: 00 22 add %ah,(%edx) 5a6e: 1a 77 5a sbb 0x5a(%edi),%dh 5a71: 00 00 add %al,(%eax) 5a73: 02 23 add (%ebx),%ah 5a75: 04 00 add $0x0,%al 5a77: 06 push %es 5a78: 04 7d add $0x7d,%al 5a7a: 5a pop %edx 5a7b: 00 00 add %al,(%eax) 5a7d: 06 push %es 5a7e: 04 e7 add $0xe7,%al 5a80: 55 push %ebp 5a81: 00 00 add %al,(%eax) 5a83: 0e push %cs 5a84: f3 5a repz pop %edx 5a86: 00 00 add %al,(%eax) 5a88: 62 69 6e bound %ebp,0x6e(%ecx) 5a8b: 5f pop %edi 5a8c: 61 popa 5a8d: 74 74 je 5b03 <.debug_info+0x5b03> 5a8f: 72 69 jb 5afa <.debug_info+0x5afa> 5a91: 62 75 74 bound %esi,0x74(%ebp) 5a94: 65 00 20 add %ah,%gs:(%eax) 5a97: 22 35 0f 83 00 00 and 0x830f,%dh 5a9d: 00 22 add %ah,(%edx) 5a9f: 36 ss 5aa0: e7 55 out %eax,$0x55 5aa2: 00 00 add %al,(%eax) 5aa4: 02 23 add (%ebx),%ah 5aa6: 00 0b add %cl,(%ebx) 5aa8: 73 69 jae 5b13 <.debug_info+0x5b13> 5aaa: 7a 65 jp 5b11 <.debug_info+0x5b11> 5aac: 00 22 add %ah,(%edx) 5aae: 37 aaa 5aaf: b5 03 mov $0x3,%ch 5ab1: 00 00 add %al,(%eax) 5ab3: 02 23 add (%ebx),%ah 5ab5: 0c 0f or $0xf,%al 5ab7: 6a 00 push $0x0 5ab9: 00 00 add %al,(%eax) 5abb: 22 38 and (%eax),%bh 5abd: b7 1d mov $0x1d,%bh 5abf: 00 00 add %al,(%eax) 5ac1: 02 23 add (%ebx),%ah 5ac3: 10 0b adc %cl,(%ebx) 5ac5: 72 65 jb 5b2c <.debug_info+0x5b2c> 5ac7: 61 popa 5ac8: 64 00 22 add %ah,%fs:(%edx) 5acb: 39 b2 5b 00 00 02 cmp %esi,0x200005b(%edx) 5ad1: 23 14 0b and (%ebx,%ecx,1),%edx 5ad4: 77 72 ja 5b48 <.debug_info+0x5b48> 5ad6: 69 74 65 00 22 3a b2 imul $0x5bb23a22,0x0(%ebp),%esi 5add: 5b 5ade: 00 00 add %al,(%eax) 5ae0: 02 23 add (%ebx),%ah 5ae2: 18 0b sbb %cl,(%ebx) 5ae4: 6d insl (%dx),%es:(%edi) 5ae5: 6d insl (%dx),%es:(%edi) 5ae6: 61 popa 5ae7: 70 00 jo 5ae9 <.debug_info+0x5ae9> 5ae9: 22 3c d8 and (%eax,%ebx,8),%bh 5aec: 5b pop %ebx 5aed: 00 00 add %al,(%eax) 5aef: 02 23 add (%ebx),%ah 5af1: 1c 00 sbb $0x0,%al 5af3: 0c 12 or $0x12,%al 5af5: 5b pop %ebx 5af6: 00 00 add %al,(%eax) 5af8: 01 c3 add %eax,%ebx 5afa: 03 00 add (%eax),%eax 5afc: 00 08 add %cl,(%eax) 5afe: 12 5b 00 adc 0x0(%ebx),%bl 5b01: 00 08 add %cl,(%eax) 5b03: bb 01 00 00 08 mov $0x8000001,%ebx 5b08: a7 cmpsl %es:(%edi),%ds:(%esi) 5b09: 03 00 add (%eax),%eax 5b0b: 00 08 add %cl,(%eax) 5b0d: b5 03 mov $0x3,%ch 5b0f: 00 00 add %al,(%eax) 5b11: 00 06 add %al,(%esi) 5b13: 04 18 add $0x18,%al 5b15: 5b pop %ebx 5b16: 00 00 add %al,(%eax) 5b18: 0e push %cs 5b19: b2 5b mov $0x5b,%dl 5b1b: 00 00 add %al,(%eax) 5b1d: 6b 6f 62 6a imul $0x6a,0x62(%edi),%ebp 5b21: 65 63 74 00 4c arpl %si,%gs:0x4c(%eax,%eax,1) 5b26: 22 0f and (%edi),%cl 5b28: 0b 6b 5f or 0x5f(%ebx),%ebp 5b2b: 6e outsb %ds:(%esi),(%dx) 5b2c: 61 popa 5b2d: 6d insl (%dx),%es:(%edi) 5b2e: 65 00 23 add %ah,%gs:(%ebx) 5b31: 34 18 xor $0x18,%al 5b33: 3d 00 00 02 23 cmp $0x23020000,%eax 5b38: 00 0f add %cl,(%edi) 5b3a: a7 cmpsl %es:(%edi),%ds:(%esi) 5b3b: 01 00 add %eax,(%eax) 5b3d: 00 23 add %ah,(%ebx) 5b3f: 35 2f 5d 00 00 xor $0x5d2f,%eax 5b44: 02 23 add (%ebx),%ah 5b46: 04 0b add $0xb,%al 5b48: 6b 72 65 66 imul $0x66,0x65(%edx),%esi 5b4c: 00 23 add %ah,(%ebx) 5b4e: 36 ss 5b4f: 0e push %cs 5b50: 5d pop %ebp 5b51: 00 00 add %al,(%eax) 5b53: 02 23 add (%ebx),%ah 5b55: 18 0f sbb %cl,(%edi) 5b57: 97 xchg %eax,%edi 5b58: 02 00 add (%eax),%al 5b5a: 00 23 add %ah,(%ebx) 5b5c: 37 aaa 5b5d: c8 1d 00 00 enter $0x1d,$0x0 5b61: 02 23 add (%ebx),%ah 5b63: 1c 0f sbb $0xf,%al 5b65: 76 03 jbe 5b6a <.debug_info+0x5b6a> 5b67: 00 00 add %al,(%eax) 5b69: 23 38 and (%eax),%edi 5b6b: 12 5b 00 adc 0x0(%ebx),%bl 5b6e: 00 02 add %al,(%edx) 5b70: 23 24 0b and (%ebx,%ecx,1),%esp 5b73: 6b 73 65 74 imul $0x74,0x65(%ebx),%esi 5b77: 00 23 add %ah,(%ebx) 5b79: 39 b1 5d 00 00 02 cmp %esi,0x200005d(%ecx) 5b7f: 23 28 and (%eax),%ebp 5b81: 0b 6b 74 or 0x74(%ebx),%ebp 5b84: 79 70 jns 5bf6 <.debug_info+0x5bf6> 5b86: 65 00 23 add %ah,%gs:(%ebx) 5b89: 3a fe cmp %dh,%bh 5b8b: 5d pop %ebp 5b8c: 00 00 add %al,(%eax) 5b8e: 02 23 add (%ebx),%ah 5b90: 2c 0b sub $0xb,%al 5b92: 64 65 6e outsb %fs:%gs:(%esi),(%dx) 5b95: 74 72 je 5c09 <.debug_info+0x5c09> 5b97: 79 00 jns 5b99 <.debug_info+0x5b99> 5b99: 23 3b and (%ebx),%edi 5b9b: f7 35 00 00 02 23 divl 0x23020000 5ba1: 30 0b xor %cl,(%ebx) 5ba3: 70 6f jo 5c14 <.debug_info+0x5c14> 5ba5: 6c insb (%dx),%es:(%edi) 5ba6: 6c insb (%dx),%es:(%edi) 5ba7: 00 23 add %ah,(%ebx) 5ba9: 3c 9d cmp $0x9d,%al 5bab: 21 00 and %eax,(%eax) 5bad: 00 02 add %al,(%edx) 5baf: 23 34 00 and (%eax,%eax,1),%esi 5bb2: 06 push %es 5bb3: 04 f3 add $0xf3,%al 5bb5: 5a pop %edx 5bb6: 00 00 add %al,(%eax) 5bb8: 0c d2 or $0xd2,%al 5bba: 5b pop %ebx 5bbb: 00 00 add %al,(%eax) 5bbd: 01 7a 00 add %edi,0x0(%edx) 5bc0: 00 00 add %al,(%eax) 5bc2: 08 12 or %dl,(%edx) 5bc4: 5b pop %ebx 5bc5: 00 00 add %al,(%eax) 5bc7: 08 d2 or %dl,%dl 5bc9: 5b pop %ebx 5bca: 00 00 add %al,(%eax) 5bcc: 08 b6 4e 00 00 00 or %dh,0x4e(%esi) 5bd2: 06 push %es 5bd3: 04 83 add $0x83,%al 5bd5: 5a pop %edx 5bd6: 00 00 add %al,(%eax) 5bd8: 06 push %es 5bd9: 04 b8 add $0xb8,%al 5bdb: 5b pop %ebx 5bdc: 00 00 add %al,(%eax) 5bde: 0a 07 or (%edi),%al 5be0: 5c pop %esp 5be1: 00 00 add %al,(%eax) 5be3: 88 00 mov %al,(%eax) 5be5: 00 00 add %al,(%eax) 5be7: 08 22 or %ah,(%edx) 5be9: 3f aas 5bea: 0f 2b 00 movntps %xmm0,(%eax) 5bed: 00 00 add %al,(%eax) 5bef: 22 40 21 and 0x21(%eax),%al 5bf2: 5c pop %esp 5bf3: 00 00 add %al,(%eax) 5bf5: 02 23 add (%ebx),%ah 5bf7: 00 0f add %cl,(%edi) 5bf9: c5 01 lds (%ecx),%eax 5bfb: 00 00 add %al,(%eax) 5bfd: 22 41 46 and 0x46(%ecx),%al 5c00: 5c pop %esp 5c01: 00 00 add %al,(%eax) 5c03: 02 23 add (%ebx),%ah 5c05: 04 00 add $0x0,%al 5c07: 0c 21 or $0x21,%al 5c09: 5c pop %esp 5c0a: 00 00 add %al,(%eax) 5c0c: 01 c3 add %eax,%ebx 5c0e: 03 00 add (%eax),%eax 5c10: 00 08 add %cl,(%eax) 5c12: 12 5b 00 adc 0x0(%ebx),%bl 5c15: 00 08 add %cl,(%eax) 5c17: 7d 5a jge 5c73 <.debug_info+0x5c73> 5c19: 00 00 add %al,(%eax) 5c1b: 08 bb 01 00 00 00 or %bh,0x1(%ebx) 5c21: 06 push %es 5c22: 04 07 add $0x7,%al 5c24: 5c pop %esp 5c25: 00 00 add %al,(%eax) 5c27: 0c 46 or $0x46,%al 5c29: 5c pop %esp 5c2a: 00 00 add %al,(%eax) 5c2c: 01 c3 add %eax,%ebx 5c2e: 03 00 add (%eax),%eax 5c30: 00 08 add %cl,(%eax) 5c32: 12 5b 00 adc 0x0(%ebx),%bl 5c35: 00 08 add %cl,(%eax) 5c37: 7d 5a jge 5c93 <.debug_info+0x5c93> 5c39: 00 00 add %al,(%eax) 5c3b: 08 18 or %bl,(%eax) 5c3d: 3d 00 00 08 b5 cmp $0xb5080000,%eax 5c42: 03 00 add (%eax),%eax 5c44: 00 00 add %al,(%eax) 5c46: 06 push %es 5c47: 04 27 add $0x27,%al 5c49: 5c pop %esp 5c4a: 00 00 add %al,(%eax) 5c4c: 0e push %cs 5c4d: 08 5d 00 or %bl,0x0(%ebp) 5c50: 00 69 61 add %ch,0x61(%ecx) 5c53: 74 74 je 5cc9 <.debug_info+0x5cc9> 5c55: 72 00 jb 5c57 <.debug_info+0x5c57> 5c57: 34 22 xor $0x22,%al 5c59: 4c dec %esp 5c5a: 12 69 61 adc 0x61(%ecx),%ch 5c5d: 5f pop %edi 5c5e: 76 61 jbe 5cc1 <.debug_info+0x5cc1> 5c60: 6c insb (%dx),%es:(%edi) 5c61: 69 64 00 0a 26 01 3b imul $0x13b0126,0xa(%eax,%eax,1),%esp 5c68: 01 5c69: 00 00 add %al,(%eax) 5c6b: 02 23 add (%ebx),%ah 5c6d: 00 12 add %dl,(%edx) 5c6f: 69 61 5f 6d 6f 64 65 imul $0x65646f6d,0x5f(%ecx),%esp 5c76: 00 0a add %cl,(%edx) 5c78: 27 daa 5c79: 01 21 add %esp,(%ecx) 5c7b: 02 00 add (%eax),%al 5c7d: 00 02 add %al,(%edx) 5c7f: 23 04 12 and (%edx,%edx,1),%eax 5c82: 69 61 5f 75 69 64 00 imul $0x646975,0x5f(%ecx),%esp 5c89: 0a 28 or (%eax),%ch 5c8b: 01 8d 03 00 00 02 add %ecx,0x2000003(%ebp) 5c91: 23 08 and (%eax),%ecx 5c93: 12 69 61 adc 0x61(%ecx),%ch 5c96: 5f pop %edi 5c97: 67 69 64 00 0a 29 01 addr16 imul $0x9a01290a,0(%si),%esp 5c9e: 9a 5c9f: 03 00 add (%eax),%eax 5ca1: 00 02 add %al,(%edx) 5ca3: 23 0c 12 and (%edx,%edx,1),%ecx 5ca6: 69 61 5f 73 69 7a 65 imul $0x657a6973,0x5f(%ecx),%esp 5cad: 00 0a add %cl,(%edx) 5caf: 2a 01 sub (%ecx),%al 5cb1: a7 cmpsl %es:(%edi),%ds:(%esi) 5cb2: 03 00 add (%eax),%eax 5cb4: 00 02 add %al,(%edx) 5cb6: 23 10 and (%eax),%edx 5cb8: 12 69 61 adc 0x61(%ecx),%ch 5cbb: 5f pop %edi 5cbc: 61 popa 5cbd: 74 69 je 5d28 <.debug_info+0x5d28> 5cbf: 6d insl (%dx),%es:(%edi) 5cc0: 65 00 0a add %cl,%gs:(%edx) 5cc3: 2b 01 sub (%ecx),%eax 5cc5: 11 20 adc %esp,(%eax) 5cc7: 00 00 add %al,(%eax) 5cc9: 02 23 add (%ebx),%ah 5ccb: 18 12 sbb %dl,(%edx) 5ccd: 69 61 5f 6d 74 69 6d imul $0x6d69746d,0x5f(%ecx),%esp 5cd4: 65 00 0a add %cl,%gs:(%edx) 5cd7: 2c 01 sub $0x1,%al 5cd9: 11 20 adc %esp,(%eax) 5cdb: 00 00 add %al,(%eax) 5cdd: 02 23 add (%ebx),%ah 5cdf: 20 12 and %dl,(%edx) 5ce1: 69 61 5f 63 74 69 6d imul $0x6d697463,0x5f(%ecx),%esp 5ce8: 65 00 0a add %cl,%gs:(%edx) 5ceb: 2d 01 11 20 00 sub $0x201101,%eax 5cf0: 00 02 add %al,(%edx) 5cf2: 23 28 and (%eax),%ebp 5cf4: 12 69 61 adc 0x61(%ecx),%ch 5cf7: 5f pop %edi 5cf8: 66 69 6c 65 00 0a 34 imul $0x340a,0x0(%ebp),%bp 5cff: 01 03 add %eax,(%ebx) 5d01: 47 inc %edi 5d02: 00 00 add %al,(%eax) 5d04: 02 23 add (%ebx),%ah 5d06: 30 00 xor %al,(%eax) 5d08: 06 push %es 5d09: 04 4c add $0x4c,%al 5d0b: 5c pop %esp 5d0c: 00 00 add %al,(%eax) 5d0e: 0e push %cs 5d0f: 2f das 5d10: 5d pop %ebp 5d11: 00 00 add %al,(%eax) 5d13: 6b 72 65 66 imul $0x66,0x65(%edx),%esi 5d17: 00 04 24 add %al,(%esp) 5d1a: 17 pop %ss 5d1b: 0b 72 65 or 0x65(%edx),%esi 5d1e: 66 data16 5d1f: 63 6f 75 arpl %bp,0x75(%edi) 5d22: 6e outsb %ds:(%esi),(%dx) 5d23: 74 00 je 5d25 <.debug_info+0x5d25> 5d25: 24 18 and $0x18,%al 5d27: a1 1f 00 00 02 mov 0x200001f,%eax 5d2c: 23 00 and (%eax),%eax 5d2e: 00 03 add %al,(%ebx) 5d30: 3f aas 5d31: 5d pop %ebp 5d32: 00 00 add %al,(%eax) 5d34: c1 01 00 roll $0x0,(%ecx) 5d37: 00 04 91 add %al,(%ecx,%edx,4) 5d3a: 00 00 add %al,(%eax) 5d3c: 00 13 add %dl,(%ebx) 5d3e: 00 0e add %cl,(%esi) 5d40: b1 5d mov $0x5d,%cl 5d42: 00 00 add %al,(%eax) 5d44: 6b 73 65 74 imul $0x74,0x65(%ebx),%esi 5d48: 00 70 23 add %dh,0x23(%eax) 5d4b: 39 0f cmp %ecx,(%edi) 5d4d: 20 01 and %al,(%ecx) 5d4f: 00 00 add %al,(%eax) 5d51: 23 79 ff and 0xffffffff(%ecx),%edi 5d54: 5e pop %esi 5d55: 00 00 add %al,(%eax) 5d57: 02 23 add (%ebx),%ah 5d59: 00 0b add %cl,(%ebx) 5d5b: 6b 74 79 70 65 imul $0x65,0x70(%ecx,%edi,2),%esi 5d60: 00 23 add %ah,(%ebx) 5d62: 7a fe jp 5d62 <.debug_info+0x5d62> 5d64: 5d pop %ebp 5d65: 00 00 add %al,(%eax) 5d67: 02 23 add (%ebx),%ah 5d69: 04 0f add $0xf,%al 5d6b: 42 inc %edx 5d6c: 02 00 add (%eax),%al 5d6e: 00 23 add %ah,(%ebx) 5d70: 7b c8 jnp 5d3a <.debug_info+0x5d3a> 5d72: 1d 00 00 02 23 sbb $0x23020000,%eax 5d77: 08 0b or %cl,(%ebx) 5d79: 6c insb (%dx),%es:(%edi) 5d7a: 69 73 74 5f 6c 6f 63 imul $0x636f6c5f,0x74(%ebx),%esi 5d81: 6b 00 23 imul $0x23,(%eax),%eax 5d84: 7c 1e jl 5da4 <.debug_info+0x5da4> 5d86: 1f pop %ds 5d87: 00 00 add %al,(%eax) 5d89: 02 23 add (%ebx),%ah 5d8b: 10 0b adc %cl,(%ebx) 5d8d: 6b 6f 62 6a imul $0x6a,0x62(%edi),%ebp 5d91: 00 23 add %ah,(%ebx) 5d93: 7d 18 jge 5dad <.debug_info+0x5dad> 5d95: 5b pop %ebx 5d96: 00 00 add %al,(%eax) 5d98: 02 23 add (%ebx),%ah 5d9a: 20 0b and %cl,(%ebx) 5d9c: 75 65 jne 5e03 <.debug_info+0x5e03> 5d9e: 76 65 jbe 5e05 <.debug_info+0x5e05> 5da0: 6e outsb %ds:(%esi),(%dx) 5da1: 74 5f je 5e02 <.debug_info+0x5e02> 5da3: 6f outsl %ds:(%esi),(%dx) 5da4: 70 73 jo 5e19 <.debug_info+0x5e19> 5da6: 00 23 add %ah,(%ebx) 5da8: 7e 05 jle 5daf <.debug_info+0x5daf> 5daa: 5f pop %edi 5dab: 00 00 add %al,(%eax) 5dad: 02 23 add (%ebx),%ah 5daf: 6c insb (%dx),%es:(%edi) 5db0: 00 06 add %al,(%esi) 5db2: 04 3f add $0x3f,%al 5db4: 5d pop %ebp 5db5: 00 00 add %al,(%eax) 5db7: 0e push %cs 5db8: fe (bad) 5db9: 5d pop %ebp 5dba: 00 00 add %al,(%eax) 5dbc: 6b 6f 62 6a imul $0x6a,0x62(%edi),%ebp 5dc0: 5f pop %edi 5dc1: 74 79 je 5e3c <.debug_info+0x5e3c> 5dc3: 70 65 jo 5e2a <.debug_info+0x5e2a> 5dc5: 00 0c 23 add %cl,(%ebx) 5dc8: 3a 0f cmp (%edi),%cl 5dca: 1b 03 sbb (%ebx),%eax 5dcc: 00 00 add %al,(%eax) 5dce: 23 5a 10 and 0x10(%edx),%ebx 5dd1: 5e pop %esi 5dd2: 00 00 add %al,(%eax) 5dd4: 02 23 add (%ebx),%ah 5dd6: 00 0f add %cl,(%edi) 5dd8: 88 00 mov %al,(%eax) 5dda: 00 00 add %al,(%eax) 5ddc: 23 5b 16 and 0x16(%ebx),%ebx 5ddf: 5e pop %esi 5de0: 00 00 add %al,(%eax) 5de2: 02 23 add (%ebx),%ah 5de4: 04 0b add $0xb,%al 5de6: 64 fs 5de7: 65 gs 5de8: 66 61 popaw 5dea: 75 6c jne 5e58 <.debug_info+0x5e58> 5dec: 74 5f je 5e4d <.debug_info+0x5e4d> 5dee: 61 popa 5def: 74 74 je 5e65 <.debug_info+0x5e65> 5df1: 72 73 jb 5e66 <.debug_info+0x5e66> 5df3: 00 23 add %ah,(%ebx) 5df5: 5c pop %esp 5df6: 77 5a ja 5e52 <.debug_info+0x5e52> 5df8: 00 00 add %al,(%eax) 5dfa: 02 23 add (%ebx),%ah 5dfc: 08 00 or %al,(%eax) 5dfe: 06 push %es 5dff: 04 b7 add $0xb7,%al 5e01: 5d pop %ebp 5e02: 00 00 add %al,(%eax) 5e04: 07 pop %es 5e05: 10 5e 00 adc %bl,0x0(%esi) 5e08: 00 01 add %al,(%ecx) 5e0a: 08 12 or %dl,(%edx) 5e0c: 5b pop %ebx 5e0d: 00 00 add %al,(%eax) 5e0f: 00 06 add %al,(%esi) 5e11: 04 04 add $0x4,%al 5e13: 5e pop %esi 5e14: 00 00 add %al,(%eax) 5e16: 06 push %es 5e17: 04 de add $0xde,%al 5e19: 5b pop %ebx 5e1a: 00 00 add %al,(%eax) 5e1c: 0e push %cs 5e1d: 62 5e 00 bound %ebx,0x0(%esi) 5e20: 00 6b 73 add %ch,0x73(%ebx) 5e23: 65 gs 5e24: 74 5f je 5e85 <.debug_info+0x5e85> 5e26: 75 65 jne 5e8d <.debug_info+0x5e8d> 5e28: 76 65 jbe 5e8f <.debug_info+0x5e8f> 5e2a: 6e outsb %ds:(%esi),(%dx) 5e2b: 74 5f je 5e8c <.debug_info+0x5e8c> 5e2d: 6f outsl %ds:(%esi),(%dx) 5e2e: 70 73 jo 5ea3 <.debug_info+0x5ea3> 5e30: 00 0c 23 add %cl,(%ebx) 5e33: 71 0b jno 5e40 <.debug_info+0x5e40> 5e35: 66 69 6c 74 65 72 00 imul $0x72,0x65(%esp,%esi,2),%bp 5e3c: 23 72 77 and 0x77(%edx),%esi 5e3f: 5e pop %esi 5e40: 00 00 add %al,(%eax) 5e42: 02 23 add (%ebx),%ah 5e44: 00 0f add %cl,(%edi) 5e46: a7 cmpsl %es:(%edi),%ds:(%esi) 5e47: 01 00 add %eax,(%eax) 5e49: 00 23 add %ah,(%ebx) 5e4b: 73 92 jae 5ddf <.debug_info+0x5ddf> 5e4d: 5e pop %esi 5e4e: 00 00 add %al,(%eax) 5e50: 02 23 add (%ebx),%ah 5e52: 04 0f add $0xf,%al 5e54: 3e 03 00 add %ds:(%eax),%eax 5e57: 00 23 add %ah,(%ebx) 5e59: 75 c7 jne 5e22 <.debug_info+0x5e22> 5e5b: 5e pop %esi 5e5c: 00 00 add %al,(%eax) 5e5e: 02 23 add (%ebx),%ah 5e60: 08 00 or %al,(%eax) 5e62: 0c 77 or $0x77,%al 5e64: 5e pop %esi 5e65: 00 00 add %al,(%eax) 5e67: 01 7a 00 add %edi,0x0(%edx) 5e6a: 00 00 add %al,(%eax) 5e6c: 08 b1 5d 00 00 08 or %dh,0x800005d(%ecx) 5e72: 12 5b 00 adc 0x0(%ebx),%bl 5e75: 00 00 add %al,(%eax) 5e77: 06 push %es 5e78: 04 62 add $0x62,%al 5e7a: 5e pop %esi 5e7b: 00 00 add %al,(%eax) 5e7d: 0c 92 or $0x92,%al 5e7f: 5e pop %esi 5e80: 00 00 add %al,(%eax) 5e82: 01 18 add %ebx,(%eax) 5e84: 3d 00 00 08 b1 cmp $0xb1080000,%eax 5e89: 5d pop %ebp 5e8a: 00 00 add %al,(%eax) 5e8c: 08 12 or %dl,(%edx) 5e8e: 5b pop %ebx 5e8f: 00 00 add %al,(%eax) 5e91: 00 06 add %al,(%esi) 5e93: 04 7d add $0x7d,%al 5e95: 5e pop %esi 5e96: 00 00 add %al,(%eax) 5e98: 0c c1 or $0xc1,%al 5e9a: 5e pop %esi 5e9b: 00 00 add %al,(%eax) 5e9d: 01 7a 00 add %edi,0x0(%edx) 5ea0: 00 00 add %al,(%eax) 5ea2: 08 b1 5d 00 00 08 or %dh,0x800005d(%ecx) 5ea8: 12 5b 00 adc 0x0(%ebx),%bl 5eab: 00 08 add %cl,(%eax) 5ead: c1 5e 00 00 rcrl $0x0,0x0(%esi) 5eb1: 08 7a 00 or %bh,0x0(%edx) 5eb4: 00 00 add %al,(%eax) 5eb6: 08 bb 01 00 00 08 or %bh,0x8000001(%ebx) 5ebc: 7a 00 jp 5ebe <.debug_info+0x5ebe> 5ebe: 00 00 add %al,(%eax) 5ec0: 00 06 add %al,(%esi) 5ec2: 04 bb add $0xbb,%al 5ec4: 01 00 add %eax,(%eax) 5ec6: 00 06 add %al,(%esi) 5ec8: 04 98 add $0x98,%al 5eca: 5e pop %esi 5ecb: 00 00 add %al,(%eax) 5ecd: 0e push %cs 5ece: ff 5e 00 lcall *0x0(%esi) 5ed1: 00 73 75 add %dh,0x75(%ebx) 5ed4: 62 73 79 bound %esi,0x79(%ebx) 5ed7: 73 74 jae 5f4d <.debug_info+0x5f4d> 5ed9: 65 gs 5eda: 6d insl (%dx),%es:(%edi) 5edb: 00 8c 23 79 0b 6b 73 add %cl,0x736b0b79(%ebx) 5ee2: 65 gs 5ee3: 74 00 je 5ee5 <.debug_info+0x5ee5> 5ee5: 23 aa 3f 5d 00 00 and 0x5d3f(%edx),%ebp 5eeb: 02 23 add (%ebx),%ah 5eed: 00 0b add %cl,(%ebx) 5eef: 72 77 jb 5f68 <.debug_info+0x5f68> 5ef1: 73 65 jae 5f58 <.debug_info+0x5f58> 5ef3: 6d insl (%dx),%es:(%edi) 5ef4: 00 23 add %ah,(%ebx) 5ef6: ab stos %eax,%es:(%edi) 5ef7: b6 21 mov $0x21,%dh 5ef9: 00 00 add %al,(%eax) 5efb: 02 23 add (%ebx),%ah 5efd: 70 00 jo 5eff <.debug_info+0x5eff> 5eff: 06 push %es 5f00: 04 cd add $0xcd,%al 5f02: 5e pop %esi 5f03: 00 00 add %al,(%eax) 5f05: 06 push %es 5f06: 04 1c add $0x1c,%al 5f08: 5e pop %esi 5f09: 00 00 add %al,(%eax) 5f0b: 0e push %cs 5f0c: e2 5f loop 5f6d <.debug_info+0x5f6d> 5f0e: 00 00 add %al,(%eax) 5f10: 6b 73 74 61 imul $0x61,0x74(%ebx),%esi 5f14: 74 00 je 5f16 <.debug_info+0x5f16> 5f16: 48 dec %eax 5f17: 4a dec %edx 5f18: 3b 0b cmp (%ebx),%ecx 5f1a: 69 6e 6f 00 4a 3c 98 imul $0x983c4a00,0x6f(%esi),%ebp 5f21: 00 00 add %al,(%eax) 5f23: 00 02 add %al,(%edx) 5f25: 23 00 and (%eax),%eax 5f27: 0b 64 65 76 or 0x76(%ebp),%esp 5f2b: 00 4a 3d add %cl,0x3d(%edx) 5f2e: 38 03 cmp %al,(%ebx) 5f30: 00 00 add %al,(%eax) 5f32: 02 23 add (%ebx),%ah 5f34: 04 0b add $0xb,%al 5f36: 6d insl (%dx),%es:(%edi) 5f37: 6f outsl %ds:(%esi),(%dx) 5f38: 64 65 00 4a 3e add %cl,%fs:%gs:0x3e(%edx) 5f3d: 21 02 and %eax,(%edx) 5f3f: 00 00 add %al,(%eax) 5f41: 02 23 add (%ebx),%ah 5f43: 08 0b or %cl,(%ebx) 5f45: 6e outsb %ds:(%esi),(%dx) 5f46: 6c insb (%dx),%es:(%edi) 5f47: 69 6e 6b 00 4a 3f 3b imul $0x3b3f4a00,0x6b(%esi),%ebp 5f4e: 01 00 add %eax,(%eax) 5f50: 00 02 add %al,(%edx) 5f52: 23 0c 0b and (%ebx,%ecx,1),%ecx 5f55: 75 69 jne 5fc0 <.debug_info+0x5fc0> 5f57: 64 00 4a 40 add %cl,%fs:0x40(%edx) 5f5b: 8d 03 lea (%ebx),%eax 5f5d: 00 00 add %al,(%eax) 5f5f: 02 23 add (%ebx),%ah 5f61: 10 0b adc %cl,(%ebx) 5f63: 67 69 64 00 4a 41 9a addr16 imul $0x39a414a,0(%si),%esp 5f6a: 03 5f6b: 00 00 add %al,(%eax) 5f6d: 02 23 add (%ebx),%ah 5f6f: 14 0b adc $0xb,%al 5f71: 72 64 jb 5fd7 <.debug_info+0x5fd7> 5f73: 65 gs 5f74: 76 00 jbe 5f76 <.debug_info+0x5f76> 5f76: 4a dec %edx 5f77: 42 inc %edx 5f78: 38 03 cmp %al,(%ebx) 5f7a: 00 00 add %al,(%eax) 5f7c: 02 23 add (%ebx),%ah 5f7e: 18 0b sbb %cl,(%ebx) 5f80: 73 69 jae 5feb <.debug_info+0x5feb> 5f82: 7a 65 jp 5fe9 <.debug_info+0x5fe9> 5f84: 00 4a 43 add %cl,0x43(%edx) 5f87: a7 cmpsl %es:(%edi),%ds:(%esi) 5f88: 03 00 add (%eax),%eax 5f8a: 00 02 add %al,(%edx) 5f8c: 23 1c 0b and (%ebx,%ecx,1),%ebx 5f8f: 61 popa 5f90: 74 69 je 5ffb <.debug_info+0x5ffb> 5f92: 6d insl (%dx),%es:(%edi) 5f93: 65 00 4a 44 add %cl,%gs:0x44(%edx) 5f97: 11 20 adc %esp,(%eax) 5f99: 00 00 add %al,(%eax) 5f9b: 02 23 add (%ebx),%ah 5f9d: 24 0b and $0xb,%al 5f9f: 6d insl (%dx),%es:(%edi) 5fa0: 74 69 je 600b <.debug_info+0x600b> 5fa2: 6d insl (%dx),%es:(%edi) 5fa3: 65 00 4a 45 add %cl,%gs:0x45(%edx) 5fa7: 11 20 adc %esp,(%eax) 5fa9: 00 00 add %al,(%eax) 5fab: 02 23 add (%ebx),%ah 5fad: 2c 0b sub $0xb,%al 5faf: 63 74 69 6d arpl %si,0x6d(%ecx,%ebp,2) 5fb3: 65 00 4a 46 add %cl,%gs:0x46(%edx) 5fb7: 11 20 adc %esp,(%eax) 5fb9: 00 00 add %al,(%eax) 5fbb: 02 23 add (%ebx),%ah 5fbd: 34 0b xor $0xb,%al 5fbf: 62 6c 6b 73 bound %ebp,0x73(%ebx,%ebp,2) 5fc3: 69 7a 65 00 4a 47 98 imul $0x98474a00,0x65(%edx),%edi 5fca: 00 00 add %al,(%eax) 5fcc: 00 02 add %al,(%edx) 5fce: 23 3c 0b and (%ebx,%ecx,1),%edi 5fd1: 62 6c 6f 63 bound %ebp,0x63(%edi,%ebp,2) 5fd5: 6b 73 00 4a imul $0x4a,0x0(%ebx),%esi 5fd9: 48 dec %eax 5fda: c3 ret 5fdb: 02 00 add (%eax),%al 5fdd: 00 02 add %al,(%edx) 5fdf: 23 40 00 and 0x0(%eax),%eax 5fe2: 03 f2 add %edx,%esi 5fe4: 5f pop %edi 5fe5: 00 00 add %al,(%eax) 5fe7: c1 01 00 roll $0x0,(%ecx) 5fea: 00 04 91 add %al,(%ecx,%edx,4) 5fed: 00 00 add %al,(%eax) 5fef: 00 1f add %bl,(%edi) 5ff1: 00 0e add %cl,(%esi) 5ff3: 36 ss 5ff4: 60 pusha 5ff5: 00 00 add %al,(%eax) 5ff7: 58 pop %eax 5ff8: 67 74 5f addr16 je 605a <.debug_info+0x605a> 5ffb: 64 fs 5ffc: 65 gs 5ffd: 73 63 jae 6062 <.debug_info+0x6062> 5fff: 5f pop %edi 6000: 73 74 jae 6076 <.debug_info+0x6076> 6002: 72 75 jb 6079 <.debug_info+0x6079> 6004: 63 74 00 08 arpl %si,0x8(%eax,%eax,1) 6008: 5f pop %edi 6009: 15 0b 73 69 7a adc $0x7a69730b,%eax 600e: 65 00 5f 16 add %bl,%gs:0x16(%edi) 6012: ec in (%dx),%al 6013: 00 00 add %al,(%eax) 6015: 00 02 add %al,(%edx) 6017: 23 00 and (%eax),%eax 6019: 0f 63 01 packsswb (%ecx),%mm0 601c: 00 00 add %al,(%eax) 601e: 5f pop %edi 601f: 17 pop %ss 6020: 98 cwtl 6021: 00 00 add %al,(%eax) 6023: 00 02 add %al,(%edx) 6025: 23 02 and (%edx),%eax 6027: 0b 70 61 or 0x61(%eax),%esi 602a: 64 00 5f 18 add %bl,%fs:0x18(%edi) 602e: ec in (%dx),%al 602f: 00 00 add %al,(%eax) 6031: 00 02 add %al,(%edx) 6033: 23 06 and (%esi),%eax 6035: 00 09 add %cl,(%ecx) 6037: 45 inc %ebp 6038: 6c insb (%dx),%es:(%edi) 6039: 66 33 32 xor (%edx),%si 603c: 5f pop %edi 603d: 41 inc %ecx 603e: 64 fs 603f: 64 fs 6040: 72 00 jb 6042 <.debug_info+0x6042> 6042: 2a 11 sub (%ecx),%dl 6044: 9c pushf 6045: 02 00 add (%eax),%al 6047: 00 09 add %cl,(%ecx) 6049: 45 inc %ebp 604a: 6c insb (%dx),%es:(%edi) 604b: 66 33 32 xor (%edx),%si 604e: 5f pop %edi 604f: 48 dec %eax 6050: 61 popa 6051: 6c insb (%dx),%es:(%edi) 6052: 66 data16 6053: 00 2a add %ch,(%edx) 6055: 12 82 02 00 00 09 adc 0x9000002(%edx),%al 605b: 45 inc %ebp 605c: 6c insb (%dx),%es:(%edi) 605d: 66 33 32 xor (%edx),%si 6060: 5f pop %edi 6061: 57 push %edi 6062: 6f outsl %ds:(%esi),(%dx) 6063: 72 64 jb 60c9 <.debug_info+0x60c9> 6065: 00 2a add %ch,(%edx) 6067: 15 9c 02 00 00 adc $0x29c,%eax 606c: 0e push %cs 606d: ee out %al,(%dx) 606e: 60 pusha 606f: 00 00 add %al,(%eax) 6071: 65 gs 6072: 6c insb (%dx),%es:(%edi) 6073: 66 33 32 xor (%edx),%si 6076: 5f pop %edi 6077: 73 79 jae 60f2 <.debug_info+0x60f2> 6079: 6d insl (%dx),%es:(%edi) 607a: 00 10 add %dl,(%eax) 607c: 2a 98 0b 73 74 5f sub 0x5f74730b(%eax),%bl 6082: 6e outsb %ds:(%esi),(%dx) 6083: 61 popa 6084: 6d insl (%dx),%es:(%edi) 6085: 65 00 2a add %ch,%gs:(%edx) 6088: 99 cltd 6089: 5a pop %edx 608a: 60 pusha 608b: 00 00 add %al,(%eax) 608d: 02 23 add (%ebx),%ah 608f: 00 0b add %cl,(%ebx) 6091: 73 74 jae 6107 <.debug_info+0x6107> 6093: 5f pop %edi 6094: 76 61 jbe 60f7 <.debug_info+0x60f7> 6096: 6c insb (%dx),%es:(%edi) 6097: 75 65 jne 60fe <.debug_info+0x60fe> 6099: 00 2a add %ch,(%edx) 609b: 9a 36 60 00 00 02 23 lcall $0x2302,$0x6036 60a2: 04 0b add $0xb,%al 60a4: 73 74 jae 611a <.debug_info+0x611a> 60a6: 5f pop %edi 60a7: 73 69 jae 6112 <.debug_info+0x6112> 60a9: 7a 65 jp 6110 <.debug_info+0x6110> 60ab: 00 2a add %ch,(%edx) 60ad: 9b fwait 60ae: 5a pop %edx 60af: 60 pusha 60b0: 00 00 add %al,(%eax) 60b2: 02 23 add (%ebx),%ah 60b4: 08 0b or %cl,(%ebx) 60b6: 73 74 jae 612c <.debug_info+0x612c> 60b8: 5f pop %edi 60b9: 69 6e 66 6f 00 2a 9c imul $0x9c2a006f,0x66(%esi),%ebp 60c0: 57 push %edi 60c1: 02 00 add (%eax),%al 60c3: 00 02 add %al,(%edx) 60c5: 23 0c 0b and (%ebx,%ecx,1),%ecx 60c8: 73 74 jae 613e <.debug_info+0x613e> 60ca: 5f pop %edi 60cb: 6f outsl %ds:(%esi),(%dx) 60cc: 74 68 je 6136 <.debug_info+0x6136> 60ce: 65 gs 60cf: 72 00 jb 60d1 <.debug_info+0x60d1> 60d1: 2a 9d 57 02 00 00 sub 0x257(%ebp),%bl 60d7: 02 23 add (%ebx),%ah 60d9: 0d 0b 73 74 5f or $0x5f74730b,%eax 60de: 73 68 jae 6148 <.debug_info+0x6148> 60e0: 6e outsb %ds:(%esi),(%dx) 60e1: 64 fs 60e2: 78 00 js 60e4 <.debug_info+0x60e4> 60e4: 2a 9e 48 60 00 00 sub 0x6048(%esi),%bl 60ea: 02 23 add (%ebx),%ah 60ec: 0e push %cs 60ed: 00 09 add %cl,(%ecx) 60ef: 45 inc %ebp 60f0: 6c insb (%dx),%es:(%edi) 60f1: 66 33 32 xor (%edx),%si 60f4: 5f pop %edi 60f5: 53 push %ebx 60f6: 79 6d jns 6165 <.debug_info+0x6165> 60f8: 00 2a add %ch,(%edx) 60fa: 9f lahf 60fb: 6c insb (%dx),%es:(%edi) 60fc: 60 pusha 60fd: 00 00 add %al,(%eax) 60ff: 0d 1a 61 00 00 or $0x611a,%eax 6104: 04 29 add $0x29,%al 6106: 09 0b or %ecx,(%ebx) 6108: 63 6f 75 arpl %bp,0x75(%edi) 610b: 6e outsb %ds:(%esi),(%dx) 610c: 74 65 je 6173 <.debug_info+0x6173> 610e: 72 00 jb 6110 <.debug_info+0x6110> 6110: 29 08 sub %ecx,(%eax) 6112: a5 movsl %ds:(%esi),%es:(%edi) 6113: 54 push %esp 6114: 00 00 add %al,(%eax) 6116: 02 23 add (%ebx),%ah 6118: 00 00 add %al,(%eax) 611a: 09 6c 6f 63 or %ebp,0x63(%edi,%ebp,2) 611e: 61 popa 611f: 6c insb (%dx),%es:(%edi) 6120: 5f pop %edi 6121: 74 00 je 6123 <.debug_info+0x6123> 6123: 29 09 sub %ecx,(%ecx) 6125: ff 60 00 jmp *0x0(%eax) 6128: 00 2c 6d 6f 64 5f 61 add %ch,0x615f646f(,%ebp,2) 612f: 72 63 jb 6194 <.debug_info+0x6194> 6131: 68 5f 73 70 65 push $0x6570735f 6136: 63 69 66 arpl %bp,0x66(%ecx) 6139: 69 63 00 00 28 06 0e imul $0xe062800,0x0(%ebx),%esp 6140: 74 61 je 61a3 <.debug_info+0x61a3> 6142: 00 00 add %al,(%eax) 6144: 6b 65 72 6e imul $0x6e,0x72(%ebp),%esp 6148: 65 gs 6149: 6c insb (%dx),%es:(%edi) 614a: 5f pop %edi 614b: 73 79 jae 61c6 <.debug_info+0x61c6> 614d: 6d insl (%dx),%es:(%edi) 614e: 62 6f 6c bound %ebp,0x6c(%edi) 6151: 00 08 add %cl,(%eax) 6153: 21 23 and %esp,(%ebx) 6155: 0b 76 61 or 0x61(%esi),%esi 6158: 6c insb (%dx),%es:(%edi) 6159: 75 65 jne 61c0 <.debug_info+0x61c0> 615b: 00 21 add %ah,(%ecx) 615d: 24 98 and $0x98,%al 615f: 00 00 add %al,(%eax) 6161: 00 02 add %al,(%edx) 6163: 23 00 and (%eax),%eax 6165: 0f xstore-rng (bad) 6166: a7 cmpsl %es:(%edi),%ds:(%esi) 6167: 01 00 add %eax,(%eax) 6169: 00 21 add %ah,(%ecx) 616b: 25 18 3d 00 00 and $0x3d18,%eax 6170: 02 23 add (%ebx),%ah 6172: 04 00 add $0x0,%al 6174: 03 84 61 00 00 c1 01 add 0x1c10000(%ecx),%eax 617b: 00 00 add %al,(%eax) 617d: 04 91 add $0x91,%al 617f: 00 00 add %al,(%eax) 6181: 00 3b add %bh,(%ebx) 6183: 00 0e add %cl,(%esi) 6185: f6 61 00 mulb 0x0(%ecx) 6188: 00 6d 6f add %ch,0x6f(%ebp) 618b: 64 fs 618c: 75 6c jne 61fa <.debug_info+0x61fa> 618e: 65 gs 618f: 5f pop %edi 6190: 61 popa 6191: 74 74 je 6207 <.debug_info+0x6207> 6193: 72 69 jb 61fe <.debug_info+0x61fe> 6195: 62 75 74 bound %esi,0x74(%ebp) 6198: 65 00 20 add %ah,%gs:(%eax) 619b: 21 30 and %esi,(%eax) 619d: 0f 83 00 00 00 21 jae 210061a3 61a3: 31 e7 xor %esp,%edi 61a5: 55 push %ebp 61a6: 00 00 add %al,(%eax) 61a8: 02 23 add (%ebx),%ah 61aa: 00 0f add %cl,(%edi) 61ac: 2b 00 sub (%eax),%eax 61ae: 00 00 add %al,(%eax) 61b0: 21 32 and %esi,(%edx) 61b2: 16 push %ss 61b3: 62 00 bound %eax,(%eax) 61b5: 00 02 add %al,(%edx) 61b7: 23 0c 0f and (%edi,%ecx,1),%ecx 61ba: c5 01 lds (%ecx),%eax 61bc: 00 00 add %al,(%eax) 61be: 21 34 3b and %esi,(%ebx,%edi,1) 61c1: 62 00 bound %eax,(%eax) 61c3: 00 02 add %al,(%edx) 61c5: 23 10 and (%eax),%edx 61c7: 0b 73 65 or 0x65(%ebx),%esi 61ca: 74 75 je 6241 <.debug_info+0x6241> 61cc: 70 00 jo 61ce <.debug_info+0x61ce> 61ce: 21 35 52 62 00 00 and %esi,0x6252 61d4: 02 23 add (%ebx),%ah 61d6: 14 0b adc $0xb,%al 61d8: 74 65 je 623f <.debug_info+0x623f> 61da: 73 74 jae 6250 <.debug_info+0x6250> 61dc: 00 21 add %ah,(%ecx) 61de: 36 ss 61df: 68 62 00 00 02 push $0x2000062 61e4: 23 18 and (%eax),%ebx 61e6: 0b 66 72 or 0x72(%esi),%esp 61e9: 65 65 00 21 add %ah,%gs:(%ecx) 61ed: 37 aaa 61ee: 7a 62 jp 6252 <.debug_info+0x6252> 61f0: 00 00 add %al,(%eax) 61f2: 02 23 add (%ebx),%ah 61f4: 1c 00 sbb $0x0,%al 61f6: 0c 10 or $0x10,%al 61f8: 62 00 bound %eax,(%eax) 61fa: 00 01 add %al,(%ecx) 61fc: c3 ret 61fd: 03 00 add (%eax),%eax 61ff: 00 08 add %cl,(%eax) 6201: 10 62 00 adc %ah,0x0(%edx) 6204: 00 08 add %cl,(%eax) 6206: 3a 5a 00 cmp 0x0(%edx),%bl 6209: 00 08 add %cl,(%eax) 620b: bb 01 00 00 00 mov $0x1,%ebx 6210: 06 push %es 6211: 04 84 add $0x84,%al 6213: 61 popa 6214: 00 00 add %al,(%eax) 6216: 06 push %es 6217: 04 f6 add $0xf6,%al 6219: 61 popa 621a: 00 00 add %al,(%eax) 621c: 0c 3b or $0x3b,%al 621e: 62 00 bound %eax,(%eax) 6220: 00 01 add %al,(%ecx) 6222: c3 ret 6223: 03 00 add (%eax),%eax 6225: 00 08 add %cl,(%eax) 6227: 10 62 00 adc %ah,0x0(%edx) 622a: 00 08 add %cl,(%eax) 622c: 3a 5a 00 cmp 0x0(%edx),%bl 622f: 00 08 add %cl,(%eax) 6231: 18 3d 00 00 08 b5 sbb %bh,0xb5080000 6237: 03 00 add (%eax),%eax 6239: 00 00 add %al,(%eax) 623b: 06 push %es 623c: 04 1c add $0x1c,%al 623e: 62 00 bound %eax,(%eax) 6240: 00 07 add %al,(%edi) 6242: 52 push %edx 6243: 62 00 bound %eax,(%eax) 6245: 00 01 add %al,(%ecx) 6247: 08 3a or %bh,(%edx) 6249: 5a pop %edx 624a: 00 00 add %al,(%eax) 624c: 08 18 or %bl,(%eax) 624e: 3d 00 00 00 06 cmp $0x6000000,%eax 6253: 04 41 add $0x41,%al 6255: 62 00 bound %eax,(%eax) 6257: 00 0c 68 add %cl,(%eax,%ebp,2) 625a: 62 00 bound %eax,(%eax) 625c: 00 01 add %al,(%ecx) 625e: 7a 00 jp 6260 <.debug_info+0x6260> 6260: 00 00 add %al,(%eax) 6262: 08 3a or %bh,(%edx) 6264: 5a pop %edx 6265: 00 00 add %al,(%eax) 6267: 00 06 add %al,(%esi) 6269: 04 58 add $0x58,%al 626b: 62 00 bound %eax,(%eax) 626d: 00 07 add %al,(%edi) 626f: 7a 62 jp 62d3 <.debug_info+0x62d3> 6271: 00 00 add %al,(%eax) 6273: 01 08 add %ecx,(%eax) 6275: 3a 5a 00 cmp 0x0(%edx),%bl 6278: 00 00 add %al,(%eax) 627a: 06 push %es 627b: 04 6e add $0x6e,%al 627d: 62 00 bound %eax,(%eax) 627f: 00 0e add %cl,(%esi) 6281: b5 62 mov $0x62,%ch 6283: 00 00 add %al,(%eax) 6285: 6d insl (%dx),%es:(%edi) 6286: 6f outsl %ds:(%esi),(%dx) 6287: 64 fs 6288: 75 6c jne 62f6 <.debug_info+0x62f6> 628a: 65 gs 628b: 5f pop %edi 628c: 6b 6f 62 6a imul $0x6a,0x62(%edi),%ebp 6290: 65 63 74 00 50 arpl %si,%gs:0x50(%eax,%eax,1) 6295: 21 3b and %edi,(%ebx) 6297: 0b 6b 6f or 0x6f(%ebx),%ebp 629a: 62 6a 00 bound %ebp,0x0(%edx) 629d: 21 3c 18 and %edi,(%eax,%ebx,1) 62a0: 5b pop %ebx 62a1: 00 00 add %al,(%eax) 62a3: 02 23 add (%ebx),%ah 62a5: 00 0b add %cl,(%ebx) 62a7: 6d insl (%dx),%es:(%edi) 62a8: 6f outsl %ds:(%esi),(%dx) 62a9: 64 00 21 add %ah,%fs:(%ecx) 62ac: 3d 3a 5a 00 00 cmp $0x5a3a,%eax 62b1: 02 23 add (%ebx),%ah 62b3: 4c dec %esp 62b4: 00 0e add %cl,(%esi) 62b6: d7 xlat %ds:(%ebx) 62b7: 62 00 bound %eax,(%eax) 62b9: 00 6d 6f add %ch,0x6f(%ebp) 62bc: 64 fs 62bd: 75 6c jne 632b <.debug_info+0x632b> 62bf: 65 gs 62c0: 5f pop %edi 62c1: 72 65 jb 6328 <.debug_info+0x6328> 62c3: 66 data16 62c4: 00 80 21 da 0f e7 add %al,0xe70fda21(%eax) 62ca: 01 00 add %eax,(%eax) 62cc: 00 21 add %ah,(%ecx) 62ce: db 1a fistpl (%edx) 62d0: 61 popa 62d1: 00 00 add %al,(%eax) 62d3: 02 23 add (%ebx),%ah 62d5: 00 00 add %al,(%eax) 62d7: 2d 2c 63 00 00 sub $0x632c,%eax 62dc: 6d insl (%dx),%es:(%edi) 62dd: 6f outsl %ds:(%esi),(%dx) 62de: 64 fs 62df: 75 6c jne 634d <.debug_info+0x634d> 62e1: 65 gs 62e2: 5f pop %edi 62e3: 73 74 jae 6359 <.debug_info+0x6359> 62e5: 61 popa 62e6: 74 65 je 634d <.debug_info+0x634d> 62e8: 00 04 21 add %al,(%ecx) 62eb: df 2b fildll (%ebx) 62ed: 4d dec %ebp 62ee: 4f dec %edi 62ef: 44 inc %esp 62f0: 55 push %ebp 62f1: 4c dec %esp 62f2: 45 inc %ebp 62f3: 5f pop %edi 62f4: 53 push %ebx 62f5: 54 push %esp 62f6: 41 inc %ecx 62f7: 54 push %esp 62f8: 45 inc %ebp 62f9: 5f pop %edi 62fa: 4c dec %esp 62fb: 49 dec %ecx 62fc: 56 push %esi 62fd: 45 inc %ebp 62fe: 00 00 add %al,(%eax) 6300: 2b 4d 4f sub 0x4f(%ebp),%ecx 6303: 44 inc %esp 6304: 55 push %ebp 6305: 4c dec %esp 6306: 45 inc %ebp 6307: 5f pop %edi 6308: 53 push %ebx 6309: 54 push %esp 630a: 41 inc %ecx 630b: 54 push %esp 630c: 45 inc %ebp 630d: 5f pop %edi 630e: 43 inc %ebx 630f: 4f dec %edi 6310: 4d dec %ebp 6311: 49 dec %ecx 6312: 4e dec %esi 6313: 47 inc %edi 6314: 00 01 add %al,(%ecx) 6316: 2b 4d 4f sub 0x4f(%ebp),%ecx 6319: 44 inc %esp 631a: 55 push %ebp 631b: 4c dec %esp 631c: 45 inc %ebp 631d: 5f pop %edi 631e: 53 push %ebx 631f: 54 push %esp 6320: 41 inc %ecx 6321: 54 push %esp 6322: 45 inc %ebp 6323: 5f pop %edi 6324: 47 inc %edi 6325: 4f dec %edi 6326: 49 dec %ecx 6327: 4e dec %esi 6328: 47 inc %edi 6329: 00 02 add %al,(%edx) 632b: 00 0e add %cl,(%esi) 632d: 72 63 jb 6392 <.debug_info+0x6392> 632f: 00 00 add %al,(%eax) 6331: 6d insl (%dx),%es:(%edi) 6332: 6f outsl %ds:(%esi),(%dx) 6333: 64 fs 6334: 75 6c jne 63a2 <.debug_info+0x63a2> 6336: 65 gs 6337: 5f pop %edi 6338: 73 65 jae 639f <.debug_info+0x639f> 633a: 63 74 5f 61 arpl %si,0x61(%edi,%ebx,2) 633e: 74 74 je 63b4 <.debug_info+0x63b4> 6340: 72 00 jb 6342 <.debug_info+0x6342> 6342: 44 inc %esp 6343: 21 e8 and %ebp,%eax 6345: 0b 6d 61 or 0x61(%ebp),%ebp 6348: 74 74 je 63be <.debug_info+0x63be> 634a: 72 00 jb 634c <.debug_info+0x634c> 634c: 21 e9 and %ebp,%ecx 634e: 84 61 00 test %ah,0x0(%ecx) 6351: 00 02 add %al,(%edx) 6353: 23 00 and (%eax),%eax 6355: 0f xstore-rng (bad) 6356: a7 cmpsl %es:(%edi),%ds:(%esi) 6357: 01 00 add %eax,(%eax) 6359: 00 21 add %ah,(%ecx) 635b: ea e2 5f 00 00 02 23 ljmp $0x2302,$0x5fe2 6362: 20 0f and %cl,(%edi) 6364: 63 01 arpl %ax,(%ecx) 6366: 00 00 add %al,(%eax) 6368: 21 eb and %ebp,%ebx 636a: 98 cwtl 636b: 00 00 add %al,(%eax) 636d: 00 02 add %al,(%edx) 636f: 23 40 00 and 0x0(%eax),%eax 6372: 0e push %cs 6373: ab stos %eax,%es:(%edi) 6374: 63 00 arpl %ax,(%eax) 6376: 00 6d 6f add %ch,0x6f(%ebp) 6379: 64 fs 637a: 75 6c jne 63e8 <.debug_info+0x63e8> 637c: 65 gs 637d: 5f pop %edi 637e: 73 65 jae 63e5 <.debug_info+0x63e5> 6380: 63 74 5f 61 arpl %si,0x61(%edi,%ebx,2) 6384: 74 74 je 63fa <.debug_info+0x63fa> 6386: 72 73 jb 63fb <.debug_info+0x63fb> 6388: 00 08 add %cl,(%eax) 638a: 21 ef and %ebp,%edi 638c: 0b 67 72 or 0x72(%edi),%esp 638f: 70 00 jo 6391 <.debug_info+0x6391> 6391: 21 f0 and %esi,%eax 6393: 40 inc %eax 6394: 5a pop %edx 6395: 00 00 add %al,(%eax) 6397: 02 23 add (%ebx),%ah 6399: 00 0b add %cl,(%ebx) 639b: 61 popa 639c: 74 74 je 6412 <.debug_info+0x6412> 639e: 72 73 jb 6413 <.debug_info+0x6413> 63a0: 00 21 add %ah,(%ecx) 63a2: f1 icebp 63a3: ab stos %eax,%es:(%edi) 63a4: 63 00 arpl %ax,(%eax) 63a6: 00 02 add %al,(%edx) 63a8: 23 08 and (%eax),%ecx 63aa: 00 03 add %al,(%ebx) 63ac: ba 63 00 00 2c mov $0x2c000063,%edx 63b1: 63 00 arpl %ax,(%eax) 63b3: 00 1c 91 add %bl,(%ecx,%edx,4) 63b6: 00 00 add %al,(%eax) 63b8: 00 00 add %al,(%eax) 63ba: 26 es 63bb: 6d insl (%dx),%es:(%edi) 63bc: 6f outsl %ds:(%esi),(%dx) 63bd: 64 fs 63be: 75 6c jne 642c <.debug_info+0x642c> 63c0: 65 gs 63c1: 5f pop %edi 63c2: 70 61 jo 6425 <.debug_info+0x6425> 63c4: 72 61 jb 6427 <.debug_info+0x6427> 63c6: 6d insl (%dx),%es:(%edi) 63c7: 5f pop %edi 63c8: 61 popa 63c9: 74 74 je 643f <.debug_info+0x643f> 63cb: 72 73 jb 6440 <.debug_info+0x6440> 63cd: 00 01 add %al,(%ecx) 63cf: 06 push %es 63d0: 04 ba add $0xba,%al 63d2: 63 00 arpl %ax,(%eax) 63d4: 00 06 add %al,(%esi) 63d6: 04 db add $0xdb,%al 63d8: 63 00 arpl %ax,(%eax) 63da: 00 28 add %ch,(%eax) 63dc: 3f aas 63dd: 61 popa 63de: 00 00 add %al,(%eax) 63e0: 06 push %es 63e1: 04 e6 add $0xe6,%al 63e3: 63 00 arpl %ax,(%eax) 63e5: 00 28 add %ch,(%eax) 63e7: 98 cwtl 63e8: 00 00 add %al,(%eax) 63ea: 00 26 add %ah,(%esi) 63ec: 65 gs 63ed: 78 63 js 6452 <.debug_info+0x6452> 63ef: 65 gs 63f0: 70 74 jo 6466 <.debug_info+0x6466> 63f2: 69 6f 6e 5f 74 61 62 imul $0x6261745f,0x6e(%edi),%ebp 63f9: 6c insb (%dx),%es:(%edi) 63fa: 65 gs 63fb: 5f pop %edi 63fc: 65 6e outsb %gs:(%esi),(%dx) 63fe: 74 72 je 6472 <.debug_info+0x6472> 6400: 79 00 jns 6402 <.debug_info+0x6402> 6402: 01 06 add %eax,(%esi) 6404: 04 09 add $0x9,%al 6406: 64 00 00 add %al,%fs:(%eax) 6409: 28 eb sub %ch,%bl 640b: 63 00 arpl %ax,(%eax) 640d: 00 03 add %al,(%ebx) 640f: 1e push %ds 6410: 64 00 00 add %al,%fs:(%eax) 6413: b5 62 mov $0x62,%ch 6415: 00 00 add %al,(%eax) 6417: 04 91 add $0x91,%al 6419: 00 00 add %al,(%eax) 641b: 00 1f add %bl,(%edi) 641d: 00 06 add %al,(%esi) 641f: 04 ee add $0xee,%al 6421: 60 pusha 6422: 00 00 add %al,(%eax) 6424: 06 push %es 6425: 04 72 add $0x72,%al 6427: 63 00 arpl %ax,(%eax) 6429: 00 0e add %cl,(%esi) 642b: 63 64 00 00 arpl %sp,0x0(%eax,%eax,1) 642f: 71 73 jno 64a4 <.debug_info+0x64a4> 6431: 74 72 je 64a5 <.debug_info+0x64a5> 6433: 00 0c 09 add %cl,(%ecx,%ecx,1) 6436: 21 0b and %ecx,(%ebx) 6438: 68 61 73 68 00 push $0x687361 643d: 09 22 or %esp,(%edx) 643f: 3b 01 cmp (%ecx),%eax 6441: 00 00 add %al,(%eax) 6443: 02 23 add (%ebx),%ah 6445: 00 0b add %cl,(%ebx) 6447: 6c insb (%dx),%es:(%edi) 6448: 65 6e outsb %gs:(%esi),(%dx) 644a: 00 09 add %cl,(%ecx) 644c: 23 3b and (%ebx),%edi 644e: 01 00 add %eax,(%eax) 6450: 00 02 add %al,(%edx) 6452: 23 04 0f and (%edi,%ecx,1),%eax 6455: a7 cmpsl %es:(%edi),%ds:(%esi) 6456: 01 00 add %eax,(%eax) 6458: 00 09 add %cl,(%ecx) 645a: 24 63 and $0x63,%al 645c: 64 00 00 add %al,%fs:(%eax) 645f: 02 23 add (%ebx),%ah 6461: 08 00 or %al,(%eax) 6463: 06 push %es 6464: 04 69 add $0x69,%al 6466: 64 00 00 add %al,%fs:(%eax) 6469: 28 57 02 sub %dl,0x2(%edi) 646c: 00 00 add %al,(%eax) 646e: 25 93 64 00 00 and $0x6493,%eax 6473: 08 09 or %cl,(%ecx) 6475: 67 24 64 addr16 and $0x64,%al 6478: 5f pop %edi 6479: 63 68 69 arpl %bp,0x69(%eax) 647c: 6c insb (%dx),%es:(%edi) 647d: 64 00 09 add %cl,%fs:(%ecx) 6480: 65 gs 6481: c8 1d 00 00 enter $0x1d,$0x0 6485: 24 64 and $0x64,%al 6487: 5f pop %edi 6488: 72 63 jb 64ed <.debug_info+0x64ed> 648a: 75 00 jne 648c <.debug_info+0x648c> 648c: 09 66 d0 or %esp,0xffffffd0(%esi) 648f: 3d 00 00 00 10 cmp $0x10000000,%eax 6494: 54 push %esp 6495: 68 00 00 69 6e push $0x6e690000 649a: 6f outsl %ds:(%esi),(%dx) 649b: 64 fs 649c: 65 gs 649d: 00 c8 add %cl,%al 649f: 01 09 add %ecx,(%ecx) 64a1: 56 push %esi 64a2: 12 69 5f adc 0x5f(%ecx),%ch 64a5: 68 61 73 68 00 push $0x687361 64aa: 0a f2 or %dl,%dh 64ac: 01 24 1e add %esp,(%esi,%ebx,1) 64af: 00 00 add %al,(%eax) 64b1: 02 23 add (%ebx),%ah 64b3: 00 12 add %dl,(%edx) 64b5: 69 5f 6c 69 73 74 00 imul $0x747369,0x6c(%edi),%ebx 64bc: 0a f3 or %bl,%dh 64be: 01 c8 add %ecx,%eax 64c0: 1d 00 00 02 23 sbb $0x23020000,%eax 64c5: 08 12 or %dl,(%edx) 64c7: 69 5f 73 62 5f 6c 69 imul $0x696c5f62,0x73(%edi),%ebx 64ce: 73 74 jae 6544 <.debug_info+0x6544> 64d0: 00 0a add %cl,(%edx) 64d2: f4 hlt 64d3: 01 c8 add %ecx,%eax 64d5: 1d 00 00 02 23 sbb $0x23020000,%eax 64da: 10 12 adc %dl,(%edx) 64dc: 69 5f 64 65 6e 74 72 imul $0x72746e65,0x64(%edi),%ebx 64e3: 79 00 jns 64e5 <.debug_info+0x64e5> 64e5: 0a f5 or %ch,%dh 64e7: 01 c8 add %ecx,%eax 64e9: 1d 00 00 02 23 sbb $0x23020000,%eax 64ee: 18 12 sbb %dl,(%edx) 64f0: 69 5f 69 6e 6f 00 0a imul $0xa006f6e,0x69(%edi),%ebx 64f7: f6 01 98 testb $0x98,(%ecx) 64fa: 00 00 add %al,(%eax) 64fc: 00 02 add %al,(%edx) 64fe: 23 20 and (%eax),%esp 6500: 12 69 5f adc 0x5f(%ecx),%ch 6503: 63 6f 75 arpl %bp,0x75(%edi) 6506: 6e outsb %ds:(%esi),(%dx) 6507: 74 00 je 6509 <.debug_info+0x6509> 6509: 0a f7 or %bh,%dh 650b: 01 a1 1f 00 00 02 add %esp,0x200001f(%ecx) 6511: 23 24 12 and (%edx,%edx,1),%esp 6514: 69 5f 6d 6f 64 65 00 imul $0x65646f,0x6d(%edi),%ebx 651b: 0a f8 or %al,%bh 651d: 01 21 add %esp,(%ecx) 651f: 02 00 add (%eax),%al 6521: 00 02 add %al,(%edx) 6523: 23 28 and (%eax),%ebp 6525: 12 69 5f adc 0x5f(%ecx),%ch 6528: 6e outsb %ds:(%esi),(%dx) 6529: 6c insb (%dx),%es:(%edi) 652a: 69 6e 6b 00 0a f9 01 imul $0x1f90a00,0x6b(%esi),%ebp 6531: 3b 01 cmp (%ecx),%eax 6533: 00 00 add %al,(%eax) 6535: 02 23 add (%ebx),%ah 6537: 2c 12 sub $0x12,%al 6539: 69 5f 75 69 64 00 0a imul $0xa006469,0x75(%edi),%ebx 6540: fa cli 6541: 01 8d 03 00 00 02 add %ecx,0x2000003(%ebp) 6547: 23 30 and (%eax),%esi 6549: 12 69 5f adc 0x5f(%ecx),%ch 654c: 67 69 64 00 0a fb 01 addr16 imul $0x9a01fb0a,0(%si),%esp 6553: 9a 6554: 03 00 add (%eax),%eax 6556: 00 02 add %al,(%edx) 6558: 23 34 12 and (%edx,%edx,1),%esi 655b: 69 5f 72 64 65 76 00 imul $0x766564,0x72(%edi),%ebx 6562: 0a fc or %ah,%bh 6564: 01 38 add %edi,(%eax) 6566: 03 00 add (%eax),%eax 6568: 00 02 add %al,(%edx) 656a: 23 38 and (%eax),%edi 656c: 12 69 5f adc 0x5f(%ecx),%ch 656f: 73 69 jae 65da <.debug_info+0x65da> 6571: 7a 65 jp 65d8 <.debug_info+0x65d8> 6573: 00 0a add %cl,(%edx) 6575: fd std 6576: 01 a7 03 00 00 02 add %esp,0x2000003(%edi) 657c: 23 3c 12 and (%edx,%edx,1),%edi 657f: 69 5f 61 74 69 6d 65 imul $0x656d6974,0x61(%edi),%ebx 6586: 00 0a add %cl,(%edx) 6588: fe 01 incb (%ecx) 658a: 11 20 adc %esp,(%eax) 658c: 00 00 add %al,(%eax) 658e: 02 23 add (%ebx),%ah 6590: 44 inc %esp 6591: 12 69 5f adc 0x5f(%ecx),%ch 6594: 6d insl (%dx),%es:(%edi) 6595: 74 69 je 6600 <.debug_info+0x6600> 6597: 6d insl (%dx),%es:(%edi) 6598: 65 00 0a add %cl,%gs:(%edx) 659b: ff 01 incl (%ecx) 659d: 11 20 adc %esp,(%eax) 659f: 00 00 add %al,(%eax) 65a1: 02 23 add (%ebx),%ah 65a3: 4c dec %esp 65a4: 12 69 5f adc 0x5f(%ecx),%ch 65a7: 63 74 69 6d arpl %si,0x6d(%ecx,%ebp,2) 65ab: 65 00 0a add %cl,%gs:(%edx) 65ae: 00 02 add %al,(%edx) 65b0: 11 20 adc %esp,(%eax) 65b2: 00 00 add %al,(%eax) 65b4: 02 23 add (%ebx),%ah 65b6: 54 push %esp 65b7: 12 69 5f adc 0x5f(%ecx),%ch 65ba: 62 6c 6b 62 bound %ebp,0x62(%ebx,%ebp,2) 65be: 69 74 73 00 0a 01 02 imul $0x3b02010a,0x0(%ebx,%esi,2),%esi 65c5: 3b 65c6: 01 00 add %eax,(%eax) 65c8: 00 02 add %al,(%edx) 65ca: 23 5c 12 69 and 0x69(%edx,%edx,1),%ebx 65ce: 5f pop %edi 65cf: 62 6c 6b 73 bound %ebp,0x73(%ebx,%ebp,2) 65d3: 69 7a 65 00 0a 02 02 imul $0x2020a00,0x65(%edx),%edi 65da: 98 cwtl 65db: 00 00 add %al,(%eax) 65dd: 00 02 add %al,(%edx) 65df: 23 60 12 and 0x12(%eax),%esp 65e2: 69 5f 76 65 72 73 69 imul $0x69737265,0x76(%edi),%ebx 65e9: 6f outsl %ds:(%esi),(%dx) 65ea: 6e outsb %ds:(%esi),(%dx) 65eb: 00 0a add %cl,(%edx) 65ed: 03 02 add (%edx),%eax 65ef: 98 cwtl 65f0: 00 00 add %al,(%eax) 65f2: 00 02 add %al,(%edx) 65f4: 23 64 12 69 and 0x69(%edx,%edx,1),%esp 65f8: 5f pop %edi 65f9: 62 6c 6f 63 bound %ebp,0x63(%edi,%ebp,2) 65fd: 6b 73 00 0a imul $0xa,0x0(%ebx),%esi 6601: 04 02 add $0x2,%al 6603: ef out %eax,(%dx) 6604: 03 00 add (%eax),%eax 6606: 00 02 add %al,(%edx) 6608: 23 68 12 and 0x12(%eax),%ebp 660b: 69 5f 62 79 74 65 73 imul $0x73657479,0x62(%edi),%ebx 6612: 00 0a add %cl,(%edx) 6614: 05 02 ec 00 00 add $0xec02,%eax 6619: 00 02 add %al,(%edx) 661b: 23 6c 12 69 and 0x69(%edx,%edx,1),%ebp 661f: 5f pop %edi 6620: 6c insb (%dx),%es:(%edi) 6621: 6f outsl %ds:(%esi),(%dx) 6622: 63 6b 00 arpl %bp,0x0(%ebx) 6625: 0a 06 or (%esi),%al 6627: 02 1e add (%esi),%bl 6629: 1f pop %ds 662a: 00 00 add %al,(%eax) 662c: 02 23 add (%ebx),%ah 662e: 70 12 jo 6642 <.debug_info+0x6642> 6630: 69 5f 6d 75 74 65 78 imul $0x78657475,0x6d(%edi),%ebx 6637: 00 0a add %cl,(%edx) 6639: 07 pop %es 663a: 02 af 3c 00 00 03 add 0x300003c(%edi),%ch 6640: 23 80 01 12 69 5f and 0x5f691201(%eax),%eax 6646: 61 popa 6647: 6c insb (%dx),%es:(%edi) 6648: 6c insb (%dx),%es:(%edi) 6649: 6f outsl %ds:(%esi),(%dx) 664a: 63 5f 73 arpl %bx,0x73(%edi) 664d: 65 gs 664e: 6d insl (%dx),%es:(%edi) 664f: 00 0a add %cl,(%edx) 6651: 08 02 or %al,(%edx) 6653: b6 21 mov $0x21,%dh 6655: 00 00 add %al,(%eax) 6657: 03 23 add (%ebx),%esp 6659: a8 01 test $0x1,%al 665b: 12 69 5f adc 0x5f(%ecx),%ch 665e: 6f outsl %ds:(%esi),(%dx) 665f: 70 00 jo 6661 <.debug_info+0x6661> 6661: 0a 09 or (%ecx),%cl 6663: 02 20 add (%eax),%ah 6665: 83 00 00 addl $0x0,(%eax) 6668: 03 23 add (%ebx),%esp 666a: c4 01 les (%ecx),%eax 666c: 12 69 5f adc 0x5f(%ecx),%ch 666f: 66 6f outsw %ds:(%esi),(%dx) 6671: 70 00 jo 6673 <.debug_info+0x6673> 6673: 0a 0a or (%edx),%cl 6675: 02 5f 85 add 0xffffff85(%edi),%bl 6678: 00 00 add %al,(%eax) 667a: 03 23 add (%ebx),%esp 667c: c8 01 12 69 enter $0x1201,$0x69 6680: 5f pop %edi 6681: 73 62 jae 66e5 <.debug_info+0x66e5> 6683: 00 0a add %cl,(%edx) 6685: 0b 02 or (%edx),%eax 6687: f1 icebp 6688: 6b 00 00 imul $0x0,(%eax),%eax 668b: 03 23 add (%ebx),%esp 668d: cc int3 668e: 01 12 add %edx,(%edx) 6690: 69 5f 66 6c 6f 63 6b imul $0x6b636f6c,0x66(%edi),%ebx 6697: 00 0a add %cl,(%edx) 6699: 0c 02 or $0x2,%al 669b: b5 86 mov $0x86,%ch 669d: 00 00 add %al,(%eax) 669f: 03 23 add (%ebx),%esp 66a1: d0 01 rolb (%ecx) 66a3: 12 69 5f adc 0x5f(%ecx),%ch 66a6: 6d insl (%dx),%es:(%edi) 66a7: 61 popa 66a8: 70 70 jo 671a <.debug_info+0x671a> 66aa: 69 6e 67 00 0a 0d 02 imul $0x20d0a00,0x67(%esi),%ebp 66b1: ba 7c 00 00 03 mov $0x300007c,%edx 66b6: 23 d4 and %esp,%edx 66b8: 01 12 add %edx,(%edx) 66ba: 69 5f 64 61 74 61 00 imul $0x617461,0x64(%edi),%ebx 66c1: 0a 0e or (%esi),%cl 66c3: 02 c0 add %al,%al 66c5: 7c 00 jl 66c7 <.debug_info+0x66c7> 66c7: 00 03 add %al,(%ebx) 66c9: 23 d8 and %eax,%ebx 66cb: 01 12 add %edx,(%edx) 66cd: 69 5f 64 71 75 6f 74 imul $0x746f7571,0x64(%edi),%ebx 66d4: 00 0a add %cl,(%edx) 66d6: 10 02 adc %al,(%edx) 66d8: bb 86 00 00 03 mov $0x3000086,%ebx 66dd: 23 d0 and %eax,%edx 66df: 02 12 add (%edx),%dl 66e1: 69 5f 64 65 76 69 63 imul $0x63697665,0x64(%edi),%ebx 66e8: 65 gs 66e9: 73 00 jae 66eb <.debug_info+0x66eb> 66eb: 0a 13 or (%ebx),%dl 66ed: 02 c8 add %al,%cl 66ef: 1d 00 00 03 23 sbb $0x23030000,%eax 66f4: d8 02 fadds (%edx) 66f6: 12 69 5f adc 0x5f(%ecx),%ch 66f9: 70 69 jo 6764 <.debug_info+0x6764> 66fb: 70 65 jo 6762 <.debug_info+0x6762> 66fd: 00 0a add %cl,(%edx) 66ff: 14 02 adc $0x2,%al 6701: e1 55 loope 6758 <.debug_info+0x6758> 6703: 00 00 add %al,(%eax) 6705: 03 23 add (%ebx),%esp 6707: e0 02 loopne 670b <.debug_info+0x670b> 6709: 12 69 5f adc 0x5f(%ecx),%ch 670c: 62 64 65 76 bound %esp,0x76(%ebp) 6710: 00 0a add %cl,(%edx) 6712: 15 02 25 81 00 adc $0x812502,%eax 6717: 00 03 add %al,(%ebx) 6719: 23 e4 and %esp,%esp 671b: 02 12 add (%edx),%dl 671d: 69 5f 63 64 65 76 00 imul $0x766564,0x63(%edi),%ebx 6724: 0a 16 or (%esi),%dl 6726: 02 d2 add %dl,%dl 6728: 86 00 xchg %al,(%eax) 672a: 00 03 add %al,(%ebx) 672c: 23 e8 and %eax,%ebp 672e: 02 12 add (%edx),%dl 6730: 69 5f 63 69 6e 64 65 imul $0x65646e69,0x63(%edi),%ebx 6737: 78 00 js 6739 <.debug_info+0x6739> 6739: 0a 17 or (%edi),%dl 673b: 02 7a 00 add 0x0(%edx),%bh 673e: 00 00 add %al,(%eax) 6740: 03 23 add (%ebx),%esp 6742: ec in (%dx),%al 6743: 02 12 add (%edx),%dl 6745: 69 5f 67 65 6e 65 72 imul $0x72656e65,0x67(%edi),%ebx 674c: 61 popa 674d: 74 69 je 67b8 <.debug_info+0x67b8> 674f: 6f outsl %ds:(%esi),(%dx) 6750: 6e outsb %ds:(%esi),(%dx) 6751: 00 0a add %cl,(%edx) 6753: 19 02 sbb %eax,(%edx) 6755: 9c pushf 6756: 02 00 add (%eax),%al 6758: 00 03 add %al,(%ebx) 675a: 23 f0 and %eax,%esi 675c: 02 12 add (%edx),%dl 675e: 69 5f 64 6e 6f 74 69 imul $0x69746f6e,0x64(%edi),%ebx 6765: 66 data16 6766: 79 5f jns 67c7 <.debug_info+0x67c7> 6768: 6d insl (%dx),%es:(%edi) 6769: 61 popa 676a: 73 6b jae 67d7 <.debug_info+0x67d7> 676c: 00 0a add %cl,(%edx) 676e: 1c 02 sbb $0x2,%al 6770: 98 cwtl 6771: 00 00 add %al,(%eax) 6773: 00 03 add %al,(%ebx) 6775: 23 f4 and %esp,%esi 6777: 02 12 add (%edx),%dl 6779: 69 5f 64 6e 6f 74 69 imul $0x69746f6e,0x64(%edi),%ebx 6780: 66 data16 6781: 79 00 jns 6783 <.debug_info+0x6783> 6783: 0a 1d 02 e9 86 00 or 0x86e902,%bl 6789: 00 03 add %al,(%ebx) 678b: 23 f8 and %eax,%edi 678d: 02 13 add (%ebx),%dl 678f: a3 00 00 00 0a mov %eax,0xa000000 6794: 21 02 and %eax,(%edx) 6796: c8 1d 00 00 enter $0x1d,$0x0 679a: 03 23 add (%ebx),%esp 679c: fc cld 679d: 02 12 add (%edx),%dl 679f: 69 6e 6f 74 69 66 79 imul $0x79666974,0x6f(%esi),%ebp 67a6: 5f pop %edi 67a7: 6d insl (%dx),%es:(%edi) 67a8: 75 74 jne 681e <.debug_info+0x681e> 67aa: 65 gs 67ab: 78 00 js 67ad <.debug_info+0x67ad> 67ad: 0a 22 or (%edx),%ah 67af: 02 af 3c 00 00 03 add 0x300003c(%edi),%ch 67b5: 23 84 03 12 69 5f 73 and 0x735f6912(%ebx,%eax,1),%eax 67bc: 74 61 je 681f <.debug_info+0x681f> 67be: 74 65 je 6825 <.debug_info+0x6825> 67c0: 00 0a add %cl,(%edx) 67c2: 25 02 98 00 00 and $0x9802,%eax 67c7: 00 03 add %al,(%ebx) 67c9: 23 ac 03 12 64 69 72 and 0x72696412(%ebx,%eax,1),%ebp 67d0: 74 69 je 683b <.debug_info+0x683b> 67d2: 65 gs 67d3: 64 fs 67d4: 5f pop %edi 67d5: 77 68 ja 683f <.debug_info+0x683f> 67d7: 65 6e outsb %gs:(%esi),(%dx) 67d9: 00 0a add %cl,(%edx) 67db: 26 02 98 00 00 00 03 add %es:0x3000000(%eax),%bl 67e2: 23 b0 03 12 69 5f and 0x5f691203(%eax),%esi 67e8: 66 data16 67e9: 6c insb (%dx),%es:(%edi) 67ea: 61 popa 67eb: 67 73 00 addr16 jae 67ee <.debug_info+0x67ee> 67ee: 0a 28 or (%eax),%ch 67f0: 02 3b add (%ebx),%bh 67f2: 01 00 add %eax,(%eax) 67f4: 00 03 add %al,(%ebx) 67f6: 23 b4 03 12 69 5f 77 and 0x775f6912(%ebx,%eax,1),%esi 67fd: 72 69 jb 6868 <.debug_info+0x6868> 67ff: 74 65 je 6866 <.debug_info+0x6866> 6801: 63 6f 75 arpl %bp,0x75(%edi) 6804: 6e outsb %ds:(%esi),(%dx) 6805: 74 00 je 6807 <.debug_info+0x6807> 6807: 0a 2a or (%edx),%ch 6809: 02 a1 1f 00 00 03 add 0x300001f(%ecx),%ah 680f: 23 b8 03 12 69 5f and 0x5f691203(%eax),%edi 6815: 73 65 jae 687c <.debug_info+0x687c> 6817: 63 75 72 arpl %si,0x72(%ebp) 681a: 69 74 79 00 0a 2b 02 imul $0xb7022b0a,0x0(%ecx,%edi,2),%esi 6821: b7 6822: 1d 00 00 03 23 sbb $0x23030000,%eax 6827: bc 03 12 75 00 mov $0x751203,%esp 682c: 0a 2e or (%esi),%ch 682e: 02 4d 81 add 0xffffff81(%ebp),%cl 6831: 00 00 add %al,(%eax) 6833: 03 23 add (%ebx),%esp 6835: c0 03 12 rolb $0x12,(%ebx) 6838: 69 5f 73 69 7a 65 5f imul $0x5f657a69,0x73(%edi),%ebx 683f: 73 65 jae 68a6 <.debug_info+0x68a6> 6841: 71 63 jno 68a6 <.debug_info+0x68a6> 6843: 6f outsl %ds:(%esi),(%dx) 6844: 75 6e jne 68b4 <.debug_info+0x68b4> 6846: 74 00 je 6848 <.debug_info+0x6848> 6848: 0a 30 or (%eax),%dh 684a: 02 ff add %bh,%bh 684c: 1f pop %ds 684d: 00 00 add %al,(%eax) 684f: 03 23 add (%ebx),%esp 6851: c4 03 les (%ebx),%eax 6853: 00 06 add %al,(%esi) 6855: 04 93 add $0x93,%al 6857: 64 00 00 add %al,%fs:(%eax) 685a: 0e push %cs 685b: e9 68 00 00 64 jmp 640068c8 6860: 65 6e outsb %gs:(%esi),(%dx) 6862: 74 72 je 68d6 <.debug_info+0x68d6> 6864: 79 5f jns 68c5 <.debug_info+0x68c5> 6866: 6f outsl %ds:(%esi),(%dx) 6867: 70 65 jo 68ce <.debug_info+0x68ce> 6869: 72 61 jb 68cc <.debug_info+0x68cc> 686b: 74 69 je 68d6 <.debug_info+0x68d6> 686d: 6f outsl %ds:(%esi),(%dx) 686e: 6e outsb %ds:(%esi),(%dx) 686f: 73 00 jae 6871 <.debug_info+0x6871> 6871: 18 09 sbb %cl,(%ecx) 6873: 6b 0b 64 imul $0x64,(%ebx),%ecx 6876: 5f pop %edi 6877: 72 65 jb 68de <.debug_info+0x68de> 6879: 76 61 jbe 68dc <.debug_info+0x68dc> 687b: 6c insb (%dx),%es:(%edi) 687c: 69 64 61 74 65 00 09 imul $0x82090065,0x74(%ecx),%esp 6883: 82 6884: 45 inc %ebp 6885: 6c insb (%dx),%es:(%edi) 6886: 00 00 add %al,(%eax) 6888: 02 23 add (%ebx),%ah 688a: 00 0b add %cl,(%ebx) 688c: 64 fs 688d: 5f pop %edi 688e: 68 61 73 68 00 push $0x687361 6893: 09 83 66 6c 00 00 or %eax,0x6c66(%ebx) 6899: 02 23 add (%ebx),%ah 689b: 04 0b add $0xb,%al 689d: 64 fs 689e: 5f pop %edi 689f: 63 6f 6d arpl %bp,0x6d(%edi) 68a2: 70 61 jo 6905 <.debug_info+0x6905> 68a4: 72 65 jb 690b <.debug_info+0x690b> 68a6: 00 09 add %cl,(%ecx) 68a8: 84 86 6c 00 00 02 test %al,0x200006c(%esi) 68ae: 23 08 and (%eax),%ecx 68b0: 0b 64 5f 64 or 0x64(%edi,%ebx,2),%esp 68b4: 65 gs 68b5: 6c insb (%dx),%es:(%edi) 68b6: 65 gs 68b7: 74 65 je 691e <.debug_info+0x691e> 68b9: 00 09 add %cl,(%ecx) 68bb: 85 9c 6c 00 00 02 23 test %ebx,0x23020000(%esp,%ebp,2) 68c2: 0c 0b or $0xb,%al 68c4: 64 fs 68c5: 5f pop %edi 68c6: 72 65 jb 692d <.debug_info+0x692d> 68c8: 6c insb (%dx),%es:(%edi) 68c9: 65 gs 68ca: 61 popa 68cb: 73 65 jae 6932 <.debug_info+0x6932> 68cd: 00 09 add %cl,(%ecx) 68cf: 86 ae 6c 00 00 02 xchg %ch,0x200006c(%esi) 68d5: 23 10 and (%eax),%edx 68d7: 0b 64 5f 69 or 0x69(%edi,%ebx,2),%esp 68db: 70 75 jo 6952 <.debug_info+0x6952> 68dd: 74 00 je 68df <.debug_info+0x68df> 68df: 09 87 c5 6c 00 00 or %eax,0x6cc5(%edi) 68e5: 02 23 add (%ebx),%ah 68e7: 14 00 adc $0x0,%al 68e9: 06 push %es 68ea: 04 5a add $0x5a,%al 68ec: 68 00 00 10 f1 push $0xf1100000 68f1: 6b 00 00 imul $0x0,(%eax),%eax 68f4: 73 75 jae 696b <.debug_info+0x696b> 68f6: 70 65 jo 695d <.debug_info+0x695d> 68f8: 72 5f jb 6959 <.debug_info+0x6959> 68fa: 62 6c 6f 63 bound %ebp,0x63(%edi,%ebp,2) 68fe: 6b 00 fc imul $0xfffffffc,(%eax),%eax 6901: 01 09 add %ecx,(%ecx) 6903: 6c insb (%dx),%es:(%edi) 6904: 12 73 5f adc 0x5f(%ebx),%dh 6907: 6c insb (%dx),%es:(%edi) 6908: 69 73 74 00 0a 5d 03 imul $0x35d0a00,0x74(%ebx),%esi 690f: c8 1d 00 00 enter $0x1d,$0x0 6913: 02 23 add (%ebx),%ah 6915: 00 12 add %dl,(%edx) 6917: 73 5f jae 6978 <.debug_info+0x6978> 6919: 64 fs 691a: 65 gs 691b: 76 00 jbe 691d <.debug_info+0x691d> 691d: 0a 5e 03 or 0x3(%esi),%bl 6920: 38 03 cmp %al,(%ebx) 6922: 00 00 add %al,(%eax) 6924: 02 23 add (%ebx),%ah 6926: 08 12 or %dl,(%edx) 6928: 73 5f jae 6989 <.debug_info+0x6989> 692a: 62 6c 6f 63 bound %ebp,0x63(%edi,%ebp,2) 692e: 6b 73 69 7a imul $0x7a,0x69(%ebx),%esi 6932: 65 00 0a add %cl,%gs:(%edx) 6935: 5f pop %edi 6936: 03 98 00 00 00 02 add 0x2000000(%eax),%ebx 693c: 23 0c 12 and (%edx,%edx,1),%ecx 693f: 73 5f jae 69a0 <.debug_info+0x69a0> 6941: 62 6c 6f 63 bound %ebp,0x63(%edi,%ebp,2) 6945: 6b 73 69 7a imul $0x7a,0x69(%ebx),%esi 6949: 65 gs 694a: 5f pop %edi 694b: 62 69 74 bound %ebp,0x74(%ecx) 694e: 73 00 jae 6950 <.debug_info+0x6950> 6950: 0a 60 03 or 0x3(%eax),%ah 6953: 57 push %edi 6954: 02 00 add (%eax),%al 6956: 00 02 add %al,(%edx) 6958: 23 10 and (%eax),%edx 695a: 12 73 5f adc 0x5f(%ebx),%dh 695d: 64 69 72 74 00 0a 61 imul $0x3610a00,%fs:0x74(%edx),%esi 6964: 03 6965: 57 push %edi 6966: 02 00 add (%eax),%al 6968: 00 02 add %al,(%edx) 696a: 23 11 and (%ecx),%edx 696c: 12 73 5f adc 0x5f(%ebx),%dh 696f: 6d insl (%dx),%es:(%edi) 6970: 61 popa 6971: 78 62 js 69d5 <.debug_info+0x69d5> 6973: 79 74 jns 69e9 <.debug_info+0x69e9> 6975: 65 gs 6976: 73 00 jae 6978 <.debug_info+0x6978> 6978: 0a 62 03 or 0x3(%edx),%ah 697b: c3 ret 697c: 02 00 add (%eax),%al 697e: 00 02 add %al,(%edx) 6980: 23 14 12 and (%edx,%edx,1),%edx 6983: 73 5f jae 69e4 <.debug_info+0x69e4> 6985: 74 79 je 6a00 <.debug_info+0x6a00> 6987: 70 65 jo 69ee <.debug_info+0x69ee> 6989: 00 0a add %cl,(%edx) 698b: 63 03 arpl %ax,(%ebx) 698d: ef out %eax,(%dx) 698e: 8b 00 mov (%eax),%eax 6990: 00 02 add %al,(%edx) 6992: 23 1c 12 and (%edx,%edx,1),%ebx 6995: 73 5f jae 69f6 <.debug_info+0x69f6> 6997: 6f outsl %ds:(%esi),(%dx) 6998: 70 00 jo 699a <.debug_info+0x699a> 699a: 0a 64 03 e2 or 0xffffffe2(%ebx,%eax,1),%ah 699e: 8d 00 lea (%eax),%eax 69a0: 00 02 add %al,(%edx) 69a2: 23 20 and (%eax),%esp 69a4: 12 64 71 5f adc 0x5f(%ecx,%esi,2),%ah 69a8: 6f outsl %ds:(%esi),(%dx) 69a9: 70 00 jo 69ab <.debug_info+0x69ab> 69ab: 0a 65 03 or 0x3(%ebp),%ah 69ae: e8 8d 00 00 02 call 2006a40 69b3: 23 24 12 and (%edx,%edx,1),%esp 69b6: 73 5f jae 6a17 <.debug_info+0x6a17> 69b8: 71 63 jno 6a1d <.debug_info+0x6a1d> 69ba: 6f outsl %ds:(%esi),(%dx) 69bb: 70 00 jo 69bd <.debug_info+0x69bd> 69bd: 0a 66 03 or 0x3(%esi),%ah 69c0: ee out %al,(%dx) 69c1: 8d 00 lea (%eax),%eax 69c3: 00 02 add %al,(%edx) 69c5: 23 28 and (%eax),%ebp 69c7: 12 73 5f adc 0x5f(%ebx),%dh 69ca: 65 gs 69cb: 78 70 js 6a3d <.debug_info+0x6a3d> 69cd: 6f outsl %ds:(%esi),(%dx) 69ce: 72 74 jb 6a44 <.debug_info+0x6a44> 69d0: 5f pop %edi 69d1: 6f outsl %ds:(%esi),(%dx) 69d2: 70 00 jo 69d4 <.debug_info+0x69d4> 69d4: 0a 67 03 or 0x3(%edi),%ah 69d7: 9a 8e 00 00 02 23 2c lcall $0x2c23,$0x200008e 69de: 12 73 5f adc 0x5f(%ebx),%dh 69e1: 66 data16 69e2: 6c insb (%dx),%es:(%edi) 69e3: 61 popa 69e4: 67 73 00 addr16 jae 69e7 <.debug_info+0x69e7> 69e7: 0a 68 03 or 0x3(%eax),%ch 69ea: 98 cwtl 69eb: 00 00 add %al,(%eax) 69ed: 00 02 add %al,(%edx) 69ef: 23 30 and (%eax),%esi 69f1: 12 73 5f adc 0x5f(%ebx),%dh 69f4: 6d insl (%dx),%es:(%edi) 69f5: 61 popa 69f6: 67 69 63 00 0a 69 03 addr16 imul $0x9803690a,0(%bp,%di),%esp 69fd: 98 69fe: 00 00 add %al,(%eax) 6a00: 00 02 add %al,(%edx) 6a02: 23 34 12 and (%edx,%edx,1),%esi 6a05: 73 5f jae 6a66 <.debug_info+0x6a66> 6a07: 72 6f jb 6a78 <.debug_info+0x6a78> 6a09: 6f outsl %ds:(%esi),(%dx) 6a0a: 74 00 je 6a0c <.debug_info+0x6a0c> 6a0c: 0a 6a 03 or 0x3(%edx),%ch 6a0f: f7 35 00 00 02 23 divl 0x23020000 6a15: 38 12 cmp %dl,(%edx) 6a17: 73 5f jae 6a78 <.debug_info+0x6a78> 6a19: 75 6d jne 6a88 <.debug_info+0x6a88> 6a1b: 6f outsl %ds:(%esi),(%dx) 6a1c: 75 6e jne 6a8c <.debug_info+0x6a8c> 6a1e: 74 00 je 6a20 <.debug_info+0x6a20> 6a20: 0a 6b 03 or 0x3(%ebx),%ch 6a23: b6 21 mov $0x21,%dh 6a25: 00 00 add %al,(%eax) 6a27: 02 23 add (%ebx),%ah 6a29: 3c 12 cmp $0x12,%al 6a2b: 73 5f jae 6a8c <.debug_info+0x6a8c> 6a2d: 6c insb (%dx),%es:(%edi) 6a2e: 6f outsl %ds:(%esi),(%dx) 6a2f: 63 6b 00 arpl %bp,0x0(%ebx) 6a32: 0a 6c 03 af or 0xffffffaf(%ebx,%eax,1),%ch 6a36: 3c 00 cmp $0x0,%al 6a38: 00 02 add %al,(%edx) 6a3a: 23 58 12 and 0x12(%eax),%ebx 6a3d: 73 5f jae 6a9e <.debug_info+0x6a9e> 6a3f: 63 6f 75 arpl %bp,0x75(%edi) 6a42: 6e outsb %ds:(%esi),(%dx) 6a43: 74 00 je 6a45 <.debug_info+0x6a45> 6a45: 0a 6d 03 or 0x3(%ebp),%ch 6a48: 7a 00 jp 6a4a <.debug_info+0x6a4a> 6a4a: 00 00 add %al,(%eax) 6a4c: 03 23 add (%ebx),%esp 6a4e: 80 01 12 addb $0x12,(%ecx) 6a51: 73 5f jae 6ab2 <.debug_info+0x6ab2> 6a53: 73 79 jae 6ace <.debug_info+0x6ace> 6a55: 6e outsb %ds:(%esi),(%dx) 6a56: 63 69 6e arpl %bp,0x6e(%ecx) 6a59: 67 00 0a addr16 add %cl,(%bp,%si) 6a5c: 6e outsb %ds:(%esi),(%dx) 6a5d: 03 7a 00 add 0x0(%edx),%edi 6a60: 00 00 add %al,(%eax) 6a62: 03 23 add (%ebx),%esp 6a64: 84 01 test %al,(%ecx) 6a66: 12 73 5f adc 0x5f(%ebx),%dh 6a69: 6e outsb %ds:(%esi),(%dx) 6a6a: 65 gs 6a6b: 65 gs 6a6c: 64 fs 6a6d: 5f pop %edi 6a6e: 73 79 jae 6ae9 <.debug_info+0x6ae9> 6a70: 6e outsb %ds:(%esi),(%dx) 6a71: 63 5f 66 arpl %bx,0x66(%edi) 6a74: 73 00 jae 6a76 <.debug_info+0x6a76> 6a76: 0a 6f 03 or 0x3(%edi),%ch 6a79: 7a 00 jp 6a7b <.debug_info+0x6a7b> 6a7b: 00 00 add %al,(%eax) 6a7d: 03 23 add (%ebx),%esp 6a7f: 88 01 mov %al,(%ecx) 6a81: 12 73 5f adc 0x5f(%ebx),%dh 6a84: 61 popa 6a85: 63 74 69 76 arpl %si,0x76(%ecx,%ebp,2) 6a89: 65 00 0a add %cl,%gs:(%edx) 6a8c: 70 03 jo 6a91 <.debug_info+0x6a91> 6a8e: a1 1f 00 00 03 mov 0x300001f,%eax 6a93: 23 8c 01 12 73 5f 73 and 0x735f7312(%ecx,%eax,1),%ecx 6a9a: 65 63 75 72 arpl %si,%gs:0x72(%ebp) 6a9e: 69 74 79 00 0a 71 03 imul $0xb703710a,0x0(%ecx,%edi,2),%esi 6aa5: b7 6aa6: 1d 00 00 03 23 sbb $0x23030000,%eax 6aab: 90 nop 6aac: 01 12 add %edx,(%edx) 6aae: 73 5f jae 6b0f <.debug_info+0x6b0f> 6ab0: 78 61 js 6b13 <.debug_info+0x6b13> 6ab2: 74 74 je 6b28 <.debug_info+0x6b28> 6ab4: 72 00 jb 6ab6 <.debug_info+0x6ab6> 6ab6: 0a 72 03 or 0x3(%edx),%dh 6ab9: b0 8e mov $0x8e,%al 6abb: 00 00 add %al,(%eax) 6abd: 03 23 add (%ebx),%esp 6abf: 94 xchg %eax,%esp 6ac0: 01 12 add %edx,(%edx) 6ac2: 73 5f jae 6b23 <.debug_info+0x6b23> 6ac4: 69 6e 6f 64 65 73 00 imul $0x736564,0x6f(%esi),%ebp 6acb: 0a 74 03 c8 or 0xffffffc8(%ebx,%eax,1),%dh 6acf: 1d 00 00 03 23 sbb $0x23030000,%eax 6ad4: 98 cwtl 6ad5: 01 12 add %edx,(%edx) 6ad7: 73 5f jae 6b38 <.debug_info+0x6b38> 6ad9: 64 69 72 74 79 00 0a imul $0x750a0079,%fs:0x74(%edx),%esi 6ae0: 75 6ae1: 03 c8 add %eax,%ecx 6ae3: 1d 00 00 03 23 sbb $0x23030000,%eax 6ae8: a0 01 12 73 5f mov 0x5f731201,%al 6aed: 69 6f 00 0a 76 03 c8 imul $0xc803760a,0x0(%edi),%ebp 6af4: 1d 00 00 03 23 sbb $0x23030000,%eax 6af9: a8 01 test $0x1,%al 6afb: 12 73 5f adc 0x5f(%ebx),%dh 6afe: 61 popa 6aff: 6e outsb %ds:(%esi),(%dx) 6b00: 6f outsl %ds:(%esi),(%dx) 6b01: 6e outsb %ds:(%esi),(%dx) 6b02: 00 0a add %cl,(%edx) 6b04: 77 03 ja 6b09 <.debug_info+0x6b09> 6b06: fe (bad) 6b07: 1d 00 00 03 23 sbb $0x23030000,%eax 6b0c: b0 01 mov $0x1,%al 6b0e: 12 73 5f adc 0x5f(%ebx),%dh 6b11: 66 69 6c 65 73 00 0a imul $0xa00,0x73(%ebp),%bp 6b18: 78 03 js 6b1d <.debug_info+0x6b1d> 6b1a: c8 1d 00 00 enter $0x1d,$0x0 6b1e: 03 23 add (%ebx),%esp 6b20: b4 01 mov $0x1,%ah 6b22: 12 73 5f adc 0x5f(%ebx),%dh 6b25: 62 64 65 76 bound %esp,0x76(%ebp) 6b29: 00 0a add %cl,(%edx) 6b2b: 7a 03 jp 6b30 <.debug_info+0x6b30> 6b2d: 25 81 00 00 03 and $0x3000081,%eax 6b32: 23 bc 01 12 73 5f 69 and 0x695f7312(%ecx,%eax,1),%edi 6b39: 6e outsb %ds:(%esi),(%dx) 6b3a: 73 74 jae 6bb0 <.debug_info+0x6bb0> 6b3c: 61 popa 6b3d: 6e outsb %ds:(%esi),(%dx) 6b3e: 63 65 73 arpl %sp,0x73(%ebp) 6b41: 00 0a add %cl,(%edx) 6b43: 7b 03 jnp 6b48 <.debug_info+0x6b48> 6b45: c8 1d 00 00 enter $0x1d,$0x0 6b49: 03 23 add (%ebx),%esp 6b4b: c0 01 12 rolb $0x12,(%ecx) 6b4e: 73 5f jae 6baf <.debug_info+0x6baf> 6b50: 64 fs 6b51: 71 75 jno 6bc8 <.debug_info+0x6bc8> 6b53: 6f outsl %ds:(%esi),(%dx) 6b54: 74 00 je 6b56 <.debug_info+0x6b56> 6b56: 0a 7c 03 1e or 0x1e(%ebx,%eax,1),%bh 6b5a: 7a 00 jp 6b5c <.debug_info+0x6b5c> 6b5c: 00 03 add %al,(%ebx) 6b5e: 23 c8 and %eax,%ecx 6b60: 01 12 add %edx,(%edx) 6b62: 73 5f jae 6bc3 <.debug_info+0x6bc3> 6b64: 66 data16 6b65: 72 6f jb 6bd6 <.debug_info+0x6bd6> 6b67: 7a 65 jp 6bce <.debug_info+0x6bce> 6b69: 6e outsb %ds:(%esi),(%dx) 6b6a: 00 0a add %cl,(%edx) 6b6c: 7e 03 jle 6b71 <.debug_info+0x6b71> 6b6e: 7a 00 jp 6b70 <.debug_info+0x6b70> 6b70: 00 00 add %al,(%eax) 6b72: 03 23 add (%ebx),%esp 6b74: 90 nop 6b75: 03 12 add (%edx),%edx 6b77: 73 5f jae 6bd8 <.debug_info+0x6bd8> 6b79: 77 61 ja 6bdc <.debug_info+0x6bdc> 6b7b: 69 74 5f 75 6e 66 72 imul $0x6f72666e,0x75(%edi,%ebx,2),%esi 6b82: 6f 6b83: 7a 65 jp 6bea <.debug_info+0x6bea> 6b85: 6e outsb %ds:(%esi),(%dx) 6b86: 00 0a add %cl,(%edx) 6b88: 7f 03 jg 6b8d <.debug_info+0x6b8d> 6b8a: 9d popf 6b8b: 21 00 and %eax,(%eax) 6b8d: 00 03 add %al,(%ebx) 6b8f: 23 94 03 12 73 5f 69 and 0x695f7312(%ebx,%eax,1),%edx 6b96: 64 00 0a add %cl,%fs:(%edx) 6b99: 81 03 e2 5f 00 00 addl $0x5fe2,(%ebx) 6b9f: 03 23 add (%ebx),%esp 6ba1: ac lods %ds:(%esi),%al 6ba2: 03 12 add (%edx),%edx 6ba4: 73 5f jae 6c05 <.debug_info+0x6c05> 6ba6: 66 data16 6ba7: 73 5f jae 6c08 <.debug_info+0x6c08> 6ba9: 69 6e 66 6f 00 0a 83 imul $0x830a006f,0x66(%esi),%ebp 6bb0: 03 b7 1d 00 00 03 add 0x300001d(%edi),%esi 6bb6: 23 cc and %esp,%ecx 6bb8: 03 12 add (%edx),%edx 6bba: 73 5f jae 6c1b <.debug_info+0x6c1b> 6bbc: 76 66 jbe 6c24 <.debug_info+0x6c24> 6bbe: 73 5f jae 6c1f <.debug_info+0x6c1f> 6bc0: 72 65 jb 6c27 <.debug_info+0x6c27> 6bc2: 6e outsb %ds:(%esi),(%dx) 6bc3: 61 popa 6bc4: 6d insl (%dx),%es:(%edi) 6bc5: 65 gs 6bc6: 5f pop %edi 6bc7: 6d insl (%dx),%es:(%edi) 6bc8: 75 74 jne 6c3e <.debug_info+0x6c3e> 6bca: 65 gs 6bcb: 78 00 js 6bcd <.debug_info+0x6bcd> 6bcd: 0a 89 03 af 3c 00 or 0x3caf03(%ecx),%cl 6bd3: 00 03 add %al,(%ebx) 6bd5: 23 d0 and %eax,%edx 6bd7: 03 12 add (%edx),%edx 6bd9: 73 5f jae 6c3a <.debug_info+0x6c3a> 6bdb: 74 69 je 6c46 <.debug_info+0x6c46> 6bdd: 6d insl (%dx),%es:(%edi) 6bde: 65 gs 6bdf: 5f pop %edi 6be0: 67 72 61 addr16 jb 6c44 <.debug_info+0x6c44> 6be3: 6e outsb %ds:(%esi),(%dx) 6be4: 00 0a add %cl,(%edx) 6be6: 8d 03 lea (%ebx),%eax 6be8: f1 icebp 6be9: 02 00 add (%eax),%al 6beb: 00 03 add %al,(%ebx) 6bed: 23 f8 and %eax,%edi 6bef: 03 00 add (%eax),%eax 6bf1: 06 push %es 6bf2: 04 ef add $0xef,%al 6bf4: 68 00 00 26 64 push $0x64260000 6bf9: 63 6f 6f arpl %bp,0x6f(%edi) 6bfc: 6b 69 65 5f imul $0x5f,0x65(%ecx),%ebp 6c00: 73 74 jae 6c76 <.debug_info+0x6c76> 6c02: 72 75 jb 6c79 <.debug_info+0x6c79> 6c04: 63 74 00 01 arpl %si,0x1(%eax,%eax,1) 6c08: 06 push %es 6c09: 04 f7 add $0xf7,%al 6c0b: 6b 00 00 imul $0x0,(%eax),%eax 6c0e: 03 1e add (%esi),%ebx 6c10: 6c insb (%dx),%es:(%edi) 6c11: 00 00 add %al,(%eax) 6c13: 57 push %edi 6c14: 02 00 add (%eax),%al 6c16: 00 04 91 add %al,(%ecx,%edx,4) 6c19: 00 00 add %al,(%eax) 6c1b: 00 23 add %ah,(%ebx) 6c1d: 00 0c 33 add %cl,(%ebx,%esi,1) 6c20: 6c insb (%dx),%es:(%edi) 6c21: 00 00 add %al,(%eax) 6c23: 01 7a 00 add %edi,0x0(%edx) 6c26: 00 00 add %al,(%eax) 6c28: 08 f7 or %dh,%bh 6c2a: 35 00 00 08 33 xor $0x33080000,%eax 6c2f: 6c insb (%dx),%es:(%edi) 6c30: 00 00 add %al,(%eax) 6c32: 00 06 add %al,(%esi) 6c34: 04 39 add $0x39,%al 6c36: 6c insb (%dx),%es:(%edi) 6c37: 00 00 add %al,(%eax) 6c39: 26 6e outsb %es:(%esi),(%dx) 6c3b: 61 popa 6c3c: 6d insl (%dx),%es:(%edi) 6c3d: 65 69 64 61 74 61 00 imul $0x6010061,%gs:0x74(%ecx),%esp 6c44: 01 06 6c46: 04 1e add $0x1e,%al 6c48: 6c insb (%dx),%es:(%edi) 6c49: 00 00 add %al,(%eax) 6c4b: 0c 60 or $0x60,%al 6c4d: 6c insb (%dx),%es:(%edi) 6c4e: 00 00 add %al,(%eax) 6c50: 01 7a 00 add %edi,0x0(%edx) 6c53: 00 00 add %al,(%eax) 6c55: 08 f7 or %dh,%bh 6c57: 35 00 00 08 60 xor $0x60080000,%eax 6c5c: 6c insb (%dx),%es:(%edi) 6c5d: 00 00 add %al,(%eax) 6c5f: 00 06 add %al,(%esi) 6c61: 04 2a add $0x2a,%al 6c63: 64 00 00 add %al,%fs:(%eax) 6c66: 06 push %es 6c67: 04 4b add $0x4b,%al 6c69: 6c insb (%dx),%es:(%edi) 6c6a: 00 00 add %al,(%eax) 6c6c: 0c 86 or $0x86,%al 6c6e: 6c insb (%dx),%es:(%edi) 6c6f: 00 00 add %al,(%eax) 6c71: 01 7a 00 add %edi,0x0(%edx) 6c74: 00 00 add %al,(%eax) 6c76: 08 f7 or %dh,%bh 6c78: 35 00 00 08 60 xor $0x60080000,%eax 6c7d: 6c insb (%dx),%es:(%edi) 6c7e: 00 00 add %al,(%eax) 6c80: 08 60 6c or %ah,0x6c(%eax) 6c83: 00 00 add %al,(%eax) 6c85: 00 06 add %al,(%esi) 6c87: 04 6c add $0x6c,%al 6c89: 6c insb (%dx),%es:(%edi) 6c8a: 00 00 add %al,(%eax) 6c8c: 0c 9c or $0x9c,%al 6c8e: 6c insb (%dx),%es:(%edi) 6c8f: 00 00 add %al,(%eax) 6c91: 01 7a 00 add %edi,0x0(%edx) 6c94: 00 00 add %al,(%eax) 6c96: 08 f7 or %dh,%bh 6c98: 35 00 00 00 06 xor $0x6000000,%eax 6c9d: 04 8c add $0x8c,%al 6c9f: 6c insb (%dx),%es:(%edi) 6ca0: 00 00 add %al,(%eax) 6ca2: 07 pop %es 6ca3: ae scas %es:(%edi),%al 6ca4: 6c insb (%dx),%es:(%edi) 6ca5: 00 00 add %al,(%eax) 6ca7: 01 08 add %ecx,(%eax) 6ca9: f7 35 00 00 00 06 divl 0x6000000 6caf: 04 a2 add $0xa2,%al 6cb1: 6c insb (%dx),%es:(%edi) 6cb2: 00 00 add %al,(%eax) 6cb4: 07 pop %es 6cb5: c5 6c 00 00 lds 0x0(%eax,%eax,1),%ebp 6cb9: 01 08 add %ecx,(%eax) 6cbb: f7 35 00 00 08 54 divl 0x54080000 6cc1: 68 00 00 00 06 push $0x6000000 6cc6: 04 b4 add $0xb4,%al 6cc8: 6c insb (%dx),%es:(%edi) 6cc9: 00 00 add %al,(%eax) 6ccb: 0e push %cs 6ccc: 18 6d 00 sbb %ch,0x0(%ebp) 6ccf: 00 72 61 add %dh,0x61(%edx) 6cd2: 64 69 78 5f 74 72 65 imul $0x65657274,%fs:0x5f(%eax),%edi 6cd9: 65 6cda: 5f pop %edi 6cdb: 72 6f jb 6d4c <.debug_info+0x6d4c> 6cdd: 6f outsl %ds:(%esi),(%dx) 6cde: 74 00 je 6ce0 <.debug_info+0x6ce0> 6ce0: 0c 33 or $0x33,%al 6ce2: 1d 0b 68 65 69 sbb $0x6965680b,%eax 6ce7: 67 68 74 00 33 1e addr16 push $0x1e330074 6ced: 3b 01 cmp (%ecx),%eax 6cef: 00 00 add %al,(%eax) 6cf1: 02 23 add (%ebx),%ah 6cf3: 00 0b add %cl,(%ebx) 6cf5: 67 addr16 6cf6: 66 data16 6cf7: 70 5f jo 6d58 <.debug_info+0x6d58> 6cf9: 6d insl (%dx),%es:(%edi) 6cfa: 61 popa 6cfb: 73 6b jae 6d68 <.debug_info+0x6d68> 6cfd: 00 33 add %dh,(%ebx) 6cff: 1f pop %ds 6d00: ff 03 incl (%ebx) 6d02: 00 00 add %al,(%eax) 6d04: 02 23 add (%ebx),%ah 6d06: 04 0b add $0xb,%al 6d08: 72 6e jb 6d78 <.debug_info+0x6d78> 6d0a: 6f outsl %ds:(%esi),(%dx) 6d0b: 64 65 00 33 add %dh,%fs:%gs:(%ebx) 6d0f: 20 2a and %ch,(%edx) 6d11: 6d insl (%dx),%es:(%edi) 6d12: 00 00 add %al,(%eax) 6d14: 02 23 add (%ebx),%ah 6d16: 08 00 or %al,(%eax) 6d18: 26 es 6d19: 72 61 jb 6d7c <.debug_info+0x6d7c> 6d1b: 64 69 78 5f 74 72 65 imul $0x65657274,%fs:0x5f(%eax),%edi 6d22: 65 6d23: 5f pop %edi 6d24: 6e outsb %ds:(%esi),(%dx) 6d25: 6f outsl %ds:(%esi),(%dx) 6d26: 64 65 00 01 add %al,%fs:%gs:(%ecx) 6d2a: 06 push %es 6d2b: 04 18 add $0x18,%al 6d2d: 6d insl (%dx),%es:(%edi) 6d2e: 00 00 add %al,(%eax) 6d30: 0e push %cs 6d31: 79 6d jns 6da0 <.debug_info+0x6da0> 6d33: 00 00 add %al,(%eax) 6d35: 72 61 jb 6d98 <.debug_info+0x6d98> 6d37: 77 5f ja 6d98 <.debug_info+0x6d98> 6d39: 70 72 jo 6dad <.debug_info+0x6dad> 6d3b: 69 6f 5f 74 72 65 65 imul $0x65657274,0x5f(%edi),%ebp 6d42: 5f pop %edi 6d43: 6e outsb %ds:(%esi),(%dx) 6d44: 6f outsl %ds:(%esi),(%dx) 6d45: 64 65 00 0c 1b add %cl,%fs:%gs:(%ebx,%ebx,1) 6d4a: 0e push %cs 6d4b: 0b 6c 65 66 or 0x66(%ebp),%ebp 6d4f: 74 00 je 6d51 <.debug_info+0x6d51> 6d51: 1b 0f sbb (%edi),%ecx 6d53: d2 6d 00 shrb %cl,0x0(%ebp) 6d56: 00 02 add %al,(%edx) 6d58: 23 00 and (%eax),%eax 6d5a: 0b 72 69 or 0x69(%edx),%esi 6d5d: 67 68 74 00 1b 10 addr16 push $0x101b0074 6d63: d2 6d 00 shrb %cl,0x0(%ebp) 6d66: 00 02 add %al,(%edx) 6d68: 23 04 0f and (%edi,%ecx,1),%eax 6d6b: 76 03 jbe 6d70 <.debug_info+0x6d70> 6d6d: 00 00 add %al,(%eax) 6d6f: 1b 11 sbb (%ecx),%edx 6d71: d2 6d 00 shrb %cl,0x0(%ebp) 6d74: 00 02 add %al,(%edx) 6d76: 23 08 and (%eax),%ecx 6d78: 00 0a add %cl,(%edx) 6d7a: d2 6d 00 shrb %cl,0x0(%ebp) 6d7d: 00 77 01 add %dh,0x1(%edi) 6d80: 00 00 add %al,(%eax) 6d82: 14 1b adc $0x1b,%al 6d84: 0f 0b ud2a 6d86: 6c insb (%dx),%es:(%edi) 6d87: 65 gs 6d88: 66 data16 6d89: 74 00 je 6d8b <.debug_info+0x6d8b> 6d8b: 1b 15 d2 6d 00 00 sbb 0x6dd2,%edx 6d91: 02 23 add (%ebx),%ah 6d93: 00 0b add %cl,(%ebx) 6d95: 72 69 jb 6e00 <.debug_info+0x6e00> 6d97: 67 68 74 00 1b 16 addr16 push $0x161b0074 6d9d: d2 6d 00 shrb %cl,0x0(%ebp) 6da0: 00 02 add %al,(%edx) 6da2: 23 04 0f and (%edi,%ecx,1),%eax 6da5: 76 03 jbe 6daa <.debug_info+0x6daa> 6da7: 00 00 add %al,(%eax) 6da9: 1b 17 sbb (%edi),%edx 6dab: d2 6d 00 shrb %cl,0x0(%ebp) 6dae: 00 02 add %al,(%edx) 6db0: 23 08 and (%eax),%ecx 6db2: 0b 73 74 or 0x74(%ebx),%esi 6db5: 61 popa 6db6: 72 74 jb 6e2c <.debug_info+0x6e2c> 6db8: 00 1b add %bl,(%ebx) 6dba: 18 98 00 00 00 02 sbb %bl,0x2000000(%eax) 6dc0: 23 0c 0b and (%ebx,%ecx,1),%ecx 6dc3: 6c insb (%dx),%es:(%edi) 6dc4: 61 popa 6dc5: 73 74 jae 6e3b <.debug_info+0x6e3b> 6dc7: 00 1b add %bl,(%ebx) 6dc9: 19 98 00 00 00 02 sbb %ebx,0x2000000(%eax) 6dcf: 23 10 and (%eax),%edx 6dd1: 00 06 add %al,(%esi) 6dd3: 04 79 add $0x79,%al 6dd5: 6d insl (%dx),%es:(%edi) 6dd6: 00 00 add %al,(%eax) 6dd8: 0e push %cs 6dd9: 21 6e 00 and %ebp,0x0(%esi) 6ddc: 00 70 72 add %dh,0x72(%eax) 6ddf: 69 6f 5f 74 72 65 65 imul $0x65657274,0x5f(%edi),%ebp 6de6: 5f pop %edi 6de7: 72 6f jb 6e58 <.debug_info+0x6e58> 6de9: 6f outsl %ds:(%esi),(%dx) 6dea: 74 00 je 6dec <.debug_info+0x6dec> 6dec: 08 1b or %bl,(%ebx) 6dee: 1c 0f sbb $0xf,%al 6df0: 77 01 ja 6df3 <.debug_info+0x6df3> 6df2: 00 00 add %al,(%eax) 6df4: 1b 1d d2 6d 00 00 sbb 0x6dd2,%ebx 6dfa: 02 23 add (%ebx),%ah 6dfc: 00 0b add %cl,(%ebx) 6dfe: 69 6e 64 65 78 5f 62 imul $0x625f7865,0x64(%esi),%ebp 6e05: 69 74 73 00 1b 1e ec imul $0xec1e1b,0x0(%ebx,%esi,2),%esi 6e0c: 00 6e0d: 00 00 add %al,(%eax) 6e0f: 02 23 add (%ebx),%ah 6e11: 04 0b add $0xb,%al 6e13: 72 61 jb 6e76 <.debug_info+0x6e76> 6e15: 77 00 ja 6e17 <.debug_info+0x6e17> 6e17: 1b 1f sbb (%edi),%ebx 6e19: ec in (%dx),%al 6e1a: 00 00 add %al,(%eax) 6e1c: 00 02 add %al,(%edx) 6e1e: 23 06 and (%esi),%eax 6e20: 00 09 add %cl,(%ecx) 6e22: 71 69 jno 6e8d <.debug_info+0x6e8d> 6e24: 64 fs 6e25: 5f pop %edi 6e26: 74 00 je 6e28 <.debug_info+0x6e28> 6e28: 2c 2c sub $0x2c,%al 6e2a: c9 leave 6e2b: 01 00 add %eax,(%eax) 6e2d: 00 09 add %cl,(%ecx) 6e2f: 71 73 jno 6ea4 <.debug_info+0x6ea4> 6e31: 69 7a 65 5f 74 00 2c imul $0x2c00745f,0x65(%edx),%edi 6e38: 2d b6 02 00 00 sub $0x2b6,%eax 6e3d: 0e push %cs 6e3e: d3 6e 00 shrl %cl,0x0(%esi) 6e41: 00 69 66 add %ch,0x66(%ecx) 6e44: 5f pop %edi 6e45: 64 fs 6e46: 71 62 jno 6eaa <.debug_info+0x6eaa> 6e48: 6c insb (%dx),%es:(%edi) 6e49: 6b 00 44 imul $0x44,(%eax),%eax 6e4c: 2c 69 sub $0x69,%al 6e4e: 0f e9 02 psubsw (%edx),%mm0 6e51: 00 00 add %al,(%eax) 6e53: 2c 6a sub $0x6a,%al 6e55: b6 02 mov $0x2,%dh 6e57: 00 00 add %al,(%eax) 6e59: 02 23 add (%ebx),%ah 6e5b: 00 0f add %cl,(%edi) 6e5d: 92 xchg %eax,%edx 6e5e: 01 00 add %eax,(%eax) 6e60: 00 2c 6b add %ch,(%ebx,%ebp,2) 6e63: b6 02 mov $0x2,%dh 6e65: 00 00 add %al,(%eax) 6e67: 02 23 add (%ebx),%ah 6e69: 08 0f or %cl,(%edi) 6e6b: 09 00 or %eax,(%eax) 6e6d: 00 00 add %al,(%eax) 6e6f: 2c 6c sub $0x6c,%al 6e71: b6 02 mov $0x2,%dh 6e73: 00 00 add %al,(%eax) 6e75: 02 23 add (%ebx),%ah 6e77: 10 0f adc %cl,(%edi) 6e79: f6 01 00 testb $0x0,(%ecx) 6e7c: 00 2c 6d b6 02 00 00 add %ch,0x2b6(,%ebp,2) 6e83: 02 23 add (%ebx),%ah 6e85: 18 0f sbb %cl,(%edi) 6e87: f8 clc 6e88: 02 00 add (%eax),%al 6e8a: 00 2c 6e add %ch,(%esi,%ebp,2) 6e8d: b6 02 mov $0x2,%dh 6e8f: 00 00 add %al,(%eax) 6e91: 02 23 add (%ebx),%ah 6e93: 20 0f and %cl,(%edi) 6e95: e0 00 loopne 6e97 <.debug_info+0x6e97> 6e97: 00 00 add %al,(%eax) 6e99: 2c 6f sub $0x6f,%al 6e9b: b6 02 mov $0x2,%dh 6e9d: 00 00 add %al,(%eax) 6e9f: 02 23 add (%ebx),%ah 6ea1: 28 0f sub %cl,(%edi) 6ea3: 4e dec %esi 6ea4: 03 00 add (%eax),%eax 6ea6: 00 2c 70 add %ch,(%eax,%esi,2) 6ea9: b6 02 mov $0x2,%dh 6eab: 00 00 add %al,(%eax) 6ead: 02 23 add (%ebx),%ah 6eaf: 30 0f xor %cl,(%edi) 6eb1: 2e 02 00 add %cs:(%eax),%al 6eb4: 00 2c 71 add %ch,(%ecx,%esi,2) 6eb7: b6 02 mov $0x2,%dh 6eb9: 00 00 add %al,(%eax) 6ebb: 02 23 add (%ebx),%ah 6ebd: 38 0b cmp %cl,(%ebx) 6ebf: 64 fs 6ec0: 71 62 jno 6f24 <.debug_info+0x6f24> 6ec2: 5f pop %edi 6ec3: 76 61 jbe 6f26 <.debug_info+0x6f26> 6ec5: 6c insb (%dx),%es:(%edi) 6ec6: 69 64 00 2c 72 9c 02 imul $0x29c72,0x2c(%eax,%eax,1),%esp 6ecd: 00 6ece: 00 02 add %al,(%edx) 6ed0: 23 40 00 and 0x0(%eax),%eax 6ed3: 0e push %cs 6ed4: 24 6f and $0x6f,%al 6ed6: 00 00 add %al,(%eax) 6ed8: 69 66 5f 64 71 69 6e imul $0x6e697164,0x5f(%esi),%esp 6edf: 66 6f outsw %ds:(%esi),(%dx) 6ee1: 00 18 add %bl,(%eax) 6ee3: 2c 7e sub $0x7e,%al 6ee5: 0f 10 03 movups (%ebx),%xmm0 6ee8: 00 00 add %al,(%eax) 6eea: 2c 7f sub $0x7f,%al 6eec: b6 02 mov $0x2,%dh 6eee: 00 00 add %al,(%eax) 6ef0: 02 23 add (%ebx),%ah 6ef2: 00 0f add %cl,(%edi) 6ef4: 13 02 adc (%edx),%eax 6ef6: 00 00 add %al,(%eax) 6ef8: 2c 80 sub $0x80,%al 6efa: b6 02 mov $0x2,%dh 6efc: 00 00 add %al,(%eax) 6efe: 02 23 add (%ebx),%ah 6f00: 08 0f or %cl,(%edi) 6f02: cb lret 6f03: 01 00 add %eax,(%eax) 6f05: 00 2c 81 add %ch,(%ecx,%eax,4) 6f08: 9c pushf 6f09: 02 00 add (%eax),%al 6f0b: 00 02 add %al,(%edx) 6f0d: 23 10 and (%eax),%edx 6f0f: 0b 64 71 69 or 0x69(%ecx,%esi,2),%esp 6f13: 5f pop %edi 6f14: 76 61 jbe 6f77 <.debug_info+0x6f77> 6f16: 6c insb (%dx),%es:(%edi) 6f17: 69 64 00 2c 82 9c 02 imul $0x29c82,0x2c(%eax,%eax,1),%esp 6f1e: 00 6f1f: 00 02 add %al,(%edx) 6f21: 23 14 00 and (%eax,%eax,1),%edx 6f24: 0e push %cs 6f25: 12 71 00 adc 0x0(%ecx),%dh 6f28: 00 66 73 add %ah,0x73(%esi) 6f2b: 5f pop %edi 6f2c: 64 69 73 6b 5f 71 75 imul $0x6f75715f,%fs:0x6b(%ebx),%esi 6f33: 6f 6f34: 74 61 je 6f97 <.debug_info+0x6f97> 6f36: 00 70 2d add %dh,0x2d(%eax) 6f39: 32 0b xor (%ebx),%cl 6f3b: 64 fs 6f3c: 5f pop %edi 6f3d: 76 65 jbe 6fa4 <.debug_info+0x6fa4> 6f3f: 72 73 jb 6fb4 <.debug_info+0x6fb4> 6f41: 69 6f 6e 00 2d 33 30 imul $0x30332d00,0x6e(%edi),%ebp 6f48: 02 00 add (%eax),%al 6f4a: 00 02 add %al,(%edx) 6f4c: 23 00 and (%eax),%eax 6f4e: 0b 64 5f 66 or 0x66(%edi,%ebx,2),%esp 6f52: 6c insb (%dx),%es:(%edi) 6f53: 61 popa 6f54: 67 73 00 addr16 jae 6f57 <.debug_info+0x6f57> 6f57: 2d 34 30 02 00 sub $0x23034,%eax 6f5c: 00 02 add %al,(%edx) 6f5e: 23 01 and (%ecx),%eax 6f60: 0b 64 5f 66 or 0x66(%edi,%ebx,2),%esp 6f64: 69 65 6c 64 6d 61 73 imul $0x73616d64,0x6c(%ebp),%esp 6f6b: 6b 00 2d imul $0x2d,(%eax),%eax 6f6e: 35 82 02 00 00 xor $0x282,%eax 6f73: 02 23 add (%ebx),%ah 6f75: 02 0b add (%ebx),%cl 6f77: 64 fs 6f78: 5f pop %edi 6f79: 69 64 00 2d 36 9c 02 imul $0x29c36,0x2d(%eax,%eax,1),%esp 6f80: 00 6f81: 00 02 add %al,(%edx) 6f83: 23 04 0b and (%ebx,%ecx,1),%eax 6f86: 64 fs 6f87: 5f pop %edi 6f88: 62 6c 6b 5f bound %ebp,0x5f(%ebx,%ebp,2) 6f8c: 68 61 72 64 6c push $0x6c647261 6f91: 69 6d 69 74 00 2d 37 imul $0x372d0074,0x69(%ebp),%ebp 6f98: b6 02 mov $0x2,%dh 6f9a: 00 00 add %al,(%eax) 6f9c: 02 23 add (%ebx),%ah 6f9e: 08 0b or %cl,(%ebx) 6fa0: 64 fs 6fa1: 5f pop %edi 6fa2: 62 6c 6b 5f bound %ebp,0x5f(%ebx,%ebp,2) 6fa6: 73 6f jae 7017 <.debug_info+0x7017> 6fa8: 66 data16 6fa9: 74 6c je 7017 <.debug_info+0x7017> 6fab: 69 6d 69 74 00 2d 38 imul $0x382d0074,0x69(%ebp),%ebp 6fb2: b6 02 mov $0x2,%dh 6fb4: 00 00 add %al,(%eax) 6fb6: 02 23 add (%ebx),%ah 6fb8: 10 0b adc %cl,(%ebx) 6fba: 64 fs 6fbb: 5f pop %edi 6fbc: 69 6e 6f 5f 68 61 72 imul $0x7261685f,0x6f(%esi),%ebp 6fc3: 64 fs 6fc4: 6c insb (%dx),%es:(%edi) 6fc5: 69 6d 69 74 00 2d 39 imul $0x392d0074,0x69(%ebp),%ebp 6fcc: b6 02 mov $0x2,%dh 6fce: 00 00 add %al,(%eax) 6fd0: 02 23 add (%ebx),%ah 6fd2: 18 0b sbb %cl,(%ebx) 6fd4: 64 fs 6fd5: 5f pop %edi 6fd6: 69 6e 6f 5f 73 6f 66 imul $0x666f735f,0x6f(%esi),%ebp 6fdd: 74 6c je 704b <.debug_info+0x704b> 6fdf: 69 6d 69 74 00 2d 3a imul $0x3a2d0074,0x69(%ebp),%ebp 6fe6: b6 02 mov $0x2,%dh 6fe8: 00 00 add %al,(%eax) 6fea: 02 23 add (%ebx),%ah 6fec: 20 0b and %cl,(%ebx) 6fee: 64 fs 6fef: 5f pop %edi 6ff0: 62 63 6f bound %esp,0x6f(%ebx) 6ff3: 75 6e jne 7063 <.debug_info+0x7063> 6ff5: 74 00 je 6ff7 <.debug_info+0x6ff7> 6ff7: 2d 3b b6 02 00 sub $0x2b63b,%eax 6ffc: 00 02 add %al,(%edx) 6ffe: 23 28 and (%eax),%ebp 7000: 0b 64 5f 69 or 0x69(%edi,%ebx,2),%esp 7004: 63 6f 75 arpl %bp,0x75(%edi) 7007: 6e outsb %ds:(%esi),(%dx) 7008: 74 00 je 700a <.debug_info+0x700a> 700a: 2d 3c b6 02 00 sub $0x2b63c,%eax 700f: 00 02 add %al,(%edx) 7011: 23 30 and (%eax),%esi 7013: 0b 64 5f 69 or 0x69(%edi,%ebx,2),%esp 7017: 74 69 je 7082 <.debug_info+0x7082> 7019: 6d insl (%dx),%es:(%edi) 701a: 65 gs 701b: 72 00 jb 701d <.debug_info+0x701d> 701d: 2d 3d 8f 02 00 sub $0x28f3d,%eax 7022: 00 02 add %al,(%edx) 7024: 23 38 and (%eax),%edi 7026: 0b 64 5f 62 or 0x62(%edi,%ebx,2),%esp 702a: 74 69 je 7095 <.debug_info+0x7095> 702c: 6d insl (%dx),%es:(%edi) 702d: 65 gs 702e: 72 00 jb 7030 <.debug_info+0x7030> 7030: 2d 3f 8f 02 00 sub $0x28f3f,%eax 7035: 00 02 add %al,(%edx) 7037: 23 3c 0b and (%ebx,%ecx,1),%edi 703a: 64 fs 703b: 5f pop %edi 703c: 69 77 61 72 6e 73 00 imul $0x736e72,0x61(%edi),%esi 7043: 2d 40 82 02 00 sub $0x28240,%eax 7048: 00 02 add %al,(%edx) 704a: 23 40 0b and 0xb(%eax),%eax 704d: 64 fs 704e: 5f pop %edi 704f: 62 77 61 bound %esi,0x61(%edi) 7052: 72 6e jb 70c2 <.debug_info+0x70c2> 7054: 73 00 jae 7056 <.debug_info+0x7056> 7056: 2d 41 82 02 00 sub $0x28241,%eax 705b: 00 02 add %al,(%edx) 705d: 23 42 0b and 0xb(%edx),%eax 7060: 64 fs 7061: 5f pop %edi 7062: 70 61 jo 70c5 <.debug_info+0x70c5> 7064: 64 64 69 6e 67 32 00 imul $0x422d0032,%fs:0x67(%esi),%ebp 706b: 2d 42 706d: 8f 02 popl (%edx) 706f: 00 00 add %al,(%eax) 7071: 02 23 add (%ebx),%ah 7073: 44 inc %esp 7074: 0b 64 5f 72 or 0x72(%edi,%ebx,2),%esp 7078: 74 62 je 70dc <.debug_info+0x70dc> 707a: 5f pop %edi 707b: 68 61 72 64 6c push $0x6c647261 7080: 69 6d 69 74 00 2d 43 imul $0x432d0074,0x69(%ebp),%ebp 7087: b6 02 mov $0x2,%dh 7089: 00 00 add %al,(%eax) 708b: 02 23 add (%ebx),%ah 708d: 48 dec %eax 708e: 0b 64 5f 72 or 0x72(%edi,%ebx,2),%esp 7092: 74 62 je 70f6 <.debug_info+0x70f6> 7094: 5f pop %edi 7095: 73 6f jae 7106 <.debug_info+0x7106> 7097: 66 data16 7098: 74 6c je 7106 <.debug_info+0x7106> 709a: 69 6d 69 74 00 2d 44 imul $0x442d0074,0x69(%ebp),%ebp 70a1: b6 02 mov $0x2,%dh 70a3: 00 00 add %al,(%eax) 70a5: 02 23 add (%ebx),%ah 70a7: 50 push %eax 70a8: 0b 64 5f 72 or 0x72(%edi,%ebx,2),%esp 70ac: 74 62 je 7110 <.debug_info+0x7110> 70ae: 63 6f 75 arpl %bp,0x75(%edi) 70b1: 6e outsb %ds:(%esi),(%dx) 70b2: 74 00 je 70b4 <.debug_info+0x70b4> 70b4: 2d 45 b6 02 00 sub $0x2b645,%eax 70b9: 00 02 add %al,(%edx) 70bb: 23 58 0b and 0xb(%eax),%ebx 70be: 64 fs 70bf: 5f pop %edi 70c0: 72 74 jb 7136 <.debug_info+0x7136> 70c2: 62 74 69 6d bound %esi,0x6d(%ecx,%ebp,2) 70c6: 65 gs 70c7: 72 00 jb 70c9 <.debug_info+0x70c9> 70c9: 2d 46 8f 02 00 sub $0x28f46,%eax 70ce: 00 02 add %al,(%edx) 70d0: 23 60 0b and 0xb(%eax),%esp 70d3: 64 fs 70d4: 5f pop %edi 70d5: 72 74 jb 714b <.debug_info+0x714b> 70d7: 62 77 61 bound %esi,0x61(%edi) 70da: 72 6e jb 714a <.debug_info+0x714a> 70dc: 73 00 jae 70de <.debug_info+0x70de> 70de: 2d 47 82 02 00 sub $0x28247,%eax 70e3: 00 02 add %al,(%edx) 70e5: 23 64 0b 64 and 0x64(%ebx,%ecx,1),%esp 70e9: 5f pop %edi 70ea: 70 61 jo 714d <.debug_info+0x714d> 70ec: 64 64 69 6e 67 33 00 imul $0x482d0033,%fs:0x67(%esi),%ebp 70f3: 2d 48 70f5: 68 02 00 00 02 push $0x2000002 70fa: 23 66 0b and 0xb(%esi),%esp 70fd: 64 fs 70fe: 5f pop %edi 70ff: 70 61 jo 7162 <.debug_info+0x7162> 7101: 64 64 69 6e 67 34 00 imul $0x492d0034,%fs:0x67(%esi),%ebp 7108: 2d 49 710a: 3a 0a cmp (%edx),%cl 710c: 00 00 add %al,(%eax) 710e: 02 23 add (%ebx),%ah 7110: 68 00 0e 65 71 push $0x71650e00 7115: 00 00 add %al,(%eax) 7117: 66 data16 7118: 73 5f jae 7179 <.debug_info+0x7179> 711a: 71 66 jno 7182 <.debug_info+0x7182> 711c: 69 6c 65 73 74 61 74 imul $0x746174,0x73(%ebp),%ebp 7123: 00 7124: 14 2d adc $0x2d,%al 7126: 89 0b mov %ecx,(%ebx) 7128: 71 66 jno 7190 <.debug_info+0x7190> 712a: 73 5f jae 718b <.debug_info+0x718b> 712c: 69 6e 6f 00 2d 8a b6 imul $0xb68a2d00,0x6f(%esi),%ebp 7133: 02 00 add (%eax),%al 7135: 00 02 add %al,(%edx) 7137: 23 00 and (%eax),%eax 7139: 0b 71 66 or 0x66(%ecx),%esi 713c: 73 5f jae 719d <.debug_info+0x719d> 713e: 6e outsb %ds:(%esi),(%dx) 713f: 62 6c 6b 73 bound %ebp,0x73(%ebx,%ebp,2) 7143: 00 2d 8b b6 02 00 add %ch,0x2b68b 7149: 00 02 add %al,(%edx) 714b: 23 08 and (%eax),%ecx 714d: 0b 71 66 or 0x66(%ecx),%esi 7150: 73 5f jae 71b1 <.debug_info+0x71b1> 7152: 6e outsb %ds:(%esi),(%dx) 7153: 65 gs 7154: 78 74 js 71ca <.debug_info+0x71ca> 7156: 65 6e outsb %gs:(%esi),(%dx) 7158: 74 73 je 71cd <.debug_info+0x71cd> 715a: 00 2d 8c 9c 02 00 add %ch,0x29c8c 7160: 00 02 add %al,(%edx) 7162: 23 10 and (%eax),%edx 7164: 00 09 add %cl,(%ecx) 7166: 66 data16 7167: 73 5f jae 71c8 <.debug_info+0x71c8> 7169: 71 66 jno 71d1 <.debug_info+0x71d1> 716b: 69 6c 65 73 74 61 74 imul $0x5f746174,0x73(%ebp),%ebp 7172: 5f 7173: 74 00 je 7175 <.debug_info+0x7175> 7175: 2d 8d 12 71 00 sub $0x71128d,%eax 717a: 00 0e add %cl,(%esi) 717c: 84 72 00 test %dh,0x0(%edx) 717f: 00 66 73 add %ah,0x73(%esi) 7182: 5f pop %edi 7183: 71 75 jno 71fa <.debug_info+0x71fa> 7185: 6f outsl %ds:(%esi),(%dx) 7186: 74 61 je 71e9 <.debug_info+0x71e9> 7188: 5f pop %edi 7189: 73 74 jae 71ff <.debug_info+0x71ff> 718b: 61 popa 718c: 74 00 je 718e <.debug_info+0x718e> 718e: 44 inc %esp 718f: 2d 8f 0b 71 73 sub $0x73710b8f,%eax 7194: 5f pop %edi 7195: 76 65 jbe 71fc <.debug_info+0x71fc> 7197: 72 73 jb 720c <.debug_info+0x720c> 7199: 69 6f 6e 00 2d 90 30 imul $0x30902d00,0x6e(%edi),%ebp 71a0: 02 00 add (%eax),%al 71a2: 00 02 add %al,(%edx) 71a4: 23 00 and (%eax),%eax 71a6: 0b 71 73 or 0x73(%ecx),%esi 71a9: 5f pop %edi 71aa: 66 data16 71ab: 6c insb (%dx),%es:(%edi) 71ac: 61 popa 71ad: 67 73 00 addr16 jae 71b0 <.debug_info+0x71b0> 71b0: 2d 91 82 02 00 sub $0x28291,%eax 71b5: 00 02 add %al,(%edx) 71b7: 23 02 and (%edx),%eax 71b9: 0b 71 73 or 0x73(%ecx),%esi 71bc: 5f pop %edi 71bd: 70 61 jo 7220 <.debug_info+0x7220> 71bf: 64 00 2d 92 30 02 00 add %ch,%fs:0x23092 71c6: 00 02 add %al,(%edx) 71c8: 23 04 0b and (%ebx,%ecx,1),%eax 71cb: 71 73 jno 7240 <.debug_info+0x7240> 71cd: 5f pop %edi 71ce: 75 71 jne 7241 <.debug_info+0x7241> 71d0: 75 6f jne 7241 <.debug_info+0x7241> 71d2: 74 61 je 7235 <.debug_info+0x7235> 71d4: 00 2d 93 65 71 00 add %ch,0x716593 71da: 00 02 add %al,(%edx) 71dc: 23 08 and (%eax),%ecx 71de: 0b 71 73 or 0x73(%ecx),%esi 71e1: 5f pop %edi 71e2: 67 71 75 addr16 jno 725a <.debug_info+0x725a> 71e5: 6f outsl %ds:(%esi),(%dx) 71e6: 74 61 je 7249 <.debug_info+0x7249> 71e8: 00 2d 94 65 71 00 add %ch,0x716594 71ee: 00 02 add %al,(%edx) 71f0: 23 1c 0b and (%ebx,%ecx,1),%ebx 71f3: 71 73 jno 7268 <.debug_info+0x7268> 71f5: 5f pop %edi 71f6: 69 6e 63 6f 72 65 64 imul $0x6465726f,0x63(%esi),%ebp 71fd: 71 73 jno 7272 <.debug_info+0x7272> 71ff: 00 2d 95 9c 02 00 add %ch,0x29c95 7205: 00 02 add %al,(%edx) 7207: 23 30 and (%eax),%esi 7209: 0b 71 73 or 0x73(%ecx),%esi 720c: 5f pop %edi 720d: 62 74 69 6d bound %esi,0x6d(%ecx,%ebp,2) 7211: 65 gs 7212: 6c insb (%dx),%es:(%edi) 7213: 69 6d 69 74 00 2d 96 imul $0x962d0074,0x69(%ebp),%ebp 721a: 8f 02 popl (%edx) 721c: 00 00 add %al,(%eax) 721e: 02 23 add (%ebx),%ah 7220: 34 0b xor $0xb,%al 7222: 71 73 jno 7297 <.debug_info+0x7297> 7224: 5f pop %edi 7225: 69 74 69 6d 65 6c 69 imul $0x6d696c65,0x6d(%ecx,%ebp,2),%esi 722c: 6d 722d: 69 74 00 2d 97 8f 02 imul $0x28f97,0x2d(%eax,%eax,1),%esi 7234: 00 7235: 00 02 add %al,(%edx) 7237: 23 38 and (%eax),%edi 7239: 0b 71 73 or 0x73(%ecx),%esi 723c: 5f pop %edi 723d: 72 74 jb 72b3 <.debug_info+0x72b3> 723f: 62 74 69 6d bound %esi,0x6d(%ecx,%ebp,2) 7243: 65 gs 7244: 6c insb (%dx),%es:(%edi) 7245: 69 6d 69 74 00 2d 98 imul $0x982d0074,0x69(%ebp),%ebp 724c: 8f 02 popl (%edx) 724e: 00 00 add %al,(%eax) 7250: 02 23 add (%ebx),%ah 7252: 3c 0b cmp $0xb,%al 7254: 71 73 jno 72c9 <.debug_info+0x72c9> 7256: 5f pop %edi 7257: 62 77 61 bound %esi,0x61(%edi) 725a: 72 6e jb 72ca <.debug_info+0x72ca> 725c: 6c insb (%dx),%es:(%edi) 725d: 69 6d 69 74 00 2d 99 imul $0x992d0074,0x69(%ebp),%ebp 7264: 82 (bad) 7265: 02 00 add (%eax),%al 7267: 00 02 add %al,(%edx) 7269: 23 40 0b and 0xb(%eax),%eax 726c: 71 73 jno 72e1 <.debug_info+0x72e1> 726e: 5f pop %edi 726f: 69 77 61 72 6e 6c 69 imul $0x696c6e72,0x61(%edi),%esi 7276: 6d insl (%dx),%es:(%edi) 7277: 69 74 00 2d 9a 82 02 imul $0x2829a,0x2d(%eax,%eax,1),%esi 727e: 00 727f: 00 02 add %al,(%edx) 7281: 23 42 00 and 0x0(%edx),%eax 7284: 2c 76 sub $0x76,%al 7286: 31 5f 6d xor %ebx,0x6d(%edi) 7289: 65 gs 728a: 6d insl (%dx),%es:(%edi) 728b: 5f pop %edi 728c: 64 fs 728d: 71 69 jno 72f8 <.debug_info+0x72f8> 728f: 6e outsb %ds:(%esi),(%dx) 7290: 66 6f outsw %ds:(%esi),(%dx) 7292: 00 00 add %al,(%eax) 7294: 2e cs 7295: 15 0e f2 72 00 adc $0x72f20e,%eax 729a: 00 76 32 add %dh,0x32(%esi) 729d: 5f pop %edi 729e: 6d insl (%dx),%es:(%edi) 729f: 65 gs 72a0: 6d insl (%dx),%es:(%edi) 72a1: 5f pop %edi 72a2: 64 fs 72a3: 71 69 jno 730e <.debug_info+0x730e> 72a5: 6e outsb %ds:(%esi),(%dx) 72a6: 66 6f outsw %ds:(%esi),(%dx) 72a8: 00 0c 2f add %cl,(%edi,%ebp,1) 72ab: 14 0b adc $0xb,%al 72ad: 64 fs 72ae: 71 69 jno 7319 <.debug_info+0x7319> 72b0: 5f pop %edi 72b1: 62 6c 6f 63 bound %ebp,0x63(%edi,%ebp,2) 72b5: 6b 73 00 2f imul $0x2f,0x0(%ebx),%esi 72b9: 15 3b 01 00 00 adc $0x13b,%eax 72be: 02 23 add (%ebx),%ah 72c0: 00 0b add %cl,(%ebx) 72c2: 64 fs 72c3: 71 69 jno 732e <.debug_info+0x732e> 72c5: 5f pop %edi 72c6: 66 data16 72c7: 72 65 jb 732e <.debug_info+0x732e> 72c9: 65 gs 72ca: 5f pop %edi 72cb: 62 6c 6b 00 bound %ebp,0x0(%ebx,%ebp,2) 72cf: 2f das 72d0: 16 push %ss 72d1: 3b 01 cmp (%ecx),%eax 72d3: 00 00 add %al,(%eax) 72d5: 02 23 add (%ebx),%ah 72d7: 04 0b add $0xb,%al 72d9: 64 fs 72da: 71 69 jno 7345 <.debug_info+0x7345> 72dc: 5f pop %edi 72dd: 66 data16 72de: 72 65 jb 7345 <.debug_info+0x7345> 72e0: 65 gs 72e1: 5f pop %edi 72e2: 65 6e outsb %gs:(%esi),(%dx) 72e4: 74 72 je 7358 <.debug_info+0x7358> 72e6: 79 00 jns 72e8 <.debug_info+0x72e8> 72e8: 2f das 72e9: 17 pop %ss 72ea: 3b 01 cmp (%ecx),%eax 72ec: 00 00 add %al,(%eax) 72ee: 02 23 add (%ebx),%ah 72f0: 08 00 or %al,(%eax) 72f2: 0e push %cs 72f3: 75 73 jne 7368 <.debug_info+0x7368> 72f5: 00 00 add %al,(%eax) 72f7: 6d insl (%dx),%es:(%edi) 72f8: 65 gs 72f9: 6d insl (%dx),%es:(%edi) 72fa: 5f pop %edi 72fb: 64 fs 72fc: 71 62 jno 7360 <.debug_info+0x7360> 72fe: 6c insb (%dx),%es:(%edi) 72ff: 6b 00 24 imul $0x24,(%eax),%eax 7302: 2c 97 sub $0x97,%al 7304: 0f e9 02 psubsw (%edx),%mm0 7307: 00 00 add %al,(%eax) 7309: 2c 98 sub $0x98,%al 730b: 9c pushf 730c: 02 00 add (%eax),%al 730e: 00 02 add %al,(%edx) 7310: 23 00 and (%eax),%eax 7312: 0f 92 01 setb (%ecx) 7315: 00 00 add %al,(%eax) 7317: 2c 99 sub $0x99,%al 7319: 9c pushf 731a: 02 00 add (%eax),%al 731c: 00 02 add %al,(%edx) 731e: 23 04 0f and (%edi,%ecx,1),%eax 7321: 09 00 or %eax,(%eax) 7323: 00 00 add %al,(%eax) 7325: 2c 9a sub $0x9a,%al 7327: 2e 6e outsb %cs:(%esi),(%dx) 7329: 00 00 add %al,(%eax) 732b: 02 23 add (%ebx),%ah 732d: 08 0f or %cl,(%edi) 732f: f6 01 00 testb $0x0,(%ecx) 7332: 00 2c 9b add %ch,(%ebx,%ebx,4) 7335: 9c pushf 7336: 02 00 add (%eax),%al 7338: 00 02 add %al,(%edx) 733a: 23 10 and (%eax),%edx 733c: 0f f8 02 psubb (%edx),%mm0 733f: 00 00 add %al,(%eax) 7341: 2c 9c sub $0x9c,%al 7343: 9c pushf 7344: 02 00 add (%eax),%al 7346: 00 02 add %al,(%edx) 7348: 23 14 0f and (%edi,%ecx,1),%edx 734b: e0 00 loopne 734d <.debug_info+0x734d> 734d: 00 00 add %al,(%eax) 734f: 2c 9d sub $0x9d,%al 7351: 9c pushf 7352: 02 00 add (%eax),%al 7354: 00 02 add %al,(%edx) 7356: 23 18 and (%eax),%ebx 7358: 0f 4e 03 cmovle (%ebx),%eax 735b: 00 00 add %al,(%eax) 735d: 2c 9e sub $0x9e,%al 735f: d2 03 rolb %cl,(%ebx) 7361: 00 00 add %al,(%eax) 7363: 02 23 add (%ebx),%ah 7365: 1c 0f sbb $0xf,%al 7367: 2e 02 00 add %cs:(%eax),%al 736a: 00 2c 9f add %ch,(%edi,%ebx,4) 736d: d2 03 rolb %cl,(%ebx) 736f: 00 00 add %al,(%eax) 7371: 02 23 add (%ebx),%ah 7373: 20 00 and %al,(%eax) 7375: 25 96 73 00 00 and $0x7396,%eax 737a: 0c 2c or $0x2c,%al 737c: b0 24 mov $0x24,%al 737e: 76 31 jbe 73b1 <.debug_info+0x73b1> 7380: 5f pop %edi 7381: 69 00 2c ae 84 72 imul $0x7284ae2c,(%eax),%eax 7387: 00 00 add %al,(%eax) 7389: 24 76 and $0x76,%al 738b: 32 5f 69 xor 0x69(%edi),%bl 738e: 00 2c af add %ch,(%edi,%ebp,4) 7391: 96 xchg %eax,%esi 7392: 72 00 jb 7394 <.debug_info+0x7394> 7394: 00 00 add %al,(%eax) 7396: 0e push %cs 7397: 0e push %cs 7398: 74 00 je 739a <.debug_info+0x739a> 739a: 00 6d 65 add %ch,0x65(%ebp) 739d: 6d insl (%dx),%es:(%edi) 739e: 5f pop %edi 739f: 64 fs 73a0: 71 69 jno 740b <.debug_info+0x740b> 73a2: 6e outsb %ds:(%esi),(%dx) 73a3: 66 6f outsw %ds:(%esi),(%dx) 73a5: 00 24 2c add %ah,(%esp,%ebp,1) 73a8: a7 cmpsl %es:(%edi),%ds:(%esi) 73a9: 0b 64 71 69 or 0x69(%ecx,%esi,2),%esp 73ad: 5f pop %edi 73ae: 66 6f outsw %ds:(%esi),(%dx) 73b0: 72 6d jb 741f <.debug_info+0x741f> 73b2: 61 popa 73b3: 74 00 je 73b5 <.debug_info+0x73b5> 73b5: 2c a8 sub $0xa8,%al 73b7: 77 74 ja 742d <.debug_info+0x742d> 73b9: 00 00 add %al,(%eax) 73bb: 02 23 add (%ebx),%ah 73bd: 00 0b add %cl,(%ebx) 73bf: 64 fs 73c0: 71 69 jno 742b <.debug_info+0x742b> 73c2: 5f pop %edi 73c3: 64 69 72 74 79 5f 6c imul $0x696c5f79,%fs:0x74(%edx),%esi 73ca: 69 73cb: 73 74 jae 7441 <.debug_info+0x7441> 73cd: 00 2c a9 add %ch,(%ecx,%ebp,4) 73d0: c8 1d 00 00 enter $0x1d,$0x0 73d4: 02 23 add (%ebx),%ah 73d6: 04 0f add $0xf,%al 73d8: cb lret 73d9: 01 00 add %eax,(%eax) 73db: 00 2c aa add %ch,(%edx,%ebp,4) 73de: 98 cwtl 73df: 00 00 add %al,(%eax) 73e1: 00 02 add %al,(%edx) 73e3: 23 0c 0f and (%edi,%ecx,1),%ecx 73e6: 10 03 adc %al,(%ebx) 73e8: 00 00 add %al,(%eax) 73ea: 2c ab sub $0xab,%al 73ec: 3b 01 cmp (%ecx),%eax 73ee: 00 00 add %al,(%eax) 73f0: 02 23 add (%ebx),%ah 73f2: 10 0f adc %cl,(%edi) 73f4: 13 02 adc (%edx),%eax 73f6: 00 00 add %al,(%eax) 73f8: 2c ac sub $0xac,%al 73fa: 3b 01 cmp (%ecx),%eax 73fc: 00 00 add %al,(%eax) 73fe: 02 23 add (%ebx),%ah 7400: 14 0b adc $0xb,%al 7402: 75 00 jne 7404 <.debug_info+0x7404> 7404: 2c b0 sub $0xb0,%al 7406: 75 73 jne 747b <.debug_info+0x747b> 7408: 00 00 add %al,(%eax) 740a: 02 23 add (%ebx),%ah 740c: 18 00 sbb %al,(%eax) 740e: 0e push %cs 740f: 77 74 ja 7485 <.debug_info+0x7485> 7411: 00 00 add %al,(%eax) 7413: 71 75 jno 748a <.debug_info+0x748a> 7415: 6f outsl %ds:(%esi),(%dx) 7416: 74 61 je 7479 <.debug_info+0x7479> 7418: 5f pop %edi 7419: 66 6f outsw %ds:(%esi),(%dx) 741b: 72 6d jb 748a <.debug_info+0x748a> 741d: 61 popa 741e: 74 5f je 747f <.debug_info+0x747f> 7420: 74 79 je 749b <.debug_info+0x749b> 7422: 70 65 jo 7489 <.debug_info+0x7489> 7424: 00 10 add %dl,(%eax) 7426: 2c a5 sub $0xa5,%al 7428: 12 71 66 adc 0x66(%ecx),%dh 742b: 5f pop %edi 742c: 66 6d insw (%dx),%es:(%edi) 742e: 74 5f je 748f <.debug_info+0x748f> 7430: 69 64 00 2c 15 01 7a imul $0x7a0115,0x2c(%eax,%eax,1),%esp 7437: 00 7438: 00 00 add %al,(%eax) 743a: 02 23 add (%ebx),%ah 743c: 00 12 add %dl,(%edx) 743e: 71 66 jno 74a6 <.debug_info+0x74a6> 7440: 5f pop %edi 7441: 6f outsl %ds:(%esi),(%dx) 7442: 70 73 jo 74b7 <.debug_info+0x74b7> 7444: 00 2c 16 add %ch,(%esi,%edx,1) 7447: 01 18 add %ebx,(%eax) 7449: 7a 00 jp 744b <.debug_info+0x744b> 744b: 00 02 add %al,(%edx) 744d: 23 04 12 and (%edx,%edx,1),%eax 7450: 71 66 jno 74b8 <.debug_info+0x74b8> 7452: 5f pop %edi 7453: 6f outsl %ds:(%esi),(%dx) 7454: 77 6e ja 74c4 <.debug_info+0x74c4> 7456: 65 gs 7457: 72 00 jb 7459 <.debug_info+0x7459> 7459: 2c 17 sub $0x17,%al 745b: 01 3a add %edi,(%edx) 745d: 5a pop %edx 745e: 00 00 add %al,(%eax) 7460: 02 23 add (%ebx),%ah 7462: 08 12 or %dl,(%edx) 7464: 71 66 jno 74cc <.debug_info+0x74cc> 7466: 5f pop %edi 7467: 6e outsb %ds:(%esi),(%dx) 7468: 65 gs 7469: 78 74 js 74df <.debug_info+0x74df> 746b: 00 2c 18 add %ch,(%eax,%ebx,1) 746e: 01 77 74 add %esi,0x74(%edi) 7471: 00 00 add %al,(%eax) 7473: 02 23 add (%ebx),%ah 7475: 0c 00 or $0x0,%al 7477: 06 push %es 7478: 04 0e add $0xe,%al 747a: 74 00 je 747c <.debug_info+0x747c> 747c: 00 0e add %cl,(%esi) 747e: 7b 75 jnp 74f5 <.debug_info+0x74f5> 7480: 00 00 add %al,(%eax) 7482: 64 fs 7483: 71 75 jno 74fa <.debug_info+0x74fa> 7485: 6f outsl %ds:(%esi),(%dx) 7486: 74 00 je 7488 <.debug_info+0x7488> 7488: a0 2c d5 0b 64 mov 0x640bd52c,%al 748d: 71 5f jno 74ee <.debug_info+0x74ee> 748f: 68 61 73 68 00 push $0x687361 7494: 2c d6 sub $0xd6,%al 7496: 24 1e and $0x1e,%al 7498: 00 00 add %al,(%eax) 749a: 02 23 add (%ebx),%ah 749c: 00 0b add %cl,(%ebx) 749e: 64 fs 749f: 71 5f jno 7500 <.debug_info+0x7500> 74a1: 69 6e 75 73 65 00 2c imul $0x2c006573,0x75(%esi),%ebp 74a8: d7 xlat %ds:(%ebx) 74a9: c8 1d 00 00 enter $0x1d,$0x0 74ad: 02 23 add (%ebx),%ah 74af: 08 0b or %cl,(%ebx) 74b1: 64 fs 74b2: 71 5f jno 7513 <.debug_info+0x7513> 74b4: 66 data16 74b5: 72 65 jb 751c <.debug_info+0x751c> 74b7: 65 00 2c d8 add %ch,%gs:(%eax,%ebx,8) 74bb: c8 1d 00 00 enter $0x1d,$0x0 74bf: 02 23 add (%ebx),%ah 74c1: 10 0b adc %cl,(%ebx) 74c3: 64 fs 74c4: 71 5f jno 7525 <.debug_info+0x7525> 74c6: 64 69 72 74 79 00 2c imul $0xd92c0079,%fs:0x74(%edx),%esi 74cd: d9 74ce: c8 1d 00 00 enter $0x1d,$0x0 74d2: 02 23 add (%ebx),%ah 74d4: 18 0b sbb %cl,(%ebx) 74d6: 64 fs 74d7: 71 5f jno 7538 <.debug_info+0x7538> 74d9: 6c insb (%dx),%es:(%edi) 74da: 6f outsl %ds:(%esi),(%dx) 74db: 63 6b 00 arpl %bp,0x0(%ebx) 74de: 2c da sub $0xda,%al 74e0: af scas %es:(%edi),%eax 74e1: 3c 00 cmp $0x0,%al 74e3: 00 02 add %al,(%edx) 74e5: 23 20 and (%eax),%esp 74e7: 0b 64 71 5f or 0x5f(%ecx,%esi,2),%esp 74eb: 63 6f 75 arpl %bp,0x75(%edi) 74ee: 6e outsb %ds:(%esi),(%dx) 74ef: 74 00 je 74f1 <.debug_info+0x74f1> 74f1: 2c db sub $0xdb,%al 74f3: a1 1f 00 00 02 mov 0x200001f,%eax 74f8: 23 48 0b and 0xb(%eax),%ecx 74fb: 64 fs 74fc: 71 5f jno 755d <.debug_info+0x755d> 74fe: 77 61 ja 7561 <.debug_info+0x7561> 7500: 69 74 5f 75 6e 75 73 imul $0x6573756e,0x75(%edi,%ebx,2),%esi 7507: 65 7508: 64 00 2c dc add %ch,%fs:(%esp,%ebx,8) 750c: 9d popf 750d: 21 00 and %eax,(%eax) 750f: 00 02 add %al,(%edx) 7511: 23 4c 0b 64 and 0x64(%ebx,%ecx,1),%ecx 7515: 71 5f jno 7576 <.debug_info+0x7576> 7517: 73 62 jae 757b <.debug_info+0x757b> 7519: 00 2c dd f1 6b 00 00 add %ch,0x6bf1(,%ebx,8) 7520: 02 23 add (%ebx),%ah 7522: 64 0b 64 71 5f or %fs:0x5f(%ecx,%esi,2),%esp 7527: 69 64 00 2c de 3b 01 imul $0x13bde,0x2c(%eax,%eax,1),%esp 752e: 00 752f: 00 02 add %al,(%edx) 7531: 23 68 0b and 0xb(%eax),%ebp 7534: 64 fs 7535: 71 5f jno 7596 <.debug_info+0x7596> 7537: 6f outsl %ds:(%esi),(%dx) 7538: 66 data16 7539: 66 data16 753a: 00 2c df add %ch,(%edi,%ebx,8) 753d: a7 cmpsl %es:(%edi),%ds:(%esi) 753e: 03 00 add (%eax),%eax 7540: 00 02 add %al,(%edx) 7542: 23 6c 0b 64 and 0x64(%ebx,%ecx,1),%ebp 7546: 71 5f jno 75a7 <.debug_info+0x75a7> 7548: 66 data16 7549: 6c insb (%dx),%es:(%edi) 754a: 61 popa 754b: 67 73 00 addr16 jae 754e <.debug_info+0x754e> 754e: 2c e0 sub $0xe0,%al 7550: 98 cwtl 7551: 00 00 add %al,(%eax) 7553: 00 02 add %al,(%edx) 7555: 23 74 0b 64 and 0x64(%ebx,%ecx,1),%esi 7559: 71 5f jno 75ba <.debug_info+0x75ba> 755b: 74 79 je 75d6 <.debug_info+0x75d6> 755d: 70 65 jo 75c4 <.debug_info+0x75c4> 755f: 00 2c e1 add %ch,(%ecx) 7562: 75 02 jne 7566 <.debug_info+0x7566> 7564: 00 00 add %al,(%eax) 7566: 02 23 add (%ebx),%ah 7568: 78 0b js 7575 <.debug_info+0x7575> 756a: 64 fs 756b: 71 5f jno 75cc <.debug_info+0x75cc> 756d: 64 fs 756e: 71 62 jno 75d2 <.debug_info+0x75d2> 7570: 00 2c e2 add %ch,(%edx) 7573: f2 72 00 repnz jb 7576 <.debug_info+0x7576> 7576: 00 02 add %al,(%edx) 7578: 23 7c 00 0e and 0xe(%eax,%eax,1),%edi 757c: 40 inc %eax 757d: 76 00 jbe 757f <.debug_info+0x757f> 757f: 00 71 75 add %dh,0x75(%ecx) 7582: 6f outsl %ds:(%esi),(%dx) 7583: 74 61 je 75e6 <.debug_info+0x75e6> 7585: 5f pop %edi 7586: 66 6f outsw %ds:(%esi),(%dx) 7588: 72 6d jb 75f7 <.debug_info+0x75f7> 758a: 61 popa 758b: 74 5f je 75ec <.debug_info+0x75ec> 758d: 6f outsl %ds:(%esi),(%dx) 758e: 70 73 jo 7603 <.debug_info+0x7603> 7590: 00 1c 2c add %bl,(%esp,%ebp,1) 7593: eb 0b jmp 75a0 <.debug_info+0x75a0> 7595: 63 68 65 arpl %bp,0x65(%eax) 7598: 63 6b 5f arpl %bp,0x5f(%ebx) 759b: 71 75 jno 7612 <.debug_info+0x7612> 759d: 6f outsl %ds:(%esi),(%dx) 759e: 74 61 je 7601 <.debug_info+0x7601> 75a0: 5f pop %edi 75a1: 66 69 6c 65 00 2c ec imul $0xec2c,0x0(%ebp),%bp 75a8: 55 push %ebp 75a9: 76 00 jbe 75ab <.debug_info+0x75ab> 75ab: 00 02 add %al,(%edx) 75ad: 23 00 and (%eax),%eax 75af: 0b 72 65 or 0x65(%edx),%esi 75b2: 61 popa 75b3: 64 fs 75b4: 5f pop %edi 75b5: 66 69 6c 65 5f 69 6e imul $0x6e69,0x5f(%ebp),%bp 75bc: 66 6f outsw %ds:(%esi),(%dx) 75be: 00 2c ed 55 76 00 00 add %ch,0x7655(,%ebp,8) 75c5: 02 23 add (%ebx),%ah 75c7: 04 0b add $0xb,%al 75c9: 77 72 ja 763d <.debug_info+0x763d> 75cb: 69 74 65 5f 66 69 6c imul $0x656c6966,0x5f(%ebp),%esi 75d2: 65 75d3: 5f pop %edi 75d4: 69 6e 66 6f 00 2c ee imul $0xee2c006f,0x66(%esi),%ebp 75db: 55 push %ebp 75dc: 76 00 jbe 75de <.debug_info+0x75de> 75de: 00 02 add %al,(%edx) 75e0: 23 08 and (%eax),%ecx 75e2: 0b 66 72 or 0x72(%esi),%esp 75e5: 65 gs 75e6: 65 gs 75e7: 5f pop %edi 75e8: 66 69 6c 65 5f 69 6e imul $0x6e69,0x5f(%ebp),%bp 75ef: 66 6f outsw %ds:(%esi),(%dx) 75f1: 00 2c ef add %ch,(%edi,%ebp,8) 75f4: 55 push %ebp 75f5: 76 00 jbe 75f7 <.debug_info+0x75f7> 75f7: 00 02 add %al,(%edx) 75f9: 23 0c 0b and (%ebx,%ecx,1),%ecx 75fc: 72 65 jb 7663 <.debug_info+0x7663> 75fe: 61 popa 75ff: 64 fs 7600: 5f pop %edi 7601: 64 fs 7602: 71 62 jno 7666 <.debug_info+0x7666> 7604: 6c insb (%dx),%es:(%edi) 7605: 6b 00 2c imul $0x2c,(%eax),%eax 7608: f0 71 76 lock jno 7681 <.debug_info+0x7681> 760b: 00 00 add %al,(%eax) 760d: 02 23 add (%ebx),%ah 760f: 10 0b adc %cl,(%ebx) 7611: 63 6f 6d arpl %bp,0x6d(%edi) 7614: 6d insl (%dx),%es:(%edi) 7615: 69 74 5f 64 71 62 6c imul $0x6b6c6271,0x64(%edi,%ebx,2),%esi 761c: 6b 761d: 00 2c f1 add %ch,(%ecx,%esi,8) 7620: 71 76 jno 7698 <.debug_info+0x7698> 7622: 00 00 add %al,(%eax) 7624: 02 23 add (%ebx),%ah 7626: 14 0b adc $0xb,%al 7628: 72 65 jb 768f <.debug_info+0x768f> 762a: 6c insb (%dx),%es:(%edi) 762b: 65 gs 762c: 61 popa 762d: 73 65 jae 7694 <.debug_info+0x7694> 762f: 5f pop %edi 7630: 64 fs 7631: 71 62 jno 7695 <.debug_info+0x7695> 7633: 6c insb (%dx),%es:(%edi) 7634: 6b 00 2c imul $0x2c,(%eax),%eax 7637: f2 71 76 repnz jno 76b0 <.debug_info+0x76b0> 763a: 00 00 add %al,(%eax) 763c: 02 23 add (%ebx),%ah 763e: 18 00 sbb %al,(%eax) 7640: 0c 55 or $0x55,%al 7642: 76 00 jbe 7644 <.debug_info+0x7644> 7644: 00 01 add %al,(%ecx) 7646: 7a 00 jp 7648 <.debug_info+0x7648> 7648: 00 00 add %al,(%eax) 764a: 08 f1 or %dh,%cl 764c: 6b 00 00 imul $0x0,(%eax),%eax 764f: 08 7a 00 or %bh,0x0(%edx) 7652: 00 00 add %al,(%eax) 7654: 00 06 add %al,(%esi) 7656: 04 40 add $0x40,%al 7658: 76 00 jbe 765a <.debug_info+0x765a> 765a: 00 0c 6b add %cl,(%ebx,%ebp,2) 765d: 76 00 jbe 765f <.debug_info+0x765f> 765f: 00 01 add %al,(%ecx) 7661: 7a 00 jp 7663 <.debug_info+0x7663> 7663: 00 00 add %al,(%eax) 7665: 08 6b 76 or %ch,0x76(%ebx) 7668: 00 00 add %al,(%eax) 766a: 00 06 add %al,(%esi) 766c: 04 7d add $0x7d,%al 766e: 74 00 je 7670 <.debug_info+0x7670> 7670: 00 06 add %al,(%esi) 7672: 04 5b add $0x5b,%al 7674: 76 00 jbe 7676 <.debug_info+0x7676> 7676: 00 0e add %cl,(%esi) 7678: 89 77 00 mov %esi,0x0(%edi) 767b: 00 64 71 75 add %ah,0x75(%ecx,%esi,2) 767f: 6f outsl %ds:(%esi),(%dx) 7680: 74 5f je 76e1 <.debug_info+0x76e1> 7682: 6f outsl %ds:(%esi),(%dx) 7683: 70 65 jo 76ea <.debug_info+0x76ea> 7685: 72 61 jb 76e8 <.debug_info+0x76e8> 7687: 74 69 je 76f2 <.debug_info+0x76f2> 7689: 6f outsl %ds:(%esi),(%dx) 768a: 6e outsb %ds:(%esi),(%dx) 768b: 73 00 jae 768d <.debug_info+0x768d> 768d: 30 2c f6 xor %ch,(%esi,%esi,8) 7690: 0b 69 6e or 0x6e(%ecx),%ebp 7693: 69 74 69 61 6c 69 7a imul $0x657a696c,0x61(%ecx,%ebp,2),%esi 769a: 65 769b: 00 2c f7 add %ch,(%edi,%esi,8) 769e: 9e sahf 769f: 77 00 ja 76a1 <.debug_info+0x76a1> 76a1: 00 02 add %al,(%edx) 76a3: 23 00 and (%eax),%eax 76a5: 0b 64 72 6f or 0x6f(%edx,%esi,2),%esp 76a9: 70 00 jo 76ab <.debug_info+0x76ab> 76ab: 2c f8 sub $0xf8,%al 76ad: b4 77 mov $0x77,%ah 76af: 00 00 add %al,(%eax) 76b1: 02 23 add (%ebx),%ah 76b3: 04 0b add $0xb,%al 76b5: 61 popa 76b6: 6c insb (%dx),%es:(%edi) 76b7: 6c insb (%dx),%es:(%edi) 76b8: 6f outsl %ds:(%esi),(%dx) 76b9: 63 5f 73 arpl %bx,0x73(%edi) 76bc: 70 61 jo 771f <.debug_info+0x771f> 76be: 63 65 00 arpl %sp,0x0(%ebp) 76c1: 2c f9 sub $0xf9,%al 76c3: d4 77 aam $0x77 76c5: 00 00 add %al,(%eax) 76c7: 02 23 add (%ebx),%ah 76c9: 08 0f or %cl,(%edi) 76cb: 47 inc %edi 76cc: 02 00 add (%eax),%al 76ce: 00 2c fa add %ch,(%edx,%edi,8) 76d1: fa cli 76d2: 77 00 ja 76d4 <.debug_info+0x76d4> 76d4: 00 02 add %al,(%edx) 76d6: 23 0c 0b and (%ebx,%ecx,1),%ecx 76d9: 66 data16 76da: 72 65 jb 7741 <.debug_info+0x7741> 76dc: 65 gs 76dd: 5f pop %edi 76de: 73 70 jae 7750 <.debug_info+0x7750> 76e0: 61 popa 76e1: 63 65 00 arpl %sp,0x0(%ebp) 76e4: 2c fb sub $0xfb,%al 76e6: 15 78 00 00 02 adc $0x2000078,%eax 76eb: 23 10 and (%eax),%edx 76ed: 0b 66 72 or 0x72(%esi),%esp 76f0: 65 gs 76f1: 65 gs 76f2: 5f pop %edi 76f3: 69 6e 6f 64 65 00 2c imul $0x2c006564,0x6f(%esi),%ebp 76fa: fc cld 76fb: fa cli 76fc: 77 00 ja 76fe <.debug_info+0x76fe> 76fe: 00 02 add %al,(%edx) 7700: 23 14 0b and (%ebx,%ecx,1),%edx 7703: 74 72 je 7777 <.debug_info+0x7777> 7705: 61 popa 7706: 6e outsb %ds:(%esi),(%dx) 7707: 73 66 jae 776f <.debug_info+0x776f> 7709: 65 gs 770a: 72 00 jb 770c <.debug_info+0x770c> 770c: 2c fd sub $0xfd,%al 770e: 30 78 00 xor %bh,0x0(%eax) 7711: 00 02 add %al,(%edx) 7713: 23 18 and (%eax),%ebx 7715: 0b 77 72 or 0x72(%edi),%esi 7718: 69 74 65 5f 64 71 75 imul $0x6f757164,0x5f(%ebp),%esi 771f: 6f 7720: 74 00 je 7722 <.debug_info+0x7722> 7722: 2c fe sub $0xfe,%al 7724: 71 76 jno 779c <.debug_info+0x779c> 7726: 00 00 add %al,(%eax) 7728: 02 23 add (%ebx),%ah 772a: 1c 0b sbb $0xb,%al 772c: 61 popa 772d: 63 71 75 arpl %si,0x75(%ecx) 7730: 69 72 65 5f 64 71 75 imul $0x7571645f,0x65(%edx),%esi 7737: 6f outsl %ds:(%esi),(%dx) 7738: 74 00 je 773a <.debug_info+0x773a> 773a: 2c ff sub $0xff,%al 773c: 71 76 jno 77b4 <.debug_info+0x77b4> 773e: 00 00 add %al,(%eax) 7740: 02 23 add (%ebx),%ah 7742: 20 12 and %dl,(%edx) 7744: 72 65 jb 77ab <.debug_info+0x77ab> 7746: 6c insb (%dx),%es:(%edi) 7747: 65 gs 7748: 61 popa 7749: 73 65 jae 77b0 <.debug_info+0x77b0> 774b: 5f pop %edi 774c: 64 fs 774d: 71 75 jno 77c4 <.debug_info+0x77c4> 774f: 6f outsl %ds:(%esi),(%dx) 7750: 74 00 je 7752 <.debug_info+0x7752> 7752: 2c 00 sub $0x0,%al 7754: 01 71 76 add %esi,0x76(%ecx) 7757: 00 00 add %al,(%eax) 7759: 02 23 add (%ebx),%ah 775b: 24 12 and $0x12,%al 775d: 6d insl (%dx),%es:(%edi) 775e: 61 popa 775f: 72 6b jb 77cc <.debug_info+0x77cc> 7761: 5f pop %edi 7762: 64 69 72 74 79 00 2c imul $0x12c0079,%fs:0x74(%edx),%esi 7769: 01 776a: 01 71 76 add %esi,0x76(%ecx) 776d: 00 00 add %al,(%eax) 776f: 02 23 add (%ebx),%ah 7771: 28 12 sub %dl,(%edx) 7773: 77 72 ja 77e7 <.debug_info+0x77e7> 7775: 69 74 65 5f 69 6e 66 imul $0x6f666e69,0x5f(%ebp),%esi 777c: 6f 777d: 00 2c 02 add %ch,(%edx,%eax,1) 7780: 01 55 76 add %edx,0x76(%ebp) 7783: 00 00 add %al,(%eax) 7785: 02 23 add (%ebx),%ah 7787: 2c 00 sub $0x0,%al 7789: 0c 9e or $0x9e,%al 778b: 77 00 ja 778d <.debug_info+0x778d> 778d: 00 01 add %al,(%ecx) 778f: 7a 00 jp 7791 <.debug_info+0x7791> 7791: 00 00 add %al,(%eax) 7793: 08 54 68 00 or %dl,0x0(%eax,%ebp,2) 7797: 00 08 add %cl,(%eax) 7799: 7a 00 jp 779b <.debug_info+0x779b> 779b: 00 00 add %al,(%eax) 779d: 00 06 add %al,(%esi) 779f: 04 89 add $0x89,%al 77a1: 77 00 ja 77a3 <.debug_info+0x77a3> 77a3: 00 0c b4 add %cl,(%esp,%esi,4) 77a6: 77 00 ja 77a8 <.debug_info+0x77a8> 77a8: 00 01 add %al,(%ecx) 77aa: 7a 00 jp 77ac <.debug_info+0x77ac> 77ac: 00 00 add %al,(%eax) 77ae: 08 54 68 00 or %dl,0x0(%eax,%ebp,2) 77b2: 00 00 add %al,(%eax) 77b4: 06 push %es 77b5: 04 a4 add $0xa4,%al 77b7: 77 00 ja 77b9 <.debug_info+0x77b9> 77b9: 00 0c d4 add %cl,(%esp,%edx,8) 77bc: 77 00 ja 77be <.debug_info+0x77be> 77be: 00 01 add %al,(%ecx) 77c0: 7a 00 jp 77c2 <.debug_info+0x77c2> 77c2: 00 00 add %al,(%eax) 77c4: 08 54 68 00 or %dl,0x0(%eax,%ebp,2) 77c8: 00 08 add %cl,(%eax) 77ca: 2e 6e outsb %cs:(%esi),(%dx) 77cc: 00 00 add %al,(%eax) 77ce: 08 7a 00 or %bh,0x0(%edx) 77d1: 00 00 add %al,(%eax) 77d3: 00 06 add %al,(%esi) 77d5: 04 ba add $0xba,%al 77d7: 77 00 ja 77d9 <.debug_info+0x77d9> 77d9: 00 0c ef add %cl,(%edi,%ebp,8) 77dc: 77 00 ja 77de <.debug_info+0x77de> 77de: 00 01 add %al,(%ecx) 77e0: 7a 00 jp 77e2 <.debug_info+0x77e2> 77e2: 00 00 add %al,(%eax) 77e4: 08 ef or %ch,%bh 77e6: 77 00 ja 77e8 <.debug_info+0x77e8> 77e8: 00 08 add %cl,(%eax) 77ea: 98 cwtl 77eb: 00 00 add %al,(%eax) 77ed: 00 00 add %al,(%eax) 77ef: 06 push %es 77f0: 04 f5 add $0xf5,%al 77f2: 77 00 ja 77f4 <.debug_info+0x77f4> 77f4: 00 28 add %ch,(%eax) 77f6: 93 xchg %eax,%ebx 77f7: 64 00 00 add %al,%fs:(%eax) 77fa: 06 push %es 77fb: 04 da add $0xda,%al 77fd: 77 00 ja 77ff <.debug_info+0x77ff> 77ff: 00 0c 15 78 00 00 01 add %cl,0x1000078(,%edx,1) 7806: 7a 00 jp 7808 <.debug_info+0x7808> 7808: 00 00 add %al,(%eax) 780a: 08 54 68 00 or %dl,0x0(%eax,%ebp,2) 780e: 00 08 add %cl,(%eax) 7810: 2e 6e outsb %cs:(%esi),(%dx) 7812: 00 00 add %al,(%eax) 7814: 00 06 add %al,(%esi) 7816: 04 00 add $0x0,%al 7818: 78 00 js 781a <.debug_info+0x781a> 781a: 00 0c 30 add %cl,(%eax,%esi,1) 781d: 78 00 js 781f <.debug_info+0x781f> 781f: 00 01 add %al,(%ecx) 7821: 7a 00 jp 7823 <.debug_info+0x7823> 7823: 00 00 add %al,(%eax) 7825: 08 54 68 00 or %dl,0x0(%eax,%ebp,2) 7829: 00 08 add %cl,(%eax) 782b: 08 5d 00 or %bl,0x0(%ebp) 782e: 00 00 add %al,(%eax) 7830: 06 push %es 7831: 04 1b add $0x1b,%al 7833: 78 00 js 7835 <.debug_info+0x7835> 7835: 00 11 add %dl,(%ecx) 7837: 36 ss 7838: 79 00 jns 783a <.debug_info+0x783a> 783a: 00 71 75 add %dh,0x75(%ecx) 783d: 6f outsl %ds:(%esi),(%dx) 783e: 74 61 je 78a1 <.debug_info+0x78a1> 7840: 63 74 6c 5f arpl %si,0x5f(%esp,%ebp,2) 7844: 6f outsl %ds:(%esi),(%dx) 7845: 70 73 jo 78ba <.debug_info+0x78ba> 7847: 00 2c 2c add %ch,(%esp,%ebp,1) 784a: 06 push %es 784b: 01 12 add %edx,(%edx) 784d: 71 75 jno 78c4 <.debug_info+0x78c4> 784f: 6f outsl %ds:(%esi),(%dx) 7850: 74 61 je 78b3 <.debug_info+0x78b3> 7852: 5f pop %edi 7853: 6f outsl %ds:(%esi),(%dx) 7854: 6e outsb %ds:(%esi),(%dx) 7855: 00 2c 07 add %ch,(%edi,%eax,1) 7858: 01 55 79 add %edx,0x79(%ebp) 785b: 00 00 add %al,(%eax) 785d: 02 23 add (%ebx),%ah 785f: 00 12 add %dl,(%edx) 7861: 71 75 jno 78d8 <.debug_info+0x78d8> 7863: 6f outsl %ds:(%esi),(%dx) 7864: 74 61 je 78c7 <.debug_info+0x78c7> 7866: 5f pop %edi 7867: 6f outsl %ds:(%esi),(%dx) 7868: 66 data16 7869: 66 data16 786a: 00 2c 08 add %ch,(%eax,%ecx,1) 786d: 01 55 76 add %edx,0x76(%ebp) 7870: 00 00 add %al,(%eax) 7872: 02 23 add (%ebx),%ah 7874: 04 12 add $0x12,%al 7876: 71 75 jno 78ed <.debug_info+0x78ed> 7878: 6f outsl %ds:(%esi),(%dx) 7879: 74 61 je 78dc <.debug_info+0x78dc> 787b: 5f pop %edi 787c: 73 79 jae 78f7 <.debug_info+0x78f7> 787e: 6e outsb %ds:(%esi),(%dx) 787f: 63 00 arpl %ax,(%eax) 7881: 2c 09 sub $0x9,%al 7883: 01 55 76 add %edx,0x76(%ebp) 7886: 00 00 add %al,(%eax) 7888: 02 23 add (%ebx),%ah 788a: 08 12 or %dl,(%edx) 788c: 67 addr16 788d: 65 gs 788e: 74 5f je 78ef <.debug_info+0x78ef> 7890: 69 6e 66 6f 00 2c 0a imul $0xa2c006f,0x66(%esi),%ebp 7897: 01 7b 79 add %edi,0x79(%ebx) 789a: 00 00 add %al,(%eax) 789c: 02 23 add (%ebx),%ah 789e: 0c 12 or $0x12,%al 78a0: 73 65 jae 7907 <.debug_info+0x7907> 78a2: 74 5f je 7903 <.debug_info+0x7903> 78a4: 69 6e 66 6f 00 2c 0b imul $0xb2c006f,0x66(%esi),%ebp 78ab: 01 7b 79 add %edi,0x79(%ebx) 78ae: 00 00 add %al,(%eax) 78b0: 02 23 add (%ebx),%ah 78b2: 10 12 adc %dl,(%edx) 78b4: 67 addr16 78b5: 65 gs 78b6: 74 5f je 7917 <.debug_info+0x7917> 78b8: 64 fs 78b9: 71 62 jno 791d <.debug_info+0x791d> 78bb: 6c insb (%dx),%es:(%edi) 78bc: 6b 00 2c imul $0x2c,(%eax),%eax 78bf: 0c 01 or $0x1,%al 78c1: a6 cmpsb %es:(%edi),%ds:(%esi) 78c2: 79 00 jns 78c4 <.debug_info+0x78c4> 78c4: 00 02 add %al,(%edx) 78c6: 23 14 12 and (%edx,%edx,1),%edx 78c9: 73 65 jae 7930 <.debug_info+0x7930> 78cb: 74 5f je 792c <.debug_info+0x792c> 78cd: 64 fs 78ce: 71 62 jno 7932 <.debug_info+0x7932> 78d0: 6c insb (%dx),%es:(%edi) 78d1: 6b 00 2c imul $0x2c,(%eax),%eax 78d4: 0d 01 a6 79 00 or $0x79a601,%eax 78d9: 00 02 add %al,(%edx) 78db: 23 18 and (%eax),%ebx 78dd: 12 67 65 adc 0x65(%edi),%ah 78e0: 74 5f je 7941 <.debug_info+0x7941> 78e2: 78 73 js 7957 <.debug_info+0x7957> 78e4: 74 61 je 7947 <.debug_info+0x7947> 78e6: 74 65 je 794d <.debug_info+0x794d> 78e8: 00 2c 0e add %ch,(%esi,%ecx,1) 78eb: 01 c7 add %eax,%edi 78ed: 79 00 jns 78ef <.debug_info+0x78ef> 78ef: 00 02 add %al,(%edx) 78f1: 23 1c 12 and (%edx,%edx,1),%ebx 78f4: 73 65 jae 795b <.debug_info+0x795b> 78f6: 74 5f je 7957 <.debug_info+0x7957> 78f8: 78 73 js 796d <.debug_info+0x796d> 78fa: 74 61 je 795d <.debug_info+0x795d> 78fc: 74 65 je 7963 <.debug_info+0x7963> 78fe: 00 2c 0f add %ch,(%edi,%ecx,1) 7901: 01 e7 add %esp,%edi 7903: 79 00 jns 7905 <.debug_info+0x7905> 7905: 00 02 add %al,(%edx) 7907: 23 20 and (%eax),%esp 7909: 12 67 65 adc 0x65(%edi),%ah 790c: 74 5f je 796d <.debug_info+0x796d> 790e: 78 71 js 7981 <.debug_info+0x7981> 7910: 75 6f jne 7981 <.debug_info+0x7981> 7912: 74 61 je 7975 <.debug_info+0x7975> 7914: 00 2c 10 add %ch,(%eax,%edx,1) 7917: 01 12 add %edx,(%edx) 7919: 7a 00 jp 791b <.debug_info+0x791b> 791b: 00 02 add %al,(%edx) 791d: 23 24 12 and (%edx,%edx,1),%esp 7920: 73 65 jae 7987 <.debug_info+0x7987> 7922: 74 5f je 7983 <.debug_info+0x7983> 7924: 78 71 js 7997 <.debug_info+0x7997> 7926: 75 6f jne 7997 <.debug_info+0x7997> 7928: 74 61 je 798b <.debug_info+0x798b> 792a: 00 2c 11 add %ch,(%ecx,%edx,1) 792d: 01 12 add %edx,(%edx) 792f: 7a 00 jp 7931 <.debug_info+0x7931> 7931: 00 02 add %al,(%edx) 7933: 23 28 and (%eax),%ebp 7935: 00 0c 55 79 00 00 01 add %cl,0x1000079(,%edx,2) 793c: 7a 00 jp 793e <.debug_info+0x793e> 793e: 00 00 add %al,(%eax) 7940: 08 f1 or %dh,%cl 7942: 6b 00 00 imul $0x0,(%eax),%eax 7945: 08 7a 00 or %bh,0x0(%edx) 7948: 00 00 add %al,(%eax) 794a: 08 7a 00 or %bh,0x0(%edx) 794d: 00 00 add %al,(%eax) 794f: 08 bb 01 00 00 00 or %bh,0x1(%ebx) 7955: 06 push %es 7956: 04 36 add $0x36,%al 7958: 79 00 jns 795a <.debug_info+0x795a> 795a: 00 0c 75 79 00 00 01 add %cl,0x1000079(,%esi,2) 7961: 7a 00 jp 7963 <.debug_info+0x7963> 7963: 00 00 add %al,(%eax) 7965: 08 f1 or %dh,%cl 7967: 6b 00 00 imul $0x0,(%eax),%eax 796a: 08 7a 00 or %bh,0x0(%edx) 796d: 00 00 add %al,(%eax) 796f: 08 75 79 or %dh,0x79(%ebp) 7972: 00 00 add %al,(%eax) 7974: 00 06 add %al,(%esi) 7976: 04 d3 add $0xd3,%al 7978: 6e outsb %ds:(%esi),(%dx) 7979: 00 00 add %al,(%eax) 797b: 06 push %es 797c: 04 5b add $0x5b,%al 797e: 79 00 jns 7980 <.debug_info+0x7980> 7980: 00 0c a0 add %cl,(%eax) 7983: 79 00 jns 7985 <.debug_info+0x7985> 7985: 00 01 add %al,(%ecx) 7987: 7a 00 jp 7989 <.debug_info+0x7989> 7989: 00 00 add %al,(%eax) 798b: 08 f1 or %dh,%cl 798d: 6b 00 00 imul $0x0,(%eax),%eax 7990: 08 7a 00 or %bh,0x0(%edx) 7993: 00 00 add %al,(%eax) 7995: 08 21 or %ah,(%ecx) 7997: 6e outsb %ds:(%esi),(%dx) 7998: 00 00 add %al,(%eax) 799a: 08 a0 79 00 00 00 or %ah,0x79(%eax) 79a0: 06 push %es 79a1: 04 3d add $0x3d,%al 79a3: 6e outsb %ds:(%esi),(%dx) 79a4: 00 00 add %al,(%eax) 79a6: 06 push %es 79a7: 04 81 add $0x81,%al 79a9: 79 00 jns 79ab <.debug_info+0x79ab> 79ab: 00 0c c1 add %cl,(%ecx,%eax,8) 79ae: 79 00 jns 79b0 <.debug_info+0x79b0> 79b0: 00 01 add %al,(%ecx) 79b2: 7a 00 jp 79b4 <.debug_info+0x79b4> 79b4: 00 00 add %al,(%eax) 79b6: 08 f1 or %dh,%cl 79b8: 6b 00 00 imul $0x0,(%eax),%eax 79bb: 08 c1 or %al,%cl 79bd: 79 00 jns 79bf <.debug_info+0x79bf> 79bf: 00 00 add %al,(%eax) 79c1: 06 push %es 79c2: 04 7b add $0x7b,%al 79c4: 71 00 jno 79c6 <.debug_info+0x79c6> 79c6: 00 06 add %al,(%esi) 79c8: 04 ac add $0xac,%al 79ca: 79 00 jns 79cc <.debug_info+0x79cc> 79cc: 00 0c e7 add %cl,(%edi) 79cf: 79 00 jns 79d1 <.debug_info+0x79d1> 79d1: 00 01 add %al,(%ecx) 79d3: 7a 00 jp 79d5 <.debug_info+0x79d5> 79d5: 00 00 add %al,(%eax) 79d7: 08 f1 or %dh,%cl 79d9: 6b 00 00 imul $0x0,(%eax),%eax 79dc: 08 3b or %bh,(%ebx) 79de: 01 00 add %eax,(%eax) 79e0: 00 08 add %cl,(%eax) 79e2: 7a 00 jp 79e4 <.debug_info+0x79e4> 79e4: 00 00 add %al,(%eax) 79e6: 00 06 add %al,(%esi) 79e8: 04 cd add $0xcd,%al 79ea: 79 00 jns 79ec <.debug_info+0x79ec> 79ec: 00 0c 0c add %cl,(%esp,%ecx,1) 79ef: 7a 00 jp 79f1 <.debug_info+0x79f1> 79f1: 00 01 add %al,(%ecx) 79f3: 7a 00 jp 79f5 <.debug_info+0x79f5> 79f5: 00 00 add %al,(%eax) 79f7: 08 f1 or %dh,%cl 79f9: 6b 00 00 imul $0x0,(%eax),%eax 79fc: 08 7a 00 or %bh,0x0(%edx) 79ff: 00 00 add %al,(%eax) 7a01: 08 21 or %ah,(%ecx) 7a03: 6e outsb %ds:(%esi),(%dx) 7a04: 00 00 add %al,(%eax) 7a06: 08 0c 7a or %cl,(%edx,%edi,2) 7a09: 00 00 add %al,(%eax) 7a0b: 00 06 add %al,(%esi) 7a0d: 04 24 add $0x24,%al 7a0f: 6f outsl %ds:(%esi),(%dx) 7a10: 00 00 add %al,(%eax) 7a12: 06 push %es 7a13: 04 ed add $0xed,%al 7a15: 79 00 jns 7a17 <.debug_info+0x7a17> 7a17: 00 06 add %al,(%esi) 7a19: 04 7b add $0x7b,%al 7a1b: 75 00 jne 7a1d <.debug_info+0x7a1d> 7a1d: 00 11 add %dl,(%ecx) 7a1f: b7 7a mov $0x7a,%bh 7a21: 00 00 add %al,(%eax) 7a23: 71 75 jno 7a9a <.debug_info+0x7a9a> 7a25: 6f outsl %ds:(%esi),(%dx) 7a26: 74 61 je 7a89 <.debug_info+0x7a89> 7a28: 5f pop %edi 7a29: 69 6e 66 6f 00 c8 2c imul $0x2cc8006f,0x66(%esi),%ebp 7a30: 1e push %ds 7a31: 01 13 add %edx,(%ebx) 7a33: b3 03 mov $0x3,%bl 7a35: 00 00 add %al,(%eax) 7a37: 2c 1f sub $0x1f,%al 7a39: 01 3b add %edi,(%ebx) 7a3b: 01 00 add %eax,(%eax) 7a3d: 00 02 add %al,(%edx) 7a3f: 23 00 and (%eax),%eax 7a41: 12 64 71 69 adc 0x69(%ecx,%esi,2),%ah 7a45: 6f outsl %ds:(%esi),(%dx) 7a46: 5f pop %edi 7a47: 6d insl (%dx),%es:(%edi) 7a48: 75 74 jne 7abe <.debug_info+0x7abe> 7a4a: 65 gs 7a4b: 78 00 js 7a4d <.debug_info+0x7a4d> 7a4d: 2c 20 sub $0x20,%al 7a4f: 01 af 3c 00 00 02 add %ebp,0x200003c(%edi) 7a55: 23 04 12 and (%edx,%edx,1),%eax 7a58: 64 fs 7a59: 71 6f jno 7aca <.debug_info+0x7aca> 7a5b: 6e outsb %ds:(%esi),(%dx) 7a5c: 6f outsl %ds:(%esi),(%dx) 7a5d: 66 66 5f pop %di 7a60: 6d insl (%dx),%es:(%edi) 7a61: 75 74 jne 7ad7 <.debug_info+0x7ad7> 7a63: 65 gs 7a64: 78 00 js 7a66 <.debug_info+0x7a66> 7a66: 2c 21 sub $0x21,%al 7a68: 01 af 3c 00 00 02 add %ebp,0x200003c(%edi) 7a6e: 23 2c 12 and (%edx,%edx,1),%ebp 7a71: 64 fs 7a72: 71 70 jno 7ae4 <.debug_info+0x7ae4> 7a74: 74 72 je 7ae8 <.debug_info+0x7ae8> 7a76: 5f pop %edi 7a77: 73 65 jae 7ade <.debug_info+0x7ade> 7a79: 6d insl (%dx),%es:(%edi) 7a7a: 00 2c 22 add %ch,(%edx) 7a7d: 01 b6 21 00 00 02 add %esi,0x2000021(%esi) 7a83: 23 54 12 66 and 0x66(%edx,%edx,1),%edx 7a87: 69 6c 65 73 00 2c 23 imul $0x1232c00,0x73(%ebp),%ebp 7a8e: 01 7a8f: b7 7a mov $0x7a,%bh 7a91: 00 00 add %al,(%eax) 7a93: 02 23 add (%ebx),%ah 7a95: 70 12 jo 7aa9 <.debug_info+0x7aa9> 7a97: 69 6e 66 6f 00 2c 24 imul $0x242c006f,0x66(%esi),%ebp 7a9e: 01 c7 add %eax,%edi 7aa0: 7a 00 jp 7aa2 <.debug_info+0x7aa2> 7aa2: 00 02 add %al,(%edx) 7aa4: 23 78 12 and 0x12(%eax),%edi 7aa7: 6f outsl %ds:(%esi),(%dx) 7aa8: 70 73 jo 7b1d <.debug_info+0x7b1d> 7aaa: 00 2c 25 01 d7 7a 00 add %ch,0x7ad701 7ab1: 00 03 add %al,(%ebx) 7ab3: 23 c0 and %eax,%eax 7ab5: 01 00 add %eax,(%eax) 7ab7: 03 c7 add %edi,%eax 7ab9: 7a 00 jp 7abb <.debug_info+0x7abb> 7abb: 00 54 68 00 add %dl,0x0(%eax,%ebp,2) 7abf: 00 04 91 add %al,(%ecx,%edx,4) 7ac2: 00 00 add %al,(%eax) 7ac4: 00 01 add %al,(%ecx) 7ac6: 00 03 add %al,(%ebx) 7ac8: d7 xlat %ds:(%ebx) 7ac9: 7a 00 jp 7acb <.debug_info+0x7acb> 7acb: 00 96 73 00 00 04 add %dl,0x4000073(%esi) 7ad1: 91 xchg %eax,%ecx 7ad2: 00 00 add %al,(%eax) 7ad4: 00 01 add %al,(%ecx) 7ad6: 00 03 add %al,(%ebx) 7ad8: e7 7a out %eax,$0x7a 7ada: 00 00 add %al,(%eax) 7adc: 18 7a 00 sbb %bh,0x0(%edx) 7adf: 00 04 91 add %al,(%ecx,%edx,4) 7ae2: 00 00 add %al,(%eax) 7ae4: 00 01 add %al,(%ecx) 7ae6: 00 11 add %dl,(%ecx) 7ae8: 43 inc %ebx 7ae9: 7c 00 jl 7aeb <.debug_info+0x7aeb> 7aeb: 00 61 64 add %ah,0x64(%ecx) 7aee: 64 fs 7aef: 72 65 jb 7b56 <.debug_info+0x7b56> 7af1: 73 73 jae 7b66 <.debug_info+0x7b66> 7af3: 5f pop %edi 7af4: 73 70 jae 7b66 <.debug_info+0x7b66> 7af6: 61 popa 7af7: 63 65 5f arpl %sp,0x5f(%ebp) 7afa: 6f outsl %ds:(%esi),(%dx) 7afb: 70 65 jo 7b62 <.debug_info+0x7b62> 7afd: 72 61 jb 7b60 <.debug_info+0x7b60> 7aff: 74 69 je 7b6a <.debug_info+0x7b6a> 7b01: 6f outsl %ds:(%esi),(%dx) 7b02: 6e outsb %ds:(%esi),(%dx) 7b03: 73 00 jae 7b05 <.debug_info+0x7b05> 7b05: 38 0a cmp %cl,(%edx) 7b07: 62 01 bound %eax,(%ecx) 7b09: 12 77 72 adc 0x72(%edi),%dh 7b0c: 69 74 65 70 61 67 65 imul $0x656761,0x70(%ebp),%esi 7b13: 00 7b14: 0a 63 01 or 0x1(%ebx),%ah 7b17: 72 7c jb 7b95 <.debug_info+0x7b95> 7b19: 00 00 add %al,(%eax) 7b1b: 02 23 add (%ebx),%ah 7b1d: 00 12 add %dl,(%edx) 7b1f: 72 65 jb 7b86 <.debug_info+0x7b86> 7b21: 61 popa 7b22: 64 fs 7b23: 70 61 jo 7b86 <.debug_info+0x7b86> 7b25: 67 65 00 0a addr16 add %cl,%gs:(%bp,%si) 7b29: 64 01 8d 7c 00 00 02 add %ecx,%fs:0x200007c(%ebp) 7b30: 23 04 12 and (%edx,%edx,1),%eax 7b33: 73 79 jae 7bae <.debug_info+0x7bae> 7b35: 6e outsb %ds:(%esi),(%dx) 7b36: 63 5f 70 arpl %bx,0x70(%edi) 7b39: 61 popa 7b3a: 67 65 00 0a addr16 add %cl,%gs:(%bp,%si) 7b3e: 65 01 9f 7c 00 00 02 add %ebx,%gs:0x200007c(%edi) 7b45: 23 08 and (%eax),%ecx 7b47: 12 77 72 adc 0x72(%edi),%dh 7b4a: 69 74 65 70 61 67 65 imul $0x73656761,0x70(%ebp),%esi 7b51: 73 7b52: 00 0a add %cl,(%edx) 7b54: 68 01 32 7e 00 push $0x7e3201 7b59: 00 02 add %al,(%edx) 7b5b: 23 0c 12 and (%edx,%edx,1),%ecx 7b5e: 73 65 jae 7bc5 <.debug_info+0x7bc5> 7b60: 74 5f je 7bc1 <.debug_info+0x7bc1> 7b62: 70 61 jo 7bc5 <.debug_info+0x7bc5> 7b64: 67 addr16 7b65: 65 gs 7b66: 5f pop %edi 7b67: 64 69 72 74 79 00 0a imul $0x6b0a0079,%fs:0x74(%edx),%esi 7b6e: 6b 7b6f: 01 48 7e add %ecx,0x7e(%eax) 7b72: 00 00 add %al,(%eax) 7b74: 02 23 add (%ebx),%ah 7b76: 10 12 adc %dl,(%edx) 7b78: 72 65 jb 7bdf <.debug_info+0x7bdf> 7b7a: 61 popa 7b7b: 64 fs 7b7c: 70 61 jo 7bdf <.debug_info+0x7bdf> 7b7e: 67 addr16 7b7f: 65 gs 7b80: 73 00 jae 7b82 <.debug_info+0x7b82> 7b82: 0a 6e 01 or 0x1(%esi),%ch 7b85: 6d insl (%dx),%es:(%edi) 7b86: 7e 00 jle 7b88 <.debug_info+0x7b88> 7b88: 00 02 add %al,(%edx) 7b8a: 23 14 12 and (%edx,%edx,1),%edx 7b8d: 70 72 jo 7c01 <.debug_info+0x7c01> 7b8f: 65 gs 7b90: 70 61 jo 7bf3 <.debug_info+0x7bf3> 7b92: 72 65 jb 7bf9 <.debug_info+0x7bf9> 7b94: 5f pop %edi 7b95: 77 72 ja 7c09 <.debug_info+0x7c09> 7b97: 69 74 65 00 0a 74 01 imul $0x9201740a,0x0(%ebp),%esi 7b9e: 92 7b9f: 7e 00 jle 7ba1 <.debug_info+0x7ba1> 7ba1: 00 02 add %al,(%edx) 7ba3: 23 18 and (%eax),%ebx 7ba5: 12 63 6f adc 0x6f(%ebx),%ah 7ba8: 6d insl (%dx),%es:(%edi) 7ba9: 6d insl (%dx),%es:(%edi) 7baa: 69 74 5f 77 72 69 74 imul $0x65746972,0x77(%edi,%ebx,2),%esi 7bb1: 65 7bb2: 00 0a add %cl,(%edx) 7bb4: 75 01 jne 7bb7 <.debug_info+0x7bb7> 7bb6: 92 xchg %eax,%edx 7bb7: 7e 00 jle 7bb9 <.debug_info+0x7bb9> 7bb9: 00 02 add %al,(%edx) 7bbb: 23 1c 12 and (%edx,%edx,1),%ebx 7bbe: 62 6d 61 bound %ebp,0x61(%ebp) 7bc1: 70 00 jo 7bc3 <.debug_info+0x7bc3> 7bc3: 0a 77 01 or 0x1(%edi),%dh 7bc6: ad lods %ds:(%esi),%eax 7bc7: 7e 00 jle 7bc9 <.debug_info+0x7bc9> 7bc9: 00 02 add %al,(%edx) 7bcb: 23 20 and (%eax),%esp 7bcd: 12 69 6e adc 0x6e(%ecx),%ch 7bd0: 76 61 jbe 7c33 <.debug_info+0x7c33> 7bd2: 6c insb (%dx),%es:(%edi) 7bd3: 69 64 61 74 65 70 61 imul $0x67617065,0x74(%ecx),%esp 7bda: 67 7bdb: 65 00 0a add %cl,%gs:(%edx) 7bde: 78 01 js 7be1 <.debug_info+0x7be1> 7be0: c4 7e 00 les 0x0(%esi),%edi 7be3: 00 02 add %al,(%edx) 7be5: 23 24 12 and (%edx,%edx,1),%esp 7be8: 72 65 jb 7c4f <.debug_info+0x7c4f> 7bea: 6c insb (%dx),%es:(%edi) 7beb: 65 gs 7bec: 61 popa 7bed: 73 65 jae 7c54 <.debug_info+0x7c54> 7bef: 70 61 jo 7c52 <.debug_info+0x7c52> 7bf1: 67 65 00 0a addr16 add %cl,%gs:(%bp,%si) 7bf5: 79 01 jns 7bf8 <.debug_info+0x7bf8> 7bf7: df 7e 00 fistpll 0x0(%esi) 7bfa: 00 02 add %al,(%edx) 7bfc: 23 28 and (%eax),%ebp 7bfe: 12 64 69 72 adc 0x72(%ecx,%ebp,2),%ah 7c02: 65 63 74 5f 49 arpl %si,%gs:0x49(%edi,%ebx,2) 7c07: 4f dec %edi 7c08: 00 0a add %cl,(%edx) 7c0a: 7b 01 jnp 7c0d <.debug_info+0x7c0d> 7c0c: 1c 7f sbb $0x7f,%al 7c0e: 00 00 add %al,(%eax) 7c10: 02 23 add (%ebx),%ah 7c12: 2c 12 sub $0x12,%al 7c14: 67 addr16 7c15: 65 gs 7c16: 74 5f je 7c77 <.debug_info+0x7c77> 7c18: 78 69 js 7c83 <.debug_info+0x7c83> 7c1a: 70 5f jo 7c7b <.debug_info+0x7c7b> 7c1c: 70 61 jo 7c7f <.debug_info+0x7c7f> 7c1e: 67 65 00 0a addr16 add %cl,%gs:(%bp,%si) 7c22: 7d 01 jge 7c25 <.debug_info+0x7c25> 7c24: 3c 7f cmp $0x7f,%al 7c26: 00 00 add %al,(%eax) 7c28: 02 23 add (%ebx),%ah 7c2a: 30 12 xor %dl,(%edx) 7c2c: 6d insl (%dx),%es:(%edi) 7c2d: 69 67 72 61 74 65 70 imul $0x70657461,0x72(%edi),%esp 7c34: 61 popa 7c35: 67 65 00 0a addr16 add %cl,%gs:(%bp,%si) 7c39: 80 01 5c addb $0x5c,(%ecx) 7c3c: 7f 00 jg 7c3e <.debug_info+0x7c3e> 7c3e: 00 02 add %al,(%edx) 7c40: 23 34 00 and (%eax,%eax,1),%esi 7c43: 0c 58 or $0x58,%al 7c45: 7c 00 jl 7c47 <.debug_info+0x7c47> 7c47: 00 01 add %al,(%ecx) 7c49: 7a 00 jp 7c4b <.debug_info+0x7c4b> 7c4b: 00 00 add %al,(%eax) 7c4d: 08 94 3c 00 00 08 58 or %dl,0x58080000(%esp,%edi,1) 7c54: 7c 00 jl 7c56 <.debug_info+0x7c56> 7c56: 00 00 add %al,(%eax) 7c58: 06 push %es 7c59: 04 5e add $0x5e,%al 7c5b: 7c 00 jl 7c5d <.debug_info+0x7c5d> 7c5d: 00 26 add %ah,(%esi) 7c5f: 77 72 ja 7cd3 <.debug_info+0x7cd3> 7c61: 69 74 65 62 61 63 6b imul $0x5f6b6361,0x62(%ebp),%esi 7c68: 5f 7c69: 63 6f 6e arpl %bp,0x6e(%edi) 7c6c: 74 72 je 7ce0 <.debug_info+0x7ce0> 7c6e: 6f outsl %ds:(%esi),(%dx) 7c6f: 6c insb (%dx),%es:(%edi) 7c70: 00 01 add %al,(%ecx) 7c72: 06 push %es 7c73: 04 43 add $0x43,%al 7c75: 7c 00 jl 7c77 <.debug_info+0x7c77> 7c77: 00 0c 8d 7c 00 00 01 add %cl,0x100007c(,%ecx,4) 7c7e: 7a 00 jp 7c80 <.debug_info+0x7c80> 7c80: 00 00 add %al,(%eax) 7c82: 08 03 or %al,(%ebx) 7c84: 47 inc %edi 7c85: 00 00 add %al,(%eax) 7c87: 08 94 3c 00 00 00 06 or %dl,0x6000000(%esp,%edi,1) 7c8e: 04 78 add $0x78,%al 7c90: 7c 00 jl 7c92 <.debug_info+0x7c92> 7c92: 00 07 add %al,(%edi) 7c94: 9f lahf 7c95: 7c 00 jl 7c97 <.debug_info+0x7c97> 7c97: 00 01 add %al,(%ecx) 7c99: 08 94 3c 00 00 00 06 or %dl,0x6000000(%esp,%edi,1) 7ca0: 04 93 add $0x93,%al 7ca2: 7c 00 jl 7ca4 <.debug_info+0x7ca4> 7ca4: 00 0c ba add %cl,(%edx,%edi,4) 7ca7: 7c 00 jl 7ca9 <.debug_info+0x7ca9> 7ca9: 00 01 add %al,(%ecx) 7cab: 7a 00 jp 7cad <.debug_info+0x7cad> 7cad: 00 00 add %al,(%eax) 7caf: 08 ba 7c 00 00 08 or %bh,0x800007c(%edx) 7cb5: 58 pop %eax 7cb6: 7c 00 jl 7cb8 <.debug_info+0x7cb8> 7cb8: 00 00 add %al,(%eax) 7cba: 06 push %es 7cbb: 04 c0 add $0xc0,%al 7cbd: 7c 00 jl 7cbf <.debug_info+0x7cbf> 7cbf: 00 11 add %dl,(%ecx) 7cc1: 32 7e 00 xor 0x0(%esi),%bh 7cc4: 00 61 64 add %ah,0x64(%ecx) 7cc7: 64 fs 7cc8: 72 65 jb 7d2f <.debug_info+0x7d2f> 7cca: 73 73 jae 7d3f <.debug_info+0x7d3f> 7ccc: 5f pop %edi 7ccd: 73 70 jae 7d3f <.debug_info+0x7d3f> 7ccf: 61 popa 7cd0: 63 65 00 arpl %sp,0x0(%ebp) 7cd3: 78 0a js 7cdf <.debug_info+0x7cdf> 7cd5: 5f pop %edi 7cd6: 01 12 add %edx,(%edx) 7cd8: 68 6f 73 74 00 push $0x74736f 7cdd: 0a 85 01 54 68 00 or 0x685401(%ebp),%al 7ce3: 00 02 add %al,(%edx) 7ce5: 23 00 and (%eax),%eax 7ce7: 12 70 61 adc 0x61(%eax),%dh 7cea: 67 addr16 7ceb: 65 gs 7cec: 5f pop %edi 7ced: 74 72 je 7d61 <.debug_info+0x7d61> 7cef: 65 65 00 0a add %cl,%gs:(%edx) 7cf3: 86 01 xchg %al,(%ecx) 7cf5: cb lret 7cf6: 6c insb (%dx),%es:(%edi) 7cf7: 00 00 add %al,(%eax) 7cf9: 02 23 add (%ebx),%ah 7cfb: 04 12 add $0x12,%al 7cfd: 74 72 je 7d71 <.debug_info+0x7d71> 7cff: 65 gs 7d00: 65 gs 7d01: 5f pop %edi 7d02: 6c insb (%dx),%es:(%edi) 7d03: 6f outsl %ds:(%esi),(%dx) 7d04: 63 6b 00 arpl %bp,0x0(%ebx) 7d07: 0a 87 01 71 1f 00 or 0x1f7101(%edi),%al 7d0d: 00 02 add %al,(%edx) 7d0f: 23 10 and (%eax),%edx 7d11: 12 69 5f adc 0x5f(%ecx),%ch 7d14: 6d insl (%dx),%es:(%edi) 7d15: 6d insl (%dx),%es:(%edi) 7d16: 61 popa 7d17: 70 5f jo 7d78 <.debug_info+0x7d78> 7d19: 77 72 ja 7d8d <.debug_info+0x7d8d> 7d1b: 69 74 61 62 6c 65 00 imul $0xa00656c,0x62(%ecx),%esi 7d22: 0a 7d23: 88 01 mov %al,(%ecx) 7d25: 3b 01 cmp (%ecx),%eax 7d27: 00 00 add %al,(%eax) 7d29: 02 23 add (%ebx),%ah 7d2b: 20 12 and %dl,(%edx) 7d2d: 69 5f 6d 6d 61 70 00 imul $0x70616d,0x6d(%edi),%ebx 7d34: 0a 89 01 d8 6d 00 or 0x6dd801(%ecx),%cl 7d3a: 00 02 add %al,(%edx) 7d3c: 23 24 12 and (%edx,%edx,1),%esp 7d3f: 69 5f 6d 6d 61 70 5f imul $0x5f70616d,0x6d(%edi),%ebx 7d46: 6e outsb %ds:(%esi),(%dx) 7d47: 6f outsl %ds:(%esi),(%dx) 7d48: 6e outsb %ds:(%esi),(%dx) 7d49: 6c insb (%dx),%es:(%edi) 7d4a: 69 6e 65 61 72 00 0a imul $0xa007261,0x65(%esi),%ebp 7d51: 8a 01 mov (%ecx),%al 7d53: c8 1d 00 00 enter $0x1d,$0x0 7d57: 02 23 add (%ebx),%ah 7d59: 2c 12 sub $0x12,%al 7d5b: 69 5f 6d 6d 61 70 5f imul $0x5f70616d,0x6d(%edi),%ebx 7d62: 6c insb (%dx),%es:(%edi) 7d63: 6f outsl %ds:(%esi),(%dx) 7d64: 63 6b 00 arpl %bp,0x0(%ebx) 7d67: 0a 8b 01 1e 1f 00 or 0x1f1e01(%ebx),%cl 7d6d: 00 02 add %al,(%edx) 7d6f: 23 34 12 and (%edx,%edx,1),%esi 7d72: 74 72 je 7de6 <.debug_info+0x7de6> 7d74: 75 6e jne 7de4 <.debug_info+0x7de4> 7d76: 63 61 74 arpl %sp,0x74(%ecx) 7d79: 65 gs 7d7a: 5f pop %edi 7d7b: 63 6f 75 arpl %bp,0x75(%edi) 7d7e: 6e outsb %ds:(%esi),(%dx) 7d7f: 74 00 je 7d81 <.debug_info+0x7d81> 7d81: 0a 8c 01 3b 01 00 00 or 0x13b(%ecx,%eax,1),%cl 7d88: 02 23 add (%ebx),%ah 7d8a: 44 inc %esp 7d8b: 12 6e 72 adc 0x72(%esi),%ch 7d8e: 70 61 jo 7df1 <.debug_info+0x7df1> 7d90: 67 addr16 7d91: 65 gs 7d92: 73 00 jae 7d94 <.debug_info+0x7d94> 7d94: 0a 8d 01 98 00 00 or 0x9801(%ebp),%cl 7d9a: 00 02 add %al,(%edx) 7d9c: 23 48 12 and 0x12(%eax),%ecx 7d9f: 77 72 ja 7e13 <.debug_info+0x7e13> 7da1: 69 74 65 62 61 63 6b imul $0x5f6b6361,0x62(%ebp),%esi 7da8: 5f 7da9: 69 6e 64 65 78 00 0a imul $0xa007865,0x64(%esi),%ebp 7db0: 8e 01 movw (%ecx),%es 7db2: 98 cwtl 7db3: 00 00 add %al,(%eax) 7db5: 00 02 add %al,(%edx) 7db7: 23 4c 12 61 and 0x61(%edx,%edx,1),%ecx 7dbb: 5f pop %edi 7dbc: 6f outsl %ds:(%esi),(%dx) 7dbd: 70 73 jo 7e32 <.debug_info+0x7e32> 7dbf: 00 0a add %cl,(%edx) 7dc1: 8f 01 popl (%ecx) 7dc3: 62 7f 00 bound %edi,0x0(%edi) 7dc6: 00 02 add %al,(%edx) 7dc8: 23 50 13 and 0x13(%eax),%edx 7dcb: b3 03 mov $0x3,%bl 7dcd: 00 00 add %al,(%eax) 7dcf: 0a 90 01 98 00 00 or 0x9801(%eax),%dl 7dd5: 00 02 add %al,(%edx) 7dd7: 23 54 13 86 and 0xffffff86(%ebx,%edx,1),%edx 7ddb: 03 00 add (%eax),%eax 7ddd: 00 0a add %cl,(%edx) 7ddf: 91 xchg %eax,%ecx 7de0: 01 9a 55 00 00 02 add %ebx,0x2000055(%edx) 7de6: 23 58 12 and 0x12(%eax),%ebx 7de9: 70 72 jo 7e5d <.debug_info+0x7e5d> 7deb: 69 76 61 74 65 5f 6c imul $0x6c5f6574,0x61(%esi),%esi 7df2: 6f outsl %ds:(%esi),(%dx) 7df3: 63 6b 00 arpl %bp,0x0(%ebx) 7df6: 0a 92 01 1e 1f 00 or 0x1f1e01(%edx),%dl 7dfc: 00 02 add %al,(%edx) 7dfe: 23 5c 12 70 and 0x70(%edx,%edx,1),%ebx 7e02: 72 69 jb 7e6d <.debug_info+0x7e6d> 7e04: 76 61 jbe 7e67 <.debug_info+0x7e67> 7e06: 74 65 je 7e6d <.debug_info+0x7e6d> 7e08: 5f pop %edi 7e09: 6c insb (%dx),%es:(%edi) 7e0a: 69 73 74 00 0a 93 01 imul $0x1930a00,0x74(%ebx),%esi 7e11: c8 1d 00 00 enter $0x1d,$0x0 7e15: 02 23 add (%ebx),%ah 7e17: 6c insb (%dx),%es:(%edi) 7e18: 12 61 73 adc 0x73(%ecx),%ah 7e1b: 73 6f jae 7e8c <.debug_info+0x7e8c> 7e1d: 63 5f 6d arpl %bx,0x6d(%edi) 7e20: 61 popa 7e21: 70 70 jo 7e93 <.debug_info+0x7e93> 7e23: 69 6e 67 00 0a 94 01 imul $0x1940a00,0x67(%esi),%ebp 7e2a: ba 7c 00 00 02 mov $0x200007c,%edx 7e2f: 23 74 00 06 and 0x6(%eax,%eax,1),%esi 7e33: 04 a5 add $0xa5,%al 7e35: 7c 00 jl 7e37 <.debug_info+0x7e37> 7e37: 00 0c 48 add %cl,(%eax,%ecx,2) 7e3a: 7e 00 jle 7e3c <.debug_info+0x7e3c> 7e3c: 00 01 add %al,(%ecx) 7e3e: 7a 00 jp 7e40 <.debug_info+0x7e40> 7e40: 00 00 add %al,(%eax) 7e42: 08 94 3c 00 00 00 06 or %dl,0x6000000(%esp,%edi,1) 7e49: 04 38 add $0x38,%al 7e4b: 7e 00 jle 7e4d <.debug_info+0x7e4d> 7e4d: 00 0c 6d 7e 00 00 01 add %cl,0x100007e(,%ebp,2) 7e54: 7a 00 jp 7e56 <.debug_info+0x7e56> 7e56: 00 00 add %al,(%eax) 7e58: 08 03 or %al,(%ebx) 7e5a: 47 inc %edi 7e5b: 00 00 add %al,(%eax) 7e5d: 08 ba 7c 00 00 08 or %bh,0x800007c(%edx) 7e63: f8 clc 7e64: 1d 00 00 08 3b sbb $0x3b080000,%eax 7e69: 01 00 add %eax,(%eax) 7e6b: 00 00 add %al,(%eax) 7e6d: 06 push %es 7e6e: 04 4e add $0x4e,%al 7e70: 7e 00 jle 7e72 <.debug_info+0x7e72> 7e72: 00 0c 92 add %cl,(%edx,%edx,4) 7e75: 7e 00 jle 7e77 <.debug_info+0x7e77> 7e77: 00 01 add %al,(%ecx) 7e79: 7a 00 jp 7e7b <.debug_info+0x7e7b> 7e7b: 00 00 add %al,(%eax) 7e7d: 08 03 or %al,(%ebx) 7e7f: 47 inc %edi 7e80: 00 00 add %al,(%eax) 7e82: 08 94 3c 00 00 08 3b or %dl,0x3b080000(%esp,%edi,1) 7e89: 01 00 add %eax,(%eax) 7e8b: 00 08 add %cl,(%eax) 7e8d: 3b 01 cmp (%ecx),%eax 7e8f: 00 00 add %al,(%eax) 7e91: 00 06 add %al,(%esi) 7e93: 04 73 add $0x73,%al 7e95: 7e 00 jle 7e97 <.debug_info+0x7e97> 7e97: 00 0c ad 7e 00 00 01 add %cl,0x100007e(,%ebp,4) 7e9e: 12 03 adc (%ebx),%al 7ea0: 00 00 add %al,(%eax) 7ea2: 08 ba 7c 00 00 08 or %bh,0x800007c(%edx) 7ea8: 12 03 adc (%ebx),%al 7eaa: 00 00 add %al,(%eax) 7eac: 00 06 add %al,(%esi) 7eae: 04 98 add $0x98,%al 7eb0: 7e 00 jle 7eb2 <.debug_info+0x7eb2> 7eb2: 00 07 add %al,(%edi) 7eb4: c4 7e 00 les 0x0(%esi),%edi 7eb7: 00 01 add %al,(%ecx) 7eb9: 08 94 3c 00 00 08 98 or %dl,0x98080000(%esp,%edi,1) 7ec0: 00 00 add %al,(%eax) 7ec2: 00 00 add %al,(%eax) 7ec4: 06 push %es 7ec5: 04 b3 add $0xb3,%al 7ec7: 7e 00 jle 7ec9 <.debug_info+0x7ec9> 7ec9: 00 0c df add %cl,(%edi,%ebx,8) 7ecc: 7e 00 jle 7ece <.debug_info+0x7ece> 7ece: 00 01 add %al,(%ecx) 7ed0: 7a 00 jp 7ed2 <.debug_info+0x7ed2> 7ed2: 00 00 add %al,(%eax) 7ed4: 08 94 3c 00 00 08 ff or %dl,0xff080000(%esp,%edi,1) 7edb: 03 00 add (%eax),%eax 7edd: 00 00 add %al,(%eax) 7edf: 06 push %es 7ee0: 04 ca add $0xca,%al 7ee2: 7e 00 jle 7ee4 <.debug_info+0x7ee4> 7ee4: 00 0c 09 add %cl,(%ecx,%ecx,1) 7ee7: 7f 00 jg 7ee9 <.debug_info+0x7ee9> 7ee9: 00 01 add %al,(%ecx) 7eeb: c3 ret 7eec: 03 00 add (%eax),%eax 7eee: 00 08 add %cl,(%eax) 7ef0: 7a 00 jp 7ef2 <.debug_info+0x7ef2> 7ef2: 00 00 add %al,(%eax) 7ef4: 08 11 or %dl,(%ecx) 7ef6: 48 dec %eax 7ef7: 00 00 add %al,(%eax) 7ef9: 08 09 or %cl,(%ecx) 7efb: 7f 00 jg 7efd <.debug_info+0x7efd> 7efd: 00 08 add %cl,(%eax) 7eff: a7 cmpsl %es:(%edi),%ds:(%esi) 7f00: 03 00 add (%eax),%eax 7f02: 00 08 add %cl,(%eax) 7f04: 98 cwtl 7f05: 00 00 add %al,(%eax) 7f07: 00 00 add %al,(%eax) 7f09: 06 push %es 7f0a: 04 0f add $0xf,%al 7f0c: 7f 00 jg 7f0e <.debug_info+0x7f0e> 7f0e: 00 28 add %ch,(%eax) 7f10: 14 7f adc $0x7f,%al 7f12: 00 00 add %al,(%eax) 7f14: 26 69 6f 76 65 63 00 imul $0x1006365,%es:0x76(%edi),%ebp 7f1b: 01 7f1c: 06 push %es 7f1d: 04 e5 add $0xe5,%al 7f1f: 7e 00 jle 7f21 <.debug_info+0x7f21> 7f21: 00 0c 3c add %cl,(%esp,%edi,1) 7f24: 7f 00 jg 7f26 <.debug_info+0x7f26> 7f26: 00 01 add %al,(%ecx) 7f28: 94 xchg %eax,%esp 7f29: 3c 00 cmp $0x0,%al 7f2b: 00 08 add %cl,(%eax) 7f2d: ba 7c 00 00 08 mov $0x800007c,%edx 7f32: 12 03 adc (%ebx),%al 7f34: 00 00 add %al,(%eax) 7f36: 08 7a 00 or %bh,0x0(%edx) 7f39: 00 00 add %al,(%eax) 7f3b: 00 06 add %al,(%esi) 7f3d: 04 22 add $0x22,%al 7f3f: 7f 00 jg 7f41 <.debug_info+0x7f41> 7f41: 00 0c 5c add %cl,(%esp,%ebx,2) 7f44: 7f 00 jg 7f46 <.debug_info+0x7f46> 7f46: 00 01 add %al,(%ecx) 7f48: 7a 00 jp 7f4a <.debug_info+0x7f4a> 7f4a: 00 00 add %al,(%eax) 7f4c: 08 ba 7c 00 00 08 or %bh,0x800007c(%edx) 7f52: 94 xchg %eax,%esp 7f53: 3c 00 cmp $0x0,%al 7f55: 00 08 add %cl,(%eax) 7f57: 94 xchg %eax,%esp 7f58: 3c 00 cmp $0x0,%al 7f5a: 00 00 add %al,(%eax) 7f5c: 06 push %es 7f5d: 04 42 add $0x42,%al 7f5f: 7f 00 jg 7f61 <.debug_info+0x7f61> 7f61: 00 06 add %al,(%esi) 7f63: 04 68 add $0x68,%al 7f65: 7f 00 jg 7f67 <.debug_info+0x7f67> 7f67: 00 28 add %ch,(%eax) 7f69: e7 7a out %eax,$0x7a 7f6b: 00 00 add %al,(%eax) 7f6d: 11 25 81 00 00 62 adc %esp,0x62000081 7f73: 6c insb (%dx),%es:(%edi) 7f74: 6f outsl %ds:(%esi),(%dx) 7f75: 63 6b 5f arpl %bp,0x5f(%ebx) 7f78: 64 fs 7f79: 65 gs 7f7a: 76 69 jbe 7fe5 <.debug_info+0x7fe5> 7f7c: 63 65 00 arpl %sp,0x0(%ebp) 7f7f: 9c pushf 7f80: 0a 9c 01 12 62 64 5f or 0x5f646212(%ecx,%eax,1),%bl 7f87: 64 fs 7f88: 65 gs 7f89: 76 00 jbe 7f8b <.debug_info+0x7f8b> 7f8b: 0a 9d 01 38 03 00 or 0x33801(%ebp),%bl 7f91: 00 02 add %al,(%edx) 7f93: 23 00 and (%eax),%eax 7f95: 12 62 64 adc 0x64(%edx),%ah 7f98: 5f pop %edi 7f99: 69 6e 6f 64 65 00 0a imul $0xa006564,0x6f(%esi),%ebp 7fa0: 9e sahf 7fa1: 01 54 68 00 add %edx,0x0(%eax,%ebp,2) 7fa5: 00 02 add %al,(%edx) 7fa7: 23 04 12 and (%edx,%edx,1),%eax 7faa: 62 64 5f 6f bound %esp,0x6f(%edi,%ebx,2) 7fae: 70 65 jo 8015 <.debug_info+0x8015> 7fb0: 6e outsb %ds:(%esi),(%dx) 7fb1: 65 gs 7fb2: 72 73 jb 8027 <.debug_info+0x8027> 7fb4: 00 0a add %cl,(%edx) 7fb6: 9f lahf 7fb7: 01 7a 00 add %edi,0x0(%edx) 7fba: 00 00 add %al,(%eax) 7fbc: 02 23 add (%ebx),%ah 7fbe: 08 12 or %dl,(%edx) 7fc0: 62 64 5f 6d bound %esp,0x6d(%edi,%ebx,2) 7fc4: 75 74 jne 803a <.debug_info+0x803a> 7fc6: 65 gs 7fc7: 78 00 js 7fc9 <.debug_info+0x7fc9> 7fc9: 0a a0 01 af 3c 00 or 0x3caf01(%eax),%ah 7fcf: 00 02 add %al,(%edx) 7fd1: 23 0c 12 and (%edx,%edx,1),%ecx 7fd4: 62 64 5f 6d bound %esp,0x6d(%edi,%ebx,2) 7fd8: 6f outsl %ds:(%esi),(%dx) 7fd9: 75 6e jne 8049 <.debug_info+0x8049> 7fdb: 74 5f je 803c <.debug_info+0x803c> 7fdd: 6d insl (%dx),%es:(%edi) 7fde: 75 74 jne 8054 <.debug_info+0x8054> 7fe0: 65 gs 7fe1: 78 00 js 7fe3 <.debug_info+0x7fe3> 7fe3: 0a a1 01 af 3c 00 or 0x3caf01(%ecx),%ah 7fe9: 00 02 add %al,(%edx) 7feb: 23 34 12 and (%edx,%edx,1),%esi 7fee: 62 64 5f 69 bound %esp,0x69(%edi,%ebx,2) 7ff2: 6e outsb %ds:(%esi),(%dx) 7ff3: 6f outsl %ds:(%esi),(%dx) 7ff4: 64 fs 7ff5: 65 gs 7ff6: 73 00 jae 7ff8 <.debug_info+0x7ff8> 7ff8: 0a a2 01 c8 1d 00 or 0x1dc801(%edx),%ah 7ffe: 00 02 add %al,(%edx) 8000: 23 5c 12 62 and 0x62(%edx,%edx,1),%ebx 8004: 64 fs 8005: 5f pop %edi 8006: 68 6f 6c 64 65 push $0x65646c6f 800b: 72 00 jb 800d <.debug_info+0x800d> 800d: 0a a3 01 b7 1d 00 or 0x1db701(%ebx),%ah 8013: 00 02 add %al,(%edx) 8015: 23 64 12 62 and 0x62(%edx,%edx,1),%esp 8019: 64 fs 801a: 5f pop %edi 801b: 68 6f 6c 64 65 push $0x65646c6f 8020: 72 73 jb 8095 <.debug_info+0x8095> 8022: 00 0a add %cl,(%edx) 8024: a4 movsb %ds:(%esi),%es:(%edi) 8025: 01 7a 00 add %edi,0x0(%edx) 8028: 00 00 add %al,(%eax) 802a: 02 23 add (%ebx),%ah 802c: 68 12 62 64 5f push $0x5f646212 8031: 68 6f 6c 64 65 push $0x65646c6f 8036: 72 5f jb 8097 <.debug_info+0x8097> 8038: 6c insb (%dx),%es:(%edi) 8039: 69 73 74 00 0a a6 01 imul $0x1a60a00,0x74(%ebx),%esi 8040: c8 1d 00 00 enter $0x1d,$0x0 8044: 02 23 add (%ebx),%ah 8046: 6c insb (%dx),%es:(%edi) 8047: 12 62 64 adc 0x64(%edx),%ah 804a: 5f pop %edi 804b: 63 6f 6e arpl %bp,0x6e(%edi) 804e: 74 61 je 80b1 <.debug_info+0x80b1> 8050: 69 6e 73 00 0a a8 01 imul $0x1a80a00,0x73(%esi),%ebp 8057: 25 81 00 00 02 and $0x2000081,%eax 805c: 23 74 12 62 and 0x62(%edx,%edx,1),%esi 8060: 64 fs 8061: 5f pop %edi 8062: 62 6c 6f 63 bound %ebp,0x63(%edi,%ebp,2) 8066: 6b 5f 73 69 imul $0x69,0x73(%edi),%ebx 806a: 7a 65 jp 80d1 <.debug_info+0x80d1> 806c: 00 0a add %cl,(%edx) 806e: a9 01 3b 01 00 test $0x13b01,%eax 8073: 00 02 add %al,(%edx) 8075: 23 78 12 and 0x12(%eax),%edi 8078: 62 64 5f 70 bound %esp,0x70(%edi,%ebx,2) 807c: 61 popa 807d: 72 74 jb 80f3 <.debug_info+0x80f3> 807f: 00 0a add %cl,(%edx) 8081: aa stos %al,%es:(%edi) 8082: 01 37 add %esi,(%edi) 8084: 81 00 00 02 23 7c addl $0x7c230200,(%eax) 808a: 12 62 64 adc 0x64(%edx),%ah 808d: 5f pop %edi 808e: 70 61 jo 80f1 <.debug_info+0x80f1> 8090: 72 74 jb 8106 <.debug_info+0x8106> 8092: 5f pop %edi 8093: 63 6f 75 arpl %bp,0x75(%edi) 8096: 6e outsb %ds:(%esi),(%dx) 8097: 74 00 je 8099 <.debug_info+0x8099> 8099: 0a ac 01 3b 01 00 00 or 0x13b(%ecx,%eax,1),%ch 80a0: 03 23 add (%ebx),%esp 80a2: 80 01 12 addb $0x12,(%ecx) 80a5: 62 64 5f 69 bound %esp,0x69(%edi,%ebx,2) 80a9: 6e outsb %ds:(%esi),(%dx) 80aa: 76 61 jbe 810d <.debug_info+0x810d> 80ac: 6c insb (%dx),%es:(%edi) 80ad: 69 64 61 74 65 64 00 imul $0xa006465,0x74(%ecx),%esp 80b4: 0a 80b5: ad lods %ds:(%esi),%eax 80b6: 01 7a 00 add %edi,0x0(%edx) 80b9: 00 00 add %al,(%eax) 80bb: 03 23 add (%ebx),%esp 80bd: 84 01 test %al,(%ecx) 80bf: 12 62 64 adc 0x64(%edx),%ah 80c2: 5f pop %edi 80c3: 64 69 73 6b 00 0a ae imul $0x1ae0a00,%fs:0x6b(%ebx),%esi 80ca: 01 80cb: 47 inc %edi 80cc: 81 00 00 03 23 88 addl $0x88230300,(%eax) 80d2: 01 12 add %edx,(%edx) 80d4: 62 64 5f 6c bound %esp,0x6c(%edi,%ebx,2) 80d8: 69 73 74 00 0a af 01 imul $0x1af0a00,0x74(%ebx),%esi 80df: c8 1d 00 00 enter $0x1d,$0x0 80e3: 03 23 add (%ebx),%esp 80e5: 8c 01 movw %es,(%ecx) 80e7: 12 62 64 adc 0x64(%edx),%ah 80ea: 5f pop %edi 80eb: 69 6e 6f 64 65 5f 62 imul $0x625f6564,0x6f(%esi),%ebp 80f2: 61 popa 80f3: 63 6b 69 arpl %bp,0x69(%ebx) 80f6: 6e outsb %ds:(%esi),(%dx) 80f7: 67 5f addr16 pop %edi 80f9: 64 fs 80fa: 65 gs 80fb: 76 5f jbe 815c <.debug_info+0x815c> 80fd: 69 6e 66 6f 00 0a b0 imul $0xb00a006f,0x66(%esi),%ebp 8104: 01 9a 55 00 00 03 add %ebx,0x3000055(%edx) 810a: 23 94 01 12 62 64 5f and 0x5f646212(%ecx,%eax,1),%edx 8111: 70 72 jo 8185 <.debug_info+0x8185> 8113: 69 76 61 74 65 00 0a imul $0xa006574,0x61(%esi),%esi 811a: b7 01 mov $0x1,%bh 811c: 98 cwtl 811d: 00 00 add %al,(%eax) 811f: 00 03 add %al,(%ebx) 8121: 23 98 01 00 06 04 and 0x4060001(%eax),%ebx 8127: 6d insl (%dx),%es:(%edi) 8128: 7f 00 jg 812a <.debug_info+0x812a> 812a: 00 26 add %ah,(%esi) 812c: 68 64 5f 73 74 push $0x74735f64 8131: 72 75 jb 81a8 <.debug_info+0x81a8> 8133: 63 74 00 01 arpl %si,0x1(%eax,%eax,1) 8137: 06 push %es 8138: 04 2b add $0x2b,%al 813a: 81 00 00 26 67 65 addl $0x65672600,(%eax) 8140: 6e outsb %ds:(%esi),(%dx) 8141: 64 69 73 6b 00 01 06 imul $0x4060100,%fs:0x6b(%ebx),%esi 8148: 04 8149: 3d 81 00 00 2e cmp $0x2e000081,%eax 814e: 6a 81 push $0xffffff81 8150: 00 00 add %al,(%eax) 8152: 04 0a add $0xa,%al 8154: 2e 02 16 add %cs:(%esi),%dl 8157: 67 65 6e addr16 outsb %gs:(%si),(%dx) 815a: 65 gs 815b: 72 69 jb 81c6 <.debug_info+0x81c6> 815d: 63 5f 69 arpl %bx,0x69(%edi) 8160: 70 00 jo 8162 <.debug_info+0x8162> 8162: 0a 2d 02 b7 1d 00 or 0x1db702,%ch 8168: 00 00 add %al,(%eax) 816a: 11 20 adc %esp,(%eax) 816c: 83 00 00 addl $0x0,(%eax) 816f: 69 6e 6f 64 65 5f 6f imul $0x6f5f6564,0x6f(%esi),%ebp 8176: 70 65 jo 81dd <.debug_info+0x81dd> 8178: 72 61 jb 81db <.debug_info+0x81db> 817a: 74 69 je 81e5 <.debug_info+0x81e5> 817c: 6f outsl %ds:(%esi),(%dx) 817d: 6e outsb %ds:(%esi),(%dx) 817e: 73 00 jae 8180 <.debug_info+0x8180> 8180: 54 push %esp 8181: 0a 09 or (%ecx),%cl 8183: 02 12 add (%edx),%dl 8185: 63 72 65 arpl %si,0x65(%edx) 8188: 61 popa 8189: 74 65 je 81f0 <.debug_info+0x81f0> 818b: 00 0a add %cl,(%edx) 818d: 3f aas 818e: 04 f2 add $0xf2,%al 8190: 92 xchg %eax,%edx 8191: 00 00 add %al,(%eax) 8193: 02 23 add (%ebx),%ah 8195: 00 12 add %dl,(%edx) 8197: 6c insb (%dx),%es:(%edi) 8198: 6f outsl %ds:(%esi),(%dx) 8199: 6f outsl %ds:(%esi),(%dx) 819a: 6b 75 70 00 imul $0x0,0x70(%ebp),%esi 819e: 0a 40 04 or 0x4(%eax),%al 81a1: 12 93 00 00 02 23 adc 0x23020000(%ebx),%dl 81a7: 04 12 add $0x12,%al 81a9: 6c insb (%dx),%es:(%edi) 81aa: 69 6e 6b 00 0a 41 04 imul $0x4410a00,0x6b(%esi),%ebp 81b1: 32 93 00 00 02 23 xor 0x23020000(%ebx),%dl 81b7: 08 12 or %dl,(%edx) 81b9: 75 6e jne 8229 <.debug_info+0x8229> 81bb: 6c insb (%dx),%es:(%edi) 81bc: 69 6e 6b 00 0a 42 04 imul $0x4420a00,0x6b(%esi),%ebp 81c3: 4d dec %ebp 81c4: 93 xchg %eax,%ebx 81c5: 00 00 add %al,(%eax) 81c7: 02 23 add (%ebx),%ah 81c9: 0c 12 or $0x12,%al 81cb: 73 79 jae 8246 <.debug_info+0x8246> 81cd: 6d insl (%dx),%es:(%edi) 81ce: 6c insb (%dx),%es:(%edi) 81cf: 69 6e 6b 00 0a 43 04 imul $0x4430a00,0x6b(%esi),%ebp 81d6: 6d insl (%dx),%es:(%edi) 81d7: 93 xchg %eax,%ebx 81d8: 00 00 add %al,(%eax) 81da: 02 23 add (%ebx),%ah 81dc: 10 12 adc %dl,(%edx) 81de: 6d insl (%dx),%es:(%edi) 81df: 6b 64 69 72 00 imul $0x0,0x72(%ecx,%ebp,2),%esp 81e4: 0a 44 04 8d or 0xffffff8d(%esp,%eax,1),%al 81e8: 93 xchg %eax,%ebx 81e9: 00 00 add %al,(%eax) 81eb: 02 23 add (%ebx),%ah 81ed: 14 12 adc $0x12,%al 81ef: 72 6d jb 825e <.debug_info+0x825e> 81f1: 64 69 72 00 0a 45 04 imul $0x4d04450a,%fs:0x0(%edx),%esi 81f8: 4d 81f9: 93 xchg %eax,%ebx 81fa: 00 00 add %al,(%eax) 81fc: 02 23 add (%ebx),%ah 81fe: 18 12 sbb %dl,(%edx) 8200: 6d insl (%dx),%es:(%edi) 8201: 6b 6e 6f 64 imul $0x64,0x6f(%esi),%ebp 8205: 00 0a add %cl,(%edx) 8207: 46 inc %esi 8208: 04 b2 add $0xb2,%al 820a: 93 xchg %eax,%ebx 820b: 00 00 add %al,(%eax) 820d: 02 23 add (%ebx),%ah 820f: 1c 12 sbb $0x12,%al 8211: 72 65 jb 8278 <.debug_info+0x8278> 8213: 6e outsb %ds:(%esi),(%dx) 8214: 61 popa 8215: 6d insl (%dx),%es:(%edi) 8216: 65 00 0a add %cl,%gs:(%edx) 8219: 48 dec %eax 821a: 04 d7 add $0xd7,%al 821c: 93 xchg %eax,%ebx 821d: 00 00 add %al,(%eax) 821f: 02 23 add (%ebx),%ah 8221: 20 12 and %dl,(%edx) 8223: 72 65 jb 828a <.debug_info+0x828a> 8225: 61 popa 8226: 64 fs 8227: 6c insb (%dx),%es:(%edi) 8228: 69 6e 6b 00 0a 49 04 imul $0x4490a00,0x6b(%esi),%ebp 822f: f7 93 00 00 02 23 notl 0x23020000(%ebx) 8235: 24 12 and $0x12,%al 8237: 66 6f outsw %ds:(%esi),(%dx) 8239: 6c insb (%dx),%es:(%edi) 823a: 6c insb (%dx),%es:(%edi) 823b: 6f outsl %ds:(%esi),(%dx) 823c: 77 5f ja 829d <.debug_info+0x829d> 823e: 6c insb (%dx),%es:(%edi) 823f: 69 6e 6b 00 0a 4a 04 imul $0x44a0a00,0x6b(%esi),%ebp 8246: 12 94 00 00 02 23 28 adc 0x28230200(%eax,%eax,1),%dl 824d: 12 70 75 adc 0x75(%eax),%dh 8250: 74 5f je 82b1 <.debug_info+0x82b1> 8252: 6c insb (%dx),%es:(%edi) 8253: 69 6e 6b 00 0a 4b 04 imul $0x44b0a00,0x6b(%esi),%ebp 825a: 2e cs 825b: 94 xchg %eax,%esp 825c: 00 00 add %al,(%eax) 825e: 02 23 add (%ebx),%ah 8260: 2c 12 sub $0x12,%al 8262: 74 72 je 82d6 <.debug_info+0x82d6> 8264: 75 6e jne 82d4 <.debug_info+0x82d4> 8266: 63 61 74 arpl %sp,0x74(%ecx) 8269: 65 00 0a add %cl,%gs:(%edx) 826c: 4c dec %esp 826d: 04 40 add $0x40,%al 826f: 94 xchg %eax,%esp 8270: 00 00 add %al,(%eax) 8272: 02 23 add (%ebx),%ah 8274: 30 12 xor %dl,(%edx) 8276: 70 65 jo 82dd <.debug_info+0x82dd> 8278: 72 6d jb 82e7 <.debug_info+0x82e7> 827a: 69 73 73 69 6f 6e 00 imul $0x6e6f69,0x73(%ebx),%esi 8281: 0a 4d 04 or 0x4(%ebp),%cl 8284: 60 pusha 8285: 94 xchg %eax,%esp 8286: 00 00 add %al,(%eax) 8288: 02 23 add (%ebx),%ah 828a: 34 12 xor $0x12,%al 828c: 73 65 jae 82f3 <.debug_info+0x82f3> 828e: 74 61 je 82f1 <.debug_info+0x82f1> 8290: 74 74 je 8306 <.debug_info+0x8306> 8292: 72 00 jb 8294 <.debug_info+0x8294> 8294: 0a 4e 04 or 0x4(%esi),%cl 8297: 7b 94 jnp 822d <.debug_info+0x822d> 8299: 00 00 add %al,(%eax) 829b: 02 23 add (%ebx),%ah 829d: 38 12 cmp %dl,(%edx) 829f: 67 addr16 82a0: 65 gs 82a1: 74 61 je 8304 <.debug_info+0x8304> 82a3: 74 74 je 8319 <.debug_info+0x8319> 82a5: 72 00 jb 82a7 <.debug_info+0x82a7> 82a7: 0a 4f 04 or 0x4(%edi),%cl 82aa: a1 94 00 00 02 mov 0x2000094,%eax 82af: 23 3c 12 and (%edx,%edx,1),%edi 82b2: 73 65 jae 8319 <.debug_info+0x8319> 82b4: 74 78 je 832e <.debug_info+0x832e> 82b6: 61 popa 82b7: 74 74 je 832d <.debug_info+0x832d> 82b9: 72 00 jb 82bb <.debug_info+0x82bb> 82bb: 0a 50 04 or 0x4(%eax),%dl 82be: d2 94 00 00 02 23 40 rclb %cl,0x40230200(%eax,%eax,1) 82c5: 12 67 65 adc 0x65(%edi),%ah 82c8: 74 78 je 8342 <.debug_info+0x8342> 82ca: 61 popa 82cb: 74 74 je 8341 <.debug_info+0x8341> 82cd: 72 00 jb 82cf <.debug_info+0x82cf> 82cf: 0a 51 04 or 0x4(%ecx),%dl 82d2: f7 94 00 00 02 23 44 notl 0x44230200(%eax,%eax,1) 82d9: 12 6c 69 73 adc 0x73(%ecx,%ebp,2),%ch 82dd: 74 78 je 8357 <.debug_info+0x8357> 82df: 61 popa 82e0: 74 74 je 8356 <.debug_info+0x8356> 82e2: 72 00 jb 82e4 <.debug_info+0x82e4> 82e4: 0a 52 04 or 0x4(%edx),%dl 82e7: 17 pop %ss 82e8: 95 xchg %eax,%ebp 82e9: 00 00 add %al,(%eax) 82eb: 02 23 add (%ebx),%ah 82ed: 48 dec %eax 82ee: 12 72 65 adc 0x65(%edx),%dh 82f1: 6d insl (%dx),%es:(%edi) 82f2: 6f outsl %ds:(%esi),(%dx) 82f3: 76 65 jbe 835a <.debug_info+0x835a> 82f5: 78 61 js 8358 <.debug_info+0x8358> 82f7: 74 74 je 836d <.debug_info+0x836d> 82f9: 72 00 jb 82fb <.debug_info+0x82fb> 82fb: 0a 53 04 or 0x4(%ebx),%dl 82fe: 32 95 00 00 02 23 xor 0x23020000(%ebp),%dl 8304: 4c dec %esp 8305: 12 74 72 75 adc 0x75(%edx,%esi,2),%dh 8309: 6e outsb %ds:(%esi),(%dx) 830a: 63 61 74 arpl %sp,0x74(%ecx) 830d: 65 gs 830e: 5f pop %edi 830f: 72 61 jb 8372 <.debug_info+0x8372> 8311: 6e outsb %ds:(%esi),(%dx) 8312: 67 65 00 0a addr16 add %cl,%gs:(%bp,%si) 8316: 54 push %esp 8317: 04 4e add $0x4e,%al 8319: 95 xchg %eax,%ebp 831a: 00 00 add %al,(%eax) 831c: 02 23 add (%ebx),%ah 831e: 50 push %eax 831f: 00 06 add %al,(%esi) 8321: 04 6a add $0x6a,%al 8323: 81 00 00 11 5f 85 addl $0x855f1100,(%eax) 8329: 00 00 add %al,(%eax) 832b: 66 69 6c 65 5f 6f 70 imul $0x706f,0x5f(%ebp),%bp 8332: 65 gs 8333: 72 61 jb 8396 <.debug_info+0x8396> 8335: 74 69 je 83a0 <.debug_info+0x83a0> 8337: 6f outsl %ds:(%esi),(%dx) 8338: 6e outsb %ds:(%esi),(%dx) 8339: 73 00 jae 833b <.debug_info+0x833b> 833b: 74 0a je 8347 <.debug_info+0x8347> 833d: 0a 02 or (%edx),%al 833f: 13 2f adc (%edi),%ebp 8341: 01 00 add %eax,(%eax) 8343: 00 0a add %cl,(%edx) 8345: 1f pop %ds 8346: 04 3a add $0x3a,%al 8348: 5a pop %edx 8349: 00 00 add %al,(%eax) 834b: 02 23 add (%ebx),%ah 834d: 00 12 add %dl,(%edx) 834f: 6c insb (%dx),%es:(%edi) 8350: 6c insb (%dx),%es:(%edi) 8351: 73 65 jae 83b8 <.debug_info+0x83b8> 8353: 65 6b 00 0a imul $0xa,%gs:(%eax),%eax 8357: 20 04 40 and %al,(%eax,%eax,2) 835a: 90 nop 835b: 00 00 add %al,(%eax) 835d: 02 23 add (%ebx),%ah 835f: 04 12 add $0x12,%al 8361: 72 65 jb 83c8 <.debug_info+0x83c8> 8363: 61 popa 8364: 64 00 0a add %cl,%fs:(%edx) 8367: 21 04 6b and %eax,(%ebx,%ebp,2) 836a: 90 nop 836b: 00 00 add %al,(%eax) 836d: 02 23 add (%ebx),%ah 836f: 08 12 or %dl,(%edx) 8371: 61 popa 8372: 69 6f 5f 72 65 61 64 imul $0x64616572,0x5f(%edi),%ebp 8379: 00 0a add %cl,(%edx) 837b: 22 04 90 and (%eax,%edx,4),%al 837e: 90 nop 837f: 00 00 add %al,(%eax) 8381: 02 23 add (%ebx),%ah 8383: 0c 12 or $0x12,%al 8385: 77 72 ja 83f9 <.debug_info+0x83f9> 8387: 69 74 65 00 0a 23 04 imul $0xb504230a,0x0(%ebp),%esi 838e: b5 838f: 90 nop 8390: 00 00 add %al,(%eax) 8392: 02 23 add (%ebx),%ah 8394: 10 12 adc %dl,(%edx) 8396: 61 popa 8397: 69 6f 5f 77 72 69 74 imul $0x74697277,0x5f(%edi),%ebp 839e: 65 00 0a add %cl,%gs:(%edx) 83a1: 24 04 and $0x4,%al 83a3: da 90 00 00 02 23 ficoml 0x23020000(%eax) 83a9: 14 12 adc $0x12,%al 83ab: 72 65 jb 8412 <.debug_info+0x8412> 83ad: 61 popa 83ae: 64 64 69 72 00 0a 25 imul $0xfa04250a,%fs:0x0(%edx),%esi 83b5: 04 fa 83b7: 90 nop 83b8: 00 00 add %al,(%eax) 83ba: 02 23 add (%ebx),%ah 83bc: 18 12 sbb %dl,(%edx) 83be: 70 6f jo 842f <.debug_info+0x842f> 83c0: 6c insb (%dx),%es:(%edi) 83c1: 6c insb (%dx),%es:(%edi) 83c2: 00 0a add %cl,(%edx) 83c4: 26 es 83c5: 04 2f add $0x2f,%al 83c7: 91 xchg %eax,%ecx 83c8: 00 00 add %al,(%eax) 83ca: 02 23 add (%ebx),%ah 83cc: 1c 12 sbb $0x12,%al 83ce: 69 6f 63 74 6c 00 0a imul $0xa006c74,0x63(%edi),%ebp 83d5: 27 daa 83d6: 04 37 add $0x37,%al 83d8: 8f 00 popl (%eax) 83da: 00 02 add %al,(%edx) 83dc: 23 20 and (%eax),%esp 83de: 12 75 6e adc 0x6e(%ebp),%dh 83e1: 6c insb (%dx),%es:(%edi) 83e2: 6f outsl %ds:(%esi),(%dx) 83e3: 63 6b 65 arpl %bp,0x65(%ebx) 83e6: 64 fs 83e7: 5f pop %edi 83e8: 69 6f 63 74 6c 00 0a imul $0xa006c74,0x63(%edi),%ebp 83ef: 28 04 57 sub %al,(%edi,%edx,2) 83f2: 8f 00 popl (%eax) 83f4: 00 02 add %al,(%edx) 83f6: 23 24 12 and (%edx,%edx,1),%esp 83f9: 63 6f 6d arpl %bp,0x6d(%edi) 83fc: 70 61 jo 845f <.debug_info+0x845f> 83fe: 74 5f je 845f <.debug_info+0x845f> 8400: 69 6f 63 74 6c 00 0a imul $0xa006c74,0x63(%edi),%ebp 8407: 29 04 57 sub %eax,(%edi,%edx,2) 840a: 8f 00 popl (%eax) 840c: 00 02 add %al,(%edx) 840e: 23 28 and (%eax),%ebp 8410: 12 6d 6d adc 0x6d(%ebp),%ch 8413: 61 popa 8414: 70 00 jo 8416 <.debug_info+0x8416> 8416: 0a 2a or (%edx),%ch 8418: 04 4a add $0x4a,%al 841a: 91 xchg %eax,%ecx 841b: 00 00 add %al,(%eax) 841d: 02 23 add (%ebx),%ah 841f: 2c 12 sub $0x12,%al 8421: 6f outsl %ds:(%esi),(%dx) 8422: 70 65 jo 8489 <.debug_info+0x8489> 8424: 6e outsb %ds:(%esi),(%dx) 8425: 00 0a add %cl,(%edx) 8427: 2b 04 12 sub (%edx,%edx,1),%eax 842a: 8f 00 popl (%eax) 842c: 00 02 add %al,(%edx) 842e: 23 30 and (%eax),%esi 8430: 12 66 6c adc 0x6c(%esi),%ah 8433: 75 73 jne 84a8 <.debug_info+0x84a8> 8435: 68 00 0a 2c 04 push $0x42c0a00 843a: 65 gs 843b: 91 xchg %eax,%ecx 843c: 00 00 add %al,(%eax) 843e: 02 23 add (%ebx),%ah 8440: 34 13 xor $0x13,%al 8442: 1b 03 sbb (%ebx),%eax 8444: 00 00 add %al,(%eax) 8446: 0a 2d 04 12 8f 00 or 0x8f1204,%ch 844c: 00 02 add %al,(%edx) 844e: 23 38 and (%eax),%edi 8450: 12 66 73 adc 0x73(%esi),%ah 8453: 79 6e jns 84c3 <.debug_info+0x84c3> 8455: 63 00 arpl %ax,(%eax) 8457: 0a 2e or (%esi),%ch 8459: 04 85 add $0x85,%al 845b: 91 xchg %eax,%ecx 845c: 00 00 add %al,(%eax) 845e: 02 23 add (%ebx),%ah 8460: 3c 12 cmp $0x12,%al 8462: 61 popa 8463: 69 6f 5f 66 73 79 6e imul $0x6e797366,0x5f(%edi),%ebp 846a: 63 00 arpl %ax,(%eax) 846c: 0a 2f or (%edi),%ch 846e: 04 a0 add $0xa0,%al 8470: 91 xchg %eax,%ecx 8471: 00 00 add %al,(%eax) 8473: 02 23 add (%ebx),%ah 8475: 40 inc %eax 8476: 12 66 61 adc 0x61(%esi),%ah 8479: 73 79 jae 84f4 <.debug_info+0x84f4> 847b: 6e outsb %ds:(%esi),(%dx) 847c: 63 00 arpl %ax,(%eax) 847e: 0a 30 or (%eax),%dh 8480: 04 c0 add $0xc0,%al 8482: 91 xchg %eax,%ecx 8483: 00 00 add %al,(%eax) 8485: 02 23 add (%ebx),%ah 8487: 44 inc %esp 8488: 13 d6 adc %esi,%edx 848a: 02 00 add (%eax),%al 848c: 00 0a add %cl,(%edx) 848e: 31 04 e0 xor %eax,(%eax) 8491: 91 xchg %eax,%ecx 8492: 00 00 add %al,(%eax) 8494: 02 23 add (%ebx),%ah 8496: 48 dec %eax 8497: 12 72 65 adc 0x65(%edx),%dh 849a: 61 popa 849b: 64 fs 849c: 76 00 jbe 849e <.debug_info+0x849e> 849e: 0a 32 or (%edx),%dh 84a0: 04 05 add $0x5,%al 84a2: 92 xchg %eax,%edx 84a3: 00 00 add %al,(%eax) 84a5: 02 23 add (%ebx),%ah 84a7: 4c dec %esp 84a8: 12 77 72 adc 0x72(%edi),%dh 84ab: 69 74 65 76 00 0a 33 imul $0x4330a00,0x76(%ebp),%esi 84b2: 04 84b3: 05 92 00 00 02 add $0x2000092,%eax 84b8: 23 50 12 and 0x12(%eax),%edx 84bb: 73 65 jae 8522 <.debug_info+0x8522> 84bd: 6e outsb %ds:(%esi),(%dx) 84be: 64 66 69 6c 65 00 0a imul $0x340a,%fs:0x0(%ebp),%bp 84c5: 34 84c6: 04 2f add $0x2f,%al 84c8: 92 xchg %eax,%edx 84c9: 00 00 add %al,(%eax) 84cb: 02 23 add (%ebx),%ah 84cd: 54 push %esp 84ce: 12 73 65 adc 0x65(%ebx),%dh 84d1: 6e outsb %ds:(%esi),(%dx) 84d2: 64 fs 84d3: 70 61 jo 8536 <.debug_info+0x8536> 84d5: 67 65 00 0a addr16 add %cl,%gs:(%bp,%si) 84d9: 35 04 5e 92 00 xor $0x925e04,%eax 84de: 00 02 add %al,(%edx) 84e0: 23 58 13 and 0x13(%eax),%ebx 84e3: 3c 00 cmp $0x0,%al 84e5: 00 00 add %al,(%eax) 84e7: 0a 36 or (%esi),%dh 84e9: 04 e0 add $0xe0,%al 84eb: 4e dec %esi 84ec: 00 00 add %al,(%eax) 84ee: 02 23 add (%ebx),%ah 84f0: 5c pop %esp 84f1: 12 63 68 adc 0x68(%ebx),%ah 84f4: 65 63 6b 5f arpl %bp,%gs:0x5f(%ebx) 84f8: 66 data16 84f9: 6c insb (%dx),%es:(%edi) 84fa: 61 popa 84fb: 67 73 00 addr16 jae 84fe <.debug_info+0x84fe> 84fe: 0a 37 or (%edi),%dh 8500: 04 3d add $0x3d,%al 8502: 2d 00 00 02 23 sub $0x23020000,%eax 8507: 60 pusha 8508: 12 64 69 72 adc 0x72(%ecx,%ebp,2),%ah 850c: 5f pop %edi 850d: 6e outsb %ds:(%esi),(%dx) 850e: 6f outsl %ds:(%esi),(%dx) 850f: 74 69 je 857a <.debug_info+0x857a> 8511: 66 data16 8512: 79 00 jns 8514 <.debug_info+0x8514> 8514: 0a 38 or (%eax),%bh 8516: 04 79 add $0x79,%al 8518: 92 xchg %eax,%edx 8519: 00 00 add %al,(%eax) 851b: 02 23 add (%ebx),%ah 851d: 64 12 66 6c adc %fs:0x6c(%esi),%ah 8521: 6f outsl %ds:(%esi),(%dx) 8522: 63 6b 00 arpl %bp,0x0(%ebx) 8525: 0a 39 or (%ecx),%bh 8527: 04 e0 add $0xe0,%al 8529: 91 xchg %eax,%ecx 852a: 00 00 add %al,(%eax) 852c: 02 23 add (%ebx),%ah 852e: 68 12 73 70 6c push $0x6c707312 8533: 69 63 65 5f 77 72 69 imul $0x6972775f,0x65(%ebx),%esp 853a: 74 65 je 85a1 <.debug_info+0x85a1> 853c: 00 0a add %cl,(%edx) 853e: 3a 04 a3 cmp (%ebx),%al 8541: 92 xchg %eax,%edx 8542: 00 00 add %al,(%eax) 8544: 02 23 add (%ebx),%ah 8546: 6c insb (%dx),%es:(%edi) 8547: 12 73 70 adc 0x70(%ebx),%dh 854a: 6c insb (%dx),%es:(%edi) 854b: 69 63 65 5f 72 65 61 imul $0x6165725f,0x65(%ebx),%esp 8552: 64 00 0a add %cl,%fs:(%edx) 8555: 3b 04 cd 92 00 00 02 cmp 0x2000092(,%ecx,8),%eax 855c: 23 70 00 and 0x0(%eax),%esi 855f: 06 push %es 8560: 04 65 add $0x65,%al 8562: 85 00 test %eax,(%eax) 8564: 00 28 add %ch,(%eax) 8566: 26 83 00 00 addl $0x0,%es:(%eax) 856a: 11 b5 86 00 00 66 adc %esi,0x66000086(%ebp) 8570: 69 6c 65 5f 6c 6f 63 imul $0x6b636f6c,0x5f(%ebp),%ebp 8577: 6b 8578: 00 6c 0a 0c add %ch,0xc(%edx,%ecx,1) 857c: 02 12 add (%edx),%dl 857e: 66 data16 857f: 6c insb (%dx),%es:(%edi) 8580: 5f pop %edi 8581: 6e outsb %ds:(%esi),(%dx) 8582: 65 gs 8583: 78 74 js 85f9 <.debug_info+0x85f9> 8585: 00 0a add %cl,(%edx) 8587: f7 02 b5 86 00 00 testl $0x86b5,(%edx) 858d: 02 23 add (%ebx),%ah 858f: 00 12 add %dl,(%edx) 8591: 66 data16 8592: 6c insb (%dx),%es:(%edi) 8593: 5f pop %edi 8594: 6c insb (%dx),%es:(%edi) 8595: 69 6e 6b 00 0a f8 02 imul $0x2f80a00,0x6b(%esi),%ebp 859c: c8 1d 00 00 enter $0x1d,$0x0 85a0: 02 23 add (%ebx),%ah 85a2: 04 12 add $0x12,%al 85a4: 66 data16 85a5: 6c insb (%dx),%es:(%edi) 85a6: 5f pop %edi 85a7: 62 6c 6f 63 bound %ebp,0x63(%edi,%ebp,2) 85ab: 6b 00 0a imul $0xa,(%eax),%eax 85ae: f9 stc 85af: 02 c8 add %al,%cl 85b1: 1d 00 00 02 23 sbb $0x23020000,%eax 85b6: 0c 12 or $0x12,%al 85b8: 66 data16 85b9: 6c insb (%dx),%es:(%edi) 85ba: 5f pop %edi 85bb: 6f outsl %ds:(%esi),(%dx) 85bc: 77 6e ja 862c <.debug_info+0x862c> 85be: 65 gs 85bf: 72 00 jb 85c1 <.debug_info+0x85c1> 85c1: 0a fa or %dl,%bh 85c3: 02 6c 88 00 add 0x0(%eax,%ecx,4),%ch 85c7: 00 02 add %al,(%edx) 85c9: 23 14 12 and (%edx,%edx,1),%edx 85cc: 66 data16 85cd: 6c insb (%dx),%es:(%edi) 85ce: 5f pop %edi 85cf: 70 69 jo 863a <.debug_info+0x863a> 85d1: 64 00 0a add %cl,%fs:(%edx) 85d4: fb sti 85d5: 02 3b add (%ebx),%bh 85d7: 01 00 add %eax,(%eax) 85d9: 00 02 add %al,(%edx) 85db: 23 18 and (%eax),%ebx 85dd: 12 66 6c adc 0x6c(%esi),%ah 85e0: 5f pop %edi 85e1: 77 61 ja 8644 <.debug_info+0x8644> 85e3: 69 74 00 0a fc 02 9d imul $0x219d02fc,0xa(%eax,%eax,1),%esi 85ea: 21 85eb: 00 00 add %al,(%eax) 85ed: 02 23 add (%ebx),%ah 85ef: 1c 12 sbb $0x12,%al 85f1: 66 data16 85f2: 6c insb (%dx),%es:(%edi) 85f3: 5f pop %edi 85f4: 66 69 6c 65 00 0a fd imul $0xfd0a,0x0(%ebp),%bp 85fb: 02 03 add (%ebx),%al 85fd: 47 inc %edi 85fe: 00 00 add %al,(%eax) 8600: 02 23 add (%ebx),%ah 8602: 34 12 xor $0x12,%al 8604: 66 data16 8605: 6c insb (%dx),%es:(%edi) 8606: 5f pop %edi 8607: 66 data16 8608: 6c insb (%dx),%es:(%edi) 8609: 61 popa 860a: 67 73 00 addr16 jae 860d <.debug_info+0x860d> 860d: 0a fe or %dh,%bh 860f: 02 57 02 add 0x2(%edi),%dl 8612: 00 00 add %al,(%eax) 8614: 02 23 add (%ebx),%ah 8616: 38 12 cmp %dl,(%edx) 8618: 66 data16 8619: 6c insb (%dx),%es:(%edi) 861a: 5f pop %edi 861b: 74 79 je 8696 <.debug_info+0x8696> 861d: 70 65 jo 8684 <.debug_info+0x8684> 861f: 00 0a add %cl,(%edx) 8621: ff 02 incl (%edx) 8623: 57 push %edi 8624: 02 00 add (%eax),%al 8626: 00 02 add %al,(%edx) 8628: 23 39 and (%ecx),%edi 862a: 12 66 6c adc 0x6c(%esi),%ah 862d: 5f pop %edi 862e: 73 74 jae 86a4 <.debug_info+0x86a4> 8630: 61 popa 8631: 72 74 jb 86a7 <.debug_info+0x86a7> 8633: 00 0a add %cl,(%edx) 8635: 00 03 add %al,(%ebx) 8637: a7 cmpsl %es:(%edi),%ds:(%esi) 8638: 03 00 add (%eax),%eax 863a: 00 02 add %al,(%edx) 863c: 23 3c 12 and (%edx,%edx,1),%edi 863f: 66 data16 8640: 6c insb (%dx),%es:(%edi) 8641: 5f pop %edi 8642: 65 6e outsb %gs:(%esi),(%dx) 8644: 64 00 0a add %cl,%fs:(%edx) 8647: 01 03 add %eax,(%ebx) 8649: a7 cmpsl %es:(%edi),%ds:(%esi) 864a: 03 00 add (%eax),%eax 864c: 00 02 add %al,(%edx) 864e: 23 44 12 66 and 0x66(%edx,%edx,1),%eax 8652: 6c insb (%dx),%es:(%edi) 8653: 5f pop %edi 8654: 66 61 popaw 8656: 73 79 jae 86d1 <.debug_info+0x86d1> 8658: 6e outsb %ds:(%esi),(%dx) 8659: 63 00 arpl %ax,(%eax) 865b: 0a 03 or (%ebx),%al 865d: 03 19 add (%ecx),%ebx 865f: 8b 00 mov (%eax),%eax 8661: 00 02 add %al,(%edx) 8663: 23 4c 12 66 and 0x66(%edx,%edx,1),%ecx 8667: 6c insb (%dx),%es:(%edi) 8668: 5f pop %edi 8669: 62 72 65 bound %esi,0x65(%edx) 866c: 61 popa 866d: 6b 5f 74 69 imul $0x69,0x74(%edi),%ebx 8671: 6d insl (%dx),%es:(%edi) 8672: 65 00 0a add %cl,%gs:(%edx) 8675: 04 03 add $0x3,%al 8677: 98 cwtl 8678: 00 00 add %al,(%eax) 867a: 00 02 add %al,(%edx) 867c: 23 50 12 and 0x12(%eax),%edx 867f: 66 data16 8680: 6c insb (%dx),%es:(%edi) 8681: 5f pop %edi 8682: 6f outsl %ds:(%esi),(%dx) 8683: 70 73 jo 86f8 <.debug_info+0x86f8> 8685: 00 0a add %cl,(%edx) 8687: 06 push %es 8688: 03 1f add (%edi),%ebx 868a: 8b 00 mov (%eax),%eax 868c: 00 02 add %al,(%edx) 868e: 23 54 12 66 and 0x66(%edx,%edx,1),%edx 8692: 6c insb (%dx),%es:(%edi) 8693: 5f pop %edi 8694: 6c insb (%dx),%es:(%edi) 8695: 6d insl (%dx),%es:(%edi) 8696: 6f outsl %ds:(%esi),(%dx) 8697: 70 73 jo 870c <.debug_info+0x870c> 8699: 00 0a add %cl,(%edx) 869b: 07 pop %es 869c: 03 25 8b 00 00 02 add 0x200008b,%esp 86a2: 23 58 12 and 0x12(%eax),%ebx 86a5: 66 data16 86a6: 6c insb (%dx),%es:(%edi) 86a7: 5f pop %edi 86a8: 75 00 jne 86aa <.debug_info+0x86aa> 86aa: 0a 0b or (%ebx),%cl 86ac: 03 92 8a 00 00 02 add 0x200008a(%edx),%edx 86b2: 23 5c 00 06 and 0x6(%eax,%eax,1),%ebx 86b6: 04 6a add $0x6a,%al 86b8: 85 00 test %eax,(%eax) 86ba: 00 03 add %al,(%ebx) 86bc: cb lret 86bd: 86 00 xchg %al,(%eax) 86bf: 00 6b 76 add %ch,0x76(%ebx) 86c2: 00 00 add %al,(%eax) 86c4: 04 91 add $0x91,%al 86c6: 00 00 add %al,(%eax) 86c8: 00 01 add %al,(%ecx) 86ca: 00 26 add %ah,(%esi) 86cc: 63 64 65 76 arpl %sp,0x76(%ebp) 86d0: 00 01 add %al,(%ecx) 86d2: 06 push %es 86d3: 04 cb add $0xcb,%al 86d5: 86 00 xchg %al,(%eax) 86d7: 00 26 add %ah,(%esi) 86d9: 64 6e outsb %fs:(%esi),(%dx) 86db: 6f outsl %ds:(%esi),(%dx) 86dc: 74 69 je 8747 <.debug_info+0x8747> 86de: 66 data16 86df: 79 5f jns 8740 <.debug_info+0x8740> 86e1: 73 74 jae 8757 <.debug_info+0x8757> 86e3: 72 75 jb 875a <.debug_info+0x875a> 86e5: 63 74 00 01 arpl %si,0x1(%eax,%eax,1) 86e9: 06 push %es 86ea: 04 d8 add $0xd8,%al 86ec: 86 00 xchg %al,(%eax) 86ee: 00 11 add %dl,(%ecx) 86f0: 63 87 00 00 66 6f arpl %ax,0x6f660000(%edi) 86f6: 77 6e ja 8766 <.debug_info+0x8766> 86f8: 5f pop %edi 86f9: 73 74 jae 876f <.debug_info+0x876f> 86fb: 72 75 jb 8772 <.debug_info+0x8772> 86fd: 63 74 00 24 arpl %si,0x24(%eax,%eax,1) 8701: 0a 85 02 13 d6 02 or 0x2d61302(%ebp),%al 8707: 00 00 add %al,(%eax) 8709: 0a 86 02 71 1f 00 or 0x1f7102(%esi),%al 870f: 00 02 add %al,(%edx) 8711: 23 00 and (%eax),%eax 8713: 12 70 69 adc 0x69(%eax),%dh 8716: 64 00 0a add %cl,%fs:(%edx) 8719: 87 02 xchg %eax,(%edx) 871b: 7a 00 jp 871d <.debug_info+0x871d> 871d: 00 00 add %al,(%eax) 871f: 02 23 add (%ebx),%ah 8721: 10 12 adc %dl,(%edx) 8723: 75 69 jne 878e <.debug_info+0x878e> 8725: 64 00 0a add %cl,%fs:(%edx) 8728: 88 02 mov %al,(%edx) 872a: 8d 03 lea (%ebx),%eax 872c: 00 00 add %al,(%eax) 872e: 02 23 add (%ebx),%ah 8730: 14 12 adc $0x12,%al 8732: 65 gs 8733: 75 69 jne 879e <.debug_info+0x879e> 8735: 64 00 0a add %cl,%fs:(%edx) 8738: 88 02 mov %al,(%edx) 873a: 8d 03 lea (%ebx),%eax 873c: 00 00 add %al,(%eax) 873e: 02 23 add (%ebx),%ah 8740: 18 13 sbb %dl,(%ebx) 8742: bc 01 00 00 0a mov $0xa000001,%esp 8747: 89 02 mov %eax,(%edx) 8749: b7 1d mov $0x1d,%bh 874b: 00 00 add %al,(%eax) 874d: 02 23 add (%ebx),%ah 874f: 1c 12 sbb $0x12,%al 8751: 73 69 jae 87bc <.debug_info+0x87bc> 8753: 67 6e addr16 outsb %ds:(%si),(%dx) 8755: 75 6d jne 87c4 <.debug_info+0x87c4> 8757: 00 0a add %cl,(%edx) 8759: 8a 02 mov (%edx),%al 875b: 7a 00 jp 875d <.debug_info+0x875d> 875d: 00 00 add %al,(%eax) 875f: 02 23 add (%ebx),%ah 8761: 20 00 and %al,(%eax) 8763: 11 3f adc %edi,(%edi) 8765: 88 00 mov %al,(%eax) 8767: 00 66 69 add %ah,0x69(%esi) 876a: 6c insb (%dx),%es:(%edi) 876b: 65 gs 876c: 5f pop %edi 876d: 72 61 jb 87d0 <.debug_info+0x87d0> 876f: 5f pop %edi 8770: 73 74 jae 87e6 <.debug_info+0x87e6> 8772: 61 popa 8773: 74 65 je 87da <.debug_info+0x87da> 8775: 00 28 add %ch,(%eax) 8777: 0a 90 02 12 73 74 or 0x74731202(%eax),%dl 877d: 61 popa 877e: 72 74 jb 87f4 <.debug_info+0x87f4> 8780: 00 0a add %cl,(%edx) 8782: 91 xchg %eax,%ecx 8783: 02 98 00 00 00 02 add 0x2000000(%eax),%bl 8789: 23 00 and (%eax),%eax 878b: 12 73 69 adc 0x69(%ebx),%dh 878e: 7a 65 jp 87f5 <.debug_info+0x87f5> 8790: 00 0a add %cl,(%edx) 8792: 92 xchg %eax,%edx 8793: 02 98 00 00 00 02 add 0x2000000(%eax),%bl 8799: 23 04 13 and (%ebx,%edx,1),%eax 879c: b3 03 mov $0x3,%bl 879e: 00 00 add %al,(%eax) 87a0: 0a 93 02 98 00 00 or 0x9802(%ebx),%dl 87a6: 00 02 add %al,(%edx) 87a8: 23 08 and (%eax),%ecx 87aa: 12 63 61 adc 0x61(%ebx),%ah 87ad: 63 68 65 arpl %bp,0x65(%eax) 87b0: 5f pop %edi 87b1: 68 69 74 00 0a push $0xa007469 87b6: 94 xchg %eax,%esp 87b7: 02 98 00 00 00 02 add 0x2000000(%eax),%bl 87bd: 23 0c 12 and (%edx,%edx,1),%ecx 87c0: 70 72 jo 8834 <.debug_info+0x8834> 87c2: 65 gs 87c3: 76 5f jbe 8824 <.debug_info+0x8824> 87c5: 70 61 jo 8828 <.debug_info+0x8828> 87c7: 67 65 00 0a addr16 add %cl,%gs:(%bp,%si) 87cb: 95 xchg %eax,%ebp 87cc: 02 98 00 00 00 02 add 0x2000000(%eax),%bl 87d2: 23 10 and (%eax),%edx 87d4: 12 61 68 adc 0x68(%ecx),%ah 87d7: 65 gs 87d8: 61 popa 87d9: 64 fs 87da: 5f pop %edi 87db: 73 74 jae 8851 <.debug_info+0x8851> 87dd: 61 popa 87de: 72 74 jb 8854 <.debug_info+0x8854> 87e0: 00 0a add %cl,(%edx) 87e2: 96 xchg %eax,%esi 87e3: 02 98 00 00 00 02 add 0x2000000(%eax),%bl 87e9: 23 14 12 and (%edx,%edx,1),%edx 87ec: 61 popa 87ed: 68 65 61 64 5f push $0x5f646165 87f2: 73 69 jae 885d <.debug_info+0x885d> 87f4: 7a 65 jp 885b <.debug_info+0x885b> 87f6: 00 0a add %cl,(%edx) 87f8: 97 xchg %eax,%edi 87f9: 02 98 00 00 00 02 add 0x2000000(%eax),%bl 87ff: 23 18 and (%eax),%ebx 8801: 12 72 61 adc 0x61(%edx),%dh 8804: 5f pop %edi 8805: 70 61 jo 8868 <.debug_info+0x8868> 8807: 67 addr16 8808: 65 gs 8809: 73 00 jae 880b <.debug_info+0x880b> 880b: 0a 98 02 98 00 00 or 0x9802(%eax),%bl 8811: 00 02 add %al,(%edx) 8813: 23 1c 12 and (%edx,%edx,1),%ebx 8816: 6d insl (%dx),%es:(%edi) 8817: 6d insl (%dx),%es:(%edi) 8818: 61 popa 8819: 70 5f jo 887a <.debug_info+0x887a> 881b: 68 69 74 00 0a push $0xa007469 8820: 99 cltd 8821: 02 98 00 00 00 02 add 0x2000000(%eax),%bl 8827: 23 20 and (%eax),%esp 8829: 12 6d 6d adc 0x6d(%ebp),%ch 882c: 61 popa 882d: 70 5f jo 888e <.debug_info+0x888e> 882f: 6d insl (%dx),%es:(%edi) 8830: 69 73 73 00 0a 9a 02 imul $0x29a0a00,0x73(%ebx),%esi 8837: 98 cwtl 8838: 00 00 add %al,(%eax) 883a: 00 02 add %al,(%edx) 883c: 23 24 00 and (%eax,%eax,1),%esp 883f: 2e cs 8840: 6c insb (%dx),%es:(%edi) 8841: 88 00 mov %al,(%eax) 8843: 00 08 add %cl,(%eax) 8845: 0a a7 02 16 66 75 or 0x75661602(%edi),%ah 884b: 5f pop %edi 884c: 6c insb (%dx),%es:(%edi) 884d: 69 73 74 00 0a a5 02 imul $0x2a50a00,0x74(%ebx),%esi 8854: c8 1d 00 00 enter $0x1d,$0x0 8858: 16 push %ss 8859: 66 data16 885a: 75 5f jne 88bb <.debug_info+0x88bb> 885c: 72 63 jb 88c1 <.debug_info+0x88c1> 885e: 75 68 jne 88c8 <.debug_info+0x88c8> 8860: 65 gs 8861: 61 popa 8862: 64 00 0a add %cl,%fs:(%edx) 8865: a6 cmpsb %es:(%edi),%ds:(%esi) 8866: 02 d0 add %al,%dl 8868: 3d 00 00 00 18 cmp $0x18000000,%eax 886d: 66 data16 886e: 6c insb (%dx),%es:(%edi) 886f: 5f pop %edi 8870: 6f outsl %ds:(%esi),(%dx) 8871: 77 6e ja 88e1 <.debug_info+0x88e1> 8873: 65 gs 8874: 72 5f jb 88d5 <.debug_info+0x88d5> 8876: 74 00 je 8878 <.debug_info+0x8878> 8878: 0a e0 or %al,%ah 887a: 02 03 add (%ebx),%al 887c: 55 push %ebp 887d: 00 00 add %al,(%eax) 887f: 11 e6 adc %esp,%esi 8881: 88 00 mov %al,(%eax) 8883: 00 66 69 add %ah,0x69(%esi) 8886: 6c insb (%dx),%es:(%edi) 8887: 65 gs 8888: 5f pop %edi 8889: 6c insb (%dx),%es:(%edi) 888a: 6f outsl %ds:(%esi),(%dx) 888b: 63 6b 5f arpl %bp,0x5f(%ebx) 888e: 6f outsl %ds:(%esi),(%dx) 888f: 70 65 jo 88f6 <.debug_info+0x88f6> 8891: 72 61 jb 88f4 <.debug_info+0x88f4> 8893: 74 69 je 88fe <.debug_info+0x88fe> 8895: 6f outsl %ds:(%esi),(%dx) 8896: 6e outsb %ds:(%esi),(%dx) 8897: 73 00 jae 8899 <.debug_info+0x8899> 8899: 10 0a adc %cl,(%edx) 889b: e2 02 loop 889f <.debug_info+0x889f> 889d: 12 66 6c adc 0x6c(%esi),%ah 88a0: 5f pop %edi 88a1: 69 6e 73 65 72 74 00 imul $0x747265,0x73(%esi),%ebp 88a8: 0a e3 or %bl,%ah 88aa: 02 f2 add %dl,%dh 88ac: 88 00 mov %al,(%eax) 88ae: 00 02 add %al,(%edx) 88b0: 23 00 and (%eax),%eax 88b2: 12 66 6c adc 0x6c(%esi),%ah 88b5: 5f pop %edi 88b6: 72 65 jb 891d <.debug_info+0x891d> 88b8: 6d insl (%dx),%es:(%edi) 88b9: 6f outsl %ds:(%esi),(%dx) 88ba: 76 65 jbe 8921 <.debug_info+0x8921> 88bc: 00 0a add %cl,(%edx) 88be: e4 02 in $0x2,%al 88c0: f2 88 00 repnz mov %al,(%eax) 88c3: 00 02 add %al,(%edx) 88c5: 23 04 13 and (%ebx,%edx,1),%eax 88c8: 6f outsl %ds:(%esi),(%dx) 88c9: 02 00 add (%eax),%al 88cb: 00 0a add %cl,(%edx) 88cd: e5 02 in $0x2,%eax 88cf: 09 89 00 00 02 23 or %ecx,0x23020000(%ecx) 88d5: 08 13 or %dl,(%ebx) 88d7: 58 pop %eax 88d8: 03 00 add (%eax),%eax 88da: 00 0a add %cl,(%edx) 88dc: e6 02 out %al,$0x2 88de: f2 88 00 repnz mov %al,(%eax) 88e1: 00 02 add %al,(%edx) 88e3: 23 0c 00 and (%eax,%eax,1),%ecx 88e6: 07 pop %es 88e7: f2 88 00 repnz mov %al,(%eax) 88ea: 00 01 add %al,(%ecx) 88ec: 08 b5 86 00 00 00 or %dh,0x86(%ebp) 88f2: 06 push %es 88f3: 04 e6 add $0xe6,%al 88f5: 88 00 mov %al,(%eax) 88f7: 00 07 add %al,(%edi) 88f9: 09 89 00 00 01 08 or %ecx,0x8010000(%ecx) 88ff: b5 86 mov $0x86,%ch 8901: 00 00 add %al,(%eax) 8903: 08 b5 86 00 00 00 or %dh,0x86(%ebp) 8909: 06 push %es 890a: 04 f8 add $0xf8,%al 890c: 88 00 mov %al,(%eax) 890e: 00 11 add %dl,(%ecx) 8910: bf 89 00 00 6c mov $0x6c000089,%edi 8915: 6f outsl %ds:(%esi),(%dx) 8916: 63 6b 5f arpl %bp,0x5f(%ebx) 8919: 6d insl (%dx),%es:(%edi) 891a: 61 popa 891b: 6e outsb %ds:(%esi),(%dx) 891c: 61 popa 891d: 67 addr16 891e: 65 gs 891f: 72 5f jb 8980 <.debug_info+0x8980> 8921: 6f outsl %ds:(%esi),(%dx) 8922: 70 65 jo 8989 <.debug_info+0x8989> 8924: 72 61 jb 8987 <.debug_info+0x8987> 8926: 74 69 je 8991 <.debug_info+0x8991> 8928: 6f outsl %ds:(%esi),(%dx) 8929: 6e outsb %ds:(%esi),(%dx) 892a: 73 00 jae 892c <.debug_info+0x892c> 892c: 1c 0a sbb $0xa,%al 892e: e9 02 12 66 6c jmp 6c669b35 8933: 5f pop %edi 8934: 63 6f 6d arpl %bp,0x6d(%edi) 8937: 70 61 jo 899a <.debug_info+0x899a> 8939: 72 65 jb 89a0 <.debug_info+0x89a0> 893b: 5f pop %edi 893c: 6f outsl %ds:(%esi),(%dx) 893d: 77 6e ja 89ad <.debug_info+0x89ad> 893f: 65 gs 8940: 72 00 jb 8942 <.debug_info+0x8942> 8942: 0a ea or %dl,%ch 8944: 02 d4 add %ah,%dl 8946: 89 00 mov %eax,(%eax) 8948: 00 02 add %al,(%edx) 894a: 23 00 and (%eax),%eax 894c: 12 66 6c adc 0x6c(%esi),%ah 894f: 5f pop %edi 8950: 6e outsb %ds:(%esi),(%dx) 8951: 6f outsl %ds:(%esi),(%dx) 8952: 74 69 je 89bd <.debug_info+0x89bd> 8954: 66 data16 8955: 79 00 jns 8957 <.debug_info+0x8957> 8957: 0a eb or %bl,%ch 8959: 02 f2 add %dl,%dh 895b: 88 00 mov %al,(%eax) 895d: 00 02 add %al,(%edx) 895f: 23 04 13 and (%ebx,%edx,1),%eax 8962: 6f outsl %ds:(%esi),(%dx) 8963: 02 00 add (%eax),%al 8965: 00 0a add %cl,(%edx) 8967: ec in (%dx),%al 8968: 02 09 add (%ecx),%cl 896a: 89 00 mov %eax,(%eax) 896c: 00 02 add %al,(%edx) 896e: 23 08 and (%eax),%ecx 8970: 13 58 03 adc 0x3(%eax),%ebx 8973: 00 00 add %al,(%eax) 8975: 0a ed or %ch,%ch 8977: 02 f2 add %dl,%dh 8979: 88 00 mov %al,(%eax) 897b: 00 02 add %al,(%edx) 897d: 23 0c 12 and (%edx,%edx,1),%ecx 8980: 66 data16 8981: 6c insb (%dx),%es:(%edi) 8982: 5f pop %edi 8983: 62 72 65 bound %esi,0x65(%edx) 8986: 61 popa 8987: 6b 00 0a imul $0xa,(%eax),%eax 898a: ee out %al,(%dx) 898b: 02 f2 add %dl,%dh 898d: 88 00 mov %al,(%eax) 898f: 00 02 add %al,(%edx) 8991: 23 10 and (%eax),%edx 8993: 12 66 6c adc 0x6c(%esi),%ah 8996: 5f pop %edi 8997: 6d insl (%dx),%es:(%edi) 8998: 79 6c jns 8a06 <.debug_info+0x8a06> 899a: 65 gs 899b: 61 popa 899c: 73 65 jae 8a03 <.debug_info+0x8a03> 899e: 00 0a add %cl,(%edx) 89a0: ef out %eax,(%dx) 89a1: 02 d4 add %ah,%dl 89a3: 89 00 mov %eax,(%eax) 89a5: 00 02 add %al,(%edx) 89a7: 23 14 12 and (%edx,%edx,1),%edx 89aa: 66 data16 89ab: 6c insb (%dx),%es:(%edi) 89ac: 5f pop %edi 89ad: 63 68 61 arpl %bp,0x61(%eax) 89b0: 6e outsb %ds:(%esi),(%dx) 89b1: 67 65 00 0a addr16 add %cl,%gs:(%bp,%si) 89b5: f0 02 f5 lock add %ch,%dh 89b8: 89 00 mov %eax,(%eax) 89ba: 00 02 add %al,(%edx) 89bc: 23 18 and (%eax),%ebx 89be: 00 0c d4 add %cl,(%esp,%edx,8) 89c1: 89 00 mov %eax,(%eax) 89c3: 00 01 add %al,(%ecx) 89c5: 7a 00 jp 89c7 <.debug_info+0x89c7> 89c7: 00 00 add %al,(%eax) 89c9: 08 b5 86 00 00 08 or %dh,0x8000086(%ebp) 89cf: b5 86 mov $0x86,%ch 89d1: 00 00 add %al,(%eax) 89d3: 00 06 add %al,(%esi) 89d5: 04 bf add $0xbf,%al 89d7: 89 00 mov %eax,(%eax) 89d9: 00 0c ef add %cl,(%edi,%ebp,8) 89dc: 89 00 mov %eax,(%eax) 89de: 00 01 add %al,(%ecx) 89e0: 7a 00 jp 89e2 <.debug_info+0x89e2> 89e2: 00 00 add %al,(%eax) 89e4: 08 ef or %ch,%bh 89e6: 89 00 mov %eax,(%eax) 89e8: 00 08 add %cl,(%eax) 89ea: 7a 00 jp 89ec <.debug_info+0x89ec> 89ec: 00 00 add %al,(%eax) 89ee: 00 06 add %al,(%esi) 89f0: 04 b5 add $0xb5,%al 89f2: 86 00 xchg %al,(%eax) 89f4: 00 06 add %al,(%esi) 89f6: 04 da add $0xda,%al 89f8: 89 00 mov %eax,(%eax) 89fa: 00 0e add %cl,(%esi) 89fc: 3e 8a 00 mov %ds:(%eax),%al 89ff: 00 6e 66 add %ch,0x66(%esi) 8a02: 73 5f jae 8a63 <.debug_info+0x8a63> 8a04: 6c insb (%dx),%es:(%edi) 8a05: 6f outsl %ds:(%esi),(%dx) 8a06: 63 6b 5f arpl %bp,0x5f(%ebx) 8a09: 69 6e 66 6f 00 10 32 imul $0x3210006f,0x66(%esi),%ebp 8a10: 0d 0b 73 74 61 or $0x6174730b,%eax 8a15: 74 65 je 8a7c <.debug_info+0x8a7c> 8a17: 00 32 add %dh,(%edx) 8a19: 0e push %cs 8a1a: f1 icebp 8a1b: 02 00 add (%eax),%al 8a1d: 00 02 add %al,(%edx) 8a1f: 23 00 and (%eax),%eax 8a21: 0f 2f 01 comiss (%ecx),%xmm0 8a24: 00 00 add %al,(%eax) 8a26: 32 0f xor (%edi),%cl 8a28: 4e dec %esi 8a29: 8a 00 mov (%eax),%al 8a2b: 00 02 add %al,(%edx) 8a2d: 23 04 0f and (%edi,%ecx,1),%eax 8a30: 42 inc %edx 8a31: 02 00 add (%eax),%al 8a33: 00 32 add %dh,(%edx) 8a35: 10 c8 adc %cl,%al 8a37: 1d 00 00 02 23 sbb $0x23020000,%eax 8a3c: 08 00 or %al,(%eax) 8a3e: 26 6e outsb %es:(%esi),(%dx) 8a40: 6c insb (%dx),%es:(%edi) 8a41: 6d insl (%dx),%es:(%edi) 8a42: 5f pop %edi 8a43: 6c insb (%dx),%es:(%edi) 8a44: 6f outsl %ds:(%esi),(%dx) 8a45: 63 6b 6f arpl %bp,0x6f(%ebx) 8a48: 77 6e ja 8ab8 <.debug_info+0x8ab8> 8a4a: 65 gs 8a4b: 72 00 jb 8a4d <.debug_info+0x8a4d> 8a4d: 01 06 add %eax,(%esi) 8a4f: 04 3e add $0x3e,%al 8a51: 8a 00 mov (%eax),%al 8a53: 00 0e add %cl,(%esi) 8a55: 7a 8a jp 89e1 <.debug_info+0x89e1> 8a57: 00 00 add %al,(%eax) 8a59: 6e outsb %ds:(%esi),(%dx) 8a5a: 66 data16 8a5b: 73 34 jae 8a91 <.debug_info+0x8a91> 8a5d: 5f pop %edi 8a5e: 6c insb (%dx),%es:(%edi) 8a5f: 6f outsl %ds:(%esi),(%dx) 8a60: 63 6b 5f arpl %bp,0x5f(%ebx) 8a63: 69 6e 66 6f 00 04 32 imul $0x3204006f,0x66(%esi),%ebp 8a6a: 14 0f adc $0xf,%al 8a6c: 2f das 8a6d: 01 00 add %eax,(%eax) 8a6f: 00 32 add %dh,(%edx) 8a71: 15 8c 8a 00 00 adc $0x8a8c,%eax 8a76: 02 23 add (%ebx),%ah 8a78: 00 00 add %al,(%eax) 8a7a: 26 6e outsb %es:(%esi),(%dx) 8a7c: 66 data16 8a7d: 73 34 jae 8ab3 <.debug_info+0x8ab3> 8a7f: 5f pop %edi 8a80: 6c insb (%dx),%es:(%edi) 8a81: 6f outsl %ds:(%esi),(%dx) 8a82: 63 6b 5f arpl %bp,0x5f(%ebx) 8a85: 73 74 jae 8afb <.debug_info+0x8afb> 8a87: 61 popa 8a88: 74 65 je 8aef <.debug_info+0x8aef> 8a8a: 00 01 add %al,(%ecx) 8a8c: 06 push %es 8a8d: 04 7a add $0x7a,%al 8a8f: 8a 00 mov (%eax),%al 8a91: 00 2e add %ch,(%esi) 8a93: bb 8a 00 00 10 mov $0x1000008a,%ebx 8a98: 0a 0b or (%ebx),%cl 8a9a: 03 16 add (%esi),%edx 8a9c: 6e outsb %ds:(%esi),(%dx) 8a9d: 66 data16 8a9e: 73 5f jae 8aff <.debug_info+0x8aff> 8aa0: 66 data16 8aa1: 6c insb (%dx),%es:(%edi) 8aa2: 00 0a add %cl,(%edx) 8aa4: 09 03 or %eax,(%ebx) 8aa6: fb sti 8aa7: 89 00 mov %eax,(%eax) 8aa9: 00 16 add %dl,(%esi) 8aab: 6e outsb %ds:(%esi),(%dx) 8aac: 66 data16 8aad: 73 34 jae 8ae3 <.debug_info+0x8ae3> 8aaf: 5f pop %edi 8ab0: 66 data16 8ab1: 6c insb (%dx),%es:(%edi) 8ab2: 00 0a add %cl,(%edx) 8ab4: 0a 03 or (%ebx),%al 8ab6: 54 push %esp 8ab7: 8a 00 mov (%eax),%al 8ab9: 00 00 add %al,(%eax) 8abb: 11 19 adc %ebx,(%ecx) 8abd: 8b 00 mov (%eax),%eax 8abf: 00 66 61 add %ah,0x61(%esi) 8ac2: 73 79 jae 8b3d <.debug_info+0x8b3d> 8ac4: 6e outsb %ds:(%esi),(%dx) 8ac5: 63 5f 73 arpl %bx,0x73(%edi) 8ac8: 74 72 je 8b3c <.debug_info+0x8b3c> 8aca: 75 63 jne 8b2f <.debug_info+0x8b2f> 8acc: 74 00 je 8ace <.debug_info+0x8ace> 8ace: 10 0a adc %cl,(%edx) 8ad0: 03 03 add (%ebx),%eax 8ad2: 13 a1 01 00 00 0a adc 0xa000001(%ecx),%esp 8ad8: 3c 03 cmp $0x3,%al 8ada: 7a 00 jp 8adc <.debug_info+0x8adc> 8adc: 00 00 add %al,(%eax) 8ade: 02 23 add (%ebx),%ah 8ae0: 00 12 add %dl,(%edx) 8ae2: 66 61 popaw 8ae4: 5f pop %edi 8ae5: 66 data16 8ae6: 64 00 0a add %cl,%fs:(%edx) 8ae9: 3d 03 7a 00 00 cmp $0x7a03,%eax 8aee: 00 02 add %al,(%edx) 8af0: 23 04 12 and (%edx,%edx,1),%eax 8af3: 66 61 popaw 8af5: 5f pop %edi 8af6: 6e outsb %ds:(%esi),(%dx) 8af7: 65 gs 8af8: 78 74 js 8b6e <.debug_info+0x8b6e> 8afa: 00 0a add %cl,(%edx) 8afc: 3e 03 19 add %ds:(%ecx),%ebx 8aff: 8b 00 mov (%eax),%eax 8b01: 00 02 add %al,(%edx) 8b03: 23 08 and (%eax),%ecx 8b05: 12 66 61 adc 0x61(%esi),%ah 8b08: 5f pop %edi 8b09: 66 69 6c 65 00 0a 3f imul $0x3f0a,0x0(%ebp),%bp 8b10: 03 03 add (%ebx),%eax 8b12: 47 inc %edi 8b13: 00 00 add %al,(%eax) 8b15: 02 23 add (%ebx),%ah 8b17: 0c 00 or $0x0,%al 8b19: 06 push %es 8b1a: 04 bb add $0xbb,%al 8b1c: 8a 00 mov (%eax),%al 8b1e: 00 06 add %al,(%esi) 8b20: 04 7f add $0x7f,%al 8b22: 88 00 mov %al,(%eax) 8b24: 00 06 add %al,(%esi) 8b26: 04 0f add $0xf,%al 8b28: 89 00 mov %eax,(%eax) 8b2a: 00 11 add %dl,(%ecx) 8b2c: ef out %eax,(%dx) 8b2d: 8b 00 mov (%eax),%eax 8b2f: 00 66 69 add %ah,0x69(%esi) 8b32: 6c insb (%dx),%es:(%edi) 8b33: 65 gs 8b34: 5f pop %edi 8b35: 73 79 jae 8bb0 <.debug_info+0x8bb0> 8b37: 73 74 jae 8bad <.debug_info+0x8bad> 8b39: 65 gs 8b3a: 6d insl (%dx),%es:(%edi) 8b3b: 5f pop %edi 8b3c: 74 79 je 8bb7 <.debug_info+0x8bb7> 8b3e: 70 65 jo 8ba5 <.debug_info+0x8ba5> 8b40: 00 20 add %ah,(%eax) 8b42: 0a 63 03 or 0x3(%ebx),%ah 8b45: 13 a7 01 00 00 0a adc 0xa000001(%edi),%esp 8b4b: 1f pop %ds 8b4c: 05 18 3d 00 00 add $0x3d18,%eax 8b51: 02 23 add (%ebx),%ah 8b53: 00 12 add %dl,(%edx) 8b55: 66 data16 8b56: 73 5f jae 8bb7 <.debug_info+0x8bb7> 8b58: 66 data16 8b59: 6c insb (%dx),%es:(%edi) 8b5a: 61 popa 8b5b: 67 73 00 addr16 jae 8b5e <.debug_info+0x8b5e> 8b5e: 0a 20 or (%eax),%ah 8b60: 05 7a 00 00 00 add $0x7a,%eax 8b65: 02 23 add (%ebx),%ah 8b67: 04 12 add $0x12,%al 8b69: 67 addr16 8b6a: 65 gs 8b6b: 74 5f je 8bcc <.debug_info+0x8bcc> 8b6d: 73 62 jae 8bd1 <.debug_info+0x8bd1> 8b6f: 00 0a add %cl,(%edx) 8b71: 22 05 72 97 00 00 and 0x9772,%al 8b77: 02 23 add (%ebx),%ah 8b79: 08 12 or %dl,(%edx) 8b7b: 6b 69 6c 6c imul $0x6c,0x6c(%ecx),%ebp 8b7f: 5f pop %edi 8b80: 73 62 jae 8be4 <.debug_info+0x8be4> 8b82: 00 0a add %cl,(%edx) 8b84: 23 05 76 95 00 00 and 0x9576,%eax 8b8a: 02 23 add (%ebx),%ah 8b8c: 0c 13 or $0x13,%al 8b8e: 2f das 8b8f: 01 00 add %eax,(%eax) 8b91: 00 0a add %cl,(%edx) 8b93: 24 05 and $0x5,%al 8b95: 3a 5a 00 cmp 0x0(%edx),%bl 8b98: 00 02 add %al,(%edx) 8b9a: 23 10 and (%eax),%edx 8b9c: 13 ae 03 00 00 0a adc 0xa000003(%esi),%ebp 8ba2: 25 05 ef 8b 00 and $0x8bef05,%eax 8ba7: 00 02 add %al,(%edx) 8ba9: 23 14 12 and (%edx,%edx,1),%edx 8bac: 66 data16 8bad: 73 5f jae 8c0e <.debug_info+0x8c0e> 8baf: 73 75 jae 8c26 <.debug_info+0x8c26> 8bb1: 70 65 jo 8c18 <.debug_info+0x8c18> 8bb3: 72 73 jb 8c28 <.debug_info+0x8c28> 8bb5: 00 0a add %cl,(%edx) 8bb7: 26 es 8bb8: 05 c8 1d 00 00 add $0x1dc8,%eax 8bbd: 02 23 add (%ebx),%ah 8bbf: 18 12 sbb %dl,(%edx) 8bc1: 73 5f jae 8c22 <.debug_info+0x8c22> 8bc3: 6c insb (%dx),%es:(%edi) 8bc4: 6f outsl %ds:(%esi),(%dx) 8bc5: 63 6b 5f arpl %bp,0x5f(%ebx) 8bc8: 6b 65 79 00 imul $0x0,0x79(%ebp),%esp 8bcc: 0a 27 or (%edi),%ah 8bce: 05 65 1e 00 00 add $0x1e65,%eax 8bd3: 02 23 add (%ebx),%ah 8bd5: 20 12 and %dl,(%edx) 8bd7: 73 5f jae 8c38 <.debug_info+0x8c38> 8bd9: 75 6d jne 8c48 <.debug_info+0x8c48> 8bdb: 6f outsl %ds:(%esi),(%dx) 8bdc: 75 6e jne 8c4c <.debug_info+0x8c4c> 8bde: 74 5f je 8c3f <.debug_info+0x8c3f> 8be0: 6b 65 79 00 imul $0x0,0x79(%ebp),%esp 8be4: 0a 28 or (%eax),%ch 8be6: 05 65 1e 00 00 add $0x1e65,%eax 8beb: 02 23 add (%ebx),%ah 8bed: 20 00 and %al,(%eax) 8bef: 06 push %es 8bf0: 04 2b add $0x2b,%al 8bf2: 8b 00 mov (%eax),%eax 8bf4: 00 11 add %dl,(%ecx) 8bf6: e2 8d loop 8b85 <.debug_info+0x8b85> 8bf8: 00 00 add %al,(%eax) 8bfa: 73 75 jae 8c71 <.debug_info+0x8c71> 8bfc: 70 65 jo 8c63 <.debug_info+0x8c63> 8bfe: 72 5f jb 8c5f <.debug_info+0x8c5f> 8c00: 6f outsl %ds:(%esi),(%dx) 8c01: 70 65 jo 8c68 <.debug_info+0x8c68> 8c03: 72 61 jb 8c66 <.debug_info+0x8c66> 8c05: 74 69 je 8c70 <.debug_info+0x8c70> 8c07: 6f outsl %ds:(%esi),(%dx) 8c08: 6e outsb %ds:(%esi),(%dx) 8c09: 73 00 jae 8c0b <.debug_info+0x8c0b> 8c0b: 54 push %esp 8c0c: 0a 64 03 13 or 0x13(%ebx,%eax,1),%ah 8c10: 47 inc %edi 8c11: 02 00 add (%eax),%al 8c13: 00 0a add %cl,(%edx) 8c15: 65 gs 8c16: 04 64 add $0x64,%al 8c18: 95 xchg %eax,%ebp 8c19: 00 00 add %al,(%eax) 8c1b: 02 23 add (%ebx),%ah 8c1d: 00 12 add %dl,(%edx) 8c1f: 64 fs 8c20: 65 gs 8c21: 73 74 jae 8c97 <.debug_info+0x8c97> 8c23: 72 6f jb 8c94 <.debug_info+0x8c94> 8c25: 79 5f jns 8c86 <.debug_info+0x8c86> 8c27: 69 6e 6f 64 65 00 0a imul $0xa006564,0x6f(%esi),%ebp 8c2e: 66 data16 8c2f: 04 40 add $0x40,%al 8c31: 94 xchg %eax,%esp 8c32: 00 00 add %al,(%eax) 8c34: 02 23 add (%ebx),%ah 8c36: 04 12 add $0x12,%al 8c38: 72 65 jb 8c9f <.debug_info+0x8c9f> 8c3a: 61 popa 8c3b: 64 fs 8c3c: 5f pop %edi 8c3d: 69 6e 6f 64 65 00 0a imul $0xa006564,0x6f(%esi),%ebp 8c44: 68 04 40 94 00 push $0x944004 8c49: 00 02 add %al,(%edx) 8c4b: 23 08 and (%eax),%ecx 8c4d: 12 64 69 72 adc 0x72(%ecx,%ebp,2),%ah 8c51: 74 79 je 8ccc <.debug_info+0x8ccc> 8c53: 5f pop %edi 8c54: 69 6e 6f 64 65 00 0a imul $0xa006564,0x6f(%esi),%ebp 8c5b: 6a 04 push $0x4 8c5d: 40 inc %eax 8c5e: 94 xchg %eax,%esp 8c5f: 00 00 add %al,(%eax) 8c61: 02 23 add (%ebx),%ah 8c63: 0c 12 or $0x12,%al 8c65: 77 72 ja 8cd9 <.debug_info+0x8cd9> 8c67: 69 74 65 5f 69 6e 6f imul $0x646f6e69,0x5f(%ebp),%esi 8c6e: 64 8c6f: 65 00 0a add %cl,%gs:(%edx) 8c72: 6b 04 9e 77 imul $0x77,(%esi,%ebx,4),%eax 8c76: 00 00 add %al,(%eax) 8c78: 02 23 add (%ebx),%ah 8c7a: 10 12 adc %dl,(%edx) 8c7c: 70 75 jo 8cf3 <.debug_info+0x8cf3> 8c7e: 74 5f je 8cdf <.debug_info+0x8cdf> 8c80: 69 6e 6f 64 65 00 0a imul $0xa006564,0x6f(%esi),%ebp 8c87: 6c insb (%dx),%es:(%edi) 8c88: 04 40 add $0x40,%al 8c8a: 94 xchg %eax,%esp 8c8b: 00 00 add %al,(%eax) 8c8d: 02 23 add (%ebx),%ah 8c8f: 14 12 adc $0x12,%al 8c91: 64 fs 8c92: 72 6f jb 8d03 <.debug_info+0x8d03> 8c94: 70 5f jo 8cf5 <.debug_info+0x8cf5> 8c96: 69 6e 6f 64 65 00 0a imul $0xa006564,0x6f(%esi),%ebp 8c9d: 6d insl (%dx),%es:(%edi) 8c9e: 04 40 add $0x40,%al 8ca0: 94 xchg %eax,%esp 8ca1: 00 00 add %al,(%eax) 8ca3: 02 23 add (%ebx),%ah 8ca5: 18 12 sbb %dl,(%edx) 8ca7: 64 fs 8ca8: 65 gs 8ca9: 6c insb (%dx),%es:(%edi) 8caa: 65 gs 8cab: 74 65 je 8d12 <.debug_info+0x8d12> 8cad: 5f pop %edi 8cae: 69 6e 6f 64 65 00 0a imul $0xa006564,0x6f(%esi),%ebp 8cb5: 6e outsb %ds:(%esi),(%dx) 8cb6: 04 40 add $0x40,%al 8cb8: 94 xchg %eax,%esp 8cb9: 00 00 add %al,(%eax) 8cbb: 02 23 add (%ebx),%ah 8cbd: 1c 12 sbb $0x12,%al 8cbf: 70 75 jo 8d36 <.debug_info+0x8d36> 8cc1: 74 5f je 8d22 <.debug_info+0x8d22> 8cc3: 73 75 jae 8d3a <.debug_info+0x8d3a> 8cc5: 70 65 jo 8d2c <.debug_info+0x8d2c> 8cc7: 72 00 jb 8cc9 <.debug_info+0x8cc9> 8cc9: 0a 6f 04 or 0x4(%edi),%ch 8ccc: 76 95 jbe 8c63 <.debug_info+0x8c63> 8cce: 00 00 add %al,(%eax) 8cd0: 02 23 add (%ebx),%ah 8cd2: 20 12 and %dl,(%edx) 8cd4: 77 72 ja 8d48 <.debug_info+0x8d48> 8cd6: 69 74 65 5f 73 75 70 imul $0x65707573,0x5f(%ebp),%esi 8cdd: 65 8cde: 72 00 jb 8ce0 <.debug_info+0x8ce0> 8ce0: 0a 70 04 or 0x4(%eax),%dh 8ce3: 76 95 jbe 8c7a <.debug_info+0x8c7a> 8ce5: 00 00 add %al,(%eax) 8ce7: 02 23 add (%ebx),%ah 8ce9: 24 12 and $0x12,%al 8ceb: 73 79 jae 8d66 <.debug_info+0x8d66> 8ced: 6e outsb %ds:(%esi),(%dx) 8cee: 63 5f 66 arpl %bx,0x66(%edi) 8cf1: 73 00 jae 8cf3 <.debug_info+0x8cf3> 8cf3: 0a 71 04 or 0x4(%ecx),%dh 8cf6: 55 push %ebp 8cf7: 76 00 jbe 8cf9 <.debug_info+0x8cf9> 8cf9: 00 02 add %al,(%edx) 8cfb: 23 28 and (%eax),%ebp 8cfd: 12 77 72 adc 0x72(%edi),%dh 8d00: 69 74 65 5f 73 75 70 imul $0x65707573,0x5f(%ebp),%esi 8d07: 65 8d08: 72 5f jb 8d69 <.debug_info+0x8d69> 8d0a: 6c insb (%dx),%es:(%edi) 8d0b: 6f outsl %ds:(%esi),(%dx) 8d0c: 63 6b 66 arpl %bp,0x66(%ebx) 8d0f: 73 00 jae 8d11 <.debug_info+0x8d11> 8d11: 0a 72 04 or 0x4(%edx),%dh 8d14: 76 95 jbe 8cab <.debug_info+0x8cab> 8d16: 00 00 add %al,(%eax) 8d18: 02 23 add (%ebx),%ah 8d1a: 2c 12 sub $0x12,%al 8d1c: 75 6e jne 8d8c <.debug_info+0x8d8c> 8d1e: 6c insb (%dx),%es:(%edi) 8d1f: 6f outsl %ds:(%esi),(%dx) 8d20: 63 6b 66 arpl %bp,0x66(%ebx) 8d23: 73 00 jae 8d25 <.debug_info+0x8d25> 8d25: 0a 73 04 or 0x4(%ebx),%dh 8d28: 76 95 jbe 8cbf <.debug_info+0x8cbf> 8d2a: 00 00 add %al,(%eax) 8d2c: 02 23 add (%ebx),%ah 8d2e: 30 12 xor %dl,(%edx) 8d30: 73 74 jae 8da6 <.debug_info+0x8da6> 8d32: 61 popa 8d33: 74 66 je 8d9b <.debug_info+0x8d9b> 8d35: 73 00 jae 8d37 <.debug_info+0x8d37> 8d37: 0a 74 04 a1 or 0xffffffa1(%esp,%eax,1),%dh 8d3b: 95 xchg %eax,%ebp 8d3c: 00 00 add %al,(%eax) 8d3e: 02 23 add (%ebx),%ah 8d40: 34 12 xor $0x12,%al 8d42: 72 65 jb 8da9 <.debug_info+0x8da9> 8d44: 6d insl (%dx),%es:(%edi) 8d45: 6f outsl %ds:(%esi),(%dx) 8d46: 75 6e jne 8db6 <.debug_info+0x8db6> 8d48: 74 5f je 8da9 <.debug_info+0x8da9> 8d4a: 66 data16 8d4b: 73 00 jae 8d4d <.debug_info+0x8d4d> 8d4d: 0a 75 04 or 0x4(%ebp),%dh 8d50: c1 95 00 00 02 23 38 rcll $0x38,0x23020000(%ebp) 8d57: 12 63 6c adc 0x6c(%ebx),%ah 8d5a: 65 gs 8d5b: 61 popa 8d5c: 72 5f jb 8dbd <.debug_info+0x8dbd> 8d5e: 69 6e 6f 64 65 00 0a imul $0xa006564,0x6f(%esi),%ebp 8d65: 76 04 jbe 8d6b <.debug_info+0x8d6b> 8d67: 40 inc %eax 8d68: 94 xchg %eax,%esp 8d69: 00 00 add %al,(%eax) 8d6b: 02 23 add (%ebx),%ah 8d6d: 3c 12 cmp $0x12,%al 8d6f: 75 6d jne 8dde <.debug_info+0x8dde> 8d71: 6f outsl %ds:(%esi),(%dx) 8d72: 75 6e jne 8de2 <.debug_info+0x8de2> 8d74: 74 5f je 8dd5 <.debug_info+0x8dd5> 8d76: 62 65 67 bound %esp,0x67(%ebp) 8d79: 69 6e 00 0a 77 04 d8 imul $0xd804770a,0x0(%esi),%ebp 8d80: 95 xchg %eax,%ebp 8d81: 00 00 add %al,(%eax) 8d83: 02 23 add (%ebx),%ah 8d85: 40 inc %eax 8d86: 12 73 68 adc 0x68(%ebx),%dh 8d89: 6f outsl %ds:(%esi),(%dx) 8d8a: 77 5f ja 8deb <.debug_info+0x8deb> 8d8c: 6f outsl %ds:(%esi),(%dx) 8d8d: 70 74 jo 8e03 <.debug_info+0x8e03> 8d8f: 69 6f 6e 73 00 0a 79 imul $0x790a0073,0x6e(%edi),%ebp 8d96: 04 04 add $0x4,%al 8d98: 96 xchg %eax,%esi 8d99: 00 00 add %al,(%eax) 8d9b: 02 23 add (%ebx),%ah 8d9d: 44 inc %esp 8d9e: 12 73 68 adc 0x68(%ebx),%dh 8da1: 6f outsl %ds:(%esi),(%dx) 8da2: 77 5f ja 8e03 <.debug_info+0x8e03> 8da4: 73 74 jae 8e1a <.debug_info+0x8e1a> 8da6: 61 popa 8da7: 74 73 je 8e1c <.debug_info+0x8e1c> 8da9: 00 0a add %cl,(%edx) 8dab: 7a 04 jp 8db1 <.debug_info+0x8db1> 8dad: 04 96 add $0x96,%al 8daf: 00 00 add %al,(%eax) 8db1: 02 23 add (%ebx),%ah 8db3: 48 dec %eax 8db4: 12 71 75 adc 0x75(%ecx),%dh 8db7: 6f outsl %ds:(%esi),(%dx) 8db8: 74 61 je 8e1b <.debug_info+0x8e1b> 8dba: 5f pop %edi 8dbb: 72 65 jb 8e22 <.debug_info+0x8e22> 8dbd: 61 popa 8dbe: 64 00 0a add %cl,%fs:(%edx) 8dc1: 7c 04 jl 8dc7 <.debug_info+0x8dc7> 8dc3: 2e cs 8dc4: 96 xchg %eax,%esi 8dc5: 00 00 add %al,(%eax) 8dc7: 02 23 add (%ebx),%ah 8dc9: 4c dec %esp 8dca: 12 71 75 adc 0x75(%ecx),%dh 8dcd: 6f outsl %ds:(%esi),(%dx) 8dce: 74 61 je 8e31 <.debug_info+0x8e31> 8dd0: 5f pop %edi 8dd1: 77 72 ja 8e45 <.debug_info+0x8e45> 8dd3: 69 74 65 00 0a 7d 04 imul $0x58047d0a,0x0(%ebp),%esi 8dda: 58 8ddb: 96 xchg %eax,%esi 8ddc: 00 00 add %al,(%eax) 8dde: 02 23 add (%ebx),%ah 8de0: 50 push %eax 8de1: 00 06 add %al,(%esi) 8de3: 04 f5 add $0xf5,%al 8de5: 8b 00 mov (%eax),%eax 8de7: 00 06 add %al,(%esi) 8de9: 04 77 add $0x77,%al 8deb: 76 00 jbe 8ded <.debug_info+0x8ded> 8ded: 00 06 add %al,(%esi) 8def: 04 36 add $0x36,%al 8df1: 78 00 js 8df3 <.debug_info+0x8df3> 8df3: 00 11 add %dl,(%ecx) 8df5: 9a 8e 00 00 65 78 70 lcall $0x7078,$0x6500008e 8dfc: 6f outsl %ds:(%esi),(%dx) 8dfd: 72 74 jb 8e73 <.debug_info+0x8e73> 8dff: 5f pop %edi 8e00: 6f outsl %ds:(%esi),(%dx) 8e01: 70 65 jo 8e68 <.debug_info+0x8e68> 8e03: 72 61 jb 8e66 <.debug_info+0x8e66> 8e05: 74 69 je 8e70 <.debug_info+0x8e70> 8e07: 6f outsl %ds:(%esi),(%dx) 8e08: 6e outsb %ds:(%esi),(%dx) 8e09: 73 00 jae 8e0b <.debug_info+0x8e0b> 8e0b: 18 0a sbb %cl,(%edx) 8e0d: 67 03 12 addr16 add (%bp,%si),%edx 8e10: 64 65 63 6f 64 arpl %bp,%fs:%gs:0x64(%edi) 8e15: 65 gs 8e16: 5f pop %edi 8e17: 66 68 00 0a pushw $0xa00 8e1b: 06 push %es 8e1c: 05 a8 96 00 00 add $0x96a8,%eax 8e21: 02 23 add (%ebx),%ah 8e23: 00 12 add %dl,(%edx) 8e25: 65 6e outsb %gs:(%esi),(%dx) 8e27: 63 6f 64 arpl %bp,0x64(%edi) 8e2a: 65 gs 8e2b: 5f pop %edi 8e2c: 66 68 00 0a pushw $0xa00 8e30: 08 05 cd 96 00 00 or %al,0x96cd 8e36: 02 23 add (%ebx),%ah 8e38: 04 12 add $0x12,%al 8e3a: 67 addr16 8e3b: 65 gs 8e3c: 74 5f je 8e9d <.debug_info+0x8e9d> 8e3e: 6e outsb %ds:(%esi),(%dx) 8e3f: 61 popa 8e40: 6d insl (%dx),%es:(%edi) 8e41: 65 00 0a add %cl,%gs:(%edx) 8e44: 0c 05 or $0x5,%al 8e46: ed in (%dx),%eax 8e47: 96 xchg %eax,%esi 8e48: 00 00 add %al,(%eax) 8e4a: 02 23 add (%ebx),%ah 8e4c: 08 12 or %dl,(%edx) 8e4e: 67 addr16 8e4f: 65 gs 8e50: 74 5f je 8eb1 <.debug_info+0x8eb1> 8e52: 70 61 jo 8eb5 <.debug_info+0x8eb5> 8e54: 72 65 jb 8ebb <.debug_info+0x8ebb> 8e56: 6e outsb %ds:(%esi),(%dx) 8e57: 74 00 je 8e59 <.debug_info+0x8e59> 8e59: 0a 0d 05 03 97 00 or 0x970305,%cl 8e5f: 00 02 add %al,(%edx) 8e61: 23 0c 12 and (%edx,%edx,1),%ecx 8e64: 67 addr16 8e65: 65 gs 8e66: 74 5f je 8ec7 <.debug_info+0x8ec7> 8e68: 64 65 6e outsb %fs:%gs:(%esi),(%dx) 8e6b: 74 72 je 8edf <.debug_info+0x8edf> 8e6d: 79 00 jns 8e6f <.debug_info+0x8e6f> 8e6f: 0a 0e or (%esi),%cl 8e71: 05 1e 97 00 00 add $0x971e,%eax 8e76: 02 23 add (%ebx),%ah 8e78: 10 12 adc %dl,(%edx) 8e7a: 66 69 6e 64 5f 65 imul $0x655f,0x64(%esi),%bp 8e80: 78 70 js 8ef2 <.debug_info+0x8ef2> 8e82: 6f outsl %ds:(%esi),(%dx) 8e83: 72 74 jb 8ef9 <.debug_info+0x8ef9> 8e85: 65 gs 8e86: 64 fs 8e87: 5f pop %edi 8e88: 64 65 6e outsb %fs:%gs:(%esi),(%dx) 8e8b: 74 72 je 8eff <.debug_info+0x8eff> 8e8d: 79 00 jns 8e8f <.debug_info+0x8e8f> 8e8f: 0a 14 05 48 97 00 00 or 0x9748(,%eax,1),%dl 8e96: 02 23 add (%ebx),%ah 8e98: 14 00 adc $0x0,%al 8e9a: 06 push %es 8e9b: 04 f4 add $0xf4,%al 8e9d: 8d 00 lea (%eax),%eax 8e9f: 00 26 add %ah,(%esi) 8ea1: 78 61 js 8f04 <.debug_info+0x8f04> 8ea3: 74 74 je 8f19 <.debug_info+0x8f19> 8ea5: 72 5f jb 8f06 <.debug_info+0x8f06> 8ea7: 68 61 6e 64 6c push $0x6c646e61 8eac: 65 gs 8ead: 72 00 jb 8eaf <.debug_info+0x8eaf> 8eaf: 01 06 add %eax,(%esi) 8eb1: 04 b6 add $0xb6,%al 8eb3: 8e 00 movw (%eax),%es 8eb5: 00 06 add %al,(%esi) 8eb7: 04 a0 add $0xa0,%al 8eb9: 8e 00 movw (%eax),%es 8ebb: 00 18 add %bl,(%eax) 8ebd: 66 69 6c 6c 64 69 72 imul $0x7269,0x64(%esp,%ebp,2),%bp 8ec4: 5f pop %edi 8ec5: 74 00 je 8ec7 <.debug_info+0x8ec7> 8ec7: 0a ef or %bh,%ch 8ec9: 03 ce add %esi,%ecx 8ecb: 8e 00 movw (%eax),%es 8ecd: 00 06 add %al,(%esi) 8ecf: 04 d4 add $0xd4,%al 8ed1: 8e 00 movw (%eax),%es 8ed3: 00 0c fd 8e 00 00 01 add %cl,0x100008e(,%edi,8) 8eda: 7a 00 jp 8edc <.debug_info+0x8edc> 8edc: 00 00 add %al,(%eax) 8ede: 08 b7 1d 00 00 08 or %dh,0x800001d(%edi) 8ee4: 18 3d 00 00 08 7a sbb %bh,0x7a080000 8eea: 00 00 add %al,(%eax) 8eec: 00 08 add %cl,(%eax) 8eee: a7 cmpsl %es:(%edi),%ds:(%esi) 8eef: 03 00 add (%eax),%eax 8ef1: 00 08 add %cl,(%eax) 8ef3: 45 inc %ebp 8ef4: 03 00 add (%eax),%eax 8ef6: 00 08 add %cl,(%eax) 8ef8: 3b 01 cmp (%ecx),%eax 8efa: 00 00 add %al,(%eax) 8efc: 00 0c 12 add %cl,(%edx,%edx,1) 8eff: 8f 00 popl (%eax) 8f01: 00 01 add %al,(%ecx) 8f03: 7a 00 jp 8f05 <.debug_info+0x8f05> 8f05: 00 00 add %al,(%eax) 8f07: 08 54 68 00 or %dl,0x0(%eax,%ebp,2) 8f0b: 00 08 add %cl,(%eax) 8f0d: 03 47 00 add 0x0(%edi),%eax 8f10: 00 00 add %al,(%eax) 8f12: 06 push %es 8f13: 04 fd add $0xfd,%al 8f15: 8e 00 movw (%eax),%es 8f17: 00 0c 37 add %cl,(%edi,%esi,1) 8f1a: 8f 00 popl (%eax) 8f1c: 00 01 add %al,(%ecx) 8f1e: 7a 00 jp 8f20 <.debug_info+0x8f20> 8f20: 00 00 add %al,(%eax) 8f22: 08 54 68 00 or %dl,0x0(%eax,%ebp,2) 8f26: 00 08 add %cl,(%eax) 8f28: 03 47 00 add 0x0(%edi),%eax 8f2b: 00 08 add %cl,(%eax) 8f2d: 3b 01 cmp (%ecx),%eax 8f2f: 00 00 add %al,(%eax) 8f31: 08 98 00 00 00 00 or %bl,0x0(%eax) 8f37: 06 push %es 8f38: 04 18 add $0x18,%al 8f3a: 8f 00 popl (%eax) 8f3c: 00 0c 57 add %cl,(%edi,%edx,2) 8f3f: 8f 00 popl (%eax) 8f41: 00 01 add %al,(%ecx) 8f43: 02 01 add (%ecx),%al 8f45: 00 00 add %al,(%eax) 8f47: 08 03 or %al,(%ebx) 8f49: 47 inc %edi 8f4a: 00 00 add %al,(%eax) 8f4c: 08 3b or %bh,(%ebx) 8f4e: 01 00 add %eax,(%eax) 8f50: 00 08 add %cl,(%eax) 8f52: 98 cwtl 8f53: 00 00 add %al,(%eax) 8f55: 00 00 add %al,(%eax) 8f57: 06 push %es 8f58: 04 3d add $0x3d,%al 8f5a: 8f 00 popl (%eax) 8f5c: 00 2e add %ch,(%esi) 8f5e: 80 8f 00 00 04 0a 0d orb $0xd,0xa040000(%edi) 8f65: 04 16 add $0x16,%al 8f67: 62 75 66 bound %esi,0x66(%ebp) 8f6a: 00 0a add %cl,(%edx) 8f6c: 0b 04 bb or (%ebx,%edi,4),%eax 8f6f: 01 00 add %eax,(%eax) 8f71: 00 16 add %dl,(%esi) 8f73: 64 fs 8f74: 61 popa 8f75: 74 61 je 8fd8 <.debug_info+0x8fd8> 8f77: 00 0a add %cl,(%edx) 8f79: 0c 04 or $0x4,%al 8f7b: b7 1d mov $0x1d,%bh 8f7d: 00 00 add %al,(%eax) 8f7f: 00 17 add %dl,(%edi) 8f81: cc int3 8f82: 8f 00 popl (%eax) 8f84: 00 10 add %dl,(%eax) 8f86: 0a 0f or (%edi),%cl 8f88: 04 12 add $0x12,%al 8f8a: 77 72 ja 8ffe <.debug_info+0x8ffe> 8f8c: 69 74 74 65 6e 00 0a imul $0x80a006e,0x65(%esp,%esi,2),%esi 8f93: 08 8f94: 04 b5 add $0xb5,%al 8f96: 03 00 add (%eax),%eax 8f98: 00 02 add %al,(%edx) 8f9a: 23 00 and (%eax),%eax 8f9c: 13 e7 adc %edi,%esp 8f9e: 01 00 add %eax,(%eax) 8fa0: 00 0a add %cl,(%edx) 8fa2: 09 04 b5 03 00 00 02 or %eax,0x2000003(,%esi,4) 8fa9: 23 04 12 and (%edx,%edx,1),%eax 8fac: 61 popa 8fad: 72 67 jb 9016 <.debug_info+0x9016> 8faf: 00 0a add %cl,(%edx) 8fb1: 0d 04 5d 8f 00 or $0x8f5d04,%eax 8fb6: 00 02 add %al,(%edx) 8fb8: 23 08 and (%eax),%ecx 8fba: 12 65 72 adc 0x72(%ebp),%ah 8fbd: 72 6f jb 902e <.debug_info+0x902e> 8fbf: 72 00 jb 8fc1 <.debug_info+0x8fc1> 8fc1: 0a 0e or (%esi),%cl 8fc3: 04 7a add $0x7a,%al 8fc5: 00 00 add %al,(%eax) 8fc7: 00 02 add %al,(%edx) 8fc9: 23 0c 00 and (%eax,%eax,1),%ecx 8fcc: 18 72 65 sbb %dh,0x65(%edx) 8fcf: 61 popa 8fd0: 64 fs 8fd1: 5f pop %edi 8fd2: 64 fs 8fd3: 65 gs 8fd4: 73 63 jae 9039 <.debug_info+0x9039> 8fd6: 72 69 jb 9041 <.debug_info+0x9041> 8fd8: 70 74 jo 904e <.debug_info+0x904e> 8fda: 6f outsl %ds:(%esi),(%dx) 8fdb: 72 5f jb 903c <.debug_info+0x903c> 8fdd: 74 00 je 8fdf <.debug_info+0x8fdf> 8fdf: 0a 0f or (%edi),%cl 8fe1: 04 80 add $0x80,%al 8fe3: 8f 00 popl (%eax) 8fe5: 00 18 add %bl,(%eax) 8fe7: 72 65 jb 904e <.debug_info+0x904e> 8fe9: 61 popa 8fea: 64 fs 8feb: 5f pop %edi 8fec: 61 popa 8fed: 63 74 6f 72 arpl %si,0x72(%edi,%ebp,2) 8ff1: 5f pop %edi 8ff2: 74 00 je 8ff4 <.debug_info+0x8ff4> 8ff4: 0a 11 or (%ecx),%dl 8ff6: 04 fb add $0xfb,%al 8ff8: 8f 00 popl (%eax) 8ffa: 00 06 add %al,(%esi) 8ffc: 04 01 add $0x1,%al 8ffe: 90 nop 8fff: 00 00 add %al,(%eax) 9001: 0c 20 or $0x20,%al 9003: 90 nop 9004: 00 00 add %al,(%eax) 9006: 01 7a 00 add %edi,0x0(%edx) 9009: 00 00 add %al,(%eax) 900b: 08 20 or %ah,(%eax) 900d: 90 nop 900e: 00 00 add %al,(%eax) 9010: 08 94 3c 00 00 08 98 or %dl,0x98080000(%esp,%edi,1) 9017: 00 00 add %al,(%eax) 9019: 00 08 add %cl,(%eax) 901b: 98 cwtl 901c: 00 00 add %al,(%eax) 901e: 00 00 add %al,(%eax) 9020: 06 push %es 9021: 04 cc add $0xcc,%al 9023: 8f 00 popl (%eax) 9025: 00 0c 40 add %cl,(%eax,%eax,2) 9028: 90 nop 9029: 00 00 add %al,(%eax) 902b: 01 a7 03 00 00 08 add %esp,0x8000003(%edi) 9031: 03 47 00 add 0x0(%edi),%eax 9034: 00 08 add %cl,(%eax) 9036: a7 cmpsl %es:(%edi),%ds:(%esi) 9037: 03 00 add (%eax),%eax 9039: 00 08 add %cl,(%eax) 903b: 7a 00 jp 903d <.debug_info+0x903d> 903d: 00 00 add %al,(%eax) 903f: 00 06 add %al,(%esi) 9041: 04 26 add $0x26,%al 9043: 90 nop 9044: 00 00 add %al,(%eax) 9046: 0c 65 or $0x65,%al 9048: 90 nop 9049: 00 00 add %al,(%eax) 904b: 01 c3 add %eax,%ebx 904d: 03 00 add (%eax),%eax 904f: 00 08 add %cl,(%eax) 9051: 03 47 00 add 0x0(%edi),%eax 9054: 00 08 add %cl,(%eax) 9056: bb 01 00 00 08 mov $0x8000001,%ebx 905b: b5 03 mov $0x3,%ch 905d: 00 00 add %al,(%eax) 905f: 08 65 90 or %ah,0xffffff90(%ebp) 9062: 00 00 add %al,(%eax) 9064: 00 06 add %al,(%esi) 9066: 04 a7 add $0xa7,%al 9068: 03 00 add (%eax),%eax 906a: 00 06 add %al,(%esi) 906c: 04 46 add $0x46,%al 906e: 90 nop 906f: 00 00 add %al,(%eax) 9071: 0c 90 or $0x90,%al 9073: 90 nop 9074: 00 00 add %al,(%eax) 9076: 01 c3 add %eax,%ebx 9078: 03 00 add (%eax),%eax 907a: 00 08 add %cl,(%eax) 907c: 11 48 00 adc %ecx,0x0(%eax) 907f: 00 08 add %cl,(%eax) 9081: bb 01 00 00 08 mov $0x8000001,%ebx 9086: b5 03 mov $0x3,%ch 9088: 00 00 add %al,(%eax) 908a: 08 a7 03 00 00 00 or %ah,0x3(%edi) 9090: 06 push %es 9091: 04 71 add $0x71,%al 9093: 90 nop 9094: 00 00 add %al,(%eax) 9096: 0c b5 or $0xb5,%al 9098: 90 nop 9099: 00 00 add %al,(%eax) 909b: 01 c3 add %eax,%ebx 909d: 03 00 add (%eax),%eax 909f: 00 08 add %cl,(%eax) 90a1: 03 47 00 add 0x0(%edi),%eax 90a4: 00 08 add %cl,(%eax) 90a6: 18 3d 00 00 08 b5 sbb %bh,0xb5080000 90ac: 03 00 add (%eax),%eax 90ae: 00 08 add %cl,(%eax) 90b0: 65 gs 90b1: 90 nop 90b2: 00 00 add %al,(%eax) 90b4: 00 06 add %al,(%esi) 90b6: 04 96 add $0x96,%al 90b8: 90 nop 90b9: 00 00 add %al,(%eax) 90bb: 0c da or $0xda,%al 90bd: 90 nop 90be: 00 00 add %al,(%eax) 90c0: 01 c3 add %eax,%ebx 90c2: 03 00 add (%eax),%eax 90c4: 00 08 add %cl,(%eax) 90c6: 11 48 00 adc %ecx,0x0(%eax) 90c9: 00 08 add %cl,(%eax) 90cb: 18 3d 00 00 08 b5 sbb %bh,0xb5080000 90d1: 03 00 add (%eax),%eax 90d3: 00 08 add %cl,(%eax) 90d5: a7 cmpsl %es:(%edi),%ds:(%esi) 90d6: 03 00 add (%eax),%eax 90d8: 00 00 add %al,(%eax) 90da: 06 push %es 90db: 04 bb add $0xbb,%al 90dd: 90 nop 90de: 00 00 add %al,(%eax) 90e0: 0c fa or $0xfa,%al 90e2: 90 nop 90e3: 00 00 add %al,(%eax) 90e5: 01 7a 00 add %edi,0x0(%edx) 90e8: 00 00 add %al,(%eax) 90ea: 08 03 or %al,(%ebx) 90ec: 47 inc %edi 90ed: 00 00 add %al,(%eax) 90ef: 08 b7 1d 00 00 08 or %dh,0x800001d(%edi) 90f5: bc 8e 00 00 00 mov $0x8e,%esp 90fa: 06 push %es 90fb: 04 e0 add $0xe0,%al 90fd: 90 nop 90fe: 00 00 add %al,(%eax) 9100: 0c 15 or $0x15,%al 9102: 91 xchg %eax,%ecx 9103: 00 00 add %al,(%eax) 9105: 01 3b add %edi,(%ebx) 9107: 01 00 add %eax,(%eax) 9109: 00 08 add %cl,(%eax) 910b: 03 47 00 add 0x0(%edi),%eax 910e: 00 08 add %cl,(%eax) 9110: 15 91 00 00 00 adc $0x91,%eax 9115: 06 push %es 9116: 04 1b add $0x1b,%al 9118: 91 xchg %eax,%ecx 9119: 00 00 add %al,(%eax) 911b: 26 es 911c: 70 6f jo 918d <.debug_info+0x918d> 911e: 6c insb (%dx),%es:(%edi) 911f: 6c insb (%dx),%es:(%edi) 9120: 5f pop %edi 9121: 74 61 je 9184 <.debug_info+0x9184> 9123: 62 6c 65 5f bound %ebp,0x5f(%ebp) 9127: 73 74 jae 919d <.debug_info+0x919d> 9129: 72 75 jb 91a0 <.debug_info+0x91a0> 912b: 63 74 00 01 arpl %si,0x1(%eax,%eax,1) 912f: 06 push %es 9130: 04 00 add $0x0,%al 9132: 91 xchg %eax,%ecx 9133: 00 00 add %al,(%eax) 9135: 0c 4a or $0x4a,%al 9137: 91 xchg %eax,%ecx 9138: 00 00 add %al,(%eax) 913a: 01 7a 00 add %edi,0x0(%edx) 913d: 00 00 add %al,(%eax) 913f: 08 03 or %al,(%ebx) 9141: 47 inc %edi 9142: 00 00 add %al,(%eax) 9144: 08 b6 4e 00 00 00 or %dh,0x4e(%esi) 914a: 06 push %es 914b: 04 35 add $0x35,%al 914d: 91 xchg %eax,%ecx 914e: 00 00 add %al,(%eax) 9150: 0c 65 or $0x65,%al 9152: 91 xchg %eax,%ecx 9153: 00 00 add %al,(%eax) 9155: 01 7a 00 add %edi,0x0(%edx) 9158: 00 00 add %al,(%eax) 915a: 08 03 or %al,(%ebx) 915c: 47 inc %edi 915d: 00 00 add %al,(%eax) 915f: 08 6c 88 00 or %ch,0x0(%eax,%ecx,4) 9163: 00 00 add %al,(%eax) 9165: 06 push %es 9166: 04 50 add $0x50,%al 9168: 91 xchg %eax,%ecx 9169: 00 00 add %al,(%eax) 916b: 0c 85 or $0x85,%al 916d: 91 xchg %eax,%ecx 916e: 00 00 add %al,(%eax) 9170: 01 7a 00 add %edi,0x0(%edx) 9173: 00 00 add %al,(%eax) 9175: 08 03 or %al,(%ebx) 9177: 47 inc %edi 9178: 00 00 add %al,(%eax) 917a: 08 f7 or %dh,%bh 917c: 35 00 00 08 7a xor $0x7a080000,%eax 9181: 00 00 add %al,(%eax) 9183: 00 00 add %al,(%eax) 9185: 06 push %es 9186: 04 6b add $0x6b,%al 9188: 91 xchg %eax,%ecx 9189: 00 00 add %al,(%eax) 918b: 0c a0 or $0xa0,%al 918d: 91 xchg %eax,%ecx 918e: 00 00 add %al,(%eax) 9190: 01 7a 00 add %edi,0x0(%edx) 9193: 00 00 add %al,(%eax) 9195: 08 11 or %dl,(%ecx) 9197: 48 dec %eax 9198: 00 00 add %al,(%eax) 919a: 08 7a 00 or %bh,0x0(%edx) 919d: 00 00 add %al,(%eax) 919f: 00 06 add %al,(%esi) 91a1: 04 8b add $0x8b,%al 91a3: 91 xchg %eax,%ecx 91a4: 00 00 add %al,(%eax) 91a6: 0c c0 or $0xc0,%al 91a8: 91 xchg %eax,%ecx 91a9: 00 00 add %al,(%eax) 91ab: 01 7a 00 add %edi,0x0(%edx) 91ae: 00 00 add %al,(%eax) 91b0: 08 7a 00 or %bh,0x0(%edx) 91b3: 00 00 add %al,(%eax) 91b5: 08 03 or %al,(%ebx) 91b7: 47 inc %edi 91b8: 00 00 add %al,(%eax) 91ba: 08 7a 00 or %bh,0x0(%edx) 91bd: 00 00 add %al,(%eax) 91bf: 00 06 add %al,(%esi) 91c1: 04 a6 add $0xa6,%al 91c3: 91 xchg %eax,%ecx 91c4: 00 00 add %al,(%eax) 91c6: 0c e0 or $0xe0,%al 91c8: 91 xchg %eax,%ecx 91c9: 00 00 add %al,(%eax) 91cb: 01 7a 00 add %edi,0x0(%edx) 91ce: 00 00 add %al,(%eax) 91d0: 08 03 or %al,(%ebx) 91d2: 47 inc %edi 91d3: 00 00 add %al,(%eax) 91d5: 08 7a 00 or %bh,0x0(%edx) 91d8: 00 00 add %al,(%eax) 91da: 08 b5 86 00 00 00 or %dh,0x86(%ebp) 91e0: 06 push %es 91e1: 04 c6 add $0xc6,%al 91e3: 91 xchg %eax,%ecx 91e4: 00 00 add %al,(%eax) 91e6: 0c 05 or $0x5,%al 91e8: 92 xchg %eax,%edx 91e9: 00 00 add %al,(%eax) 91eb: 01 c3 add %eax,%ebx 91ed: 03 00 add (%eax),%eax 91ef: 00 08 add %cl,(%eax) 91f1: 03 47 00 add 0x0(%edi),%eax 91f4: 00 08 add %cl,(%eax) 91f6: 09 7f 00 or %edi,0x0(%edi) 91f9: 00 08 add %cl,(%eax) 91fb: 98 cwtl 91fc: 00 00 add %al,(%eax) 91fe: 00 08 add %cl,(%eax) 9200: 65 gs 9201: 90 nop 9202: 00 00 add %al,(%eax) 9204: 00 06 add %al,(%esi) 9206: 04 e6 add $0xe6,%al 9208: 91 xchg %eax,%ecx 9209: 00 00 add %al,(%eax) 920b: 0c 2f or $0x2f,%al 920d: 92 xchg %eax,%edx 920e: 00 00 add %al,(%eax) 9210: 01 c3 add %eax,%ebx 9212: 03 00 add (%eax),%eax 9214: 00 08 add %cl,(%eax) 9216: 03 47 00 add 0x0(%edi),%eax 9219: 00 08 add %cl,(%eax) 921b: 65 gs 921c: 90 nop 921d: 00 00 add %al,(%eax) 921f: 08 b5 03 00 00 08 or %dh,0x8000003(%ebp) 9225: e6 8f out %al,$0x8f 9227: 00 00 add %al,(%eax) 9229: 08 b7 1d 00 00 00 or %dh,0x1d(%edi) 922f: 06 push %es 9230: 04 0b add $0xb,%al 9232: 92 xchg %eax,%edx 9233: 00 00 add %al,(%eax) 9235: 0c 5e or $0x5e,%al 9237: 92 xchg %eax,%edx 9238: 00 00 add %al,(%eax) 923a: 01 c3 add %eax,%ebx 923c: 03 00 add (%eax),%eax 923e: 00 08 add %cl,(%eax) 9240: 03 47 00 add 0x0(%edi),%eax 9243: 00 08 add %cl,(%eax) 9245: 94 xchg %eax,%esp 9246: 3c 00 cmp $0x0,%al 9248: 00 08 add %cl,(%eax) 924a: 7a 00 jp 924c <.debug_info+0x924c> 924c: 00 00 add %al,(%eax) 924e: 08 b5 03 00 00 08 or %dh,0x8000003(%ebp) 9254: 65 gs 9255: 90 nop 9256: 00 00 add %al,(%eax) 9258: 08 7a 00 or %bh,0x0(%edx) 925b: 00 00 add %al,(%eax) 925d: 00 06 add %al,(%esi) 925f: 04 35 add $0x35,%al 9261: 92 xchg %eax,%edx 9262: 00 00 add %al,(%eax) 9264: 0c 79 or $0x79,%al 9266: 92 xchg %eax,%edx 9267: 00 00 add %al,(%eax) 9269: 01 7a 00 add %edi,0x0(%edx) 926c: 00 00 add %al,(%eax) 926e: 08 03 or %al,(%ebx) 9270: 47 inc %edi 9271: 00 00 add %al,(%eax) 9273: 08 98 00 00 00 00 or %bl,0x0(%eax) 9279: 06 push %es 927a: 04 64 add $0x64,%al 927c: 92 xchg %eax,%edx 927d: 00 00 add %al,(%eax) 927f: 0c a3 or $0xa3,%al 9281: 92 xchg %eax,%edx 9282: 00 00 add %al,(%eax) 9284: 01 c3 add %eax,%ebx 9286: 03 00 add (%eax),%eax 9288: 00 08 add %cl,(%eax) 928a: e1 55 loope 92e1 <.debug_info+0x92e1> 928c: 00 00 add %al,(%eax) 928e: 08 03 or %al,(%ebx) 9290: 47 inc %edi 9291: 00 00 add %al,(%eax) 9293: 08 65 90 or %ah,0xffffff90(%ebp) 9296: 00 00 add %al,(%eax) 9298: 08 b5 03 00 00 08 or %dh,0x8000003(%ebp) 929e: 3b 01 cmp (%ecx),%eax 92a0: 00 00 add %al,(%eax) 92a2: 00 06 add %al,(%esi) 92a4: 04 7f add $0x7f,%al 92a6: 92 xchg %eax,%edx 92a7: 00 00 add %al,(%eax) 92a9: 0c cd or $0xcd,%al 92ab: 92 xchg %eax,%edx 92ac: 00 00 add %al,(%eax) 92ae: 01 c3 add %eax,%ebx 92b0: 03 00 add (%eax),%eax 92b2: 00 08 add %cl,(%eax) 92b4: 03 47 00 add 0x0(%edi),%eax 92b7: 00 08 add %cl,(%eax) 92b9: 65 gs 92ba: 90 nop 92bb: 00 00 add %al,(%eax) 92bd: 08 e1 or %ah,%cl 92bf: 55 push %ebp 92c0: 00 00 add %al,(%eax) 92c2: 08 b5 03 00 00 08 or %dh,0x8000003(%ebp) 92c8: 3b 01 cmp (%ecx),%eax 92ca: 00 00 add %al,(%eax) 92cc: 00 06 add %al,(%esi) 92ce: 04 a9 add $0xa9,%al 92d0: 92 xchg %eax,%edx 92d1: 00 00 add %al,(%eax) 92d3: 0c f2 or $0xf2,%al 92d5: 92 xchg %eax,%edx 92d6: 00 00 add %al,(%eax) 92d8: 01 7a 00 add %edi,0x0(%edx) 92db: 00 00 add %al,(%eax) 92dd: 08 54 68 00 or %dl,0x0(%eax,%ebp,2) 92e1: 00 08 add %cl,(%eax) 92e3: f7 35 00 00 08 7a divl 0x7a080000 92e9: 00 00 add %al,(%eax) 92eb: 00 08 add %cl,(%eax) 92ed: 33 6c 00 00 xor 0x0(%eax,%eax,1),%ebp 92f1: 00 06 add %al,(%esi) 92f3: 04 d3 add $0xd3,%al 92f5: 92 xchg %eax,%edx 92f6: 00 00 add %al,(%eax) 92f8: 0c 12 or $0x12,%al 92fa: 93 xchg %eax,%ebx 92fb: 00 00 add %al,(%eax) 92fd: 01 f7 add %esi,%edi 92ff: 35 00 00 08 54 xor $0x54080000,%eax 9304: 68 00 00 08 f7 push $0xf7080000 9309: 35 00 00 08 33 xor $0x33080000,%eax 930e: 6c insb (%dx),%es:(%edi) 930f: 00 00 add %al,(%eax) 9311: 00 06 add %al,(%esi) 9313: 04 f8 add $0xf8,%al 9315: 92 xchg %eax,%edx 9316: 00 00 add %al,(%eax) 9318: 0c 32 or $0x32,%al 931a: 93 xchg %eax,%ebx 931b: 00 00 add %al,(%eax) 931d: 01 7a 00 add %edi,0x0(%edx) 9320: 00 00 add %al,(%eax) 9322: 08 f7 or %dh,%bh 9324: 35 00 00 08 54 xor $0x54080000,%eax 9329: 68 00 00 08 f7 push $0xf7080000 932e: 35 00 00 00 06 xor $0x6000000,%eax 9333: 04 18 add $0x18,%al 9335: 93 xchg %eax,%ebx 9336: 00 00 add %al,(%eax) 9338: 0c 4d or $0x4d,%al 933a: 93 xchg %eax,%ebx 933b: 00 00 add %al,(%eax) 933d: 01 7a 00 add %edi,0x0(%edx) 9340: 00 00 add %al,(%eax) 9342: 08 54 68 00 or %dl,0x0(%eax,%ebp,2) 9346: 00 08 add %cl,(%eax) 9348: f7 35 00 00 00 06 divl 0x6000000 934e: 04 38 add $0x38,%al 9350: 93 xchg %eax,%ebx 9351: 00 00 add %al,(%eax) 9353: 0c 6d or $0x6d,%al 9355: 93 xchg %eax,%ebx 9356: 00 00 add %al,(%eax) 9358: 01 7a 00 add %edi,0x0(%edx) 935b: 00 00 add %al,(%eax) 935d: 08 54 68 00 or %dl,0x0(%eax,%ebp,2) 9361: 00 08 add %cl,(%eax) 9363: f7 35 00 00 08 18 divl 0x18080000 9369: 3d 00 00 00 06 cmp $0x6000000,%eax 936e: 04 53 add $0x53,%al 9370: 93 xchg %eax,%ebx 9371: 00 00 add %al,(%eax) 9373: 0c 8d or $0x8d,%al 9375: 93 xchg %eax,%ebx 9376: 00 00 add %al,(%eax) 9378: 01 7a 00 add %edi,0x0(%edx) 937b: 00 00 add %al,(%eax) 937d: 08 54 68 00 or %dl,0x0(%eax,%ebp,2) 9381: 00 08 add %cl,(%eax) 9383: f7 35 00 00 08 7a divl 0x7a080000 9389: 00 00 add %al,(%eax) 938b: 00 00 add %al,(%eax) 938d: 06 push %es 938e: 04 73 add $0x73,%al 9390: 93 xchg %eax,%ebx 9391: 00 00 add %al,(%eax) 9393: 0c b2 or $0xb2,%al 9395: 93 xchg %eax,%ebx 9396: 00 00 add %al,(%eax) 9398: 01 7a 00 add %edi,0x0(%edx) 939b: 00 00 add %al,(%eax) 939d: 08 54 68 00 or %dl,0x0(%eax,%ebp,2) 93a1: 00 08 add %cl,(%eax) 93a3: f7 35 00 00 08 7a divl 0x7a080000 93a9: 00 00 add %al,(%eax) 93ab: 00 08 add %cl,(%eax) 93ad: 38 03 cmp %al,(%ebx) 93af: 00 00 add %al,(%eax) 93b1: 00 06 add %al,(%esi) 93b3: 04 93 add $0x93,%al 93b5: 93 xchg %eax,%ebx 93b6: 00 00 add %al,(%eax) 93b8: 0c d7 or $0xd7,%al 93ba: 93 xchg %eax,%ebx 93bb: 00 00 add %al,(%eax) 93bd: 01 7a 00 add %edi,0x0(%edx) 93c0: 00 00 add %al,(%eax) 93c2: 08 54 68 00 or %dl,0x0(%eax,%ebp,2) 93c6: 00 08 add %cl,(%eax) 93c8: f7 35 00 00 08 54 divl 0x54080000 93ce: 68 00 00 08 f7 push $0xf7080000 93d3: 35 00 00 00 06 xor $0x6000000,%eax 93d8: 04 b8 add $0xb8,%al 93da: 93 xchg %eax,%ebx 93db: 00 00 add %al,(%eax) 93dd: 0c f7 or $0xf7,%al 93df: 93 xchg %eax,%ebx 93e0: 00 00 add %al,(%eax) 93e2: 01 7a 00 add %edi,0x0(%edx) 93e5: 00 00 add %al,(%eax) 93e7: 08 f7 or %dh,%bh 93e9: 35 00 00 08 bb xor $0xbb080000,%eax 93ee: 01 00 add %eax,(%eax) 93f0: 00 08 add %cl,(%eax) 93f2: 7a 00 jp 93f4 <.debug_info+0x93f4> 93f4: 00 00 add %al,(%eax) 93f6: 00 06 add %al,(%esi) 93f8: 04 dd add $0xdd,%al 93fa: 93 xchg %eax,%ebx 93fb: 00 00 add %al,(%eax) 93fd: 0c 12 or $0x12,%al 93ff: 94 xchg %eax,%esp 9400: 00 00 add %al,(%eax) 9402: 01 b7 1d 00 00 08 add %esi,0x800001d(%edi) 9408: f7 35 00 00 08 33 divl 0x33080000 940e: 6c insb (%dx),%es:(%edi) 940f: 00 00 add %al,(%eax) 9411: 00 06 add %al,(%esi) 9413: 04 fd add $0xfd,%al 9415: 93 xchg %eax,%ebx 9416: 00 00 add %al,(%eax) 9418: 07 pop %es 9419: 2e cs 941a: 94 xchg %eax,%esp 941b: 00 00 add %al,(%eax) 941d: 01 08 add %ecx,(%eax) 941f: f7 35 00 00 08 33 divl 0x33080000 9425: 6c insb (%dx),%es:(%edi) 9426: 00 00 add %al,(%eax) 9428: 08 b7 1d 00 00 00 or %dh,0x1d(%edi) 942e: 06 push %es 942f: 04 18 add $0x18,%al 9431: 94 xchg %eax,%esp 9432: 00 00 add %al,(%eax) 9434: 07 pop %es 9435: 40 inc %eax 9436: 94 xchg %eax,%esp 9437: 00 00 add %al,(%eax) 9439: 01 08 add %ecx,(%eax) 943b: 54 push %esp 943c: 68 00 00 00 06 push $0x6000000 9441: 04 34 add $0x34,%al 9443: 94 xchg %eax,%esp 9444: 00 00 add %al,(%eax) 9446: 0c 60 or $0x60,%al 9448: 94 xchg %eax,%esp 9449: 00 00 add %al,(%eax) 944b: 01 7a 00 add %edi,0x0(%edx) 944e: 00 00 add %al,(%eax) 9450: 08 54 68 00 or %dl,0x0(%eax,%ebp,2) 9454: 00 08 add %cl,(%eax) 9456: 7a 00 jp 9458 <.debug_info+0x9458> 9458: 00 00 add %al,(%eax) 945a: 08 33 or %dh,(%ebx) 945c: 6c insb (%dx),%es:(%edi) 945d: 00 00 add %al,(%eax) 945f: 00 06 add %al,(%esi) 9461: 04 46 add $0x46,%al 9463: 94 xchg %eax,%esp 9464: 00 00 add %al,(%eax) 9466: 0c 7b or $0x7b,%al 9468: 94 xchg %eax,%esp 9469: 00 00 add %al,(%eax) 946b: 01 7a 00 add %edi,0x0(%edx) 946e: 00 00 add %al,(%eax) 9470: 08 f7 or %dh,%bh 9472: 35 00 00 08 08 xor $0x8080000,%eax 9477: 5d pop %ebp 9478: 00 00 add %al,(%eax) 947a: 00 06 add %al,(%esi) 947c: 04 66 add $0x66,%al 947e: 94 xchg %eax,%esp 947f: 00 00 add %al,(%eax) 9481: 0c 9b or $0x9b,%al 9483: 94 xchg %eax,%esp 9484: 00 00 add %al,(%eax) 9486: 01 7a 00 add %edi,0x0(%edx) 9489: 00 00 add %al,(%eax) 948b: 08 08 or %cl,(%eax) 948d: 36 00 00 add %al,%ss:(%eax) 9490: 08 f7 or %dh,%bh 9492: 35 00 00 08 9b xor $0x9b080000,%eax 9497: 94 xchg %eax,%esp 9498: 00 00 add %al,(%eax) 949a: 00 06 add %al,(%esi) 949c: 04 0b add $0xb,%al 949e: 5f pop %edi 949f: 00 00 add %al,(%eax) 94a1: 06 push %es 94a2: 04 81 add $0x81,%al 94a4: 94 xchg %eax,%esp 94a5: 00 00 add %al,(%eax) 94a7: 0c cb or $0xcb,%al 94a9: 94 xchg %eax,%esp 94aa: 00 00 add %al,(%eax) 94ac: 01 7a 00 add %edi,0x0(%edx) 94af: 00 00 add %al,(%eax) 94b1: 08 f7 or %dh,%bh 94b3: 35 00 00 08 18 xor $0x18080000,%eax 94b8: 3d 00 00 08 cb cmp $0xcb080000,%eax 94bd: 94 xchg %eax,%esp 94be: 00 00 add %al,(%eax) 94c0: 08 b5 03 00 00 08 or %dh,0x8000003(%ebp) 94c6: 7a 00 jp 94c8 <.debug_info+0x94c8> 94c8: 00 00 add %al,(%eax) 94ca: 00 06 add %al,(%esi) 94cc: 04 d1 add $0xd1,%al 94ce: 94 xchg %eax,%esp 94cf: 00 00 add %al,(%eax) 94d1: 2f das 94d2: 06 push %es 94d3: 04 a7 add $0xa7,%al 94d5: 94 xchg %eax,%esp 94d6: 00 00 add %al,(%eax) 94d8: 0c f7 or $0xf7,%al 94da: 94 xchg %eax,%esp 94db: 00 00 add %al,(%eax) 94dd: 01 c3 add %eax,%ebx 94df: 03 00 add (%eax),%eax 94e1: 00 08 add %cl,(%eax) 94e3: f7 35 00 00 08 18 divl 0x18080000 94e9: 3d 00 00 08 b7 cmp $0xb7080000,%eax 94ee: 1d 00 00 08 b5 sbb $0xb5080000,%eax 94f3: 03 00 add (%eax),%eax 94f5: 00 00 add %al,(%eax) 94f7: 06 push %es 94f8: 04 d8 add $0xd8,%al 94fa: 94 xchg %eax,%esp 94fb: 00 00 add %al,(%eax) 94fd: 0c 17 or $0x17,%al 94ff: 95 xchg %eax,%ebp 9500: 00 00 add %al,(%eax) 9502: 01 c3 add %eax,%ebx 9504: 03 00 add (%eax),%eax 9506: 00 08 add %cl,(%eax) 9508: f7 35 00 00 08 bb divl 0xbb080000 950e: 01 00 add %eax,(%eax) 9510: 00 08 add %cl,(%eax) 9512: b5 03 mov $0x3,%ch 9514: 00 00 add %al,(%eax) 9516: 00 06 add %al,(%esi) 9518: 04 fd add $0xfd,%al 951a: 94 xchg %eax,%esp 951b: 00 00 add %al,(%eax) 951d: 0c 32 or $0x32,%al 951f: 95 xchg %eax,%ebp 9520: 00 00 add %al,(%eax) 9522: 01 7a 00 add %edi,0x0(%edx) 9525: 00 00 add %al,(%eax) 9527: 08 f7 or %dh,%bh 9529: 35 00 00 08 18 xor $0x18080000,%eax 952e: 3d 00 00 00 06 cmp $0x6000000,%eax 9533: 04 1d add $0x1d,%al 9535: 95 xchg %eax,%ebp 9536: 00 00 add %al,(%eax) 9538: 07 pop %es 9539: 4e dec %esi 953a: 95 xchg %eax,%ebp 953b: 00 00 add %al,(%eax) 953d: 01 08 add %ecx,(%eax) 953f: 54 push %esp 9540: 68 00 00 08 a7 push $0xa7080000 9545: 03 00 add (%eax),%eax 9547: 00 08 add %cl,(%eax) 9549: a7 cmpsl %es:(%edi),%ds:(%esi) 954a: 03 00 add (%eax),%eax 954c: 00 00 add %al,(%eax) 954e: 06 push %es 954f: 04 38 add $0x38,%al 9551: 95 xchg %eax,%ebp 9552: 00 00 add %al,(%eax) 9554: 0c 64 or $0x64,%al 9556: 95 xchg %eax,%ebp 9557: 00 00 add %al,(%eax) 9559: 01 54 68 00 add %edx,0x0(%eax,%ebp,2) 955d: 00 08 add %cl,(%eax) 955f: f1 icebp 9560: 6b 00 00 imul $0x0,(%eax),%eax 9563: 00 06 add %al,(%esi) 9565: 04 54 add $0x54,%al 9567: 95 xchg %eax,%ebp 9568: 00 00 add %al,(%eax) 956a: 07 pop %es 956b: 76 95 jbe 9502 <.debug_info+0x9502> 956d: 00 00 add %al,(%eax) 956f: 01 08 add %ecx,(%eax) 9571: f1 icebp 9572: 6b 00 00 imul $0x0,(%eax),%eax 9575: 00 06 add %al,(%esi) 9577: 04 6a add $0x6a,%al 9579: 95 xchg %eax,%ebp 957a: 00 00 add %al,(%eax) 957c: 0c 91 or $0x91,%al 957e: 95 xchg %eax,%ebp 957f: 00 00 add %al,(%eax) 9581: 01 7a 00 add %edi,0x0(%edx) 9584: 00 00 add %al,(%eax) 9586: 08 f7 or %dh,%bh 9588: 35 00 00 08 91 xor $0x91080000,%eax 958d: 95 xchg %eax,%ebp 958e: 00 00 add %al,(%eax) 9590: 00 06 add %al,(%esi) 9592: 04 97 add $0x97,%al 9594: 95 xchg %eax,%ebp 9595: 00 00 add %al,(%eax) 9597: 26 6b 73 74 61 imul $0x61,%es:0x74(%ebx),%esi 959c: 74 66 je 9604 <.debug_info+0x9604> 959e: 73 00 jae 95a0 <.debug_info+0x95a0> 95a0: 01 06 add %eax,(%esi) 95a2: 04 7c add $0x7c,%al 95a4: 95 xchg %eax,%ebp 95a5: 00 00 add %al,(%eax) 95a7: 0c c1 or $0xc1,%al 95a9: 95 xchg %eax,%ebp 95aa: 00 00 add %al,(%eax) 95ac: 01 7a 00 add %edi,0x0(%edx) 95af: 00 00 add %al,(%eax) 95b1: 08 f1 or %dh,%cl 95b3: 6b 00 00 imul $0x0,(%eax),%eax 95b6: 08 e2 or %ah,%dl 95b8: 54 push %esp 95b9: 00 00 add %al,(%eax) 95bb: 08 bb 01 00 00 00 or %bh,0x1(%ebx) 95c1: 06 push %es 95c2: 04 a7 add $0xa7,%al 95c4: 95 xchg %eax,%ebp 95c5: 00 00 add %al,(%eax) 95c7: 07 pop %es 95c8: d8 95 00 00 01 08 fcoms 0x8010000(%ebp) 95ce: 08 36 or %dh,(%esi) 95d0: 00 00 add %al,(%eax) 95d2: 08 7a 00 or %bh,0x0(%edx) 95d5: 00 00 add %al,(%eax) 95d7: 00 06 add %al,(%esi) 95d9: 04 c7 add $0xc7,%al 95db: 95 xchg %eax,%ebp 95dc: 00 00 add %al,(%eax) 95de: 0c f3 or $0xf3,%al 95e0: 95 xchg %eax,%ebp 95e1: 00 00 add %al,(%eax) 95e3: 01 7a 00 add %edi,0x0(%edx) 95e6: 00 00 add %al,(%eax) 95e8: 08 f3 or %dh,%bl 95ea: 95 xchg %eax,%ebp 95eb: 00 00 add %al,(%eax) 95ed: 08 08 or %cl,(%eax) 95ef: 36 00 00 add %al,%ss:(%eax) 95f2: 00 06 add %al,(%esi) 95f4: 04 f9 add $0xf9,%al 95f6: 95 xchg %eax,%ebp 95f7: 00 00 add %al,(%eax) 95f9: 26 es 95fa: 73 65 jae 9661 <.debug_info+0x9661> 95fc: 71 5f jno 965d <.debug_info+0x965d> 95fe: 66 69 6c 65 00 01 06 imul $0x601,0x0(%ebp),%bp 9605: 04 de add $0xde,%al 9607: 95 xchg %eax,%ebp 9608: 00 00 add %al,(%eax) 960a: 0c 2e or $0x2e,%al 960c: 96 xchg %eax,%esi 960d: 00 00 add %al,(%eax) 960f: 01 c3 add %eax,%ebx 9611: 03 00 add (%eax),%eax 9613: 00 08 add %cl,(%eax) 9615: f1 icebp 9616: 6b 00 00 imul $0x0,(%eax),%eax 9619: 08 7a 00 or %bh,0x0(%edx) 961c: 00 00 add %al,(%eax) 961e: 08 bb 01 00 00 08 or %bh,0x8000001(%ebx) 9624: b5 03 mov $0x3,%ch 9626: 00 00 add %al,(%eax) 9628: 08 a7 03 00 00 00 or %ah,0x3(%edi) 962e: 06 push %es 962f: 04 0a add $0xa,%al 9631: 96 xchg %eax,%esi 9632: 00 00 add %al,(%eax) 9634: 0c 58 or $0x58,%al 9636: 96 xchg %eax,%esi 9637: 00 00 add %al,(%eax) 9639: 01 c3 add %eax,%ebx 963b: 03 00 add (%eax),%eax 963d: 00 08 add %cl,(%eax) 963f: f1 icebp 9640: 6b 00 00 imul $0x0,(%eax),%eax 9643: 08 7a 00 or %bh,0x0(%edx) 9646: 00 00 add %al,(%eax) 9648: 08 18 or %bl,(%eax) 964a: 3d 00 00 08 b5 cmp $0xb5080000,%eax 964f: 03 00 add (%eax),%eax 9651: 00 08 add %cl,(%eax) 9653: a7 cmpsl %es:(%edi),%ds:(%esi) 9654: 03 00 add (%eax),%eax 9656: 00 00 add %al,(%eax) 9658: 06 push %es 9659: 04 34 add $0x34,%al 965b: 96 xchg %eax,%esi 965c: 00 00 add %al,(%eax) 965e: 0c 87 or $0x87,%al 9660: 96 xchg %eax,%esi 9661: 00 00 add %al,(%eax) 9663: 01 f7 add %esi,%edi 9665: 35 00 00 08 f1 xor $0xf1080000,%eax 966a: 6b 00 00 imul $0x0,(%eax),%eax 966d: 08 87 96 00 00 08 or %al,0x8000096(%edi) 9673: 7a 00 jp 9675 <.debug_info+0x9675> 9675: 00 00 add %al,(%eax) 9677: 08 7a 00 or %bh,0x0(%edx) 967a: 00 00 add %al,(%eax) 967c: 08 8d 96 00 00 08 or %cl,0x8000096(%ebp) 9682: b7 1d mov $0x1d,%bh 9684: 00 00 add %al,(%eax) 9686: 00 06 add %al,(%esi) 9688: 04 9c add $0x9c,%al 968a: 02 00 add (%eax),%al 968c: 00 06 add %al,(%esi) 968e: 04 93 add $0x93,%al 9690: 96 xchg %eax,%esi 9691: 00 00 add %al,(%eax) 9693: 0c a8 or $0xa8,%al 9695: 96 xchg %eax,%esi 9696: 00 00 add %al,(%eax) 9698: 01 7a 00 add %edi,0x0(%edx) 969b: 00 00 add %al,(%eax) 969d: 08 b7 1d 00 00 08 or %dh,0x800001d(%edi) 96a3: f7 35 00 00 00 06 divl 0x6000000 96a9: 04 5e add $0x5e,%al 96ab: 96 xchg %eax,%esi 96ac: 00 00 add %al,(%eax) 96ae: 0c cd or $0xcd,%al 96b0: 96 xchg %eax,%esi 96b1: 00 00 add %al,(%eax) 96b3: 01 7a 00 add %edi,0x0(%edx) 96b6: 00 00 add %al,(%eax) 96b8: 08 f7 or %dh,%bh 96ba: 35 00 00 08 87 xor $0x87080000,%eax 96bf: 96 xchg %eax,%esi 96c0: 00 00 add %al,(%eax) 96c2: 08 e2 or %ah,%dl 96c4: 54 push %esp 96c5: 00 00 add %al,(%eax) 96c7: 08 7a 00 or %bh,0x0(%edx) 96ca: 00 00 add %al,(%eax) 96cc: 00 06 add %al,(%esi) 96ce: 04 ae add $0xae,%al 96d0: 96 xchg %eax,%esi 96d1: 00 00 add %al,(%eax) 96d3: 0c ed or $0xed,%al 96d5: 96 xchg %eax,%esi 96d6: 00 00 add %al,(%eax) 96d8: 01 7a 00 add %edi,0x0(%edx) 96db: 00 00 add %al,(%eax) 96dd: 08 f7 or %dh,%bh 96df: 35 00 00 08 bb xor $0xbb080000,%eax 96e4: 01 00 add %eax,(%eax) 96e6: 00 08 add %cl,(%eax) 96e8: f7 35 00 00 00 06 divl 0x6000000 96ee: 04 d3 add $0xd3,%al 96f0: 96 xchg %eax,%esi 96f1: 00 00 add %al,(%eax) 96f3: 0c 03 or $0x3,%al 96f5: 97 xchg %eax,%edi 96f6: 00 00 add %al,(%eax) 96f8: 01 f7 add %esi,%edi 96fa: 35 00 00 08 f7 xor $0xf7080000,%eax 96ff: 35 00 00 00 06 xor $0x6000000,%eax 9704: 04 f3 add $0xf3,%al 9706: 96 xchg %eax,%esi 9707: 00 00 add %al,(%eax) 9709: 0c 1e or $0x1e,%al 970b: 97 xchg %eax,%edi 970c: 00 00 add %al,(%eax) 970e: 01 f7 add %esi,%edi 9710: 35 00 00 08 f1 xor $0xf1080000,%eax 9715: 6b 00 00 imul $0x0,(%eax),%eax 9718: 08 b7 1d 00 00 00 or %dh,0x1d(%edi) 971e: 06 push %es 971f: 04 09 add $0x9,%al 9721: 97 xchg %eax,%edi 9722: 00 00 add %al,(%eax) 9724: 0c 48 or $0x48,%al 9726: 97 xchg %eax,%edi 9727: 00 00 add %al,(%eax) 9729: 01 f7 add %esi,%edi 972b: 35 00 00 08 f1 xor $0xf1080000,%eax 9730: 6b 00 00 imul $0x0,(%eax),%eax 9733: 08 b7 1d 00 00 08 or %dh,0x800001d(%edi) 9739: b7 1d mov $0x1d,%bh 973b: 00 00 add %al,(%eax) 973d: 08 8d 96 00 00 08 or %cl,0x8000096(%ebp) 9743: b7 1d mov $0x1d,%bh 9745: 00 00 add %al,(%eax) 9747: 00 06 add %al,(%esi) 9749: 04 24 add $0x24,%al 974b: 97 xchg %eax,%edi 974c: 00 00 add %al,(%eax) 974e: 0c 72 or $0x72,%al 9750: 97 xchg %eax,%edi 9751: 00 00 add %al,(%eax) 9753: 01 7a 00 add %edi,0x0(%edx) 9756: 00 00 add %al,(%eax) 9758: 08 ef or %ch,%bh 975a: 8b 00 mov (%eax),%eax 975c: 00 08 add %cl,(%eax) 975e: 7a 00 jp 9760 <.debug_info+0x9760> 9760: 00 00 add %al,(%eax) 9762: 08 18 or %bl,(%eax) 9764: 3d 00 00 08 b7 cmp $0xb7080000,%eax 9769: 1d 00 00 08 08 sbb $0x8080000,%eax 976e: 36 00 00 add %al,%ss:(%eax) 9771: 00 06 add %al,(%esi) 9773: 04 4e add $0x4e,%al 9775: 97 xchg %eax,%edi 9776: 00 00 add %al,(%eax) 9778: 0e push %cs 9779: e3 97 jecxz 9712 <.debug_info+0x9712> 977b: 00 00 add %al,(%eax) 977d: 6d insl (%dx),%es:(%edi) 977e: 69 73 63 64 65 76 69 imul $0x69766564,0x63(%ebx),%esi 9785: 63 65 00 arpl %sp,0x0(%ebp) 9788: 1c 52 sbb $0x52,%al 978a: 24 0b and $0xb,%al 978c: 6d insl (%dx),%es:(%edi) 978d: 69 6e 6f 72 00 52 25 imul $0x25520072,0x6f(%esi),%ebp 9794: 7a 00 jp 9796 <.debug_info+0x9796> 9796: 00 00 add %al,(%eax) 9798: 02 23 add (%ebx),%ah 979a: 00 0f add %cl,(%edi) 979c: a7 cmpsl %es:(%edi),%ds:(%esi) 979d: 01 00 add %eax,(%eax) 979f: 00 52 26 add %dl,0x26(%edx) 97a2: 18 3d 00 00 02 23 sbb %bh,0x23020000 97a8: 04 0b add $0xb,%al 97aa: 66 6f outsw %ds:(%esi),(%dx) 97ac: 70 73 jo 9821 <.debug_info+0x9821> 97ae: 00 52 27 add %dl,0x27(%edx) 97b1: 5f pop %edi 97b2: 85 00 test %eax,(%eax) 97b4: 00 02 add %al,(%edx) 97b6: 23 08 and (%eax),%ecx 97b8: 0f 42 02 cmovb (%edx),%eax 97bb: 00 00 add %al,(%eax) 97bd: 52 push %edx 97be: 28 c8 sub %cl,%al 97c0: 1d 00 00 02 23 sbb $0x23020000,%eax 97c5: 0c 0b or $0xb,%al 97c7: 64 fs 97c8: 65 gs 97c9: 76 00 jbe 97cb <.debug_info+0x97cb> 97cb: 52 push %edx 97cc: 29 f4 sub %esi,%esp 97ce: 28 00 sub %al,(%eax) 97d0: 00 02 add %al,(%edx) 97d2: 23 14 0f and (%edi,%ecx,1),%edx 97d5: d0 00 rolb (%eax) 97d7: 00 00 add %al,(%eax) 97d9: 52 push %edx 97da: 2a c4 sub %ah,%al 97dc: 98 cwtl 97dd: 00 00 add %al,(%eax) 97df: 02 23 add (%ebx),%ah 97e1: 18 00 sbb %al,(%eax) 97e3: 0e push %cs 97e4: c4 98 00 00 63 6c les 0x6c630000(%eax),%ebx 97ea: 61 popa 97eb: 73 73 jae 9860 <.debug_info+0x9860> 97ed: 5f pop %edi 97ee: 64 fs 97ef: 65 gs 97f0: 76 69 jbe 985b <.debug_info+0x985b> 97f2: 63 65 00 arpl %sp,0x0(%ebp) 97f5: a0 52 22 0f ba mov 0xba0f2252,%al 97fa: 02 00 add (%eax),%al 97fc: 00 50 d6 add %dl,0xffffffd6(%eax) 97ff: c8 1d 00 00 enter $0x1d,$0x0 9803: 02 23 add (%ebx),%ah 9805: 00 0b add %cl,(%ebx) 9807: 6b 6f 62 6a imul $0x6a,0x62(%edi),%ebp 980b: 00 50 d8 add %dl,0xffffffd8(%eax) 980e: 18 5b 00 sbb %bl,0x0(%ebx) 9811: 00 02 add %al,(%edx) 9813: 23 08 and (%eax),%ecx 9815: 0f d0 00 (bad) (%eax),%mm0 9818: 00 00 add %al,(%eax) 981a: 50 push %eax 981b: d9 80 a9 00 00 02 flds 0x20000a9(%eax) 9821: 23 54 0b 64 and 0x64(%ebx,%ecx,1),%edx 9825: 65 gs 9826: 76 74 jbe 989c <.debug_info+0x989c> 9828: 00 50 da add %dl,0xffffffda(%eax) 982b: 38 03 cmp %al,(%ebx) 982d: 00 00 add %al,(%eax) 982f: 02 23 add (%ebx),%ah 9831: 58 pop %eax 9832: 0f d6 00 (bad) %xmm0,(%eax) 9835: 00 00 add %al,(%eax) 9837: 50 push %eax 9838: db 32 (bad) (%edx) 983a: a9 00 00 02 23 test $0x23020000,%eax 983f: 5c pop %esp 9840: 0f 30 wrmsr 9842: 00 00 add %al,(%eax) 9844: 00 50 dc add %dl,0xffffffdc(%eax) 9847: e8 a8 00 00 02 call 20098f4 984c: 23 60 0b and 0xb(%eax),%esp 984f: 64 fs 9850: 65 gs 9851: 76 00 jbe 9853 <.debug_info+0x9853> 9853: 50 push %eax 9854: dd f4 (bad) 9856: 28 00 sub %al,(%eax) 9858: 00 02 add %al,(%edx) 985a: 23 74 0b 63 and 0x63(%ebx,%ecx,1),%esi 985e: 6c insb (%dx),%es:(%edi) 985f: 61 popa 9860: 73 73 jae 98d5 <.debug_info+0x98d5> 9862: 5f pop %edi 9863: 64 fs 9864: 61 popa 9865: 74 61 je 98c8 <.debug_info+0x98c8> 9867: 00 50 de add %dl,0xffffffde(%eax) 986a: b7 1d mov $0x1d,%bh 986c: 00 00 add %al,(%eax) 986e: 02 23 add (%ebx),%ah 9870: 78 0f js 9881 <.debug_info+0x9881> 9872: 76 03 jbe 9877 <.debug_info+0x9877> 9874: 00 00 add %al,(%eax) 9876: 50 push %eax 9877: df c4 ffreep %st(4) 9879: 98 cwtl 987a: 00 00 add %al,(%eax) 987c: 02 23 add (%ebx),%ah 987e: 7c 0b jl 988b <.debug_info+0x988b> 9880: 67 72 6f addr16 jb 98f2 <.debug_info+0x98f2> 9883: 75 70 jne 98f5 <.debug_info+0x98f5> 9885: 73 00 jae 9887 <.debug_info+0x9887> 9887: 50 push %eax 9888: e0 02 loopne 988c <.debug_info+0x988c> 988a: aa stos %al,%es:(%edi) 988b: 00 00 add %al,(%eax) 988d: 03 23 add (%ebx),%esp 988f: 80 01 0f addb $0xf,(%ecx) 9892: 1b 03 sbb (%ebx),%eax 9894: 00 00 add %al,(%eax) 9896: 50 push %eax 9897: e2 6e loop 9907 <.debug_info+0x9907> 9899: a9 00 00 03 23 test $0x23030000,%eax 989e: 84 01 test %al,(%ecx) 98a0: 0f 3e (bad) 98a2: 03 00 add (%eax),%eax 98a4: 00 50 e4 add %dl,0xffffffe4(%eax) 98a7: 5c pop %esp 98a8: a9 00 00 03 23 test $0x23030000,%eax 98ad: 88 01 mov %al,(%ecx) 98af: 0b 63 6c or 0x6c(%ebx),%esp 98b2: 61 popa 98b3: 73 73 jae 9928 <.debug_info+0x9928> 98b5: 5f pop %edi 98b6: 69 64 00 50 e5 2f 5d imul $0x5d2fe5,0x50(%eax,%eax,1),%esp 98bd: 00 98be: 00 03 add %al,(%ebx) 98c0: 23 8c 01 00 06 04 e3 and 0xe3040600(%ecx,%eax,1),%ecx 98c7: 97 xchg %eax,%edi 98c8: 00 00 add %al,(%eax) 98ca: 0d e1 98 00 00 or $0x98e1,%eax 98cf: 08 05 0d 0b 70 67 or %al,0x67700b0d 98d5: 64 00 05 0d 0b 05 00 add %al,%fs:0x50b0d 98dc: 00 02 add %al,(%edx) 98de: 23 00 and (%eax),%eax 98e0: 00 09 add %cl,(%ecx) 98e2: 70 75 jo 9959 <.debug_info+0x9959> 98e4: 64 fs 98e5: 5f pop %edi 98e6: 74 00 je 98e8 <.debug_info+0x98e8> 98e8: 05 0d ca 98 00 add $0x98ca0d,%eax 98ed: 00 0d 22 99 00 00 add %cl,0x9922 98f3: 10 19 adc %bl,(%ecx) 98f5: 53 push %ebx 98f6: 0f 42 02 cmovb (%edx),%eax 98f9: 00 00 add %al,(%eax) 98fb: 19 50 c8 sbb %edx,0xffffffc8(%eax) 98fe: 1d 00 00 02 23 sbb $0x23020000,%eax 9903: 00 0f add %cl,(%edi) 9905: 76 03 jbe 990a <.debug_info+0x990a> 9907: 00 00 add %al,(%eax) 9909: 19 51 b7 sbb %edx,0xffffffb7(%ecx) 990c: 1d 00 00 02 23 sbb $0x23020000,%eax 9911: 08 0b or %cl,(%ebx) 9913: 68 65 61 64 00 push $0x646165 9918: 19 52 b6 sbb %edx,0xffffffb6(%edx) 991b: 4e dec %esi 991c: 00 00 add %al,(%eax) 991e: 02 23 add (%ebx),%ah 9920: 0c 00 or $0x0,%al 9922: 25 44 99 00 00 and $0x9944,%eax 9927: 10 19 adc %bl,(%ecx) 9929: 56 push %esi 992a: 24 76 and $0x76,%al 992c: 6d insl (%dx),%es:(%edi) 992d: 5f pop %edi 992e: 73 65 jae 9995 <.debug_info+0x9995> 9930: 74 00 je 9932 <.debug_info+0x9932> 9932: 19 53 ee sbb %edx,0xffffffee(%ebx) 9935: 98 cwtl 9936: 00 00 add %al,(%eax) 9938: 30 77 01 xor %dh,0x1(%edi) 993b: 00 00 add %al,(%eax) 993d: 19 55 30 sbb %edx,0x30(%ebp) 9940: 6d insl (%dx),%es:(%edi) 9941: 00 00 add %al,(%eax) 9943: 00 0a add %cl,(%edx) 9945: 6e outsb %ds:(%esi),(%dx) 9946: 99 cltd 9947: 00 00 add %al,(%eax) 9949: b3 01 mov $0x1,%bl 994b: 00 00 add %al,(%eax) 994d: 18 19 sbb %bl,(%ecx) 994f: 14 0f adc $0xf,%al 9951: d6 (bad) 9952: 02 00 add (%eax),%al 9954: 00 1c 1b add %bl,(%ebx,%ebx,1) 9957: 1e push %ds 9958: 1f pop %ds 9959: 00 00 add %al,(%eax) 995b: 02 23 add (%ebx),%ah 995d: 00 0b add %cl,(%ebx) 995f: 68 65 61 64 00 push $0x646165 9964: 1c 1c sbb $0x1c,%al 9966: c8 1d 00 00 enter $0x1d,$0x0 996a: 02 23 add (%ebx),%ah 996c: 10 00 adc %al,(%eax) 996e: 06 push %es 996f: 04 44 add $0x44,%al 9971: 99 cltd 9972: 00 00 add %al,(%eax) 9974: 0e push %cs 9975: ec in (%dx),%al 9976: 99 cltd 9977: 00 00 add %al,(%eax) 9979: 76 6d jbe 99e8 <.debug_info+0x99e8> 997b: 5f pop %edi 997c: 6f outsl %ds:(%esi),(%dx) 997d: 70 65 jo 99e4 <.debug_info+0x99e4> 997f: 72 61 jb 99e2 <.debug_info+0x99e2> 9981: 74 69 je 99ec <.debug_info+0x99ec> 9983: 6f outsl %ds:(%esi),(%dx) 9984: 6e outsb %ds:(%esi),(%dx) 9985: 73 5f jae 99e6 <.debug_info+0x99e6> 9987: 73 74 jae 99fd <.debug_info+0x99fd> 9989: 72 75 jb 9a00 <.debug_info+0x9a00> 998b: 63 74 00 14 arpl %si,0x14(%eax,%eax,1) 998f: 19 62 0b sbb %esp,0xb(%edx) 9992: 6f outsl %ds:(%esi),(%dx) 9993: 70 65 jo 99fa <.debug_info+0x99fa> 9995: 6e outsb %ds:(%esi),(%dx) 9996: 00 19 add %bl,(%ecx) 9998: c5 lds (bad),%edi 9999: fe (bad) 999a: 99 cltd 999b: 00 00 add %al,(%eax) 999d: 02 23 add (%ebx),%ah 999f: 00 0b add %cl,(%ebx) 99a1: 63 6c 6f 73 arpl %bp,0x73(%edi,%ebp,2) 99a5: 65 00 19 add %bl,%gs:(%ecx) 99a8: c6 (bad) 99a9: fe (bad) 99aa: 99 cltd 99ab: 00 00 add %al,(%eax) 99ad: 02 23 add (%ebx),%ah 99af: 04 0b add $0xb,%al 99b1: 6e outsb %ds:(%esi),(%dx) 99b2: 6f outsl %ds:(%esi),(%dx) 99b3: 70 61 jo 9a16 <.debug_info+0x9a16> 99b5: 67 65 00 19 addr16 add %bl,%gs:(%bx,%di) 99b9: c7 (bad) 99ba: 1e push %ds 99bb: 9a 00 00 02 23 08 0b lcall $0xb08,$0x23020000 99c2: 70 6f jo 9a33 <.debug_info+0x9a33> 99c4: 70 75 jo 9a3b <.debug_info+0x9a3b> 99c6: 6c insb (%dx),%es:(%edi) 99c7: 61 popa 99c8: 74 65 je 9a2f <.debug_info+0x9a2f> 99ca: 00 19 add %bl,(%ecx) 99cc: c8 4d 9a 00 enter $0x9a4d,$0x0 99d0: 00 02 add %al,(%edx) 99d2: 23 0c 0b and (%ebx,%ecx,1),%ecx 99d5: 70 61 jo 9a38 <.debug_info+0x9a38> 99d7: 67 addr16 99d8: 65 gs 99d9: 5f pop %edi 99da: 6d insl (%dx),%es:(%edi) 99db: 6b 77 72 69 imul $0x69,0x72(%edi),%esi 99df: 74 65 je 9a46 <.debug_info+0x9a46> 99e1: 00 19 add %bl,(%ecx) 99e3: cc int3 99e4: 68 9a 00 00 02 push $0x200009a 99e9: 23 10 and (%eax),%edx 99eb: 00 06 add %al,(%esi) 99ed: 04 74 add $0x74,%al 99ef: 99 cltd 99f0: 00 00 add %al,(%eax) 99f2: 07 pop %es 99f3: fe (bad) 99f4: 99 cltd 99f5: 00 00 add %al,(%eax) 99f7: 01 08 add %ecx,(%eax) 99f9: b6 4e mov $0x4e,%dh 99fb: 00 00 add %al,(%eax) 99fd: 00 06 add %al,(%esi) 99ff: 04 f2 add $0xf2,%al 9a01: 99 cltd 9a02: 00 00 add %al,(%eax) 9a04: 0c 1e or $0x1e,%al 9a06: 9a 00 00 01 94 3c 00 lcall $0x3c,$0x94010000 9a0d: 00 08 add %cl,(%eax) 9a0f: b6 4e mov $0x4e,%dh 9a11: 00 00 add %al,(%eax) 9a13: 08 98 00 00 00 08 or %bl,0x8000000(%eax) 9a19: e2 54 loop 9a6f <.debug_info+0x9a6f> 9a1b: 00 00 add %al,(%eax) 9a1d: 00 06 add %al,(%esi) 9a1f: 04 04 add $0x4,%al 9a21: 9a 00 00 0c 4d 9a 00 lcall $0x9a,$0x4d0c0000 9a28: 00 01 add %al,(%ecx) 9a2a: 7a 00 jp 9a2c <.debug_info+0x9a2c> 9a2c: 00 00 add %al,(%eax) 9a2e: 08 b6 4e 00 00 08 or %dh,0x800004e(%esi) 9a34: 98 cwtl 9a35: 00 00 add %al,(%eax) 9a37: 00 08 add %cl,(%eax) 9a39: 98 cwtl 9a3a: 00 00 add %al,(%eax) 9a3c: 00 08 add %cl,(%eax) 9a3e: 32 05 00 00 08 98 xor 0x98080000,%al 9a44: 00 00 add %al,(%eax) 9a46: 00 08 add %cl,(%eax) 9a48: 7a 00 jp 9a4a <.debug_info+0x9a4a> 9a4a: 00 00 add %al,(%eax) 9a4c: 00 06 add %al,(%esi) 9a4e: 04 24 add $0x24,%al 9a50: 9a 00 00 0c 68 9a 00 lcall $0x9a,$0x680c0000 9a57: 00 01 add %al,(%ecx) 9a59: 7a 00 jp 9a5b <.debug_info+0x9a5b> 9a5b: 00 00 add %al,(%eax) 9a5d: 08 b6 4e 00 00 08 or %dh,0x800004e(%esi) 9a63: 94 xchg %eax,%esp 9a64: 3c 00 cmp $0x0,%al 9a66: 00 00 add %al,(%eax) 9a68: 06 push %es 9a69: 04 53 add $0x53,%al 9a6b: 9a 00 00 25 82 9a 00 lcall $0x9a,$0x82250000 9a72: 00 10 add %dl,(%eax) 9a74: 19 fb sbb %edi,%ebx 9a76: 24 70 and $0x70,%al 9a78: 74 6c je 9ae6 <.debug_info+0x9ae6> 9a7a: 00 19 add %bl,(%ecx) 9a7c: f9 stc 9a7d: 1e push %ds 9a7e: 1f pop %ds 9a7f: 00 00 add %al,(%eax) 9a81: 00 0e add %cl,(%esi) 9a83: aa stos %al,%es:(%edi) 9a84: 9a 00 00 76 6d 5f 65 lcall $0x655f,$0x6d760000 9a8b: 76 65 jbe 9af2 <.debug_info+0x9af2> 9a8d: 6e outsb %ds:(%esi),(%dx) 9a8e: 74 5f je 9aef <.debug_info+0x9aef> 9a90: 73 74 jae 9b06 <.debug_info+0x9b06> 9a92: 61 popa 9a93: 74 65 je 9afa <.debug_info+0x9afa> 9a95: 00 90 60 24 0b 65 add %dl,0x650b2460(%eax) 9a9b: 76 65 jbe 9b02 <.debug_info+0x9b02> 9a9d: 6e outsb %ds:(%esi),(%dx) 9a9e: 74 00 je 9aa0 <.debug_info+0x9aa0> 9aa0: 60 pusha 9aa1: 25 aa 9a 00 00 and $0x9aaa,%eax 9aa6: 02 23 add (%ebx),%ah 9aa8: 00 00 add %al,(%eax) 9aaa: 03 ba 9a 00 00 98 add 0x9800009a(%edx),%edi 9ab0: 00 00 add %al,(%eax) 9ab2: 00 04 91 add %al,(%ecx,%edx,4) 9ab5: 00 00 add %al,(%eax) 9ab7: 00 23 add %ah,(%ebx) 9ab9: 00 09 add %cl,(%ecx) 9abb: 69 72 71 72 65 74 75 imul $0x75746572,0x71(%edx),%esi 9ac2: 72 6e jb 9b32 <.debug_info+0x9b32> 9ac4: 5f pop %edi 9ac5: 74 00 je 9ac7 <.debug_info+0x9ac7> 9ac7: 53 push %ebx 9ac8: 13 7a 00 adc 0x0(%edx),%edi 9acb: 00 00 add %al,(%eax) 9acd: 0e push %cs 9ace: f1 icebp 9acf: 9b fwait 9ad0: 00 00 add %al,(%eax) 9ad2: 69 72 71 5f 63 68 69 imul $0x6968635f,0x71(%edx),%esi 9ad9: 70 00 jo 9adb <.debug_info+0x9adb> 9adb: 40 inc %eax 9adc: 61 popa 9add: 57 push %edi 9ade: 0f xstore-rng (bad) 9adf: a7 cmpsl %es:(%edi),%ds:(%esi) 9ae0: 01 00 add %eax,(%eax) 9ae2: 00 61 58 add %ah,0x58(%ecx) 9ae5: 18 3d 00 00 02 23 sbb %bh,0x23020000 9aeb: 00 0b add %cl,(%ebx) 9aed: 73 74 jae 9b63 <.debug_info+0x9b63> 9aef: 61 popa 9af0: 72 74 jb 9b66 <.debug_info+0x9b66> 9af2: 75 70 jne 9b64 <.debug_info+0x9b64> 9af4: 00 61 59 add %ah,0x59(%ecx) 9af7: 01 9c 00 00 02 23 04 add %ebx,0x4230200(%eax,%eax,1) 9afe: 0f 53 02 rcpps (%edx),%xmm0 9b01: 00 00 add %al,(%eax) 9b03: 61 popa 9b04: 5a pop %edx 9b05: 13 9c 00 00 02 23 08 adc 0x8230200(%eax,%eax,1),%ebx 9b0c: 0b 65 6e or 0x6e(%ebp),%esp 9b0f: 61 popa 9b10: 62 6c 65 00 bound %ebp,0x0(%ebp) 9b14: 61 popa 9b15: 5b pop %ebx 9b16: 13 9c 00 00 02 23 0c adc 0xc230200(%eax,%eax,1),%ebx 9b1d: 0b 64 69 73 or 0x73(%ecx,%ebp,2),%esp 9b21: 61 popa 9b22: 62 6c 65 00 bound %ebp,0x0(%ebp) 9b26: 61 popa 9b27: 5c pop %esp 9b28: 13 9c 00 00 02 23 10 adc 0x10230200(%eax,%eax,1),%ebx 9b2f: 0b 61 63 or 0x63(%ecx),%esp 9b32: 6b 00 61 imul $0x61,(%eax),%eax 9b35: 5e pop %esi 9b36: 13 9c 00 00 02 23 14 adc 0x14230200(%eax,%eax,1),%ebx 9b3d: 0b 6d 61 or 0x61(%ebp),%ebp 9b40: 73 6b jae 9bad <.debug_info+0x9bad> 9b42: 00 61 5f add %ah,0x5f(%ecx) 9b45: 13 9c 00 00 02 23 18 adc 0x18230200(%eax,%eax,1),%ebx 9b4c: 0b 6d 61 or 0x61(%ebp),%ebp 9b4f: 73 6b jae 9bbc <.debug_info+0x9bbc> 9b51: 5f pop %edi 9b52: 61 popa 9b53: 63 6b 00 arpl %bp,0x0(%ebx) 9b56: 61 popa 9b57: 60 pusha 9b58: 13 9c 00 00 02 23 1c adc 0x1c230200(%eax,%eax,1),%ebx 9b5f: 0b 75 6e or 0x6e(%ebp),%esi 9b62: 6d insl (%dx),%es:(%edi) 9b63: 61 popa 9b64: 73 6b jae 9bd1 <.debug_info+0x9bd1> 9b66: 00 61 61 add %ah,0x61(%ecx) 9b69: 13 9c 00 00 02 23 20 adc 0x20230200(%eax,%eax,1),%ebx 9b70: 0b 65 6f or 0x6f(%ebp),%esp 9b73: 69 00 61 62 13 9c imul $0x9c136261,(%eax),%eax 9b79: 00 00 add %al,(%eax) 9b7b: 02 23 add (%ebx),%ah 9b7d: 24 0b and $0xb,%al 9b7f: 65 6e outsb %gs:(%esi),(%dx) 9b81: 64 00 61 64 add %ah,%fs:0x64(%ecx) 9b85: 13 9c 00 00 02 23 28 adc 0x28230200(%eax,%eax,1),%ebx 9b8c: 0b 73 65 or 0x65(%ebx),%esi 9b8f: 74 5f je 9bf0 <.debug_info+0x9bf0> 9b91: 61 popa 9b92: 66 66 69 6e 69 74 79 imul $0x7974,0x69(%esi),%bp 9b99: 00 61 65 add %ah,0x65(%ecx) 9b9c: 2a 9c 00 00 02 23 2c sub 0x2c230200(%eax,%eax,1),%bl 9ba3: 0b 72 65 or 0x65(%edx),%esi 9ba6: 74 72 je 9c1a <.debug_info+0x9c1a> 9ba8: 69 67 67 65 72 00 61 imul $0x61007265,0x67(%edi),%esp 9baf: 66 40 inc %ax 9bb1: 9c pushf 9bb2: 00 00 add %al,(%eax) 9bb4: 02 23 add (%ebx),%ah 9bb6: 30 0b xor %cl,(%ebx) 9bb8: 73 65 jae 9c1f <.debug_info+0x9c1f> 9bba: 74 5f je 9c1b <.debug_info+0x9c1b> 9bbc: 74 79 je 9c37 <.debug_info+0x9c37> 9bbe: 70 65 jo 9c25 <.debug_info+0x9c25> 9bc0: 00 61 67 add %ah,0x67(%ecx) 9bc3: 5b pop %ebx 9bc4: 9c pushf 9bc5: 00 00 add %al,(%eax) 9bc7: 02 23 add (%ebx),%ah 9bc9: 34 0b xor $0xb,%al 9bcb: 73 65 jae 9c32 <.debug_info+0x9c32> 9bcd: 74 5f je 9c2e <.debug_info+0x9c2e> 9bcf: 77 61 ja 9c32 <.debug_info+0x9c32> 9bd1: 6b 65 00 61 imul $0x61,0x0(%ebp),%esp 9bd5: 68 5b 9c 00 00 push $0x9c5b 9bda: 02 23 add (%ebx),%ah 9bdc: 38 0b cmp %cl,(%ebx) 9bde: 74 79 je 9c59 <.debug_info+0x9c59> 9be0: 70 65 jo 9c47 <.debug_info+0x9c47> 9be2: 6e outsb %ds:(%esi),(%dx) 9be3: 61 popa 9be4: 6d insl (%dx),%es:(%edi) 9be5: 65 00 61 72 add %ah,%gs:0x72(%ecx) 9be9: 18 3d 00 00 02 23 sbb %bh,0x23020000 9bef: 3c 00 cmp $0x0,%al 9bf1: 0c 01 or $0x1,%al 9bf3: 9c pushf 9bf4: 00 00 add %al,(%eax) 9bf6: 01 3b add %edi,(%ebx) 9bf8: 01 00 add %eax,(%eax) 9bfa: 00 08 add %cl,(%eax) 9bfc: 3b 01 cmp (%ecx),%eax 9bfe: 00 00 add %al,(%eax) 9c00: 00 06 add %al,(%esi) 9c02: 04 f1 add $0xf1,%al 9c04: 9b fwait 9c05: 00 00 add %al,(%eax) 9c07: 07 pop %es 9c08: 13 9c 00 00 01 08 3b adc 0x3b080100(%eax,%eax,1),%ebx 9c0f: 01 00 add %eax,(%eax) 9c11: 00 00 add %al,(%eax) 9c13: 06 push %es 9c14: 04 07 add $0x7,%al 9c16: 9c pushf 9c17: 00 00 add %al,(%eax) 9c19: 07 pop %es 9c1a: 2a 9c 00 00 01 08 3b sub 0x3b080100(%eax,%eax,1),%bl 9c21: 01 00 add %eax,(%eax) 9c23: 00 08 add %cl,(%eax) 9c25: 72 0a jb 9c31 <.debug_info+0x9c31> 9c27: 00 00 add %al,(%eax) 9c29: 00 06 add %al,(%esi) 9c2b: 04 19 add $0x19,%al 9c2d: 9c pushf 9c2e: 00 00 add %al,(%eax) 9c30: 0c 40 or $0x40,%al 9c32: 9c pushf 9c33: 00 00 add %al,(%eax) 9c35: 01 7a 00 add %edi,0x0(%edx) 9c38: 00 00 add %al,(%eax) 9c3a: 08 3b or %bh,(%ebx) 9c3c: 01 00 add %eax,(%eax) 9c3e: 00 00 add %al,(%eax) 9c40: 06 push %es 9c41: 04 30 add $0x30,%al 9c43: 9c pushf 9c44: 00 00 add %al,(%eax) 9c46: 0c 5b or $0x5b,%al 9c48: 9c pushf 9c49: 00 00 add %al,(%eax) 9c4b: 01 7a 00 add %edi,0x0(%edx) 9c4e: 00 00 add %al,(%eax) 9c50: 08 3b or %bh,(%ebx) 9c52: 01 00 add %eax,(%eax) 9c54: 00 08 add %cl,(%eax) 9c56: 3b 01 cmp (%ecx),%eax 9c58: 00 00 add %al,(%eax) 9c5a: 00 06 add %al,(%esi) 9c5c: 04 46 add $0x46,%al 9c5e: 9c pushf 9c5f: 00 00 add %al,(%eax) 9c61: 0a 95 9d 00 00 ed or 0xed00009d(%ebp),%dl 9c67: 01 00 add %eax,(%eax) 9c69: 00 80 61 8d 0b 68 add %al,0x680b8d61(%eax) 9c6f: 61 popa 9c70: 6e outsb %ds:(%esi),(%dx) 9c71: 64 fs 9c72: 6c insb (%dx),%es:(%edi) 9c73: 65 gs 9c74: 5f pop %edi 9c75: 69 72 71 00 61 90 b1 imul $0xb1906100,0x71(%edx),%esi 9c7c: 9d popf 9c7d: 00 00 add %al,(%eax) 9c7f: 02 23 add (%ebx),%ah 9c81: 00 0b add %cl,(%ebx) 9c83: 63 68 69 arpl %bp,0x69(%eax) 9c86: 70 00 jo 9c88 <.debug_info+0x9c88> 9c88: 61 popa 9c89: 91 xchg %eax,%ecx 9c8a: b7 9d mov $0x9d,%bh 9c8c: 00 00 add %al,(%eax) 9c8e: 02 23 add (%ebx),%ah 9c90: 04 0b add $0xb,%al 9c92: 68 61 6e 64 6c push $0x6c646e61 9c97: 65 gs 9c98: 72 5f jb 9cf9 <.debug_info+0x9cf9> 9c9a: 64 fs 9c9b: 61 popa 9c9c: 74 61 je 9cff <.debug_info+0x9cff> 9c9e: 00 61 92 add %ah,0xffffff92(%ecx) 9ca1: b7 1d mov $0x1d,%bh 9ca3: 00 00 add %al,(%eax) 9ca5: 02 23 add (%ebx),%ah 9ca7: 08 0b or %cl,(%ebx) 9ca9: 63 68 69 arpl %bp,0x69(%eax) 9cac: 70 5f jo 9d0d <.debug_info+0x9d0d> 9cae: 64 fs 9caf: 61 popa 9cb0: 74 61 je 9d13 <.debug_info+0x9d13> 9cb2: 00 61 93 add %ah,0xffffff93(%ecx) 9cb5: b7 1d mov $0x1d,%bh 9cb7: 00 00 add %al,(%eax) 9cb9: 02 23 add (%ebx),%ah 9cbb: 0c 0b or $0xb,%al 9cbd: 61 popa 9cbe: 63 74 69 6f arpl %si,0x6f(%ecx,%ebp,2) 9cc2: 6e outsb %ds:(%esi),(%dx) 9cc3: 00 61 94 add %ah,0xffffff94(%ecx) 9cc6: 45 inc %ebp 9cc7: 9e sahf 9cc8: 00 00 add %al,(%eax) 9cca: 02 23 add (%ebx),%ah 9ccc: 10 0f adc %cl,(%edi) 9cce: e0 01 loopne 9cd1 <.debug_info+0x9cd1> 9cd0: 00 00 add %al,(%eax) 9cd2: 61 popa 9cd3: 95 xchg %eax,%ebp 9cd4: 3b 01 cmp (%ecx),%eax 9cd6: 00 00 add %al,(%eax) 9cd8: 02 23 add (%ebx),%ah 9cda: 14 0b adc $0xb,%al 9cdc: 64 fs 9cdd: 65 gs 9cde: 70 74 jo 9d54 <.debug_info+0x9d54> 9ce0: 68 00 61 97 3b push $0x3b976100 9ce5: 01 00 add %eax,(%eax) 9ce7: 00 02 add %al,(%edx) 9ce9: 23 18 and (%eax),%ebx 9ceb: 0b 77 61 or 0x61(%edi),%esi 9cee: 6b 65 5f 64 imul $0x64,0x5f(%ebp),%esp 9cf2: 65 gs 9cf3: 70 74 jo 9d69 <.debug_info+0x9d69> 9cf5: 68 00 61 98 3b push $0x3b986100 9cfa: 01 00 add %eax,(%eax) 9cfc: 00 02 add %al,(%edx) 9cfe: 23 1c 0b and (%ebx,%ecx,1),%ebx 9d01: 69 72 71 5f 63 6f 75 imul $0x756f635f,0x71(%edx),%esi 9d08: 6e outsb %ds:(%esi),(%dx) 9d09: 74 00 je 9d0b <.debug_info+0x9d0b> 9d0b: 61 popa 9d0c: 99 cltd 9d0d: 3b 01 cmp (%ecx),%eax 9d0f: 00 00 add %al,(%eax) 9d11: 02 23 add (%ebx),%ah 9d13: 20 0b and %cl,(%ebx) 9d15: 69 72 71 73 5f 75 6e imul $0x6e755f73,0x71(%edx),%esi 9d1c: 68 61 6e 64 6c push $0x6c646e61 9d21: 65 64 00 61 9a add %ah,%fs:%gs:0xffffff9a(%ecx) 9d26: 3b 01 cmp (%ecx),%eax 9d28: 00 00 add %al,(%eax) 9d2a: 02 23 add (%ebx),%ah 9d2c: 24 0f and $0xf,%al 9d2e: d6 (bad) 9d2f: 02 00 add (%eax),%al 9d31: 00 61 9b add %ah,0xffffff9b(%ecx) 9d34: 1e push %ds 9d35: 1f pop %ds 9d36: 00 00 add %al,(%eax) 9d38: 02 23 add (%ebx),%ah 9d3a: 28 0b sub %cl,(%ebx) 9d3c: 61 popa 9d3d: 66 66 69 6e 69 74 79 imul $0x7974,0x69(%esi),%bp 9d44: 00 61 9d add %ah,0xffffff9d(%ecx) 9d47: 72 0a jb 9d53 <.debug_info+0x9d53> 9d49: 00 00 add %al,(%eax) 9d4b: 02 23 add (%ebx),%ah 9d4d: 38 0b cmp %cl,(%ebx) 9d4f: 63 70 75 arpl %si,0x75(%eax) 9d52: 00 61 9e add %ah,0xffffff9e(%ecx) 9d55: 3b 01 cmp (%ecx),%eax 9d57: 00 00 add %al,(%eax) 9d59: 02 23 add (%ebx),%ah 9d5b: 3c 0b cmp $0xb,%al 9d5d: 70 65 jo 9dc4 <.debug_info+0x9dc4> 9d5f: 6e outsb %ds:(%esi),(%dx) 9d60: 64 69 6e 67 5f 6d 61 imul $0x73616d5f,%fs:0x67(%esi),%ebp 9d67: 73 9d68: 6b 00 61 imul $0x61,(%eax),%eax 9d6b: a1 72 0a 00 00 mov 0xa72,%eax 9d70: 02 23 add (%ebx),%ah 9d72: 40 inc %eax 9d73: 0b 6d 6f or 0x6f(%ebp),%ebp 9d76: 76 65 jbe 9ddd <.debug_info+0x9ddd> 9d78: 5f pop %edi 9d79: 69 72 71 00 61 a2 3b imul $0x3ba26100,0x71(%edx),%esi 9d80: 01 00 add %eax,(%eax) 9d82: 00 02 add %al,(%edx) 9d84: 23 44 0b 64 and 0x64(%ebx,%ecx,1),%eax 9d88: 69 72 00 61 a5 5c 9e imul $0x9e5ca561,0x0(%edx),%esi 9d8f: 00 00 add %al,(%eax) 9d91: 02 23 add (%ebx),%ah 9d93: 48 dec %eax 9d94: 00 07 add %al,(%edi) 9d96: ab stos %eax,%es:(%edi) 9d97: 9d popf 9d98: 00 00 add %al,(%eax) 9d9a: 01 08 add %ecx,(%eax) 9d9c: 3b 01 cmp (%ecx),%eax 9d9e: 00 00 add %al,(%eax) 9da0: 08 ab 9d 00 00 08 or %ch,0x800009d(%ebx) 9da6: 99 cltd 9da7: 08 00 or %al,(%eax) 9da9: 00 00 add %al,(%eax) 9dab: 06 push %es 9dac: 04 61 add $0x61,%al 9dae: 9c pushf 9daf: 00 00 add %al,(%eax) 9db1: 06 push %es 9db2: 04 95 add $0x95,%al 9db4: 9d popf 9db5: 00 00 add %al,(%eax) 9db7: 06 push %es 9db8: 04 cd add $0xcd,%al 9dba: 9a 00 00 0e 45 9e 00 lcall $0x9e,$0x450e0000 9dc1: 00 69 72 add %ch,0x72(%ecx) 9dc4: 71 61 jno 9e27 <.debug_info+0x9e27> 9dc6: 63 74 69 6f arpl %si,0x6f(%ecx,%ebp,2) 9dca: 6e outsb %ds:(%esi),(%dx) 9dcb: 00 20 add %ah,(%eax) 9dcd: 61 popa 9dce: 94 xchg %eax,%esp 9dcf: 0b 68 61 or 0x61(%eax),%ebp 9dd2: 6e outsb %ds:(%esi),(%dx) 9dd3: 64 fs 9dd4: 6c insb (%dx),%es:(%edi) 9dd5: 65 gs 9dd6: 72 00 jb 9dd8 <.debug_info+0x9dd8> 9dd8: 62 44 7c 9e bound %eax,0xffffff9e(%esp,%edi,2) 9ddc: 00 00 add %al,(%eax) 9dde: 02 23 add (%ebx),%ah 9de0: 00 0f add %cl,(%edi) 9de2: b3 03 mov $0x3,%bl 9de4: 00 00 add %al,(%eax) 9de6: 62 45 98 bound %eax,0xffffff98(%ebp) 9de9: 00 00 add %al,(%eax) 9deb: 00 02 add %al,(%edx) 9ded: 23 04 0b and (%ebx,%ecx,1),%eax 9df0: 6d insl (%dx),%es:(%edi) 9df1: 61 popa 9df2: 73 6b jae 9e5f <.debug_info+0x9e5f> 9df4: 00 62 46 add %ah,0x46(%edx) 9df7: 72 0a jb 9e03 <.debug_info+0x9e03> 9df9: 00 00 add %al,(%eax) 9dfb: 02 23 add (%ebx),%ah 9dfd: 08 0f or %cl,(%edi) 9dff: a7 cmpsl %es:(%edi),%ds:(%esi) 9e00: 01 00 add %eax,(%eax) 9e02: 00 62 47 add %ah,0x47(%edx) 9e05: 18 3d 00 00 02 23 sbb %bh,0x23020000 9e0b: 0c 0f or $0xf,%al 9e0d: 23 03 and (%ebx),%eax 9e0f: 00 00 add %al,(%eax) 9e11: 62 48 b7 bound %ecx,0xffffffb7(%eax) 9e14: 1d 00 00 02 23 sbb $0x23020000,%eax 9e19: 10 0f adc %cl,(%edi) 9e1b: ae scas %es:(%edi),%al 9e1c: 03 00 add (%eax),%eax 9e1e: 00 62 49 add %ah,0x49(%edx) 9e21: 45 inc %ebp 9e22: 9e sahf 9e23: 00 00 add %al,(%eax) 9e25: 02 23 add (%ebx),%ah 9e27: 14 0b adc $0xb,%al 9e29: 69 72 71 00 62 4a 7a imul $0x7a4a6200,0x71(%edx),%esi 9e30: 00 00 add %al,(%eax) 9e32: 00 02 add %al,(%edx) 9e34: 23 18 and (%eax),%ebx 9e36: 0b 64 69 72 or 0x72(%ecx,%ebp,2),%esp 9e3a: 00 62 4b add %ah,0x4b(%edx) 9e3d: 5c pop %esp 9e3e: 9e sahf 9e3f: 00 00 add %al,(%eax) 9e41: 02 23 add (%ebx),%ah 9e43: 1c 00 sbb $0x0,%al 9e45: 06 push %es 9e46: 04 bd add $0xbd,%al 9e48: 9d popf 9e49: 00 00 add %al,(%eax) 9e4b: 26 es 9e4c: 70 72 jo 9ec0 <.debug_info+0x9ec0> 9e4e: 6f outsl %ds:(%esi),(%dx) 9e4f: 63 5f 64 arpl %bx,0x64(%edi) 9e52: 69 72 5f 65 6e 74 72 imul $0x72746e65,0x5f(%edx),%esi 9e59: 79 00 jns 9e5b <.debug_info+0x9e5b> 9e5b: 01 06 add %eax,(%esi) 9e5d: 04 4b add $0x4b,%al 9e5f: 9e sahf 9e60: 00 00 add %al,(%eax) 9e62: 0c 7c or $0x7c,%al 9e64: 9e sahf 9e65: 00 00 add %al,(%eax) 9e67: 01 ba 9a 00 00 08 add %edi,0x800009a(%edx) 9e6d: 7a 00 jp 9e6f <.debug_info+0x9e6f> 9e6f: 00 00 add %al,(%eax) 9e71: 08 b7 1d 00 00 08 or %dh,0x800001d(%edi) 9e77: 99 cltd 9e78: 08 00 or %al,(%eax) 9e7a: 00 00 add %al,(%eax) 9e7c: 06 push %es 9e7d: 04 62 add $0x62,%al 9e7f: 9e sahf 9e80: 00 00 add %al,(%eax) 9e82: 09 6b 65 or %ebp,0x65(%ebx) 9e85: 72 6e jb 9ef5 <.debug_info+0x9ef5> 9e87: 65 gs 9e88: 6c insb (%dx),%es:(%edi) 9e89: 5f pop %edi 9e8a: 75 6c jne 9ef8 <.debug_info+0x9ef8> 9e8c: 6f outsl %ds:(%esi),(%dx) 9e8d: 6e outsb %ds:(%esi),(%dx) 9e8e: 67 5f addr16 pop %edi 9e90: 74 00 je 9e92 <.debug_info+0x9e92> 9e92: 4d dec %ebp 9e93: 0c 98 or $0x98,%al 9e95: 00 00 add %al,(%eax) 9e97: 00 0e add %cl,(%esi) 9e99: 27 daa 9e9a: 9f lahf 9e9b: 00 00 add %al,(%eax) 9e9d: 70 63 jo 9f02 <.debug_info+0x9f02> 9e9f: 69 5f 64 65 76 69 63 imul $0x63697665,0x64(%edi),%ebx 9ea6: 65 gs 9ea7: 5f pop %edi 9ea8: 69 64 00 1c 4d 11 0b imul $0x760b114d,0x1c(%eax,%eax,1),%esp 9eaf: 76 9eb0: 65 6e outsb %gs:(%esi),(%dx) 9eb2: 64 6f outsl %fs:(%esi),(%dx) 9eb4: 72 00 jb 9eb6 <.debug_info+0x9eb6> 9eb6: 4d dec %ebp 9eb7: 12 9c 02 00 00 02 23 adc 0x23020000(%edx,%eax,1),%bl 9ebe: 00 0f add %cl,(%edi) 9ec0: 68 02 00 00 4d push $0x4d000002 9ec5: 12 9c 02 00 00 02 23 adc 0x23020000(%edx,%eax,1),%bl 9ecc: 04 0b add $0xb,%al 9ece: 73 75 jae 9f45 <.debug_info+0x9f45> 9ed0: 62 76 65 bound %esi,0x65(%esi) 9ed3: 6e outsb %ds:(%esi),(%dx) 9ed4: 64 6f outsl %fs:(%esi),(%dx) 9ed6: 72 00 jb 9ed8 <.debug_info+0x9ed8> 9ed8: 4d dec %ebp 9ed9: 13 9c 02 00 00 02 23 adc 0x23020000(%edx,%eax,1),%ebx 9ee0: 08 0b or %cl,(%ebx) 9ee2: 73 75 jae 9f59 <.debug_info+0x9f59> 9ee4: 62 64 65 76 bound %esp,0x76(%ebp) 9ee8: 69 63 65 00 4d 13 9c imul $0x9c134d00,0x65(%ebx),%esp 9eef: 02 00 add (%eax),%al 9ef1: 00 02 add %al,(%edx) 9ef3: 23 0c 0f and (%edi,%ecx,1),%ecx 9ef6: d0 00 rolb (%eax) 9ef8: 00 00 add %al,(%eax) 9efa: 4d dec %ebp 9efb: 14 9c adc $0x9c,%al 9efd: 02 00 add (%eax),%al 9eff: 00 02 add %al,(%edx) 9f01: 23 10 and (%eax),%edx 9f03: 0b 63 6c or 0x6c(%ebx),%esp 9f06: 61 popa 9f07: 73 73 jae 9f7c <.debug_info+0x9f7c> 9f09: 5f pop %edi 9f0a: 6d insl (%dx),%es:(%edi) 9f0b: 61 popa 9f0c: 73 6b jae 9f79 <.debug_info+0x9f79> 9f0e: 00 4d 14 add %cl,0x14(%ebp) 9f11: 9c pushf 9f12: 02 00 add (%eax),%al 9f14: 00 02 add %al,(%edx) 9f16: 23 14 0f and (%edi,%ecx,1),%edx 9f19: 6b 01 00 imul $0x0,(%ecx),%eax 9f1c: 00 4d 15 add %cl,0x15(%ebp) 9f1f: 82 (bad) 9f20: 9e sahf 9f21: 00 00 add %al,(%eax) 9f23: 02 23 add (%ebx),%ah 9f25: 18 00 sbb %al,(%eax) 9f27: 0a 9e 9f 00 00 35 or 0x3500009f(%esi),%bl 9f2d: 03 00 add (%eax),%eax 9f2f: 00 24 4e add %ah,(%esi,%ecx,2) 9f32: 11 0b adc %ecx,(%ebx) 9f34: 73 74 jae 9faa <.debug_info+0x9faa> 9f36: 61 popa 9f37: 72 74 jb 9fad <.debug_info+0x9fad> 9f39: 00 4e 12 add %cl,0x12(%esi) 9f3c: 0c 04 or $0x4,%al 9f3e: 00 00 add %al,(%eax) 9f40: 02 23 add (%ebx),%ah 9f42: 00 0b add %cl,(%ebx) 9f44: 65 6e outsb %gs:(%esi),(%dx) 9f46: 64 00 4e 13 add %cl,%fs:0x13(%esi) 9f4a: 0c 04 or $0x4,%al 9f4c: 00 00 add %al,(%eax) 9f4e: 02 23 add (%ebx),%ah 9f50: 08 0f or %cl,(%edi) 9f52: a7 cmpsl %es:(%edi),%ds:(%esi) 9f53: 01 00 add %eax,(%eax) 9f55: 00 4e 14 add %cl,0x14(%esi) 9f58: 18 3d 00 00 02 23 sbb %bh,0x23020000 9f5e: 10 0f adc %cl,(%edi) 9f60: b3 03 mov $0x3,%bl 9f62: 00 00 add %al,(%eax) 9f64: 4e dec %esi 9f65: 15 98 00 00 00 adc $0x98,%eax 9f6a: 02 23 add (%ebx),%ah 9f6c: 14 0f adc $0xf,%al 9f6e: 76 03 jbe 9f73 <.debug_info+0x9f73> 9f70: 00 00 add %al,(%eax) 9f72: 4e dec %esi 9f73: 16 push %ss 9f74: 9e sahf 9f75: 9f lahf 9f76: 00 00 add %al,(%eax) 9f78: 02 23 add (%ebx),%ah 9f7a: 18 0b sbb %cl,(%ebx) 9f7c: 73 69 jae 9fe7 <.debug_info+0x9fe7> 9f7e: 62 6c 69 6e bound %ebp,0x6e(%ecx,%ebp,2) 9f82: 67 00 4e 16 addr16 add %cl,22(%bp) 9f86: 9e sahf 9f87: 9f lahf 9f88: 00 00 add %al,(%eax) 9f8a: 02 23 add (%ebx),%ah 9f8c: 1c 0b sbb $0xb,%al 9f8e: 63 68 69 arpl %bp,0x69(%eax) 9f91: 6c insb (%dx),%es:(%edi) 9f92: 64 00 4e 16 add %cl,%fs:0x16(%esi) 9f96: 9e sahf 9f97: 9f lahf 9f98: 00 00 add %al,(%eax) 9f9a: 02 23 add (%ebx),%ah 9f9c: 20 00 and %al,(%eax) 9f9e: 06 push %es 9f9f: 04 27 add $0x27,%al 9fa1: 9f lahf 9fa2: 00 00 add %al,(%eax) 9fa4: 10 18 adc %bl,(%eax) 9fa6: a3 00 00 70 63 mov %eax,0x63700000 9fab: 69 5f 64 65 76 00 2c imul $0x2c007665,0x64(%edi),%ebx 9fb2: 04 4e add $0x4e,%al 9fb4: 1c 0b sbb $0xb,%al 9fb6: 67 6c addr16 insb (%dx),%es:(%di) 9fb8: 6f outsl %ds:(%esi),(%dx) 9fb9: 62 61 6c bound %esp,0x6c(%ecx) 9fbc: 5f pop %edi 9fbd: 6c insb (%dx),%es:(%edi) 9fbe: 69 73 74 00 4c 70 c8 imul $0xc8704c00,0x74(%ebx),%esi 9fc5: 1d 00 00 02 23 sbb $0x23020000,%eax 9fca: 00 0b add %cl,(%ebx) 9fcc: 62 75 73 bound %esi,0x73(%ebp) 9fcf: 5f pop %edi 9fd0: 6c insb (%dx),%es:(%edi) 9fd1: 69 73 74 00 4c 71 c8 imul $0xc8714c00,0x74(%ebx),%esi 9fd8: 1d 00 00 02 23 sbb $0x23020000,%eax 9fdd: 08 0b or %cl,(%ebx) 9fdf: 62 75 73 bound %esi,0x73(%ebp) 9fe2: 00 4c 72 89 add %cl,0xffffff89(%edx,%esi,2) 9fe6: ac lods %ds:(%esi),%al 9fe7: 00 00 add %al,(%eax) 9fe9: 02 23 add (%ebx),%ah 9feb: 10 0f adc %cl,(%edi) 9fed: f8 clc 9fee: 00 00 add %al,(%eax) 9ff0: 00 4c 73 89 add %cl,0xffffff89(%ebx,%esi,2) 9ff4: ac lods %ds:(%esi),%al 9ff5: 00 00 add %al,(%eax) 9ff7: 02 23 add (%ebx),%ah 9ff9: 14 0b adc $0xb,%al 9ffb: 73 79 jae a076 <.debug_info+0xa076> 9ffd: 73 64 jae a063 <.debug_info+0xa063> 9fff: 61 popa a000: 74 61 je a063 <.debug_info+0xa063> a002: 00 4c 75 b7 add %cl,0xffffffb7(%ebp,%esi,2) a006: 1d 00 00 02 23 sbb $0x23020000,%eax a00b: 18 0b sbb %cl,(%ebx) a00d: 70 72 jo a081 <.debug_info+0xa081> a00f: 6f outsl %ds:(%esi),(%dx) a010: 63 65 6e arpl %sp,0x6e(%ebp) a013: 74 00 je a015 <.debug_info+0xa015> a015: 4c dec %esp a016: 76 5c jbe a074 <.debug_info+0xa074> a018: 9e sahf a019: 00 00 add %al,(%eax) a01b: 02 23 add (%ebx),%ah a01d: 1c 0b sbb $0xb,%al a01f: 64 fs a020: 65 gs a021: 76 66 jbe a089 <.debug_info+0xa089> a023: 6e outsb %ds:(%esi),(%dx) a024: 00 4c 78 3b add %cl,0x3b(%eax,%edi,2) a028: 01 00 add %eax,(%eax) a02a: 00 02 add %al,(%edx) a02c: 23 20 and (%eax),%esp a02e: 0b 76 65 or 0x65(%esi),%esi a031: 6e outsb %ds:(%esi),(%dx) a032: 64 6f outsl %fs:(%esi),(%dx) a034: 72 00 jb a036 <.debug_info+0xa036> a036: 4c dec %esp a037: 79 ec jns a025 <.debug_info+0xa025> a039: 00 00 add %al,(%eax) a03b: 00 02 add %al,(%edx) a03d: 23 24 0f and (%edi,%ecx,1),%esp a040: 68 02 00 00 4c push $0x4c000002 a045: 7a ec jp a033 <.debug_info+0xa033> a047: 00 00 add %al,(%eax) a049: 00 02 add %al,(%edx) a04b: 23 26 and (%esi),%esp a04d: 0b 73 75 or 0x75(%ebx),%esi a050: 62 73 79 bound %esi,0x79(%ebx) a053: 73 74 jae a0c9 <.debug_info+0xa0c9> a055: 65 gs a056: 6d insl (%dx),%es:(%edi) a057: 5f pop %edi a058: 76 65 jbe a0bf <.debug_info+0xa0bf> a05a: 6e outsb %ds:(%esi),(%dx) a05b: 64 6f outsl %fs:(%esi),(%dx) a05d: 72 00 jb a05f <.debug_info+0xa05f> a05f: 4c dec %esp a060: 7b ec jnp a04e <.debug_info+0xa04e> a062: 00 00 add %al,(%eax) a064: 00 02 add %al,(%edx) a066: 23 28 and (%eax),%ebp a068: 0b 73 75 or 0x75(%ebx),%esi a06b: 62 73 79 bound %esi,0x79(%ebx) a06e: 73 74 jae a0e4 <.debug_info+0xa0e4> a070: 65 gs a071: 6d insl (%dx),%es:(%edi) a072: 5f pop %edi a073: 64 fs a074: 65 gs a075: 76 69 jbe a0e0 <.debug_info+0xa0e0> a077: 63 65 00 arpl %sp,0x0(%ebp) a07a: 4c dec %esp a07b: 7c ec jl a069 <.debug_info+0xa069> a07d: 00 00 add %al,(%eax) a07f: 00 02 add %al,(%edx) a081: 23 2a and (%edx),%ebp a083: 0f d0 00 (bad) (%eax),%mm0 a086: 00 00 add %al,(%eax) a088: 4c dec %esp a089: 7d 3b jge a0c6 <.debug_info+0xa0c6> a08b: 01 00 add %eax,(%eax) a08d: 00 02 add %al,(%edx) a08f: 23 2c 0b and (%ebx,%ecx,1),%ebp a092: 68 64 72 5f 74 push $0x745f7264 a097: 79 70 jns a109 <.debug_info+0xa109> a099: 65 00 4c 7e e7 add %cl,%gs:0xffffffe7(%esi,%edi,2) a09e: 02 00 add (%eax),%al a0a0: 00 02 add %al,(%edx) a0a2: 23 30 and (%eax),%esi a0a4: 0b 72 6f or 0x6f(%edx),%esi a0a7: 6d insl (%dx),%es:(%edi) a0a8: 5f pop %edi a0a9: 62 61 73 bound %esp,0x73(%ecx) a0ac: 65 gs a0ad: 5f pop %edi a0ae: 72 65 jb a115 <.debug_info+0xa115> a0b0: 67 00 4c 7f addr16 add %cl,127(%si) a0b4: e7 02 out %eax,$0x2 a0b6: 00 00 add %al,(%eax) a0b8: 02 23 add (%ebx),%ah a0ba: 31 0b xor %ecx,(%ebx) a0bc: 70 69 jo a127 <.debug_info+0xa127> a0be: 6e outsb %ds:(%esi),(%dx) a0bf: 00 4c 80 e7 add %cl,0xffffffe7(%eax,%eax,4) a0c3: 02 00 add (%eax),%al a0c5: 00 02 add %al,(%edx) a0c7: 23 32 and (%edx),%esi a0c9: 0f 27 (bad) a0cb: 02 00 add (%eax),%al a0cd: 00 4c 82 71 add %cl,0x71(%edx,%eax,4) a0d1: ad lods %ds:(%esi),%eax a0d2: 00 00 add %al,(%eax) a0d4: 02 23 add (%ebx),%ah a0d6: 34 0f xor $0xf,%al a0d8: 7d 03 jge a0dd <.debug_info+0xa0dd> a0da: 00 00 add %al,(%eax) a0dc: 4c dec %esp a0dd: 83 07 03 addl $0x3,(%edi) a0e0: 00 00 add %al,(%eax) a0e2: 02 23 add (%ebx),%ah a0e4: 38 0b cmp %cl,(%ebx) a0e6: 63 75 72 arpl %si,0x72(%ebp) a0e9: 72 65 jb a150 <.debug_info+0xa150> a0eb: 6e outsb %ds:(%esi),(%dx) a0ec: 74 5f je a14d <.debug_info+0xa14d> a0ee: 73 74 jae a164 <.debug_info+0xa164> a0f0: 61 popa a0f1: 74 65 je a158 <.debug_info+0xa158> a0f3: 00 4c 89 72 add %cl,0x72(%ecx,%ecx,4) a0f7: aa stos %al,%es:(%edi) a0f8: 00 00 add %al,(%eax) a0fa: 02 23 add (%ebx),%ah a0fc: 40 inc %eax a0fd: 0b 65 72 or 0x72(%ebp),%esp a100: 72 6f jb a171 <.debug_info+0xa171> a102: 72 5f jb a163 <.debug_info+0xa163> a104: 73 74 jae a17a <.debug_info+0xa17a> a106: 61 popa a107: 74 65 je a16e <.debug_info+0xa16e> a109: 00 4c 8d 85 add %cl,0xffffff85(%ebp,%ecx,4) a10d: aa stos %al,%es:(%edi) a10e: 00 00 add %al,(%eax) a110: 02 23 add (%ebx),%ah a112: 44 inc %esp a113: 0b 64 65 76 or 0x76(%ebp),%esp a117: 00 4c 8e 1a add %cl,0x1a(%esi,%ecx,4) a11b: 27 daa a11c: 00 00 add %al,(%eax) a11e: 02 23 add (%ebx),%ah a120: 48 dec %eax a121: 0b 76 65 or 0x65(%esi),%esi a124: 6e outsb %ds:(%esi),(%dx) a125: 64 6f outsl %fs:(%esi),(%dx) a127: 72 5f jb a188 <.debug_info+0xa188> a129: 63 6f 6d arpl %bp,0x6d(%edi) a12c: 70 61 jo a18f <.debug_info+0xa18f> a12e: 74 69 je a199 <.debug_info+0xa199> a130: 62 6c 65 00 bound %ebp,0x0(%ebp) a134: 4c dec %esp a135: 91 xchg %eax,%ecx a136: 9f lahf a137: 08 00 or %al,(%eax) a139: 00 03 add %al,(%ebx) a13b: 23 e4 and %esp,%esp a13d: 03 0b add (%ebx),%ecx a13f: 64 fs a140: 65 gs a141: 76 69 jbe a1ac <.debug_info+0xa1ac> a143: 63 65 5f arpl %sp,0x5f(%ebp) a146: 63 6f 6d arpl %bp,0x6d(%edi) a149: 70 61 jo a1ac <.debug_info+0xa1ac> a14b: 74 69 je a1b6 <.debug_info+0xa1b6> a14d: 62 6c 65 00 bound %ebp,0x0(%ebp) a151: 4c dec %esp a152: 92 xchg %eax,%edx a153: 9f lahf a154: 08 00 or %al,(%eax) a156: 00 03 add %al,(%ebx) a158: 23 ec and %esp,%ebp a15a: 03 0b add (%ebx),%ecx a15c: 63 66 67 arpl %sp,0x67(%esi) a15f: 5f pop %edi a160: 73 69 jae a1cb <.debug_info+0xa1cb> a162: 7a 65 jp a1c9 <.debug_info+0xa1c9> a164: 00 4c 94 7a add %cl,0x7a(%esp,%edx,4) a168: 00 00 add %al,(%eax) a16a: 00 03 add %al,(%ebx) a16c: 23 f4 and %esp,%esi a16e: 03 0b add (%ebx),%ecx a170: 69 72 71 00 4c 9a 3b imul $0x3b9a4c00,0x71(%edx),%esi a177: 01 00 add %eax,(%eax) a179: 00 03 add %al,(%ebx) a17b: 23 f8 and %eax,%edi a17d: 03 0f add (%edi),%ecx a17f: 35 03 00 00 4c xor $0x4c000003,%eax a184: 9b fwait a185: 77 ad ja a134 <.debug_info+0xa134> a187: 00 00 add %al,(%eax) a189: 03 23 add (%ebx),%esp a18b: fc cld a18c: 03 1f add (%edi),%ebx a18e: 74 72 je a202 <.debug_info+0xa202> a190: 61 popa a191: 6e outsb %ds:(%esi),(%dx) a192: 73 70 jae a204 <.debug_info+0xa204> a194: 61 popa a195: 72 65 jb a1fc <.debug_info+0xa1fc> a197: 6e outsb %ds:(%esi),(%dx) a198: 74 00 je a19a <.debug_info+0xa19a> a19a: 4c dec %esp a19b: 9e sahf a19c: 3b 01 cmp (%ecx),%eax a19e: 00 00 add %al,(%eax) a1a0: 04 01 add $0x1,%al a1a2: 1f pop %ds a1a3: 03 23 add (%ebx),%esp a1a5: ac lods %ds:(%esi),%al a1a6: 07 pop %es a1a7: 1f pop %ds a1a8: 6d insl (%dx),%es:(%edi) a1a9: 75 6c jne a217 <.debug_info+0xa217> a1ab: 74 69 je a216 <.debug_info+0xa216> a1ad: 66 data16 a1ae: 75 6e jne a21e <.debug_info+0xa21e> a1b0: 63 74 69 6f arpl %si,0x6f(%ecx,%ebp,2) a1b4: 6e outsb %ds:(%esi),(%dx) a1b5: 00 4c 9f 3b add %cl,0x3b(%edi,%ebx,4) a1b9: 01 00 add %eax,(%eax) a1bb: 00 04 01 add %al,(%ecx,%eax,1) a1be: 1e push %ds a1bf: 03 23 add (%ebx),%esp a1c1: ac lods %ds:(%esi),%al a1c2: 07 pop %es a1c3: 1f pop %ds a1c4: 69 73 5f 65 6e 61 62 imul $0x62616e65,0x5f(%ebx),%esi a1cb: 6c insb (%dx),%es:(%edi) a1cc: 65 64 00 4c a1 3b add %cl,%fs:%gs:0x3b(%ecx) a1d2: 01 00 add %eax,(%eax) a1d4: 00 04 01 add %al,(%ecx,%eax,1) a1d7: 1d 03 23 ac 07 sbb $0x7ac2303,%eax a1dc: 1f pop %ds a1dd: 69 73 5f 62 75 73 6d imul $0x6d737562,0x5f(%ebx),%esi a1e4: 61 popa a1e5: 73 74 jae a25b <.debug_info+0xa25b> a1e7: 65 gs a1e8: 72 00 jb a1ea <.debug_info+0xa1ea> a1ea: 4c dec %esp a1eb: a2 3b 01 00 00 mov %al,0x13b a1f0: 04 01 add $0x1,%al a1f2: 1c 03 sbb $0x3,%al a1f4: 23 ac 07 1f 6e 6f 5f and 0x5f6f6e1f(%edi,%eax,1),%ebp a1fb: 6d insl (%dx),%es:(%edi) a1fc: 73 69 jae a267 <.debug_info+0xa267> a1fe: 00 4c a3 3b add %cl,0x3b(%ebx) a202: 01 00 add %eax,(%eax) a204: 00 04 01 add %al,(%ecx,%eax,1) a207: 1b 03 sbb (%ebx),%eax a209: 23 ac 07 1f 6e 6f 5f and 0x5f6f6e1f(%edi,%eax,1),%ebp a210: 64 31 64 32 00 xor %esp,%fs:0x0(%edx,%esi,1) a215: 4c dec %esp a216: a4 movsb %ds:(%esi),%es:(%edi) a217: 3b 01 cmp (%ecx),%eax a219: 00 00 add %al,(%eax) a21b: 04 01 add $0x1,%al a21d: 1a 03 sbb (%ebx),%al a21f: 23 ac 07 1f 62 6c 6f and 0x6f6c621f(%edi,%eax,1),%ebp a226: 63 6b 5f arpl %bp,0x5f(%ebx) a229: 75 63 jne a28e <.debug_info+0xa28e> a22b: 66 67 5f addr16 pop %di a22e: 61 popa a22f: 63 63 65 arpl %sp,0x65(%ebx) a232: 73 73 jae a2a7 <.debug_info+0xa2a7> a234: 00 4c a5 3b add %cl,0x3b(%ebp) a238: 01 00 add %eax,(%eax) a23a: 00 04 01 add %al,(%ecx,%eax,1) a23d: 19 03 sbb %eax,(%ebx) a23f: 23 ac 07 1f 62 72 6f and 0x6f72621f(%edi,%eax,1),%ebp a246: 6b 65 6e 5f imul $0x5f,0x6e(%ebp),%esp a24a: 70 61 jo a2ad <.debug_info+0xa2ad> a24c: 72 69 jb a2b7 <.debug_info+0xa2b7> a24e: 74 79 je a2c9 <.debug_info+0xa2c9> a250: 5f pop %edi a251: 73 74 jae a2c7 <.debug_info+0xa2c7> a253: 61 popa a254: 74 75 je a2cb <.debug_info+0xa2cb> a256: 73 00 jae a258 <.debug_info+0xa258> a258: 4c dec %esp a259: a6 cmpsb %es:(%edi),%ds:(%esi) a25a: 3b 01 cmp (%ecx),%eax a25c: 00 00 add %al,(%eax) a25e: 04 01 add $0x1,%al a260: 18 03 sbb %al,(%ebx) a262: 23 ac 07 1f 6d 73 69 and 0x69736d1f(%edi,%eax,1),%ebp a269: 5f pop %edi a26a: 65 6e outsb %gs:(%esi),(%dx) a26c: 61 popa a26d: 62 6c 65 64 bound %ebp,0x64(%ebp) a271: 00 4c a7 3b add %cl,0x3b(%edi) a275: 01 00 add %eax,(%eax) a277: 00 04 01 add %al,(%ecx,%eax,1) a27a: 17 pop %ss a27b: 03 23 add (%ebx),%esp a27d: ac lods %ds:(%esi),%al a27e: 07 pop %es a27f: 1f pop %ds a280: 6d insl (%dx),%es:(%edi) a281: 73 69 jae a2ec <.debug_info+0xa2ec> a283: 78 5f js a2e4 <.debug_info+0xa2e4> a285: 65 6e outsb %gs:(%esi),(%dx) a287: 61 popa a288: 62 6c 65 64 bound %ebp,0x64(%ebp) a28c: 00 4c a8 3b add %cl,0x3b(%eax,%ebp,4) a290: 01 00 add %eax,(%eax) a292: 00 04 01 add %al,(%ecx,%eax,1) a295: 16 push %ss a296: 03 23 add (%ebx),%esp a298: ac lods %ds:(%esi),%al a299: 07 pop %es a29a: 0b 73 61 or 0x61(%ebx),%esi a29d: 76 65 jbe a304 <.debug_info+0xa304> a29f: 64 fs a2a0: 5f pop %edi a2a1: 63 6f 6e arpl %bp,0x6e(%edi) a2a4: 66 69 67 5f 73 70 imul $0x7073,0x5f(%edi),%sp a2aa: 61 popa a2ab: 63 65 00 arpl %sp,0x0(%ebp) a2ae: 4c dec %esp a2af: aa stos %al,%es:(%edi) a2b0: 87 ad 00 00 03 23 xchg %ebp,0x23030000(%ebp) a2b6: b0 07 mov $0x7,%al a2b8: 0b 73 61 or 0x61(%ebx),%esi a2bb: 76 65 jbe a322 <.debug_info+0xa322> a2bd: 64 fs a2be: 5f pop %edi a2bf: 63 61 70 arpl %sp,0x70(%ecx) a2c2: 5f pop %edi a2c3: 73 70 jae a335 <.debug_info+0xa335> a2c5: 61 popa a2c6: 63 65 00 arpl %sp,0x0(%ebp) a2c9: 4c dec %esp a2ca: ab stos %eax,%es:(%edi) a2cb: fe (bad) a2cc: 1d 00 00 03 23 sbb $0x23030000,%eax a2d1: f0 07 lock pop %es a2d3: 0b 72 6f or 0x6f(%edx),%esi a2d6: 6d insl (%dx),%es:(%edi) a2d7: 5f pop %edi a2d8: 61 popa a2d9: 74 74 je a34f <.debug_info+0xa34f> a2db: 72 00 jb a2dd <.debug_info+0xa2dd> a2dd: 4c dec %esp a2de: ac lods %ds:(%esi),%al a2df: d2 5b 00 rcrb %cl,0x0(%ebx) a2e2: 00 03 add %al,(%ebx) a2e4: 23 f4 and %esp,%esi a2e6: 07 pop %es a2e7: 0b 72 6f or 0x6f(%edx),%esi a2ea: 6d insl (%dx),%es:(%edi) a2eb: 5f pop %edi a2ec: 61 popa a2ed: 74 74 je a363 <.debug_info+0xa363> a2ef: 72 5f jb a350 <.debug_info+0xa350> a2f1: 65 6e outsb %gs:(%esi),(%dx) a2f3: 61 popa a2f4: 62 6c 65 64 bound %ebp,0x64(%ebp) a2f8: 00 4c ad 7a add %cl,0x7a(%ebp,%ebp,4) a2fc: 00 00 add %al,(%eax) a2fe: 00 03 add %al,(%ebx) a300: 23 f8 and %eax,%edi a302: 07 pop %es a303: 0b 72 65 or 0x65(%edx),%esi a306: 73 5f jae a367 <.debug_info+0xa367> a308: 61 popa a309: 74 74 je a37f <.debug_info+0xa37f> a30b: 72 00 jb a30d <.debug_info+0xa30d> a30d: 4c dec %esp a30e: ae scas %es:(%edi),%al a30f: 97 xchg %eax,%edi a310: ad lods %ds:(%esi),%eax a311: 00 00 add %al,(%eax) a313: 03 23 add (%ebx),%esp a315: fc cld a316: 07 pop %es a317: 00 06 add %al,(%esi) a319: 04 a4 add $0xa4,%al a31b: 9f lahf a31c: 00 00 add %al,(%eax) a31e: 0e push %cs a31f: 6b a3 00 00 6b 6c 69 imul $0x69,0x6c6b0000(%ebx),%esp a326: 73 74 jae a39c <.debug_info+0xa39c> a328: 00 20 add %ah,(%eax) a32a: 51 push %ecx a32b: 15 0b 6b 5f 6c adc $0x6c5f6b0b,%eax a330: 6f outsl %ds:(%esi),(%dx) a331: 63 6b 00 arpl %bp,0x0(%ebx) a334: 51 push %ecx a335: 16 push %ss a336: 1e push %ds a337: 1f pop %ds a338: 00 00 add %al,(%eax) a33a: 02 23 add (%ebx),%ah a33c: 00 0b add %cl,(%ebx) a33e: 6b 5f 6c 69 imul $0x69,0x6c(%edi),%ebx a342: 73 74 jae a3b8 <.debug_info+0xa3b8> a344: 00 51 17 add %dl,0x17(%ecx) a347: c8 1d 00 00 enter $0x1d,$0x0 a34b: 02 23 add (%ebx),%ah a34d: 10 0b adc %cl,(%ebx) a34f: 67 addr16 a350: 65 gs a351: 74 00 je a353 <.debug_info+0xa353> a353: 51 push %ecx a354: 18 d8 sbb %bl,%al a356: a3 00 00 02 23 mov %eax,0x23020000 a35b: 18 0b sbb %cl,(%ebx) a35d: 70 75 jo a3d4 <.debug_info+0xa3d4> a35f: 74 00 je a361 <.debug_info+0xa361> a361: 51 push %ecx a362: 19 d8 sbb %ebx,%eax a364: a3 00 00 02 23 mov %eax,0x23020000 a369: 1c 00 sbb $0x0,%al a36b: 07 pop %es a36c: 77 a3 ja a311 <.debug_info+0xa311> a36e: 00 00 add %al,(%eax) a370: 01 08 add %ecx,(%eax) a372: 77 a3 ja a317 <.debug_info+0xa317> a374: 00 00 add %al,(%eax) a376: 00 06 add %al,(%esi) a378: 04 7d add $0x7d,%al a37a: a3 00 00 0e d8 mov %eax,0xd80e0000 a37f: a3 00 00 6b 6c mov %eax,0x6c6b0000 a384: 69 73 74 5f 6e 6f 64 imul $0x646f6e5f,0x74(%ebx),%esi a38b: 65 00 2c 51 add %ch,%gs:(%ecx,%edx,2) a38f: 14 0b adc $0xb,%al a391: 6e outsb %ds:(%esi),(%dx) a392: 5f pop %edi a393: 6b 6c 69 73 74 imul $0x74,0x73(%ecx,%ebp,2),%ebp a398: 00 51 21 add %dl,0x21(%ecx) a39b: de a3 00 00 02 23 fisub 0x23020000(%ebx) a3a1: 00 0b add %cl,(%ebx) a3a3: 6e outsb %ds:(%esi),(%dx) a3a4: 5f pop %edi a3a5: 6e outsb %ds:(%esi),(%dx) a3a6: 6f outsl %ds:(%esi),(%dx) a3a7: 64 65 00 51 22 add %dl,%fs:%gs:0x22(%ecx) a3ac: c8 1d 00 00 enter $0x1d,$0x0 a3b0: 02 23 add (%ebx),%ah a3b2: 04 0b add $0xb,%al a3b4: 6e outsb %ds:(%esi),(%dx) a3b5: 5f pop %edi a3b6: 72 65 jb a41d <.debug_info+0xa41d> a3b8: 66 data16 a3b9: 00 51 23 add %dl,0x23(%ecx) a3bc: 0e push %cs a3bd: 5d pop %ebp a3be: 00 00 add %al,(%eax) a3c0: 02 23 add (%ebx),%ah a3c2: 0c 0b or $0xb,%al a3c4: 6e outsb %ds:(%esi),(%dx) a3c5: 5f pop %edi a3c6: 72 65 jb a42d <.debug_info+0xa42d> a3c8: 6d insl (%dx),%es:(%edi) a3c9: 6f outsl %ds:(%esi),(%dx) a3ca: 76 65 jbe a431 <.debug_info+0xa431> a3cc: 64 00 51 24 add %dl,%fs:0x24(%ecx) a3d0: 0e push %cs a3d1: 36 00 00 add %al,%ss:(%eax) a3d4: 02 23 add (%ebx),%ah a3d6: 10 00 adc %al,(%eax) a3d8: 06 push %es a3d9: 04 6b add $0x6b,%al a3db: a3 00 00 06 04 mov %eax,0x4060000 a3e0: 1e push %ds a3e1: a3 00 00 10 07 mov %eax,0x7100000 a3e6: a5 movsl %ds:(%esi),%es:(%edi) a3e7: 00 00 add %al,(%eax) a3e9: 62 75 73 bound %esi,0x73(%ebp) a3ec: 5f pop %edi a3ed: 74 79 je a468 <.debug_info+0xa468> a3ef: 70 65 jo a456 <.debug_info+0xa456> a3f1: 00 d8 add %bl,%al a3f3: 01 50 23 add %edx,0x23(%eax) a3f6: 0f xstore-rng (bad) a3f7: a7 cmpsl %es:(%edi),%ds:(%esi) a3f8: 01 00 add %eax,(%eax) a3fa: 00 50 24 add %dl,0x24(%eax) a3fd: 18 3d 00 00 02 23 sbb %bh,0x23020000 a403: 00 0f add %cl,(%edi) a405: 20 01 and %al,(%ecx) a407: 00 00 add %al,(%eax) a409: 50 push %eax a40a: 26 es a40b: cd 5e int $0x5e a40d: 00 00 add %al,(%eax) a40f: 02 23 add (%ebx),%ah a411: 04 0b add $0xb,%al a413: 64 fs a414: 72 69 jb a47f <.debug_info+0xa47f> a416: 76 65 jbe a47d <.debug_info+0xa47d> a418: 72 73 jb a48d <.debug_info+0xa48d> a41a: 00 50 27 add %dl,0x27(%eax) a41d: 3f aas a41e: 5d pop %ebp a41f: 00 00 add %al,(%eax) a421: 03 23 add (%ebx),%esp a423: 90 nop a424: 01 0f add %ecx,(%edi) a426: 27 daa a427: 01 00 add %eax,(%eax) a429: 00 50 28 add %dl,0x28(%eax) a42c: 3f aas a42d: 5d pop %ebp a42e: 00 00 add %al,(%eax) a430: 03 23 add (%ebx),%esp a432: 80 02 0f addb $0xf,(%edx) a435: 05 02 00 00 50 add $0x50000002,%eax a43a: 29 1e sub %ebx,(%esi) a43c: a3 00 00 03 23 mov %eax,0x23030000 a441: f0 02 0b lock add (%ebx),%cl a444: 6b 6c 69 73 74 imul $0x74,0x73(%ecx,%ebp,2),%ebp a449: 5f pop %edi a44a: 64 fs a44b: 72 69 jb a4b6 <.debug_info+0xa4b6> a44d: 76 65 jbe a4b4 <.debug_info+0xa4b4> a44f: 72 73 jb a4c4 <.debug_info+0xa4c4> a451: 00 50 2a add %dl,0x2a(%eax) a454: 1e push %ds a455: a3 00 00 03 23 mov %eax,0x23030000 a45a: 90 nop a45b: 03 0b add (%ebx),%ecx a45d: 62 75 73 bound %esi,0x73(%ebp) a460: 5f pop %edi a461: 61 popa a462: 74 74 je a4d8 <.debug_info+0xa4d8> a464: 72 73 jb a4d9 <.debug_info+0xa4d9> a466: 00 50 2c add %dl,0x2c(%eax) a469: 48 dec %eax a46a: a5 movsl %ds:(%esi),%es:(%edi) a46b: 00 00 add %al,(%eax) a46d: 03 23 add (%ebx),%esp a46f: b0 03 mov $0x3,%al a471: 0b 64 65 76 or 0x76(%ebp),%esp a475: 5f pop %edi a476: 61 popa a477: 74 74 je a4ed <.debug_info+0xa4ed> a479: 72 73 jb a4ee <.debug_info+0xa4ee> a47b: 00 50 2d add %dl,0x2d(%eax) a47e: 95 xchg %eax,%ebp a47f: a5 movsl %ds:(%esi),%es:(%edi) a480: 00 00 add %al,(%eax) a482: 03 23 add (%ebx),%esp a484: b4 03 mov $0x3,%ah a486: 0b 64 72 76 or 0x76(%edx,%esi,2),%esp a48a: 5f pop %edi a48b: 61 popa a48c: 74 74 je a502 <.debug_info+0xa502> a48e: 72 73 jb a503 <.debug_info+0xa503> a490: 00 50 2e add %dl,0x2e(%eax) a493: df a5 00 00 03 23 fbld 0x23030000(%ebp) a499: b8 03 0b 6d 61 mov $0x616d0b03,%eax a49e: 74 63 je a503 <.debug_info+0xa503> a4a0: 68 00 50 30 cd push $0xcd305000 a4a5: a6 cmpsb %es:(%edi),%ds:(%esi) a4a6: 00 00 add %al,(%eax) a4a8: 03 23 add (%ebx),%esp a4aa: bc 03 0f 3e 03 mov $0x33e0f03,%esp a4af: 00 00 add %al,(%eax) a4b1: 50 push %eax a4b2: 32 f7 xor %bh,%dh a4b4: a6 cmpsb %es:(%edi),%ds:(%esi) a4b5: 00 00 add %al,(%eax) a4b7: 03 23 add (%ebx),%esp a4b9: c0 03 0f rolb $0xf,(%ebx) a4bc: 9d popf a4bd: 00 00 add %al,(%eax) a4bf: 00 50 33 add %dl,0x33(%eax) a4c2: 0d a7 00 00 03 or $0x30000a7,%eax a4c7: 23 c4 and %esp,%eax a4c9: 03 0f add (%edi),%ecx a4cb: 7c 00 jl a4cd <.debug_info+0xa4cd> a4cd: 00 00 add %al,(%eax) a4cf: 50 push %eax a4d0: 34 0d xor $0xd,%al a4d2: a7 cmpsl %es:(%edi),%ds:(%esi) a4d3: 00 00 add %al,(%eax) a4d5: 03 23 add (%ebx),%esp a4d7: c8 03 0f 53 enter $0xf03,$0x53 a4db: 02 00 add (%eax),%al a4dd: 00 50 35 add %dl,0x35(%eax) a4e0: 1f pop %ds a4e1: a7 cmpsl %es:(%edi),%ds:(%esi) a4e2: 00 00 add %al,(%eax) a4e4: 03 23 add (%ebx),%esp a4e6: cc int3 a4e7: 03 0f add (%edi),%ecx a4e9: 50 push %eax a4ea: 01 00 add %eax,(%eax) a4ec: 00 50 36 add %dl,0x36(%eax) a4ef: 3a a7 00 00 03 23 cmp 0x23030000(%edi),%ah a4f5: d0 03 rolb (%ebx) a4f7: 0f ac 01 00 shrd $0x0,%eax,(%ecx) a4fb: 00 50 37 add %dl,0x37(%eax) a4fe: 0d a7 00 00 03 or $0x30000a7,%eax a503: 23 d4 and %esp,%edx a505: 03 00 add (%eax),%eax a507: 0e push %cs a508: 48 dec %eax a509: a5 movsl %ds:(%esi),%es:(%edi) a50a: 00 00 add %al,(%eax) a50c: 62 75 73 bound %esi,0x73(%ebp) a50f: 5f pop %edi a510: 61 popa a511: 74 74 je a587 <.debug_info+0xa587> a513: 72 69 jb a57e <.debug_info+0xa57e> a515: 62 75 74 bound %esi,0x74(%ebp) a518: 65 00 14 50 add %dl,%gs:(%eax,%edx,2) a51c: 2c 0f sub $0xf,%al a51e: 83 00 00 addl $0x0,(%eax) a521: 00 50 4d add %dl,0x4d(%eax) a524: e7 55 out %eax,$0x55 a526: 00 00 add %al,(%eax) a528: 02 23 add (%ebx),%ah a52a: 00 0f add %cl,(%edi) a52c: 2b 00 sub (%eax),%eax a52e: 00 00 add %al,(%eax) a530: 50 push %eax a531: 4e dec %esi a532: 5b pop %ebx a533: a7 cmpsl %es:(%edi),%ds:(%esi) a534: 00 00 add %al,(%eax) a536: 02 23 add (%ebx),%ah a538: 0c 0f or $0xf,%al a53a: c5 01 lds (%ecx),%eax a53c: 00 00 add %al,(%eax) a53e: 50 push %eax a53f: 4f dec %edi a540: 7b a7 jnp a4e9 <.debug_info+0xa4e9> a542: 00 00 add %al,(%eax) a544: 02 23 add (%ebx),%ah a546: 10 00 adc %al,(%eax) a548: 06 push %es a549: 04 07 add $0x7,%al a54b: a5 movsl %ds:(%esi),%es:(%edi) a54c: 00 00 add %al,(%eax) a54e: 0e push %cs a54f: 95 xchg %eax,%ebp a550: a5 movsl %ds:(%esi),%es:(%edi) a551: 00 00 add %al,(%eax) a553: 64 fs a554: 65 gs a555: 76 69 jbe a5c0 <.debug_info+0xa5c0> a557: 63 65 5f arpl %sp,0x5f(%ebp) a55a: 61 popa a55b: 74 74 je a5d1 <.debug_info+0xa5d1> a55d: 72 69 jb a5c8 <.debug_info+0xa5c8> a55f: 62 75 74 bound %esi,0x74(%ebp) a562: 65 00 14 50 add %dl,%gs:(%eax,%edx,2) a566: 2d 13 83 00 00 sub $0x8313,%eax a56b: 00 50 1f add %dl,0x1f(%eax) a56e: 01 e7 add %esp,%edi a570: 55 push %ebp a571: 00 00 add %al,(%eax) a573: 02 23 add (%ebx),%ah a575: 00 13 add %dl,(%ebx) a577: 2b 00 sub (%eax),%eax a579: 00 00 add %al,(%eax) a57b: 50 push %eax a57c: 21 01 and %eax,(%ecx) a57e: 28 aa 00 00 02 23 sub %ch,0x23020000(%edx) a584: 0c 13 or $0x13,%al a586: c5 01 lds (%ecx),%eax a588: 00 00 add %al,(%eax) a58a: 50 push %eax a58b: 23 01 and (%ecx),%eax a58d: 4d dec %ebp a58e: aa stos %al,%es:(%edi) a58f: 00 00 add %al,(%eax) a591: 02 23 add (%ebx),%ah a593: 10 00 adc %al,(%eax) a595: 06 push %es a596: 04 4e add $0x4e,%al a598: a5 movsl %ds:(%esi),%es:(%edi) a599: 00 00 add %al,(%eax) a59b: 0e push %cs a59c: df a5 00 00 64 72 fbld 0x72640000(%ebp) a5a2: 69 76 65 72 5f 61 74 imul $0x74615f72,0x65(%esi),%esi a5a9: 74 72 je a61d <.debug_info+0xa61d> a5ab: 69 62 75 74 65 00 14 imul $0x14006574,0x75(%edx),%esp a5b2: 50 push %eax a5b3: 2e 0f 83 00 00 00 50 jae,pn 5000a5ba a5ba: 76 e7 jbe a5a3 <.debug_info+0xa5a3> a5bc: 55 push %ebp a5bd: 00 00 add %al,(%eax) a5bf: 02 23 add (%ebx),%ah a5c1: 00 0f add %cl,(%edi) a5c3: 2b 00 sub (%eax),%eax a5c5: 00 00 add %al,(%eax) a5c7: 50 push %eax a5c8: 77 96 ja a560 <.debug_info+0xa560> a5ca: a7 cmpsl %es:(%edi),%ds:(%esi) a5cb: 00 00 add %al,(%eax) a5cd: 02 23 add (%ebx),%ah a5cf: 0c 0f or $0xf,%al a5d1: c5 01 lds (%ecx),%eax a5d3: 00 00 add %al,(%eax) a5d5: 50 push %eax a5d6: 78 b6 js a58e <.debug_info+0xa58e> a5d8: a7 cmpsl %es:(%edi),%ds:(%esi) a5d9: 00 00 add %al,(%eax) a5db: 02 23 add (%ebx),%ah a5dd: 10 00 adc %al,(%eax) a5df: 06 push %es a5e0: 04 9b add $0x9b,%al a5e2: a5 movsl %ds:(%esi),%es:(%edi) a5e3: 00 00 add %al,(%eax) a5e5: 0c fa or $0xfa,%al a5e7: a5 movsl %ds:(%esi),%es:(%edi) a5e8: 00 00 add %al,(%eax) a5ea: 01 7a 00 add %edi,0x0(%edx) a5ed: 00 00 add %al,(%eax) a5ef: 08 f4 or %dh,%ah a5f1: 28 00 sub %al,(%eax) a5f3: 00 08 add %cl,(%eax) a5f5: fa cli a5f6: a5 movsl %ds:(%esi),%es:(%edi) a5f7: 00 00 add %al,(%eax) a5f9: 00 06 add %al,(%esi) a5fb: 04 00 add $0x0,%al a5fd: a6 cmpsb %es:(%edi),%ds:(%esi) a5fe: 00 00 add %al,(%eax) a600: 11 cd adc %ecx,%ebp a602: a6 cmpsb %es:(%edi),%ds:(%esi) a603: 00 00 add %al,(%eax) a605: 64 fs a606: 65 gs a607: 76 69 jbe a672 <.debug_info+0xa672> a609: 63 65 5f arpl %sp,0x5f(%ebp) a60c: 64 fs a60d: 72 69 jb a678 <.debug_info+0xa678> a60f: 76 65 jbe a676 <.debug_info+0xa676> a611: 72 00 jb a613 <.debug_info+0xa613> a613: d4 21 aam $0x21 a615: d4 01 aam $0x1 a617: 0f xstore-rng (bad) a618: a7 cmpsl %es:(%edi),%ds:(%esi) a619: 01 00 add %eax,(%eax) a61b: 00 50 59 add %dl,0x59(%eax) a61e: 18 3d 00 00 02 23 sbb %bh,0x23020000 a624: 00 0b add %cl,(%ebx) a626: 62 75 73 bound %esi,0x73(%ebp) a629: 00 50 5a add %dl,0x5a(%eax) a62c: 55 push %ebp a62d: a7 cmpsl %es:(%edi),%ds:(%esi) a62e: 00 00 add %al,(%eax) a630: 02 23 add (%ebx),%ah a632: 04 0b add $0xb,%al a634: 75 6e jne a6a4 <.debug_info+0xa6a4> a636: 6c insb (%dx),%es:(%edi) a637: 6f outsl %ds:(%esi),(%dx) a638: 61 popa a639: 64 65 64 00 50 5c add %dl,%fs:%gs:0x5c(%eax) a63f: 0e push %cs a640: 36 00 00 add %al,%ss:(%eax) a643: 02 23 add (%ebx),%ah a645: 08 0b or %cl,(%ebx) a647: 6b 6f 62 6a imul $0x6a,0x62(%edi),%ebp a64b: 00 50 5d add %dl,0x5d(%eax) a64e: 18 5b 00 sbb %bl,0x0(%ebx) a651: 00 02 add %al,(%edx) a653: 23 24 0f and (%edi,%ecx,1),%esp a656: 05 02 00 00 50 add $0x50000002,%eax a65b: 5e pop %esi a65c: 1e push %ds a65d: a3 00 00 02 23 mov %eax,0x23020000 a662: 70 0f jo a673 <.debug_info+0xa673> a664: 9d popf a665: 02 00 add (%eax),%al a667: 00 50 5f add %dl,0x5f(%eax) a66a: 7d a3 jge a60f <.debug_info+0xa60f> a66c: 00 00 add %al,(%eax) a66e: 03 23 add (%ebx),%esp a670: 90 nop a671: 01 0f add %ecx,(%edi) a673: 2f das a674: 01 00 add %eax,(%eax) a676: 00 50 61 add %dl,0x61(%eax) a679: 3a 5a 00 cmp 0x0(%edx),%bl a67c: 00 03 add %al,(%ebx) a67e: 23 bc 01 0f 9d 00 00 and 0x9d0f(%ecx,%eax,1),%edi a685: 00 50 63 add %dl,0x63(%eax) a688: 0d a7 00 00 03 or $0x30000a7,%eax a68d: 23 c0 and %eax,%eax a68f: 01 0f add %ecx,(%edi) a691: 7c 00 jl a693 <.debug_info+0xa693> a693: 00 00 add %al,(%eax) a695: 50 push %eax a696: 64 fs a697: 0d a7 00 00 03 or $0x30000a7,%eax a69c: 23 c4 and %esp,%eax a69e: 01 0f add %ecx,(%edi) a6a0: 53 push %ebx a6a1: 02 00 add (%eax),%al a6a3: 00 50 65 add %dl,0x65(%eax) a6a6: 1f pop %ds a6a7: a7 cmpsl %es:(%edi),%ds:(%esi) a6a8: 00 00 add %al,(%eax) a6aa: 03 23 add (%ebx),%esp a6ac: c8 01 0f 50 enter $0xf01,$0x50 a6b0: 01 00 add %eax,(%eax) a6b2: 00 50 66 add %dl,0x66(%eax) a6b5: 3a a7 00 00 03 23 cmp 0x23030000(%edi),%ah a6bb: cc int3 a6bc: 01 0f add %ecx,(%edi) a6be: ac lods %ds:(%esi),%al a6bf: 01 00 add %eax,(%eax) a6c1: 00 50 67 add %dl,0x67(%eax) a6c4: 0d a7 00 00 03 or $0x30000a7,%eax a6c9: 23 d0 and %eax,%edx a6cb: 01 00 add %eax,(%eax) a6cd: 06 push %es a6ce: 04 e5 add $0xe5,%al a6d0: a5 movsl %ds:(%esi),%es:(%edi) a6d1: 00 00 add %al,(%eax) a6d3: 0c f7 or $0xf7,%al a6d5: a6 cmpsb %es:(%edi),%ds:(%esi) a6d6: 00 00 add %al,(%eax) a6d8: 01 7a 00 add %edi,0x0(%edx) a6db: 00 00 add %al,(%eax) a6dd: 08 f4 or %dh,%ah a6df: 28 00 sub %al,(%eax) a6e1: 00 08 add %cl,(%eax) a6e3: c1 5e 00 00 rcrl $0x0,0x0(%esi) a6e7: 08 7a 00 or %bh,0x0(%edx) a6ea: 00 00 add %al,(%eax) a6ec: 08 bb 01 00 00 08 or %bh,0x8000001(%ebx) a6f2: 7a 00 jp a6f4 <.debug_info+0xa6f4> a6f4: 00 00 add %al,(%eax) a6f6: 00 06 add %al,(%esi) a6f8: 04 d3 add $0xd3,%al a6fa: a6 cmpsb %es:(%edi),%ds:(%esi) a6fb: 00 00 add %al,(%eax) a6fd: 0c 0d or $0xd,%al a6ff: a7 cmpsl %es:(%edi),%ds:(%esi) a700: 00 00 add %al,(%eax) a702: 01 7a 00 add %edi,0x0(%edx) a705: 00 00 add %al,(%eax) a707: 08 f4 or %dh,%ah a709: 28 00 sub %al,(%eax) a70b: 00 00 add %al,(%eax) a70d: 06 push %es a70e: 04 fd add $0xfd,%al a710: a6 cmpsb %es:(%edi),%ds:(%esi) a711: 00 00 add %al,(%eax) a713: 07 pop %es a714: 1f pop %ds a715: a7 cmpsl %es:(%edi),%ds:(%esi) a716: 00 00 add %al,(%eax) a718: 01 08 add %ecx,(%eax) a71a: f4 hlt a71b: 28 00 sub %al,(%eax) a71d: 00 00 add %al,(%eax) a71f: 06 push %es a720: 04 13 add $0x13,%al a722: a7 cmpsl %es:(%edi),%ds:(%esi) a723: 00 00 add %al,(%eax) a725: 0c 3a or $0x3a,%al a727: a7 cmpsl %es:(%edi),%ds:(%esi) a728: 00 00 add %al,(%eax) a72a: 01 7a 00 add %edi,0x0(%edx) a72d: 00 00 add %al,(%eax) a72f: 08 f4 or %dh,%ah a731: 28 00 sub %al,(%eax) a733: 00 08 add %cl,(%eax) a735: 5b pop %ebx a736: 26 00 00 add %al,%es:(%eax) a739: 00 06 add %al,(%esi) a73b: 04 25 add $0x25,%al a73d: a7 cmpsl %es:(%edi),%ds:(%esi) a73e: 00 00 add %al,(%eax) a740: 0c 55 or $0x55,%al a742: a7 cmpsl %es:(%edi),%ds:(%esi) a743: 00 00 add %al,(%eax) a745: 01 c3 add %eax,%ebx a747: 03 00 add (%eax),%eax a749: 00 08 add %cl,(%eax) a74b: 55 push %ebp a74c: a7 cmpsl %es:(%edi),%ds:(%esi) a74d: 00 00 add %al,(%eax) a74f: 08 bb 01 00 00 00 or %bh,0x1(%ebx) a755: 06 push %es a756: 04 e4 add $0xe4,%al a758: a3 00 00 06 04 mov %eax,0x4060000 a75d: 40 inc %eax a75e: a7 cmpsl %es:(%edi),%ds:(%esi) a75f: 00 00 add %al,(%eax) a761: 0c 7b or $0x7b,%al a763: a7 cmpsl %es:(%edi),%ds:(%esi) a764: 00 00 add %al,(%eax) a766: 01 c3 add %eax,%ebx a768: 03 00 add (%eax),%eax a76a: 00 08 add %cl,(%eax) a76c: 55 push %ebp a76d: a7 cmpsl %es:(%edi),%ds:(%esi) a76e: 00 00 add %al,(%eax) a770: 08 18 or %bl,(%eax) a772: 3d 00 00 08 b5 cmp $0xb5080000,%eax a777: 03 00 add (%eax),%eax a779: 00 00 add %al,(%eax) a77b: 06 push %es a77c: 04 61 add $0x61,%al a77e: a7 cmpsl %es:(%edi),%ds:(%esi) a77f: 00 00 add %al,(%eax) a781: 0c 96 or $0x96,%al a783: a7 cmpsl %es:(%edi),%ds:(%esi) a784: 00 00 add %al,(%eax) a786: 01 c3 add %eax,%ebx a788: 03 00 add (%eax),%eax a78a: 00 08 add %cl,(%eax) a78c: fa cli a78d: a5 movsl %ds:(%esi),%es:(%edi) a78e: 00 00 add %al,(%eax) a790: 08 bb 01 00 00 00 or %bh,0x1(%ebx) a796: 06 push %es a797: 04 81 add $0x81,%al a799: a7 cmpsl %es:(%edi),%ds:(%esi) a79a: 00 00 add %al,(%eax) a79c: 0c b6 or $0xb6,%al a79e: a7 cmpsl %es:(%edi),%ds:(%esi) a79f: 00 00 add %al,(%eax) a7a1: 01 c3 add %eax,%ebx a7a3: 03 00 add (%eax),%eax a7a5: 00 08 add %cl,(%eax) a7a7: fa cli a7a8: a5 movsl %ds:(%esi),%es:(%edi) a7a9: 00 00 add %al,(%eax) a7ab: 08 18 or %bl,(%eax) a7ad: 3d 00 00 08 b5 cmp $0xb5080000,%eax a7b2: 03 00 add (%eax),%eax a7b4: 00 00 add %al,(%eax) a7b6: 06 push %es a7b7: 04 9c add $0x9c,%al a7b9: a7 cmpsl %es:(%edi),%ds:(%esi) a7ba: 00 00 add %al,(%eax) a7bc: 0a 9f a8 00 00 d0 or 0xd00000a8(%edi),%bl a7c2: 00 00 add %al,(%eax) a7c4: 00 e0 add %ah,%al a7c6: 50 push %eax a7c7: 20 0f and %cl,(%edi) a7c9: a7 cmpsl %es:(%edi),%ds:(%esi) a7ca: 01 00 add %eax,(%eax) a7cc: 00 50 8c add %dl,0xffffff8c(%eax) a7cf: 18 3d 00 00 02 23 sbb %bh,0x23020000 a7d5: 00 0f add %cl,(%edi) a7d7: 2f das a7d8: 01 00 add %eax,(%eax) a7da: 00 50 8d add %dl,0xffffff8d(%eax) a7dd: 3a 5a 00 cmp 0x0(%edx),%bl a7e0: 00 02 add %al,(%edx) a7e2: 23 04 0f and (%edi,%ecx,1),%eax a7e5: 20 01 and %al,(%ecx) a7e7: 00 00 add %al,(%eax) a7e9: 50 push %eax a7ea: 8f cd pop %ebp a7ec: 5e pop %esi a7ed: 00 00 add %al,(%eax) a7ef: 02 23 add (%ebx),%ah a7f1: 08 0f or %cl,(%edi) a7f3: 07 pop %es a7f4: 03 00 add (%eax),%eax a7f6: 00 50 90 add %dl,0xffffff90(%eax) a7f9: c8 1d 00 00 enter $0x1d,$0x0 a7fd: 03 23 add (%ebx),%esp a7ff: 94 xchg %eax,%esp a800: 01 0f add %ecx,(%edi) a802: 27 daa a803: 01 00 add %eax,(%eax) a805: 00 50 91 add %dl,0xffffff91(%eax) a808: c8 1d 00 00 enter $0x1d,$0x0 a80c: 03 23 add (%ebx),%esp a80e: 9c pushf a80f: 01 0b add %ecx,(%ebx) a811: 69 6e 74 65 72 66 61 imul $0x61667265,0x74(%esi),%ebp a818: 63 65 73 arpl %sp,0x73(%ebp) a81b: 00 50 92 add %dl,0xffffff92(%eax) a81e: c8 1d 00 00 enter $0x1d,$0x0 a822: 03 23 add (%ebx),%esp a824: a4 movsb %ds:(%esi),%es:(%edi) a825: 01 0b add %ecx,(%ebx) a827: 73 65 jae a88e <.debug_info+0xa88e> a829: 6d insl (%dx),%es:(%edi) a82a: 00 50 93 add %dl,0xffffff93(%eax) a82d: f6 21 mulb (%ecx) a82f: 00 00 add %al,(%eax) a831: 03 23 add (%ebx),%esp a833: ac lods %ds:(%esi),%al a834: 01 0b add %ecx,(%ebx) a836: 63 6c 61 73 arpl %bp,0x73(%ecx) a83a: 73 5f jae a89b <.debug_info+0xa89b> a83c: 61 popa a83d: 74 74 je a8b3 <.debug_info+0xa8b3> a83f: 72 73 jb a8b4 <.debug_info+0xa8b4> a841: 00 50 95 add %dl,0xffffff95(%eax) a844: e2 a8 loop a7ee <.debug_info+0xa7ee> a846: 00 00 add %al,(%eax) a848: 03 23 add (%ebx),%esp a84a: cc int3 a84b: 01 0b add %ecx,(%ebx) a84d: 63 6c 61 73 arpl %bp,0x73(%ecx) a851: 73 5f jae a8b2 <.debug_info+0xa8b2> a853: 64 fs a854: 65 gs a855: 76 5f jbe a8b6 <.debug_info+0xa8b6> a857: 61 popa a858: 74 74 je a8ce <.debug_info+0xa8ce> a85a: 72 73 jb a8cf <.debug_info+0xa8cf> a85c: 00 50 96 add %dl,0xffffff96(%eax) a85f: 32 a9 00 00 03 23 xor 0x23030000(%ecx),%ch a865: d0 01 rolb (%ecx) a867: 0f 3e (bad) a869: 03 00 add (%eax),%eax a86b: 00 50 99 add %dl,0xffffff99(%eax) a86e: 5c pop %esp a86f: a9 00 00 03 23 test $0x23030000,%eax a874: d4 01 aam $0x1 a876: 0f 1b (bad) a878: 03 00 add (%eax),%eax a87a: 00 50 9b add %dl,0xffffff9b(%eax) a87d: 6e outsb %ds:(%esi),(%dx) a87e: a9 00 00 03 23 test $0x23030000,%eax a883: d8 01 fadds (%ecx) a885: 0b 63 6c or 0x6c(%ebx),%esp a888: 61 popa a889: 73 73 jae a8fe <.debug_info+0xa8fe> a88b: 5f pop %edi a88c: 72 65 jb a8f3 <.debug_info+0xa8f3> a88e: 6c insb (%dx),%es:(%edi) a88f: 65 gs a890: 61 popa a891: 73 65 jae a8f8 <.debug_info+0xa8f8> a893: 00 50 9c add %dl,0xffffff9c(%eax) a896: 86 a9 00 00 03 23 xchg %ch,0x23030000(%ecx) a89c: dc 01 faddl (%ecx) a89e: 00 0e add %cl,(%esi) a8a0: e2 a8 loop a84a <.debug_info+0xa84a> a8a2: 00 00 add %al,(%eax) a8a4: 63 6c 61 73 arpl %bp,0x73(%ecx) a8a8: 73 5f jae a909 <.debug_info+0xa909> a8aa: 61 popa a8ab: 74 74 je a921 <.debug_info+0xa921> a8ad: 72 69 jb a918 <.debug_info+0xa918> a8af: 62 75 74 bound %esi,0x74(%ebp) a8b2: 65 00 14 50 add %dl,%gs:(%eax,%edx,2) a8b6: 95 xchg %eax,%ebp a8b7: 0f 83 00 00 00 50 jae 5000a8bd a8bd: a4 movsb %ds:(%esi),%es:(%edi) a8be: e7 55 out %eax,$0x55 a8c0: 00 00 add %al,(%eax) a8c2: 02 23 add (%ebx),%ah a8c4: 00 0f add %cl,(%edi) a8c6: 2b 00 sub (%eax),%eax a8c8: 00 00 add %al,(%eax) a8ca: 50 push %eax a8cb: a5 movsl %ds:(%esi),%es:(%edi) a8cc: a1 a9 00 00 02 mov 0x20000a9,%eax a8d1: 23 0c 0f and (%edi,%ecx,1),%ecx a8d4: c5 01 lds (%ecx),%eax a8d6: 00 00 add %al,(%eax) a8d8: 50 push %eax a8d9: a6 cmpsb %es:(%edi),%ds:(%esi) a8da: c1 a9 00 00 02 23 10 shrl $0x10,0x23020000(%ecx) a8e1: 00 06 add %al,(%esi) a8e3: 04 9f add $0x9f,%al a8e5: a8 00 test $0x0,%al a8e7: 00 0e add %cl,(%esi) a8e9: 32 a9 00 00 63 6c xor 0x6c630000(%ecx),%ch a8ef: 61 popa a8f0: 73 73 jae a965 <.debug_info+0xa965> a8f2: 5f pop %edi a8f3: 64 fs a8f4: 65 gs a8f5: 76 69 jbe a960 <.debug_info+0xa960> a8f7: 63 65 5f arpl %sp,0x5f(%ebp) a8fa: 61 popa a8fb: 74 74 je a971 <.debug_info+0xa971> a8fd: 72 69 jb a968 <.debug_info+0xa968> a8ff: 62 75 74 bound %esi,0x74(%ebp) a902: 65 00 14 50 add %dl,%gs:(%eax,%edx,2) a906: 96 xchg %eax,%esi a907: 0f 83 00 00 00 50 jae 5000a90d a90d: b0 e7 mov $0xe7,%al a90f: 55 push %ebp a910: 00 00 add %al,(%eax) a912: 02 23 add (%ebx),%ah a914: 00 0f add %cl,(%edi) a916: 2b 00 sub (%eax),%eax a918: 00 00 add %al,(%eax) a91a: 50 push %eax a91b: b1 dc mov $0xdc,%cl a91d: a9 00 00 02 23 test $0x23020000,%eax a922: 0c 0f or $0xf,%al a924: c5 01 lds (%ecx),%eax a926: 00 00 add %al,(%eax) a928: 50 push %eax a929: b2 fc mov $0xfc,%dl a92b: a9 00 00 02 23 test $0x23020000,%eax a930: 10 00 adc %al,(%eax) a932: 06 push %es a933: 04 e8 add $0xe8,%al a935: a8 00 test $0x0,%al a937: 00 0c 5c add %cl,(%esp,%ebx,2) a93a: a9 00 00 01 7a test $0x7a010000,%eax a93f: 00 00 add %al,(%eax) a941: 00 08 add %cl,(%eax) a943: c4 98 00 00 08 c1 les 0xc1080000(%eax),%ebx a949: 5e pop %esi a94a: 00 00 add %al,(%eax) a94c: 08 7a 00 or %bh,0x0(%edx) a94f: 00 00 add %al,(%eax) a951: 08 bb 01 00 00 08 or %bh,0x8000001(%ebx) a957: 7a 00 jp a959 <.debug_info+0xa959> a959: 00 00 add %al,(%eax) a95b: 00 06 add %al,(%esi) a95d: 04 38 add $0x38,%al a95f: a9 00 00 07 6e test $0x6e070000,%eax a964: a9 00 00 01 08 test $0x8010000,%eax a969: c4 98 00 00 00 06 les 0x6000000(%eax),%ebx a96f: 04 62 add $0x62,%al a971: a9 00 00 07 80 test $0x80070000,%eax a976: a9 00 00 01 08 test $0x8010000,%eax a97b: 80 a9 00 00 00 06 04 subb $0x4,0x6000000(%ecx) a982: bc a7 00 00 06 mov $0x60000a7,%esp a987: 04 74 add $0x74,%al a989: a9 00 00 0c a1 test $0xa10c0000,%eax a98e: a9 00 00 01 c3 test $0xc3010000,%eax a993: 03 00 add (%eax),%eax a995: 00 08 add %cl,(%eax) a997: 80 a9 00 00 08 bb 01 subb $0x1,0xbb080000(%ecx) a99e: 00 00 add %al,(%eax) a9a0: 00 06 add %al,(%esi) a9a2: 04 8c add $0x8c,%al a9a4: a9 00 00 0c c1 test $0xc10c0000,%eax a9a9: a9 00 00 01 c3 test $0xc3010000,%eax a9ae: 03 00 add (%eax),%eax a9b0: 00 08 add %cl,(%eax) a9b2: 80 a9 00 00 08 18 3d subb $0x3d,0x18080000(%ecx) a9b9: 00 00 add %al,(%eax) a9bb: 08 b5 03 00 00 00 or %dh,0x3(%ebp) a9c1: 06 push %es a9c2: 04 a7 add $0xa7,%al a9c4: a9 00 00 0c dc test $0xdc0c0000,%eax a9c9: a9 00 00 01 c3 test $0xc3010000,%eax a9ce: 03 00 add (%eax),%eax a9d0: 00 08 add %cl,(%eax) a9d2: c4 98 00 00 08 bb les 0xbb080000(%eax),%ebx a9d8: 01 00 add %eax,(%eax) a9da: 00 00 add %al,(%eax) a9dc: 06 push %es a9dd: 04 c7 add $0xc7,%al a9df: a9 00 00 0c fc test $0xfc0c0000,%eax a9e4: a9 00 00 01 c3 test $0xc3010000,%eax a9e9: 03 00 add (%eax),%eax a9eb: 00 08 add %cl,(%eax) a9ed: c4 98 00 00 08 18 les 0x18080000(%eax),%ebx a9f3: 3d 00 00 08 b5 cmp $0xb5080000,%eax a9f8: 03 00 add (%eax),%eax a9fa: 00 00 add %al,(%eax) a9fc: 06 push %es a9fd: 04 e2 add $0xe2,%al a9ff: a9 00 00 06 04 test $0x4060000,%eax aa04: 08 aa 00 00 06 04 or %ch,0x4060000(%edx) aa0a: 40 inc %eax aa0b: 5a pop %edx aa0c: 00 00 add %al,(%eax) aa0e: 0c 28 or $0x28,%al aa10: aa stos %al,%es:(%edi) aa11: 00 00 add %al,(%eax) aa13: 01 c3 add %eax,%ebx aa15: 03 00 add (%eax),%eax aa17: 00 08 add %cl,(%eax) aa19: f4 hlt aa1a: 28 00 sub %al,(%eax) aa1c: 00 08 add %cl,(%eax) aa1e: 95 xchg %eax,%ebp aa1f: a5 movsl %ds:(%esi),%es:(%edi) aa20: 00 00 add %al,(%eax) aa22: 08 bb 01 00 00 00 or %bh,0x1(%ebx) aa28: 06 push %es aa29: 04 0e add $0xe,%al aa2b: aa stos %al,%es:(%edi) aa2c: 00 00 add %al,(%eax) aa2e: 0c 4d or $0x4d,%al aa30: aa stos %al,%es:(%edi) aa31: 00 00 add %al,(%eax) aa33: 01 c3 add %eax,%ebx aa35: 03 00 add (%eax),%eax aa37: 00 08 add %cl,(%eax) aa39: f4 hlt aa3a: 28 00 sub %al,(%eax) aa3c: 00 08 add %cl,(%eax) aa3e: 95 xchg %eax,%ebp aa3f: a5 movsl %ds:(%esi),%es:(%edi) aa40: 00 00 add %al,(%eax) aa42: 08 18 or %bl,(%eax) aa44: 3d 00 00 08 b5 cmp $0xb5080000,%eax aa49: 03 00 add (%eax),%eax aa4b: 00 00 add %al,(%eax) aa4d: 06 push %es aa4e: 04 2e add $0x2e,%al aa50: aa stos %al,%es:(%edi) aa51: 00 00 add %al,(%eax) aa53: 06 push %es aa54: 04 07 add $0x7,%al aa56: 03 00 add (%eax),%eax aa58: 00 26 add %ah,(%esi) aa5a: 64 fs aa5b: 6d insl (%dx),%es:(%edi) aa5c: 61 popa aa5d: 5f pop %edi aa5e: 63 6f 68 arpl %bp,0x68(%edi) aa61: 65 gs aa62: 72 65 jb aac9 <.debug_info+0xaac9> aa64: 6e outsb %ds:(%esi),(%dx) aa65: 74 5f je aac6 <.debug_info+0xaac6> aa67: 6d insl (%dx),%es:(%edi) aa68: 65 gs aa69: 6d insl (%dx),%es:(%edi) aa6a: 00 01 add %al,(%ecx) aa6c: 06 push %es aa6d: 04 59 add $0x59,%al aa6f: aa stos %al,%es:(%edi) aa70: 00 00 add %al,(%eax) aa72: 09 70 63 or %esi,0x63(%eax) aa75: 69 5f 70 6f 77 65 72 imul $0x7265776f,0x70(%edi),%ebx aa7c: 5f pop %edi aa7d: 74 00 je aa7f <.debug_info+0xaa7f> aa7f: 4c dec %esp aa80: 46 inc %esi aa81: 7a 00 jp aa83 <.debug_info+0xaa83> aa83: 00 00 add %al,(%eax) aa85: 09 70 63 or %esi,0x63(%eax) aa88: 69 5f 63 68 61 6e 6e imul $0x6e6e6168,0x63(%edi),%ebx aa8f: 65 gs aa90: 6c insb (%dx),%es:(%edi) aa91: 5f pop %edi aa92: 73 74 jae ab08 <.debug_info+0xab08> aa94: 61 popa aa95: 74 65 je aafc <.debug_info+0xaafc> aa97: 5f pop %edi aa98: 74 00 je aa9a <.debug_info+0xaa9a> aa9a: 4c dec %esp aa9b: 54 push %esp aa9c: 3b 01 cmp (%ecx),%eax aa9e: 00 00 add %al,(%eax) aaa0: 2d 09 ab 00 00 sub $0xab09,%eax aaa5: 70 63 jo ab0a <.debug_info+0xab0a> aaa7: 69 5f 63 68 61 6e 6e imul $0x6e6e6168,0x63(%edi),%ebx aaae: 65 gs aaaf: 6c insb (%dx),%es:(%edi) aab0: 5f pop %edi aab1: 73 74 jae ab27 <.debug_info+0xab27> aab3: 61 popa aab4: 74 65 je ab1b <.debug_info+0xab1b> aab6: 00 04 4c add %al,(%esp,%ecx,2) aab9: 56 push %esi aaba: 2b 70 63 sub 0x63(%eax),%esi aabd: 69 5f 63 68 61 6e 6e imul $0x6e6e6168,0x63(%edi),%ebx aac4: 65 gs aac5: 6c insb (%dx),%es:(%edi) aac6: 5f pop %edi aac7: 69 6f 5f 6e 6f 72 6d imul $0x6d726f6e,0x5f(%edi),%ebp aace: 61 popa aacf: 6c insb (%dx),%es:(%edi) aad0: 00 01 add %al,(%ecx) aad2: 2b 70 63 sub 0x63(%eax),%esi aad5: 69 5f 63 68 61 6e 6e imul $0x6e6e6168,0x63(%edi),%ebx aadc: 65 gs aadd: 6c insb (%dx),%es:(%edi) aade: 5f pop %edi aadf: 69 6f 5f 66 72 6f 7a imul $0x7a6f7266,0x5f(%edi),%ebp aae6: 65 6e outsb %gs:(%esi),(%dx) aae8: 00 02 add %al,(%edx) aaea: 2b 70 63 sub 0x63(%eax),%esi aaed: 69 5f 63 68 61 6e 6e imul $0x6e6e6168,0x63(%edi),%ebx aaf4: 65 gs aaf5: 6c insb (%dx),%es:(%edi) aaf6: 5f pop %edi aaf7: 69 6f 5f 70 65 72 6d imul $0x6d726570,0x5f(%edi),%ebp aafe: 5f pop %edi aaff: 66 61 popaw ab01: 69 6c 75 72 65 00 03 imul $0x30065,0x72(%ebp,%esi,2),%ebp ab08: 00 ab09: 09 70 63 or %esi,0x63(%eax) ab0c: 69 5f 62 75 73 5f 66 imul $0x665f7375,0x62(%edi),%ebx ab13: 6c insb (%dx),%es:(%edi) ab14: 61 popa ab15: 67 73 5f addr16 jae ab77 <.debug_info+0xab77> ab18: 74 00 je ab1a <.debug_info+0xab1a> ab1a: 4c dec %esp ab1b: 61 popa ab1c: ec in (%dx),%al ab1d: 00 00 add %al,(%eax) ab1f: 00 10 add %dl,(%eax) ab21: 89 ac 00 00 70 63 69 mov %ebp,0x69637000(%eax,%eax,1) ab28: 5f pop %edi ab29: 62 75 73 bound %esi,0x73(%ebp) ab2c: 00 30 add %dh,(%eax) ab2e: 01 4c 72 0f add %ecx,0xf(%edx,%esi,2) ab32: ba 02 00 00 4c mov $0x4c000002,%edx ab37: e1 c8 loope ab01 <.debug_info+0xab01> ab39: 1d 00 00 02 23 sbb $0x23020000,%eax ab3e: 00 0f add %cl,(%edi) ab40: 76 03 jbe ab45 <.debug_info+0xab45> ab42: 00 00 add %al,(%eax) ab44: 4c dec %esp ab45: e2 89 loop aad0 <.debug_info+0xaad0> ab47: ac lods %ds:(%esi),%al ab48: 00 00 add %al,(%eax) ab4a: 02 23 add (%ebx),%ah ab4c: 08 0f or %cl,(%edi) ab4e: 07 pop %es ab4f: 03 00 add (%eax),%eax ab51: 00 4c e3 c8 add %cl,0xffffffc8(%ebx) ab55: 1d 00 00 02 23 sbb $0x23020000,%eax ab5a: 0c 0f or $0xf,%al ab5c: 27 daa ab5d: 01 00 add %eax,(%eax) ab5f: 00 4c e4 c8 add %cl,0xffffffc8(%esp) ab63: 1d 00 00 02 23 sbb $0x23020000,%eax ab68: 14 0b adc $0xb,%al ab6a: 73 65 jae abd1 <.debug_info+0xabd1> ab6c: 6c insb (%dx),%es:(%edi) ab6d: 66 data16 ab6e: 00 4c e5 18 add %cl,0x18(%ebp) ab72: a3 00 00 02 23 mov %eax,0x23020000 ab77: 1c 0f sbb $0xf,%al ab79: 35 03 00 00 4c xor $0x4c000003,%eax ab7e: e6 a7 out %al,$0xa7 ab80: ad lods %ds:(%esi),%eax ab81: 00 00 add %al,(%eax) ab83: 02 23 add (%ebx),%ah ab85: 20 0b and %cl,(%ebx) ab87: 6f outsl %ds:(%esi),(%dx) ab88: 70 73 jo abfd <.debug_info+0xabfd> ab8a: 00 4c e9 e9 add %cl,0xffffffe9(%ecx,%ebp,8) ab8e: ad lods %ds:(%esi),%eax ab8f: 00 00 add %al,(%eax) ab91: 02 23 add (%ebx),%ah ab93: 40 inc %eax ab94: 0b 73 79 or 0x79(%ebx),%esi ab97: 73 64 jae abfd <.debug_info+0xabfd> ab99: 61 popa ab9a: 74 61 je abfd <.debug_info+0xabfd> ab9c: 00 4c ea b7 add %cl,0xffffffb7(%edx,%ebp,8) aba0: 1d 00 00 02 23 sbb $0x23020000,%eax aba5: 44 inc %esp aba6: 0b 70 72 or 0x72(%eax),%esi aba9: 6f outsl %ds:(%esi),(%dx) abaa: 63 64 69 72 arpl %sp,0x72(%ecx,%ebp,2) abae: 00 4c eb 5c add %cl,0x5c(%ebx,%ebp,8) abb2: 9e sahf abb3: 00 00 add %al,(%eax) abb5: 02 23 add (%ebx),%ah abb7: 48 dec %eax abb8: 0b 6e 75 or 0x75(%esi),%ebp abbb: 6d insl (%dx),%es:(%edi) abbc: 62 65 72 bound %esp,0x72(%ebp) abbf: 00 4c ed 57 add %cl,0x57(%ebp,%ebp,8) abc3: 02 00 add (%eax),%al abc5: 00 02 add %al,(%edx) abc7: 23 4c 0b 70 and 0x70(%ebx,%ecx,1),%ecx abcb: 72 69 jb ac36 <.debug_info+0xac36> abcd: 6d insl (%dx),%es:(%edi) abce: 61 popa abcf: 72 79 jb ac4a <.debug_info+0xac4a> abd1: 00 4c ee 57 add %cl,0x57(%esi,%ebp,8) abd5: 02 00 add (%eax),%al abd7: 00 02 add %al,(%edx) abd9: 23 4d 0b and 0xb(%ebp),%ecx abdc: 73 65 jae ac43 <.debug_info+0xac43> abde: 63 6f 6e arpl %bp,0x6e(%edi) abe1: 64 fs abe2: 61 popa abe3: 72 79 jb ac5e <.debug_info+0xac5e> abe5: 00 4c ef 57 add %cl,0x57(%edi,%ebp,8) abe9: 02 00 add (%eax),%al abeb: 00 02 add %al,(%edx) abed: 23 4e 0f and 0xf(%esi),%ecx abf0: f8 clc abf1: 00 00 add %al,(%eax) abf3: 00 4c f0 57 add %cl,0x57(%eax,%esi,8) abf7: 02 00 add (%eax),%al abf9: 00 02 add %al,(%edx) abfb: 23 4f 0f and 0xf(%edi),%ecx abfe: a7 cmpsl %es:(%edi),%ds:(%esi) abff: 01 00 add %eax,(%eax) ac01: 00 4c f2 ef add %cl,0xffffffef(%edx,%esi,8) ac05: ad lods %ds:(%esi),%eax ac06: 00 00 add %al,(%eax) ac08: 02 23 add (%ebx),%ah ac0a: 50 push %eax ac0b: 0b 62 72 or 0x72(%edx),%esp ac0e: 69 64 67 65 5f 63 74 imul $0x6c74635f,0x65(%edi),%esp ac15: 6c ac16: 00 4c f4 ec add %cl,0xffffffec(%esp,%esi,8) ac1a: 00 00 add %al,(%eax) ac1c: 00 03 add %al,(%ebx) ac1e: 23 80 01 0b 62 75 and 0x75620b01(%eax),%eax ac24: 73 5f jae ac85 <.debug_info+0xac85> ac26: 66 data16 ac27: 6c insb (%dx),%es:(%edi) ac28: 61 popa ac29: 67 73 00 addr16 jae ac2c <.debug_info+0xac2c> ac2c: 4c dec %esp ac2d: f5 cmc ac2e: 09 ab 00 00 03 23 or %ebp,0x23030000(%ebx) ac34: 82 (bad) ac35: 01 0b add %ecx,(%ebx) ac37: 62 72 69 bound %esi,0x69(%edx) ac3a: 64 67 65 00 4c f6 addr16 add %cl,%fs:%gs:-10(%si) ac40: f4 hlt ac41: 28 00 sub %al,(%eax) ac43: 00 03 add %al,(%ebx) ac45: 23 84 01 0b 63 6c 61 and 0x616c630b(%ecx,%eax,1),%eax ac4c: 73 73 jae acc1 <.debug_info+0xacc1> ac4e: 5f pop %edi ac4f: 64 fs ac50: 65 gs ac51: 76 00 jbe ac53 <.debug_info+0xac53> ac53: 4c dec %esp ac54: f7 e3 mul %ebx ac56: 97 xchg %eax,%edi ac57: 00 00 add %al,(%eax) ac59: 03 23 add (%ebx),%esp ac5b: 88 01 mov %al,(%ecx) ac5d: 0b 6c 65 67 or 0x67(%ebp),%ebp ac61: 61 popa ac62: 63 79 5f arpl %di,0x5f(%ecx) ac65: 69 6f 00 4c f8 d2 5b imul $0x5bd2f84c,0x0(%edi),%ebp ac6c: 00 00 add %al,(%eax) ac6e: 03 23 add (%ebx),%esp ac70: a8 02 test $0x2,%al ac72: 0b 6c 65 67 or 0x67(%ebp),%ebp ac76: 61 popa ac77: 63 79 5f arpl %di,0x5f(%ecx) ac7a: 6d insl (%dx),%es:(%edi) ac7b: 65 gs ac7c: 6d insl (%dx),%es:(%edi) ac7d: 00 4c f9 d2 add %cl,0xffffffd2(%ecx,%edi,8) ac81: 5b pop %ebx ac82: 00 00 add %al,(%eax) ac84: 03 23 add (%ebx),%esp ac86: ac lods %ds:(%esi),%al ac87: 02 00 add (%eax),%al ac89: 06 push %es ac8a: 04 20 add $0x20,%al ac8c: ab stos %eax,%es:(%edi) ac8d: 00 00 add %al,(%eax) ac8f: 10 71 ad adc %dh,0xffffffad(%ecx) ac92: 00 00 add %al,(%eax) ac94: 70 63 jo acf9 <.debug_info+0xacf9> ac96: 69 5f 64 72 69 76 65 imul $0x65766972,0x64(%edi),%ebx ac9d: 72 00 jb ac9f <.debug_info+0xac9f> ac9f: 1c 01 sbb $0x1,%al aca1: 4c dec %esp aca2: 82 (bad) aca3: 13 ba 02 00 00 4c adc 0x4c000002(%edx),%edi aca9: 57 push %edi acaa: 01 c8 add %ecx,%eax acac: 1d 00 00 02 23 sbb $0x23020000,%eax acb1: 00 13 add %dl,(%ebx) acb3: a7 cmpsl %es:(%edi),%ds:(%esi) acb4: 01 00 add %eax,(%eax) acb6: 00 4c 58 01 add %cl,0x1(%eax,%ebx,2) acba: bb 01 00 00 02 mov $0x2000001,%ebx acbf: 23 08 and (%eax),%ecx acc1: 12 69 64 adc 0x64(%ecx),%ch acc4: 5f pop %edi acc5: 74 61 je ad28 <.debug_info+0xad28> acc7: 62 6c 65 00 bound %ebp,0x0(%ebp) accb: 4c dec %esp accc: 59 pop %ecx accd: 01 90 af 00 00 02 add %edx,0x20000af(%eax) acd3: 23 0c 13 and (%ebx,%edx,1),%ecx acd6: 9d popf acd7: 00 00 add %al,(%eax) acd9: 00 4c 5a 01 add %cl,0x1(%edx,%ebx,2) acdd: b0 af mov $0xaf,%al acdf: 00 00 add %al,(%eax) ace1: 02 23 add (%ebx),%ah ace3: 10 13 adc %dl,(%ebx) ace5: 7c 00 jl ace7 <.debug_info+0xace7> ace7: 00 00 add %al,(%eax) ace9: 4c dec %esp acea: 5b pop %ebx aceb: 01 8a af 00 00 02 add %ecx,0x20000af(%edx) acf1: 23 14 13 and (%ebx,%edx,1),%edx acf4: 50 push %eax acf5: 01 00 add %eax,(%eax) acf7: 00 4c 5c 01 add %cl,0x1(%esp,%ebx,2) acfb: cb lret acfc: af scas %es:(%edi),%eax acfd: 00 00 add %al,(%eax) acff: 02 23 add (%ebx),%ah ad01: 18 13 sbb %dl,(%ebx) ad03: ac lods %ds:(%esi),%al ad04: 01 00 add %eax,(%eax) ad06: 00 4c 5d 01 add %cl,0x1(%ebp,%ebx,2) ad0a: e1 af loope acbb <.debug_info+0xacbb> ad0c: 00 00 add %al,(%eax) ad0e: 02 23 add (%ebx),%ah ad10: 1c 12 sbb $0x12,%al ad12: 65 6e outsb %gs:(%esi),(%dx) ad14: 61 popa ad15: 62 6c 65 5f bound %ebp,0x5f(%ebp) ad19: 77 61 ja ad7c <.debug_info+0xad7c> ad1b: 6b 65 00 4c imul $0x4c,0x0(%ebp),%esp ad1f: 5e pop %esi ad20: 01 01 add %eax,(%ecx) ad22: b0 00 mov $0x0,%al ad24: 00 02 add %al,(%edx) ad26: 23 20 and (%eax),%esp ad28: 13 53 02 adc 0x2(%ebx),%edx ad2b: 00 00 add %al,(%eax) ad2d: 4c dec %esp ad2e: 5f pop %edi ad2f: 01 8a af 00 00 02 add %ecx,0x20000af(%edx) ad35: 23 24 12 and (%edx,%edx,1),%esp ad38: 65 gs ad39: 72 72 jb adad <.debug_info+0xadad> ad3b: 5f pop %edi ad3c: 68 61 6e 64 6c push $0x6c646e61 ad41: 65 gs ad42: 72 00 jb ad44 <.debug_info+0xad44> ad44: 4c dec %esp ad45: 61 popa ad46: 01 07 add %eax,(%edi) ad48: b0 00 mov $0x0,%al ad4a: 00 02 add %al,(%edx) ad4c: 23 28 and (%eax),%ebp ad4e: 13 27 adc (%edi),%esp ad50: 02 00 add (%eax),%al ad52: 00 4c 62 01 add %cl,0x1(%edx) ad56: 00 a6 00 00 02 23 add %ah,0x23020000(%esi) ad5c: 2c 12 sub $0x12,%al ad5e: 64 fs ad5f: 79 6e jns adcf <.debug_info+0xadcf> ad61: 69 64 73 00 4c 63 01 imul $0x5901634c,0x0(%ebx,%esi,2),%esp ad68: 59 ad69: ae scas %es:(%edi),%al ad6a: 00 00 add %al,(%eax) ad6c: 03 23 add (%ebx),%esp ad6e: 80 02 00 addb $0x0,(%edx) ad71: 06 push %es ad72: 04 8f add $0x8f,%al ad74: ac lods %ds:(%esi),%al ad75: 00 00 add %al,(%eax) ad77: 03 87 ad 00 00 27 add 0x270000ad(%edi),%eax ad7d: 9f lahf ad7e: 00 00 add %al,(%eax) ad80: 04 91 add $0x91,%al ad82: 00 00 add %al,(%eax) ad84: 00 0b add %cl,(%ebx) ad86: 00 03 add %al,(%ebx) ad88: 97 xchg %eax,%edi ad89: ad lods %ds:(%esi),%eax ad8a: 00 00 add %al,(%eax) ad8c: f1 icebp ad8d: 02 00 add (%eax),%al ad8f: 00 04 91 add %al,(%ecx,%edx,4) ad92: 00 00 add %al,(%eax) ad94: 00 0f add %cl,(%edi) ad96: 00 03 add %al,(%ebx) ad98: a7 cmpsl %es:(%edi),%ds:(%esi) ad99: ad lods %ds:(%esi),%eax ad9a: 00 00 add %al,(%eax) ad9c: d2 5b 00 rcrb %cl,0x0(%ebx) ad9f: 00 04 91 add %al,(%ecx,%edx,4) ada2: 00 00 add %al,(%eax) ada4: 00 0b add %cl,(%ebx) ada6: 00 03 add %al,(%ebx) ada8: b7 ad mov $0xad,%bh adaa: 00 00 add %al,(%eax) adac: 9e sahf adad: 9f lahf adae: 00 00 add %al,(%eax) adb0: 04 91 add $0x91,%al adb2: 00 00 add %al,(%eax) adb4: 00 07 add %al,(%edi) adb6: 00 0e add %cl,(%esi) adb8: e9 ad 00 00 70 jmp 7000ae6a adbd: 63 69 5f arpl %bp,0x5f(%ecx) adc0: 6f outsl %ds:(%esi),(%dx) adc1: 70 73 jo ae36 <.debug_info+0xae36> adc3: 00 08 add %cl,(%eax) adc5: 4c dec %esp adc6: e9 12 72 65 61 jmp 61661fdd adcb: 64 00 4c 0d 01 add %cl,%fs:0x1(%ebp,%ecx,1) add0: 29 ae 00 00 02 23 sub %ebp,0x23020000(%esi) add6: 00 12 add %dl,(%edx) add8: 77 72 ja ae4c <.debug_info+0xae4c> adda: 69 74 65 00 4c 0e 01 imul $0x53010e4c,0x0(%ebp),%esi ade1: 53 ade2: ae scas %es:(%edi),%al ade3: 00 00 add %al,(%eax) ade5: 02 23 add (%ebx),%ah ade7: 04 00 add $0x0,%al ade9: 06 push %es adea: 04 b7 add $0xb7,%al adec: ad lods %ds:(%esi),%eax aded: 00 00 add %al,(%eax) adef: 03 ff add %edi,%edi adf1: ad lods %ds:(%esi),%eax adf2: 00 00 add %al,(%eax) adf4: c1 01 00 roll $0x0,(%ecx) adf7: 00 04 91 add %al,(%ecx,%edx,4) adfa: 00 00 add %al,(%eax) adfc: 00 2f add %ch,(%edi) adfe: 00 0c 23 add %cl,(%ebx) ae01: ae scas %es:(%edi),%al ae02: 00 00 add %al,(%eax) ae04: 01 7a 00 add %edi,0x0(%edx) ae07: 00 00 add %al,(%eax) ae09: 08 89 ac 00 00 08 or %cl,0x80000ac(%ecx) ae0f: 3b 01 cmp (%ecx),%eax ae11: 00 00 add %al,(%eax) ae13: 08 7a 00 or %bh,0x0(%edx) ae16: 00 00 add %al,(%eax) ae18: 08 7a 00 or %bh,0x0(%edx) ae1b: 00 00 add %al,(%eax) ae1d: 08 23 or %ah,(%ebx) ae1f: ae scas %es:(%edi),%al ae20: 00 00 add %al,(%eax) ae22: 00 06 add %al,(%esi) ae24: 04 f1 add $0xf1,%al ae26: 02 00 add (%eax),%al ae28: 00 06 add %al,(%esi) ae2a: 04 ff add $0xff,%al ae2c: ad lods %ds:(%esi),%eax ae2d: 00 00 add %al,(%eax) ae2f: 0c 53 or $0x53,%al ae31: ae scas %es:(%edi),%al ae32: 00 00 add %al,(%eax) ae34: 01 7a 00 add %edi,0x0(%edx) ae37: 00 00 add %al,(%eax) ae39: 08 89 ac 00 00 08 or %cl,0x80000ac(%ecx) ae3f: 3b 01 cmp (%ecx),%eax ae41: 00 00 add %al,(%eax) ae43: 08 7a 00 or %bh,0x0(%edx) ae46: 00 00 add %al,(%eax) ae48: 08 7a 00 or %bh,0x0(%edx) ae4b: 00 00 add %al,(%eax) ae4d: 08 f1 or %dh,%cl ae4f: 02 00 add (%eax),%al ae51: 00 00 add %al,(%eax) ae53: 06 push %es ae54: 04 2f add $0x2f,%al ae56: ae scas %es:(%edi),%al ae57: 00 00 add %al,(%eax) ae59: 11 aa ae 00 00 70 adc %ebp,0x700000ae(%edx) ae5f: 63 69 5f arpl %bp,0x5f(%ecx) ae62: 64 fs ae63: 79 6e jns aed3 <.debug_info+0xaed3> ae65: 69 64 73 00 1c 4c 1f imul $0x11f4c1c,0x0(%ebx,%esi,2),%esp ae6c: 01 ae6d: 13 d6 adc %esi,%edx ae6f: 02 00 add (%eax),%al ae71: 00 4c 20 01 add %cl,0x1(%eax) ae75: 1e push %ds ae76: 1f pop %ds ae77: 00 00 add %al,(%eax) ae79: 02 23 add (%ebx),%ah ae7b: 00 13 add %dl,(%ebx) ae7d: 42 inc %edx ae7e: 02 00 add (%eax),%al ae80: 00 4c 21 01 add %cl,0x1(%ecx) ae84: c8 1d 00 00 enter $0x1d,$0x0 ae88: 02 23 add (%ebx),%ah ae8a: 10 19 adc %bl,(%ecx) ae8c: 75 73 jne af01 <.debug_info+0xaf01> ae8e: 65 gs ae8f: 5f pop %edi ae90: 64 fs ae91: 72 69 jb aefc <.debug_info+0xaefc> ae93: 76 65 jbe aefa <.debug_info+0xaefa> ae95: 72 5f jb aef6 <.debug_info+0xaef6> ae97: 64 fs ae98: 61 popa ae99: 74 61 je aefc <.debug_info+0xaefc> ae9b: 00 4c 22 01 add %cl,0x1(%edx) ae9f: 3b 01 cmp (%ecx),%eax aea1: 00 00 add %al,(%eax) aea3: 04 01 add $0x1,%al aea5: 1f pop %ds aea6: 02 23 add (%ebx),%ah aea8: 18 00 sbb %al,(%eax) aeaa: 18 70 63 sbb %dh,0x63(%eax) aead: 69 5f 65 72 73 5f 72 imul $0x725f7372,0x65(%edi),%ebx aeb4: 65 gs aeb5: 73 75 jae af2c <.debug_info+0xaf2c> aeb7: 6c insb (%dx),%es:(%edi) aeb8: 74 5f je af19 <.debug_info+0xaf19> aeba: 74 00 je aebc <.debug_info+0xaebc> aebc: 4c dec %esp aebd: 2c 01 sub $0x1,%al aebf: 3b 01 cmp (%ecx),%eax aec1: 00 00 add %al,(%eax) aec3: 11 4d af adc %ecx,0xffffffaf(%ebp) aec6: 00 00 add %al,(%eax) aec8: 70 63 jo af2d <.debug_info+0xaf2d> aeca: 69 5f 65 72 72 6f 72 imul $0x726f7272,0x65(%edi),%ebx aed1: 5f pop %edi aed2: 68 61 6e 64 6c push $0x6c646e61 aed7: 65 gs aed8: 72 73 jb af4d <.debug_info+0xaf4d> aeda: 00 14 4c add %dl,(%esp,%ecx,2) aedd: 41 inc %ecx aede: 01 12 add %edx,(%edx) aee0: 65 gs aee1: 72 72 jb af55 <.debug_info+0xaf55> aee3: 6f outsl %ds:(%esi),(%dx) aee4: 72 5f jb af45 <.debug_info+0xaf45> aee6: 64 fs aee7: 65 gs aee8: 74 65 je af4f <.debug_info+0xaf4f> aeea: 63 74 65 64 arpl %si,0x64(%ebp) aeee: 00 4c 44 01 add %cl,0x1(%esp,%eax,2) aef2: 62 af 00 00 02 23 bound %ebp,0x23020000(%edi) aef8: 00 12 add %dl,(%edx) aefa: 6d insl (%dx),%es:(%edi) aefb: 6d insl (%dx),%es:(%edi) aefc: 69 6f 5f 65 6e 61 62 imul $0x62616e65,0x5f(%edi),%ebp af03: 6c insb (%dx),%es:(%edi) af04: 65 64 00 4c 47 01 add %cl,%fs:%gs:0x1(%edi,%eax,2) af0a: 78 af js aebb <.debug_info+0xaebb> af0c: 00 00 add %al,(%eax) af0e: 02 23 add (%ebx),%ah af10: 04 12 add $0x12,%al af12: 6c insb (%dx),%es:(%edi) af13: 69 6e 6b 5f 72 65 73 imul $0x7365725f,0x6b(%esi),%ebp af1a: 65 gs af1b: 74 00 je af1d <.debug_info+0xaf1d> af1d: 4c dec %esp af1e: 4a dec %edx af1f: 01 78 af add %edi,0xffffffaf(%eax) af22: 00 00 add %al,(%eax) af24: 02 23 add (%ebx),%ah af26: 08 12 or %dl,(%edx) af28: 73 6c jae af96 <.debug_info+0xaf96> af2a: 6f outsl %ds:(%esi),(%dx) af2b: 74 5f je af8c <.debug_info+0xaf8c> af2d: 72 65 jb af94 <.debug_info+0xaf94> af2f: 73 65 jae af96 <.debug_info+0xaf96> af31: 74 00 je af33 <.debug_info+0xaf33> af33: 4c dec %esp af34: 4d dec %ebp af35: 01 78 af add %edi,0xffffffaf(%eax) af38: 00 00 add %al,(%eax) af3a: 02 23 add (%ebx),%ah af3c: 0c 13 or $0x13,%al af3e: ac lods %ds:(%esi),%al af3f: 01 00 add %eax,(%eax) af41: 00 4c 50 01 add %cl,0x1(%eax,%edx,2) af45: 8a af 00 00 02 23 mov 0x23020000(%edi),%ch af4b: 10 00 adc %al,(%eax) af4d: 0c 62 or $0x62,%al af4f: af scas %es:(%edi),%eax af50: 00 00 add %al,(%eax) af52: 01 aa ae 00 00 08 add %ebp,0x80000ae(%edx) af58: 18 a3 00 00 08 a0 sbb %ah,0xa0080000(%ebx) af5e: aa stos %al,%es:(%edi) af5f: 00 00 add %al,(%eax) af61: 00 06 add %al,(%esi) af63: 04 4d add $0x4d,%al af65: af scas %es:(%edi),%eax af66: 00 00 add %al,(%eax) af68: 0c 78 or $0x78,%al af6a: af scas %es:(%edi),%eax af6b: 00 00 add %al,(%eax) af6d: 01 aa ae 00 00 08 add %ebp,0x80000ae(%edx) af73: 18 a3 00 00 00 06 sbb %ah,0x6000000(%ebx) af79: 04 68 add $0x68,%al af7b: af scas %es:(%edi),%eax af7c: 00 00 add %al,(%eax) af7e: 07 pop %es af7f: 8a af 00 00 01 08 mov 0x8010000(%edi),%ch af85: 18 a3 00 00 00 06 sbb %ah,0x6000000(%ebx) af8b: 04 7e add $0x7e,%al af8d: af scas %es:(%edi),%eax af8e: 00 00 add %al,(%eax) af90: 06 push %es af91: 04 96 add $0x96,%al af93: af scas %es:(%edi),%eax af94: 00 00 add %al,(%eax) af96: 28 98 9e 00 00 0c sub %bl,0xc00009e(%eax) af9c: b0 af mov $0xaf,%al af9e: 00 00 add %al,(%eax) afa0: 01 7a 00 add %edi,0x0(%edx) afa3: 00 00 add %al,(%eax) afa5: 08 18 or %bl,(%eax) afa7: a3 00 00 08 90 mov %eax,0x90080000 afac: af scas %es:(%edi),%eax afad: 00 00 add %al,(%eax) afaf: 00 06 add %al,(%esi) afb1: 04 9b add $0x9b,%al afb3: af scas %es:(%edi),%eax afb4: 00 00 add %al,(%eax) afb6: 0c cb or $0xcb,%al afb8: af scas %es:(%edi),%eax afb9: 00 00 add %al,(%eax) afbb: 01 7a 00 add %edi,0x0(%edx) afbe: 00 00 add %al,(%eax) afc0: 08 18 or %bl,(%eax) afc2: a3 00 00 08 5b mov %eax,0x5b080000 afc7: 26 00 00 add %al,%es:(%eax) afca: 00 06 add %al,(%esi) afcc: 04 b6 add $0xb6,%al afce: af scas %es:(%edi),%eax afcf: 00 00 add %al,(%eax) afd1: 0c e1 or $0xe1,%al afd3: af scas %es:(%edi),%eax afd4: 00 00 add %al,(%eax) afd6: 01 7a 00 add %edi,0x0(%edx) afd9: 00 00 add %al,(%eax) afdb: 08 18 or %bl,(%eax) afdd: a3 00 00 00 06 mov %eax,0x6000000 afe2: 04 d1 add $0xd1,%al afe4: af scas %es:(%edi),%eax afe5: 00 00 add %al,(%eax) afe7: 0c 01 or $0x1,%al afe9: b0 00 mov $0x0,%al afeb: 00 01 add %al,(%ecx) afed: 7a 00 jp afef <.debug_info+0xafef> afef: 00 00 add %al,(%eax) aff1: 08 18 or %bl,(%eax) aff3: a3 00 00 08 72 mov %eax,0x72080000 aff8: aa stos %al,%es:(%edi) aff9: 00 00 add %al,(%eax) affb: 08 7a 00 or %bh,0x0(%edx) affe: 00 00 add %al,(%eax) b000: 00 06 add %al,(%esi) b002: 04 e7 add $0xe7,%al b004: af scas %es:(%edi),%eax b005: 00 00 add %al,(%eax) b007: 06 push %es b008: 04 c3 add $0xc3,%al b00a: ae scas %es:(%edi),%al b00b: 00 00 add %al,(%eax) b00d: 31 47 b0 xor %eax,0xffffffb0(%edi) b010: 00 00 add %al,(%eax) b012: 01 69 6e add %ebp,0x6e(%ecx) b015: 69 74 5f 6d 6f 64 75 imul $0x6c75646f,0x6d(%edi,%ebx,2),%esi b01c: 6c b01d: 65 00 01 add %al,%gs:(%ecx) b020: 6d insl (%dx),%es:(%edi) b021: 01 7a 00 add %edi,0x0(%edx) b024: 00 00 add %al,(%eax) b026: 00 00 add %al,(%eax) b028: 00 00 add %al,(%eax) b02a: 98 cwtl b02b: 00 00 add %al,(%eax) b02d: 00 01 add %al,(%ecx) b02f: 55 push %ebp b030: 32 47 b0 xor 0xffffffb0(%edi),%al b033: 00 00 add %al,(%eax) b035: 1a 00 sbb (%eax),%al b037: 00 00 add %al,(%eax) b039: 32 00 xor (%eax),%al b03b: 00 00 add %al,(%eax) b03d: 33 5f b0 xor 0xffffffb0(%edi),%ebx b040: 00 00 add %al,(%eax) b042: 02 91 7c 00 00 34 add 0x3400007c(%ecx),%dl b048: 6b b0 00 00 49 4e 49 imul $0x49,0x4e490000(%eax),%esi b04f: 54 push %esp b050: 5f pop %edi b051: 4c dec %esp b052: 49 dec %ecx b053: 53 push %ebx b054: 54 push %esp b055: 5f pop %edi b056: 48 dec %eax b057: 45 inc %ebp b058: 41 inc %ecx b059: 44 inc %esp b05a: 00 02 add %al,(%edx) b05c: 1f pop %ds b05d: 01 03 add %eax,(%ebx) b05f: 35 42 02 00 00 xor $0x242,%eax b064: 02 1e add (%esi),%bl b066: f8 clc b067: 1d 00 00 00 36 sbb $0x36000000,%eax b06c: e5 b0 in $0xb0,%eax b06e: 00 00 add %al,(%eax) b070: 01 63 6c add %esp,0x6c(%ebx) b073: 65 gs b074: 61 popa b075: 6e outsb %ds:(%esi),(%dx) b076: 75 70 jne b0e8 <.debug_info+0xb0e8> b078: 5f pop %edi b079: 6d insl (%dx),%es:(%edi) b07a: 6f outsl %ds:(%esi),(%dx) b07b: 64 fs b07c: 75 6c jne b0ea <.debug_info+0xb0ea> b07e: 65 00 01 add %al,%gs:(%ecx) b081: 87 01 xchg %eax,(%ecx) b083: 98 cwtl b084: 00 00 add %al,(%eax) b086: 00 12 add %dl,(%edx) b088: 01 00 add %eax,(%eax) b08a: 00 01 add %al,(%ecx) b08c: 55 push %ebp b08d: 37 aaa b08e: 6e outsb %ds:(%esi),(%dx) b08f: 75 6d jne b0fe <.debug_info+0xb0fe> b091: 62 65 72 bound %esp,0x72(%ebp) b094: 00 01 add %al,(%ecx) b096: 88 7a 00 mov %bh,0x0(%edx) b099: 00 00 add %al,(%eax) b09b: 02 91 7c 32 e5 b0 add 0xb0e5327c(%ecx),%dl b0a1: 00 00 add %al,(%eax) b0a3: 9e sahf b0a4: 00 00 add %al,(%eax) b0a6: 00 d6 add %dl,%dh b0a8: 00 00 add %al,(%eax) b0aa: 00 33 add %dh,(%ebx) b0ac: 06 push %es b0ad: b1 00 mov $0x0,%cl b0af: 00 02 add %al,(%edx) b0b1: 91 xchg %eax,%ecx b0b2: 78 38 js b0ec <.debug_info+0xb0ec> b0b4: a5 movsl %ds:(%esi),%es:(%edi) b0b5: 00 00 add %al,(%eax) b0b7: 00 d6 add %dl,%dh b0b9: 00 00 add %al,(%eax) b0bb: 00 39 add %bh,(%ecx) b0bd: 12 b1 00 00 02 91 adc 0x91020000(%ecx),%dh b0c3: 70 32 jo b0f7 <.debug_info+0xb0f7> b0c5: 24 b1 and $0xb1,%al b0c7: 00 00 add %al,(%eax) b0c9: b9 00 00 00 d0 mov $0xd0000000,%ecx b0ce: 00 00 add %al,(%eax) b0d0: 00 33 add %dh,(%ebx) b0d2: 37 aaa b0d3: b1 00 mov $0x0,%cl b0d5: 00 02 add %al,(%edx) b0d7: 91 xchg %eax,%ecx b0d8: 6c insb (%dx),%es:(%edi) b0d9: 33 41 b1 xor 0xffffffb1(%ecx),%eax b0dc: 00 00 add %al,(%eax) b0de: 02 91 68 00 00 00 add 0x68(%ecx),%dl b0e4: 00 3a add %bh,(%edx) b0e6: 1e push %ds b0e7: b1 00 mov $0x0,%cl b0e9: 00 63 61 add %ah,0x61(%ebx) b0ec: 6e outsb %ds:(%esi),(%dx) b0ed: 63 65 6c arpl %sp,0x6c(%ebp) b0f0: 5f pop %edi b0f1: 64 fs b0f2: 65 gs b0f3: 6c insb (%dx),%es:(%edi) b0f4: 61 popa b0f5: 79 65 jns b15c <.debug_info+0xb15c> b0f7: 64 fs b0f8: 5f pop %edi b0f9: 77 6f ja b16a <.debug_info+0xb16a> b0fb: 72 6b jb b168 <.debug_info+0xb168> b0fd: 00 03 add %al,(%ebx) b0ff: 5c pop %esp b100: 01 7a 00 add %edi,0x0(%edx) b103: 00 00 add %al,(%eax) b105: 03 3b add (%ebx),%edi b107: 77 6f ja b178 <.debug_info+0xb178> b109: 72 6b jb b176 <.debug_info+0xb176> b10b: 00 03 add %al,(%ebx) b10d: 5b pop %ebx b10e: 1e push %ds b10f: b1 00 mov $0x0,%cl b111: 00 3c 72 add %bh,(%edx,%esi,2) b114: 65 gs b115: 74 00 je b117 <.debug_info+0xb117> b117: 03 5d 7a add 0x7a(%ebp),%ebx b11a: 00 00 add %al,(%eax) b11c: 00 00 add %al,(%eax) b11e: 06 push %es b11f: 04 f9 add $0xf9,%al b121: 42 inc %edx b122: 00 00 add %al,(%eax) b124: 34 4e xor $0x4e,%al b126: b1 00 mov $0x0,%cl b128: 00 63 6c add %ah,0x6c(%ebx) b12b: 65 gs b12c: 61 popa b12d: 72 5f jb b18e <.debug_info+0xb18e> b12f: 62 69 74 bound %ebp,0x74(%ecx) b132: 00 04 48 add %al,(%eax,%ecx,2) b135: 01 03 add %eax,(%ebx) b137: 3b 6e 72 cmp 0x72(%esi),%ebp b13a: 00 04 47 add %al,(%edi,%eax,2) b13d: 7a 00 jp b13f <.debug_info+0xb13f> b13f: 00 00 add %al,(%eax) b141: 3b 61 64 cmp 0x64(%ecx),%esp b144: 64 fs b145: 72 00 jb b147 <.debug_info+0xb147> b147: 04 47 add $0x47,%al b149: 4e dec %esi b14a: b1 00 mov $0x0,%cl b14c: 00 00 add %al,(%eax) b14e: 06 push %es b14f: 04 54 add $0x54,%al b151: b1 00 mov $0x0,%cl b153: 00 1e add %bl,(%esi) b155: 98 cwtl b156: 00 00 add %al,(%eax) b158: 00 31 add %dh,(%ecx) b15a: c0 (bad) b15b: b1 00 mov $0x0,%cl b15d: 00 01 add %al,(%ecx) b15f: 63 72 5f arpl %si,0x5f(%edx) b162: 69 6f 63 74 6c 00 01 imul $0x1006c74,0x63(%edi),%ebp b169: 97 xchg %eax,%edi b16a: 01 7a 00 add %edi,0x0(%edx) b16d: 00 00 add %al,(%eax) b16f: 12 01 adc (%ecx),%al b171: 00 00 add %al,(%eax) b173: 41 inc %ecx b174: 01 00 add %eax,(%eax) b176: 00 01 add %al,(%ecx) b178: 55 push %ebp b179: 3d 69 6e 6f 64 cmp $0x646f6e69,%eax b17e: 65 00 01 add %al,%gs:(%ecx) b181: 94 xchg %eax,%esp b182: 54 push %esp b183: 68 00 00 02 91 push $0x91020000 b188: 7c 3d jl b1c7 <.debug_info+0xb1c7> b18a: 66 data16 b18b: 70 00 jo b18d <.debug_info+0xb18d> b18d: 01 95 03 47 00 00 add %edx,0x4703(%ebp) b193: 02 91 78 3d 63 6d add 0x6d633d78(%ecx),%dl b199: 64 00 01 add %al,%fs:(%ecx) b19c: 96 xchg %eax,%esi b19d: 3b 01 cmp (%ecx),%eax b19f: 00 00 add %al,(%eax) b1a1: 02 91 74 3d 61 72 add 0x72613d74(%ecx),%dl b1a7: 67 00 01 addr16 add %al,(%bx,%di) b1aa: 97 xchg %eax,%edi b1ab: 98 cwtl b1ac: 00 00 add %al,(%eax) b1ae: 00 02 add %al,(%edx) b1b0: 91 xchg %eax,%ecx b1b1: 08 37 or %dh,(%edi) b1b3: 72 63 jb b218 <.debug_info+0xb218> b1b5: 00 01 add %al,(%ecx) b1b7: 98 cwtl b1b8: 7a 00 jp b1ba <.debug_info+0xb1ba> b1ba: 00 00 add %al,(%eax) b1bc: 02 91 70 00 36 cb add 0xcb360070(%ecx),%dl b1c2: b2 00 mov $0x0,%dl b1c4: 00 01 add %al,(%ecx) b1c6: 63 72 6d arpl %si,0x6d(%edx) b1c9: 6f outsl %ds:(%esi),(%dx) b1ca: 64 fs b1cb: 5f pop %edi b1cc: 63 68 65 arpl %bp,0x65(%eax) b1cf: 63 6b 5f arpl %bp,0x5f(%ebx) b1d2: 66 data16 b1d3: 75 6e jne b243 <.debug_info+0xb243> b1d5: 63 74 69 6f arpl %si,0x6f(%ecx,%ebp,2) b1d9: 6e outsb %ds:(%esi),(%dx) b1da: 00 01 add %al,(%ecx) b1dc: ab stos %eax,%es:(%edi) b1dd: 01 41 01 add %eax,0x1(%ecx) b1e0: 00 00 add %al,(%eax) b1e2: 0c 03 or $0x3,%al b1e4: 00 00 add %al,(%eax) b1e6: 01 55 37 add %edx,0x37(%ebp) b1e9: 63 75 72 arpl %si,0x72(%ebp) b1ec: 5f pop %edi b1ed: 61 popa b1ee: 64 fs b1ef: 64 fs b1f0: 72 00 jb b1f2 <.debug_info+0xb1f2> b1f2: 01 ac b7 1d 00 00 02 add %ebp,0x200001d(%edi,%esi,4) b1f9: 91 xchg %eax,%ecx b1fa: 7c 38 jl b234 <.debug_info+0xb234> b1fc: 63 01 arpl %ax,(%ecx) b1fe: 00 00 add %al,(%eax) b200: f7 02 00 00 37 70 testl $0x70370000,(%edx) b206: 68 79 73 5f 61 push $0x615f7379 b20b: 64 fs b20c: 64 fs b20d: 72 00 jb b20f <.debug_info+0xb20f> b20f: 01 c2 add %eax,%edx b211: 98 cwtl b212: 00 00 add %al,(%eax) b214: 00 02 add %al,(%edx) b216: 91 xchg %eax,%ecx b217: 78 37 js b250 <.debug_info+0xb250> b219: 70 67 jo b282 <.debug_info+0xb282> b21b: 64 00 01 add %al,%fs:(%ecx) b21e: c3 ret b21f: fd std b220: 4e dec %esi b221: 00 00 add %al,(%eax) b223: 02 91 74 37 70 75 add 0x75703774(%ecx),%dl b229: 64 00 01 add %al,%fs:(%ecx) b22c: c4 les (bad),%ecx b22d: cb lret b22e: b2 00 mov $0x0,%dl b230: 00 02 add %al,(%edx) b232: 91 xchg %eax,%ecx b233: 70 37 jo b26c <.debug_info+0xb26c> b235: 70 6d jo b2a4 <.debug_info+0xb2a4> b237: 64 00 01 add %al,%fs:(%ecx) b23a: c5 lds (bad),%edx b23b: d1 (bad) b23c: b2 00 mov $0x0,%dl b23e: 00 02 add %al,(%edx) b240: 91 xchg %eax,%ecx b241: 6c insb (%dx),%es:(%edi) b242: 37 aaa b243: 70 74 jo b2b9 <.debug_info+0xb2b9> b245: 65 00 01 add %al,%gs:(%ecx) b248: c6 (bad) b249: d7 xlat %ds:(%ebx) b24a: b2 00 mov $0x0,%dl b24c: 00 02 add %al,(%edx) b24e: 91 xchg %eax,%ecx b24f: 68 37 70 67 00 push $0x677037 b254: 01 c7 add %eax,%edi b256: 98 cwtl b257: 00 00 add %al,(%eax) b259: 00 02 add %al,(%edx) b25b: 91 xchg %eax,%ecx b25c: 64 fs b25d: 3e 77 b2 ja,pt b212 <.debug_info+0xb212> b260: 00 00 add %al,(%eax) b262: dd b2 00 00 9c 01 fnsave 0x19c0000(%edx) b268: 00 00 add %al,(%eax) b26a: b1 01 mov $0x1,%cl b26c: 00 00 add %al,(%eax) b26e: 33 f3 xor %ebx,%esi b270: b2 00 mov $0x0,%dl b272: 00 02 add %al,(%edx) b274: 91 xchg %eax,%ecx b275: 5c pop %esp b276: 00 3e add %bh,(%esi) b278: 99 cltd b279: b2 00 mov $0x0,%dl b27b: 00 ff add %bh,%bh b27d: b2 00 mov $0x0,%dl b27f: 00 c0 add %al,%al b281: 01 00 add %eax,(%eax) b283: 00 d2 add %dl,%dl b285: 01 00 add %eax,(%eax) b287: 00 33 add %dh,(%ebx) b289: 17 pop %ss b28a: b3 00 mov $0x0,%bl b28c: 00 02 add %al,(%edx) b28e: 91 xchg %eax,%ecx b28f: 58 pop %eax b290: 33 22 xor (%edx),%esp b292: b3 00 mov $0x0,%bl b294: 00 02 add %al,(%edx) b296: 91 xchg %eax,%ecx b297: 54 push %esp b298: 00 3e add %bh,(%esi) b29a: b3 b2 mov $0xb2,%bl b29c: 00 00 add %al,(%eax) b29e: 2e cs b29f: b3 00 mov $0x0,%bl b2a1: 00 5d 02 add %bl,0x2(%ebp) b2a4: 00 00 add %al,(%eax) b2a6: 85 02 test %eax,(%edx) b2a8: 00 00 add %al,(%eax) b2aa: 33 44 b3 00 xor 0x0(%ebx,%esi,4),%eax b2ae: 00 02 add %al,(%edx) b2b0: 91 xchg %eax,%ecx b2b1: 5c pop %esp b2b2: 00 32 add %dh,(%edx) b2b4: 50 push %eax b2b5: b3 00 mov $0x0,%bl b2b7: 00 ac 02 00 00 bd 02 add %ch,0x2bd0000(%edx,%eax,1) b2be: 00 00 add %al,(%eax) b2c0: 33 6a b3 xor 0xffffffb3(%edx),%ebp b2c3: 00 00 add %al,(%eax) b2c5: 02 91 54 00 00 00 add 0x54(%ecx),%dl b2cb: 06 push %es b2cc: 04 e1 add $0xe1,%al b2ce: 98 cwtl b2cf: 00 00 add %al,(%eax) b2d1: 06 push %es b2d2: 04 e7 add $0xe7,%al b2d4: 04 00 add $0x0,%al b2d6: 00 06 add %al,(%esi) b2d8: 04 c3 add $0xc3,%al b2da: 04 00 add $0x0,%al b2dc: 00 3a add %bh,(%edx) b2de: ff b2 00 00 70 67 pushl 0x67700000(%edx) b2e4: 64 fs b2e5: 5f pop %edi b2e6: 6e outsb %ds:(%esi),(%dx) b2e7: 6f outsl %ds:(%esi),(%dx) b2e8: 6e outsb %ds:(%esi),(%dx) b2e9: 65 00 05 19 01 7a 00 add %al,%gs:0x7a0119 b2f0: 00 00 add %al,(%eax) b2f2: 03 3b add (%ebx),%edi b2f4: 70 67 jo b35d <.debug_info+0xb35d> b2f6: 64 00 05 19 0b 05 00 add %al,%fs:0x50b19 b2fd: 00 00 add %al,(%eax) b2ff: 3a 2e cmp (%esi),%ch b301: b3 00 mov $0x0,%bl b303: 00 70 75 add %dh,0x75(%eax) b306: 64 fs b307: 5f pop %edi b308: 6f outsl %ds:(%esi),(%dx) b309: 66 data16 b30a: 66 data16 b30b: 73 65 jae b372 <.debug_info+0xb372> b30d: 74 00 je b30f <.debug_info+0xb30f> b30f: 05 27 01 cb b2 add $0xb2cb0127,%eax b314: 00 00 add %al,(%eax) b316: 03 3b add (%ebx),%edi b318: 70 67 jo b381 <.debug_info+0xb381> b31a: 64 00 05 26 fd 4e 00 add %al,%fs:0x4efd26 b321: 00 35 63 01 00 00 add %dh,0x163 b327: 05 26 98 00 00 add $0x9826,%eax b32c: 00 00 add %al,(%eax) b32e: 3a 50 b3 cmp 0xffffffb3(%eax),%dl b331: 00 00 add %al,(%eax) b333: 70 74 jo b3a9 <.debug_info+0xb3a9> b335: 65 gs b336: 5f pop %edi b337: 6e outsb %ds:(%esi),(%dx) b338: 6f outsl %ds:(%esi),(%dx) b339: 6e outsb %ds:(%esi),(%dx) b33a: 65 00 06 add %al,%gs:(%esi) b33d: 80 01 7a addb $0x7a,(%ecx) b340: 00 00 add %al,(%eax) b342: 00 03 add %al,(%ebx) b344: 3b 70 74 cmp 0x74(%eax),%esi b347: 65 00 06 add %al,%gs:(%esi) b34a: 7f c3 jg b30f <.debug_info+0xb30f> b34c: 04 00 add $0x0,%al b34e: 00 00 add %al,(%eax) b350: 3a 76 b3 cmp 0xffffffb3(%esi),%dh b353: 00 00 add %al,(%eax) b355: 76 69 jbe b3c0 <.debug_info+0xb3c0> b357: 72 74 jb b3cd <.debug_info+0xb3cd> b359: 5f pop %edi b35a: 74 6f je b3cb <.debug_info+0xb3cb> b35c: 5f pop %edi b35d: 70 68 jo b3c7 <.debug_info+0xb3c7> b35f: 79 73 jns b3d4 <.debug_info+0xb3d4> b361: 00 07 add %al,(%edi) b363: 4c dec %esp b364: 01 98 00 00 00 03 add %ebx,0x3000000(%eax) b36a: 35 63 01 00 00 xor $0x163,%eax b36f: 07 pop %es b370: 4b dec %ebx b371: 76 b3 jbe b326 <.debug_info+0xb326> b373: 00 00 add %al,(%eax) b375: 00 06 add %al,(%esi) b377: 04 7c add $0x7c,%al b379: b3 00 mov $0x0,%bl b37b: 00 3f add %bh,(%edi) b37d: 40 inc %eax b37e: b2 b3 mov $0xb3,%dl b380: 00 00 add %al,(%eax) b382: 63 72 6d arpl %si,0x6d(%edx) b385: 6f outsl %ds:(%esi),(%dx) b386: 64 fs b387: 5f pop %edi b388: 77 6f ja b3f9 <.debug_info+0xb3f9> b38a: 72 6b jb b3f7 <.debug_info+0xb3f7> b38c: 5f pop %edi b38d: 74 68 je b3f7 <.debug_info+0xb3f7> b38f: 72 65 jb b3f6 <.debug_info+0xb3f6> b391: 61 popa b392: 64 00 01 add %al,%fs:(%ecx) b395: e6 01 out %al,$0x1 b397: 0c 03 or $0x3,%al b399: 00 00 add %al,(%eax) b39b: 30 03 xor %al,(%ebx) b39d: 00 00 add %al,(%eax) b39f: 01 55 3d add %edx,0x3d(%ebp) b3a2: 70 61 jo b405 <.debug_info+0xb405> b3a4: 72 61 jb b407 <.debug_info+0xb407> b3a6: 6d insl (%dx),%es:(%edi) b3a7: 00 01 add %al,(%ecx) b3a9: e6 b7 out %al,$0xb7 b3ab: 1d 00 00 02 91 sbb $0x91020000,%eax b3b0: 7c 00 jl b3b2 <.debug_info+0xb3b2> b3b2: 31 02 xor %eax,(%edx) b3b4: b4 00 mov $0x0,%ah b3b6: 00 01 add %al,(%ecx) b3b8: 63 72 5f arpl %si,0x5f(%edx) b3bb: 70 63 jo b420 <.debug_info+0xb420> b3bd: 69 5f 72 65 67 69 73 imul $0x73696765,0x72(%edi),%ebx b3c4: 74 65 je b42b <.debug_info+0xb42b> b3c6: 72 5f jb b427 <.debug_info+0xb427> b3c8: 64 fs b3c9: 72 69 jb b434 <.debug_info+0xb434> b3cb: 76 65 jbe b432 <.debug_info+0xb432> b3cd: 72 00 jb b3cf <.debug_info+0xb3cf> b3cf: 01 f7 add %esi,%edi b3d1: 01 7a 00 add %edi,0x0(%edx) b3d4: 00 00 add %al,(%eax) b3d6: 30 03 xor %al,(%ebx) b3d8: 00 00 add %al,(%eax) b3da: 95 xchg %eax,%ebp b3db: 03 00 add (%eax),%eax b3dd: 00 01 add %al,(%ecx) b3df: 55 push %ebp b3e0: 41 inc %ecx b3e1: 27 daa b3e2: 02 00 add (%eax),%al b3e4: 00 01 add %al,(%ecx) b3e6: f7 71 ad divl 0xffffffad(%ecx) b3e9: 00 00 add %al,(%eax) b3eb: 02 91 7c 3d 74 68 add 0x68743d7c(%ecx),%dl b3f1: 69 73 5f 6d 6f 64 00 imul $0x646f6d,0x5f(%ebx),%esi b3f8: 01 f7 add %esi,%edi b3fa: 3a 5a 00 cmp 0x0(%edx),%bl b3fd: 00 02 add %al,(%edx) b3ff: 91 xchg %eax,%ecx b400: 78 00 js b402 <.debug_info+0xb402> b402: 42 inc %edx b403: 70 b4 jo b3b9 <.debug_info+0xb3b9> b405: 00 00 add %al,(%eax) b407: 01 63 72 add %esp,0x72(%ebx) b40a: 5f pop %edi b40b: 69 72 71 5f 68 61 6e imul $0x6e61685f,0x71(%edx),%esi b412: 64 fs b413: 6c insb (%dx),%es:(%edi) b414: 65 gs b415: 72 00 jb b417 <.debug_info+0xb417> b417: 01 07 add %eax,(%edi) b419: 01 01 add %eax,(%ecx) b41b: ba 9a 00 00 95 mov $0x9500009a,%edx b420: 03 00 add (%eax),%eax b422: 00 ca add %cl,%dl b424: 03 00 add (%eax),%eax b426: 00 01 add %al,(%ecx) b428: 55 push %ebp b429: 43 inc %ebx b42a: 69 72 71 00 01 03 01 imul $0x1030100,0x71(%edx),%esi b431: 7a 00 jp b433 <.debug_info+0xb433> b433: 00 00 add %al,(%eax) b435: 02 91 74 43 64 65 add 0x65644374(%ecx),%dl b43b: 76 5f jbe b49c <.debug_info+0xb49c> b43d: 69 6e 73 74 61 6e 63 imul $0x636e6174,0x73(%esi),%ebp b444: 65 00 01 add %al,%gs:(%ecx) b447: 03 01 add (%ecx),%eax b449: b7 1d mov $0x1d,%bh b44b: 00 00 add %al,(%eax) b44d: 02 91 70 43 72 65 add 0x65724370(%ecx),%dl b453: 67 73 00 addr16 jae b456 <.debug_info+0xb456> b456: 01 03 add %eax,(%ebx) b458: 01 99 08 00 00 02 add %ebx,0x2000008(%ecx) b45e: 91 xchg %eax,%ecx b45f: 6c insb (%dx),%es:(%edi) b460: 44 inc %esp b461: 72 65 jb b4c8 <.debug_info+0xb4c8> b463: 74 00 je b465 <.debug_info+0xb465> b465: 01 08 add %ecx,(%eax) b467: 01 7a 00 add %edi,0x0(%edx) b46a: 00 00 add %al,(%eax) b46c: 02 91 68 00 42 fc add 0xfc420068(%ecx),%dl b472: b4 00 mov $0x0,%ah b474: 00 01 add %al,(%ecx) b476: 63 72 5f arpl %si,0x5f(%edx) b479: 72 65 jb b4e0 <.debug_info+0xb4e0> b47b: 71 75 jno b4f2 <.debug_info+0xb4f2> b47d: 65 gs b47e: 73 74 jae b4f4 <.debug_info+0xb4f4> b480: 5f pop %edi b481: 69 72 71 00 01 1f 01 imul $0x11f0100,0x71(%edx),%esi b488: 01 7a 00 add %edi,0x0(%edx) b48b: 00 00 add %al,(%eax) b48d: ca 03 00 lret $0x3 b490: 00 49 04 add %cl,0x4(%ecx) b493: 00 00 add %al,(%eax) b495: 01 55 43 add %edx,0x43(%ebp) b498: 69 72 71 00 01 17 01 imul $0x1170100,0x71(%edx),%esi b49f: 3b 01 cmp (%ecx),%eax b4a1: 00 00 add %al,(%eax) b4a3: 02 91 78 43 68 61 add 0x61684378(%ecx),%dl b4a9: 6e outsb %ds:(%esi),(%dx) b4aa: 64 fs b4ab: 6c insb (%dx),%es:(%edi) b4ac: 65 gs b4ad: 72 00 jb b4af <.debug_info+0xb4af> b4af: 01 18 add %ebx,(%eax) b4b1: 01 7c 9e 00 add %edi,0x0(%esi,%ebx,4) b4b5: 00 02 add %al,(%edx) b4b7: 91 xchg %eax,%ecx b4b8: 74 45 je b4ff <.debug_info+0xb4ff> b4ba: b3 03 mov $0x3,%bl b4bc: 00 00 add %al,(%eax) b4be: 01 19 add %ebx,(%ecx) b4c0: 01 98 00 00 00 02 add %ebx,0x2000000(%eax) b4c6: 91 xchg %eax,%ecx b4c7: 70 43 jo b50c <.debug_info+0xb50c> b4c9: 64 fs b4ca: 65 gs b4cb: 76 5f jbe b52c <.debug_info+0xb52c> b4cd: 6e outsb %ds:(%esi),(%dx) b4ce: 61 popa b4cf: 6d insl (%dx),%es:(%edi) b4d0: 65 00 01 add %al,%gs:(%ecx) b4d3: 19 01 sbb %eax,(%ecx) b4d5: 18 3d 00 00 02 91 sbb %bh,0x91020000 b4db: 08 45 23 or %al,0x23(%ebp) b4de: 03 00 add (%eax),%eax b4e0: 00 01 add %al,(%ecx) b4e2: 19 01 sbb %eax,(%ecx) b4e4: b7 1d mov $0x1d,%bh b4e6: 00 00 add %al,(%eax) b4e8: 02 91 0c 46 00 00 add 0x460c(%ecx),%dl b4ee: 00 00 add %al,(%eax) b4f0: 0c b5 or $0xb5,%al b4f2: 00 00 add %al,(%eax) b4f4: 01 05 03 fb 00 00 add %eax,0xfb03 b4fa: 00 00 add %al,(%eax) b4fc: 03 0c b5 00 00 1e 3d add 0x3d1e0000(,%esi,4),%ecx b503: 00 00 add %al,(%eax) b505: 04 91 add $0x91,%al b507: 00 00 add %al,(%eax) b509: 00 0e add %cl,(%esi) b50b: 00 28 add %ch,(%eax) b50d: fc cld b50e: b4 00 mov $0x0,%ah b510: 00 47 60 add %al,0x60(%edi) b513: b5 00 mov $0x0,%ch b515: 00 01 add %al,(%ecx) b517: 63 72 5f arpl %si,0x5f(%edx) b51a: 66 data16 b51b: 72 65 jb b582 <.debug_info+0xb582> b51d: 65 gs b51e: 5f pop %edi b51f: 69 72 71 00 01 32 01 imul $0x1320100,0x71(%edx),%esi b526: 01 49 04 add %ecx,0x4(%ecx) b529: 00 00 add %al,(%eax) b52b: 98 cwtl b52c: 04 00 add $0x0,%al b52e: 00 01 add %al,(%ecx) b530: 55 push %ebp b531: 43 inc %ebx b532: 69 72 71 00 01 32 01 imul $0x1320100,0x71(%edx),%esi b539: 3b 01 cmp (%ecx),%eax b53b: 00 00 add %al,(%eax) b53d: 02 91 7c 45 23 03 add 0x323457c(%ecx),%dl b543: 00 00 add %al,(%eax) b545: 01 32 add %esi,(%edx) b547: 01 b7 1d 00 00 02 add %esi,0x200001d(%edi) b54d: 91 xchg %eax,%ecx b54e: 78 46 js b596 <.debug_info+0xb596> b550: 00 00 add %al,(%eax) b552: 00 00 add %al,(%eax) b554: 70 b5 jo b50b <.debug_info+0xb50b> b556: 00 00 add %al,(%eax) b558: 01 05 03 49 01 00 add %eax,0x14903 b55e: 00 00 add %al,(%eax) b560: 03 70 b5 add 0xffffffb5(%eax),%esi b563: 00 00 add %al,(%eax) b565: 1e push %ds b566: 3d 00 00 04 91 cmp $0x91040000,%eax b56b: 00 00 add %al,(%eax) b56d: 00 0b add %cl,(%ebx) b56f: 00 28 add %ch,(%eax) b571: 60 pusha b572: b5 00 mov $0x0,%ch b574: 00 48 5f add %cl,0x5f(%eax) b577: 5f pop %edi b578: 73 75 jae b5ef <.debug_info+0xb5ef> b57a: 70 70 jo b5ec <.debug_info+0xb5ec> b57c: 6f outsl %ds:(%esi),(%dx) b57d: 72 74 jb b5f3 <.debug_info+0xb5f3> b57f: 65 gs b580: 64 fs b581: 5f pop %edi b582: 70 74 jo b5f8 <.debug_info+0xb5f8> b584: 65 gs b585: 5f pop %edi b586: 6d insl (%dx),%es:(%edi) b587: 61 popa b588: 73 6b jae b5f5 <.debug_info+0xb5f5> b58a: 00 06 add %al,(%esi) b58c: 8a c3 mov %bl,%al b58e: 02 00 add (%eax),%al b590: 00 01 add %al,(%ecx) b592: 01 03 add %eax,(%ebx) b594: 9e sahf b595: b5 00 mov $0x0,%ch b597: 00 7a 00 add %bh,0x0(%edx) b59a: 00 00 add %al,(%eax) b59c: 49 dec %ecx b59d: 00 48 63 add %cl,0x63(%eax) b5a0: 6f outsl %ds:(%esi),(%dx) b5a1: 6e outsb %ds:(%esi),(%dx) b5a2: 73 6f jae b613 <.debug_info+0xb613> b5a4: 6c insb (%dx),%es:(%edi) b5a5: 65 gs b5a6: 5f pop %edi b5a7: 70 72 jo b61b <.debug_info+0xb61b> b5a9: 69 6e 74 6b 00 37 2f imul $0x2f37006b,0x74(%esi),%ebp b5b0: 93 xchg %eax,%ebx b5b1: b5 00 mov $0x0,%ch b5b3: 00 01 add %al,(%ecx) b5b5: 01 48 5f add %ecx,0x5f(%eax) b5b8: 5f pop %edi b5b9: 70 65 jo b620 <.debug_info+0xb620> b5bb: 72 5f jb b61c <.debug_info+0xb61c> b5bd: 63 70 75 arpl %si,0x75(%eax) b5c0: 5f pop %edi b5c1: 6f outsl %ds:(%esi),(%dx) b5c2: 66 data16 b5c3: 66 data16 b5c4: 73 65 jae b62b <.debug_info+0xb62b> b5c6: 74 00 je b5c8 <.debug_info+0xb5c8> b5c8: 55 push %ebp b5c9: 08 81 00 00 00 01 or %al,0x1000000(%ecx) b5cf: 01 48 62 add %ecx,0x62(%eax) b5d2: 6f outsl %ds:(%esi),(%dx) b5d3: 6f outsl %ds:(%esi),(%dx) b5d4: 74 5f je b635 <.debug_info+0xb635> b5d6: 63 70 75 arpl %si,0x75(%eax) b5d9: 5f pop %edi b5da: 64 fs b5db: 61 popa b5dc: 74 61 je b63f <.debug_info+0xb63f> b5de: 00 17 add %dl,(%edi) b5e0: 62 b0 0a 00 00 01 bound %esi,0x100000a(%eax) b5e6: 01 48 6d add %ecx,0x6d(%eax) b5e9: 6d insl (%dx),%es:(%edi) b5ea: 75 5f jne b64b <.debug_info+0xb64b> b5ec: 63 72 34 arpl %si,0x34(%edx) b5ef: 5f pop %edi b5f0: 66 data16 b5f1: 65 gs b5f2: 61 popa b5f3: 74 75 je b66a <.debug_info+0xb66a> b5f5: 72 65 jb b65c <.debug_info+0xb65c> b5f7: 73 00 jae b5f9 <.debug_info+0xb5f9> b5f9: 17 pop %ss b5fa: f0 98 lock cwtl b5fc: 00 00 add %al,(%eax) b5fe: 00 01 add %al,(%ecx) b600: 01 37 add %esi,(%edi) b602: 63 75 72 arpl %si,0x72(%ebp) b605: 72 65 jb b66c <.debug_info+0xb66c> b607: 6e outsb %ds:(%esi),(%dx) b608: 74 5f je b669 <.debug_info+0xb669> b60a: 73 74 jae b680 <.debug_info+0xb680> b60c: 61 popa b60d: 63 6b 5f arpl %bp,0x5f(%ebx) b610: 70 6f jo b681 <.debug_info+0xb681> b612: 69 6e 74 65 72 00 13 imul $0x13007265,0x74(%esi),%ebp b619: 58 pop %eax b61a: 98 cwtl b61b: 00 00 add %al,(%eax) b61d: 00 01 add %al,(%ecx) b61f: 54 push %esp b620: 48 dec %eax b621: 78 74 js b697 <.debug_info+0xb697> b623: 69 6d 65 00 0f 5b 11 imul $0x115b0f00,0x65(%ebp),%ebp b62a: 20 00 and %al,(%eax) b62c: 00 01 add %al,(%ecx) b62e: 01 48 74 add %ecx,0x74(%eax) b631: 69 6d 65 5f 73 74 61 imul $0x6174735f,0x65(%ebp),%ebp b638: 74 75 je b6af <.debug_info+0xb6af> b63a: 73 00 jae b63c <.debug_info+0xb63c> b63c: 56 push %esi b63d: d0 7a 00 sarb 0x0(%edx) b640: 00 00 add %al,(%eax) b642: 01 01 add %eax,(%ecx) b644: 48 dec %eax b645: 74 69 je b6b0 <.debug_info+0xb6b0> b647: 6d insl (%dx),%es:(%edi) b648: 65 gs b649: 5f pop %edi b64a: 6d insl (%dx),%es:(%edi) b64b: 61 popa b64c: 78 65 js b6b3 <.debug_info+0xb6b3> b64e: 72 72 jb b6c2 <.debug_info+0xb6c2> b650: 6f outsl %ds:(%esi),(%dx) b651: 72 00 jb b653 <.debug_info+0xb653> b653: 56 push %esi b654: d5 02 aad $0x2 b656: 01 00 add %eax,(%eax) b658: 00 01 add %al,(%ecx) b65a: 01 48 74 add %ecx,0x74(%eax) b65d: 69 6d 65 5f 65 73 74 imul $0x7473655f,0x65(%ebp),%ebp b664: 65 gs b665: 72 72 jb b6d9 <.debug_info+0xb6d9> b667: 6f outsl %ds:(%esi),(%dx) b668: 72 00 jb b66a <.debug_info+0xb66a> b66a: 56 push %esi b66b: d6 (bad) b66c: 02 01 add (%ecx),%al b66e: 00 00 add %al,(%eax) b670: 01 01 add %eax,(%ecx) b672: 48 dec %eax b673: 74 69 je b6de <.debug_info+0xb6de> b675: 6d insl (%dx),%es:(%edi) b676: 65 gs b677: 5f pop %edi b678: 61 popa b679: 64 fs b67a: 6a 75 push $0x75 b67c: 73 74 jae b6f2 <.debug_info+0xb6f2> b67e: 00 56 db add %dl,0xffffffdb(%esi) b681: 02 01 add (%ecx),%al b683: 00 00 add %al,(%eax) b685: 01 01 add %eax,(%ecx) b687: 48 dec %eax b688: 61 popa b689: 63 70 69 arpl %si,0x69(%eax) b68c: 5f pop %edi b68d: 6e outsb %ds:(%esi),(%dx) b68e: 6f outsl %ds:(%esi),(%dx) b68f: 69 72 71 00 57 73 7a imul $0x7a735700,0x71(%edx),%esi b696: 00 00 add %al,(%eax) b698: 00 01 add %al,(%ecx) b69a: 01 48 61 add %ecx,0x61(%eax) b69d: 63 70 69 arpl %si,0x69(%eax) b6a0: 5f pop %edi b6a1: 64 69 73 61 62 6c 65 imul $0x64656c62,%fs:0x61(%ebx),%esi b6a8: 64 b6a9: 00 57 75 add %dl,0x75(%edi) b6ac: 7a 00 jp b6ae <.debug_info+0xb6ae> b6ae: 00 00 add %al,(%eax) b6b0: 01 01 add %eax,(%ecx) b6b2: 48 dec %eax b6b3: 61 popa b6b4: 63 70 69 arpl %si,0x69(%eax) b6b7: 5f pop %edi b6b8: 68 74 00 57 76 push $0x76570074 b6bd: 7a 00 jp b6bf <.debug_info+0xb6bf> b6bf: 00 00 add %al,(%eax) b6c1: 01 01 add %eax,(%ecx) b6c3: 48 dec %eax b6c4: 61 popa b6c5: 63 70 69 arpl %si,0x69(%eax) b6c8: 5f pop %edi b6c9: 70 63 jo b72e <.debug_info+0xb72e> b6cb: 69 5f 64 69 73 61 62 imul $0x62617369,0x64(%edi),%ebx b6d2: 6c insb (%dx),%es:(%edi) b6d3: 65 64 00 57 77 add %dl,%fs:%gs:0x77(%edi) b6d8: 7a 00 jp b6da <.debug_info+0xb6da> b6da: 00 00 add %al,(%eax) b6dc: 01 01 add %eax,(%ecx) b6de: 48 dec %eax b6df: 73 6b jae b74c <.debug_info+0xb74c> b6e1: 69 70 5f 69 6f 61 70 imul $0x70616f69,0x5f(%eax),%esi b6e8: 69 63 5f 73 65 74 75 imul $0x75746573,0x5f(%ebx),%esp b6ef: 70 00 jo b6f1 <.debug_info+0xb6f1> b6f1: 58 pop %eax b6f2: bd 7a 00 00 00 mov $0x7a,%ebp b6f7: 01 01 add %eax,(%ecx) b6f9: 03 09 add (%ecx),%ecx b6fb: b7 00 mov $0x0,%bh b6fd: 00 dc add %bl,%ah b6ff: 24 00 and $0x0,%al b701: 00 04 91 add %al,(%ecx,%edx,4) b704: 00 00 add %al,(%eax) b706: 00 3f add %bh,(%edi) b708: 00 48 6d add %cl,0x6d(%eax) b70b: 70 5f jo b76c <.debug_info+0xb76c> b70d: 69 6f 61 70 69 63 73 imul $0x73636970,0x61(%edi),%ebp b714: 00 58 97 add %bl,0xffffff97(%eax) b717: f9 stc b718: b6 00 mov $0x0,%dh b71a: 00 01 add %al,(%ecx) b71c: 01 48 73 add %ecx,0x73(%eax) b71f: 69 73 5f 61 70 69 63 imul $0x63697061,0x5f(%ebx),%esi b726: 5f pop %edi b727: 62 75 67 bound %esi,0x67(%ebp) b72a: 00 58 b4 add %bl,0xffffffb4(%eax) b72d: 7a 00 jp b72f <.debug_info+0xb72f> b72f: 00 00 add %al,(%eax) b731: 01 01 add %eax,(%ecx) b733: 48 dec %eax b734: 65 6e outsb %gs:(%esi),(%dx) b736: 61 popa b737: 62 6c 65 5f bound %ebp,0x5f(%ebp) b73b: 6c insb (%dx),%es:(%edi) b73c: 6f outsl %ds:(%esi),(%dx) b73d: 63 61 6c arpl %sp,0x6c(%ecx) b740: 5f pop %edi b741: 61 popa b742: 70 69 jo b7ad <.debug_info+0xb7ad> b744: 63 00 arpl %ax,(%eax) b746: 5a pop %edx b747: 13 7a 00 adc 0x0(%edx),%edi b74a: 00 00 add %al,(%eax) b74c: 01 01 add %eax,(%ecx) b74e: 48 dec %eax b74f: 63 70 75 arpl %si,0x75(%eax) b752: 5f pop %edi b753: 63 61 6c arpl %sp,0x6c(%ecx) b756: 6c insb (%dx),%es:(%edi) b757: 6f outsl %ds:(%esi),(%dx) b758: 75 74 jne b7ce <.debug_info+0xb7ce> b75a: 5f pop %edi b75b: 6d insl (%dx),%es:(%edi) b75c: 61 popa b75d: 70 00 jo b75f <.debug_info+0xb75f> b75f: 5b pop %ebx b760: 3d 72 0a 00 00 cmp $0xa72,%eax b765: 01 01 add %eax,(%ecx) b767: 48 dec %eax b768: 67 65 6e addr16 outsb %gs:(%si),(%dx) b76b: 61 popa b76c: 70 69 jo b7d7 <.debug_info+0xb7d7> b76e: 63 00 arpl %ax,(%eax) b770: 5c pop %esp b771: 70 78 jo b7eb <.debug_info+0xb7eb> b773: b7 00 mov $0x0,%bh b775: 00 01 add %al,(%ecx) b777: 01 06 add %eax,(%esi) b779: 04 fa add $0xfa,%al b77b: 28 00 sub %al,(%eax) b77d: 00 4a 63 add %cl,0x63(%edx) b780: 6f outsl %ds:(%esi),(%dx) b781: 6e outsb %ds:(%esi),(%dx) b782: 74 69 je b7ed <.debug_info+0xb7ed> b784: 67 5f addr16 pop %edi b786: 70 61 jo b7e9 <.debug_info+0xb7e9> b788: 67 addr16 b789: 65 gs b78a: 5f pop %edi b78b: 64 fs b78c: 61 popa b78d: 74 61 je b7f0 <.debug_info+0xb7f0> b78f: 00 1d b0 01 85 3a add %bl,0x3a8501b0 b795: 00 00 add %al,(%eax) b797: 01 01 add %eax,(%ecx) b799: 03 a4 b7 00 00 78 3d add 0x3d780000(%edi,%esi,4),%esp b7a0: 00 00 add %al,(%eax) b7a2: 49 dec %ecx b7a3: 00 48 6d add %cl,0x6d(%eax) b7a6: 61 popa b7a7: 6c insb (%dx),%es:(%edi) b7a8: 6c insb (%dx),%es:(%edi) b7a9: 6f outsl %ds:(%esi),(%dx) b7aa: 63 5f 73 arpl %bx,0x73(%edi) b7ad: 69 7a 65 73 00 5e 4e imul $0x4e5e0073,0x65(%edx),%edi b7b4: 99 cltd b7b5: b7 00 mov $0x0,%bh b7b7: 00 01 add %al,(%ecx) b7b9: 01 48 70 add %ecx,0x70(%eax) b7bc: 65 gs b7bd: 72 5f jb b81e <.debug_info+0xb81e> b7bf: 63 70 75 arpl %si,0x75(%eax) b7c2: 5f pop %edi b7c3: 5f pop %edi b7c4: 72 63 jb b829 <.debug_info+0xb829> b7c6: 75 5f jne b827 <.debug_info+0xb827> b7c8: 64 fs b7c9: 61 popa b7ca: 74 61 je b82d <.debug_info+0xb82d> b7cc: 00 1e add %bl,(%esi) b7ce: 72 17 jb b7e7 <.debug_info+0xb7e7> b7d0: 3e 00 00 add %al,%ds:(%eax) b7d3: 01 01 add %eax,(%ecx) b7d5: 48 dec %eax b7d6: 70 65 jo b83d <.debug_info+0xb83d> b7d8: 72 5f jb b839 <.debug_info+0xb839> b7da: 63 70 75 arpl %si,0x75(%eax) b7dd: 5f pop %edi b7de: 5f pop %edi b7df: 72 63 jb b844 <.debug_info+0xb844> b7e1: 75 5f jne b842 <.debug_info+0xb842> b7e3: 62 68 5f bound %ebp,0x5f(%eax) b7e6: 64 fs b7e7: 61 popa b7e8: 74 61 je b84b <.debug_info+0xb84b> b7ea: 00 1e add %bl,(%esi) b7ec: 73 17 jae b805 <.debug_info+0xb805> b7ee: 3e 00 00 add %al,%ds:(%eax) b7f1: 01 01 add %eax,(%ecx) b7f3: 26 es b7f4: 77 6f ja b865 <.debug_info+0xb865> b7f6: 72 6b jb b863 <.debug_info+0xb863> b7f8: 71 75 jno b86f <.debug_info+0xb86f> b7fa: 65 gs b7fb: 75 65 jne b862 <.debug_info+0xb862> b7fd: 5f pop %edi b7fe: 73 74 jae b874 <.debug_info+0xb874> b800: 72 75 jb b877 <.debug_info+0xb877> b802: 63 74 00 01 arpl %si,0x1(%eax,%eax,1) b806: 4a dec %edx b807: 69 6e 69 74 5f 6d 6d imul $0x6d6d5f74,0x69(%esi),%ebp b80e: 00 15 8b 04 0b 49 add %dl,0x490b048b b814: 00 00 add %al,(%eax) b816: 01 01 add %eax,(%ecx) b818: 48 dec %eax b819: 70 65 jo b880 <.debug_info+0xb880> b81b: 72 5f jb b87c <.debug_info+0xb87c> b81d: 63 70 75 arpl %si,0x75(%eax) b820: 5f pop %edi b821: 5f pop %edi b822: 63 70 75 arpl %si,0x75(%eax) b825: 5f pop %edi b826: 67 addr16 b827: 64 fs b828: 74 5f je b889 <.debug_info+0xb889> b82a: 64 fs b82b: 65 gs b82c: 73 63 jae b891 <.debug_info+0xb891> b82e: 72 00 jb b830 <.debug_info+0xb830> b830: 5f pop %edi b831: 1c f2 sbb $0xf2,%al b833: 5f pop %edi b834: 00 00 add %al,(%eax) b836: 01 01 add %eax,(%ecx) b838: 03 43 b8 add 0xffffffb8(%ebx),%eax b83b: 00 00 add %al,(%eax) b83d: 83 0a 00 orl $0x0,(%edx) b840: 00 49 00 add %cl,0x0(%ecx) b843: 48 dec %eax b844: 64 fs b845: 65 gs b846: 66 61 popaw b848: 75 6c jne b8b6 <.debug_info+0xb8b6> b84a: 74 5f je b8ab <.debug_info+0xb8ab> b84c: 6c insb (%dx),%es:(%edi) b84d: 64 fs b84e: 74 00 je b850 <.debug_info+0xb850> b850: 5f pop %edi b851: 35 38 b8 00 00 xor $0xb838,%eax b856: 01 01 add %eax,(%ecx) b858: 48 dec %eax b859: 5f pop %edi b85a: 5f pop %edi b85b: 74 68 je b8c5 <.debug_info+0xb8c5> b85d: 69 73 5f 6d 6f 64 75 imul $0x75646f6d,0x5f(%ebx),%esi b864: 6c insb (%dx),%es:(%edi) b865: 65 00 21 add %ah,%gs:(%ecx) b868: 56 push %esi b869: 25 56 00 00 01 and $0x1000056,%eax b86e: 01 48 64 add %ecx,0x64(%eax) b871: 63 61 63 arpl %sp,0x63(%ecx) b874: 68 65 5f 6c 6f push $0x6f6c5f65 b879: 63 6b 00 arpl %bp,0x0(%ebx) b87c: 09 b3 1e 1f 00 00 or %esi,0x1f1e(%ebx) b882: 01 01 add %eax,(%ecx) b884: 03 8f b8 00 00 06 add 0x60000b8(%edi),%ecx b88a: 3c 00 cmp $0x0,%al b88c: 00 49 00 add %cl,0x0(%ecx) b88f: 4a dec %edx b890: 7a 6f jp b901 <.debug_info+0xb901> b892: 6e outsb %ds:(%esi),(%dx) b893: 65 gs b894: 5f pop %edi b895: 74 61 je b8f8 <.debug_info+0xb8f8> b897: 62 6c 65 00 bound %ebp,0x0(%ebp) b89b: 19 d8 sbb %ebx,%eax b89d: 01 84 b8 00 00 01 01 add %eax,0x1010000(%eax,%edi,4) b8a4: 48 dec %eax b8a5: 70 65 jo b90c <.debug_info+0xb90c> b8a7: 72 5f jb b908 <.debug_info+0xb908> b8a9: 63 70 75 arpl %si,0x75(%eax) b8ac: 5f pop %edi b8ad: 5f pop %edi b8ae: 76 6d jbe b91d <.debug_info+0xb91d> b8b0: 5f pop %edi b8b1: 65 gs b8b2: 76 65 jbe b919 <.debug_info+0xb919> b8b4: 6e outsb %ds:(%esi),(%dx) b8b5: 74 5f je b916 <.debug_info+0xb916> b8b7: 73 74 jae b92d <.debug_info+0xb92d> b8b9: 61 popa b8ba: 74 65 je b921 <.debug_info+0xb921> b8bc: 73 00 jae b8be <.debug_info+0xb8be> b8be: 60 pusha b8bf: 28 82 9a 00 00 01 sub %al,0x100009a(%edx) b8c5: 01 48 76 add %ecx,0x76(%eax) b8c8: 6d insl (%dx),%es:(%edi) b8c9: 5f pop %edi b8ca: 73 74 jae b940 <.debug_info+0xb940> b8cc: 61 popa b8cd: 74 00 je b8cf <.debug_info+0xb8cf> b8cf: 60 pusha b8d0: 55 push %ebp b8d1: 6f outsl %ds:(%esi),(%dx) b8d2: 3a 00 cmp (%eax),%al b8d4: 00 01 add %al,(%ecx) b8d6: 01 4a 6d add %ecx,0x6d(%edx) b8d9: 65 gs b8da: 6d insl (%dx),%es:(%edi) b8db: 5f pop %edi b8dc: 6d insl (%dx),%es:(%edi) b8dd: 61 popa b8de: 70 00 jo b8e0 <.debug_info+0xb8e0> b8e0: 19 0e sbb %ecx,(%esi) b8e2: 02 94 3c 00 00 01 01 add 0x1010000(%esp,%edi,1),%dl b8e9: 48 dec %eax b8ea: 73 77 jae b963 <.debug_info+0xb963> b8ec: 61 popa b8ed: 70 70 jo b95f <.debug_info+0xb95f> b8ef: 65 gs b8f0: 72 5f jb b951 <.debug_info+0xb951> b8f2: 73 70 jae b964 <.debug_info+0xb964> b8f4: 61 popa b8f5: 63 65 00 arpl %sp,0x0(%ebp) b8f8: 46 inc %esi b8f9: db c0 fcmovnb %st(0),%st b8fb: 7c 00 jl b8fd <.debug_info+0xb8fd> b8fd: 00 01 add %al,(%ecx) b8ff: 01 48 61 add %ecx,0x61(%eax) b902: 6e outsb %ds:(%esi),(%dx) b903: 6f outsl %ds:(%esi),(%dx) b904: 6e outsb %ds:(%esi),(%dx) b905: 5f pop %edi b906: 76 6d jbe b975 <.debug_info+0xb975> b908: 61 popa b909: 5f pop %edi b90a: 63 61 63 arpl %sp,0x63(%ecx) b90d: 68 65 70 00 1c push $0x1c007065 b912: 21 ca and %ecx,%edx b914: 3d 00 00 01 01 cmp $0x1010000,%eax b919: 48 dec %eax b91a: 73 77 jae b993 <.debug_info+0xb993> b91c: 61 popa b91d: 70 5f jo b97e <.debug_info+0xb97e> b91f: 74 6f je b990 <.debug_info+0xb990> b921: 6b 65 6e 5f imul $0x5f,0x6e(%ebp),%esp b925: 6d insl (%dx),%es:(%edi) b926: 6d insl (%dx),%es:(%edi) b927: 00 46 fe add %al,0xfffffffe(%esi) b92a: 60 pusha b92b: 4d dec %ebp b92c: 00 00 add %al,(%eax) b92e: 01 01 add %eax,(%ecx) b930: 03 40 b9 add 0xffffffb9(%eax),%eax b933: 00 00 add %al,(%eax) b935: 61 popa b936: 9c pushf b937: 00 00 add %al,(%eax) b939: 04 91 add $0x91,%al b93b: 00 00 add %al,(%eax) b93d: 00 ee add %ch,%dh b93f: 00 4b ed add %cl,0xffffffed(%ebx) b942: 01 00 add %eax,(%eax) b944: 00 61 a9 add %ah,0xffffffa9(%ecx) b947: 30 b9 00 00 01 01 xor %bh,0x1010000(%ecx) b94d: 48 dec %eax b94e: 69 6f 70 6f 72 74 5f imul $0x5f74726f,0x70(%edi),%ebp b955: 72 65 jb b9bc <.debug_info+0xb9bc> b957: 73 6f jae b9c8 <.debug_info+0xb9c8> b959: 75 72 jne b9cd <.debug_info+0xb9cd> b95b: 63 65 00 arpl %sp,0x0(%ebp) b95e: 4e dec %esi b95f: 5e pop %esi b960: 27 daa b961: 9f lahf b962: 00 00 add %al,(%eax) b964: 01 01 add %eax,(%ecx) b966: 48 dec %eax b967: 69 6f 6d 65 6d 5f 72 imul $0x725f6d65,0x6d(%edi),%ebp b96e: 65 gs b96f: 73 6f jae b9e0 <.debug_info+0xb9e0> b971: 75 72 jne b9e5 <.debug_info+0xb9e5> b973: 63 65 00 arpl %sp,0x0(%ebp) b976: 4e dec %esi b977: 5f pop %edi b978: 27 daa b979: 9f lahf b97a: 00 00 add %al,(%eax) b97c: 01 01 add %eax,(%ecx) b97e: 03 8e b9 00 00 1e add 0x1e0000b9(%esi),%ecx b984: 3d 00 00 04 91 cmp $0x91040000,%eax b989: 00 00 add %al,(%eax) b98b: 00 0b add %cl,(%ebx) b98d: 00 37 add %dh,(%edi) b98f: 5f pop %edi b990: 5f pop %edi b991: 6d insl (%dx),%es:(%edi) b992: 6f outsl %ds:(%esi),(%dx) b993: 64 fs b994: 5f pop %edi b995: 6c insb (%dx),%es:(%edi) b996: 69 63 65 6e 73 65 36 imul $0x3665736e,0x65(%ebx),%esp b99d: 33 00 xor (%eax),%eax b99f: 01 3f add %edi,(%edi) b9a1: ab stos %eax,%es:(%edi) b9a2: b9 00 00 05 03 mov $0x3050000,%ecx b9a7: 00 00 add %al,(%eax) b9a9: 00 00 add %al,(%eax) b9ab: 28 7e b9 sub %bh,0xffffffb9(%esi) b9ae: 00 00 add %al,(%eax) b9b0: 37 aaa b9b1: 63 72 5f arpl %si,0x5f(%edx) b9b4: 73 65 jae ba1b <.debug_info+0xba1b> b9b6: 74 75 je ba2d <.debug_info+0xba2d> b9b8: 70 00 jo b9ba <.debug_info+0xb9ba> b9ba: 01 41 78 add %eax,0x78(%ecx) b9bd: 97 xchg %eax,%edi b9be: 00 00 add %al,(%eax) b9c0: 05 03 08 00 00 add $0x803,%eax b9c5: 00 4c 63 72 add %cl,0x72(%ebx) b9c9: 5f pop %edi b9ca: 66 6f outsw %ds:(%esi),(%dx) b9cc: 70 73 jo ba41 <.debug_info+0xba41> b9ce: 00 01 add %al,(%ecx) b9d0: 42 inc %edx b9d1: 26 83 00 00 addl $0x0,%es:(%eax) b9d5: 01 05 03 00 00 00 add %eax,0x3 b9db: 00 37 add %dh,(%edi) b9dd: 63 72 6d arpl %si,0x6d(%edx) b9e0: 6f outsl %ds:(%esi),(%dx) b9e1: 64 fs b9e2: 5f pop %edi b9e3: 77 6f ja ba54 <.debug_info+0xba54> b9e5: 72 6b jb ba52 <.debug_info+0xba52> b9e7: 71 75 jno ba5e <.debug_info+0xba5e> b9e9: 65 gs b9ea: 75 65 jne ba51 <.debug_info+0xba51> b9ec: 5f pop %edi b9ed: 73 74 jae ba63 <.debug_info+0xba63> b9ef: 72 75 jb ba66 <.debug_info+0xba66> b9f1: 63 74 00 01 arpl %si,0x1(%eax,%eax,1) b9f5: 50 push %eax b9f6: 00 ba 00 00 05 03 add %bh,0x3050000(%edx) b9fc: 24 00 and $0x0,%al b9fe: 00 00 add %al,(%eax) ba00: 06 push %es ba01: 04 f3 add $0xf3,%al ba03: b7 00 mov $0x0,%bh ba05: 00 37 add %dh,(%edi) ba07: 63 72 6d arpl %si,0x6d(%edx) ba0a: 6f outsl %ds:(%esi),(%dx) ba0b: 64 fs ba0c: 5f pop %edi ba0d: 77 6f ja ba7e <.debug_info+0xba7e> ba0f: 72 6b jb ba7c <.debug_info+0xba7c> ba11: 5f pop %edi ba12: 73 74 jae ba88 <.debug_info+0xba88> ba14: 72 75 jb ba8b <.debug_info+0xba8b> ba16: 63 74 00 01 arpl %si,0x1(%eax,%eax,1) ba1a: 51 push %ecx ba1b: f9 stc ba1c: 42 inc %edx ba1d: 00 00 add %al,(%eax) ba1f: 05 03 40 00 00 add $0x4003,%eax ba24: 00 37 add %dh,(%edi) ba26: 63 72 5f arpl %si,0x5f(%edx) ba29: 62 61 73 bound %esp,0x73(%ecx) ba2c: 65 gs ba2d: 5f pop %edi ba2e: 61 popa ba2f: 64 fs ba30: 64 fs ba31: 72 65 jb ba98 <.debug_info+0xba98> ba33: 73 73 jae baa8 <.debug_info+0xbaa8> ba35: 00 01 add %al,(%ecx) ba37: 5c pop %esp ba38: b7 1d mov $0x1d,%bh ba3a: 00 00 add %al,(%eax) ba3c: 05 03 00 00 00 add $0x3,%eax ba41: 00 37 add %dh,(%edi) ba43: 63 72 5f arpl %si,0x5f(%edx) ba46: 6d insl (%dx),%es:(%edi) ba47: 6f outsl %ds:(%esi),(%dx) ba48: 64 fs ba49: 75 6c jne bab7 <.debug_info+0xbab7> ba4b: 65 gs ba4c: 5f pop %edi ba4d: 73 69 jae bab8 <.debug_info+0xbab8> ba4f: 7a 65 jp bab6 <.debug_info+0xbab6> ba51: 00 01 add %al,(%ecx) ba53: 5d pop %ebp ba54: 98 cwtl ba55: 00 00 add %al,(%eax) ba57: 00 05 03 04 00 00 add %al,0x403 ba5d: 00 03 add %al,(%ebx) ba5f: 6e outsb %ds:(%esi),(%dx) ba60: ba 00 00 7c 9e mov $0x9e7c0000,%edx ba65: 00 00 add %al,(%eax) ba67: 04 91 add $0x91,%al ba69: 00 00 add %al,(%eax) ba6b: 00 ff add %bh,%bh ba6d: 00 37 add %dh,(%edi) ba6f: 63 72 5f arpl %si,0x5f(%edx) ba72: 69 72 71 5f 68 61 6e imul $0x6e61685f,0x71(%edx),%esi ba79: 64 fs ba7a: 6c insb (%dx),%es:(%edi) ba7b: 65 gs ba7c: 72 73 jb baf1 <.debug_info+0xbaf1> ba7e: 00 01 add %al,(%ecx) ba80: 61 popa ba81: 5e pop %esi ba82: ba 00 00 05 03 mov $0x3050000,%edx ba87: 80 00 00 addb $0x0,(%eax) ba8a: 00 4a 5f add %cl,0x5f(%edx) ba8d: 5f pop %edi ba8e: 63 72 63 arpl %si,0x63(%edx) ba91: 5f pop %edi ba92: 63 72 5f arpl %si,0x5f(%edx) ba95: 70 63 jo bafa <.debug_info+0xbafa> ba97: 69 5f 72 65 67 69 73 imul $0x73696765,0x72(%edi),%ebx ba9e: 74 65 je bb05 <.debug_info+0xbb05> baa0: 72 5f jb bb01 <.debug_info+0xbb01> baa2: 64 fs baa3: 72 69 jb bb0e <.debug_info+0xbb0e> baa5: 76 65 jbe bb0c <.debug_info+0xbb0c> baa7: 72 00 jb baa9 <.debug_info+0xbaa9> baa9: 01 3d 01 b7 1d 00 add %edi,0x1db701 baaf: 00 01 add %al,(%ecx) bab1: 01 44 5f 5f add %eax,0x5f(%edi,%ebx,2) bab5: 6b 63 72 63 imul $0x63,0x72(%ebx),%esp bab9: 74 61 je bb1c <.debug_info+0xbb1c> babb: 62 5f 63 bound %ebx,0x63(%edi) babe: 72 5f jb bb1f <.debug_info+0xbb1f> bac0: 70 63 jo bb25 <.debug_info+0xbb25> bac2: 69 5f 72 65 67 69 73 imul $0x73696765,0x72(%edi),%ebx bac9: 74 65 je bb30 <.debug_info+0xbb30> bacb: 72 5f jb bb2c <.debug_info+0xbb2c> bacd: 64 fs bace: 72 69 jb bb39 <.debug_info+0xbb39> bad0: 76 65 jbe bb37 <.debug_info+0xbb37> bad2: 72 00 jb bad4 <.debug_info+0xbad4> bad4: 01 3d 01 e6 63 00 add %edi,0x63e601 bada: 00 05 03 00 00 00 add %al,0x3 bae0: 00 03 add %al,(%ebx) bae2: f1 icebp bae3: ba 00 00 1e 3d mov $0x3d1e0000,%edx bae8: 00 00 add %al,(%eax) baea: 04 91 add $0x91,%al baec: 00 00 add %al,(%eax) baee: 00 16 add %dl,(%esi) baf0: 00 44 5f 5f add %al,0x5f(%edi,%ebx,2) baf4: 6b 73 74 72 imul $0x72,0x74(%ebx),%esi baf8: 74 61 je bb5b <.debug_info+0xbb5b> bafa: 62 5f 63 bound %ebx,0x63(%edi) bafd: 72 5f jb bb5e <.debug_info+0xbb5e> baff: 70 63 jo bb64 <.debug_info+0xbb64> bb01: 69 5f 72 65 67 69 73 imul $0x73696765,0x72(%edi),%ebx bb08: 74 65 je bb6f <.debug_info+0xbb6f> bb0a: 72 5f jb bb6b <.debug_info+0xbb6b> bb0c: 64 fs bb0d: 72 69 jb bb78 <.debug_info+0xbb78> bb0f: 76 65 jbe bb76 <.debug_info+0xbb76> bb11: 72 00 jb bb13 <.debug_info+0xbb13> bb13: 01 3d 01 20 bb 00 add %edi,0xbb2001 bb19: 00 05 03 00 00 00 add %al,0x3 bb1f: 00 28 add %ch,(%eax) bb21: e1 ba loope badd <.debug_info+0xbadd> bb23: 00 00 add %al,(%eax) bb25: 44 inc %esp bb26: 5f pop %edi bb27: 5f pop %edi bb28: 6b 73 79 6d imul $0x6d,0x79(%ebx),%esi bb2c: 74 61 je bb8f <.debug_info+0xbb8f> bb2e: 62 5f 63 bound %ebx,0x63(%edi) bb31: 72 5f jb bb92 <.debug_info+0xbb92> bb33: 70 63 jo bb98 <.debug_info+0xbb98> bb35: 69 5f 72 65 67 69 73 imul $0x73696765,0x72(%edi),%ebx bb3c: 74 65 je bba3 <.debug_info+0xbba3> bb3e: 72 5f jb bb9f <.debug_info+0xbb9f> bb40: 64 fs bb41: 72 69 jb bbac <.debug_info+0xbbac> bb43: 76 65 jbe bbaa <.debug_info+0xbbaa> bb45: 72 00 jb bb47 <.debug_info+0xbb47> bb47: 01 3d 01 db 63 00 add %edi,0x63db01 bb4d: 00 05 03 00 00 00 add %al,0x3 bb53: 00 4a 5f add %cl,0x5f(%edx) bb56: 5f pop %edi bb57: 63 72 63 arpl %si,0x63(%edx) bb5a: 5f pop %edi bb5b: 63 72 5f arpl %si,0x5f(%edx) bb5e: 72 65 jb bbc5 <.debug_info+0xbbc5> bb60: 71 75 jno bbd7 <.debug_info+0xbbd7> bb62: 65 gs bb63: 73 74 jae bbd9 <.debug_info+0xbbd9> bb65: 5f pop %edi bb66: 69 72 71 00 01 40 01 imul $0x1400100,0x71(%edx),%esi bb6d: b7 1d mov $0x1d,%bh bb6f: 00 00 add %al,(%eax) bb71: 01 01 add %eax,(%ecx) bb73: 44 inc %esp bb74: 5f pop %edi bb75: 5f pop %edi bb76: 6b 63 72 63 imul $0x63,0x72(%ebx),%esp bb7a: 74 61 je bbdd <.debug_info+0xbbdd> bb7c: 62 5f 63 bound %ebx,0x63(%edi) bb7f: 72 5f jb bbe0 <.debug_info+0xbbe0> bb81: 72 65 jb bbe8 <.debug_info+0xbbe8> bb83: 71 75 jno bbfa <.debug_info+0xbbfa> bb85: 65 gs bb86: 73 74 jae bbfc <.debug_info+0xbbfc> bb88: 5f pop %edi bb89: 69 72 71 00 01 40 01 imul $0x1400100,0x71(%edx),%esi bb90: e6 63 out %al,$0x63 bb92: 00 00 add %al,(%eax) bb94: 05 03 04 00 00 add $0x403,%eax bb99: 00 03 add %al,(%ebx) bb9b: aa stos %al,%es:(%edi) bb9c: bb 00 00 1e 3d mov $0x3d1e0000,%ebx bba1: 00 00 add %al,(%eax) bba3: 04 91 add $0x91,%al bba5: 00 00 add %al,(%eax) bba7: 00 0e add %cl,(%esi) bba9: 00 44 5f 5f add %al,0x5f(%edi,%ebx,2) bbad: 6b 73 74 72 imul $0x72,0x74(%ebx),%esi bbb1: 74 61 je bc14 <.debug_info+0xbc14> bbb3: 62 5f 63 bound %ebx,0x63(%edi) bbb6: 72 5f jb bc17 <.debug_info+0xbc17> bbb8: 72 65 jb bc1f <.debug_info+0xbc1f> bbba: 71 75 jno bc31 <.debug_info+0xbc31> bbbc: 65 gs bbbd: 73 74 jae bc33 <.debug_info+0xbc33> bbbf: 5f pop %edi bbc0: 69 72 71 00 01 40 01 imul $0x1400100,0x71(%edx),%esi bbc7: d1 bb 00 00 05 03 sarl 0x3050000(%ebx) bbcd: 17 pop %ss bbce: 00 00 add %al,(%eax) bbd0: 00 28 add %ch,(%eax) bbd2: 9a bb 00 00 44 5f 5f lcall $0x5f5f,$0x440000bb bbd9: 6b 73 79 6d imul $0x6d,0x79(%ebx),%esi bbdd: 74 61 je bc40 <.debug_info+0xbc40> bbdf: 62 5f 63 bound %ebx,0x63(%edi) bbe2: 72 5f jb bc43 <.debug_info+0xbc43> bbe4: 72 65 jb bc4b <.debug_info+0xbc4b> bbe6: 71 75 jno bc5d <.debug_info+0xbc5d> bbe8: 65 gs bbe9: 73 74 jae bc5f <.debug_info+0xbc5f> bbeb: 5f pop %edi bbec: 69 72 71 00 01 40 01 imul $0x1400100,0x71(%edx),%esi bbf3: db 63 00 (bad) 0x0(%ebx) bbf6: 00 05 03 08 00 00 add %al,0x803 bbfc: 00 4a 5f add %cl,0x5f(%edx) bbff: 5f pop %edi bc00: 63 72 63 arpl %si,0x63(%edx) bc03: 5f pop %edi bc04: 63 72 5f arpl %si,0x5f(%edx) bc07: 66 data16 bc08: 72 65 jb bc6f <.debug_info+0xbc6f> bc0a: 65 gs bc0b: 5f pop %edi bc0c: 69 72 71 00 01 41 01 imul $0x1410100,0x71(%edx),%esi bc13: b7 1d mov $0x1d,%bh bc15: 00 00 add %al,(%eax) bc17: 01 01 add %eax,(%ecx) bc19: 44 inc %esp bc1a: 5f pop %edi bc1b: 5f pop %edi bc1c: 6b 63 72 63 imul $0x63,0x72(%ebx),%esp bc20: 74 61 je bc83 <.debug_info+0xbc83> bc22: 62 5f 63 bound %ebx,0x63(%edi) bc25: 72 5f jb bc86 <.debug_info+0xbc86> bc27: 66 data16 bc28: 72 65 jb bc8f <.debug_info+0xbc8f> bc2a: 65 gs bc2b: 5f pop %edi bc2c: 69 72 71 00 01 41 01 imul $0x1410100,0x71(%edx),%esi bc33: e6 63 out %al,$0x63 bc35: 00 00 add %al,(%eax) bc37: 05 03 08 00 00 add $0x803,%eax bc3c: 00 03 add %al,(%ebx) bc3e: 4d dec %ebp bc3f: bc 00 00 1e 3d mov $0x3d1e0000,%esp bc44: 00 00 add %al,(%eax) bc46: 04 91 add $0x91,%al bc48: 00 00 add %al,(%eax) bc4a: 00 0b add %cl,(%ebx) bc4c: 00 44 5f 5f add %al,0x5f(%edi,%ebx,2) bc50: 6b 73 74 72 imul $0x72,0x74(%ebx),%esi bc54: 74 61 je bcb7 <.debug_info+0xbcb7> bc56: 62 5f 63 bound %ebx,0x63(%edi) bc59: 72 5f jb bcba <.debug_info+0xbcba> bc5b: 66 data16 bc5c: 72 65 jb bcc3 <.debug_info+0xbcc3> bc5e: 65 gs bc5f: 5f pop %edi bc60: 69 72 71 00 01 41 01 imul $0x1410100,0x71(%edx),%esi bc67: 71 bc jno bc25 <.debug_info+0xbc25> bc69: 00 00 add %al,(%eax) bc6b: 05 03 26 00 00 add $0x2603,%eax bc70: 00 28 add %ch,(%eax) bc72: 3d bc 00 00 44 cmp $0x440000bc,%eax bc77: 5f pop %edi bc78: 5f pop %edi bc79: 6b 73 79 6d imul $0x6d,0x79(%ebx),%esi bc7d: 74 61 je bce0 <.debug_info+0xbce0> bc7f: 62 5f 63 bound %ebx,0x63(%edi) bc82: 72 5f jb bce3 <.debug_info+0xbce3> bc84: 66 data16 bc85: 72 65 jb bcec <.debug_info+0xbcec> bc87: 65 gs bc88: 5f pop %edi bc89: 69 72 71 00 01 41 01 imul $0x1410100,0x71(%edx),%esi bc90: db 63 00 (bad) 0x0(%ebx) bc93: 00 05 03 10 00 00 add %al,0x1003 bc99: 00 00 add %al,(%eax) bc9b: 57 push %edi bc9c: 43 inc %ebx bc9d: 00 00 add %al,(%eax) bc9f: 02 00 add (%eax),%al bca1: f7 03 00 00 04 01 testl $0x1040000,(%ebx) bca7: 42 inc %edx bca8: 06 push %es bca9: 00 00 add %al,(%eax) bcab: 98 cwtl bcac: 04 00 add $0x0,%al bcae: 00 98 04 00 00 e4 add %bl,0xe4000004(%eax) bcb4: 12 00 adc (%eax),%al bcb6: 00 01 add %al,(%ecx) bcb8: 3d 10 00 00 4c cmp $0x4c000010,%eax bcbd: 06 push %es bcbe: 00 00 add %al,(%eax) bcc0: 02 69 6e add 0x6e(%ecx),%ch bcc3: 74 00 je bcc5 <.debug_info+0xbcc5> bcc5: 04 05 add $0x5,%al bcc7: 03 3c 00 add (%eax,%eax,1),%edi bcca: 00 00 add %al,(%eax) bccc: 43 inc %ebx bccd: 00 00 add %al,(%eax) bccf: 00 04 3c add %al,(%esp,%edi,1) bcd2: 00 00 add %al,(%eax) bcd4: 00 1f add %bl,(%edi) bcd6: 00 05 45 26 00 00 add %al,0x2645 bcdc: 04 07 add $0x7,%al bcde: 05 64 1a 00 00 add $0x1a64,%eax bce3: 04 07 add $0x7,%al bce5: 06 push %es bce6: 04 50 add $0x50,%al bce8: 00 00 add %al,(%eax) bcea: 00 07 add %al,(%edi) bcec: 5c pop %esp bced: 00 00 add %al,(%eax) bcef: 00 01 add %al,(%ecx) bcf1: 08 25 00 00 00 00 or %ah,0x0 bcf7: 09 65 17 or %esp,0x17(%ebp) bcfa: 00 00 add %al,(%eax) bcfc: 09 0b or %ecx,(%ebx) bcfe: 67 00 00 addr16 add %al,(%bx,%si) bd01: 00 05 50 15 00 00 add %al,0x1550 bd07: 02 07 add (%edi),%al bd09: 05 0f 09 00 00 add $0x90f,%eax bd0e: 04 05 add $0x5,%al bd10: 09 c1 or %eax,%ecx bd12: 0a 00 or (%eax),%al bd14: 00 09 add %cl,(%ecx) bd16: 0e push %cs bd17: 25 00 00 00 09 and $0x9000000,%eax bd1c: 40 inc %eax bd1d: 07 pop %es bd1e: 00 00 add %al,(%eax) bd20: 09 12 or %edx,(%edx) bd22: 8b 00 mov (%eax),%eax bd24: 00 00 add %al,(%eax) bd26: 05 45 26 00 00 add $0x2645,%eax bd2b: 04 07 add $0x7,%al bd2d: 09 83 06 00 00 09 or %eax,0x9000006(%ebx) bd33: 13 25 00 00 00 09 adc 0x9000000,%esp bd39: 9e sahf bd3a: 20 00 and %al,(%eax) bd3c: 00 09 add %cl,(%ecx) bd3e: 15 6e 00 00 00 adc $0x6e,%eax bd43: 09 bc 1c 00 00 09 17 or %edi,0x17090000(%esp,%ebx,1) bd4a: 6e outsb %ds:(%esi),(%dx) bd4b: 00 00 add %al,(%eax) bd4d: 00 09 add %cl,(%ecx) bd4f: 3b 06 cmp (%esi),%eax bd51: 00 00 add %al,(%eax) bd53: 09 18 or %ebx,(%eax) bd55: 25 00 00 00 09 and $0x9000000,%eax bd5a: c3 ret bd5b: 17 pop %ss bd5c: 00 00 add %al,(%eax) bd5e: 09 19 or %ebx,(%ecx) bd60: 25 00 00 00 06 and $0x6000000,%eax bd65: 04 cf add $0xcf,%al bd67: 00 00 add %al,(%eax) bd69: 00 05 3b 1b 00 00 add %al,0x1b3b bd6f: 01 06 add %eax,(%esi) bd71: 09 02 or %eax,(%edx) bd73: 0a 00 or (%eax),%al bd75: 00 09 add %cl,(%ecx) bd77: 1e push %ds bd78: 8b 00 mov (%eax),%eax bd7a: 00 00 add %al,(%eax) bd7c: 09 2b or %ebp,(%ebx) bd7e: 1e push %ds bd7f: 00 00 add %al,(%eax) bd81: 09 1f or %ebx,(%edi) bd83: 8b 00 mov (%eax),%eax bd85: 00 00 add %al,(%eax) bd87: 05 93 23 00 00 add $0x2393,%eax bd8c: 08 05 05 73 15 00 or %al,0x157305 bd92: 00 01 add %al,(%ecx) bd94: 06 push %es bd95: 09 9f 0a 00 00 04 or %ebx,0x400000a(%edi) bd9b: 0e push %cs bd9c: 05 01 00 00 05 add $0x5000001,%eax bda1: 9f lahf bda2: 0c 00 or $0x0,%al bda4: 00 01 add %al,(%ecx) bda6: 08 05 9d 26 00 00 or %al,0x269d bdac: 02 05 09 b9 16 00 add 0x16b909,%al bdb2: 00 04 11 add %al,(%ecx,%edx,1) bdb5: 67 00 00 addr16 add %al,(%bx,%si) bdb8: 00 09 add %cl,(%ecx) bdba: f6 17 notb (%edi) bdbc: 00 00 add %al,(%eax) bdbe: 04 14 add $0x14,%al bdc0: 8b 00 mov (%eax),%eax bdc2: 00 00 add %al,(%eax) bdc4: 05 46 21 00 00 add $0x2146,%eax bdc9: 08 07 or %al,(%edi) bdcb: 0a 73 38 or 0x38(%ebx),%dh bdce: 00 04 27 add %al,(%edi) bdd1: f3 00 00 repz add %al,(%eax) bdd4: 00 0a add %cl,(%edx) bdd6: 75 33 jne be0b <.debug_info+0xbe0b> bdd8: 32 00 xor (%eax),%al bdda: 04 2e add $0x2e,%al bddc: 8b 00 mov (%eax),%eax bdde: 00 00 add %al,(%eax) bde0: 0a 73 36 or 0x36(%ebx),%dh bde3: 34 00 xor $0x0,%al bde5: 04 30 add $0x30,%al bde7: ec in (%dx),%al bde8: 00 00 add %al,(%eax) bdea: 00 0a add %cl,(%edx) bdec: 75 36 jne be24 <.debug_info+0xbe24> bdee: 34 00 xor $0x0,%al bdf0: 04 31 add $0x31,%al bdf2: 29 01 sub %eax,(%ecx) bdf4: 00 00 add %al,(%eax) bdf6: 09 13 or %edx,(%ebx) bdf8: 21 00 and %eax,(%eax) bdfa: 00 08 add %cl,(%eax) bdfc: 18 5c 00 00 sbb %bl,0x0(%eax,%eax,1) be00: 00 09 add %cl,(%ecx) be02: ad lods %ds:(%esi),%eax be03: 26 00 00 add %al,%es:(%eax) be06: 08 1b or %bl,(%ebx) be08: 75 00 jne be0a <.debug_info+0xbe0a> be0a: 00 00 add %al,(%eax) be0c: 09 51 0b or %edx,0xb(%ecx) be0f: 00 00 add %al,(%eax) be11: 08 1f or %bl,(%edi) be13: b3 00 mov $0x0,%bl be15: 00 00 add %al,(%eax) be17: 09 cd or %ecx,%ebp be19: 1c 00 sbb $0x0,%al be1b: 00 08 add %cl,(%eax) be1d: 20 be 00 00 00 09 and %bh,0x9000000(%esi) be23: e1 0a loope be2f <.debug_info+0xbe2f> be25: 00 00 add %al,(%eax) be27: 08 24 d6 or %ah,(%esi,%edx,8) be2a: 00 00 add %al,(%eax) be2c: 00 09 add %cl,(%ecx) be2e: 30 04 00 xor %al,(%eax,%eax,1) be31: 00 08 add %cl,(%eax) be33: 25 e1 00 00 00 and $0xe1,%eax be38: 09 bd 0f 00 00 08 or %edi,0x800000f(%ebp) be3e: 41 inc %ecx be3f: 80 00 00 addb $0x0,(%eax) be42: 00 09 add %cl,(%ecx) be44: e8 1e 00 00 08 call 800be67 be49: 46 inc %esi be4a: 92 xchg %eax,%edx be4b: 00 00 add %al,(%eax) be4d: 00 09 add %cl,(%ecx) be4f: c2 05 00 ret $0x5 be52: 00 08 add %cl,(%eax) be54: 50 push %eax be55: 9d popf be56: 00 00 add %al,(%eax) be58: 00 09 add %cl,(%ecx) be5a: ff 14 00 call *(%eax,%eax,1) be5d: 00 08 add %cl,(%eax) be5f: 55 push %ebp be60: a8 00 test $0x0,%al be62: 00 00 add %al,(%eax) be64: 0b 1b or (%ebx),%ebx be66: 02 00 add (%eax),%al be68: 00 df add %bl,%bh be6a: 1d 00 00 14 1b sbb $0x1b140000,%eax be6f: 0d 0c 66 6e 00 or $0x6e660c,%eax be74: 1b 0e sbb (%esi),%ecx be76: 31 02 xor %eax,(%edx) be78: 00 00 add %al,(%eax) be7a: 02 23 add (%ebx),%ah be7c: 00 0d 6e 1e 00 00 add %cl,0x1e6e be82: 1b 0f sbb (%edi),%ecx be84: 43 inc %ebx be85: 00 00 add %al,(%eax) be87: 00 02 add %al,(%edx) be89: 23 04 0d 73 1e 00 00 and 0x1e73(,%ecx,1),%eax be90: 1b 0f sbb (%edi),%ecx be92: 43 inc %ebx be93: 00 00 add %al,(%eax) be95: 00 02 add %al,(%edx) be97: 23 08 and (%eax),%ecx be99: 0d 78 1e 00 00 or $0x1e78,%eax be9e: 1b 0f sbb (%edi),%ecx bea0: 43 inc %ebx bea1: 00 00 add %al,(%eax) bea3: 00 02 add %al,(%edx) bea5: 23 0c 0d 7d 1e 00 00 and 0x1e7d(,%ecx,1),%ecx beac: 1b 0f sbb (%edi),%ecx beae: 43 inc %ebx beaf: 00 00 add %al,(%eax) beb1: 00 02 add %al,(%edx) beb3: 23 10 and (%eax),%edx beb5: 00 0e add %cl,(%esi) beb7: 2b 02 sub (%edx),%eax beb9: 00 00 add %al,(%eax) bebb: 01 6e 00 add %ebp,0x0(%esi) bebe: 00 00 add %al,(%eax) bec0: 08 2b or %ch,(%ebx) bec2: 02 00 add (%eax),%al bec4: 00 00 add %al,(%eax) bec6: 06 push %es bec7: 04 c9 add $0xc9,%al bec9: 01 00 add %eax,(%eax) becb: 00 06 add %al,(%esi) becd: 04 1b add $0x1b,%al becf: 02 00 add (%eax),%al bed1: 00 0f add %cl,(%edi) bed3: 4e dec %esi bed4: 02 00 add (%eax),%al bed6: 00 08 add %cl,(%eax) bed8: 1d 31 0c 70 67 sbb $0x67700c31,%eax bedd: 64 00 1d 31 29 01 00 add %bl,%fs:0x12931 bee4: 00 02 add %al,(%edx) bee6: 23 00 and (%eax),%eax bee8: 00 09 add %cl,(%ecx) beea: a7 cmpsl %es:(%edi),%ds:(%esi) beeb: 26 00 00 add %al,%es:(%eax) beee: 1d 31 37 02 00 sbb $0x23731,%eax bef3: 00 0b add %cl,(%ebx) bef5: da 03 fiaddl (%ebx) bef7: 00 00 add %al,(%eax) bef9: e8 06 00 00 54 call 5400bf04 befe: 19 48 0c sbb %ecx,0xc(%eax) bf01: 65 62 78 00 bound %edi,%gs:0x0(%eax) bf05: 19 4c 6e 00 sbb %ecx,0x0(%esi,%ebp,2) bf09: 00 00 add %al,(%eax) bf0b: 02 23 add (%ebx),%ah bf0d: 00 0c 65 63 78 00 19 add %cl,0x19007863 bf14: 4d dec %ebp bf15: 6e outsb %ds:(%esi),(%dx) bf16: 00 00 add %al,(%eax) bf18: 00 02 add %al,(%edx) bf1a: 23 04 0c and (%esp,%ecx,1),%eax bf1d: 65 gs bf1e: 64 fs bf1f: 78 00 js bf21 <.debug_info+0xbf21> bf21: 19 4e 6e sbb %ecx,0x6e(%esi) bf24: 00 00 add %al,(%eax) bf26: 00 02 add %al,(%edx) bf28: 23 08 and (%eax),%ecx bf2a: 0c 65 or $0x65,%al bf2c: 73 69 jae bf97 <.debug_info+0xbf97> bf2e: 00 19 add %bl,(%ecx) bf30: 4f dec %edi bf31: 6e outsb %ds:(%esi),(%dx) bf32: 00 00 add %al,(%eax) bf34: 00 02 add %al,(%edx) bf36: 23 0c 0c and (%esp,%ecx,1),%ecx bf39: 65 64 69 00 19 50 6e imul $0x6e5019,%fs:%gs:(%eax),%eax bf40: 00 bf41: 00 00 add %al,(%eax) bf43: 02 23 add (%ebx),%ah bf45: 10 0c 65 62 70 00 19 adc %cl,0x19007062 bf4c: 51 push %ecx bf4d: 6e outsb %ds:(%esi),(%dx) bf4e: 00 00 add %al,(%eax) bf50: 00 02 add %al,(%edx) bf52: 23 14 0c and (%esp,%ecx,1),%edx bf55: 65 gs bf56: 61 popa bf57: 78 00 js bf59 <.debug_info+0xbf59> bf59: 19 52 6e sbb %edx,0x6e(%edx) bf5c: 00 00 add %al,(%eax) bf5e: 00 02 add %al,(%edx) bf60: 23 18 and (%eax),%ebx bf62: 0d b8 04 00 00 or $0x4b8,%eax bf67: 19 53 6e sbb %edx,0x6e(%ebx) bf6a: 00 00 add %al,(%eax) bf6c: 00 02 add %al,(%edx) bf6e: 23 1c 0d 64 19 00 00 and 0x1964(,%ecx,1),%ebx bf75: 19 54 6e 00 sbb %edx,0x0(%esi,%ebp,2) bf79: 00 00 add %al,(%eax) bf7b: 02 23 add (%ebx),%ah bf7d: 20 0d 11 06 00 00 and %cl,0x611 bf83: 19 55 6e sbb %edx,0x6e(%ebp) bf86: 00 00 add %al,(%eax) bf88: 00 02 add %al,(%edx) bf8a: 23 24 0d d4 06 00 00 and 0x6d4(,%ecx,1),%esp bf91: 19 56 6e sbb %edx,0x6e(%esi) bf94: 00 00 add %al,(%eax) bf96: 00 02 add %al,(%edx) bf98: 23 28 and (%eax),%ebp bf9a: 0d a0 1c 00 00 or $0x1ca0,%eax bf9f: 19 57 6e sbb %edx,0x6e(%edi) bfa2: 00 00 add %al,(%eax) bfa4: 00 02 add %al,(%edx) bfa6: 23 2c 0c and (%esp,%ecx,1),%ebp bfa9: 65 69 70 00 19 58 6e imul $0x6e5819,%gs:0x0(%eax),%esi bfb0: 00 bfb1: 00 00 add %al,(%eax) bfb3: 02 23 add (%ebx),%ah bfb5: 30 0c 63 xor %cl,(%ebx) bfb8: 73 00 jae bfba <.debug_info+0xbfba> bfba: 19 59 67 sbb %ebx,0x67(%ecx) bfbd: 00 00 add %al,(%eax) bfbf: 00 02 add %al,(%edx) bfc1: 23 34 0d 27 24 00 00 and 0x2427(,%ecx,1),%esi bfc8: 19 59 67 sbb %ebx,0x67(%ecx) bfcb: 00 00 add %al,(%eax) bfcd: 00 02 add %al,(%edx) bfcf: 23 36 and (%esi),%esi bfd1: 0d ef 21 00 00 or $0x21ef,%eax bfd6: 19 5a 6e sbb %ebx,0x6e(%edx) bfd9: 00 00 add %al,(%eax) bfdb: 00 02 add %al,(%edx) bfdd: 23 38 and (%eax),%edi bfdf: 0c 65 or $0x65,%al bfe1: 73 70 jae c053 <.debug_info+0xc053> bfe3: 00 19 add %bl,(%ecx) bfe5: 5b pop %ebx bfe6: 6e outsb %ds:(%esi),(%dx) bfe7: 00 00 add %al,(%eax) bfe9: 00 02 add %al,(%edx) bfeb: 23 3c 0c and (%esp,%ecx,1),%edi bfee: 73 73 jae c063 <.debug_info+0xc063> bff0: 00 19 add %bl,(%ecx) bff2: 5c pop %esp bff3: 67 00 00 addr16 add %al,(%bx,%si) bff6: 00 02 add %al,(%edx) bff8: 23 40 0d and 0xd(%eax),%eax bffb: 43 inc %ebx bffc: 13 00 adc (%eax),%eax bffe: 00 19 add %bl,(%ecx) c000: 5c pop %esp c001: 67 00 00 addr16 add %al,(%bx,%si) c004: 00 02 add %al,(%edx) c006: 23 42 0c and 0xc(%edx),%eax c009: 65 gs c00a: 73 00 jae c00c <.debug_info+0xc00c> c00c: 19 60 67 sbb %esp,0x67(%eax) c00f: 00 00 add %al,(%eax) c011: 00 02 add %al,(%edx) c013: 23 44 0d 9e and 0xffffff9e(%ebp,%ecx,1),%eax c017: 07 pop %es c018: 00 00 add %al,(%eax) c01a: 19 60 67 sbb %esp,0x67(%eax) c01d: 00 00 add %al,(%eax) c01f: 00 02 add %al,(%edx) c021: 23 46 0c and 0xc(%esi),%eax c024: 64 fs c025: 73 00 jae c027 <.debug_info+0xc027> c027: 19 61 67 sbb %esp,0x67(%ecx) c02a: 00 00 add %al,(%eax) c02c: 00 02 add %al,(%edx) c02e: 23 48 0d and 0xd(%eax),%ecx c031: 51 push %ecx c032: 05 00 00 19 61 add $0x61190000,%eax c037: 67 00 00 addr16 add %al,(%bx,%si) c03a: 00 02 add %al,(%edx) c03c: 23 4a 0c and 0xc(%edx),%ecx c03f: 66 data16 c040: 73 00 jae c042 <.debug_info+0xc042> c042: 19 62 67 sbb %esp,0x67(%edx) c045: 00 00 add %al,(%eax) c047: 00 02 add %al,(%edx) c049: 23 4c 0d 65 and 0x65(%ebp,%ecx,1),%ecx c04d: 0b 00 or (%eax),%eax c04f: 00 19 add %bl,(%ecx) c051: 62 67 00 bound %esp,0x0(%edi) c054: 00 00 add %al,(%eax) c056: 02 23 add (%ebx),%ah c058: 4e dec %esi c059: 0c 67 or $0x67,%al c05b: 73 00 jae c05d <.debug_info+0xc05d> c05d: 19 63 67 sbb %esp,0x67(%ebx) c060: 00 00 add %al,(%eax) c062: 00 02 add %al,(%edx) c064: 23 50 0d and 0xd(%eax),%edx c067: 8b 0e mov (%esi),%ecx c069: 00 00 add %al,(%eax) c06b: 19 63 67 sbb %esp,0x67(%ebx) c06e: 00 00 add %al,(%eax) c070: 00 02 add %al,(%edx) c072: 23 52 00 and 0x0(%edx),%edx c075: 0b f5 or %ebp,%esi c077: 03 00 add (%eax),%eax c079: 00 bf 07 00 00 20 add %bh,0x20000007(%edi) c07f: 19 66 0d sbb %esp,0xd(%esi) c082: 3d 13 00 00 19 cmp $0x19000013,%eax c087: 67 f5 addr16 cmc c089: 03 00 add (%eax),%eax c08b: 00 02 add %al,(%edx) c08d: 23 00 and (%eax),%eax c08f: 00 03 add %al,(%ebx) c091: 05 04 00 00 43 add $0x43000004,%eax c096: 00 00 add %al,(%eax) c098: 00 04 3c add %al,(%esp,%edi,1) c09b: 00 00 add %al,(%eax) c09d: 00 07 add %al,(%edi) c09f: 00 0b add %cl,(%ebx) c0a1: 67 04 00 addr16 add $0x0,%al c0a4: 00 24 07 add %ah,(%edi,%eax,1) c0a7: 00 00 add %al,(%eax) c0a9: a0 19 6a 0d 4a mov 0x4a0d6a19,%al c0ae: 09 00 or %eax,(%eax) c0b0: 00 19 add %bl,(%ecx) c0b2: 6b 59 02 00 imul $0x0,0x2(%ecx),%ebx c0b6: 00 02 add %al,(%edx) c0b8: 23 00 and (%eax),%eax c0ba: 0d 72 27 00 00 or $0x2772,%eax c0bf: 19 6c 43 00 sbb %ebp,0x0(%ebx,%eax,2) c0c3: 00 00 add %al,(%eax) c0c5: 02 23 add (%ebx),%ah c0c7: 54 push %esp c0c8: 0d 92 1c 00 00 or $0x1c92,%eax c0cd: 19 6d 43 sbb %ebp,0x43(%ebp) c0d0: 00 00 add %al,(%eax) c0d2: 00 02 add %al,(%edx) c0d4: 23 58 0d and 0xd(%eax),%ebx c0d7: 8a 15 00 00 19 6e mov 0x6e190000,%dl c0dd: 43 inc %ebx c0de: 00 00 add %al,(%eax) c0e0: 00 02 add %al,(%edx) c0e2: 23 5c 0d d6 and 0xffffffd6(%ebp,%ecx,1),%ebx c0e6: 17 pop %ss c0e7: 00 00 add %al,(%eax) c0e9: 19 6f da sbb %ebp,0xffffffda(%edi) c0ec: 03 00 add (%eax),%eax c0ee: 00 02 add %al,(%edx) c0f0: 23 60 0d and 0xd(%eax),%esp c0f3: e5 17 in $0x17,%eax c0f5: 00 00 add %al,(%eax) c0f7: 19 70 da sbb %esi,0xffffffda(%eax) c0fa: 03 00 add (%eax),%eax c0fc: 00 03 add %al,(%ebx) c0fe: 23 80 01 00 03 77 and 0x77030001(%eax),%eax c104: 04 00 add $0x0,%al c106: 00 43 00 add %al,0x0(%ebx) c109: 00 00 add %al,(%eax) c10b: 04 3c add $0x3c,%al c10d: 00 00 add %al,(%eax) c10f: 00 03 add %al,(%ebx) c111: 00 0b add %cl,(%ebx) c113: 9c pushf c114: 05 00 00 57 0c add $0xc570000,%eax c119: 00 00 add %al,(%eax) c11b: 50 push %eax c11c: 2c 0d sub $0xd,%al c11e: 0d a7 22 00 00 or $0x22a7,%eax c123: 2c 0e sub $0xe,%al c125: 6e outsb %ds:(%esi),(%dx) c126: 00 00 add %al,(%eax) c128: 00 02 add %al,(%edx) c12a: 23 00 and (%eax),%eax c12c: 0d 7c 08 00 00 or $0x87c,%eax c131: 2c 0f sub $0xf,%al c133: 6e outsb %ds:(%esi),(%dx) c134: 00 00 add %al,(%eax) c136: 00 02 add %al,(%edx) c138: 23 04 0d e8 09 00 00 and 0x9e8(,%ecx,1),%eax c13f: 2c 10 sub $0x10,%al c141: 6e outsb %ds:(%esi),(%dx) c142: 00 00 add %al,(%eax) c144: 00 02 add %al,(%edx) c146: 23 08 and (%eax),%ecx c148: 0d 6d 25 00 00 or $0x256d,%eax c14d: 2c 11 sub $0x11,%al c14f: 6e outsb %ds:(%esi),(%dx) c150: 00 00 add %al,(%eax) c152: 00 02 add %al,(%edx) c154: 23 0c 0d 82 0a 00 00 and 0xa82(,%ecx,1),%ecx c15b: 2c 12 sub $0x12,%al c15d: 6e outsb %ds:(%esi),(%dx) c15e: 00 00 add %al,(%eax) c160: 00 02 add %al,(%edx) c162: 23 10 and (%eax),%edx c164: 0d da 0a 00 00 or $0xada,%eax c169: 2c 13 sub $0x13,%al c16b: 6e outsb %ds:(%esi),(%dx) c16c: 00 00 add %al,(%eax) c16e: 00 02 add %al,(%edx) c170: 23 14 0d d4 23 00 00 and 0x23d4(,%ecx,1),%edx c177: 2c 14 sub $0x14,%al c179: 6e outsb %ds:(%esi),(%dx) c17a: 00 00 add %al,(%eax) c17c: 00 02 add %al,(%edx) c17e: 23 18 and (%eax),%ebx c180: 0d 4c 23 00 00 or $0x234c,%eax c185: 2c 15 sub $0x15,%al c187: 6e outsb %ds:(%esi),(%dx) c188: 00 00 add %al,(%eax) c18a: 00 02 add %al,(%edx) c18c: 23 1c 0d da 0d 00 00 and 0xdda(,%ecx,1),%ebx c193: 2c 16 sub $0x16,%al c195: 6e outsb %ds:(%esi),(%dx) c196: 00 00 add %al,(%eax) c198: 00 02 add %al,(%edx) c19a: 23 20 and (%eax),%esp c19c: 0d 2c 26 00 00 or $0x262c,%eax c1a1: 2c 17 sub $0x17,%al c1a3: 6e outsb %ds:(%esi),(%dx) c1a4: 00 00 add %al,(%eax) c1a6: 00 02 add %al,(%edx) c1a8: 23 24 0d 93 11 00 00 and 0x1193(,%ecx,1),%esp c1af: 2c 18 sub $0x18,%al c1b1: 6e outsb %ds:(%esi),(%dx) c1b2: 00 00 add %al,(%eax) c1b4: 00 02 add %al,(%edx) c1b6: 23 28 and (%eax),%ebp c1b8: 0d 4a 04 00 00 or $0x44a,%eax c1bd: 2c 19 sub $0x19,%al c1bf: 6e outsb %ds:(%esi),(%dx) c1c0: 00 00 add %al,(%eax) c1c2: 00 02 add %al,(%edx) c1c4: 23 2c 0d b3 16 00 00 and 0x16b3(,%ecx,1),%ebp c1cb: 2c 1a sub $0x1a,%al c1cd: 6e outsb %ds:(%esi),(%dx) c1ce: 00 00 add %al,(%eax) c1d0: 00 02 add %al,(%edx) c1d2: 23 30 and (%eax),%esi c1d4: 0d 8a 20 00 00 or $0x208a,%eax c1d9: 2c 1b sub $0x1b,%al c1db: 6e outsb %ds:(%esi),(%dx) c1dc: 00 00 add %al,(%eax) c1de: 00 02 add %al,(%edx) c1e0: 23 34 0d 89 0a 00 00 and 0xa89(,%ecx,1),%esi c1e7: 2c 1c sub $0x1c,%al c1e9: 6e outsb %ds:(%esi),(%dx) c1ea: 00 00 add %al,(%eax) c1ec: 00 02 add %al,(%edx) c1ee: 23 38 and (%eax),%edi c1f0: 0d 68 1e 00 00 or $0x1e68,%eax c1f5: 2c 1d sub $0x1d,%al c1f7: 6e outsb %ds:(%esi),(%dx) c1f8: 00 00 add %al,(%eax) c1fa: 00 02 add %al,(%edx) c1fc: 23 3c 0d 91 0e 00 00 and 0xe91(,%ecx,1),%edi c203: 2c 1e sub $0x1e,%al c205: 6e outsb %ds:(%esi),(%dx) c206: 00 00 add %al,(%eax) c208: 00 02 add %al,(%edx) c20a: 23 40 0d and 0xd(%eax),%eax c20d: ed in (%dx),%eax c20e: 0d 00 00 2c 1f or $0x1f2c0000,%eax c213: 6e outsb %ds:(%esi),(%dx) c214: 00 00 add %al,(%eax) c216: 00 02 add %al,(%edx) c218: 23 44 0d fd and 0xfffffffd(%ebp,%ecx,1),%eax c21c: 0e push %cs c21d: 00 00 add %al,(%eax) c21f: 2c 20 sub $0x20,%al c221: 6e outsb %ds:(%esi),(%dx) c222: 00 00 add %al,(%eax) c224: 00 02 add %al,(%edx) c226: 23 48 0d and 0xd(%eax),%ecx c229: 5d pop %ebp c22a: 0f 00 00 sldt (%eax) c22d: 2c 21 sub $0x21,%al c22f: 6e outsb %ds:(%esi),(%dx) c230: 00 00 add %al,(%eax) c232: 00 02 add %al,(%edx) c234: 23 4c 00 03 and 0x3(%eax,%eax,1),%ecx c238: ac lods %ds:(%esi),%al c239: 05 00 00 cf 00 add $0xcf0000,%eax c23e: 00 00 add %al,(%eax) c240: 04 3c add $0x3c,%al c242: 00 00 add %al,(%eax) c244: 00 07 add %al,(%edi) c246: 00 0f add %cl,(%edi) c248: c3 ret c249: 05 00 00 04 05 add $0x5040000,%eax c24e: 58 pop %eax c24f: 0d a0 1f 00 00 or $0x1fa0,%eax c254: 05 58 c3 05 00 add $0x5c358,%eax c259: 00 02 add %al,(%edx) c25b: 23 00 and (%eax),%eax c25d: 00 03 add %al,(%ebx) c25f: d3 05 00 00 43 00 roll %cl,0x430000 c265: 00 00 add %al,(%eax) c267: 04 3c add $0x3c,%al c269: 00 00 add %al,(%eax) c26b: 00 00 add %al,(%eax) c26d: 00 09 add %cl,(%ecx) c26f: 18 05 00 00 05 58 sbb %al,0x58050000 c275: ac lods %ds:(%esi),%al c276: 05 00 00 0b 03 add $0x30b0000,%eax c27b: 06 push %es c27c: 00 00 add %al,(%eax) c27e: a1 21 00 00 08 mov 0x8000021,%eax c283: 03 1b add (%ebx),%ebx c285: 0c 61 or $0x61,%al c287: 00 03 add %al,(%ebx) c289: 1c 43 sbb $0x43,%al c28b: 00 00 add %al,(%eax) c28d: 00 02 add %al,(%edx) c28f: 23 00 and (%eax),%eax c291: 0c 62 or $0x62,%al c293: 00 03 add %al,(%ebx) c295: 1c 43 sbb $0x43,%al c297: 00 00 add %al,(%eax) c299: 00 02 add %al,(%edx) c29b: 23 04 00 and (%eax,%eax,1),%eax c29e: 10 89 07 00 00 8a adc %cl,0x8a000007(%ecx) c2a4: 13 00 adc (%eax),%eax c2a6: 00 00 add %al,(%eax) c2a8: 01 03 add %eax,(%ebx) c2aa: 30 0c 78 xor %cl,(%eax,%edi,2) c2ad: 38 36 cmp %dh,(%esi) c2af: 00 03 add %al,(%ebx) c2b1: 31 fa xor %edi,%edx c2b3: 00 00 add %al,(%eax) c2b5: 00 02 add %al,(%edx) c2b7: 23 00 and (%eax),%eax c2b9: 0d 4c 0c 00 00 or $0xc4c,%eax c2be: 03 32 add (%edx),%esi c2c0: fa cli c2c1: 00 00 add %al,(%eax) c2c3: 00 02 add %al,(%edx) c2c5: 23 01 and (%ecx),%eax c2c7: 0d dc 0e 00 00 or $0xedc,%eax c2cc: 03 33 add (%ebx),%esi c2ce: fa cli c2cf: 00 00 add %al,(%eax) c2d1: 00 02 add %al,(%edx) c2d3: 23 02 and (%edx),%eax c2d5: 0d 9d 09 00 00 or $0x99d,%eax c2da: 03 34 fa add (%edx,%edi,8),%esi c2dd: 00 00 add %al,(%eax) c2df: 00 02 add %al,(%edx) c2e1: 23 03 and (%ebx),%eax c2e3: 0d 60 0e 00 00 or $0xe60,%eax c2e8: 03 35 cf 00 00 00 add 0xcf,%esi c2ee: 02 23 add (%ebx),%ah c2f0: 04 0d add $0xd,%al c2f2: ad lods %ds:(%esi),%eax c2f3: 0e push %cs c2f4: 00 00 add %al,(%eax) c2f6: 03 36 add (%esi),%esi c2f8: cf iret c2f9: 00 00 add %al,(%eax) c2fb: 00 02 add %al,(%edx) c2fd: 23 05 0d f6 22 00 and 0x22f60d,%eax c303: 00 03 add %al,(%ebx) c305: 37 aaa c306: cf iret c307: 00 00 add %al,(%eax) c309: 00 02 add %al,(%edx) c30b: 23 06 and (%esi),%eax c30d: 0c 72 or $0x72,%al c30f: 66 data16 c310: 75 00 jne c312 <.debug_info+0xc312> c312: 03 38 add (%eax),%edi c314: cf iret c315: 00 00 add %al,(%eax) c317: 00 02 add %al,(%edx) c319: 23 07 and (%edi),%eax c31b: 0d c4 19 00 00 or $0x19c4,%eax c320: 03 39 add (%ecx),%edi c322: 25 00 00 00 02 and $0x2000000,%eax c327: 23 08 and (%eax),%ecx c329: 0d 3b 0f 00 00 or $0xf3b,%eax c32e: 03 3a add (%edx),%edi c330: 89 07 mov %eax,(%edi) c332: 00 00 add %al,(%eax) c334: 02 23 add (%ebx),%ah c336: 0c 0d or $0xd,%al c338: 04 11 add $0x11,%al c33a: 00 00 add %al,(%eax) c33c: 03 3b add (%ebx),%edi c33e: 99 cltd c33f: 07 pop %es c340: 00 00 add %al,(%eax) c342: 02 23 add (%ebx),%ah c344: 28 0d a1 1b 00 00 sub %cl,0x1ba1 c34a: 03 3c a9 add (%ecx,%ebp,4),%edi c34d: 07 pop %es c34e: 00 00 add %al,(%eax) c350: 02 23 add (%ebx),%ah c352: 38 0d 12 11 00 00 cmp %cl,0x1112 c358: 03 3d 25 00 00 00 add 0x25,%edi c35e: 02 23 add (%ebx),%ah c360: 78 0d js c36f <.debug_info+0xc36f> c362: 91 xchg %eax,%ecx c363: 08 00 or %al,(%eax) c365: 00 03 add %al,(%ebx) c367: 3f aas c368: 25 00 00 00 02 and $0x2000000,%eax c36d: 23 7c 0d 72 and 0x72(%ebp,%ecx,1),%edi c371: 11 00 adc %eax,(%eax) c373: 00 03 add %al,(%ebx) c375: 40 inc %eax c376: cf iret c377: 00 00 add %al,(%eax) c379: 00 03 add %al,(%ebx) c37b: 23 80 01 0d 32 26 and 0x26320d01(%eax),%eax c381: 00 00 add %al,(%eax) c383: 03 41 cf add 0xffffffcf(%ecx),%eax c386: 00 00 add %al,(%eax) c388: 00 03 add %al,(%ebx) c38a: 23 81 01 0d fb 13 and 0x13fb0d01(%ecx),%eax c390: 00 00 add %al,(%eax) c392: 03 42 cf add 0xffffffcf(%edx),%eax c395: 00 00 add %al,(%eax) c397: 00 03 add %al,(%ebx) c399: 23 82 01 0d 9e 16 and 0x169e0d01(%edx),%eax c39f: 00 00 add %al,(%eax) c3a1: 03 43 cf add 0xffffffcf(%ebx),%eax c3a4: 00 00 add %al,(%eax) c3a6: 00 03 add %al,(%ebx) c3a8: 23 83 01 0d ae 19 and 0x19ae0d01(%ebx),%eax c3ae: 00 00 add %al,(%eax) c3b0: 03 44 25 00 add 0x0(%ebp),%eax c3b4: 00 00 add %al,(%eax) c3b6: 03 23 add (%ebx),%esp c3b8: 84 01 test %al,(%ecx) c3ba: 0d 45 22 00 00 or $0x2245,%eax c3bf: 03 45 43 add 0x43(%ebp),%eax c3c2: 00 00 add %al,(%eax) c3c4: 00 03 add %al,(%ebx) c3c6: 23 88 01 0d ff 0f and 0xfff0d01(%eax),%ecx c3cc: 00 00 add %al,(%eax) c3ce: 03 47 d3 add 0xffffffd3(%edi),%eax c3d1: 05 00 00 03 23 add $0x23030000,%eax c3d6: 8c 01 movw %es,(%ecx) c3d8: 0d 76 18 00 00 or $0x1876,%eax c3dd: 03 49 05 add 0x5(%ecx),%ecx c3e0: 01 00 add %eax,(%eax) c3e2: 00 03 add %al,(%ebx) c3e4: 23 90 01 0d 86 25 and 0x25860d01(%eax),%edx c3ea: 00 00 add %al,(%eax) c3ec: 03 4a 05 add 0x5(%edx),%ecx c3ef: 01 00 add %eax,(%eax) c3f1: 00 03 add %al,(%ebx) c3f3: 23 91 01 0d e0 0d and 0xde00d01(%ecx),%edx c3f9: 00 00 add %al,(%eax) c3fb: 03 4c 05 01 add 0x1(%ebp,%eax,1),%ecx c3ff: 00 00 add %al,(%eax) c401: 03 23 add (%ebx),%esp c403: 92 xchg %eax,%edx c404: 01 0d 75 0a 00 00 add %ecx,0xa75 c40a: 03 4d fa add 0xfffffffa(%ebp),%ecx c40d: 00 00 add %al,(%eax) c40f: 00 03 add %al,(%ebx) c411: 23 93 01 0d 86 12 and 0x12860d01(%ebx),%edx c417: 00 00 add %al,(%eax) c419: 03 4e fa add 0xfffffffa(%esi),%ecx c41c: 00 00 add %al,(%eax) c41e: 00 03 add %al,(%ebx) c420: 23 94 01 00 03 99 07 and 0x7990300(%ecx,%eax,1),%edx c427: 00 00 add %al,(%eax) c429: 43 inc %ebx c42a: 00 00 add %al,(%eax) c42c: 00 04 3c add %al,(%esp,%edi,1) c42f: 00 00 add %al,(%eax) c431: 00 06 add %al,(%esi) c433: 00 03 add %al,(%ebx) c435: a9 07 00 00 cf test $0xcf000007,%eax c43a: 00 00 add %al,(%eax) c43c: 00 04 3c add %al,(%esp,%edi,1) c43f: 00 00 add %al,(%eax) c441: 00 0f add %cl,(%edi) c443: 00 03 add %al,(%ebx) c445: b9 07 00 00 cf mov $0xcf000007,%ecx c44a: 00 00 add %al,(%eax) c44c: 00 04 3c add %al,(%esp,%edi,1) c44f: 00 00 add %al,(%eax) c451: 00 3f add %bh,(%edi) c453: 00 11 add %dl,(%ecx) c455: 4e dec %esi c456: 08 00 or %al,(%eax) c458: 00 dd add %bl,%ch c45a: 21 00 and %eax,(%eax) c45c: 00 70 03 add %dh,0x3(%eax) c45f: 5b pop %ebx c460: 01 12 add %edx,(%edx) c462: 63 77 64 arpl %si,0x64(%edi) c465: 00 03 add %al,(%ebx) c467: 5c pop %esp c468: 01 6e 00 add %ebp,0x0(%esi) c46b: 00 00 add %al,(%eax) c46d: 02 23 add (%ebx),%ah c46f: 00 12 add %dl,(%edx) c471: 73 77 jae c4ea <.debug_info+0xc4ea> c473: 64 00 03 add %al,%fs:(%ebx) c476: 5d pop %ebp c477: 01 6e 00 add %ebp,0x0(%esi) c47a: 00 00 add %al,(%eax) c47c: 02 23 add (%ebx),%ah c47e: 04 12 add $0x12,%al c480: 74 77 je c4f9 <.debug_info+0xc4f9> c482: 64 00 03 add %al,%fs:(%ebx) c485: 5e pop %esi c486: 01 6e 00 add %ebp,0x0(%esi) c489: 00 00 add %al,(%eax) c48b: 02 23 add (%ebx),%ah c48d: 08 12 or %dl,(%edx) c48f: 66 69 70 00 03 5f imul $0x5f03,0x0(%eax),%si c495: 01 6e 00 add %ebp,0x0(%esi) c498: 00 00 add %al,(%eax) c49a: 02 23 add (%ebx),%ah c49c: 0c 12 or $0x12,%al c49e: 66 data16 c49f: 63 73 00 arpl %si,0x0(%ebx) c4a2: 03 60 01 add 0x1(%eax),%esp c4a5: 6e outsb %ds:(%esi),(%dx) c4a6: 00 00 add %al,(%eax) c4a8: 00 02 add %al,(%edx) c4aa: 23 10 and (%eax),%edx c4ac: 12 66 6f adc 0x6f(%esi),%ah c4af: 6f outsl %ds:(%esi),(%dx) c4b0: 00 03 add %al,(%ebx) c4b2: 61 popa c4b3: 01 6e 00 add %ebp,0x0(%esi) c4b6: 00 00 add %al,(%eax) c4b8: 02 23 add (%ebx),%ah c4ba: 14 12 adc $0x12,%al c4bc: 66 6f outsw %ds:(%esi),(%dx) c4be: 73 00 jae c4c0 <.debug_info+0xc4c0> c4c0: 03 62 01 add 0x1(%edx),%esp c4c3: 6e outsb %ds:(%esi),(%dx) c4c4: 00 00 add %al,(%eax) c4c6: 00 02 add %al,(%edx) c4c8: 23 18 and (%eax),%ebx c4ca: 13 da adc %edx,%ebx c4cc: 0c 00 or $0x0,%al c4ce: 00 03 add %al,(%ebx) c4d0: 63 01 arpl %ax,(%ecx) c4d2: 4e dec %esi c4d3: 08 00 or %al,(%eax) c4d5: 00 02 add %al,(%edx) c4d7: 23 1c 13 and (%ebx,%edx,1),%ebx c4da: 14 16 adc $0x16,%al c4dc: 00 00 add %al,(%eax) c4de: 03 64 01 6e add 0x6e(%ecx,%eax,1),%esp c4e2: 00 00 add %al,(%eax) c4e4: 00 02 add %al,(%edx) c4e6: 23 6c 00 03 and 0x3(%eax,%eax,1),%ebp c4ea: 5e pop %esi c4eb: 08 00 or %al,(%eax) c4ed: 00 6e 00 add %ch,0x0(%esi) c4f0: 00 00 add %al,(%eax) c4f2: 04 3c add $0x3c,%al c4f4: 00 00 add %al,(%eax) c4f6: 00 13 add %dl,(%ebx) c4f8: 00 14 32 add %dl,(%edx,%esi,1) c4fb: 09 00 or %eax,(%eax) c4fd: 00 2c 05 00 00 00 02 add %ch,0x2000000(,%eax,1) c504: 03 67 01 add 0x1(%edi),%esp c507: 12 63 77 adc 0x77(%ebx),%ah c50a: 64 00 03 add %al,%fs:(%ebx) c50d: 68 01 67 00 00 push $0x6701 c512: 00 02 add %al,(%edx) c514: 23 00 and (%eax),%eax c516: 12 73 77 adc 0x77(%ebx),%dh c519: 64 00 03 add %al,%fs:(%ebx) c51c: 69 01 67 00 00 00 imul $0x67,(%ecx),%eax c522: 02 23 add (%ebx),%ah c524: 02 12 add (%edx),%dl c526: 74 77 je c59f <.debug_info+0xc59f> c528: 64 00 03 add %al,%fs:(%ebx) c52b: 6a 01 push $0x1 c52d: 67 00 00 addr16 add %al,(%bx,%si) c530: 00 02 add %al,(%edx) c532: 23 04 12 and (%edx,%edx,1),%eax c535: 66 6f outsw %ds:(%esi),(%dx) c537: 70 00 jo c539 <.debug_info+0xc539> c539: 03 6b 01 add 0x1(%ebx),%ebp c53c: 67 00 00 addr16 add %al,(%bx,%si) c53f: 00 02 add %al,(%edx) c541: 23 06 and (%esi),%eax c543: 12 66 69 adc 0x69(%esi),%ah c546: 70 00 jo c548 <.debug_info+0xc548> c548: 03 6c 01 6e add 0x6e(%ecx,%eax,1),%ebp c54c: 00 00 add %al,(%eax) c54e: 00 02 add %al,(%edx) c550: 23 08 and (%eax),%ecx c552: 12 66 63 adc 0x63(%esi),%ah c555: 73 00 jae c557 <.debug_info+0xc557> c557: 03 6d 01 add 0x1(%ebp),%ebp c55a: 6e outsb %ds:(%esi),(%dx) c55b: 00 00 add %al,(%eax) c55d: 00 02 add %al,(%edx) c55f: 23 0c 12 and (%edx,%edx,1),%ecx c562: 66 6f outsw %ds:(%esi),(%dx) c564: 6f outsl %ds:(%esi),(%dx) c565: 00 03 add %al,(%ebx) c567: 6e outsb %ds:(%esi),(%dx) c568: 01 6e 00 add %ebp,0x0(%esi) c56b: 00 00 add %al,(%eax) c56d: 02 23 add (%ebx),%ah c56f: 10 12 adc %dl,(%edx) c571: 66 6f outsw %ds:(%esi),(%dx) c573: 73 00 jae c575 <.debug_info+0xc575> c575: 03 6f 01 add 0x1(%edi),%ebp c578: 6e outsb %ds:(%esi),(%dx) c579: 00 00 add %al,(%eax) c57b: 00 02 add %al,(%edx) c57d: 23 14 13 and (%ebx,%edx,1),%edx c580: 17 pop %ss c581: 10 00 adc %al,(%eax) c583: 00 03 add %al,(%ebx) c585: 70 01 jo c588 <.debug_info+0xc588> c587: 6e outsb %ds:(%esi),(%dx) c588: 00 00 add %al,(%eax) c58a: 00 02 add %al,(%edx) c58c: 23 18 and (%eax),%ebx c58e: 13 84 22 00 00 03 71 adc 0x71030000(%edx),%eax c595: 01 6e 00 add %ebp,0x0(%esi) c598: 00 00 add %al,(%eax) c59a: 02 23 add (%ebx),%ah c59c: 1c 13 sbb $0x13,%al c59e: da 0c 00 fimull (%eax,%eax,1) c5a1: 00 03 add %al,(%ebx) c5a3: 72 01 jb c5a6 <.debug_info+0xc5a6> c5a5: 32 09 xor (%ecx),%cl c5a7: 00 00 add %al,(%eax) c5a9: 02 23 add (%ebx),%ah c5ab: 20 13 and %dl,(%ebx) c5ad: 98 cwtl c5ae: 19 00 sbb %eax,(%eax) c5b0: 00 03 add %al,(%ebx) c5b2: 73 01 jae c5b5 <.debug_info+0xc5b5> c5b4: 32 09 xor (%ecx),%cl c5b6: 00 00 add %al,(%eax) c5b8: 03 23 add (%ebx),%esp c5ba: a0 01 13 5c 26 mov 0x265c1301,%al c5bf: 00 00 add %al,(%eax) c5c1: 03 74 01 42 add 0x42(%ecx,%eax,1),%esi c5c5: 09 00 or %eax,(%eax) c5c7: 00 03 add %al,(%ebx) c5c9: 23 a0 02 00 03 42 and 0x42030002(%eax),%esp c5cf: 09 00 or %eax,(%eax) c5d1: 00 6e 00 add %ch,0x0(%esi) c5d4: 00 00 add %al,(%eax) c5d6: 04 3c add $0x3c,%al c5d8: 00 00 add %al,(%eax) c5da: 00 1f add %bl,(%edi) c5dc: 00 03 add %al,(%ebx) c5de: 52 push %edx c5df: 09 00 or %eax,(%eax) c5e1: 00 6e 00 add %ch,0x0(%esi) c5e4: 00 00 add %al,(%eax) c5e6: 04 3c add $0x3c,%al c5e8: 00 00 add %al,(%eax) c5ea: 00 37 add %dh,(%edi) c5ec: 00 11 add %dl,(%ecx) c5ee: 4f dec %edi c5ef: 0a 00 or (%eax),%al c5f1: 00 38 add %bh,(%eax) c5f3: 27 daa c5f4: 00 00 add %al,(%eax) c5f6: 7c 03 jl c5fb <.debug_info+0xc5fb> c5f8: 77 01 ja c5fb <.debug_info+0xc5fb> c5fa: 12 63 77 adc 0x77(%ebx),%ah c5fd: 64 00 03 add %al,%fs:(%ebx) c600: 78 01 js c603 <.debug_info+0xc603> c602: 6e outsb %ds:(%esi),(%dx) c603: 00 00 add %al,(%eax) c605: 00 02 add %al,(%edx) c607: 23 00 and (%eax),%eax c609: 12 73 77 adc 0x77(%ebx),%dh c60c: 64 00 03 add %al,%fs:(%ebx) c60f: 79 01 jns c612 <.debug_info+0xc612> c611: 6e outsb %ds:(%esi),(%dx) c612: 00 00 add %al,(%eax) c614: 00 02 add %al,(%edx) c616: 23 04 12 and (%edx,%edx,1),%eax c619: 74 77 je c692 <.debug_info+0xc692> c61b: 64 00 03 add %al,%fs:(%ebx) c61e: 7a 01 jp c621 <.debug_info+0xc621> c620: 6e outsb %ds:(%esi),(%dx) c621: 00 00 add %al,(%eax) c623: 00 02 add %al,(%edx) c625: 23 08 and (%eax),%ecx c627: 12 66 69 adc 0x69(%esi),%ah c62a: 70 00 jo c62c <.debug_info+0xc62c> c62c: 03 7b 01 add 0x1(%ebx),%edi c62f: 6e outsb %ds:(%esi),(%dx) c630: 00 00 add %al,(%eax) c632: 00 02 add %al,(%edx) c634: 23 0c 12 and (%edx,%edx,1),%ecx c637: 66 data16 c638: 63 73 00 arpl %si,0x0(%ebx) c63b: 03 7c 01 6e add 0x6e(%ecx,%eax,1),%edi c63f: 00 00 add %al,(%eax) c641: 00 02 add %al,(%edx) c643: 23 10 and (%eax),%edx c645: 12 66 6f adc 0x6f(%esi),%ah c648: 6f outsl %ds:(%esi),(%dx) c649: 00 03 add %al,(%ebx) c64b: 7d 01 jge c64e <.debug_info+0xc64e> c64d: 6e outsb %ds:(%esi),(%dx) c64e: 00 00 add %al,(%eax) c650: 00 02 add %al,(%edx) c652: 23 14 12 and (%edx,%edx,1),%edx c655: 66 6f outsw %ds:(%esi),(%dx) c657: 73 00 jae c659 <.debug_info+0xc659> c659: 03 7e 01 add 0x1(%esi),%edi c65c: 6e outsb %ds:(%esi),(%dx) c65d: 00 00 add %al,(%eax) c65f: 00 02 add %al,(%edx) c661: 23 18 and (%eax),%ebx c663: 13 da adc %edx,%ebx c665: 0c 00 or $0x0,%al c667: 00 03 add %al,(%ebx) c669: 7f 01 jg c66c <.debug_info+0xc66c> c66b: 4e dec %esi c66c: 08 00 or %al,(%eax) c66e: 00 02 add %al,(%edx) c670: 23 1c 13 and (%ebx,%edx,1),%ebx c673: 98 cwtl c674: 14 00 adc $0x0,%al c676: 00 03 add %al,(%ebx) c678: 80 01 05 addb $0x5,(%ecx) c67b: 01 00 add %eax,(%eax) c67d: 00 02 add %al,(%edx) c67f: 23 6c 13 e0 and 0xffffffe0(%ebx,%edx,1),%ebp c683: 1e push %ds c684: 00 00 add %al,(%eax) c686: 03 80 01 05 01 00 add 0x10501(%eax),%eax c68c: 00 02 add %al,(%edx) c68e: 23 6d 13 and 0x13(%ebp),%ebp c691: 8e 14 00 movw (%eax,%eax,1),%ss c694: 00 03 add %al,(%ebx) c696: 80 01 05 addb $0x5,(%ecx) c699: 01 00 add %eax,(%eax) c69b: 00 02 add %al,(%edx) c69d: 23 6e 13 and 0x13(%esi),%ebp c6a0: 3a 15 00 00 03 80 cmp 0x80030000,%dl c6a6: 01 05 01 00 00 02 add %eax,0x2000001 c6ac: 23 6f 12 and 0x12(%edi),%ebp c6af: 72 6d jb c71e <.debug_info+0xc71e> c6b1: 00 03 add %al,(%ebx) c6b3: 80 01 05 addb $0x5,(%ecx) c6b6: 01 00 add %eax,(%eax) c6b8: 00 02 add %al,(%edx) c6ba: 23 70 13 and 0x13(%eax),%esi c6bd: a9 1a 00 00 03 test $0x300001a,%eax c6c2: 80 01 05 addb $0x5,(%ecx) c6c5: 01 00 add %eax,(%eax) c6c7: 00 02 add %al,(%edx) c6c9: 23 71 13 and 0x13(%ecx),%esi c6cc: 57 push %edi c6cd: 0c 00 or $0x0,%al c6cf: 00 03 add %al,(%ebx) c6d1: 81 01 4f 0a 00 00 addl $0xa4f,(%ecx) c6d7: 02 23 add (%ebx),%ah c6d9: 74 13 je c6ee <.debug_info+0xc6ee> c6db: 57 push %edi c6dc: 05 00 00 03 82 add $0x82030000,%eax c6e1: 01 43 00 add %eax,0x0(%ebx) c6e4: 00 00 add %al,(%eax) c6e6: 02 23 add (%ebx),%ah c6e8: 78 00 js c6ea <.debug_info+0xc6ea> c6ea: 06 push %es c6eb: 04 77 add $0x77,%al c6ed: 04 00 add $0x0,%al c6ef: 00 15 88 0a 00 00 add %dl,0xa88 c6f5: 8f 10 popl (%eax) c6f7: 00 00 add %al,(%eax) c6f9: 00 02 add %al,(%edx) c6fb: 03 85 01 16 60 18 add 0x18601601(%ebp),%eax c701: 00 00 add %al,(%eax) c703: 03 86 01 b9 07 00 add 0x7b901(%esi),%eax c709: 00 16 add %dl,(%esi) c70b: 36 ss c70c: 0c 00 or $0x0,%al c70e: 00 03 add %al,(%ebx) c710: 87 01 xchg %eax,(%ecx) c712: 5e pop %esi c713: 08 00 or %al,(%eax) c715: 00 16 add %dl,(%esi) c717: fb sti c718: 0c 00 or $0x0,%al c71a: 00 03 add %al,(%ebx) c71c: 88 01 mov %al,(%ecx) c71e: 52 push %edx c71f: 09 00 or %eax,(%eax) c721: 00 00 add %al,(%eax) c723: 17 pop %ss c724: a1 0a 00 00 04 mov 0x400000a,%eax c729: 03 8d 01 12 73 65 add 0x65731201(%ebp),%ecx c72f: 67 00 03 addr16 add %al,(%bp,%di) c732: 8c 01 movw %es,(%ecx) c734: 43 inc %ebx c735: 00 00 add %al,(%eax) c737: 00 02 add %al,(%edx) c739: 23 00 and (%eax),%eax c73b: 00 18 add %bl,(%eax) c73d: 9d popf c73e: 14 00 adc $0x0,%al c740: 00 03 add %al,(%ebx) c742: 8d 01 lea (%ecx),%eax c744: 88 0a mov %cl,(%edx) c746: 00 00 add %al,(%eax) c748: 14 0e adc $0xe,%al c74a: 0c 00 or $0x0,%al c74c: 00 78 24 add %bh,0x24(%eax) c74f: 00 00 add %al,(%eax) c751: 90 nop c752: 02 03 add (%ebx),%al c754: 8f 01 popl (%ecx) c756: 13 d1 adc %ecx,%edx c758: 10 00 adc %al,(%eax) c75a: 00 03 add %al,(%ebx) c75c: c3 ret c75d: 01 0e add %ecx,(%esi) c75f: 0c 00 or $0x0,%al c761: 00 02 add %al,(%edx) c763: 23 00 and (%eax),%eax c765: 13 00 adc (%eax),%eax c767: 25 00 00 03 c4 and $0xc4030000,%eax c76c: 01 43 00 add %eax,0x0(%ebx) c76f: 00 00 add %al,(%eax) c771: 02 23 add (%ebx),%ah c773: 18 13 sbb %dl,(%ebx) c775: f1 icebp c776: 1b 00 sbb (%eax),%eax c778: 00 03 add %al,(%ebx) c77a: c5 01 lds (%ecx),%eax c77c: 43 inc %ebx c77d: 00 00 add %al,(%eax) c77f: 00 02 add %al,(%edx) c781: 23 1c 12 and (%edx,%edx,1),%ebx c784: 65 69 70 00 03 c6 01 imul $0x4301c603,%gs:0x0(%eax),%esi c78b: 43 c78c: 00 00 add %al,(%eax) c78e: 00 02 add %al,(%edx) c790: 23 20 and (%eax),%esp c792: 12 65 73 adc 0x73(%ebp),%ah c795: 70 00 jo c797 <.debug_info+0xc797> c797: 03 c7 add %edi,%eax c799: 01 43 00 add %eax,0x0(%ebx) c79c: 00 00 add %al,(%eax) c79e: 02 23 add (%ebx),%ah c7a0: 24 12 and $0x12,%al c7a2: 66 data16 c7a3: 73 00 jae c7a5 <.debug_info+0xc7a5> c7a5: 03 c8 add %eax,%ecx c7a7: 01 43 00 add %eax,0x0(%ebx) c7aa: 00 00 add %al,(%eax) c7ac: 02 23 add (%ebx),%ah c7ae: 28 12 sub %dl,(%edx) c7b0: 67 73 00 addr16 jae c7b3 <.debug_info+0xc7b3> c7b3: 03 c9 add %ecx,%ecx c7b5: 01 43 00 add %eax,0x0(%ebx) c7b8: 00 00 add %al,(%eax) c7ba: 02 23 add (%ebx),%ah c7bc: 2c 13 sub $0x13,%al c7be: 6e outsb %ds:(%esi),(%dx) c7bf: 19 00 sbb %eax,(%eax) c7c1: 00 03 add %al,(%ebx) c7c3: cb lret c7c4: 01 f5 add %esi,%ebp c7c6: 03 00 add (%eax),%eax c7c8: 00 02 add %al,(%edx) c7ca: 23 30 and (%eax),%esi c7cc: 12 63 72 adc 0x72(%ebx),%ah c7cf: 32 00 xor (%eax),%al c7d1: 03 cd add %ebp,%ecx c7d3: 01 43 00 add %eax,0x0(%ebx) c7d6: 00 00 add %al,(%eax) c7d8: 02 23 add (%ebx),%ah c7da: 50 push %eax c7db: 13 55 0f adc 0xf(%ebp),%edx c7de: 00 00 add %al,(%eax) c7e0: 03 cd add %ebp,%ecx c7e2: 01 43 00 add %eax,0x0(%ebx) c7e5: 00 00 add %al,(%eax) c7e7: 02 23 add (%ebx),%ah c7e9: 54 push %esp c7ea: 13 8d 05 00 00 03 adc 0x3000005(%ebp),%ecx c7f0: cd 01 int $0x1 c7f2: 43 inc %ebx c7f3: 00 00 add %al,(%eax) c7f5: 00 02 add %al,(%edx) c7f7: 23 58 13 and 0x13(%eax),%ebx c7fa: 5a pop %edx c7fb: 1e push %ds c7fc: 00 00 add %al,(%eax) c7fe: 03 cf add %edi,%ecx c800: 01 55 0a add %edx,0xa(%ebp) c803: 00 00 add %al,(%eax) c805: 02 23 add (%ebx),%ah c807: 60 pusha c808: 13 4b 18 adc 0x18(%ebx),%ecx c80b: 00 00 add %al,(%eax) c80d: 03 d1 add %ecx,%edx c80f: 01 1e add %ebx,(%esi) c811: 0c 00 or $0x0,%al c813: 00 03 add %al,(%ebx) c815: 23 e0 and %eax,%esp c817: 04 13 add $0x13,%al c819: 92 xchg %eax,%edx c81a: 1c 00 sbb $0x0,%al c81c: 00 03 add %al,(%ebx) c81e: d2 01 rolb %cl,(%ecx) c820: 43 inc %ebx c821: 00 00 add %al,(%eax) c823: 00 03 add %al,(%ebx) c825: 23 e4 and %esp,%esp c827: 04 13 add $0x13,%al c829: c2 15 00 ret $0x15 c82c: 00 03 add %al,(%ebx) c82e: d3 01 roll %cl,(%ecx) c830: 43 inc %ebx c831: 00 00 add %al,(%eax) c833: 00 03 add %al,(%ebx) c835: 23 e8 and %eax,%ebp c837: 04 13 add $0x13,%al c839: f8 clc c83a: 1f pop %ds c83b: 00 00 add %al,(%eax) c83d: 03 d3 add %ebx,%edx c83f: 01 43 00 add %eax,0x0(%ebx) c842: 00 00 add %al,(%eax) c844: 03 23 add (%ebx),%esp c846: ec in (%dx),%al c847: 04 13 add $0x13,%al c849: 55 push %ebp c84a: 18 00 sbb %al,(%eax) c84c: 00 03 add %al,(%ebx) c84e: d3 01 roll %cl,(%ecx) c850: 43 inc %ebx c851: 00 00 add %al,(%eax) c853: 00 03 add %al,(%ebx) c855: 23 f0 and %eax,%esi c857: 04 13 add $0x13,%al c859: ee out %al,(%dx) c85a: 03 00 add (%eax),%eax c85c: 00 03 add %al,(%ebx) c85e: d4 01 aam $0x1 c860: 8b 00 mov (%eax),%eax c862: 00 00 add %al,(%eax) c864: 03 23 add (%ebx),%esp c866: f4 hlt c867: 04 13 add $0x13,%al c869: 30 19 xor %bl,(%ecx) c86b: 00 00 add %al,(%eax) c86d: 03 d4 add %esp,%edx c86f: 01 8b 00 00 00 03 add %ecx,0x3000000(%ebx) c875: 23 f8 and %eax,%edi c877: 04 13 add $0x13,%al c879: 22 19 and (%ecx),%bl c87b: 00 00 add %al,(%eax) c87d: 03 d6 add %esi,%edx c87f: 01 24 0c add %esp,(%esp,%ecx,1) c882: 00 00 add %al,(%eax) c884: 03 23 add (%ebx),%esp c886: fc cld c887: 04 13 add $0x13,%al c889: 1d 14 00 00 03 sbb $0x3000014,%eax c88e: d7 xlat %ds:(%ebx) c88f: 01 43 00 add %eax,0x0(%ebx) c892: 00 00 add %al,(%eax) c894: 03 23 add (%ebx),%esp c896: 80 05 13 71 04 00 00 addb $0x0,0x47113 c89d: 03 d9 add %ecx,%ebx c89f: 01 43 00 add %eax,0x0(%ebx) c8a2: 00 00 add %al,(%eax) c8a4: 03 23 add (%ebx),%esp c8a6: 84 05 00 03 1e 0c test %al,0xc1e0300 c8ac: 00 00 add %al,(%eax) c8ae: de 05 00 00 04 3c fiadd 0x3c040000 c8b4: 00 00 add %al,(%eax) c8b6: 00 02 add %al,(%edx) c8b8: 00 06 add %al,(%esi) c8ba: 04 05 add $0x5,%al c8bc: 04 00 add $0x0,%al c8be: 00 06 add %al,(%esi) c8c0: 04 43 add $0x43,%al c8c2: 00 00 add %al,(%eax) c8c4: 00 0b add %cl,(%ebx) c8c6: d1 0c 00 rorl (%eax,%eax,1) c8c9: 00 dc add %bl,%ah c8cb: 19 00 sbb %eax,(%eax) c8cd: 00 38 add %bh,(%eax) c8cf: 06 push %es c8d0: 1b 0d 97 24 00 00 sbb 0x2497,%ecx c8d6: 06 push %es c8d7: 1c a9 sbb $0xa9,%al c8d9: 14 00 adc $0x0,%al c8db: 00 02 add %al,(%edx) c8dd: 23 00 and (%eax),%eax c8df: 0d ef 13 00 00 or $0x13ef,%eax c8e4: 06 push %es c8e5: 1d b5 14 00 00 sbb $0x14b5,%eax c8ea: 02 23 add (%ebx),%ah c8ec: 04 0d add $0xd,%al c8ee: 72 27 jb c917 <.debug_info+0xc917> c8f0: 00 00 add %al,(%eax) c8f2: 06 push %es c8f3: 1e push %ds c8f4: 43 inc %ebx c8f5: 00 00 add %al,(%eax) c8f7: 00 02 add %al,(%edx) c8f9: 23 08 and (%eax),%ecx c8fb: 0d 14 16 00 00 or $0x1614,%eax c900: 06 push %es c901: 1f pop %ds c902: 43 inc %ebx c903: 00 00 add %al,(%eax) c905: 00 02 add %al,(%edx) c907: 23 0c 0c and (%esp,%ecx,1),%ecx c90a: 63 70 75 arpl %si,0x75(%eax) c90d: 00 06 add %al,(%esi) c90f: 20 1e and %bl,(%esi) c911: 01 00 add %eax,(%eax) c913: 00 02 add %al,(%edx) c915: 23 10 and (%eax),%edx c917: 0d bc 12 00 00 or $0x12bc,%eax c91c: 06 push %es c91d: 21 25 00 00 00 02 and %esp,0x2000000 c923: 23 14 0d 41 1c 00 00 and 0x1c41(,%ecx,1),%edx c92a: 06 push %es c92b: 24 a1 and $0xa1,%al c92d: 0a 00 or (%eax),%al c92f: 00 02 add %al,(%edx) c931: 23 18 and (%eax),%ebx c933: 0d 0d 1f 00 00 or $0x1f0d,%eax c938: 06 push %es c939: 28 bb 14 00 00 02 sub %bh,0x2000014(%ebx) c93f: 23 1c 0d df 1d 00 00 and 0x1ddf(,%ecx,1),%ebx c946: 06 push %es c947: 29 c9 sub %ecx,%ecx c949: 01 00 add %eax,(%eax) c94b: 00 02 add %al,(%edx) c94d: 23 20 and (%eax),%esp c94f: 0d 78 07 00 00 or $0x778,%eax c954: 06 push %es c955: 2b 43 00 sub 0x0(%ebx),%eax c958: 00 00 add %al,(%eax) c95a: 02 23 add (%ebx),%ah c95c: 34 0d xor $0xd,%al c95e: 9e sahf c95f: 1d 00 00 06 2e sbb $0x2e060000,%eax c964: bd 14 00 00 02 mov $0x2000014,%ebp c969: 23 38 and (%eax),%edi c96b: 00 10 add %dl,(%eax) c96d: a9 14 00 00 49 test $0x49000014,%eax c972: 13 00 adc (%eax),%eax c974: 00 60 05 add %ah,0x5(%eax) c977: 19 d4 sbb %edx,%esp c979: 13 c8 adc %eax,%ecx c97b: 16 push %ss c97c: 00 00 add %al,(%eax) c97e: 1a 00 sbb (%eax),%al c980: 03 e0 add %eax,%esp c982: 36 00 00 add %al,%ss:(%eax) c985: 02 23 add (%ebx),%ah c987: 00 13 add %dl,(%ebx) c989: dc 19 fcompl (%ecx) c98b: 00 00 add %al,(%eax) c98d: 1a 01 sbb (%ecx),%al c98f: 03 87 28 00 00 02 add 0x2000028(%edi),%eax c995: 23 04 13 and (%ebx,%edx,1),%eax c998: 7d 14 jge c9ae <.debug_info+0xc9ae> c99a: 00 00 add %al,(%eax) c99c: 1a 02 sbb (%edx),%al c99e: 03 5b 16 add 0x16(%ebx),%ebx c9a1: 00 00 add %al,(%eax) c9a3: 02 23 add (%ebx),%ah c9a5: 08 13 or %dl,(%ebx) c9a7: 72 27 jb c9d0 <.debug_info+0xc9d0> c9a9: 00 00 add %al,(%eax) c9ab: 1a 03 sbb (%ebx),%al c9ad: 03 43 00 add 0x0(%ebx),%eax c9b0: 00 00 add %al,(%eax) c9b2: 02 23 add (%ebx),%ah c9b4: 0c 13 or $0x13,%al c9b6: c3 ret c9b7: 0b 00 or (%eax),%eax c9b9: 00 1a add %bl,(%edx) c9bb: 04 03 add $0x3,%al c9bd: 43 inc %ebx c9be: 00 00 add %al,(%eax) c9c0: 00 02 add %al,(%edx) c9c2: 23 10 and (%eax),%edx c9c4: 13 d2 adc %edx,%edx c9c6: 0f 00 00 sldt (%eax) c9c9: 1a 06 sbb (%esi),%al c9cb: 03 25 00 00 00 02 add 0x2000000,%esp c9d1: 23 14 13 and (%ebx,%edx,1),%edx c9d4: 23 08 and (%eax),%ecx c9d6: 00 00 add %al,(%eax) c9d8: 1a 0d 03 25 00 00 sbb 0x2503,%cl c9de: 00 02 add %al,(%edx) c9e0: 23 18 and (%eax),%ebx c9e2: 13 ce adc %esi,%ecx c9e4: 04 00 add $0x0,%al c9e6: 00 1a add %bl,(%edx) c9e8: 0e push %cs c9e9: 03 25 00 00 00 02 add 0x2000000,%esp c9ef: 23 1c 13 and (%ebx,%edx,1),%ebx c9f2: 96 xchg %eax,%esi c9f3: 1e push %ds c9f4: 00 00 add %al,(%eax) c9f6: 1a 0e sbb (%esi),%cl c9f8: 03 25 00 00 00 02 add 0x2000000,%esp c9fe: 23 20 and (%eax),%esp ca00: 13 2c 27 adc (%edi),%ebp ca03: 00 00 add %al,(%eax) ca05: 1a 0e sbb (%esi),%cl ca07: 03 25 00 00 00 02 add 0x2000000,%esp ca0d: 23 24 13 and (%ebx,%edx,1),%esp ca10: e8 1b 00 00 1a call 1a00ca30 ca15: 0f 03 cc lsl %sp,%ecx ca18: 14 00 adc $0x0,%al ca1a: 00 02 add %al,(%edx) ca1c: 23 28 and (%eax),%ebp ca1e: 13 6b 22 adc 0x22(%ebx),%ebp ca21: 00 00 add %al,(%eax) ca23: 1a 10 sbb (%eax),%dl ca25: 03 eb add %ebx,%ebp ca27: 36 00 00 add %al,%ss:(%eax) ca2a: 02 23 add (%ebx),%ah ca2c: 30 13 xor %dl,(%ebx) ca2e: 7d 10 jge ca40 <.debug_info+0xca40> ca30: 00 00 add %al,(%eax) ca32: 1a 12 sbb (%edx),%dl ca34: 03 67 00 add 0x0(%edi),%esp ca37: 00 00 add %al,(%eax) ca39: 02 23 add (%ebx),%ah ca3b: 34 13 xor $0x13,%al ca3d: 29 14 00 sub %edx,(%eax,%eax,1) ca40: 00 1a add %bl,(%edx) ca42: 13 03 adc (%ebx),%eax ca44: 8b 00 mov (%eax),%eax ca46: 00 00 add %al,(%eax) ca48: 02 23 add (%ebx),%ah ca4a: 38 13 cmp %dl,(%ebx) ca4c: 0a 12 or (%edx),%dl ca4e: 00 00 add %al,(%eax) ca50: 1a 15 03 43 00 00 sbb 0x4303,%dl ca56: 00 02 add %al,(%edx) ca58: 23 3c 13 and (%ebx,%edx,1),%edi ca5b: 20 16 and %dl,(%esi) ca5d: 00 00 add %al,(%eax) ca5f: 1a 16 sbb (%esi),%dl ca61: 03 29 add (%ecx),%ebp ca63: 01 00 add %eax,(%eax) ca65: 00 02 add %al,(%edx) ca67: 23 40 13 and 0x13(%eax),%eax ca6a: 37 aaa ca6b: 07 pop %es ca6c: 00 00 add %al,(%eax) ca6e: 1a 16 sbb (%esi),%dl ca70: 03 29 add (%ecx),%ebp ca72: 01 00 add %eax,(%eax) ca74: 00 02 add %al,(%edx) ca76: 23 48 13 and 0x13(%eax),%ecx ca79: 4f dec %edi ca7a: 1a 00 sbb (%eax),%al ca7c: 00 1a add %bl,(%edx) ca7e: 17 pop %ss ca7f: 03 29 add (%ecx),%ebp ca81: 01 00 add %eax,(%eax) ca83: 00 02 add %al,(%edx) ca85: 23 50 13 and 0x13(%eax),%edx ca88: 6d insl (%dx),%es:(%edi) ca89: 1f pop %ds ca8a: 00 00 add %al,(%eax) ca8c: 1a 18 sbb (%eax),%bl ca8e: 03 ba 36 00 00 02 add 0x2000036(%edx),%edi ca94: 23 58 13 and 0x13(%eax),%ebx ca97: 63 15 00 00 1a 1a arpl %dx,0x1a1a0000 ca9d: 03 43 00 add 0x0(%ebx),%eax caa0: 00 00 add %al,(%eax) caa2: 02 23 add (%ebx),%ah caa4: 5c pop %esp caa5: 13 46 14 adc 0x14(%esi),%eax caa8: 00 00 add %al,(%eax) caaa: 1a 1b sbb (%ebx),%bl caac: 03 d3 add %ebx,%edx caae: 05 00 00 02 23 add $0x23020000,%eax cab3: 60 pusha cab4: 13 87 21 00 00 1a adc 0x1a000021(%edi),%eax caba: 1c 03 sbb $0x3,%al cabc: 8b 00 mov (%eax),%eax cabe: 00 00 add %al,(%eax) cac0: 02 23 add (%ebx),%ah cac2: 64 13 16 adc %fs:(%esi),%edx cac5: 04 00 add $0x0,%al cac7: 00 1a add %bl,(%edx) cac9: 1c 03 sbb $0x3,%al cacb: 8b 00 mov (%eax),%eax cacd: 00 00 add %al,(%eax) cacf: 02 23 add (%ebx),%ah cad1: 68 13 c1 0e 00 push $0xec113 cad6: 00 1a add %bl,(%edx) cad8: 22 03 and (%ebx),%al cada: cc int3 cadb: 14 00 adc $0x0,%al cadd: 00 02 add %al,(%edx) cadf: 23 6c 13 a8 and 0xffffffa8(%ebx,%edx,1),%ebp cae3: 10 00 adc %al,(%eax) cae5: 00 1a add %bl,(%edx) cae7: 27 daa cae8: 03 cc add %esp,%ecx caea: 14 00 adc $0x0,%al caec: 00 02 add %al,(%edx) caee: 23 74 13 d0 and 0xffffffd0(%ebx,%edx,1),%esi caf2: 19 00 sbb %eax,(%eax) caf4: 00 1a add %bl,(%edx) caf6: 28 03 sub %al,(%ebx) caf8: cc int3 caf9: 14 00 adc $0x0,%al cafb: 00 02 add %al,(%edx) cafd: 23 7c 12 6d and 0x6d(%edx,%edx,1),%edi cb01: 6d insl (%dx),%es:(%edi) cb02: 00 1a add %bl,(%edx) cb04: 2a 03 sub (%ebx),%al cb06: 34 32 xor $0x32,%al cb08: 00 00 add %al,(%eax) cb0a: 03 23 add (%ebx),%esp cb0c: 84 01 test %al,(%ecx) cb0e: 13 ae 18 00 00 1a adc 0x1a000018(%esi),%ebp cb14: 2a 03 sub (%ebx),%al cb16: 34 32 xor $0x32,%al cb18: 00 00 add %al,(%eax) cb1a: 03 23 add (%ebx),%esp cb1c: 88 01 mov %al,(%ecx) cb1e: 13 97 25 00 00 1a adc 0x1a000025(%edi),%edx cb24: 2d 03 f7 36 00 sub $0x36f703,%eax cb29: 00 03 add %al,(%ebx) cb2b: 23 8c 01 13 07 15 00 and 0x150713(%ecx,%eax,1),%ecx cb32: 00 1a add %bl,(%edx) cb34: 2e 03 6e 00 add %cs:0x0(%esi),%ebp cb38: 00 00 add %al,(%eax) cb3a: 03 23 add (%ebx),%esp cb3c: 90 nop cb3d: 01 13 add %edx,(%ebx) cb3f: f8 clc cb40: 09 00 or %eax,(%eax) cb42: 00 1a add %bl,(%edx) cb44: 2f das cb45: 03 25 00 00 00 03 add 0x3000000,%esp cb4b: 23 94 01 13 ef 05 00 and 0x5ef13(%ecx,%eax,1),%edx cb52: 00 1a add %bl,(%edx) cb54: 2f das cb55: 03 25 00 00 00 03 add 0x3000000,%esp cb5b: 23 98 01 13 d4 08 and 0x8d41301(%eax),%ebx cb61: 00 00 add %al,(%eax) cb63: 1a 30 sbb (%eax),%dh cb65: 03 25 00 00 00 03 add 0x3000000,%esp cb6b: 23 9c 01 13 b0 1e 00 and 0x1eb013(%ecx,%eax,1),%ebx cb72: 00 1a add %bl,(%edx) cb74: 32 03 xor (%ebx),%al cb76: 43 inc %ebx cb77: 00 00 add %al,(%eax) cb79: 00 03 add %al,(%ebx) cb7b: 23 a0 01 19 a9 1c and 0x1ca91901(%eax),%esp cb81: 00 00 add %al,(%eax) cb83: 1a 33 sbb (%ebx),%dh cb85: 03 8b 00 00 00 04 add 0x4000000(%ebx),%ecx cb8b: 01 1f add %ebx,(%edi) cb8d: 03 23 add (%ebx),%esp cb8f: a4 movsb %ds:(%esi),%es:(%edi) cb90: 01 12 add %edx,(%edx) cb92: 70 69 jo cbfd <.debug_info+0xcbfd> cb94: 64 00 1a add %bl,%fs:(%edx) cb97: 34 03 xor $0x3,%al cb99: 66 01 00 add %ax,(%eax) cb9c: 00 03 add %al,(%ebx) cb9e: 23 a8 01 13 a5 1f and 0x1fa51301(%eax),%ebp cba4: 00 00 add %al,(%eax) cba6: 1a 35 03 66 01 00 sbb 0x16603,%dh cbac: 00 03 add %al,(%ebx) cbae: 23 ac 01 13 0a 08 00 and 0x80a13(%ecx,%eax,1),%ebp cbb5: 00 1a add %bl,(%edx) cbb7: 3b 03 cmp (%ebx),%eax cbb9: a9 14 00 00 03 test $0x3000014,%eax cbbe: 23 b0 01 13 ec 24 and 0x24ec1301(%eax),%esi cbc4: 00 00 add %al,(%eax) cbc6: 1a 3c 03 sbb (%ebx,%eax,1),%bh cbc9: a9 14 00 00 03 test $0x3000014,%eax cbce: 23 b4 01 13 5f 1e 00 and 0x1e5f13(%ecx,%eax,1),%esi cbd5: 00 1a add %bl,(%edx) cbd7: 41 inc %ecx cbd8: 03 cc add %esp,%ecx cbda: 14 00 adc $0x0,%al cbdc: 00 03 add %al,(%ebx) cbde: 23 b8 01 13 f8 0d and 0xdf81301(%eax),%edi cbe4: 00 00 add %al,(%eax) cbe6: 1a 42 03 sbb 0x3(%edx),%al cbe9: cc int3 cbea: 14 00 adc $0x0,%al cbec: 00 03 add %al,(%ebx) cbee: 23 c0 and %eax,%eax cbf0: 01 13 add %edx,(%ebx) cbf2: 6f outsl %ds:(%esi),(%dx) cbf3: 08 00 or %al,(%eax) cbf5: 00 1a add %bl,(%edx) cbf7: 43 inc %ebx cbf8: 03 a9 14 00 00 03 add 0x3000014(%ecx),%ebp cbfe: 23 c8 and %eax,%ecx cc00: 01 13 add %edx,(%ebx) cc02: de 06 fiadd (%esi) cc04: 00 00 add %al,(%eax) cc06: 1a 46 03 sbb 0x3(%esi),%al cc09: fd std cc0a: 36 00 00 add %al,%ss:(%eax) cc0d: 03 23 add (%ebx),%esp cc0f: cc int3 cc10: 01 13 add %edx,(%ebx) cc12: 08 18 or %bl,(%eax) cc14: 00 00 add %al,(%eax) cc16: 1a 47 03 sbb 0x3(%edi),%al cc19: cc int3 cc1a: 14 00 adc $0x0,%al cc1c: 00 03 add %al,(%ebx) cc1e: 23 f0 and %eax,%esi cc20: 01 13 add %edx,(%ebx) cc22: 88 1a mov %bl,(%edx) cc24: 00 00 add %al,(%eax) cc26: 1a 49 03 sbb 0x3(%ecx),%cl cc29: a9 32 00 00 03 test $0x3000032,%eax cc2e: 23 f8 and %eax,%edi cc30: 01 13 add %edx,(%ebx) cc32: a2 1e 00 00 1a mov %al,0x1a00001e cc37: 4a dec %edx cc38: 03 0d 37 00 00 03 add 0x3000037,%ecx cc3e: 23 fc and %esp,%edi cc40: 01 13 add %edx,(%ebx) cc42: 3f aas cc43: 0d 00 00 1a 4b or $0x4b1a0000,%eax cc48: 03 0d 37 00 00 03 add 0x3000037,%ecx cc4e: 23 80 02 13 76 05 and 0x5761302(%eax),%eax cc54: 00 00 add %al,(%eax) cc56: 1a 4d 03 sbb 0x3(%ebp),%cl cc59: 43 inc %ebx cc5a: 00 00 add %al,(%eax) cc5c: 00 03 add %al,(%ebx) cc5e: 23 84 02 13 01 22 00 and 0x220113(%edx,%eax,1),%eax cc65: 00 1a add %bl,(%edx) cc67: 4e dec %esi cc68: 03 71 18 add 0x18(%ecx),%esi cc6b: 00 00 add %al,(%eax) cc6d: 03 23 add (%ebx),%esp cc6f: 88 02 mov %al,(%edx) cc71: 13 3d 0c 00 00 1a adc 0x1a00000c,%edi cc77: 4e dec %esi cc78: 03 71 18 add 0x18(%ecx),%esi cc7b: 00 00 add %al,(%eax) cc7d: 03 23 add (%ebx),%esp cc7f: 8c 02 movw %es,(%edx) cc81: 13 d7 adc %edi,%edx cc83: 1c 00 sbb $0x0,%al cc85: 00 1a add %bl,(%edx) cc87: 4f dec %edi cc88: 03 43 00 add 0x0(%ebx),%eax cc8b: 00 00 add %al,(%eax) cc8d: 03 23 add (%ebx),%esp cc8f: 90 nop cc90: 02 13 add (%ebx),%dl cc92: 98 cwtl cc93: 0a 00 or (%eax),%al cc95: 00 1a add %bl,(%edx) cc97: 4f dec %edi cc98: 03 43 00 add 0x0(%ebx),%eax cc9b: 00 00 add %al,(%eax) cc9d: 03 23 add (%ebx),%esp cc9f: 94 xchg %eax,%esp cca0: 02 13 add (%ebx),%dl cca2: 82 (bad) cca3: 05 00 00 1a 50 add $0x501a0000,%eax cca8: 03 7c 16 00 add 0x0(%esi,%edx,1),%edi ccac: 00 03 add %al,(%ebx) ccae: 23 98 02 13 68 0a and 0xa681302(%eax),%ebx ccb4: 00 00 add %al,(%eax) ccb6: 1a 52 03 sbb 0x3(%edx),%dl ccb9: 43 inc %ebx ccba: 00 00 add %al,(%eax) ccbc: 00 03 add %al,(%ebx) ccbe: 23 a0 02 13 ba 1d and 0x1dba1302(%eax),%esp ccc4: 00 00 add %al,(%eax) ccc6: 1a 52 03 sbb 0x3(%edx),%dl ccc9: 43 inc %ebx ccca: 00 00 add %al,(%eax) cccc: 00 03 add %al,(%ebx) ccce: 23 a4 02 13 7f 09 00 and 0x97f13(%edx,%eax,1),%esp ccd5: 00 1a add %bl,(%edx) ccd7: 54 push %esp ccd8: 03 71 18 add 0x18(%ecx),%esi ccdb: 00 00 add %al,(%eax) ccdd: 03 23 add (%ebx),%esp ccdf: a8 02 test $0x2,%al cce1: 13 93 1a 00 00 1a adc 0x1a00001a(%ebx),%edx cce7: 54 push %esp cce8: 03 71 18 add 0x18(%ecx),%esi cceb: 00 00 add %al,(%eax) cced: 03 23 add (%ebx),%esp ccef: ac lods %ds:(%esi),%al ccf0: 02 13 add (%ebx),%dl ccf2: 25 0c 00 00 1a and $0x1a00000c,%eax ccf7: 55 push %ebp ccf8: 03 29 add (%ecx),%ebp ccfa: 01 00 add %eax,(%eax) ccfc: 00 03 add %al,(%ebx) ccfe: 23 b0 02 13 cb 15 and 0x15cb1302(%eax),%esi cd04: 00 00 add %al,(%eax) cd06: 1a 56 03 sbb 0x3(%esi),%dl cd09: 1e push %ds cd0a: 36 00 00 add %al,%ss:(%eax) cd0d: 03 23 add (%ebx),%esp cd0f: b8 02 12 75 69 mov $0x69751202,%eax cd14: 64 00 1a add %bl,%fs:(%edx) cd17: 59 pop %ecx cd18: 03 87 01 00 00 03 add 0x3000001(%edi),%eax cd1e: 23 d0 and %eax,%edx cd20: 02 13 add (%ebx),%dl cd22: 59 pop %ecx cd23: 04 00 add $0x0,%al cd25: 00 1a add %bl,(%edx) cd27: 59 pop %ecx cd28: 03 87 01 00 00 03 add 0x3000001(%edi),%eax cd2e: 23 d4 and %esp,%edx cd30: 02 13 add (%ebx),%dl cd32: b1 0b mov $0xb,%cl cd34: 00 00 add %al,(%eax) cd36: 1a 59 03 sbb 0x3(%ecx),%bl cd39: 87 01 xchg %eax,(%ecx) cd3b: 00 00 add %al,(%eax) cd3d: 03 23 add (%ebx),%esp cd3f: d8 02 fadds (%edx) cd41: 13 28 adc (%eax),%ebp cd43: 0f 00 00 sldt (%eax) cd46: 1a 59 03 sbb 0x3(%ecx),%bl cd49: 87 01 xchg %eax,(%ecx) cd4b: 00 00 add %al,(%eax) cd4d: 03 23 add (%ebx),%esp cd4f: dc 02 faddl (%edx) cd51: 12 67 69 adc 0x69(%edi),%ah cd54: 64 00 1a add %bl,%fs:(%edx) cd57: 5a pop %edx cd58: 03 92 01 00 00 03 add 0x3000001(%edx),%edx cd5e: 23 e0 and %eax,%esp cd60: 02 13 add (%ebx),%dl cd62: 0b 1b or (%ebx),%ebx cd64: 00 00 add %al,(%eax) cd66: 1a 5a 03 sbb 0x3(%edx),%bl cd69: 92 xchg %eax,%edx cd6a: 01 00 add %eax,(%eax) cd6c: 00 03 add %al,(%ebx) cd6e: 23 e4 and %esp,%esp cd70: 02 13 add (%ebx),%dl cd72: 29 22 sub %esp,(%edx) cd74: 00 00 add %al,(%eax) cd76: 1a 5a 03 sbb 0x3(%edx),%bl cd79: 92 xchg %eax,%edx cd7a: 01 00 add %eax,(%eax) cd7c: 00 03 add %al,(%ebx) cd7e: 23 e8 and %eax,%ebp cd80: 02 13 add (%ebx),%dl cd82: b3 26 mov $0x26,%bl cd84: 00 00 add %al,(%eax) cd86: 1a 5a 03 sbb 0x3(%edx),%bl cd89: 92 xchg %eax,%edx cd8a: 01 00 add %eax,(%eax) cd8c: 00 03 add %al,(%ebx) cd8e: 23 ec and %esp,%ebp cd90: 02 13 add (%ebx),%dl cd92: 88 23 mov %ah,(%ebx) cd94: 00 00 add %al,(%eax) cd96: 1a 5b 03 sbb 0x3(%ebx),%bl cd99: 13 37 adc (%edi),%esi cd9b: 00 00 add %al,(%eax) cd9d: 03 23 add (%ebx),%esp cd9f: f0 02 13 lock add (%ebx),%dl cda2: ed in (%dx),%eax cda3: 1d 00 00 1a 5c sbb $0x5c1a0000,%eax cda8: 03 71 16 add 0x16(%ecx),%esi cdab: 00 00 add %al,(%eax) cdad: 03 23 add (%ebx),%esp cdaf: f4 hlt cdb0: 02 13 add (%ebx),%dl cdb2: 26 21 00 and %eax,%es:(%eax) cdb5: 00 1a add %bl,(%edx) cdb7: 5c pop %esp cdb8: 03 71 16 add 0x16(%ecx),%esi cdbb: 00 00 add %al,(%eax) cdbd: 03 23 add (%ebx),%esp cdbf: f8 clc cdc0: 02 13 add (%ebx),%dl cdc2: ce into cdc3: 09 00 or %eax,(%eax) cdc5: 00 1a add %bl,(%edx) cdc7: 5c pop %esp cdc8: 03 71 16 add 0x16(%ecx),%esi cdcb: 00 00 add %al,(%eax) cdcd: 03 23 add (%ebx),%esp cdcf: fc cld cdd0: 02 19 add (%ecx),%bl cdd2: ed in (%dx),%eax cdd3: 15 00 00 1a 5d adc $0x5d1a0000,%eax cdd8: 03 8b 00 00 00 04 add 0x4000000(%ebx),%ecx cdde: 01 1f add %ebx,(%edi) cde0: 03 23 add (%ebx),%esp cde2: 80 03 13 addb $0x13,(%ebx) cde5: 6c insb (%dx),%es:(%edi) cde6: 24 00 and $0x0,%al cde8: 00 1a add %bl,(%edx) cdea: 5e pop %esi cdeb: 03 e0 add %eax,%esp cded: 22 00 and (%eax),%al cdef: 00 03 add %al,(%ebx) cdf1: 23 84 03 13 5c 0c 00 and 0xc5c13(%ebx,%eax,1),%eax cdf8: 00 1a add %bl,(%edx) cdfa: 60 pusha cdfb: 03 34 36 add (%esi,%esi,1),%esi cdfe: 00 00 add %al,(%eax) ce00: 03 23 add (%ebx),%esp ce02: 88 03 mov %al,(%ebx) ce04: 13 ae 0f 00 00 1a adc 0x1a00000f(%esi),%ebp ce0a: 61 popa ce0b: 03 34 36 add (%esi,%esi,1),%esi ce0e: 00 00 add %al,(%eax) ce10: 03 23 add (%ebx),%esp ce12: 8c 03 movw %es,(%ebx) ce14: 13 39 adc (%ecx),%edi ce16: 19 00 sbb %eax,(%eax) ce18: 00 1a add %bl,(%edx) ce1a: 62 03 bound %eax,(%ebx) ce1c: 05 01 00 00 03 add $0x3000001,%eax ce21: 23 90 03 13 28 23 and 0x23281303(%eax),%edx ce27: 00 00 add %al,(%eax) ce29: 1a 64 03 25 sbb 0x25(%ebx,%eax,1),%ah ce2d: 00 00 add %al,(%eax) ce2f: 00 03 add %al,(%ebx) ce31: 23 94 03 13 1b 16 00 and 0x161b13(%ebx,%eax,1),%edx ce38: 00 1a add %bl,(%edx) ce3a: 65 03 99 07 00 00 03 add %gs:0x3000007(%ecx),%ebx ce41: 23 98 03 13 37 24 and 0x24371303(%eax),%ebx ce47: 00 00 add %al,(%eax) ce49: 1a 6a 03 sbb 0x3(%edx),%ch ce4c: 25 00 00 00 03 and $0x3000000,%eax ce51: 23 a8 03 13 1e 20 and 0x201e1303(%eax),%ebp ce57: 00 00 add %al,(%eax) ce59: 1a 6a 03 sbb 0x3(%edx),%ch ce5c: 25 00 00 00 03 and $0x3000000,%eax ce61: 23 ac 03 13 43 18 00 and 0x184313(%ebx,%eax,1),%ebp ce68: 00 1a add %bl,(%edx) ce6a: 6c insb (%dx),%es:(%edi) ce6b: 03 20 add (%eax),%esp ce6d: 1f pop %ds ce6e: 00 00 add %al,(%eax) ce70: 03 23 add (%ebx),%esp ce72: b0 03 mov $0x3,%al ce74: 13 00 adc (%eax),%eax ce76: 23 00 and (%eax),%eax ce78: 00 1a add %bl,(%edx) ce7a: 6e outsb %ds:(%esi),(%dx) ce7b: 03 ad 0a 00 00 03 add 0x300000a(%ebp),%ebp ce81: 23 c0 and %eax,%eax ce83: 03 12 add (%edx),%edx ce85: 66 data16 ce86: 73 00 jae ce88 <.debug_info+0xce88> ce88: 1a 70 03 sbb 0x3(%eax),%dh ce8b: 19 37 sbb %esi,(%edi) ce8d: 00 00 add %al,(%eax) ce8f: 03 23 add (%ebx),%esp ce91: d0 08 rorb (%eax) ce93: 13 25 17 00 00 1a adc 0x1a000017,%esp ce99: 72 03 jb ce9e <.debug_info+0xce9e> ce9b: 25 37 00 00 03 and $0x3000037,%eax cea0: 23 d4 and %esp,%edx cea2: 08 13 or %dl,(%ebx) cea4: fd std cea5: 1b 00 sbb (%eax),%eax cea7: 00 1a add %bl,(%edx) cea9: 74 03 je ceae <.debug_info+0xceae> ceab: 31 37 xor %esi,(%edi) cead: 00 00 add %al,(%eax) ceaf: 03 23 add (%ebx),%esp ceb1: d8 08 fmuls (%eax) ceb3: 13 a0 06 00 00 1a adc 0x1a000006(%eax),%esp ceb9: 76 03 jbe cebe <.debug_info+0xcebe> cebb: 37 aaa cebc: 37 aaa cebd: 00 00 add %al,(%eax) cebf: 03 23 add (%ebx),%esp cec1: dc 08 fmull (%eax) cec3: 13 e8 adc %eax,%ebp cec5: 19 00 sbb %eax,(%eax) cec7: 00 1a add %bl,(%edx) cec9: 77 03 ja cece <.debug_info+0xcece> cecb: 3d 37 00 00 03 cmp $0x3000037,%eax ced0: 23 e0 and %eax,%esp ced2: 08 13 or %dl,(%ebx) ced4: 8c 1d 00 00 1a 79 movw %ds,0x791a0000 ceda: 03 58 1f add 0x1f(%eax),%ebx cedd: 00 00 add %al,(%eax) cedf: 03 23 add (%ebx),%esp cee1: e4 08 in $0x8,%al cee3: 13 31 adc (%ecx),%esi cee5: 11 00 adc %eax,(%eax) cee7: 00 1a add %bl,(%edx) cee9: 79 03 jns ceee <.debug_info+0xceee> ceeb: 58 pop %eax ceec: 1f pop %ds ceed: 00 00 add %al,(%eax) ceef: 03 23 add (%ebx),%esp cef1: ec in (%dx),%al cef2: 08 13 or %dl,(%ebx) cef4: 83 08 00 orl $0x0,(%eax) cef7: 00 1a add %bl,(%edx) cef9: 7a 03 jp cefe <.debug_info+0xcefe> cefb: 58 pop %eax cefc: 1f pop %ds cefd: 00 00 add %al,(%eax) ceff: 03 23 add (%ebx),%esp cf01: f4 hlt cf02: 08 13 or %dl,(%ebx) cf04: 2b 0a sub (%edx),%ecx cf06: 00 00 add %al,(%eax) cf08: 1a 7b 03 sbb 0x3(%ebx),%bh cf0b: e6 22 out %al,$0x22 cf0d: 00 00 add %al,(%eax) cf0f: 03 23 add (%ebx),%esp cf11: fc cld cf12: 08 13 or %dl,(%ebx) cf14: 11 1d 00 00 1a 7d adc %ebx,0x7d1a0000 cf1a: 03 43 00 add 0x0(%ebx),%eax cf1d: 00 00 add %al,(%eax) cf1f: 03 23 add (%ebx),%esp cf21: 8c 09 movw %cs,(%ecx) cf23: 13 1d 1c 00 00 1a adc 0x1a00001c,%ebx cf29: 7e 03 jle cf2e <.debug_info+0xcf2e> cf2b: 9d popf cf2c: 01 00 add %eax,(%eax) cf2e: 00 03 add %al,(%ebx) cf30: 23 90 09 13 6e 1b and 0x1b6e1309(%eax),%edx cf36: 00 00 add %al,(%eax) cf38: 1a 7f 03 sbb 0x3(%edi),%bh cf3b: 53 push %ebx cf3c: 37 aaa cf3d: 00 00 add %al,(%eax) cf3f: 03 23 add (%ebx),%esp cf41: 94 xchg %eax,%esp cf42: 09 13 or %edx,(%ebx) cf44: 7f 0f jg cf55 <.debug_info+0xcf55> cf46: 00 00 add %al,(%eax) cf48: 1a 80 03 bb 14 00 sbb 0x14bb03(%eax),%al cf4e: 00 03 add %al,(%ebx) cf50: 23 98 09 13 d0 1a and 0x1ad01309(%eax),%ebx cf56: 00 00 add %al,(%eax) cf58: 1a 81 03 59 37 00 sbb 0x375903(%ecx),%al cf5e: 00 03 add %al,(%ebx) cf60: 23 9c 09 13 aa 14 00 and 0x14aa13(%ecx,%ecx,1),%ebx cf67: 00 1a add %bl,(%edx) cf69: 83 03 bb addl $0xffffffbb,(%ebx) cf6c: 14 00 adc $0x0,%al cf6e: 00 03 add %al,(%ebx) cf70: 23 a0 09 13 2d 0e and 0xe2d1309(%eax),%esp cf76: 00 00 add %al,(%eax) cf78: 1a 84 03 65 37 00 00 sbb 0x3765(%ebx,%eax,1),%al cf7f: 03 23 add (%ebx),%esp cf81: a4 movsb %ds:(%esi),%es:(%edi) cf82: 09 13 or %edx,(%ebx) cf84: f0 12 00 lock adc (%eax),%al cf87: 00 1a add %bl,(%edx) cf89: 85 03 test %eax,(%ebx) cf8b: ee out %al,(%dx) cf8c: 2a 00 sub (%eax),%al cf8e: 00 03 add %al,(%ebx) cf90: 23 a8 09 13 85 0b and 0xb851309(%eax),%ebp cf96: 00 00 add %al,(%eax) cf98: 1a 88 03 3a 01 00 sbb 0x13a03(%eax),%cl cf9e: 00 03 add %al,(%ebx) cfa0: 23 ac 09 13 94 1b 00 and 0x1b9413(%ecx,%ecx,1),%ebp cfa7: 00 1a add %bl,(%edx) cfa9: 89 03 mov %eax,(%ebx) cfab: 3a 01 cmp (%ecx),%al cfad: 00 00 add %al,(%eax) cfaf: 03 23 add (%ebx),%esp cfb1: b0 09 mov $0x9,%al cfb3: 13 07 adc (%edi),%eax cfb5: 23 00 and (%eax),%eax cfb7: 00 1a add %bl,(%edx) cfb9: 8b 03 mov (%ebx),%eax cfbb: e8 15 00 00 03 call 300cfd5 cfc0: 23 b4 09 13 a9 07 00 and 0x7a913(%ecx,%ecx,1),%esi cfc7: 00 1a add %bl,(%edx) cfc9: 8e 03 movw (%ebx),%es cfcb: e8 15 00 00 03 call 300cfe5 cfd0: 23 c4 and %esp,%eax cfd2: 09 13 or %edx,(%ebx) cfd4: 3d 16 00 00 1a cmp $0x1a000016,%eax cfd9: 92 xchg %eax,%edx cfda: 03 51 2b add 0x2b(%ecx),%edx cfdd: 00 00 add %al,(%eax) cfdf: 03 23 add (%ebx),%esp cfe1: d4 09 aam $0x9 cfe3: 13 a6 15 00 00 1a adc 0x1a000015(%esi),%esp cfe9: 94 xchg %eax,%esp cfea: 03 71 37 add 0x37(%ecx),%esi cfed: 00 00 add %al,(%eax) cfef: 03 23 add (%ebx),%esp cff1: e4 09 in $0x9,%al cff3: 13 b6 1a 00 00 1a adc 0x1a00001a(%esi),%esi cff9: 99 cltd cffa: 03 77 37 add 0x37(%edi),%esi cffd: 00 00 add %al,(%eax) cfff: 03 23 add (%ebx),%esp d001: e8 09 13 7f 1d call 1d7fe30f d006: 00 00 add %al,(%eax) d008: 1a b3 03 bb 14 00 sbb 0x14bb03(%ebx),%dh d00e: 00 03 add %al,(%ebx) d010: 23 ec and %esp,%ebp d012: 09 13 or %edx,(%ebx) d014: 1f pop %ds d015: 0e push %cs d016: 00 00 add %al,(%eax) d018: 1a b6 03 83 37 00 sbb 0x378303(%esi),%dh d01e: 00 03 add %al,(%ebx) d020: 23 f0 and %eax,%esi d022: 09 13 or %edx,(%ebx) d024: bd 25 00 00 1a mov $0x1a000025,%ebp d029: b8 03 8f 37 00 mov $0x378f03,%eax d02e: 00 03 add %al,(%ebx) d030: 23 f4 and %esp,%esi d032: 09 13 or %edx,(%ebx) d034: 93 xchg %eax,%ebx d035: 0f 00 00 sldt (%eax) d038: 1a ba 03 9b 37 00 sbb 0x379b03(%edx),%bh d03e: 00 03 add %al,(%ebx) d040: 23 f8 and %eax,%edi d042: 09 13 or %edx,(%ebx) d044: 1b 06 sbb (%esi),%eax d046: 00 00 add %al,(%eax) d048: 1a bc 03 43 00 00 00 sbb 0x43(%ebx,%eax,1),%bh d04f: 03 23 add (%ebx),%esp d051: fc cld d052: 09 13 or %edx,(%ebx) d054: 18 09 sbb %cl,(%ecx) d056: 00 00 add %al,(%eax) d058: 1a bd 03 a1 37 00 sbb 0x37a103(%ebp),%bh d05e: 00 03 add %al,(%ebx) d060: 23 80 0a 13 51 04 and 0x451130a(%eax),%eax d066: 00 00 add %al,(%eax) d068: 1a c4 sbb %ah,%al d06a: 03 7d 17 add 0x17(%ebp),%edi d06d: 00 00 add %al,(%eax) d06f: 03 23 add (%ebx),%esp d071: 84 0a test %cl,(%edx) d073: 13 48 1e adc 0x1e(%eax),%ecx d076: 00 00 add %al,(%eax) d078: 1a c6 sbb %dh,%al d07a: 03 50 01 add 0x1(%eax),%edx d07d: 00 00 add %al,(%eax) d07f: 03 23 add (%ebx),%esp d081: 88 0a mov %cl,(%edx) d083: 13 52 24 adc 0x24(%edx),%edx d086: 00 00 add %al,(%eax) d088: 1a c6 sbb %dh,%al d08a: 03 50 01 add 0x1(%eax),%edx d08d: 00 00 add %al,(%eax) d08f: 03 23 add (%ebx),%esp d091: 90 nop d092: 0a 13 or (%ebx),%dl d094: d8 12 fcoms (%edx) d096: 00 00 add %al,(%eax) d098: 1a c6 sbb %dh,%al d09a: 03 50 01 add 0x1(%eax),%edx d09d: 00 00 add %al,(%eax) d09f: 03 23 add (%ebx),%esp d0a1: 98 cwtl d0a2: 0a 13 or (%ebx),%dl d0a4: de 12 ficom (%edx) d0a6: 00 00 add %al,(%eax) d0a8: 1a c6 sbb %dh,%al d0aa: 03 50 01 add 0x1(%eax),%edx d0ad: 00 00 add %al,(%eax) d0af: 03 23 add (%ebx),%esp d0b1: a0 0a 13 4c 11 mov 0x114c130a,%al d0b6: 00 00 add %al,(%eax) d0b8: 1a c8 sbb %al,%cl d0ba: 03 50 01 add 0x1(%eax),%edx d0bd: 00 00 add %al,(%eax) d0bf: 03 23 add (%ebx),%esp d0c1: a8 0a test $0xa,%al d0c3: 13 c9 adc %ecx,%ecx d0c5: 05 00 00 1a c9 add $0xc91a0000,%eax d0ca: 03 50 01 add 0x1(%eax),%edx d0cd: 00 00 add %al,(%eax) d0cf: 03 23 add (%ebx),%esp d0d1: b0 0a mov $0xa,%al d0d3: 13 3e adc (%esi),%edi d0d5: 23 00 and (%eax),%eax d0d7: 00 1a add %bl,(%edx) d0d9: ca 03 be lret $0xbe03 d0dc: 01 00 add %eax,(%eax) d0de: 00 03 add %al,(%ebx) d0e0: 23 b8 0a 13 65 09 and 0x965130a(%eax),%edi d0e6: 00 00 add %al,(%eax) d0e8: 1a d6 sbb %dh,%dl d0ea: 03 a7 37 00 00 03 add 0x3000037(%edi),%esp d0f0: 23 bc 0a 13 cc 0d 00 and 0xdcc13(%edx,%ecx,1),%edi d0f7: 00 1a add %bl,(%edx) d0f9: da 03 fiaddl (%ebx) d0fb: cc int3 d0fc: 14 00 adc $0x0,%al d0fe: 00 03 add %al,(%ebx) d100: 23 c0 and %eax,%eax d102: 0a 13 or (%ebx),%dl d104: 05 20 00 00 1a add $0x1a000020,%eax d109: db 03 fildl (%ebx) d10b: b3 37 mov $0x37,%bl d10d: 00 00 add %al,(%eax) d10f: 03 23 add (%ebx),%esp d111: c8 0a 13 6b enter $0x130a,$0x6b d115: 0b 00 or (%eax),%eax d117: 00 1a add %bl,(%edx) d119: dd 03 fldl (%ebx) d11b: 5b pop %ebx d11c: 16 push %ss d11d: 00 00 add %al,(%eax) d11f: 03 23 add (%ebx),%esp d121: cc int3 d122: 0a 12 or (%edx),%dl d124: 72 63 jb d189 <.debug_info+0xd189> d126: 75 00 jne d128 <.debug_info+0xd128> d128: 1a de sbb %dh,%bl d12a: 03 20 add (%eax),%esp d12c: 29 00 sub %eax,(%eax) d12e: 00 03 add %al,(%ebx) d130: 23 d0 and %eax,%edx d132: 0a 13 or (%ebx),%dl d134: fc cld d135: 17 pop %ss d136: 00 00 add %al,(%eax) d138: 1a e3 sbb %bl,%ah d13a: 03 bf 37 00 00 03 add 0x3000037(%edi),%edi d140: 23 d8 and %eax,%ebx d142: 0a 00 or (%eax),%al d144: 06 push %es d145: 04 d1 add $0xd1,%al d147: 0c 00 or $0x0,%al d149: 00 1a add %bl,(%edx) d14b: ef out %eax,(%dx) d14c: 13 00 adc (%eax),%eax d14e: 00 01 add %al,(%ecx) d150: 06 push %es d151: 04 af add $0xaf,%al d153: 14 00 adc $0x0,%al d155: 00 1b add %bl,(%ebx) d157: 04 03 add $0x3,%al d159: cc int3 d15a: 14 00 adc $0x0,%al d15c: 00 fa add %bh,%dl d15e: 00 00 add %al,(%eax) d160: 00 1c 3c add %bl,(%esp,%edi,1) d163: 00 00 add %al,(%eax) d165: 00 00 add %al,(%eax) d167: 0b f5 or %ebp,%esi d169: 14 00 adc $0x0,%al d16b: 00 56 1f add %dl,0x1f(%esi) d16e: 00 00 add %al,(%eax) d170: 08 13 or %dl,(%ebx) d172: 15 0d 19 27 00 adc $0x27190d,%eax d177: 00 13 add %dl,(%ebx) d179: 16 push %ss d17a: f5 cmc d17b: 14 00 adc $0x0,%al d17d: 00 02 add %al,(%edx) d17f: 23 00 and (%eax),%eax d181: 0d d5 26 00 00 or $0x26d5,%eax d186: 13 16 adc (%esi),%edx d188: f5 cmc d189: 14 00 adc $0x0,%al d18b: 00 02 add %al,(%edx) d18d: 23 04 00 and (%eax,%eax,1),%eax d190: 06 push %es d191: 04 cc add $0xcc,%al d193: 14 00 adc $0x0,%al d195: 00 11 add %dl,(%ecx) d197: 18 15 00 00 e3 23 sbb %dl,0x23e30000 d19d: 00 00 add %al,(%eax) d19f: 04 13 add $0x13,%al d1a1: 50 push %eax d1a2: 02 13 add (%ebx),%dl d1a4: f4 hlt d1a5: 10 00 adc %al,(%eax) d1a7: 00 13 add %dl,(%ebx) d1a9: 51 push %ecx d1aa: 02 44 15 00 add 0x0(%ebp,%edx,1),%al d1ae: 00 02 add %al,(%edx) d1b0: 23 00 and (%eax),%eax d1b2: 00 11 add %dl,(%ecx) d1b4: 44 inc %esp d1b5: 15 00 00 06 06 adc $0x6060000,%eax d1ba: 00 00 add %al,(%eax) d1bc: 08 13 or %dl,(%ebx) d1be: 51 push %ecx d1bf: 02 13 add (%ebx),%dl d1c1: 19 27 sbb %esp,(%edi) d1c3: 00 00 add %al,(%eax) d1c5: 13 55 02 adc 0x2(%ebp),%edx d1c8: 44 inc %esp d1c9: 15 00 00 02 23 adc $0x23020000,%eax d1ce: 00 13 add %dl,(%ebx) d1d0: ca 1a 00 lret $0x1a d1d3: 00 13 add %dl,(%ebx) d1d5: 55 push %ebp d1d6: 02 4a 15 add 0x15(%edx),%cl d1d9: 00 00 add %al,(%eax) d1db: 02 23 add (%ebx),%ah d1dd: 04 00 add $0x0,%al d1df: 06 push %es d1e0: 04 18 add $0x18,%al d1e2: 15 00 00 06 04 adc $0x4060000,%eax d1e7: 44 inc %esp d1e8: 15 00 00 1d a2 adc $0xa21d0000,%eax d1ed: 0b 00 or (%eax),%eax d1ef: 00 00 add %al,(%eax) d1f1: 31 0e xor %ecx,(%esi) d1f3: 01 0f add %ecx,(%edi) d1f5: 70 15 jo d20c <.debug_info+0xd20c> d1f7: 00 00 add %al,(%eax) d1f9: 04 15 add $0x15,%al d1fb: 0a 0d 8e 1f 00 00 or 0x1f8e,%cl d201: 15 09 70 15 00 adc $0x157009,%eax d206: 00 02 add %al,(%edx) d208: 23 00 and (%eax),%eax d20a: 00 1e add %bl,(%esi) d20c: 8b 00 mov (%eax),%eax d20e: 00 00 add %al,(%eax) d210: 09 04 1e or %eax,(%esi,%ebx,1) d213: 00 00 add %al,(%eax) d215: 15 0a 59 15 00 adc $0x15590a,%eax d21a: 00 0f add %cl,(%edi) d21c: 97 xchg %eax,%edi d21d: 15 00 00 04 15 adc $0x15040000,%eax d222: 10 0d 66 1d 00 00 adc %cl,0x1d66 d228: 15 0f 97 15 00 adc $0x15970f,%eax d22d: 00 02 add %al,(%edx) d22f: 23 00 and (%eax),%eax d231: 00 1e add %bl,(%esi) d233: 8b 00 mov (%eax),%eax d235: 00 00 add %al,(%eax) d237: 09 b0 1f 00 00 15 or %esi,0x1500001f(%eax) d23d: 10 80 15 00 00 0f adc %al,0xf000015(%eax) d243: e8 15 00 00 10 call 1000d25d d248: 14 20 adc $0x20,%al d24a: 0d 0f 05 00 00 or $0x50f,%eax d24f: 14 15 adc $0x15,%al d251: 75 15 jne d268 <.debug_info+0xd268> d253: 00 00 add %al,(%eax) d255: 02 23 add (%ebx),%ah d257: 00 0d 17 14 00 00 add %cl,0x1417 d25d: 14 1a adc $0x1a,%al d25f: 8b 00 mov (%eax),%eax d261: 00 00 add %al,(%eax) d263: 02 23 add (%ebx),%ah d265: 04 0d add $0xd,%al d267: 33 0a xor (%edx),%ecx d269: 00 00 add %al,(%eax) d26b: 14 1a adc $0x1a,%al d26d: 8b 00 mov (%eax),%eax d26f: 00 00 add %al,(%eax) d271: 02 23 add (%ebx),%ah d273: 08 0d 8d 0f 00 00 or %cl,0xf8d d279: 14 1b adc $0x1b,%al d27b: bb 14 00 00 02 mov $0x2000014,%ebx d280: 23 0c 00 and (%eax,%eax,1),%ecx d283: 09 d3 or %edx,%ebx d285: 04 00 add $0x0,%al d287: 00 14 20 add %dl,(%eax) d28a: a7 cmpsl %es:(%edi),%ds:(%esi) d28b: 15 00 00 0f 34 adc $0x340f0000,%eax d290: 16 push %ss d291: 00 00 add %al,(%eax) d293: 10 14 30 adc %dl,(%eax,%esi,1) d296: 0d 0f 05 00 00 or $0x50f,%eax d29b: 14 25 adc $0x25,%al d29d: 9c pushf d29e: 15 00 00 02 23 adc $0x23020000,%eax d2a3: 00 0d 17 14 00 00 add %cl,0x1417 d2a9: 14 2a adc $0x2a,%al d2ab: 8b 00 mov (%eax),%eax d2ad: 00 00 add %al,(%eax) d2af: 02 23 add (%ebx),%ah d2b1: 04 0d add $0xd,%al d2b3: 33 0a xor (%edx),%ecx d2b5: 00 00 add %al,(%eax) d2b7: 14 2a adc $0x2a,%al d2b9: 8b 00 mov (%eax),%eax d2bb: 00 00 add %al,(%eax) d2bd: 02 23 add (%ebx),%ah d2bf: 08 0d 8d 0f 00 00 or %cl,0xf8d d2c5: 14 2b adc $0x2b,%al d2c7: bb 14 00 00 02 mov $0x2000014,%ebx d2cc: 23 0c 00 and (%eax,%eax,1),%ecx d2cf: 09 d1 or %edx,%ecx d2d1: 0c 00 or $0x0,%al d2d3: 00 14 30 add %dl,(%eax,%esi,1) d2d6: f3 15 00 00 0f 56 repz adc $0x560f0000,%eax d2dc: 16 push %ss d2dd: 00 00 add %al,(%eax) d2df: 04 16 add $0x16,%al d2e1: 11 0d e1 05 00 00 adc %ecx,0x5e1 d2e7: 16 push %ss d2e8: 11 56 16 adc %edx,0x16(%esi) d2eb: 00 00 add %al,(%eax) d2ed: 02 23 add (%ebx),%ah d2ef: 00 00 add %al,(%eax) d2f1: 1e push %ds d2f2: 25 00 00 00 09 and $0x9000000,%eax d2f7: 78 0c js d305 <.debug_info+0xd305> d2f9: 00 00 add %al,(%eax) d2fb: 16 push %ss d2fc: 11 3f adc %edi,(%edi) d2fe: 16 push %ss d2ff: 00 00 add %al,(%eax) d301: 09 5d 22 or %ebx,0x22(%ebp) d304: 00 00 add %al,(%eax) d306: 17 pop %ss d307: 47 inc %edi d308: 5b pop %ebx d309: 16 push %ss d30a: 00 00 add %al,(%eax) d30c: 09 ad 21 00 00 29 or %ebp,0x29000021(%ebp) d312: 3a 1e cmp (%esi),%bl d314: 01 00 add %eax,(%eax) d316: 00 0b add %cl,(%ebx) d318: a5 movsl %ds:(%esi),%es:(%edi) d319: 16 push %ss d31a: 00 00 add %al,(%eax) d31c: f8 clc d31d: 12 00 adc (%eax),%al d31f: 00 08 add %cl,(%eax) d321: 07 pop %es d322: 0c 0d or $0xd,%al d324: 36 21 00 and %eax,%ss:(%eax) d327: 00 07 add %al,(%edi) d329: 0d b3 01 00 00 or $0x1b3,%eax d32e: 02 23 add (%ebx),%ah d330: 00 0d db 23 00 00 add %cl,0x23db d336: 07 pop %es d337: 0e push %cs d338: 6e outsb %ds:(%esi),(%dx) d339: 00 00 add %al,(%eax) d33b: 00 02 add %al,(%edx) d33d: 23 04 00 and (%eax,%eax,1),%eax d340: 0b dc or %esp,%ebx d342: 16 push %ss d343: 00 00 add %al,(%eax) d345: 13 1e adc (%esi),%ebx d347: 00 00 add %al,(%eax) d349: 0c 1c or $0x1c,%al d34b: 65 gs d34c: 0d d0 13 00 00 or $0x13d0,%eax d351: 1c 66 sbb $0x66,%al d353: 43 inc %ebx d354: 00 00 add %al,(%eax) d356: 00 02 add %al,(%edx) d358: 23 00 and (%eax),%eax d35a: 0d 22 10 00 00 or $0x1022,%eax d35f: 1c 69 sbb $0x69,%al d361: dc 16 fcoml (%esi) d363: 00 00 add %al,(%eax) d365: 02 23 add (%ebx),%ah d367: 04 0d add $0xd,%al d369: ca 21 00 lret $0x21 d36c: 00 1c 6a add %bl,(%edx,%ebp,2) d36f: dc 16 fcoml (%esi) d371: 00 00 add %al,(%eax) d373: 02 23 add (%ebx),%ah d375: 08 00 or %al,(%eax) d377: 06 push %es d378: 04 a5 add $0xa5,%al d37a: 16 push %ss d37b: 00 00 add %al,(%eax) d37d: 0b fd or %ebp,%edi d37f: 16 push %ss d380: 00 00 add %al,(%eax) d382: 21 22 and %esp,(%edx) d384: 00 00 add %al,(%eax) d386: 04 1c add $0x1c,%al d388: 6f outsl %ds:(%esi),(%dx) d389: 0d 13 1e 00 00 or $0x1e13,%eax d38e: 1c 70 sbb $0x70,%al d390: dc 16 fcoml (%esi) d392: 00 00 add %al,(%eax) d394: 02 23 add (%ebx),%ah d396: 00 00 add %al,(%eax) d398: 09 68 0f or %ebp,0xf(%eax) d39b: 00 00 add %al,(%eax) d39d: 18 1c 08 sbb %bl,(%eax,%ecx,1) d3a0: 17 pop %ss d3a1: 00 00 add %al,(%eax) d3a3: 0b 4d 17 or 0x17(%ebp),%ecx d3a6: 00 00 add %al,(%eax) d3a8: b9 03 00 00 14 mov $0x14000003,%ecx d3ad: 18 1c 0d 72 27 00 00 sbb %bl,0x2772(,%ecx,1) d3b4: 18 21 sbb %ah,(%ecx) d3b6: 8b 00 mov (%eax),%eax d3b8: 00 00 add %al,(%eax) d3ba: 02 23 add (%ebx),%ah d3bc: 00 0d 23 0a 00 00 add %cl,0xa23 d3c2: 18 23 sbb %ah,(%ebx) d3c4: bb 14 00 00 02 mov $0x2000014,%ebx d3c9: 23 04 0d b1 17 00 00 and 0x17b1(,%ecx,1),%eax d3d0: 18 24 4d 17 00 00 02 sbb %ah,0x2000017(,%ecx,2) d3d7: 23 08 and (%eax),%ecx d3d9: 0d e1 18 00 00 or $0x18e1,%eax d3de: 18 25 cc 14 00 00 sbb %ah,0x14cc d3e4: 02 23 add (%ebx),%ah d3e6: 0c 00 or $0x0,%al d3e8: 09 1a or %ebx,(%edx) d3ea: 25 00 00 18 1d and $0x1d180000,%eax d3ef: 58 pop %eax d3f0: 17 pop %ss d3f1: 00 00 add %al,(%eax) d3f3: 06 push %es d3f4: 04 5e add $0x5e,%al d3f6: 17 pop %ss d3f7: 00 00 add %al,(%eax) d3f9: 0e push %cs d3fa: 7d 17 jge d413 <.debug_info+0xd413> d3fc: 00 00 add %al,(%eax) d3fe: 01 25 00 00 00 08 add %esp,0x8000000 d404: 7d 17 jge d41d <.debug_info+0xd41d> d406: 00 00 add %al,(%eax) d408: 08 8b 00 00 00 08 or %cl,0x8000000(%ebx) d40e: 25 00 00 00 08 and $0x8000000,%eax d413: bb 14 00 00 00 mov $0x14,%ebx d418: 06 push %es d419: 04 fd add $0xfd,%al d41b: 16 push %ss d41c: 00 00 add %al,(%eax) d41e: 0b ac 17 00 00 33 25 or 0x25330000(%edi,%edx,1),%ebp d425: 00 00 add %al,(%eax) d427: 18 18 sbb %bl,(%eax) d429: 32 0d 66 1d 00 00 xor 0x1d66,%cl d42f: 18 33 sbb %dh,(%ebx) d431: e8 15 00 00 02 call 200d44b d436: 23 00 and (%eax),%eax d438: 0d e1 18 00 00 or $0x18e1,%eax d43d: 18 34 cc sbb %dh,(%esp,%ecx,8) d440: 14 00 adc $0x0,%al d442: 00 02 add %al,(%edx) d444: 23 10 and (%eax),%edx d446: 00 09 add %cl,(%ecx) d448: 54 push %esp d449: 1d 00 00 18 36 sbb $0x36180000,%eax d44e: 83 17 00 adcl $0x0,(%edi) d451: 00 0b add %cl,(%ebx) d453: ee out %al,(%dx) d454: 17 pop %ss d455: 00 00 add %al,(%eax) d457: ef out %eax,(%dx) d458: 1c 00 sbb $0x0,%al d45a: 00 1c 1e add %bl,(%esi,%ebx,1) d45d: 13 0d 2a 16 00 00 adc 0x162a,%ecx d463: 1f pop %ds d464: 38 6e 00 cmp %ch,0x0(%esi) d467: 00 00 add %al,(%eax) d469: 02 23 add (%ebx),%ah d46b: 00 0d 71 0d 00 00 add %cl,0xd71 d471: 1f pop %ds d472: 3f aas d473: e8 15 00 00 02 call 200d48d d478: 23 04 0d b2 0c 00 00 and 0xcb2(,%ecx,1),%eax d47f: 1f pop %ds d480: 40 inc %eax d481: cc int3 d482: 14 00 adc $0x0,%al d484: 00 02 add %al,(%edx) d486: 23 14 00 and (%eax,%eax,1),%edx d489: 0b 25 18 00 00 ee or 0xee000018,%esp d48f: 07 pop %es d490: 00 00 add %al,(%eax) d492: 20 21 and %ah,(%ecx) d494: 2c 0d sub $0xd,%al d496: 2a 16 sub (%esi),%dl d498: 00 00 add %al,(%eax) d49a: 21 2d 5b 16 00 00 and %ebp,0x165b d4a0: 02 23 add (%ebx),%ah d4a2: 00 0d 27 04 00 00 add %cl,0x427 d4a8: 21 2e and %ebp,(%esi) d4aa: 25 00 00 00 02 and $0x2000000,%eax d4af: 23 04 0d 9d 0b 00 00 and 0xb9d(,%ecx,1),%eax d4b6: 21 2f and %ebp,(%edi) d4b8: ac lods %ds:(%esi),%al d4b9: 17 pop %ss d4ba: 00 00 add %al,(%eax) d4bc: 02 23 add (%ebx),%ah d4be: 08 00 or %al,(%eax) d4c0: 0f 66 18 pcmpgtd (%eax),%mm3 d4c3: 00 00 add %al,(%eax) d4c5: 2c 20 sub $0x20,%al d4c7: 10 0d a5 08 00 00 adc %cl,0x8a5 d4cd: 20 0c 25 00 00 00 02 and %cl,0x2000000 d4d4: 23 00 and (%eax),%eax d4d6: 0c 73 or $0x73,%al d4d8: 65 gs d4d9: 6d insl (%dx),%es:(%edi) d4da: 00 20 add %ah,(%eax) d4dc: 0d ee 17 00 00 or $0x17ee,%eax d4e1: 02 23 add (%ebx),%ah d4e3: 04 0c add $0xc,%al d4e5: 6c insb (%dx),%es:(%edi) d4e6: 64 fs d4e7: 74 00 je d4e9 <.debug_info+0xd4e9> d4e9: 20 0e and %cl,(%esi) d4eb: bb 14 00 00 02 mov $0x2000014,%ebx d4f0: 23 24 0d b4 15 00 00 and 0x15b4(,%ecx,1),%esp d4f7: 20 0f and %cl,(%edi) d4f9: bb 14 00 00 02 mov $0x2000014,%ebx d4fe: 23 28 and (%eax),%ebp d500: 00 09 add %cl,(%ecx) d502: f8 clc d503: 18 00 sbb %al,(%eax) d505: 00 20 add %ah,(%eax) d507: 10 25 18 00 00 09 adc %ah,0x9000018 d50d: af scas %es:(%edi),%eax d50e: 06 push %es d50f: 00 00 add %al,(%eax) d511: 28 07 sub %al,(%edi) d513: 43 inc %ebx d514: 00 00 add %al,(%eax) d516: 00 03 add %al,(%ebx) d518: 8c 18 movw %ds,(%eax) d51a: 00 00 add %al,(%eax) d51c: cf iret d51d: 00 00 add %al,(%eax) d51f: 00 04 3c add %al,(%esp,%edi,1) d522: 00 00 add %al,(%eax) d524: 00 03 add %al,(%ebx) d526: 00 0b add %cl,(%ebx) d528: 33 19 xor (%ecx),%ebx d52a: 00 00 add %al,(%eax) d52c: d8 20 fsubs (%eax) d52e: 00 00 add %al,(%eax) d530: 2c 0d sub $0xd,%al d532: 22 0d 71 09 00 00 and 0x971,%cl d538: 0d 23 7c 18 00 or $0x187c23,%eax d53d: 00 02 add %al,(%edx) d53f: 23 00 and (%eax),%eax d541: 0d eb 22 00 00 or $0x22eb,%eax d546: 0d 25 67 00 00 or $0x6725,%eax d54b: 00 02 add %al,(%edx) d54d: 23 04 0d 82 0e 00 00 and 0xe82(,%ecx,1),%eax d554: 0d 26 cf 00 00 or $0xcf26,%eax d559: 00 02 add %al,(%edx) d55b: 23 06 and (%esi),%eax d55d: 0d 05 19 00 00 or $0x1905,%eax d562: 0d 27 cf 00 00 or $0xcf27,%eax d567: 00 02 add %al,(%edx) d569: 23 07 and (%edi),%eax d56b: 0d 69 0d 00 00 or $0xd69,%eax d570: 0d 28 9c 05 00 or $0x59c28,%eax d575: 00 02 add %al,(%edx) d577: 23 08 and (%eax),%ecx d579: 0d c3 10 00 00 or $0x10c3,%eax d57e: 0d 29 33 19 00 or $0x193329,%eax d583: 00 02 add %al,(%edx) d585: 23 10 and (%eax),%edx d587: 0d f4 1a 00 00 or $0x1af4,%eax d58c: 0d 2a 43 00 00 or $0x432a,%eax d591: 00 02 add %al,(%edx) d593: 23 1c 0d 45 25 00 00 and 0x2545(,%ecx,1),%ebx d59a: 0d 2b 67 00 00 or $0x672b,%eax d59f: 00 02 add %al,(%edx) d5a1: 23 20 and (%eax),%esp d5a3: 0d 69 23 00 00 or $0x2369,%eax d5a8: 0d 2c 67 00 00 or $0x672c,%eax d5ad: 00 02 add %al,(%edx) d5af: 23 22 and (%edx),%esp d5b1: 0d c6 1f 00 00 or $0x1fc6,%eax d5b6: 0d 2d 43 00 00 or $0x432d,%eax d5bb: 00 02 add %al,(%edx) d5bd: 23 24 0d cf 03 00 00 and 0x3cf(,%ecx,1),%esp d5c4: 0d 2e 43 00 00 or $0x432e,%eax d5c9: 00 02 add %al,(%edx) d5cb: 23 28 and (%eax),%ebp d5cd: 00 03 add %al,(%ebx) d5cf: 43 inc %ebx d5d0: 19 00 sbb %eax,(%eax) d5d2: 00 cf add %cl,%bh d5d4: 00 00 add %al,(%eax) d5d6: 00 04 3c add %al,(%esp,%edi,1) d5d9: 00 00 add %al,(%eax) d5db: 00 0b add %cl,(%ebx) d5dd: 00 0b add %cl,(%ebx) d5df: b2 19 mov $0x19,%dl d5e1: 00 00 add %al,(%eax) d5e3: ee out %al,(%dx) d5e4: 23 00 and (%eax),%eax d5e6: 00 14 0d 3b 0d 68 21 add %dl,0x21680d3b(,%ecx,1) d5ed: 00 00 add %al,(%eax) d5ef: 0d 3c 05 01 00 or $0x1053c,%eax d5f4: 00 02 add %al,(%edx) d5f6: 23 00 and (%eax),%eax d5f8: 0d 20 0b 00 00 or $0xb20,%eax d5fd: 0d 3d 05 01 00 or $0x1053d,%eax d602: 00 02 add %al,(%edx) d604: 23 01 and (%ecx),%eax d606: 0d 6a 05 00 00 or $0x56a,%eax d60b: 0d 3e 05 01 00 or $0x1053e,%eax d610: 00 02 add %al,(%edx) d612: 23 02 and (%edx),%eax d614: 0d 3e 1a 00 00 or $0x1a3e,%eax d619: 0d 3f 05 01 00 or $0x1053f,%eax d61e: 00 02 add %al,(%edx) d620: 23 03 and (%ebx),%eax d622: 0d 04 21 00 00 or $0x2104,%eax d627: 0d 42 43 00 00 or $0x4342,%eax d62c: 00 02 add %al,(%edx) d62e: 23 04 0d 09 0c 00 00 and 0xc09(,%ecx,1),%eax d635: 0d 46 43 00 00 or $0x4346,%eax d63a: 00 02 add %al,(%edx) d63c: 23 08 and (%eax),%ecx d63e: 0d d3 1e 00 00 or $0x1ed3,%eax d643: 0d 47 b2 19 00 or $0x19b247,%eax d648: 00 02 add %al,(%edx) d64a: 23 0c 00 and (%eax,%eax,1),%ecx d64d: 03 c2 add %edx,%eax d64f: 19 00 sbb %eax,(%eax) d651: 00 43 00 add %al,0x0(%ebx) d654: 00 00 add %al,(%eax) d656: 04 3c add $0x3c,%al d658: 00 00 add %al,(%eax) d65a: 00 01 add %al,(%ecx) d65c: 00 0b add %cl,(%ebx) d65e: f9 stc d65f: 19 00 sbb %eax,(%eax) d661: 00 07 add %al,(%edi) d663: 04 00 add $0x0,%al d665: 00 08 add %cl,(%eax) d667: 0d 4b 0d 68 21 or $0x21680d4b,%eax d66c: 00 00 add %al,(%eax) d66e: 0d 4c 05 01 00 or $0x1054c,%eax d673: 00 02 add %al,(%edx) d675: 23 00 and (%eax),%eax d677: 0d 94 20 00 00 or $0x2094,%eax d67c: 0d 4d 05 01 00 or $0x1054d,%eax d681: 00 02 add %al,(%edx) d683: 23 01 and (%ecx),%eax d685: 0d 78 22 00 00 or $0x2278,%eax d68a: 0d 4e f9 19 00 or $0x19f94e,%eax d68f: 00 02 add %al,(%edx) d691: 23 02 and (%edx),%eax d693: 00 03 add %al,(%ebx) d695: 09 1a or %ebx,(%edx) d697: 00 00 add %al,(%eax) d699: 05 01 00 00 04 add $0x4000001,%eax d69e: 3c 00 cmp $0x0,%al d6a0: 00 00 add %al,(%eax) d6a2: 05 00 0b 5c 1a add $0x1a5c0b00,%eax d6a7: 00 00 add %al,(%eax) d6a9: a4 movsb %ds:(%esi),%es:(%edi) d6aa: 0a 00 or (%eax),%al d6ac: 00 08 add %cl,(%eax) d6ae: 0d 67 0d 68 21 or $0x21680d67,%eax d6b3: 00 00 add %al,(%eax) d6b5: 0d 68 05 01 00 or $0x10568,%eax d6ba: 00 02 add %al,(%edx) d6bc: 23 00 and (%eax),%eax d6be: 0d 20 0b 00 00 or $0xb20,%eax d6c3: 0d 69 05 01 00 or $0x10569,%eax d6c8: 00 02 add %al,(%edx) d6ca: 23 01 and (%ecx),%eax d6cc: 0d 6a 05 00 00 or $0x56a,%eax d6d1: 0d 6a 05 01 00 or $0x1056a,%eax d6d6: 00 02 add %al,(%edx) d6d8: 23 02 and (%edx),%eax d6da: 0d 84 18 00 00 or $0x1884,%eax d6df: 0d 6b 05 01 00 or $0x1056b,%eax d6e4: 00 02 add %al,(%edx) d6e6: 23 03 and (%ebx),%eax d6e8: 0d 07 16 00 00 or $0x1607,%eax d6ed: 0d 6d 43 00 00 or $0x436d,%eax d6f2: 00 02 add %al,(%edx) d6f4: 23 04 00 and (%eax,%eax,1),%eax d6f7: 0b cb or %ebx,%ecx d6f9: 1a 00 sbb (%eax),%al d6fb: 00 7b 1c add %bh,0x1c(%ebx) d6fe: 00 00 add %al,(%eax) d700: 08 0d 9e 0d 68 21 or %cl,0x21680d9e d706: 00 00 add %al,(%eax) d708: 0d 9f 05 01 00 or $0x1059f,%eax d70d: 00 02 add %al,(%edx) d70f: 23 00 and (%eax),%eax d711: 0d 22 05 00 00 or $0x522,%eax d716: 0d a0 05 01 00 or $0x105a0,%eax d71b: 00 02 add %al,(%edx) d71d: 23 01 and (%ecx),%eax d71f: 0d 46 0b 00 00 or $0xb46,%eax d724: 0d a1 05 01 00 or $0x105a1,%eax d729: 00 02 add %al,(%edx) d72b: 23 02 and (%edx),%eax d72d: 0d 53 17 00 00 or $0x1753,%eax d732: 0d a2 05 01 00 or $0x105a2,%eax d737: 00 02 add %al,(%edx) d739: 23 03 and (%ebx),%eax d73b: 0d 1a 1b 00 00 or $0x1b1a,%eax d740: 0d a3 05 01 00 or $0x105a3,%eax d745: 00 02 add %al,(%edx) d747: 23 04 0d 40 1b 00 00 and 0x1b40(,%ecx,1),%eax d74e: 0d a4 05 01 00 or $0x105a4,%eax d753: 00 02 add %al,(%edx) d755: 23 05 0d 25 09 00 and 0x9250d,%eax d75b: 00 0d a5 67 00 00 add %cl,0x67a5 d761: 00 02 add %al,(%edx) d763: 23 06 and (%esi),%eax d765: 00 0b add %cl,(%ebx) d767: e6 1a out %al,$0x1a d769: 00 00 add %al,(%eax) d76b: 0e push %cs d76c: 1a 00 sbb (%eax),%al d76e: 00 20 add %ah,(%eax) d770: 11 28 adc %ebp,(%eax) d772: 0d a4 07 00 00 or $0x7a4,%eax d777: 11 29 adc %ebp,(%ecx) d779: f5 cmc d77a: 03 00 add (%eax),%eax d77c: 00 02 add %al,(%edx) d77e: 23 00 and (%eax),%eax d780: 00 09 add %cl,(%ecx) d782: 86 1b xchg %bl,(%ebx) d784: 00 00 add %al,(%eax) d786: 11 2c cb adc %ebp,(%ebx,%ecx,8) d789: 1a 00 sbb (%eax),%al d78b: 00 0b add %cl,(%ebx) d78d: eb 1c jmp d7ab <.debug_info+0xd7ab> d78f: 00 00 add %al,(%eax) d791: 8e 26 movw (%esi),%fs d793: 00 00 add %al,(%eax) d795: 8c 10 movw %ss,(%eax) d797: 14 0d adc $0xd,%al d799: 53 push %ebx d79a: 14 00 adc $0x0,%al d79c: 00 10 add %dl,(%eax) d79e: 15 c9 00 00 00 adc $0xc9,%eax d7a3: 02 23 add (%ebx),%ah d7a5: 00 0d 5f 0b 00 00 add %cl,0xb5f d7ab: 10 16 adc %dl,(%esi) d7ad: f1 icebp d7ae: 1c 00 sbb $0x0,%al d7b0: 00 02 add %al,(%edx) d7b2: 23 04 0d 04 14 00 00 and 0x1404(,%ecx,1),%eax d7b9: 10 18 adc %bl,(%eax) d7bb: f1 icebp d7bc: 1c 00 sbb $0x0,%al d7be: 00 02 add %al,(%edx) d7c0: 23 08 and (%eax),%ecx d7c2: 0d 2b 10 00 00 or $0x102b,%eax d7c7: 10 19 adc %bl,(%ecx) d7c9: fd std d7ca: 1c 00 sbb $0x0,%al d7cc: 00 02 add %al,(%edx) d7ce: 23 0c 0d e8 20 00 00 and 0x20e8(,%ecx,1),%ecx d7d5: 10 1a adc %bl,(%edx) d7d7: 25 00 00 00 02 and $0x2000000,%eax d7dc: 23 10 and (%eax),%edx d7de: 0d b1 07 00 00 or $0x7b1,%eax d7e3: 10 1b adc %bl,(%ebx) d7e5: 25 00 00 00 02 and $0x2000000,%eax d7ea: 23 14 0d 7b 0d 00 00 and 0xd7b(,%ecx,1),%edx d7f1: 10 1c 25 00 00 00 02 adc %bl,0x2000000 d7f8: 23 18 and (%eax),%ebx d7fa: 0d 9f 11 00 00 or $0x119f,%eax d7ff: 10 1d 25 00 00 00 adc %bl,0x25 d805: 02 23 add (%ebx),%ah d807: 1c 0d sbb $0xd,%al d809: 2c 1a sub $0x1a,%al d80b: 00 00 add %al,(%eax) d80d: 10 1e adc %bl,(%esi) d80f: 18 1d 00 00 02 23 sbb %bl,0x23020000 d815: 20 0d 0a 0e 00 00 and %cl,0xe0a d81b: 10 1f adc %bl,(%edi) d81d: 2e cs d81e: 1d 00 00 02 23 sbb $0x23020000,%eax d823: 24 0d and $0xd,%al d825: d8 03 fadds (%ebx) d827: 00 00 add %al,(%eax) d829: 10 20 adc %ah,(%eax) d82b: 25 00 00 00 02 and $0x2000000,%eax d830: 23 28 and (%eax),%ebp d832: 0d a8 04 00 00 or $0x4a8,%eax d837: 10 21 adc %ah,(%ecx) d839: 25 00 00 00 02 and $0x2000000,%eax d83e: 23 2c 0d c2 1d 00 00 and 0x1dc2(,%ecx,1),%ebp d845: 10 22 adc %ah,(%edx) d847: 36 ss d848: 1d 00 00 02 23 sbb $0x23020000,%eax d84d: 30 0d 93 15 00 00 xor %cl,0x1593 d853: 10 23 adc %ah,(%ebx) d855: 4c dec %esp d856: 1d 00 00 02 23 sbb $0x23020000,%eax d85b: 34 0d xor $0xd,%al d85d: 25 1d 00 00 10 and $0x1000001d,%eax d862: 25 36 1d 00 00 and $0x1d36,%eax d867: 02 23 add (%ebx),%ah d869: 38 0d 74 25 00 00 cmp %cl,0x2574 d86f: 10 26 adc %ah,(%esi) d871: 67 1d 00 00 02 23 addr16 sbb $0x23020000,%eax d877: 3c 0d cmp $0xd,%al d879: e0 13 loopne d88e <.debug_info+0xd88e> d87b: 00 00 add %al,(%eax) d87d: 10 27 adc %ah,(%edi) d87f: 7d 1d jge d89e <.debug_info+0xd89e> d881: 00 00 add %al,(%eax) d883: 02 23 add (%ebx),%ah d885: 40 inc %eax d886: 0d 22 1f 00 00 or $0x1f22,%eax d88b: 10 28 adc %ch,(%eax) d88d: 7d 1d jge d8ac <.debug_info+0xd8ac> d88f: 00 00 add %al,(%eax) d891: 02 23 add (%ebx),%ah d893: 44 inc %esp d894: 0d 67 14 00 00 or $0x1467,%eax d899: 10 29 adc %ch,(%ecx) d89b: 7d 1d jge d8ba <.debug_info+0xd8ba> d89d: 00 00 add %al,(%eax) d89f: 02 23 add (%ebx),%ah d8a1: 48 dec %eax d8a2: 0d 85 17 00 00 or $0x1785,%eax d8a7: 10 2a adc %ch,(%edx) d8a9: 93 xchg %eax,%ebx d8aa: 1d 00 00 02 23 sbb $0x23020000,%eax d8af: 4c dec %esp d8b0: 0d 5d 23 00 00 or $0x235d,%eax d8b5: 10 2c ba adc %ch,(%edx,%edi,4) d8b8: 1d 00 00 02 23 sbb $0x23020000,%eax d8bd: 50 push %eax d8be: 0d 4d 0e 00 00 or $0xe4d,%eax d8c3: 10 2d 36 1d 00 00 adc %ch,0x1d36 d8c9: 02 23 add (%ebx),%ah d8cb: 54 push %esp d8cc: 0d 84 16 00 00 or $0x1684,%eax d8d1: 10 2e adc %ch,(%esi) d8d3: 7d 1d jge d8f2 <.debug_info+0xd8f2> d8d5: 00 00 add %al,(%eax) d8d7: 02 23 add (%ebx),%ah d8d9: 58 pop %eax d8da: 0d 86 24 00 00 or $0x2486,%eax d8df: 10 2f adc %ch,(%edi) d8e1: 36 ss d8e2: 1d 00 00 02 23 sbb $0x23020000,%eax d8e7: 5c pop %esp d8e8: 0d dc 09 00 00 or $0x9dc,%eax d8ed: 10 30 adc %dh,(%eax) d8ef: d5 1d aad $0x1d d8f1: 00 00 add %al,(%eax) d8f3: 02 23 add (%ebx),%ah d8f5: 60 pusha d8f6: 0d 08 0f 00 00 or $0xf08,%eax d8fb: 10 34 f7 adc %dh,(%edi,%esi,8) d8fe: 1d 00 00 02 23 sbb $0x23020000,%eax d903: 64 fs d904: 0d 5a 11 00 00 or $0x115a,%eax d909: 10 36 adc %dh,(%esi) d90b: 0e push %cs d90c: 1e push %ds d90d: 00 00 add %al,(%eax) d90f: 02 23 add (%ebx),%ah d911: 68 0d de 1a 00 push $0x1ade0d d916: 00 10 add %dl,(%eax) d918: 3c 34 cmp $0x34,%al d91a: 1e push %ds d91b: 00 00 add %al,(%eax) d91d: 02 23 add (%ebx),%ah d91f: 6c insb (%dx),%es:(%edi) d920: 0d 69 10 00 00 or $0x1069,%eax d925: 10 3d 4f 1e 00 00 adc %bh,0x1e4f d92b: 02 23 add (%ebx),%ah d92d: 70 0d jo d93c <.debug_info+0xd93c> d92f: 9b fwait d930: 22 00 and (%eax),%al d932: 00 10 add %dl,(%eax) d934: 3f aas d935: 65 gs d936: 1e push %ds d937: 00 00 add %al,(%eax) d939: 02 23 add (%ebx),%ah d93b: 74 0d je d94a <.debug_info+0xd94a> d93d: 9c pushf d93e: 24 00 and $0x0,%al d940: 00 10 add %dl,(%eax) d942: 40 inc %eax d943: 43 inc %ebx d944: 00 00 add %al,(%eax) d946: 00 02 add %al,(%edx) d948: 23 78 0d and 0xd(%eax),%edi d94b: 05 26 00 00 10 add $0x10000026,%eax d950: 41 inc %ecx d951: 7b 1e jnp d971 <.debug_info+0xd971> d953: 00 00 add %al,(%eax) d955: 02 23 add (%ebx),%ah d957: 7c 0d jl d966 <.debug_info+0xd966> d959: 29 1c 00 sub %ebx,(%eax,%eax,1) d95c: 00 10 add %dl,(%eax) d95e: 44 inc %esp d95f: 92 xchg %eax,%edx d960: 1e push %ds d961: 00 00 add %al,(%eax) d963: 03 23 add (%ebx),%esp d965: 80 01 0d addb $0xd,(%ecx) d968: c7 (bad) d969: 24 00 and $0x0,%al d96b: 00 10 add %dl,(%eax) d96d: 45 inc %ebp d96e: 4a dec %edx d96f: 00 00 add %al,(%eax) d971: 00 03 add %al,(%ebx) d973: 23 84 01 0d 8b 19 00 and 0x198b0d(%ecx,%eax,1),%eax d97a: 00 10 add %dl,(%eax) d97c: 46 inc %esi d97d: 4a dec %edx d97e: 00 00 add %al,(%eax) d980: 00 03 add %al,(%ebx) d982: 23 88 01 00 1f 01 and 0x11f0001(%eax),%ecx d988: 25 00 00 00 06 and $0x6000000,%eax d98d: 04 eb add $0xeb,%al d98f: 1c 00 sbb $0x0,%al d991: 00 1f add %bl,(%edi) d993: 01 d3 add %edx,%ebx d995: 05 00 00 06 04 add $0x4060000,%eax d99a: f7 1c 00 negl (%eax,%eax,1) d99d: 00 0e add %cl,(%esi) d99f: 18 1d 00 00 01 43 sbb %bl,0x43010000 d9a5: 00 00 add %al,(%eax) d9a7: 00 08 add %cl,(%eax) d9a9: e6 1a out %al,$0x1a d9ab: 00 00 add %al,(%eax) d9ad: 08 25 00 00 00 00 or %ah,0x0 d9b3: 06 push %es d9b4: 04 03 add $0x3,%al d9b6: 1d 00 00 0e 2e sbb $0x2e0e0000,%eax d9bb: 1d 00 00 01 43 sbb $0x43010000,%eax d9c0: 00 00 add %al,(%eax) d9c2: 00 08 add %cl,(%eax) d9c4: 25 00 00 00 00 and $0x0,%eax d9c9: 06 push %es d9ca: 04 1e add $0x1e,%al d9cc: 1d 00 00 20 01 sbb $0x1200000,%eax d9d1: 06 push %es d9d2: 04 34 add $0x34,%al d9d4: 1d 00 00 0e 4c sbb $0x4c0e0000,%eax d9d9: 1d 00 00 01 e6 sbb $0xe6010000,%eax d9de: 1a 00 sbb (%eax),%al d9e0: 00 08 add %cl,(%eax) d9e2: e6 1a out %al,$0x1a d9e4: 00 00 add %al,(%eax) d9e6: 00 06 add %al,(%esi) d9e8: 04 3c add $0x3c,%al d9ea: 1d 00 00 0e 67 sbb $0x670e0000,%eax d9ef: 1d 00 00 01 25 sbb $0x25010000,%eax d9f4: 00 00 add %al,(%eax) d9f6: 00 08 add %cl,(%eax) d9f8: 25 00 00 00 08 and $0x8000000,%eax d9fd: 25 00 00 00 00 and $0x0,%eax da02: 06 push %es da03: 04 52 add $0x52,%al da05: 1d 00 00 0e 7d sbb $0x7d0e0000,%eax da0a: 1d 00 00 01 25 sbb $0x25010000,%eax da0f: 00 00 add %al,(%eax) da11: 00 08 add %cl,(%eax) da13: 25 00 00 00 00 and $0x0,%eax da18: 06 push %es da19: 04 6d add $0x6d,%al da1b: 1d 00 00 0e 93 sbb $0x930e0000,%eax da20: 1d 00 00 01 e6 sbb $0xe6010000,%eax da25: 1a 00 sbb (%eax),%al da27: 00 08 add %cl,(%eax) da29: 25 00 00 00 00 and $0x0,%eax da2e: 06 push %es da2f: 04 83 add $0x83,%al da31: 1d 00 00 0e ae sbb $0xae0e0000,%eax da36: 1d 00 00 01 25 sbb $0x25010000,%eax da3b: 00 00 add %al,(%eax) da3d: 00 08 add %cl,(%eax) da3f: ae scas %es:(%edi),%al da40: 1d 00 00 08 b4 sbb $0xb4080000,%eax da45: 1d 00 00 00 06 sbb $0x6000000,%eax da4a: 04 43 add $0x43,%al da4c: 19 00 sbb %eax,(%eax) da4e: 00 06 add %al,(%esi) da50: 04 5c add $0x5c,%al da52: 1a 00 sbb (%eax),%al da54: 00 06 add %al,(%esi) da56: 04 99 add $0x99,%al da58: 1d 00 00 0e d5 sbb $0xd50e0000,%eax da5d: 1d 00 00 01 3a sbb $0x3a010000,%eax da62: 01 00 add %eax,(%eax) da64: 00 08 add %cl,(%eax) da66: 3a 01 cmp (%ecx),%al da68: 00 00 add %al,(%eax) da6a: 08 25 00 00 00 00 or %ah,0x0 da70: 06 push %es da71: 04 c0 add $0xc0,%al da73: 1d 00 00 07 f1 sbb $0xf1070000,%eax da78: 1d 00 00 01 08 sbb $0x8010000,%eax da7d: f1 icebp da7e: 1d 00 00 08 c9 sbb $0xc9080000,%eax da83: 00 00 add %al,(%eax) da85: 00 08 add %cl,(%eax) da87: b4 1d mov $0x1d,%ah da89: 00 00 add %al,(%eax) da8b: 00 06 add %al,(%esi) da8d: 04 c2 add $0xc2,%al da8f: 19 00 sbb %eax,(%eax) da91: 00 06 add %al,(%esi) da93: 04 db add $0xdb,%al da95: 1d 00 00 07 0e sbb $0xe070000,%eax da9a: 1e push %ds da9b: 00 00 add %al,(%eax) da9d: 01 08 add %ecx,(%eax) da9f: f1 icebp daa0: 1d 00 00 08 b4 sbb $0xb4080000,%eax daa5: 1d 00 00 00 06 sbb $0x6000000,%eax daaa: 04 fd add $0xfd,%al daac: 1d 00 00 0e 2e sbb $0x2e0e0000,%eax dab1: 1e push %ds dab2: 00 00 add %al,(%eax) dab4: 01 25 00 00 00 08 add %esp,0x8000000 daba: 2e cs dabb: 1e push %ds dabc: 00 00 add %al,(%eax) dabe: 08 c9 or %cl,%cl dac0: 00 00 add %al,(%eax) dac2: 00 08 add %cl,(%eax) dac4: c9 leave dac5: 00 00 add %al,(%eax) dac7: 00 00 add %al,(%eax) dac9: 06 push %es daca: 04 8c add $0x8c,%al dacc: 18 00 sbb %al,(%eax) dace: 00 06 add %al,(%esi) dad0: 04 14 add $0x14,%al dad2: 1e push %ds dad3: 00 00 add %al,(%eax) dad5: 0e push %cs dad6: 4f dec %edi dad7: 1e push %ds dad8: 00 00 add %al,(%eax) dada: 01 25 00 00 00 08 add %esp,0x8000000 dae0: c9 leave dae1: 00 00 add %al,(%eax) dae3: 00 08 add %cl,(%eax) dae5: c9 leave dae6: 00 00 add %al,(%eax) dae8: 00 00 add %al,(%eax) daea: 06 push %es daeb: 04 3a add $0x3a,%al daed: 1e push %ds daee: 00 00 add %al,(%eax) daf0: 0e push %cs daf1: 65 gs daf2: 1e push %ds daf3: 00 00 add %al,(%eax) daf5: 01 8b 00 00 00 08 add %ecx,0x8000000(%ebx) dafb: 43 inc %ebx dafc: 00 00 add %al,(%eax) dafe: 00 00 add %al,(%eax) db00: 06 push %es db01: 04 55 add $0x55,%al db03: 1e push %ds db04: 00 00 add %al,(%eax) db06: 0e push %cs db07: 7b 1e jnp db27 <.debug_info+0xdb27> db09: 00 00 add %al,(%eax) db0b: 01 8b 00 00 00 08 add %ecx,0x8000000(%ebx) db11: d3 05 00 00 00 06 roll %cl,0x6000000 db17: 04 6b add $0x6b,%al db19: 1e push %ds db1a: 00 00 add %al,(%eax) db1c: 07 pop %es db1d: 92 xchg %eax,%edx db1e: 1e push %ds db1f: 00 00 add %al,(%eax) db21: 01 08 add %ecx,(%eax) db23: d3 05 00 00 08 25 roll %cl,0x25080000 db29: 00 00 add %al,(%eax) db2b: 00 00 add %al,(%eax) db2d: 06 push %es db2e: 04 81 add $0x81,%al db30: 1e push %ds db31: 00 00 add %al,(%eax) db33: 0b dd or %ebp,%ebx db35: 1e push %ds db36: 00 00 add %al,(%eax) db38: 1c 13 sbb $0x13,%al db3a: 00 00 add %al,(%eax) db3c: 10 2b adc %ch,(%ebx) db3e: 1e push %ds db3f: 0d 07 22 00 00 or $0x2207,%eax db44: 2b 7a dd sub 0xffffffdd(%edx),%edi db47: 1e push %ds db48: 00 00 add %al,(%eax) db4a: 02 23 add (%ebx),%ah db4c: 00 0d ad 09 00 00 add %cl,0x9ad db52: 2b 7b dd sub 0xffffffdd(%ebx),%edi db55: 1e push %ds db56: 00 00 add %al,(%eax) db58: 02 23 add (%ebx),%ah db5a: 04 0d add $0xd,%al db5c: 01 04 00 add %eax,(%eax,%eax,1) db5f: 00 2b add %ch,(%ebx) db61: 7c 25 jl db88 <.debug_info+0xdb88> db63: 00 00 add %al,(%eax) db65: 00 02 add %al,(%edx) db67: 23 08 and (%eax),%ecx db69: 0d cf 14 00 00 or $0x14cf,%eax db6e: 2b 7d e3 sub 0xffffffe3(%ebp),%edi db71: 1e push %ds db72: 00 00 add %al,(%eax) db74: 02 23 add (%ebx),%ah db76: 0c 00 or $0x0,%al db78: 06 push %es db79: 04 98 add $0x98,%al db7b: 1e push %ds db7c: 00 00 add %al,(%eax) db7e: 06 push %es db7f: 04 0c add $0xc,%al db81: 01 00 add %eax,(%eax) db83: 00 0b add %cl,(%ebx) db85: 20 1f and %bl,(%edi) db87: 00 00 add %al,(%eax) db89: e0 07 loopne db92 <.debug_info+0xdb92> db8b: 00 00 add %al,(%eax) db8d: 18 2b sbb %ch,(%ebx) db8f: 83 0d bd 14 00 00 2b orl $0x2b,0x14bd db96: 84 5b 16 test %bl,0x16(%ebx) db99: 00 00 add %al,(%eax) db9b: 02 23 add (%ebx),%ah db9d: 00 0d 66 1d 00 00 add %cl,0x1d66 dba3: 2b 85 e8 15 00 00 sub 0x15e8(%ebp),%eax dba9: 02 23 add (%ebx),%ah dbab: 04 0d add $0xd,%al dbad: 80 20 00 andb $0x0,(%eax) dbb0: 00 2b add %ch,(%ebx) dbb2: 86 dd xchg %bl,%ch dbb4: 1e push %ds dbb5: 00 00 add %al,(%eax) dbb7: 02 23 add (%ebx),%ah dbb9: 14 00 adc $0x0,%al dbbb: 0b 3b or (%ebx),%edi dbbd: 1f pop %ds dbbe: 00 00 add %al,(%eax) dbc0: 90 nop dbc1: 04 00 add $0x0,%al dbc3: 00 04 2b add %al,(%ebx,%ebp,1) dbc6: 89 0d 51 1b 00 00 mov %ecx,0x1b51 dbcc: 2b 8a 3b 1f 00 00 sub 0x1f3b(%edx),%ecx dbd2: 02 23 add (%ebx),%ah dbd4: 00 00 add %al,(%eax) dbd6: 06 push %es dbd7: 04 e9 add $0xe9,%al dbd9: 1e push %ds dbda: 00 00 add %al,(%eax) dbdc: 0f 58 1f addps (%edi),%xmm3 dbdf: 00 00 add %al,(%eax) dbe1: 08 2e or %ch,(%esi) dbe3: 1a 0c 73 sbb (%ebx,%esi,2),%cl dbe6: 69 67 00 2e 19 b2 19 imul $0x19b2192e,0x0(%edi),%esp dbed: 00 00 add %al,(%eax) dbef: 02 23 add (%ebx),%ah dbf1: 00 00 add %al,(%eax) dbf3: 09 ce or %ecx,%esi dbf5: 16 push %ss dbf6: 00 00 add %al,(%eax) dbf8: 2e 1a 41 1f sbb %cs:0x1f(%ecx),%al dbfc: 00 00 add %al,(%eax) dbfe: 09 fd or %edi,%ebp dc00: 11 00 adc %eax,(%eax) dc02: 00 33 add %dh,(%ebx) dc04: 11 50 00 adc %edx,0x0(%eax) dc07: 00 00 add %al,(%eax) dc09: 09 73 13 or %esi,0x13(%ebx) dc0c: 00 00 add %al,(%eax) dc0e: 33 12 xor (%edx),%edx dc10: 79 1f jns dc31 <.debug_info+0xdc31> dc12: 00 00 add %al,(%eax) dc14: 06 push %es dc15: 04 63 add $0x63,%al dc17: 1f pop %ds dc18: 00 00 add %al,(%eax) dc1a: 09 07 or %eax,(%edi) dc1c: 1c 00 sbb $0x0,%al dc1e: 00 33 add %dh,(%ebx) dc20: 14 34 adc $0x34,%al dc22: 1d 00 00 09 56 sbb $0x56090000,%eax dc27: 16 push %ss dc28: 00 00 add %al,(%eax) dc2a: 33 15 95 1f 00 00 xor 0x1f95,%edx dc30: 06 push %es dc31: 04 7f add $0x7f,%al dc33: 1f pop %ds dc34: 00 00 add %al,(%eax) dc36: 0b e0 or %eax,%esp dc38: 1f pop %ds dc39: 00 00 add %al,(%eax) dc3b: d1 07 roll (%edi) dc3d: 00 00 add %al,(%eax) dc3f: 14 2e adc $0x2e,%al dc41: 7b 0d jnp dc50 <.debug_info+0xdc50> dc43: 5d pop %ebp dc44: 21 00 and %eax,(%eax) dc46: 00 2e add %ch,(%esi) dc48: 7c 6e jl dcb8 <.debug_info+0xdcb8> dc4a: 1f pop %ds dc4b: 00 00 add %al,(%eax) dc4d: 02 23 add (%ebx),%ah dc4f: 00 0d 5a 27 00 00 add %cl,0x275a dc55: 2e 7d 43 jge,pn dc9b <.debug_info+0xdc9b> dc58: 00 00 add %al,(%eax) dc5a: 00 02 add %al,(%edx) dc5c: 23 04 0d aa 08 00 00 and 0x8aa(,%ecx,1),%eax dc63: 2e 7e 8a jle,pn dbf0 <.debug_info+0xdbf0> dc66: 1f pop %ds dc67: 00 00 add %al,(%eax) dc69: 02 23 add (%ebx),%ah dc6b: 08 0d ec 10 00 00 or %cl,0x10ec dc71: 2e 7f 58 jg,pn dccc <.debug_info+0xdccc> dc74: 1f pop %ds dc75: 00 00 add %al,(%eax) dc77: 02 23 add (%ebx),%ah dc79: 0c 00 or $0x0,%al dc7b: 0b fa or %edx,%edi dc7d: 1f pop %ds dc7e: 00 00 add %al,(%eax) dc80: 94 xchg %eax,%esp dc81: 1f pop %ds dc82: 00 00 add %al,(%eax) dc84: 14 2e adc $0x2e,%al dc86: 82 (bad) dc87: 0c 73 or $0x73,%al dc89: 61 popa dc8a: 00 2e add %ch,(%esi) dc8c: 83 9b 1f 00 00 02 23 sbbl $0x23,0x200001f(%ebx) dc93: 00 00 add %al,(%eax) dc95: 21 1d 20 00 00 2e and %ebx,0x2e000020 dc9b: 22 00 and (%eax),%al dc9d: 00 04 37 add %al,(%edi,%esi,1) dca0: 07 pop %es dca1: 22 5c 12 00 and 0x0(%edx,%edx,1),%bl dca5: 00 37 add %dh,(%edi) dca7: 08 25 00 00 00 22 or %ah,0x22000000 dcad: 3c 0b cmp $0xb,%al dcaf: 00 00 add %al,(%eax) dcb1: 37 aaa dcb2: 09 bb 14 00 00 00 or %edi,0x14(%ebx) dcb8: 09 43 0c or %eax,0xc(%ebx) dcbb: 00 00 add %al,(%eax) dcbd: 37 aaa dcbe: 0a fa or %dl,%bh dcc0: 1f pop %ds dcc1: 00 00 add %al,(%eax) dcc3: 0f 4d 20 cmovge (%eax),%esp dcc6: 00 00 add %al,(%eax) dcc8: 08 37 or %dh,(%edi) dcca: 34 0d xor $0xd,%al dccc: 03 1a add (%edx),%ebx dcce: 00 00 add %al,(%eax) dcd0: 37 aaa dcd1: 32 66 01 xor 0x1(%esi),%ah dcd4: 00 00 add %al,(%eax) dcd6: 02 23 add (%ebx),%ah dcd8: 00 0d 57 08 00 00 add %cl,0x857 dcde: 37 aaa dcdf: 33 87 01 00 00 02 xor 0x2000001(%edi),%eax dce5: 23 04 00 and (%eax,%eax,1),%eax dce8: 0f 9c 20 setl (%eax) dceb: 00 00 add %al,(%eax) dced: 10 37 adc %dh,(%edi) dcef: 3d 0d 8b 04 00 cmp $0x48b0d,%eax dcf4: 00 37 add %dh,(%edi) dcf6: 38 71 01 cmp %dh,0x1(%ecx) dcf9: 00 00 add %al,(%eax) dcfb: 02 23 add (%ebx),%ah dcfd: 00 0d b9 15 00 00 add %cl,0x15b9 dd03: 37 aaa dd04: 39 25 00 00 00 02 cmp %esp,0x2000000 dd0a: 23 04 0d c4 14 00 00 and 0x14c4(,%ecx,1),%eax dd11: 37 aaa dd12: 3a 9c 20 00 00 02 23 cmp 0x23020000(%eax),%bl dd19: 08 0d e6 0f 00 00 or %cl,0xfe6 dd1f: 37 aaa dd20: 3b 1d 20 00 00 02 cmp 0x2000020,%ebx dd26: 23 08 and (%eax),%ecx dd28: 0d b6 17 00 00 or $0x17b6,%eax dd2d: 37 aaa dd2e: 3c 25 cmp $0x25,%al dd30: 00 00 add %al,(%eax) dd32: 00 02 add %al,(%edx) dd34: 23 0c 00 and (%eax,%eax,1),%ecx dd37: 03 ab 20 00 00 cf add 0xcf000020(%ebx),%ebp dd3d: 00 00 add %al,(%eax) dd3f: 00 1c 3c add %bl,(%esp,%edi,1) dd42: 00 00 add %al,(%eax) dd44: 00 00 add %al,(%eax) dd46: 0f de 20 pmaxub (%eax),%mm4 dd49: 00 00 add %al,(%eax) dd4b: 0c 37 or $0x37,%al dd4d: 44 inc %esp dd4e: 0d 03 1a 00 00 or $0x1a03,%eax dd53: 37 aaa dd54: 41 inc %ecx dd55: 66 01 00 add %ax,(%eax) dd58: 00 02 add %al,(%edx) dd5a: 23 00 and (%eax),%eax dd5c: 0d 57 08 00 00 or $0x857,%eax dd61: 37 aaa dd62: 42 inc %edx dd63: 87 01 xchg %eax,(%ecx) dd65: 00 00 add %al,(%eax) dd67: 02 23 add (%ebx),%ah dd69: 04 0d add $0xd,%al dd6b: e6 0f out %al,$0xf dd6d: 00 00 add %al,(%eax) dd6f: 37 aaa dd70: 43 inc %ebx dd71: 1d 20 00 00 02 sbb $0x2000020,%eax dd76: 23 08 and (%eax),%ecx dd78: 00 0f add %cl,(%edi) dd7a: 2d 21 00 00 14 sub $0x14000021,%eax dd7f: 37 aaa dd80: 4d dec %ebp dd81: 0d 03 1a 00 00 or $0x1a03,%eax dd86: 37 aaa dd87: 48 dec %eax dd88: 66 01 00 add %ax,(%eax) dd8b: 00 02 add %al,(%edx) dd8d: 23 00 and (%eax),%eax dd8f: 0d 57 08 00 00 or $0x857,%eax dd94: 37 aaa dd95: 49 dec %ecx dd96: 87 01 xchg %eax,(%ecx) dd98: 00 00 add %al,(%eax) dd9a: 02 23 add (%ebx),%ah dd9c: 04 0d add $0xd,%al dd9e: 87 0d 00 00 37 4a xchg %ecx,0x4a370000 dda4: 25 00 00 00 02 and $0x2000000,%eax dda9: 23 08 and (%eax),%ecx ddab: 0d 22 14 00 00 or $0x1422,%eax ddb0: 37 aaa ddb1: 4b dec %ebx ddb2: be 01 00 00 02 mov $0x2000001,%esi ddb7: 23 0c 0d 2c 25 00 00 and 0x252c(,%ecx,1),%ecx ddbe: 37 aaa ddbf: 4c dec %esp ddc0: be 01 00 00 02 mov $0x2000001,%esi ddc5: 23 10 and (%eax),%edx ddc7: 00 0f add %cl,(%edi) ddc9: 44 inc %esp ddca: 21 00 and %eax,(%eax) ddcc: 00 04 37 add %al,(%edi,%esi,1) ddcf: 55 push %ebp ddd0: 0d d0 1d 00 00 or $0x1dd0,%eax ddd5: 37 aaa ddd6: 51 push %ecx ddd7: bb 14 00 00 02 mov $0x2000014,%ebx dddc: 23 00 and (%eax),%eax ddde: 00 0f add %cl,(%edi) dde0: 69 21 00 00 08 37 imul $0x37080000,(%ecx),%esp dde6: 5b pop %ebx dde7: 0d 34 15 00 00 or $0x1534,%eax ddec: 37 aaa dded: 59 pop %ecx ddee: 6e outsb %ds:(%esi),(%dx) ddef: 00 00 add %al,(%eax) ddf1: 00 02 add %al,(%edx) ddf3: 23 00 and (%eax),%eax ddf5: 0c 5f or $0x5f,%al ddf7: 66 data16 ddf8: 64 00 37 add %dh,%fs:(%edi) ddfb: 5a pop %edx ddfc: 25 00 00 00 02 and $0x2000000,%eax de01: 23 04 00 and (%eax,%eax,1),%eax de04: 23 bf 21 00 00 74 and 0x74000021(%edi),%edi de0a: 37 aaa de0b: 5c pop %esp de0c: 22 c4 and %ah,%al de0e: 14 00 adc $0x0,%al de10: 00 37 add %dh,(%edi) de12: 2e cs de13: bf 21 00 00 22 mov $0x22000021,%edi de18: 13 0a adc (%edx),%ecx de1a: 00 00 add %al,(%eax) de1c: 37 aaa de1d: 34 28 xor $0x28,%al de1f: 20 00 and %al,(%eax) de21: 00 22 add %ah,(%edx) de23: 68 08 00 00 37 push $0x37000008 de28: 3d 4d 20 00 00 cmp $0x204d,%eax de2d: 24 5f and $0x5f,%al de2f: 72 74 jb dea5 <.debug_info+0xdea5> de31: 00 37 add %dh,(%edi) de33: 44 inc %esp de34: ab stos %eax,%es:(%edi) de35: 20 00 and %al,(%eax) de37: 00 22 add %ah,(%edx) de39: 8d 07 lea (%edi),%eax de3b: 00 00 add %al,(%eax) de3d: 37 aaa de3e: 4d dec %ebp de3f: de 20 fisub (%eax) de41: 00 00 add %al,(%eax) de43: 22 fa and %dl,%bh de45: 20 00 and %al,(%eax) de47: 00 37 add %dh,(%edi) de49: 55 push %ebp de4a: 2d 21 00 00 22 sub $0x22000021,%eax de4f: 61 popa de50: 05 00 00 37 5b add $0x5b370000,%eax de55: 44 inc %esp de56: 21 00 and %eax,(%eax) de58: 00 00 add %al,(%eax) de5a: 03 cf add %edi,%ecx de5c: 21 00 and %eax,(%eax) de5e: 00 25 00 00 00 04 add %ah,0x4000000 de64: 3c 00 cmp $0x0,%al de66: 00 00 add %al,(%eax) de68: 1c 00 sbb $0x0,%al de6a: 0b 14 22 or (%edx),%edx de6d: 00 00 add %al,(%eax) de6f: bc 09 00 00 80 mov $0x80000009,%esp de74: 2e 09 0d 2c 12 00 00 or %ecx,%cs:0x122c de7b: 37 aaa de7c: 29 25 00 00 00 02 sub %esp,0x2000000 de82: 23 00 and (%eax),%eax de84: 0d fb 1d 00 00 or $0x1dfb,%eax de89: 37 aaa de8a: 2a 25 00 00 00 02 sub 0x2000000,%ah de90: 23 04 0d 54 12 00 00 and 0x1254(,%ecx,1),%eax de97: 37 aaa de98: 2b 25 00 00 00 02 sub 0x2000000,%esp de9e: 23 08 and (%eax),%ecx dea0: 0d b2 1c 00 00 or $0x1cb2,%eax dea5: 37 aaa dea6: 5c pop %esp dea7: 69 21 00 00 02 23 imul $0x23020000,(%ecx),%esp dead: 0c 00 or $0x0,%al deaf: 09 12 or %edx,(%edx) deb1: 23 00 and (%eax),%eax deb3: 00 37 add %dh,(%edi) deb5: 5d pop %ebp deb6: cf iret deb7: 21 00 and %eax,(%eax) deb9: 00 0b add %cl,(%ebx) debb: e0 22 loopne dedf <.debug_info+0xdedf> debd: 00 00 add %al,(%eax) debf: 1a 21 sbb (%ecx),%ah dec1: 00 00 add %al,(%eax) dec3: 34 2a xor $0x2a,%al dec5: 13 13 adc (%ebx),%edx dec7: ca 0f 00 lret $0xf deca: 00 1a add %bl,(%edx) decc: 02 02 add (%edx),%al dece: 5b pop %ebx decf: 16 push %ss ded0: 00 00 add %al,(%eax) ded2: 02 23 add (%ebx),%ah ded4: 00 13 add %dl,(%ebx) ded6: 14 20 adc $0x20,%al ded8: 00 00 add %al,(%eax) deda: 1a 03 sbb (%ebx),%al dedc: 02 5b 16 add 0x16(%ebx),%bl dedf: 00 00 add %al,(%eax) dee1: 02 23 add (%ebx),%ah dee3: 04 13 add $0x13,%al dee5: 25 17 00 00 1a and $0x1a000017,%eax deea: 04 02 add $0x2,%al deec: 5b pop %ebx deed: 16 push %ss deee: 00 00 add %al,(%eax) def0: 02 23 add (%ebx),%ah def2: 08 13 or %dl,(%ebx) def4: c0 11 00 rclb $0x0,(%ecx) def7: 00 1a add %bl,(%edx) def9: 05 02 5b 16 00 add $0x165b02,%eax defe: 00 02 add %al,(%edx) df00: 23 0c 13 and (%ebx,%edx,1),%ecx df03: d7 xlat %ds:(%ebx) df04: 0b 00 or (%eax),%eax df06: 00 1a add %bl,(%edx) df08: 07 pop %es df09: 02 5b 16 add 0x16(%ebx),%bl df0c: 00 00 add %al,(%eax) df0e: 02 23 add (%ebx),%ah df10: 10 13 adc %dl,(%ebx) df12: 05 25 00 00 1a add $0x1a000025,%eax df17: 08 02 or %al,(%edx) df19: 5b pop %ebx df1a: 16 push %ss df1b: 00 00 add %al,(%eax) df1d: 02 23 add (%ebx),%ah df1f: 14 13 adc $0x13,%al df21: 0e push %cs df22: 10 00 adc %al,(%eax) df24: 00 1a add %bl,(%edx) df26: 0b 02 or (%edx),%eax df28: 43 inc %ebx df29: 00 00 add %al,(%eax) df2b: 00 02 add %al,(%edx) df2d: 23 18 and (%eax),%ebx df2f: 13 d6 adc %esi,%edx df31: 05 00 00 1a 0c add $0xc1a0000,%eax df36: 02 43 00 add 0x0(%ebx),%al df39: 00 00 add %al,(%eax) df3b: 02 23 add (%ebx),%ah df3d: 1c 13 sbb $0x13,%al df3f: 4e dec %esi df40: 1e push %ds df41: 00 00 add %al,(%eax) df43: 1a 0f sbb (%edi),%cl df45: 02 34 36 add (%esi,%esi,1),%dh df48: 00 00 add %al,(%eax) df4a: 02 23 add (%ebx),%ah df4c: 20 13 and %dl,(%ebx) df4e: 9e sahf df4f: 0f 00 00 sldt (%eax) df52: 1a 10 sbb (%eax),%dl df54: 02 34 36 add (%esi,%esi,1),%dh df57: 00 00 add %al,(%eax) df59: 02 23 add (%ebx),%ah df5b: 24 13 and $0x13,%al df5d: e0 15 loopne df74 <.debug_info+0xdf74> df5f: 00 00 add %al,(%eax) df61: 1a 14 02 sbb (%edx,%eax,1),%dl df64: cc int3 df65: 14 00 adc $0x0,%al df67: 00 02 add %al,(%edx) df69: 23 28 and (%eax),%ebp df6b: 12 75 69 adc 0x69(%ebp),%dh df6e: 64 00 1a add %bl,%fs:(%edx) df71: 15 02 87 01 00 adc $0x18702,%eax df76: 00 02 add %al,(%edx) df78: 23 30 and (%eax),%esi df7a: 00 06 add %al,(%esi) df7c: 04 1f add $0x1f,%al df7e: 22 00 and (%eax),%al df80: 00 0b add %cl,(%ebx) df82: 0f mov (bad),%db0 df83: 23 00 and (%eax),%eax df85: 00 c0 add %al,%al df87: 11 00 adc %eax,(%eax) df89: 00 10 add %dl,(%eax) df8b: 2a 19 sub (%ecx),%bl df8d: 0d 86 19 00 00 or $0x1986,%eax df92: 2a 1a sub (%edx),%bl df94: cc int3 df95: 14 00 adc $0x0,%al df97: 00 02 add %al,(%edx) df99: 23 00 and (%eax),%eax df9b: 0d a0 06 00 00 or $0x6a0,%eax dfa0: 2a 1b sub (%ebx),%bl dfa2: 58 pop %eax dfa3: 1f pop %ds dfa4: 00 00 add %al,(%eax) dfa6: 02 23 add (%ebx),%ah dfa8: 08 00 or %al,(%eax) dfaa: 0b 9a 23 00 00 00 or 0x23(%edx),%ebx dfb0: 0e push %cs dfb1: 00 00 add %al,(%eax) dfb3: 30 2d 07 0d 2a 16 xor %ch,0x162a0d07 dfb9: 00 00 add %al,(%eax) dfbb: 2d 08 5b 16 00 sub $0x165b08,%eax dfc0: 00 02 add %al,(%edx) dfc2: 23 00 and (%eax),%eax dfc4: 0d 66 1d 00 00 or $0x1d66,%eax dfc9: 2d 09 34 16 00 sub $0x163409,%eax dfce: 00 02 add %al,(%edx) dfd0: 23 04 0d e1 1f 00 00 and 0x1fe1(,%ecx,1),%eax dfd7: 2d 0a 25 00 00 sub $0x250a,%eax dfdc: 00 02 add %al,(%edx) dfde: 23 14 0d 10 0d 00 00 and 0xd10(,%ecx,1),%edx dfe5: 2d 0b a0 23 00 sub $0x23a00b,%eax dfea: 00 02 add %al,(%edx) dfec: 23 18 and (%eax),%ebx dfee: 0c 70 or $0x70,%al dff0: 77 64 ja e056 <.debug_info+0xe056> dff2: 00 2d 0b a0 23 00 add %ch,0x23a00b dff8: 00 02 add %al,(%edx) dffa: 23 1c 0d ff 15 00 00 and 0x15ff(,%ecx,1),%ebx e001: 2d 0b a0 23 00 sub $0x23a00b,%eax e006: 00 02 add %al,(%edx) e008: 23 20 and (%eax),%esp e00a: 0d 90 0a 00 00 or $0xa90,%eax e00f: 2d 0c ac 23 00 sub $0x23ac0c,%eax e014: 00 02 add %al,(%edx) e016: 23 24 0d 24 1e 00 00 and 0x1e24(,%ecx,1),%esp e01d: 2d 0c ac 23 00 sub $0x23ac0c,%eax e022: 00 02 add %al,(%edx) e024: 23 28 and (%eax),%ebp e026: 0d 6d 0c 00 00 or $0xc6d,%eax e02b: 2d 0c ac 23 00 sub $0x23ac0c,%eax e030: 00 02 add %al,(%edx) e032: 23 2c 00 and (%eax,%eax,1),%ebp e035: 1a 30 sbb (%eax),%dh e037: 07 pop %es e038: 00 00 add %al,(%eax) e03a: 01 06 add %eax,(%esi) e03c: 04 9a add $0x9a,%al e03e: 23 00 and (%eax),%eax e040: 00 1a add %bl,(%edx) e042: 11 22 adc %esp,(%edx) e044: 00 00 add %al,(%eax) e046: 01 06 add %eax,(%esi) e048: 04 a6 add $0xa6,%al e04a: 23 00 and (%eax),%eax e04c: 00 0b add %cl,(%ebx) e04e: db 23 (bad) (%ebx) e050: 00 00 add %al,(%eax) e052: ae scas %es:(%edi),%al e053: 1b 00 sbb (%eax),%eax e055: 00 1c 01 add %bl,(%ecx,%eax,1) e058: 36 ss e059: 0d e8 04 00 00 or $0x4e8,%eax e05e: 22 0e and (%esi),%cl e060: 8b 00 mov (%eax),%eax e062: 00 00 add %al,(%eax) e064: 02 23 add (%ebx),%ah e066: 00 0d 9d 0b 00 00 add %cl,0xb9d e06c: 22 0f and (%edi),%cl e06e: ac lods %ds:(%esi),%al e06f: 17 pop %ss e070: 00 00 add %al,(%eax) e072: 02 23 add (%ebx),%ah e074: 04 00 add $0x0,%al e076: 09 18 or %ebx,(%eax) e078: 17 pop %ss e079: 00 00 add %al,(%eax) e07b: 39 0c e6 cmp %ecx,(%esi) e07e: 23 00 and (%eax),%eax e080: 00 1a add %bl,(%edx) e082: 84 10 test %dl,(%eax) e084: 00 00 add %al,(%eax) e086: 01 0b add %ecx,(%ebx) e088: 15 24 00 00 52 adc $0x52000024,%eax e08d: 26 00 00 add %al,%es:(%eax) e090: 0c 12 or $0x12,%al e092: 1b 0d 4d 19 00 00 sbb 0x194d,%ecx e098: 12 1c cc adc (%esp,%ecx,8),%bl e09b: 14 00 adc $0x0,%al e09d: 00 02 add %al,(%edx) e09f: 23 00 and (%eax),%eax e0a1: 0d e4 14 00 00 or $0x14e4,%eax e0a6: 12 1d 43 00 00 00 adc 0x43,%bl e0ac: 02 23 add (%ebx),%ah e0ae: 08 00 or %al,(%eax) e0b0: 0b 2e or (%esi),%ebp e0b2: 24 00 and $0x0,%al e0b4: 00 a4 17 00 00 00 12 add %ah,0x12000000(%edi,%edx,1) e0bb: 29 0c 78 sub %ecx,(%eax,%edi,2) e0be: 00 12 add %dl,(%edx) e0c0: 2a 2e sub (%esi),%ch e0c2: 24 00 and $0x0,%al e0c4: 00 02 add %al,(%edx) e0c6: 23 00 and (%eax),%eax e0c8: 00 03 add %al,(%ebx) e0ca: 3d 24 00 00 cf cmp $0xcf000024,%eax e0cf: 00 00 add %al,(%eax) e0d1: 00 1c 3c add %bl,(%esp,%edi,1) e0d4: 00 00 add %al,(%eax) e0d6: 00 00 add %al,(%eax) e0d8: 0b 82 24 00 00 fb or 0xfb000024(%edx),%eax e0de: 06 push %es e0df: 00 00 add %al,(%eax) e0e1: 14 12 adc $0x12,%al e0e3: 46 inc %esi e0e4: 0d 2a 16 00 00 or $0x162a,%eax e0e9: 12 47 25 adc 0x25(%edi),%al e0ec: 00 00 add %al,(%eax) e0ee: 00 02 add %al,(%edx) e0f0: 23 00 and (%eax),%eax e0f2: 0d b0 0d 00 00 or $0xdb0,%eax e0f7: 12 48 25 adc 0x25(%eax),%cl e0fa: 00 00 add %al,(%eax) e0fc: 00 02 add %al,(%edx) e0fe: 23 04 0d 59 0b 00 00 and 0xb59(,%ecx,1),%eax e105: 12 49 25 adc 0x25(%ecx),%cl e108: 00 00 add %al,(%eax) e10a: 00 02 add %al,(%edx) e10c: 23 08 and (%eax),%ecx e10e: 0d 86 19 00 00 or $0x1986,%eax e113: 12 4a cc adc 0xffffffcc(%edx),%cl e116: 14 00 adc $0x0,%al e118: 00 02 add %al,(%edx) e11a: 23 0c 00 and (%eax,%eax,1),%ecx e11d: 0b b9 24 00 00 f6 or 0xf6000024(%ecx),%edi e123: 08 00 or %al,(%eax) e125: 00 80 12 4d 0c 70 add %al,0x700c4d12(%eax) e12b: 63 70 00 arpl %si,0x0(%eax) e12e: 12 4e b9 adc 0xffffffb9(%esi),%cl e131: 24 00 and $0x0,%al e133: 00 02 add %al,(%edx) e135: 23 00 and (%eax),%eax e137: 0d bd 0d 00 00 or $0xdbd,%eax e13c: 12 50 30 adc 0x30(%eax),%dl e13f: 01 00 add %eax,(%eax) e141: 00 02 add %al,(%edx) e143: 23 28 and (%eax),%ebp e145: 0d f2 26 00 00 or $0x26f2,%eax e14a: 12 51 c9 adc 0xffffffc9(%ecx),%dl e14d: 24 00 and $0x0,%al e14f: 00 02 add %al,(%edx) e151: 23 29 and (%ecx),%ebp e153: 00 03 add %al,(%ebx) e155: c9 leave e156: 24 00 and $0x0,%al e158: 00 3d 24 00 00 04 add %bh,0x4000024 e15e: 3c 00 cmp $0x0,%al e160: 00 00 add %al,(%eax) e162: 01 00 add %eax,(%eax) e164: 03 d9 add %ecx,%ebx e166: 24 00 and $0x0,%al e168: 00 30 add %dh,(%eax) e16a: 01 00 add %eax,(%eax) e16c: 00 04 3c add %al,(%esp,%edi,1) e16f: 00 00 add %al,(%eax) e171: 00 08 add %cl,(%eax) e173: 00 10 add %dl,(%eax) e175: a7 cmpsl %es:(%edi),%ds:(%esi) e176: 26 00 00 add %al,%es:(%eax) e179: e3 06 jecxz e181 <.debug_info+0xe181> e17b: 00 00 add %al,(%eax) e17d: 80 12 12 adcb $0x12,(%edx) e180: 8b 0d 2b 0b 00 00 mov 0xb2b,%ecx e186: 12 8d 43 00 00 00 adc 0x43(%ebp),%cl e18c: 02 23 add (%ebx),%ah e18e: 00 0d de 04 00 00 add %cl,0x4de e194: 12 8e 43 00 00 00 adc 0x43(%esi),%cl e19a: 02 23 add (%ebx),%ah e19c: 04 0d add $0xd,%al e19e: f4 hlt e19f: 04 00 add $0x0,%al e1a1: 00 12 add %dl,(%edx) e1a3: 8e 43 00 movw 0x0(%ebx),%es e1a6: 00 00 add %al,(%eax) e1a8: 02 23 add (%ebx),%ah e1aa: 08 0d 4a 0f 00 00 or %cl,0xf4a e1b0: 12 8e 43 00 00 00 adc 0x43(%esi),%cl e1b6: 02 23 add (%ebx),%ah e1b8: 0c 0d or $0xd,%al e1ba: 2b 17 sub (%edi),%edx e1bc: 00 00 add %al,(%eax) e1be: 12 97 67 04 00 00 adc 0x467(%edi),%dl e1c4: 02 23 add (%ebx),%ah e1c6: 10 0d 82 13 00 00 adc %cl,0x1382 e1cc: 12 a1 a7 26 00 00 adc 0x26a7(%ecx),%ah e1d2: 03 23 add (%ebx),%esp e1d4: 80 01 0d addb $0xd,(%ecx) e1d7: 66 1d 00 00 sbb $0x0,%ax e1db: 12 a6 e8 15 00 00 adc 0x15e8(%esi),%ah e1e1: 03 23 add (%ebx),%esp e1e3: 80 21 0d andb $0xd,(%ecx) e1e6: 52 push %edx e1e7: 26 00 00 add %al,%es:(%eax) e1ea: 12 ab b7 26 00 00 adc 0x26b7(%ebx),%ch e1f0: 03 23 add (%ebx),%esp e1f2: 90 nop e1f3: 21 0d 3b 0e 00 00 and %ecx,0xe3b e1f9: 12 ae 15 24 00 00 adc 0x2415(%esi),%ch e1ff: 03 23 add (%ebx),%esp e201: 80 23 0d andb $0xd,(%ebx) e204: bf 16 00 00 12 mov $0x12000016,%edi e209: b1 e8 mov $0xe8,%cl e20b: 15 00 00 03 23 adc $0x23030000,%eax e210: 80 23 0d andb $0xd,(%ebx) e213: 3c 1e cmp $0x1e,%al e215: 00 00 add %al,(%eax) e217: 12 b2 cc 14 00 00 adc 0x14cc(%edx),%dh e21d: 03 23 add (%ebx),%esp e21f: 90 nop e220: 23 0d 51 25 00 00 and 0x2551,%ecx e226: 12 b3 cc 14 00 00 adc 0x14cc(%ebx),%dh e22c: 03 23 add (%ebx),%esp e22e: 98 cwtl e22f: 23 0d 12 15 00 00 and 0x1512,%ecx e235: 12 b4 43 00 00 00 03 adc 0x3000000(%ebx,%eax,2),%dh e23c: 23 a0 23 0d d4 22 and 0x22d40d23(%eax),%esp e242: 00 00 add %al,(%eax) e244: 12 b5 43 00 00 00 adc 0x43(%ebp),%dh e24a: 03 23 add (%ebx),%esp e24c: a4 movsb %ds:(%esi),%es:(%edi) e24d: 23 0d 1b 1d 00 00 and 0x1d1b,%ecx e253: 12 b6 43 00 00 00 adc 0x43(%esi),%dh e259: 03 23 add (%ebx),%esp e25b: a8 23 test $0x23,%al e25d: 0d 94 06 00 00 or $0x694,%eax e262: 12 b7 43 00 00 00 adc 0x43(%edi),%dh e268: 03 23 add (%ebx),%esp e26a: ac lods %ds:(%esi),%al e26b: 23 0d 48 16 00 00 and 0x1648,%ecx e271: 12 b8 43 00 00 00 adc 0x43(%eax),%bh e277: 03 23 add (%ebx),%esp e279: b0 23 mov $0x23,%al e27b: 0d 1a 1a 00 00 or $0x1a1a,%eax e280: 12 b9 25 00 00 00 adc 0x25(%ecx),%bh e286: 03 23 add (%ebx),%esp e288: b4 23 mov $0x23,%ah e28a: 0d d7 16 00 00 or $0x16d7,%eax e28f: 12 bc 5b 16 00 00 03 adc 0x3000016(%ebx,%ebx,2),%bh e296: 23 b8 23 0d 15 18 and 0x18150d23(%eax),%edi e29c: 00 00 add %al,(%eax) e29e: 12 bf c7 26 00 00 adc 0x26c7(%edi),%bh e2a4: 03 23 add (%ebx),%esp e2a6: bc 23 0d c2 13 mov $0x13c20d23,%esp e2ab: 00 00 add %al,(%eax) e2ad: 12 ce adc %dh,%cl e2af: 25 00 00 00 03 and $0x3000000,%eax e2b4: 23 e0 and %eax,%esp e2b6: 23 0d a6 0e 00 00 and 0xea6,%ecx e2bc: 12 d1 adc %cl,%dl e2be: 15 24 00 00 03 adc $0x3000024,%eax e2c3: 23 80 24 0d b8 10 and 0x10b80d24(%eax),%eax e2c9: 00 00 add %al,(%eax) e2cb: 12 ec adc %ah,%ch e2cd: d7 xlat %ds:(%ebx) e2ce: 26 00 00 add %al,%es:(%eax) e2d1: 03 23 add (%ebx),%esp e2d3: 80 24 0d e2 11 00 00 andb $0x12,0x11e2(,%ecx,1) e2da: 12 e2db: ed in (%dx),%eax e2dc: 43 inc %ebx e2dd: 00 00 add %al,(%eax) e2df: 00 03 add %al,(%ebx) e2e1: 23 84 24 0d 66 18 00 and 0x18660d(%esp),%eax e2e8: 00 12 add %dl,(%edx) e2ea: ee out %al,(%dx) e2eb: 43 inc %ebx e2ec: 00 00 add %al,(%eax) e2ee: 00 03 add %al,(%ebx) e2f0: 23 88 24 0d 06 1d and 0x1d060d24(%eax),%ecx e2f6: 00 00 add %al,(%eax) e2f8: 12 f3 adc %bl,%dh e2fa: b5 27 mov $0x27,%ch e2fc: 00 00 add %al,(%eax) e2fe: 03 23 add (%ebx),%esp e300: 8c 24 0d 77 1b 00 00 movw %fs,0x1b77(,%ecx,1) e307: 12 f5 adc %ch,%dh e309: 43 inc %ebx e30a: 00 00 add %al,(%eax) e30c: 00 03 add %al,(%ebx) e30e: 23 90 24 13 80 26 and 0x26801324(%eax),%edx e314: 00 00 add %al,(%eax) e316: 12 01 adc (%ecx),%al e318: 01 43 00 add %eax,0x0(%ebx) e31b: 00 00 add %al,(%eax) e31d: 03 23 add (%ebx),%esp e31f: 94 xchg %eax,%esp e320: 24 13 and $0x13,%al e322: 79 21 jns e345 <.debug_info+0xe345> e324: 00 00 add %al,(%eax) e326: 12 02 adc (%edx),%al e328: 01 43 00 add %eax,0x0(%ebx) e32b: 00 00 add %al,(%eax) e32d: 03 23 add (%ebx),%esp e32f: 98 cwtl e330: 24 13 and $0x13,%al e332: 53 push %ebx e333: 14 00 adc $0x0,%al e335: 00 12 add %dl,(%edx) e337: 07 pop %es e338: 01 c9 add %ecx,%ecx e33a: 00 00 add %al,(%eax) e33c: 00 03 add %al,(%ebx) e33e: 23 9c 24 00 03 b7 26 and 0x26b70300(%esp),%ebx e345: 00 00 add %al,(%eax) e347: 82 (bad) e348: 24 00 and $0x0,%al e34a: 00 04 3c add %al,(%esp,%edi,1) e34d: 00 00 add %al,(%eax) e34f: 00 1f add %bl,(%edi) e351: 00 03 add %al,(%ebx) e353: c7 (bad) e354: 26 00 00 add %al,%es:(%eax) e357: ec in (%dx),%al e358: 23 00 and (%eax),%eax e35a: 00 04 3c add %al,(%esp,%edi,1) e35d: 00 00 add %al,(%eax) e35f: 00 0a add %cl,(%edx) e361: 00 03 add %al,(%ebx) e363: d7 xlat %ds:(%ebx) e364: 26 00 00 add %al,%es:(%eax) e367: 66 16 pushw %ss e369: 00 00 add %al,(%eax) e36b: 04 3c add $0x3c,%al e36d: 00 00 add %al,(%eax) e36f: 00 08 add %cl,(%eax) e371: 00 06 add %al,(%esi) e373: 04 ac add $0xac,%al e375: 17 pop %ss e376: 00 00 add %al,(%eax) e378: 10 b5 27 00 00 44 adc %dh,0x44000027(%ebp) e37e: 15 00 00 00 4b adc $0x4b000000,%eax e383: 12 20 adc (%eax),%ah e385: 13 af 1d 00 00 12 adc 0x1200001d(%edi),%ebp e38b: 2f das e38c: 01 ee add %ebp,%esi e38e: 27 daa e38f: 00 00 add %al,(%eax) e391: 02 23 add (%ebx),%ah e393: 00 13 add %dl,(%ebx) e395: 58 pop %eax e396: 14 00 adc $0x0,%al e398: 00 12 add %dl,(%edx) e39a: 30 01 xor %al,(%ecx) e39c: fe (bad) e39d: 27 daa e39e: 00 00 add %al,(%eax) e3a0: 04 23 add $0x23,%al e3a2: 80 94 01 13 06 09 00 adcb $0x0,0x90613(%ecx,%eax,1) e3a9: 00 e3aa: 12 31 adc (%ecx),%dh e3ac: 01 25 00 00 00 04 add %esp,0x4000000 e3b2: 23 e4 and %esp,%esp e3b4: 94 xchg %eax,%esp e3b5: 01 13 add %edx,(%ebx) e3b7: 16 push %ss e3b8: 08 00 or %al,(%eax) e3ba: 00 12 add %dl,(%edx) e3bc: 33 01 xor (%ecx),%eax e3be: 14 28 adc $0x28,%al e3c0: 00 00 add %al,(%eax) e3c2: 04 23 add $0x23,%al e3c4: e8 94 01 13 ce call ce13e55d <__crc_cr_pci_register_driver+0x30dfd5a5> e3c9: 06 push %es e3ca: 00 00 add %al,(%eax) e3cc: 12 35 01 20 28 00 adc 0x282001,%dh e3d2: 00 04 23 add %al,(%ebx) e3d5: ec in (%dx),%al e3d6: 94 xchg %eax,%esp e3d7: 01 13 add %edx,(%ebx) e3d9: 63 27 arpl %sp,(%edi) e3db: 00 00 add %al,(%eax) e3dd: 12 40 01 adc 0x1(%eax),%al e3e0: 43 inc %ebx e3e1: 00 00 add %al,(%eax) e3e3: 00 04 23 add %al,(%ebx) e3e6: f0 94 lock xchg %eax,%esp e3e8: 01 13 add %edx,(%ebx) e3ea: ec in (%dx),%al e3eb: 14 00 adc $0x0,%al e3ed: 00 12 add %dl,(%edx) e3ef: 41 inc %ecx e3f0: 01 43 00 add %eax,0x0(%ebx) e3f3: 00 00 add %al,(%eax) e3f5: 04 23 add $0x23,%al e3f7: f4 hlt e3f8: 94 xchg %eax,%esp e3f9: 01 13 add %edx,(%ebx) e3fb: f0 19 00 lock sbb %eax,(%eax) e3fe: 00 12 add %dl,(%edx) e400: 42 inc %edx e401: 01 43 00 add %eax,0x0(%ebx) e404: 00 00 add %al,(%eax) e406: 04 23 add $0x23,%al e408: f8 clc e409: 94 xchg %eax,%esp e40a: 01 13 add %edx,(%ebx) e40c: b6 0b mov $0xb,%dh e40e: 00 00 add %al,(%eax) e410: 12 44 01 25 adc 0x25(%ecx,%eax,1),%al e414: 00 00 add %al,(%eax) e416: 00 04 23 add %al,(%ebx) e419: fc cld e41a: 94 xchg %eax,%esp e41b: 01 13 add %edx,(%ebx) e41d: ff 26 jmp *(%esi) e41f: 00 00 add %al,(%eax) e421: 12 45 01 adc 0x1(%ebp),%al e424: ac lods %ds:(%esi),%al e425: 17 pop %ss e426: 00 00 add %al,(%eax) e428: 04 23 add $0x23,%al e42a: 80 95 01 13 a6 09 00 adcb $0x0,0x9a61301(%ebp) e431: 00 12 add %dl,(%edx) e433: 46 inc %esi e434: 01 a9 14 00 00 04 add %ebp,0x4000014(%ecx) e43a: 23 98 95 01 13 fe and 0xfe130195(%eax),%ebx e440: 04 00 add $0x0,%al e442: 00 12 add %dl,(%edx) e444: 47 inc %edi e445: 01 25 00 00 00 04 add %esp,0x4000000 e44b: 23 9c 95 01 00 06 04 and 0x4060001(%ebp,%edx,4),%ebx e452: dd 26 frstor (%esi) e454: 00 00 add %al,(%eax) e456: 11 d8 adc %ebx,%eax e458: 27 daa e459: 00 00 add %al,(%eax) e45b: 55 push %ebp e45c: 13 00 adc (%eax),%eax e45e: 00 14 12 add %dl,(%edx,%edx,1) e461: 1d 01 13 37 10 sbb $0x10371301,%eax e466: 00 00 add %al,(%eax) e468: 12 1e adc (%esi),%bl e46a: 01 d8 add %ebx,%eax e46c: 27 daa e46d: 00 00 add %al,(%eax) e46f: 02 23 add (%ebx),%ah e471: 00 00 add %al,(%eax) e473: 03 e8 add %eax,%ebp e475: 27 daa e476: 00 00 add %al,(%eax) e478: e8 27 00 00 04 call 400e4a4 e47d: 3c 00 cmp $0x0,%al e47f: 00 00 add %al,(%eax) e481: 04 00 add $0x0,%al e483: 06 push %es e484: 04 d9 add $0xd9,%al e486: 24 00 and $0x0,%al e488: 00 03 add %al,(%ebx) e48a: fe (bad) e48b: 27 daa e48c: 00 00 add %al,(%eax) e48e: d9 24 00 fldenv (%eax,%eax,1) e491: 00 04 3c add %al,(%esp,%edi,1) e494: 00 00 add %al,(%eax) e496: 00 03 add %al,(%ebx) e498: 00 03 add %al,(%ebx) e49a: 0e push %cs e49b: 28 00 sub %al,(%eax) e49d: 00 bb 27 00 00 04 add %bh,0x4000027(%ebx) e4a3: 3c 00 cmp $0x0,%al e4a5: 00 00 add %al,(%eax) e4a7: 04 00 add $0x0,%al e4a9: 1a 1d 10 00 00 01 sbb 0x1000010,%bl e4af: 06 push %es e4b0: 04 0e add $0xe,%al e4b2: 28 00 sub %al,(%eax) e4b4: 00 1a add %bl,(%edx) e4b6: c7 (bad) e4b7: 08 00 or %al,(%eax) e4b9: 00 01 add %al,(%ecx) e4bb: 06 push %es e4bc: 04 1a add $0x1a,%al e4be: 28 00 sub %al,(%eax) e4c0: 00 0b add %cl,(%ebx) e4c2: 87 28 xchg %ebp,(%eax) e4c4: 00 00 add %al,(%eax) e4c6: 22 0f and (%edi),%cl e4c8: 00 00 add %al,(%eax) e4ca: 28 36 sub %dh,(%esi) e4cc: 2f das e4cd: 0d 2a 16 00 00 or $0x162a,%eax e4d2: 36 31 5b 16 xor %ebx,%ss:0x16(%ebx) e4d6: 00 00 add %al,(%eax) e4d8: 02 23 add (%ebx),%ah e4da: 00 0d 71 0d 00 00 add %cl,0xd71 e4e0: 36 ss e4e1: 32 e8 xor %al,%ch e4e3: 15 00 00 02 23 adc $0x23020000,%eax e4e8: 04 0d add $0xd,%al e4ea: b2 0c mov $0xc,%dl e4ec: 00 00 add %al,(%eax) e4ee: 36 ss e4ef: 33 cc xor %esp,%ecx e4f1: 14 00 adc $0x0,%al e4f3: 00 02 add %al,(%edx) e4f5: 23 14 0d 8d 0f 00 00 and 0xf8d(,%ecx,1),%edx e4fc: 36 ss e4fd: 35 87 28 00 00 xor $0x2887,%eax e502: 02 23 add (%ebx),%ah e504: 1c 0d sbb $0xd,%al e506: 53 push %ebx e507: 14 00 adc $0x0,%al e509: 00 36 add %dh,(%esi) e50b: 36 8d 28 lea %ss:(%eax),%ebp e50e: 00 00 add %al,(%eax) e510: 02 23 add (%ebx),%ah e512: 20 0d 17 14 00 00 and %cl,0x1417 e518: 36 ss e519: 37 aaa e51a: bb 14 00 00 02 mov $0x2000014,%ebx e51f: 23 24 00 and (%eax,%eax,1),%esp e522: 06 push %es e523: 04 2a add $0x2a,%al e525: 0c 00 or $0x0,%al e527: 00 06 add %al,(%esi) e529: 04 93 add $0x93,%al e52b: 28 00 sub %al,(%eax) e52d: 00 25 cf 00 00 00 add %ah,0xcf e533: 0b dd or %ebp,%ebx e535: 28 00 sub %al,(%eax) e537: 00 02 add %al,(%edx) e539: 17 pop %ss e53a: 00 00 add %al,(%eax) e53c: 14 36 adc $0x36,%al e53e: 42 inc %edx e53f: 0d 86 19 00 00 or $0x1986,%eax e544: 36 ss e545: 43 inc %ebx e546: cc int3 e547: 14 00 adc $0x0,%al e549: 00 02 add %al,(%edx) e54b: 23 00 and (%eax),%eax e54d: 0d 97 24 00 00 or $0x2497,%eax e552: 36 ss e553: 44 inc %esp e554: a9 14 00 00 02 test $0x2000014,%eax e559: 23 08 and (%eax),%ecx e55b: 0d 66 1d 00 00 or $0x1d66,%eax e560: 36 ss e561: 46 inc %esi e562: dd 28 (bad) (%eax) e564: 00 00 add %al,(%eax) e566: 02 23 add (%ebx),%ah e568: 0c 0d or $0xd,%al e56a: 17 pop %ss e56b: 14 00 adc $0x0,%al e56d: 00 36 add %dh,(%esi) e56f: 47 inc %edi e570: bb 14 00 00 02 mov $0x2000014,%ebx e575: 23 10 and (%eax),%edx e577: 00 06 add %al,(%esi) e579: 04 26 add $0x26,%al e57b: 28 00 sub %al,(%eax) e57d: 00 0b add %cl,(%ebx) e57f: 1a 29 sbb (%ecx),%ch e581: 00 00 add %al,(%eax) e583: 7f 04 jg e589 <.debug_info+0xe589> e585: 00 00 add %al,(%eax) e587: 0c 39 or $0x39,%al e589: 49 dec %ecx e58a: 0d f3 0c 00 00 or $0xcf3,%eax e58f: 39 4a 9d cmp %ecx,0xffffff9d(%edx) e592: 01 00 add %eax,(%eax) e594: 00 02 add %al,(%edx) e596: 23 00 and (%eax),%eax e598: 0d 2d 24 00 00 or $0x242d,%eax e59d: 39 4b 1a cmp %ecx,0x1a(%ebx) e5a0: 29 00 sub %eax,(%eax) e5a2: 00 02 add %al,(%edx) e5a4: 23 04 0d e7 0a 00 00 and 0xae7(,%ecx,1),%eax e5ab: 39 4c 1a 29 cmp %ecx,0x29(%edx,%ebx,1) e5af: 00 00 add %al,(%eax) e5b1: 02 23 add (%ebx),%ah e5b3: 08 00 or %al,(%eax) e5b5: 06 push %es e5b6: 04 db add $0xdb,%al e5b8: 23 00 and (%eax),%eax e5ba: 00 0b add %cl,(%ebx) e5bc: 49 dec %ecx e5bd: 29 00 sub %eax,(%eax) e5bf: 00 0f add %cl,(%edi) e5c1: 17 pop %ss e5c2: 00 00 add %al,(%eax) e5c4: 08 27 or %ah,(%edi) e5c6: 32 0d 19 27 00 00 xor 0x2719,%cl e5cc: 27 daa e5cd: 33 49 29 xor 0x29(%ecx),%ecx e5d0: 00 00 add %al,(%eax) e5d2: 02 23 add (%ebx),%ah e5d4: 00 0d b1 17 00 00 add %cl,0x17b1 e5da: 27 daa e5db: 34 5b xor $0x5b,%al e5dd: 29 00 sub %eax,(%eax) e5df: 00 02 add %al,(%edx) e5e1: 23 04 00 and (%eax,%eax,1),%eax e5e4: 06 push %es e5e5: 04 20 add $0x20,%al e5e7: 29 00 sub %eax,(%eax) e5e9: 00 07 add %al,(%edi) e5eb: 5b pop %ebx e5ec: 29 00 sub %eax,(%eax) e5ee: 00 01 add %al,(%ecx) e5f0: 08 49 29 or %cl,0x29(%ecx) e5f3: 00 00 add %al,(%eax) e5f5: 00 06 add %al,(%esi) e5f7: 04 4f add $0x4f,%al e5f9: 29 00 sub %eax,(%eax) e5fb: 00 0b add %cl,(%ebx) e5fd: 40 inc %eax e5fe: 2a 00 sub (%eax),%al e600: 00 98 05 00 00 40 add %bl,0x40000005(%eax) e606: 27 daa e607: 5b pop %ebx e608: 0d a2 19 00 00 or $0x19a2,%eax e60d: 27 daa e60e: 5d pop %ebp e60f: 6e outsb %ds:(%esi),(%dx) e610: 00 00 add %al,(%eax) e612: 00 02 add %al,(%edx) e614: 23 00 and (%eax),%eax e616: 0d 8f 09 00 00 or $0x98f,%eax e61b: 27 daa e61c: 5e pop %esi e61d: 25 00 00 00 02 and $0x2000000,%eax e622: 23 04 0d 35 22 00 00 and 0x2235(,%ecx,1),%eax e629: 27 daa e62a: 5f pop %edi e62b: 25 00 00 00 02 and $0x2000000,%eax e630: 23 08 and (%eax),%ecx e632: 0d 59 0b 00 00 or $0xb59,%eax e637: 27 daa e638: 62 6e 00 bound %ebp,0x0(%esi) e63b: 00 00 add %al,(%eax) e63d: 02 23 add (%ebx),%ah e63f: 0c 0d or $0xd,%al e641: 4a dec %edx e642: 24 00 and $0x0,%al e644: 00 27 add %ah,(%edi) e646: 63 49 29 arpl %cx,0x29(%ecx) e649: 00 00 add %al,(%eax) e64b: 02 23 add (%ebx),%ah e64d: 10 0d 71 21 00 00 adc %cl,0x2171 e653: 27 daa e654: 64 fs e655: 40 inc %eax e656: 2a 00 sub (%eax),%al e658: 00 02 add %al,(%edx) e65a: 23 14 0d b3 22 00 00 and 0x22b3(,%ecx,1),%edx e661: 27 daa e662: 65 6e outsb %gs:(%esi),(%dx) e664: 00 00 add %al,(%eax) e666: 00 02 add %al,(%edx) e668: 23 18 and (%eax),%ebx e66a: 0d 12 25 00 00 or $0x2512,%eax e66f: 27 daa e670: 66 49 dec %cx e672: 29 00 sub %eax,(%eax) e674: 00 02 add %al,(%edx) e676: 23 1c 0d 99 04 00 00 and 0x499(,%ecx,1),%ebx e67d: 27 daa e67e: 67 40 addr16 inc %eax e680: 2a 00 sub (%eax),%al e682: 00 02 add %al,(%edx) e684: 23 20 and (%eax),%esp e686: 0d 1b 07 00 00 or $0x71b,%eax e68b: 27 daa e68c: 68 49 29 00 00 push $0x2949 e691: 02 23 add (%ebx),%ah e693: 24 0d and $0xd,%al e695: 36 ss e696: 04 00 add $0x0,%al e698: 00 27 add %ah,(%edi) e69a: 69 40 2a 00 00 02 23 imul $0x23020000,0x2a(%eax),%eax e6a1: 28 0d 71 24 00 00 sub %cl,0x2471 e6a7: 27 daa e6a8: 6a 6e push $0x6e e6aa: 00 00 add %al,(%eax) e6ac: 00 02 add %al,(%edx) e6ae: 23 2c 0c and (%esp,%ecx,1),%ebp e6b1: 63 70 75 arpl %si,0x75(%eax) e6b4: 00 27 add %ah,(%edi) e6b6: 6b 25 00 00 00 02 23 imul $0x23,0x2000000,%esp e6bd: 30 0d 81 0c 00 00 xor %cl,0xc81 e6c3: 27 daa e6c4: 6c insb (%dx),%es:(%edi) e6c5: 20 29 and %ch,(%ecx) e6c7: 00 00 add %al,(%eax) e6c9: 02 23 add (%ebx),%ah e6cb: 34 0d xor $0xd,%al e6cd: 4f dec %edi e6ce: 0d 00 00 27 6e or $0x6e270000,%eax e6d3: 6e outsb %ds:(%esi),(%dx) e6d4: 00 00 add %al,(%eax) e6d6: 00 02 add %al,(%edx) e6d8: 23 3c 00 and (%eax,%eax,1),%edi e6db: 06 push %es e6dc: 04 49 add $0x49,%al e6de: 29 00 sub %eax,(%eax) e6e0: 00 26 add %ah,(%esi) e6e2: 98 cwtl e6e3: 2a 00 sub (%eax),%al e6e5: 00 70 69 add %dh,0x69(%eax) e6e8: 64 00 24 26 add %ah,%fs:(%esi) e6ec: 2b 0d 2a 16 00 00 sub 0x162a,%ecx e6f2: 26 es e6f3: 2c 5b sub $0x5b,%al e6f5: 16 push %ss e6f6: 00 00 add %al,(%eax) e6f8: 02 23 add (%ebx),%ah e6fa: 00 0c 6e add %cl,(%esi,%ebp,2) e6fd: 72 00 jb e6ff <.debug_info+0xe6ff> e6ff: 26 es e700: 2e cs e701: 25 00 00 00 02 and $0x2000000,%eax e706: 23 04 0d 94 1d 00 00 and 0x1d94(,%ecx,1),%eax e70d: 26 es e70e: 2f das e70f: 18 15 00 00 02 23 sbb %dl,0x23020000 e715: 08 0d c1 0e 00 00 or %cl,0xec1 e71b: 26 31 98 2a 00 00 02 xor %ebx,%es:0x200002a(%eax) e722: 23 10 and (%eax),%edx e724: 0c 72 or $0x72,%al e726: 63 75 00 arpl %si,0x0(%ebp) e729: 26 32 20 xor %es:(%eax),%ah e72c: 29 00 sub %eax,(%eax) e72e: 00 02 add %al,(%edx) e730: 23 1c 00 and (%eax,%eax,1),%ebx e733: 03 a8 2a 00 00 fb add 0xfb00002a(%eax),%ebp e739: 14 00 adc $0x0,%al e73b: 00 04 3c add %al,(%esp,%edi,1) e73e: 00 00 add %al,(%eax) e740: 00 02 add %al,(%edx) e742: 00 0b add %cl,(%ebx) e744: d1 2a shrl (%edx) e746: 00 00 add %al,(%eax) e748: 43 inc %ebx e749: 11 00 adc %eax,(%eax) e74b: 00 0c 26 add %cl,(%esi) e74e: 36 ss e74f: 0d 66 1c 00 00 or $0x1c66,%eax e754: 26 es e755: 37 aaa e756: 18 15 00 00 02 23 sbb %dl,0x23020000 e75c: 00 0c 70 add %cl,(%eax,%esi,2) e75f: 69 64 00 26 38 d1 2a imul $0x2ad138,0x26(%eax,%eax,1),%esp e766: 00 e767: 00 02 add %al,(%edx) e769: 23 08 and (%eax),%ecx e76b: 00 06 add %al,(%esi) e76d: 04 46 add $0x46,%al e76f: 2a 00 sub (%eax),%al e771: 00 0f add %cl,(%edi) e773: ee out %al,(%dx) e774: 2a 00 sub (%eax),%al e776: 00 04 34 add %al,(%esp,%esi,1) e779: 0c 0d or $0xd,%al e77b: e7 0b out %eax,$0xb e77d: 00 00 add %al,(%eax) e77f: 34 0c xor $0xc,%al e781: 25 00 00 00 02 and $0x2000000,%eax e786: 23 00 and (%eax),%eax e788: 00 09 add %cl,(%ecx) e78a: 8d 25 00 00 34 0c lea 0xc340000,%esp e790: d7 xlat %ds:(%ebx) e791: 2a 00 sub (%eax),%al e793: 00 0b add %cl,(%ebx) e795: 14 2b adc $0x2b,%al e797: 00 00 add %al,(%eax) e799: 65 09 00 or %eax,%gs:(%eax) e79c: 00 04 38 add %al,(%eax,%edi,1) e79f: 21 0d 19 27 00 00 and %ecx,0x2719 e7a5: 38 22 cmp %ah,(%edx) e7a7: 14 2b adc $0x2b,%al e7a9: 00 00 add %al,(%eax) e7ab: 02 23 add (%ebx),%ah e7ad: 00 00 add %al,(%eax) e7af: 06 push %es e7b0: 04 f9 add $0xf9,%al e7b2: 2a 00 sub (%eax),%al e7b4: 00 0b add %cl,(%ebx) e7b6: 51 push %ecx e7b7: 2b 00 sub (%eax),%eax e7b9: 00 e7 add %ah,%bh e7bb: 1f pop %ds e7bc: 00 00 add %al,(%eax) e7be: 0c 38 or $0x38,%al e7c0: 2d 0d 86 19 00 sub $0x19860d,%eax e7c5: 00 38 add %bh,(%eax) e7c7: 31 f9 xor %edi,%ecx e7c9: 2a 00 sub (%eax),%al e7cb: 00 02 add %al,(%edx) e7cd: 23 00 and (%eax),%eax e7cf: 0d ec 0b 00 00 or $0xbec,%eax e7d4: 38 39 cmp %bh,(%ecx) e7d6: 6e outsb %ds:(%esi),(%dx) e7d7: 00 00 add %al,(%eax) e7d9: 00 02 add %al,(%edx) e7db: 23 04 0d 6c 0e 00 00 and 0xe6c(,%ecx,1),%eax e7e2: 38 45 14 cmp %al,0x14(%ebp) e7e5: 2b 00 sub (%eax),%eax e7e7: 00 02 add %al,(%edx) e7e9: 23 08 and (%eax),%ecx e7eb: 00 0b add %cl,(%ebx) e7ed: 7a 2b jp e81a <.debug_info+0xe81a> e7ef: 00 00 add %al,(%eax) e7f1: 1d 18 00 00 10 sbb $0x10000018,%eax e7f6: 35 50 0d 53 23 xor $0x23530d50,%eax e7fb: 00 00 add %al,(%eax) e7fd: 35 51 cc 14 00 xor $0x14cc51,%eax e802: 00 02 add %al,(%edx) e804: 23 00 and (%eax),%eax e806: 0d 5f 10 00 00 or $0x105f,%eax e80b: 35 52 cc 14 00 xor $0x14cc52,%eax e810: 00 02 add %al,(%edx) e812: 23 08 and (%eax),%ecx e814: 00 0b add %cl,(%ebx) e816: a3 2b 00 00 a1 mov %eax,0xa100002b e81b: 04 00 add $0x0,%al e81d: 00 08 add %cl,(%eax) e81f: 32 2a xor (%edx),%ch e821: 0d 6a 15 00 00 or $0x156a,%eax e826: 32 2b xor (%ebx),%ch e828: 43 inc %ebx e829: 00 00 add %al,(%eax) e82b: 00 02 add %al,(%edx) e82d: 23 00 and (%eax),%eax e82f: 0d 51 0a 00 00 or $0xa51,%eax e834: 32 2c 43 xor (%ebx,%eax,2),%ch e837: 00 00 add %al,(%eax) e839: 00 02 add %al,(%edx) e83b: 23 04 00 and (%eax,%eax,1),%eax e83e: 0b f6 or %esi,%esi e840: 2b 00 sub (%eax),%eax e842: 00 b6 0a 00 00 18 add %dh,0x1800000a(%esi) e848: 25 0a 0d a3 1a and $0x1aa30d0a,%eax e84d: 00 00 add %al,(%eax) e84f: 25 0b cc 14 00 and $0x14cc0b,%eax e854: 00 02 add %al,(%edx) e856: 23 00 and (%eax),%eax e858: 0d c0 20 00 00 or $0x20c0,%eax e85d: 25 0c 43 00 00 and $0x430c,%eax e862: 00 02 add %al,(%edx) e864: 23 08 and (%eax),%ecx e866: 0d 9b 17 00 00 or $0x179b,%eax e86b: 25 0e 02 2c 00 and $0x2c020e,%eax e870: 00 02 add %al,(%edx) e872: 23 0c 0d 89 1f 00 00 and 0x1f89(,%ecx,1),%ecx e879: 25 0f 43 00 00 and $0x430f,%eax e87e: 00 02 add %al,(%edx) e880: 23 10 and (%eax),%edx e882: 0d 00 20 00 00 or $0x2000,%eax e887: 25 11 0e 2c 00 and $0x2c0e11,%eax e88c: 00 02 add %al,(%edx) e88e: 23 14 00 and (%eax,%eax,1),%edx e891: 07 pop %es e892: 02 2c 00 add (%eax,%eax,1),%ch e895: 00 01 add %al,(%ecx) e897: 08 43 00 or %al,0x0(%ebx) e89a: 00 00 add %al,(%eax) e89c: 00 06 add %al,(%esi) e89e: 04 f6 add $0xf6,%al e8a0: 2b 00 sub (%eax),%eax e8a2: 00 1a add %bl,(%edx) e8a4: 9a 10 00 00 01 06 04 lcall $0x406,$0x1000010 e8ab: 08 2c 00 or %ch,(%eax,%eax,1) e8ae: 00 23 add %ah,(%ebx) e8b0: 28 2c 00 sub %ch,(%eax,%eax,1) e8b3: 00 08 add %cl,(%eax) e8b5: 30 39 xor %bh,(%ecx) e8b7: 22 9e 25 00 00 30 and 0x30000025(%esi),%bl e8bd: 2f das e8be: 45 inc %ebp e8bf: 01 00 add %eax,(%eax) e8c1: 00 00 add %al,(%eax) e8c3: 09 78 1f or %edi,0x1f(%eax) e8c6: 00 00 add %al,(%eax) e8c8: 30 39 xor %bh,(%ecx) e8ca: 14 2c adc $0x2c,%al e8cc: 00 00 add %al,(%eax) e8ce: 0b 78 2c or 0x2c(%eax),%edi e8d1: 00 00 add %al,(%eax) e8d3: 02 08 add (%eax),%cl e8d5: 00 00 add %al,(%eax) e8d7: 1c 25 sbb $0x25,%al e8d9: 62 0d 66 1c 00 00 bound %ecx,0x1c66 e8df: 2f das e8e0: 35 a5 16 00 00 xor $0x16a5,%eax e8e5: 02 23 add (%ebx),%ah e8e7: 00 0d c0 20 00 00 add %cl,0x20c0 e8ed: 2f das e8ee: 36 28 2c 00 sub %ch,%ss:(%eax,%eax,1) e8f2: 00 02 add %al,(%edx) e8f4: 23 0c 0d 9b 17 00 00 and 0x179b(,%ecx,1),%ecx e8fb: 2f das e8fc: 37 aaa e8fd: 8e 2c 00 movw (%eax,%eax,1),%gs e900: 00 02 add %al,(%edx) e902: 23 14 0d 00 20 00 00 and 0x2000(,%ecx,1),%edx e909: 2f das e90a: 38 2d 2d 00 00 02 cmp %ch,0x200002d e910: 23 18 and (%eax),%ebx e912: 00 0e add %cl,(%esi) e914: 88 2c 00 mov %ch,(%eax,%eax,1) e917: 00 01 add %al,(%ecx) e919: 25 00 00 00 08 and $0x8000000,%eax e91e: 88 2c 00 mov %ch,(%eax,%eax,1) e921: 00 00 add %al,(%eax) e923: 06 push %es e924: 04 33 add $0x33,%al e926: 2c 00 sub $0x0,%al e928: 00 06 add %al,(%esi) e92a: 04 78 add $0x78,%al e92c: 2c 00 sub $0x0,%al e92e: 00 0b add %cl,(%ebx) e930: 2d 2d 00 00 f3 sub $0xf300002d,%eax e935: 24 00 and $0x0,%al e937: 00 38 add %bh,(%eax) e939: 2f das e93a: 27 daa e93b: 0d 44 09 00 00 or $0x944,%eax e940: 2f das e941: 56 push %esi e942: 7c 01 jl e945 <.debug_info+0xe945> e944: 00 00 add %al,(%eax) e946: 02 23 add (%ebx),%ah e948: 00 0d 66 1d 00 00 add %cl,0x1d66 e94e: 2f das e94f: 57 push %edi e950: e8 15 00 00 02 call 200e96a e955: 23 04 0d 96 26 00 00 and 0x2696(,%ecx,1),%eax e95c: 2f das e95d: 58 pop %eax e95e: e2 16 loop e976 <.debug_info+0xe976> e960: 00 00 add %al,(%eax) e962: 02 23 add (%ebx),%ah e964: 14 0d adc $0xd,%al e966: f4 hlt e967: 10 00 adc %al,(%eax) e969: 00 2f add %ch,(%edi) e96b: 59 pop %ecx e96c: dc 16 fcoml (%esi) e96e: 00 00 add %al,(%eax) e970: 02 23 add (%ebx),%ah e972: 18 0d f6 21 00 00 sbb %cl,0x21f6 e978: 2f das e979: 5a pop %edx e97a: 28 2c 00 sub %ch,(%eax,%eax,1) e97d: 00 02 add %al,(%edx) e97f: 23 1c 0d ef 09 00 00 and 0x9ef(,%ecx,1),%ebx e986: 2f das e987: 5b pop %ebx e988: 39 2d 00 00 02 23 cmp %ebp,0x23020000 e98e: 24 0d and $0xd,%al e990: 49 dec %ecx e991: 27 daa e992: 00 00 add %al,(%eax) e994: 2f das e995: 5c pop %esp e996: 39 2d 00 00 02 23 cmp %ebp,0x23020000 e99c: 28 0d 42 0e 00 00 sub %cl,0xe42 e9a2: 2f das e9a3: 5d pop %ebp e9a4: 88 2c 00 mov %ch,(%eax,%eax,1) e9a7: 00 02 add %al,(%edx) e9a9: 23 2c 0d 73 20 00 00 and 0x2073(,%ecx,1),%ebp e9b0: 2f das e9b1: 5e pop %esi e9b2: 28 2c 00 sub %ch,(%eax,%eax,1) e9b5: 00 02 add %al,(%edx) e9b7: 23 30 and (%eax),%esi e9b9: 0d 4c 1c 00 00 or $0x1c4c,%eax e9be: 2f das e9bf: 5f pop %edi e9c0: 50 push %eax e9c1: 15 00 00 02 23 adc $0x23020000,%eax e9c6: 38 00 cmp %al,(%eax) e9c8: 06 push %es e9c9: 04 94 add $0x94,%al e9cb: 2c 00 sub $0x0,%al e9cd: 00 1f add %bl,(%edi) e9cf: 01 28 add %ebp,(%eax) e9d1: 2c 00 sub $0x0,%al e9d3: 00 06 add %al,(%esi) e9d5: 04 33 add $0x33,%al e9d7: 2d 00 00 0b a0 sub $0xa00b0000,%eax e9dc: 2d 00 00 8f 22 sub $0x228f0000,%eax e9e1: 00 00 add %al,(%eax) e9e3: 30 24 0e xor %ah,(%esi,%ecx,1) e9e6: 0d 2b 0a 00 00 or $0xa2b,%eax e9eb: 24 0f and $0xf,%al e9ed: 43 inc %ebx e9ee: 00 00 add %al,(%eax) e9f0: 00 02 add %al,(%edx) e9f2: 23 00 and (%eax),%eax e9f4: 0d a3 1a 00 00 or $0x1aa3,%eax e9f9: 24 10 and $0x10,%al e9fb: cc int3 e9fc: 14 00 adc $0x0,%al e9fe: 00 02 add %al,(%edx) ea00: 23 04 0d b1 17 00 00 and 0x17b1(,%ecx,1),%eax ea07: 24 11 and $0x11,%al ea09: ac lods %ds:(%esi),%al ea0a: 2d 00 00 02 23 sub $0x23020000,%eax ea0f: 0c 0d or $0xd,%al ea11: 89 1f mov %ebx,(%edi) ea13: 00 00 add %al,(%eax) ea15: 24 12 and $0x12,%al ea17: bb 14 00 00 02 mov $0x2000014,%ebx ea1c: 23 10 and (%eax),%edx ea1e: 0d 55 22 00 00 or $0x2255,%eax ea23: 24 13 and $0x13,%al ea25: bb 14 00 00 02 mov $0x2000014,%ebx ea2a: 23 14 0d 40 14 00 00 and 0x1440(,%ecx,1),%edx ea31: 24 14 and $0x14,%al ea33: a3 2b 00 00 02 mov %eax,0x200002b ea38: 23 18 and (%eax),%ebx ea3a: 00 07 add %al,(%edi) ea3c: ac lods %ds:(%esi),%al ea3d: 2d 00 00 01 08 sub $0x8010000,%eax ea42: bb 14 00 00 00 mov $0x14,%ebx ea47: 06 push %es ea48: 04 a0 add $0xa0,%al ea4a: 2d 00 00 1a 3e sub $0x3e1a0000,%eax ea4f: 11 00 adc %eax,(%eax) ea51: 00 01 add %al,(%ecx) ea53: 06 push %es ea54: 04 b2 add $0xb2,%al ea56: 2d 00 00 0b 80 sub $0x800b0000,%eax ea5b: 2e 00 00 add %al,%cs:(%eax) ea5e: 66 data16 ea5f: 12 00 adc (%eax),%al ea61: 00 cc add %cl,%ah ea63: 23 0d 0d e9 05 00 and 0x5e90d,%ecx ea69: 00 23 add %ah,(%ebx) ea6b: ac lods %ds:(%esi),%al ea6c: 5b pop %ebx ea6d: 16 push %ss ea6e: 00 00 add %al,(%eax) ea70: 02 23 add (%ebx),%ah ea72: 00 0d 4a 1a 00 00 add %cl,0x1a4a ea78: 23 ad 25 00 00 00 and 0x25(%ebp),%ebp ea7e: 02 23 add (%ebx),%ah ea80: 04 0c add $0xc,%al ea82: 6d insl (%dx),%es:(%edi) ea83: 6d insl (%dx),%es:(%edi) ea84: 00 23 add %ah,(%ebx) ea86: ae scas %es:(%edi),%al ea87: 34 32 xor $0x32,%al ea89: 00 00 add %al,(%eax) ea8b: 02 23 add (%ebx),%ah ea8d: 08 0d ec 1a 00 00 or %cl,0x1aec ea93: 23 b1 43 00 00 00 and 0x43(%ecx),%esi ea99: 02 23 add (%ebx),%ah ea9b: 0c 0d or $0xd,%al ea9d: 19 27 sbb %esp,(%edi) ea9f: 00 00 add %al,(%eax) eaa1: 23 b2 80 2e 00 00 and 0x2e80(%edx),%esi eaa7: 02 23 add (%ebx),%ah eaa9: 10 0d 9d 0b 00 00 adc %cl,0xb9d eaaf: 23 b4 ac 17 00 00 02 and 0x2000017(%esp,%ebp,4),%esi eab6: 23 14 0d 1b 1e 00 00 and 0x1e1b(,%ecx,1),%edx eabd: 23 b6 e8 15 00 00 and 0x15e8(%esi),%esi eac3: 02 23 add (%ebx),%ah eac5: 2c 0d sub $0xd,%al eac7: a1 23 00 00 23 mov 0x23000023,%eax eacc: b8 25 00 00 00 mov $0x25,%eax ead1: 02 23 add (%ebx),%ah ead3: 3c 0d cmp $0xd,%al ead5: 19 0c 00 sbb %ecx,(%eax,%eax,1) ead8: 00 23 add %ah,(%ebx) eada: b9 cc 14 00 00 mov $0x14cc,%ecx eadf: 02 23 add (%ebx),%ah eae1: 40 inc %eax eae2: 0d e8 1b 00 00 or $0x1be8,%eax eae7: 23 ba cc 14 00 00 and 0x14cc(%edx),%edi eaed: 02 23 add (%ebx),%ah eaef: 48 dec %eax eaf0: 0d 32 06 00 00 or $0x632,%eax eaf5: 23 bd 8b 00 00 00 and 0x8b(%ebp),%edi eafb: 02 23 add (%ebx),%ah eafd: 50 push %eax eafe: 0d 19 0a 00 00 or $0xa19,%eax eb03: 23 bf 86 2e 00 00 and 0x2e86(%edi),%edi eb09: 02 23 add (%ebx),%ah eb0b: 54 push %esp eb0c: 0c 77 or $0x77,%al eb0e: 71 00 jno eb10 <.debug_info+0xeb10> eb10: 23 c1 and %ecx,%eax eb12: 3f aas eb13: 2d 00 00 03 23 sub $0x23030000,%eax eb18: 9c pushf eb19: 01 00 add %eax,(%eax) eb1b: 06 push %es eb1c: 04 be add $0xbe,%al eb1e: 2d 00 00 0b 02 sub $0x20b0000,%eax eb23: 2f das eb24: 00 00 add %al,(%eax) eb26: a9 24 00 00 48 test $0x48000024,%eax eb2b: 23 9e 0d 95 0c 00 and 0xc950d(%esi),%ebx eb31: 00 23 add %ah,(%ebx) eb33: 9f lahf eb34: 43 inc %ebx eb35: 00 00 add %al,(%eax) eb37: 00 02 add %al,(%edx) eb39: 23 00 and (%eax),%eax eb3b: 0d 50 07 00 00 or $0x750,%eax eb40: 23 a0 43 00 00 00 and 0x43(%eax),%esp eb46: 02 23 add (%ebx),%ah eb48: 04 0d add $0xd,%al eb4a: 75 26 jne eb72 <.debug_info+0xeb72> eb4c: 00 00 add %al,(%eax) eb4e: 23 a2 02 2f 00 00 and 0x2f02(%edx),%esp eb54: 02 23 add (%ebx),%ah eb56: 08 0d 9c 0e 00 00 or %cl,0xe9c eb5c: 23 a3 e8 15 00 00 and 0x15e8(%ebx),%esp eb62: 02 23 add (%ebx),%ah eb64: 0c 0d or $0xd,%al eb66: 75 17 jne eb7f <.debug_info+0xeb7f> eb68: 00 00 add %al,(%eax) eb6a: 23 a4 6e 00 00 00 02 and 0x2000000(%esi,%ebp,2),%esp eb71: 23 1c 0c and (%esp,%ecx,1),%ebx eb74: 6e outsb %ds:(%esi),(%dx) eb75: 72 00 jb eb77 <.debug_info+0xeb77> eb77: 23 a6 8b 00 00 00 and 0x8b(%esi),%esp eb7d: 02 23 add (%ebx),%ah eb7f: 20 0d 91 1e 00 00 and %cl,0x1e91 eb85: 23 a6 8b 00 00 00 and 0x8b(%esi),%esp eb8b: 02 23 add (%ebx),%ah eb8d: 24 0d and $0xd,%al eb8f: 92 xchg %eax,%edx eb90: 21 00 and %eax,(%eax) eb92: 00 23 add %ah,(%ebx) eb94: a8 08 test $0x8,%al eb96: 2f das eb97: 00 00 add %al,(%eax) eb99: 02 23 add (%ebx),%ah eb9b: 28 00 sub %al,(%eax) eb9d: 06 push %es eb9e: 04 14 add $0x14,%al eba0: 28 00 sub %al,(%eax) eba2: 00 03 add %al,(%ebx) eba4: 18 2f sbb %ch,(%edi) eba6: 00 00 add %al,(%eax) eba8: 14 28 adc $0x28,%al ebaa: 00 00 add %al,(%eax) ebac: 04 3c add $0x3c,%al ebae: 00 00 add %al,(%eax) ebb0: 00 07 add %al,(%edi) ebb2: 00 14 34 add %dl,(%esp,%esi,1) ebb5: 32 00 xor (%eax),%al ebb7: 00 3d 0a 00 00 e8 add %bh,0xe800000a ebbd: 01 03 add %eax,(%ebx) ebbf: 22 02 and (%edx),%al ebc1: 13 0b adc (%ebx),%ecx ebc3: 27 daa ebc4: 00 00 add %al,(%eax) ebc6: 1a 2b sbb (%ebx),%ch ebc8: 01 4c 32 00 add %ecx,0x0(%edx,%esi,1) ebcc: 00 02 add %al,(%edx) ebce: 23 00 and (%eax),%eax ebd0: 13 08 adc (%eax),%ecx ebd2: 1a 00 sbb (%eax),%al ebd4: 00 1a add %bl,(%edx) ebd6: 2c 01 sub $0x1,%al ebd8: e2 16 loop ebf0 <.debug_info+0xebf0> ebda: 00 00 add %al,(%eax) ebdc: 02 23 add (%ebx),%ah ebde: 04 13 add $0x13,%al ebe0: bf 21 00 00 1a mov $0x1a000021,%edi ebe5: 2d 01 4c 32 00 sub $0x324c01,%eax ebea: 00 02 add %al,(%edx) ebec: 23 08 and (%eax),%ecx ebee: 13 09 adc (%ecx),%ecx ebf0: 07 pop %es ebf1: 00 00 add %al,(%eax) ebf3: 1a 30 sbb (%eax),%dh ebf5: 01 76 32 add %esi,0x32(%esi) ebf8: 00 00 add %al,(%eax) ebfa: 02 23 add (%ebx),%ah ebfc: 0c 13 or $0x13,%al ebfe: ae scas %es:(%edi),%al ebff: 20 00 and %al,(%eax) ec01: 00 1a add %bl,(%edx) ec03: 31 01 xor %eax,(%ecx) ec05: 8d 32 lea (%edx),%esi ec07: 00 00 add %al,(%eax) ec09: 02 23 add (%ebx),%ah ec0b: 10 13 adc %dl,(%ebx) ec0d: 95 xchg %eax,%ebp ec0e: 0c 00 or $0x0,%al ec10: 00 1a add %bl,(%edx) ec12: 32 01 xor (%ecx),%al ec14: 43 inc %ebx ec15: 00 00 add %al,(%eax) ec17: 00 02 add %al,(%edx) ec19: 23 14 13 and (%ebx,%edx,1),%edx ec1c: 6e outsb %ds:(%esi),(%dx) ec1d: 07 pop %es ec1e: 00 00 add %al,(%eax) ec20: 1a 33 sbb (%ebx),%dh ec22: 01 43 00 add %eax,0x0(%ebx) ec25: 00 00 add %al,(%eax) ec27: 02 23 add (%ebx),%ah ec29: 18 13 sbb %dl,(%ebx) ec2b: db 24 00 (bad) (%eax,%eax,1) ec2e: 00 1a add %bl,(%edx) ec30: 34 01 xor $0x1,%al ec32: 43 inc %ebx ec33: 00 00 add %al,(%eax) ec35: 00 02 add %al,(%edx) ec37: 23 1c 13 and (%ebx,%edx,1),%ebx ec3a: f4 hlt ec3b: 0a 00 or (%eax),%al ec3d: 00 1a add %bl,(%edx) ec3f: 35 01 43 00 00 xor $0x4301,%eax ec44: 00 02 add %al,(%edx) ec46: 23 20 and (%eax),%esp ec48: 12 70 67 adc 0x67(%eax),%dh ec4b: 64 00 1a add %bl,%fs:(%edx) ec4e: 36 01 93 32 00 00 02 add %edx,%ss:0x2000032(%ebx) ec55: 23 24 13 and (%ebx,%edx,1),%esp ec58: 19 0f sbb %ecx,(%edi) ec5a: 00 00 add %al,(%eax) ec5c: 1a 37 sbb (%edi),%dh ec5e: 01 5b 16 add %ebx,0x16(%ebx) ec61: 00 00 add %al,(%eax) ec63: 02 23 add (%ebx),%ah ec65: 28 13 sub %dl,(%ebx) ec67: e3 0c jecxz ec75 <.debug_info+0xec75> ec69: 00 00 add %al,(%eax) ec6b: 1a 38 sbb (%eax),%bh ec6d: 01 5b 16 add %ebx,0x16(%ebx) ec70: 00 00 add %al,(%eax) ec72: 02 23 add (%ebx),%ah ec74: 2c 13 sub $0x13,%al ec76: c4 09 les (%ecx),%ecx ec78: 00 00 add %al,(%eax) ec7a: 1a 39 sbb (%ecx),%bh ec7c: 01 25 00 00 00 02 add %esp,0x2000000 ec82: 23 30 and (%eax),%esi ec84: 13 c1 adc %ecx,%eax ec86: 1a 00 sbb (%eax),%al ec88: 00 1a add %bl,(%edx) ec8a: 3a 01 cmp (%ecx),%al ec8c: b7 17 mov $0x17,%bh ec8e: 00 00 add %al,(%eax) ec90: 02 23 add (%ebx),%ah ec92: 34 13 xor $0x13,%al ec94: 00 0d 00 00 1a 3b add %cl,0x3b1a0000 ec9a: 01 e8 add %ebp,%eax ec9c: 15 00 00 02 23 adc $0x23020000,%eax eca1: 50 push %eax eca2: 13 06 adc (%esi),%eax eca4: 1f pop %ds eca5: 00 00 add %al,(%eax) eca7: 1a 3d 01 cc 14 00 sbb 0x14cc01,%bh ecad: 00 02 add %al,(%edx) ecaf: 23 60 13 and 0x13(%eax),%esp ecb2: f7 03 00 00 1a 45 testl $0x451a0000,(%ebx) ecb8: 01 3a add %edi,(%edx) ecba: 32 00 xor (%eax),%al ecbc: 00 02 add %al,(%edx) ecbe: 23 68 13 and 0x13(%eax),%ebp ecc1: 47 inc %edi ecc2: 0a 00 or (%eax),%al ecc4: 00 1a add %bl,(%edx) ecc6: 46 inc %esi ecc7: 01 3a add %edi,(%edx) ecc9: 32 00 xor (%eax),%al eccb: 00 02 add %al,(%edx) eccd: 23 6c 13 34 and 0x34(%ebx,%edx,1),%ebp ecd1: 14 00 adc $0x0,%al ecd3: 00 1a add %bl,(%edx) ecd5: 48 dec %eax ecd6: 01 43 00 add %eax,0x0(%ebx) ecd9: 00 00 add %al,(%eax) ecdb: 02 23 add (%ebx),%ah ecdd: 70 13 jo ecf2 <.debug_info+0xecf2> ecdf: 7f 15 jg ecf6 <.debug_info+0xecf6> ece1: 00 00 add %al,(%eax) ece3: 1a 49 01 sbb 0x1(%ecx),%cl ece6: 43 inc %ebx ece7: 00 00 add %al,(%eax) ece9: 00 02 add %al,(%edx) eceb: 23 74 13 a9 and 0xffffffa9(%ebx,%edx,1),%esi ecef: 25 00 00 1a 4b and $0x4b1a0000,%eax ecf4: 01 43 00 add %eax,0x0(%ebx) ecf7: 00 00 add %al,(%eax) ecf9: 02 23 add (%ebx),%ah ecfb: 78 13 js ed10 <.debug_info+0xed10> ecfd: 31 18 xor %ebx,(%eax) ecff: 00 00 add %al,(%eax) ed01: 1a 4b 01 sbb 0x1(%ebx),%cl ed04: 43 inc %ebx ed05: 00 00 add %al,(%eax) ed07: 00 02 add %al,(%edx) ed09: 23 7c 13 59 and 0x59(%ebx,%edx,1),%edi ed0d: 20 00 and %al,(%eax) ed0f: 00 1a add %bl,(%edx) ed11: 4b dec %ebx ed12: 01 43 00 add %eax,0x0(%ebx) ed15: 00 00 add %al,(%eax) ed17: 03 23 add (%ebx),%esp ed19: 80 01 13 addb $0x13,(%ecx) ed1c: 3b 18 cmp (%eax),%ebx ed1e: 00 00 add %al,(%eax) ed20: 1a 4b 01 sbb 0x1(%ebx),%cl ed23: 43 inc %ebx ed24: 00 00 add %al,(%eax) ed26: 00 03 add %al,(%ebx) ed28: 23 84 01 13 80 1f 00 and 0x1f8013(%ecx,%eax,1),%eax ed2f: 00 1a add %bl,(%edx) ed31: 4c dec %esp ed32: 01 43 00 add %eax,0x0(%ebx) ed35: 00 00 add %al,(%eax) ed37: 03 23 add (%ebx),%esp ed39: 88 01 mov %al,(%ecx) ed3b: 13 ad 23 00 00 1a adc 0x1a000023(%ebp),%ebp ed41: 4c dec %esp ed42: 01 43 00 add %eax,0x0(%ebx) ed45: 00 00 add %al,(%eax) ed47: 03 23 add (%ebx),%esp ed49: 8c 01 movw %es,(%ecx) ed4b: 13 d6 adc %esi,%edx ed4d: 15 00 00 1a 4c adc $0x4c1a0000,%eax ed52: 01 43 00 add %eax,0x0(%ebx) ed55: 00 00 add %al,(%eax) ed57: 03 23 add (%ebx),%esp ed59: 90 nop ed5a: 01 13 add %edx,(%ebx) ed5c: 42 inc %edx ed5d: 24 00 and $0x0,%al ed5f: 00 1a add %bl,(%edx) ed61: 4c dec %esp ed62: 01 43 00 add %eax,0x0(%ebx) ed65: 00 00 add %al,(%eax) ed67: 03 23 add (%ebx),%esp ed69: 94 xchg %eax,%esp ed6a: 01 13 add %edx,(%ebx) ed6c: 83 14 00 00 adcl $0x0,(%eax,%eax,1) ed70: 1a 4d 01 sbb 0x1(%ebp),%cl ed73: 43 inc %ebx ed74: 00 00 add %al,(%eax) ed76: 00 03 add %al,(%ebx) ed78: 23 98 01 13 be 24 and 0x24be1301(%eax),%ebx ed7e: 00 00 add %al,(%eax) ed80: 1a 4d 01 sbb 0x1(%ebp),%cl ed83: 43 inc %ebx ed84: 00 00 add %al,(%eax) ed86: 00 03 add %al,(%ebx) ed88: 23 9c 01 13 33 23 00 and 0x233313(%ecx,%eax,1),%ebx ed8f: 00 1a add %bl,(%edx) ed91: 4d dec %ebp ed92: 01 43 00 add %eax,0x0(%ebx) ed95: 00 00 add %al,(%eax) ed97: 03 23 add (%ebx),%esp ed99: a0 01 13 c8 0c mov 0xcc81301,%al ed9e: 00 00 add %al,(%eax) eda0: 1a 4d 01 sbb 0x1(%ebp),%cl eda3: 43 inc %ebx eda4: 00 00 add %al,(%eax) eda6: 00 03 add %al,(%ebx) eda8: 23 a4 01 13 10 1b 00 and 0x1b1013(%ecx,%eax,1),%esp edaf: 00 1a add %bl,(%edx) edb1: 4e dec %esi edb2: 01 43 00 add %eax,0x0(%ebx) edb5: 00 00 add %al,(%eax) edb7: 03 23 add (%ebx),%esp edb9: a8 01 test $0x1,%al edbb: 12 62 72 adc 0x72(%edx),%ah edbe: 6b 00 1a imul $0x1a,(%eax),%eax edc1: 4e dec %esi edc2: 01 43 00 add %eax,0x0(%ebx) edc5: 00 00 add %al,(%eax) edc7: 03 23 add (%ebx),%esp edc9: ac lods %ds:(%esi),%al edca: 01 13 add %edx,(%ebx) edcc: 87 11 xchg %edx,(%ecx) edce: 00 00 add %al,(%eax) edd0: 1a 4e 01 sbb 0x1(%esi),%cl edd3: 43 inc %ebx edd4: 00 00 add %al,(%eax) edd6: 00 03 add %al,(%ebx) edd8: 23 b0 01 13 ca 18 and 0x18ca1301(%eax),%esi edde: 00 00 add %al,(%eax) ede0: 1a 4f 01 sbb 0x1(%edi),%cl ede3: 43 inc %ebx ede4: 00 00 add %al,(%eax) ede6: 00 03 add %al,(%ebx) ede8: 23 b4 01 13 96 07 00 and 0x79613(%ecx,%eax,1),%esi edef: 00 1a add %bl,(%edx) edf1: 4f dec %edi edf2: 01 43 00 add %eax,0x0(%ebx) edf5: 00 00 add %al,(%eax) edf7: 03 23 add (%ebx),%esp edf9: b8 01 13 e2 08 mov $0x8e21301,%eax edfe: 00 00 add %al,(%eax) ee00: 1a 4f 01 sbb 0x1(%edi),%cl ee03: 43 inc %ebx ee04: 00 00 add %al,(%eax) ee06: 00 03 add %al,(%ebx) ee08: 23 bc 01 13 b5 0d 00 and 0xdb513(%ecx,%eax,1),%edi ee0f: 00 1a add %bl,(%edx) ee11: 4f dec %edi ee12: 01 43 00 add %eax,0x0(%ebx) ee15: 00 00 add %al,(%eax) ee17: 03 23 add (%ebx),%esp ee19: c0 01 13 rolb $0x13,(%ecx) ee1c: 3f aas ee1d: 04 00 add $0x0,%al ee1f: 00 1a add %bl,(%edx) ee21: 51 push %ecx ee22: 01 99 32 00 00 03 add %ebx,0x3000032(%ecx) ee28: 23 c4 and %esp,%eax ee2a: 01 19 add %ebx,(%ecx) ee2c: d6 (bad) ee2d: 1d 00 00 1a 53 sbb $0x531a0000,%eax ee32: 01 8b 00 00 00 04 add %ecx,0x4000000(%ebx) ee38: 02 1e add (%esi),%bl ee3a: 03 23 add (%ebx),%esp ee3c: f4 hlt ee3d: 02 13 add (%ebx),%dl ee3f: 4a dec %edx ee40: 1f pop %ds ee41: 00 00 add %al,(%eax) ee43: 1a 54 01 d3 sbb 0xffffffd3(%ecx,%eax,1),%dl ee47: 05 00 00 03 23 add $0x23030000,%eax ee4c: f8 clc ee4d: 02 13 add (%ebx),%dl ee4f: 45 inc %ebp ee50: 19 00 sbb %eax,(%eax) ee52: 00 1a add %bl,(%edx) ee54: 57 push %edi ee55: 01 66 18 add %esp,0x18(%esi) ee58: 00 00 add %al,(%eax) ee5a: 03 23 add (%ebx),%esp ee5c: fc cld ee5d: 02 13 add (%ebx),%dl ee5f: cb lret ee60: 11 00 adc %eax,(%eax) ee62: 00 1a add %bl,(%edx) ee64: 5a pop %edx ee65: 01 43 00 add %eax,0x0(%ebx) ee68: 00 00 add %al,(%eax) ee6a: 03 23 add (%ebx),%esp ee6c: a8 03 test $0x3,%al ee6e: 13 81 27 00 00 1a adc 0x1a000027(%ecx),%eax ee74: 5b pop %ebx ee75: 01 cf add %ecx,%edi ee77: 00 00 add %al,(%eax) ee79: 00 03 add %al,(%ebx) ee7b: 23 ac 03 13 2f 08 00 and 0x82f13(%ebx,%eax,1),%ebp ee82: 00 1a add %bl,(%edx) ee84: 5e pop %esi ee85: 01 25 00 00 00 03 add %esp,0x3000000 ee8b: 23 b0 03 13 76 1a and 0x1a761303(%eax),%esi ee91: 00 00 add %al,(%eax) ee93: 1a 5f 01 sbb 0x1(%edi),%bl ee96: a9 32 00 00 03 test $0x3000032,%eax ee9b: 23 b4 03 13 3b 26 00 and 0x263b13(%ebx,%eax,1),%esi eea2: 00 1a add %bl,(%edx) eea4: 5f pop %edi eea5: 01 b2 23 00 00 03 add %esi,0x3000023(%edx) eeab: 23 b8 03 13 21 11 and 0x11211303(%eax),%edi eeb1: 00 00 add %al,(%eax) eeb3: 1a 62 01 sbb 0x1(%edx),%ah eeb6: 34 16 xor $0x16,%al eeb8: 00 00 add %al,(%eax) eeba: 03 23 add (%ebx),%esp eebc: d4 03 aam $0x3 eebe: 13 21 adc (%ecx),%esp eec0: 12 00 adc (%eax),%al eec2: 00 1a add %bl,(%edx) eec4: 63 01 arpl %ax,(%ecx) eec6: 80 2e 00 subb $0x0,(%esi) eec9: 00 03 add %al,(%ebx) eecb: 23 e4 and %esp,%esp eecd: 03 00 add (%eax),%eax eecf: 06 push %es eed0: 04 18 add $0x18,%al eed2: 2f das eed3: 00 00 add %al,(%eax) eed5: 18 ca sbb %cl,%dl eed7: 0b 00 or (%eax),%eax eed9: 00 1a add %bl,(%edx) eedb: 0e push %cs eedc: 01 66 16 add %esp,0x16(%esi) eedf: 00 00 add %al,(%eax) eee1: 1a 77 19 sbb 0x19(%edi),%dh eee4: 00 00 add %al,(%eax) eee6: 01 06 add %eax,(%esi) eee8: 04 46 add $0x46,%al eeea: 32 00 xor (%eax),%al eeec: 00 0e add %cl,(%esi) eeee: 76 32 jbe ef22 <.debug_info+0xef22> eef0: 00 00 add %al,(%eax) eef2: 01 43 00 add %eax,0x0(%ebx) eef5: 00 00 add %al,(%eax) eef7: 08 b8 2d 00 00 08 or %bh,0x800002d(%eax) eefd: 43 inc %ebx eefe: 00 00 add %al,(%eax) ef00: 00 08 add %cl,(%eax) ef02: 43 inc %ebx ef03: 00 00 add %al,(%eax) ef05: 00 08 add %cl,(%eax) ef07: 43 inc %ebx ef08: 00 00 add %al,(%eax) ef0a: 00 08 add %cl,(%eax) ef0c: 43 inc %ebx ef0d: 00 00 add %al,(%eax) ef0f: 00 00 add %al,(%eax) ef11: 06 push %es ef12: 04 52 add $0x52,%al ef14: 32 00 xor (%eax),%al ef16: 00 07 add %al,(%edi) ef18: 8d 32 lea (%edx),%esi ef1a: 00 00 add %al,(%eax) ef1c: 01 08 add %ecx,(%eax) ef1e: 34 32 xor $0x32,%al ef20: 00 00 add %al,(%eax) ef22: 08 43 00 or %al,0x0(%ebx) ef25: 00 00 add %al,(%eax) ef27: 00 06 add %al,(%esi) ef29: 04 7c add $0x7c,%al ef2b: 32 00 xor (%eax),%al ef2d: 00 06 add %al,(%esi) ef2f: 04 4e add $0x4e,%al ef31: 02 00 add (%eax),%al ef33: 00 03 add %al,(%ebx) ef35: a9 32 00 00 43 test $0x43000032,%eax ef3a: 00 00 add %al,(%eax) ef3c: 00 04 3c add %al,(%esp,%edi,1) ef3f: 00 00 add %al,(%eax) ef41: 00 2b add %ch,(%ebx) ef43: 00 06 add %al,(%esi) ef45: 04 b2 add $0xb2,%al ef47: 23 00 and (%eax),%eax ef49: 00 14 ec add %dl,(%esp,%ebp,8) ef4c: 32 00 xor (%eax),%al ef4e: 00 03 add %al,(%ebx) ef50: 24 00 and $0x0,%al ef52: 00 14 05 1a 66 01 13 add %dl,0x1301661a(,%eax,1) ef59: 2a 16 sub (%esi),%dl ef5b: 00 00 add %al,(%eax) ef5d: 1a 67 01 sbb 0x1(%edi),%ah ef60: 5b pop %ebx ef61: 16 push %ss ef62: 00 00 add %al,(%eax) ef64: 02 23 add (%ebx),%ah ef66: 00 13 add %dl,(%ebx) ef68: 1a 22 sbb (%edx),%ah ef6a: 00 00 add %al,(%eax) ef6c: 1a 68 01 sbb 0x1(%eax),%ch ef6f: ec in (%dx),%al ef70: 32 00 xor (%eax),%al ef72: 00 02 add %al,(%edx) ef74: 23 04 13 and (%ebx,%edx,1),%eax ef77: 25 0d 00 00 1a and $0x1a00000d,%eax ef7c: 69 01 e8 15 00 00 imul $0x15e8,(%ecx),%eax ef82: 03 23 add (%ebx),%esp ef84: 84 0a test %cl,(%edx) ef86: 00 03 add %al,(%ebx) ef88: fc cld ef89: 32 00 xor (%eax),%al ef8b: 00 e0 add %ah,%al ef8d: 1f pop %ds ef8e: 00 00 add %al,(%eax) ef90: 04 3c add $0x3c,%al ef92: 00 00 add %al,(%eax) ef94: 00 3f add %bh,(%edi) ef96: 00 11 add %dl,(%ecx) ef98: 73 33 jae efcd <.debug_info+0xefcd> ef9a: 00 00 add %al,(%eax) ef9c: 57 push %edi ef9d: 19 00 sbb %eax,(%eax) ef9f: 00 1c 1a add %bl,(%edx,%ebx,1) efa2: 6c insb (%dx),%es:(%edi) efa3: 01 13 add %edx,(%ebx) efa5: ba 13 00 00 1a mov $0x1a000013,%edx efaa: 6d insl (%dx),%es:(%edi) efab: 01 25 00 00 00 02 add %esp,0x2000000 efb1: 23 00 and (%eax),%eax efb3: 13 c9 adc %ecx,%ecx efb5: 26 00 00 add %al,%es:(%eax) efb8: 1a 6e 01 sbb 0x1(%esi),%ch efbb: 6e outsb %ds:(%esi),(%dx) efbc: 00 00 add %al,(%eax) efbe: 00 02 add %al,(%edx) efc0: 23 04 13 and (%ebx,%edx,1),%eax efc3: fe (bad) efc4: 25 00 00 1a 6f and $0x6f1a0000,%eax efc9: 01 43 00 add %eax,0x0(%ebx) efcc: 00 00 add %al,(%eax) efce: 02 23 add (%ebx),%ah efd0: 08 13 or %dl,(%ebx) efd2: 28 18 sub %bl,(%eax) efd4: 00 00 add %al,(%eax) efd6: 1a 70 01 sbb 0x1(%eax),%dh efd9: 71 18 jno eff3 <.debug_info+0xeff3> efdb: 00 00 add %al,(%eax) efdd: 02 23 add (%ebx),%ah efdf: 0c 13 or $0x13,%al efe1: 94 xchg %eax,%esp efe2: 0b 00 or (%eax),%eax efe4: 00 1a add %bl,(%edx) efe6: 70 01 jo efe9 <.debug_info+0xefe9> efe8: 71 18 jno f002 <.debug_info+0xf002> efea: 00 00 add %al,(%eax) efec: 02 23 add (%ebx),%ah efee: 10 13 adc %dl,(%ebx) eff0: 3a 17 cmp (%edi),%dl eff2: 00 00 add %al,(%eax) eff4: 1a 71 01 sbb 0x1(%ecx),%dh eff7: 43 inc %ebx eff8: 00 00 add %al,(%eax) effa: 00 02 add %al,(%edx) effc: 23 14 13 and (%ebx,%edx,1),%edx efff: ec in (%dx),%al f000: 08 00 or %al,(%eax) f002: 00 1a add %bl,(%edx) f004: 71 01 jno f007 <.debug_info+0xf007> f006: 43 inc %ebx f007: 00 00 add %al,(%eax) f009: 00 02 add %al,(%edx) f00b: 23 18 and (%eax),%ebx f00d: 00 14 02 add %dl,(%edx,%eax,1) f010: 36 00 00 add %al,%ss:(%eax) f013: 5a pop %edx f014: 07 pop %es f015: 00 00 add %al,(%eax) f017: 88 01 mov %al,(%ecx) f019: 1a 7b 01 sbb 0x1(%ebx),%bh f01c: 13 2a adc (%edx),%ebp f01e: 16 push %ss f01f: 00 00 add %al,(%eax) f021: 1a 7c 01 5b sbb 0x5b(%ecx,%eax,1),%bh f025: 16 push %ss f026: 00 00 add %al,(%eax) f028: 02 23 add (%ebx),%ah f02a: 00 13 add %dl,(%ebx) f02c: 01 13 add %edx,(%ebx) f02e: 00 00 add %al,(%eax) f030: 1a 7d 01 sbb 0x1(%ebp),%bh f033: 5b pop %ebx f034: 16 push %ss f035: 00 00 add %al,(%eax) f037: 02 23 add (%ebx),%ah f039: 04 13 add $0x13,%al f03b: 5f pop %edi f03c: 25 00 00 1a 7f and $0x7f1a0000,%eax f041: 01 ac 17 00 00 02 23 add %ebp,0x23020000(%edi,%edx,1) f048: 08 13 or %dl,(%ebx) f04a: d5 1f aad $0x1f f04c: 00 00 add %al,(%eax) f04e: 1a 82 01 a9 14 00 sbb 0x14a901(%edx),%al f054: 00 02 add %al,(%edx) f056: 23 20 and (%eax),%esp f058: 13 b9 1b 00 00 1a adc 0x1a00001b(%ecx),%edi f05e: 85 01 test %eax,(%ecx) f060: e6 22 out %al,$0x22 f062: 00 00 add %al,(%eax) f064: 02 23 add (%ebx),%ah f066: 24 13 and $0x13,%al f068: 9e sahf f069: 18 00 sbb %al,(%eax) f06b: 00 1a add %bl,(%edx) f06d: 88 01 mov %al,(%ecx) f06f: 25 00 00 00 02 and $0x2000000,%eax f074: 23 34 13 and (%ebx,%edx,1),%esi f077: 6b 1c 00 00 imul $0x0,(%eax,%eax,1),%ebx f07b: 1a 8e 01 a9 14 00 sbb 0x14a901(%esi),%cl f081: 00 02 add %al,(%edx) f083: 23 38 and (%eax),%edi f085: 13 f1 adc %ecx,%esi f087: 25 00 00 1a 8f and $0x8f1a0000,%eax f08c: 01 25 00 00 00 02 add %esp,0x2000000 f092: 23 3c 13 and (%ebx,%edx,1),%edi f095: db 10 fistl (%eax) f097: 00 00 add %al,(%eax) f099: 1a 92 01 25 00 00 sbb 0x2501(%edx),%dl f09f: 00 02 add %al,(%edx) f0a1: 23 40 13 and 0x13(%eax),%eax f0a4: 72 27 jb f0cd <.debug_info+0xf0cd> f0a6: 00 00 add %al,(%eax) f0a8: 1a 93 01 8b 00 00 sbb 0x8b01(%ebx),%dl f0ae: 00 02 add %al,(%edx) f0b0: 23 44 13 04 and 0x4(%ebx,%edx,1),%eax f0b4: 0b 00 or (%eax),%eax f0b6: 00 1a add %bl,(%edx) f0b8: 96 xchg %eax,%esi f0b9: 01 cc add %ecx,%esp f0bb: 14 00 adc $0x0,%al f0bd: 00 02 add %al,(%edx) f0bf: 23 48 13 and 0x13(%eax),%ecx f0c2: e7 26 out %eax,$0x26 f0c4: 00 00 add %al,(%eax) f0c6: 1a 99 01 33 2c 00 sbb 0x2c3301(%ecx),%bl f0cc: 00 02 add %al,(%edx) f0ce: 23 50 12 and 0x12(%eax),%edx f0d1: 74 73 je f146 <.debug_info+0xf146> f0d3: 6b 00 1a imul $0x1a,(%eax),%eax f0d6: 9a 01 a9 14 00 00 02 lcall $0x200,$0x14a901 f0dd: 23 6c 13 5c and 0x5c(%ebx,%edx,1),%ebp f0e1: 0d 00 00 1a 9b or $0x9b1a0000,%eax f0e6: 01 28 add %ebp,(%eax) f0e8: 2c 00 sub $0x0,%al f0ea: 00 02 add %al,(%edx) f0ec: 23 70 13 and 0x13(%eax),%esi f0ef: 7f 09 jg f0fa <.debug_info+0xf0fa> f0f1: 00 00 add %al,(%eax) f0f3: 1a 9e 01 71 18 00 sbb 0x187101(%esi),%bl f0f9: 00 02 add %al,(%edx) f0fb: 23 78 13 and 0x13(%eax),%edi f0fe: 93 xchg %eax,%ebx f0ff: 1a 00 sbb (%eax),%al f101: 00 1a add %bl,(%edx) f103: 9e sahf f104: 01 71 18 add %esi,0x18(%ecx) f107: 00 00 add %al,(%eax) f109: 02 23 add (%ebx),%ah f10b: 7c 13 jl f120 <.debug_info+0xf120> f10d: eb 18 jmp f127 <.debug_info+0xf127> f10f: 00 00 add %al,(%eax) f111: 1a 9f 01 71 18 00 sbb 0x187101(%edi),%bl f117: 00 03 add %al,(%ebx) f119: 23 80 01 13 d4 18 and 0x18d41301(%eax),%eax f11f: 00 00 add %al,(%eax) f121: 1a 9f 01 71 18 00 sbb 0x187101(%edi),%bl f127: 00 03 add %al,(%ebx) f129: 23 84 01 13 be 0b 00 and 0xbbe13(%ecx,%eax,1),%eax f130: 00 1a add %bl,(%edx) f132: a2 01 66 01 00 mov %al,0x16601 f137: 00 03 add %al,(%ebx) f139: 23 88 01 13 14 12 and 0x12141301(%eax),%ecx f13f: 00 00 add %al,(%eax) f141: 1a a3 01 66 01 00 sbb 0x16601(%ebx),%ah f147: 00 03 add %al,(%ebx) f149: 23 8c 01 13 a7 06 00 and 0x6a713(%ecx,%eax,1),%ecx f150: 00 1a add %bl,(%edx) f152: a4 movsb %ds:(%esi),%es:(%edi) f153: 01 66 01 add %esp,0x1(%esi) f156: 00 00 add %al,(%eax) f158: 03 23 add (%ebx),%esp f15a: 90 nop f15b: 01 13 add %edx,(%ebx) f15d: 82 (bad) f15e: 1e push %ds f15f: 00 00 add %al,(%eax) f161: 1a a6 01 25 00 00 sbb 0x2501(%esi),%ah f167: 00 03 add %al,(%ebx) f169: 23 94 01 12 74 74 79 and 0x79747412(%ecx,%eax,1),%edx f170: 00 1a add %bl,(%edx) f172: a8 01 test $0x1,%al f174: 08 36 or %dh,(%esi) f176: 00 00 add %al,(%eax) f178: 03 23 add (%ebx),%esp f17a: 98 cwtl f17b: 01 13 add %edx,(%ebx) f17d: 01 22 add %esp,(%edx) f17f: 00 00 add %al,(%eax) f181: 1a b0 01 71 18 00 sbb 0x187101(%eax),%dh f187: 00 03 add %al,(%ebx) f189: 23 9c 01 13 3d 0c 00 and 0xc3d13(%ecx,%eax,1),%ebx f190: 00 1a add %bl,(%edx) f192: b0 01 mov $0x1,%al f194: 71 18 jno f1ae <.debug_info+0xf1ae> f196: 00 00 add %al,(%eax) f198: 03 23 add (%ebx),%esp f19a: a0 01 13 71 22 mov 0x22711301,%al f19f: 00 00 add %al,(%eax) f1a1: 1a b0 01 71 18 00 sbb 0x187101(%eax),%dh f1a7: 00 03 add %al,(%ebx) f1a9: 23 a4 01 13 ec 0c 00 and 0xcec13(%ecx,%eax,1),%esp f1b0: 00 1a add %bl,(%edx) f1b2: b0 01 mov $0x1,%al f1b4: 71 18 jno f1ce <.debug_info+0xf1ce> f1b6: 00 00 add %al,(%eax) f1b8: 03 23 add (%ebx),%esp f1ba: a8 01 test $0x1,%al f1bc: 13 d7 adc %edi,%edx f1be: 1c 00 sbb $0x0,%al f1c0: 00 1a add %bl,(%edx) f1c2: b1 01 mov $0x1,%cl f1c4: 43 inc %ebx f1c5: 00 00 add %al,(%eax) f1c7: 00 03 add %al,(%ebx) f1c9: 23 ac 01 13 98 0a 00 and 0xa9813(%ecx,%eax,1),%ebp f1d0: 00 1a add %bl,(%edx) f1d2: b1 01 mov $0x1,%cl f1d4: 43 inc %ebx f1d5: 00 00 add %al,(%eax) f1d7: 00 03 add %al,(%ebx) f1d9: 23 b0 01 13 b5 09 and 0x9b51301(%eax),%esi f1df: 00 00 add %al,(%eax) f1e1: 1a b1 01 43 00 00 sbb 0x4301(%ecx),%dh f1e7: 00 03 add %al,(%ebx) f1e9: 23 b4 01 13 cb 1e 00 and 0x1ecb13(%ecx,%eax,1),%esi f1f0: 00 1a add %bl,(%edx) f1f2: b1 01 mov $0x1,%cl f1f4: 43 inc %ebx f1f5: 00 00 add %al,(%eax) f1f7: 00 03 add %al,(%ebx) f1f9: 23 b8 01 13 68 0a and 0xa681301(%eax),%edi f1ff: 00 00 add %al,(%eax) f201: 1a b2 01 43 00 00 sbb 0x4301(%edx),%dh f207: 00 03 add %al,(%ebx) f209: 23 bc 01 13 ba 1d 00 and 0x1dba13(%ecx,%eax,1),%edi f210: 00 1a add %bl,(%edx) f212: b2 01 mov $0x1,%dl f214: 43 inc %ebx f215: 00 00 add %al,(%eax) f217: 00 03 add %al,(%ebx) f219: 23 c0 and %eax,%eax f21b: 01 13 add %edx,(%ebx) f21d: 78 27 js f246 <.debug_info+0xf246> f21f: 00 00 add %al,(%eax) f221: 1a b2 01 43 00 00 sbb 0x4301(%edx),%dh f227: 00 03 add %al,(%ebx) f229: 23 c4 and %esp,%eax f22b: 01 13 add %edx,(%ebx) f22d: 10 27 adc %ah,(%edi) f22f: 00 00 add %al,(%eax) f231: 1a b2 01 43 00 00 sbb 0x4301(%edx),%dh f237: 00 03 add %al,(%ebx) f239: 23 c8 and %eax,%ecx f23b: 01 13 add %edx,(%ebx) f23d: 4f dec %edi f23e: 1a 00 sbb (%eax),%al f240: 00 1a add %bl,(%edx) f242: ba 01 29 01 00 mov $0x12901,%edx f247: 00 03 add %al,(%ebx) f249: 23 cc and %esp,%ecx f24b: 01 13 add %edx,(%ebx) f24d: 40 inc %eax f24e: 22 00 and (%eax),%al f250: 00 1a add %bl,(%edx) f252: c5 01 lds (%ecx),%eax f254: 0e push %cs f255: 36 00 00 add %al,%ss:(%eax) f258: 03 23 add (%ebx),%esp f25a: d4 01 aam $0x1 f25c: 13 cb adc %ebx,%ecx f25e: 15 00 00 1a c7 adc $0xc71a0000,%eax f263: 01 1e add %ebx,(%esi) f265: 36 00 00 add %al,%ss:(%eax) f268: 03 23 add (%ebx),%esp f26a: cc int3 f26b: 02 13 add (%ebx),%dl f26d: 9e sahf f26e: 0f 00 00 sldt (%eax) f271: 1a cc sbb %ah,%cl f273: 01 34 36 add %esi,(%esi,%esi,1) f276: 00 00 add %al,(%eax) f278: 03 23 add (%ebx),%esp f27a: e4 02 in $0x2,%al f27c: 13 c8 adc %eax,%ecx f27e: 20 00 and %al,(%eax) f280: 00 1a add %bl,(%edx) f282: cd 01 int $0x1 f284: 34 36 xor $0x36,%al f286: 00 00 add %al,(%eax) f288: 03 23 add (%ebx),%esp f28a: e8 02 13 a3 25 call 25a40591 f28f: 00 00 add %al,(%eax) f291: 1a d0 sbb %al,%dl f293: 01 fc add %edi,%esp f295: 32 00 xor (%eax),%al f297: 00 03 add %al,(%ebx) f299: 23 ec and %esp,%ebp f29b: 02 00 add (%eax),%al f29d: 1a b1 12 00 00 01 sbb 0x1000012(%ecx),%dh f2a3: 06 push %es f2a4: 04 02 add $0x2,%al f2a6: 36 00 00 add %al,%ss:(%eax) f2a9: 03 1e add (%esi),%ebx f2ab: 36 00 00 add %al,%ss:(%eax) f2ae: 7a 2b jp f2db <.debug_info+0xf2db> f2b0: 00 00 add %al,(%eax) f2b2: 04 3c add $0x3c,%al f2b4: 00 00 add %al,(%eax) f2b6: 00 0e add %cl,(%esi) f2b8: 00 03 add %al,(%ebx) f2ba: 2e 36 00 00 add %al,%cs:%ss:(%eax) f2be: cc int3 f2bf: 14 00 adc $0x0,%al f2c1: 00 04 3c add %al,(%esp,%edi,1) f2c4: 00 00 add %al,(%eax) f2c6: 00 02 add %al,(%edx) f2c8: 00 27 add %ah,(%edi) f2ca: 6b 65 79 00 imul $0x0,0x79(%ebp),%esp f2ce: 01 06 add %eax,(%esi) f2d0: 04 2e add $0x2e,%al f2d2: 36 00 00 add %al,%ss:(%eax) f2d5: 11 95 36 00 00 88 adc %edx,0x88000036(%ebp) f2db: 23 00 and (%eax),%eax f2dd: 00 8c 1a cd 02 13 a4 add %cl,0xa41302cd(%edx,%ebx,1) f2e4: 13 00 adc (%eax),%eax f2e6: 00 1a add %bl,(%edx) f2e8: ce into f2e9: 02 25 00 00 00 02 add 0x2000000,%ah f2ef: 23 00 and (%eax),%eax f2f1: 13 7d 14 adc 0x14(%ebp),%edi f2f4: 00 00 add %al,(%eax) f2f6: 1a cf sbb %bh,%cl f2f8: 02 5b 16 add 0x16(%ebx),%bl f2fb: 00 00 add %al,(%eax) f2fd: 02 23 add (%ebx),%ah f2ff: 04 13 add $0x13,%al f301: c2 04 00 ret $0x4 f304: 00 1a add %bl,(%edx) f306: d0 02 rolb (%edx) f308: 95 xchg %eax,%ebp f309: 36 00 00 add %al,%ss:(%eax) f30c: 02 23 add (%ebx),%ah f30e: 08 13 or %dl,(%ebx) f310: 6a 11 push $0x11 f312: 00 00 add %al,(%eax) f314: 1a d1 sbb %cl,%dl f316: 02 25 00 00 00 03 add 0x3000000,%ah f31c: 23 88 01 13 ed 04 and 0x4ed1301(%eax),%ecx f322: 00 00 add %al,(%eax) f324: 1a d2 sbb %dl,%dl f326: 02 a5 36 00 00 03 add 0x3000036(%ebp),%ah f32c: 23 8c 01 00 03 a5 36 and 0x36a50300(%ecx,%eax,1),%ecx f333: 00 00 add %al,(%eax) f335: 92 xchg %eax,%edx f336: 01 00 add %eax,(%eax) f338: 00 04 3c add %al,(%esp,%edi,1) f33b: 00 00 add %al,(%eax) f33d: 00 1f add %bl,(%edi) f33f: 00 03 add %al,(%ebx) f341: b4 36 mov $0x36,%ah f343: 00 00 add %al,(%eax) f345: b4 36 mov $0x36,%ah f347: 00 00 add %al,(%eax) f349: 1c 3c sbb $0x3c,%al f34b: 00 00 add %al,(%eax) f34d: 00 00 add %al,(%eax) f34f: 06 push %es f350: 04 92 add $0x92,%al f352: 01 00 add %eax,(%eax) f354: 00 28 add %ch,(%eax) f356: e0 36 loopne f38e <.debug_info+0xf38e> f358: 00 00 add %al,(%eax) f35a: 6d insl (%dx),%es:(%edi) f35b: 1f pop %ds f35c: 00 00 add %al,(%eax) f35e: 04 1a add $0x1a,%al f360: f6 02 29 testb $0x29,(%edx) f363: 30 16 xor %dl,(%esi) f365: 00 00 add %al,(%eax) f367: 00 29 add %ch,(%ecx) f369: 5e pop %esi f36a: 13 00 adc (%eax),%eax f36c: 00 01 add %al,(%ecx) f36e: 29 b8 18 00 00 02 sub %edi,0x2000018(%eax) f374: 29 3f sub %edi,(%edi) f376: 05 00 00 03 00 add $0x30000,%eax f37b: 1e push %ds f37c: 6e outsb %ds:(%esi),(%dx) f37d: 00 00 add %al,(%eax) f37f: 00 1a add %bl,(%edx) f381: 49 dec %ecx f382: 1d 00 00 01 06 sbb $0x6010000,%eax f387: 04 e5 add $0xe5,%al f389: 36 00 00 add %al,%ss:(%eax) f38c: 1a 25 13 00 00 01 sbb 0x1000013,%ah f392: 06 push %es f393: 04 f1 add $0xf1,%al f395: 36 00 00 add %al,%ss:(%eax) f398: 03 0d 37 00 00 a8 add 0xa8000037,%ecx f39e: 2a 00 sub (%eax),%al f3a0: 00 04 3c add %al,(%esp,%edi,1) f3a3: 00 00 add %al,(%eax) f3a5: 00 02 add %al,(%edx) f3a7: 00 06 add %al,(%esi) f3a9: 04 25 add $0x25,%al f3ab: 00 00 add %al,(%eax) f3ad: 00 06 add %al,(%esi) f3af: 04 3a add $0x3a,%al f3b1: 36 00 00 add %al,%ss:(%eax) f3b4: 06 push %es f3b5: 04 0f add $0xf,%al f3b7: 23 00 and (%eax),%eax f3b9: 00 1a add %bl,(%edx) f3bb: 2e 0f 00 00 sldt %cs:(%eax) f3bf: 01 06 add %eax,(%esi) f3c1: 04 1f add $0x1f,%al f3c3: 37 aaa f3c4: 00 00 add %al,(%eax) f3c6: 1a fd sbb %ch,%bh f3c8: 1b 00 sbb (%eax),%eax f3ca: 00 01 add %al,(%ecx) f3cc: 06 push %es f3cd: 04 2b add $0x2b,%al f3cf: 37 aaa f3d0: 00 00 add %al,(%eax) f3d2: 06 push %es f3d3: 04 73 add $0x73,%al f3d5: 33 00 xor (%eax),%eax f3d7: 00 06 add %al,(%esi) f3d9: 04 af add $0xaf,%al f3db: 32 00 xor (%eax),%al f3dd: 00 0e add %cl,(%esi) f3df: 53 push %ebx f3e0: 37 aaa f3e1: 00 00 add %al,(%eax) f3e3: 01 25 00 00 00 08 add %esp,0x8000000 f3e9: bb 14 00 00 00 mov $0x14,%ebx f3ee: 06 push %es f3ef: 04 43 add $0x43,%al f3f1: 37 aaa f3f2: 00 00 add %al,(%eax) f3f4: 06 push %es f3f5: 04 58 add $0x58,%al f3f7: 1f pop %ds f3f8: 00 00 add %al,(%eax) f3fa: 1a 2d 0e 00 00 01 sbb 0x100000e,%ch f400: 06 push %es f401: 04 5f add $0x5f,%al f403: 37 aaa f404: 00 00 add %al,(%eax) f406: 1a 44 12 00 sbb 0x0(%edx,%edx,1),%al f40a: 00 01 add %al,(%ecx) f40c: 06 push %es f40d: 04 6b add $0x6b,%al f40f: 37 aaa f410: 00 00 add %al,(%eax) f412: 06 push %es f413: 04 98 add $0x98,%al f415: 28 00 sub %al,(%eax) f417: 00 1a add %bl,(%edx) f419: 1f pop %ds f41a: 0e push %cs f41b: 00 00 add %al,(%eax) f41d: 01 06 add %eax,(%esi) f41f: 04 7d add $0x7d,%al f421: 37 aaa f422: 00 00 add %al,(%eax) f424: 1a bd 25 00 00 01 sbb 0x1000025(%ebp),%bh f42a: 06 push %es f42b: 04 89 add $0x89,%al f42d: 37 aaa f42e: 00 00 add %al,(%eax) f430: 1a 93 0f 00 00 01 sbb 0x100000f(%ebx),%dl f436: 06 push %es f437: 04 95 add $0x95,%al f439: 37 aaa f43a: 00 00 add %al,(%eax) f43c: 06 push %es f43d: 04 14 add $0x14,%al f43f: 22 00 and (%eax),%al f441: 00 06 add %al,(%esi) f443: 04 1a add $0x1a,%al f445: 2b 00 sub (%eax),%eax f447: 00 1a add %bl,(%edx) f449: 3a 1d 00 00 01 06 cmp 0x6010000,%bl f44f: 04 ad add $0xad,%al f451: 37 aaa f452: 00 00 add %al,(%eax) f454: 1a 12 sbb (%edx),%dl f456: 19 00 sbb %eax,(%eax) f458: 00 01 add %al,(%ecx) f45a: 06 push %es f45b: 04 b9 add $0xb9,%al f45d: 37 aaa f45e: 00 00 add %al,(%eax) f460: 0b fc or %esp,%edi f462: 37 aaa f463: 00 00 add %al,(%eax) f465: 75 0f jne f476 <.debug_info+0xf476> f467: 00 00 add %al,(%eax) f469: 0c 3e or $0x3e,%al f46b: 12 0d 53 14 00 00 adc 0x1453,%cl f471: 3e 13 8d 28 00 00 02 adc %ds:0x2000028(%ebp),%ecx f478: 23 00 and (%eax),%eax f47a: 0d 8d 0f 00 00 or $0xf8d,%eax f47f: 3e ds f480: 14 e3 adc $0xe3,%al f482: 3a 00 cmp (%eax),%al f484: 00 02 add %al,(%edx) f486: 23 04 0d e7 0b 00 00 and 0xbe7(,%ecx,1),%eax f48d: 3e ds f48e: 15 5b 01 00 00 adc $0x15b,%eax f493: 02 23 add (%ebx),%ah f495: 08 00 or %al,(%eax) f497: 10 e3 adc %ah,%bl f499: 3a 00 cmp (%eax),%al f49b: 00 7e 17 add %bh,0x17(%esi) f49e: 00 00 add %al,(%eax) f4a0: 00 12 add %dl,(%edx) f4a2: 3c 15 cmp $0x15,%al f4a4: 0d c8 16 00 00 or $0x16c8,%eax f4a9: 3d f8 6a 40 00 cmp $0x406af8,%eax f4ae: 00 02 add %al,(%edx) f4b0: 23 00 and (%eax),%eax f4b2: 0d 86 19 00 00 or $0x1986,%eax f4b7: 3d fb cc 14 00 cmp $0x14ccfb,%eax f4bc: 00 02 add %al,(%edx) f4be: 23 04 0d 53 14 00 00 and 0x1453(,%ecx,1),%eax f4c5: 3d fe 2b 3f 00 cmp $0x3f2bfe,%eax f4ca: 00 02 add %al,(%edx) f4cc: 23 0c 13 and (%ebx,%edx,1),%ecx f4cf: 68 07 00 00 3d push $0x3d000007 f4d4: 01 01 add %eax,(%ecx) f4d6: 26 es f4d7: 40 inc %eax f4d8: 00 00 add %al,(%eax) f4da: 02 23 add (%ebx),%ah f4dc: 48 dec %eax f4dd: 13 7b 11 adc 0x11(%ebx),%edi f4e0: 00 00 add %al,(%eax) f4e2: 3d 02 01 fe 40 cmp $0x40fe0102,%eax f4e7: 00 00 add %al,(%eax) f4e9: 03 23 add (%ebx),%esp f4eb: 98 cwtl f4ec: 01 13 add %edx,(%ebx) f4ee: b4 05 mov $0x5,%ah f4f0: 00 00 add %al,(%eax) f4f2: 3d 03 01 b6 3f cmp $0x3fb60103,%eax f4f7: 00 00 add %al,(%eax) f4f9: 03 23 add (%ebx),%esp f4fb: 9c pushf f4fc: 01 13 add %edx,(%ebx) f4fe: 18 26 sbb %ah,(%esi) f500: 00 00 add %al,(%eax) f502: 3d 04 01 8d 28 cmp $0x288d0104,%eax f507: 00 00 add %al,(%eax) f509: 03 23 add (%ebx),%esp f50b: a0 01 13 3c 08 mov 0x83c1301,%al f510: 00 00 add %al,(%eax) f512: 3d 05 01 8d 28 cmp $0x288d0105,%eax f517: 00 00 add %al,(%eax) f519: 03 23 add (%ebx),%esp f51b: a4 movsb %ds:(%esi),%es:(%edi) f51c: 01 13 add %edx,(%ebx) f51e: 06 push %es f51f: 1b 00 sbb (%eax),%eax f521: 00 3d 08 01 04 41 add %bh,0x41040108 f527: 00 00 add %al,(%eax) f529: 03 23 add (%ebx),%esp f52b: a8 01 test $0x1,%al f52d: 13 c6 adc %esi,%eax f52f: 03 00 add (%eax),%eax f531: 00 3d 09 01 8b 00 add %bh,0x8b0109 f537: 00 00 add %al,(%eax) f539: 03 23 add (%ebx),%esp f53b: ac lods %ds:(%esi),%al f53c: 01 13 add %edx,(%ebx) f53e: 4c dec %esp f53f: 1b 00 sbb (%eax),%eax f541: 00 3d 0a 01 0f 41 add %bh,0x410f010a f547: 00 00 add %al,(%eax) f549: 03 23 add (%ebx),%esp f54b: b0 01 mov $0x1,%al f54d: 13 ee adc %esi,%ebp f54f: 0f 00 00 sldt (%eax) f552: 3d 0d 01 04 41 cmp $0x4104010d,%eax f557: 00 00 add %al,(%eax) f559: 03 23 add (%ebx),%esp f55b: b4 01 mov $0x1,%ah f55d: 13 b9 23 00 00 3d adc 0x3d000023(%ecx),%edi f563: 0e push %cs f564: 01 8b 00 00 00 03 add %ecx,0x3000000(%ebx) f56a: 23 b8 01 13 bd 1f and 0x1fbd1301(%eax),%edi f570: 00 00 add %al,(%eax) f572: 3d 0f 01 0f 41 cmp $0x410f010f,%eax f577: 00 00 add %al,(%eax) f579: 03 23 add (%ebx),%esp f57b: bc 01 13 1c 23 mov $0x231c1301,%esp f580: 00 00 add %al,(%eax) f582: 3d 12 01 04 41 cmp $0x41040112,%eax f587: 00 00 add %al,(%eax) f589: 03 23 add (%ebx),%esp f58b: c0 01 13 rolb $0x13,(%ecx) f58e: f9 stc f58f: 0b 00 or (%eax),%eax f591: 00 3d 13 01 8b 00 add %bh,0x8b0113 f597: 00 00 add %al,(%eax) f599: 03 23 add (%ebx),%esp f59b: c4 01 les (%ecx),%eax f59d: 13 b8 19 00 00 3d adc 0x3d000019(%eax),%edi f5a3: 14 01 adc $0x1,%al f5a5: 0f 41 00 cmovno (%eax),%eax f5a8: 00 03 add %al,(%ebx) f5aa: 23 c8 and %eax,%ecx f5ac: 01 13 add %edx,(%ebx) f5ae: 63 20 arpl %sp,(%eax) f5b0: 00 00 add %al,(%eax) f5b2: 3d 16 01 04 41 cmp $0x41040116,%eax f5b7: 00 00 add %al,(%eax) f5b9: 03 23 add (%ebx),%esp f5bb: cc int3 f5bc: 01 13 add %edx,(%ebx) f5be: 27 daa f5bf: 1b 00 sbb (%eax),%eax f5c1: 00 3d 17 01 8b 00 add %bh,0x8b0117 f5c7: 00 00 add %al,(%eax) f5c9: 03 23 add (%ebx),%esp f5cb: d0 01 rolb (%ecx) f5cd: 13 15 0d 00 00 3d adc 0x3d00000d,%edx f5d3: 18 01 sbb %al,(%ecx) f5d5: 0f 41 00 cmovno (%eax),%eax f5d8: 00 03 add %al,(%ebx) f5da: 23 d4 and %esp,%edx f5dc: 01 13 add %edx,(%ebx) f5de: f2 16 repnz push %ss f5e0: 00 00 add %al,(%eax) f5e2: 3d 1b 01 04 41 cmp $0x4104011b,%eax f5e7: 00 00 add %al,(%eax) f5e9: 03 23 add (%ebx),%esp f5eb: d8 01 fadds (%ecx) f5ed: 13 6b 1d adc 0x1d(%ebx),%ebp f5f0: 00 00 add %al,(%eax) f5f2: 3d 1c 01 8b 00 cmp $0x8b011c,%eax f5f7: 00 00 add %al,(%eax) f5f9: 03 23 add (%ebx),%esp f5fb: dc 01 faddl (%ecx) f5fd: 13 b8 22 00 00 3d adc 0x3d000022(%eax),%edi f603: 1d 01 0f 41 00 sbb $0x410f01,%eax f608: 00 03 add %al,(%ebx) f60a: 23 e0 and %eax,%esp f60c: 01 13 add %edx,(%ebx) f60e: ac lods %ds:(%esi),%al f60f: 13 00 adc (%eax),%eax f611: 00 3d 20 01 8b 00 add %bh,0x8b0120 f617: 00 00 add %al,(%eax) f619: 03 23 add (%ebx),%esp f61b: e4 01 in $0x1,%al f61d: 13 f7 adc %edi,%esi f61f: 0f 00 00 sldt (%eax) f622: 3d 21 01 20 41 cmp $0x41200121,%eax f627: 00 00 add %al,(%eax) f629: 03 23 add (%ebx),%esp f62b: e8 01 13 ab 0d call dac0931 f630: 00 00 add %al,(%eax) f632: 3d 24 01 f1 1c cmp $0x1cf10124,%eax f637: 00 00 add %al,(%eax) f639: 03 23 add (%ebx),%esp f63b: ec in (%dx),%al f63c: 01 13 add %edx,(%ebx) f63e: bc 0c 00 00 3d mov $0x3d00000c,%esp f643: 27 daa f644: 01 bb 14 00 00 03 add %edi,0x3000014(%ebx) f64a: 23 f0 and %eax,%esi f64c: 01 13 add %edx,(%ebx) f64e: 9f lahf f64f: 0d 00 00 3d 2a or $0x2a3d0000,%eax f654: 01 bb 14 00 00 03 add %edi,0x3000014(%ebx) f65a: 23 f4 and %esp,%esi f65c: 01 13 add %edx,(%ebx) f65e: fa cli f65f: 10 00 adc %al,(%eax) f661: 00 3d 2d 01 43 00 add %bh,0x43012d f667: 00 00 add %al,(%eax) f669: 03 23 add (%ebx),%esp f66b: f8 clc f66c: 01 13 add %edx,(%ebx) f66e: 2f das f66f: 20 00 and %al,(%eax) f671: 00 3d 2d 01 43 00 add %bh,0x43012d f677: 00 00 add %al,(%eax) f679: 03 23 add (%ebx),%esp f67b: fc cld f67c: 01 13 add %edx,(%ebx) f67e: bc 1e 00 00 3d mov $0x3d00001e,%esp f683: 30 01 xor %al,(%ecx) f685: 43 inc %ebx f686: 00 00 add %al,(%eax) f688: 00 03 add %al,(%ebx) f68a: 23 80 02 13 11 0b and 0xb111302(%eax),%eax f690: 00 00 add %al,(%eax) f692: 3d 30 01 43 00 cmp $0x430130,%eax f697: 00 00 add %al,(%eax) f699: 03 23 add (%ebx),%esp f69b: 84 02 test %al,(%edx) f69d: 13 20 adc (%eax),%esp f69f: 26 00 00 add %al,%es:(%eax) f6a2: 3d 33 01 bb 14 cmp $0x14bb0133,%eax f6a7: 00 00 add %al,(%eax) f6a9: 03 23 add (%ebx),%esp f6ab: 88 02 mov %al,(%edx) f6ad: 13 ba 21 00 00 3d adc 0x3d000021(%edx),%edi f6b3: 36 ss f6b4: 01 d1 add %edx,%ecx f6b6: 3e 00 00 add %al,%ds:(%eax) f6b9: 03 23 add (%ebx),%esp f6bb: 8c 02 movw %es,(%edx) f6bd: 13 ff adc %edi,%edi f6bf: 1a 00 sbb (%eax),%al f6c1: 00 3d 39 01 25 00 add %bh,0x250139 f6c7: 00 00 add %al,(%eax) f6c9: 03 23 add (%ebx),%esp f6cb: 8c 02 movw %es,(%edx) f6cd: 13 a6 05 00 00 3d adc 0x3d000005(%esi),%esp f6d3: 3c 01 cmp $0x1,%al f6d5: 25 00 00 00 03 and $0x3000000,%eax f6da: 23 90 02 12 72 65 and 0x65721202(%eax),%edx f6e0: 66 data16 f6e1: 00 3d 40 01 2b 41 add %bh,0x412b0140 f6e7: 00 00 add %al,(%eax) f6e9: 03 23 add (%ebx),%esp f6eb: 80 03 13 addb $0x13,(%ebx) f6ee: b9 06 00 00 3d mov $0x3d000006,%ecx f6f3: 43 inc %ebx f6f4: 01 cc add %ecx,%esp f6f6: 14 00 adc $0x0,%al f6f8: 00 03 add %al,(%ebx) f6fa: 23 80 23 13 eb 16 and 0x16eb1323(%eax),%eax f700: 00 00 add %al,(%eax) f702: 3d 46 01 a9 14 cmp $0x14a90146,%eax f707: 00 00 add %al,(%eax) f709: 03 23 add (%ebx),%esp f70b: 88 23 mov %ah,(%ebx) f70d: 13 d7 adc %edi,%edx f70f: 0e push %cs f710: 00 00 add %al,(%eax) f712: 3d 49 01 36 1d cmp $0x1d360149,%eax f717: 00 00 add %al,(%eax) f719: 03 23 add (%ebx),%esp f71b: 8c 23 movw %fs,(%ebx) f71d: 13 38 adc (%eax),%edi f71f: 1f pop %ds f720: 00 00 add %al,(%eax) f722: 3d 4e 01 3b 41 cmp $0x413b014e,%eax f727: 00 00 add %al,(%eax) f729: 03 23 add (%ebx),%esp f72b: 90 nop f72c: 23 13 and (%ebx),%edx f72e: 5b pop %ebx f72f: 1b 00 sbb (%eax),%eax f731: 00 3d 4f 01 43 00 add %bh,0x43014f f737: 00 00 add %al,(%eax) f739: 03 23 add (%ebx),%esp f73b: 94 xchg %eax,%esp f73c: 23 13 and (%ebx),%edx f73e: db 11 fistl (%ecx) f740: 00 00 add %al,(%eax) f742: 3d 50 01 c9 00 cmp $0xc90150,%eax f747: 00 00 add %al,(%eax) f749: 03 23 add (%ebx),%esp f74b: 98 cwtl f74c: 23 13 and (%ebx),%edx f74e: 39 09 cmp %ecx,(%ecx) f750: 00 00 add %al,(%eax) f752: 3d 53 01 41 41 cmp $0x41410153,%eax f757: 00 00 add %al,(%eax) f759: 03 23 add (%ebx),%esp f75b: 9c pushf f75c: 23 13 and (%ebx),%edx f75e: b7 24 mov $0x24,%bh f760: 00 00 add %al,(%eax) f762: 3d 57 01 bb 14 cmp $0x14bb0157,%eax f767: 00 00 add %al,(%eax) f769: 03 23 add (%ebx),%esp f76b: a0 23 13 1d 1f mov 0x1f1d1323,%al f770: 00 00 add %al,(%eax) f772: 3d 5b 01 c9 00 cmp $0xc9015b,%eax f777: 00 00 add %al,(%eax) f779: 03 23 add (%ebx),%esp f77b: a4 movsb %ds:(%esi),%es:(%edi) f77c: 23 00 and (%eax),%eax f77e: 06 push %es f77f: 04 fc add $0xfc,%al f781: 37 aaa f782: 00 00 add %al,(%eax) f784: 0b 12 or (%edx),%edx f786: 3b 00 cmp (%eax),%eax f788: 00 c7 add %al,%bh f78a: 0e push %cs f78b: 00 00 add %al,(%eax) f78d: 08 3e or %bh,(%esi) f78f: 18 0d 53 14 00 00 sbb %cl,0x1453 f795: 3e 19 8d 28 00 00 02 sbb %ecx,%ds:0x2000028(%ebp) f79c: 23 00 and (%eax),%eax f79e: 0d 7c 0e 00 00 or $0xe7c,%eax f7a3: 3e 1a 12 sbb %ds:(%edx),%dl f7a6: 3b 00 cmp (%eax),%eax f7a8: 00 02 add %al,(%edx) f7aa: 23 04 00 and (%eax,%eax,1),%eax f7ad: 06 push %es f7ae: 04 18 add $0x18,%al f7b0: 3b 00 cmp (%eax),%eax f7b2: 00 06 add %al,(%esi) f7b4: 04 c5 add $0xc5,%al f7b6: 37 aaa f7b7: 00 00 add %al,(%eax) f7b9: 06 push %es f7ba: 04 24 add $0x24,%al f7bc: 3b 00 cmp (%eax),%eax f7be: 00 0b add %cl,(%ebx) f7c0: af scas %es:(%edi),%eax f7c1: 3b 00 cmp (%eax),%eax f7c3: 00 15 1c 00 00 4c add %dl,0x4c00001c f7c9: 3e ds f7ca: 0f 0d (bad) f7cc: e7 03 out %eax,$0x3 f7ce: 00 00 add %al,(%eax) f7d0: 3f aas f7d1: 34 8d xor $0x8d,%al f7d3: 28 00 sub %al,(%eax) f7d5: 00 02 add %al,(%edx) f7d7: 23 00 and (%eax),%eax f7d9: 0d 53 14 00 00 or $0x1453,%eax f7de: 3f aas f7df: 35 38 3c 00 00 xor $0x3c38,%eax f7e4: 02 23 add (%ebx),%ah f7e6: 04 0d add $0xd,%al f7e8: ae scas %es:(%edi),%al f7e9: 16 push %ss f7ea: 00 00 add %al,(%eax) f7ec: 3f aas f7ed: 36 ss f7ee: 1d 3c 00 00 02 sbb $0x200003c,%eax f7f3: 23 18 and (%eax),%ebx f7f5: 0d a3 1a 00 00 or $0x1aa3,%eax f7fa: 3f aas f7fb: 37 aaa f7fc: cc int3 f7fd: 14 00 adc $0x0,%al f7ff: 00 02 add %al,(%edx) f801: 23 1c 0d ec 24 00 00 and 0x24ec(,%ecx,1),%ebx f808: 3f aas f809: 38 1e cmp %bl,(%esi) f80b: 3b 00 cmp (%eax),%eax f80d: 00 02 add %al,(%edx) f80f: 23 24 0d db 07 00 00 and 0x7db(,%ecx,1),%esp f816: 3f aas f817: 39 a9 3c 00 00 02 cmp %ebp,0x200003c(%ecx) f81d: 23 28 and (%eax),%ebp f81f: 0d e5 22 00 00 or $0x22e5,%eax f824: 3f aas f825: 3a e6 cmp %dh,%ah f827: 3c 00 cmp $0x0,%al f829: 00 02 add %al,(%edx) f82b: 23 2c 0d 30 07 00 00 and 0x730(,%ecx,1),%ebp f832: 3f aas f833: 3b a0 23 00 00 02 cmp 0x2000023(%eax),%esp f839: 23 30 and (%eax),%esi f83b: 0d d0 1f 00 00 or $0x1fd0,%eax f840: 3f aas f841: 3c ac cmp $0xac,%al f843: 17 pop %ss f844: 00 00 add %al,(%eax) f846: 02 23 add (%ebx),%ah f848: 34 00 xor $0x0,%al f84a: 0b d8 or %eax,%ebx f84c: 3b 00 cmp (%eax),%eax f84e: 00 d0 add %dl,%al f850: 0a 00 or (%eax),%al f852: 00 08 add %cl,(%eax) f854: 3e ds f855: 3f aas f856: 0d a1 05 00 00 or $0x5a1,%eax f85b: 3e ds f85c: 40 inc %eax f85d: f2 3b 00 repnz cmp (%eax),%eax f860: 00 02 add %al,(%edx) f862: 23 00 and (%eax),%eax f864: 0d c9 14 00 00 or $0x14c9,%eax f869: 3e ds f86a: 41 inc %ecx f86b: 17 pop %ss f86c: 3c 00 cmp $0x0,%al f86e: 00 02 add %al,(%edx) f870: 23 04 00 and (%eax,%eax,1),%eax f873: 0e push %cs f874: f2 3b 00 repnz cmp (%eax),%eax f877: 00 01 add %al,(%ecx) f879: a8 01 test $0x1,%al f87b: 00 00 add %al,(%eax) f87d: 08 1e or %bl,(%esi) f87f: 3b 00 cmp (%eax),%eax f881: 00 08 add %cl,(%eax) f883: 18 3b sbb %bh,(%ebx) f885: 00 00 add %al,(%eax) f887: 08 c9 or %cl,%cl f889: 00 00 add %al,(%eax) f88b: 00 00 add %al,(%eax) f88d: 06 push %es f88e: 04 d8 add $0xd8,%al f890: 3b 00 cmp (%eax),%eax f892: 00 0e add %cl,(%esi) f894: 17 pop %ss f895: 3c 00 cmp $0x0,%al f897: 00 01 add %al,(%ecx) f899: a8 01 test $0x1,%al f89b: 00 00 add %al,(%eax) f89d: 08 1e or %bl,(%esi) f89f: 3b 00 cmp (%eax),%eax f8a1: 00 08 add %cl,(%eax) f8a3: 18 3b sbb %bh,(%ebx) f8a5: 00 00 add %al,(%eax) f8a7: 08 8d 28 00 00 08 or %cl,0x8000028(%ebp) f8ad: 9d popf f8ae: 01 00 add %eax,(%eax) f8b0: 00 00 add %al,(%eax) f8b2: 06 push %es f8b3: 04 f8 add $0xf8,%al f8b5: 3b 00 cmp (%eax),%eax f8b7: 00 0b add %cl,(%ebx) f8b9: 38 3c 00 cmp %bh,(%eax,%eax,1) f8bc: 00 ae 16 00 00 04 add %ch,0x4000016(%esi) f8c2: 40 inc %eax f8c3: 17 pop %ss f8c4: 0d 35 12 00 00 or $0x1235,%eax f8c9: 40 inc %eax f8ca: 18 5b 16 sbb %bl,0x16(%ebx) f8cd: 00 00 add %al,(%eax) f8cf: 02 23 add (%ebx),%ah f8d1: 00 00 add %al,(%eax) f8d3: 03 48 3c add 0x3c(%eax),%ecx f8d6: 00 00 add %al,(%eax) f8d8: cf iret f8d9: 00 00 add %al,(%eax) f8db: 00 04 3c add %al,(%esp,%edi,1) f8de: 00 00 add %al,(%eax) f8e0: 00 13 add %dl,(%ebx) f8e2: 00 0b add %cl,(%ebx) f8e4: a9 3c 00 00 db test $0xdb00003c,%eax f8e9: 07 pop %es f8ea: 00 00 add %al,(%eax) f8ec: 70 3f jo f92d <.debug_info+0xf92d> f8ee: 39 0d ba 0e 00 00 cmp %ecx,0xeba f8f4: 3f aas f8f5: 79 cf jns f8c6 <.debug_info+0xf8c6> f8f7: 3d 00 00 02 23 cmp $0x23020000,%eax f8fc: 00 0d e5 22 00 00 add %cl,0x22e5 f902: 3f aas f903: 7a e6 jp f8eb <.debug_info+0xf8eb> f905: 3c 00 cmp $0x0,%al f907: 00 02 add %al,(%edx) f909: 23 04 0d 86 19 00 00 and 0x1986(,%ecx,1),%eax f910: 3f aas f911: 7b cc jnp f8df <.debug_info+0xf8df> f913: 14 00 adc $0x0,%al f915: 00 02 add %al,(%edx) f917: 23 08 and (%eax),%ecx f919: 0d fc 1c 00 00 or $0x1cfc,%eax f91e: 3f aas f91f: 7c e8 jl f909 <.debug_info+0xf909> f921: 15 00 00 02 23 adc $0x23020000,%eax f926: 10 0d ad 0c 00 00 adc %cl,0xcad f92c: 3f aas f92d: 7d 24 jge f953 <.debug_info+0xf953> f92f: 3b 00 cmp (%eax),%eax f931: 00 02 add %al,(%edx) f933: 23 20 and (%eax),%esp f935: 0d 32 13 00 00 or $0x1332,%eax f93a: 3f aas f93b: 7e d5 jle f912 <.debug_info+0xf912> f93d: 3d 00 00 02 23 cmp $0x23020000,%eax f942: 6c insb (%dx),%es:(%edi) f943: 00 06 add %al,(%esi) f945: 04 48 add $0x48,%al f947: 3c 00 cmp $0x0,%al f949: 00 0b add %cl,(%ebx) f94b: e6 3c out %al,$0x3c f94d: 00 00 add %al,(%eax) f94f: 5a pop %edx f950: 1a 00 sbb (%eax),%al f952: 00 0c 3f add %cl,(%edi,%edi,1) f955: 3a 0d 89 1e 00 00 cmp 0x1e89,%cl f95b: 3f aas f95c: 5a pop %edx f95d: f8 clc f95e: 3c 00 cmp $0x0,%al f960: 00 02 add %al,(%edx) f962: 23 00 and (%eax),%eax f964: 0d d0 0a 00 00 or $0xad0,%eax f969: 3f aas f96a: 5b pop %ebx f96b: fe (bad) f96c: 3c 00 cmp $0x0,%al f96e: 00 02 add %al,(%edx) f970: 23 04 0d ca 12 00 00 and 0x12ca(,%ecx,1),%eax f977: 3f aas f978: 5c pop %esp f979: 12 3b adc (%ebx),%bh f97b: 00 00 add %al,(%eax) f97d: 02 23 add (%ebx),%ah f97f: 08 00 or %al,(%eax) f981: 06 push %es f982: 04 af add $0xaf,%al f984: 3c 00 cmp $0x0,%al f986: 00 07 add %al,(%edi) f988: f8 clc f989: 3c 00 cmp $0x0,%al f98b: 00 01 add %al,(%ecx) f98d: 08 1e or %bl,(%esi) f98f: 3b 00 cmp (%eax),%eax f991: 00 00 add %al,(%eax) f993: 06 push %es f994: 04 ec add $0xec,%al f996: 3c 00 cmp $0x0,%al f998: 00 06 add %al,(%esi) f99a: 04 af add $0xaf,%al f99c: 3b 00 cmp (%eax),%eax f99e: 00 0b add %cl,(%ebx) f9a0: 3b 3d 00 00 8f 0d cmp 0xd8f0000,%edi f9a6: 00 00 add %al,(%eax) f9a8: 0c 3f or $0x3f,%al f9aa: 71 0d jno f9b9 <.debug_info+0xf9b9> f9ac: 5e pop %esi f9ad: 17 pop %ss f9ae: 00 00 add %al,(%eax) f9b0: 3f aas f9b1: 72 50 jb fa03 <.debug_info+0xfa03> f9b3: 3d 00 00 02 23 cmp $0x23020000,%eax f9b8: 00 0d 53 14 00 00 add %cl,0x1453 f9be: 3f aas f9bf: 73 6b jae fa2c <.debug_info+0xfa2c> f9c1: 3d 00 00 02 23 cmp $0x23020000,%eax f9c6: 04 0d add $0xd,%al f9c8: b9 20 00 00 3f mov $0x3f000020,%ecx f9cd: 75 a0 jne f96f <.debug_info+0xf96f> f9cf: 3d 00 00 02 23 cmp $0x23020000,%eax f9d4: 08 00 or %al,(%eax) f9d6: 0e push %cs f9d7: 50 push %eax f9d8: 3d 00 00 01 25 cmp $0x25010000,%eax f9dd: 00 00 add %al,(%eax) f9df: 00 08 add %cl,(%eax) f9e1: a9 3c 00 00 08 test $0x800003c,%eax f9e6: 1e push %ds f9e7: 3b 00 cmp (%eax),%eax f9e9: 00 00 add %al,(%eax) f9eb: 06 push %es f9ec: 04 3b add $0x3b,%al f9ee: 3d 00 00 0e 6b cmp $0x6b0e0000,%eax f9f3: 3d 00 00 01 8d cmp $0x8d010000,%eax f9f8: 28 00 sub %al,(%eax) f9fa: 00 08 add %cl,(%eax) f9fc: a9 3c 00 00 08 test $0x800003c,%eax fa01: 1e push %ds fa02: 3b 00 cmp (%eax),%eax fa04: 00 00 add %al,(%eax) fa06: 06 push %es fa07: 04 56 add $0x56,%al fa09: 3d 00 00 0e 9a cmp $0x9a0e0000,%eax fa0e: 3d 00 00 01 25 cmp $0x25010000,%eax fa13: 00 00 add %al,(%eax) fa15: 00 08 add %cl,(%eax) fa17: a9 3c 00 00 08 test $0x800003c,%eax fa1c: 1e push %ds fa1d: 3b 00 cmp (%eax),%eax fa1f: 00 08 add %cl,(%eax) fa21: 9a 3d 00 00 08 25 00 lcall $0x25,$0x800003d fa28: 00 00 add %al,(%eax) fa2a: 08 c9 or %cl,%cl fa2c: 00 00 add %al,(%eax) fa2e: 00 08 add %cl,(%eax) fa30: 25 00 00 00 00 and $0x0,%eax fa35: 06 push %es fa36: 04 c9 add $0xc9,%al fa38: 00 00 add %al,(%eax) fa3a: 00 06 add %al,(%esi) fa3c: 04 71 add $0x71,%al fa3e: 3d 00 00 0b cf cmp $0xcf0b0000,%eax fa43: 3d 00 00 f8 07 cmp $0x7f80000,%eax fa48: 00 00 add %al,(%eax) fa4a: 8c 3f movw %?,(%edi) fa4c: 79 0d jns fa5b <.debug_info+0xfa5b> fa4e: db 07 fildl (%edi) fa50: 00 00 add %al,(%eax) fa52: 3f aas fa53: aa stos %al,%es:(%edi) fa54: 48 dec %eax fa55: 3c 00 cmp $0x0,%al fa57: 00 02 add %al,(%edx) fa59: 23 00 and (%eax),%eax fa5b: 0d 36 0b 00 00 or $0xb36,%eax fa60: 3f aas fa61: ab stos %eax,%es:(%edi) fa62: b7 17 mov $0x17,%bh fa64: 00 00 add %al,(%eax) fa66: 02 23 add (%ebx),%ah fa68: 70 00 jo fa6a <.debug_info+0xfa6a> fa6a: 06 push %es fa6b: 04 a6 add $0xa6,%al fa6d: 3d 00 00 06 04 cmp $0x4060000,%eax fa72: 04 3d add $0x3d,%al fa74: 00 00 add %al,(%eax) fa76: 03 eb add %ebx,%ebp fa78: 3d 00 00 cf 00 cmp $0xcf0000,%eax fa7d: 00 00 add %al,(%eax) fa7f: 04 3c add $0x3c,%al fa81: 00 00 add %al,(%eax) fa83: 00 1f add %bl,(%edi) fa85: 00 0b add %cl,(%ebx) fa87: 22 3e and (%esi),%bh fa89: 00 00 add %al,(%eax) fa8b: 47 inc %edi fa8c: 08 00 or %al,(%eax) fa8e: 00 08 add %cl,(%eax) fa90: 3a 15 0d a5 08 00 cmp 0x8a50d,%dl fa96: 00 3a add %bh,(%edx) fa98: 16 push %ss fa99: 67 00 00 addr16 add %al,(%bx,%si) fa9c: 00 02 add %al,(%edx) fa9e: 23 00 and (%eax),%eax faa0: 0d 6d 12 00 00 or $0x126d,%eax faa5: 3a 17 cmp (%edi),%dl faa7: 43 inc %ebx faa8: 00 00 add %al,(%eax) faaa: 00 02 add %al,(%edx) faac: 23 02 and (%edx),%eax faae: 0c 70 or $0x70,%al fab0: 61 popa fab1: 64 00 3a add %bh,%fs:(%edx) fab4: 18 67 00 sbb %ah,0x0(%edi) fab7: 00 00 add %al,(%eax) fab9: 02 23 add (%ebx),%ah fabb: 06 push %es fabc: 00 09 add %cl,(%ecx) fabe: a3 16 00 00 43 mov %eax,0x43000016 fac3: 11 1e adc %ebx,(%esi) fac5: 01 00 add %eax,(%eax) fac7: 00 09 add %cl,(%ecx) fac9: d2 21 shlb %cl,(%ecx) facb: 00 00 add %al,(%eax) facd: 43 inc %ebx face: 12 13 adc (%ebx),%dl fad0: 01 00 add %eax,(%eax) fad2: 00 09 add %cl,(%ecx) fad4: 3f aas fad5: 1f pop %ds fad6: 00 00 add %al,(%eax) fad8: 43 inc %ebx fad9: 15 1e 01 00 00 adc $0x11e,%eax fade: 0b a4 3e 00 00 37 1c or 0x1c370000(%esi,%edi,1),%esp fae5: 00 00 add %al,(%eax) fae7: 10 43 98 adc %al,0xffffff98(%ebx) faea: 0d 66 1b 00 00 or $0x1b66,%eax faef: 43 inc %ebx faf0: 99 cltd faf1: 38 3e cmp %bh,(%esi) faf3: 00 00 add %al,(%eax) faf5: 02 23 add (%ebx),%ah faf7: 00 0d dd 0f 00 00 add %cl,0xfdd fafd: 43 inc %ebx fafe: 9a 22 3e 00 00 02 23 lcall $0x2302,$0x3e22 fb05: 04 0d add $0xd,%al fb07: 2a 06 sub (%esi),%al fb09: 00 00 add %al,(%eax) fb0b: 43 inc %ebx fb0c: 9b fwait fb0d: 38 3e cmp %bh,(%esi) fb0f: 00 00 add %al,(%eax) fb11: 02 23 add (%ebx),%ah fb13: 08 0d b8 11 00 00 or %cl,0x11b8 fb19: 43 inc %ebx fb1a: 9c pushf fb1b: 05 01 00 00 02 add $0x2000001,%eax fb20: 23 0c 0d 3d 21 00 00 and 0x213d(,%ecx,1),%ecx fb27: 43 inc %ebx fb28: 9d popf fb29: 05 01 00 00 02 add $0x2000001,%eax fb2e: 23 0d 0d f2 06 00 and 0x6f20d,%ecx fb34: 00 43 9e add %al,0xffffff9e(%ebx) fb37: 2d 3e 00 00 02 sub $0x200003e,%eax fb3c: 23 0e and (%esi),%ecx fb3e: 00 09 add %cl,(%ecx) fb40: b3 14 mov $0x14,%bl fb42: 00 00 add %al,(%eax) fb44: 43 inc %ebx fb45: 9f lahf fb46: 43 inc %ebx fb47: 3e 00 00 add %al,%ds:(%eax) fb4a: 0f c6 3e 00 shufps $0x0,(%esi),%xmm7 fb4e: 00 04 42 add %al,(%edx,%eax,2) fb51: 09 0d e1 05 00 00 or %ecx,0x5e1 fb57: 42 inc %edx fb58: 08 e0 or %ah,%al fb5a: 36 00 00 add %al,%ss:(%eax) fb5d: 02 23 add (%ebx),%ah fb5f: 00 00 add %al,(%eax) fb61: 09 1f or %ebx,(%edi) fb63: 24 00 and $0x0,%al fb65: 00 42 09 add %al,0x9(%edx) fb68: af scas %es:(%edi),%eax fb69: 3e 00 00 add %al,%ds:(%eax) fb6c: 2a dd sub %ch,%bl fb6e: 1c 00 sbb $0x0,%al fb70: 00 00 add %al,(%eax) fb72: 41 inc %ecx fb73: 06 push %es fb74: 0b 02 or (%edx),%eax fb76: 3f aas fb77: 00 00 add %al,(%eax) fb79: d6 (bad) fb7a: 14 00 adc $0x0,%al fb7c: 00 08 add %cl,(%eax) fb7e: 3d 23 0d 3e 12 cmp $0x123e0d23,%eax fb83: 00 00 add %al,(%eax) fb85: 3d 24 43 00 00 cmp $0x4324,%eax fb8a: 00 02 add %al,(%edx) fb8c: 23 00 and (%eax),%eax fb8e: 0d 53 14 00 00 or $0x1453,%eax fb93: 3d 25 8d 28 00 cmp $0x288d25,%eax fb98: 00 02 add %al,(%edx) fb9a: 23 04 00 and (%eax,%eax,1),%eax fb9d: 0b 2b or (%ebx),%ebp fb9f: 3f aas fba0: 00 00 add %al,(%eax) fba2: 74 16 je fbba <.debug_info+0xfbba> fba4: 00 00 add %al,(%eax) fba6: 40 inc %eax fba7: 3d 29 0c 63 72 cmp $0x72630c29,%eax fbac: 63 00 arpl %ax,(%eax) fbae: 3d 2a 43 00 00 cmp $0x432a,%eax fbb3: 00 02 add %al,(%edx) fbb5: 23 00 and (%eax),%eax fbb7: 0d 53 14 00 00 or $0x1453,%eax fbbc: 3d 2b 2b 3f 00 cmp $0x3f2b2b,%eax fbc1: 00 02 add %al,(%edx) fbc3: 23 04 00 and (%eax,%eax,1),%eax fbc6: 03 3b add (%ebx),%edi fbc8: 3f aas fbc9: 00 00 add %al,(%eax) fbcb: cf iret fbcc: 00 00 add %al,(%eax) fbce: 00 04 3c add %al,(%esp,%edi,1) fbd1: 00 00 add %al,(%eax) fbd3: 00 3b add %bh,(%ebx) fbd5: 00 0b add %cl,(%ebx) fbd7: 9c pushf fbd8: 3f aas fbd9: 00 00 add %al,(%eax) fbdb: 64 26 00 00 add %al,%es:%fs:(%eax) fbdf: 20 3d 30 0d 70 0a and %bh,0xa700d30 fbe5: 00 00 add %al,(%eax) fbe7: 3d 31 c5 37 00 cmp $0x37c531,%eax fbec: 00 02 add %al,(%edx) fbee: 23 00 and (%eax),%eax fbf0: 0d a1 05 00 00 or $0x5a1,%eax fbf5: 3d 32 bc 3f 00 cmp $0x3fbc32,%eax fbfa: 00 02 add %al,(%edx) fbfc: 23 0c 0d c9 14 00 00 and 0x14c9(,%ecx,1),%ecx fc03: 3d 34 e1 3f 00 cmp $0x3fe134,%eax fc08: 00 02 add %al,(%edx) fc0a: 23 10 and (%eax),%edx fc0c: 0d c4 0f 00 00 or $0xfc4,%eax fc11: 3d 35 f8 3f 00 cmp $0x3ff835,%eax fc16: 00 02 add %al,(%edx) fc18: 23 14 0d 60 09 00 00 and 0x960(,%ecx,1),%edx fc1f: 3d 36 0e 40 00 cmp $0x400e36,%eax fc24: 00 02 add %al,(%edx) fc26: 23 18 and (%eax),%ebx fc28: 0d 34 09 00 00 or $0x934,%eax fc2d: 3d 37 20 40 00 cmp $0x402037,%eax fc32: 00 02 add %al,(%edx) fc34: 23 1c 00 and (%eax,%eax,1),%ebx fc37: 0e push %cs fc38: b6 3f mov $0x3f,%dh fc3a: 00 00 add %al,(%eax) fc3c: 01 a8 01 00 00 08 add %ebp,0x8000001(%eax) fc42: b6 3f mov $0x3f,%dh fc44: 00 00 add %al,(%eax) fc46: 08 e3 or %ah,%bl fc48: 3a 00 cmp (%eax),%al fc4a: 00 08 add %cl,(%eax) fc4c: c9 leave fc4d: 00 00 add %al,(%eax) fc4f: 00 00 add %al,(%eax) fc51: 06 push %es fc52: 04 3b add $0x3b,%al fc54: 3f aas fc55: 00 00 add %al,(%eax) fc57: 06 push %es fc58: 04 9c add $0x9c,%al fc5a: 3f aas fc5b: 00 00 add %al,(%eax) fc5d: 0e push %cs fc5e: e1 3f loope fc9f <.debug_info+0xfc9f> fc60: 00 00 add %al,(%eax) fc62: 01 a8 01 00 00 08 add %ebp,0x8000001(%eax) fc68: b6 3f mov $0x3f,%dh fc6a: 00 00 add %al,(%eax) fc6c: 08 e3 or %ah,%bl fc6e: 3a 00 cmp (%eax),%al fc70: 00 08 add %cl,(%eax) fc72: 8d 28 lea (%eax),%ebp fc74: 00 00 add %al,(%eax) fc76: 08 9d 01 00 00 00 or %bl,0x1(%ebp) fc7c: 06 push %es fc7d: 04 c2 add $0xc2,%al fc7f: 3f aas fc80: 00 00 add %al,(%eax) fc82: 07 pop %es fc83: f8 clc fc84: 3f aas fc85: 00 00 add %al,(%eax) fc87: 01 08 add %ecx,(%eax) fc89: e3 3a jecxz fcc5 <.debug_info+0xfcc5> fc8b: 00 00 add %al,(%eax) fc8d: 08 8d 28 00 00 00 or %cl,0x28(%ebp) fc93: 06 push %es fc94: 04 e7 add $0xe7,%al fc96: 3f aas fc97: 00 00 add %al,(%eax) fc99: 0e push %cs fc9a: 0e push %cs fc9b: 40 inc %eax fc9c: 00 00 add %al,(%eax) fc9e: 01 25 00 00 00 08 add %esp,0x8000000 fca4: e3 3a jecxz fce0 <.debug_info+0xfce0> fca6: 00 00 add %al,(%eax) fca8: 00 06 add %al,(%esi) fcaa: 04 fe add $0xfe,%al fcac: 3f aas fcad: 00 00 add %al,(%eax) fcaf: 07 pop %es fcb0: 20 40 00 and %al,0x0(%eax) fcb3: 00 01 add %al,(%ecx) fcb5: 08 e3 or %ah,%bl fcb7: 3a 00 cmp (%eax),%al fcb9: 00 00 add %al,(%eax) fcbb: 06 push %es fcbc: 04 14 add $0x14,%al fcbe: 40 inc %eax fcbf: 00 00 add %al,(%eax) fcc1: 0b 4f 40 or 0x40(%edi),%ecx fcc4: 00 00 add %al,(%eax) fcc6: 44 inc %esp fcc7: 17 pop %ss fcc8: 00 00 add %al,(%eax) fcca: 50 push %eax fccb: 3d 3b 0d ad 0c cmp $0xcad0d3b,%eax fcd0: 00 00 add %al,(%eax) fcd2: 3d 3c 24 3b 00 cmp $0x3b243c,%eax fcd7: 00 02 add %al,(%edx) fcd9: 23 00 and (%eax),%eax fcdb: 0c 6d or $0x6d,%al fcdd: 6f outsl %ds:(%esi),(%dx) fcde: 64 00 3d 3d e3 3a 00 add %bh,%fs:0x3ae33d fce5: 00 02 add %al,(%edx) fce7: 23 4c 00 0b and 0xb(%eax,%eax,1),%ecx fceb: 6a 40 push $0x40 fced: 00 00 add %al,(%eax) fcef: 39 20 cmp %esp,(%eax) fcf1: 00 00 add %al,(%eax) fcf3: 80 3d da 0d 2a 16 00 cmpb $0x0,0x162a0dda fcfa: 00 3d db c6 3e 00 add %bh,0x3ec6db fd00: 00 02 add %al,(%edx) fd02: 23 00 and (%eax),%eax fd04: 00 2b add %ch,(%ebx) fd06: 89 40 00 mov %eax,0x0(%eax) fd09: 00 da add %bl,%dl fd0b: 26 00 00 add %al,%es:(%eax) fd0e: 04 3d add $0x3d,%al fd10: df 29 fildll (%ecx) fd12: df 25 00 00 00 29 fbld 0x29000000 fd18: 58 pop %eax fd19: 24 00 and $0x0,%al fd1b: 00 01 add %al,(%ecx) fd1d: 29 5e 04 sub %ebx,0x4(%esi) fd20: 00 00 add %al,(%eax) fd22: 02 00 add (%eax),%al fd24: 0b c0 or %eax,%eax fd26: 40 inc %eax fd27: 00 00 add %al,(%eax) fd29: 4f dec %edi fd2a: 09 00 or %eax,(%eax) fd2c: 00 44 3d e8 add %al,0xffffffe8(%ebp,%edi,1) fd30: 0d b0 1a 00 00 or $0x1ab0,%eax fd35: 3d e9 3b 3f 00 cmp $0x3f3be9,%eax fd3a: 00 02 add %al,(%edx) fd3c: 23 00 and (%eax),%eax fd3e: 0d 53 14 00 00 or $0x1453,%eax fd43: 3d ea db 3d 00 cmp $0x3ddbea,%eax fd48: 00 02 add %al,(%edx) fd4a: 23 20 and (%eax),%esp fd4c: 0d 6d 12 00 00 or $0x126d,%eax fd51: 3d eb 43 00 00 cmp $0x43eb,%eax fd56: 00 02 add %al,(%edx) fd58: 23 40 00 and 0x0(%eax),%eax fd5b: 0b e9 or %ecx,%ebp fd5d: 40 inc %eax fd5e: 00 00 add %al,(%eax) fd60: c8 1b 00 00 enter $0x1b,$0x0 fd64: 08 3d ef 0c 67 72 or %bh,0x72670cef fd6a: 70 00 jo fd6c <.debug_info+0xfd6c> fd6c: 3d f0 e9 3a 00 cmp $0x3ae9f0,%eax fd71: 00 02 add %al,(%edx) fd73: 23 00 and (%eax),%eax fd75: 0d 7c 0e 00 00 or $0xe7c,%eax fd7a: 3d f1 e9 40 00 cmp $0x40e9f1,%eax fd7f: 00 02 add %al,(%edx) fd81: 23 08 and (%eax),%ecx fd83: 00 03 add %al,(%ebx) fd85: f8 clc fd86: 40 inc %eax fd87: 00 00 add %al,(%eax) fd89: 89 40 00 mov %eax,0x0(%eax) fd8c: 00 1c 3c add %bl,(%esp,%edi,1) fd8f: 00 00 add %al,(%eax) fd91: 00 00 add %al,(%eax) fd93: 1a 21 sbb (%ecx),%ah fd95: 15 00 00 01 06 adc $0x6010000,%eax fd9a: 04 f8 add $0xf8,%al fd9c: 40 inc %eax fd9d: 00 00 add %al,(%eax) fd9f: 06 push %es fda0: 04 0a add $0xa,%al fda2: 41 inc %ecx fda3: 00 00 add %al,(%eax) fda5: 25 d9 3e 00 00 and $0x3ed9,%eax fdaa: 06 push %es fdab: 04 15 add $0x15,%al fdad: 41 inc %ecx fdae: 00 00 add %al,(%eax) fdb0: 25 43 00 00 00 and $0x43,%eax fdb5: 1a 06 sbb (%esi),%al fdb7: 13 00 adc (%eax),%eax fdb9: 00 01 add %al,(%ecx) fdbb: 06 push %es fdbc: 04 26 add $0x26,%al fdbe: 41 inc %ecx fdbf: 00 00 add %al,(%eax) fdc1: 25 1a 41 00 00 and $0x411a,%eax fdc6: 03 3b add (%ebx),%edi fdc8: 41 inc %ecx fdc9: 00 00 add %al,(%eax) fdcb: 4f dec %edi fdcc: 40 inc %eax fdcd: 00 00 add %al,(%eax) fdcf: 04 3c add $0x3c,%al fdd1: 00 00 add %al,(%eax) fdd3: 00 1f add %bl,(%edi) fdd5: 00 06 add %al,(%esi) fdd7: 04 a4 add $0xa4,%al fdd9: 3e 00 00 add %al,%ds:(%eax) fddc: 06 push %es fddd: 04 c0 add $0xc0,%al fddf: 40 inc %eax fde0: 00 00 add %al,(%eax) fde2: 03 52 41 add 0x41(%edx),%edx fde5: 00 00 add %al,(%eax) fde7: 25 00 00 00 2c and $0x2c000000,%eax fdec: 00 2d 65 16 00 00 add %ch,0x1665 fdf2: 01 2f add %ebp,(%edi) fdf4: 47 inc %edi fdf5: 41 inc %ecx fdf6: 00 00 add %al,(%eax) fdf8: 01 01 add %eax,(%ecx) fdfa: 2d b6 08 00 00 sub $0x8b6,%eax fdff: 02 08 add (%eax),%cl fe01: 2c 00 sub $0x0,%al fe03: 00 00 add %al,(%eax) fe05: 01 01 add %eax,(%ecx) fe07: 2d 5a 0a 00 00 sub $0xa5a,%eax fe0c: 03 62 03 add 0x3(%edx),%esp fe0f: 06 push %es fe10: 00 00 add %al,(%eax) fe12: 01 01 add %eax,(%ecx) fe14: 2d 55 1c 00 00 sub $0x1c55,%eax fe19: 03 f0 add %eax,%esi fe1b: 43 inc %ebx fe1c: 00 00 add %al,(%eax) fe1e: 00 01 add %al,(%ecx) fe20: 01 2e add %ebp,(%esi) fe22: f0 1e lock push %ds fe24: 00 00 add %al,(%eax) fe26: 06 push %es fe27: 58 pop %eax fe28: 43 inc %ebx fe29: 00 00 add %al,(%eax) fe2b: 00 01 add %al,(%ecx) fe2d: 54 push %esp fe2e: 2d aa 1f 00 00 sub $0x1faa,%eax fe33: 07 pop %es fe34: 5b pop %ebx fe35: 7c 16 jl fe4d <.debug_info+0xfe4d> fe37: 00 00 add %al,(%eax) fe39: 01 01 add %eax,(%ecx) fe3b: 2d c8 22 00 00 sub $0x22c8,%eax fe40: 0a d0 or %al,%dl fe42: 25 00 00 00 01 and $0x1000000,%eax fe47: 01 2d da 1b 00 00 add %ebp,0x1bda fe4d: 0a d5 or %ch,%dl fe4f: 6e outsb %ds:(%esi),(%dx) fe50: 00 00 add %al,(%eax) fe52: 00 01 add %al,(%ecx) fe54: 01 2d 1e 27 00 00 add %ebp,0x271e fe5a: 0a d6 or %dh,%dl fe5c: 6e outsb %ds:(%esi),(%dx) fe5d: 00 00 add %al,(%eax) fe5f: 00 01 add %al,(%ecx) fe61: 01 2d 89 0c 00 00 add %ebp,0xc89 fe67: 0a db or %bl,%bl fe69: 6e outsb %ds:(%esi),(%dx) fe6a: 00 00 add %al,(%eax) fe6c: 00 01 add %al,(%ecx) fe6e: 01 2d fb 05 00 00 add %ebp,0x5fb fe74: 0b 73 25 or 0x25(%ebx),%esi fe77: 00 00 add %al,(%eax) fe79: 00 01 add %al,(%ecx) fe7b: 01 2d c6 23 00 00 add %ebp,0x23c6 fe81: 0b 75 25 or 0x25(%ebp),%esi fe84: 00 00 add %al,(%eax) fe86: 00 01 add %al,(%ecx) fe88: 01 2d 85 07 00 00 add %ebp,0x785 fe8e: 0b 76 25 or 0x25(%esi),%esi fe91: 00 00 add %al,(%eax) fe93: 00 01 add %al,(%ecx) fe95: 01 2d 76 23 00 00 add %ebp,0x2376 fe9b: 0b 77 25 or 0x25(%edi),%esi fe9e: 00 00 add %al,(%eax) fea0: 00 01 add %al,(%ecx) fea2: 01 2d 73 0b 00 00 add %ebp,0xb73 fea8: 0c bd or $0xbd,%al feaa: 25 00 00 00 01 and $0x1000000,%eax feaf: 01 03 add %eax,(%ebx) feb1: 25 42 00 00 09 and $0x9000042,%eax feb6: 1a 00 sbb (%eax),%al feb8: 00 04 3c add %al,(%esp,%edi,1) febb: 00 00 add %al,(%eax) febd: 00 3f add %bh,(%edi) febf: 00 2d b2 25 00 00 add %ch,0x25b2 fec5: 0c 97 or $0x97,%al fec7: 15 42 00 00 01 adc $0x1000042,%eax fecc: 01 2d 12 24 00 00 add %ebp,0x2412 fed2: 0c b4 or $0xb4,%al fed4: 25 00 00 00 01 and $0x1000000,%eax fed9: 01 2d 2d 0d 00 00 add %ebp,0xd2d fedf: 0e push %cs fee0: 13 25 00 00 00 01 adc 0x1000000,%esp fee6: 01 2d 8e 18 00 00 add %ebp,0x188e feec: 0f 3d (bad) feee: d3 05 00 00 01 01 roll %cl,0x1010000 fef4: 2d 8e 26 00 00 sub $0x268e,%eax fef9: 10 70 66 adc %dh,0x66(%eax) fefc: 42 inc %edx fefd: 00 00 add %al,(%eax) feff: 01 01 add %eax,(%ecx) ff01: 06 push %es ff02: 04 f1 add $0xf1,%al ff04: 1a 00 sbb (%eax),%al ff06: 00 2f add %ch,(%edi) ff08: 75 12 jne ff1c <.debug_info+0xff1c> ff0a: 00 00 add %al,(%eax) ff0c: 12 b0 01 dd 26 00 adc 0x26dd01(%eax),%dh ff12: 00 01 add %al,(%ecx) ff14: 01 03 add %eax,(%ebx) ff16: 85 42 00 test %eax,0x0(%edx) ff19: 00 e3 add %ah,%bl ff1b: 28 00 sub %al,(%eax) ff1d: 00 2c 00 add %ch,(%eax,%eax,1) ff20: 2d 60 1f 00 00 sub $0x1f60,%eax ff25: 39 4e 7a cmp %ecx,0x7a(%esi) ff28: 42 inc %edx ff29: 00 00 add %al,(%eax) ff2b: 01 01 add %eax,(%ecx) ff2d: 2d 92 12 00 00 sub $0x1292,%eax ff32: 27 daa ff33: 72 61 jb ff96 <.debug_info+0xff96> ff35: 29 00 sub %eax,(%eax) ff37: 00 01 add %al,(%ecx) ff39: 01 2d 44 20 00 00 add %ebp,0x2044 ff3f: 27 daa ff40: 73 61 jae ffa3 <.debug_info+0xffa3> ff42: 29 00 sub %eax,(%eax) ff44: 00 01 add %al,(%ecx) ff46: 01 2d e6 0e 00 00 add %ebp,0xee6 ff4c: 3a 1c eb cmp (%ebx,%ebp,8),%bl ff4f: 3d 00 00 01 01 cmp $0x1010000,%eax ff54: 03 c4 add %esp,%eax ff56: 42 inc %edx ff57: 00 00 add %al,(%eax) ff59: de 05 00 00 2c 00 fiadd 0x2c0000 ff5f: 2d 5c 08 00 00 sub $0x85c,%eax ff64: 3a 35 b9 42 00 00 cmp 0x42b9,%dh ff6a: 01 01 add %eax,(%ecx) ff6c: 30 96 13 00 00 3b xor %dl,0x3b000013(%esi) ff72: 08 fc or %bh,%ah ff74: 37 aaa ff75: 00 00 add %al,(%eax) ff77: 01 05 03 00 00 00 add %eax,0x3 ff7d: 00 03 add %al,(%ebx) ff7f: f3 42 repz inc %edx ff81: 00 00 add %al,(%eax) ff83: 93 xchg %eax,%ebx ff84: 28 00 sub %al,(%eax) ff86: 00 04 3c add %al,(%esp,%edi,1) ff89: 00 00 add %al,(%eax) ff8b: 00 34 00 add %dh,(%eax,%eax,1) ff8e: 2e cs ff8f: b9 26 00 00 3b mov $0x3b000026,%ecx ff94: 05 04 43 00 00 add $0x4304,%eax ff99: 05 03 20 00 00 add $0x2003,%eax ff9e: 00 25 e3 42 00 00 add %ah,0x42e3 ffa4: 03 19 add (%ecx),%ebx ffa6: 43 inc %ebx ffa7: 00 00 add %al,(%eax) ffa9: 19 43 00 sbb %eax,0x0(%ebx) ffac: 00 04 3c add %al,(%esp,%edi,1) ffaf: 00 00 add %al,(%eax) ffb1: 00 12 add %dl,(%edx) ffb3: 00 25 02 3f 00 00 add %ah,0x3f02 ffb9: 2e a4 movsb %cs:(%esi),%es:(%edi) ffbb: 12 00 adc (%eax),%al ffbd: 00 3b add %bh,(%ebx) ffbf: 12 2f adc (%edi),%ch ffc1: 43 inc %ebx ffc2: 00 00 add %al,(%eax) ffc4: 05 03 00 00 00 add $0x3,%eax ffc9: 00 25 09 43 00 00 add %ah,0x4309 ffcf: 03 44 43 00 add 0x0(%ebx,%eax,2),%eax ffd3: 00 93 28 00 00 04 add %dl,0x4000028(%ebx) ffd9: 3c 00 cmp $0x0,%al ffdb: 00 00 add %al,(%eax) ffdd: 08 00 or %al,(%eax) ffdf: 2e cs ffe0: ce into ffe1: 25 00 00 3b 2a and $0x2a3b0000,%eax ffe6: 55 push %ebp ffe7: 43 inc %ebx ffe8: 00 00 add %al,(%eax) ffea: 05 03 55 00 00 add $0x5503,%eax ffef: 00 25 34 43 00 00 add %ah,0x4334 ... Disassembly of section .debug_abbrev: 00000000 <.debug_abbrev>: 0: 01 11 add %edx,(%ecx) 2: 01 10 add %edx,(%eax) 4: 06 push %es 5: 12 01 adc (%ecx),%al 7: 11 01 adc %eax,(%ecx) 9: 25 08 13 0b 03 and $0x30b1308,%eax e: 08 1b or %bl,(%ebx) 10: 08 00 or %al,(%eax) 12: 00 02 add %al,(%edx) 14: 24 00 and $0x0,%al 16: 03 08 add (%eax),%ecx 18: 0b 0b or (%ebx),%ecx #define LIST_HEAD(name) \ struct list_head name = LIST_HEAD_INIT(name) static inline void INIT_LIST_HEAD(struct list_head *list) { 1a: 3e 0b 00 or %ds:(%eax),%eax 1d: 00 03 add %al,(%ebx) 1f: 01 01 add %eax,(%ecx) list->next = list; 21: 01 13 add %edx,(%ebx) 23: 49 dec %ecx 24: 13 00 adc (%eax),%eax 26: 00 04 21 add %al,(%ecx) list->prev = list; 29: 00 49 13 add %cl,0x13(%ecx) 2c: 2f das 2d: 0b 00 or (%eax),%eax 2f: 00 05 24 00 03 0e add %al,0xe030024 35: 0b 0b or (%ebx),%ecx 37: 3e 0b 00 or %ds:(%eax),%eax 3a: 00 06 add %al,(%esi) 3c: 0f 00 0b str (%ebx) 3f: 0b 49 13 or 0x13(%ecx),%ecx 42: 00 00 add %al,(%eax) 44: 07 pop %es 45: 15 01 01 13 27 adc $0x27130101,%eax 4a: 0c 00 or $0x0,%al 4c: 00 08 add %cl,(%eax) 4e: 05 00 49 13 00 add $0x134900,%eax 53: 00 09 add %cl,(%ecx) 55: 16 push %ss 56: 00 03 add %al,(%ebx) 58: 08 3a or %bh,(%edx) 5a: 0b 3b or (%ebx),%edi 5c: 0b 49 13 or 0x13(%ecx),%ecx 5f: 00 00 add %al,(%eax) 61: 0a 13 or (%ebx),%dl 63: 01 01 add %eax,(%ecx) 65: 13 03 adc (%ebx),%eax 67: 0e push %cs 68: 0b 0b or (%ebx),%ecx 6a: 3a 0b cmp (%ebx),%cl 6c: 3b 0b cmp (%ebx),%ecx 6e: 00 00 add %al,(%eax) 70: 0b 0d 00 03 08 3a or 0x3a080300,%ecx 76: 0b 3b or (%ebx),%edi 78: 0b 49 13 or 0x13(%ecx),%ecx 7b: 38 0a cmp %cl,(%edx) 7d: 00 00 add %al,(%eax) 7f: 0c 15 or $0x15,%al 81: 01 01 add %eax,(%ecx) 83: 13 27 adc (%edi),%esp 85: 0c 49 or $0x49,%al 87: 13 00 adc (%eax),%eax 89: 00 0d 13 01 01 13 add %cl,0x13010113 8f: 0b 0b or (%ebx),%ecx 91: 3a 0b cmp (%ebx),%cl 93: 3b 0b cmp (%ebx),%ecx 95: 00 00 add %al,(%eax) 97: 0e push %cs 98: 13 01 adc (%ecx),%eax 9a: 01 13 add %edx,(%ebx) 9c: 03 08 add (%eax),%ecx * function may still be running on return from cancel_delayed_work(). Run * flush_scheduled_work() to wait on it. */ static inline int cancel_delayed_work(struct work_struct *work) { 9e: 0b 0b or (%ebx),%ecx a0: 3a 0b cmp (%ebx),%cl a2: 3b 0b cmp (%ebx),%ecx a4: 00 00 add %al,(%eax) int ret; ret = del_timer_sync(&work->timer); a6: 0f 0d 00 prefetch (%eax) a9: 03 0e add (%esi),%ecx ab: 3a 0b cmp (%ebx),%cl ad: 3b 0b cmp (%ebx),%ecx af: 49 dec %ecx b0: 13 38 adc (%eax),%edi b2: 0a 00 or (%eax),%al if (ret) b4: 00 10 add %dl,(%eax) b6: 13 01 adc (%ecx),%eax b8: 01 13 add %edx,(%ebx) * you should call smp_mb__before_clear_bit() and/or smp_mb__after_clear_bit() * in order to ensure changes are visible on other processors. */ static inline void clear_bit(int nr, volatile unsigned long * addr) { ba: 03 08 add (%eax),%ecx bc: 0b 05 3a 0b 3b 0b or 0xb3b0b3a,%eax c2: 00 00 add %al,(%eax) c4: 11 13 adc %edx,(%ebx) __asm__ __volatile__( LOCK_PREFIX c6: 01 01 add %eax,(%ecx) c8: 13 03 adc (%ebx),%eax ca: 08 0b or %cl,(%ebx) cc: 0b 3a or (%edx),%edi ce: 0b 3b or (%ebx),%edi int ret; ret = del_timer_sync(&work->timer); if (ret) clear_bit(0, &work->pending); d0: 05 00 00 12 0d add $0xd120000,%eax d5: 00 03 add %al,(%ebx) d7: 08 3a or %bh,(%edx) d9: 0b 3b or (%ebx),%edi db: 05 49 13 38 0a add $0xa381349,%eax e0: 00 00 add %al,(%eax) e2: 13 0d 00 03 0e 3a adc 0x3a0e0300,%ecx e8: 0b 3b or (%ebx),%edi ea: 05 49 13 38 0a add $0xa381349,%eax ef: 00 00 add %al,(%eax) f1: 14 13 adc $0x13,%al f3: 01 01 add %eax,(%ecx) f5: 13 03 adc (%ebx),%eax f7: 08 0b or %cl,(%ebx) f9: 05 3a 0b 3b 05 add $0x53b0b3a,%eax fe: 00 00 add %al,(%eax) 100: 15 17 01 01 13 adc $0x13010117,%eax 105: 03 08 add (%eax),%ecx 107: 0b 05 3a 0b 3b 05 or 0x53b0b3a,%eax 10d: 00 00 add %al,(%eax) 10f: 16 push %ss 110: 0d 00 03 08 3a or $0x3a080300,%eax 115: 0b 3b or (%ebx),%edi 117: 05 49 13 00 00 add $0x1349,%eax 11c: 17 pop %ss 11d: 13 01 adc (%ecx),%eax 11f: 01 13 add %edx,(%ebx) 121: 0b 0b or (%ebx),%ecx 123: 3a 0b cmp (%ebx),%cl 125: 3b 05 00 00 18 16 cmp 0x16180000,%eax 12b: 00 03 add %al,(%ebx) 12d: 08 3a or %bh,(%edx) 12f: 0b 3b or (%ebx),%edi 131: 05 49 13 00 00 add $0x1349,%eax 136: 19 0d 00 03 08 3a sbb %ecx,0x3a080300 13c: 0b 3b or (%ebx),%edi 13e: 05 49 13 0b 0b add $0xb0b1349,%eax 143: 0d 0b 0c 0b 38 or $0x380b0c0b,%eax 148: 0a 00 or (%eax),%al 14a: 00 1a add %bl,(%edx) 14c: 13 00 adc (%eax),%eax 14e: 03 0e add (%esi),%ecx 150: 3c 0c cmp $0xc,%al 152: 00 00 add %al,(%eax) 154: 1b 0f sbb (%edi),%ecx 156: 00 0b add %cl,(%ebx) 158: 0b 00 or (%eax),%eax 15a: 00 1c 21 add %bl,(%ecx) 15d: 00 49 13 add %cl,0x13(%ecx) 160: 00 00 add %al,(%eax) 162: 1d 13 00 03 08 sbb $0x8030013,%eax 167: 0b 0b or (%ebx),%ecx 169: 3a 0b cmp (%ebx),%cl 16b: 3b 05 00 00 1e 35 cmp 0x351e0000,%eax 171: 00 49 13 add %cl,0x13(%ecx) 174: 00 00 add %al,(%eax) 176: 1f pop %ds 177: 0d 00 03 08 3a or $0x3a080300,%eax 17c: 0b 3b or (%ebx),%edi 17e: 0b 49 13 or 0x13(%ecx),%ecx 181: 0b 0b or (%ebx),%ecx 183: 0d 0b 0c 0b 38 or $0x380b0c0b,%eax 188: 0a 00 or (%eax),%al 18a: 00 20 add %ah,(%eax) 18c: 13 01 adc (%ecx),%eax 18e: 01 13 add %edx,(%ebx) 190: 03 0e add (%esi),%ecx 192: 0b 05 3a 0b 3b 0b or 0xb3b0b3a,%eax 198: 00 00 add %al,(%eax) 19a: 21 15 00 27 0c 49 and %edx,0x490c2700 * The "pgd_xxx()" functions here are trivial for a folded two-level * setup: the pud is never bad, and a pud always exists (as it's folded * into the pgd entry) */ static inline int pgd_none(pgd_t pgd) { return 0; } 1a0: 13 00 adc (%eax),%eax 1a2: 00 22 add %ah,(%edx) 1a4: 15 00 27 0c 00 adc $0xc2700,%eax 1a9: 00 23 add %ah,(%ebx) 1ab: 17 pop %ss 1ac: 01 01 add %eax,(%ecx) 1ae: 13 03 adc (%ebx),%eax 1b0: 08 0b or %cl,(%ebx) 1b2: 0b 3a or (%edx),%edi 1b4: 0b 3b or (%ebx),%edi 1b6: 0b 00 or (%eax),%eax 1b8: 00 24 0d 00 03 08 3a add %ah,0x3a080300(,%ecx,1) 1bf: 0b 3b or (%ebx),%edi */ #define set_pgd(pgdptr, pgdval) set_pud((pud_t *)(pgdptr), (pud_t) { pgdval }) static inline pud_t * pud_offset(pgd_t * pgd, unsigned long address) { 1c1: 0b 49 13 or 0x13(%ecx),%ecx 1c4: 00 00 add %al,(%eax) 1c6: 25 17 01 01 13 and $0x13010117,%eax 1cb: 0b 0b or (%ebx),%ecx return (pud_t *)pgd; 1cd: 3a 0b cmp (%ebx),%cl 1cf: 3b 0b cmp (%ebx),%ecx 1d1: 00 00 add %al,(%eax) 1d3: 26 13 00 adc %es:(%eax),%eax 1d6: 03 08 add (%eax),%ecx 1d8: 3c 0c cmp $0xc,%al 1da: 00 00 add %al,(%eax) 1dc: 27 daa 1dd: 0d 00 49 13 38 or $0x38134900,%eax 1e2: 0a 00 or (%eax),%al 1e4: 00 28 add %ch,(%eax) 1e6: 26 00 49 13 add %cl,%es:0x13(%ecx) 1ea: 00 00 add %al,(%eax) 1ec: 29 13 sub %edx,(%ebx) 1ee: 01 01 add %eax,(%ecx) 1f0: 13 03 adc (%ebx),%eax 1f2: 0e push %cs 1f3: 0b 0b or (%ebx),%ecx 1f5: 3a 0b cmp (%ebx),%cl 1f7: 3b 05 00 00 2a 04 cmp 0x42a0000,%eax 1fd: 01 01 add %eax,(%ecx) 1ff: 13 03 adc (%ebx),%eax 201: 0e push %cs 202: 0b 0b or (%ebx),%ecx 204: 3a 0b cmp (%ebx),%cl 206: 3b 05 00 00 2b 28 cmp 0x282b0000,%eax 20c: 00 03 add %al,(%ebx) 20e: 08 1c 0d 00 00 2c 13 or %bl,0x132c0000(,%ecx,1) 215: 00 03 add %al,(%ebx) 217: 08 0b or %cl,(%ebx) 219: 0b 3a or (%edx),%edi 21b: 0b 3b or (%ebx),%edi 21d: 0b 00 or (%eax),%eax 21f: 00 2d 04 01 01 13 add %ch,0x13010104 225: 03 08 add (%eax),%ecx 227: 0b 0b or (%ebx),%ecx 229: 3a 0b cmp (%ebx),%cl 22b: 3b 0b cmp (%ebx),%ecx 22d: 00 00 add %al,(%eax) 22f: 2e cs 230: 17 pop %ss 231: 01 01 add %eax,(%ecx) 233: 13 0b adc (%ebx),%ecx 235: 0b 3a or (%edx),%edi 237: 0b 3b or (%ebx),%edi 239: 05 00 00 2f 26 add $0x262f0000,%eax 23e: 00 00 add %al,(%eax) 240: 00 30 add %dh,(%eax) 242: 0d 00 03 0e 3a or $0x3a0e0300,%eax 247: 0b 3b or (%ebx),%edi 249: 0b 49 13 or 0x13(%ecx),%ecx 24c: 00 00 add %al,(%eax) 24e: 31 2e xor %ebp,(%esi) 250: 01 01 add %eax,(%ecx) 252: 13 3f adc (%edi),%edi 254: 0c 03 or $0x3,%al 256: 08 3a or %bh,(%edx) 258: 0b 3b or (%ebx),%edi 25a: 0b 27 or (%edi),%esp 25c: 0c 49 or $0x49,%al #define pte_page(x) pfn_to_page(pte_pfn(x)) static inline int pte_none(pte_t pte) { 25e: 13 11 adc (%ecx),%edx 260: 01 12 add %edx,(%edx) 262: 01 40 0a add %eax,0xa(%eax) 265: 00 00 add %al,(%eax) 267: 32 1d 01 31 13 11 xor 0x11133101,%bl return !pte.pte_low && !pte.pte_high; 26d: 01 12 add %edx,(%edx) 26f: 01 00 add %eax,(%eax) 271: 00 33 add %dh,(%ebx) 273: 05 00 31 13 02 add $0x2133100,%eax 278: 0a 00 or (%eax),%al 27a: 00 34 2e add %dh,(%esi,%ebp,1) 27d: 01 01 add %eax,(%ecx) 27f: 13 03 adc (%ebx),%eax 281: 08 3a or %bh,(%edx) 283: 0b 3b or (%ebx),%edi 285: 0b 27 or (%edi),%esp 287: 0c 20 or $0x20,%al 289: 0b 00 or (%eax),%eax 28b: 00 35 05 00 03 0e add %dh,0xe030005 291: 3a 0b cmp (%ebx),%cl 293: 3b 0b cmp (%ebx),%ecx 295: 49 dec %ecx 296: 13 00 adc (%eax),%eax 298: 00 36 add %dh,(%esi) 29a: 2e 01 01 add %eax,%cs:(%ecx) 29d: 13 3f adc (%edi),%edi 29f: 0c 03 or $0x3,%al 2a1: 08 3a or %bh,(%edx) 2a3: 0b 3b or (%ebx),%edi 2a5: 0b 27 or (%edi),%esp 2a7: 0c 11 or $0x11,%al 2a9: 01 12 add %edx,(%edx) 2ab: 01 40 0a add %eax,0xa(%eax) * this function */ static inline unsigned long virt_to_phys(volatile void * address) { 2ae: 00 00 add %al,(%eax) 2b0: 37 aaa 2b1: 34 00 xor $0x0,%al return __pa(address); 2b3: 03 08 add (%eax),%ecx 2b5: 3a 0b cmp (%ebx),%cl 2b7: 3b 0b cmp (%ebx),%ecx 2b9: 49 dec %ecx 2ba: 13 02 adc (%edx),%eax 2bc: 0a 00 or (%eax),%al 2be: 00 38 add %bh,(%eax) 2c0: 0b 01 or (%ecx),%eax 2c2: 11 01 adc %eax,(%ecx) 2c4: 12 01 adc (%ecx),%al 2c6: 00 00 add %al,(%eax) 2c8: 39 34 00 cmp %esi,(%eax,%eax,1) 2cb: 31 13 xor %edx,(%ebx) 2cd: 02 0a add (%edx),%cl 2cf: 00 00 add %al,(%eax) 2d1: 3a 2e cmp (%esi),%ch 2d3: 01 01 add %eax,(%ecx) 2d5: 13 03 adc (%ebx),%eax 2d7: 08 3a or %bh,(%edx) 2d9: 0b 3b or (%ebx),%edi 2db: 0b 27 or (%edi),%esp 2dd: 0c 49 or $0x49,%al 2df: 13 20 adc (%eax),%esp 2e1: 0b 00 or (%eax),%eax 2e3: 00 3b add %bh,(%ebx) 2e5: 05 00 03 08 3a add $0x3a080300,%eax 2ea: 0b 3b or (%ebx),%edi 2ec: 0b 49 13 or 0x13(%ecx),%ecx 2ef: 00 00 add %al,(%eax) 2f1: 3c 34 cmp $0x34,%al 2f3: 00 03 add %al,(%ebx) 2f5: 08 3a or %bh,(%edx) 2f7: 0b 3b or (%ebx),%edi 2f9: 0b 49 13 or 0x13(%ecx),%ecx 2fc: 00 00 add %al,(%eax) 2fe: 3d 05 00 03 08 cmp $0x8030005,%eax 303: 3a 0b cmp (%ebx),%cl 305: 3b 0b cmp (%ebx),%ecx 307: 49 dec %ecx 308: 13 02 adc (%edx),%eax 30a: 0a 00 or (%eax),%al 30c: 00 3e add %bh,(%esi) 30e: 1d 01 01 13 31 sbb $0x31130101,%eax 313: 13 11 adc (%ecx),%edx 315: 01 12 add %edx,(%edx) 317: 01 00 add %eax,(%eax) 319: 00 3f add %bh,(%edi) 31b: 35 00 00 00 40 xor $0x40000000,%eax 320: 2e 01 01 add %eax,%cs:(%ecx) 323: 13 03 adc (%ebx),%eax 325: 08 3a or %bh,(%edx) 327: 0b 3b or (%ebx),%edi 329: 0b 27 or (%edi),%esp 32b: 0c 11 or $0x11,%al 32d: 01 12 add %edx,(%edx) 32f: 01 40 0a add %eax,0xa(%eax) 332: 00 00 add %al,(%eax) 334: 41 inc %ecx 335: 05 00 03 0e 3a add $0x3a0e0300,%eax 33a: 0b 3b or (%ebx),%edi 33c: 0b 49 13 or 0x13(%ecx),%ecx 33f: 02 0a add (%edx),%cl 341: 00 00 add %al,(%eax) 343: 42 inc %edx 344: 2e 01 01 add %eax,%cs:(%ecx) 347: 13 3f adc (%edi),%edi 349: 0c 03 or $0x3,%al 34b: 08 3a or %bh,(%edx) 34d: 0b 3b or (%ebx),%edi 34f: 05 27 0c 49 13 add $0x13490c27,%eax 354: 11 01 adc %eax,(%ecx) 356: 12 01 adc (%ecx),%al 358: 40 inc %eax 359: 0a 00 or (%eax),%al 35b: 00 43 05 add %al,0x5(%ebx) 35e: 00 03 add %al,(%ebx) 360: 08 3a or %bh,(%edx) 362: 0b 3b or (%ebx),%edi 364: 05 49 13 02 0a add $0xa021349,%eax 369: 00 00 add %al,(%eax) 36b: 44 inc %esp 36c: 34 00 xor $0x0,%al 36e: 03 08 add (%eax),%ecx 370: 3a 0b cmp (%ebx),%cl 372: 3b 05 49 13 02 0a cmp 0xa021349,%eax 378: 00 00 add %al,(%eax) 37a: 45 inc %ebp 37b: 05 00 03 0e 3a add $0x3a0e0300,%eax 380: 0b 3b or (%ebx),%edi 382: 05 49 13 02 0a add $0xa021349,%eax 387: 00 00 add %al,(%eax) 389: 46 inc %esi 38a: 34 00 xor $0x0,%al 38c: 03 0e add (%esi),%ecx 38e: 49 dec %ecx 38f: 13 34 0c adc (%esp,%ecx,1),%esi 392: 02 0a add (%edx),%cl 394: 00 00 add %al,(%eax) 396: 47 inc %edi 397: 2e 01 01 add %eax,%cs:(%ecx) 39a: 13 3f adc (%edi),%edi 39c: 0c 03 or $0x3,%al 39e: 08 3a or %bh,(%edx) 3a0: 0b 3b or (%ebx),%edi 3a2: 05 27 0c 11 01 add $0x1110c27,%eax 3a7: 12 01 adc (%ecx),%al 3a9: 40 inc %eax 3aa: 0a 00 or (%eax),%al 3ac: 00 48 34 add %cl,0x34(%eax) 3af: 00 03 add %al,(%ebx) 3b1: 08 3a or %bh,(%edx) 3b3: 0b 3b or (%ebx),%edi 3b5: 0b 49 13 or 0x13(%ecx),%ecx 3b8: 3f aas 3b9: 0c 3c or $0x3c,%al 3bb: 0c 00 or $0x0,%al 3bd: 00 49 21 add %cl,0x21(%ecx) 3c0: 00 00 add %al,(%eax) 3c2: 00 4a 34 add %cl,0x34(%edx) 3c5: 00 03 add %al,(%ebx) 3c7: 08 3a or %bh,(%edx) 3c9: 0b 3b or (%ebx),%edi 3cb: 05 49 13 3f 0c add $0xc3f1349,%eax 3d0: 3c 0c cmp $0xc,%al 3d2: 00 00 add %al,(%eax) 3d4: 4b dec %ebx 3d5: 34 00 xor $0x0,%al 3d7: 03 0e add (%esi),%ecx 3d9: 3a 0b cmp (%ebx),%cl 3db: 3b 0b cmp (%ebx),%ecx 3dd: 49 dec %ecx 3de: 13 3f adc (%edi),%edi 3e0: 0c 3c or $0x3c,%al 3e2: 0c 00 or $0x0,%al 3e4: 00 4c 34 00 add %cl,0x0(%esp,%esi,1) 3e8: 03 08 add (%eax),%ecx 3ea: 3a 0b cmp (%ebx),%cl 3ec: 3b 0b cmp (%ebx),%ecx 3ee: 49 dec %ecx 3ef: 13 3f adc (%edi),%edi 3f1: 0c 02 or $0x2,%al 3f3: 0a 00 or (%eax),%al 3f5: 00 00 add %al,(%eax) 3f7: 01 11 add %edx,(%ecx) 3f9: 01 10 add %edx,(%eax) 3fb: 06 push %es 3fc: 12 01 adc (%ecx),%al 3fe: 11 01 adc %eax,(%ecx) 400: 25 0e 13 0b 03 and $0x30b130e,%eax 405: 0e push %cs 406: 1b 0e sbb (%esi),%ecx 408: 00 00 add %al,(%eax) 40a: 02 24 00 add (%eax,%eax,1),%ah 40d: 03 08 add (%eax),%ecx 40f: 0b 0b or (%ebx),%ecx 411: 3e 0b 00 or %ds:(%eax),%eax 414: 00 03 add %al,(%ebx) 416: 01 01 add %eax,(%ecx) 418: 01 13 add %edx,(%ebx) 41a: 49 dec %ecx 41b: 13 00 adc (%eax),%eax 41d: 00 04 21 add %al,(%ecx) 420: 00 49 13 add %cl,0x13(%ecx) 423: 2f das 424: 0b 00 or (%eax),%eax 426: 00 05 24 00 03 0e add %al,0xe030024 42c: 0b 0b or (%ebx),%ecx 42e: 3e 0b 00 or %ds:(%eax),%eax 431: 00 06 add %al,(%esi) 433: 0f 00 0b str (%ebx) 436: 0b 49 13 or 0x13(%ecx),%ecx 439: 00 00 add %al,(%eax) 43b: 07 pop %es 43c: 15 01 01 13 27 adc $0x27130101,%eax 441: 0c 00 or $0x0,%al 443: 00 08 add %cl,(%eax) 445: 05 00 49 13 00 add $0x134900,%eax 44a: 00 09 add %cl,(%ecx) 44c: 16 push %ss 44d: 00 03 add %al,(%ebx) 44f: 0e push %cs 450: 3a 0b cmp (%ebx),%cl 452: 3b 0b cmp (%ebx),%ecx 454: 49 dec %ecx 455: 13 00 adc (%eax),%eax 457: 00 0a add %cl,(%edx) 459: 16 push %ss 45a: 00 03 add %al,(%ebx) 45c: 08 3a or %bh,(%edx) 45e: 0b 3b or (%ebx),%edi 460: 0b 49 13 or 0x13(%ecx),%ecx 463: 00 00 add %al,(%eax) 465: 0b 13 or (%ebx),%edx 467: 01 01 add %eax,(%ecx) 469: 13 03 adc (%ebx),%eax 46b: 0e push %cs 46c: 0b 0b or (%ebx),%ecx 46e: 3a 0b cmp (%ebx),%cl 470: 3b 0b cmp (%ebx),%ecx 472: 00 00 add %al,(%eax) 474: 0c 0d or $0xd,%al 476: 00 03 add %al,(%ebx) 478: 08 3a or %bh,(%edx) 47a: 0b 3b or (%ebx),%edi 47c: 0b 49 13 or 0x13(%ecx),%ecx 47f: 38 0a cmp %cl,(%edx) 481: 00 00 add %al,(%eax) 483: 0d 0d 00 03 0e or $0xe03000d,%eax 488: 3a 0b cmp (%ebx),%cl 48a: 3b 0b cmp (%ebx),%ecx 48c: 49 dec %ecx 48d: 13 38 adc (%eax),%edi 48f: 0a 00 or (%eax),%al 491: 00 0e add %cl,(%esi) 493: 15 01 01 13 27 adc $0x27130101,%eax 498: 0c 49 or $0x49,%al 49a: 13 00 adc (%eax),%eax 49c: 00 0f add %cl,(%edi) 49e: 13 01 adc (%ecx),%eax 4a0: 01 13 add %edx,(%ebx) 4a2: 0b 0b or (%ebx),%ecx 4a4: 3a 0b cmp (%ebx),%cl 4a6: 3b 0b cmp (%ebx),%ecx 4a8: 00 00 add %al,(%eax) 4aa: 10 13 adc %dl,(%ebx) 4ac: 01 01 add %eax,(%ecx) 4ae: 13 03 adc (%ebx),%eax 4b0: 0e push %cs 4b1: 0b 05 3a 0b 3b 0b or 0xb3b0b3a,%eax 4b7: 00 00 add %al,(%eax) 4b9: 11 13 adc %edx,(%ebx) 4bb: 01 01 add %eax,(%ecx) 4bd: 13 03 adc (%ebx),%eax 4bf: 0e push %cs 4c0: 0b 0b or (%ebx),%ecx 4c2: 3a 0b cmp (%ebx),%cl 4c4: 3b 05 00 00 12 0d cmp 0xd120000,%eax 4ca: 00 03 add %al,(%ebx) 4cc: 08 3a or %bh,(%edx) 4ce: 0b 3b or (%ebx),%edi 4d0: 05 49 13 38 0a add $0xa381349,%eax 4d5: 00 00 add %al,(%eax) 4d7: 13 0d 00 03 0e 3a adc 0x3a0e0300,%ecx 4dd: 0b 3b or (%ebx),%edi 4df: 05 49 13 38 0a add $0xa381349,%eax 4e4: 00 00 add %al,(%eax) 4e6: 14 13 adc $0x13,%al 4e8: 01 01 add %eax,(%ecx) 4ea: 13 03 adc (%ebx),%eax 4ec: 0e push %cs 4ed: 0b 05 3a 0b 3b 05 or 0x53b0b3a,%eax 4f3: 00 00 add %al,(%eax) 4f5: 15 17 01 01 13 adc $0x13010117,%eax 4fa: 03 0e add (%esi),%ecx 4fc: 0b 05 3a 0b 3b 05 or 0x53b0b3a,%eax 502: 00 00 add %al,(%eax) 504: 16 push %ss 505: 0d 00 03 0e 3a or $0x3a0e0300,%eax 50a: 0b 3b or (%ebx),%edi 50c: 05 49 13 00 00 add $0x1349,%eax 511: 17 pop %ss 512: 13 01 adc (%ecx),%eax 514: 01 13 add %edx,(%ebx) 516: 0b 0b or (%ebx),%ecx 518: 3a 0b cmp (%ebx),%cl 51a: 3b 05 00 00 18 16 cmp 0x16180000,%eax 520: 00 03 add %al,(%ebx) 522: 0e push %cs 523: 3a 0b cmp (%ebx),%cl 525: 3b 05 49 13 00 00 cmp 0x1349,%eax 52b: 19 0d 00 03 0e 3a sbb %ecx,0x3a0e0300 531: 0b 3b or (%ebx),%edi 533: 05 49 13 0b 0b add $0xb0b1349,%eax 538: 0d 0b 0c 0b 38 or $0x380b0c0b,%eax 53d: 0a 00 or (%eax),%al 53f: 00 1a add %bl,(%edx) 541: 13 00 adc (%eax),%eax 543: 03 0e add (%esi),%ecx 545: 3c 0c cmp $0xc,%al 547: 00 00 add %al,(%eax) 549: 1b 0f sbb (%edi),%ecx 54b: 00 0b add %cl,(%ebx) 54d: 0b 00 or (%eax),%eax 54f: 00 1c 21 add %bl,(%ecx) 552: 00 49 13 add %cl,0x13(%ecx) 555: 00 00 add %al,(%eax) 557: 1d 13 00 03 0e sbb $0xe030013,%eax 55c: 0b 0b or (%ebx),%ecx 55e: 3a 0b cmp (%ebx),%cl 560: 3b 05 00 00 1e 35 cmp 0x351e0000,%eax 566: 00 49 13 add %cl,0x13(%ecx) 569: 00 00 add %al,(%eax) 56b: 1f pop %ds 56c: 15 00 27 0c 49 adc $0x490c2700,%eax 571: 13 00 adc (%eax),%eax 573: 00 20 add %ah,(%eax) 575: 15 00 27 0c 00 adc $0xc2700,%eax 57a: 00 21 add %ah,(%ecx) 57c: 17 pop %ss 57d: 01 01 add %eax,(%ecx) 57f: 13 03 adc (%ebx),%eax 581: 0e push %cs 582: 0b 0b or (%ebx),%ecx 584: 3a 0b cmp (%ebx),%cl 586: 3b 0b cmp (%ebx),%ecx 588: 00 00 add %al,(%eax) 58a: 22 0d 00 03 0e 3a and 0x3a0e0300,%cl 590: 0b 3b or (%ebx),%edi 592: 0b 49 13 or 0x13(%ecx),%ecx 595: 00 00 add %al,(%eax) 597: 23 17 and (%edi),%edx 599: 01 01 add %eax,(%ecx) 59b: 13 0b adc (%ebx),%ecx 59d: 0b 3a or (%edx),%edi 59f: 0b 3b or (%ebx),%edi 5a1: 0b 00 or (%eax),%eax 5a3: 00 24 0d 00 03 08 3a add %ah,0x3a080300(,%ecx,1) 5aa: 0b 3b or (%ebx),%edi 5ac: 0b 49 13 or 0x13(%ecx),%ecx 5af: 00 00 add %al,(%eax) 5b1: 25 26 00 49 13 and $0x13490026,%eax 5b6: 00 00 add %al,(%eax) 5b8: 26 13 01 adc %es:(%ecx),%eax 5bb: 01 13 add %edx,(%ebx) 5bd: 03 08 add (%eax),%ecx 5bf: 0b 0b or (%ebx),%ecx 5c1: 3a 0b cmp (%ebx),%cl 5c3: 3b 0b cmp (%ebx),%ecx 5c5: 00 00 add %al,(%eax) 5c7: 27 daa 5c8: 13 00 adc (%eax),%eax 5ca: 03 08 add (%eax),%ecx 5cc: 3c 0c cmp $0xc,%al 5ce: 00 00 add %al,(%eax) 5d0: 28 04 01 sub %al,(%ecx,%eax,1) 5d3: 01 13 add %edx,(%ebx) 5d5: 03 0e add (%esi),%ecx 5d7: 0b 0b or (%ebx),%ecx 5d9: 3a 0b cmp (%ebx),%cl 5db: 3b 05 00 00 29 28 cmp 0x28290000,%eax 5e1: 00 03 add %al,(%ebx) 5e3: 0e push %cs 5e4: 1c 0d sbb $0xd,%al 5e6: 00 00 add %al,(%eax) 5e8: 2a 13 sub (%ebx),%dl 5ea: 00 03 add %al,(%ebx) 5ec: 0e push %cs 5ed: 0b 0b or (%ebx),%ecx 5ef: 3a 0b cmp (%ebx),%cl 5f1: 3b 0b cmp (%ebx),%ecx 5f3: 00 00 add %al,(%eax) 5f5: 2b 04 01 sub (%ecx,%eax,1),%eax 5f8: 01 13 add %edx,(%ebx) 5fa: 03 0e add (%esi),%ecx 5fc: 0b 0b or (%ebx),%ecx 5fe: 3a 0b cmp (%ebx),%cl 600: 3b 0b cmp (%ebx),%ecx 602: 00 00 add %al,(%eax) 604: 2c 21 sub $0x21,%al 606: 00 00 add %al,(%eax) 608: 00 2d 34 00 03 0e add %ch,0xe030034 60e: 3a 0b cmp (%ebx),%cl 610: 3b 0b cmp (%ebx),%ecx 612: 49 dec %ecx 613: 13 3f adc (%edi),%edi 615: 0c 3c or $0x3c,%al 617: 0c 00 or $0x0,%al 619: 00 2e add %ch,(%esi) 61b: 34 00 xor $0x0,%al 61d: 03 0e add (%esi),%ecx 61f: 3a 0b cmp (%ebx),%cl 621: 3b 0b cmp (%ebx),%ecx 623: 49 dec %ecx 624: 13 02 adc (%edx),%eax 626: 0a 00 or (%eax),%al 628: 00 2f add %ch,(%edi) 62a: 34 00 xor $0x0,%al 62c: 03 0e add (%esi),%ecx 62e: 3a 0b cmp (%ebx),%cl 630: 3b 05 49 13 3f 0c cmp 0xc3f1349,%eax 636: 3c 0c cmp $0xc,%al 638: 00 00 add %al,(%eax) 63a: 30 34 00 xor %dh,(%eax,%eax,1) 63d: 03 0e add (%esi),%ecx 63f: 3a 0b cmp (%ebx),%cl 641: 3b 0b cmp (%ebx),%ecx 643: 49 dec %ecx 644: 13 3f adc (%edi),%edi 646: 0c 02 or $0x2,%al 648: 0a 00 or (%eax),%al ... Disassembly of section .debug_line: 00000000 <.debug_line>: 0: 3e ds 1: 06 push %es 2: 00 00 add %al,(%eax) 4: 02 00 add (%eax),%al 6: 69 05 00 00 01 01 fb imul $0xd0efb,0x1010000,%eax d: 0e 0d 00 10: 01 01 add %eax,(%ecx) 12: 01 01 add %eax,(%ecx) 14: 00 00 add %al,(%eax) 16: 00 01 add %al,(%ecx) 18: 00 00 add %al,(%eax) #define LIST_HEAD(name) \ struct list_head name = LIST_HEAD_INIT(name) static inline void INIT_LIST_HEAD(struct list_head *list) { 1a: 01 2f add %ebp,(%edi) 1c: 73 63 jae 81 <.debug_line+0x81> 1e: 72 61 jb 81 <.debug_line+0x81> 20: 74 63 je 85 <.debug_line+0x85> list->next = list; 22: 68 2f 66 69 2f push $0x2f69662f 27: 66 69 5f 6d 6f 64 imul $0x646f,0x6d(%edi),%bx list->prev = list; 2d: 75 6c jne 9b <.debug_line+0x9b> 2f: 65 00 2f add %ch,%gs:(%edi) 32: 73 63 jae 97 <.debug_line+0x97> 34: 72 61 jb 97 <.debug_line+0x97> 36: 74 63 je 9b <.debug_line+0x9b> 38: 68 2f 66 69 2f push $0x2f69662f 3d: 6b 65 72 6e imul $0x6e,0x72(%ebp),%esp 41: 65 gs 42: 6c insb (%dx),%es:(%edi) 43: 73 2f jae 74 <.debug_line+0x74> 45: 6c insb (%dx),%es:(%edi) 46: 69 6e 75 78 2d 32 2e imul $0x2e322d78,0x75(%esi),%ebp 4d: 36 2e 31 38 xor %edi,%cs:%ss:(%eax) 51: 2e 38 2d 66 69 2f 69 cmp %ch,%cs:0x692f6966 58: 6e outsb %ds:(%esi),(%dx) 59: 63 6c 75 64 arpl %bp,0x64(%ebp,%esi,2) 5d: 65 gs 5e: 2f das 5f: 6c insb (%dx),%es:(%edi) 60: 69 6e 75 78 00 69 6e imul $0x6e690078,0x75(%esi),%ebp 67: 63 6c 75 64 arpl %bp,0x64(%ebp,%esi,2) 6b: 65 32 2f xor %gs:(%edi),%ch 6e: 61 popa 6f: 73 6d jae de <.debug_line+0xde> 71: 00 2f add %ch,(%edi) 73: 73 63 jae d8 <.debug_line+0xd8> 75: 72 61 jb d8 <.debug_line+0xd8> 77: 74 63 je dc <.debug_line+0xdc> 79: 68 2f 66 69 2f push $0x2f69662f 7e: 6b 65 72 6e imul $0x6e,0x72(%ebp),%esp 82: 65 gs 83: 6c insb (%dx),%es:(%edi) 84: 73 2f jae b5 <.debug_line+0xb5> 86: 6c insb (%dx),%es:(%edi) 87: 69 6e 75 78 2d 32 2e imul $0x2e322d78,0x75(%esi),%ebp 8e: 36 2e 31 38 xor %edi,%cs:%ss:(%eax) 92: 2e 38 2d 66 69 2f 69 cmp %ch,%cs:0x692f6966 99: 6e outsb %ds:(%esi),(%dx) 9a: 63 6c 75 64 arpl %bp,0x64(%ebp,%esi,2) * function may still be running on return from cancel_delayed_work(). Run * flush_scheduled_work() to wait on it. */ static inline int cancel_delayed_work(struct work_struct *work) { 9e: 65 gs 9f: 2f das a0: 61 popa a1: 73 6d jae 110 <.debug_line+0x110> a3: 2d 67 65 6e 65 sub $0x656e6567,%eax int ret; ret = del_timer_sync(&work->timer); a8: 72 69 jb 113 <.debug_line+0x113> aa: 63 00 arpl %ax,(%eax) ac: 00 63 72 add %ah,0x72(%ebx) af: 6d insl (%dx),%es:(%edi) b0: 6f outsl %ds:(%esi),(%dx) b1: 64 2e 63 00 arpl %ax,%cs:%fs:(%eax) if (ret) b5: 01 00 add %eax,(%eax) b7: 00 6c 69 73 add %ch,0x73(%ecx,%ebp,2) * you should call smp_mb__before_clear_bit() and/or smp_mb__after_clear_bit() * in order to ensure changes are visible on other processors. */ static inline void clear_bit(int nr, volatile unsigned long * addr) { bb: 74 2e je eb <.debug_line+0xeb> bd: 68 00 02 00 00 push $0x200 c2: 77 6f ja 133 <.debug_line+0x133> c4: 72 6b jb 131 <.debug_line+0x131> __asm__ __volatile__( LOCK_PREFIX c6: 71 75 jno 13d <.debug_line+0x13d> c8: 65 gs c9: 75 65 jne 130 <.debug_line+0x130> cb: 2e cs cc: 68 00 02 00 00 push $0x200 int ret; ret = del_timer_sync(&work->timer); if (ret) clear_bit(0, &work->pending); d1: 62 69 74 bound %ebp,0x74(%ecx) d4: 6f outsl %ds:(%esi),(%dx) d5: 70 73 jo 14a <.debug_line+0x14a> d7: 2e cs d8: 68 00 03 00 00 push $0x300 dd: 70 67 jo 146 <.debug_line+0x146> df: 74 61 je 142 <.debug_line+0x142> e1: 62 6c 65 2d bound %ebp,0x2d(%ebp) e5: 6e outsb %ds:(%esi),(%dx) e6: 6f outsl %ds:(%esi),(%dx) e7: 70 75 jo 15e <.debug_line+0x15e> e9: 64 fs ea: 2e cs eb: 68 00 04 00 00 push $0x400 f0: 70 67 jo 159 <.debug_line+0x159> f2: 74 61 je 155 <.debug_line+0x155> f4: 62 6c 65 2d bound %ebp,0x2d(%ebp) f8: 33 6c 65 76 xor 0x76(%ebp),%ebp fc: 65 gs fd: 6c insb (%dx),%es:(%edi) fe: 2e cs ff: 68 00 03 00 00 push $0x300 104: 69 6f 2e 68 00 03 00 imul $0x30068,0x2e(%edi),%ebp 10b: 00 74 69 6d add %dh,0x6d(%ecx,%ebp,2) 10f: 65 gs 110: 72 2e jb 140 <.debug_line+0x140> 112: 68 00 02 00 00 push $0x200 117: 64 63 61 63 arpl %sp,%fs:0x63(%ecx) 11b: 68 65 2e 68 00 push $0x682e65 120: 02 00 add (%eax),%al 122: 00 66 73 add %ah,0x73(%esi) 125: 2e cs 126: 68 00 02 00 00 push $0x200 12b: 61 popa 12c: 74 6f je 19d <.debug_line+0x19d> 12e: 6d insl (%dx),%es:(%edi) 12f: 69 63 2e 68 00 03 00 imul $0x30068,0x2e(%ebx),%esp 136: 00 74 79 70 add %dh,0x70(%ecx,%edi,2) 13a: 65 gs 13b: 73 2e jae 16b <.debug_line+0x16b> 13d: 68 00 03 00 00 push $0x300 142: 74 79 je 1bd <.debug_line+0x1bd> 144: 70 65 jo 1ab <.debug_line+0x1ab> 146: 73 2e jae 176 <.debug_line+0x176> 148: 68 00 02 00 00 push $0x200 14d: 70 6f jo 1be <.debug_line+0x1be> 14f: 73 69 jae 1ba <.debug_line+0x1ba> 151: 78 5f js 1b2 <.debug_line+0x1b2> 153: 74 79 je 1ce <.debug_line+0x1ce> 155: 70 65 jo 1bc <.debug_line+0x1bc> 157: 73 2e jae 187 <.debug_line+0x187> 159: 68 00 03 00 00 push $0x300 15e: 74 69 je 1c9 <.debug_line+0x1c9> 160: 6d insl (%dx),%es:(%edi) 161: 65 gs 162: 2e cs 163: 68 00 02 00 00 push $0x200 168: 73 70 jae 1da <.debug_line+0x1da> 16a: 69 6e 6c 6f 63 6b 5f imul $0x5f6b636f,0x6c(%esi),%ebp 171: 74 79 je 1ec <.debug_line+0x1ec> 173: 70 65 jo 1da <.debug_line+0x1da> 175: 73 2e jae 1a5 <.debug_line+0x1a5> 177: 68 00 02 00 00 push $0x200 17c: 73 70 jae 1ee <.debug_line+0x1ee> 17e: 69 6e 6c 6f 63 6b 5f imul $0x5f6b636f,0x6c(%esi),%ebp 185: 74 79 je 200 <.debug_line+0x200> 187: 70 65 jo 1ee <.debug_line+0x1ee> 189: 73 2e jae 1b9 <.debug_line+0x1b9> 18b: 68 00 03 00 00 push $0x300 190: 6d insl (%dx),%es:(%edi) 191: 75 74 jne 207 <.debug_line+0x207> 193: 65 gs 194: 78 2e js 1c4 <.debug_line+0x1c4> 196: 68 00 02 00 00 push $0x200 19b: 74 68 je 205 <.debug_line+0x205> * The "pgd_xxx()" functions here are trivial for a folded two-level * setup: the pud is never bad, and a pud always exists (as it's folded * into the pgd entry) */ static inline int pgd_none(pgd_t pgd) { return 0; } 19d: 72 65 jb 204 <.debug_line+0x204> 19f: 61 popa 1a0: 64 fs 1a1: 5f pop %edi 1a2: 69 6e 66 6f 2e 68 00 imul $0x682e6f,0x66(%esi),%ebp 1a9: 03 00 add (%eax),%eax 1ab: 00 76 6d add %dh,0x6d(%esi) 1ae: 38 36 cmp %dh,(%esi) 1b0: 2e cs 1b1: 68 00 03 00 00 push $0x300 1b6: 73 63 jae 21b <.debug_line+0x21b> 1b8: 68 65 64 2e 68 push $0x682e6465 1bd: 00 02 add %al,(%edx) 1bf: 00 00 add %al,(%eax) */ #define set_pgd(pgdptr, pgdval) set_pud((pud_t *)(pgdptr), (pud_t) { pgdval }) static inline pud_t * pud_offset(pgd_t * pgd, unsigned long address) { 1c1: 63 70 75 arpl %si,0x75(%eax) 1c4: 6d insl (%dx),%es:(%edi) 1c5: 61 popa 1c6: 73 6b jae 233 <.debug_line+0x233> 1c8: 2e cs 1c9: 68 00 02 00 00 push $0x200 return (pud_t *)pgd; 1ce: 70 72 jo 242 <.debug_line+0x242> 1d0: 6f outsl %ds:(%esi),(%dx) 1d1: 63 65 73 arpl %sp,0x73(%ebp) 1d4: 73 6f jae 245 <.debug_line+0x245> 1d6: 72 2e jb 206 <.debug_line+0x206> 1d8: 68 00 03 00 00 push $0x300 1dd: 70 61 jo 240 <.debug_line+0x240> 1df: 67 addr16 1e0: 65 gs 1e1: 2e cs 1e2: 68 00 03 00 00 push $0x300 1e7: 6d insl (%dx),%es:(%edi) 1e8: 6d insl (%dx),%es:(%edi) 1e9: 2e cs 1ea: 68 00 02 00 00 push $0x200 1ef: 72 62 jb 253 <.debug_line+0x253> 1f1: 74 72 je 265 <.debug_line+0x265> 1f3: 65 gs 1f4: 65 gs 1f5: 2e cs 1f6: 68 00 02 00 00 push $0x200 1fb: 70 72 jo 26f <.debug_line+0x26f> 1fd: 69 6f 5f 74 72 65 65 imul $0x65657274,0x5f(%edi),%ebp 204: 2e cs 205: 68 00 02 00 00 push $0x200 20a: 72 6d jb 279 <.debug_line+0x279> 20c: 61 popa 20d: 70 2e jo 23d <.debug_line+0x23d> 20f: 68 00 02 00 00 push $0x200 214: 6d insl (%dx),%es:(%edi) 215: 6d insl (%dx),%es:(%edi) 216: 7a 6f jp 287 <.debug_line+0x287> 218: 6e outsb %ds:(%esi),(%dx) 219: 65 gs 21a: 2e cs 21b: 68 00 02 00 00 push $0x200 220: 72 63 jb 285 <.debug_line+0x285> 222: 75 70 jne 294 <.debug_line+0x294> 224: 64 fs 225: 61 popa 226: 74 65 je 28d <.debug_line+0x28d> 228: 2e cs 229: 68 00 02 00 00 push $0x200 22e: 66 data16 22f: 73 5f jae 290 <.debug_line+0x290> 231: 73 74 jae 2a7 <.debug_line+0x2a7> 233: 72 75 jb 2aa <.debug_line+0x2aa> 235: 63 74 2e 68 arpl %si,0x68(%esi,%ebp,1) 239: 00 02 add %al,(%edx) 23b: 00 00 add %al,(%eax) 23d: 61 popa 23e: 6c insb (%dx),%es:(%edi) 23f: 74 65 je 2a6 <.debug_line+0x2a6> 241: 72 6e jb 2b1 <.debug_line+0x2b1> 243: 61 popa 244: 74 69 je 2af <.debug_line+0x2af> 246: 76 65 jbe 2ad <.debug_line+0x2ad> 248: 2e cs 249: 68 00 03 00 00 push $0x300 24e: 6d insl (%dx),%es:(%edi) 24f: 6f outsl %ds:(%esi),(%dx) 250: 64 fs 251: 75 6c jne 2bf <.debug_line+0x2bf> 253: 65 gs 254: 2e cs 255: 68 00 02 00 00 push $0x200 25a: 73 79 jae 2d5 <.debug_line+0x2d5> 25c: 73 66 jae 2c4 <.debug_line+0x2c4> #define pte_page(x) pfn_to_page(pte_pfn(x)) static inline int pte_none(pte_t pte) { 25e: 73 2e jae 28e <.debug_line+0x28e> 260: 68 00 02 00 00 push $0x200 265: 6b 6f 62 6a imul $0x6a,0x62(%edi),%ebp 269: 65 63 74 2e 68 arpl %si,%gs:0x68(%esi,%ebp,1) return !pte.pte_low && !pte.pte_high; 26e: 00 02 add %al,(%edx) 270: 00 00 add %al,(%eax) 272: 6b 72 65 66 imul $0x66,0x65(%edx),%esi 276: 2e cs 277: 68 00 02 00 00 push $0x200 27c: 72 77 jb 2f5 <.debug_line+0x2f5> 27e: 73 65 jae 2e5 <.debug_line+0x2e5> 280: 6d insl (%dx),%es:(%edi) 281: 2e cs 282: 68 00 02 00 00 push $0x200 287: 72 77 jb 300 <.debug_line+0x300> 289: 73 65 jae 2f0 <.debug_line+0x2f0> 28b: 6d insl (%dx),%es:(%edi) 28c: 2e cs 28d: 68 00 03 00 00 push $0x300 292: 77 61 ja 2f5 <.debug_line+0x2f5> 294: 69 74 2e 68 00 02 00 imul $0x200,0x68(%esi,%ebp,1),%esi 29b: 00 29c: 6d insl (%dx),%es:(%edi) 29d: 6f outsl %ds:(%esi),(%dx) 29e: 64 fs 29f: 75 6c jne 30d <.debug_line+0x30d> 2a1: 65 gs 2a2: 2e cs 2a3: 68 00 03 00 00 push $0x300 2a8: 6c insb (%dx),%es:(%edi) 2a9: 6f outsl %ds:(%esi),(%dx) 2aa: 63 61 6c arpl %sp,0x6c(%ecx) * this function */ static inline unsigned long virt_to_phys(volatile void * address) { 2ad: 2e cs 2ae: 68 00 03 00 00 push $0x300 return __pa(address); 2b3: 65 gs 2b4: 6c insb (%dx),%es:(%edi) 2b5: 66 data16 2b6: 2e cs 2b7: 68 00 02 00 00 push $0x200 2bc: 6c insb (%dx),%es:(%edi) 2bd: 6f outsl %ds:(%esi),(%dx) 2be: 63 6b 64 arpl %bp,0x64(%ebx) 2c1: 65 gs 2c2: 70 2e jo 2f2 <.debug_line+0x2f2> 2c4: 68 00 02 00 00 push $0x200 2c9: 71 75 jno 340 <.debug_line+0x340> 2cb: 6f outsl %ds:(%esi),(%dx) 2cc: 74 61 je 32f <.debug_line+0x32f> 2ce: 2e cs 2cf: 68 00 02 00 00 push $0x200 2d4: 64 fs 2d5: 71 62 jno 339 <.debug_line+0x339> 2d7: 6c insb (%dx),%es:(%edi) 2d8: 6b 5f 78 66 imul $0x66,0x78(%edi),%ebx 2dc: 73 2e jae 30c <.debug_line+0x30c> 2de: 68 00 02 00 00 push $0x200 2e3: 64 fs 2e4: 71 62 jno 348 <.debug_line+0x348> 2e6: 6c insb (%dx),%es:(%edi) 2e7: 6b 5f 76 31 imul $0x31,0x76(%edi),%ebx 2eb: 2e cs 2ec: 68 00 02 00 00 push $0x200 2f1: 64 fs 2f2: 71 62 jno 356 <.debug_line+0x356> 2f4: 6c insb (%dx),%es:(%edi) 2f5: 6b 5f 76 32 imul $0x32,0x76(%edi),%ebx 2f9: 2e cs 2fa: 68 00 02 00 00 push $0x200 2ff: 61 popa 300: 69 6f 2e 68 00 02 00 imul $0x20068,0x2e(%edi),%ebp 307: 00 61 69 add %ah,0x69(%ecx) 30a: 6f outsl %ds:(%esi),(%dx) 30b: 5f pop %edi 30c: 61 popa 30d: 62 69 2e bound %ebp,0x2e(%ecx) 310: 68 00 02 00 00 push $0x200 315: 6e outsb %ds:(%esi),(%dx) 316: 66 data16 317: 73 5f jae 378 <.debug_line+0x378> 319: 66 data16 31a: 73 5f jae 37b <.debug_line+0x37b> 31c: 69 2e 68 00 02 00 imul $0x20068,(%esi),%ebp 322: 00 72 61 add %dh,0x61(%edx) 325: 64 69 78 2d 74 72 65 imul $0x65657274,%fs:0x2d(%eax),%edi 32c: 65 32d: 2e cs 32e: 68 00 02 00 00 push $0x200 333: 61 popa 334: 74 6f je 3a5 <.debug_line+0x3a5> 336: 6d insl (%dx),%es:(%edi) 337: 69 63 2e 68 00 04 00 imul $0x40068,0x2e(%ebx),%esp 33e: 00 6d 6d add %ch,0x6d(%ebp) 341: 75 2e jne 371 <.debug_line+0x371> 343: 68 00 03 00 00 push $0x300 348: 73 65 jae 3af <.debug_line+0x3af> 34a: 6d insl (%dx),%es:(%edi) 34b: 61 popa 34c: 70 68 jo 3b6 <.debug_line+0x3b6> 34e: 6f outsl %ds:(%esi),(%dx) 34f: 72 65 jb 3b6 <.debug_line+0x3b6> 351: 2e cs 352: 68 00 03 00 00 push $0x300 357: 6b 65 72 6e imul $0x6e,0x72(%ebp),%esp 35b: 65 gs 35c: 6c insb (%dx),%es:(%edi) 35d: 2e cs 35e: 68 00 02 00 00 push $0x200 363: 63 6f 6d arpl %bp,0x6d(%edi) 366: 70 6c jo 3d4 <.debug_line+0x3d4> 368: 65 gs 369: 74 69 je 3d4 <.debug_line+0x3d4> 36b: 6f outsl %ds:(%esi),(%dx) 36c: 6e outsb %ds:(%esi),(%dx) 36d: 2e cs 36e: 68 00 02 00 00 push $0x200 373: 70 69 jo 3de <.debug_line+0x3de> 375: 64 fs 376: 2e cs 377: 68 00 02 00 00 push $0x200 37c: 63 70 75 arpl %si,0x75(%eax) 37f: 74 69 je 3ea <.debug_line+0x3ea> 381: 6d insl (%dx),%es:(%edi) 382: 65 gs 383: 2e cs 384: 68 00 04 00 00 push $0x400 389: 63 61 70 arpl %sp,0x70(%ecx) 38c: 61 popa 38d: 62 69 6c bound %ebp,0x6c(%ecx) 390: 69 74 79 2e 68 00 02 imul $0x20068,0x2e(%ecx,%edi,2),%esi 397: 00 398: 00 73 69 add %dh,0x69(%ebx) 39b: 67 6e addr16 outsb %ds:(%si),(%dx) 39d: 61 popa 39e: 6c insb (%dx),%es:(%edi) 39f: 2e cs 3a0: 68 00 02 00 00 push $0x200 3a5: 73 65 jae 40c <.debug_line+0x40c> 3a7: 6d insl (%dx),%es:(%edi) 3a8: 2e cs 3a9: 68 00 02 00 00 push $0x200 3ae: 6d insl (%dx),%es:(%edi) 3af: 61 popa 3b0: 74 68 je 41a <.debug_line+0x41a> 3b2: 5f pop %edi 3b3: 65 gs 3b4: 6d insl (%dx),%es:(%edi) 3b5: 75 2e jne 3e5 <.debug_line+0x3e5> 3b7: 68 00 03 00 00 push $0x300 3bc: 73 69 jae 427 <.debug_line+0x427> 3be: 67 6e addr16 outsb %ds:(%si),(%dx) 3c0: 61 popa 3c1: 6c insb (%dx),%es:(%edi) 3c2: 2e cs 3c3: 68 00 03 00 00 push $0x300 3c8: 68 72 74 69 6d push $0x6d697472 3cd: 65 gs 3ce: 72 2e jb 3fe <.debug_line+0x3fe> 3d0: 68 00 02 00 00 push $0x200 3d5: 6b 74 69 6d 65 imul $0x65,0x6d(%ecx,%ebp,2),%esi 3da: 2e cs 3db: 68 00 02 00 00 push $0x200 3e0: 72 65 jb 447 <.debug_line+0x447> 3e2: 73 6f jae 453 <.debug_line+0x453> 3e4: 75 72 jne 458 <.debug_line+0x458> 3e6: 63 65 2e arpl %sp,0x2e(%ebp) 3e9: 68 00 02 00 00 push $0x200 3ee: 73 69 jae 459 <.debug_line+0x459> 3f0: 67 6e addr16 outsb %ds:(%si),(%dx) 3f2: 61 popa 3f3: 6c insb (%dx),%es:(%edi) 3f4: 2e cs 3f5: 68 00 04 00 00 push $0x400 3fa: 73 65 jae 461 <.debug_line+0x461> 3fc: 63 63 6f arpl %sp,0x6f(%ebx) 3ff: 6d insl (%dx),%es:(%edi) 400: 70 2e jo 430 <.debug_line+0x430> 402: 68 00 02 00 00 push $0x200 407: 70 6c jo 475 <.debug_line+0x475> 409: 69 73 74 2e 68 00 02 imul $0x200682e,0x74(%ebx),%esi 410: 00 00 add %al,(%eax) 412: 73 77 jae 48b <.debug_line+0x48b> 414: 61 popa 415: 70 2e jo 445 <.debug_line+0x445> 417: 68 00 02 00 00 push $0x200 41c: 73 69 jae 487 <.debug_line+0x487> 41e: 67 69 6e 66 6f 2e 68 addr16 imul $0x682e6f,102(%bp),%ebp 425: 00 426: 04 00 add $0x0,%al 428: 00 66 75 add %ah,0x75(%esi) 42b: 74 65 je 492 <.debug_line+0x492> 42d: 78 2e js 45d <.debug_line+0x45d> 42f: 68 00 02 00 00 push $0x200 434: 74 68 je 49e <.debug_line+0x49e> 436: 72 65 jb 49d <.debug_line+0x49d> 438: 61 popa 439: 64 fs 43a: 5f pop %edi 43b: 69 6e 66 6f 2e 68 00 imul $0x682e6f,0x66(%esi),%ebp 442: 02 00 add (%eax),%al 444: 00 73 74 add %dh,0x74(%ebx) 447: 61 popa 448: 74 2e je 478 <.debug_line+0x478> 44a: 68 00 02 00 00 push $0x200 44f: 73 65 jae 4b6 <.debug_line+0x4b6> 451: 71 6c jno 4bf <.debug_line+0x4bf> 453: 6f outsl %ds:(%esi),(%dx) 454: 63 6b 2e arpl %bp,0x2e(%ebx) 457: 68 00 02 00 00 push $0x200 45c: 70 63 jo 4c1 <.debug_line+0x4c1> 45e: 69 2e 68 00 02 00 imul $0x20068,(%esi),%ebp 464: 00 6d 6f add %ch,0x6f(%ebp) 467: 64 fs 468: 5f pop %edi 469: 64 fs 46a: 65 gs 46b: 76 69 jbe 4d6 <.debug_line+0x4d6> 46d: 63 65 74 arpl %sp,0x74(%ebp) 470: 61 popa 471: 62 6c 65 2e bound %ebp,0x2e(%ebp) 475: 68 00 02 00 00 push $0x200 47a: 69 6f 70 6f 72 74 2e imul $0x2e74726f,0x70(%edi),%ebp 481: 68 00 02 00 00 push $0x200 486: 70 6d jo 4f5 <.debug_line+0x4f5> 488: 2e cs 489: 68 00 02 00 00 push $0x200 48e: 64 fs 48f: 65 gs 490: 76 69 jbe 4fb <.debug_line+0x4fb> 492: 63 65 2e arpl %sp,0x2e(%ebp) 495: 68 00 02 00 00 push $0x200 49a: 6b 6c 69 73 74 imul $0x74,0x73(%ecx,%ebp,2),%ebp 49f: 2e cs 4a0: 68 00 02 00 00 push $0x200 4a5: 6d insl (%dx),%es:(%edi) 4a6: 69 73 63 64 65 76 69 imul $0x69766564,0x63(%ebx),%esi 4ad: 63 65 2e arpl %sp,0x2e(%ebp) 4b0: 68 00 02 00 00 push $0x200 4b5: 69 72 71 72 65 74 75 imul $0x75746572,0x71(%edx),%esi 4bc: 72 6e jb 52c <.debug_line+0x52c> 4be: 2e cs 4bf: 68 00 02 00 00 push $0x200 4c4: 70 74 jo 53a <.debug_line+0x53a> 4c6: 72 61 jb 529 <.debug_line+0x529> 4c8: 63 65 2e arpl %sp,0x2e(%ebp) 4cb: 68 00 03 00 00 push $0x300 4d0: 70 65 jo 537 <.debug_line+0x537> 4d2: 72 63 jb 537 <.debug_line+0x537> 4d4: 70 75 jo 54b <.debug_line+0x54b> 4d6: 2e cs 4d7: 68 00 04 00 00 push $0x400 4dc: 74 69 je 547 <.debug_line+0x547> 4de: 6d insl (%dx),%es:(%edi) 4df: 65 gs 4e0: 78 2e js 510 <.debug_line+0x510> 4e2: 68 00 02 00 00 push $0x200 4e7: 61 popa 4e8: 63 70 69 arpl %si,0x69(%eax) 4eb: 2e cs 4ec: 68 00 03 00 00 push $0x300 4f1: 69 6f 5f 61 70 69 63 imul $0x63697061,0x5f(%edi),%ebp 4f8: 2e cs 4f9: 68 00 03 00 00 push $0x300 4fe: 6d insl (%dx),%es:(%edi) 4ff: 70 73 jo 574 <.debug_line+0x574> 501: 70 65 jo 568 <.debug_line+0x568> 503: 63 5f 64 arpl %bx,0x64(%edi) 506: 65 gs 507: 66 data16 508: 2e cs 509: 68 00 03 00 00 push $0x300 50e: 61 popa 50f: 70 69 jo 57a <.debug_line+0x57a> 511: 63 2e arpl %bp,(%esi) 513: 68 00 03 00 00 push $0x300 518: 73 6d jae 587 <.debug_line+0x587> 51a: 70 2e jo 54a <.debug_line+0x54a> 51c: 68 00 03 00 00 push $0x300 521: 67 65 6e addr16 outsb %gs:(%si),(%dx) 524: 61 popa 525: 70 69 jo 590 <.debug_line+0x590> 527: 63 2e arpl %bp,(%esi) 529: 68 00 03 00 00 push $0x300 52e: 6d insl (%dx),%es:(%edi) 52f: 70 73 jo 5a4 <.debug_line+0x5a4> 531: 70 65 jo 598 <.debug_line+0x598> 533: 63 2e arpl %bp,(%esi) 535: 68 00 03 00 00 push $0x300 53a: 73 6c jae 5a8 <.debug_line+0x5a8> 53c: 61 popa 53d: 62 2e bound %ebp,(%esi) 53f: 68 00 02 00 00 push $0x200 544: 64 fs 545: 65 gs 546: 73 63 jae 5ab <.debug_line+0x5ab> 548: 2e cs 549: 68 00 03 00 00 push $0x300 54e: 76 6d jbe 5bd <.debug_line+0x5bd> 550: 73 74 jae 5c6 <.debug_line+0x5c6> 552: 61 popa 553: 74 2e je 583 <.debug_line+0x583> 555: 68 00 02 00 00 push $0x200 55a: 69 72 71 2e 68 00 02 imul $0x200682e,0x71(%edx),%esi 561: 00 00 add %al,(%eax) 563: 69 6e 74 65 72 72 75 imul $0x75727265,0x74(%esi),%ebp 56a: 70 74 jo 5e0 <.debug_line+0x5e0> 56c: 2e cs 56d: 68 00 02 00 00 push $0x200 572: 00 00 add %al,(%eax) 574: 05 02 00 00 00 add $0x2,%eax 579: 00 03 add %al,(%ebx) 57b: ec in (%dx),%al 57c: 00 01 add %al,(%ecx) 57e: 6a 04 push $0x4 580: 02 03 add (%ebx),%al 582: ae scas %es:(%edi),%al 583: 7f 08 jg 58d <.debug_line+0x58d> 585: 3c 75 cmp $0x75,%al 587: 83 04 01 03 addl $0x3,(%ecx,%eax,1) 58b: d3 00 roll %cl,(%eax) 58d: 90 nop 58e: 02 28 add (%eax),%ch 590: 16 push %ss 591: 03 09 add (%ecx),%ecx 593: 08 3c 9f or %bh,(%edi,%ebx,4) 596: 9f lahf 597: 9f lahf 598: 9f lahf 599: 30 04 03 xor %al,(%ebx,%eax,1) 59c: 03 55 66 add 0x66(%ebp),%edx 59f: 77 d7 ja 578 <.debug_line+0x578> 5a1: 04 04 add $0x4,%al 5a3: 03 68 66 add 0x66(%eax),%ebp 5a6: c9 leave 5a7: 04 03 add $0x3,%al 5a9: 03 18 add (%eax),%ebx 5ab: 9e sahf 5ac: 04 01 add $0x1,%al 5ae: 03 2a add (%edx),%ebp 5b0: 66 data16 5b1: 9f lahf 5b2: a0 c9 67 08 30 mov 0x300867c9,%al 5b7: 33 e5 xor %ebp,%esp 5b9: 75 87 jne 542 <.debug_line+0x542> 5bb: be 3d 36 03 14 mov $0x1403363d,%esi 5c0: 66 data16 5c1: 08 b4 68 91 08 68 04 or %dh,0x4680891(%eax,%ebp,2) 5c8: 05 03 cd 7e 08 add $0x87ecd03,%eax 5cd: 2e cs 5ce: 04 01 add $0x1,%al 5d0: 03 b5 01 08 ac 04 add 0x4ac0801(%ebp),%esi 5d6: 05 03 d9 7e 82 add $0x827ed903,%eax 5db: bb 65 04 01 03 mov $0x3010465,%ebx 5e0: aa stos %al,%es:(%edi) 5e1: 01 66 02 add %esp,0x2(%esi) 5e4: 24 13 and $0x13,%al 5e6: 83 08 2f orl $0x2f,(%eax) 5e9: 5b pop %ebx 5ea: 04 06 add $0x6,%al 5ec: 03 a9 7f 02 41 01 add 0x141027f(%ecx),%ebp 5f2: d7 xlat %ds:(%ebx) 5f3: 08 8f 04 01 03 d9 or %cl,0xd9030104(%edi) 5f9: 00 74 c9 04 add %dh,0x4(%ecx,%ecx,8) 5fd: 07 pop %es 5fe: 03 f2 add %edx,%esi 600: 7e 08 jle 60a <.debug_line+0x60a> 602: 2e cs 603: 67 ab addr16 stos %eax,%es:(%di) 605: 04 01 add $0x1,%al 607: 03 92 01 66 03 61 add 0x61036601(%edx),%edx 60d: 02 34 01 add (%ecx,%eax,1),%dh 610: 03 23 add (%ebx),%esp 612: d6 (bad) 613: 59 pop %ecx 614: 31 95 5b 08 40 33 xor %edx,0x3340085b(%ebp) 61a: bb d7 d7 02 30 mov $0x3002d7d7,%ebx 61f: 14 ad adc $0xad,%al 621: 03 0a add (%edx),%ecx 623: 2e 08 16 or %dl,%cs:(%esi) 626: 08 95 3d 03 0e 74 or %dl,0x740e033d(%ebp) 62c: f4 hlt 62d: c9 leave 62e: 08 31 or %dh,(%ecx) 630: 91 xchg %eax,%ecx 631: 08 3f or %bh,(%edi) 633: ca 08 d7 lret $0xd708 636: 6c insb (%dx),%es:(%edi) 637: bc c9 08 a0 d8 mov $0xd8a008c9,%esp 63c: ad lods %ds:(%esi),%eax 63d: 02 02 add (%edx),%al 63f: 00 01 add %al,(%ecx) 641: 01 e9 add %ebp,%ecx 643: 03 00 add (%eax),%eax 645: 00 02 add %al,(%edx) 647: 00 e3 add %ah,%bl 649: 03 00 add (%eax),%eax 64b: 00 01 add %al,(%ecx) 64d: 01 fb add %edi,%ebx 64f: 0e push %cs 650: 0d 00 01 01 01 or $0x1010100,%eax 655: 01 00 add %eax,(%eax) 657: 00 00 add %al,(%eax) 659: 01 00 add %eax,(%eax) 65b: 00 01 add %al,(%ecx) 65d: 2f das 65e: 73 63 jae 6c3 <.debug_line+0x6c3> 660: 72 61 jb 6c3 <.debug_line+0x6c3> 662: 74 63 je 6c7 <.debug_line+0x6c7> 664: 68 2f 66 69 2f push $0x2f69662f 669: 6b 65 72 6e imul $0x6e,0x72(%ebp),%esp 66d: 65 gs 66e: 6c insb (%dx),%es:(%edi) 66f: 73 2f jae 6a0 <.debug_line+0x6a0> 671: 6c insb (%dx),%es:(%edi) 672: 69 6e 75 78 2d 32 2e imul $0x2e322d78,0x75(%esi),%ebp 679: 36 2e 31 38 xor %edi,%cs:%ss:(%eax) 67d: 2e 38 2d 66 69 2f 69 cmp %ch,%cs:0x692f6966 684: 6e outsb %ds:(%esi),(%dx) 685: 63 6c 75 64 arpl %bp,0x64(%ebp,%esi,2) 689: 65 gs 68a: 2f das 68b: 6c insb (%dx),%es:(%edi) 68c: 69 6e 75 78 00 2f 73 imul $0x732f0078,0x75(%esi),%ebp 693: 63 72 61 arpl %si,0x61(%edx) 696: 74 63 je 6fb <.debug_line+0x6fb> 698: 68 2f 66 69 2f push $0x2f69662f 69d: 6b 65 72 6e imul $0x6e,0x72(%ebp),%esp 6a1: 65 gs 6a2: 6c insb (%dx),%es:(%edi) 6a3: 73 2f jae 6d4 <.debug_line+0x6d4> 6a5: 6c insb (%dx),%es:(%edi) 6a6: 69 6e 75 78 2d 32 2e imul $0x2e322d78,0x75(%esi),%ebp 6ad: 36 2e 31 38 xor %edi,%cs:%ss:(%eax) 6b1: 2e 38 2d 66 69 2f 69 cmp %ch,%cs:0x692f6966 6b8: 6e outsb %ds:(%esi),(%dx) 6b9: 63 6c 75 64 arpl %bp,0x64(%ebp,%esi,2) 6bd: 65 gs 6be: 2f das 6bf: 61 popa 6c0: 73 6d jae 72f <.debug_line+0x72f> 6c2: 2d 67 65 6e 65 sub $0x656e6567,%eax 6c7: 72 69 jb 732 <.debug_line+0x732> 6c9: 63 00 arpl %ax,(%eax) 6cb: 69 6e 63 6c 75 64 65 imul $0x6564756c,0x63(%esi),%ebp 6d2: 32 2f xor (%edi),%ch 6d4: 61 popa 6d5: 73 6d jae 744 <.debug_line+0x744> 6d7: 00 2f add %ch,(%edi) 6d9: 73 63 jae 73e <.debug_line+0x73e> 6db: 72 61 jb 73e <.debug_line+0x73e> 6dd: 74 63 je 742 <.debug_line+0x742> 6df: 68 2f 66 69 2f push $0x2f69662f 6e4: 66 69 5f 6d 6f 64 imul $0x646f,0x6d(%edi),%bx 6ea: 75 6c jne 758 <.debug_line+0x758> 6ec: 65 00 00 add %al,%gs:(%eax) 6ef: 6b 65 72 6e imul $0x6e,0x72(%ebp),%esp 6f3: 65 gs 6f4: 6c insb (%dx),%es:(%edi) 6f5: 2e cs 6f6: 68 00 01 00 00 push $0x100 6fb: 70 65 jo 762 <.debug_line+0x762> 6fd: 72 63 jb 762 <.debug_line+0x762> 6ff: 70 75 jo 776 <.debug_line+0x776> 701: 2e cs 702: 68 00 02 00 00 push $0x200 707: 70 72 jo 77b <.debug_line+0x77b> 709: 6f outsl %ds:(%esi),(%dx) 70a: 63 65 73 arpl %sp,0x73(%ebp) 70d: 73 6f jae 77e <.debug_line+0x77e> 70f: 72 2e jb 73f <.debug_line+0x73f> 711: 68 00 03 00 00 push $0x300 716: 74 79 je 791 <.debug_line+0x791> 718: 70 65 jo 77f <.debug_line+0x77f> 71a: 73 2e jae 74a <.debug_line+0x74a> 71c: 68 00 03 00 00 push $0x300 721: 63 70 75 arpl %si,0x75(%eax) 724: 6d insl (%dx),%es:(%edi) 725: 61 popa 726: 73 6b jae 793 <.debug_line+0x793> 728: 2e cs 729: 68 00 01 00 00 push $0x100 72e: 74 68 je 798 <.debug_line+0x798> 730: 72 65 jb 797 <.debug_line+0x797> 732: 61 popa 733: 64 fs 734: 5f pop %edi 735: 69 6e 66 6f 2e 68 00 imul $0x682e6f,0x66(%esi),%ebp 73c: 03 00 add (%eax),%eax 73e: 00 74 69 6d add %dh,0x6d(%ecx,%ebp,2) 742: 65 gs 743: 2e cs 744: 68 00 01 00 00 push $0x100 749: 74 79 je 7c4 <.debug_line+0x7c4> 74b: 70 65 jo 7b2 <.debug_line+0x7b2> 74d: 73 2e jae 77d <.debug_line+0x77d> 74f: 68 00 01 00 00 push $0x100 754: 70 6f jo 7c5 <.debug_line+0x7c5> 756: 73 69 jae 7c1 <.debug_line+0x7c1> 758: 78 5f js 7b9 <.debug_line+0x7b9> 75a: 74 79 je 7d5 <.debug_line+0x7d5> 75c: 70 65 jo 7c3 <.debug_line+0x7c3> 75e: 73 2e jae 78e <.debug_line+0x78e> 760: 68 00 03 00 00 push $0x300 765: 74 69 je 7d0 <.debug_line+0x7d0> 767: 6d insl (%dx),%es:(%edi) 768: 65 gs 769: 78 2e js 799 <.debug_line+0x799> 76b: 68 00 01 00 00 push $0x100 770: 61 popa 771: 63 70 69 arpl %si,0x69(%eax) 774: 2e cs 775: 68 00 03 00 00 push $0x300 77a: 69 6f 5f 61 70 69 63 imul $0x63697061,0x5f(%edi),%ebp 781: 2e cs 782: 68 00 03 00 00 push $0x300 787: 6d insl (%dx),%es:(%edi) 788: 70 73 jo 7fd <.debug_line+0x7fd> 78a: 70 65 jo 7f1 <.debug_line+0x7f1> 78c: 63 5f 64 arpl %bx,0x64(%edi) 78f: 65 gs 790: 66 data16 791: 2e cs 792: 68 00 03 00 00 push $0x300 797: 61 popa 798: 70 69 jo 803 <.debug_line+0x803> 79a: 63 2e arpl %bp,(%esi) 79c: 68 00 03 00 00 push $0x300 7a1: 73 6d jae 810 <.debug_line+0x810> 7a3: 70 2e jo 7d3 <.debug_line+0x7d3> 7a5: 68 00 03 00 00 push $0x300 7aa: 67 65 6e addr16 outsb %gs:(%si),(%dx) 7ad: 61 popa 7ae: 70 69 jo 819 <.debug_line+0x819> 7b0: 63 2e arpl %bp,(%esi) 7b2: 68 00 03 00 00 push $0x300 7b7: 6d insl (%dx),%es:(%edi) 7b8: 70 73 jo 82d <.debug_line+0x82d> 7ba: 70 65 jo 821 <.debug_line+0x821> 7bc: 63 2e arpl %bp,(%esi) 7be: 68 00 03 00 00 push $0x300 7c3: 6d insl (%dx),%es:(%edi) 7c4: 6d insl (%dx),%es:(%edi) 7c5: 7a 6f jp 836 <.debug_line+0x836> 7c7: 6e outsb %ds:(%esi),(%dx) 7c8: 65 gs 7c9: 2e cs 7ca: 68 00 01 00 00 push $0x100 7cf: 6c insb (%dx),%es:(%edi) 7d0: 69 73 74 2e 68 00 01 imul $0x100682e,0x74(%ebx),%esi 7d7: 00 00 add %al,(%eax) 7d9: 73 70 jae 84b <.debug_line+0x84b> 7db: 69 6e 6c 6f 63 6b 5f imul $0x5f6b636f,0x6c(%esi),%ebp 7e2: 74 79 je 85d <.debug_line+0x85d> 7e4: 70 65 jo 84b <.debug_line+0x84b> 7e6: 73 2e jae 816 <.debug_line+0x816> 7e8: 68 00 01 00 00 push $0x100 7ed: 73 70 jae 85f <.debug_line+0x85f> 7ef: 69 6e 6c 6f 63 6b 5f imul $0x5f6b636f,0x6c(%esi),%ebp 7f6: 74 79 je 871 <.debug_line+0x871> 7f8: 70 65 jo 85f <.debug_line+0x85f> 7fa: 73 2e jae 82a <.debug_line+0x82a> 7fc: 68 00 03 00 00 push $0x300 801: 61 popa 802: 74 6f je 873 <.debug_line+0x873> 804: 6d insl (%dx),%es:(%edi) 805: 69 63 2e 68 00 03 00 imul $0x30068,0x2e(%ebx),%esp 80c: 00 61 74 add %ah,0x74(%ecx) 80f: 6f outsl %ds:(%esi),(%dx) 810: 6d insl (%dx),%es:(%edi) 811: 69 63 2e 68 00 02 00 imul $0x20068,0x2e(%ebx),%esp 818: 00 77 61 add %dh,0x61(%edi) 81b: 69 74 2e 68 00 01 00 imul $0x100,0x68(%esi,%ebp,1),%esi 822: 00 823: 76 6d jbe 892 <.debug_line+0x892> 825: 38 36 cmp %dh,(%esi) 827: 2e cs 828: 68 00 03 00 00 push $0x300 82d: 73 63 jae 892 <.debug_line+0x892> 82f: 68 65 64 2e 68 push $0x682e6465 834: 00 01 add %al,(%ecx) 836: 00 00 add %al,(%eax) 838: 74 68 je 8a2 <.debug_line+0x8a2> 83a: 72 65 jb 8a1 <.debug_line+0x8a1> 83c: 61 popa 83d: 64 fs 83e: 5f pop %edi 83f: 69 6e 66 6f 2e 68 00 imul $0x682e6f,0x66(%esi),%ebp 846: 01 00 add %eax,(%eax) 848: 00 72 62 add %dh,0x62(%edx) 84b: 74 72 je 8bf <.debug_line+0x8bf> 84d: 65 gs 84e: 65 gs 84f: 2e cs 850: 68 00 01 00 00 push $0x100 855: 70 61 jo 8b8 <.debug_line+0x8b8> 857: 67 addr16 858: 65 gs 859: 2e cs 85a: 68 00 03 00 00 push $0x300 85f: 72 77 jb 8d8 <.debug_line+0x8d8> 861: 73 65 jae 8c8 <.debug_line+0x8c8> 863: 6d insl (%dx),%es:(%edi) 864: 2e cs 865: 68 00 01 00 00 push $0x100 86a: 72 77 jb 8e3 <.debug_line+0x8e3> 86c: 73 65 jae 8d3 <.debug_line+0x8d3> 86e: 6d insl (%dx),%es:(%edi) 86f: 2e cs 870: 68 00 03 00 00 push $0x300 875: 6d insl (%dx),%es:(%edi) 876: 6d insl (%dx),%es:(%edi) 877: 75 2e jne 8a7 <.debug_line+0x8a7> 879: 68 00 03 00 00 push $0x300 87e: 73 65 jae 8e5 <.debug_line+0x8e5> 880: 6d insl (%dx),%es:(%edi) 881: 61 popa 882: 70 68 jo 8ec <.debug_line+0x8ec> 884: 6f outsl %ds:(%esi),(%dx) 885: 72 65 jb 8ec <.debug_line+0x8ec> 887: 2e cs 888: 68 00 03 00 00 push $0x300 88d: 63 6f 6d arpl %bp,0x6d(%edi) 890: 70 6c jo 8fe <.debug_line+0x8fe> 892: 65 gs 893: 74 69 je 8fe <.debug_line+0x8fe> 895: 6f outsl %ds:(%esi),(%dx) 896: 6e outsb %ds:(%esi),(%dx) 897: 2e cs 898: 68 00 01 00 00 push $0x100 89d: 61 popa 89e: 69 6f 2e 68 00 01 00 imul $0x10068,0x2e(%edi),%ebp 8a5: 00 77 6f add %dh,0x6f(%edi) 8a8: 72 6b jb 915 <.debug_line+0x915> 8aa: 71 75 jno 921 <.debug_line+0x921> 8ac: 65 gs 8ad: 75 65 jne 914 <.debug_line+0x914> 8af: 2e cs 8b0: 68 00 01 00 00 push $0x100 8b5: 74 69 je 920 <.debug_line+0x920> 8b7: 6d insl (%dx),%es:(%edi) 8b8: 65 gs 8b9: 72 2e jb 8e9 <.debug_line+0x8e9> 8bb: 68 00 01 00 00 push $0x100 8c0: 70 69 jo 92b <.debug_line+0x92b> 8c2: 64 fs 8c3: 2e cs 8c4: 68 00 01 00 00 push $0x100 8c9: 72 63 jb 92e <.debug_line+0x92e> 8cb: 75 70 jne 93d <.debug_line+0x93d> 8cd: 64 fs 8ce: 61 popa 8cf: 74 65 je 936 <.debug_line+0x936> 8d1: 2e cs 8d2: 68 00 01 00 00 push $0x100 8d7: 63 70 75 arpl %si,0x75(%eax) 8da: 74 69 je 945 <.debug_line+0x945> 8dc: 6d insl (%dx),%es:(%edi) 8dd: 65 gs 8de: 2e cs 8df: 68 00 02 00 00 push $0x200 8e4: 63 61 70 arpl %sp,0x70(%ecx) 8e7: 61 popa 8e8: 62 69 6c bound %ebp,0x6c(%ecx) 8eb: 69 74 79 2e 68 00 01 imul $0x10068,0x2e(%ecx,%edi,2),%esi 8f2: 00 8f3: 00 73 69 add %dh,0x69(%ebx) 8f6: 67 6e addr16 outsb %ds:(%si),(%dx) 8f8: 61 popa 8f9: 6c insb (%dx),%es:(%edi) 8fa: 2e cs 8fb: 68 00 01 00 00 push $0x100 900: 73 65 jae 967 <.debug_line+0x967> 902: 6d insl (%dx),%es:(%edi) 903: 2e cs 904: 68 00 01 00 00 push $0x100 909: 6d insl (%dx),%es:(%edi) 90a: 61 popa 90b: 74 68 je 975 <.debug_line+0x975> 90d: 5f pop %edi 90e: 65 gs 90f: 6d insl (%dx),%es:(%edi) 910: 75 2e jne 940 <.debug_line+0x940> 912: 68 00 03 00 00 push $0x300 917: 66 data16 918: 73 5f jae 979 <.debug_line+0x979> 91a: 73 74 jae 990 <.debug_line+0x990> 91c: 72 75 jb 993 <.debug_line+0x993> 91e: 63 74 2e 68 arpl %si,0x68(%esi,%ebp,1) 922: 00 01 add %al,(%ecx) 924: 00 00 add %al,(%eax) 926: 73 69 jae 991 <.debug_line+0x991> 928: 67 6e addr16 outsb %ds:(%si),(%dx) 92a: 61 popa 92b: 6c insb (%dx),%es:(%edi) 92c: 2e cs 92d: 68 00 03 00 00 push $0x300 932: 68 72 74 69 6d push $0x6d697472 937: 65 gs 938: 72 2e jb 968 <.debug_line+0x968> 93a: 68 00 01 00 00 push $0x100 93f: 6b 74 69 6d 65 imul $0x65,0x6d(%ecx,%ebp,2),%esi 944: 2e cs 945: 68 00 01 00 00 push $0x100 94a: 6c insb (%dx),%es:(%edi) 94b: 6f outsl %ds:(%esi),(%dx) 94c: 63 6b 64 arpl %bp,0x64(%ebx) 94f: 65 gs 950: 70 2e jo 980 <.debug_line+0x980> 952: 68 00 01 00 00 push $0x100 957: 72 65 jb 9be <.debug_line+0x9be> 959: 73 6f jae 9ca <.debug_line+0x9ca> 95b: 75 72 jne 9cf <.debug_line+0x9cf> 95d: 63 65 2e arpl %sp,0x2e(%ebp) 960: 68 00 01 00 00 push $0x100 965: 73 69 jae 9d0 <.debug_line+0x9d0> 967: 67 6e addr16 outsb %ds:(%si),(%dx) 969: 61 popa 96a: 6c insb (%dx),%es:(%edi) 96b: 2e cs 96c: 68 00 02 00 00 push $0x200 971: 73 65 jae 9d8 <.debug_line+0x9d8> 973: 63 63 6f arpl %sp,0x6f(%ebx) 976: 6d insl (%dx),%es:(%edi) 977: 70 2e jo 9a7 <.debug_line+0x9a7> 979: 68 00 01 00 00 push $0x100 97e: 70 6c jo 9ec <.debug_line+0x9ec> 980: 69 73 74 2e 68 00 01 imul $0x100682e,0x74(%ebx),%esi 987: 00 00 add %al,(%eax) 989: 6d insl (%dx),%es:(%edi) 98a: 75 74 jne a00 <.debug_line+0xa00> 98c: 65 gs 98d: 78 2e js 9bd <.debug_line+0x9bd> 98f: 68 00 01 00 00 push $0x100 994: 73 69 jae 9ff <.debug_line+0x9ff> 996: 67 69 6e 66 6f 2e 68 addr16 imul $0x682e6f,102(%bp),%ebp 99d: 00 99e: 02 00 add (%eax),%al 9a0: 00 66 75 add %ah,0x75(%esi) 9a3: 74 65 je a0a <.debug_line+0xa0a> 9a5: 78 2e js 9d5 <.debug_line+0x9d5> 9a7: 68 00 01 00 00 push $0x100 9ac: 73 6c jae a1a <.debug_line+0xa1a> 9ae: 61 popa 9af: 62 2e bound %ebp,(%esi) 9b1: 68 00 01 00 00 push $0x100 9b6: 64 fs 9b7: 65 gs 9b8: 73 63 jae a1d <.debug_line+0xa1d> 9ba: 2e cs 9bb: 68 00 03 00 00 push $0x300 9c0: 63 72 6d arpl %si,0x6d(%edx) 9c3: 6f outsl %ds:(%esi),(%dx) 9c4: 64 fs 9c5: 2e cs 9c6: 6d insl (%dx),%es:(%edi) 9c7: 6f outsl %ds:(%esi),(%dx) 9c8: 64 2e 63 00 arpl %ax,%cs:%fs:(%eax) 9cc: 04 00 add $0x0,%al 9ce: 00 61 6c add %ah,0x6c(%ecx) 9d1: 74 65 je a38 9d3: 72 6e jb a43 9d5: 61 popa 9d6: 74 69 je a41 9d8: 76 65 jbe a3f 9da: 2e cs 9db: 68 00 03 00 00 push $0x300 9e0: 6d insl (%dx),%es:(%edi) 9e1: 6f outsl %ds:(%esi),(%dx) 9e2: 64 fs 9e3: 75 6c jne a51 9e5: 65 gs 9e6: 2e cs 9e7: 68 00 01 00 00 push $0x100 9ec: 73 79 jae a67 9ee: 73 66 jae a56 9f0: 73 2e jae a20 <.debug_line+0xa20> 9f2: 68 00 01 00 00 push $0x100 9f7: 6b 6f 62 6a imul $0x6a,0x62(%edi),%ebp 9fb: 65 63 74 2e 68 arpl %si,%gs:0x68(%esi,%ebp,1) a00: 00 01 add %al,(%ecx) a02: 00 00 add %al,(%eax) a04: 6b 72 65 66 imul $0x66,0x65(%edx),%esi a08: 2e cs a09: 68 00 01 00 00 push $0x100 a0e: 6d insl (%dx),%es:(%edi) a0f: 6f outsl %ds:(%esi),(%dx) a10: 64 fs a11: 75 6c jne a7f a13: 65 gs a14: 2e cs a15: 68 00 03 00 00 push $0x300 a1a: 6c insb (%dx),%es:(%edi) a1b: 6f outsl %ds:(%esi),(%dx) a1c: 63 61 6c arpl %sp,0x6c(%ecx) a1f: 2e cs a20: 68 00 03 00 00 push $0x300 a25: 65 gs a26: 6c insb (%dx),%es:(%edi) a27: 66 data16 a28: 2e cs a29: 68 00 01 00 00 push $0x100 ... Disassembly of section .debug_frame: 00000000 <.debug_frame>: 0: 10 00 adc %al,(%eax) 2: 00 00 add %al,(%eax) 4: ff (bad) 5: ff (bad) 6: ff (bad) 7: ff 01 incl (%ecx) 9: 00 01 add %al,(%ecx) b: 7c 08 jl 15 <.debug_frame+0x15> d: 0c 04 or $0x4,%al f: 04 88 add $0x88,%al 11: 01 00 add %eax,(%eax) 13: 00 14 00 add %dl,(%eax,%eax,1) ... #define LIST_HEAD(name) \ struct list_head name = LIST_HEAD_INIT(name) static inline void INIT_LIST_HEAD(struct list_head *list) { 1e: 00 00 add %al,(%eax) 20: 98 cwtl list->next = list; 21: 00 00 add %al,(%eax) 23: 00 41 0e add %al,0xe(%ecx) 26: 08 85 02 42 0d 05 or %al,0x50d4202(%ebp) list->prev = list; 2c: 14 00 adc $0x0,%al 2e: 00 00 add %al,(%eax) 30: 00 00 add %al,(%eax) 32: 00 00 add %al,(%eax) 34: 98 cwtl 35: 00 00 add %al,(%eax) 37: 00 7a 00 add %bh,0x0(%edx) 3a: 00 00 add %al,(%eax) 3c: 41 inc %ecx 3d: 0e push %cs 3e: 08 85 02 42 0d 05 or %al,0x50d4202(%ebp) 44: 14 00 adc $0x0,%al 46: 00 00 add %al,(%eax) 48: 00 00 add %al,(%eax) 4a: 00 00 add %al,(%eax) 4c: 12 01 adc (%ecx),%al 4e: 00 00 add %al,(%eax) 50: 2f das 51: 00 00 add %al,(%eax) 53: 00 41 0e add %al,0xe(%ecx) 56: 08 85 02 42 0d 05 or %al,0x50d4202(%ebp) 5c: 14 00 adc $0x0,%al 5e: 00 00 add %al,(%eax) 60: 00 00 add %al,(%eax) 62: 00 00 add %al,(%eax) 64: 41 inc %ecx 65: 01 00 add %eax,(%eax) 67: 00 cb add %cl,%bl 69: 01 00 add %eax,(%eax) 6b: 00 41 0e add %al,0xe(%ecx) 6e: 08 85 02 42 0d 05 or %al,0x50d4202(%ebp) 74: 14 00 adc $0x0,%al 76: 00 00 add %al,(%eax) 78: 00 00 add %al,(%eax) 7a: 00 00 add %al,(%eax) 7c: 0c 03 or $0x3,%al 7e: 00 00 add %al,(%eax) 80: 24 00 and $0x0,%al 82: 00 00 add %al,(%eax) 84: 41 inc %ecx 85: 0e push %cs 86: 08 85 02 42 0d 05 or %al,0x50d4202(%ebp) 8c: 14 00 adc $0x0,%al 8e: 00 00 add %al,(%eax) 90: 00 00 add %al,(%eax) 92: 00 00 add %al,(%eax) 94: 30 03 xor %al,(%ebx) 96: 00 00 add %al,(%eax) 98: 65 00 00 add %al,%gs:(%eax) 9b: 00 41 0e add %al,0xe(%ecx) * function may still be running on return from cancel_delayed_work(). Run * flush_scheduled_work() to wait on it. */ static inline int cancel_delayed_work(struct work_struct *work) { 9e: 08 85 02 42 0d 05 or %al,0x50d4202(%ebp) a4: 1c 00 sbb $0x0,%al int ret; ret = del_timer_sync(&work->timer); a6: 00 00 add %al,(%eax) a8: 00 00 add %al,(%eax) aa: 00 00 add %al,(%eax) ac: 95 xchg %eax,%ebp ad: 03 00 add (%eax),%eax af: 00 35 00 00 00 41 add %dh,0x41000000 if (ret) b5: 0e push %cs b6: 08 85 02 42 0d 05 or %al,0x50d4202(%ebp) * you should call smp_mb__before_clear_bit() and/or smp_mb__after_clear_bit() * in order to ensure changes are visible on other processors. */ static inline void clear_bit(int nr, volatile unsigned long * addr) { bc: 45 inc %ebp bd: 83 04 86 03 addl $0x3,(%esi,%eax,4) c1: 00 00 add %al,(%eax) c3: 00 18 add %bl,(%eax) c5: 00 00 add %al,(%eax) __asm__ __volatile__( LOCK_PREFIX c7: 00 00 add %al,(%eax) c9: 00 00 add %al,(%eax) cb: 00 ca add %cl,%dl cd: 03 00 add (%eax),%eax cf: 00 7f 00 add %bh,0x0(%edi) int ret; ret = del_timer_sync(&work->timer); if (ret) clear_bit(0, &work->pending); d2: 00 00 add %al,(%eax) d4: 41 inc %ecx d5: 0e push %cs d6: 08 85 02 42 0d 05 or %al,0x50d4202(%ebp) dc: 44 inc %esp dd: 83 03 00 addl $0x0,(%ebx) e0: 14 00 adc $0x0,%al e2: 00 00 add %al,(%eax) e4: 00 00 add %al,(%eax) e6: 00 00 add %al,(%eax) e8: 49 dec %ecx e9: 04 00 add $0x0,%al eb: 00 4f 00 add %cl,0x0(%edi) ee: 00 00 add %al,(%eax) f0: 41 inc %ecx f1: 0e push %cs f2: 08 85 02 42 0d 05 or %al,0x50d4202(%ebp) Disassembly of section .debug_str: 00000000 <.debug_str>: 0: 5f pop %edi 1: 5f pop %edi 2: 66 data16 3: 75 6e jne 73 <.debug_str+0x73> 5: 63 5f 5f arpl %bx,0x5f(%edi) 8: 00 64 71 62 add %ah,0x62(%ecx,%esi,2) c: 5f pop %edi d: 63 75 72 arpl %si,0x72(%ebp) 10: 73 70 jae 82 <.debug_str+0x82> 12: 61 popa 13: 63 65 00 arpl %sp,0x0(%ebp) 16: 72 61 jb 79 <.debug_str+0x79> 18: 77 5f ja 79 <.debug_str+0x79> #define LIST_HEAD(name) \ struct list_head name = LIST_HEAD_INIT(name) static inline void INIT_LIST_HEAD(struct list_head *list) { 1a: 6c insb (%dx),%es:(%edi) 1b: 6f outsl %ds:(%esi),(%dx) 1c: 63 6b 00 arpl %bp,0x0(%ebx) 1f: 6d insl (%dx),%es:(%edi) 20: 70 63 jo 85 <.debug_str+0x85> list->next = list; 22: 5f pop %edi 23: 61 popa 24: 70 69 jo 8f <.debug_str+0x8f> 26: 63 76 65 arpl %si,0x65(%esi) list->prev = list; 29: 72 00 jb 2b <.debug_str+0x2b> 2b: 73 68 jae 95 <.debug_str+0x95> 2d: 6f outsl %ds:(%esi),(%dx) 2e: 77 00 ja 30 <.debug_str+0x30> 30: 75 65 jne 97 <.debug_str+0x97> 32: 76 65 jbe 99 <.debug_str+0x99> 34: 6e outsb %ds:(%esi),(%dx) 35: 74 5f je 96 <.debug_str+0x96> 37: 61 popa 38: 74 74 je ae <.debug_str+0xae> 3a: 72 00 jb 3c <.debug_str+0x3c> 3c: 67 addr16 3d: 65 gs 3e: 74 5f je 9f <.debug_str+0x9f> 40: 75 6e jne b0 <.debug_str+0xb0> 42: 6d insl (%dx),%es:(%edi) 43: 61 popa 44: 70 70 jo b6 <.debug_str+0xb6> 46: 65 gs 47: 64 fs 48: 5f pop %edi 49: 61 popa 4a: 72 65 jb b1 <.debug_str+0xb1> 4c: 61 popa 4d: 00 72 6f add %dh,0x6f(%edx) 50: 62 75 73 bound %esi,0x73(%ebp) 53: 74 5f je b4 <.debug_str+0xb4> 55: 6c insb (%dx),%es:(%edi) 56: 69 73 74 00 69 74 5f imul $0x5f746900,0x74(%ebx),%esi 5d: 70 72 jo d1 <.debug_str+0xd1> 5f: 6f outsl %ds:(%esi),(%dx) 60: 66 5f pop %di 62: 65 gs 63: 78 70 js d5 <.debug_str+0xd5> 65: 69 72 65 73 00 70 72 imul $0x72700073,0x65(%edx),%esi 6c: 69 76 61 74 65 00 6f imul $0x6f006574,0x61(%esi),%esi 73: 77 6e ja e3 <.debug_str+0xe3> 75: 65 gs 76: 72 5f jb d7 <.debug_str+0xd7> 78: 63 70 75 arpl %si,0x75(%eax) 7b: 00 72 65 add %dh,0x65(%edx) 7e: 6d insl (%dx),%es:(%edi) 7f: 6f outsl %ds:(%esi),(%dx) 80: 76 65 jbe e7 <.debug_str+0xe7> 82: 00 61 74 add %ah,0x74(%ecx) 85: 74 72 je f9 <.debug_str+0xf9> 87: 00 73 79 add %dh,0x79(%ebx) 8a: 73 66 jae f2 <.debug_str+0xf2> 8c: 73 5f jae ed <.debug_str+0xed> 8e: 6f outsl %ds:(%esi),(%dx) 8f: 70 73 jo 104 <.debug_str+0x104> 91: 00 6d 70 add %ch,0x70(%ebp) 94: 63 5f 61 arpl %bx,0x61(%edi) 97: 70 69 jo 102 <.debug_str+0x102> 99: 63 69 64 arpl %bp,0x64(%ecx) 9c: 00 70 72 add %dh,0x72(%eax) * function may still be running on return from cancel_delayed_work(). Run * flush_scheduled_work() to wait on it. */ static inline int cancel_delayed_work(struct work_struct *work) { 9f: 6f outsl %ds:(%esi),(%dx) a0: 62 65 00 bound %esp,0x0(%ebp) a3: 69 6e 6f 74 69 66 79 imul $0x79666974,0x6f(%esi),%ebp int ret; ret = del_timer_sync(&work->timer); aa: 5f pop %edi ab: 77 61 ja 10e <.debug_str+0x10e> ad: 74 63 je 112 <.debug_str+0x112> af: 68 65 73 00 6d push $0x6d007365 if (ret) b4: 6d insl (%dx),%es:(%edi) b5: 61 popa b6: 70 5f jo 117 <.debug_str+0x117> b8: 62 61 73 bound %esp,0x73(%ecx) * you should call smp_mb__before_clear_bit() and/or smp_mb__after_clear_bit() * in order to ensure changes are visible on other processors. */ static inline void clear_bit(int nr, volatile unsigned long * addr) { bb: 65 00 77 61 add %dh,%gs:0x61(%edi) bf: 69 74 5f 6c 69 73 74 imul $0x747369,0x6c(%edi,%ebx,2),%esi c6: 00 __asm__ __volatile__( LOCK_PREFIX c7: 73 74 jae 13d <.debug_str+0x13d> c9: 5f pop %edi ca: 73 70 jae 13c <.debug_str+0x13c> cc: 61 popa cd: 63 65 00 arpl %sp,0x0(%ebp) int ret; ret = del_timer_sync(&work->timer); if (ret) clear_bit(0, &work->pending); d0: 63 6c 61 73 arpl %bp,0x73(%ecx) d4: 73 00 jae d6 <.debug_str+0xd6> d6: 64 fs d7: 65 gs d8: 76 74 jbe 14e <.debug_str+0x14e> da: 5f pop %edi db: 61 popa dc: 74 74 je 152 <.debug_str+0x152> de: 72 00 jb e0 <.debug_str+0xe0> e0: 64 fs e1: 71 62 jno 145 <.debug_str+0x145> e3: 5f pop %edi e4: 63 75 72 arpl %si,0x72(%ebp) e7: 69 6e 6f 64 65 73 00 imul $0x736564,0x6f(%esi),%ebp ee: 77 61 ja 151 <.debug_str+0x151> f0: 69 74 5f 6c 6f 63 6b imul $0x6b636f,0x6c(%edi,%ebx,2),%esi f7: 00 f8: 73 75 jae 16f <.debug_str+0x16f> fa: 62 6f 72 bound %ebp,0x72(%edi) fd: 64 69 6e 61 74 65 00 imul $0x72006574,%fs:0x61(%esi),%ebp 104: 72 105: 65 63 6c 61 69 arpl %bp,%gs:0x69(%ecx) 10a: 6d insl (%dx),%es:(%edi) 10b: 5f pop %edi 10c: 73 74 jae 182 <.debug_str+0x182> 10e: 61 popa 10f: 74 65 je 176 <.debug_str+0x176> 111: 00 61 75 add %ah,0x75(%ecx) 114: 64 69 74 5f 63 6f 6e imul $0x65746e6f,%fs:0x63(%edi,%ebx,2),%esi 11b: 74 65 11d: 78 74 js 193 <.debug_str+0x193> 11f: 00 73 75 add %dh,0x75(%ebx) 122: 62 73 79 bound %esi,0x79(%ebx) 125: 73 00 jae 127 <.debug_str+0x127> 127: 64 fs 128: 65 gs 129: 76 69 jbe 194 <.debug_str+0x194> 12b: 63 65 73 arpl %sp,0x73(%ebp) 12e: 00 6f 77 add %ch,0x77(%edi) 131: 6e outsb %ds:(%esi),(%dx) 132: 65 gs 133: 72 00 jb 135 <.debug_str+0x135> 135: 69 6f 5f 63 6f 6e 74 imul $0x746e6f63,0x5f(%edi),%ebp 13c: 65 gs 13d: 78 74 js 1b3 <.debug_str+0x1b3> 13f: 00 73 65 add %dh,0x65(%ebx) 142: 73 73 jae 1b7 <.debug_str+0x1b7> 144: 69 6f 6e 5f 6b 65 79 imul $0x79656b5f,0x6e(%edi),%ebp 14b: 72 69 jb 1b6 <.debug_str+0x1b6> 14d: 6e outsb %ds:(%esi),(%dx) 14e: 67 00 73 75 addr16 add %dh,117(%bp,%di) 152: 73 70 jae 1c4 <.debug_str+0x1c4> 154: 65 6e outsb %gs:(%esi),(%dx) 156: 64 00 73 69 add %dh,%fs:0x69(%ebx) 15a: 67 70 65 addr16 jo 1c2 <.debug_str+0x1c2> 15d: 6e outsb %ds:(%esi),(%dx) 15e: 64 69 6e 67 00 61 64 imul $0x64646100,%fs:0x67(%esi),%ebp 165: 64 166: 72 65 jb 1cd <.debug_str+0x1cd> 168: 73 73 jae 1dd <.debug_str+0x1dd> 16a: 00 64 72 69 add %ah,0x69(%edx,%esi,2) 16e: 76 65 jbe 1d5 <.debug_str+0x1d5> 170: 72 5f jb 1d1 <.debug_str+0x1d1> 172: 64 fs 173: 61 popa 174: 74 61 je 1d7 <.debug_str+0x1d7> 176: 00 70 72 add %dh,0x72(%eax) 179: 69 6f 5f 74 72 65 65 imul $0x65657274,0x5f(%edi),%ebp 180: 5f pop %edi 181: 6e outsb %ds:(%esi),(%dx) 182: 6f outsl %ds:(%esi),(%dx) 183: 64 65 00 65 78 add %ah,%fs:%gs:0x78(%ebp) 188: 65 63 5f 64 arpl %bx,%gs:0x64(%edi) 18c: 6f outsl %ds:(%esi),(%dx) 18d: 6d insl (%dx),%es:(%edi) 18e: 61 popa 18f: 69 6e 00 64 71 62 5f imul $0x5f627164,0x0(%esi),%ebp 196: 62 73 6f bound %esi,0x6f(%ebx) 199: 66 data16 19a: 74 6c je 208 <.debug_str+0x208> * The "pgd_xxx()" functions here are trivial for a folded two-level * setup: the pud is never bad, and a pud always exists (as it's folded * into the pgd entry) */ static inline int pgd_none(pgd_t pgd) { return 0; } 19c: 69 6d 69 74 00 6d 61 imul $0x616d0074,0x69(%ebp),%ebp 1a3: 67 69 63 00 6e 61 6d addr16 imul $0x656d616e,0(%bp,%di),%esp 1aa: 65 1ab: 00 72 65 add %dh,0x65(%edx) 1ae: 73 75 jae 225 <.debug_str+0x225> 1b0: 6d insl (%dx),%es:(%edi) 1b1: 65 00 61 6e add %ah,%gs:0x6e(%ecx) 1b5: 6f outsl %ds:(%esi),(%dx) 1b6: 6e outsb %ds:(%esi),(%dx) 1b7: 5f pop %edi 1b8: 76 6d jbe 227 <.debug_str+0x227> 1ba: 61 popa 1bb: 00 73 65 add %dh,0x65(%ebx) 1be: 63 75 72 arpl %si,0x72(%ebp) */ #define set_pgd(pgdptr, pgdval) set_pud((pud_t *)(pgdptr), (pud_t) { pgdval }) static inline pud_t * pud_offset(pgd_t * pgd, unsigned long address) { 1c1: 69 74 79 00 73 74 6f imul $0x726f7473,0x0(%ecx,%edi,2),%esi 1c8: 72 1c9: 65 00 64 71 69 add %ah,%gs:0x69(%ecx,%esi,2) return (pud_t *)pgd; 1ce: 5f pop %edi 1cf: 66 data16 1d0: 6c insb (%dx),%es:(%edi) 1d1: 61 popa 1d2: 67 73 00 addr16 jae 1d5 <.debug_str+0x1d5> 1d5: 63 70 75 arpl %si,0x75(%eax) 1d8: 5f pop %edi 1d9: 74 69 je 244 <.debug_str+0x244> 1db: 6d insl (%dx),%es:(%edi) 1dc: 65 gs 1dd: 72 73 jb 252 <.debug_str+0x252> 1df: 00 73 74 add %dh,0x74(%ebx) 1e2: 61 popa 1e3: 74 75 je 25a <.debug_str+0x25a> 1e5: 73 00 jae 1e7 <.debug_str+0x1e7> 1e7: 63 6f 75 arpl %bp,0x75(%edi) 1ea: 6e outsb %ds:(%esi),(%dx) 1eb: 74 00 je 1ed <.debug_str+0x1ed> 1ed: 69 72 71 5f 64 65 73 imul $0x7365645f,0x71(%edx),%esi 1f4: 63 00 arpl %ax,(%eax) 1f6: 64 fs 1f7: 71 62 jno 25b <.debug_str+0x25b> 1f9: 5f pop %edi 1fa: 69 68 61 72 64 6c 69 imul $0x696c6472,0x61(%eax),%ebp 201: 6d insl (%dx),%es:(%edi) 202: 69 74 00 6b 6c 69 73 imul $0x7473696c,0x6b(%eax,%eax,1),%esi 209: 74 20a: 5f pop %edi 20b: 64 fs 20c: 65 gs 20d: 76 69 jbe 278 <.debug_str+0x278> 20f: 63 65 73 arpl %sp,0x73(%ebp) 212: 00 64 71 69 add %ah,0x69(%ecx,%esi,2) 216: 5f pop %edi 217: 69 67 72 61 63 65 00 imul $0x656361,0x72(%edi),%esp 21e: 66 data16 21f: 75 6e jne 28f <.debug_str+0x28f> 221: 63 74 69 6f arpl %si,0x6f(%ecx,%ebp,2) 225: 6e outsb %ds:(%esi),(%dx) 226: 00 64 72 69 add %ah,0x69(%edx,%esi,2) 22a: 76 65 jbe 291 <.debug_str+0x291> 22c: 72 00 jb 22e <.debug_str+0x22e> 22e: 64 fs 22f: 71 62 jno 293 <.debug_str+0x293> 231: 5f pop %edi 232: 69 74 69 6d 65 00 74 imul $0x61740065,0x6d(%ecx,%ebp,2),%esi 239: 61 23a: 73 6b jae 2a7 <.debug_str+0x2a7> 23c: 5f pop %edi 23d: 6c insb (%dx),%es:(%edi) 23e: 69 73 74 00 6c 69 73 imul $0x73696c00,0x74(%ebx),%esi 245: 74 00 je 247 <.debug_str+0x247> 247: 61 popa 248: 6c insb (%dx),%es:(%edi) 249: 6c insb (%dx),%es:(%edi) 24a: 6f outsl %ds:(%esi),(%dx) 24b: 63 5f 69 arpl %bx,0x69(%edi) 24e: 6e outsb %ds:(%esi),(%dx) 24f: 6f outsl %ds:(%esi),(%dx) 250: 64 65 00 73 68 add %dh,%fs:%gs:0x68(%ebx) 255: 75 74 jne 2cb <.debug_str+0x2cb> 257: 64 6f outsl %fs:(%esi),(%dx) 259: 77 6e ja 2c9 <.debug_str+0x2c9> 25b: 00 74 68 72 add %dh,0x72(%eax,%ebp,2) #define pte_page(x) pfn_to_page(pte_pfn(x)) static inline int pte_none(pte_t pte) { 25f: 65 gs 260: 61 popa 261: 64 fs 262: 5f pop %edi 263: 69 6e 66 6f 00 64 65 imul $0x6564006f,0x66(%esi),%ebp 26a: 76 69 jbe 2d5 <.debug_str+0x2d5> return !pte.pte_low && !pte.pte_high; 26c: 63 65 00 arpl %sp,0x0(%ebp) 26f: 66 data16 270: 6c insb (%dx),%es:(%edi) 271: 5f pop %edi 272: 63 6f 70 arpl %bp,0x70(%edi) 275: 79 5f jns 2d6 <.debug_str+0x2d6> 277: 6c insb (%dx),%es:(%edi) 278: 6f outsl %ds:(%esi),(%dx) 279: 63 6b 00 arpl %bp,0x0(%ebx) 27c: 73 63 jae 2e1 <.debug_str+0x2e1> 27e: 68 65 64 5f 74 push $0x745f6465 283: 69 6d 65 00 69 74 5f imul $0x5f746900,0x65(%ebp),%ebp 28a: 76 69 jbe 2f5 <.debug_str+0x2f5> 28c: 72 74 jb 302 <.debug_str+0x302> 28e: 5f pop %edi 28f: 65 gs 290: 78 70 js 302 <.debug_str+0x302> 292: 69 72 65 73 00 65 6e imul $0x6e650073,0x65(%edx),%esi 299: 74 72 je 30d <.debug_str+0x30d> 29b: 79 00 jns 29d <.debug_str+0x29d> 29d: 6b 6e 6f 64 imul $0x64,0x6f(%esi),%ebp 2a1: 65 gs 2a2: 5f pop %edi 2a3: 62 75 73 bound %esi,0x73(%ebp) 2a6: 00 72 75 add %dh,0x75(%edx) 2a9: 6e outsb %ds:(%esi),(%dx) 2aa: 5f pop %edi 2ab: 6c insb (%dx),%es:(%edi) * this function */ static inline unsigned long virt_to_phys(volatile void * address) { 2ac: 69 73 74 00 6e 61 6d imul $0x6d616e00,0x74(%ebx),%esi return __pa(address); 2b3: 65 gs 2b4: 73 70 jae 326 <.debug_str+0x326> 2b6: 61 popa 2b7: 63 65 00 arpl %sp,0x0(%ebp) 2ba: 6e outsb %ds:(%esi),(%dx) 2bb: 6f outsl %ds:(%esi),(%dx) 2bc: 64 65 00 73 63 add %dh,%fs:%gs:0x63(%ebx) 2c1: 72 65 jb 328 <.debug_str+0x328> 2c3: 65 6e outsb %gs:(%esi),(%dx) 2c5: 5f pop %edi 2c6: 62 69 74 bound %ebp,0x74(%ecx) 2c9: 6d insl (%dx),%es:(%edi) 2ca: 61 popa 2cb: 70 00 jo 2cd <.debug_str+0x2cd> 2cd: 6f outsl %ds:(%esi),(%dx) 2ce: 72 69 jb 339 <.debug_str+0x339> 2d0: 67 5f addr16 pop %edi 2d2: 65 gs 2d3: 61 popa 2d4: 78 00 js 2d6 <.debug_str+0x2d6> 2d6: 6c insb (%dx),%es:(%edi) 2d7: 6f outsl %ds:(%esi),(%dx) 2d8: 63 6b 00 arpl %bp,0x0(%ebx) 2db: 72 65 jb 342 <.debug_str+0x342> 2dd: 73 74 jae 353 <.debug_str+0x353> 2df: 61 popa 2e0: 72 74 jb 356 <.debug_str+0x356> 2e2: 5f pop %edi 2e3: 62 6c 6f 63 bound %ebp,0x63(%edi,%ebp,2) 2e7: 6b 00 64 imul $0x64,(%eax),%eax 2ea: 71 62 jno 34e <.debug_str+0x34e> 2ec: 5f pop %edi 2ed: 62 68 61 bound %ebp,0x61(%eax) 2f0: 72 64 jb 356 <.debug_str+0x356> 2f2: 6c insb (%dx),%es:(%edi) 2f3: 69 6d 69 74 00 64 71 imul $0x71640074,0x69(%ebp),%ebp 2fa: 62 5f 69 bound %ebx,0x69(%edi) 2fd: 73 6f jae 36e <.debug_str+0x36e> 2ff: 66 data16 300: 74 6c je 36e <.debug_str+0x36e> 302: 69 6d 69 74 00 63 68 imul $0x68630074,0x69(%ebp),%ebp 309: 69 6c 64 72 65 6e 00 imul $0x64006e65,0x72(%esp),%ebp 310: 64 311: 71 69 jno 37c <.debug_str+0x37c> 313: 5f pop %edi 314: 62 67 72 bound %esp,0x72(%edi) 317: 61 popa 318: 63 65 00 arpl %sp,0x0(%ebp) 31b: 72 65 jb 382 <.debug_str+0x382> 31d: 6c insb (%dx),%es:(%edi) 31e: 65 gs 31f: 61 popa 320: 73 65 jae 387 <.debug_str+0x387> 322: 00 64 65 76 add %ah,0x76(%ebp) 326: 5f pop %edi 327: 69 64 00 73 6c 65 65 imul $0x7065656c,0x73(%eax,%eax,1),%esp 32e: 70 32f: 5f pop %edi 330: 74 79 je 3ab <.debug_str+0x3ab> 332: 70 65 jo 399 <.debug_str+0x399> 334: 00 72 65 add %dh,0x65(%edx) 337: 73 6f jae 3a8 <.debug_str+0x3a8> 339: 75 72 jne 3ad <.debug_str+0x3ad> 33b: 63 65 00 arpl %sp,0x0(%ebp) 33e: 75 65 jne 3a5 <.debug_str+0x3a5> 340: 76 65 jbe 3a7 <.debug_str+0x3a7> 342: 6e outsb %ds:(%esi),(%dx) 343: 74 00 je 345 <.debug_str+0x345> 345: 6d insl (%dx),%es:(%edi) 346: 70 63 jo 3ab <.debug_str+0x3ab> 348: 5f pop %edi 349: 74 79 je 3c4 <.debug_str+0x3c4> 34b: 70 65 jo 3b2 <.debug_str+0x3b2> 34d: 00 64 71 62 add %ah,0x62(%ecx,%esi,2) 351: 5f pop %edi 352: 62 74 69 6d bound %esi,0x6d(%ecx,%ebp,2) 356: 65 00 66 6c add %ah,%gs:0x6c(%esi) 35a: 5f pop %edi 35b: 72 65 jb 3c2 <.debug_str+0x3c2> 35d: 6c insb (%dx),%es:(%edi) 35e: 65 gs 35f: 61 popa 360: 73 65 jae 3c7 <.debug_str+0x3c7> 362: 5f pop %edi 363: 70 72 jo 3d7 <.debug_str+0x3d7> 365: 69 76 61 74 65 00 67 imul $0x67006574,0x61(%esi),%esi 36c: 72 6f jb 3dd <.debug_str+0x3dd> 36e: 75 70 jne 3e0 <.debug_str+0x3e0> 370: 5f pop %edi 371: 69 6e 66 6f 00 70 61 imul $0x6170006f,0x66(%esi),%ebp 378: 72 65 jb 3df <.debug_str+0x3df> 37a: 6e outsb %ds:(%esi),(%dx) 37b: 74 00 je 37d <.debug_str+0x37d> 37d: 64 fs 37e: 6d insl (%dx),%es:(%edi) 37f: 61 popa 380: 5f pop %edi 381: 6d insl (%dx),%es:(%edi) 382: 61 popa 383: 73 6b jae 3f0 <.debug_str+0x3f0> 385: 00 62 61 add %ah,0x61(%edx) 388: 63 6b 69 arpl %bp,0x69(%ebx) 38b: 6e outsb %ds:(%esi),(%dx) 38c: 67 5f addr16 pop %edi 38e: 64 fs 38f: 65 gs 390: 76 5f jbe 3f1 <.debug_str+0x3f1> 392: 69 6e 66 6f 00 75 6e imul $0x6e75006f,0x66(%esi),%ebp 399: 73 69 jae 404 <.debug_str+0x404> 39b: 67 6e addr16 outsb %ds:(%si),(%dx) 39d: 65 64 20 69 6e and %ch,%fs:%gs:0x6e(%ecx) 3a2: 74 00 je 3a4 <.debug_str+0x3a4> 3a4: 66 data16 3a5: 72 65 jb 40c <.debug_str+0x40c> 3a7: 65 gs 3a8: 5f pop %edi 3a9: 61 popa 3aa: 72 65 jb 411 <.debug_str+0x411> 3ac: 61 popa 3ad: 00 6e 65 add %ch,0x65(%esi) 3b0: 78 74 js 426 <.debug_str+0x426> 3b2: 00 66 6c add %ah,0x6c(%esi) 3b5: 61 popa 3b6: 67 73 00 addr16 jae 3b9 <.debug_str+0x3b9> 3b9: 5f pop %edi 3ba: 5f pop %edi 3bb: 77 61 ja 41e <.debug_str+0x41e> 3bd: 69 74 5f 71 75 65 75 imul $0x65756575,0x71(%edi,%ebx,2),%esi 3c4: 65 3c5: 00 6e 75 add %ch,0x75(%esi) 3c8: 6d insl (%dx),%es:(%edi) 3c9: 5f pop %edi 3ca: 73 79 jae 445 <.debug_str+0x445> 3cc: 6d insl (%dx),%es:(%edi) 3cd: 73 00 jae 3cf <.debug_str+0x3cf> 3cf: 72 65 jb 436 <.debug_str+0x436> 3d1: 73 65 jae 438 <.debug_str+0x438> 3d3: 72 76 jb 44b <.debug_str+0x44b> 3d5: 65 64 00 6e 6f add %ch,%fs:%gs:0x6f(%esi) 3da: 5f pop %edi 3db: 62 61 6c bound %esp,0x6c(%ecx) 3de: 61 popa 3df: 6e outsb %ds:(%esi),(%dx) 3e0: 63 65 5f arpl %sp,0x5f(%ebp) 3e3: 69 72 71 00 6b 5f 6e imul $0x6e5f6b00,0x71(%edx),%esi 3ea: 61 popa 3eb: 6d insl (%dx),%es:(%edi) 3ec: 65 00 73 61 add %dh,%gs:0x61(%ebx) 3f0: 76 65 jbe 457 <.debug_str+0x457> 3f2: 64 fs 3f3: 5f pop %edi 3f4: 66 data16 3f5: 73 00 jae 3f7 <.debug_str+0x3f7> 3f7: 5f pop %edi 3f8: 66 69 6c 65 5f 72 73 imul $0x7372,0x5f(%ebp),%bp 3ff: 73 00 jae 401 <.debug_str+0x401> 401: 73 65 jae 468 <.debug_str+0x468> 403: 6d insl (%dx),%es:(%edi) 404: 69 64 00 6d 70 63 5f imul $0x635f6370,0x6d(%eax,%eax,1),%esp 40b: 63 40c: 6f outsl %ds:(%esi),(%dx) 40d: 6e outsb %ds:(%esi),(%dx) 40e: 66 69 67 5f 62 75 imul $0x7562,0x5f(%edi),%sp 414: 73 00 jae 416 <.debug_str+0x416> 416: 66 69 72 73 74 5f imul $0x5f74,0x73(%edx),%si 41c: 74 69 je 487 <.debug_str+0x487> 41e: 6d insl (%dx),%es:(%edi) 41f: 65 gs 420: 5f pop %edi 421: 73 6c jae 48f <.debug_str+0x48f> 423: 69 63 65 00 73 6c 65 imul $0x656c7300,0x65(%ebx),%esp 42a: 65 gs 42b: 70 65 jo 492 <.debug_str+0x492> 42d: 72 73 jb 4a2 <.debug_str+0x4a2> 42f: 00 67 69 add %ah,0x69(%edi) 432: 64 fs 433: 5f pop %edi 434: 74 00 je 436 <.debug_str+0x436> 436: 64 6f outsl %fs:(%esi),(%dx) 438: 6e outsb %ds:(%esi),(%dx) 439: 65 gs 43a: 74 61 je 49d <.debug_str+0x49d> 43c: 69 6c 00 73 61 76 65 imul $0x64657661,0x73(%eax,%eax,1),%ebp 443: 64 444: 5f pop %edi 445: 61 popa 446: 75 78 jne 4c0 <.debug_str+0x4c0> 448: 76 00 jbe 44a <.debug_str+0x44a> 44a: 5f pop %edi 44b: 5f pop %edi 44c: 5f pop %edi 44d: 65 69 70 00 69 6f 5f imul $0x775f6f69,%gs:0x0(%eax),%esi 454: 77 455: 61 popa 456: 69 74 00 65 75 69 64 imul $0x646975,0x65(%eax,%eax,1),%esi 45d: 00 45e: 4d dec %ebp 45f: 4f dec %edi 460: 44 inc %esp 461: 55 push %ebp 462: 4c dec %esp 463: 45 inc %ebp 464: 5f pop %edi 465: 53 push %ebx 466: 54 push %esp 467: 41 inc %ecx 468: 54 push %esp 469: 45 inc %ebp 46a: 5f pop %edi 46b: 47 inc %edi 46c: 4f dec %edi 46d: 49 dec %ecx 46e: 4e dec %esi 46f: 47 inc %edi 470: 00 69 6f add %ch,0x6f(%ecx) 473: 5f pop %edi 474: 62 69 74 bound %ebp,0x74(%ecx) 477: 6d insl (%dx),%es:(%edi) 478: 61 popa 479: 70 5f jo 4da <.debug_str+0x4da> 47b: 6d insl (%dx),%es:(%edi) 47c: 61 popa 47d: 78 00 js 47f <.debug_str+0x47f> 47f: 63 61 63 arpl %sp,0x63(%ecx) 482: 68 65 5f 73 69 push $0x69735f65 487: 7a 65 jp 4ee <.debug_str+0x4ee> 489: 73 00 jae 48b <.debug_str+0x48b> 48b: 5f pop %edi 48c: 74 69 je 4f7 <.debug_str+0x4f7> 48e: 64 00 73 79 add %dh,%fs:0x79(%ebx) 492: 73 76 jae 50a <.debug_str+0x50a> 494: 5f pop %edi 495: 73 65 jae 4fc <.debug_str+0x4fc> 497: 6d insl (%dx),%es:(%edi) 498: 00 63 75 add %ah,0x75(%ebx) 49b: 72 74 jb 511 <.debug_str+0x511> 49d: 61 popa 49e: 69 6c 00 72 6c 69 6d imul $0x696d696c,0x72(%eax,%eax,1),%ebp 4a5: 69 4a6: 74 00 je 4a8 <.debug_str+0x4a8> 4a8: 6e outsb %ds:(%esi),(%dx) 4a9: 6f outsl %ds:(%esi),(%dx) 4aa: 5f pop %edi 4ab: 69 6f 61 70 69 63 5f imul $0x5f636970,0x61(%edi),%ebp 4b2: 63 68 65 arpl %bp,0x65(%eax) 4b5: 63 6b 00 arpl %bp,0x0(%ebx) 4b8: 5f pop %edi 4b9: 5f pop %edi 4ba: 6e outsb %ds:(%esi),(%dx) 4bb: 75 6c jne 529 <.debug_str+0x529> 4bd: 6c insb (%dx),%es:(%edi) 4be: 5f pop %edi 4bf: 64 fs 4c0: 73 00 jae 4c2 <.debug_str+0x4c2> 4c2: 73 6d jae 531 <.debug_str+0x531> 4c4: 61 popa 4c5: 6c insb (%dx),%es:(%edi) 4c6: 6c insb (%dx),%es:(%edi) 4c7: 5f pop %edi 4c8: 62 6c 6f 63 bound %ebp,0x63(%edi,%ebp,2) 4cc: 6b 00 70 imul $0x70,(%eax),%eax 4cf: 72 69 jb 53a <.debug_str+0x53a> 4d1: 6f outsl %ds:(%esi),(%dx) 4d2: 00 73 70 add %dh,0x70(%ebx) 4d5: 69 6e 6c 6f 63 6b 5f imul $0x5f6b636f,0x6c(%esi),%ebp 4dc: 74 00 je 4de <.debug_str+0x4de> 4de: 70 61 jo 541 <.debug_str+0x541> 4e0: 67 addr16 4e1: 65 gs 4e2: 73 5f jae 543 <.debug_str+0x543> 4e4: 6d insl (%dx),%es:(%edi) 4e5: 69 6e 00 64 6f 6e 65 imul $0x656e6f64,0x0(%esi),%ebp 4ec: 00 62 6c add %ah,0x6c(%edx) 4ef: 6f outsl %ds:(%esi),(%dx) 4f0: 63 6b 73 arpl %bp,0x73(%ebx) 4f3: 00 70 61 add %dh,0x61(%eax) 4f6: 67 addr16 4f7: 65 gs 4f8: 73 5f jae 559 <.debug_str+0x559> 4fa: 6c insb (%dx),%es:(%edi) 4fb: 6f outsl %ds:(%esi),(%dx) 4fc: 77 00 ja 4fe <.debug_str+0x4fe> 4fe: 6b 73 77 61 imul $0x61,0x77(%ebx),%esi 502: 70 64 jo 568 <.debug_str+0x568> 504: 5f pop %edi 505: 6d insl (%dx),%es:(%edi) 506: 61 popa 507: 78 5f js 568 <.debug_str+0x568> 509: 6f outsl %ds:(%esi),(%dx) 50a: 72 64 jb 570 <.debug_str+0x570> 50c: 65 gs 50d: 72 00 jb 50f <.debug_str+0x50f> 50f: 72 61 jb 572 <.debug_str+0x572> 511: 77 5f ja 572 <.debug_str+0x572> 513: 6c insb (%dx),%es:(%edi) 514: 6f outsl %ds:(%esi),(%dx) 515: 63 6b 00 arpl %bp,0x0(%ebx) 518: 63 70 75 arpl %si,0x75(%eax) 51b: 6d insl (%dx),%es:(%edi) 51c: 61 popa 51d: 73 6b jae 58a <.debug_str+0x58a> 51f: 5f pop %edi 520: 74 00 je 522 <.debug_str+0x522> 522: 74 72 je 596 <.debug_str+0x596> 524: 61 popa 525: 6e outsb %ds:(%esi),(%dx) 526: 73 5f jae 587 <.debug_str+0x587> 528: 6c insb (%dx),%es:(%edi) 529: 65 6e outsb %gs:(%esi),(%dx) 52b: 00 69 33 add %ch,0x33(%ecx) 52e: 38 37 cmp %dh,(%edi) 530: 5f pop %edi 531: 66 data16 532: 78 73 js 5a7 <.debug_str+0x5a7> 534: 61 popa 535: 76 65 jbe 59c <.debug_str+0x59c> 537: 5f pop %edi 538: 73 74 jae 5ae <.debug_str+0x5ae> 53a: 72 75 jb 5b1 <.debug_str+0x5b1> 53c: 63 74 00 53 arpl %si,0x53(%eax,%eax,1) 540: 4c dec %esp 541: 45 inc %ebp 542: 45 inc %ebp 543: 50 push %eax 544: 5f pop %edi 545: 49 dec %ecx 546: 4e dec %esi 547: 54 push %esp 548: 45 inc %ebp 549: 52 push %edx 54a: 52 push %edx 54b: 55 push %ebp 54c: 50 push %eax 54d: 54 push %esp 54e: 45 inc %ebp 54f: 44 inc %esp 550: 00 5f 5f add %bl,0x5f(%edi) 553: 64 fs 554: 73 68 jae 5be <.debug_str+0x5be> 556: 00 65 6e add %ah,0x6e(%ebp) 559: 74 72 je 5cd <.debug_str+0x5cd> 55b: 79 5f jns 5bc <.debug_str+0x5bc> 55d: 65 69 70 00 5f 73 69 imul $0x6769735f,%gs:0x0(%eax),%esi 564: 67 565: 70 6f jo 5d6 <.debug_str+0x5d6> 567: 6c insb (%dx),%es:(%edi) 568: 6c insb (%dx),%es:(%edi) 569: 00 6d 70 add %ch,0x70(%ebp) 56c: 63 5f 61 arpl %bx,0x61(%edi) 56f: 70 69 jo 5da <.debug_str+0x5da> 571: 63 76 65 arpl %si,0x65(%esi) 574: 72 00 jb 576 <.debug_str+0x576> 576: 72 74 jb 5ec <.debug_str+0x5ec> 578: 5f pop %edi 579: 70 72 jo 5ed <.debug_str+0x5ed> 57b: 69 6f 72 69 74 79 00 imul $0x797469,0x72(%edi),%ebp 582: 73 74 jae 5f8 <.debug_str+0x5f8> 584: 61 popa 585: 72 74 jb 5fb <.debug_str+0x5fb> 587: 5f pop %edi 588: 74 69 je 5f3 <.debug_str+0x5f3> 58a: 6d insl (%dx),%es:(%edi) 58b: 65 00 65 72 add %ah,%gs:0x72(%ebp) 58f: 72 6f jb 600 <.debug_str+0x600> 591: 72 5f jb 5f2 <.debug_str+0x5f2> 593: 63 6f 64 arpl %bp,0x64(%edi) 596: 65 00 72 63 add %dh,%gs:0x63(%edx) 59a: 75 5f jne 5fb <.debug_str+0x5fb> 59c: 64 fs 59d: 61 popa 59e: 74 61 je 601 <.debug_str+0x601> 5a0: 00 73 68 add %dh,0x68(%ebx) 5a3: 6f outsl %ds:(%esi),(%dx) 5a4: 77 00 ja 5a6 <.debug_str+0x5a6> 5a6: 6c insb (%dx),%es:(%edi) 5a7: 69 63 65 6e 73 65 5f imul $0x5f65736e,0x65(%ebx),%esp 5ae: 67 70 6c addr16 jo 61d <.debug_str+0x61d> 5b1: 6f outsl %ds:(%esi),(%dx) 5b2: 6b 00 6d imul $0x6d,(%eax),%eax 5b5: 6f outsl %ds:(%esi),(%dx) 5b6: 64 69 6e 66 6f 5f 61 imul $0x74615f6f,%fs:0x66(%esi),%ebp 5bd: 74 5be: 74 72 je 632 <.debug_str+0x632> 5c0: 73 00 jae 5c2 <.debug_str+0x5c2> 5c2: 74 69 je 62d <.debug_str+0x62d> 5c4: 6d insl (%dx),%es:(%edi) 5c5: 65 gs 5c6: 5f pop %edi 5c7: 74 00 je 5c9 <.debug_str+0x5c9> 5c9: 61 popa 5ca: 63 63 74 arpl %sp,0x74(%ebx) 5cd: 5f pop %edi 5ce: 76 6d jbe 63d <.debug_str+0x63d> 5d0: 5f pop %edi 5d1: 6d insl (%dx),%es:(%edi) 5d2: 65 gs 5d3: 6d insl (%dx),%es:(%edi) 5d4: 31 00 xor %eax,(%eax) 5d6: 6c insb (%dx),%es:(%edi) 5d7: 6f outsl %ds:(%esi),(%dx) 5d8: 63 6b 65 arpl %bp,0x65(%ebx) 5db: 64 fs 5dc: 5f pop %edi 5dd: 73 68 jae 647 <.debug_str+0x647> 5df: 6d insl (%dx),%es:(%edi) 5e0: 00 63 6f add %ah,0x6f(%ebx) 5e3: 75 6e jne 653 <.debug_str+0x653> 5e5: 74 65 je 64c <.debug_str+0x64c> 5e7: 72 00 jb 5e9 <.debug_str+0x5e9> 5e9: 75 73 jne 65e <.debug_str+0x65e> 5eb: 65 gs 5ec: 72 73 jb 661 <.debug_str+0x661> 5ee: 00 65 78 add %ah,0x78(%ebp) 5f1: 69 74 5f 73 69 67 6e imul $0x616e6769,0x73(%edi,%ebx,2),%esi 5f8: 61 5f9: 6c insb (%dx),%es:(%edi) 5fa: 00 61 63 add %ah,0x63(%ecx) 5fd: 70 69 jo 668 <.debug_str+0x668> 5ff: 5f pop %edi 600: 6e outsb %ds:(%esi),(%dx) 601: 6f outsl %ds:(%esi),(%dx) 602: 69 72 71 00 68 6c 69 imul $0x696c6800,0x71(%edx),%esi 609: 73 74 jae 67f <.debug_str+0x67f> 60b: 5f pop %edi 60c: 6e outsb %ds:(%esi),(%dx) 60d: 6f outsl %ds:(%esi),(%dx) 60e: 64 65 00 5f 5f add %bl,%fs:%gs:0x5f(%edi) 613: 6e outsb %ds:(%esi),(%dx) 614: 75 6c jne 682 <.debug_str+0x682> 616: 6c insb (%dx),%es:(%edi) 617: 5f pop %edi 618: 66 data16 619: 73 00 jae 61b <.debug_str+0x61b> 61b: 70 74 jo 691 <.debug_str+0x691> 61d: 72 61 jb 680 <.debug_str+0x680> 61f: 63 65 5f arpl %sp,0x5f(%ebp) 622: 6d insl (%dx),%es:(%edi) 623: 65 gs 624: 73 73 jae 699 <.debug_str+0x699> 626: 61 popa 627: 67 65 00 73 74 addr16 add %dh,%gs:116(%bp,%di) 62c: 5f pop %edi 62d: 73 69 jae 698 <.debug_str+0x698> 62f: 7a 65 jp 696 <.debug_str+0x696> 631: 00 6d 61 add %ch,0x61(%ebp) 634: 78 5f js 695 <.debug_str+0x695> 636: 72 65 jb 69d <.debug_str+0x69d> 638: 71 73 jno 6ad <.debug_str+0x6ad> 63a: 00 5f 5f add %bl,0x5f(%edi) 63d: 6b 65 72 6e imul $0x6e,0x72(%ebp),%esp 641: 65 gs 642: 6c insb (%dx),%es:(%edi) 643: 5f pop %edi 644: 74 69 je 6af <.debug_str+0x6af> 646: 6d insl (%dx),%es:(%edi) 647: 65 gs 648: 72 5f jb 6a9 <.debug_str+0x6a9> 64a: 74 00 je 64c <.debug_str+0x64c> 64c: 2f das 64d: 73 63 jae 6b2 <.debug_str+0x6b2> 64f: 72 61 jb 6b2 <.debug_str+0x6b2> 651: 74 63 je 6b6 <.debug_str+0x6b6> 653: 68 2f 66 69 2f push $0x2f69662f 658: 6b 65 72 6e imul $0x6e,0x72(%ebp),%esp 65c: 65 gs 65d: 6c insb (%dx),%es:(%edi) 65e: 73 2f jae 68f <.debug_str+0x68f> 660: 63 6f 6d arpl %bp,0x6d(%edi) 663: 70 69 jo 6ce <.debug_str+0x6ce> 665: 6c insb (%dx),%es:(%edi) 666: 65 gs 667: 64 fs 668: 5f pop %edi 669: 69 6d 61 67 65 73 2f imul $0x2f736567,0x61(%ebp),%ebp 670: 32 2e xor (%esi),%ch 672: 36 2e 31 38 xor %edi,%cs:%ss:(%eax) 676: 2e 38 2d 66 69 2d 76 cmp %ch,%cs:0x762d6966 67d: 6d insl (%dx),%es:(%edi) 67e: 77 61 ja 6e1 <.debug_str+0x6e1> 680: 72 65 jb 6e7 <.debug_str+0x6e7> 682: 00 5f 5f add %bl,0x5f(%edi) 685: 6b 65 72 6e imul $0x6e,0x72(%ebp),%esp 689: 65 gs 68a: 6c insb (%dx),%es:(%edi) 68b: 5f pop %edi 68c: 73 73 jae 701 <.debug_str+0x701> 68e: 69 7a 65 5f 74 00 6e imul $0x6e00745f,0x65(%edx),%edi 695: 72 5f jb 6f6 <.debug_str+0x6f6> 697: 69 6e 61 63 74 69 76 imul $0x76697463,0x61(%esi),%ebp 69e: 65 00 73 69 add %dh,%gs:0x69(%ebx) 6a2: 67 6e addr16 outsb %ds:(%si),(%dx) 6a4: 61 popa 6a5: 6c insb (%dx),%es:(%edi) 6a6: 00 73 65 add %dh,0x65(%ebx) 6a9: 73 73 jae 71e <.debug_str+0x71e> 6ab: 69 6f 6e 00 63 70 75 imul $0x75706300,0x6e(%edi),%ebp 6b2: 74 69 je 71d <.debug_str+0x71d> 6b4: 6d insl (%dx),%es:(%edi) 6b5: 65 gs 6b6: 5f pop %edi 6b7: 74 00 je 6b9 <.debug_str+0x6b9> 6b9: 6d insl (%dx),%es:(%edi) 6ba: 6f outsl %ds:(%esi),(%dx) 6bb: 64 fs 6bc: 75 6c jne 72a <.debug_str+0x72a> 6be: 65 gs 6bf: 73 5f jae 720 <.debug_str+0x720> 6c1: 77 68 ja 72b <.debug_str+0x72b> 6c3: 69 63 68 5f 75 73 65 imul $0x6573755f,0x68(%ebx),%esp 6ca: 5f pop %edi 6cb: 6d insl (%dx),%es:(%edi) 6cc: 65 00 62 64 add %ah,%gs:0x64(%edx) 6d0: 61 popa 6d1: 74 61 je 734 <.debug_str+0x734> 6d3: 00 5f 5f add %bl,0x5f(%edi) 6d6: 6e outsb %ds:(%esi),(%dx) 6d7: 75 6c jne 745 <.debug_str+0x745> 6d9: 6c insb (%dx),%es:(%edi) 6da: 5f pop %edi 6db: 67 73 00 addr16 jae 6de <.debug_str+0x6de> 6de: 70 69 jo 749 <.debug_str+0x749> 6e0: 64 fs 6e1: 73 00 jae 6e3 <.debug_str+0x6e3> 6e3: 7a 6f jp 754 <.debug_str+0x754> 6e5: 6e outsb %ds:(%esi),(%dx) 6e6: 65 00 76 6d add %dh,%gs:0x6d(%esi) 6ea: 38 36 cmp %dh,(%esi) 6ec: 5f pop %edi 6ed: 72 65 jb 754 <.debug_str+0x754> 6ef: 67 73 00 addr16 jae 6f2 <.debug_str+0x6f2> 6f2: 73 74 jae 768 <.debug_str+0x768> 6f4: 5f pop %edi 6f5: 73 68 jae 75f <.debug_str+0x75f> 6f7: 6e outsb %ds:(%esi),(%dx) 6f8: 64 fs 6f9: 78 00 js 6fb <.debug_str+0x6fb> 6fb: 70 65 jo 762 <.debug_str+0x762> 6fd: 72 5f jb 75e <.debug_str+0x75e> 6ff: 63 70 75 arpl %si,0x75(%eax) 702: 5f pop %edi 703: 70 61 jo 766 <.debug_str+0x766> 705: 67 addr16 706: 65 gs 707: 73 00 jae 709 <.debug_str+0x709> 709: 67 addr16 70a: 65 gs 70b: 74 5f je 76c <.debug_str+0x76c> 70d: 75 6e jne 77d <.debug_str+0x77d> 70f: 6d insl (%dx),%es:(%edi) 710: 61 popa 711: 70 70 jo 783 <.debug_str+0x783> 713: 65 gs 714: 64 fs 715: 5f pop %edi 716: 61 popa 717: 72 65 jb 77e <.debug_str+0x77e> 719: 61 popa 71a: 00 64 6f 6e add %ah,0x6e(%edi,%ebp,2) 71e: 65 gs 71f: 6c insb (%dx),%es:(%edi) 720: 69 73 74 00 76 6d 38 imul $0x386d7600,0x74(%ebx),%esi 727: 36 ss 728: 5f pop %edi 729: 73 74 jae 79f <.debug_str+0x79f> 72b: 72 75 jb 7a2 <.debug_str+0x7a2> 72d: 63 74 00 64 arpl %si,0x64(%eax,%eax,1) 731: 65 6e outsb %gs:(%esi),(%dx) 733: 74 72 je 7a7 <.debug_str+0x7a7> 735: 79 00 jns 737 <.debug_str+0x737> 737: 6c insb (%dx),%es:(%edi) 738: 61 popa 739: 73 74 jae 7af <.debug_str+0x7af> 73b: 5f pop %edi 73c: 72 61 jb 79f <.debug_str+0x79f> 73e: 6e outsb %ds:(%esi),(%dx) 73f: 00 5f 5f add %bl,0x5f(%edi) 742: 6b 65 72 6e imul $0x6e,0x72(%ebp),%esp 746: 65 gs 747: 6c insb (%dx),%es:(%edi) 748: 5f pop %edi 749: 73 69 jae 7b4 <.debug_str+0x7b4> 74b: 7a 65 jp 7b2 <.debug_str+0x7b2> 74d: 5f pop %edi 74e: 74 00 je 750 <.debug_str+0x750> 750: 6d insl (%dx),%es:(%edi) 751: 6d insl (%dx),%es:(%edi) 752: 61 popa 753: 70 5f jo 7b4 <.debug_str+0x7b4> 755: 73 69 jae 7c0 <.debug_str+0x7c0> 757: 7a 65 jp 7be <.debug_str+0x7be> 759: 00 73 69 add %dh,0x69(%ebx) 75c: 67 6e addr16 outsb %ds:(%si),(%dx) 75e: 61 popa 75f: 6c insb (%dx),%es:(%edi) 760: 5f pop %edi 761: 73 74 jae 7d7 <.debug_str+0x7d7> 763: 72 75 jb 7da <.debug_str+0x7da> 765: 63 74 00 6d arpl %si,0x6d(%eax,%eax,1) 769: 6b 6f 62 6a imul $0x6a,0x62(%edi),%ebp 76d: 00 74 61 73 add %dh,0x73(%ecx) 771: 6b 5f 73 69 imul $0x69,0x73(%edi),%ebx 775: 7a 65 jp 7dc <.debug_str+0x7dc> 777: 00 70 72 add %dh,0x72(%eax) 77a: 65 gs 77b: 76 69 jbe 7e6 <.debug_str+0x7e6> 77d: 6f outsl %ds:(%esi),(%dx) 77e: 75 73 jne 7f3 <.debug_str+0x7f3> 780: 5f pop %edi 781: 65 gs 782: 73 70 jae 7f4 <.debug_str+0x7f4> 784: 00 61 63 add %ah,0x63(%ecx) 787: 70 69 jo 7f2 <.debug_str+0x7f2> 789: 5f pop %edi 78a: 68 74 00 5f 73 push $0x735f0074 78f: 69 67 63 68 6c 64 00 imul $0x646c68,0x63(%edi),%esp 796: 61 popa 797: 72 67 jb 800 <.debug_str+0x800> 799: 5f pop %edi 79a: 65 6e outsb %gs:(%esi),(%dx) 79c: 64 00 5f 5f add %bl,%fs:0x5f(%edi) 7a0: 65 gs 7a1: 73 68 jae 80b <.debug_str+0x80b> 7a3: 00 6d 61 add %ch,0x61(%ebp) 7a6: 73 6b jae 813 <.debug_str+0x813> 7a8: 00 70 69 add %dh,0x69(%eax) 7ab: 5f pop %edi 7ac: 6c insb (%dx),%es:(%edi) 7ad: 6f outsl %ds:(%esi),(%dx) 7ae: 63 6b 00 arpl %bp,0x0(%ebx) 7b1: 69 6e 74 5f 64 65 73 imul $0x7365645f,0x74(%esi),%ebp 7b8: 74 5f je 819 <.debug_str+0x819> 7ba: 6d insl (%dx),%es:(%edi) 7bb: 6f outsl %ds:(%esi),(%dx) 7bc: 64 65 00 72 65 add %dh,%fs:%gs:0x65(%edx) 7c1: 76 65 jbe 828 <.debug_str+0x828> 7c3: 63 74 6f 72 arpl %si,0x72(%edi,%ebp,2) 7c7: 65 gs 7c8: 64 fs 7c9: 5f pop %edi 7ca: 73 74 jae 840 <.debug_str+0x840> 7cc: 72 75 jb 843 <.debug_str+0x843> 7ce: 63 74 00 73 arpl %si,0x73(%eax,%eax,1) 7d2: 69 67 61 63 74 69 6f imul $0x6f697463,0x61(%edi),%esp 7d9: 6e outsb %ds:(%esi),(%dx) 7da: 00 6b 73 add %ch,0x73(%ebx) 7dd: 65 gs 7de: 74 00 je 7e0 <.debug_str+0x7e0> 7e0: 73 65 jae 847 <.debug_str+0x847> 7e2: 6d insl (%dx),%es:(%edi) 7e3: 5f pop %edi 7e4: 75 6e jne 854 <.debug_str+0x854> 7e6: 64 6f outsl %fs:(%esi),(%dx) 7e8: 5f pop %edi 7e9: 6c insb (%dx),%es:(%edi) 7ea: 69 73 74 00 73 65 6d imul $0x6d657300,0x74(%ebx),%esi 7f1: 61 popa 7f2: 70 68 jo 85c <.debug_str+0x85c> 7f4: 6f outsl %ds:(%esi),(%dx) 7f5: 72 65 jb 85c <.debug_str+0x85c> 7f7: 00 73 75 add %dh,0x75(%ebx) 7fa: 62 73 79 bound %esi,0x79(%ebx) 7fd: 73 74 jae 873 <.debug_str+0x873> 7ff: 65 gs 800: 6d insl (%dx),%es:(%edi) 801: 00 68 72 add %ch,0x72(%eax) 804: 74 69 je 86f <.debug_str+0x86f> 806: 6d insl (%dx),%es:(%edi) 807: 65 gs 808: 72 00 jb 80a <.debug_str+0x80a> 80a: 72 65 jb 871 <.debug_str+0x871> 80c: 61 popa 80d: 6c insb (%dx),%es:(%edi) 80e: 5f pop %edi 80f: 70 61 jo 872 <.debug_str+0x872> 811: 72 65 jb 878 <.debug_str+0x878> 813: 6e outsb %ds:(%esi),(%dx) 814: 74 00 je 816 <.debug_str+0x816> 816: 6e outsb %ds:(%esi),(%dx) 817: 6f outsl %ds:(%esi),(%dx) 818: 64 fs 819: 65 gs 81a: 5f pop %edi 81b: 6d insl (%dx),%es:(%edi) 81c: 65 gs 81d: 6d insl (%dx),%es:(%edi) 81e: 5f pop %edi 81f: 6d insl (%dx),%es:(%edi) 820: 61 popa 821: 70 00 jo 823 <.debug_str+0x823> 823: 6c insb (%dx),%es:(%edi) 824: 6f outsl %ds:(%esi),(%dx) 825: 61 popa 826: 64 fs 827: 5f pop %edi 828: 77 65 ja 88f <.debug_str+0x88f> 82a: 69 67 68 74 00 63 6f imul $0x6f630074,0x68(%edi),%esp 831: 72 65 jb 898 <.debug_str+0x898> 833: 5f pop %edi 834: 77 61 ja 897 <.debug_str+0x897> 836: 69 74 65 72 73 00 73 imul $0x72730073,0x72(%ebp),%esi 83d: 72 83e: 63 76 65 arpl %si,0x65(%esi) 841: 72 73 jb 8b6 <.debug_str+0x8b6> 843: 69 6f 6e 00 58 67 74 imul $0x74675800,0x6e(%edi),%ebp 84a: 5f pop %edi 84b: 64 fs 84c: 65 gs 84d: 73 63 jae 8b2 <.debug_str+0x8b2> 84f: 5f pop %edi 850: 73 74 jae 8c6 <.debug_str+0x8c6> 852: 72 75 jb 8c9 <.debug_str+0x8c9> 854: 63 74 00 5f arpl %si,0x5f(%eax,%eax,1) 858: 75 69 jne 8c3 <.debug_str+0x8c3> 85a: 64 00 64 65 66 add %ah,%fs:0x66(%ebp) 85f: 61 popa 860: 75 6c jne 8ce <.debug_str+0x8ce> 862: 74 5f je 8c3 <.debug_str+0x8c3> 864: 6c insb (%dx),%es:(%edi) 865: 64 fs 866: 74 00 je 868 <.debug_str+0x868> 868: 5f pop %edi 869: 74 69 je 8d4 <.debug_str+0x8d4> 86b: 6d insl (%dx),%es:(%edi) 86c: 65 gs 86d: 72 00 jb 86f <.debug_str+0x86f> 86f: 67 72 6f addr16 jb 8e1 <.debug_str+0x8e1> 872: 75 70 jne 8e4 <.debug_str+0x8e4> 874: 5f pop %edi 875: 6c insb (%dx),%es:(%edi) 876: 65 gs 877: 61 popa 878: 64 fs 879: 65 gs 87a: 72 00 jb 87c <.debug_str+0x87c> 87c: 5f pop %edi 87d: 5f pop %edi 87e: 5f pop %edi 87f: 65 62 78 00 bound %edi,%gs:0x0(%eax) 883: 73 61 jae 8e6 <.debug_str+0x8e6> 885: 76 65 jbe 8ec <.debug_str+0x8ec> 887: 64 fs 888: 5f pop %edi 889: 73 69 jae 8f4 <.debug_str+0x8f4> 88b: 67 6d addr16 insl (%dx),%es:(%di) 88d: 61 popa 88e: 73 6b jae 8fb <.debug_str+0x8fb> 890: 00 78 38 add %bh,0x38(%eax) 893: 36 ss 894: 5f pop %edi 895: 63 61 63 arpl %sp,0x63(%ecx) 898: 68 65 5f 61 6c push $0x6c615f65 89d: 69 67 6e 6d 65 6e 74 imul $0x746e656d,0x6e(%edi),%esp 8a4: 00 73 69 add %dh,0x69(%ebx) 8a7: 7a 65 jp 90e <.debug_str+0x90e> 8a9: 00 73 61 add %dh,0x61(%ebx) 8ac: 5f pop %edi 8ad: 72 65 jb 914 <.debug_str+0x914> 8af: 73 74 jae 925 <.debug_str+0x925> 8b1: 6f outsl %ds:(%esi),(%dx) 8b2: 72 65 jb 919 <.debug_str+0x919> 8b4: 72 00 jb 8b6 <.debug_str+0x8b6> 8b6: 5f pop %edi 8b7: 5f pop %edi 8b8: 70 65 jo 91f <.debug_str+0x91f> 8ba: 72 5f jb 91b <.debug_str+0x91b> 8bc: 63 70 75 arpl %si,0x75(%eax) 8bf: 5f pop %edi 8c0: 6f outsl %ds:(%esi),(%dx) 8c1: 66 data16 8c2: 66 data16 8c3: 73 65 jae 92a <.debug_str+0x92a> 8c5: 74 00 je 8c7 <.debug_str+0x8c7> 8c7: 62 6f 6f bound %ebp,0x6f(%edi) 8ca: 74 6d je 939 <.debug_str+0x939> 8cc: 65 gs 8cd: 6d insl (%dx),%es:(%edi) 8ce: 5f pop %edi 8cf: 64 fs 8d0: 61 popa 8d1: 74 61 je 934 <.debug_str+0x934> 8d3: 00 70 64 add %dh,0x64(%eax) 8d6: 65 gs 8d7: 61 popa 8d8: 74 68 je 942 <.debug_str+0x942> 8da: 5f pop %edi 8db: 73 69 jae 946 <.debug_str+0x946> 8dd: 67 6e addr16 outsb %ds:(%si),(%dx) 8df: 61 popa 8e0: 6c insb (%dx),%es:(%edi) 8e1: 00 65 6e add %ah,0x6e(%ebp) 8e4: 76 5f jbe 945 <.debug_str+0x945> 8e6: 73 74 jae 95c <.debug_str+0x95c> 8e8: 61 popa 8e9: 72 74 jb 95f <.debug_str+0x95f> 8eb: 00 61 63 add %ah,0x63(%ecx) 8ee: 5f pop %edi 8ef: 6d insl (%dx),%es:(%edi) 8f0: 61 popa 8f1: 6a 66 push $0x66 8f3: 6c insb (%dx),%es:(%edi) 8f4: 74 00 je 8f6 <.debug_str+0x8f6> 8f6: 70 65 jo 95d <.debug_str+0x95d> 8f8: 72 5f jb 959 <.debug_str+0x959> 8fa: 63 70 75 arpl %si,0x75(%eax) 8fd: 5f pop %edi 8fe: 70 61 jo 961 <.debug_str+0x961> 900: 67 addr16 901: 65 gs 902: 73 65 jae 969 <.debug_str+0x969> 904: 74 00 je 906 <.debug_str+0x906> 906: 6e outsb %ds:(%esi),(%dx) 907: 72 5f jb 968 <.debug_str+0x968> 909: 7a 6f jp 97a <.debug_str+0x97a> 90b: 6e outsb %ds:(%esi),(%dx) 90c: 65 gs 90d: 73 00 jae 90f <.debug_str+0x90f> 90f: 6c insb (%dx),%es:(%edi) 910: 6f outsl %ds:(%esi),(%dx) 911: 6e outsb %ds:(%esi),(%dx) 912: 67 20 69 6e addr16 and %ch,110(%bx,%di) 916: 74 00 je 918 <.debug_str+0x918> 918: 6c insb (%dx),%es:(%edi) 919: 61 popa 91a: 73 74 jae 990 <.debug_str+0x990> 91c: 5f pop %edi 91d: 73 69 jae 988 <.debug_str+0x988> 91f: 67 69 6e 66 6f 00 74 addr16 imul $0x7274006f,102(%bp),%ebp 926: 72 927: 61 popa 928: 6e outsb %ds:(%esi),(%dx) 929: 73 5f jae 98a <.debug_str+0x98a> 92b: 72 65 jb 992 <.debug_str+0x992> 92d: 73 65 jae 994 <.debug_str+0x994> 92f: 72 76 jb 9a7 <.debug_str+0x9a7> 931: 65 64 00 66 72 add %ah,%fs:%gs:0x72(%esi) 936: 65 65 00 73 65 add %dh,%gs:0x65(%ebx) 93b: 63 74 5f 61 arpl %si,0x61(%edi,%ebx,2) 93f: 74 74 je 9b5 <.debug_str+0x9b5> 941: 72 73 jb 9b6 <.debug_str+0x9b6> 943: 00 69 6e add %ch,0x6e(%ecx) 946: 64 fs 947: 65 gs 948: 78 00 js 94a <.debug_str+0x94a> 94a: 72 65 jb 9b1 <.debug_str+0x9b1> 94c: 67 73 00 addr16 jae 94f <.debug_str+0x94f> 94f: 6d insl (%dx),%es:(%edi) 950: 6f outsl %ds:(%esi),(%dx) 951: 64 fs 952: 75 6c jne 9c0 <.debug_str+0x9c0> 954: 65 gs 955: 5f pop %edi 956: 73 65 jae 9bd <.debug_str+0x9bd> 958: 63 74 5f 61 arpl %si,0x61(%edi,%ebx,2) 95c: 74 74 je 9d2 <.debug_str+0x9d2> 95e: 72 00 jb 960 <.debug_str+0x960> 960: 74 65 je 9c7 <.debug_str+0x9c7> 962: 73 74 jae 9d8 <.debug_str+0x9d8> 964: 00 72 6f add %dh,0x6f(%edx) 967: 62 75 73 bound %esi,0x73(%ebp) 96a: 74 5f je 9cb <.debug_str+0x9cb> 96c: 6c insb (%dx),%es:(%edi) 96d: 69 73 74 00 6d 70 63 imul $0x63706d00,0x74(%ebx),%esi 974: 5f pop %edi 975: 73 69 jae 9e0 <.debug_str+0x9e0> 977: 67 6e addr16 outsb %ds:(%si),(%dx) 979: 61 popa 97a: 74 75 je 9f1 <.debug_str+0x9f1> 97c: 72 65 jb 9e3 <.debug_str+0x9e3> 97e: 00 69 74 add %ch,0x74(%ecx) 981: 5f pop %edi 982: 70 72 jo 9f6 <.debug_str+0x9f6> 984: 6f outsl %ds:(%esi),(%dx) 985: 66 5f pop %di 987: 65 gs 988: 78 70 js 9fa <.debug_str+0x9fa> 98a: 69 72 65 73 00 70 61 imul $0x61700073,0x65(%edx),%esi 991: 73 73 jae a06 <.debug_str+0xa06> 993: 65 gs 994: 64 fs 995: 5f pop %edi 996: 71 75 jno a0d <.debug_str+0xa0d> 998: 69 65 73 63 00 78 38 imul $0x38780063,0x73(%ebp),%esp 99f: 36 ss 9a0: 5f pop %edi 9a1: 6d insl (%dx),%es:(%edi) 9a2: 61 popa 9a3: 73 6b jae a10 <.debug_str+0xa10> 9a5: 00 6b 73 add %ch,0x73(%ebx) 9a8: 77 61 ja a0b <.debug_str+0xa0b> 9aa: 70 64 jo a10 <.debug_str+0xa10> 9ac: 00 69 64 add %ch,0x64(%ecx) 9af: 5f pop %edi 9b0: 6e outsb %ds:(%esi),(%dx) 9b1: 65 gs 9b2: 78 74 js a28 <.debug_str+0xa28> 9b4: 00 63 6e add %ah,0x6e(%ebx) 9b7: 76 63 jbe a1c <.debug_str+0xa1c> 9b9: 73 77 jae a32 <.debug_str+0xa32> 9bb: 00 73 69 add %dh,0x69(%ebx) 9be: 67 69 6e 66 6f 00 6d addr16 imul $0x616d006f,102(%bp),%ebp 9c5: 61 9c6: 70 5f jo a27 <.debug_str+0xa27> 9c8: 63 6f 75 arpl %bp,0x75(%edi) 9cb: 6e outsb %ds:(%esi),(%dx) 9cc: 74 00 je 9ce <.debug_str+0x9ce> 9ce: 63 61 70 arpl %sp,0x70(%ecx) 9d1: 5f pop %edi 9d2: 70 65 jo a39 <.debug_str+0xa39> 9d4: 72 6d jb a43 <.debug_str+0xa43> 9d6: 69 74 74 65 64 00 70 imul $0x68700064,0x65(%esp,%esi,2),%esi 9dd: 68 9de: 79 73 jns a53 <.debug_str+0xa53> 9e0: 5f pop %edi 9e1: 70 6b jo a4e <.debug_str+0xa4e> 9e3: 67 5f addr16 pop %edi 9e5: 69 64 00 5f 5f 5f 65 imul $0x63655f5f,0x5f(%eax,%eax,1),%esp 9ec: 63 9ed: 78 00 js 9ef <.debug_str+0x9ef> 9ef: 67 addr16 9f0: 65 gs 9f1: 74 5f je a52 <.debug_str+0xa52> 9f3: 74 69 je a5e <.debug_str+0xa5e> 9f5: 6d insl (%dx),%es:(%edi) 9f6: 65 00 65 78 add %ah,%gs:0x78(%ebp) 9fa: 69 74 5f 63 6f 64 65 imul $0x65646f,0x63(%edi,%ebx,2),%esi a01: 00 a02: 5f pop %edi a03: 5f pop %edi a04: 6b 65 72 6e imul $0x6e,0x72(%ebp),%esp a08: 65 gs a09: 6c insb (%dx),%es:(%edi) a0a: 5f pop %edi a0b: 75 69 jne a76 <.debug_str+0xa76> a0d: 64 33 32 xor %fs:(%edx),%esi a10: 5f pop %edi a11: 74 00 je a13 <.debug_str+0xa13> a13: 5f pop %edi a14: 6b 69 6c 6c imul $0x6c,0x6c(%ecx),%ebp a18: 00 72 69 add %dh,0x69(%edx) a1b: 6e outsb %ds:(%esi),(%dx) a1c: 67 5f addr16 pop %edi a1e: 69 6e 66 6f 00 70 72 imul $0x7270006f,0x66(%esi),%ebp a25: 69 76 61 74 65 00 70 imul $0x70006574,0x61(%esi),%esi a2c: 65 6e outsb %gs:(%esi),(%dx) a2e: 64 69 6e 67 00 6f 77 imul $0x6e776f00,%fs:0x67(%esi),%ebp a35: 6e a36: 65 gs a37: 72 5f jb a98 <.debug_str+0xa98> a39: 63 70 75 arpl %si,0x75(%eax) a3c: 00 6d 6d add %ch,0x6d(%ebp) a3f: 5f pop %edi a40: 73 74 jae ab6 <.debug_str+0xab6> a42: 72 75 jb ab9 <.debug_str+0xab9> a44: 63 74 00 5f arpl %si,0x5f(%eax,%eax,1) a48: 61 popa a49: 6e outsb %ds:(%esi),(%dx) a4a: 6f outsl %ds:(%esi),(%dx) a4b: 6e outsb %ds:(%esi),(%dx) a4c: 5f pop %edi a4d: 72 73 jb ac2 <.debug_str+0xac2> a4f: 73 00 jae a51 <.debug_str+0xa51> a51: 72 6c jb abf <.debug_str+0xabf> a53: 69 6d 5f 6d 61 78 00 imul $0x78616d,0x5f(%ebp),%ebp a5a: 62 6f 6f bound %ebp,0x6f(%edi) a5d: 74 5f je abe <.debug_str+0xabe> a5f: 63 70 75 arpl %si,0x75(%eax) a62: 5f pop %edi a63: 64 fs a64: 61 popa a65: 74 61 je ac8 <.debug_str+0xac8> a67: 00 6d 69 add %ch,0x69(%ebp) a6a: 6e outsb %ds:(%esi),(%dx) a6b: 5f pop %edi a6c: 66 data16 a6d: 6c insb (%dx),%es:(%edi) a6e: 74 00 je a70 <.debug_str+0xa70> a70: 61 popa a71: 74 74 je ae7 <.debug_str+0xae7> a73: 72 00 jb a75 <.debug_str+0xa75> a75: 70 68 jo adf <.debug_str+0xadf> a77: 79 73 jns aec <.debug_str+0xaec> a79: 5f pop %edi a7a: 70 72 jo aee <.debug_str+0xaee> a7c: 6f outsl %ds:(%esi),(%dx) a7d: 63 5f 69 arpl %bx,0x69(%edi) a80: 64 00 5f 5f add %bl,%fs:0x5f(%edi) a84: 5f pop %edi a85: 65 gs a86: 73 69 jae af1 <.debug_str+0xaf1> a88: 00 5f 5f add %bl,0x5f(%edi) a8b: 5f pop %edi a8c: 65 gs a8d: 73 70 jae aff <.debug_str+0xaff> a8f: 00 72 6f add %dh,0x6f(%edx) a92: 6f outsl %ds:(%esi),(%dx) a93: 74 6d je b02 <.debug_str+0xb02> a95: 6e outsb %ds:(%esi),(%dx) a96: 74 00 je a98 <.debug_str+0xa98> a98: 6e outsb %ds:(%esi),(%dx) a99: 69 76 63 73 77 00 5f imul $0x5f007773,0x63(%esi),%esi aa0: 5f pop %edi aa1: 75 38 jne adb <.debug_str+0xadb> aa3: 00 6d 70 add %ch,0x70(%ebp) aa6: 63 5f 63 arpl %bx,0x63(%edi) aa9: 6f outsl %ds:(%esi),(%dx) aaa: 6e outsb %ds:(%esi),(%dx) aab: 66 69 67 5f 69 6f imul $0x6f69,0x5f(%edi),%sp ab1: 61 popa ab2: 70 69 jo b1d <.debug_str+0xb1d> ab4: 63 00 arpl %ax,(%eax) ab6: 74 69 je b21 <.debug_str+0xb21> ab8: 6d insl (%dx),%es:(%edi) ab9: 65 gs aba: 72 5f jb b1b <.debug_str+0xb1b> abc: 6c insb (%dx),%es:(%edi) abd: 69 73 74 00 5f 5f 6b imul $0x6b5f5f00,0x74(%ebx),%esi ac4: 65 gs ac5: 72 6e jb b35 <.debug_str+0xb35> ac7: 65 gs ac8: 6c insb (%dx),%es:(%edi) ac9: 5f pop %edi aca: 70 69 jo b35 <.debug_str+0xb35> acc: 64 fs acd: 5f pop %edi ace: 74 00 je ad0 <.debug_str+0xad0> ad0: 73 79 jae b4b <.debug_str+0xb4b> ad2: 73 66 jae b3a <.debug_str+0xb3a> ad4: 73 5f jae b35 <.debug_str+0xb35> ad6: 6f outsl %ds:(%esi),(%dx) ad7: 70 73 jo b4c <.debug_str+0xb4c> ad9: 00 5f 5f add %bl,0x5f(%edi) adc: 5f pop %edi add: 65 64 69 00 75 69 64 imul $0x5f646975,%fs:%gs:(%eax),%eax ae4: 5f ae5: 74 00 je ae7 <.debug_str+0xae7> ae7: 63 73 5f arpl %si,0x5f(%ebx) aea: 64 fs aeb: 6d insl (%dx),%es:(%edi) aec: 61 popa aed: 63 61 63 arpl %sp,0x63(%ecx) af0: 68 65 70 00 66 push $0x66007065 af5: 72 65 jb b5c <.debug_str+0xb5c> af7: 65 gs af8: 5f pop %edi af9: 61 popa afa: 72 65 jb b61 <.debug_str+0xb61> afc: 61 popa afd: 5f pop %edi afe: 63 61 63 arpl %sp,0x63(%ecx) b01: 68 65 00 70 6f push $0x6f700065 b06: 73 69 jae b71 <.debug_str+0xb71> b08: 78 5f js b69 <.debug_str+0xb69> b0a: 74 69 je b75 <.debug_str+0xb75> b0c: 6d insl (%dx),%es:(%edi) b0d: 65 gs b0e: 72 73 jb b83 <.debug_str+0xb83> b10: 00 63 6f add %ah,0x6f(%ebx) b13: 72 65 jb b7a <.debug_str+0xb7a> b15: 5f pop %edi b16: 74 65 je b7d <.debug_str+0xb7d> b18: 78 74 js b8e <.debug_str+0xb8e> b1a: 5f pop %edi b1b: 73 69 jae b86 <.debug_str+0xb86> b1d: 7a 65 jp b84 <.debug_str+0xb84> b1f: 00 6d 70 add %ch,0x70(%ebp) b22: 63 5f 61 arpl %bx,0x61(%edi) b25: 70 69 jo b90 <.debug_str+0xb90> b27: 63 69 64 arpl %bp,0x64(%ecx) b2a: 00 66 72 add %ah,0x72(%esi) b2d: 65 gs b2e: 65 gs b2f: 5f pop %edi b30: 70 61 jo b93 <.debug_str+0xb93> b32: 67 addr16 b33: 65 gs b34: 73 00 jae b36 <.debug_str+0xb36> b36: 72 77 jb baf <.debug_str+0xbaf> b38: 73 65 jae b9f <.debug_str+0xb9f> b3a: 6d insl (%dx),%es:(%edi) b3b: 00 73 69 add %dh,0x69(%ebx) b3e: 76 61 jbe ba1 <.debug_str+0xba1> b40: 6c insb (%dx),%es:(%edi) b41: 5f pop %edi b42: 70 74 jo bb8 <.debug_str+0xbb8> b44: 72 00 jb b46 <.debug_str+0xb46> b46: 74 72 je bba <.debug_str+0xbba> b48: 61 popa b49: 6e outsb %ds:(%esi),(%dx) b4a: 73 5f jae bab <.debug_str+0xbab> b4c: 74 79 je bc7 <.debug_str+0xbc7> b4e: 70 65 jo bb5 <.debug_str+0xbb5> b50: 00 74 69 6d add %dh,0x6d(%ecx,%ebp,2) b54: 65 gs b55: 72 5f jb bb6 <.debug_str+0xbb6> b57: 74 00 je b59 <.debug_str+0xb59> b59: 62 61 74 bound %esp,0x74(%ecx) b5c: 63 68 00 arpl %bp,0x0(%eax) b5f: 70 72 jo bd3 <.debug_str+0xbd3> b61: 6f outsl %ds:(%esi),(%dx) b62: 62 65 00 bound %esp,0x0(%ebp) b65: 5f pop %edi b66: 5f pop %edi b67: 66 data16 b68: 73 68 jae bd2 <.debug_str+0xbd2> b6a: 00 66 73 add %ah,0x73(%esi) b6d: 5f pop %edi b6e: 65 gs b6f: 78 63 js bd4 <.debug_str+0xbd4> b71: 6c insb (%dx),%es:(%edi) b72: 00 73 6b add %dh,0x6b(%ebx) b75: 69 70 5f 69 6f 61 70 imul $0x70616f69,0x5f(%eax),%esi b7c: 69 63 5f 73 65 74 75 imul $0x75746573,0x5f(%ebx),%esp b83: 70 00 jo b85 <.debug_str+0xb85> b85: 70 61 jo be8 <.debug_str+0xbe8> b87: 72 65 jb bee <.debug_str+0xbee> b89: 6e outsb %ds:(%esi),(%dx) b8a: 74 5f je beb <.debug_str+0xbeb> b8c: 65 gs b8d: 78 65 js bf4 <.debug_str+0xbf4> b8f: 63 5f 69 arpl %bx,0x69(%edi) b92: 64 00 61 63 add %ah,%fs:0x63(%ecx) b96: 5f pop %edi b97: 73 74 jae c0d <.debug_str+0xc0d> b99: 69 6d 65 00 77 61 69 imul $0x69617700,0x65(%ebp),%ebp ba0: 74 00 je ba2 <.debug_str+0xba2> ba2: 6c insb (%dx),%es:(%edi) ba3: 6f outsl %ds:(%esi),(%dx) ba4: 63 6b 5f arpl %bp,0x5f(%ebx) ba7: 63 6c 61 73 arpl %bp,0x73(%ecx) bab: 73 5f jae c0c <.debug_str+0xc0c> bad: 6b 65 79 00 imul $0x0,0x79(%ebp),%esp bb1: 73 75 jae c28 <.debug_str+0xc28> bb3: 69 64 00 6e 6f 64 65 imul $0x5f65646f,0x6e(%eax,%eax,1),%esp bba: 5f bbb: 69 64 00 70 67 72 70 imul $0x707267,0x70(%eax,%eax,1),%esp bc2: 00 bc3: 70 74 jo c39 <.debug_str+0xc39> bc5: 72 61 jb c28 <.debug_str+0xc28> bc7: 63 65 00 arpl %sp,0x0(%ebp) bca: 6d insl (%dx),%es:(%edi) bcb: 6d insl (%dx),%es:(%edi) bcc: 5f pop %edi bcd: 63 6f 75 arpl %bp,0x75(%edi) bd0: 6e outsb %ds:(%esi),(%dx) bd1: 74 65 je c38 <.debug_str+0xc38> bd3: 72 5f jb c34 <.debug_str+0xc34> bd5: 74 00 je bd7 <.debug_str+0xbd7> bd7: 69 6e 6f 74 69 66 79 imul $0x79666974,0x6f(%esi),%ebp bde: 5f pop %edi bdf: 77 61 ja c42 <.debug_str+0xc42> be1: 74 63 je c46 <.debug_str+0xc46> be3: 68 65 73 00 6d push $0x6d007365 be8: 6f outsl %ds:(%esi),(%dx) be9: 64 65 00 66 75 add %ah,%fs:%gs:0x75(%esi) bee: 74 65 je c55 <.debug_str+0xc55> bf0: 78 5f js c51 <.debug_str+0xc51> bf2: 6f outsl %ds:(%esi),(%dx) bf3: 66 data16 bf4: 66 data16 bf5: 73 65 jae c5c <.debug_str+0xc5c> bf7: 74 00 je bf9 <.debug_str+0xbf9> bf9: 6e outsb %ds:(%esi),(%dx) bfa: 75 6d jne c69 <.debug_str+0xc69> bfc: 5f pop %edi bfd: 75 6e jne c6d <.debug_str+0xc6d> bff: 75 73 jne c74 <.debug_str+0xc74> c01: 65 gs c02: 64 fs c03: 5f pop %edi c04: 73 79 jae c7f <.debug_str+0xc7f> c06: 6d insl (%dx),%es:(%edi) c07: 73 00 jae c09 <.debug_str+0xc09> c09: 6d insl (%dx),%es:(%edi) c0a: 70 63 jo c6f <.debug_str+0xc6f> c0c: 5f pop %edi c0d: 66 data16 c0e: 65 gs c0f: 61 popa c10: 74 75 je c87 <.debug_str+0xc87> c12: 72 65 jb c79 <.debug_str+0xc79> c14: 66 data16 c15: 6c insb (%dx),%es:(%edi) c16: 61 popa c17: 67 00 61 63 addr16 add %ah,99(%bx,%di) c1b: 74 69 je c86 <.debug_str+0xc86> c1d: 76 65 jbe c84 <.debug_str+0xc84> c1f: 5f pop %edi c20: 72 65 jb c87 <.debug_str+0xc87> c22: 71 73 jno c97 <.debug_str+0xc97> c24: 00 69 74 add %ch,0x74(%ecx) c27: 5f pop %edi c28: 73 63 jae c8d <.debug_str+0xc8d> c2a: 68 65 64 5f 65 push $0x655f6465 c2f: 78 70 js ca1 <.debug_str+0xca1> c31: 69 72 65 73 00 66 78 imul $0x78660073,0x65(%edx),%esi c38: 73 61 jae c9b <.debug_str+0xc9b> c3a: 76 65 jbe ca1 <.debug_str+0xca1> c3c: 00 73 74 add %dh,0x74(%ebx) c3f: 69 6d 65 00 73 69 67 imul $0x67697300,0x65(%ebp),%ebp c46: 76 61 jbe ca9 <.debug_str+0xca9> c48: 6c insb (%dx),%es:(%edi) c49: 5f pop %edi c4a: 74 00 je c4c <.debug_str+0xc4c> c4c: 78 38 js c86 <.debug_str+0xc86> c4e: 36 ss c4f: 5f pop %edi c50: 76 65 jbe cb7 <.debug_str+0xcb7> c52: 6e outsb %ds:(%esi),(%dx) c53: 64 6f outsl %fs:(%esi),(%dx) c55: 72 00 jb c57 <.debug_str+0xc57> c57: 69 6e 66 6f 00 72 65 imul $0x6572006f,0x66(%esi),%ebp c5e: 71 75 jno cd5 <.debug_str+0xcd5> c60: 65 gs c61: 73 74 jae cd7 <.debug_str+0xcd7> c63: 5f pop %edi c64: 6b 65 79 5f imul $0x5f,0x79(%ebp),%esp c68: 61 popa c69: 75 74 jne cdf <.debug_str+0xcdf> c6b: 68 00 61 6c 74 push $0x746c6100 c70: 72 6f jb ce1 <.debug_str+0xce1> c72: 6f outsl %ds:(%esi),(%dx) c73: 74 6d je ce2 <.debug_str+0xce2> c75: 6e outsb %ds:(%esi),(%dx) c76: 74 00 je c78 <.debug_str+0xc78> c78: 61 popa c79: 74 6f je cea <.debug_str+0xcea> c7b: 6d insl (%dx),%es:(%edi) c7c: 69 63 5f 74 00 62 61 imul $0x61620074,0x5f(%ebx),%esp c83: 72 72 jb cf7 <.debug_str+0xcf7> c85: 69 65 72 00 74 69 6d imul $0x6d697400,0x72(%ebp),%esp c8c: 65 gs c8d: 5f pop %edi c8e: 61 popa c8f: 64 fs c90: 6a 75 push $0x75 c92: 73 74 jae d08 <.debug_str+0xd08> c94: 00 6d 6d add %ch,0x6d(%ebp) c97: 61 popa c98: 70 5f jo cf9 <.debug_str+0xcf9> c9a: 62 61 73 bound %esp,0x73(%ecx) c9d: 65 00 75 6e add %dh,%gs:0x6e(%ebp) ca1: 73 69 jae d0c <.debug_str+0xd0c> ca3: 67 6e addr16 outsb %ds:(%si),(%dx) ca5: 65 64 20 63 68 and %ah,%fs:%gs:0x68(%ebx) caa: 61 popa cab: 72 00 jb cad <.debug_str+0xcad> cad: 6b 6f 62 6a imul $0x6a,0x62(%edi),%ebp cb1: 00 77 61 add %dh,0x61(%edi) cb4: 69 74 5f 6c 69 73 74 imul $0x747369,0x6c(%edi,%ebx,2),%esi cbb: 00 cbc: 6d insl (%dx),%es:(%edi) cbd: 6f outsl %ds:(%esi),(%dx) cbe: 64 fs cbf: 75 6c jne d2d <.debug_str+0xd2d> cc1: 65 gs cc2: 5f pop %edi cc3: 69 6e 69 74 00 65 6e imul $0x6e650074,0x69(%esi),%ebp cca: 64 fs ccb: 5f pop %edi ccc: 64 fs ccd: 61 popa cce: 74 61 je d31 <.debug_str+0xd31> cd0: 00 72 77 add %dh,0x77(%edx) cd3: 6c insb (%dx),%es:(%edi) cd4: 6f outsl %ds:(%esi),(%dx) cd5: 63 6b 5f arpl %bp,0x5f(%ebx) cd8: 74 00 je cda <.debug_str+0xcda> cda: 73 74 jae d50 <.debug_str+0xd50> cdc: 5f pop %edi cdd: 73 70 jae d4f <.debug_str+0xd4f> cdf: 61 popa ce0: 63 65 00 arpl %sp,0x0(%ebp) ce3: 6d insl (%dx),%es:(%edi) ce4: 6d insl (%dx),%es:(%edi) ce5: 5f pop %edi ce6: 63 6f 75 arpl %bp,0x75(%edi) ce9: 6e outsb %ds:(%esi),(%dx) cea: 74 00 je cec <.debug_str+0xcec> cec: 63 73 74 arpl %si,0x74(%ebx) cef: 69 6d 65 00 63 73 5f imul $0x5f736300,0x65(%ebp),%ebp cf6: 73 69 jae d61 <.debug_str+0xd61> cf8: 7a 65 jp d5f <.debug_str+0xd5f> cfa: 00 73 6f add %dh,0x6f(%ebx) cfd: 66 data16 cfe: 74 00 je d00 <.debug_str+0xd00> d00: 70 61 jo d63 <.debug_str+0xd63> d02: 67 addr16 d03: 65 gs d04: 5f pop %edi d05: 74 61 je d68 <.debug_str+0xd68> d07: 62 6c 65 5f bound %ebp,0x5f(%ebp) d0b: 6c insb (%dx),%es:(%edi) d0c: 6f outsl %ds:(%esi),(%dx) d0d: 63 6b 00 arpl %bp,0x0(%ebx) d10: 72 6f jb d81 <.debug_str+0xd81> d12: 6f outsl %ds:(%esi),(%dx) d13: 74 00 je d15 <.debug_str+0xd15> d15: 75 6e jne d85 <.debug_str+0xd85> d17: 75 73 jne d8c <.debug_str+0xd8c> d19: 65 gs d1a: 64 fs d1b: 5f pop %edi d1c: 67 70 6c addr16 jo d8b <.debug_str+0xd8b> d1f: 5f pop %edi d20: 63 72 63 arpl %si,0x63(%edx) d23: 73 00 jae d25 <.debug_str+0xd25> d25: 73 69 jae d90 <.debug_str+0xd90> d27: 67 6c addr16 insb (%dx),%es:(%di) d29: 6f outsl %ds:(%esi),(%dx) d2a: 63 6b 00 arpl %bp,0x0(%ebx) d2d: 65 6e outsb %gs:(%esi),(%dx) d2f: 61 popa d30: 62 6c 65 5f bound %ebp,0x5f(%ebp) d34: 6c insb (%dx),%es:(%edi) d35: 6f outsl %ds:(%esi),(%dx) d36: 63 61 6c arpl %sp,0x6c(%ecx) d39: 5f pop %edi d3a: 61 popa d3b: 70 69 jo da6 <.debug_str+0xda6> d3d: 63 00 arpl %ax,(%eax) d3f: 63 6c 65 61 arpl %bp,0x61(%ebp) d43: 72 5f jb da4 <.debug_str+0xda4> d45: 63 68 69 arpl %bp,0x69(%eax) d48: 6c insb (%dx),%es:(%edi) d49: 64 fs d4a: 5f pop %edi d4b: 74 69 je db6 <.debug_str+0xdb6> d4d: 64 00 6c 61 73 add %ch,%fs:0x73(%ecx) d52: 74 5f je db3 <.debug_str+0xdb3> d54: 72 73 jb dc9 <.debug_str+0xdc9> d56: 5f pop %edi d57: 71 6c jno dc5 <.debug_str+0xdc5> d59: 65 6e outsb %gs:(%esi),(%dx) d5b: 00 69 74 add %ch,0x74(%ecx) d5e: 5f pop %edi d5f: 72 65 jb dc6 <.debug_str+0xdc6> d61: 61 popa d62: 6c insb (%dx),%es:(%edi) d63: 5f pop %edi d64: 69 6e 63 72 00 6d 70 imul $0x706d0072,0x63(%esi),%ebp d6b: 63 5f 6f arpl %bx,0x6f(%edi) d6e: 65 gs d6f: 6d insl (%dx),%es:(%edi) d70: 00 77 61 add %dh,0x61(%edi) d73: 69 74 5f 6c 6f 63 6b imul $0x6b636f,0x6c(%edi,%ebx,2),%esi d7a: 00 d7b: 45 inc %ebp d7c: 53 push %ebx d7d: 52 push %edx d7e: 5f pop %edi d7f: 44 inc %esp d80: 49 dec %ecx d81: 53 push %ebx d82: 41 inc %ecx d83: 42 inc %edx d84: 4c dec %esp d85: 45 inc %ebp d86: 00 5f 73 add %bl,0x73(%edi) d89: 74 61 je dec <.debug_str+0xdec> d8b: 74 75 je e02 <.debug_str+0xe02> d8d: 73 00 jae d8f <.debug_str+0xd8f> d8f: 6b 73 65 74 imul $0x74,0x65(%ebx),%esi d93: 5f pop %edi d94: 75 65 jne dfb <.debug_str+0xdfb> d96: 76 65 jbe dfd <.debug_str+0xdfd> d98: 6e outsb %ds:(%esi),(%dx) d99: 74 5f je dfa <.debug_str+0xdfa> d9b: 6f outsl %ds:(%esi),(%dx) d9c: 70 73 jo e11 <.debug_str+0xe11> d9e: 00 6d 6f add %ch,0x6f(%ebp) da1: 64 fs da2: 75 6c jne e10 <.debug_str+0xe10> da4: 65 gs da5: 5f pop %edi da6: 63 6f 72 arpl %bp,0x72(%edi) da9: 65 00 69 6e add %ch,%gs:0x6e(%ecx) dad: 69 74 00 68 69 67 68 imul $0x686769,0x68(%eax,%eax,1),%esi db4: 00 db5: 65 6e outsb %gs:(%esi),(%dx) db7: 76 5f jbe e18 <.debug_str+0xe18> db9: 65 6e outsb %gs:(%esi),(%dx) dbb: 64 00 73 74 add %dh,%fs:0x74(%ebx) dbf: 61 popa dc0: 74 5f je e21 <.debug_str+0xe21> dc2: 74 68 je e2c <.debug_str+0xe2c> dc4: 72 65 jb e2b <.debug_str+0xe2b> dc6: 73 68 jae e30 <.debug_str+0xe30> dc8: 6f outsl %ds:(%esi),(%dx) dc9: 6c insb (%dx),%es:(%edi) dca: 64 00 70 69 add %dh,%fs:0x69(%eax) dce: 5f pop %edi dcf: 73 74 jae e45 <.debug_str+0xe45> dd1: 61 popa dd2: 74 65 je e39 <.debug_str+0xe39> dd4: 5f pop %edi dd5: 6c insb (%dx),%es:(%edi) dd6: 69 73 74 00 5f 5f 5f imul $0x5f5f5f00,0x74(%ebx),%esi ddd: 64 fs dde: 73 00 jae de0 <.debug_str+0xde0> de0: 62 6f 6f bound %ebp,0x6f(%edi) de3: 74 65 je e4a <.debug_str+0xe4a> de5: 64 fs de6: 5f pop %edi de7: 63 6f 72 arpl %bp,0x72(%edi) dea: 65 gs deb: 73 00 jae ded <.debug_str+0xded> ded: 5f pop %edi dee: 5f pop %edi def: 5f pop %edi df0: 76 6d jbe e5f <.debug_str+0xe5f> df2: 38 36 cmp %dh,(%esi) df4: 5f pop %edi df5: 64 fs df6: 73 00 jae df8 <.debug_str+0xdf8> df8: 73 69 jae e63 <.debug_str+0xe63> dfa: 62 6c 69 6e bound %ebp,0x6e(%ecx,%ebp,2) dfe: 67 00 66 73 addr16 add %ah,115(%bp) e02: 5f pop %edi e03: 73 74 jae e79 <.debug_str+0xe79> e05: 72 75 jb e7c <.debug_str+0xe7c> e07: 63 74 00 63 arpl %si,0x63(%eax,%eax,1) e0b: 68 65 63 6b 5f push $0x5f6b6365 e10: 61 popa e11: 70 69 jo e7c <.debug_str+0xe7c> e13: 63 69 64 arpl %bp,0x64(%ecx) e16: 5f pop %edi e17: 70 72 jo e8b <.debug_str+0xe8b> e19: 65 gs e1a: 73 65 jae e81 <.debug_str+0xe81> e1c: 6e outsb %ds:(%esi),(%dx) e1d: 74 00 je e1f <.debug_str+0xe1f> e1f: 72 65 jb e86 <.debug_str+0xe86> e21: 63 6c 61 69 arpl %bp,0x69(%ecx) e25: 6d insl (%dx),%es:(%edi) e26: 5f pop %edi e27: 73 74 jae e9d <.debug_str+0xe9d> e29: 61 popa e2a: 74 65 je e91 <.debug_str+0xe91> e2c: 00 61 75 add %ah,0x75(%ecx) e2f: 64 69 74 5f 63 6f 6e imul $0x65746e6f,%fs:0x63(%edi,%ebx,2),%esi e36: 74 65 e38: 78 74 js eae <.debug_str+0xeae> e3a: 00 5f 70 add %bl,0x70(%edi) e3d: 61 popa e3e: 64 31 5f 00 xor %ebx,%fs:0x0(%edi) e42: 63 75 72 arpl %si,0x72(%ebp) e45: 72 5f jb ea6 <.debug_str+0xea6> e47: 74 69 je eb2 <.debug_str+0xeb2> e49: 6d insl (%dx),%es:(%edi) e4a: 65 gs e4b: 72 00 jb e4d <.debug_str+0xe4d> e4d: 73 65 jae eb4 <.debug_str+0xeb4> e4f: 74 75 je ec6 <.debug_str+0xec6> e51: 70 5f jo eb2 <.debug_str+0xeb2> e53: 70 6f jo ec4 <.debug_str+0xec4> e55: 72 74 jb ecb <.debug_str+0xecb> e57: 69 6f 5f 72 65 6d 61 imul $0x616d6572,0x5f(%edi),%ebp e5e: 70 00 jo e60 <.debug_str+0xe60> e60: 77 70 ja ed2 <.debug_str+0xed2> e62: 5f pop %edi e63: 77 6f ja ed4 <.debug_str+0xed4> e65: 72 6b jb ed2 <.debug_str+0xed2> e67: 73 5f jae ec8 <.debug_str+0xec8> e69: 6f outsl %ds:(%esi),(%dx) e6a: 6b 00 6c imul $0x6c,(%eax),%eax e6d: 69 73 74 5f 6f 70 5f imul $0x5f706f5f,0x74(%ebx),%esi e74: 70 65 jo edb <.debug_str+0xedb> e76: 6e outsb %ds:(%esi),(%dx) e77: 64 69 6e 67 00 61 74 imul $0x74746100,%fs:0x67(%esi),%ebp e7e: 74 e7f: 72 73 jb ef4 <.debug_str+0xef4> e81: 00 6d 70 add %ch,0x70(%ebp) e84: 63 5f 73 arpl %bx,0x73(%edi) e87: 70 65 jo eee <.debug_str+0xeee> e89: 63 00 arpl %ax,(%eax) e8b: 5f pop %edi e8c: 5f pop %edi e8d: 67 73 68 addr16 jae ef8 <.debug_str+0xef8> e90: 00 5f 5f add %bl,0x5f(%edi) e93: 5f pop %edi e94: 76 6d jbe f03 <.debug_str+0xf03> e96: 38 36 cmp %dh,(%esi) e98: 5f pop %edi e99: 65 gs e9a: 73 00 jae e9c <.debug_str+0xe9c> e9c: 72 69 jb f07 <.debug_str+0xf07> e9e: 6e outsb %ds:(%esi),(%dx) e9f: 67 5f addr16 pop %edi ea1: 6c insb (%dx),%es:(%edi) ea2: 6f outsl %ds:(%esi),(%dx) ea3: 63 6b 00 arpl %bp,0x0(%ebx) ea6: 5f pop %edi ea7: 70 61 jo f0a <.debug_str+0xf0a> ea9: 64 32 5f 00 xor %fs:0x0(%edi),%bl ead: 68 6c 74 5f 77 push $0x775f746c eb2: 6f outsl %ds:(%esi),(%dx) eb3: 72 6b jb f20 <.debug_str+0xf20> eb5: 73 5f jae f16 <.debug_str+0xf16> eb7: 6f outsl %ds:(%esi),(%dx) eb8: 6b 00 73 imul $0x73,(%eax),%eax ebb: 75 62 jne f1f <.debug_str+0xf1f> ebd: 73 79 jae f38 <.debug_str+0xf38> ebf: 73 00 jae ec1 <.debug_str+0xec1> ec1: 74 61 je f24 <.debug_str+0xf24> ec3: 73 6b jae f30 <.debug_str+0xf30> ec5: 73 00 jae ec7 <.debug_str+0xec7> ec7: 61 popa ec8: 74 74 je f3e <.debug_str+0xf3e> eca: 72 69 jb f35 <.debug_str+0xf35> ecc: 62 75 74 bound %esi,0x74(%ebp) ecf: 65 gs ed0: 5f pop %edi ed1: 67 72 6f addr16 jb f43 <.debug_str+0xf43> ed4: 75 70 jne f46 <.debug_str+0xf46> ed6: 00 65 78 add %ah,0x78(%ebp) ed9: 69 74 00 78 38 36 5f imul $0x6d5f3638,0x78(%eax,%eax,1),%esi ee0: 6d ee1: 6f outsl %ds:(%esi),(%dx) ee2: 64 fs ee3: 65 gs ee4: 6c insb (%dx),%es:(%edi) ee5: 00 70 65 add %dh,0x65(%eax) ee8: 72 5f jb f49 <.debug_str+0xf49> eea: 63 70 75 arpl %si,0x75(%eax) eed: 5f pop %edi eee: 5f pop %edi eef: 63 70 75 arpl %si,0x75(%eax) ef2: 5f pop %edi ef3: 67 addr16 ef4: 64 fs ef5: 74 5f je f56 <.debug_str+0xf56> ef7: 64 fs ef8: 65 gs ef9: 73 63 jae f5e <.debug_str+0xf5e> efb: 72 00 jb efd <.debug_str+0xefd> efd: 5f pop %edi efe: 5f pop %edi eff: 5f pop %edi f00: 76 6d jbe f6f <.debug_str+0xf6f> f02: 38 36 cmp %dh,(%esi) f04: 5f pop %edi f05: 66 data16 f06: 73 00 jae f08 <.debug_str+0xf08> f08: 6d insl (%dx),%es:(%edi) f09: 70 63 jo f6e <.debug_str+0xf6e> f0b: 5f pop %edi f0c: 6f outsl %ds:(%esi),(%dx) f0d: 65 gs f0e: 6d insl (%dx),%es:(%edi) f0f: 5f pop %edi f10: 62 75 73 bound %esi,0x73(%ebp) f13: 5f pop %edi f14: 69 6e 66 6f 00 6d 6d imul $0x6d6d006f,0x66(%esi),%ebp f1b: 5f pop %edi f1c: 75 73 jne f91 <.debug_str+0xf91> f1e: 65 gs f1f: 72 73 jb f94 <.debug_str+0xf94> f21: 00 6d 75 add %ch,0x75(%ebp) f24: 74 65 je f8b <.debug_str+0xf8b> f26: 78 00 js f28 <.debug_str+0xf28> f28: 66 data16 f29: 73 75 jae fa0 <.debug_str+0xfa0> f2b: 69 64 00 66 69 6c 65 imul $0x73656c69,0x66(%eax,%eax,1),%esp f32: 73 f33: 5f pop %edi f34: 73 74 jae faa <.debug_str+0xfaa> f36: 72 75 jb fad <.debug_str+0xfad> f38: 63 74 00 78 arpl %si,0x78(%eax,%eax,1) f3c: 38 36 cmp %dh,(%esi) f3e: 5f pop %edi f3f: 63 61 70 arpl %sp,0x70(%ecx) f42: 61 popa f43: 62 69 6c bound %ebp,0x6c(%ecx) f46: 69 74 79 00 70 61 67 imul $0x65676170,0x0(%ecx,%edi,2),%esi f4d: 65 f4e: 73 5f jae faf <.debug_str+0xfaf> f50: 68 69 67 68 00 push $0x686769 f55: 74 72 je fc9 <.debug_str+0xfc9> f57: 61 popa f58: 70 5f jo fb9 <.debug_str+0xfb9> f5a: 6e outsb %ds:(%esi),(%dx) f5b: 6f outsl %ds:(%esi),(%dx) f5c: 00 5f 5f add %bl,0x5f(%edi) f5f: 5f pop %edi f60: 76 6d jbe fcf <.debug_str+0xfcf> f62: 38 36 cmp %dh,(%esi) f64: 5f pop %edi f65: 67 73 00 addr16 jae f68 <.debug_str+0xf68> f68: 77 61 ja fcb <.debug_str+0xfcb> f6a: 69 74 5f 71 75 65 75 imul $0x65756575,0x71(%edi,%ebx,2),%esi f71: 65 f72: 5f pop %edi f73: 74 00 je f75 <.debug_str+0xf75> f75: 61 popa f76: 74 74 je fec <.debug_str+0xfec> f78: 72 69 jb fe3 <.debug_str+0xfe3> f7a: 62 75 74 bound %esi,0x74(%ebp) f7d: 65 00 6e 6f add %ch,%gs:0x6f(%esi) f81: 74 69 je fec <.debug_str+0xfec> f83: 66 69 65 72 5f 64 imul $0x645f,0x72(%ebp),%sp f89: 61 popa f8a: 74 61 je fed <.debug_str+0xfed> f8c: 00 6f 77 add %ch,0x77(%edi) f8f: 6e outsb %ds:(%esi),(%dx) f90: 65 gs f91: 72 00 jb f93 <.debug_str+0xf93> f93: 69 6f 5f 63 6f 6e 74 imul $0x746e6f63,0x5f(%edi),%ebp f9a: 65 gs f9b: 78 74 js 1011 <.debug_str+0x1011> f9d: 00 73 65 add %dh,0x65(%ebx) fa0: 73 73 jae 1015 <.debug_str+0x1015> fa2: 69 6f 6e 5f 6b 65 79 imul $0x79656b5f,0x6e(%edi),%ebp fa9: 72 69 jb 1014 <.debug_str+0x1014> fab: 6e outsb %ds:(%esi),(%dx) fac: 67 00 74 68 addr16 add %dh,104(%si) fb0: 72 65 jb 1017 <.debug_str+0x1017> fb2: 61 popa fb3: 64 fs fb4: 5f pop %edi fb5: 6b 65 79 72 imul $0x72,0x79(%ebp),%esp fb9: 69 6e 67 00 73 69 7a imul $0x7a697300,0x67(%esi),%ebp fc0: 65 gs fc1: 5f pop %edi fc2: 74 00 je fc4 <.debug_str+0xfc4> fc4: 73 65 jae 102b <.debug_str+0x102b> fc6: 74 75 je 103d <.debug_str+0x103d> fc8: 70 00 jo fca <.debug_str+0xfca> fca: 5f pop %edi fcb: 5f pop %edi fcc: 63 6f 75 arpl %bp,0x75(%edi) fcf: 6e outsb %ds:(%esi),(%dx) fd0: 74 00 je fd2 <.debug_str+0xfd2> fd2: 6c insb (%dx),%es:(%edi) fd3: 6f outsl %ds:(%esi),(%dx) fd4: 63 6b 5f arpl %bp,0x5f(%ebx) fd7: 64 fs fd8: 65 gs fd9: 70 74 jo 104f <.debug_str+0x104f> fdb: 68 00 73 74 5f push $0x5f747300 fe0: 76 61 jbe 1043 <.debug_str+0x1043> fe2: 6c insb (%dx),%es:(%edi) fe3: 75 65 jne 104a <.debug_str+0x104a> fe5: 00 5f 73 add %bl,0x73(%edi) fe8: 69 67 76 61 6c 00 67 imul $0x67006c61,0x76(%edi),%esp fef: 70 6c jo 105d <.debug_str+0x105d> ff1: 5f pop %edi ff2: 73 79 jae 106d <.debug_str+0x106d> ff4: 6d insl (%dx),%es:(%edi) ff5: 73 00 jae ff7 <.debug_str+0xff7> ff7: 65 gs ff8: 78 74 js 106e <.debug_str+0x106e> ffa: 61 popa ffb: 62 6c 65 00 bound %ebp,0x0(%ebp) fff: 6c insb (%dx),%es:(%edi) 1000: 6c insb (%dx),%es:(%edi) 1001: 63 5f 73 arpl %bx,0x73(%edi) 1004: 68 61 72 65 64 push $0x64657261 1009: 5f pop %edi 100a: 6d insl (%dx),%es:(%edi) 100b: 61 popa 100c: 70 00 jo 100e <.debug_str+0x100e> 100e: 6d insl (%dx),%es:(%edi) 100f: 71 5f jno 1070 <.debug_str+0x1070> 1011: 62 79 74 bound %edi,0x74(%ecx) 1014: 65 gs 1015: 73 00 jae 1017 <.debug_str+0x1017> 1017: 6d insl (%dx),%es:(%edi) 1018: 78 63 js 107d <.debug_str+0x107d> 101a: 73 72 jae 108e <.debug_str+0x108e> 101c: 00 70 61 add %dh,0x61(%eax) 101f: 67 65 00 72 62 addr16 add %dh,%gs:98(%bp,%si) 1024: 5f pop %edi 1025: 72 69 jb 1090 <.debug_str+0x1090> 1027: 67 68 74 00 74 61 addr16 push $0x61740074 102d: 72 67 jb 1096 <.debug_str+0x1096> 102f: 65 gs 1030: 74 5f je 1091 <.debug_str+0x1091> 1032: 63 70 75 arpl %si,0x75(%eax) 1035: 73 00 jae 1037 <.debug_str+0x1037> 1037: 7a 6f jp 10a8 <.debug_str+0x10a8> 1039: 6e outsb %ds:(%esi),(%dx) 103a: 65 gs 103b: 73 00 jae 103d <.debug_str+0x103d> 103d: 2f das 103e: 73 63 jae 10a3 <.debug_str+0x10a3> 1040: 72 61 jb 10a3 <.debug_str+0x10a3> 1042: 74 63 je 10a7 <.debug_str+0x10a7> 1044: 68 2f 66 69 2f push $0x2f69662f 1049: 66 69 5f 6d 6f 64 imul $0x646f,0x6d(%edi),%bx 104f: 75 6c jne 10bd <.debug_str+0x10bd> 1051: 65 gs 1052: 2f das 1053: 63 72 6d arpl %si,0x6d(%edx) 1056: 6f outsl %ds:(%esi),(%dx) 1057: 64 fs 1058: 2e cs 1059: 6d insl (%dx),%es:(%edi) 105a: 6f outsl %ds:(%esi),(%dx) 105b: 64 2e 63 00 arpl %ax,%cs:%fs:(%eax) 105f: 6e outsb %ds:(%esi),(%dx) 1060: 6f outsl %ds:(%esi),(%dx) 1061: 64 fs 1062: 65 gs 1063: 5f pop %edi 1064: 6c insb (%dx),%es:(%edi) 1065: 69 73 74 00 61 63 70 imul $0x70636100,0x74(%ebx),%esi 106c: 69 5f 6d 61 64 74 5f imul $0x5f746461,0x6d(%edi),%ebx 1073: 6f outsl %ds:(%esi),(%dx) 1074: 65 gs 1075: 6d insl (%dx),%es:(%edi) 1076: 5f pop %edi 1077: 63 68 65 arpl %bp,0x65(%eax) 107a: 63 6b 00 arpl %bp,0x0(%ebx) 107d: 69 6f 70 72 69 6f 00 imul $0x6f6972,0x70(%edi),%ebp 1084: 6b 6d 65 6d imul $0x6d,0x65(%ebp),%ebp 1088: 5f pop %edi 1089: 63 61 63 arpl %sp,0x63(%ecx) 108c: 68 65 00 69 33 push $0x33690065 1091: 38 37 cmp %dh,(%edi) 1093: 5f pop %edi 1094: 75 6e jne 1104 <.debug_str+0x1104> 1096: 69 6f 6e 00 74 76 65 imul $0x65767400,0x6e(%edi),%ebp 109d: 63 5f 74 arpl %bx,0x74(%edi) 10a0: 5f pop %edi 10a1: 62 61 73 bound %esp,0x73(%ecx) 10a4: 65 gs 10a5: 5f pop %edi 10a6: 73 00 jae 10a8 <.debug_str+0x10a8> 10a8: 70 74 jo 111e <.debug_str+0x111e> 10aa: 72 61 jb 110d <.debug_str+0x110d> 10ac: 63 65 5f arpl %sp,0x5f(%ebp) 10af: 63 68 69 arpl %bp,0x69(%eax) 10b2: 6c insb (%dx),%es:(%edi) 10b3: 64 fs 10b4: 72 65 jb 111b <.debug_str+0x111b> 10b6: 6e outsb %ds:(%esi),(%dx) 10b7: 00 77 61 add %dh,0x61(%edi) 10ba: 69 74 5f 74 61 62 6c imul $0x656c6261,0x74(%edi,%ebx,2),%esi 10c1: 65 10c2: 00 6d 70 add %ch,0x70(%ebp) 10c5: 63 5f 70 arpl %bx,0x70(%edi) 10c8: 72 6f jb 1139 <.debug_str+0x1139> 10ca: 64 fs 10cb: 75 63 jne 1130 <.debug_str+0x1130> 10cd: 74 69 je 1138 <.debug_str+0x1138> 10cf: 64 00 74 6c 73 add %dh,%fs:0x73(%esp,%ebp,2) 10d4: 5f pop %edi 10d5: 61 popa 10d6: 72 72 jb 114a <.debug_str+0x114a> 10d8: 61 popa 10d9: 79 00 jns 10db <.debug_str+0x10db> 10db: 67 72 6f addr16 jb 114d <.debug_str+0x114d> 10de: 75 70 jne 1150 <.debug_str+0x1150> 10e0: 5f pop %edi 10e1: 73 74 jae 1157 <.debug_str+0x1157> 10e3: 6f outsl %ds:(%esi),(%dx) 10e4: 70 5f jo 1145 <.debug_str+0x1145> 10e6: 63 6f 75 arpl %bp,0x75(%edi) 10e9: 6e outsb %ds:(%esi),(%dx) 10ea: 74 00 je 10ec <.debug_str+0x10ec> 10ec: 73 61 jae 114f <.debug_str+0x114f> 10ee: 5f pop %edi 10ef: 6d insl (%dx),%es:(%edi) 10f0: 61 popa 10f1: 73 6b jae 115e <.debug_str+0x115e> 10f3: 00 66 69 add %ah,0x69(%esi) 10f6: 72 73 jb 116b <.debug_str+0x116b> 10f8: 74 00 je 10fa <.debug_str+0x10fa> 10fa: 69 6e 69 74 5f 73 69 imul $0x69735f74,0x69(%esi),%ebp 1101: 7a 65 jp 1168 <.debug_str+0x1168> 1103: 00 78 38 add %bh,0x38(%eax) 1106: 36 ss 1107: 5f pop %edi 1108: 76 65 jbe 116f <.debug_str+0x116f> 110a: 6e outsb %ds:(%esi),(%dx) 110b: 64 6f outsl %fs:(%esi),(%dx) 110d: 72 5f jb 116e <.debug_str+0x116e> 110f: 69 64 00 78 38 36 5f imul $0x635f3638,0x78(%eax,%eax,1),%esp 1116: 63 1117: 61 popa 1118: 63 68 65 arpl %bp,0x65(%eax) 111b: 5f pop %edi 111c: 73 69 jae 1187 <.debug_str+0x1187> 111e: 7a 65 jp 1185 <.debug_str+0x1185> 1120: 00 69 6f add %ch,0x6f(%ecx) 1123: 63 74 78 5f arpl %si,0x5f(%eax,%edi,2) 1127: 6c insb (%dx),%es:(%edi) 1128: 69 73 74 5f 6c 6f 63 imul $0x636f6c5f,0x74(%ebx),%esi 112f: 6b 00 72 imul $0x72,(%eax),%eax 1132: 65 gs 1133: 61 popa 1134: 6c insb (%dx),%es:(%edi) 1135: 5f pop %edi 1136: 62 6c 6f 63 bound %ebp,0x63(%edi,%ebp,2) 113a: 6b 65 64 00 imul $0x0,0x64(%ebp),%esp 113e: 66 69 6c 65 00 70 69 imul $0x6970,0x0(%ebp),%bp 1145: 64 fs 1146: 5f pop %edi 1147: 6c insb (%dx),%es:(%edi) 1148: 69 6e 6b 00 61 63 63 imul $0x63636100,0x6b(%esi),%ebp 114f: 74 5f je 11b0 <.debug_str+0x11b0> 1151: 72 73 jb 11c6 <.debug_str+0x11c6> 1153: 73 5f jae 11b4 <.debug_str+0x11b4> 1155: 6d insl (%dx),%es:(%edi) 1156: 65 gs 1157: 6d insl (%dx),%es:(%edi) 1158: 31 00 xor %eax,(%eax) 115a: 6d insl (%dx),%es:(%edi) 115b: 70 63 jo 11c0 <.debug_str+0x11c0> 115d: 5f pop %edi 115e: 6f outsl %ds:(%esi),(%dx) 115f: 65 gs 1160: 6d insl (%dx),%es:(%edi) 1161: 5f pop %edi 1162: 70 63 jo 11c7 <.debug_str+0x11c7> 1164: 69 5f 62 75 73 00 6e imul $0x6e007375,0x62(%edi),%ebx 116b: 62 6c 6f 63 bound %ebp,0x63(%edi,%ebp,2) 116f: 6b 73 00 66 imul $0x66,0x0(%ebx),%esi 1173: 64 69 76 5f 62 75 67 imul $0x677562,%fs:0x5f(%esi),%esi 117a: 00 117b: 70 61 jo 11de <.debug_str+0x11de> 117d: 72 61 jb 11e0 <.debug_str+0x11e0> 117f: 6d insl (%dx),%es:(%edi) 1180: 5f pop %edi 1181: 61 popa 1182: 74 74 je 11f8 <.debug_str+0x11f8> 1184: 72 73 jb 11f9 <.debug_str+0x11f9> 1186: 00 73 74 add %dh,0x74(%ebx) 1189: 61 popa 118a: 72 74 jb 1200 <.debug_str+0x1200> 118c: 5f pop %edi 118d: 73 74 jae 1203 <.debug_str+0x1203> 118f: 61 popa 1190: 63 6b 00 arpl %bp,0x0(%ebx) 1193: 5f pop %edi 1194: 5f pop %edi 1195: 5f pop %edi 1196: 6f outsl %ds:(%esi),(%dx) 1197: 72 69 jb 1202 <.debug_str+0x1202> 1199: 67 5f addr16 pop %edi 119b: 65 gs 119c: 61 popa 119d: 78 00 js 119f <.debug_str+0x119f> 119f: 61 popa 11a0: 70 69 jo 120b <.debug_str+0x120b> 11a2: 63 5f 64 arpl %bx,0x64(%edi) 11a5: 65 gs 11a6: 73 74 jae 121c <.debug_str+0x121c> 11a8: 69 6e 61 74 69 6f 6e imul $0x6e6f6974,0x61(%esi),%ebp 11af: 5f pop %edi 11b0: 6c insb (%dx),%es:(%edi) 11b1: 6f outsl %ds:(%esi),(%dx) 11b2: 67 69 63 61 6c 00 73 addr16 imul $0x7473006c,97(%bp,%di),%esp 11b9: 74 11ba: 5f pop %edi 11bb: 69 6e 66 6f 00 73 69 imul $0x6973006f,0x66(%esi),%ebp 11c2: 67 70 65 addr16 jo 122a <.debug_str+0x122a> 11c5: 6e outsb %ds:(%esi),(%dx) 11c6: 64 69 6e 67 00 73 77 imul $0x61777300,%fs:0x67(%esi),%ebp 11cd: 61 11ce: 70 5f jo 122f <.debug_str+0x122f> 11d0: 74 6f je 1241 <.debug_str+0x1241> 11d2: 6b 65 6e 5f imul $0x5f,0x6e(%ebp),%esp 11d6: 74 69 je 1241 <.debug_str+0x1241> 11d8: 6d insl (%dx),%es:(%edi) 11d9: 65 00 73 74 add %dh,%gs:0x74(%ebx) 11dd: 72 74 jb 1253 <.debug_str+0x1253> 11df: 61 popa 11e0: 62 00 bound %eax,(%eax) 11e2: 77 61 ja 1245 <.debug_str+0x1245> 11e4: 69 74 5f 74 61 62 6c imul $0x656c6261,0x74(%edi,%ebx,2),%esi 11eb: 65 11ec: 5f pop %edi 11ed: 68 61 73 68 5f push $0x5f687361 11f2: 6e outsb %ds:(%esi),(%dx) 11f3: 72 5f jb 1254 <.debug_str+0x1254> 11f5: 65 6e outsb %gs:(%esi),(%dx) 11f7: 74 72 je 126b <.debug_str+0x126b> 11f9: 69 65 73 00 5f 5f 73 imul $0x735f5f00,0x73(%ebp),%esp 1200: 69 67 6e 61 6c 66 6e imul $0x6e666c61,0x6e(%edi),%esp 1207: 5f pop %edi 1208: 74 00 je 120a <.debug_str+0x120a> 120a: 73 6c jae 1278 <.debug_str+0x1278> 120c: 65 gs 120d: 65 gs 120e: 70 5f jo 126f <.debug_str+0x126f> 1210: 61 popa 1211: 76 67 jbe 127a <.debug_str+0x127a> 1213: 00 74 74 79 add %dh,0x79(%esp,%esi,2) 1217: 5f pop %edi 1218: 6f outsl %ds:(%esi),(%dx) 1219: 6c insb (%dx),%es:(%edi) 121a: 64 fs 121b: 5f pop %edi 121c: 70 67 jo 1285 <.debug_str+0x1285> 121e: 72 70 jb 1290 <.debug_str+0x1290> 1220: 00 69 6f add %ch,0x6f(%ecx) 1223: 63 74 78 5f arpl %si,0x5f(%eax,%edi,2) 1227: 6c insb (%dx),%es:(%edi) 1228: 69 73 74 00 73 69 5f imul $0x5f697300,0x74(%ebx),%esi 122f: 73 69 jae 129a <.debug_str+0x129a> 1231: 67 6e addr16 outsb %ds:(%si),(%dx) 1233: 6f outsl %ds:(%esi),(%dx) 1234: 00 72 65 add %dh,0x65(%edx) 1237: 66 data16 1238: 63 6f 75 arpl %bp,0x75(%edi) 123b: 6e outsb %ds:(%esi),(%dx) 123c: 74 00 je 123e <.debug_str+0x123e> 123e: 76 61 jbe 12a1 <.debug_str+0x12a1> 1240: 6c insb (%dx),%es:(%edi) 1241: 75 65 jne 12a8 <.debug_str+0x12a8> 1243: 00 72 74 add %dh,0x74(%edx) 1246: 5f pop %edi 1247: 6d insl (%dx),%es:(%edi) 1248: 75 74 jne 12be <.debug_str+0x12be> 124a: 65 gs 124b: 78 5f js 12ac <.debug_str+0x12ac> 124d: 77 61 ja 12b0 <.debug_str+0x12b0> 124f: 69 74 65 72 00 73 69 imul $0x5f697300,0x72(%ebp),%esi 1256: 5f 1257: 63 6f 64 arpl %bp,0x64(%edi) 125a: 65 00 73 69 add %dh,%gs:0x69(%ebx) 125e: 76 61 jbe 12c1 <.debug_str+0x12c1> 1260: 6c insb (%dx),%es:(%edi) 1261: 5f pop %edi 1262: 69 6e 74 00 6b 69 6f imul $0x6f696b00,0x74(%esi),%ebp 1269: 63 74 78 00 arpl %si,0x0(%eax,%edi,2) 126d: 61 popa 126e: 64 fs 126f: 64 fs 1270: 72 65 jb 12d7 <.debug_str+0x12d7> 1272: 73 73 jae 12e7 <.debug_str+0x12e7> 1274: 00 63 6f add %ah,0x6f(%ebx) 1277: 6e outsb %ds:(%esi),(%dx) 1278: 74 69 je 12e3 <.debug_str+0x12e3> 127a: 67 5f addr16 pop %edi 127c: 70 61 jo 12df <.debug_str+0x12df> 127e: 67 addr16 127f: 65 gs 1280: 5f pop %edi 1281: 64 fs 1282: 61 popa 1283: 74 61 je 12e6 <.debug_str+0x12e6> 1285: 00 63 70 add %ah,0x70(%ebx) 1288: 75 5f jne 12e9 <.debug_str+0x12e9> 128a: 63 6f 72 arpl %bp,0x72(%edi) 128d: 65 gs 128e: 5f pop %edi 128f: 69 64 00 70 65 72 5f imul $0x635f7265,0x70(%eax,%eax,1),%esp 1296: 63 1297: 70 75 jo 130e <.debug_str+0x130e> 1299: 5f pop %edi 129a: 5f pop %edi 129b: 72 63 jb 1300 <.debug_str+0x1300> 129d: 75 5f jne 12fe <.debug_str+0x12fe> 129f: 64 fs 12a0: 61 popa 12a1: 74 61 je 1304 <.debug_str+0x1304> 12a3: 00 5f 5f add %bl,0x5f(%edi) 12a6: 5f pop %edi 12a7: 5f pop %edi 12a8: 76 65 jbe 130f <.debug_str+0x130f> 12aa: 72 73 jb 131f <.debug_str+0x131f> 12ac: 69 6f 6e 73 00 74 74 imul $0x74740073,0x6e(%edi),%ebp 12b3: 79 5f jns 1314 <.debug_str+0x1314> 12b5: 73 74 jae 132b <.debug_str+0x132b> 12b7: 72 75 jb 132e <.debug_str+0x132e> 12b9: 63 74 00 70 arpl %si,0x70(%eax,%eax,1) 12bd: 72 65 jb 1324 <.debug_str+0x1324> 12bf: 65 gs 12c0: 6d insl (%dx),%es:(%edi) 12c1: 70 74 jo 1337 <.debug_str+0x1337> 12c3: 5f pop %edi 12c4: 63 6f 75 arpl %bp,0x75(%edi) 12c7: 6e outsb %ds:(%esi),(%dx) 12c8: 74 00 je 12ca <.debug_str+0x12ca> 12ca: 64 fs 12cb: 65 gs 12cc: 66 61 popaw 12ce: 75 6c jne 133c <.debug_str+0x133c> 12d0: 74 5f je 1331 <.debug_str+0x1331> 12d2: 61 popa 12d3: 74 74 je 1349 <.debug_str+0x1349> 12d5: 72 73 jb 134a <.debug_str+0x134a> 12d7: 00 73 79 add %dh,0x79(%ebx) 12da: 73 63 jae 133f <.debug_str+0x133f> 12dc: 72 00 jb 12de <.debug_str+0x12de> 12de: 73 79 jae 1359 <.debug_str+0x1359> 12e0: 73 63 jae 1345 <.debug_str+0x1345> 12e2: 77 00 ja 12e4 <.debug_str+0x12e4> 12e4: 47 inc %edi 12e5: 4e dec %esi 12e6: 55 push %ebp 12e7: 20 43 20 and %al,0x20(%ebx) 12ea: 33 2e xor (%esi),%ebp 12ec: 34 2e xor $0x2e,%al 12ee: 34 00 xor $0x0,%al 12f0: 73 65 jae 1357 <.debug_str+0x1357> 12f2: 63 63 6f arpl %sp,0x6f(%ebx) 12f5: 6d insl (%dx),%es:(%edi) 12f6: 70 00 jo 12f8 <.debug_str+0x12f8> 12f8: 74 69 je 1363 <.debug_str+0x1363> 12fa: 6d insl (%dx),%es:(%edi) 12fb: 65 gs 12fc: 73 70 jae 136e <.debug_str+0x136e> 12fe: 65 63 00 arpl %ax,%gs:(%eax) 1301: 6c insb (%dx),%es:(%edi) 1302: 69 76 65 00 65 78 63 imul $0x63786500,0x65(%esi),%esi 1309: 65 gs 130a: 70 74 jo 1380 <.debug_str+0x1380> 130c: 69 6f 6e 5f 74 61 62 imul $0x6261745f,0x6e(%edi),%ebp 1313: 6c insb (%dx),%es:(%edi) 1314: 65 gs 1315: 5f pop %edi 1316: 65 6e outsb %gs:(%esi),(%dx) 1318: 74 72 je 138c <.debug_str+0x138c> 131a: 79 00 jns 131c <.debug_str+0x131c> 131c: 73 65 jae 1383 <.debug_str+0x1383> 131e: 6d insl (%dx),%es:(%edi) 131f: 5f pop %edi 1320: 75 6e jne 1390 <.debug_str+0x1390> 1322: 64 6f outsl %fs:(%esi),(%dx) 1324: 00 6c 69 6e add %ch,0x6e(%ecx,%ebp,2) 1328: 75 78 jne 13a2 <.debug_str+0x13a2> 132a: 5f pop %edi 132b: 62 69 6e bound %ebp,0x6e(%ecx) 132e: 66 6d insw (%dx),%es:(%edi) 1330: 74 00 je 1332 <.debug_str+0x1332> 1332: 75 65 jne 1399 <.debug_str+0x1399> 1334: 76 65 jbe 139b <.debug_str+0x139b> 1336: 6e outsb %ds:(%esi),(%dx) 1337: 74 5f je 1398 <.debug_str+0x1398> 1339: 6f outsl %ds:(%esi),(%dx) 133a: 70 73 jo 13af <.debug_str+0x13af> 133c: 00 5f 5f add %bl,0x5f(%edi) 133f: 6d insl (%dx),%es:(%edi) 1340: 61 popa 1341: 70 00 jo 1343 <.debug_str+0x1343> 1343: 5f pop %edi 1344: 5f pop %edi 1345: 73 73 jae 13ba <.debug_str+0x13ba> 1347: 68 00 74 61 73 push $0x73617400 134c: 6b 5f 73 74 imul $0x74,0x73(%edi),%ebx 1350: 72 75 jb 13c7 <.debug_str+0x13c7> 1352: 63 74 00 7a arpl %si,0x7a(%eax,%eax,1) 1356: 6f outsl %ds:(%esi),(%dx) 1357: 6e outsb %ds:(%esi),(%dx) 1358: 65 gs 1359: 6c insb (%dx),%es:(%edi) 135a: 69 73 74 00 53 4c 45 imul $0x454c5300,0x74(%ebx),%esi 1361: 45 inc %ebp 1362: 50 push %eax 1363: 5f pop %edi 1364: 4e dec %esi 1365: 4f dec %edi 1366: 4e dec %esi 1367: 49 dec %ecx 1368: 4e dec %esi 1369: 54 push %esp 136a: 45 inc %ebp 136b: 52 push %edx 136c: 41 inc %ecx 136d: 43 inc %ebx 136e: 54 push %esp 136f: 49 dec %ecx 1370: 56 push %esi 1371: 45 inc %ebp 1372: 00 5f 5f add %bl,0x5f(%edi) 1375: 73 69 jae 13e0 <.debug_str+0x13e0> 1377: 67 68 61 6e 64 6c addr16 push $0x6c646e61 137d: 65 gs 137e: 72 5f jb 13df <.debug_str+0x13df> 1380: 74 00 je 1382 <.debug_str+0x1382> 1382: 70 61 jo 13e5 <.debug_str+0x13e5> 1384: 67 addr16 1385: 65 gs 1386: 73 65 jae 13ed <.debug_str+0x13ed> 1388: 74 00 je 138a <.debug_str+0x138a> 138a: 63 70 75 arpl %si,0x75(%eax) 138d: 69 6e 66 6f 5f 78 38 imul $0x38785f6f,0x66(%esi),%ebp 1394: 36 00 5f 5f add %bl,%ss:0x5f(%edi) 1398: 74 68 je 1402 <.debug_str+0x1402> 139a: 69 73 5f 6d 6f 64 75 imul $0x75646f6d,0x5f(%ebx),%esi 13a1: 6c insb (%dx),%es:(%edi) 13a2: 65 00 6e 67 add %ch,%gs:0x67(%esi) 13a6: 72 6f jb 1417 <.debug_str+0x1417> 13a8: 75 70 jne 141a <.debug_str+0x141a> 13aa: 73 00 jae 13ac <.debug_str+0x13ac> 13ac: 6e outsb %ds:(%esi),(%dx) 13ad: 75 6d jne 141c <.debug_str+0x141c> 13af: 5f pop %edi 13b0: 65 gs 13b1: 78 65 js 1418 <.debug_str+0x1418> 13b3: 6e outsb %ds:(%esi),(%dx) 13b4: 74 72 je 1428 <.debug_str+0x1428> 13b6: 69 65 73 00 61 63 5f imul $0x5f636100,0x73(%ebp),%esp 13bd: 66 data16 13be: 6c insb (%dx),%es:(%edi) 13bf: 61 popa 13c0: 67 00 70 72 addr16 add %dh,114(%bx,%si) 13c4: 65 gs 13c5: 76 5f jbe 1426 <.debug_str+0x1426> 13c7: 70 72 jo 143b <.debug_str+0x143b> 13c9: 69 6f 72 69 74 79 00 imul $0x797469,0x72(%edi),%ebp 13d0: 72 62 jb 1434 <.debug_str+0x1434> 13d2: 5f pop %edi 13d3: 70 61 jo 1436 <.debug_str+0x1436> 13d5: 72 65 jb 143c <.debug_str+0x143c> 13d7: 6e outsb %ds:(%esi),(%dx) 13d8: 74 5f je 1439 <.debug_str+0x1439> 13da: 63 6f 6c arpl %bp,0x6c(%edi) 13dd: 6f outsl %ds:(%esi),(%dx) 13de: 72 00 jb 13e0 <.debug_str+0x13e0> 13e0: 61 popa 13e1: 70 69 jo 144c <.debug_str+0x144c> 13e3: 63 69 64 arpl %bp,0x64(%ecx) 13e6: 5f pop %edi 13e7: 74 6f je 1458 <.debug_str+0x1458> 13e9: 5f pop %edi 13ea: 6e outsb %ds:(%esi),(%dx) 13eb: 6f outsl %ds:(%esi),(%dx) 13ec: 64 65 00 65 78 add %ah,%fs:%gs:0x78(%ebp) 13f1: 65 63 5f 64 arpl %bx,%gs:0x64(%edi) 13f5: 6f outsl %ds:(%esi),(%dx) 13f6: 6d insl (%dx),%es:(%edi) 13f7: 61 popa 13f8: 69 6e 00 63 6f 6d 61 imul $0x616d6f63,0x0(%esi),%ebp 13ff: 5f pop %edi 1400: 62 75 67 bound %esi,0x67(%ebp) 1403: 00 61 70 add %ah,0x70(%ecx) 1406: 69 63 5f 69 64 5f 72 imul $0x725f6469,0x5f(%ebx),%esp 140d: 65 67 69 73 74 65 72 addr16 imul $0x64657265,%gs:116(%bp,%di),%esi 1414: 65 64 1416: 00 6d 61 add %ch,0x61(%ebp) 1419: 67 69 63 00 69 6f 70 addr16 imul $0x6c706f69,0(%bp,%di),%esp 1420: 6c 1421: 00 5f 75 add %bl,0x75(%edi) 1424: 74 69 je 148f <.debug_str+0x148f> 1426: 6d insl (%dx),%es:(%edi) 1427: 65 00 62 74 add %ah,%gs:0x74(%edx) 142b: 72 61 jb 148e <.debug_str+0x148e> 142d: 63 65 5f arpl %sp,0x5f(%ebp) 1430: 73 65 jae 1497 <.debug_str+0x1497> 1432: 71 00 jno 1434 <.debug_str+0x1434> 1434: 68 69 77 61 74 push $0x74617769 1439: 65 gs 143a: 72 5f jb 149b <.debug_str+0x149b> 143c: 72 73 jb 14b1 <.debug_str+0x14b1> 143e: 73 00 jae 1440 <.debug_str+0x1440> 1440: 74 69 je 14ab <.debug_str+0x14ab> 1442: 6d insl (%dx),%es:(%edi) 1443: 65 gs 1444: 72 00 jb 1446 <.debug_str+0x1446> 1446: 63 70 75 arpl %si,0x75(%eax) 1449: 73 5f jae 14aa <.debug_str+0x14aa> 144b: 61 popa 144c: 6c insb (%dx),%es:(%edi) 144d: 6c insb (%dx),%es:(%edi) 144e: 6f outsl %ds:(%esi),(%dx) 144f: 77 65 ja 14b6 <.debug_str+0x14b6> 1451: 64 00 6e 61 add %ch,%fs:0x61(%esi) 1455: 6d insl (%dx),%es:(%edi) 1456: 65 00 6e 6f add %ch,%gs:0x6f(%esi) 145a: 64 fs 145b: 65 gs 145c: 5f pop %edi 145d: 7a 6f jp 14ce <.debug_str+0x14ce> 145f: 6e outsb %ds:(%esi),(%dx) 1460: 65 gs 1461: 6c insb (%dx),%es:(%edi) 1462: 69 73 74 73 00 63 70 imul $0x70630073,0x74(%ebx),%esi 1469: 75 5f jne 14ca <.debug_str+0x14ca> 146b: 70 72 jo 14df <.debug_str+0x14df> 146d: 65 gs 146e: 73 65 jae 14d5 <.debug_str+0x14d5> 1470: 6e outsb %ds:(%esi),(%dx) 1471: 74 5f je 14d2 <.debug_str+0x14d2> 1473: 74 6f je 14e4 <.debug_str+0x14e4> 1475: 5f pop %edi 1476: 61 popa 1477: 70 69 jo 14e2 <.debug_str+0x14e2> 1479: 63 69 64 arpl %bp,0x64(%ecx) 147c: 00 75 73 add %dh,0x73(%ebp) 147f: 61 popa 1480: 67 65 00 73 74 addr16 add %dh,%gs:116(%bp,%di) 1485: 61 popa 1486: 72 74 jb 14fc <.debug_str+0x14fc> 1488: 5f pop %edi 1489: 63 6f 64 arpl %bp,0x64(%edi) 148c: 65 00 6c 6f 6f add %ch,%gs:0x6f(%edi,%ebp,2) 1491: 6b 61 68 65 imul $0x65,0x68(%ecx),%esp 1495: 61 popa 1496: 64 00 66 74 add %ah,%fs:0x74(%esi) 149a: 6f outsl %ds:(%esi),(%dx) 149b: 70 00 jo 149d <.debug_str+0x149d> 149d: 6d insl (%dx),%es:(%edi) 149e: 6d insl (%dx),%es:(%edi) 149f: 5f pop %edi 14a0: 73 65 jae 1507 <.debug_str+0x1507> 14a2: 67 6d addr16 insl (%dx),%es:(%di) 14a4: 65 6e outsb %gs:(%esi),(%dx) 14a6: 74 5f je 1507 <.debug_str+0x1507> 14a8: 74 00 je 14aa <.debug_str+0x14aa> 14aa: 73 65 jae 1511 <.debug_str+0x1511> 14ac: 63 75 72 arpl %si,0x72(%ebp) 14af: 69 74 79 00 45 6c 66 imul $0x33666c45,0x0(%ecx,%edi,2),%esi 14b6: 33 14b7: 32 5f 53 xor 0x53(%edi),%bl 14ba: 79 6d jns 1529 <.debug_str+0x1529> 14bc: 00 72 65 add %dh,0x65(%edx) 14bf: 66 data16 14c0: 63 6e 74 arpl %bp,0x74(%esi) 14c3: 00 5f 70 add %bl,0x70(%edi) 14c6: 61 popa 14c7: 64 00 73 74 add %dh,%fs:0x74(%ebx) 14cb: 6f outsl %ds:(%esi),(%dx) 14cc: 72 65 jb 1533 <.debug_str+0x1533> 14ce: 00 73 65 add %dh,0x65(%ebx) 14d1: 6d insl (%dx),%es:(%edi) 14d2: 61 popa 14d3: 64 fs 14d4: 6a 00 push $0x0 14d6: 6b 65 72 6e imul $0x6e,0x72(%ebp),%esp 14da: 65 gs 14db: 6c insb (%dx),%es:(%edi) 14dc: 5f pop %edi 14dd: 73 79 jae 1558 <.debug_str+0x1558> 14df: 6d insl (%dx),%es:(%edi) 14e0: 62 6f 6c bound %ebp,0x6c(%edi) 14e3: 00 6e 72 add %ch,0x72(%esi) 14e6: 5f pop %edi 14e7: 66 data16 14e8: 72 65 jb 154f <.debug_str+0x154f> 14ea: 65 00 6e 6f add %ch,%gs:0x6f(%esi) 14ee: 64 fs 14ef: 65 gs 14f0: 5f pop %edi 14f1: 70 72 jo 1565 <.debug_str+0x1565> 14f3: 65 gs 14f4: 73 65 jae 155b <.debug_str+0x155b> 14f6: 6e outsb %ds:(%esi),(%dx) 14f7: 74 5f je 1558 <.debug_str+0x1558> 14f9: 70 61 jo 155c <.debug_str+0x155c> 14fb: 67 addr16 14fc: 65 gs 14fd: 73 00 jae 14ff <.debug_str+0x14ff> 14ff: 63 6c 6f 63 arpl %bp,0x63(%edi,%ebp,2) 1503: 6b 5f 74 00 imul $0x0,0x74(%edi),%ebx 1507: 65 gs 1508: 78 69 js 1573 <.debug_str+0x1573> 150a: 74 5f je 156b <.debug_str+0x156b> 150c: 73 74 jae 1582 <.debug_str+0x1582> 150e: 61 popa 150f: 74 65 je 1576 <.debug_str+0x1576> 1511: 00 6e 72 add %ch,0x72(%esi) 1514: 5f pop %edi 1515: 73 63 jae 157a <.debug_str+0x157a> 1517: 61 popa 1518: 6e outsb %ds:(%esi),(%dx) 1519: 5f pop %edi 151a: 61 popa 151b: 63 74 69 76 arpl %si,0x76(%ecx,%ebp,2) 151f: 65 00 6d 6f add %ch,%gs:0x6f(%ebp) 1523: 64 fs 1524: 75 6c jne 1592 <.debug_str+0x1592> 1526: 65 gs 1527: 5f pop %edi 1528: 70 61 jo 158b <.debug_str+0x158b> 152a: 72 61 jb 158d <.debug_str+0x158d> 152c: 6d insl (%dx),%es:(%edi) 152d: 5f pop %edi 152e: 61 popa 152f: 74 74 je 15a5 <.debug_str+0x15a5> 1531: 72 73 jb 15a6 <.debug_str+0x15a6> 1533: 00 5f 62 add %bl,0x62(%edi) 1536: 61 popa 1537: 6e outsb %ds:(%esi),(%dx) 1538: 64 00 6e 6f add %ch,%fs:0x6f(%esi) 153c: 5f pop %edi 153d: 75 70 jne 15af <.debug_str+0x15af> 153f: 64 fs 1540: 61 popa 1541: 74 65 je 15a8 <.debug_str+0x15a8> 1543: 00 70 67 add %dh,0x67(%eax) 1546: 6c insb (%dx),%es:(%edi) 1547: 69 73 74 5f 64 61 74 imul $0x7461645f,0x74(%ebx),%esi 154e: 61 popa 154f: 00 73 68 add %dh,0x68(%ebx) 1552: 6f outsl %ds:(%esi),(%dx) 1553: 72 74 jb 15c9 <.debug_str+0x15c9> 1555: 20 75 6e and %dh,0x6e(%ebp) 1558: 73 69 jae 15c3 <.debug_str+0x15c3> 155a: 67 6e addr16 outsb %ds:(%si),(%dx) 155c: 65 64 20 69 6e and %ch,%fs:%gs:0x6e(%ecx) 1561: 74 00 je 1563 <.debug_str+0x1563> 1563: 70 6f jo 15d4 <.debug_str+0x15d4> 1565: 6c insb (%dx),%es:(%edi) 1566: 69 63 79 00 72 6c 69 imul $0x696c7200,0x79(%ebx),%esp 156d: 6d insl (%dx),%es:(%edi) 156e: 5f pop %edi 156f: 63 75 72 arpl %si,0x72(%ebp) 1572: 00 73 69 add %dh,0x69(%ebx) 1575: 67 6e addr16 outsb %ds:(%si),(%dx) 1577: 65 64 20 63 68 and %ah,%fs:%gs:0x68(%ebx) 157c: 61 popa 157d: 72 00 jb 157f <.debug_str+0x157f> 157f: 68 69 77 61 74 push $0x74617769 1584: 65 gs 1585: 72 5f jb 15e6 <.debug_str+0x15e6> 1587: 76 6d jbe 15f6 <.debug_str+0x15f6> 1589: 00 63 70 add %ah,0x70(%ebx) 158c: 75 5f jne 15ed <.debug_str+0x15ed> 158e: 74 79 je 1609 <.debug_str+0x1609> 1590: 70 65 jo 15f7 <.debug_str+0x15f7> 1592: 00 69 6f add %ch,0x6f(%ecx) 1595: 61 popa 1596: 70 69 jo 1601 <.debug_str+0x1601> 1598: 63 5f 70 arpl %bx,0x70(%edi) 159b: 68 79 73 5f 69 push $0x695f7379 15a0: 64 fs 15a1: 5f pop %edi 15a2: 6d insl (%dx),%es:(%edi) 15a3: 61 popa 15a4: 70 00 jo 15a6 <.debug_str+0x15a6> 15a6: 70 69 jo 1611 <.debug_str+0x1611> 15a8: 5f pop %edi 15a9: 62 6c 6f 63 bound %ebp,0x63(%edi,%ebp,2) 15ad: 6b 65 64 5f imul $0x5f,0x64(%ebp),%esp 15b1: 6f outsl %ds:(%esi),(%dx) 15b2: 6e outsb %ds:(%esi),(%dx) 15b3: 00 76 64 add %dh,0x64(%esi) 15b6: 73 6f jae 1627 <.debug_str+0x1627> 15b8: 00 5f 6f add %bl,0x6f(%edi) 15bb: 76 65 jbe 1622 <.debug_str+0x1622> 15bd: 72 72 jb 1631 <.debug_str+0x1631> 15bf: 75 6e jne 162f <.debug_str+0x162f> 15c1: 00 76 38 add %dh,0x38(%esi) 15c4: 36 ss 15c5: 66 data16 15c6: 6c insb (%dx),%es:(%edi) 15c7: 61 popa 15c8: 67 73 00 addr16 jae 15cb <.debug_str+0x15cb> 15cb: 63 70 75 arpl %si,0x75(%eax) 15ce: 5f pop %edi 15cf: 74 69 je 163a <.debug_str+0x163a> 15d1: 6d insl (%dx),%es:(%edi) 15d2: 65 gs 15d3: 72 73 jb 1648 <.debug_str+0x1648> 15d5: 00 64 65 66 add %ah,0x66(%ebp) 15d9: 5f pop %edi 15da: 66 data16 15db: 6c insb (%dx),%es:(%edi) 15dc: 61 popa 15dd: 67 73 00 addr16 jae 15e0 <.debug_str+0x15e0> 15e0: 75 69 jne 164b <.debug_str+0x164b> 15e2: 64 fs 15e3: 68 61 73 68 5f push $0x5f687361 15e8: 6c insb (%dx),%es:(%edi) 15e9: 69 73 74 00 6b 65 65 imul $0x65656b00,0x74(%ebx),%esi 15f0: 70 5f jo 1651 <.debug_str+0x1651> 15f2: 63 61 70 arpl %sp,0x70(%ecx) 15f5: 61 popa 15f6: 62 69 6c bound %ebp,0x6c(%ecx) 15f9: 69 74 69 65 73 00 61 imul $0x6c610073,0x65(%ecx,%ebp,2),%esi 1600: 6c 1601: 74 72 je 1675 <.debug_str+0x1675> 1603: 6f outsl %ds:(%esi),(%dx) 1604: 6f outsl %ds:(%esi),(%dx) 1605: 74 00 je 1607 <.debug_str+0x1607> 1607: 6d insl (%dx),%es:(%edi) 1608: 70 63 jo 166d <.debug_str+0x166d> 160a: 5f pop %edi 160b: 61 popa 160c: 70 69 jo 1677 <.debug_str+0x1677> 160e: 63 61 64 arpl %sp,0x64(%ecx) 1611: 64 fs 1612: 72 00 jb 1614 <.debug_str+0x1614> 1614: 73 74 jae 168a <.debug_str+0x168a> 1616: 61 popa 1617: 74 75 je 168e <.debug_str+0x168e> 1619: 73 00 jae 161b <.debug_str+0x161b> 161b: 63 6f 6d arpl %bp,0x6d(%edi) 161e: 6d insl (%dx),%es:(%edi) 161f: 00 74 69 6d add %dh,0x6d(%ecx,%ebp,2) 1623: 65 gs 1624: 73 74 jae 169a <.debug_str+0x169a> 1626: 61 popa 1627: 6d insl (%dx),%es:(%edi) 1628: 70 00 jo 162a <.debug_str+0x162a> 162a: 63 6f 75 arpl %bp,0x75(%edi) 162d: 6e outsb %ds:(%esi),(%dx) 162e: 74 00 je 1630 <.debug_str+0x1630> 1630: 53 push %ebx 1631: 4c dec %esp 1632: 45 inc %ebp 1633: 45 inc %ebp 1634: 50 push %eax 1635: 5f pop %edi 1636: 4e dec %esi 1637: 4f dec %edi 1638: 52 push %edx 1639: 4d dec %ebp 163a: 41 inc %ecx 163b: 4c dec %esp 163c: 00 70 69 add %dh,0x69(%eax) 163f: 5f pop %edi 1640: 77 61 ja 16a3 <.debug_str+0x16a3> 1642: 69 74 65 72 73 00 70 imul $0x61700073,0x72(%ebp),%esi 1649: 61 164a: 67 addr16 164b: 65 gs 164c: 73 5f jae 16ad <.debug_str+0x16ad> 164e: 73 63 jae 16b3 <.debug_str+0x16b3> 1650: 61 popa 1651: 6e outsb %ds:(%esi),(%dx) 1652: 6e outsb %ds:(%esi),(%dx) 1653: 65 64 00 5f 5f add %bl,%fs:%gs:0x5f(%edi) 1658: 73 69 jae 16c3 <.debug_str+0x16c3> 165a: 67 72 65 addr16 jb 16c2 <.debug_str+0x16c2> 165d: 73 74 jae 16d3 <.debug_str+0x16d3> 165f: 6f outsl %ds:(%esi),(%dx) 1660: 72 65 jb 16c7 <.debug_str+0x16c7> 1662: 5f pop %edi 1663: 74 00 je 1665 <.debug_str+0x1665> 1665: 63 6f 6e arpl %bp,0x6e(%edi) 1668: 73 6f jae 16d9 <.debug_str+0x16d9> 166a: 6c insb (%dx),%es:(%edi) 166b: 65 gs 166c: 5f pop %edi 166d: 70 72 jo 16e1 <.debug_str+0x16e1> 166f: 69 6e 74 6b 00 6d 6f imul $0x6f6d006b,0x74(%esi),%ebp 1676: 64 fs 1677: 76 65 jbe 16de <.debug_str+0x16de> 1679: 72 73 jb 16ee <.debug_str+0x16ee> 167b: 69 6f 6e 5f 69 6e 66 imul $0x666e695f,0x6e(%edi),%ebp 1682: 6f outsl %ds:(%esi),(%dx) 1683: 00 63 68 add %ah,0x68(%ebx) 1686: 65 63 6b 5f arpl %bp,%gs:0x5f(%ebx) 168a: 70 68 jo 16f4 <.debug_str+0x16f4> 168c: 79 73 jns 1701 <.debug_str+0x1701> 168e: 5f pop %edi 168f: 61 popa 1690: 70 69 jo 16fb <.debug_str+0x16fb> 1692: 63 69 64 arpl %bp,0x64(%ecx) 1695: 5f pop %edi 1696: 70 72 jo 170a <.debug_str+0x170a> 1698: 65 gs 1699: 73 65 jae 1700 <.debug_str+0x1700> 169b: 6e outsb %ds:(%esi),(%dx) 169c: 74 00 je 169e <.debug_str+0x169e> 169e: 70 61 jo 1701 <.debug_str+0x1701> 16a0: 64 30 00 xor %al,%fs:(%eax) 16a3: 45 inc %ebp 16a4: 6c insb (%dx),%es:(%edi) 16a5: 66 33 32 xor (%edx),%si 16a8: 5f pop %edi 16a9: 41 inc %ecx 16aa: 64 fs 16ab: 64 fs 16ac: 72 00 jb 16ae <.debug_str+0x16ae> 16ae: 6b 72 65 66 imul $0x66,0x65(%edx),%esi 16b2: 00 5f 5f add %bl,0x5f(%edi) 16b5: 5f pop %edi 16b6: 63 73 00 arpl %si,0x0(%ebx) 16b9: 5f pop %edi 16ba: 5f pop %edi 16bb: 75 31 jne 16ee <.debug_str+0x16ee> 16bd: 36 00 6c 72 75 add %ch,%ss:0x75(%edx,%esi,2) 16c2: 5f pop %edi 16c3: 6c insb (%dx),%es:(%edi) 16c4: 6f outsl %ds:(%esi),(%dx) 16c5: 63 6b 00 arpl %bp,0x0(%ebx) 16c8: 73 74 jae 173e <.debug_str+0x173e> 16ca: 61 popa 16cb: 74 65 je 1732 <.debug_str+0x1732> 16cd: 00 73 69 add %dh,0x69(%ebx) 16d0: 67 73 65 addr16 jae 1738 <.debug_str+0x1738> 16d3: 74 5f je 1734 <.debug_str+0x1734> 16d5: 74 00 je 16d7 <.debug_str+0x16d7> 16d7: 72 65 jb 173e <.debug_str+0x173e> 16d9: 63 6c 61 69 arpl %bp,0x69(%ecx) 16dd: 6d insl (%dx),%es:(%edi) 16de: 5f pop %edi 16df: 69 6e 5f 70 72 6f 67 imul $0x676f7270,0x5f(%esi),%ebp 16e6: 72 65 jb 174d <.debug_str+0x174d> 16e8: 73 73 jae 175d <.debug_str+0x175d> 16ea: 00 77 61 add %dh,0x61(%edi) 16ed: 69 74 65 72 00 67 70 imul $0x6c706700,0x72(%ebp),%esi 16f4: 6c 16f5: 5f pop %edi 16f6: 66 data16 16f7: 75 74 jne 176d <.debug_str+0x176d> 16f9: 75 72 jne 176d <.debug_str+0x176d> 16fb: 65 gs 16fc: 5f pop %edi 16fd: 73 79 jae 1778 <.debug_str+0x1778> 16ff: 6d insl (%dx),%es:(%edi) 1700: 73 00 jae 1702 <.debug_str+0x1702> 1702: 6d insl (%dx),%es:(%edi) 1703: 75 74 jne 1779 <.debug_str+0x1779> 1705: 65 gs 1706: 78 5f js 1767 <.debug_str+0x1767> 1708: 77 61 ja 176b <.debug_str+0x176b> 170a: 69 74 65 72 00 72 63 imul $0x75637200,0x72(%ebp),%esi 1711: 75 1712: 5f pop %edi 1713: 68 65 61 64 00 push $0x646165 1718: 6b 6d 65 6d imul $0x6d,0x65(%ebp),%ebp 171c: 5f pop %edi 171d: 63 61 63 arpl %sp,0x63(%ecx) 1720: 68 65 5f 74 00 push $0x745f65 1725: 66 69 6c 65 73 00 6c imul $0x6c00,0x73(%ebp),%bp 172c: 6f outsl %ds:(%esi),(%dx) 172d: 77 6d ja 179c <.debug_str+0x179c> 172f: 65 gs 1730: 6d insl (%dx),%es:(%edi) 1731: 5f pop %edi 1732: 72 65 jb 1799 <.debug_str+0x1799> 1734: 73 65 jae 179b <.debug_str+0x179b> 1736: 72 76 jb 17ae <.debug_str+0x17ae> 1738: 65 00 61 63 add %ah,%gs:0x63(%ecx) 173c: 5f pop %edi 173d: 6d insl (%dx),%es:(%edi) 173e: 69 6e 66 6c 74 00 6d imul $0x6d00746c,0x66(%esi),%ebp 1745: 6f outsl %ds:(%esi),(%dx) 1746: 64 fs 1747: 75 6c jne 17b5 <.debug_str+0x17b5> 1749: 65 gs 174a: 5f pop %edi 174b: 6b 6f 62 6a imul $0x6a,0x62(%edi),%ebp 174f: 65 63 74 00 74 arpl %si,%gs:0x74(%eax,%eax,1) 1754: 72 61 jb 17b7 <.debug_str+0x17b7> 1756: 6e outsb %ds:(%esi),(%dx) 1757: 73 5f jae 17b8 <.debug_str+0x17b8> 1759: 71 75 jno 17d0 <.debug_str+0x17d0> 175b: 61 popa 175c: 64 00 66 69 add %ah,%fs:0x69(%esi) 1760: 6c insb (%dx),%es:(%edi) 1761: 74 65 je 17c8 <.debug_str+0x17c8> 1763: 72 00 jb 1765 <.debug_str+0x1765> 1765: 5f pop %edi 1766: 5f pop %edi 1767: 6b 65 72 6e imul $0x6e,0x72(%ebp),%esp 176b: 65 gs 176c: 6c insb (%dx),%es:(%edi) 176d: 5f pop %edi 176e: 6d insl (%dx),%es:(%edi) 176f: 6f outsl %ds:(%esi),(%dx) 1770: 64 fs 1771: 65 gs 1772: 5f pop %edi 1773: 74 00 je 1775 <.debug_str+0x1775> 1775: 6e outsb %ds:(%esi),(%dx) 1776: 72 5f jb 17d7 <.debug_str+0x17d7> 1778: 70 61 jo 17db <.debug_str+0x17db> 177a: 67 addr16 177b: 65 gs 177c: 73 00 jae 177e <.debug_str+0x177e> 177e: 6d insl (%dx),%es:(%edi) 177f: 6f outsl %ds:(%esi),(%dx) 1780: 64 fs 1781: 75 6c jne 17ef <.debug_str+0x17ef> 1783: 65 00 61 70 add %ah,%gs:0x70(%ecx) 1787: 69 63 69 64 5f 74 6f imul $0x6f745f64,0x69(%ebx),%esp 178e: 5f pop %edi 178f: 63 70 75 arpl %si,0x75(%eax) 1792: 5f pop %edi 1793: 70 72 jo 1807 <.debug_str+0x1807> 1795: 65 gs 1796: 73 65 jae 17fd <.debug_str+0x17fd> 1798: 6e outsb %ds:(%esi),(%dx) 1799: 74 00 je 179b <.debug_str+0x179b> 179b: 66 data16 179c: 75 6e jne 180c <.debug_str+0x180c> 179e: 63 74 69 6f arpl %si,0x6f(%ecx,%ebp,2) 17a2: 6e outsb %ds:(%esi),(%dx) 17a3: 00 7a 6f add %bh,0x6f(%edx) 17a6: 6e outsb %ds:(%esi),(%dx) 17a7: 65 gs 17a8: 5f pop %edi 17a9: 70 61 jo 180c <.debug_str+0x180c> 17ab: 64 64 69 6e 67 00 66 imul $0x6e756600,%fs:0x67(%esi),%ebp 17b2: 75 6e 17b4: 63 00 arpl %ax,(%eax) 17b6: 5f pop %edi 17b7: 73 79 jae 1832 <.debug_str+0x1832> 17b9: 73 5f jae 181a <.debug_str+0x181a> 17bb: 70 72 jo 182f <.debug_str+0x182f> 17bd: 69 76 61 74 65 00 5f imul $0x5f006574,0x61(%esi),%esi 17c4: 5f pop %edi 17c5: 6b 65 72 6e imul $0x6e,0x72(%ebp),%esp 17c9: 65 gs 17ca: 6c insb (%dx),%es:(%edi) 17cb: 5f pop %edi 17cc: 63 6c 6f 63 arpl %bp,0x63(%edi,%ebp,2) 17d0: 6b 69 64 5f imul $0x5f,0x64(%ecx),%ebp 17d4: 74 00 je 17d6 <.debug_str+0x17d6> 17d6: 69 6e 74 5f 72 65 76 imul $0x7665725f,0x74(%esi),%ebp 17dd: 65 63 74 6f 72 arpl %si,%gs:0x72(%edi,%ebp,2) 17e2: 65 64 00 69 6e add %ch,%fs:%gs:0x6e(%ecx) 17e7: 74 32 je 181b <.debug_str+0x181b> 17e9: 31 5f 72 xor %ebx,0x72(%edi) 17ec: 65 gs 17ed: 76 65 jbe 1854 <.debug_str+0x1854> 17ef: 63 74 6f 72 arpl %si,0x72(%edi,%ebp,2) 17f3: 65 64 00 5f 5f add %bl,%fs:%gs:0x5f(%edi) 17f8: 75 33 jne 182d <.debug_str+0x182d> 17fa: 32 00 xor (%eax),%al 17fc: 73 70 jae 186e <.debug_str+0x186e> 17fe: 6c insb (%dx),%es:(%edi) 17ff: 69 63 65 5f 70 69 70 imul $0x7069705f,0x65(%ebx),%esp 1806: 65 00 74 68 72 add %dh,%gs:0x72(%eax,%ebp,2) 180b: 65 gs 180c: 61 popa 180d: 64 fs 180e: 5f pop %edi 180f: 67 72 6f addr16 jb 1881 <.debug_str+0x1881> 1812: 75 70 jne 1884 <.debug_str+0x1884> 1814: 00 76 6d add %dh,0x6d(%esi) 1817: 5f pop %edi 1818: 73 74 jae 188e <.debug_str+0x188e> 181a: 61 popa 181b: 74 00 je 181d <.debug_str+0x181d> 181d: 70 6c jo 188b <.debug_str+0x188b> 181f: 69 73 74 5f 68 65 61 imul $0x6165685f,0x74(%ebx),%esi 1826: 64 00 61 63 add %ah,%fs:0x63(%ecx) 182a: 5f pop %edi 182b: 75 74 jne 18a1 <.debug_str+0x18a1> 182d: 69 6d 65 00 6c 6f 63 imul $0x636f6c00,0x65(%ebp),%ebp 1834: 6b 65 64 5f imul $0x5f,0x64(%ebp),%esp 1838: 76 6d jbe 18a7 <.debug_str+0x18a7> 183a: 00 65 78 add %ah,0x78(%ebp) 183d: 65 63 5f 76 arpl %bx,%gs:0x76(%edi) 1841: 6d insl (%dx),%es:(%edi) 1842: 00 73 79 add %dh,0x79(%ebx) 1845: 73 76 jae 18bd <.debug_str+0x18bd> 1847: 73 65 jae 18ae <.debug_str+0x18ae> 1849: 6d insl (%dx),%es:(%edi) 184a: 00 76 6d add %dh,0x6d(%esi) 184d: 38 36 cmp %dh,(%esi) 184f: 5f pop %edi 1850: 69 6e 66 6f 00 73 61 imul $0x6173006f,0x66(%esi),%ebp 1857: 76 65 jbe 18be <.debug_str+0x18be> 1859: 64 fs 185a: 5f pop %edi 185b: 65 gs 185c: 73 70 jae 18ce <.debug_str+0x18ce> 185e: 30 00 xor %al,(%eax) 1860: 66 data16 1861: 73 61 jae 18c4 <.debug_str+0x18c4> 1863: 76 65 jbe 18ca <.debug_str+0x18ca> 1865: 00 77 61 add %dh,0x61(%edi) 1868: 69 74 5f 74 61 62 6c imul $0x656c6261,0x74(%edi,%ebx,2),%esi 186f: 65 1870: 5f pop %edi 1871: 62 69 74 bound %ebp,0x74(%ecx) 1874: 73 00 jae 1876 <.debug_str+0x1876> 1876: 78 38 js 18b0 <.debug_str+0x18b0> 1878: 36 ss 1879: 5f pop %edi 187a: 6d insl (%dx),%es:(%edi) 187b: 61 popa 187c: 78 5f js 18dd <.debug_str+0x18dd> 187e: 63 6f 72 arpl %bp,0x72(%edi) 1881: 65 gs 1882: 73 00 jae 1884 <.debug_str+0x1884> 1884: 6d insl (%dx),%es:(%edi) 1885: 70 63 jo 18ea <.debug_str+0x18ea> 1887: 5f pop %edi 1888: 66 data16 1889: 6c insb (%dx),%es:(%edi) 188a: 61 popa 188b: 67 73 00 addr16 jae 188e <.debug_str+0x188e> 188e: 63 70 75 arpl %si,0x75(%eax) 1891: 5f pop %edi 1892: 63 61 6c arpl %sp,0x6c(%ecx) 1895: 6c insb (%dx),%es:(%edi) 1896: 6f outsl %ds:(%esi),(%dx) 1897: 75 74 jne 190d <.debug_str+0x190d> 1899: 5f pop %edi 189a: 6d insl (%dx),%es:(%edi) 189b: 61 popa 189c: 70 00 jo 189e <.debug_str+0x189e> 189e: 67 72 6f addr16 jb 1910 <.debug_str+0x1910> 18a1: 75 70 jne 1913 <.debug_str+0x1913> 18a3: 5f pop %edi 18a4: 65 gs 18a5: 78 69 js 1910 <.debug_str+0x1910> 18a7: 74 5f je 1908 <.debug_str+0x1908> 18a9: 63 6f 64 arpl %bp,0x64(%edi) 18ac: 65 00 61 63 add %ah,%gs:0x63(%ecx) 18b0: 74 69 je 191b <.debug_str+0x191b> 18b2: 76 65 jbe 1919 <.debug_str+0x1919> 18b4: 5f pop %edi 18b5: 6d insl (%dx),%es:(%edi) 18b6: 6d insl (%dx),%es:(%edi) 18b7: 00 53 4c add %dl,0x4c(%ebx) 18ba: 45 inc %ebp 18bb: 45 inc %ebp 18bc: 50 push %eax 18bd: 5f pop %edi 18be: 49 dec %ecx 18bf: 4e dec %esi 18c0: 54 push %esp 18c1: 45 inc %ebp 18c2: 52 push %edx 18c3: 41 inc %ecx 18c4: 43 inc %ebx 18c5: 54 push %esp 18c6: 49 dec %ecx 18c7: 56 push %esi 18c8: 45 inc %ebp 18c9: 00 61 72 add %ah,0x72(%ecx) 18cc: 67 5f addr16 pop %edi 18ce: 73 74 jae 1944 <.debug_str+0x1944> 18d0: 61 popa 18d1: 72 74 jb 1947 <.debug_str+0x1947> 18d3: 00 69 74 add %ch,0x74(%ecx) 18d6: 5f pop %edi 18d7: 76 69 jbe 1942 <.debug_str+0x1942> 18d9: 72 74 jb 194f <.debug_str+0x194f> 18db: 5f pop %edi 18dc: 69 6e 63 72 00 74 61 imul $0x61740072,0x63(%esi),%ebp 18e3: 73 6b jae 1950 <.debug_str+0x1950> 18e5: 5f pop %edi 18e6: 6c insb (%dx),%es:(%edi) 18e7: 69 73 74 00 69 74 5f imul $0x5f746900,0x74(%ebx),%esi 18ee: 70 72 jo 1962 <.debug_str+0x1962> 18f0: 6f outsl %ds:(%esi),(%dx) 18f1: 66 5f pop %di 18f3: 69 6e 63 72 00 6d 6d imul $0x6d6d0072,0x63(%esi),%ebp 18fa: 5f pop %edi 18fb: 63 6f 6e arpl %bp,0x6e(%edi) 18fe: 74 65 je 1965 <.debug_str+0x1965> 1900: 78 74 js 1976 <.debug_str+0x1976> 1902: 5f pop %edi 1903: 74 00 je 1905 <.debug_str+0x1905> 1905: 6d insl (%dx),%es:(%edi) 1906: 70 63 jo 196b <.debug_str+0x196b> 1908: 5f pop %edi 1909: 63 68 65 arpl %bp,0x65(%eax) 190c: 63 6b 73 arpl %bp,0x73(%ebx) 190f: 75 6d jne 197e <.debug_str+0x197e> 1911: 00 70 69 add %dh,0x69(%eax) 1914: 70 65 jo 197b <.debug_str+0x197b> 1916: 5f pop %edi 1917: 69 6e 6f 64 65 5f 69 imul $0x695f6564,0x6f(%esi),%ebp 191e: 6e outsb %ds:(%esi),(%dx) 191f: 66 6f outsw %ds:(%esi),(%dx) 1921: 00 69 6f add %ch,0x6f(%ecx) 1924: 5f pop %edi 1925: 62 69 74 bound %ebp,0x74(%ecx) 1928: 6d insl (%dx),%es:(%edi) 1929: 61 popa 192a: 70 5f jo 198b <.debug_str+0x198b> 192c: 70 74 jo 19a2 <.debug_str+0x19a2> 192e: 72 00 jb 1930 <.debug_str+0x1930> 1930: 73 61 jae 1993 <.debug_str+0x1993> 1932: 76 65 jbe 1999 <.debug_str+0x1999> 1934: 64 fs 1935: 5f pop %edi 1936: 67 73 00 addr16 jae 1939 <.debug_str+0x1939> 1939: 6a 69 push $0x69 193b: 74 5f je 199c <.debug_str+0x199c> 193d: 6b 65 79 72 imul $0x72,0x79(%ebp),%esp 1941: 69 6e 67 00 63 6f 6e imul $0x6e6f6300,0x67(%esi),%ebp 1948: 74 65 je 19af <.debug_str+0x19af> 194a: 78 74 js 19c0 <.debug_str+0x19c0> 194c: 00 66 72 add %ah,0x72(%esi) 194f: 65 gs 1950: 65 gs 1951: 5f pop %edi 1952: 6c insb (%dx),%es:(%edi) 1953: 69 73 74 00 70 61 63 imul $0x63617000,0x74(%ebx),%esi 195a: 63 74 5f 73 arpl %si,0x73(%edi,%ebx,2) 195e: 74 72 je 19d2 <.debug_str+0x19d2> 1960: 75 63 jne 19c5 <.debug_str+0x19c5> 1962: 74 00 je 1964 <.debug_str+0x1964> 1964: 5f pop %edi 1965: 5f pop %edi 1966: 6e outsb %ds:(%esi),(%dx) 1967: 75 6c jne 19d5 <.debug_str+0x19d5> 1969: 6c insb (%dx),%es:(%edi) 196a: 5f pop %edi 196b: 65 gs 196c: 73 00 jae 196e <.debug_str+0x196e> 196e: 64 65 62 75 67 bound %esi,%fs:%gs:0x67(%ebp) 1973: 72 65 jb 19da <.debug_str+0x19da> 1975: 67 00 76 6d addr16 add %dh,109(%bp) 1979: 5f pop %edi 197a: 61 popa 197b: 72 65 jb 19e2 <.debug_str+0x19e2> 197d: 61 popa 197e: 5f pop %edi 197f: 73 74 jae 19f5 <.debug_str+0x19f5> 1981: 72 75 jb 19f8 <.debug_str+0x19f8> 1983: 63 74 00 6c arpl %si,0x6c(%eax,%eax,1) 1987: 69 73 74 00 73 65 6e imul $0x6e657300,0x74(%ebx),%esi 198e: 64 fs 198f: 5f pop %edi 1990: 49 dec %ecx 1991: 50 push %eax 1992: 49 dec %ecx 1993: 5f pop %edi 1994: 61 popa 1995: 6c insb (%dx),%es:(%edi) 1996: 6c insb (%dx),%es:(%edi) 1997: 00 78 6d add %bh,0x6d(%eax) 199a: 6d insl (%dx),%es:(%edi) 199b: 5f pop %edi 199c: 73 70 jae 1a0e <.debug_str+0x1a0e> 199e: 61 popa 199f: 63 65 00 arpl %sp,0x0(%ebp) 19a2: 71 75 jno 1a19 <.debug_str+0x1a19> 19a4: 69 65 73 63 62 61 74 imul $0x74616263,0x73(%ebp),%esp 19ab: 63 68 00 arpl %bp,0x0(%eax) 19ae: 78 38 js 19e8 <.debug_str+0x19e8> 19b0: 36 ss 19b1: 5f pop %edi 19b2: 70 6f jo 1a23 <.debug_str+0x1a23> 19b4: 77 65 ja 1a1b <.debug_str+0x1a1b> 19b6: 72 00 jb 19b8 <.debug_str+0x19b8> 19b8: 75 6e jne 1a28 <.debug_str+0x1a28> 19ba: 75 73 jne 1a2f <.debug_str+0x1a2f> 19bc: 65 gs 19bd: 64 fs 19be: 5f pop %edi 19bf: 63 72 63 arpl %si,0x63(%edx) 19c2: 73 00 jae 19c4 <.debug_str+0x19c4> 19c4: 63 70 75 arpl %si,0x75(%eax) 19c7: 69 64 5f 6c 65 76 65 imul $0x6c657665,0x6c(%edi,%ebx,2),%esp 19ce: 6c 19cf: 00 70 74 add %dh,0x74(%eax) 19d2: 72 61 jb 1a35 <.debug_str+0x1a35> 19d4: 63 65 5f arpl %sp,0x5f(%ebp) 19d7: 6c insb (%dx),%es:(%edi) 19d8: 69 73 74 00 74 68 72 imul $0x72687400,0x74(%ebx),%esi 19df: 65 gs 19e0: 61 popa 19e1: 64 fs 19e2: 5f pop %edi 19e3: 69 6e 66 6f 00 73 69 imul $0x6973006f,0x66(%esi),%ebp 19ea: 67 68 61 6e 64 00 addr16 push $0x646e61 19f0: 6e outsb %ds:(%esi),(%dx) 19f1: 6f outsl %ds:(%esi),(%dx) 19f2: 64 fs 19f3: 65 gs 19f4: 5f pop %edi 19f5: 73 70 jae 1a67 <.debug_str+0x1a67> 19f7: 61 popa 19f8: 6e outsb %ds:(%esi),(%dx) 19f9: 6e outsb %ds:(%esi),(%dx) 19fa: 65 gs 19fb: 64 fs 19fc: 5f pop %edi 19fd: 70 61 jo 1a60 <.debug_str+0x1a60> 19ff: 67 addr16 1a00: 65 gs 1a01: 73 00 jae 1a03 <.debug_str+0x1a03> 1a03: 5f pop %edi 1a04: 70 69 jo 1a6f <.debug_str+0x1a6f> 1a06: 64 00 6d 6d add %ch,%fs:0x6d(%ebp) 1a0a: 5f pop %edi 1a0b: 72 62 jb 1a6f <.debug_str+0x1a6f> 1a0d: 00 70 68 add %dh,0x68(%eax) 1a10: 79 73 jns 1a85 <.debug_str+0x1a85> 1a12: 69 64 5f 6d 61 73 6b imul $0x6b7361,0x6d(%edi,%ebx,2),%esp 1a19: 00 1a1a: 61 popa 1a1b: 6c insb (%dx),%es:(%edi) 1a1c: 6c insb (%dx),%es:(%edi) 1a1d: 5f pop %edi 1a1e: 75 6e jne 1a8e <.debug_str+0x1a8e> 1a20: 72 65 jb 1a87 <.debug_str+0x1a87> 1a22: 63 6c 61 69 arpl %bp,0x69(%ecx) 1a26: 6d insl (%dx),%es:(%edi) 1a27: 61 popa 1a28: 62 6c 65 00 bound %ebp,0x0(%ebp) 1a2c: 63 68 65 arpl %bp,0x65(%eax) 1a2f: 63 6b 5f arpl %bp,0x5f(%ebx) 1a32: 61 popa 1a33: 70 69 jo 1a9e <.debug_str+0x1a9e> 1a35: 63 69 64 arpl %bp,0x64(%ecx) 1a38: 5f pop %edi 1a39: 75 73 jne 1aae <.debug_str+0x1aae> 1a3b: 65 64 00 6d 70 add %ch,%fs:%gs:0x70(%ebp) 1a40: 63 5f 63 arpl %bx,0x63(%edi) 1a43: 70 75 jo 1aba <.debug_str+0x1aba> 1a45: 66 data16 1a46: 6c insb (%dx),%es:(%edi) 1a47: 61 popa 1a48: 67 00 64 65 addr16 add %ah,101(%si) 1a4c: 61 popa 1a4d: 64 00 73 63 add %dh,%fs:0x63(%ebx) 1a51: 68 65 64 5f 74 push $0x745f6465 1a56: 69 6d 65 00 6b 6f 62 imul $0x626f6b00,0x65(%ebp),%ebp 1a5d: 6a 5f push $0x5f 1a5f: 74 79 je 1ada <.debug_str+0x1ada> 1a61: 70 65 jo 1ac8 <.debug_str+0x1ac8> 1a63: 00 6c 6f 6e add %ch,0x6e(%edi,%ebp,2) 1a67: 67 20 75 6e addr16 and %dh,110(%di) 1a6b: 73 69 jae 1ad6 <.debug_str+0x1ad6> 1a6d: 67 6e addr16 outsb %ds:(%si),(%dx) 1a6f: 65 64 20 69 6e and %ch,%fs:%gs:0x6e(%ecx) 1a74: 74 00 je 1a76 <.debug_str+0x1a76> 1a76: 63 6f 72 arpl %bp,0x72(%edi) 1a79: 65 gs 1a7a: 5f pop %edi 1a7b: 73 74 jae 1af1 <.debug_str+0x1af1> 1a7d: 61 popa 1a7e: 72 74 jb 1af4 <.debug_str+0x1af4> 1a80: 75 70 jne 1af2 <.debug_str+0x1af2> 1a82: 5f pop %edi 1a83: 64 6f outsl %fs:(%esi),(%dx) 1a85: 6e outsb %ds:(%esi),(%dx) 1a86: 65 00 76 66 add %dh,%gs:0x66(%esi) 1a8a: 6f outsl %ds:(%esi),(%dx) 1a8b: 72 6b jb 1af8 <.debug_str+0x1af8> 1a8d: 5f pop %edi 1a8e: 64 6f outsl %fs:(%esi),(%dx) 1a90: 6e outsb %ds:(%esi),(%dx) 1a91: 65 00 69 74 add %ch,%gs:0x74(%ecx) 1a95: 5f pop %edi 1a96: 76 69 jbe 1b01 <.debug_str+0x1b01> 1a98: 72 74 jb 1b0e <.debug_str+0x1b0e> 1a9a: 5f pop %edi 1a9b: 65 gs 1a9c: 78 70 js 1b0e <.debug_str+0x1b0e> 1a9e: 69 72 65 73 00 65 6e imul $0x6e650073,0x65(%edx),%esi 1aa5: 74 72 je 1b19 <.debug_str+0x1b19> 1aa7: 79 00 jns 1aa9 <.debug_str+0x1aa9> 1aa9: 61 popa 1aaa: 6c insb (%dx),%es:(%edi) 1aab: 69 6d 69 74 00 6d 61 imul $0x616d0074,0x69(%ebp),%ebp 1ab2: 74 74 je 1b28 <.debug_str+0x1b28> 1ab4: 72 00 jb 1ab6 <.debug_str+0x1ab6> 1ab6: 62 6c 6f 63 bound %ebp,0x63(%edi,%ebp,2) 1aba: 6b 65 64 5f imul $0x5f,0x64(%ebp),%esp 1abe: 6f outsl %ds:(%esi),(%dx) 1abf: 6e outsb %ds:(%esi),(%dx) 1ac0: 00 6d 6d add %ch,0x6d(%ebp) 1ac3: 61 popa 1ac4: 70 5f jo 1b25 <.debug_str+0x1b25> 1ac6: 73 65 jae 1b2d <.debug_str+0x1b2d> 1ac8: 6d insl (%dx),%es:(%edi) 1ac9: 00 70 70 add %dh,0x70(%eax) 1acc: 72 65 jb 1b33 <.debug_str+0x1b33> 1ace: 76 00 jbe 1ad0 <.debug_str+0x1ad0> 1ad0: 6e outsb %ds:(%esi),(%dx) 1ad1: 6f outsl %ds:(%esi),(%dx) 1ad2: 74 69 je 1b3d <.debug_str+0x1b3d> 1ad4: 66 69 65 72 5f 6d imul $0x6d5f,0x72(%ebp),%sp 1ada: 61 popa 1adb: 73 6b jae 1b48 <.debug_str+0x1b48> 1add: 00 6d 70 add %ch,0x70(%ebp) 1ae0: 73 5f jae 1b41 <.debug_str+0x1b41> 1ae2: 6f outsl %ds:(%esi),(%dx) 1ae3: 65 gs 1ae4: 6d insl (%dx),%es:(%edi) 1ae5: 5f pop %edi 1ae6: 63 68 65 arpl %bp,0x65(%eax) 1ae9: 63 6b 00 arpl %bp,0x0(%ebx) 1aec: 75 73 jne 1b61 <.debug_str+0x1b61> 1aee: 65 gs 1aef: 72 5f jb 1b50 <.debug_str+0x1b50> 1af1: 69 64 00 6d 70 63 5f imul $0x6f5f6370,0x6d(%eax,%eax,1),%esp 1af8: 6f 1af9: 65 gs 1afa: 6d insl (%dx),%es:(%edi) 1afb: 70 74 jo 1b71 <.debug_str+0x1b71> 1afd: 72 00 jb 1aff <.debug_str+0x1aff> 1aff: 75 6e jne 1b6f <.debug_str+0x1b6f> 1b01: 73 61 jae 1b64 <.debug_str+0x1b64> 1b03: 66 data16 1b04: 65 00 73 79 add %dh,%gs:0x79(%ebx) 1b08: 6d insl (%dx),%es:(%edi) 1b09: 73 00 jae 1b0b <.debug_str+0x1b0b> 1b0b: 65 67 69 64 00 73 74 addr16 imul $0x72617473,%gs:0(%si),%esp 1b12: 61 72 1b14: 74 5f je 1b75 <.debug_str+0x1b75> 1b16: 62 72 6b bound %esi,0x6b(%edx) 1b19: 00 74 72 61 add %dh,0x61(%edx,%esi,2) 1b1d: 6e outsb %ds:(%esi),(%dx) 1b1e: 73 5f jae 1b7f <.debug_str+0x1b7f> 1b20: 67 6c addr16 insb (%dx),%es:(%di) 1b22: 6f outsl %ds:(%esi),(%dx) 1b23: 62 61 6c bound %esp,0x6c(%ecx) 1b26: 00 6e 75 add %ch,0x75(%esi) 1b29: 6d insl (%dx),%es:(%edi) 1b2a: 5f pop %edi 1b2b: 75 6e jne 1b9b <.debug_str+0x1b9b> 1b2d: 75 73 jne 1ba2 <.debug_str+0x1ba2> 1b2f: 65 gs 1b30: 64 fs 1b31: 5f pop %edi 1b32: 67 70 6c addr16 jo 1ba1 <.debug_str+0x1ba1> 1b35: 5f pop %edi 1b36: 73 79 jae 1bb1 <.debug_str+0x1bb1> 1b38: 6d insl (%dx),%es:(%edi) 1b39: 73 00 jae 1b3b <.debug_str+0x1b3b> 1b3b: 63 68 61 arpl %bp,0x61(%eax) 1b3e: 72 00 jb 1b40 <.debug_str+0x1b40> 1b40: 74 72 je 1bb4 <.debug_str+0x1bb4> 1b42: 61 popa 1b43: 6e outsb %ds:(%esi),(%dx) 1b44: 73 5f jae 1ba5 <.debug_str+0x1ba5> 1b46: 6c insb (%dx),%es:(%edi) 1b47: 6f outsl %ds:(%esi),(%dx) 1b48: 63 61 6c arpl %sp,0x6c(%ecx) 1b4b: 00 63 72 add %ah,0x72(%ebx) 1b4e: 63 73 00 arpl %si,0x0(%ebx) 1b51: 75 6e jne 1bc1 <.debug_str+0x1bc1> 1b53: 64 6f outsl %fs:(%esi),(%dx) 1b55: 5f pop %edi 1b56: 6c insb (%dx),%es:(%edi) 1b57: 69 73 74 00 6e 75 6d imul $0x6d756e00,0x74(%ebx),%esi 1b5e: 5f pop %edi 1b5f: 73 79 jae 1bda <.debug_str+0x1bda> 1b61: 6d insl (%dx),%es:(%edi) 1b62: 74 61 je 1bc5 <.debug_str+0x1bc5> 1b64: 62 00 bound %eax,(%eax) 1b66: 73 74 jae 1bdc <.debug_str+0x1bdc> 1b68: 5f pop %edi 1b69: 6e outsb %ds:(%esi),(%dx) 1b6a: 61 popa 1b6b: 6d insl (%dx),%es:(%edi) 1b6c: 65 00 6e 6f add %ch,%gs:0x6f(%esi) 1b70: 74 69 je 1bdb <.debug_str+0x1bdb> 1b72: 66 69 65 72 00 7a imul $0x7a00,0x72(%ebp),%sp 1b78: 6f outsl %ds:(%esi),(%dx) 1b79: 6e outsb %ds:(%esi),(%dx) 1b7a: 65 gs 1b7b: 5f pop %edi 1b7c: 73 74 jae 1bf2 <.debug_str+0x1bf2> 1b7e: 61 popa 1b7f: 72 74 jb 1bf5 <.debug_str+0x1bf5> 1b81: 5f pop %edi 1b82: 70 66 jo 1bea <.debug_str+0x1bea> 1b84: 6e outsb %ds:(%esi),(%dx) 1b85: 00 70 68 add %dh,0x68(%eax) 1b88: 79 73 jns 1bfd <.debug_str+0x1bfd> 1b8a: 69 64 5f 6d 61 73 6b imul $0x5f6b7361,0x6d(%edi,%ebx,2),%esp 1b91: 5f 1b92: 74 00 je 1b94 <.debug_str+0x1b94> 1b94: 73 65 jae 1bfb <.debug_str+0x1bfb> 1b96: 6c insb (%dx),%es:(%edi) 1b97: 66 5f pop %di 1b99: 65 gs 1b9a: 78 65 js 1c01 <.debug_str+0x1c01> 1b9c: 63 5f 69 arpl %bx,0x69(%edi) 1b9f: 64 00 78 38 add %bh,%fs:0x38(%eax) 1ba3: 36 ss 1ba4: 5f pop %edi 1ba5: 6d insl (%dx),%es:(%edi) 1ba6: 6f outsl %ds:(%esi),(%dx) 1ba7: 64 fs 1ba8: 65 gs 1ba9: 6c insb (%dx),%es:(%edi) 1baa: 5f pop %edi 1bab: 69 64 00 63 6f 6d 70 imul $0x6c706d6f,0x63(%eax,%eax,1),%esp 1bb2: 6c 1bb3: 65 gs 1bb4: 74 69 je 1c1f <.debug_str+0x1c1f> 1bb6: 6f outsl %ds:(%esi),(%dx) 1bb7: 6e outsb %ds:(%esi),(%dx) 1bb8: 00 73 68 add %dh,0x68(%ebx) 1bbb: 61 popa 1bbc: 72 65 jb 1c23 <.debug_str+0x1c23> 1bbe: 64 fs 1bbf: 5f pop %edi 1bc0: 70 65 jo 1c27 <.debug_str+0x1c27> 1bc2: 6e outsb %ds:(%esi),(%dx) 1bc3: 64 69 6e 67 00 6d 6f imul $0x646f6d00,%fs:0x67(%esi),%ebp 1bca: 64 1bcb: 75 6c jne 1c39 <.debug_str+0x1c39> 1bcd: 65 gs 1bce: 5f pop %edi 1bcf: 73 65 jae 1c36 <.debug_str+0x1c36> 1bd1: 63 74 5f 61 arpl %si,0x61(%edi,%ebx,2) 1bd5: 74 74 je 1c4b <.debug_str+0x1c4b> 1bd7: 72 73 jb 1c4c <.debug_str+0x1c4c> 1bd9: 00 74 69 6d add %dh,0x6d(%ecx,%ebp,2) 1bdd: 65 gs 1bde: 5f pop %edi 1bdf: 6d insl (%dx),%es:(%edi) 1be0: 61 popa 1be1: 78 65 js 1c48 <.debug_str+0x1c48> 1be3: 72 72 jb 1c57 <.debug_str+0x1c57> 1be5: 6f outsl %ds:(%esi),(%dx) 1be6: 72 00 jb 1be8 <.debug_str+0x1be8> 1be8: 72 75 jb 1c5f <.debug_str+0x1c5f> 1bea: 6e outsb %ds:(%esi),(%dx) 1beb: 5f pop %edi 1bec: 6c insb (%dx),%es:(%edi) 1bed: 69 73 74 00 73 79 73 imul $0x73797300,0x74(%ebx),%esi 1bf4: 65 6e outsb %gs:(%esi),(%dx) 1bf6: 74 65 je 1c5d <.debug_str+0x1c5d> 1bf8: 72 5f jb 1c59 <.debug_str+0x1c59> 1bfa: 63 73 00 arpl %si,0x0(%ebx) 1bfd: 6e outsb %ds:(%esi),(%dx) 1bfe: 61 popa 1bff: 6d insl (%dx),%es:(%edi) 1c00: 65 gs 1c01: 73 70 jae 1c73 <.debug_str+0x1c73> 1c03: 61 popa 1c04: 63 65 00 arpl %sp,0x0(%ebp) 1c07: 5f pop %edi 1c08: 5f pop %edi 1c09: 72 65 jb 1c70 <.debug_str+0x1c70> 1c0b: 73 74 jae 1c81 <.debug_str+0x1c81> 1c0d: 6f outsl %ds:(%esi),(%dx) 1c0e: 72 65 jb 1c75 <.debug_str+0x1c75> 1c10: 66 data16 1c11: 6e outsb %ds:(%esi),(%dx) 1c12: 5f pop %edi 1c13: 74 00 je 1c15 <.debug_str+0x1c15> 1c15: 6b 6f 62 6a imul $0x6a,0x62(%edi),%ebp 1c19: 65 63 74 00 73 arpl %si,%gs:0x73(%eax,%eax,1) 1c1e: 61 popa 1c1f: 73 5f jae 1c80 <.debug_str+0x1c80> 1c21: 73 73 jae 1c96 <.debug_str+0x1c96> 1c23: 5f pop %edi 1c24: 73 69 jae 1c8f <.debug_str+0x1c8f> 1c26: 7a 65 jp 1c8d <.debug_str+0x1c8d> 1c28: 00 73 65 add %dh,0x65(%ebx) 1c2b: 6e outsb %ds:(%esi),(%dx) 1c2c: 64 fs 1c2d: 5f pop %edi 1c2e: 49 dec %ecx 1c2f: 50 push %eax 1c30: 49 dec %ecx 1c31: 5f pop %edi 1c32: 6d insl (%dx),%es:(%edi) 1c33: 61 popa 1c34: 73 6b jae 1ca1 <.debug_str+0x1ca1> 1c36: 00 65 6c add %ah,0x6c(%ebp) 1c39: 66 33 32 xor (%edx),%si 1c3c: 5f pop %edi 1c3d: 73 79 jae 1cb8 <.debug_str+0x1cb8> 1c3f: 6d insl (%dx),%es:(%edi) 1c40: 00 61 64 add %ah,0x64(%ecx) 1c43: 64 fs 1c44: 72 5f jb 1ca5 <.debug_str+0x1ca5> 1c46: 6c insb (%dx),%es:(%edi) 1c47: 69 6d 69 74 00 6c 6f imul $0x6f6c0074,0x69(%ebp),%ebp 1c4e: 63 6b 5f arpl %bp,0x5f(%ebx) 1c51: 6b 65 79 00 imul $0x0,0x79(%ebp),%esp 1c55: 6d insl (%dx),%es:(%edi) 1c56: 6d insl (%dx),%es:(%edi) 1c57: 75 5f jne 1cb8 <.debug_str+0x1cb8> 1c59: 63 72 34 arpl %si,0x34(%edx) 1c5c: 5f pop %edi 1c5d: 66 data16 1c5e: 65 gs 1c5f: 61 popa 1c60: 74 75 je 1cd7 <.debug_str+0x1cd7> 1c62: 72 65 jb 1cc9 <.debug_str+0x1cc9> 1c64: 73 00 jae 1c66 <.debug_str+0x1c66> 1c66: 6e outsb %ds:(%esi),(%dx) 1c67: 6f outsl %ds:(%esi),(%dx) 1c68: 64 65 00 67 72 add %ah,%fs:%gs:0x72(%edi) 1c6d: 6f outsl %ds:(%esi),(%dx) 1c6e: 75 70 jne 1ce0 <.debug_str+0x1ce0> 1c70: 5f pop %edi 1c71: 65 gs 1c72: 78 69 js 1cdd <.debug_str+0x1cdd> 1c74: 74 5f je 1cd5 <.debug_str+0x1cd5> 1c76: 74 61 je 1cd9 <.debug_str+0x1cd9> 1c78: 73 6b jae 1ce5 <.debug_str+0x1ce5> 1c7a: 00 6d 70 add %ch,0x70(%ebp) 1c7d: 63 5f 63 arpl %bx,0x63(%edi) 1c80: 6f outsl %ds:(%esi),(%dx) 1c81: 6e outsb %ds:(%esi),(%dx) 1c82: 66 69 67 5f 74 72 imul $0x7274,0x5f(%edi),%sp 1c88: 61 popa 1c89: 6e outsb %ds:(%esi),(%dx) 1c8a: 73 6c jae 1cf8 <.debug_str+0x1cf8> 1c8c: 61 popa 1c8d: 74 69 je 1cf8 <.debug_str+0x1cf8> 1c8f: 6f outsl %ds:(%esi),(%dx) 1c90: 6e outsb %ds:(%esi),(%dx) 1c91: 00 73 63 add %dh,0x63(%ebx) 1c94: 72 65 jb 1cfb <.debug_str+0x1cfb> 1c96: 65 6e outsb %gs:(%esi),(%dx) 1c98: 5f pop %edi 1c99: 62 69 74 bound %ebp,0x74(%ecx) 1c9c: 6d insl (%dx),%es:(%edi) 1c9d: 61 popa 1c9e: 70 00 jo 1ca0 <.debug_str+0x1ca0> 1ca0: 6f outsl %ds:(%esi),(%dx) 1ca1: 72 69 jb 1d0c <.debug_str+0x1d0c> 1ca3: 67 5f addr16 pop %edi 1ca5: 65 gs 1ca6: 61 popa 1ca7: 78 00 js 1ca9 <.debug_str+0x1ca9> 1ca9: 64 69 64 5f 65 78 65 imul $0x636578,%fs:0x65(%edi,%ebx,2),%esp 1cb0: 63 00 1cb2: 5f pop %edi 1cb3: 73 69 jae 1d1e <.debug_str+0x1d1e> 1cb5: 66 69 65 6c 64 73 imul $0x7364,0x6c(%ebp),%sp 1cbb: 00 5f 5f add %bl,0x5f(%edi) 1cbe: 6b 65 72 6e imul $0x6e,0x72(%ebp),%esp 1cc2: 65 gs 1cc3: 6c insb (%dx),%es:(%edi) 1cc4: 5f pop %edi 1cc5: 63 6c 6f 63 arpl %bp,0x63(%edi,%ebp,2) 1cc9: 6b 5f 74 00 imul $0x0,0x74(%edi),%ebx 1ccd: 63 6c 6f 63 arpl %bp,0x63(%edi,%ebp,2) 1cd1: 6b 69 64 5f imul $0x5f,0x64(%ecx),%ebp 1cd5: 74 00 je 1cd7 <.debug_str+0x1cd7> 1cd7: 6e outsb %ds:(%esi),(%dx) 1cd8: 76 63 jbe 1d3d <.debug_str+0x1d3d> 1cda: 73 77 jae 1d53 <.debug_str+0x1d53> 1cdc: 00 6d 6f add %ch,0x6f(%ebp) 1cdf: 64 fs 1ce0: 5f pop %edi 1ce1: 61 popa 1ce2: 72 63 jb 1d47 <.debug_str+0x1d47> 1ce4: 68 5f 73 70 65 push $0x6570735f 1ce9: 63 69 66 arpl %bp,0x66(%ecx) 1cec: 69 63 00 72 77 5f 73 imul $0x735f7772,0x0(%ebx),%esp 1cf3: 65 gs 1cf4: 6d insl (%dx),%es:(%edi) 1cf5: 61 popa 1cf6: 70 68 jo 1d60 <.debug_str+0x1d60> 1cf8: 6f outsl %ds:(%esi),(%dx) 1cf9: 72 65 jb 1d60 <.debug_str+0x1d60> 1cfb: 00 6c 69 73 add %ch,0x73(%ecx,%ebp,2) 1cff: 74 5f je 1d60 <.debug_str+0x1d60> 1d01: 6c insb (%dx),%es:(%edi) 1d02: 6f outsl %ds:(%esi),(%dx) 1d03: 63 6b 00 arpl %bp,0x0(%ebx) 1d06: 7a 6f jp 1d77 <.debug_str+0x1d77> 1d08: 6e outsb %ds:(%esi),(%dx) 1d09: 65 gs 1d0a: 5f pop %edi 1d0b: 70 67 jo 1d74 <.debug_str+0x1d74> 1d0d: 64 fs 1d0e: 61 popa 1d0f: 74 00 je 1d11 <.debug_str+0x1d11> 1d11: 73 61 jae 1d74 <.debug_str+0x1d74> 1d13: 73 5f jae 1d74 <.debug_str+0x1d74> 1d15: 73 73 jae 1d8a <.debug_str+0x1d8a> 1d17: 5f pop %edi 1d18: 73 70 jae 1d8a <.debug_str+0x1d8a> 1d1a: 00 6e 72 add %ch,0x72(%esi) 1d1d: 5f pop %edi 1d1e: 61 popa 1d1f: 63 74 69 76 arpl %si,0x76(%ecx,%ebp,2) 1d23: 65 00 63 6c add %ah,%gs:0x6c(%ebx) 1d27: 75 73 jne 1d9c <.debug_str+0x1d9c> 1d29: 74 65 je 1d90 <.debug_str+0x1d90> 1d2b: 72 65 jb 1d92 <.debug_str+0x1d92> 1d2d: 64 fs 1d2e: 5f pop %edi 1d2f: 61 popa 1d30: 70 69 jo 1d9b <.debug_str+0x1d9b> 1d32: 63 5f 63 arpl %bx,0x63(%edi) 1d35: 68 65 63 6b 00 push $0x6b6365 1d3a: 66 data16 1d3b: 75 74 jne 1db1 <.debug_str+0x1db1> 1d3d: 65 gs 1d3e: 78 5f js 1d9f <.debug_str+0x1d9f> 1d40: 70 69 jo 1dab <.debug_str+0x1dab> 1d42: 5f pop %edi 1d43: 73 74 jae 1db9 <.debug_str+0x1db9> 1d45: 61 popa 1d46: 74 65 je 1dad <.debug_str+0x1dad> 1d48: 00 70 72 add %dh,0x72(%eax) 1d4b: 69 6f 5f 61 72 72 61 imul $0x61727261,0x5f(%edi),%ebp 1d52: 79 00 jns 1d54 <.debug_str+0x1d54> 1d54: 77 61 ja 1db7 <.debug_str+0x1db7> 1d56: 69 74 5f 71 75 65 75 imul $0x65756575,0x71(%edi,%ebx,2),%esi 1d5d: 65 1d5e: 5f pop %edi 1d5f: 68 65 61 64 5f push $0x5f646165 1d64: 74 00 je 1d66 <.debug_str+0x1d66> 1d66: 6c insb (%dx),%es:(%edi) 1d67: 6f outsl %ds:(%esi),(%dx) 1d68: 63 6b 00 arpl %bp,0x0(%ebx) 1d6b: 6e outsb %ds:(%esi),(%dx) 1d6c: 75 6d jne 1ddb <.debug_str+0x1ddb> 1d6e: 5f pop %edi 1d6f: 67 70 6c addr16 jo 1dde <.debug_str+0x1dde> 1d72: 5f pop %edi 1d73: 66 data16 1d74: 75 74 jne 1dea <.debug_str+0x1dea> 1d76: 75 72 jne 1dea <.debug_str+0x1dea> 1d78: 65 gs 1d79: 5f pop %edi 1d7a: 73 79 jae 1df5 <.debug_str+0x1df5> 1d7c: 6d insl (%dx),%es:(%edi) 1d7d: 73 00 jae 1d7f <.debug_str+0x1d7f> 1d7f: 6a 6f push $0x6f 1d81: 75 72 jne 1df5 <.debug_str+0x1df5> 1d83: 6e outsb %ds:(%esi),(%dx) 1d84: 61 popa 1d85: 6c insb (%dx),%es:(%edi) 1d86: 5f pop %edi 1d87: 69 6e 66 6f 00 62 6c imul $0x6c62006f,0x66(%esi),%ebp 1d8e: 6f outsl %ds:(%esi),(%dx) 1d8f: 63 6b 65 arpl %bp,0x65(%ebx) 1d92: 64 00 70 69 add %dh,%fs:0x69(%eax) 1d96: 64 fs 1d97: 5f pop %edi 1d98: 63 68 61 arpl %bp,0x61(%eax) 1d9b: 69 6e 00 73 75 70 65 imul $0x65707573,0x0(%esi),%ebp 1da2: 72 76 jb 1e1a <.debug_str+0x1e1a> 1da4: 69 73 6f 72 5f 73 74 imul $0x74735f72,0x6f(%ebx),%esi 1dab: 61 popa 1dac: 63 6b 00 arpl %bp,0x0(%ebx) 1daf: 6e outsb %ds:(%esi),(%dx) 1db0: 6f outsl %ds:(%esi),(%dx) 1db1: 64 fs 1db2: 65 gs 1db3: 5f pop %edi 1db4: 7a 6f jp 1e25 <.debug_str+0x1e25> 1db6: 6e outsb %ds:(%esi),(%dx) 1db7: 65 gs 1db8: 73 00 jae 1dba <.debug_str+0x1dba> 1dba: 6d insl (%dx),%es:(%edi) 1dbb: 61 popa 1dbc: 6a 5f push $0x5f 1dbe: 66 data16 1dbf: 6c insb (%dx),%es:(%edi) 1dc0: 74 00 je 1dc2 <.debug_str+0x1dc2> 1dc2: 69 6e 69 74 5f 61 70 imul $0x70615f74,0x69(%esi),%ebp 1dc9: 69 63 5f 6c 64 72 00 imul $0x72646c,0x5f(%ebx),%esp 1dd0: 5f pop %edi 1dd1: 61 popa 1dd2: 64 fs 1dd3: 64 fs 1dd4: 72 00 jb 1dd6 <.debug_str+0x1dd6> 1dd6: 64 fs 1dd7: 75 6d jne 1e46 <.debug_str+0x1e46> 1dd9: 70 61 jo 1e3c <.debug_str+0x1e3c> 1ddb: 62 6c 65 00 bound %ebp,0x0(%ebp) 1ddf: 72 65 jb 1e46 <.debug_str+0x1e46> 1de1: 73 74 jae 1e57 <.debug_str+0x1e57> 1de3: 61 popa 1de4: 72 74 jb 1e5a <.debug_str+0x1e5a> 1de6: 5f pop %edi 1de7: 62 6c 6f 63 bound %ebp,0x63(%edi,%ebp,2) 1deb: 6b 00 63 imul $0x63,(%eax),%eax 1dee: 61 popa 1def: 70 5f jo 1e50 <.debug_str+0x1e50> 1df1: 65 gs 1df2: 66 data16 1df3: 66 data16 1df4: 65 63 74 69 76 arpl %si,%gs:0x76(%ecx,%ebp,2) 1df9: 65 00 73 69 add %dh,%gs:0x69(%ebx) 1dfd: 5f pop %edi 1dfe: 65 gs 1dff: 72 72 jb 1e73 <.debug_str+0x1e73> 1e01: 6e outsb %ds:(%esi),(%dx) 1e02: 6f outsl %ds:(%esi),(%dx) 1e03: 00 72 61 add %dh,0x61(%edx) 1e06: 77 5f ja 1e67 <.debug_str+0x1e67> 1e08: 73 70 jae 1e7a <.debug_str+0x1e7a> 1e0a: 69 6e 6c 6f 63 6b 5f imul $0x5f6b636f,0x6c(%esi),%ebp 1e11: 74 00 je 1e13 <.debug_str+0x1e13> 1e13: 72 62 jb 1e77 <.debug_str+0x1e77> 1e15: 5f pop %edi 1e16: 6e outsb %ds:(%esi),(%dx) 1e17: 6f outsl %ds:(%esi),(%dx) 1e18: 64 65 00 63 74 add %ah,%fs:%gs:0x74(%ebx) 1e1d: 78 5f js 1e7e <.debug_str+0x1e7e> 1e1f: 6c insb (%dx),%es:(%edi) 1e20: 6f outsl %ds:(%esi),(%dx) 1e21: 63 6b 00 arpl %bp,0x0(%ebx) 1e24: 70 77 jo 1e9d <.debug_str+0x1e9d> 1e26: 64 fs 1e27: 6d insl (%dx),%es:(%edi) 1e28: 6e outsb %ds:(%esi),(%dx) 1e29: 74 00 je 1e2b <.debug_str+0x1e2b> 1e2b: 5f pop %edi 1e2c: 5f pop %edi 1e2d: 6b 65 72 6e imul $0x6e,0x72(%ebp),%esp 1e31: 65 gs 1e32: 6c insb (%dx),%es:(%edi) 1e33: 5f pop %edi 1e34: 67 69 64 33 32 5f 74 addr16 imul $0x745f32,51(%si),%esp 1e3b: 00 1e3c: 61 popa 1e3d: 63 74 69 76 arpl %si,0x76(%ecx,%ebp,2) 1e41: 65 gs 1e42: 5f pop %edi 1e43: 6c insb (%dx),%es:(%edi) 1e44: 69 73 74 00 72 63 68 imul $0x68637200,0x74(%ebx),%esi 1e4b: 61 popa 1e4c: 72 00 jb 1e4e <.debug_str+0x1e4e> 1e4e: 75 69 jne 1eb9 <.debug_str+0x1eb9> 1e50: 64 fs 1e51: 5f pop %edi 1e52: 6b 65 79 72 imul $0x72,0x79(%ebp),%esp 1e56: 69 6e 67 00 69 33 38 imul $0x38336900,0x67(%esi),%ebp 1e5d: 37 aaa 1e5e: 00 63 68 add %ah,0x68(%ebx) 1e61: 69 6c 64 72 65 6e 00 imul $0x5f006e65,0x72(%esp),%ebp 1e68: 5f 1e69: 5f pop %edi 1e6a: 5f pop %edi 1e6b: 73 73 jae 1ee0 <.debug_str+0x1ee0> 1e6d: 00 61 72 add %ah,0x72(%ecx) 1e70: 67 30 00 addr16 xor %al,(%bx,%si) 1e73: 61 popa 1e74: 72 67 jb 1edd <.debug_str+0x1edd> 1e76: 31 00 xor %eax,(%eax) 1e78: 61 popa 1e79: 72 67 jb 1ee2 <.debug_str+0x1ee2> 1e7b: 32 00 xor (%eax),%al 1e7d: 61 popa 1e7e: 72 67 jb 1ee7 <.debug_str+0x1ee7> 1e80: 33 00 xor (%eax),%eax 1e82: 6c insb (%dx),%es:(%edi) 1e83: 65 gs 1e84: 61 popa 1e85: 64 fs 1e86: 65 gs 1e87: 72 00 jb 1e89 <.debug_str+0x1e89> 1e89: 72 65 jb 1ef0 <.debug_str+0x1ef0> 1e8b: 6c insb (%dx),%es:(%edi) 1e8c: 65 gs 1e8d: 61 popa 1e8e: 73 65 jae 1ef5 <.debug_str+0x1ef5> 1e90: 00 74 61 69 add %dh,0x69(%ecx) 1e94: 6c insb (%dx),%es:(%edi) 1e95: 00 73 74 add %dh,0x74(%ebx) 1e98: 61 popa 1e99: 74 69 je 1f04 <.debug_str+0x1f04> 1e9b: 63 5f 70 arpl %bx,0x70(%edi) 1e9e: 72 69 jb 1f09 <.debug_str+0x1f09> 1ea0: 6f outsl %ds:(%esi),(%dx) 1ea1: 00 73 65 add %dh,0x65(%ebx) 1ea4: 74 5f je 1f05 <.debug_str+0x1f05> 1ea6: 63 68 69 arpl %bp,0x69(%eax) 1ea9: 6c insb (%dx),%es:(%edi) 1eaa: 64 fs 1eab: 5f pop %edi 1eac: 74 69 je 1f17 <.debug_str+0x1f17> 1eae: 64 00 70 65 add %dh,%fs:0x65(%eax) 1eb2: 72 73 jb 1f27 <.debug_str+0x1f27> 1eb4: 6f outsl %ds:(%esi),(%dx) 1eb5: 6e outsb %ds:(%esi),(%dx) 1eb6: 61 popa 1eb7: 6c insb (%dx),%es:(%edi) 1eb8: 69 74 79 00 69 6e 69 imul $0x74696e69,0x0(%ecx,%edi,2),%esi 1ebf: 74 1ec0: 5f pop %edi 1ec1: 74 65 je 1f28 <.debug_str+0x1f28> 1ec3: 78 74 js 1f39 <.debug_str+0x1f39> 1ec5: 5f pop %edi 1ec6: 73 69 jae 1f31 <.debug_str+0x1f31> 1ec8: 7a 65 jp 1f2f <.debug_str+0x1f2f> 1eca: 00 63 6e add %ah,0x6e(%ebx) 1ecd: 69 76 63 73 77 00 6d imul $0x6d007773,0x63(%esi),%esi 1ed4: 70 63 jo 1f39 <.debug_str+0x1f39> 1ed6: 5f pop %edi 1ed7: 72 65 jb 1f3e <.debug_str+0x1f3e> 1ed9: 73 65 jae 1f40 <.debug_str+0x1f40> 1edb: 72 76 jb 1f53 <.debug_str+0x1f53> 1edd: 65 64 00 63 68 add %ah,%fs:%gs:0x68(%ebx) 1ee2: 61 popa 1ee3: 6e outsb %ds:(%esi),(%dx) 1ee4: 67 65 64 00 73 73 addr16 add %dh,%fs:%gs:115(%bp,%di) 1eea: 69 7a 65 5f 74 00 63 imul $0x6300745f,0x65(%edx),%edi 1ef1: 75 72 jne 1f65 <.debug_str+0x1f65> 1ef3: 72 65 jb 1f5a <.debug_str+0x1f5a> 1ef5: 6e outsb %ds:(%esi),(%dx) 1ef6: 74 5f je 1f57 <.debug_str+0x1f57> 1ef8: 73 74 jae 1f6e <.debug_str+0x1f6e> 1efa: 61 popa 1efb: 63 6b 5f arpl %bp,0x5f(%ebx) 1efe: 70 6f jo 1f6f <.debug_str+0x1f6f> 1f00: 69 6e 74 65 72 00 6d imul $0x6d007265,0x74(%esi),%ebp 1f07: 6d insl (%dx),%es:(%edi) 1f08: 6c insb (%dx),%es:(%edi) 1f09: 69 73 74 00 73 79 73 imul $0x73797300,0x74(%ebx),%esi 1f10: 65 6e outsb %gs:(%esi),(%dx) 1f12: 74 65 je 1f79 <.debug_str+0x1f79> 1f14: 72 5f jb 1f75 <.debug_str+0x1f75> 1f16: 72 65 jb 1f7d <.debug_str+0x1f7d> 1f18: 74 75 je 1f8f <.debug_str+0x1f8f> 1f1a: 72 6e jb 1f8a <.debug_str+0x1f8a> 1f1c: 00 61 72 add %ah,0x72(%ecx) 1f1f: 67 73 00 addr16 jae 1f22 <.debug_str+0x1f22> 1f22: 63 70 75 arpl %si,0x75(%eax) 1f25: 5f pop %edi 1f26: 74 6f je 1f97 <.debug_str+0x1f97> 1f28: 5f pop %edi 1f29: 6c insb (%dx),%es:(%edi) 1f2a: 6f outsl %ds:(%esi),(%dx) 1f2b: 67 69 63 61 6c 5f 61 addr16 imul $0x70615f6c,97(%bp,%di),%esp 1f32: 70 1f33: 69 63 69 64 00 73 79 imul $0x79730064,0x69(%ebx),%esp 1f3a: 6d insl (%dx),%es:(%edi) 1f3b: 74 61 je 1f9e <.debug_str+0x1f9e> 1f3d: 62 00 bound %eax,(%eax) 1f3f: 45 inc %ebp 1f40: 6c insb (%dx),%es:(%edi) 1f41: 66 33 32 xor (%edx),%si 1f44: 5f pop %edi 1f45: 57 push %edi 1f46: 6f outsl %ds:(%esi),(%dx) 1f47: 72 64 jb 1fad <.debug_str+0x1fad> 1f49: 00 63 70 add %ah,0x70(%ebx) 1f4c: 75 5f jne 1fad <.debug_str+0x1fad> 1f4e: 76 6d jbe 1fbd <.debug_str+0x1fbd> 1f50: 5f pop %edi 1f51: 6d insl (%dx),%es:(%edi) 1f52: 61 popa 1f53: 73 6b jae 1fc0 <.debug_str+0x1fc0> 1f55: 00 6c 69 73 add %ch,0x73(%ecx,%ebp,2) 1f59: 74 5f je 1fba <.debug_str+0x1fba> 1f5b: 68 65 61 64 00 push $0x646165 1f60: 6d insl (%dx),%es:(%edi) 1f61: 61 popa 1f62: 6c insb (%dx),%es:(%edi) 1f63: 6c insb (%dx),%es:(%edi) 1f64: 6f outsl %ds:(%esi),(%dx) 1f65: 63 5f 73 arpl %bx,0x73(%edi) 1f68: 69 7a 65 73 00 73 6c imul $0x6c730073,0x65(%edx),%edi 1f6f: 65 gs 1f70: 65 gs 1f71: 70 5f jo 1fd2 <.debug_str+0x1fd2> 1f73: 74 79 je 1fee <.debug_str+0x1fee> 1f75: 70 65 jo 1fdc <.debug_str+0x1fdc> 1f77: 00 6b 74 add %ch,0x74(%ebx) 1f7a: 69 6d 65 5f 74 00 73 imul $0x7300745f,0x65(%ebp),%ebp 1f81: 74 61 je 1fe4 <.debug_str+0x1fe4> 1f83: 63 6b 5f arpl %bp,0x5f(%ebx) 1f86: 76 6d jbe 1ff5 <.debug_str+0x1ff5> 1f88: 00 64 61 74 add %ah,0x74(%ecx) 1f8c: 61 popa 1f8d: 00 73 6c add %dh,0x6c(%ebx) 1f90: 6f outsl %ds:(%esi),(%dx) 1f91: 63 6b 00 arpl %bp,0x0(%ebx) 1f94: 6b 5f 73 69 imul $0x69,0x73(%edi),%ebx 1f98: 67 61 addr16 popa 1f9a: 63 74 69 6f arpl %si,0x6f(%ecx,%ebp,2) 1f9e: 6e outsb %ds:(%esi),(%dx) 1f9f: 00 62 69 add %ah,0x69(%edx) 1fa2: 74 73 je 2017 <.debug_str+0x2017> 1fa4: 00 74 67 69 add %dh,0x69(%edi) 1fa8: 64 00 78 74 add %bh,%fs:0x74(%eax) 1fac: 69 6d 65 00 72 61 77 imul $0x77617200,0x65(%ebp),%ebp 1fb3: 5f pop %edi 1fb4: 72 77 jb 202d <.debug_str+0x202d> 1fb6: 6c insb (%dx),%es:(%edi) 1fb7: 6f outsl %ds:(%esi),(%dx) 1fb8: 63 6b 5f arpl %bp,0x5f(%ebx) 1fbb: 74 00 je 1fbd <.debug_str+0x1fbd> 1fbd: 67 70 6c addr16 jo 202c <.debug_str+0x202c> 1fc0: 5f pop %edi 1fc1: 63 72 63 arpl %si,0x63(%edx) 1fc4: 73 00 jae 1fc6 <.debug_str+0x1fc6> 1fc6: 6d insl (%dx),%es:(%edi) 1fc7: 70 63 jo 202c <.debug_str+0x202c> 1fc9: 5f pop %edi 1fca: 6c insb (%dx),%es:(%edi) 1fcb: 61 popa 1fcc: 70 69 jo 2037 <.debug_str+0x2037> 1fce: 63 00 arpl %ax,(%eax) 1fd0: 70 6f jo 2041 <.debug_str+0x2041> 1fd2: 6c insb (%dx),%es:(%edi) 1fd3: 6c insb (%dx),%es:(%edi) 1fd4: 00 63 75 add %ah,0x75(%ebx) 1fd7: 72 72 jb 204b <.debug_str+0x204b> 1fd9: 5f pop %edi 1fda: 74 61 je 203d <.debug_str+0x203d> 1fdc: 72 67 jb 2045 <.debug_str+0x2045> 1fde: 65 gs 1fdf: 74 00 je 1fe1 <.debug_str+0x1fe1> 1fe1: 75 6d jne 2050 <.debug_str+0x2050> 1fe3: 61 popa 1fe4: 73 6b jae 2051 <.debug_str+0x2051> 1fe6: 00 72 6f add %dh,0x6f(%edx) 1fe9: 62 75 73 bound %esi,0x73(%ebp) 1fec: 74 5f je 204d <.debug_str+0x204d> 1fee: 6c insb (%dx),%es:(%edi) 1fef: 69 73 74 5f 68 65 61 imul $0x6165685f,0x74(%ebx),%esi 1ff6: 64 00 76 38 add %dh,%fs:0x38(%esi) 1ffa: 36 ss 1ffb: 6d insl (%dx),%es:(%edi) 1ffc: 61 popa 1ffd: 73 6b jae 206a <.debug_str+0x206a> 1fff: 00 62 61 add %ah,0x61(%edx) 2002: 73 65 jae 2069 <.debug_str+0x2069> 2004: 00 70 69 add %dh,0x69(%eax) 2007: 5f pop %edi 2008: 73 74 jae 207e <.debug_str+0x207e> 200a: 61 popa 200b: 74 65 je 2072 <.debug_str+0x2072> 200d: 5f pop %edi 200e: 63 61 63 arpl %sp,0x63(%ecx) 2011: 68 65 00 70 72 push $0x72700065 2016: 6f outsl %ds:(%esi),(%dx) 2017: 63 65 73 arpl %sp,0x73(%ebp) 201a: 73 65 jae 2081 <.debug_str+0x2081> 201c: 73 00 jae 201e <.debug_str+0x201e> 201e: 74 6f je 208f <.debug_str+0x208f> 2020: 74 61 je 2083 <.debug_str+0x2083> 2022: 6c insb (%dx),%es:(%edi) 2023: 5f pop %edi 2024: 6c insb (%dx),%es:(%edi) 2025: 69 6e 6b 5f 63 6f 75 imul $0x756f635f,0x6b(%esi),%ebp 202c: 6e outsb %ds:(%esi),(%dx) 202d: 74 00 je 202f <.debug_str+0x202f> 202f: 63 6f 72 arpl %bp,0x72(%edi) 2032: 65 gs 2033: 5f pop %edi 2034: 73 69 jae 209f <.debug_str+0x209f> 2036: 7a 65 jp 209d <.debug_str+0x209d> 2038: 00 6d 6f add %ch,0x6f(%ebp) 203b: 64 fs 203c: 75 6c jne 20aa <.debug_str+0x20aa> 203e: 65 gs 203f: 5f pop %edi 2040: 72 65 jb 20a7 <.debug_str+0x20a7> 2042: 66 data16 2043: 00 70 65 add %dh,0x65(%eax) 2046: 72 5f jb 20a7 <.debug_str+0x20a7> 2048: 63 70 75 arpl %si,0x75(%eax) 204b: 5f pop %edi 204c: 5f pop %edi 204d: 72 63 jb 20b2 <.debug_str+0x20b2> 204f: 75 5f jne 20b0 <.debug_str+0x20b0> 2051: 62 68 5f bound %ebp,0x5f(%eax) 2054: 64 fs 2055: 61 popa 2056: 74 61 je 20b9 <.debug_str+0x20b9> 2058: 00 73 68 add %dh,0x68(%ebx) 205b: 61 popa 205c: 72 65 jb 20c3 <.debug_str+0x20c3> 205e: 64 fs 205f: 5f pop %edi 2060: 76 6d jbe 20cf <.debug_str+0x20cf> 2062: 00 75 6e add %dh,0x6e(%ebp) 2065: 75 73 jne 20da <.debug_str+0x20da> 2067: 65 gs 2068: 64 fs 2069: 5f pop %edi 206a: 67 70 6c addr16 jo 20d9 <.debug_str+0x20d9> 206d: 5f pop %edi 206e: 73 79 jae 20e9 <.debug_str+0x20e9> 2070: 6d insl (%dx),%es:(%edi) 2071: 73 00 jae 2073 <.debug_str+0x2073> 2073: 73 6f jae 20e4 <.debug_str+0x20e4> 2075: 66 data16 2076: 74 69 je 20e1 <.debug_str+0x20e1> 2078: 72 71 jb 20eb <.debug_str+0x20eb> 207a: 5f pop %edi 207b: 74 69 je 20e6 <.debug_str+0x20e6> 207d: 6d insl (%dx),%es:(%edi) 207e: 65 00 70 72 add %dh,%gs:0x72(%eax) 2082: 6f outsl %ds:(%esi),(%dx) 2083: 63 5f 6c arpl %bx,0x6c(%edi) 2086: 69 73 74 00 5f 5f 5f imul $0x5f5f5f00,0x74(%ebx),%esi 208d: 65 gs 208e: 66 data16 208f: 6c insb (%dx),%es:(%edi) 2090: 61 popa 2091: 67 73 00 addr16 jae 2094 <.debug_str+0x2094> 2094: 6d insl (%dx),%es:(%edi) 2095: 70 63 jo 20fa <.debug_str+0x20fa> 2097: 5f pop %edi 2098: 62 75 73 bound %esi,0x73(%ebp) 209b: 69 64 00 5f 5f 6b 65 imul $0x72656b5f,0x5f(%eax,%eax,1),%esp 20a2: 72 20a3: 6e outsb %ds:(%esi),(%dx) 20a4: 65 gs 20a5: 6c insb (%dx),%es:(%edi) 20a6: 5f pop %edi 20a7: 74 69 je 2112 <.debug_str+0x2112> 20a9: 6d insl (%dx),%es:(%edi) 20aa: 65 gs 20ab: 5f pop %edi 20ac: 74 00 je 20ae <.debug_str+0x20ae> 20ae: 75 6e jne 211e <.debug_str+0x211e> 20b0: 6d insl (%dx),%es:(%edi) 20b1: 61 popa 20b2: 70 5f jo 2113 <.debug_str+0x2113> 20b4: 61 popa 20b5: 72 65 jb 211c <.debug_str+0x211c> 20b7: 61 popa 20b8: 00 75 65 add %dh,0x65(%ebp) 20bb: 76 65 jbe 2122 <.debug_str+0x2122> 20bd: 6e outsb %ds:(%esi),(%dx) 20be: 74 00 je 20c0 <.debug_str+0x20c0> 20c0: 65 gs 20c1: 78 70 js 2133 <.debug_str+0x2133> 20c3: 69 72 65 73 00 70 72 imul $0x72700073,0x65(%edx),%esi 20ca: 6f outsl %ds:(%esi),(%dx) 20cb: 63 65 73 arpl %sp,0x73(%ebp) 20ce: 73 5f jae 212f <.debug_str+0x212f> 20d0: 6b 65 79 72 imul $0x72,0x79(%ebp),%esp 20d4: 69 6e 67 00 6d 70 5f imul $0x5f706d00,0x67(%esi),%ebp 20db: 63 6f 6e arpl %bp,0x6e(%edi) 20de: 66 69 67 5f 74 61 imul $0x6174,0x5f(%edi),%sp 20e4: 62 6c 65 00 bound %ebp,0x0(%ebp) 20e8: 69 6e 74 5f 64 65 6c imul $0x6c65645f,0x74(%esi),%ebp 20ef: 69 76 65 72 79 5f 6d imul $0x6d5f7972,0x65(%esi),%esi 20f6: 6f outsl %ds:(%esi),(%dx) 20f7: 64 65 00 5f 73 add %bl,%fs:%gs:0x73(%edi) 20fc: 69 67 66 61 75 6c 74 imul $0x746c7561,0x66(%edi),%esp 2103: 00 6d 70 add %ch,0x70(%ebp) 2106: 63 5f 63 arpl %bx,0x63(%edi) 2109: 70 75 jo 2180 <.debug_str+0x2180> 210b: 66 data16 210c: 65 gs 210d: 61 popa 210e: 74 75 je 2185 <.debug_str+0x2185> 2110: 72 65 jb 2177 <.debug_str+0x2177> 2112: 00 6d 6f add %ch,0x6f(%ebp) 2115: 64 fs 2116: 65 gs 2117: 5f pop %edi 2118: 74 00 je 211a <.debug_str+0x211a> 211a: 75 73 jne 218f <.debug_str+0x218f> 211c: 65 gs 211d: 72 5f jb 217e <.debug_str+0x217e> 211f: 73 74 jae 2195 <.debug_str+0x2195> 2121: 72 75 jb 2198 <.debug_str+0x2198> 2123: 63 74 00 63 arpl %si,0x63(%eax,%eax,1) 2127: 61 popa 2128: 70 5f jo 2189 <.debug_str+0x2189> 212a: 69 6e 68 65 72 69 74 imul $0x74697265,0x68(%esi),%ebp 2131: 61 popa 2132: 62 6c 65 00 bound %ebp,0x0(%ebp) 2136: 74 76 je 21ae <.debug_str+0x21ae> 2138: 5f pop %edi 2139: 73 65 jae 21a0 <.debug_str+0x21a0> 213b: 63 00 arpl %ax,(%eax) 213d: 73 74 jae 21b3 <.debug_str+0x21b3> 213f: 5f pop %edi 2140: 6f outsl %ds:(%esi),(%dx) 2141: 74 68 je 21ab <.debug_str+0x21ab> 2143: 65 gs 2144: 72 00 jb 2146 <.debug_str+0x2146> 2146: 6c insb (%dx),%es:(%edi) 2147: 6f outsl %ds:(%esi),(%dx) 2148: 6e outsb %ds:(%esi),(%dx) 2149: 67 20 6c 6f addr16 and %ch,111(%si) 214d: 6e outsb %ds:(%esi),(%dx) 214e: 67 20 75 6e addr16 and %dh,110(%di) 2152: 73 69 jae 21bd <.debug_str+0x21bd> 2154: 67 6e addr16 outsb %ds:(%si),(%dx) 2156: 65 64 20 69 6e and %ch,%fs:%gs:0x6e(%ecx) 215b: 74 00 je 215d <.debug_str+0x215d> 215d: 73 61 jae 21c0 <.debug_str+0x21c0> 215f: 5f pop %edi 2160: 68 61 6e 64 6c push $0x6c646e61 2165: 65 gs 2166: 72 00 jb 2168 <.debug_str+0x2168> 2168: 6d insl (%dx),%es:(%edi) 2169: 70 63 jo 21ce <.debug_str+0x21ce> 216b: 5f pop %edi 216c: 74 79 je 21e7 <.debug_str+0x21e7> 216e: 70 65 jo 21d5 <.debug_str+0x21d5> 2170: 00 6e 78 add %ch,0x78(%esi) 2173: 74 74 je 21e9 <.debug_str+0x21e9> 2175: 61 popa 2176: 69 6c 00 70 72 65 73 imul $0x65736572,0x70(%eax,%eax,1),%ebp 217d: 65 217e: 6e outsb %ds:(%esi),(%dx) 217f: 74 5f je 21e0 <.debug_str+0x21e0> 2181: 70 61 jo 21e4 <.debug_str+0x21e4> 2183: 67 addr16 2184: 65 gs 2185: 73 00 jae 2187 <.debug_str+0x2187> 2187: 74 69 je 21f2 <.debug_str+0x21f2> 2189: 6d insl (%dx),%es:(%edi) 218a: 65 gs 218b: 5f pop %edi 218c: 73 6c jae 21fa <.debug_str+0x21fa> 218e: 69 63 65 00 69 6e 74 imul $0x746e6900,0x65(%ebx),%esp 2195: 65 gs 2196: 72 6e jb 2206 <.debug_str+0x2206> 2198: 61 popa 2199: 6c insb (%dx),%es:(%edi) 219a: 5f pop %edi 219b: 70 61 jo 21fe <.debug_str+0x21fe> 219d: 67 addr16 219e: 65 gs 219f: 73 00 jae 21a1 <.debug_str+0x21a1> 21a1: 64 fs 21a2: 65 gs 21a3: 73 63 jae 2208 <.debug_str+0x2208> 21a5: 5f pop %edi 21a6: 73 74 jae 221c <.debug_str+0x221c> 21a8: 72 75 jb 221f <.debug_str+0x221f> 21aa: 63 74 00 6b arpl %si,0x6b(%eax,%eax,1) 21ae: 65 gs 21af: 72 6e jb 221f <.debug_str+0x221f> 21b1: 65 gs 21b2: 6c insb (%dx),%es:(%edi) 21b3: 5f pop %edi 21b4: 63 61 70 arpl %sp,0x70(%ecx) 21b7: 5f pop %edi 21b8: 74 00 je 21ba <.debug_str+0x21ba> 21ba: 61 popa 21bb: 72 63 jb 2220 <.debug_str+0x2220> 21bd: 68 00 6d 6d 61 push $0x616d6d00 21c2: 70 5f jo 2223 <.debug_str+0x2223> 21c4: 63 61 63 arpl %sp,0x63(%ecx) 21c7: 68 65 00 72 62 push $0x62720065 21cc: 5f pop %edi 21cd: 6c insb (%dx),%es:(%edi) 21ce: 65 gs 21cf: 66 data16 21d0: 74 00 je 21d2 <.debug_str+0x21d2> 21d2: 45 inc %ebp 21d3: 6c insb (%dx),%es:(%edi) 21d4: 66 33 32 xor (%edx),%si 21d7: 5f pop %edi 21d8: 48 dec %eax 21d9: 61 popa 21da: 6c insb (%dx),%es:(%edi) 21db: 66 data16 21dc: 00 69 33 add %ch,0x33(%ecx) 21df: 38 37 cmp %dh,(%edi) 21e1: 5f pop %edi 21e2: 66 data16 21e3: 73 61 jae 2246 <.debug_str+0x2246> 21e5: 76 65 jbe 224c <.debug_str+0x224c> 21e7: 5f pop %edi 21e8: 73 74 jae 225e <.debug_str+0x225e> 21ea: 72 75 jb 2261 <.debug_str+0x2261> 21ec: 63 74 00 65 arpl %si,0x65(%eax,%eax,1) 21f0: 66 data16 21f1: 6c insb (%dx),%es:(%edi) 21f2: 61 popa 21f3: 67 73 00 addr16 jae 21f6 <.debug_str+0x21f6> 21f6: 72 65 jb 225d <.debug_str+0x225d> 21f8: 73 6f jae 2269 <.debug_str+0x2269> 21fa: 6c insb (%dx),%es:(%edi) 21fb: 75 74 jne 2271 <.debug_str+0x2271> 21fd: 69 6f 6e 00 75 74 69 imul $0x69747500,0x6e(%edi),%ebp 2204: 6d insl (%dx),%es:(%edi) 2205: 65 00 70 72 add %dh,%gs:0x72(%eax) 2209: 6f outsl %ds:(%esi),(%dx) 220a: 63 5f 6e arpl %bx,0x6e(%edi) 220d: 65 gs 220e: 78 74 js 2284 <.debug_str+0x2284> 2210: 00 76 66 add %dh,0x66(%esi) 2213: 73 6d jae 2282 <.debug_str+0x2282> 2215: 6f outsl %ds:(%esi),(%dx) 2216: 75 6e jne 2286 <.debug_str+0x2286> 2218: 74 00 je 221a <.debug_str+0x221a> 221a: 61 popa 221b: 63 74 69 6f arpl %si,0x6f(%ecx,%ebp,2) 221f: 6e outsb %ds:(%esi),(%dx) 2220: 00 72 62 add %dh,0x62(%edx) 2223: 5f pop %edi 2224: 72 6f jb 2295 <.debug_str+0x2295> 2226: 6f outsl %ds:(%esi),(%dx) 2227: 74 00 je 2229 <.debug_str+0x2229> 2229: 73 67 jae 2292 <.debug_str+0x2292> 222b: 69 64 00 73 69 67 76 imul $0x61766769,0x73(%eax,%eax,1),%esp 2232: 61 2233: 6c insb (%dx),%es:(%edi) 2234: 00 71 73 add %dh,0x73(%ecx) 2237: 5f pop %edi 2238: 70 65 jo 229f <.debug_str+0x229f> 223a: 6e outsb %ds:(%esi),(%dx) 223b: 64 69 6e 67 00 72 6c imul $0x696c7200,%fs:0x67(%esi),%ebp 2242: 69 2243: 6d insl (%dx),%es:(%edi) 2244: 00 6c 6f 6f add %ch,0x6f(%edi,%ebp,2) 2248: 70 73 jo 22bd <.debug_str+0x22bd> 224a: 5f pop %edi 224b: 70 65 jo 22b2 <.debug_str+0x22b2> 224d: 72 5f jb 22ae <.debug_str+0x22ae> 224f: 6a 69 push $0x69 2251: 66 data16 2252: 66 data16 2253: 79 00 jns 2255 <.debug_str+0x2255> 2255: 77 71 ja 22c8 <.debug_str+0x22c8> 2257: 5f pop %edi 2258: 64 fs 2259: 61 popa 225a: 74 61 je 22bd <.debug_str+0x22bd> 225c: 00 61 74 add %ah,0x74(%ecx) 225f: 6f outsl %ds:(%esi),(%dx) 2260: 6d insl (%dx),%es:(%edi) 2261: 69 63 5f 6c 6f 6e 67 imul $0x676e6f6c,0x5f(%ebx),%esp 2268: 5f pop %edi 2269: 74 00 je 226b <.debug_str+0x226b> 226b: 61 popa 226c: 72 72 jb 22e0 <.debug_str+0x22e0> 226e: 61 popa 226f: 79 00 jns 2271 <.debug_str+0x2271> 2271: 63 75 74 arpl %si,0x74(%ebp) 2274: 69 6d 65 00 6d 70 63 imul $0x63706d00,0x65(%ebp),%ebp 227b: 5f pop %edi 227c: 62 75 73 bound %esi,0x73(%ebp) 227f: 74 79 je 22fa <.debug_str+0x22fa> 2281: 70 65 jo 22e8 <.debug_str+0x22e8> 2283: 00 6d 78 add %ch,0x78(%ebp) 2286: 63 73 72 arpl %si,0x72(%ebx) 2289: 5f pop %edi 228a: 6d insl (%dx),%es:(%edi) 228b: 61 popa 228c: 73 6b jae 22f9 <.debug_str+0x22f9> 228e: 00 77 6f add %dh,0x6f(%edi) 2291: 72 6b jb 22fe <.debug_str+0x22fe> 2293: 5f pop %edi 2294: 73 74 jae 230a <.debug_str+0x230a> 2296: 72 75 jb 230d <.debug_str+0x230d> 2298: 63 74 00 67 arpl %si,0x67(%eax,%eax,1) 229c: 65 gs 229d: 74 5f je 22fe <.debug_str+0x22fe> 229f: 61 popa 22a0: 70 69 jo 230b <.debug_str+0x230b> 22a2: 63 5f 69 arpl %bx,0x69(%edi) 22a5: 64 00 5f 5f add %bl,%fs:0x5f(%edi) 22a9: 5f pop %edi 22aa: 6f outsl %ds:(%esi),(%dx) 22ab: 72 69 jb 2316 <.debug_str+0x2316> 22ad: 67 5f addr16 pop %edi 22af: 65 69 70 00 71 6c 65 imul $0x6e656c71,%gs:0x0(%eax),%esi 22b6: 6e 22b7: 00 67 70 add %ah,0x70(%edi) 22ba: 6c insb (%dx),%es:(%edi) 22bb: 5f pop %edi 22bc: 66 data16 22bd: 75 74 jne 2333 <.debug_str+0x2333> 22bf: 75 72 jne 2333 <.debug_str+0x2333> 22c1: 65 gs 22c2: 5f pop %edi 22c3: 63 72 63 arpl %si,0x63(%edx) 22c6: 73 00 jae 22c8 <.debug_str+0x22c8> 22c8: 74 69 je 2333 <.debug_str+0x2333> 22ca: 6d insl (%dx),%es:(%edi) 22cb: 65 gs 22cc: 5f pop %edi 22cd: 73 74 jae 2343 <.debug_str+0x2343> 22cf: 61 popa 22d0: 74 75 je 2347 <.debug_str+0x2347> 22d2: 73 00 jae 22d4 <.debug_str+0x22d4> 22d4: 6e outsb %ds:(%esi),(%dx) 22d5: 72 5f jb 2336 <.debug_str+0x2336> 22d7: 73 63 jae 233c <.debug_str+0x233c> 22d9: 61 popa 22da: 6e outsb %ds:(%esi),(%dx) 22db: 5f pop %edi 22dc: 69 6e 61 63 74 69 76 imul $0x76697463,0x61(%esi),%ebp 22e3: 65 00 6b 74 add %ch,%gs:0x74(%ebx) 22e7: 79 70 jns 2359 <.debug_str+0x2359> 22e9: 65 00 6d 70 add %ch,%gs:0x70(%ebp) 22ed: 63 5f 6c arpl %bx,0x6c(%edi) 22f0: 65 6e outsb %gs:(%esi),(%dx) 22f2: 67 74 68 addr16 je 235d <.debug_str+0x235d> 22f5: 00 68 61 add %ch,0x61(%eax) 22f8: 72 64 jb 235e <.debug_str+0x235e> 22fa: 5f pop %edi 22fb: 6d insl (%dx),%es:(%edi) 22fc: 61 popa 22fd: 74 68 je 2367 <.debug_str+0x2367> 22ff: 00 74 68 72 add %dh,0x72(%eax,%ebp,2) 2303: 65 gs 2304: 61 popa 2305: 64 00 61 6c add %ah,%fs:0x6c(%ecx) 2309: 6c insb (%dx),%es:(%edi) 230a: 6f outsl %ds:(%esi),(%dx) 230b: 63 5f 6c arpl %bx,0x6c(%edi) 230e: 6f outsl %ds:(%esi),(%dx) 230f: 63 6b 00 arpl %bp,0x0(%ebx) 2312: 73 69 jae 237d <.debug_str+0x237d> 2314: 67 69 6e 66 6f 5f 74 addr16 imul $0x745f6f,102(%bp),%ebp 231b: 00 231c: 75 6e jne 238c <.debug_str+0x238c> 231e: 75 73 jne 2393 <.debug_str+0x2393> 2320: 65 gs 2321: 64 fs 2322: 5f pop %edi 2323: 73 79 jae 239e <.debug_str+0x239e> 2325: 6d insl (%dx),%es:(%edi) 2326: 73 00 jae 2328 <.debug_str+0x2328> 2328: 6f outsl %ds:(%esi),(%dx) 2329: 6f outsl %ds:(%esi),(%dx) 232a: 6d insl (%dx),%es:(%edi) 232b: 6b 69 6c 6c imul $0x6c,0x6c(%ecx),%ebp 232f: 61 popa 2330: 64 fs 2331: 6a 00 push $0x0 2333: 73 74 jae 23a9 <.debug_str+0x23a9> 2335: 61 popa 2336: 72 74 jb 23ac <.debug_str+0x23ac> 2338: 5f pop %edi 2339: 64 fs 233a: 61 popa 233b: 74 61 je 239e <.debug_str+0x239e> 233d: 00 61 63 add %ah,0x63(%ecx) 2340: 63 74 5f 73 arpl %si,0x73(%edi,%ebx,2) 2344: 74 69 je 23af <.debug_str+0x23af> 2346: 6d insl (%dx),%es:(%edi) 2347: 65 gs 2348: 78 70 js 23ba <.debug_str+0x23ba> 234a: 64 00 5f 5f add %bl,%fs:0x5f(%edi) 234e: 5f pop %edi 234f: 65 gs 2350: 61 popa 2351: 78 00 js 2353 <.debug_str+0x2353> 2353: 70 72 jo 23c7 <.debug_str+0x23c7> 2355: 69 6f 5f 6c 69 73 74 imul $0x7473696c,0x5f(%edi),%ebp 235c: 00 6d 70 add %ch,0x70(%ebp) 235f: 63 5f 61 arpl %bx,0x61(%edi) 2362: 70 69 jo 23cd <.debug_str+0x23cd> 2364: 63 5f 69 arpl %bx,0x69(%edi) 2367: 64 00 6d 70 add %ch,%fs:0x70(%ebp) 236b: 63 5f 6f arpl %bx,0x6f(%edi) 236e: 65 gs 236f: 6d insl (%dx),%es:(%edi) 2370: 63 6f 75 arpl %bp,0x75(%edi) 2373: 6e outsb %ds:(%esi),(%dx) 2374: 74 00 je 2376 <.debug_str+0x2376> 2376: 61 popa 2377: 63 70 69 arpl %si,0x69(%eax) 237a: 5f pop %edi 237b: 70 63 jo 23e0 <.debug_str+0x23e0> 237d: 69 5f 64 69 73 61 62 imul $0x62617369,0x64(%edi),%ebx 2384: 6c insb (%dx),%es:(%edi) 2385: 65 64 00 67 72 add %ah,%fs:%gs:0x72(%edi) 238a: 6f outsl %ds:(%esi),(%dx) 238b: 75 70 jne 23fd <.debug_str+0x23fd> 238d: 5f pop %edi 238e: 69 6e 66 6f 00 6c 6f imul $0x6f6c006f,0x66(%esi),%ebp 2395: 6e outsb %ds:(%esi),(%dx) 2396: 67 20 6c 6f addr16 and %ch,111(%si) 239a: 6e outsb %ds:(%esi),(%dx) 239b: 67 20 69 6e addr16 and %ch,110(%bx,%di) 239f: 74 00 je 23a1 <.debug_str+0x23a1> 23a1: 72 65 jb 2408 <.debug_str+0x2408> 23a3: 71 73 jno 2418 <.debug_str+0x2418> 23a5: 5f pop %edi 23a6: 61 popa 23a7: 63 74 69 76 arpl %si,0x76(%ecx,%ebp,2) 23ab: 65 00 72 65 add %dh,%gs:0x65(%edx) 23af: 73 65 jae 2416 <.debug_str+0x2416> 23b1: 72 76 jb 2429 <.debug_str+0x2429> 23b3: 65 gs 23b4: 64 fs 23b5: 5f pop %edi 23b6: 76 6d jbe 2425 <.debug_str+0x2425> 23b8: 00 6e 75 add %ch,0x75(%esi) 23bb: 6d insl (%dx),%es:(%edi) 23bc: 5f pop %edi 23bd: 67 70 6c addr16 jo 242c <.debug_str+0x242c> 23c0: 5f pop %edi 23c1: 73 79 jae 243c <.debug_str+0x243c> 23c3: 6d insl (%dx),%es:(%edi) 23c4: 73 00 jae 23c6 <.debug_str+0x23c6> 23c6: 61 popa 23c7: 63 70 69 arpl %si,0x69(%eax) 23ca: 5f pop %edi 23cb: 64 69 73 61 62 6c 65 imul $0x64656c62,%fs:0x61(%ebx),%esi 23d2: 64 23d3: 00 5f 5f add %bl,0x5f(%edi) 23d6: 5f pop %edi 23d7: 65 62 70 00 bound %esi,%gs:0x0(%eax) 23db: 74 76 je 2453 <.debug_str+0x2453> 23dd: 5f pop %edi 23de: 6e outsb %ds:(%esi),(%dx) 23df: 73 65 jae 2446 <.debug_str+0x2446> 23e1: 63 00 arpl %ax,(%eax) 23e3: 68 6c 69 73 74 push $0x7473696c 23e8: 5f pop %edi 23e9: 68 65 61 64 00 push $0x646165 23ee: 6d insl (%dx),%es:(%edi) 23ef: 70 63 jo 2454 <.debug_str+0x2454> 23f1: 5f pop %edi 23f2: 63 6f 6e arpl %bp,0x6e(%edi) 23f5: 66 69 67 5f 70 72 imul $0x7270,0x5f(%edi),%sp 23fb: 6f outsl %ds:(%esi),(%dx) 23fc: 63 65 73 arpl %sp,0x73(%ebp) 23ff: 73 6f jae 2470 <.debug_str+0x2470> 2401: 72 00 jb 2403 <.debug_str+0x2403> 2403: 73 69 jae 246e <.debug_str+0x246e> 2405: 67 68 61 6e 64 5f addr16 push $0x5f646e61 240b: 73 74 jae 2481 <.debug_str+0x2481> 240d: 72 75 jb 2484 <.debug_str+0x2484> 240f: 63 74 00 73 arpl %si,0x73(%eax,%eax,1) 2413: 69 73 5f 61 70 69 63 imul $0x63697061,0x5f(%ebx),%esi 241a: 5f pop %edi 241b: 62 75 67 bound %esi,0x67(%ebp) 241e: 00 6c 6f 63 add %ch,0x63(%edi,%ebp,2) 2422: 61 popa 2423: 6c insb (%dx),%es:(%edi) 2424: 5f pop %edi 2425: 74 00 je 2427 <.debug_str+0x2427> 2427: 5f pop %edi 2428: 5f pop %edi 2429: 63 73 68 arpl %si,0x68(%ebx) 242c: 00 63 73 add %ah,0x73(%ebx) 242f: 5f pop %edi 2430: 63 61 63 arpl %sp,0x63(%ecx) 2433: 68 65 70 00 6c push $0x6c007065 2438: 69 6e 6b 5f 63 6f 75 imul $0x756f635f,0x6b(%esi),%ebp 243f: 6e outsb %ds:(%esi),(%dx) 2440: 74 00 je 2442 <.debug_str+0x2442> 2442: 6e outsb %ds:(%esi),(%dx) 2443: 72 5f jb 24a4 <.debug_str+0x24a4> 2445: 70 74 jo 24bb <.debug_str+0x24bb> 2447: 65 gs 2448: 73 00 jae 244a <.debug_str+0x244a> 244a: 6e outsb %ds:(%esi),(%dx) 244b: 78 74 js 24c1 <.debug_str+0x24c1> 244d: 6c insb (%dx),%es:(%edi) 244e: 69 73 74 00 77 63 68 imul $0x68637700,0x74(%ebx),%esi 2455: 61 popa 2456: 72 00 jb 2458 <.debug_str+0x2458> 2458: 4d dec %ebp 2459: 4f dec %edi 245a: 44 inc %esp 245b: 55 push %ebp 245c: 4c dec %esp 245d: 45 inc %ebp 245e: 5f pop %edi 245f: 53 push %ebx 2460: 54 push %esp 2461: 41 inc %ecx 2462: 54 push %esp 2463: 45 inc %ebp 2464: 5f pop %edi 2465: 43 inc %ebx 2466: 4f dec %edi 2467: 4d dec %ebp 2468: 49 dec %ecx 2469: 4e dec %esi 246a: 47 inc %edi 246b: 00 75 73 add %dh,0x73(%ebp) 246e: 65 gs 246f: 72 00 jb 2471 <.debug_str+0x2471> 2471: 62 6c 69 6d bound %ebp,0x6d(%ecx,%ebp,2) 2475: 69 74 00 74 68 72 65 imul $0x61657268,0x74(%eax,%eax,1),%esi 247c: 61 247d: 64 fs 247e: 5f pop %edi 247f: 73 74 jae 24f5 <.debug_str+0x24f5> 2481: 72 75 jb 24f8 <.debug_str+0x24f8> 2483: 63 74 00 65 arpl %si,0x65(%eax,%eax,1) 2487: 6e outsb %ds:(%esi),(%dx) 2488: 61 popa 2489: 62 6c 65 5f bound %ebp,0x5f(%ebp) 248d: 61 popa 248e: 70 69 jo 24f9 <.debug_str+0x24f9> 2490: 63 5f 6d arpl %bx,0x6d(%edi) 2493: 6f outsl %ds:(%esi),(%dx) 2494: 64 65 00 74 61 73 add %dh,%fs:%gs:0x73(%ecx) 249a: 6b 00 61 imul $0x61,(%eax),%eax 249d: 70 69 jo 2508 <.debug_str+0x2508> 249f: 63 5f 69 arpl %bx,0x69(%edi) 24a2: 64 fs 24a3: 5f pop %edi 24a4: 6d insl (%dx),%es:(%edi) 24a5: 61 popa 24a6: 73 6b jae 2513 <.debug_str+0x2513> 24a8: 00 61 69 add %ah,0x69(%ecx) 24ab: 6f outsl %ds:(%esi),(%dx) 24ac: 5f pop %edi 24ad: 72 69 jb 2518 <.debug_str+0x2518> 24af: 6e outsb %ds:(%esi),(%dx) 24b0: 67 5f addr16 pop %edi 24b2: 69 6e 66 6f 00 70 65 imul $0x6570006f,0x66(%esi),%ebp 24b9: 72 63 jb 251e <.debug_str+0x251e> 24bb: 70 75 jo 2532 <.debug_str+0x2532> 24bd: 00 65 6e add %ah,0x6e(%ebp) 24c0: 64 fs 24c1: 5f pop %edi 24c2: 63 6f 64 arpl %bp,0x64(%edi) 24c5: 65 00 73 65 add %dh,%gs:0x65(%ebx) 24c9: 6e outsb %ds:(%esi),(%dx) 24ca: 64 fs 24cb: 5f pop %edi 24cc: 49 dec %ecx 24cd: 50 push %eax 24ce: 49 dec %ecx 24cf: 5f pop %edi 24d0: 61 popa 24d1: 6c insb (%dx),%es:(%edi) 24d2: 6c insb (%dx),%es:(%edi) 24d3: 62 75 74 bound %esi,0x74(%ebp) 24d6: 73 65 jae 253d <.debug_str+0x253d> 24d8: 6c insb (%dx),%es:(%edi) 24d9: 66 data16 24da: 00 63 61 add %ah,0x61(%ebx) 24dd: 63 68 65 arpl %bp,0x65(%eax) 24e0: 64 fs 24e1: 5f pop %edi 24e2: 68 6f 6c 65 5f push $0x5f656c6f 24e7: 73 69 jae 2552 <.debug_str+0x2552> 24e9: 7a 65 jp 2550 <.debug_str+0x2550> 24eb: 00 70 61 add %dh,0x61(%eax) 24ee: 72 65 jb 2555 <.debug_str+0x2555> 24f0: 6e outsb %ds:(%esi),(%dx) 24f1: 74 00 je 24f3 <.debug_str+0x24f3> 24f3: 68 72 74 69 6d push $0x6d697472 24f8: 65 gs 24f9: 72 5f jb 255a <.debug_str+0x255a> 24fb: 62 61 73 bound %esp,0x73(%ecx) 24fe: 65 00 65 73 add %ah,%gs:0x73(%ebp) 2502: 70 30 jo 2534 <.debug_str+0x2534> 2504: 00 69 6e add %ch,0x6e(%ecx) 2507: 6f outsl %ds:(%esi),(%dx) 2508: 74 69 je 2573 <.debug_str+0x2573> 250a: 66 data16 250b: 79 5f jns 256c <.debug_str+0x256c> 250d: 64 fs 250e: 65 gs 250f: 76 73 jbe 2584 <.debug_str+0x2584> 2511: 00 63 75 add %ah,0x75(%ebx) 2514: 72 6c jb 2582 <.debug_str+0x2582> 2516: 69 73 74 00 77 61 69 imul $0x69617700,0x74(%ebx),%esi 251d: 74 5f je 257e <.debug_str+0x257e> 251f: 71 75 jno 2596 <.debug_str+0x2596> 2521: 65 gs 2522: 75 65 jne 2589 <.debug_str+0x2589> 2524: 5f pop %edi 2525: 66 data16 2526: 75 6e jne 2596 <.debug_str+0x2596> 2528: 63 5f 74 arpl %bx,0x74(%edi) 252b: 00 5f 73 add %bl,0x73(%edi) 252e: 74 69 je 2599 <.debug_str+0x2599> 2530: 6d insl (%dx),%es:(%edi) 2531: 65 00 5f 5f add %bl,%gs:0x5f(%edi) 2535: 77 61 ja 2598 <.debug_str+0x2598> 2537: 69 74 5f 71 75 65 75 imul $0x65756575,0x71(%edi,%ebx,2),%esi 253e: 65 253f: 5f pop %edi 2540: 68 65 61 64 00 push $0x646165 2545: 6d insl (%dx),%es:(%edi) 2546: 70 63 jo 25ab <.debug_str+0x25ab> 2548: 5f pop %edi 2549: 6f outsl %ds:(%esi),(%dx) 254a: 65 gs 254b: 6d insl (%dx),%es:(%edi) 254c: 73 69 jae 25b7 <.debug_str+0x25b7> 254e: 7a 65 jp 25b5 <.debug_str+0x25b5> 2550: 00 69 6e add %ch,0x6e(%ecx) 2553: 61 popa 2554: 63 74 69 76 arpl %si,0x76(%ecx,%ebp,2) 2558: 65 gs 2559: 5f pop %edi 255a: 6c insb (%dx),%es:(%edi) 255b: 69 73 74 00 77 61 69 imul $0x69617700,0x74(%ebx),%esi 2562: 74 5f je 25c3 <.debug_str+0x25c3> 2564: 63 68 6c arpl %bp,0x6c(%eax) 2567: 64 fs 2568: 65 gs 2569: 78 69 js 25d4 <.debug_str+0x25d4> 256b: 74 00 je 256d <.debug_str+0x256d> 256d: 5f pop %edi 256e: 5f pop %edi 256f: 5f pop %edi 2570: 65 gs 2571: 64 fs 2572: 78 00 js 2574 <.debug_str+0x2574> 2574: 6d insl (%dx),%es:(%edi) 2575: 75 6c jne 25e3 <.debug_str+0x25e3> 2577: 74 69 je 25e2 <.debug_str+0x25e2> 2579: 5f pop %edi 257a: 74 69 je 25e5 <.debug_str+0x25e5> 257c: 6d insl (%dx),%es:(%edi) 257d: 65 gs 257e: 72 5f jb 25df <.debug_str+0x25df> 2580: 63 68 65 arpl %bp,0x65(%eax) 2583: 63 6b 00 arpl %bp,0x0(%ebx) 2586: 61 popa 2587: 70 69 jo 25f2 <.debug_str+0x25f2> 2589: 63 69 64 arpl %bp,0x64(%ecx) 258c: 00 73 65 add %dh,0x65(%ebx) 258f: 63 63 6f arpl %sp,0x6f(%ebx) 2592: 6d insl (%dx),%es:(%edi) 2593: 70 5f jo 25f4 <.debug_str+0x25f4> 2595: 74 00 je 2597 <.debug_str+0x2597> 2597: 62 69 6e bound %ebp,0x6e(%ecx) 259a: 66 6d insw (%dx),%es:(%edi) 259c: 74 00 je 259e <.debug_str+0x259e> 259e: 74 76 je 2616 <.debug_str+0x2616> 25a0: 36 ss 25a1: 34 00 xor $0x0,%al 25a3: 70 61 jo 2606 <.debug_str+0x2606> 25a5: 63 63 74 arpl %sp,0x74(%ebx) 25a8: 00 74 6f 74 add %dh,0x74(%edi,%ebp,2) 25ac: 61 popa 25ad: 6c insb (%dx),%es:(%edi) 25ae: 5f pop %edi 25af: 76 6d jbe 261e <.debug_str+0x261e> 25b1: 00 6d 70 add %ch,0x70(%ebp) 25b4: 5f pop %edi 25b5: 69 6f 61 70 69 63 73 imul $0x73636970,0x61(%edi),%ebp 25bc: 00 62 61 add %ah,0x61(%edx) 25bf: 63 6b 69 arpl %bp,0x69(%ebx) 25c2: 6e outsb %ds:(%esi),(%dx) 25c3: 67 5f addr16 pop %edi 25c5: 64 fs 25c6: 65 gs 25c7: 76 5f jbe 2628 <.debug_str+0x2628> 25c9: 69 6e 66 6f 00 5f 5f imul $0x5f5f006f,0x66(%esi),%ebp 25d0: 6d insl (%dx),%es:(%edi) 25d1: 6f outsl %ds:(%esi),(%dx) 25d2: 64 fs 25d3: 75 6c jne 2641 <.debug_str+0x2641> 25d5: 65 gs 25d6: 5f pop %edi 25d7: 64 fs 25d8: 65 gs 25d9: 70 65 jo 2640 <.debug_str+0x2640> 25db: 6e outsb %ds:(%esi),(%dx) 25dc: 64 fs 25dd: 73 00 jae 25df <.debug_str+0x25df> 25df: 4d dec %ebp 25e0: 4f dec %edi 25e1: 44 inc %esp 25e2: 55 push %ebp 25e3: 4c dec %esp 25e4: 45 inc %ebp 25e5: 5f pop %edi 25e6: 53 push %ebx 25e7: 54 push %esp 25e8: 41 inc %ecx 25e9: 54 push %esp 25ea: 45 inc %ebp 25eb: 5f pop %edi 25ec: 4c dec %esp 25ed: 49 dec %ecx 25ee: 56 push %esi 25ef: 45 inc %ebp 25f0: 00 6e 6f add %ch,0x6f(%esi) 25f3: 74 69 je 265e <.debug_str+0x265e> 25f5: 66 data16 25f6: 79 5f jns 2657 <.debug_str+0x2657> 25f8: 63 6f 75 arpl %bp,0x75(%edi) 25fb: 6e outsb %ds:(%esi),(%dx) 25fc: 74 00 je 25fe <.debug_str+0x25fe> 25fe: 61 popa 25ff: 63 5f 6d arpl %bx,0x6d(%edi) 2602: 65 gs 2603: 6d insl (%dx),%es:(%edi) 2604: 00 63 70 add %ah,0x70(%ebx) 2607: 75 5f jne 2668 <.debug_str+0x2668> 2609: 6d insl (%dx),%es:(%edi) 260a: 61 popa 260b: 73 6b jae 2678 <.debug_str+0x2678> 260d: 5f pop %edi 260e: 74 6f je 267f <.debug_str+0x267f> 2610: 5f pop %edi 2611: 61 popa 2612: 70 69 jo 267d <.debug_str+0x267d> 2614: 63 69 64 arpl %bp,0x64(%ecx) 2617: 00 76 65 add %dh,0x65(%esi) 261a: 72 73 jb 268f <.debug_str+0x268f> 261c: 69 6f 6e 00 75 6e 77 imul $0x776e7500,0x6e(%edi),%ebp 2623: 69 6e 64 5f 69 6e 66 imul $0x666e695f,0x64(%esi),%ebp 262a: 6f outsl %ds:(%esi),(%dx) 262b: 00 5f 5f add %bl,0x5f(%edi) 262e: 5f pop %edi 262f: 65 gs 2630: 73 00 jae 2632 <.debug_str+0x2632> 2632: 66 data16 2633: 30 30 xor %dh,(%eax) 2635: 66 5f pop %di 2637: 62 75 67 bound %esi,0x67(%ebp) 263a: 00 63 6f add %ah,0x6f(%ebx) 263d: 72 65 jb 26a4 <.debug_str+0x26a4> 263f: 5f pop %edi 2640: 64 6f outsl %fs:(%esi),(%dx) 2642: 6e outsb %ds:(%esi),(%dx) 2643: 65 00 75 6e add %dh,%gs:0x6e(%ebp) 2647: 73 69 jae 26b2 <.debug_str+0x26b2> 2649: 67 6e addr16 outsb %ds:(%si),(%dx) 264b: 65 64 20 69 6e and %ch,%fs:%gs:0x6e(%ecx) 2650: 74 00 je 2652 <.debug_str+0x2652> 2652: 66 data16 2653: 72 65 jb 26ba <.debug_str+0x26ba> 2655: 65 gs 2656: 5f pop %edi 2657: 61 popa 2658: 72 65 jb 26bf <.debug_str+0x26bf> 265a: 61 popa 265b: 00 70 61 add %dh,0x61(%eax) 265e: 64 64 69 6e 67 00 6d imul $0x646f6d00,%fs:0x67(%esi),%ebp 2665: 6f 64 2667: 75 6c jne 26d5 <.debug_str+0x26d5> 2669: 65 gs 266a: 5f pop %edi 266b: 61 popa 266c: 74 74 je 26e2 <.debug_str+0x26e2> 266e: 72 69 jb 26d9 <.debug_str+0x26d9> 2670: 62 75 74 bound %esi,0x74(%ebp) 2673: 65 00 72 69 add %dh,%gs:0x69(%edx) 2677: 6e outsb %ds:(%esi),(%dx) 2678: 67 5f addr16 pop %edi 267a: 70 61 jo 26dd <.debug_str+0x26dd> 267c: 67 addr16 267d: 65 gs 267e: 73 00 jae 2680 <.debug_str+0x2680> 2680: 73 70 jae 26f2 <.debug_str+0x26f2> 2682: 61 popa 2683: 6e outsb %ds:(%esi),(%dx) 2684: 6e outsb %ds:(%esi),(%dx) 2685: 65 gs 2686: 64 fs 2687: 5f pop %edi 2688: 70 61 jo 26eb <.debug_str+0x26eb> 268a: 67 addr16 268b: 65 gs 268c: 73 00 jae 268e <.debug_str+0x268e> 268e: 67 65 6e addr16 outsb %gs:(%si),(%dx) 2691: 61 popa 2692: 70 69 jo 26fd <.debug_str+0x26fd> 2694: 63 00 arpl %ax,(%eax) 2696: 61 popa 2697: 63 74 69 76 arpl %si,0x76(%ecx,%ebp,2) 269b: 65 00 73 68 add %dh,%gs:0x68(%ebx) 269f: 6f outsl %ds:(%esi),(%dx) 26a0: 72 74 jb 2716 <.debug_str+0x2716> 26a2: 20 69 6e and %ch,0x6e(%ecx) 26a5: 74 00 je 26a7 <.debug_str+0x26a7> 26a7: 70 67 jo 2710 <.debug_str+0x2710> 26a9: 64 fs 26aa: 5f pop %edi 26ab: 74 00 je 26ad <.debug_str+0x26ad> 26ad: 70 69 jo 2718 <.debug_str+0x2718> 26af: 64 fs 26b0: 5f pop %edi 26b1: 74 00 je 26b3 <.debug_str+0x26b3> 26b3: 66 data16 26b4: 73 67 jae 271d <.debug_str+0x271d> 26b6: 69 64 00 5f 5f 6d 6f imul $0x646f6d5f,0x5f(%eax,%eax,1),%esp 26bd: 64 26be: 5f pop %edi 26bf: 76 65 jbe 2726 <.debug_str+0x2726> 26c1: 72 6d jb 2730 <.debug_str+0x2730> 26c3: 61 popa 26c4: 67 69 63 35 00 61 63 addr16 imul $0x5f636100,53(%bp,%di),%esp 26cb: 5f 26cc: 65 gs 26cd: 78 69 js 2738 <.debug_str+0x2738> 26cf: 74 63 je 2734 <.debug_str+0x2734> 26d1: 6f outsl %ds:(%esi),(%dx) 26d2: 64 65 00 70 72 add %dh,%fs:%gs:0x72(%eax) 26d7: 65 gs 26d8: 76 00 jbe 26da <.debug_str+0x26da> 26da: 6d insl (%dx),%es:(%edi) 26db: 6f outsl %ds:(%esi),(%dx) 26dc: 64 fs 26dd: 75 6c jne 274b <.debug_str+0x274b> 26df: 65 gs 26e0: 5f pop %edi 26e1: 73 74 jae 2757 <.debug_str+0x2757> 26e3: 61 popa 26e4: 74 65 je 274b <.debug_str+0x274b> 26e6: 00 72 65 add %dh,0x65(%edx) 26e9: 61 popa 26ea: 6c insb (%dx),%es:(%edi) 26eb: 5f pop %edi 26ec: 74 69 je 2757 <.debug_str+0x2757> 26ee: 6d insl (%dx),%es:(%edi) 26ef: 65 gs 26f0: 72 00 jb 26f2 <.debug_str+0x26f2> 26f2: 76 6d jbe 2761 <.debug_str+0x2761> 26f4: 5f pop %edi 26f5: 73 74 jae 276b <.debug_str+0x276b> 26f7: 61 popa 26f8: 74 5f je 2759 <.debug_str+0x2759> 26fa: 64 69 66 66 00 6b 73 imul $0x77736b00,%fs:0x66(%esi),%esp 2701: 77 2702: 61 popa 2703: 70 64 jo 2769 <.debug_str+0x2769> 2705: 5f pop %edi 2706: 77 61 ja 2769 <.debug_str+0x2769> 2708: 69 74 00 6d 6d 61 70 imul $0x70616d,0x6d(%eax,%eax,1),%esi 270f: 00 2710: 63 6d 61 arpl %bp,0x61(%ebp) 2713: 6a 5f push $0x5f 2715: 66 data16 2716: 6c insb (%dx),%es:(%edi) 2717: 74 00 je 2719 <.debug_str+0x2719> 2719: 6e outsb %ds:(%esi),(%dx) 271a: 65 gs 271b: 78 74 js 2791 271d: 00 74 69 6d add %dh,0x6d(%ecx,%ebp,2) 2721: 65 gs 2722: 5f pop %edi 2723: 65 gs 2724: 73 74 jae 279a 2726: 65 gs 2727: 72 72 jb 279b 2729: 6f outsl %ds:(%esi),(%dx) 272a: 72 00 jb 272c <.debug_str+0x272c> 272c: 6e outsb %ds:(%esi),(%dx) 272d: 6f outsl %ds:(%esi),(%dx) 272e: 72 6d jb 279d 2730: 61 popa 2731: 6c insb (%dx),%es:(%edi) 2732: 5f pop %edi 2733: 70 72 jo 27a7 2735: 69 6f 00 69 33 38 37 imul $0x37383369,0x0(%edi),%ebp 273c: 5f pop %edi 273d: 73 6f jae 27ae 273f: 66 data16 2740: 74 5f je 27a1 2742: 73 74 jae 27b8 2744: 72 75 jb 27bb 2746: 63 74 00 67 arpl %si,0x67(%eax,%eax,1) 274a: 65 gs 274b: 74 5f je 27ac 274d: 73 6f jae 27be 274f: 66 data16 2750: 74 69 je 27bb 2752: 72 71 jb 27c5 2754: 5f pop %edi 2755: 74 69 je 27c0 2757: 6d insl (%dx),%es:(%edi) 2758: 65 00 73 61 add %dh,%gs:0x61(%ebx) 275c: 5f pop %edi 275d: 66 data16 275e: 6c insb (%dx),%es:(%edi) 275f: 61 popa 2760: 67 73 00 addr16 jae 2763 <.debug_str+0x2763> 2763: 6e outsb %ds:(%esi),(%dx) 2764: 6f outsl %ds:(%esi),(%dx) 2765: 64 fs 2766: 65 gs 2767: 5f pop %edi 2768: 73 74 jae 27de 276a: 61 popa 276b: 72 74 jb 27e1 276d: 5f pop %edi 276e: 70 66 jo 27d6 2770: 6e outsb %ds:(%esi),(%dx) 2771: 00 66 6c add %ah,0x6c(%esi) 2774: 61 popa 2775: 67 73 00 addr16 jae 2778 <.debug_str+0x2778> 2778: 63 6d 69 arpl %bp,0x69(%ebp) 277b: 6e outsb %ds:(%esi),(%dx) 277c: 5f pop %edi 277d: 66 data16 277e: 6c insb (%dx),%es:(%edi) 277f: 74 00 je 2781 <.debug_str+0x2781> 2781: 72 65 jb 27e8 2783: 63 65 6e arpl %sp,0x6e(%ebp) 2786: 74 5f je 27e7 2788: 70 61 jo 27eb 278a: 67 addr16 278b: 65 gs 278c: 69 .byte 0x69 278d: 6e outsb %ds:(%esi),(%dx) ...