Home
last modified time | relevance | path

Searched refs:LCI (Results 1 – 25 of 30) sorted by relevance

12

/external/swiftshader/third_party/LLVM/tools/macho-dump/
Dmacho-dump.cpp128 const MachOObject::LoadCommandInfo &LCI) { in DumpSegmentCommand() argument
130 Obj.ReadSegmentLoadCommand(LCI, SLC); in DumpSegmentCommand()
144 Obj.ReadSection(LCI, i, Sect); in DumpSegmentCommand()
164 const MachOObject::LoadCommandInfo &LCI) { in DumpSegment64Command() argument
166 Obj.ReadSegment64LoadCommand(LCI, SLC); in DumpSegment64Command()
180 Obj.ReadSection64(LCI, i, Sect); in DumpSegment64Command()
215 const MachOObject::LoadCommandInfo &LCI) { in DumpSymtabCommand() argument
217 Obj.ReadSymtabLoadCommand(LCI, SLC); in DumpSymtabCommand()
266 const MachOObject::LoadCommandInfo &LCI) { in DumpDysymtabCommand() argument
268 Obj.ReadDysymtabLoadCommand(LCI, DLC); in DumpDysymtabCommand()
[all …]
/external/llvm/tools/dsymutil/
DMachOUtils.cpp127 for (const auto &LCI : Obj.load_commands()) { in iterateOnSegments() local
129 if (LCI.C.cmd == MachO::LC_SEGMENT) in iterateOnSegments()
130 Segment = adaptFrom32bits(Obj.getSegmentLoadCommand(LCI)); in iterateOnSegments()
131 else if (LCI.C.cmd == MachO::LC_SEGMENT_64) in iterateOnSegments()
132 Segment = Obj.getSegment64LoadCommand(LCI); in iterateOnSegments()
206 const object::MachOObjectFile::LoadCommandInfo &LCI, unsigned Idx) { in getSection() argument
207 return Obj.getSection(LCI, Idx); in getSection()
213 const object::MachOObjectFile::LoadCommandInfo &LCI, unsigned Idx) { in getSection() argument
214 return Obj.getSection64(LCI, Idx); in getSection()
227 const object::MachOObjectFile::LoadCommandInfo &LCI, SegmentTy Segment, in transferSegmentAndSections() argument
[all …]
/external/swiftshader/third_party/LLVM/lib/Analysis/
DLibCallAliasAnalysis.cpp26 FunctionPass *llvm::createLibCallAliasAnalysisPass(LibCallInfo *LCI) { in createLibCallAliasAnalysisPass() argument
27 return new LibCallAliasAnalysis(LCI); in createLibCallAliasAnalysisPass()
31 delete LCI; in ~LibCallAliasAnalysis()
68 LCI->getLocationInfo(Details[i].LocationID); in AnalyzeLibCallDetails()
89 LCI->getLocationInfo(Details[i].LocationID); in AnalyzeLibCallDetails()
126 if (LCI) { in getModRefInfo()
128 if (const LibCallFunctionInfo *FI = LCI->getFunctionInfo(F)) { in getModRefInfo()
DScalarEvolution.cpp3700 if (ConstantInt *LCI = dyn_cast<ConstantInt>(BO->getOperand(1))) in createSCEV() local
3702 LCI->getValue() == CI->getValue()) in createSCEV()
/external/swiftshader/third_party/llvm-7.0/llvm/tools/dsymutil/
DMachOUtils.cpp142 for (const auto &LCI : Obj.load_commands()) { in iterateOnSegments() local
144 if (LCI.C.cmd == MachO::LC_SEGMENT) in iterateOnSegments()
145 Segment = adaptFrom32bits(Obj.getSegmentLoadCommand(LCI)); in iterateOnSegments()
146 else if (LCI.C.cmd == MachO::LC_SEGMENT_64) in iterateOnSegments()
147 Segment = Obj.getSegment64LoadCommand(LCI); in iterateOnSegments()
221 const object::MachOObjectFile::LoadCommandInfo &LCI, unsigned Idx) { in getSection() argument
222 return Obj.getSection(LCI, Idx); in getSection()
228 const object::MachOObjectFile::LoadCommandInfo &LCI, unsigned Idx) { in getSection() argument
229 return Obj.getSection64(LCI, Idx); in getSection()
242 const object::MachOObjectFile::LoadCommandInfo &LCI, SegmentTy Segment, in transferSegmentAndSections() argument
[all …]
/external/swiftshader/third_party/LLVM/lib/Object/
DMachOObjectFile.cpp61 LoadCommandInfo LCI = MachOObj->getLoadCommandInfo(DRI.d.a); in moveToNextSymbol() local
62 if (LCI.Command.Type == macho::LCT_Symtab) { in moveToNextSymbol()
64 MachOObj->ReadSymtabLoadCommand(LCI, SymtabLoadCmd); in moveToNextSymbol()
77 LoadCommandInfo LCI = MachOObj->getLoadCommandInfo(DRI.d.a); in getSymbolTableEntry() local
78 MachOObj->ReadSymtabLoadCommand(LCI, SymtabLoadCmd); in getSymbolTableEntry()
92 LoadCommandInfo LCI = MachOObj->getLoadCommandInfo(DRI.d.a); in getSymbol64TableEntry() local
93 MachOObj->ReadSymtabLoadCommand(LCI, SymtabLoadCmd); in getSymbol64TableEntry()
282 LoadCommandInfo LCI = MachOObj->getLoadCommandInfo(DRI.d.a); in moveToNextSection() local
283 if (LCI.Command.Type == macho::LCT_Segment) { in moveToNextSection()
285 MachOObj->ReadSegmentLoadCommand(LCI, SegmentLoadCmd); in moveToNextSection()
[all …]
DMachOObject.cpp182 void MachOObject::ReadSegmentLoadCommand(const LoadCommandInfo &LCI, in ReadSegmentLoadCommand() argument
184 ReadInMemoryStruct(*this, Buffer->getBuffer(), LCI.Offset, Res); in ReadSegmentLoadCommand()
200 void MachOObject::ReadSegment64LoadCommand(const LoadCommandInfo &LCI, in ReadSegment64LoadCommand() argument
202 ReadInMemoryStruct(*this, Buffer->getBuffer(), LCI.Offset, Res); in ReadSegment64LoadCommand()
214 void MachOObject::ReadSymtabLoadCommand(const LoadCommandInfo &LCI, in ReadSymtabLoadCommand() argument
216 ReadInMemoryStruct(*this, Buffer->getBuffer(), LCI.Offset, Res); in ReadSymtabLoadCommand()
242 void MachOObject::ReadDysymtabLoadCommand(const LoadCommandInfo &LCI, in ReadDysymtabLoadCommand() argument
244 ReadInMemoryStruct(*this, Buffer->getBuffer(), LCI.Offset, Res); in ReadDysymtabLoadCommand()
254 void MachOObject::ReadLinkeditDataLoadCommand(const LoadCommandInfo &LCI, in ReadLinkeditDataLoadCommand() argument
256 ReadInMemoryStruct(*this, Buffer->getBuffer(), LCI.Offset, Res); in ReadLinkeditDataLoadCommand()
[all …]
/external/swiftshader/third_party/LLVM/include/llvm/Object/
DMachOObject.h142 const LoadCommandInfo &LCI,
145 const LoadCommandInfo &LCI,
148 const LoadCommandInfo &LCI,
151 const LoadCommandInfo &LCI,
154 const LoadCommandInfo &LCI,
161 const LoadCommandInfo &LCI,
165 const LoadCommandInfo &LCI,
/external/swiftshader/third_party/llvm-7.0/llvm/tools/llvm-cov/
DSourceCoverageView.cpp195 LineCoverageIterator LCI{CoverageInfo, 1}; in print() local
196 LineCoverageIterator LCIEnd = LCI.getEnd(); in print()
200 ++LI, ++LCI) { in print()
204 if (LCI == LCIEnd) in print()
215 renderLineCoverageColumn(OS, *LCI); in print()
224 renderLine(OS, {*LI, LI.line_number()}, *LCI, ExpansionColumn, ViewDepth); in print()
227 if (shouldRenderRegionMarkers(*LCI)) in print()
228 renderRegionMarkers(OS, *LCI, ViewDepth); in print()
240 renderExpansionSite(OS, {*LI, LI.line_number()}, *LCI, ExpansionColumn, in print()
/external/swiftshader/third_party/LLVM/include/llvm/Analysis/
DLibCallAliasAnalysis.h28 LibCallInfo *LCI; member
31 : FunctionPass(ID), LCI(LC) { in FunctionPass()
35 : FunctionPass(ID), LCI(LC) { in LibCallAliasAnalysis()
DPasses.h73 FunctionPass *createLibCallAliasAnalysisPass(LibCallInfo *LCI);
/external/swiftshader/third_party/LLVM/tools/llvm-objdump/
DMachODump.cpp222 const MachOObject::LoadCommandInfo &LCI = MachOObj->getLoadCommandInfo(i); in getSectionsAndSymbols() local
223 if (LCI.Command.Type == macho::LCT_Segment) { in getSectionsAndSymbols()
225 MachOObj->ReadSegmentLoadCommand(LCI, SegmentLC); in getSectionsAndSymbols()
230 MachOObj->ReadSection(LCI, SectNum, Sect); in getSectionsAndSymbols()
234 } else if (LCI.Command.Type == macho::LCT_Segment64) { in getSectionsAndSymbols()
236 MachOObj->ReadSegment64LoadCommand(LCI, Segment64LC); in getSectionsAndSymbols()
242 MachOObj->ReadSection64(LCI, SectNum, Sect64); in getSectionsAndSymbols()
245 } else if (LCI.Command.Type == macho::LCT_FunctionStarts) { in getSectionsAndSymbols()
249 MachOObj->ReadLinkeditDataLoadCommand(LCI, LLC); in getSectionsAndSymbols()
313 const MachOObject::LoadCommandInfo &LCI = MachOObj->getLoadCommandInfo(i); in DisassembleInputMachO() local
[all …]
/external/swiftshader/third_party/LLVM/lib/ExecutionEngine/RuntimeDyld/
DRuntimeDyldMachO.cpp426 const MachOObject::LoadCommandInfo &LCI = Obj->getLoadCommandInfo(i); in loadObject() local
427 switch (LCI.Command.Type) { in loadObject()
432 SegmentLCI = &LCI; in loadObject()
437 SymtabLCI = &LCI; in loadObject()
442 DysymtabLCI = &LCI; in loadObject()
/external/llvm/lib/Analysis/
DScalarEvolution.cpp5110 if (ConstantInt *LCI = dyn_cast<ConstantInt>(LBO->getOperand(1))) in createSCEV() local
5112 LCI->getValue() == CI->getValue()) in createSCEV()
/external/swiftshader/third_party/llvm-7.0/llvm/lib/Analysis/
DScalarEvolution.cpp6317 if (ConstantInt *LCI = dyn_cast<ConstantInt>(LBO->getOperand(1))) in createSCEV() local
6319 LCI->getValue() == CI->getValue()) in createSCEV()
/external/toolchain-utils/android_bench_suite/panorama_input/
Dtest_007.ppm588 LCI��ԭ����������������������������������������������������������������ȼ�¹�������������������������…
1107 4� BPV #R'S(]<AV5:�����͹��;)*sgkʾ����������������������������������LCI
/external/cldr/tools/java/org/unicode/cldr/util/data/
DApproximateWidth.txt101 0F86..0F87; 0; # TIBETAN SIGN LCI RTAGS..TIBETAN SIGN YANG RTAGS
/external/icu/icu4c/source/data/unidata/norm2/
Duts46.txt1438 # 0F86..0F8B valid # 2.0 TIBETAN SIGN LCI RTAGS..TIBETAN SIGN GRU MED RGYINGS
/external/cldr/tools/java/org/unicode/cldr/util/data/external/
D2013-1_UNLOCODE_CodeListPart1.csv4767 ,"BE","LCI","Liberchies","Liberchies","WHT","--3-----","RN","0307",,"5030N 00425E",
7157 ,"BR","LCI","Luis Correia","Luis Correia","PI","--3-----","RQ","0607",,,
9594 ,"CA","LCI","Les C�dres","Les Cedres","QC","--3-----","RL","0001",,,
12555 ,"CL","LCI","La Cisterna","La Cisterna","RM","--3-----","RN","0501",,"3333S 07041W",
29301 "X","ES","LCI","La Caleta Interial","La Caleta Interial",,"1-------","XX","1301",,"",""
37631 ,"FR","LCI","Lenclo�tre","Lencloitre","86","--3-----","RL","0212",,"4649N 00020E",
D2013-1_UNLOCODE_CodeListPart2.csv3155 ,"GB","LCI","Lochailort","Lochailort","HLD","--3-----","RQ","0907",,"5653N 00540W",
12735 ,"IT","LCI","Lanciano","Lanciano","CH","-23-----","RL","0407",,"4214N 01423E",
D2013-1_UNLOCODE_CodeListPart3.csv18072 ,"US","LCI","Laconia","Laconia","NH","---4----","AI","0001",,,
/external/cldr/common/uca/
Dallkeys_DUCET.txt170 0F86 ; [.0000.0000.0000.0000] # TIBETAN SIGN LCI RTAGS
Dallkeys_CLDR.txt191 0F86 ; [.0000.0000.0000] # TIBETAN SIGN LCI RTAGS
DUCA_Rules.txt190 = ྆ # 2.0 [Mn] [0000.0000.0000] U+0F86 TIBETAN SIGN LCI RTAGS
/external/cldr/tools/java/org/unicode/cldr/draft/
DCategories.txt3285 0F86 Mn Mark TIBETAN SIGN LCI RTAGS

12