OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:YamlMF
(Results
1 - 2
of
2
) sorted by null
/external/llvm/lib/CodeGen/MIRParser/
MIRParser.cpp
101
const yaml::MachineFunction &
YamlMF
,
105
const yaml::MachineFunction &
YamlMF
);
108
const yaml::MachineFunction &
YamlMF
,
123
const yaml::MachineFunction &
YamlMF
,
283
const yaml::MachineFunction &
YamlMF
= *It->getValue();
284
if (
YamlMF
.Alignment)
285
MF.setAlignment(
YamlMF
.Alignment);
286
MF.setExposesReturnsTwice(
YamlMF
.ExposesReturnsTwice);
287
MF.setHasInlineAsm(
YamlMF
.HasInlineAsm);
289
if (initializeRegisterInfo(MF,
YamlMF
, PFS)
[
all
...]
/external/llvm/lib/CodeGen/
MIRPrinter.cpp
168
yaml::MachineFunction
YamlMF
;
169
YamlMF
.Name = MF.getName();
170
YamlMF
.Alignment = MF.getAlignment();
171
YamlMF
.ExposesReturnsTwice = MF.exposesReturnsTwice();
172
YamlMF
.HasInlineAsm = MF.hasInlineAsm();
173
convert(
YamlMF
, MF.getRegInfo(), MF.getSubtarget().getRegisterInfo());
176
convert(MST,
YamlMF
.FrameInfo, *MF.getFrameInfo());
177
convertStackObjects(
YamlMF
, *MF.getFrameInfo(), MF.getMMI(), MST,
180
convert(
YamlMF
, *ConstantPool);
182
convert(MST,
YamlMF
.JumpTableInfo, *JumpTableInfo)
[
all
...]
Completed in 94 milliseconds