/openbsd/gnu/llvm/llvm/include/llvm/IR/ |
H A D | InstIterator.h | 131 inline inst_iterator inst_begin(Function *F) { return inst_iterator(*F); } in inst_begin() 133 inline inst_range instructions(Function *F) { in instructions() 136 inline const_inst_iterator inst_begin(const Function *F) { in inst_begin() 139 inline const_inst_iterator inst_end(const Function *F) { in inst_end() 142 inline const_inst_range instructions(const Function *F) { in instructions() 145 inline inst_iterator inst_begin(Function &F) { return inst_iterator(F); } in inst_begin() 146 inline inst_iterator inst_end(Function &F) { return inst_iterator(F, true); } in inst_end() 147 inline inst_range instructions(Function &F) { in instructions() 150 inline const_inst_iterator inst_begin(const Function &F) { in inst_begin() 153 inline const_inst_iterator inst_end(const Function &F) { in inst_end() [all …]
|
/openbsd/gnu/llvm/llvm/include/llvm/Analysis/ |
H A D | TargetLibraryInfo.h | 64 void setState(LibFunc F, AvailabilityState State) { in setState() 68 AvailabilityState getState(LibFunc F) const { in getState() 126 void setUnavailable(LibFunc F) { in setUnavailable() 131 void setAvailable(LibFunc F) { in setAvailable() 137 void setAvailableWithName(LibFunc F, StringRef Name) { in setAvailableWithName() 329 void setUnavailable(LibFunc F) LLVM_ATTRIBUTE_UNUSED { in setUnavailable() 340 bool has(LibFunc F) const { in has() 346 bool isFunctionVectorizable(StringRef F) const { in isFunctionVectorizable() 355 bool hasOptimizedCodeGen(LibFunc F) const { in hasOptimizedCodeGen() 386 StringRef getName(LibFunc F) const { in getName() [all …]
|
/openbsd/gnu/llvm/llvm/lib/Transforms/IPO/ |
H A D | SCCP.cpp | 49 static void findReturnsToZap(Function &F, in findReturnsToZap() 278 Function *F = I.first; in runIPSCCP() local 322 for (auto *F : Solver.getMRVFunctionsTracked()) { in runIPSCCP() local 333 Function *F = RI->getParent()->getParent(); in runIPSCCP() local 383 auto GetTLI = [&FAM](Function &F) -> const TargetLibraryInfo & { in run() 386 auto GetTTI = [&FAM](Function &F) -> TargetTransformInfo & { in run() 389 auto GetAC = [&FAM](Function &F) -> AssumptionCache & { in run() 430 auto GetTLI = [this](Function &F) -> const TargetLibraryInfo & { in runOnModule() 433 auto GetTTI = [this](Function &F) -> TargetTransformInfo & { in runOnModule() 436 auto GetAC = [this](Function &F) -> AssumptionCache & { in runOnModule() [all …]
|
H A D | MergeFunctions.cpp | 175 mutable AssertingVH<Function> F; member in __anon6e32cd5b0111::FunctionNode 180 FunctionNode(Function *F) in FunctionNode() 407 static bool isEligibleForMerging(Function &F) { in isEligibleForMerging() 454 Function *F = cast<Function>(I); in runOnModule() local 656 static bool canCreateThunkFor(Function *F) { in canCreateThunkFor() 680 void MergeFunctions::writeThunk(Function *F, Function *G) { in writeThunk() 760 static bool canCreateAliasFor(Function *F) { in canCreateAliasFor() 771 void MergeFunctions::writeAlias(Function *F, Function *G) { in writeAlias() 884 Function *F = FN.getFunc(); in replaceFunctionInTree() local 937 Function *F = OldF.getFunc(); in insert() local [all …]
|
H A D | LoopExtractor.cpp | 117 auto LookupDomTree = [this](Function &F) -> DominatorTree & { in runOnModule() 120 auto LookupLoopInfo = [this, &Changed](Function &F) -> LoopInfo & { in runOnModule() 123 auto LookupACT = [this](Function &F) -> AssumptionCache * { in runOnModule() 146 Function &F = *I; in runOnModule() local 161 bool LoopExtractor::runOnFunction(Function &F) { in runOnFunction() 263 auto LookupDomTree = [&FAM](Function &F) -> DominatorTree & { in run() 266 auto LookupLoopInfo = [&FAM](Function &F) -> LoopInfo & { in run() 269 auto LookupAssumptionCache = [&FAM](Function &F) -> AssumptionCache * { in run()
|
/openbsd/gnu/llvm/llvm/examples/IRTransforms/ |
H A D | SimplifyCFG.cpp | 61 static bool removeDeadBlocks_v1(Function &F) { in removeDeadBlocks_v1() 100 static bool removeDeadBlocks_v2(Function &F, DominatorTree &DT) { in removeDeadBlocks_v2() 137 static bool eliminateCondBranches_v1(Function &F) { in eliminateCondBranches_v1() 171 static bool eliminateCondBranches_v2(Function &F, DominatorTree &DT) { in eliminateCondBranches_v2() 217 static bool eliminateCondBranches_v3(Function &F, DominatorTree &DT) { in eliminateCondBranches_v3() 264 static bool mergeIntoSinglePredecessor_v1(Function &F) { in mergeIntoSinglePredecessor_v1() 304 static bool mergeIntoSinglePredecessor_v2(Function &F, DominatorTree &DT) { in mergeIntoSinglePredecessor_v2() 354 static bool doSimplify_v1(Function &F) { in doSimplify_v1() 359 static bool doSimplify_v2(Function &F, DominatorTree &DT) { in doSimplify_v2() 364 static bool doSimplify_v3(Function &F, DominatorTree &DT) { in doSimplify_v3()
|
/openbsd/gnu/llvm/llvm/lib/Transforms/Utils/ |
H A D | BuildLibCalls.cpp | 148 static bool setRetNoUndef(Function &F) { in setRetNoUndef() 207 static bool setWillReturn(Function &F) { in setWillReturn() 255 Function *F = M->getFunction(Name); in inferNonMandatoryLibFuncAttrs() local 1452 if (const Function *F = in emitLibCall() local 1537 if (const Function *F = in emitMemCpyChk() local 1712 if (const Function *F = in emitUnaryFloatFnCallHelper() local 1762 if (const Function *F = in emitBinaryFloatFnCallHelper() local 1813 if (const Function *F = in emitPutChar() local 1831 if (const Function *F = in emitPutS() local 1914 if (const Function *F = in emitMalloc() local [all …]
|
H A D | SCCPSolver.cpp | 100 Function *F = CB->getCalledFunction(); in tryToReplaceWithConstant() local 575 const LoopInfo &getLoopInfo(Function &F) { in getLoopInfo() 582 DomTreeUpdater getDTU(Function &F) { in getDTU() 601 void addTrackedFunction(Function *F) { in addTrackedFunction() 616 bool mustPreserveReturn(Function *F) { in mustPreserveReturn() 624 bool isArgumentTrackedFunction(Function *F) { in isArgumentTrackedFunction() 694 void markFunctionUnreachable(Function *F) { in markFunctionUnreachable() 1045 Function *F = I.getParent()->getParent(); in visitReturnInst() local 1467 Function *F = CB.getCalledFunction(); in handleCallOverdefined() local 1510 Function *F = CB.getCalledFunction(); in handleCallArguments() local [all …]
|
H A D | UnifyFunctionExitNodes.cpp | 48 bool unifyUnreachableBlocks(Function &F) { in unifyUnreachableBlocks() 70 bool unifyReturnBlocks(Function &F) { in unifyReturnBlocks() 116 bool UnifyFunctionExitNodesLegacyPass::runOnFunction(Function &F) { in runOnFunction() 123 PreservedAnalyses UnifyFunctionExitNodesPass::run(Function &F, in run()
|
/openbsd/gnu/usr.bin/gcc/gcc/testsuite/g++.old-deja/g++.other/ |
H A D | lookup16.C | 14 struct F { struct 21 struct F : C::Parent::F { struct 22 typedef C::Parent::F Parent; 28 struct F : D::Parent::F { // finds the wrong Parent struct 29 typedef D::Parent::F Parent;
|
/openbsd/gnu/usr.bin/gcc/gcc/testsuite/g++.dg/opt/ |
H A D | inline1.C | 27 struct F : public E in bar() struct 29 F () in bar() function 34 D x, y; in bar()
|
H A D | const1.C | 47 template <class T> struct F : public A struct 51 F () { f = new C<T>; f->next = f->prev = f; f0 = 0; } in F() function 52 F (const F<T>& x) : A () in F() function 60 ~F () in ~F() argument 86 F<T> *g; argument
|
H A D | cleanup1.C | 62 template <class T> struct F : public A struct 64 F () { f = new D<T>; f->next = f->prev = f; f0 = 0; } in F() function 65 ~F () {} in ~F() argument 69 F (const F<T>& x) : A () in F() argument 95 void g3 () { if (g->a > 1) { g->a2 (); g = new F<T> (*g); } } in g3() argument
|
/openbsd/gnu/llvm/llvm/lib/Target/Hexagon/MCTargetDesc/ |
H A D | HexagonMCInstrInfo.cpp | 243 uint64_t F = HexagonMCInstrInfo::getDesc(MCII, MCI).TSFlags; in getMemAccessSize() local 250 const uint64_t F = HexagonMCInstrInfo::getDesc(MCII, MCI).TSFlags; in getAddrMode() local 318 const uint64_t F = HexagonMCInstrInfo::getDesc(MCII, MCI).TSFlags; in getExtendableOp() local 336 const uint64_t F = HexagonMCInstrInfo::getDesc(MCII, MCI).TSFlags; in getExtentAlignment() local 342 const uint64_t F = HexagonMCInstrInfo::getDesc(MCII, MCI).TSFlags; in getExtentBits() local 348 const uint64_t F = HexagonMCInstrInfo::getDesc(MCII, MCI).TSFlags; in isExtentSigned() local 381 const uint64_t F = HexagonMCInstrInfo::getDesc(MCII, MCI).TSFlags; in getNewValueOp() local 406 const uint64_t F = HexagonMCInstrInfo::getDesc(MCII, MCI).TSFlags; in getNewValueOp2() local 425 const uint64_t F = MCII.get(MCI.getOpcode()).TSFlags; in getType() local 515 const uint64_t F = HexagonMCInstrInfo::getDesc(MCII, MCI).TSFlags; in hasNewValue() local [all …]
|
/openbsd/gnu/llvm/llvm/lib/Target/DirectX/DXILWriter/ |
H A D | DXILValueEnumerator.cpp | 125 for (const Function &F : M) { in orderModule() local 140 for (const Function &F : M) { in orderModule() local 168 for (const Function &F : M) in orderModule() local 178 for (const Function &F : M) { in orderModule() local 339 for (const Function &F : M) in predictUseListOrder() local 352 for (const Function &F : M) { in predictUseListOrder() local 372 for (const Function &F : M) { in ValueEnumerator() local 411 for (const Function &F : M) in ValueEnumerator() local 438 for (const Function &F : M) { in ValueEnumerator() local 746 unsigned F, const DIArgList *ArgList) { in EnumerateFunctionLocalListMetadata() [all …]
|
/openbsd/gnu/llvm/llvm/lib/Target/Mips/ |
H A D | Mips16HardFloat.cpp | 107 static FPParamVariant whichFPParamVariantNeeded(Function &F) { in whichFPParamVariantNeeded() 157 static bool needsFPStubFromParams(Function &F) { in needsFPStubFromParams() 171 static bool needsFPReturnHelper(Function &F) { in needsFPReturnHelper() 181 static bool needsFPHelperFromSig(Function &F) { in needsFPHelperFromSig() 257 static void assureFPCallStub(Function &F, Module *M, in assureFPCallStub() 371 static bool isIntrinsicInline(Function *F) { in isIntrinsicInline() 378 static bool fixupFPReturnAndCall(Function &F, Module *M, in fixupFPReturnAndCall() 416 FunctionCallee F = (M->getOrInsertFunction(Name, A, MyVoid, T)); in fixupFPReturnAndCall() local 445 static void createFPFnStub(Function *F, Module *M, FPParamVariant PV, in createFPFnStub() 483 static void removeUseSoftFloat(Function &F) { in removeUseSoftFloat() [all …]
|
/openbsd/gnu/llvm/llvm/include/llvm/MC/ |
H A D | MCFragment.h | 140 static bool classof(const MCFragment *F) { in classof() 231 static bool classof(const MCFragment *F) { in classof() 246 static bool classof(const MCFragment *F) { in classof() 262 static bool classof(const MCFragment *F) { in classof() 289 static bool classof(const MCFragment *F) { in classof() 338 static bool classof(const MCFragment *F) { in classof() 365 static bool classof(const MCFragment *F) { in classof() 395 static bool classof(const MCFragment *F) { in classof() 422 static bool classof(const MCFragment *F) { in classof() 451 static bool classof(const MCFragment *F) { in classof() [all …]
|
/openbsd/gnu/llvm/clang/lib/CodeGen/ |
H A D | CGBuiltin.cpp | 537 Function *F; in emitCallMaybeConstrainedFPBuiltin() local 608 Function *F = in emitMaybeConstrainedFPToIntRoundBuiltin() local 819 Function *F = in emitBuiltinObjectSize() local 2921 Function *F = in EmitBuiltinExpr() local 3746 Function *F = in EmitBuiltinExpr() local 7795 Function *F; in EmitARMBuiltinExpr() local 7829 Function *F; in EmitARMBuiltinExpr() local 7866 Function *F; in EmitARMBuiltinExpr() local 9603 Function *F = in EmitAArch64SVEBuiltinExpr() local 14599 Function *F; in EmitX86BuiltinExpr() local [all …]
|
/openbsd/gnu/llvm/llvm/lib/Target/AMDGPU/ |
H A D | AMDGPUPropagateAttributes.cpp | 69 explicit FnProperties(const TargetMachine &TM, const Function &F) { in FnProperties() 211 for (auto &F : M.functions()) in process() local 218 bool AMDGPUPropagateAttributes::process(Function &F) { in process() 235 for (auto &F : M.functions()) { in process() local 313 AMDGPUPropagateAttributes::cloneWithProperties(Function &F, in cloneWithProperties() 335 void AMDGPUPropagateAttributes::setFeatures(Function &F, in setFeatures() 348 Function &F, const ArrayRef<std::optional<Attribute>> NewAttrs) { in setAttributes() 373 bool AMDGPUPropagateAttributesEarly::runOnFunction(Function &F) { in runOnFunction() 411 AMDGPUPropagateAttributesEarlyPass::run(Function &F, in run()
|
/openbsd/gnu/llvm/llvm/lib/Bitcode/Writer/ |
H A D | ValueEnumerator.cpp | 116 for (const Function &F : reverse(M)) in orderModule() local 125 for (const Function &F : M) { in orderModule() local 263 for (const Function &F : llvm::reverse(M)) { in predictUseListOrder() local 297 for (const Function &F : M) in predictUseListOrder() local 310 for (const Function &F : M) { in predictUseListOrder() local 335 for (const Function & F : M) { in ValueEnumerator() local 373 for (const Function &F : M) in ValueEnumerator() local 400 for (const Function &F : M) { in ValueEnumerator() local 721 unsigned F, const LocalAsMetadata *Local) { in EnumerateFunctionLocalMetadata() 741 unsigned F, const DIArgList *ArgList) { in EnumerateFunctionLocalListMetadata() [all …]
|
/openbsd/gnu/llvm/llvm/lib/Analysis/ |
H A D | RegionInfo.cpp | 79 bool RegionInfo::invalidate(Function &F, const PreservedAnalyses &PA, in invalidate() 96 void RegionInfo::recalculate(Function &F, DominatorTree *DT_, in recalculate() 124 bool RegionInfoPass::runOnFunction(Function &F) { in runOnFunction() 188 RegionInfo RegionInfoAnalysis::run(Function &F, FunctionAnalysisManager &AM) { in run() 201 PreservedAnalyses RegionInfoPrinterPass::run(Function &F, in run() 209 PreservedAnalyses RegionInfoVerifierPass::run(Function &F, in run()
|
/openbsd/gnu/llvm/llvm/lib/Target/NVPTX/ |
H A D | NVPTXUtilities.cpp | 253 bool getMaxNTIDx(const Function &F, unsigned &x) { in getMaxNTIDx() 257 bool getMaxNTIDy(const Function &F, unsigned &y) { in getMaxNTIDy() 261 bool getMaxNTIDz(const Function &F, unsigned &z) { in getMaxNTIDz() 265 bool getReqNTIDx(const Function &F, unsigned &x) { in getReqNTIDx() 269 bool getReqNTIDy(const Function &F, unsigned &y) { in getReqNTIDy() 273 bool getReqNTIDz(const Function &F, unsigned &z) { in getReqNTIDz() 277 bool getMinCTASm(const Function &F, unsigned &x) { in getMinCTASm() 281 bool getMaxNReg(const Function &F, unsigned &x) { in getMaxNReg() 285 bool isKernelFunction(const Function &F) { in isKernelFunction() 295 bool getAlign(const Function &F, unsigned index, unsigned &align) { in getAlign() [all …]
|
/openbsd/gnu/llvm/llvm/include/llvm/Support/ |
H A D | ThreadPool.h | 66 auto async(Function &&F, Args &&...ArgList) { in async() 74 auto async(ThreadPoolTaskGroup &Group, Function &&F, Args &&...ArgList) { in async() 124 auto F = Promise->get_future(); in createTaskAndFuture() local 133 auto F = Promise->get_future(); in createTaskAndFuture() local 235 inline auto async(Function &&F, Args &&...ArgList) { in async()
|
/openbsd/gnu/usr.bin/gcc/gcc/testsuite/g++.dg/other/ |
H A D | offsetof1.C | 8 struct F struct 14 static int ary[((__SIZE_TYPE__)&((struct F *)0)->j)]; argument
|
/openbsd/gnu/usr.bin/gcc/gcc/testsuite/g++.old-deja/g++.jason/ |
H A D | bool2.C | 3 struct F { struct 10 F f = { true, true }; in main() argument
|