summaryrefslogtreecommitdiffstats
path: root/lld/lib/Core/DefinedAtom.cpp
blob: f1d308088ed4ba3244dfc21300d31a9d09921fef (plain)
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
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
//===- DefinedAtom.cpp ------------------------------------------*- C++ -*-===//
//
//                             The LLVM Linker
//
// This file is distributed under the University of Illinois Open Source
// License. See LICENSE.TXT for details.
//
//===----------------------------------------------------------------------===//

#include "llvm/Support/ErrorHandling.h"
#include "lld/Core/DefinedAtom.h"
#include "lld/Core/File.h"

namespace lld {

DefinedAtom::ContentPermissions DefinedAtom::permissions() const {
  // By default base permissions on content type.
  return permissions(this->contentType());
}

// Utility function for deriving permissions from content type
DefinedAtom::ContentPermissions DefinedAtom::permissions(ContentType type) {
  switch (type) {
  case typeCode:
  case typeResolver:
  case typeBranchIsland:
  case typeBranchShim:
  case typeStub:
  case typeStubHelper:
  case typeMachHeader:
    return permR_X;

  case typeConstant:
  case typeCString:
  case typeUTF16String:
  case typeCFI:
  case typeLSDA:
  case typeLiteral4:
  case typeLiteral8:
  case typeLiteral16:
  case typeDTraceDOF:
  case typeCompactUnwindInfo:
  case typeProcessedUnwindInfo:
  case typeRONote:
  case typeNoAlloc:
    return permR__;

  case typeData:
  case typeDataFast:
  case typeZeroFill:
  case typeZeroFillFast:
  case typeObjC1Class:
  case typeLazyPointer:
  case typeLazyDylibPointer:
  case typeThunkTLV:
  case typeRWNote:
    return permRW_;

  case typeGOT:
  case typeConstData:
  case typeCFString:
  case typeInitializerPtr:
  case typeTerminatorPtr:
  case typeCStringPtr:
  case typeObjCClassPtr:
  case typeObjC2CategoryList:
  case typeInterposingTuples:
  case typeTLVInitialData:
  case typeTLVInitialZeroFill:
  case typeTLVInitializerPtr:
  case typeThreadData:
  case typeThreadZeroFill:
    return permRW_L;

  case typeGroupComdat:
  case typeGnuLinkOnce:
  case typeUnknown:
  case typeTempLTO:
  case typeSectCreate:
    return permUnknown;
  }
  llvm_unreachable("unknown content type");
}

bool DefinedAtom::compareByPosition(const DefinedAtom *lhs,
                                    const DefinedAtom *rhs) {
  if (lhs == rhs)
    return false;
  const File *lhsFile = &lhs->file();
  const File *rhsFile = &rhs->file();
  if (lhsFile->ordinal() != rhsFile->ordinal())
    return lhsFile->ordinal() < rhsFile->ordinal();
  assert(lhs->ordinal() != rhs->ordinal());
  return lhs->ordinal() < rhs->ordinal();
}

} // namespace
OpenPOWER on IntegriCloud