Home
last modified time | relevance | path

Searched refs:EI (Results 1 – 25 of 100) sorted by relevance

1234

/freebsd/contrib/llvm-project/llvm/lib/CodeGen/AsmPrinter/
H A DDebugLocStream.h115 size_t EI = getIndex(E); in getBytes() local
117 .slice(Entries[EI].ByteOffset, getNumBytes(EI)); in getBytes()
120 size_t EI = getIndex(E); in getComments() local
122 getNumComments(EI)); in getComments()
141 size_t getNumBytes(size_t EI) const { in getNumBytes() argument
142 if (EI + 1 == Entries.size()) in getNumBytes()
143 return DWARFBytes.size() - Entries[EI].ByteOffset; in getNumBytes()
144 return Entries[EI + 1].ByteOffset - Entries[EI].ByteOffset; in getNumBytes()
146 size_t getNumComments(size_t EI) const { in getNumComments() argument
147 if (EI + 1 == Entries.size()) in getNumComments()
[all …]
H A DDbgEntityHistoryCalculator.cpp182 for (auto EI = HistoryMapEntries.begin(), EE = HistoryMapEntries.end(); in trimLocationRanges() local
183 EI != EE; ++EI, ++StartIndex) { in trimLocationRanges()
185 if (!EI->isDbgValue()) in trimLocationRanges()
189 EntryIndex EndIndex = EI->getEndIndex(); in trimLocationRanges()
200 const MachineInstr *StartMI = EI->getInstr(); in trimLocationRanges()
/freebsd/contrib/llvm-project/llvm/include/llvm/Support/
H A DGraphWriter.h91 for (unsigned i = 0; EI != EE && i != 64; ++EI, ++i) { in getEdgeSourceLabels()
109 if (EI != EE && hasEdgeSourceLabels) { in getEdgeSourceLabels()
192 for (; EI != EE && ColSpan != 64; ++EI, ++ColSpan) in writeNode()
197 if (EI != EE) in writeNode()
280 for (unsigned i = 0; EI != EE && i != 64; ++EI, ++i) in writeNode()
281 if (!DTraits.isNodeHidden(*EI, G)) in writeNode()
282 writeEdge(Node, i, EI); in writeNode()
283 for (; EI != EE; ++EI) in writeNode()
284 if (!DTraits.isNodeHidden(*EI, G)) in writeNode()
285 writeEdge(Node, 64, EI); in writeNode()
[all …]
/freebsd/contrib/llvm-project/llvm/lib/MCA/
H A DCodeEmitter.cpp19 EncodingInfo &EI = Encodings[MCID]; in getOrCreateEncodingInfo() local
20 if (EI.second) in getOrCreateEncodingInfo()
21 return EI; in getOrCreateEncodingInfo()
29 EI.first = Code.size(); in getOrCreateEncodingInfo()
31 EI.second = Code.size() - EI.first; in getOrCreateEncodingInfo()
32 return EI; in getOrCreateEncodingInfo()
/freebsd/contrib/llvm-project/llvm/lib/ExecutionEngine/Orc/TargetProcess/
H A DSimpleRemoteEPCServer.cpp196 SimpleRemoteEPCExecutorInfo EI; in sendSetupMessage() local
197 EI.TargetTriple = sys::getProcessTriple(); in sendSetupMessage()
199 EI.PageSize = *PageSize; in sendSetupMessage()
202 EI.BootstrapMap = std::move(BootstrapMap); in sendSetupMessage()
203 EI.BootstrapSymbols = std::move(BootstrapSymbols); in sendSetupMessage()
205 assert(!EI.BootstrapSymbols.count(ExecutorSessionObjectName) && in sendSetupMessage()
207 assert(!EI.BootstrapSymbols.count(DispatchFnName) && in sendSetupMessage()
211 EI.BootstrapSymbols[rt::RegisterEHFrameSectionWrapperName] = in sendSetupMessage()
213 EI.BootstrapSymbols[rt::DeregisterEHFrameSectionWrapperName] = in sendSetupMessage()
219 shared::WrapperFunctionResult::allocate(SPSSerialize::size(EI)); in sendSetupMessage()
[all …]
/freebsd/contrib/llvm-project/llvm/lib/ExecutionEngine/Orc/
H A DSimpleRemoteEPC.cpp295 SimpleRemoteEPCExecutorInfo EI; in setup() local
296 if (SPSSerialize::deserialize(IB, EI)) in setup()
297 EIP.set_value(EI); in setup()
308 auto EI = EIF.get(); in setup() local
309 if (!EI) { in setup()
311 return EI.takeError(); in setup()
320 for (const auto &KV : EI->BootstrapMap) in setup()
325 for (const auto &KV : EI->BootstrapSymbols) in setup()
328 TargetTriple = Triple(EI->TargetTriple); in setup()
329 PageSize = EI->PageSize; in setup()
[all …]
/freebsd/contrib/llvm-project/llvm/include/llvm/XRay/
H A DGraph.h464 const auto &EI = Val.first; in insert() local
465 Vertices.FindAndConstruct(EI.first); in insert()
466 Vertices.FindAndConstruct(EI.second); in insert()
467 InNeighbors[EI.second].insert(EI.first); in insert()
468 OutNeighbors[EI.first].insert(EI.second); in insert()
479 auto EI = Val.first; in insert() local
482 Vertices.FindAndConstruct(EI.first); in insert()
483 Vertices.FindAndConstruct(EI.second); in insert()
484 InNeighbors[EI.second].insert(EI.first); in insert()
485 OutNeighbors[EI.first].insert(EI.second); in insert()
/freebsd/contrib/llvm-project/llvm/lib/Support/
H A DError.cpp69 handleAllErrors(std::move(E), [&](const ErrorInfoBase &EI) { in logAllUnhandledErrors() argument
70 EI.log(OS); in logAllUnhandledErrors()
79 handleAllErrors(std::move(E), [&Errors](const ErrorInfoBase &EI) { in toString() argument
80 Errors.push_back(EI.message()); in toString()
111 handleAllErrors(std::move(Err), [&](const ErrorInfoBase &EI) { in errorToErrorCode() argument
112 EC = EI.convertToErrorCode(); in errorToErrorCode()
/freebsd/contrib/llvm-project/llvm/lib/CodeGen/
H A DInterleavedLoadCombinePass.cpp673 ElementInfo *EI; member
679 EI = new ElementInfo[VTy->getNumElements()]; in VectorInfo()
684 virtual ~VectorInfo() { delete[] EI; } in ~VectorInfo()
698 if (!EI[i].Ofs.isProvenEqualTo(EI[0].Ofs + i * Factor * Size)) { in isInterleaved()
760 Result.EI[i + j] = in computeFromBCI()
843 Result.EI[j] = ElementInfo(); in computeFromSVI()
846 Result.EI[j] = LHS.EI[i]; in computeFromSVI()
848 Result.EI[j] = ElementInfo(); in computeFromSVI()
851 Result.EI[j] = RHS.EI[i - ArgTy->getNumElements()]; in computeFromSVI()
853 Result.EI[j] = ElementInfo(); in computeFromSVI()
[all …]
H A DScheduleDAGPrinter.cpp48 SUnitIterator EI, in getEdgeAttributes()
50 if (EI.isArtificialDep()) in getEdgeAttributes()
52 if (EI.isCtrlDep()) in getEdgeAttributes()
/freebsd/contrib/llvm-project/llvm/lib/Transforms/IPO/
H A DMemProfContextDisambiguation.cpp834 EI = Node->CalleeEdges.erase(EI); in removeNoneTypeCalleeEdges()
1091 EI = OrigNode->CalleeEdges.erase(EI); in connectNewNode()
1094 EI = OrigNode->CallerEdges.erase(EI); in connectNewNode()
1098 ++EI; in connectNewNode()
1739 ++EI; in calleesMatch()
1745 ++EI; in calleesMatch()
1810 EI = Edge->Caller->CalleeEdges.erase(EI); in calleesMatch()
2163 EI++; in checkNode()
2165 for (; EI != Node->CallerEdges.end(); EI++) { in checkNode()
2179 EI++; in checkNode()
[all …]
H A DFunctionImport.cpp1013 for (auto &EI : ELI.second) { in ComputeCrossModuleImport() local
1020 auto DS = DefinedGVSummaries.find(EI.getGUID()); in ComputeCrossModuleImport()
1046 for (auto EI = NewExports.begin(); EI != NewExports.end();) { in ComputeCrossModuleImport() local
1047 if (!DefinedGVSummaries.count(EI->getGUID())) in ComputeCrossModuleImport()
1048 NewExports.erase(EI++); in ComputeCrossModuleImport()
1050 ++EI; in ComputeCrossModuleImport()
1160 for (auto &EI : FS->mutableCalls()) { in updateValueInfoForIndirectCalls() local
1161 if (!EI.first.getSummaryList().empty()) in updateValueInfoForIndirectCalls()
1163 auto GUID = Index.getGUIDFromOriginalID(EI.first.getGUID()); in updateValueInfoForIndirectCalls()
1184 EI.first = VI; in updateValueInfoForIndirectCalls()
/freebsd/contrib/llvm-project/llvm/include/llvm/MCA/
H A DCodeEmitter.h57 EncodingInfo EI = getOrCreateEncodingInfo(MCID); in getEncoding() local
58 return StringRef(&Code[EI.first], EI.second); in getEncoding()
/freebsd/contrib/llvm-project/llvm/lib/Transforms/InstCombine/
H A DInstCombineVectorOps.cpp86 if (cheapToScalarize(V0, EI) || cheapToScalarize(V1, EI)) in cheapToScalarize()
91 if (cheapToScalarize(V0, EI) || cheapToScalarize(V1, EI)) in cheapToScalarize()
140 Value *Elt = EI.getIndexOperand(); in scalarizePHI()
180 return &EI; in scalarizePHI()
399 Value *SrcVec = EI.getVectorOperand(); in visitExtractElementInst()
400 Value *Index = EI.getIndexOperand(); in visitExtractElementInst()
403 return replaceInstUsesWith(EI, V); in visitExtractElementInst()
436 Type *Ty = EI.getType(); in visitExtractElementInst()
549 return replaceInstUsesWith(EI, PoisonValue::get(EI.getType())); in visitExtractElementInst()
602 return &EI; in visitExtractElementInst()
[all …]
/freebsd/contrib/llvm-project/llvm/tools/llvm-symbolizer/
H A Dllvm-symbolizer.cpp83 static void printError(const ErrorInfoBase &EI, StringRef AuxInfo) { in printError() argument
87 EI.log(errs()); in printError()
103 [&](const ErrorInfoBase &EI) { in print() argument
104 PrintEmpty = Printer.printError(Request, EI); in print()
343 handleAllErrors(std::move(E), [&](const StringError &EI) { in symbolizeInput() argument
344 printError(EI, InputString); in symbolizeInput()
563 handleAllErrors(Status.takeError(), [&](const ErrorInfoBase &EI) { in llvm_symbolizer_main() argument
564 Printer->printError(SymRequest, EI); in llvm_symbolizer_main()
/freebsd/contrib/llvm-project/llvm/include/llvm/Transforms/Instrumentation/
H A DCFGMST.h270 for (auto &EI : AllEdges) in dumpEdges()
271 OS << " Edge " << Count++ << ": " << getBBInfo(EI->SrcBB).Index << "-->" in dumpEdges()
272 << getBBInfo(EI->DestBB).Index << EI->infoString() << "\n"; in dumpEdges()
/freebsd/contrib/llvm-project/llvm/include/llvm/CodeGen/
H A DMachineInstr.h763 if (ExtraInfo *EI = Info.get<EIIK_OutOfLine>())
764 return EI->getMMOs();
800 if (ExtraInfo *EI = Info.get<EIIK_OutOfLine>())
801 return EI->getPreInstrSymbol();
812 if (ExtraInfo *EI = Info.get<EIIK_OutOfLine>())
813 return EI->getPostInstrSymbol();
822 if (ExtraInfo *EI = Info.get<EIIK_OutOfLine>())
823 return EI->getHeapAllocMarker();
832 if (ExtraInfo *EI = Info.get<EIIK_OutOfLine>())
833 return EI->getPCSections();
[all …]
/freebsd/contrib/llvm-project/llvm/lib/Target/X86/
H A DImmutableGraph.h335 size_type VI = 0, EI = 0; in get() local
338 VertexArray[VI].Edges = &EdgeArray[EI]; in get()
340 for (size_type VEI = 0; VEI < NumEdges; ++VEI, ++EI) { in get()
342 EdgeArray[EI].Value = std::move(E.first); in get()
343 EdgeArray[EI].Dest = &VertexArray[E.second]; in get()
346 assert(VI == VertexSize && EI == EdgeSize && "ImmutableGraph malformed"); in get()
/freebsd/contrib/llvm-project/llvm/lib/CodeGen/SelectionDAG/
H A DSelectionDAGPrinter.cpp91 static std::string getEdgeAttributes(const void *Node, EdgeIter EI, in getEdgeAttributes()
93 SDValue Op = EI.getNode()->getOperand(EI.getOperand()); in getEdgeAttributes()
/freebsd/contrib/llvm-project/llvm/tools/llvm-debuginfo-analyzer/
H A Dllvm-debuginfo-analyzer.cpp44 handleAllErrors(std::move(EC), [&](const ErrorInfoBase &EI) { in error() argument
46 WithColor::error(errs(), ToolName) << EI.message() << ".\n"; in error()
/freebsd/share/msgdef/
H A Det_EE.ISO8859-15.src16 ei:e:EI:E:no:n:NO:N
H A Dfi_FI.ISO8859-15.src16 ei:e:EI:E:no:n:NO:N
/freebsd/share/msgdef_unicode/
H A Det_EE.UTF-8.src16 ei:e:EI:E:no:n:NO:N
H A Dfi_FI.UTF-8.src16 ei:e:EI:E:no:n:NO:N
/freebsd/contrib/llvm-project/clang/lib/Sema/
H A DSemaStmt.cpp1186 while (EI != EIEnd && EI->first < Val) in ShouldDiagnoseSwitchCaseNotInEnum()
1187 EI++; in ShouldDiagnoseSwitchCaseNotInEnum()
1189 if (EI != EIEnd && EI->first == Val) in ShouldDiagnoseSwitchCaseNotInEnum()
1526 auto EI = EnumVals.begin(), EIEnd = in ActOnFinishSwitchStmt() local
1540 EI = EnumVals.begin(); in ActOnFinishSwitchStmt()
1567 for (EI = EnumVals.begin(); EI != EIEnd; EI++) { in ActOnFinishSwitchStmt()
1582 if (EI->second->hasAttr<UnusedAttr>()) in ActOnFinishSwitchStmt()
1597 if (EI->first <= Hi) in ActOnFinishSwitchStmt()
1685 while (EI != EIend && EI->first < RhsVal) in DiagnoseAssignmentEnum()
1686 EI++; in DiagnoseAssignmentEnum()
[all …]

1234