/netbsd-src/external/apache2/llvm/dist/llvm/lib/CodeGen/ |
H A D | LLVMTargetMachine.cpp | 165 std::unique_ptr<MCAsmBackend> MAB( in createMCStreamer() local 171 std::move(MAB), Options.MCOptions.ShowMCInst); in createMCStreamer() 182 MCAsmBackend *MAB = in createMCStreamer() local 184 if (!MAB) in createMCStreamer() 190 T, Context, std::unique_ptr<MCAsmBackend>(MAB), in createMCStreamer() 191 DwoOut ? MAB->createDwoObjectWriter(Out, *DwoOut) in createMCStreamer() 192 : MAB->createObjectWriter(Out), in createMCStreamer() 260 MCAsmBackend *MAB = in addPassesToEmitMC() local 262 if (!MCE || !MAB) in addPassesToEmitMC() 267 T, *Ctx, std::unique_ptr<MCAsmBackend>(MAB), MAB->createObjectWriter(Out), in addPassesToEmitMC()
|
/netbsd-src/external/apache2/llvm/dist/llvm/lib/Target/AMDGPU/MCTargetDesc/ |
H A D | AMDGPUELFStreamer.cpp | 22 std::unique_ptr<MCAsmBackend> MAB, in AMDGPUELFStreamer() argument 25 : MCELFStreamer(Context, std::move(MAB), std::move(OW), in AMDGPUELFStreamer() 32 const Triple &T, MCContext &Context, std::unique_ptr<MCAsmBackend> MAB, in createAMDGPUELFStreamer() argument 35 return new AMDGPUELFStreamer(T, Context, std::move(MAB), std::move(OW), in createAMDGPUELFStreamer()
|
/netbsd-src/external/apache2/llvm/dist/llvm/lib/Target/PowerPC/MCTargetDesc/ |
H A D | PPCXCOFFStreamer.cpp | 35 std::unique_ptr<MCAsmBackend> MAB, in PPCXCOFFStreamer() argument 38 : MCXCOFFStreamer(Context, std::move(MAB), std::move(OW), in PPCXCOFFStreamer() 73 std::unique_ptr<MCAsmBackend> MAB, in createPPCXCOFFStreamer() argument 76 return new PPCXCOFFStreamer(Context, std::move(MAB), std::move(OW), in createPPCXCOFFStreamer()
|
H A D | PPCELFStreamer.cpp | 41 std::unique_ptr<MCAsmBackend> MAB, in PPCELFStreamer() argument 44 : MCELFStreamer(Context, std::move(MAB), std::move(OW), in PPCELFStreamer() 225 MCContext &Context, std::unique_ptr<MCAsmBackend> MAB, in createPPCELFStreamer() argument 228 return new PPCELFStreamer(Context, std::move(MAB), std::move(OW), in createPPCELFStreamer()
|
H A D | PPCXCOFFStreamer.h | 23 PPCXCOFFStreamer(MCContext &Context, std::unique_ptr<MCAsmBackend> MAB, 34 std::unique_ptr<MCAsmBackend> MAB,
|
H A D | PPCELFStreamer.h | 36 PPCELFStreamer(MCContext &Context, std::unique_ptr<MCAsmBackend> MAB, 56 std::unique_ptr<MCAsmBackend> MAB,
|
H A D | PPCMCTargetDesc.cpp | 118 std::unique_ptr<MCAsmBackend> &&MAB, in createPPCELFStreamer() argument 121 return createPPCELFStreamer(Context, std::move(MAB), std::move(OW), in createPPCELFStreamer() 126 const Triple &T, MCContext &Context, std::unique_ptr<MCAsmBackend> &&MAB, in createPPCXCOFFStreamer() argument 129 return createPPCXCOFFStreamer(Context, std::move(MAB), std::move(OW), in createPPCXCOFFStreamer()
|
/netbsd-src/external/apache2/llvm/dist/llvm/lib/Target/Mips/MCTargetDesc/ |
H A D | MipsELFStreamer.cpp | 26 std::unique_ptr<MCAsmBackend> MAB, in MipsELFStreamer() argument 29 : MCELFStreamer(Context, std::move(MAB), std::move(OW), in MipsELFStreamer() 116 MCContext &Context, std::unique_ptr<MCAsmBackend> MAB, in createMipsELFStreamer() argument 119 return new MipsELFStreamer(Context, std::move(MAB), std::move(OW), in createMipsELFStreamer()
|
H A D | MipsMCTargetDesc.cpp | 104 std::unique_ptr<MCAsmBackend> &&MAB, in createMCStreamer() argument 110 S = createMipsELFStreamer(Context, std::move(MAB), std::move(OW), in createMCStreamer() 113 S = createMipsNaClELFStreamer(Context, std::move(MAB), std::move(OW), in createMCStreamer()
|
H A D | MipsELFStreamer.h | 36 MipsELFStreamer(MCContext &Context, std::unique_ptr<MCAsmBackend> MAB, 76 std::unique_ptr<MCAsmBackend> MAB,
|
/netbsd-src/external/apache2/llvm/dist/llvm/lib/MC/ |
H A D | MCXCOFFStreamer.cpp | 26 std::unique_ptr<MCAsmBackend> MAB, in MCXCOFFStreamer() argument 29 : MCObjectStreamer(Context, std::move(MAB), std::move(OW), in MCXCOFFStreamer() 120 std::unique_ptr<MCAsmBackend> &&MAB, in createXCOFFStreamer() argument 124 MCXCOFFStreamer *S = new MCXCOFFStreamer(Context, std::move(MAB), in createXCOFFStreamer()
|
/netbsd-src/external/apache2/llvm/dist/llvm/lib/Target/ARM/MCTargetDesc/ |
H A D | ARMWinCOFFObjectWriter.cpp | 38 const MCAsmBackend &MAB) const override; 49 const MCAsmBackend &MAB) const { in getRelocType() 65 const MCFixupKindInfo &Info = MAB.getFixupKindInfo(Fixup.getKind()); in getRelocType()
|
H A D | ARMWinCOFFStreamer.cpp | 41 MCContext &Context, std::unique_ptr<MCAsmBackend> &&MAB, in createARMWinCOFFStreamer() argument 45 auto *S = new ARMWinCOFFStreamer(Context, std::move(MAB), std::move(Emitter), in createARMWinCOFFStreamer()
|
/netbsd-src/external/apache2/llvm/dist/llvm/tools/llvm-mc-assemble-fuzzer/ |
H A D | llvm-mc-assemble-fuzzer.cpp | 196 std::unique_ptr<MCAsmBackend> MAB = nullptr; in AssembleOneInput() local 207 std::move(MAB), ShowInst)); in AssembleOneInput() 231 MCAsmBackend *MAB = TheTarget->createMCAsmBackend(*STI, *MRI, MCOptions); in AssembleOneInput() local 233 TheTriple, Ctx, std::unique_ptr<MCAsmBackend>(MAB), in AssembleOneInput() 234 MAB->createObjectWriter(*OS), std::unique_ptr<MCCodeEmitter>(CE), *STI, in AssembleOneInput()
|
/netbsd-src/external/apache2/llvm/dist/llvm/lib/Target/AArch64/MCTargetDesc/ |
H A D | AArch64WinCOFFObjectWriter.cpp | 39 const MCAsmBackend &MAB) const override; 48 bool IsCrossSection, const MCAsmBackend &MAB) const { in getRelocType() 84 const MCFixupKindInfo &Info = MAB.getFixupKindInfo(Fixup.getKind()); in getRelocType()
|
/netbsd-src/external/apache2/llvm/dist/llvm/lib/MCA/ |
H A D | CodeEmitter.cpp | 27 if (MAB.mayNeedRelaxation(Inst, STI)) in getOrCreateEncodingInfo() 28 MAB.relaxInstruction(Relaxed, STI); in getOrCreateEncodingInfo()
|
/netbsd-src/external/apache2/llvm/dist/llvm/include/llvm/MCA/ |
H A D | CodeEmitter.h | 37 const MCAsmBackend &MAB; variable 56 : STI(ST), MAB(AB), MCE(CE), VecOS(Code), Sequence(S), in CodeEmitter()
|
/netbsd-src/external/apache2/llvm/dist/llvm/lib/Target/AVR/MCTargetDesc/ |
H A D | AVRMCELFStreamer.cpp | 45 std::unique_ptr<MCAsmBackend> MAB, in createAVRELFStreamer() argument 48 return new AVRMCELFStreamer(Context, std::move(MAB), std::move(OW), in createAVRELFStreamer()
|
H A D | AVRMCTargetDesc.cpp | 72 std::unique_ptr<MCAsmBackend> &&MAB, in createMCStreamer() argument 76 return createELFStreamer(Context, std::move(MAB), std::move(OW), in createMCStreamer()
|
/netbsd-src/external/apache2/llvm/dist/llvm/tools/llvm-ml/ |
H A D | llvm-ml.cpp | 343 std::unique_ptr<MCAsmBackend> MAB( in main() local 348 /*useDwarfDirectory*/ true, IP, std::move(CE), std::move(MAB), in main() 360 MCAsmBackend *MAB = TheTarget->createMCAsmBackend(*STI, *MRI, MCOptions); in main() local 362 TheTriple, Ctx, std::unique_ptr<MCAsmBackend>(MAB), in main() 363 MAB->createObjectWriter(*OS), std::unique_ptr<MCCodeEmitter>(CE), *STI, in main()
|
/netbsd-src/external/apache2/llvm/dist/clang/tools/driver/ |
H A D | cc1as_main.cpp | 460 std::unique_ptr<MCAsmBackend> MAB( in ExecuteAssemblerImpl() local 466 /*useDwarfDirectory*/ true, IP, std::move(CE), std::move(MAB), in ExecuteAssemblerImpl() 480 std::unique_ptr<MCAsmBackend> MAB( in ExecuteAssemblerImpl() local 482 assert(MAB && "Unable to create asm backend!"); in ExecuteAssemblerImpl() 485 DwoOS ? MAB->createDwoObjectWriter(*Out, *DwoOS) in ExecuteAssemblerImpl() 486 : MAB->createObjectWriter(*Out); in ExecuteAssemblerImpl() 490 T, Ctx, std::move(MAB), std::move(OW), std::move(CE), *STI, in ExecuteAssemblerImpl()
|
/netbsd-src/external/apache2/llvm/dist/llvm/tools/llvm-mc/ |
H A D | llvm-mc.cpp | 507 std::unique_ptr<MCAsmBackend> MAB( in main() local 513 std::move(CE), std::move(MAB), ShowInst)); in main() 526 MCAsmBackend *MAB = TheTarget->createMCAsmBackend(*STI, *MRI, MCOptions); in main() local 528 TheTriple, Ctx, std::unique_ptr<MCAsmBackend>(MAB), in main() 529 DwoOut ? MAB->createDwoObjectWriter(*OS, DwoOut->os()) in main() 530 : MAB->createObjectWriter(*OS), in main()
|
/netbsd-src/external/apache2/llvm/dist/llvm/lib/Target/X86/MCTargetDesc/ |
H A D | X86WinCOFFObjectWriter.cpp | 31 const MCAsmBackend &MAB) const override; 44 const MCAsmBackend &MAB) const { in getRelocType()
|
/netbsd-src/external/apache2/llvm/dist/llvm/lib/Target/BPF/MCTargetDesc/ |
H A D | BPFMCTargetDesc.cpp | 53 std::unique_ptr<MCAsmBackend> &&MAB, in createBPFMCStreamer() argument 57 return createELFStreamer(Ctx, std::move(MAB), std::move(OW), std::move(Emitter), in createBPFMCStreamer()
|
/netbsd-src/external/apache2/llvm/dist/llvm/lib/Target/Lanai/MCTargetDesc/ |
H A D | LanaiMCTargetDesc.cpp | 63 std::unique_ptr<MCAsmBackend> &&MAB, in createMCStreamer() argument 70 return createELFStreamer(Context, std::move(MAB), std::move(OW), in createMCStreamer()
|