Searched refs:front (Results 201 - 225 of 606) sorted by relevance

1234567891011>>

/freebsd-12-stable/contrib/llvm-project/llvm/lib/Target/X86/
H A DX86VZeroUpper.cpp322 addDirtySuccessor(MF.front());
H A DX86WinEHState.cpp518 BasicBlock *FuncletEntryBB = BBColors.front();
700 BasicBlock *BB = Worklist.front();
733 BasicBlock *FuncletEntryBB = BBColors.front();
775 BasicBlock *FuncletEntryBB = BBColors.front();
H A DX86CmovConversion.cpp620 packCmovGroup(Group.front(), Group.back());
651 MachineInstr &MI = *Group.front();
/freebsd-12-stable/cddl/usr.sbin/zfsd/
H A Dvdev.cc252 Vdev vd = to_examine.front();
/freebsd-12-stable/contrib/llvm-project/clang/lib/Sema/
H A DSemaPseudoObject.cpp669 char front = thisPropertyName.front(); local
670 front = isLowercase(front) ? toUppercase(front) : toLowercase(front);
672 PropertyName[0] = front;
H A DSemaModule.cpp172 Diag(Path.front().second, diag::err_current_module_name_mismatch)
173 << SourceRange(Path.front().second, Path.back().second)
/freebsd-12-stable/contrib/llvm-project/llvm/lib/Transforms/Scalar/
H A DSCCP.cpp1311 MarkBlockExecutable(&F->front());
1810 Solver.MarkBlockExecutable(&F.front());
2032 Solver.MarkBlockExecutable(&F.front());
2074 if (Solver.isBlockExecutable(&F.front()))
2090 if (&*BB != &F.front())
2119 if (!Solver.isBlockExecutable(&F.front()))
2120 NumInstRemoved += changeToUnreachable(F.front().getFirstNonPHI(),
/freebsd-12-stable/contrib/llvm-project/llvm/lib/Transforms/Utils/
H A DCodeExtractor.cpp212 LLVM_DEBUG(dbgs() << "Region front block: " << Result.front()->getName()
220 if (BB == Result.front()) {
677 PN->getName() + ".ce", &NewBB->front());
1095 &codeReplacer->getParent()->front().front());
1113 &codeReplacer->getParent()->front().front());
H A DLowerSwitch.cpp481 LowerBound = Cases.front().Low;
505 APInt Low = Cases.front().Low->getValue();
/freebsd-12-stable/contrib/llvm-project/llvm/lib/CodeGen/
H A DWinEHPrepare.cpp185 BasicBlock *FuncletEntryBB = BBColors.front();
842 EdgeTargetsFunclet = (IncomingColors.front() == FuncletPadBB);
951 FuncletBundleOperand = BU->Inputs.front();
1083 &F.getEntryBlock().front());
1170 &F.getEntryBlock().front());
H A DVirtRegMap.cpp279 if (!First.isValid() || SR.segments.front().start < First)
280 First = SR.segments.front().start;
/freebsd-12-stable/contrib/llvm-project/llvm/lib/Demangle/
H A DMicrosoftDemangle.cpp33 return !S.empty() && std::isdigit(S.front());
88 switch (MangledName.front()) {
182 switch (S.front()) {
198 switch (S.front()) {
708 switch (MangledName.front()) {
1275 // This function uses goto, so declare all variables up front.
1720 assert(MangledName.front() >= '0' && MangledName.front() <= '4');
2071 assert(MangledName.front() == 'Y');
/freebsd-12-stable/contrib/llvm-project/llvm/lib/Transforms/Vectorize/
H A DVPlan.h1099 inline const VPRecipeBase &front() const { return Recipes.front(); }
1100 inline VPRecipeBase &front() { return Recipes.front(); }
1194 // FIXME: DominatorTreeBase is doing 'A->getParent()->front()'. 'front' is a
1198 VPBlockBase &front() const { return *Entry; }
/freebsd-12-stable/contrib/llvm-project/llvm/utils/TableGen/
H A DCodeGenRegisters.cpp187 ExplicitSubRegs.front()->LeadingSuperRegs.push_back(this);
478 std::tie(SubRegIdx, SubReg) = SubRegQueue.front();
1011 assert(SuperRegRCs.front() == BiggestSuperRegRC && "Biggest class wasn't first");
1299 std::string Name = Parts.front()->getName();
1302 unsigned Size = Parts.front()->Size;
1303 unsigned LastOffset = Parts.front()->Offset;
1304 unsigned LastSize = Parts.front()->Size;
1314 Idx = createSubRegIndex(Name, Parts.front()->getNamespace());
1316 Idx->Offset = isContinuous ? Parts.front()->Offset : -1;
/freebsd-12-stable/contrib/llvm-project/clang/lib/Lex/
H A DHeaderSearch.cpp965 Diags, IncludeLoc, Includers.front().second->getName(), Filename,
977 if (!Includers.empty() && Includers.front().first && !isAngled &&
979 HeaderFileInfo &IncludingHFI = getFileInfo(Includers.front().first);
988 Includers.front(), SearchPath, RelativePath, RequestingModule,
1775 path::is_separator(NI->front()) && path::is_separator(DI->front()))
/freebsd-12-stable/contrib/llvm-project/clang/include/clang/Analysis/
H A DCFG.h598 const_reference front() const { return Impl.back(); } function in class:clang::CFGBlock::ElementList
599 const_reference back() const { return Impl.front(); }
873 CFGElement front() const { return Elements.front(); }
1301 CFGBlock & front() { return *Blocks.front(); }
/freebsd-12-stable/contrib/llvm-project/llvm/include/llvm/ADT/
H A DArrayRef.h160 /// front - Get the first element.
161 const T &front() const { function in class:llvm::ArrayRef
346 /// front - Get the first element.
347 T &front() const { function in class:llvm::ArrayRef
H A DStringRef.h153 /// front - Get the first character in the string.
155 char front() const { function in class:llvm::StringRef
331 if (F(S.front()))
/freebsd-12-stable/contrib/llvm-project/clang/lib/Tooling/
H A DInterpolatingCompilationDatabase.cpp154 Cmd.CommandLine.emplace_back(OldArgs.front());
249 llvm::sys::path::stem(CmdLine.front()).endswith_lower("cl");
/freebsd-12-stable/contrib/llvm-project/llvm/lib/Analysis/
H A DLoopCacheAnalysis.cpp533 const IndexedReference &Representative = *RefGroup.front().get();
612 const IndexedReference *Representative = RG.front().get();
H A DMustExecute.cpp680 return &PP->getSuccessor(0)->front();
687 return &JoinBB->front();
/freebsd-12-stable/contrib/llvm-project/llvm/lib/Support/
H A DStringRef.cpp469 if (Str.empty() || Str.front() != '-') {
528 while (!Str.empty() && Str.front() == '0')
/freebsd-12-stable/contrib/libstdc++/include/bits/
H A Dstl_list.h697 front() function in class:list
705 front() const function in class:list
734 * @brief Add data to the front of the %list.
738 * element at the front of the %list and assigns the given data
930 * The elements of @a x are inserted in constant time in front of
H A Dstl_vector.h557 front() function in class:vector
565 front() const function in class:vector
589 * range. For a non-empty %vector, data() == &front().
/freebsd-12-stable/contrib/llvm-project/lldb/source/Plugins/LanguageRuntime/ObjC/AppleObjCRuntime/
H A DAppleObjCTypeEncodingParser.cpp242 return ClangUtil::GetQualType(types.front().GetPointerType());

Completed in 525 milliseconds

1234567891011>>