2009-06-20 21:17:46 +02:00
|
|
|
/****************************************************************************
|
2018-05-29 21:21:26 +02:00
|
|
|
* libs/libc/symtab/symtab_findbyvalue.c
|
2009-06-20 21:17:46 +02:00
|
|
|
*
|
2021-03-02 15:54:21 +01:00
|
|
|
* Licensed to the Apache Software Foundation (ASF) under one or more
|
|
|
|
* contributor license agreements. See the NOTICE file distributed with
|
|
|
|
* this work for additional information regarding copyright ownership. The
|
|
|
|
* ASF licenses this file to you under the Apache License, Version 2.0 (the
|
|
|
|
* "License"); you may not use this file except in compliance with the
|
|
|
|
* License. You may obtain a copy of the License at
|
2009-06-20 21:17:46 +02:00
|
|
|
*
|
2021-03-02 15:54:21 +01:00
|
|
|
* http://www.apache.org/licenses/LICENSE-2.0
|
2009-06-20 21:17:46 +02:00
|
|
|
*
|
2021-03-02 15:54:21 +01:00
|
|
|
* Unless required by applicable law or agreed to in writing, software
|
|
|
|
* distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
|
|
|
|
* WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
|
|
|
|
* License for the specific language governing permissions and limitations
|
|
|
|
* under the License.
|
2009-06-20 21:17:46 +02:00
|
|
|
*
|
|
|
|
****************************************************************************/
|
|
|
|
|
|
|
|
/****************************************************************************
|
|
|
|
* Included Files
|
|
|
|
****************************************************************************/
|
|
|
|
|
|
|
|
#include <nuttx/config.h>
|
|
|
|
|
2009-12-17 00:23:46 +01:00
|
|
|
#include <stddef.h>
|
2009-06-20 21:17:46 +02:00
|
|
|
#include <debug.h>
|
|
|
|
#include <assert.h>
|
|
|
|
#include <errno.h>
|
|
|
|
|
2015-12-13 15:10:01 +01:00
|
|
|
#include <nuttx/symtab.h>
|
2009-06-20 21:17:46 +02:00
|
|
|
|
2015-10-03 01:43:18 +02:00
|
|
|
/****************************************************************************
|
2009-06-20 21:17:46 +02:00
|
|
|
* Public Functions
|
2015-10-03 01:43:18 +02:00
|
|
|
****************************************************************************/
|
2009-06-20 21:17:46 +02:00
|
|
|
|
|
|
|
/****************************************************************************
|
|
|
|
* Name: symtab_findbyvalue
|
|
|
|
*
|
|
|
|
* Description:
|
|
|
|
* Find the symbol in the symbol table whose value closest (but not greater
|
2021-03-02 14:33:27 +01:00
|
|
|
* than), the provided value. This version assumes that table is not
|
2021-03-15 10:35:47 +01:00
|
|
|
* ordered with respect to symbol value and, hence, access time will be
|
2021-03-02 14:33:27 +01:00
|
|
|
* linear with respect to nsyms.
|
2009-06-20 21:17:46 +02:00
|
|
|
*
|
|
|
|
* Returned Value:
|
|
|
|
* A reference to the symbol table entry if an entry with the matching
|
2021-03-15 10:35:47 +01:00
|
|
|
* value is found; NULL is returned if the entry is not found.
|
2009-06-20 21:17:46 +02:00
|
|
|
*
|
|
|
|
****************************************************************************/
|
|
|
|
|
|
|
|
FAR const struct symtab_s *
|
|
|
|
symtab_findbyvalue(FAR const struct symtab_s *symtab,
|
|
|
|
FAR void *value, int nsyms)
|
|
|
|
{
|
|
|
|
FAR const struct symtab_s *retval = NULL;
|
|
|
|
|
|
|
|
DEBUGASSERT(symtab != NULL);
|
|
|
|
for (; nsyms > 0; symtab++, nsyms--)
|
|
|
|
{
|
2021-03-02 14:33:27 +01:00
|
|
|
/* Look for symbols of lesser or equal value (probably address) to
|
|
|
|
* value
|
|
|
|
*/
|
2009-06-20 21:17:46 +02:00
|
|
|
|
|
|
|
if (symtab->sym_value <= value)
|
|
|
|
{
|
|
|
|
/* Found one. Is it the largest we have found so far? */
|
|
|
|
|
|
|
|
if (!retval || symtab->sym_value > retval->sym_value)
|
|
|
|
{
|
|
|
|
/* Yes, then it is the new candidate for the symbol whose value
|
|
|
|
* just below 'value'
|
|
|
|
*/
|
|
|
|
|
|
|
|
retval = symtab;
|
|
|
|
|
2021-03-02 14:33:27 +01:00
|
|
|
/* If it is exactly equal to the search 'value', then we might
|
|
|
|
* as well terminate early because we can't do any better than
|
|
|
|
* that.
|
2009-06-20 21:17:46 +02:00
|
|
|
*/
|
|
|
|
|
|
|
|
if (retval->sym_value == value)
|
|
|
|
{
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return retval;
|
|
|
|
}
|