blob: 2d479a47aae58a9e3c275aa7d0de4ed9d6d513fb [file] [log] [blame]
/*
* This file is part of ltrace.
*
* Copyright (C) 2013 Imagination Technologies Ltd.
*
* This program is free software; you can redistribute it and/or
* modify it under the terms of the GNU General Public License
* version 2 as published by the Free Software Foundation.
*
* This program is distributed in the hope that it will be useful, but
* WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
* General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program; if not, write to the Free Software
* Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA
* 02110-1301 USA
*/
#include <gelf.h>
#include "debug.h"
#include "proc.h"
#include "library.h"
#include "ltrace-elf.h"
GElf_Addr
arch_plt_sym_val(struct ltelf *lte, size_t ndx, GElf_Rela * rela)
{
return lte->plt_addr + ( ndx * 0x14 ) + 0x14;
}
void
*sym2addr(struct process *proc, struct library_symbol *sym)
{
return sym->enter_addr;
}