+ movl 0(%rdi), %eax // read the 1st word from the header
+ cmpl MZV_MAGIC, %eax // is the alternate packer used (i.e. is MZV page)?
+ jne L_default_decompressor // default decompressor was used
+
+ // Mostly Zero Page Handling...
+ // {
+ movq $0, %rax
+1: // Zero out the entire page
+ movq $0, 0(%rsi, %rax)
+ movq $0, 8(%rsi, %rax)
+ movq $0, 16(%rsi, %rax)
+ movq $0, 24(%rsi, %rax)
+ movq $0, 32(%rsi, %rax)
+ movq $0, 40(%rsi, %rax)
+ movq $0, 48(%rsi, %rax)
+ movq $0, 56(%rsi, %rax)
+ addq $64, %rax
+ cmpq $4096, %rax
+ jne 1b
+
+ movq $4, %r12 // current byte position in src to read from
+2:
+ movl 0(%rdi, %r12), %eax // get the word
+ movzwq 4(%rdi, %r12), %rdx // get the index
+ movl %eax, 0(%rsi, %rdx) // store non-0 word in the destination buffer
+ addq $6, %r12 // 6 more bytes processed
+ cmpl %ecx, %r12d // finished processing all the bytes?
+ jne 2b
+ jmp L_done
+ // }
+
+L_default_decompressor:
+