| /freebsd-12-stable/contrib/llvm-project/clang/lib/CodeGen/ |
| D | MacroPPCallbacks.cpp | 61 MacroPPCallbacks::MacroPPCallbacks(CodeGenerator *Gen, Preprocessor &PP) in MacroPPCallbacks() argument 62 : Gen(Gen), PP(PP), Status(NoScope) {} in MacroPPCallbacks() 131 Scopes.push_back(Gen->getCGDebugInfo()->CreateTempMacroFile(getCurrentScope(), in FileEntered() 186 Gen->getCGDebugInfo()->CreateMacro(getCurrentScope(), in MacroDefined() 196 Gen->getCGDebugInfo()->CreateMacro(getCurrentScope(), in MacroUndefined()
|
| D | CodeGenAction.cpp | 124 std::unique_ptr<CodeGenerator> Gen; member in clang::BackendConsumer 147 Gen(CreateLLVMCodeGen(Diags, InFile, HeaderSearchOpts, PPOpts, in BackendConsumer() 171 Gen(CreateLLVMCodeGen(Diags, "", HeaderSearchOpts, PPOpts, in BackendConsumer() 178 llvm::Module *getModule() const { return Gen->GetModule(); } in getModule() 180 return std::unique_ptr<llvm::Module>(Gen->ReleaseModule()); in takeModule() 183 CodeGenerator *getCodeGenerator() { return Gen.get(); } in getCodeGenerator() 186 Gen->HandleCXXStaticMemberVarInstantiation(VD); in HandleCXXStaticMemberVarInstantiation() 197 Gen->Initialize(Ctx); in Initialize() 215 Gen->HandleTopLevelDecl(D); in HandleTopLevelDecl() 233 Gen->HandleInlineFunctionDefinition(D); in HandleInlineFunctionDefinition() [all …]
|
| D | MacroPPCallbacks.h | 29 CodeGenerator *Gen; variable 91 MacroPPCallbacks(CodeGenerator *Gen, Preprocessor &PP);
|
| D | CGNonTrivialStruct.cpp | 818 GenDefaultInitialize Gen(getContext()); in defaultInitNonTrivialCStructVar() local 821 Gen.setCGF(this); in defaultInitNonTrivialCStructVar() 824 Gen.visit(QT, nullptr, CharUnits::Zero(), std::array<Address, 1>({{DstPtr}})); in defaultInitNonTrivialCStructVar() 828 static void callSpecialFunction(G &&Gen, StringRef FuncName, QualType QT, in callSpecialFunction() argument 835 Gen.callFunc(FuncName, QT, Addrs, CGF); in callSpecialFunction() 840 getSpecialFunction(G &&Gen, StringRef FuncName, QualType QT, bool IsVolatile, in getSpecialFunction() argument 846 return Gen.getFunction(FuncName, QT, Alignments, CGM); in getSpecialFunction()
|
| D | CGStmtOpenMP.cpp | 5614 auto &&Gen = [&CGF, UE, ExprRValue, XRValExpr, ERValExpr](RValue XRValue) { in emitOMPAtomicUpdateExpr() 5620 XLValue, ExprRValue, BOUE->getOpcode(), IsXLHSInRHSPart, AO, Loc, Gen); in emitOMPAtomicUpdateExpr() 5688 auto &&Gen = [&CGF, &NewVVal, UE, ExprRValue, XRValExpr, ERValExpr, in emitOMPAtomicCaptureExpr() 5697 XLValue, ExprRValue, BOUE->getOpcode(), IsXLHSInRHSPart, AO, Loc, Gen); in emitOMPAtomicCaptureExpr() 5717 auto &&Gen = [&NewVVal, ExprRValue](RValue XRValue) { in emitOMPAtomicCaptureExpr() 5724 Loc, Gen); in emitOMPAtomicCaptureExpr()
|
| /freebsd-12-stable/contrib/llvm-project/llvm/include/llvm/FuzzMutate/ |
| D | Random.h | 21 template <typename T, typename GenT> T uniform(GenT &Gen, T Min, T Max) { in uniform() argument 22 return std::uniform_int_distribution<T>(Min, Max)(Gen); in uniform() 26 template <typename T, typename GenT> T uniform(GenT &Gen) { in uniform() argument 27 return uniform<T>(Gen, std::numeric_limits<T>::min(), in uniform()
|
| /freebsd-12-stable/contrib/llvm-project/clang/lib/Serialization/ |
| D | MultiOnDiskHashTable.h | 296 Generator Gen; variable 299 MultiOnDiskHashTableGenerator() : Gen() {} in MultiOnDiskHashTableGenerator() 303 Gen.insert(Key, Data, Info); in insert() 327 if (!Gen.contains(KV.first, Info)) in emit() 328 Gen.insert(KV.first, Info.ImportData(KV.second), Info); in emit() 336 uint32_t BucketOffset = Gen.Emit(OutStream, Info); in emit()
|
| /freebsd-12-stable/contrib/llvm-project/llvm/lib/Target/AMDGPU/ |
| D | R600Subtarget.h | 48 Generation Gen; variable 83 return Gen; in getGeneration()
|
| D | AMDGPUFeatures.td | 46 SubtargetFeature <FeatureName, "Gen", Subtarget#"::"#Value,
|
| D | AMDGPUSubtarget.cpp | 118 if (Gen == AMDGPUSubtarget::INVALID) { in initializeSubtargetDependencies() 119 Gen = TT.getOS() == Triple::AMDHSA ? AMDGPUSubtarget::SEA_ISLANDS in initializeSubtargetDependencies() 206 Gen(INVALID), in GCNSubtarget() 737 Gen(R600), in R600Subtarget()
|
| D | R600ISelLowering.h | 67 unsigned Gen;
|
| D | GCNSubtarget.h | 68 unsigned Gen; variable 272 return (Generation)Gen; in getGeneration()
|
| D | SIInstrInfo.cpp | 7589 SIEncodingFamily Gen = subtargetEncodingFamily(ST); in pseudoToMCOpcode() local 7593 Gen = SIEncodingFamily::GFX9; in pseudoToMCOpcode() 7599 Gen = SIEncodingFamily::GFX80; in pseudoToMCOpcode() 7604 Gen = SIEncodingFamily::SDWA; in pseudoToMCOpcode() 7607 Gen = SIEncodingFamily::SDWA9; in pseudoToMCOpcode() 7610 Gen = SIEncodingFamily::SDWA10; in pseudoToMCOpcode() 7615 int MCOp = AMDGPU::getMCOpcode(Opcode, Gen); in pseudoToMCOpcode()
|
| D | R600ISelLowering.cpp | 30 : AMDGPUTargetLowering(TM, STI), Subtarget(&STI), Gen(STI.getGeneration()) { in R600TargetLowering() 761 if (Gen >= AMDGPUSubtarget::R700) in LowerTrig()
|
| /freebsd-12-stable/contrib/llvm-project/clang/include/clang/Tooling/Transformer/ |
| D | RewriteRule.h | 239 [Gen = std::move(Metadata)]( in withMetadata() 241 return Gen(R); in withMetadata()
|
| /freebsd-12-stable/contrib/llvm-project/llvm/utils/TableGen/ |
| D | DAGISelMatcherGen.cpp | 1094 MatcherGen Gen(Pattern, CGP); in ConvertPatternToMatcher() local 1097 if (Gen.EmitMatcherCode(Variant)) in ConvertPatternToMatcher() 1106 Gen.EmitResultCode(); in ConvertPatternToMatcher() 1109 return Gen.GetMatcher(); in ConvertPatternToMatcher()
|
| /freebsd-12-stable/share/misc/ |
| D | pci_vendors | 8480 8603 PEX 8603 3-lane, 3-Port PCI Express Gen 2 (5.0 GT/s) Switch 8481 8604 PEX 8604 4-lane, 4-Port PCI Express Gen 2 (5.0 GT/s) Switch 8483 8606 PEX 8606 6 Lane, 6 Port PCI Express Gen 2 (5.0 GT/s) Switch 8484 8608 PEX 8608 8-lane, 8-Port PCI Express Gen 2 (5.0 GT/s) Switch 8485 8609 PEX 8609 8-lane, 8-Port PCI Express Gen 2 (5.0 GT/s) Switch with DMA 8486 8612 PEX 8612 12-lane, 4-Port PCI Express Gen 2 (5.0 GT/s) Switch 8487 8613 PEX 8613 12-lane, 3-Port PCI Express Gen 2 (5.0 GT/s) Switch 8488 8614 PEX 8614 12-lane, 12-Port PCI Express Gen 2 (5.0 GT/s) Switch 8489 8615 PEX 8615 12-lane, 12-Port PCI Express Gen 2 (5.0 GT/s) Switch with DMA 8490 8616 PEX 8616 16-lane, 4-Port PCI Express Gen 2 (5.0 GT/s) Switch [all …]
|
| /freebsd-12-stable/contrib/llvm-project/llvm/lib/CodeGen/SelectionDAG/ |
| D | ScheduleDAGRRList.cpp | 1399 SDNode *Gen = LiveRegGens[CallResource]->getNode(); in DelayForLiveRegsBottomUp() local 1400 while (SDNode *Glued = Gen->getGluedNode()) in DelayForLiveRegsBottomUp() 1401 Gen = Glued; in DelayForLiveRegsBottomUp() 1402 if (!IsChainDependent(Gen, Node, 0, TII) && in DelayForLiveRegsBottomUp()
|
| /freebsd-12-stable/contrib/llvm-project/llvm/lib/Target/AMDGPU/Utils/ |
| D | AMDGPUBaseInfo.h | 427 int getMCOpcode(uint16_t Opcode, unsigned Gen);
|
| D | AMDGPUBaseInfo.cpp | 317 int getMCOpcode(uint16_t Opcode, unsigned Gen) { in getMCOpcode() argument 318 return getMCOpcodeGen(Opcode, static_cast<Subtarget>(Gen)); in getMCOpcode()
|
| /freebsd-12-stable/lib/clang/libllvm/ |
| D | Makefile | 1888 ${arch:T}Gen${hdr:H}.inc: ${LLVM_SRCS}/lib/Target/${arch:H}/${arch:T}.td
|
| /freebsd-12-stable/contrib/libstdc++/ |
| D | ChangeLog-2006 | 4001 (mersenne_twister<>::seed(Gen&, false_type)): Adjust to use mod_w. 4014 (mersenne_twister<>::seed(Gen&, false_type): Use the latter.
|
| D | ChangeLog-2000 | 5158 (long long, unsigned long long): Gen limits if _GLIBC_USE_LONG_LONG.
|
| /freebsd-12-stable/contrib/llvm-project/clang/lib/Sema/ |
| D | SemaOpenMP.cpp | 16339 SmallVectorImpl<U> &Lookups, const llvm::function_ref<T(ValueDecl *)> Gen) { in filterLookupForUDReductionAndMapper() argument 16342 if (T Res = Gen(cast<ValueDecl>(D))) in filterLookupForUDReductionAndMapper()
|
| /freebsd-12-stable/contrib/tzdata/ |
| D | europe | 3455 # the Canton de Genève (Geneva, Genf). Between 1848 and 1894 Geneva did not
|