OpenBSD-4.6/lib/libm/arch/amd64/s_scalbn.S

Compare this file to the similar file:
Show the results in this format:

/*	$OpenBSD: s_scalbn.S,v 1.3 2009/04/25 11:03:35 martynas Exp $ */
/*
 * Written by J.T. Conklin <jtc@NetBSD.org>.
 * Public domain.
 */

#include <machine/asm.h>

#include "abi.h"

ENTRY(scalbn)
	movsd	%xmm0,-8(%rsp)
	movl	%edi,-12(%rsp)
	fildl	-12(%rsp)
	fldl	-8(%rsp)
	fscale
	fstp	%st(1)		/* bug fix for fp stack overflow */
	fstpl	-8(%rsp)
	movsd	-8(%rsp),%xmm0
	ret