Searched refs:Output (Results 1 - 25 of 41) sorted by relevance

12

/frameworks/compile/mclinker/lib/MC/
H A DMCLDOutput.cpp15 Output::Output() function in class:Output
19 Output::Output(const sys::fs::Path& pRealPath, function in class:Output
20 Output::Type pType)
24 Output::~Output()
H A DMCLDDriver.cpp89 case Output::DynObj: {
95 case Output::Exec: {
101 case Output::Object: {
252 if (m_LDInfo.output().type() == Output::Exec)
307 case Output::Object:
310 case Output::DynObj:
313 case Output::Exec:
/frameworks/compile/mclinker/include/mcld/LD/
H A DELFWriter.h54 Output& pOutput) const;
59 Output& pOutput) const;
64 const Output& pOutput) const;
67 void emitELF32SectionHeader(Output& pOutput, MCLinker& pLinker) const;
69 void emitELF64SectionHeader(Output& pOutput, MCLinker& pLinker) const;
71 void emitELF32ProgramHeader(Output& pOutput,
74 void emitELF64ProgramHeader(Output& pOutput,
78 void emitELF32ShStrTab(Output& pOutput, MCLinker& pLinker) const;
80 void emitELF64ShStrTab(Output& pOutput, MCLinker& pLinker) const;
87 const Output
[all...]
H A DObjectWriter.h19 class Output;
33 virtual llvm::error_code writeObject(Output& pOutput) = 0;
H A DDynObjWriter.h35 virtual llvm::error_code writeDynObj(Output& pOutput) = 0;
H A DExecWriter.h35 virtual llvm::error_code writeExecutable(Output& pOutput) = 0;
H A DELFObjectWriter.h37 llvm::error_code writeObject(Output& pOutput)
H A DELFDynObjWriter.h43 llvm::error_code writeDynObj(Output& pOutput);
H A DELFExecWriter.h43 llvm::error_code writeExecutable(Output& pOutput);
H A DEhFrameHdr.h31 class Output;
52 void emitOutput(Output& pOutput, MCLinker& pLinker);
/frameworks/compile/mclinker/include/mcld/MC/
H A DMCLDOutput.h10 // Output class inherits MCLDFile, which is used to represent a output file.
32 class Output : public MCLDFile class in namespace:mcld
42 Output();
43 explicit Output(const sys::fs::Path& pRealPath,
46 ~Output();
H A DMCLDInfo.h69 Output& output()
72 const Output& output() const
121 Output* m_pOutput;
/frameworks/compile/mclinker/lib/Target/Mips/
H A DMipsLDBackend.h46 void initTargetSymbols(MCLinker& pLinker, const Output& pOutput);
61 const Output& pOutput,
85 void doPreLayout(const Output& pOutput,
90 void doPostLayout(const Output& pOutput,
119 uint64_t emitSectionData(const Output& pOutput,
126 virtual void emitDynNamePools(Output& pOutput,
138 unsigned int getTargetSectionOrder(const Output& pOutput,
143 bool finalizeTargetSymbols(MCLinker& pLinker, const Output& pOutput);
154 const Output& pOutput);
160 const Output
[all...]
/frameworks/compile/mclinker/lib/Target/X86/
H A DX86LDBackend.h97 void doPreLayout(const Output& pOutput,
102 void doPostLayout(const Output& pOutput,
131 uint64_t emitSectionData(const Output& pOutput,
163 void initTargetSymbols(MCLinker& pLinker, const Output& pOutput);
175 const Output& pOutput,
187 unsigned int getTargetSectionOrder(const Output& pOutput,
192 bool finalizeTargetSymbols(MCLinker& pLinker, const Output& pOutput);
199 const Output& pOutput);
205 const Output& pOutput);
221 void createX86GOT(MCLinker& pLinker, const Output
[all...]
H A DX86PLT.h21 class Output;
50 const Output& pOutput);
93 const Output& m_Output;
H A DX86LDBackend.cpp76 void X86GNULDBackend::doPreLayout(const Output& pOutput,
81 if (Output::DynObj == pOutput.type() && (NULL == m_pGOTPLT)) {
86 void X86GNULDBackend::doPostLayout(const Output& pOutput,
110 void X86GNULDBackend::createX86GOT(MCLinker& pLinker, const Output& pOutput)
119 void X86GNULDBackend::createX86GOTPLT(MCLinker& pLinker, const Output& pOutput)
157 const Output& pOutput)
176 const Output& pOutput)
272 const Output& pOutput)
316 const Output& pOutput)
413 if (Output
[all...]
/frameworks/compile/mclinker/include/mcld/Target/
H A DGNULDBackend.h103 ELFFileFormat* getOutputFormat(const Output& pOutput);
104 const ELFFileFormat* getOutputFormat(const Output& pOutput) const;
120 bool initStandardSymbols(MCLinker& pLinker, const Output& pOutput);
126 bool finalizeSymbols(MCLinker& pLinker, const Output& pOutput) {
133 const Output& pOutput);
137 const Output& pOutput) = 0;
173 uint64_t segmentStartAddr(const Output& pOutput,
179 virtual void sizeNamePools(const Output& pOutput,
184 virtual uint64_t emitSectionData(const Output& pOutput,
191 virtual void emitRegNamePools(Output
[all...]
H A DTargetLDBackend.h30 class Output;
56 virtual void initTargetSymbols(MCLinker& pLinker, const Output& pOutput) { }
58 virtual bool initStandardSymbols(MCLinker& pLinker, const Output& pOutput) = 0;
74 const Output& pOutput,
101 virtual void preLayout(const Output& pOutput,
106 virtual void postLayout(const Output& pOutput,
111 virtual void postProcessing(const Output& pOutput,
131 virtual unsigned int getSectionOrder(const Output& pOutput,
139 sizeNamePools(const Output& pOutput,
147 virtual bool finalizeSymbols(MCLinker& pLinker, const Output
[all...]
/frameworks/compile/mclinker/lib/Target/ARM/
H A DARMLDBackend.h23 class Output;
89 void initTargetSymbols(MCLinker& pLinker, const Output& pOutput);
107 const Output& pOutput,
135 void doPreLayout(const Output& pOutput,
140 void doPostLayout(const Output& pOutput,
170 uint64_t emitSectionData(const Output& pOutput,
193 unsigned int getTargetSectionOrder(const Output& pOutput,
198 bool finalizeTargetSymbols(MCLinker& pLinker, const Output& pOutput);
210 const Output& pOutput);
216 const Output
[all...]
/frameworks/compile/mclinker/unittests/
H A DReadStageTest.h35 void dumpOutput(const mcld::Output &pOutput, mcld::FileHandle &pFile, size_t pIdent);
/frameworks/compile/mclinker/lib/LD/
H A DELFWriter.cpp38 Output& pOutput) const
58 case Output::Object:
61 case Output::DynObj:
64 case Output::Exec:
89 Output& pOutput) const
109 case Output::Object:
112 case Output::DynObj:
115 case Output::Exec:
140 const Output& pOutput) const
152 && (pOutput.type() != Output
[all...]
H A DDiagnosticInfos.cpp123 case Output::Object:
129 case Output::DynObj:
135 case Output::Exec:
/frameworks/compile/mclinker/lib/Target/
H A DGNULDBackend.cpp97 uint64_t GNULDBackend::segmentStartAddr(const Output& pOutput,
174 bool GNULDBackend::initStandardSymbols(MCLinker& pLinker, const Output& pOutput)
405 GNULDBackend::finalizeStandardSymbols(MCLinker& pLinker, const Output& pOutput)
638 ELFFileFormat* GNULDBackend::getOutputFormat(const Output& pOutput)
641 case Output::DynObj:
643 case Output::Exec:
646 case Output::Object:
653 const ELFFileFormat* GNULDBackend::getOutputFormat(const Output& pOutput) const
656 case Output::DynObj:
658 case Output
[all...]
/frameworks/base/media/libdrm/mobile1/
H A DAndroid.mk8 # Output: libdrm1.so
58 # Output: libdrm1_jni.so
/frameworks/base/media/mca/filterfw/native/core/
H A Dstatistics.h60 float Output() const { return value_; } function in class:android::filterfw::RCFilter

Completed in 416 milliseconds

12