aboutsummaryrefslogtreecommitdiff
path: root/gold/target.h
diff options
context:
space:
mode:
authorIan Lance Taylor <iant@google.com>2006-09-27 22:53:42 +0000
committerIan Lance Taylor <iant@google.com>2006-09-27 22:53:42 +0000
commit75f65a3e309b8cd885c782f6af106d1e2a1876f6 (patch)
tree0f21c32a5e40156d007fd6a676b5d74a8c423c90 /gold/target.h
parent6b89cc2108a525fdc4186bae5365acc258e9c23c (diff)
downloadgdb-75f65a3e309b8cd885c782f6af106d1e2a1876f6.zip
gdb-75f65a3e309b8cd885c782f6af106d1e2a1876f6.tar.gz
gdb-75f65a3e309b8cd885c782f6af106d1e2a1876f6.tar.bz2
Finished layout code.
Diffstat (limited to 'gold/target.h')
-rw-r--r--gold/target.h72
1 files changed, 52 insertions, 20 deletions
diff --git a/gold/target.h b/gold/target.h
index 161c75d..bba3d5a 100644
--- a/gold/target.h
+++ b/gold/target.h
@@ -13,6 +13,8 @@
#ifndef GOLD_TARGET_H
#define GOLD_TARGET_H
+#include <cassert>
+
#include "symtab.h"
#include "elfcpp.h"
@@ -33,43 +35,70 @@ class Target
// return 32 or 64.
int
get_size() const
- { return this->size_; }
+ { return this->pti_->size; }
// Return whether this target is big-endian.
bool
is_big_endian() const
- { return this->is_big_endian_; }
+ { return this->pti_->is_big_endian; }
// Whether this target has a specific make_symbol function.
bool
has_make_symbol() const
- { return this->has_make_symbol_; }
+ { return this->pti_->has_make_symbol; }
// Whether this target has a specific resolve function.
bool
has_resolve() const
- { return this->has_resolve_; }
+ { return this->pti_->has_resolve; }
+
+ // Return the default address to use for the text segment.
+ uint64_t
+ text_segment_address() const
+ { return this->pti_->text_segment_address; }
+
+ // Return the ABI specified page size.
+ uint64_t
+ abi_pagesize() const
+ { return this->pti_->abi_pagesize; }
+
+ // Return the common page size used on actual systems.
+ uint64_t
+ common_pagesize() const
+ { return this->pti_->common_pagesize; }
protected:
- Target(int size, bool is_big_endian, bool has_make_symbol, bool has_resolve)
- : size_(size),
- is_big_endian_(is_big_endian),
- has_make_symbol_(has_make_symbol),
- has_resolve_(has_resolve)
+ // This struct holds the constant information for a child class. We
+ // use a struct to avoid the overhead of virtual function calls for
+ // simple information.
+ struct Target_info
+ {
+ // Address size (32 or 64).
+ int size;
+ // Whether the target is big endian.
+ bool is_big_endian;
+ // Whether this target has a specific make_symbol function.
+ bool has_make_symbol;
+ // Whether this target has a specific resolve function.
+ bool has_resolve;
+ // The default text segment address.
+ uint64_t text_segment_address;
+ // The ABI specified page size.
+ uint64_t abi_pagesize;
+ // The common page size used by actual implementations.
+ uint64_t common_pagesize;
+ };
+
+ Target(const Target_info* pti)
+ : pti_(pti)
{ }
private:
Target(const Target&);
Target& operator=(const Target&);
- // The target size.
- int size_;
- // Whether this target is big endian.
- bool is_big_endian_;
- // Whether this target has a special make_symbol function.
- bool has_make_symbol_;
- // Whether this target has a special resolve function.
- bool has_resolve_;
+ // The target information.
+ const Target_info* pti_;
};
// The abstract class for a specific size and endianness of target.
@@ -96,9 +125,12 @@ class Sized_target : public Target
{ abort(); }
protected:
- Sized_target(bool has_make_symbol, bool has_resolve)
- : Target(size, big_endian, has_make_symbol, has_resolve)
- { }
+ Sized_target(const Target::Target_info* pti)
+ : Target(pti)
+ {
+ assert(pti->size == size);
+ assert(pti->is_big_endian ? big_endian : !big_endian);
+ }
};
} // End namespace gold.