Searched refs:LM (Results 1 - 23 of 23) sorted by relevance

/freebsd-11-stable/contrib/llvm-project/clang/lib/Parse/
H A DParseCXXInlineMethods.cpp134 LexedMethod* LM = new LexedMethod(this, FnD); local
135 getCurrentClass().LateParsedDeclarations.push_back(LM);
136 LM->TemplateScope = getCurScope()->isTemplateParamScope() ||
139 CachedTokens &Toks = LM->Toks;
301 void Parser::ParseLexedMethodDeclaration(LateParsedMethodDeclaration &LM) { argument
303 ParseScope TemplateScope(this, Scope::TemplateParamScope, LM.TemplateScope);
305 if (LM.TemplateScope) {
306 Actions.ActOnReenterTemplateScope(getCurScope(), LM.Method);
310 Actions.ActOnStartDelayedCXXMethodDeclaration(getCurScope(), LM.Method);
316 for (unsigned I = 0, N = LM
495 ParseLexedMethodDef(LexedMethod &LM) argument
[all...]
H A DParseObjc.cpp2649 LexedMethod* LM = new LexedMethod(this, MDecl); local
2650 CurParsedObjCImpl->LateParsedObjCMethods.push_back(LM);
2651 CachedTokens &Toks = LM->Toks;
3632 void Parser::ParseLexedObjCMethodDefs(LexedMethod &LM, bool parseMethod) { argument
3634 Decl *MCDecl = LM.D;
3644 assert(!LM.Toks.empty() && "ParseLexedObjCMethodDef - Empty body!");
3652 LM.Toks.push_back(Eof);
3655 LM.Toks.push_back(Tok);
3656 PP.EnterTokenStream(LM.Toks, true, /*IsReinject*/true);
/freebsd-11-stable/contrib/llvm-project/clang/lib/AST/
H A DScanfFormatString.cpp236 switch (LM.getKind()) {
276 switch (LM.getKind()) {
319 switch (LM.getKind()) {
334 switch (LM.getKind()) {
353 switch (LM.getKind()) {
374 switch (LM.getKind()) {
441 LM.setKind(LengthModifier::AsWideChar);
443 LM.setKind(LengthModifier::None);
462 LM.setKind(LengthModifier::None);
470 LM
[all...]
H A DPrintfFormatString.cpp490 switch (LM.getKind()) {
505 switch (LM.getKind()) {
541 switch (LM.getKind()) {
577 switch (LM.getKind()) {
588 if (LM.getKind() == LengthModifier::AsLongDouble)
594 switch (LM.getKind()) {
628 if (LM.getKind() == LengthModifier::AsWideChar) {
634 if (LM.getKind() == LengthModifier::AsWide)
642 LM.getKind() == LengthModifier::AsShort)
649 LM
[all...]
H A DFormatString.cpp722 switch (LM.getKind()) {
880 switch (LM.getKind()) {
949 if (LM.getKind() == LengthModifier::AsLongDouble) {
967 if (LM.getKind() == LengthModifier::AsLongDouble ||
968 LM.getKind() == LengthModifier::AsQuad) {
969 LengthModifier FixedLM(LM);
979 LengthModifier &LM) {
986 LM.setKind(LengthModifier::AsSizeT);
990 LM.setKind(LengthModifier::AsSizeT);
993 LM
978 namedTypeToLengthModifier(QualType QT, LengthModifier &LM) argument
[all...]
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/AMDGPU/
H A DGCNRegBankReassign.cpp375 unsigned LM = TRI->getSubRegIndexLaneMask(Op.getSubReg()).getAsInteger();
376 if (!(LM & 1) && (Bank < NUM_VGPR_BANKS)) {
378 if (countPopulation(LM) >= NUM_VGPR_BANKS)
380 ShiftedBank = (Bank + countTrailingZeros(LM)) % NUM_VGPR_BANKS;
381 } else if (!(LM & 3) && (Bank >= SGPR_BANK_OFFSET)) {
383 if (countPopulation(LM) / 2 >= NUM_SGPR_BANKS)
386 (countTrailingZeros(LM) >> 1)) %
499 unsigned LM = TRI->getSubRegIndexLaneMask(SubReg).getAsInteger();
500 if (!(LM & 1) && (Mask & VGPR_BANK_MASK)) {
501 unsigned Shift = countTrailingZeros(LM);
[all...]
H A DSIShrinkInstructions.cpp429 LaneBitmask LM = TRI.getSubRegIndexLaneMask(Sub); local
430 Sub = TRI.getSubRegFromChannel(I + countTrailingZeros(LM.getAsInteger()));
/freebsd-11-stable/contrib/llvm-project/llvm/lib/CodeGen/
H A DSplitKit.h347 /// Find a subrange corresponding to the lane mask @p LM in the live
351 LiveInterval::SubRange &getSubRangeForMask(LaneBitmask LM, LiveInterval &LI);
412 /// Live range @p LR corresponding to the lane Mask @p LM has a live
418 LiveRange &LR, LaneBitmask LM,
H A DSplitKit.cpp407 LiveInterval::SubRange &SplitEditor::getSubRangeForMask(LaneBitmask LM, argument
410 if (S.LaneMask == LM)
438 LaneBitmask LM; local
444 LM |= TRI.getSubRegIndexLaneMask(SR);
446 LM = MRI.getMaxLaneMaskForVReg(R);
451 if ((S.LaneMask & LM).any())
1242 LiveRange &LR, LaneBitmask LM,
1252 LiveRange &PSR = !LM.all() ? getSubRangeForMask(LM, PLI)
1377 LaneBitmask LM local
1241 extendPHIRange(MachineBasicBlock &B, LiveRangeCalc &LRC, LiveRange &LR, LaneBitmask LM, ArrayRef<SlotIndex> Undefs) argument
[all...]
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/CodeGen/
H A DRDFGraph.h438 uint32_t getIndexForLaneMask(LaneBitmask LM) { argument
439 assert(LM.any());
440 return LM.all() ? 0 : insert(LM);
443 uint32_t getIndexForLaneMask(LaneBitmask LM) const {
444 assert(LM.any());
445 return LM.all() ? 0 : find(LM);
/freebsd-11-stable/contrib/llvm-project/clang/lib/CodeGen/
H A DCodeGenAction.cpp246 for (auto &LM : LinkModules) {
247 if (LM.PropagateAttrs)
248 for (Function &F : *LM.Module)
251 CurLinkModule = LM.Module.get();
254 if (LM.Internalize) {
256 *getModule(), std::move(LM.Module), LM.LinkFlags,
263 Err = Linker::linkModules(*getModule(), std::move(LM.Module),
264 LM.LinkFlags);
/freebsd-11-stable/contrib/llvm-project/clang/include/clang/AST/
H A DFormatString.h399 LengthModifier LM; member in class:clang::analyze_format_string::FormatSpecifier
415 LM = lm;
433 return LM;
466 /// assign the appropriate value to LM and return true.
467 static bool namedTypeToLengthModifier(QualType QT, LengthModifier &LM);
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/Hexagon/
H A DHexagonExpandCondsets.cpp204 void updateDeadsInRange(unsigned Reg, LaneBitmask LM, LiveRange &Range);
316 auto KillAt = [this,Reg] (SlotIndex K, LaneBitmask LM) -> void {
317 // Set the <kill> flag on a use of Reg whose lane mask is contained in LM.
325 if ((SLM & LM) == SLM) {
366 void HexagonExpandCondsets::updateDeadsInRange(unsigned Reg, LaneBitmask LM, argument
373 auto IsRegDef = [this,Reg,LM] (MachineOperand &Op) -> std::pair<bool,bool> {
380 LaneBitmask A = SLM & LM;
427 LI.computeSubRangeUndefs(Undefs, LM, *MRI, *LIS->getSlotIndexes());
H A DHexagonGenInsert.cpp820 LRSMapType LM;
846 LM[L].push_back(std::make_pair(*I, S));
848 LM[L].push_back(std::make_pair(*I, S));
859 LM[L].push_back(std::make_pair(*I, S));
868 for (LRSMapType::iterator I = LM.begin(), E = LM.end(); I != E; ++I) {
899 LRSMapType::iterator F = LM.find(L);
900 if (F == LM.end())
H A DHexagonFrameLowering.cpp2286 HexagonBlockRanges::RegToRangeMap LM = HBR.computeLiveMap(IM); local
2287 HexagonBlockRanges::RegToRangeMap DM = HBR.computeDeadMap(IM, LM);
/freebsd-11-stable/contrib/llvm-project/clang/lib/StaticAnalyzer/Checkers/
H A DPthreadLockChecker.cpp185 LockMapTy LM = State->get<LockMap>(); local
186 if (!LM.isEmpty()) {
188 for (auto I : LM) {
/freebsd-11-stable/libexec/getty/
H A Dgettytab.h63 #define LM gettystrs[3].value macro
H A Dmain.c701 putf(LM);
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Transforms/Scalar/
H A DLowerMatrixIntrinsics.cpp593 auto LM = getMatrix(Matrix, Shape, Builder); local
594 for (auto C : enumerate(LM.columns())) {
616 /// the matrix \p LM represented as a vector of column vectors.
617 Value *extractVector(const ColumnMatrixTy &LM, unsigned I, unsigned J, argument
619 Value *Col = LM.getColumn(J);
/freebsd-11-stable/cddl/contrib/opensolaris/lib/libdtrace/common/
H A Ddt_lex.l109 RGX_LMID LM[0-9a-fA-F]+`
/freebsd-11-stable/contrib/llvm-project/clang/lib/Sema/
H A DSemaChecking.cpp7475 const LengthModifier &LM = FS.getLengthModifier(); local
7476 CharSourceRange LMRange = getSpecifierRange(LM.getStart(), LM.getLength());
7481 EmitFormatDiagnostic(S.PDiag(DiagID) << LM.toString() << CS.toString(),
7482 getLocationOfByte(LM.getStart()),
7486 S.Diag(getLocationOfByte(LM.getStart()), diag::note_format_fix_specifier)
7495 EmitFormatDiagnostic(S.PDiag(DiagID) << LM.toString() << CS.toString(),
7496 getLocationOfByte(LM.getStart()),
7508 const LengthModifier &LM = FS.getLengthModifier(); local
7509 CharSourceRange LMRange = getSpecifierRange(LM
[all...]
/freebsd-11-stable/contrib/llvm-project/clang/include/clang/Parse/
H A DParser.h1483 void ParseLexedMethodDeclaration(LateParsedMethodDeclaration &LM);
1485 void ParseLexedMethodDef(LexedMethod &LM);
1488 void ParseLexedObjCMethodDefs(LexedMethod &LM, bool parseMethod);
/freebsd-11-stable/contrib/netbsd-tests/usr.bin/netpgpverify/
H A Dt_netpgpverify.sh916 LM/MZ4n5Lx8ca1d5ytnjGib64V0eqqILMcgKr1B2sZ8uPVPMf/lwRgsKAzKDEtRc

Completed in 430 milliseconds