OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:m_Config
(Results
1 - 25
of
31
) sorted by null
1
2
/frameworks/compile/mclinker/lib/Target/
ELFDynamic.cpp
37
: m_pEntryFactory(NULL), m_Backend(pParent),
m_Config
(pConfig), m_Idx(0) {
39
if (
m_Config
.targets().is32Bits()) {
40
if (
m_Config
.targets().isLittleEndian())
42
} else if (
m_Config
.targets().is64Bits()) {
43
if (
m_Config
.targets().isLittleEndian())
46
fatal(diag::unsupported_bitclass) <<
m_Config
.targets().triple().str()
47
<<
m_Config
.targets().bitclass();
101
if (LinkerConfig::DynObj ==
m_Config
.codeGenType()) {
104
if (
m_Config
.options().Bsymbolic())
164
if (
m_Config
.options().hasOrigin()
[
all
...]
TargetLDBackend.cpp
15
:
m_Config
(pConfig) {
/frameworks/compile/mclinker/include/mcld/LD/
DiagnosticInfos.h
50
const LinkerConfig&
m_Config
;
ELFBinaryReader.h
42
const LinkerConfig&
m_Config
;
Relocator.h
49
:
m_Config
(pConfig)
111
const LinkerConfig& config() const { return
m_Config
; }
114
const LinkerConfig&
m_Config
;
TextDiagnosticPrinter.h
43
const LinkerConfig&
m_Config
;
ELFObjectReader.h
69
const LinkerConfig&
m_Config
;
ELFObjectWriter.h
120
const LinkerConfig&
m_Config
;
/frameworks/compile/mclinker/lib/Object/
ObjectLinker.cpp
42
:
m_Config
(pConfig),
72
if (!
m_Config
.options().soname().empty()) {
73
m_pModule->setName(
m_Config
.options().soname());
82
m_pLinker = new FragmentLinker(
m_Config
,
106
ObjectBuilder builder(
m_Config
, *m_pModule);
125
getGroupReader()->readGroup(input, m_pBuilder->getInputBuilder(),
m_Config
);
147
if (
m_Config
.options().isBinaryInput()) {
179
<<
m_Config
.targets().triple().str();
208
if (
m_Config
.options().nmagic() && !
m_Config
.isCodeStatic())
[
all
...]
/frameworks/compile/mclinker/lib/LD/
DiagnosticInfos.cpp
92
:
m_Config
(pConfig) {
117
if (
m_Config
.options().hasMulDefs()) {
125
switch(
m_Config
.codeGenType()) {
127
if (
m_Config
.options().isNoUndefined())
133
if (
m_Config
.options().isNoUndefined())
139
if (
m_Config
.options().isNoUndefined())
155
if (
m_Config
.options().isFatalWarnings()) {
TextDiagnosticPrinter.cpp
31
: m_OStream(pOStream),
m_Config
(pConfig), m_pInput(NULL) {
80
if (0 <=
m_Config
.options().verbose()) {
90
if (1 <=
m_Config
.options().verbose()) {
100
if (2 <=
m_Config
.options().verbose()) {
130
int16_t error_limit =
m_Config
.options().maxErrorNum();
143
int16_t warning_limit =
m_Config
.options().maxWarnNum();
ELFBinaryReader.cpp
33
m_Config
(pConfig) {
76
m_Config
.targets().bitclass() / 8);
ELFObjectReader.cpp
41
m_Config
(pConfig) {
155
if (
m_Config
.options().stripDebug())
201
if (
m_Config
.options().stripDebug()) {
215
if (
m_Config
.options().hasEhFrameHdr() &&
/frameworks/compile/mclinker/include/mcld/CodeGen/
MCLinker.h
72
LinkerConfig&
m_Config
;
/frameworks/compile/mclinker/include/mcld/Fragment/
FragmentLinker.h
70
const LinkerConfig&
m_Config
;
/frameworks/compile/mclinker/include/mcld/Object/
ObjectBuilder.h
96
const LinkerConfig&
m_Config
;
ObjectLinker.h
158
const LinkerConfig&
m_Config
;
/frameworks/compile/mclinker/include/mcld/Target/
TargetLDBackend.h
148
const LinkerConfig& config() const { return
m_Config
; }
151
const LinkerConfig&
m_Config
;
/frameworks/compile/mclinker/lib/Target/X86/
X86PLT.cpp
61
m_Config
(pConfig)
63
assert(LinkerConfig::DynObj ==
m_Config
.codeGenType() ||
64
LinkerConfig::Exec ==
m_Config
.codeGenType() ||
65
LinkerConfig::Binary ==
m_Config
.codeGenType());
68
if (LinkerConfig::DynObj ==
m_Config
.codeGenType()) {
137
if (LinkerConfig::DynObj ==
m_Config
.codeGenType())
214
if (LinkerConfig::Exec ==
m_Config
.codeGenType())
X86PLT.h
145
const LinkerConfig&
m_Config
;
/frameworks/compile/mclinker/lib/MC/
InputBuilder.cpp
21
:
m_Config
(pConfig),
35
:
m_Config
(pConfig),
151
return
m_Config
.attribute().constraint();
/frameworks/compile/mclinker/lib/Target/Hexagon/
HexagonPLT.cpp
42
m_Config
(pConfig)
44
assert(LinkerConfig::DynObj ==
m_Config
.codeGenType() ||
45
LinkerConfig::Exec ==
m_Config
.codeGenType() ||
46
LinkerConfig::Binary ==
m_Config
.codeGenType());
HexagonPLT.h
100
const LinkerConfig&
m_Config
;
/frameworks/compile/mclinker/lib/CodeGen/
MCLinker.cpp
195
m_Config
(pConfig),
213
if (!m_pLinker->emulate(m_Module.getScript(),
m_Config
))
216
m_pBuilder = new IRBuilder(m_Module,
m_Config
);
244
!
m_Config
.bitcode().hasDefined()) {
374
if (
m_Config
.bitcode().hasDefined()) {
375
actions.push_back(new BitcodeAction(
m_Config
.bitcode().getPosition(),
376
m_Config
.bitcode().getPath()));
/frameworks/compile/mclinker/lib/Fragment/
FragmentLinker.cpp
47
:
m_Config
(pConfig),
96
if (LinkerConfig::Object ==
m_Config
.codeGenType())
136
if (LinkerConfig::Object !=
m_Config
.codeGenType())
234
if(llvm::sys::IsLittleEndianHost !=
m_Config
.targets().isLittleEndian()) {
Completed in 268 milliseconds
1
2