__ashldi3.s

来自「linux内核」· S 代码 · 共 30 行

S
30
字号
/* * arch/i386/libgcc/__ashldi3.S * * 64-bit shl */	.text	.align 4	.globl __ashldi3	.type __ashldi3,@function__ashldi3:#ifndef REGPARM	movl  4(%esp),%eax	movl  8(%esp),%edx	movb  12(%esp),%cl#endif	cmpb  $32,%cl	jae   1f		shldl %cl,%eax,%edx	shl   %cl,%eax	ret	1:	xorl  %edx,%edx	shl   %cl,%eax	xchgl %edx,%eax	ret	.size __ashldi3,.-__ashldi3

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?