Searched refs:EI (Results 1 - 25 of 114) sorted by relevance

12345

/netbsd-current/external/apache2/llvm/dist/llvm/lib/MCA/
H A DCodeEmitter.cpp20 EncodingInfo &EI = Encodings[MCID]; local
21 if (EI.second)
22 return EI;
30 EI.first = Code.size();
32 EI.second = Code.size() - EI.first;
33 return EI;
/netbsd-current/external/gpl3/gdb.old/dist/gas/testsuite/gas/z8k/
H A Deidi.s18 EI ALL
20 EI BOTH
22 EI VI
24 EI NVI
27 EI VI,NVI
28 EI NVI,VI
/netbsd-current/external/apache2/llvm/dist/llvm/include/llvm/MCA/
H A DCodeEmitter.h60 EncodingInfo EI = getOrCreateEncodingInfo(MCID); local
61 return StringRef(&Code[EI.first], EI.second);
/netbsd-current/external/apache2/llvm/dist/llvm/lib/CodeGen/AsmPrinter/
H A DDebugLocStream.h117 size_t EI = getIndex(E); local
119 .slice(Entries[EI].ByteOffset, getNumBytes(EI));
122 size_t EI = getIndex(E); local
124 .slice(Entries[EI].CommentOffset, getNumComments(EI));
143 size_t getNumBytes(size_t EI) const {
144 if (EI + 1 == Entries.size())
145 return DWARFBytes.size() - Entries[EI].ByteOffset;
146 return Entries[EI
[all...]
H A DDbgEntityHistoryCalculator.cpp180 for (auto EI = HistoryMapEntries.begin(), EE = HistoryMapEntries.end();
181 EI != EE; ++EI, ++StartIndex) {
183 if (!EI->isDbgValue())
187 EntryIndex EndIndex = EI->getEndIndex();
198 const MachineInstr *StartMI = EI->getInstr();
/netbsd-current/external/apache2/llvm/dist/llvm/include/llvm/Support/
H A DGraphWriter.h85 child_iterator EI = GTraits::child_begin(Node); local
89 for (unsigned i = 0; EI != EE && i != 64; ++EI, ++i) {
90 std::string label = DTraits.getEdgeSourceLabel(Node, EI);
103 if (EI != EE && hasEdgeSourceLabels)
226 child_iterator EI = GTraits::child_begin(Node); local
228 for (unsigned i = 0; EI != EE && i != 64; ++EI, ++i)
229 if (!DTraits.isNodeHidden(*EI, G))
230 writeEdge(Node, i, EI);
236 writeEdge(NodeRef Node, unsigned edgeidx, child_iterator EI) argument
[all...]
/netbsd-current/external/gpl2/groff/font/devlbp/
H A DMakefile10 TB TBI TI TR CR CB CI ER EB EI
/netbsd-current/external/apache2/llvm/dist/llvm/lib/CodeGen/
H A DScheduleDAGPrinter.cpp53 SUnitIterator EI,
55 if (EI.isArtificialDep())
57 if (EI.isCtrlDep())
52 getEdgeAttributes(const SUnit *Node, SUnitIterator EI, const ScheduleDAG *Graph) argument
H A DInterleavedLoadCombinePass.cpp673 ElementInfo *EI; member in struct:__anon1785::VectorInfo
680 EI = new ElementInfo[VTy->getNumElements()];
683 virtual ~VectorInfo() { delete[] EI; }
697 if (!EI[i].Ofs.isProvenEqualTo(EI[0].Ofs + i * Factor * Size)) {
759 Result.EI[i + j] =
760 ElementInfo(Old.EI[i / Factor].Ofs + j * NewSize,
761 j == 0 ? Old.EI[i / Factor].LI : nullptr);
842 Result.EI[j] = ElementInfo();
845 Result.EI[
[all...]
/netbsd-current/external/gpl2/groff/dist/font/devlbp/
H A DMakefile.sub8 ER EB EI
/netbsd-current/external/apache2/llvm/dist/llvm/include/llvm/XRay/
H A DGraph.h464 const auto &EI = Val.first; local
465 Vertices.FindAndConstruct(EI.first);
466 Vertices.FindAndConstruct(EI.second);
467 InNeighbors[EI.second].insert(EI.first);
468 OutNeighbors[EI.first].insert(EI.second);
479 auto EI = Val.first; local
482 Vertices.FindAndConstruct(EI.first);
483 Vertices.FindAndConstruct(EI
[all...]
/netbsd-current/sys/arch/hpc/stand/hpcboot/arm/
H A Darm_arch.cpp66 EI();
H A Darm_arch.h73 void EI(void);
/netbsd-current/external/apache2/llvm/dist/llvm/lib/Support/
H A DError.cpp65 handleAllErrors(std::move(E), [&](const ErrorInfoBase &EI) {
66 EI.log(OS);
95 handleAllErrors(std::move(Err), [&](const ErrorInfoBase &EI) {
96 EC = EI.convertToErrorCode();
/netbsd-current/external/apache2/llvm/dist/llvm/tools/llvm-symbolizer/
H A Dllvm-symbolizer.cpp85 [&](const ErrorInfoBase &EI) {
87 Request, EI, "LLVMSymbolizer: error reading file: ");
/netbsd-current/external/apache2/llvm/dist/llvm/lib/Transforms/Instrumentation/
H A DCFGMST.h254 for (auto &EI : AllEdges)
255 OS << " Edge " << Count++ << ": " << getBBInfo(EI->SrcBB).Index << "-->"
256 << getBBInfo(EI->DestBB).Index << EI->infoString() << "\n";
/netbsd-current/external/apache2/llvm/dist/llvm/tools/llvm-cvtres/
H A Dllvm-cvtres.cpp82 handleAllErrors(std::move(EC), [&](const ErrorInfoBase &EI) {
83 reportError(Twine(Input) + ": " + EI.message() + ".\n");
91 [&](const ErrorInfoBase &EI) { reportError(EI.message()); });
/netbsd-current/external/apache2/llvm/dist/llvm/lib/Transforms/InstCombine/
H A DInstCombineVectorOps.cpp94 Instruction *InstCombinerImpl::scalarizePHI(ExtractElementInst &EI, argument
98 // 1) The EI ExtractElement (we already know this)
104 if (EI.getIndexOperand() == EU->getIndexOperand())
128 PHINode::Create(EI.getType(), PN->getNumIncomingValues(), ""), *PN));
133 Value *Elt = EI.getIndexOperand();
170 return &EI;
336 Instruction *InstCombinerImpl::visitExtractElementInst(ExtractElementInst &EI) { argument
337 Value *SrcVec = EI.getVectorOperand();
338 Value *Index = EI.getIndexOperand();
340 SQ.getWithInstruction(&EI)))
[all...]
/netbsd-current/external/apache2/llvm/dist/llvm/lib/ExecutionEngine/JITLink/
H A DEHFrameSupport.cpp444 auto &EI = CIEEdgeItr->second; local
445 if (EI.Addend)
450 if (auto CIEInfoOrErr = PC.findCIEInfo(EI.Target->getAddress()))
482 auto &EI = PCEdgeItr->second; local
486 << " to PC at " << formatv("{0:x16}", EI.Target->getAddress());
487 if (EI.Addend)
488 dbgs() << " + " << formatv("{0:x16}", EI.Addend);
493 if (!EI.Target->isDefined()) {
499 PCBeginBlock = &EI.Target->getBlock();
547 auto &EI
[all...]
/netbsd-current/external/apache2/llvm/dist/llvm/tools/llvm-mt/
H A Dllvm-mt.cpp78 handleAllErrors(std::move(EC), [&](const ErrorInfoBase &EI) {
79 reportError(EI.message());
/netbsd-current/external/gpl3/binutils.old/dist/gas/
H A Drl78-parse.h114 EI = 324, enumerator in enum:yytokentype
234 #define EI 324 macro
/netbsd-current/external/gpl3/binutils/dist/gas/config/
H A Drl78-parse.h123 EI = 324, /* EI */ enumerator in enum:yytokentype
248 #define EI 324 macro
/netbsd-current/external/apache2/llvm/dist/llvm/lib/CodeGen/SelectionDAG/
H A DSelectionDAGPrinter.cpp95 static std::string getEdgeAttributes(const void *Node, EdgeIter EI, argument
97 SDValue Op = EI.getNode()->getOperand(EI.getOperand());
/netbsd-current/external/apache2/llvm/dist/llvm/utils/TableGen/
H A DGICombinerEmitter.cpp245 for (auto *EI : EdgesRemaining) {
246 if (Visited.count(EI->getFromMI())) {
247 if (Roots.count(EI->getToMI()))
249 Visited.insert(EI->getToMI());
250 EdgesToRemove.insert(EI);
258 for (auto EI = EdgesRemaining.begin(), EE = EdgesRemaining.end();
259 EI != EE; ++EI) {
260 if (Visited.count((*EI)->getToMI())) {
261 (*EI)
[all...]
/netbsd-current/external/apache2/llvm/dist/llvm/lib/Target/X86/
H A DImmutableGraph.h335 size_type VI = 0, EI = 0; local
338 VertexArray[VI].Edges = &EdgeArray[EI];
340 for (size_type VEI = 0; VEI < NumEdges; ++VEI, ++EI) {
342 EdgeArray[EI].Value = std::move(E.first);
343 EdgeArray[EI].Dest = &VertexArray[E.second];
346 assert(VI == VertexSize && EI == EdgeSize && "ImmutableGraph malformed");

Completed in 440 milliseconds

12345