Blame view

kernel/linux-imx6_3.14.28/arch/ia64/lib/idiv32.S 2.03 KB
6b13f685e   김민수   BSP 최초 추가
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
  /*
   * Copyright (C) 2000 Hewlett-Packard Co
   * Copyright (C) 2000 David Mosberger-Tang <davidm@hpl.hp.com>
   *
   * 32-bit integer division.
   *
   * This code is based on the application note entitled "Divide, Square Root
   * and Remainder Algorithms for the IA-64 Architecture".  This document
   * is available as Intel document number 248725-002 or via the web at
   * http://developer.intel.com/software/opensource/numerics/
   *
   * For more details on the theory behind these algorithms, see "IA-64
   * and Elementary Functions" by Peter Markstein; HP Professional Books
   * (http://www.hp.com/go/retailbooks/)
   */
  
  #include <asm/asmmacro.h>
  
  #ifdef MODULO
  # define OP	mod
  #else
  # define OP	div
  #endif
  
  #ifdef UNSIGNED
  # define SGN	u
  # define EXTEND	zxt4
  # define INT_TO_FP(a,b)	fcvt.xuf.s1 a=b
  # define FP_TO_INT(a,b)	fcvt.fxu.trunc.s1 a=b
  #else
  # define SGN
  # define EXTEND	sxt4
  # define INT_TO_FP(a,b)	fcvt.xf a=b
  # define FP_TO_INT(a,b)	fcvt.fx.trunc.s1 a=b
  #endif
  
  #define PASTE1(a,b)	a##b
  #define PASTE(a,b)	PASTE1(a,b)
  #define NAME		PASTE(PASTE(__,SGN),PASTE(OP,si3))
  
  GLOBAL_ENTRY(NAME)
  	.regstk 2,0,0,0
  	// Transfer inputs to FP registers.
  	mov r2 = 0xffdd			// r2 = -34 + 65535 (fp reg format bias)
  	EXTEND in0 = in0		// in0 = a
  	EXTEND in1 = in1		// in1 = b
  	;;
  	setf.sig f8 = in0
  	setf.sig f9 = in1
  #ifdef MODULO
  	sub in1 = r0, in1		// in1 = -b
  #endif
  	;;
  	// Convert the inputs to FP, to avoid FP software-assist faults.
  	INT_TO_FP(f8, f8)
  	INT_TO_FP(f9, f9)
  	;;
  	setf.exp f7 = r2		// f7 = 2^-34
  	frcpa.s1 f6, p6 = f8, f9	// y0 = frcpa(b)
  	;;
  (p6)	fmpy.s1 f8 = f8, f6		// q0 = a*y0
  (p6)	fnma.s1 f6 = f9, f6, f1		// e0 = -b*y0 + 1 
  	;;
  #ifdef MODULO
  	setf.sig f9 = in1		// f9 = -b
  #endif
  (p6)	fma.s1 f8 = f6, f8, f8		// q1 = e0*q0 + q0
  (p6)	fma.s1 f6 = f6, f6, f7		// e1 = e0*e0 + 2^-34
  	;;
  #ifdef MODULO
  	setf.sig f7 = in0
  #endif
  (p6)	fma.s1 f6 = f6, f8, f8		// q2 = e1*q1 + q1
  	;;
  	FP_TO_INT(f6, f6)		// q = trunc(q2)
  	;;
  #ifdef MODULO
  	xma.l f6 = f6, f9, f7		// r = q*(-b) + a
  	;;
  #endif
  	getf.sig r8 = f6		// transfer result to result register
  	br.ret.sptk.many rp
  END(NAME)