Searched refs:LCI (Results 1 - 9 of 9) sorted by relevance

/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)) {
H A DScalarEvolution.cpp3713 if (ConstantInt *LCI = dyn_cast<ConstantInt>(BO->getOperand(1)))
3715 LCI->getValue() == CI->getValue())
/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
364 DumpLinkerOptionsCommand(MachOObject &Obj, const MachOObject::LoadCommandInfo &LCI) argument
391 const MachOObject::LoadCommandInfo &LCI = Obj.getLoadCommandInfo(Index); local
[all...]
/external/llvm/include/llvm/Object/
H A DMachOObject.h142 const LoadCommandInfo &LCI,
145 const LoadCommandInfo &LCI,
148 const LoadCommandInfo &LCI,
151 const LoadCommandInfo &LCI,
154 const LoadCommandInfo &LCI,
157 const LoadCommandInfo &LCI,
164 const LoadCommandInfo &LCI,
168 const LoadCommandInfo &LCI,
/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) {
H A DPasses.h70 /// about the semantics of a set of libcalls specified by LCI. The newly
73 FunctionPass *createLibCallAliasAnalysisPass(LibCallInfo *LCI);
/external/llvm/lib/Object/
H A DMachOObject.cpp184 void MachOObject::ReadSegmentLoadCommand(const LoadCommandInfo &LCI, argument
186 ReadInMemoryStruct(*this, Buffer->getBuffer(), LCI.Offset, Res);
202 void MachOObject::ReadSegment64LoadCommand(const LoadCommandInfo &LCI, argument
204 ReadInMemoryStruct(*this, Buffer->getBuffer(), LCI.Offset, Res);
216 void MachOObject::ReadSymtabLoadCommand(const LoadCommandInfo &LCI, argument
218 ReadInMemoryStruct(*this, Buffer->getBuffer(), LCI.Offset, Res);
244 void MachOObject::ReadDysymtabLoadCommand(const LoadCommandInfo &LCI, argument
246 ReadInMemoryStruct(*this, Buffer->getBuffer(), LCI.Offset, Res);
256 void MachOObject::ReadLinkeditDataLoadCommand(const LoadCommandInfo &LCI, argument
258 ReadInMemoryStruct(*this, Buffer->getBuffer(), LCI
267 ReadLinkerOptionsLoadCommand(const LoadCommandInfo &LCI, InMemoryStruct<macho::LinkerOptionsLoadCommand> &Res) const argument
298 ReadSection(const LoadCommandInfo &LCI, unsigned Index, InMemoryStruct<macho::Section> &Res) const argument
321 ReadSection64(const LoadCommandInfo &LCI, unsigned Index, InMemoryStruct<macho::Section64> &Res) const argument
[all...]
H A DMachOObjectFile.cpp68 LoadCommandInfo LCI = MachOObj->getLoadCommandInfo(DRI.d.a); local
69 if (LCI.Command.Type == macho::LCT_Symtab) {
71 MachOObj->ReadSymtabLoadCommand(LCI, SymtabLoadCmd);
84 LoadCommandInfo LCI = MachOObj->getLoadCommandInfo(DRI.d.a); local
85 MachOObj->ReadSymtabLoadCommand(LCI, SymtabLoadCmd);
99 LoadCommandInfo LCI = MachOObj->getLoadCommandInfo(DRI.d.a); local
100 MachOObj->ReadSymtabLoadCommand(LCI, SymtabLoadCmd);
421 LoadCommandInfo LCI = MachOObj->getLoadCommandInfo(DRI.d.a); local
422 if (LCI.Command.Type == macho::LCT_Segment) {
424 MachOObj->ReadSegmentLoadCommand(LCI, SegmentLoadCm
450 LoadCommandInfo LCI = MachOObj->getLoadCommandInfo(DRI.d.a); local
464 LoadCommandInfo LCI = MachOObj->getLoadCommandInfo(DRI.d.a); local
469 LoadCommandInfo LCI = MachOObj->getLoadCommandInfo(DRI.d.a); local
487 LoadCommandInfo LCI = MachOObj->getLoadCommandInfo(DRI.d.a); local
495 LoadCommandInfo LCI = MachOObj->getLoadCommandInfo(DRI.d.a); local
509 LoadCommandInfo LCI = MachOObj->getLoadCommandInfo(Sec.d.a); local
517 LoadCommandInfo LCI = MachOObj->getLoadCommandInfo(Sec.d.a); 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 441 milliseconds