author | zautrix <zautrix> | 2004-10-19 20:16:14 (UTC) |
---|---|---|
committer | zautrix <zautrix> | 2004-10-19 20:16:14 (UTC) |
commit | eca49bb06a71980ef61d078904573f25890fc7f2 (patch) (unidiff) | |
tree | c5338e3b12430248979a9ac2c1c7e6646ea9ecdf /pwmanager/libcrypt/mpi/asm-syntax.h | |
parent | 53cc32b6e7b1f672bf91b2baf2df6c1e8baf3e0a (diff) | |
download | kdepimpi-eca49bb06a71980ef61d078904573f25890fc7f2.zip kdepimpi-eca49bb06a71980ef61d078904573f25890fc7f2.tar.gz kdepimpi-eca49bb06a71980ef61d078904573f25890fc7f2.tar.bz2 |
Initial revision
Diffstat (limited to 'pwmanager/libcrypt/mpi/asm-syntax.h') (more/less context) (ignore whitespace changes)
-rw-r--r-- | pwmanager/libcrypt/mpi/asm-syntax.h | 71 |
1 files changed, 71 insertions, 0 deletions
diff --git a/pwmanager/libcrypt/mpi/asm-syntax.h b/pwmanager/libcrypt/mpi/asm-syntax.h new file mode 100644 index 0000000..ca94a8e --- a/dev/null +++ b/pwmanager/libcrypt/mpi/asm-syntax.h | |||
@@ -0,0 +1,71 @@ | |||
1 | /* created by config.links - do not edit */ | ||
2 | /* Target: i686-pc-linux-gnu */ | ||
3 | #define ELF_SYNTAX | ||
4 | /* syntax.h -- Definitions for x86 syntax variations. | ||
5 | * | ||
6 | * Copyright (C) 1992, 1994, 1995, 1998, | ||
7 | * 2001, 2002 Free Software Foundation, Inc. | ||
8 | * | ||
9 | * This file is part of Libgcrypt. | ||
10 | * | ||
11 | * Libgcrypt is free software; you can redistribute it and/or modify | ||
12 | * it under the terms of the GNU Lesser General Public License as | ||
13 | * published by the Free Software Foundation; either version 2.1 of | ||
14 | * the License, or (at your option) any later version. | ||
15 | * | ||
16 | * Libgcrypt is distributed in the hope that it will be useful, | ||
17 | * but WITHOUT ANY WARRANTY; without even the implied warranty of | ||
18 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | ||
19 | * GNU Lesser General Public License for more details. | ||
20 | * | ||
21 | * You should have received a copy of the GNU Lesser General Public | ||
22 | * License along with this program; if not, write to the Free Software | ||
23 | * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA | ||
24 | * | ||
25 | * Note: This code is heavily based on the GNU MP Library. | ||
26 | * Actually it's the same code with only minor changes in the | ||
27 | * way the data is stored; this is to support the abstraction | ||
28 | * of an optional secure memory allocation which may be used | ||
29 | * to avoid revealing of sensitive data due to paging etc. | ||
30 | */ | ||
31 | |||
32 | #undef ALIGN | ||
33 | |||
34 | #if defined (BSD_SYNTAX) || defined (ELF_SYNTAX) | ||
35 | #define R(r) %r | ||
36 | #define MEM(base)(base) | ||
37 | #define MEM_DISP(base,displacement)displacement(R(base)) | ||
38 | #define MEM_INDEX(base,index,size)(R(base),R(index),size) | ||
39 | #ifdef __STDC__ | ||
40 | #define INSN1(mnemonic,size_suffix,dst)mnemonic##size_suffix dst | ||
41 | #define INSN2(mnemonic,size_suffix,dst,src)mnemonic##size_suffix src,dst | ||
42 | #else | ||
43 | #define INSN1(mnemonic,size_suffix,dst)mnemonic/**/size_suffix dst | ||
44 | #define INSN2(mnemonic,size_suffix,dst,src)mnemonic/**/size_suffix src,dst | ||
45 | #endif | ||
46 | #define TEXT .text | ||
47 | #if defined (BSD_SYNTAX) | ||
48 | #define ALIGN(log) .align log | ||
49 | #endif | ||
50 | #if defined (ELF_SYNTAX) | ||
51 | #define ALIGN(log) .align 1<<(log) | ||
52 | #endif | ||
53 | #define GLOBL .globl | ||
54 | #endif | ||
55 | |||
56 | #ifdef INTEL_SYNTAX | ||
57 | #define R(r) r | ||
58 | #define MEM(base)[base] | ||
59 | #define MEM_DISP(base,displacement)[base+(displacement)] | ||
60 | #define MEM_INDEX(base,index,size)[base+index*size] | ||
61 | #define INSN1(mnemonic,size_suffix,dst)mnemonic dst | ||
62 | #define INSN2(mnemonic,size_suffix,dst,src)mnemonic dst,src | ||
63 | #define TEXT .text | ||
64 | #define ALIGN(log) .align log | ||
65 | #define GLOBL .globl | ||
66 | #endif | ||
67 | |||
68 | #ifdef X86_BROKEN_ALIGN | ||
69 | #undef ALIGN | ||
70 | #define ALIGN(log) .align log,0x90 | ||
71 | #endif | ||