aboutsummaryrefslogtreecommitdiff
path: root/gold/common.h
blob: 75237a6a5c526dc00d57e8d383c6c96626ebb963 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
// common.h -- handle common symbols for gold   -*- C++ -*-

#ifndef GOLD_COMMON_H
#define GOLD_COMMON_H

#include "workqueue.h"

namespace gold
{

class General_options;
class Symbol_table;

// This task is used to allocate the common symbols.

class Allocate_commons_task : public Task
{
 public:
  Allocate_commons_task(const General_options& options, Symbol_table* symtab,
			Layout* layout, Task_token* symtab_lock,
			Task_token* blocker)
    : options_(options), symtab_(symtab), layout_(layout),
      symtab_lock_(symtab_lock), blocker_(blocker)
  { }

  // The standard Task methods.

  Is_runnable_type
  is_runnable(Workqueue*);

  Task_locker*
  locks(Workqueue*);

  void
  run(Workqueue*);

 private:
  class Allocate_commons_locker;

  const General_options& options_;
  Symbol_table* symtab_;
  Layout* layout_;
  Task_token* symtab_lock_;
  Task_token* blocker_;
};

} // End namespace gold.

#endif // !defined(GOLD_COMMON_H)