Palacios Public Git Repository

To checkout Palacios execute

  git clone http://v3vee.org/palacios/palacios.web/palacios.git
This will give you the master branch. You probably want the devel branch or one of the release branches. To switch to the devel branch, simply execute
  cd palacios
  git checkout --track -b devel origin/devel
The other branches are similar.


Merge branch 'devel'
[palacios.git] / kitten / lib / extable.c
1 /*
2  * Derived from arch/ppc/mm/extable.c and arch/i386/mm/extable.c.
3  *
4  * Copyright (C) 2004 Paul Mackerras, IBM Corp.
5  *
6  * This program is free software; you can redistribute it and/or
7  * modify it under the terms of the GNU General Public License
8  * as published by the Free Software Foundation; either version
9  * 2 of the License, or (at your option) any later version.
10  */
11
12 #include <lwk/init.h>
13 #include <lwk/sort.h>
14 #include <lwk/extable.h>
15
16 #ifndef ARCH_HAS_SORT_EXTABLE
17 /*
18  * The exception table needs to be sorted so that the binary
19  * search that we use to find entries in it works properly.
20  * This is used both for the kernel exception table and for
21  * the exception tables of modules that get loaded.
22  */
23 static int cmp_ex(const void *a, const void *b)
24 {
25         const struct exception_table_entry *x = a, *y = b;
26
27         /* avoid overflow */
28         if (x->insn > y->insn)
29                 return 1;
30         if (x->insn < y->insn)
31                 return -1;
32         return 0;
33 }
34
35 void sort_extable(struct exception_table_entry *start,
36                   struct exception_table_entry *finish)
37 {
38         sort(start, finish - start, sizeof(struct exception_table_entry),
39              cmp_ex, NULL);
40 }
41 #endif
42
43 #ifndef ARCH_HAS_SEARCH_EXTABLE
44 /*
45  * Search one exception table for an entry corresponding to the
46  * given instruction address, and return the address of the entry,
47  * or NULL if none is found.
48  * We use a binary search, and thus we assume that the table is
49  * already sorted.
50  */
51 const struct exception_table_entry *
52 search_extable(const struct exception_table_entry *first,
53                const struct exception_table_entry *last,
54                unsigned long value)
55 {
56         while (first <= last) {
57                 const struct exception_table_entry *mid;
58
59                 mid = (last - first) / 2 + first;
60                 /*
61                  * careful, the distance between entries can be
62                  * larger than 2GB:
63                  */
64                 if (mid->insn < value)
65                         first = mid + 1;
66                 else if (mid->insn > value)
67                         last = mid - 1;
68                 else
69                         return mid;
70         }
71         return NULL;
72 }
73 #endif