Searched refs:OutputSectDesc (Results 1 - 11 of 11) sorted by relevance

/frameworks/compile/mclinker/lib/Script/
H A DOutputSectDesc.cpp1 //===- OutputSectDesc.cpp -------------------------------------------------===//
9 #include "mcld/Script/OutputSectDesc.h"
26 // OutputSectDesc
28 OutputSectDesc::OutputSectDesc(const std::string& pName, const Prolog& pProlog) function in class:mcld::OutputSectDesc
34 OutputSectDesc::~OutputSectDesc() {
41 void OutputSectDesc::dump() const {
136 void OutputSectDesc::push_back(ScriptCommand* pCommand) {
148 void OutputSectDesc
[all...]
H A DScriptFile.cpp152 OutputSectDesc* output_desc =
153 llvm::cast<OutputSectDesc>(sections->back());
187 const OutputSectDesc::Prolog& pProlog) {
191 sections->push_back(new OutputSectDesc(pName, pProlog));
196 void ScriptFile::leaveOutputSectDesc(const OutputSectDesc::Epilog& pEpilog) {
202 OutputSectDesc* output_desc = llvm::cast<OutputSectDesc>(sections->back());
215 OutputSectDesc* output_sect = llvm::cast<OutputSectDesc>(sections->back());
H A DScriptParser.yy31 #include "mcld/Script/OutputSectDesc.h"
74 OutputSectDesc::Prolog output_prolog;
75 OutputSectDesc::Type output_type;
76 OutputSectDesc::Constraint output_constraint;
77 OutputSectDesc::Epilog output_epilog;
400 { $$ = OutputSectDesc::LOAD; }
402 { $$ = OutputSectDesc::LOAD; }
406 { $$ = OutputSectDesc::NOLOAD; }
408 { $$ = OutputSectDesc::DSECT; }
410 { $$ = OutputSectDesc
[all...]
H A DAndroid.mk20 OutputSectDesc.cpp \
H A DInputSectDesc.cpp25 const OutputSectDesc& pOutputDesc)
/frameworks/compile/mclinker/include/mcld/Script/
H A DInputSectDesc.h19 class OutputSectDesc;
74 const OutputSectDesc& pOutputDesc);
92 const OutputSectDesc& m_OutputSectDesc;
H A DOutputSectDesc.h1 //===- OutputSectDesc.h ---------------------------------------------------===//
24 /** \class OutputSectDesc
28 class OutputSectDesc : public ScriptCommand { class in namespace:mcld
160 OutputSectDesc(const std::string& pName, const Prolog& pProlog);
161 ~OutputSectDesc();
H A DScriptFile.h14 #include "mcld/Script/OutputSectDesc.h"
132 const OutputSectDesc::Prolog& pProlog);
134 void leaveOutputSectDesc(const OutputSectDesc::Epilog& pEpilog);
/frameworks/compile/mclinker/include/mcld/Object/
H A DSectionMap.h14 #include "mcld/Script/OutputSectDesc.h"
75 explicit Output(const OutputSectDesc& pOutputDesc);
79 const OutputSectDesc::Prolog& prolog() const { return m_Prolog; }
80 OutputSectDesc::Prolog& prolog() { return m_Prolog; }
82 const OutputSectDesc::Epilog& epilog() const { return m_Epilog; }
83 OutputSectDesc::Epilog& epilog() { return m_Epilog; }
130 OutputSectDesc::Prolog m_Prolog;
131 OutputSectDesc::Epilog m_Epilog;
172 const OutputSectDesc& pOutputDesc);
/frameworks/compile/mclinker/lib/Object/
H A DSectionMap.cpp77 m_Prolog.m_Type = OutputSectDesc::LOAD;
81 m_Prolog.m_Constraint = OutputSectDesc::NO_CONSTRAINT;
95 SectionMap::Output::Output(const OutputSectDesc& pOutputDesc)
254 const OutputSectDesc& pOutputDesc) {
/frameworks/compile/mclinker/lib/Target/
H A DGNULDBackend.cpp37 #include "mcld/Script/OutputSectDesc.h"
2156 if ((*out)->prolog().type() == OutputSectDesc::NOLOAD) {
2365 case OutputSectDesc::NO_CONSTRAINT:
2368 case OutputSectDesc::ONLY_IF_RO:
2371 case OutputSectDesc::ONLY_IF_RW:
2394 OutputSectDesc::Type type = OutputSectDesc::LOAD;

Completed in 132 milliseconds