HomeSort by: relevance | last modified time | path
    Searched defs:ML (Results 1 - 15 of 15) sorted by relevancy

  /src/external/apache2/llvm/dist/llvm/lib/Target/WebAssembly/
WebAssemblySortRegion.cpp 18 const auto *ML = MLI.getLoopFor(MBB);
20 if (!ML && !WE)
28 // WE->contains(ML->getHeader()), but not ML->contains(WE->getHeader()).
29 if ((ML && !WE) || (ML && WE && WE->contains(ML->getHeader()))) {
31 if (LoopMap.count(ML))
32 return LoopMap[ML].get();
33 LoopMap[ML] = std::make_unique<ConcreteSortRegion<MachineLoop>>(ML)
    [all...]
  /src/games/tetris/
shapes.c 49 #define ML -1 /* middle left */
57 /* 1*/ { 1, 8, { TC, TR, ML, } },
58 /* 2*/ { 2, 9, { ML, MR, BC, } },
59 /* 3*/ { 3, 3, { TL, TC, ML, } },
60 /* 4*/ { 4, 12, { ML, BL, MR, } },
61 /* 5*/ { 5, 15, { ML, BR, MR, } },
62 /* 6*/ { 6, 18, { ML, MR, 2 } }, /* sticks out */
63 /* 7*/ { 7, 0, { TC, ML, BL, } },
66 /*10*/ { 2, 11, { TC, ML, MR, } },
67 /*11*/ { 2, 2, { TC, ML, BC, } }
    [all...]
  /src/games/backgammon/common_source/
fancy.c 65 static char *ML; /* row cursor movement map */
83 static char **tstr[] = {&BC, &CD, &CE, &CL, &CM, &HO, &MC, &ML, &ND, &UP};
  /src/external/apache2/llvm/dist/llvm/lib/Target/Hexagon/
HexagonGenMux.cpp 233 MuxInfoList ML;
328 ML.push_back(MuxInfo(At, DR, PR, SrcT, SrcF, Def1, Def2));
331 for (MuxInfo &MX : ML) {
  /src/external/apache2/llvm/dist/clang/lib/AST/
MicrosoftMangle.cpp 142 const MethodVFTableLocation &ML,
358 const MethodVFTableLocation &ML);
723 MethodVFTableLocation ML =
725 mangleVirtualMemPtrThunk(MD, ML);
726 NVOffset = ML.VFPtrOffset.getQuantity();
727 VBTableOffset = ML.VBTableIndex * 4;
728 if (ML.VBase) {
759 const CXXMethodDecl *MD, const MethodVFTableLocation &ML) {
763 uint64_t OffsetInVFTable = ML.Index * PointerWidth.getQuantity();
3447 const CXXMethodDecl *MD, const MethodVFTableLocation &ML,
    [all...]
  /src/external/apache2/llvm/dist/llvm/lib/CodeGen/
BranchFolding.cpp 412 if (MachineLoop *ML = MLI->getLoopFor(&CurMBB))
413 ML->addBasicBlockToLoop(NewMBB, MLI->getBase());
1049 MachineLoop *ML;
1062 ML = MLI->getLoopFor(IBB);
1063 if (ML && IBB == ML->getHeader())
1091 if (ML != MLI->getLoopFor(PBB))
MachineLICM.cpp 529 const MachineLoop *ML = MLI->getLoopFor(BB);
530 if (ML && ML->getHeader()->isEHPad()) continue;
719 const MachineLoop *ML = MLI->getLoopFor(BB);
720 if (ML && ML->getHeader()->isEHPad())
RDFGraph.cpp 475 NodeAddr<NodeBase*> ML = getLastMember(G);
476 if (ML.Id != 0) {
477 ML.Addr->append(NA);
  /src/external/apache2/llvm/dist/llvm/lib/CodeGen/LiveDebugValues/
VarLocBasedImpl.cpp 415 MachineLoc ML = GetLocForOp(Op);
416 auto It = find(Locs, ML);
418 Locs.push_back(ML);
421 // ML duplicates an element in Locs; replace references to Op
647 return any_of(Locs, [](VarLoc::MachineLoc ML) {
648 return ML.Kind == VarLoc::MachineLocKind::SpillLocKind;
  /src/external/apache2/llvm/dist/llvm/lib/Target/ARM/
ARMLowOverheadLoops.cpp 113 MachineLoop &ML;
119 PostOrderLoopTraversal(MachineLoop &ML, MachineLoopInfo &MLI)
120 : ML(ML), MLI(MLI) { }
136 if (!ML.contains(Succ))
145 ML.getExitBlocks(ExitBlocks);
149 Search(ML.getHeader());
159 if (auto *Preheader = ML.getLoopPreheader())
161 else if (auto *Preheader = MLI.findLoopPreheader(&ML, true))
362 MachineLoop &ML;
    [all...]
  /src/external/apache2/llvm/dist/llvm/lib/Transforms/Scalar/
MemCpyOptimizer.cpp 563 NeedLift = llvm::any_of(MemLocs, [C, this](const MemoryLocation &ML) {
564 return isModOrRefSet(AA->getModRefInfo(C, ML));
589 auto ML = MemoryLocation::get(C);
590 if (isModOrRefSet(AA->getModRefInfo(P, ML)))
593 MemLocs.push_back(ML);
  /src/external/apache2/llvm/dist/llvm/lib/Analysis/
DependenceAnalysis.cpp 1346 const SCEV *ML = SE->getMulExpr(SE->getMulExpr(ConstCoeff, UpperBound),
1348 LLVM_DEBUG(dbgs() << "\t ML = " << *ML << "\n");
1349 if (isKnownPredicate(CmpInst::ICMP_SGT, Delta, ML)) {
1355 if (isKnownPredicate(CmpInst::ICMP_EQ, Delta, ML)) {
  /src/external/apache2/llvm/dist/clang/lib/CodeGen/
CGDebugInfo.cpp 1721 MethodVFTableLocation ML =
1723 VIndex = ML.Index;
MicrosoftCXXABI.cpp 237 MethodVFTableLocation ML =
245 if (ML.VBase || !ML.VFPtrOffset.isZero())
634 const MethodVFTableLocation &ML);
1400 MethodVFTableLocation ML =
1402 CharUnits Adjustment = ML.VFPtrOffset;
1411 if (ML.VBase) {
1414 Adjustment += DerivedLayout.getVBaseClassOffset(ML.VBase);
1448 MethodVFTableLocation ML =
1451 CharUnits StaticOffset = ML.VFPtrOffset
    [all...]
  /src/external/apache2/llvm/dist/llvm/lib/CodeGen/SelectionDAG/
SelectionDAGBuilder.cpp 4492 MemoryLocation ML;
4494 ML = MemoryLocation::getAfter(PtrOperand);
4496 ML = MemoryLocation(PtrOperand, LocationSize::precise(
4499 bool AddToChain = !AA || !AA->pointsToConstantMemory(ML);

Completed in 128 milliseconds