Home
last modified time | relevance | path

Searched refs:firstIndex (Results 1 – 8 of 8) sorted by relevance

/llvm-project-15.0.7/mlir/lib/Analysis/DataFlow/
H A DSparseAnalysis.cpp253 unsigned firstIndex = 0; in visitRegionSuccessors() local
257 firstIndex = inputs.front().cast<OpResult>().getResultNumber(); in visitRegionSuccessors()
261 branch->getResults().slice(firstIndex, inputs.size())), in visitRegionSuccessors()
262 lattices, firstIndex); in visitRegionSuccessors()
265 firstIndex = inputs.front().cast<BlockArgument>().getArgNumber(); in visitRegionSuccessors()
270 firstIndex, inputs.size())), in visitRegionSuccessors()
271 lattices, firstIndex); in visitRegionSuccessors()
275 for (auto it : llvm::zip(*operands, lattices.drop_front(firstIndex))) in visitRegionSuccessors()
H A DIntegerRangeAnalysis.cpp117 ArrayRef<IntegerValueRangeLattice *> argLattices, unsigned firstIndex) { in visitNonControlFlowArguments() argument
189 op, successor, argLattices, firstIndex); in visitNonControlFlowArguments()
217 op, successor, argLattices, firstIndex); in visitNonControlFlowArguments()
/llvm-project-15.0.7/mlir/include/mlir/Analysis/DataFlow/
H A DSparseAnalysis.h220 ArrayRef<AbstractSparseLattice *> argLattices, unsigned firstIndex) = 0;
294 unsigned firstIndex) { in visitNonControlFlowArguments() argument
295 markAllPessimisticFixpoint(argLattices.take_front(firstIndex)); in visitNonControlFlowArguments()
297 firstIndex + successor.getSuccessorInputs().size())); in visitNonControlFlowArguments()
337 unsigned firstIndex) override { in visitNonControlFlowArgumentsImpl() argument
342 firstIndex); in visitNonControlFlowArgumentsImpl()
H A DIntegerRangeAnalysis.h91 unsigned firstIndex) override;
/llvm-project-15.0.7/lldb/include/lldb/Host/
H A DEditline.h274 void DisplayInput(int firstIndex = 0);
/llvm-project-15.0.7/lld/ELF/
H A DSyntheticSections.h334 size_t firstIndex; member
336 PageBlock() : firstIndex(0), count(0) {} in PageBlock()
H A DSyntheticSections.cpp801 index = g.pagesMap.lookup(outSec).firstIndex + (symAddr - secAddr) / 0xffff; in getPageEntryOffset()
977 p.second.firstIndex = index; in build()
1065 uint64_t offset = (l.second.firstIndex + pi) * config->wordsize; in build()
1123 write(l.second.firstIndex + pi, nullptr, firstPageAddr + pi * 0x10000); in writeTo()
/llvm-project-15.0.7/lldb/source/Host/common/
H A DEditline.cpp423 void Editline::DisplayInput(int firstIndex) { in DisplayInput() argument
429 for (int index = firstIndex; index < line_count; index++) { in DisplayInput()