/freebsd/contrib/llvm-project/llvm/lib/Target/Xtensa/MCTargetDesc/ |
H A D | XtensaInstPrinter.cpp | 59 void XtensaInstPrinter::printOperand(const MCOperand &MC, raw_ostream &O) { in printOperand() argument 60 if (MC.isReg()) in printOperand() 61 O << getRegisterName(MC.getReg()); in printOperand() 62 else if (MC.isImm()) in printOperand() 63 O << MC.getImm(); in printOperand() 64 else if (MC.isExpr()) in printOperand() 65 printExpr(MC.getExpr(), O); in printOperand() 95 const MCOperand &MC = MI->getOperand(OpNum); in printBranchTarget() local 97 int64_t Val = MC.getImm() + 4; in printBranchTarget() 102 } else if (MC.isExpr()) in printBranchTarget() [all …]
|
/freebsd/contrib/llvm-project/llvm/utils/TableGen/ |
H A D | DAGISelMatcherOpt.cpp | 44 if (MoveChildMatcher *MC = dyn_cast<MoveChildMatcher>(N)) { in ContractNodes() local 46 if (RecordMatcher *RM = dyn_cast<RecordMatcher>(MC->getNext())) in ContractNodes() 47 if (MC->getChildNo() < 8) // Only have RecordChild0...7 in ContractNodes() 48 New = new RecordChildMatcher(MC->getChildNo(), RM->getWhatFor(), in ContractNodes() 51 if (CheckTypeMatcher *CT = dyn_cast<CheckTypeMatcher>(MC->getNext())) in ContractNodes() 52 if (MC->getChildNo() < 8 && // Only have CheckChildType0...7 in ContractNodes() 54 New = new CheckChildTypeMatcher(MC->getChildNo(), CT->getType()); in ContractNodes() 56 if (CheckSameMatcher *CS = dyn_cast<CheckSameMatcher>(MC->getNext())) in ContractNodes() 57 if (MC->getChildNo() < 4) // Only have CheckChildSame0...3 in ContractNodes() 58 New = new CheckChildSameMatcher(MC->getChildNo(), CS->getMatchNumber()); in ContractNodes() [all …]
|
/freebsd/contrib/llvm-project/llvm/lib/DWARFLinker/Classic/ |
H A D | DWARFStreamer.cpp | 78 MC.reset(new MCContext(TheTriple, MAI.get(), MRI.get(), MSTI.get(), nullptr, in init() 80 MOFI.reset(TheTarget->createMCObjectFileInfo(*MC, /*PIC=*/false, false)); in init() 81 MC->setObjectFileInfo(MOFI.get()); in init() 95 MCE = TheTarget->createMCCodeEmitter(*MII, *MC); in init() 106 *MC, std::make_unique<formatted_raw_ostream>(OutFile), MIP, in init() 113 TheTriple, *MC, std::unique_ptr<MCAsmBackend>(MAB), in init() 157 MC->setDwarfVersion(DwarfVersion); in switchToDebugInfoSection() 215 MC->setDwarfVersion(DwarfVersion); in emitAbbrevs() 242 return MC->getObjectFileInfo()->getDwarfInfoSection(); in getMCSection() 244 return MC->getObjectFileInfo()->getDwarfLineSection(); in getMCSection() [all …]
|
/freebsd/contrib/llvm-project/llvm/lib/DWARFLinker/ |
H A D | DWARFStreamer.cpp |
|
/freebsd/contrib/llvm-project/llvm/lib/DWARFLinkerParallel/ |
H A D | DWARFEmitterImpl.cpp |
|
/freebsd/contrib/llvm-project/llvm/lib/DWARFLinker/Parallel/ |
H A D | DWARFEmitterImpl.cpp | 57 MC.reset(new MCContext(TheTriple, MAI.get(), MRI.get(), MSTI.get(), nullptr, in init() 59 MOFI.reset(TheTarget->createMCObjectFileInfo(*MC, /*PIC=*/false, false)); in init() 60 MC->setObjectFileInfo(MOFI.get()); in init() 74 MCE = TheTarget->createMCCodeEmitter(*MII, *MC); in init() 85 *MC, std::make_unique<formatted_raw_ostream>(OutFile), MIP, in init() 92 TheTriple, *MC, std::unique_ptr<MCAsmBackend>(MAB), in init() 128 MC->setDwarfVersion(DwarfVersion); in emitAbbrevs() 134 MC->setDwarfVersion(Unit.getVersion()); in emitCompileUnitHeader()
|
H A D | DebugLineSectionEmitter.h | 94 MC.reset(new MCContext(TheTriple, MAI.get(), MRI.get(), MSTI.get(), nullptr, in init() 308 MCDwarfLineAddr::encode(*MC, Params, std::numeric_limits<int64_t>::max(), in emitLineTableRows() 354 if (Discriminator != Row.Discriminator && MC->getDwarfVersion() >= 4) { in emitLineTableRows() 384 MCDwarfLineAddr::encode(*MC, Params, LineDelta, AddressDelta, in emitLineTableRows() 400 MCDwarfLineAddr::encode(*MC, Params, in emitLineTableRows() 412 MCDwarfLineAddr::encode(*MC, Params, std::numeric_limits<int64_t>::max(), in emitLineTableRows() 424 std::unique_ptr<MCContext> MC; variable
|
/freebsd/sys/contrib/device-tree/Bindings/misc/ |
H A D | fsl,qoriq-mc.txt | 48 the MC control register region. 53 defining the MC's registers: 58 -the second region is the MC control registers. This 65 MC address space and the parent system address space. 67 The MC address space is defined by 3 components: 71 0x0 - MC portals 85 the relationship between the Ethernet MACs which belong to the MC 142 interrupts for the MC. When there is no translation 170 reg = <0x00000008 0x0c000000 0 0x40>, /* MC portal base */ 171 <0x00000000 0x08340000 0 0x40000>; /* MC control reg */ [all …]
|
H A D | fsl,dpaa2-console.txt | 11 (MC firmware base address) register can be found.
|
/freebsd/contrib/llvm-project/llvm/include/llvm/CodeGen/ |
H A D | TargetRegisterInfo.h | 52 const MCRegisterClass *MC; variable 74 unsigned getID() const { return MC->getID(); } in getID() 78 iterator begin() const { return MC->begin(); } in begin() 79 iterator end() const { return MC->end(); } in end() 82 unsigned getNumRegs() const { return MC->getNumRegs(); } in getNumRegs() 90 return MC->getRegister(i); in getRegister() 100 return MC->contains(Reg.asMCReg()); in contains() 109 return MC->contains(Reg1.asMCReg(), Reg2.asMCReg()); in contains() 115 int getCopyCost() const { return MC->getCopyCost(); } in getCopyCost() 119 bool isAllocatable() const { return MC->isAllocatable(); } in isAllocatable() [all …]
|
/freebsd/contrib/llvm-project/llvm/lib/Target/Hexagon/ |
H A D | HexagonMCInstLower.cpp | 43 MCContext &MC = Printer.OutContext; in GetSymbolRef() local 85 ME = MCSymbolRefExpr::create(Symbol, RelocationType, MC); in GetSymbolRef() 88 ME = MCBinaryExpr::createAdd(ME, MCConstantExpr::create(MO.getOffset(), MC), in GetSymbolRef() 89 MC); in GetSymbolRef() 91 ME = HexagonMCExpr::create(ME, MC); in GetSymbolRef()
|
/freebsd/lib/clang/libllvm/ |
H A D | Makefile | 877 SRCS_MIN+= MC/ConstantPools.cpp 878 SRCS_MIN+= MC/ELFObjectWriter.cpp 879 SRCS_MIN+= MC/GOFFObjectWriter.cpp 880 SRCS_MIN+= MC/MCAsmBackend.cpp 881 SRCS_MIN+= MC/MCAsmInfo.cpp 882 SRCS_MIN+= MC/MCAsmInfoCOFF.cpp 883 SRCS_MIN+= MC/MCAsmInfoDarwin.cpp 884 SRCS_MIN+= MC/MCAsmInfoELF.cpp 885 SRCS_MIN+= MC/MCAsmInfoXCOFF.cpp 886 SRCS_MIN+= MC/MCAsmMacro.cpp [all …]
|
/freebsd/sys/contrib/device-tree/Bindings/perf/ |
H A D | apm-xgene-pmu.txt | 9 MC - Memory controller 35 Required properties for MC subnode: 37 - reg : First resource shall be the MC PMU resource. 38 - enable-bit-index : The bit indicates if the according MC is enabled.
|
/freebsd/contrib/llvm-project/llvm/tools/llvm-dwp/ |
H A D | llvm-dwp.cpp | 235 MCContext MC(*ErrOrTriple, MAI.get(), MRI.get(), MSTI.get()); in llvm_dwp_main() local 237 TheTarget->createMCObjectFileInfo(MC, /*PIC=*/false)); in llvm_dwp_main() 238 MC.setObjectFileInfo(MOFI.get()); in llvm_dwp_main() 249 MCCodeEmitter *MCE = TheTarget->createMCCodeEmitter(*MII, MC); in llvm_dwp_main() 268 *ErrOrTriple, MC, std::unique_ptr<MCAsmBackend>(MAB), in llvm_dwp_main()
|
/freebsd/contrib/llvm-project/clang/lib/InstallAPI/ |
H A D | Visitor.cpp | 88 if (MC->shouldMangleDeclName(D)) { in getMangledName() 90 MC->mangleName(D, NStream); in getMangledName() 428 MC->mangleCXXRTTIName(QualType(D->getTypeForDecl(), 0), NameStream); in getMangledCXXRTTIName() 436 MC->mangleCXXRTTI(QualType(D->getTypeForDecl(), 0), NameStream); in getMangledCXXRTTI() 445 MC->mangleCXXVTable(D, NameStream); in getMangledCXXVTableName() 456 MC->mangleCXXDtorThunk(Dtor, D.getDtorType(), Thunk, ElideOverrideInfo, in getMangledCXXThunk() 459 MC->mangleThunk(Method, Thunk, ElideOverrideInfo, NameStream); in getMangledCXXThunk() 475 MC->mangleName(GD, NameStream); in getMangledCtorDtor()
|
/freebsd/contrib/llvm-project/clang/lib/AST/ |
H A D | Mangle.cpp | 396 std::unique_ptr<MangleContext> MC; member in ASTNameGenerator::Implementation 401 : MC(Ctx.createMangleContext()), in Implementation() 417 MC->mangleObjCMethodName(MD, OS, /*includePrefixByte=*/false, in writeName() 537 if (MC->shouldMangleDeclName(D)) { in writeFuncOrVarName() 547 MC->mangleName(GD, OS); in writeFuncOrVarName() 572 MC->mangleName(GD, FOS); in getMangledStructor() 587 MC->mangleThunk(MD, T, ElideOverrideInfo, FOS); in getMangledThunk()
|
/freebsd/contrib/llvm-project/clang/include/clang/InstallAPI/ |
H A D | Visitor.h | 34 MC(ItaniumMangleContext::create(ASTCtx, ASTCtx.getDiagnostics())), in InstallAPIVisitor() 82 std::unique_ptr<clang::ItaniumMangleContext> MC; variable
|
/freebsd/contrib/llvm-project/llvm/lib/TableGen/ |
H A D | TGParser.cpp | 47 MultiClass *MC = nullptr; member 52 bool isInvalid() const { return MC == nullptr; } in isInvalid() 60 MC->dump(); in dump() 125 static Init *QualifyName(MultiClass *MC, Init *Name) { in QualifyName() argument 126 return QualifyName(MC->Rec, Name); in QualifyName() 134 static Init *QualifiedNameOfImplicitName(MultiClass *MC) { in QualifiedNameOfImplicitName() argument 135 return QualifiedNameOfImplicitName(MC->Rec); in QualifiedNameOfImplicitName() 366 MultiClass *SMC = SubMultiClass.MC; in AddSubMultiClass() 642 bool TGParser::resolveArgumentsOfMultiClass(SubstStack &Substs, MultiClass *MC, in resolveArgumentsOfMultiClass() argument 646 Substs.emplace_back(QualifiedNameOfImplicitName(MC), DefmName); in resolveArgumentsOfMultiClass() [all …]
|
H A D | TGParser.h | 255 bool resolveArgumentsOfMultiClass(SubstStack &Substs, MultiClass *MC, 261 bool ParseObjectList(MultiClass *MC = nullptr); 262 bool ParseObject(MultiClass *MC);
|
/freebsd/sys/contrib/device-tree/Bindings/memory-controllers/ |
H A D | nvidia,tegra20-mc.txt | 1 NVIDIA Tegra20 MC(Memory Controller) 11 - interrupts : Should contain MC General interrupt.
|
/freebsd/contrib/llvm-project/clang/lib/StaticAnalyzer/Checkers/ |
H A D | DirectIvarAssignment.cpp | 151 MethodCrawler MC(IvarToPropMap, M->getCanonicalDecl(), InterD, BR, this, in checkASTDecl() local 153 MC.VisitStmt(Body); in checkASTDecl()
|
/freebsd/sys/contrib/device-tree/Bindings/iommu/ |
H A D | nvidia,tegra30-smmu.txt | 7 - interrupts : Should contain MC General interrupt.
|
H A D | mediatek,iommu.txt | 40 OVL0 RDMA0 WDMA0 MC PP VLD 50 in each larb. Take a example, There are many ports like MC, PP, VLD in the
|
/freebsd/contrib/file/magic/Magdir/ |
H A D | uf2 | 91 >>28 lelong 0xe48bff57 Raspberry Pi MC: Absolute (unpartitioned) download 92 >>28 lelong 0xe48bff58 Raspberry Pi MC: Data partition download
|
/freebsd/contrib/llvm-project/clang/lib/StaticAnalyzer/Checkers/RetainCountChecker/ |
H A D | RetainCountChecker.cpp | 338 if (const auto *MC = dyn_cast<ObjCMethodCall>(&Call)) { in isReceiverUnconsumedSelf() local 342 return MC->getMethodFamily() == OMF_init && MC->isReceiverSelfOrSuper() && in isReceiverUnconsumedSelf() 368 if (const auto *MC = dyn_cast<ObjCMethodCall>(&Call)) { in checkPostCall() local 369 if (MC->isInstanceMessage()) { in checkPostCall() 370 SVal ReceiverV = MC->getReceiverSVal(); in checkPostCall()
|