summaryrefslogtreecommitdiff
path: root/gold/gold.h
diff options
context:
space:
mode:
authorIan Lance Taylor <iant@google.com>2006-10-20 20:40:49 +0000
committerIan Lance Taylor <iant@google.com>2006-10-20 20:40:49 +0000
commitba175aeb3c4a3b0a33bc6790f848f7163c1f776f (patch)
tree6a4fd8ed94514f272b804835ad14c9dc8dcb29a1 /gold/gold.h
parentbb7eb593084644bb66b5591c5609fcdc59aba804 (diff)
downloadbinutils-redhat-ba175aeb3c4a3b0a33bc6790f848f7163c1f776f.tar.gz
Framework for relocation scanning. Implement simple static TLS
relocations.
Diffstat (limited to 'gold/gold.h')
-rw-r--r--gold/gold.h21
1 files changed, 21 insertions, 0 deletions
diff --git a/gold/gold.h b/gold/gold.h
index 9ddf2f792a..1140d663a7 100644
--- a/gold/gold.h
+++ b/gold/gold.h
@@ -137,6 +137,8 @@ namespace gold
{
class General_options;
+class Input_argument_list;
+class Dirsearch;
class Input_objects;
class Symbol_table;
class Layout;
@@ -166,6 +168,25 @@ gold_nomem() ATTRIBUTE_NORETURN;
extern void
gold_unreachable() ATTRIBUTE_NORETURN;
+// Queue up the first set of tasks.
+extern void
+queue_initial_tasks(const General_options&,
+ const Dirsearch&,
+ const Input_argument_list&,
+ Workqueue*,
+ Input_objects*,
+ Symbol_table*,
+ Layout*);
+
+// Queue up the middle set of tasks.
+extern void
+queue_middle_tasks(const General_options&,
+ const Input_objects*,
+ Symbol_table*,
+ Layout*,
+ Workqueue*);
+
+// Queue up the final set of tasks.
extern void
queue_final_tasks(const General_options&,
const Input_objects*,