Statistics
| Branch: | Tag: | Revision:

root / gnuradio-core / src / lib / filter / cpuid_x86.S @ 2b60291c

History | View | Annotate | Download (1.5 kB)

1
#	
2
# Copyright 2003 Free Software Foundation, Inc.
3
# 
4
# This file is part of GNU Radio
5
# 
6
# GNU Radio is free software; you can redistribute it and/or modify
7
# it under the terms of the GNU General Public License as published by
8
# the Free Software Foundation; either version 3, or (at your option)
9
# any later version.
10
# 
11
# GNU Radio is distributed in the hope that it will be useful,
12
# but WITHOUT ANY WARRANTY; without even the implied warranty of
13
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
14
# GNU General Public License for more details.
15
# 
16
# You should have received a copy of the GNU General Public License
17
# along with GNU Radio; see the file COPYING.  If not, write to
18
# the Free Software Foundation, Inc., 51 Franklin Street,
19
# Boston, MA 02110-1301, USA.
20
# 
21
22
#
23
# execute CPUID instruction, return EAX, EBX, ECX and EDX values in result
24
#
25
#  void cpuid_x86 (unsigned int op, unsigned int result[4]);
26
#
27
28
#include "assembly.h"
29
30
.file "cpuid_x86.S"
31
	.version	"01.01"
32
.text
33
.globl	GLOB_SYMB(cpuid_x86)
34
	DEF_FUNC_HEAD(cpuid_x86)
35
GLOB_SYMB(cpuid_x86):
36
	pushl	%ebp
37
	movl	%esp, %ebp
38
	pushl	%ebx		# must save in PIC mode, holds GOT pointer
39
	pushl	%esi
40
	
41
	movl	8(%ebp), %eax	# op
42
	movl	12(%ebp), %esi	# result
43
	cpuid
44
	movl	%eax, 0(%esi)
45
	movl	%ebx, 4(%esi)
46
	movl	%ecx, 8(%esi)
47
	movl	%edx, 12(%esi)
48
	
49
	popl	%esi
50
	popl	%ebx
51
	popl	%ebp
52
	ret
53
54
FUNC_TAIL(cpuid_x86)
55
	.ident	"Hand coded cpuid assembly"
56
	
57
58
#if defined(__linux__) && defined(__ELF__)
59
.section .note.GNU-stack,"",%progbits
60
#endif