1# 2# CDDL HEADER START 3# 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. 7# 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. 12# 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] 18# 19# CDDL HEADER END 20# 21# 22# Copyright (c) 2010, Oracle and/or its affiliates. All rights reserved. 23# 24 25# The only file that contains capabilities symbols is bignum_i386_asm.o, 26# however this is a dependency of bignum_i386.o, which in turn is a dependency 27# of pics/bignumimpl.o. Only the last object exports any interfaces, hence 28# we compile, and combine all three. The resulting object is identified as a 29# whole with the bignum_i386_asm.o capabilities flags. 30 31$mapfile_version 2 32 33CAPABILITY i386_hwcap1; 34 35SYMBOL_SCOPE { 36 global: 37 big_add; 38 big_bitlength; 39 big_cmp_abs; 40 big_copy; 41 big_div_pos; 42 big_ext_gcd_pos; 43 big_extend; 44 big_finish; 45 big_init1; 46 big_init; 47 big_modexp; 48 big_modexp_crt; 49 big_mul; 50 big_nextprime_pos; 51 big_sub; 52 big_sub_pos; 53 bignum2bytestring; 54 local: 55 *; 56}; 57