2018-09-22 19:52:52 +02:00
|
|
|
/****************************************************************************
|
|
|
|
* Copyright (C) 2018 Maschell
|
|
|
|
*
|
|
|
|
* This program is free software: you can redistribute it and/or modify
|
|
|
|
* it under the terms of the GNU General Public License as published by
|
|
|
|
* the Free Software Foundation, either version 3 of the License, or
|
|
|
|
* (at your option) any later version.
|
|
|
|
*
|
|
|
|
* 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, see <http://www.gnu.org/licenses/>.
|
|
|
|
****************************************************************************/
|
|
|
|
|
2020-04-29 18:02:36 +02:00
|
|
|
#pragma once
|
2018-09-22 19:52:52 +02:00
|
|
|
|
|
|
|
#include <string>
|
|
|
|
#include "ImportRPLInformation.h"
|
|
|
|
|
|
|
|
class RelocationData {
|
|
|
|
|
|
|
|
public:
|
2020-05-03 12:30:15 +02:00
|
|
|
RelocationData(const char type, size_t offset, int32_t addend, void *destination, std::string name, ImportRPLInformation rplInfo) :
|
|
|
|
type(type),
|
|
|
|
offset(offset),
|
|
|
|
addend(addend),
|
|
|
|
destination(destination),
|
|
|
|
name(name),
|
|
|
|
rplInfo(rplInfo) {
|
2018-09-22 19:52:52 +02:00
|
|
|
}
|
|
|
|
|
2020-05-03 12:30:15 +02:00
|
|
|
RelocationData(const RelocationData &o2) :
|
|
|
|
type(o2.type),
|
|
|
|
offset(o2.offset),
|
|
|
|
addend(o2.addend),
|
|
|
|
destination(o2.destination),
|
|
|
|
name(o2.name),
|
|
|
|
rplInfo(o2.rplInfo) {
|
2020-04-29 18:02:36 +02:00
|
|
|
}
|
2018-09-22 19:52:52 +02:00
|
|
|
|
2020-04-29 18:02:36 +02:00
|
|
|
virtual ~RelocationData() {
|
2018-09-22 19:52:52 +02:00
|
|
|
}
|
|
|
|
|
2020-05-03 12:30:15 +02:00
|
|
|
const char getType() const {
|
2018-09-22 19:52:52 +02:00
|
|
|
return type;
|
|
|
|
}
|
|
|
|
|
2020-05-03 12:30:15 +02:00
|
|
|
const size_t getOffset() const {
|
2018-09-22 19:52:52 +02:00
|
|
|
return offset;
|
|
|
|
}
|
|
|
|
|
2020-05-03 12:30:15 +02:00
|
|
|
const int32_t getAddend() const {
|
2018-09-22 19:52:52 +02:00
|
|
|
return addend;
|
|
|
|
}
|
|
|
|
|
2020-05-03 12:30:15 +02:00
|
|
|
const void *getDestination() const {
|
2018-09-22 19:52:52 +02:00
|
|
|
return destination;
|
|
|
|
}
|
|
|
|
|
2020-05-03 12:30:15 +02:00
|
|
|
const std::string &getName() const {
|
2018-09-22 19:52:52 +02:00
|
|
|
return name;
|
|
|
|
}
|
|
|
|
|
2020-05-03 12:30:15 +02:00
|
|
|
const ImportRPLInformation &getImportRPLInformation() const {
|
2018-09-22 19:52:52 +02:00
|
|
|
return rplInfo;
|
|
|
|
}
|
|
|
|
|
|
|
|
private:
|
|
|
|
char type;
|
|
|
|
size_t offset;
|
|
|
|
int32_t addend;
|
|
|
|
void *destination;
|
|
|
|
std::string name;
|
2020-04-29 18:02:36 +02:00
|
|
|
ImportRPLInformation rplInfo;
|
2018-09-22 19:52:52 +02:00
|
|
|
};
|