Home
last modified time | relevance | path

Searched refs:SimpleDefinedAtom (Results 1 – 10 of 10) sorted by relevance

/external/llvm-project/lld/lib/ReaderWriter/MachO/
DStubsPass.cpp34 class LazyPointerAtom : public SimpleDefinedAtom {
37 : SimpleDefinedAtom(file), _is64(is64) { } in LazyPointerAtom()
70 class NonLazyPointerAtom : public SimpleDefinedAtom {
73 : SimpleDefinedAtom(file), _is64(is64), _contentType(contentType) { } in NonLazyPointerAtom()
107 class StubAtom : public SimpleDefinedAtom {
110 : SimpleDefinedAtom(file), _stubInfo(stubInfo){ } in StubAtom()
141 class StubHelperAtom : public SimpleDefinedAtom {
144 : SimpleDefinedAtom(file), _stubInfo(stubInfo) { } in StubHelperAtom()
176 class StubHelperCommonAtom : public SimpleDefinedAtom {
179 : SimpleDefinedAtom(file), _stubInfo(stubInfo) { } in StubHelperCommonAtom()
[all …]
DAtoms.h27 class MachODefinedAtom : public SimpleDefinedAtom {
32 : SimpleDefinedAtom(f), _name(name), _content(content), in MachODefinedAtom()
40 : SimpleDefinedAtom(f), _name(name), in MachODefinedAtom()
111 class MachOTentativeDefAtom : public SimpleDefinedAtom {
115 : SimpleDefinedAtom(f), _name(std::string(name)), _scope(scope), in MachOTentativeDefAtom()
DObjCPass.cpp30 class ObjCImageInfoAtom : public SimpleDefinedAtom {
35 : SimpleDefinedAtom(file) { in ObjCImageInfoAtom()
DSectCreateFile.h25 class SectCreateAtom : public SimpleDefinedAtom {
29 : SimpleDefinedAtom(file), in SectCreateAtom()
DTLVPass.cpp27 class TLVPEntryAtom : public SimpleDefinedAtom {
30 : SimpleDefinedAtom(file), _is64(is64), _name(name) {} in TLVPEntryAtom()
DGOTPass.cpp51 class GOTEntryAtom : public SimpleDefinedAtom {
54 : SimpleDefinedAtom(file), _is64(is64), _name(name) { } in GOTEntryAtom()
DCompactUnwindPass.cpp65 class UnwindInfoAtom : public SimpleDefinedAtom {
71 : SimpleDefinedAtom(file), _archHandler(archHandler), in UnwindInfoAtom()
DArchHandler_arm.cpp1414 class Thumb2ToArmShimAtom : public SimpleDefinedAtom {
1418 : SimpleDefinedAtom(file) { in Thumb2ToArmShimAtom()
1461 class ArmToThumbShimAtom : public SimpleDefinedAtom {
1465 : SimpleDefinedAtom(file) { in ArmToThumbShimAtom()
DMachONormalizedFileToAtoms.cpp1552 reinterpret_cast<const SimpleDefinedAtom*>(defAtom)->sortReferences(); in normalizedObjectToAtoms()
/external/llvm-project/lld/include/lld/Core/
DSimple.h143 class SimpleDefinedAtom : public DefinedAtom {
145 explicit SimpleDefinedAtom(const File &f) in SimpleDefinedAtom() function
148 ~SimpleDefinedAtom() override { in ~SimpleDefinedAtom()