Searched refs:MN (Results 1 - 10 of 10) sorted by relevance

/freebsd-11.0-release/contrib/llvm/lib/Support/
H A DYAMLTraits.cpp118 MapHNode *MN = dyn_cast_or_null<MapHNode>(CurrentNode);
119 if (MN) {
120 MN->ValidKeys.clear();
138 MapHNode *MN = dyn_cast<MapHNode>(CurrentNode); local
139 if (!MN) {
143 MN->ValidKeys.push_back(Key);
144 HNode *Value = MN->Mapping[Key].get();
165 MapHNode *MN = dyn_cast_or_null<MapHNode>(CurrentNode);
166 if (!MN)
168 for (const auto &NN : MN
[all...]
/freebsd-11.0-release/contrib/llvm/utils/TableGen/
H A DDAGISelMatcherEmitter.cpp500 const EmitMergeInputChainsMatcher *MN = local
504 if (MN->getNumNodes() == 1 && MN->getNode(0) < 2) {
505 OS << "OPC_EmitMergeInputChains1_" << MN->getNode(0) << ",\n";
509 OS << "OPC_EmitMergeInputChains, " << MN->getNumNodes() << ", ";
510 for (unsigned i = 0, e = MN->getNumNodes(); i != e; ++i)
511 OS << MN->getNode(i) << ", ";
513 return 2+MN->getNumNodes();
/freebsd-11.0-release/contrib/ntp/ntpd/
H A Drefclock_wwv.c309 #define MN 0 /* minute digits (2) */ macro
329 {DECIM9, MN}, /* 14 */
334 {DECIM6, MN + 1}, /* 19 p2 */
701 up->decvec[MN].radix = 10; /* minutes */
702 up->decvec[MN + 1].radix = 6;
2071 pp->minute = up->decvec[MN].digit + up->decvec[MN +
2231 temp = carry(&up->decvec[MN]); /* minute units */
2239 temp = carry(&up->decvec[MN + 1]);
2252 minute = up->decvec[MN]
[all...]
/freebsd-11.0-release/contrib/llvm/lib/CodeGen/SelectionDAG/
H A DScheduleDAGSDNodes.cpp148 MachineSDNode *MN = dyn_cast<MachineSDNode>(N); local
151 if (MN) {
152 Begin = MN->memoperands_begin();
153 End = MN->memoperands_end();
159 if (MN)
160 MN->setMemRefs(Begin, End);
H A DSelectionDAGDumper.cpp398 if (const MachineSDNode *MN = dyn_cast<MachineSDNode>(this)) {
399 if (!MN->memoperands_empty()) {
402 for (MachineSDNode::mmo_iterator i = MN->memoperands_begin(),
403 e = MN->memoperands_end(); i != e; ++i) {
H A DSelectionDAG.cpp6005 if (MachineSDNode *MN = dyn_cast<MachineSDNode>(N)) {
6007 MN->setMemRefs(nullptr, nullptr);
6010 if (NumOps > MN->NumOperands || !MN->OperandsNeedDelete) {
6011 if (MN->OperandsNeedDelete)
6012 delete[] MN->OperandList;
6013 if (NumOps > array_lengthof(MN->LocalOperands))
6017 MN->InitOperands(OperandAllocator.Allocate<SDUse>(NumOps),
6020 MN->InitOperands(MN
[all...]
H A DSelectionDAGBuilder.cpp6974 MachineSDNode *MN = DAG.getMachineNode(TargetOpcode::PATCHPOINT,
6980 setValue(CS.getInstruction(), SDValue(MN, 0));
6991 SDValue To[] = {SDValue(MN, 1), SDValue(MN, 2)};
6994 DAG.ReplaceAllUsesWith(Call, MN);
/freebsd-11.0-release/contrib/llvm/lib/Target/Hexagon/
H A DRDFGraph.cpp530 NodeAddr<NodeBase*> MN = M; local
532 M = MN;
533 MN = G.addr<NodeBase*>(M.Addr->getNext());
534 assert(MN.Addr->getType() == NodeAttrs::Code);
535 } while (MN.Addr->getKind() == NodeAttrs::Phi);
/freebsd-11.0-release/contrib/llvm/lib/CodeGen/AsmPrinter/
H A DDwarfDebug.cpp1901 for (auto *MN : Nodes) {
1902 if (auto *M = dyn_cast<DIMacro>(MN))
1904 else if (auto *F = dyn_cast<DIMacroFile>(MN))
/freebsd-11.0-release/contrib/llvm/tools/clang/lib/CodeGen/
H A DCGOpenMPRuntime.cpp2346 llvm::MDNode *MN = cast<llvm::MDNode>(I); local
2350 cast<llvm::ConstantAsMetadata>(MN->getOperand(Idx));
2355 llvm::MDString *V = cast<llvm::MDString>(MN->getOperand(Idx));

Completed in 698 milliseconds