Searched refs:Start (Results 176 - 200 of 331) sorted by relevance

1234567891011>>

/freebsd-11-stable/contrib/llvm-project/llvm/lib/Support/
H A DTimer.cpp118 TimeRecord TimeRecord::getCurrentTime(bool Start) { argument
124 if (Start) {
H A DVirtualFileSystem.cpp1667 sys::path::const_iterator Start = sys::path::begin(Path);
1671 lookupPath(Start, End, Root.get());
1679 RedirectingFileSystem::lookupPath(sys::path::const_iterator Start, argument
1683 assert(!isTraversalComponent(*Start) &&
1689 if (Start->equals("."))
1690 ++Start;
1697 if (!pathComponentMatches(*Start, FromName))
1700 ++Start;
1702 if (Start == End) {
1715 lookupPath(Start, En
[all...]
/freebsd-11-stable/contrib/llvm-project/clang/lib/AST/Interp/
H A DDescriptor.cpp268 auto *Start = reinterpret_cast<char *>(this) + align(sizeof(InitMap)); local
269 return reinterpret_cast<T *>(Start);
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Object/
H A DWasmObjectFile.cpp213 Section.Offset = Ctx.Ptr - Ctx.Start;
225 SectionCtx.Start = Ctx.Ptr;
231 uint32_t SectionNameSize = SectionCtx.Ptr - SectionCtx.Start;
258 Ctx.Start = getData().bytes_begin();
259 Ctx.Ptr = Ctx.Start + 4;
260 Ctx.End = Ctx.Start + getData().size();
289 Ctx.Start = Sec.Content.data();
290 Ctx.End = Ctx.Start + Sec.Content.size();
291 Ctx.Ptr = Ctx.Start;
1154 Function.CodeSectionOffset = FunctionStart - Ctx.Start;
[all...]
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Analysis/
H A DMemorySSA.cpp384 /// Verifies that `Start` is clobbered by `ClobberAt`, and that nothing
385 /// inbetween `Start` and `ClobberAt` can clobbers `Start`.
390 /// \param Start The MemoryAccess that we want to walk from.
391 /// \param ClobberAt A clobber for Start.
392 /// \param StartLoc The MemoryLocation for Start.
393 /// \param MSSA The MemorySSA instance that Start and ClobberAt belong to.
400 checkClobberSanity(const MemoryAccess *Start, MemoryAccess *ClobberAt, argument
404 assert(MSSA.dominates(ClobberAt, Start) && "Clobber doesn't dominate start?");
406 if (MSSA.isLiveOnEntryDef(Start)) {
765 tryOptimizePhi(MemoryPhi *Phi, MemoryAccess *Start, const MemoryLocation &Loc) argument
932 findClobber(MemoryAccess *Start, UpwardsMemoryQuery &Q, unsigned &UpWalkLimit) argument
[all...]
H A DScalarEvolution.cpp1440 // Start),+,Step} => {(Step + sext/zext(Start),+,Step} As a result, the
1450 const SCEV *Start = AR->getStart(); local
1454 const SCEVAddExpr *SA = dyn_cast<SCEVAddExpr>(Start);
1494 if ((SE->*GetExtendExpr)(Start, WideTy, Depth) == OperandExtendedStart) {
1516 // Get the normalized zero or sign extended expression for this AddRec's Start.
1562 // In the current context, S is `Start`, X is `Step`, Ext is `ExtendOpTy` and T
1565 bool ScalarEvolution::proveNoWrapByVaryingStart(const SCEV *Start, argument
1570 // We restrict `Start` to a constant to prevent SCEV from spending too much
1572 // non-constant `Start` an
1696 const SCEV *Start = AR->getStart(); local
2040 const SCEV *Start = AR->getStart(); local
[all...]
/freebsd-11-stable/contrib/gcc/config/i386/
H A Dsol2-gc1.asm53 ! Start creating the initial frame by pushing a NULL value for the return
101 ! Start profiling
/freebsd-11-stable/contrib/amd/amd/
H A Damd.c401 amd_state = Start;
/freebsd-11-stable/stand/efi/include/
H A Definet.h331 EFI_SIMPLE_NETWORK_START Start; member in struct:_EFI_SIMPLE_NETWORK
/freebsd-11-stable/stand/i386/gptboot/
H A Dgptldr.S141 jmp start+MEM_JMP-MEM_ORG # Start BTX
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/CodeGen/
H A DMachineTraceMetrics.h369 /// Updates the depth of the instructions from Start to End.
370 void updateDepths(MachineBasicBlock::iterator Start,
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/DebugInfo/
H A DDIContext.h113 uint64_t Start = 0;
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/Support/
H A DTimer.h34 /// Get the current time and memory usage. If Start is true we get the memory
38 static TimeRecord getCurrentTime(bool Start = true);
118 /// Start the timer running. Time between calls to startTimer/stopTimer is
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/Object/
H A DArchive.h101 Child(const Archive *Parent, const char *Start, Error *Err);
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Transforms/Utils/
H A DBasicBlockUtils.cpp248 Instruction *Start = &*BB->begin(); local
251 if (Start == STI)
252 Start = PTI;
259 MSSAU->moveAllAfterMergeBlocks(BB, PredBB, Start);
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/SystemZ/
H A DSystemZInstrInfo.h305 // significant. Set Start and End to the I3 and I4 operands if so.
307 unsigned &Start, unsigned &End) const;
H A DSystemZISelDAGToDAG.cpp107 // given by Opcode. The operands are: Input (R2), Start (I3), End (I4) and
122 Mask(allOnes(BitSize)), Input(N), Start(64 - BitSize), End(63),
129 unsigned Start; member in struct:__anon2408::RxSBGOperands
571 // Start out assuming that the address will need to be loaded separately,
757 if (TII->isRxSBGMask(Mask, RxSBG.BitSize, RxSBG.Start, RxSBG.End)) {
1030 // of the smaller range for Start and End) and before rotation
1032 RISBG.Start >= 32 && RISBG.End >= RISBG.Start &&
1033 ((RISBG.Start + RISBG.Rotate) & 63) >= 32 &&
1035 ((RISBG.Start
[all...]
/freebsd-11-stable/contrib/llvm-project/clang/utils/TableGen/
H A DClangDiagnosticsEmitter.cpp837 size_t Start = RST.size(); local
853 if (Start + Lines.size() > RST.size())
854 RST.resize(Start + Lines.size(), EmptyLinePrefix);
858 RST[Start + I] += Separator + Lines[I];
860 for (size_t I = Start + Lines.size(); I != RST.size(); ++I)
864 for (size_t I = Start; I != RST.size(); ++I)
869 RST.insert(RST.begin() + Start, EmptyLinePrefix);
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Transforms/Scalar/
H A DLoopIdiomRecognize.cpp831 // If we have a negative stride, Start refers to the end of the memory location
833 // which is just Start - BECount*Size.
834 static const SCEV *getStartForNegStride(const SCEV *Start, const SCEV *BECount, argument
841 return SE->getMinusSCEV(Start, Index);
906 const SCEV *Start = Ev->getStart(); local
909 Start = getStartForNegStride(Start, BECount, IntIdxTy, StoreSize, SE);
913 if (!isSafeToExpand(Start, *SE))
922 Expander.expandCodeFor(Start, DestInt8PtrTy, Preheader->getTerminator());
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/Analysis/
H A DScalarEvolution.h550 const SCEV *getAddRecExpr(const SCEV *Start, const SCEV *Step, const Loop *L,
1446 /// Determines the range for the affine SCEVAddRecExpr {\p Start,+,\p Stop}.
1448 ConstantRange getRangeForAffineAR(const SCEV *Start, const SCEV *Stop,
1451 /// Try to compute a range for the affine SCEVAddRecExpr {\p Start,+,\p
1454 ConstantRange getRangeViaFactoring(const SCEV *Start, const SCEV *Stop,
1770 /// Return true if `ExtendOpTy`({`Start`,+,`Step`}) can be proved to be
1771 /// equal to {`ExtendOpTy`(`Start`),+,`ExtendOpTy`(`Step`)}. This is
1773 /// {`Start`,+,`Step`} if `ExtendOpTy` is `SCEVSignExtendExpr`
1776 bool proveNoWrapByVaryingStart(const SCEV *Start, const SCEV *Step,
1833 /// permitted by Start, En
[all...]
/freebsd-11-stable/contrib/llvm-project/clang/lib/Lex/
H A DPreprocessor.cpp247 const char *Start = SourceMgr.getCharacterData(Tok.getLocation()); local
248 llvm::errs() << " [UnClean='" << StringRef(Start, Tok.getLength())
567 // Start parsing the predefines.
993 SourceLocation Start = FilenameTok.getLocation(); local
1005 Diag(Start, diag::note_matching) << tok::less;
1045 CreateString(FilenameBuffer, FilenameTok, Start, End);
/freebsd-11-stable/contrib/llvm-project/llvm/lib/CodeGen/
H A DMachineTraceMetrics.cpp828 updateDepths(MachineBasicBlock::iterator Start,
831 for (; Start != End; Start++)
832 updateDepth(Start->getParent(), *Start, RegUnits);
/freebsd-11-stable/contrib/llvm-project/llvm/tools/llvm-readobj/
H A DARMWinEHPrinter.cpp403 unsigned Start = (OC[Offset + 1] & 0xf0) >> 4; local
405 uint32_t VFPMask = ((1 << (End - Start)) - 1) << Start;
418 unsigned Start = (OC[Offset + 1] & 0xf0) >> 4; local
420 uint32_t VFPMask = ((1 << (End - Start)) - 1) << 16;
H A DELFDumper.cpp140 const Type *Start = reinterpret_cast<const Type *>(Addr); local
141 if (!Start)
142 return {Start, Start};
148 return {Start, Start};
150 return {Start, Start + (Size / EntSize)};
475 const uint8_t *Start = ContentsOrErr->data(); local
476 const uint8_t *End = Start
571 const uint8_t *Start = ContentsOrErr->data(); local
4814 uint64_t Start, End, Offset; member in struct:CoreFileMapping
[all...]
/freebsd-11-stable/contrib/llvm-project/llvm/utils/TableGen/
H A DAsmWriterEmitter.cpp653 std::pair<StringRef, StringRef::iterator> parseName(StringRef::iterator Start, argument
655 StringRef::iterator I = Start;
659 Start = ++I;
675 return std::make_pair(StringRef(Start, I - Start), Next);
1024 // Start each condition list with a comment of the resulting pattern that

Completed in 231 milliseconds

1234567891011>>