aboutsummaryrefslogtreecommitdiff
path: root/gold/readsyms.h
diff options
context:
space:
mode:
authorIan Lance Taylor <iant@google.com>2006-08-04 23:10:59 +0000
committerIan Lance Taylor <iant@google.com>2006-08-04 23:10:59 +0000
commitbae7f79e03d6405f5ceec0e3e24671e6b30f29ed (patch)
tree4b9df8c6433411b45963dd75e3a6dcad9a22518e /gold/readsyms.h
parentc17d87de17351aed016a9d0b0712cdee4cca5f9e (diff)
downloadgdb-bae7f79e03d6405f5ceec0e3e24671e6b30f29ed.zip
gdb-bae7f79e03d6405f5ceec0e3e24671e6b30f29ed.tar.gz
gdb-bae7f79e03d6405f5ceec0e3e24671e6b30f29ed.tar.bz2
Initial CVS checkin of gold
Diffstat (limited to 'gold/readsyms.h')
-rw-r--r--gold/readsyms.h95
1 files changed, 95 insertions, 0 deletions
diff --git a/gold/readsyms.h b/gold/readsyms.h
new file mode 100644
index 0000000..bad96c1
--- /dev/null
+++ b/gold/readsyms.h
@@ -0,0 +1,95 @@
+// readsyms.h -- read input file symbols for gold -*- C++ -*-
+
+#ifndef GOLD_READSYMS_H
+#define GOLD_READSYMS_H
+
+#include "targetsize.h"
+#include "workqueue.h"
+#include "object.h"
+
+namespace gold
+{
+
+// This Task is responsible for reading the symbols from an input
+// file. This also includes reading the relocations so that we can
+// check for any that require a PLT and/or a GOT. After the data has
+// been read, this queues up another task to actually add the symbols
+// to the symbol table. The tasks are separated because the file
+// reading can occur in parallel but adding the symbols must be done
+// in the order of the input files.
+
+class Read_symbols : public Task
+{
+ public:
+ // DIRPATH is the list of directories to search for libraries.
+ // INPUT is the file to read. THIS_BLOCKER is used to prevent the
+ // associated Add_symbols task from running before the previous one
+ // has completed; it will be NULL for the first task. NEXT_BLOCKER
+ // is used to block the next input file from adding symbols.
+ Read_symbols(const General_options& options, const Dirsearch& dirpath,
+ const Input_argument& input, Task_token* this_blocker,
+ Task_token* next_blocker)
+ : options_(options), dirpath_(dirpath), input_(input),
+ this_blocker_(this_blocker), next_blocker_(next_blocker)
+ { }
+
+ ~Read_symbols();
+
+ // The standard Task methods.
+
+ Is_runnable_type
+ is_runnable(Workqueue*);
+
+ Task_locker*
+ locks(Workqueue*);
+
+ void
+ run(Workqueue*);
+
+ private:
+ const General_options& options_;
+ const Dirsearch& dirpath_;
+ const Input_argument& input_;
+ Task_token* this_blocker_;
+ Task_token* next_blocker_;
+};
+
+// This Task handles adding the symbols to the symbol table. These
+// tasks must be run in the same order as the arguments appear on the
+// command line.
+
+class Add_symbols : public Task
+{
+ public:
+ // THIS_BLOCKER is used to prevent this task from running before the
+ // one for the previous input file. NEXT_BLOCKER is used to prevent
+ // the next task from running.
+ Add_symbols(Object* object, Read_symbols_data sd, Task_token* this_blocker,
+ Task_token* next_blocker)
+ : object_(object), sd_(sd), this_blocker_(this_blocker),
+ next_blocker_(next_blocker)
+ { }
+
+ ~Add_symbols();
+
+ // The standard Task methods.
+
+ Is_runnable_type
+ is_runnable(Workqueue*);
+
+ Task_locker*
+ locks(Workqueue*);
+
+ void
+ run(Workqueue*);
+
+private:
+ Object* object_;
+ Read_symbols_data sd_;
+ Task_token* this_blocker_;
+ Task_token* next_blocker_;
+};
+
+} // end namespace gold
+
+#endif // !defined(GOLD_READSYMS_H)