Searched defs:LCI (Results 1 - 6 of 6) sorted by relevance

/external/llvm/include/llvm/Analysis/
H A DLibCallAliasAnalysis.h28 LibCallInfo *LCI; member in struct:llvm::LibCallAliasAnalysis
31 : FunctionPass(ID), LCI(LC) {
35 : FunctionPass(ID), LCI(LC) {
/external/llvm/lib/Analysis/
H A DLibCallAliasAnalysis.cpp26 FunctionPass *llvm::createLibCallAliasAnalysisPass(LibCallInfo *LCI) { argument
27 return new LibCallAliasAnalysis(LCI);
31 delete LCI;
68 LCI->getLocationInfo(Details[i].LocationID);
89 LCI->getLocationInfo(Details[i].LocationID);
124 // If this is a direct call to a function that LCI knows about, get the
126 if (LCI) {
128 if (const LibCallFunctionInfo *FI = LCI->getFunctionInfo(F)) {
/external/llvm/lib/Object/
H A DMachOObject.cpp183 void MachOObject::ReadSegmentLoadCommand(const LoadCommandInfo &LCI, argument
185 ReadInMemoryStruct(*this, Buffer->getBuffer(), LCI.Offset, Res);
201 void MachOObject::ReadSegment64LoadCommand(const LoadCommandInfo &LCI, argument
203 ReadInMemoryStruct(*this, Buffer->getBuffer(), LCI.Offset, Res);
215 void MachOObject::ReadSymtabLoadCommand(const LoadCommandInfo &LCI, argument
217 ReadInMemoryStruct(*this, Buffer->getBuffer(), LCI.Offset, Res);
243 void MachOObject::ReadDysymtabLoadCommand(const LoadCommandInfo &LCI, argument
245 ReadInMemoryStruct(*this, Buffer->getBuffer(), LCI.Offset, Res);
255 void MachOObject::ReadLinkeditDataLoadCommand(const LoadCommandInfo &LCI, argument
257 ReadInMemoryStruct(*this, Buffer->getBuffer(), LCI
286 ReadSection(const LoadCommandInfo &LCI, unsigned Index, InMemoryStruct<macho::Section> &Res) const argument
309 ReadSection64(const LoadCommandInfo &LCI, unsigned Index, InMemoryStruct<macho::Section64> &Res) const argument
[all...]
H A DMachOObjectFile.cpp61 LoadCommandInfo LCI = MachOObj->getLoadCommandInfo(DRI.d.a); local
62 if (LCI.Command.Type == macho::LCT_Symtab) {
64 MachOObj->ReadSymtabLoadCommand(LCI, SymtabLoadCmd);
77 LoadCommandInfo LCI = MachOObj->getLoadCommandInfo(DRI.d.a); local
78 MachOObj->ReadSymtabLoadCommand(LCI, SymtabLoadCmd);
92 LoadCommandInfo LCI = MachOObj->getLoadCommandInfo(DRI.d.a); local
93 MachOObj->ReadSymtabLoadCommand(LCI, SymtabLoadCmd);
410 LoadCommandInfo LCI = MachOObj->getLoadCommandInfo(DRI.d.a); local
411 if (LCI.Command.Type == macho::LCT_Segment) {
413 MachOObj->ReadSegmentLoadCommand(LCI, SegmentLoadCm
440 LoadCommandInfo LCI = MachOObj->getLoadCommandInfo(DRI.d.a); local
456 LoadCommandInfo LCI = MachOObj->getLoadCommandInfo(DRI.d.a); local
462 LoadCommandInfo LCI = MachOObj->getLoadCommandInfo(DRI.d.a); local
475 LoadCommandInfo LCI = MachOObj->getLoadCommandInfo(DRI.d.a); local
485 LoadCommandInfo LCI = MachOObj->getLoadCommandInfo(DRI.d.a); local
[all...]
/external/llvm/tools/macho-dump/
H A Dmacho-dump.cpp128 const MachOObject::LoadCommandInfo &LCI) {
130 Obj.ReadSegmentLoadCommand(LCI, SLC);
144 Obj.ReadSection(LCI, i, Sect);
164 const MachOObject::LoadCommandInfo &LCI) {
166 Obj.ReadSegment64LoadCommand(LCI, SLC);
180 Obj.ReadSection64(LCI, i, Sect);
215 const MachOObject::LoadCommandInfo &LCI) {
217 Obj.ReadSymtabLoadCommand(LCI, SLC);
266 const MachOObject::LoadCommandInfo &LCI) {
268 Obj.ReadDysymtabLoadCommand(LCI, DL
127 DumpSegmentCommand(MachOObject &Obj, const MachOObject::LoadCommandInfo &LCI) argument
163 DumpSegment64Command(MachOObject &Obj, const MachOObject::LoadCommandInfo &LCI) argument
214 DumpSymtabCommand(MachOObject &Obj, const MachOObject::LoadCommandInfo &LCI) argument
265 DumpDysymtabCommand(MachOObject &Obj, const MachOObject::LoadCommandInfo &LCI) argument
313 DumpLinkeditDataCommand(MachOObject &Obj, const MachOObject::LoadCommandInfo &LCI) argument
335 DumpDataInCodeDataCommand(MachOObject &Obj, const MachOObject::LoadCommandInfo &LCI) argument
366 const MachOObject::LoadCommandInfo &LCI = Obj.getLoadCommandInfo(Index); local
[all...]
/external/llvm/tools/llvm-objdump/
H A DMachODump.cpp222 const MachOObject::LoadCommandInfo &LCI = local
224 if (LCI.Command.Type == macho::LCT_FunctionStarts) {
228 MachOObj->getObject()->ReadLinkeditDataLoadCommand(LCI, LLC);
280 const MachOObject::LoadCommandInfo &LCI = MachOObj->getLoadCommandInfo(i); local
281 if (LCI.Command.Type == macho::LCT_Symtab) {
282 SymtabLCI = &LCI;

Completed in 752 milliseconds