| /openbsd-src/gnu/llvm/clang/lib/CodeGen/ |
| H A 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()
|
| H A D | CodeGenAction.cpp | 129 std::unique_ptr<CodeGenerator> Gen; member in clang::BackendConsumer 164 Gen(CreateLLVMCodeGen(Diags, InFile, std::move(FS), HeaderSearchOpts, in BackendConsumer() 189 Gen(CreateLLVMCodeGen(Diags, "", std::move(FS), HeaderSearchOpts, in BackendConsumer() 196 llvm::Module *getModule() const { return Gen->GetModule(); } in getModule() 198 return std::unique_ptr<llvm::Module>(Gen->ReleaseModule()); in takeModule() 201 CodeGenerator *getCodeGenerator() { return Gen.get(); } in getCodeGenerator() 204 Gen->HandleCXXStaticMemberVarInstantiation(VD); in HandleCXXStaticMemberVarInstantiation() 215 Gen->Initialize(Ctx); in Initialize() 233 Gen->HandleTopLevelDecl(D); in HandleTopLevelDecl() 251 Gen->HandleInlineFunctionDefinition(D); in HandleInlineFunctionDefinition() [all …]
|
| H A D | MacroPPCallbacks.h | 28 CodeGenerator *Gen; variable 90 MacroPPCallbacks(CodeGenerator *Gen, Preprocessor &PP);
|
| H A D | CGNonTrivialStruct.cpp | 819 GenDefaultInitialize Gen(getContext()); in defaultInitNonTrivialCStructVar() local 822 Gen.setCGF(this); in defaultInitNonTrivialCStructVar() 825 Gen.visit(QT, nullptr, CharUnits::Zero(), std::array<Address, 1>({{DstPtr}})); in defaultInitNonTrivialCStructVar() 829 static void callSpecialFunction(G &&Gen, StringRef FuncName, QualType QT, in callSpecialFunction() argument 836 Gen.callFunc(FuncName, QT, Addrs, CGF); in callSpecialFunction() 841 getSpecialFunction(G &&Gen, StringRef FuncName, QualType QT, bool IsVolatile, in getSpecialFunction() argument 847 return Gen.getFunction(FuncName, QT, Alignments, CGM); in getSpecialFunction()
|
| H A D | CGStmtOpenMP.cpp | 6207 auto &&Gen = [&CGF, UE, ExprRValue, XRValExpr, ERValExpr](RValue XRValue) { in emitOMPAtomicUpdateExpr() 6213 XLValue, ExprRValue, BOUE->getOpcode(), IsXLHSInRHSPart, AO, Loc, Gen); in emitOMPAtomicUpdateExpr() 6281 auto &&Gen = [&CGF, &NewVVal, UE, ExprRValue, XRValExpr, ERValExpr, in emitOMPAtomicCaptureExpr() 6290 XLValue, ExprRValue, BOUE->getOpcode(), IsXLHSInRHSPart, AO, Loc, Gen); in emitOMPAtomicCaptureExpr() 6310 auto &&Gen = [&NewVVal, ExprRValue](RValue XRValue) { in emitOMPAtomicCaptureExpr() 6317 Loc, Gen); in emitOMPAtomicCaptureExpr()
|
| /openbsd-src/gnu/llvm/llvm/include/llvm/FuzzMutate/ |
| H A 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()
|
| /openbsd-src/gnu/llvm/clang/lib/Serialization/ |
| H A 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()
|
| /openbsd-src/gnu/llvm/llvm/lib/Target/AMDGPU/ |
| H A D | R600Subtarget.h | 41 Generation Gen = R600; variable 76 return Gen; in getGeneration()
|
| H A D | AMDGPUFeatures.td | 45 SubtargetFeature <FeatureName, "Gen", Subtarget#"::"#Value,
|
| H A D | R600ISelLowering.h | 67 unsigned Gen;
|
| H A D | GCNSubtarget.h | 60 unsigned Gen = INVALID; variable 271 return (Generation)Gen; in getGeneration()
|
| H A D | AMDGPUSubtarget.cpp | 101 if (Gen == AMDGPUSubtarget::INVALID) { in initializeSubtargetDependencies() 102 Gen = TT.getOS() == Triple::AMDHSA ? AMDGPUSubtarget::SEA_ISLANDS in initializeSubtargetDependencies()
|
| H A D | SIInstrInfo.cpp | 8045 SIEncodingFamily Gen = subtargetEncodingFamily(ST); in pseudoToMCOpcode() local 8049 Gen = SIEncodingFamily::GFX9; in pseudoToMCOpcode() 8055 Gen = SIEncodingFamily::GFX80; in pseudoToMCOpcode() 8060 Gen = SIEncodingFamily::SDWA; in pseudoToMCOpcode() 8063 Gen = SIEncodingFamily::SDWA9; in pseudoToMCOpcode() 8066 Gen = SIEncodingFamily::SDWA10; in pseudoToMCOpcode() 8077 int MCOp = AMDGPU::getMCOpcode(Opcode, Gen); in pseudoToMCOpcode()
|
| H A D | R600ISelLowering.cpp | 32 : AMDGPUTargetLowering(TM, STI), Subtarget(&STI), Gen(STI.getGeneration()) { in R600TargetLowering() 712 if (Gen >= AMDGPUSubtarget::R700) in LowerTrig()
|
| /openbsd-src/gnu/llvm/llvm/tools/verify-uselistorder/ |
| H A D | verify-uselistorder.cpp | 386 static void shuffleValueUseLists(Value *V, std::minstd_rand0 &Gen, in shuffleValueUseLists() argument 394 shuffleValueUseLists(Op, Gen, Seen); in shuffleValueUseLists() 409 auto I = Dist(Gen); in shuffleValueUseLists() 517 std::minstd_rand0 Gen(std::minstd_rand0::default_seed + SeedOffset); in shuffleUseLists() local 519 changeUseLists(M, [&](Value *V) { shuffleValueUseLists(V, Gen, Seen); }); in shuffleUseLists()
|
| /openbsd-src/gnu/llvm/llvm/utils/TableGen/ |
| H A D | DAGISelMatcherGen.cpp | 1095 MatcherGen Gen(Pattern, CGP); in ConvertPatternToMatcher() local 1098 if (Gen.EmitMatcherCode(Variant)) in ConvertPatternToMatcher() 1107 Gen.EmitResultCode(); in ConvertPatternToMatcher() 1110 return Gen.GetMatcher(); in ConvertPatternToMatcher()
|
| /openbsd-src/gnu/llvm/clang/include/clang/Tooling/Transformer/ |
| H A D | RewriteRule.h | 246 [Gen = std::move(Metadata)]( in withMetadata() 248 return Gen(R); in withMetadata()
|
| /openbsd-src/gnu/llvm/libcxx/include/ |
| H A D | algorithm | 773 template<input_iterator I, sentinel_for<I> S, weakly_incrementable O, class Gen> 776 uniform_random_bit_generator<remove_reference_t<Gen>> 777 …O sample(I first, S last, O out, iter_difference_t<I> n, Gen&& g); //… 779 template<input_range R, weakly_incrementable O, class Gen> 782 uniform_random_bit_generator<remove_reference_t<Gen>> 783 …O sample(R&& r, O out, range_difference_t<R> n, Gen&& g); //… 785 template<random_access_iterator I, sentinel_for<I> S, class Gen> 787 uniform_random_bit_generator<remove_reference_t<Gen>> 788 …I shuffle(I first, S last, Gen&& g); // … 790 template<random_access_range R, class Gen> [all …]
|
| /openbsd-src/gnu/llvm/llvm/lib/CodeGen/SelectionDAG/ |
| H A D | ScheduleDAGRRList.cpp | 1416 SDNode *Gen = LiveRegGens[CallResource]->getNode(); in DelayForLiveRegsBottomUp() local 1417 while (SDNode *Glued = Gen->getGluedNode()) in DelayForLiveRegsBottomUp() 1418 Gen = Glued; in DelayForLiveRegsBottomUp() 1419 if (!IsChainDependent(Gen, Node, 0, TII) && in DelayForLiveRegsBottomUp()
|
| /openbsd-src/gnu/llvm/llvm/lib/Target/AMDGPU/Utils/ |
| H A D | AMDGPUBaseInfo.h | 517 int getMCOpcode(uint16_t Opcode, unsigned Gen);
|
| H A D | AMDGPUBaseInfo.cpp | 507 int getMCOpcode(uint16_t Opcode, unsigned Gen) { in getMCOpcode() argument 508 return getMCOpcodeGen(Opcode, static_cast<Subtarget>(Gen)); in getMCOpcode()
|
| /openbsd-src/gnu/usr.bin/gcc/gcc/f/ |
| H A D | invoke.texi | 108 * Code Gen Options:: Specifying conventions for function calls, data layout 198 @xref{Code Gen Options,,Options for Code Generation Conventions}. 228 * Code Gen Options:: Specifying conventions for function calls, data layout 1762 @node Code Gen Options 2179 @xref{Code Gen Options,,Options for Code Generation Conventions,
|
| /openbsd-src/gnu/llvm/llvm/lib/Target/PowerPC/ |
| H A D | README.txt | 110 PIC Code Gen IPO optimization:
|
| /openbsd-src/share/misc/ |
| H A D | airport | 433 DGO:Gen Guadalupe Victoria, Durango, Durango, Mexico 969 LET:Gen Av Cobo, Leticia, Colombia
|
| /openbsd-src/sys/dev/usb/ |
| H A D | usbdevs | 2675 product LENOVO TB3DOCKGEN2 0x3082 Thunderbolt 3 Dock Gen 2 2690 product LENOVO USBCDOCKGEN2 0xa387 USB-C Dock Gen 2
|