HomeSort by relevance Sort by last modified time
    Searched refs:LCI (Results 1 - 16 of 16) sorted by null

  /external/swiftshader/third_party/LLVM/lib/Analysis/
LibCallAliasAnalysis.cpp 26 FunctionPass *llvm::createLibCallAliasAnalysisPass(LibCallInfo *LCI) {
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)) {
ScalarEvolution.cpp     [all...]
  /external/swiftshader/third_party/LLVM/include/llvm/Analysis/
LibCallAliasAnalysis.h 28 LibCallInfo *LCI;
31 : FunctionPass(ID), LCI(LC) {
35 : FunctionPass(ID), LCI(LC) {
Passes.h 70 /// about the semantics of a set of libcalls specified by LCI. The newly
73 FunctionPass *createLibCallAliasAnalysisPass(LibCallInfo *LCI);
  /external/swiftshader/third_party/LLVM/include/llvm/Object/
MachOObject.h 142 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/tools/macho-dump/
macho-dump.cpp 128 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, DLC)
    [all...]
  /external/swiftshader/third_party/LLVM/lib/Object/
MachOObject.cpp 182 void MachOObject::ReadSegmentLoadCommand(const LoadCommandInfo &LCI,
184 ReadInMemoryStruct(*this, Buffer->getBuffer(), LCI.Offset, Res);
200 void MachOObject::ReadSegment64LoadCommand(const LoadCommandInfo &LCI,
202 ReadInMemoryStruct(*this, Buffer->getBuffer(), LCI.Offset, Res);
214 void MachOObject::ReadSymtabLoadCommand(const LoadCommandInfo &LCI,
216 ReadInMemoryStruct(*this, Buffer->getBuffer(), LCI.Offset, Res);
242 void MachOObject::ReadDysymtabLoadCommand(const LoadCommandInfo &LCI,
244 ReadInMemoryStruct(*this, Buffer->getBuffer(), LCI.Offset, Res);
254 void MachOObject::ReadLinkeditDataLoadCommand(const LoadCommandInfo &LCI,
256 ReadInMemoryStruct(*this, Buffer->getBuffer(), LCI.Offset, Res)
    [all...]
MachOObjectFile.cpp 61 LoadCommandInfo LCI = MachOObj->getLoadCommandInfo(DRI.d.a);
62 if (LCI.Command.Type == macho::LCT_Symtab) {
64 MachOObj->ReadSymtabLoadCommand(LCI, SymtabLoadCmd);
77 LoadCommandInfo LCI = MachOObj->getLoadCommandInfo(DRI.d.a);
78 MachOObj->ReadSymtabLoadCommand(LCI, SymtabLoadCmd);
92 LoadCommandInfo LCI = MachOObj->getLoadCommandInfo(DRI.d.a);
93 MachOObj->ReadSymtabLoadCommand(LCI, SymtabLoadCmd);
282 LoadCommandInfo LCI = MachOObj->getLoadCommandInfo(DRI.d.a);
283 if (LCI.Command.Type == macho::LCT_Segment) {
285 MachOObj->ReadSegmentLoadCommand(LCI, SegmentLoadCmd)
    [all...]
  /external/swiftshader/third_party/llvm-7.0/llvm/tools/llvm-cov/
SourceCoverageView.cpp 195 LineCoverageIterator LCI{CoverageInfo, 1};
196 LineCoverageIterator LCIEnd = LCI.getEnd();
200 ++LI, ++LCI) {
204 if (LCI == LCIEnd)
215 renderLineCoverageColumn(OS, *LCI);
224 renderLine(OS, {*LI, LI.line_number()}, *LCI, ExpansionColumn, ViewDepth);
227 if (shouldRenderRegionMarkers(*LCI))
228 renderRegionMarkers(OS, *LCI, ViewDepth);
240 renderExpansionSite(OS, {*LI, LI.line_number()}, *LCI, ExpansionColumn,
  /external/llvm/tools/dsymutil/
MachOUtils.cpp 127 for (const auto &LCI : Obj.load_commands()) {
129 if (LCI.C.cmd == MachO::LC_SEGMENT)
130 Segment = adaptFrom32bits(Obj.getSegmentLoadCommand(LCI));
131 else if (LCI.C.cmd == MachO::LC_SEGMENT_64)
132 Segment = Obj.getSegment64LoadCommand(LCI);
206 const object::MachOObjectFile::LoadCommandInfo &LCI, unsigned Idx) {
207 return Obj.getSection(LCI, Idx);
213 const object::MachOObjectFile::LoadCommandInfo &LCI, unsigned Idx) {
214 return Obj.getSection64(LCI, Idx);
227 const object::MachOObjectFile::LoadCommandInfo &LCI, SegmentTy Segment
    [all...]
  /external/swiftshader/third_party/llvm-7.0/llvm/tools/dsymutil/
MachOUtils.cpp 142 for (const auto &LCI : Obj.load_commands()) {
144 if (LCI.C.cmd == MachO::LC_SEGMENT)
145 Segment = adaptFrom32bits(Obj.getSegmentLoadCommand(LCI));
146 else if (LCI.C.cmd == MachO::LC_SEGMENT_64)
147 Segment = Obj.getSegment64LoadCommand(LCI);
221 const object::MachOObjectFile::LoadCommandInfo &LCI, unsigned Idx) {
222 return Obj.getSection(LCI, Idx);
228 const object::MachOObjectFile::LoadCommandInfo &LCI, unsigned Idx) {
229 return Obj.getSection64(LCI, Idx);
242 const object::MachOObjectFile::LoadCommandInfo &LCI, SegmentTy Segment
    [all...]
  /external/swiftshader/third_party/LLVM/tools/llvm-objdump/
MachODump.cpp 222 const MachOObject::LoadCommandInfo &LCI = MachOObj->getLoadCommandInfo(i);
223 if (LCI.Command.Type == macho::LCT_Segment) {
225 MachOObj->ReadSegmentLoadCommand(LCI, SegmentLC);
230 MachOObj->ReadSection(LCI, SectNum, Sect);
234 } else if (LCI.Command.Type == macho::LCT_Segment64) {
236 MachOObj->ReadSegment64LoadCommand(LCI, Segment64LC);
242 MachOObj->ReadSection64(LCI, SectNum, Sect64);
245 } else if (LCI.Command.Type == macho::LCT_FunctionStarts) {
249 MachOObj->ReadLinkeditDataLoadCommand(LCI, LLC);
313 const MachOObject::LoadCommandInfo &LCI = MachOObj->getLoadCommandInfo(i)
    [all...]
  /external/swiftshader/third_party/LLVM/lib/ExecutionEngine/RuntimeDyld/
RuntimeDyldMachO.cpp 426 const MachOObject::LoadCommandInfo &LCI = Obj->getLoadCommandInfo(i);
427 switch (LCI.Command.Type) {
432 SegmentLCI = &LCI;
437 SymtabLCI = &LCI;
442 DysymtabLCI = &LCI;
  /device/linaro/poplar/wifi/wifi_hal/
rtt.cpp 99 #define DOT11_MEASURE_TYPE_LCI 8 /* d11 measurement LCI type */
567 /* The result has LCI or LCR element */
571 rtt_result->LCI = (wifi_information_element *)ele_1;
589 rtt_result->LCI = (wifi_information_element *)ele_2;
  /external/llvm/lib/Analysis/
ScalarEvolution.cpp     [all...]
  /external/swiftshader/third_party/llvm-7.0/llvm/lib/Analysis/
ScalarEvolution.cpp     [all...]

Completed in 2628 milliseconds