import less(1)
[unleashed/tickless.git] / usr / src / uts / intel / bignum / Makefile.64
blob1fe1a9b8de7c6e383d201e6a8f119b0306da58ea
2 # CDDL HEADER START
4 # The contents of this file are subject to the terms of the
5 # Common Development and Distribution License (the "License").
6 # You may not use this file except in compliance with the License.
8 # You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE
9 # or http://www.opensolaris.org/os/licensing.
10 # See the License for the specific language governing permissions
11 # and limitations under the License.
13 # When distributing Covered Code, include this CDDL HEADER in each
14 # file and include the License file at usr/src/OPENSOLARIS.LICENSE.
15 # If applicable, add the following below this CDDL HEADER, with the
16 # fields enclosed by brackets "[]" replaced with your own identifying
17 # information: Portions Copyright [yyyy] [name of copyright owner]
19 # CDDL HEADER END
22 # Copyright 2009 Sun Microsystems, Inc.  All rights reserved.
23 # Use is subject to license terms.
25 #       Configuration and targets for bignum module
26 #       specific to AMD 64-bit architecture, amd64.
28 # Bignum configuration (BIGNUM_CFG):
29 #   PSR_MUL:
30 #       There is a processor-specific implementation bignum multiply functions
31 #   HWCAP:
32 #       There are multiple implementations of bignum functions, and the
33 #       appropriate one must be chosen at run time, based on testing
34 #       hardware capabilites.
36 # -DPSR_MUL:
37 # For AMD64, there is a processor-specific implementation of
38 # the bignum multiply functions, which takes advantage of the
39 # 64x64->128 bit multiply instruction.
41 # -UHWCAP:
42 # There is only one implementation, because the 128 bit multiply using
43 # general-purpose registers is faster than any MMX or SSE2 implementation.
45 BIGNUM_CFG = -DPSR_MUL
46 CFLAGS  += -fno-strict-aliasing \
47            -fno-unit-at-a-time \
48            -fno-optimize-sibling-calls \
49            -O2
50 $(OBJS_DIR)/bignumimpl.o := CPPFLAGS += $(BIGNUM_CFG)
51 $(OBJS_DIR)/bignum_amd64.o := CPPFLAGS += $(BIGNUM_CFG)
53 $(OBJS_DIR)/bignum_amd64.o: $(BIGNUMDIR)/amd64/bignum_amd64.c
54         $(COMPILE.c) -o $@ $(BIGNUM_CFG) $(BIGNUMDIR)/amd64/bignum_amd64.c
55         $(CTFCONVERT_O)
56         $(POST_PROCESS_O)
58 $(OBJS_DIR)/bignum_amd64_asm.o: $(BIGNUMDIR)/amd64/bignum_amd64_asm.s
59         $(COMPILE.s) -o $@ $(BIGNUM_CFG) \
60                 $(BIGNUMDIR)/amd64/bignum_amd64_asm.s
61         $(POST_PROCESS_O)