/third_party/boost/boost/python/object/ |
D | py_function.hpp | 29 template <class Caller> 32 caller_py_function_impl(Caller const& caller) in caller_py_function_impl() 52 Caller m_caller; 55 template <class Caller, class Sig> 58 signature_py_function_impl(Caller const& caller) in signature_py_function_impl() 80 Caller m_caller; 83 template <class Caller, class Sig> 86 full_py_function_impl(Caller const& caller, unsigned min_arity, unsigned max_arity) in full_py_function_impl() 115 Caller m_caller; 122 template <class Caller> [all …]
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Transforms/IPO/ |
D | Inliner.cpp | 162 Function *Caller, InlineFunctionInfo &IFI, in mergeInlinedArrayAllocas() argument 234 const DataLayout &DL = Caller->getParent()->getDataLayout(); in mergeInlinedArrayAllocas() 280 Function *Caller = CS.getCaller(); in InlineCallIfPossible() local 291 ImportedFunctionsStats.recordInline(*Caller, *Callee); in InlineCallIfPossible() 293 AttributeFuncs::mergeAttributesForInlining(*Caller, *Callee); in InlineCallIfPossible() 296 mergeInlinedArrayAllocas(Caller, IFI, InlinedArrayAllocas, InlineHistory); in InlineCallIfPossible() 307 shouldBeDeferred(Function *Caller, CallSite CS, InlineCost IC, in shouldBeDeferred() argument 311 if (!Caller->hasLocalLinkage() && !Caller->hasLinkOnceODRLinkage()) in shouldBeDeferred() 339 bool ApplyLastCallBonus = Caller->hasLocalLinkage() && !Caller->hasOneUse(); in shouldBeDeferred() 342 for (User *U : Caller->users()) { in shouldBeDeferred() [all …]
|
D | SyntheticCountsPropagation.cpp | 115 Function *Caller = CS.getCaller(); in run() local 116 auto &BFI = FAM.getResult<BlockFrequencyAnalysis>(*Caller); in run() 124 BBCount *= Counts[Caller]; in run()
|
D | PartialInlining.cpp | 774 Function *Caller = CS.getCaller(); in shouldPartialInline() local 797 << NV("Caller", Caller) in shouldPartialInline() 807 << NV("Caller", Caller) << " because too costly to inline (cost=" in shouldPartialInline() 813 const DataLayout &DL = Caller->getParent()->getDataLayout(); in shouldPartialInline() 825 << NV("Caller", Caller) << " runtime overhead (overhead=" in shouldPartialInline() 839 << NV("Caller", Caller) << " with cost=" << NV("Cost", IC.getCost()) in shouldPartialInline() 934 auto ComputeCurrBFI = [&,this](Function *Caller) { in computeCallsiteToProfCountMap() argument 937 DominatorTree DT(*Caller); in computeCallsiteToProfCountMap() 939 BranchProbabilityInfo BPI(*Caller, LI); in computeCallsiteToProfCountMap() 940 TempBFI.reset(new BlockFrequencyInfo(*Caller, BPI, LI)); in computeCallsiteToProfCountMap() [all …]
|
D | GlobalDCE.cpp | 205 void GlobalDCEPass::ScanVTableLoad(Function *Caller, Metadata *TypeId, in ScanVTableLoad() argument 213 *Caller->getParent()); in ScanVTableLoad() 227 LLVM_DEBUG(dbgs() << "vfunc dep " << Caller->getName() << " -> " in ScanVTableLoad() 229 GVDependencies[Caller].insert(Callee); in ScanVTableLoad()
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/configs/common/lib/IR/ |
D | AttributesCompatFunc.inc | 529 static inline bool hasCompatibleFnAttrs(const Function &Caller, 533 Ret &= isEqual<SanitizeAddressAttr>(Caller, Callee); 534 Ret &= isEqual<SanitizeThreadAttr>(Caller, Callee); 535 Ret &= isEqual<SanitizeMemoryAttr>(Caller, Callee); 536 Ret &= isEqual<SanitizeHWAddressAttr>(Caller, Callee); 537 Ret &= isEqual<SanitizeMemTagAttr>(Caller, Callee); 538 Ret &= isEqual<SafeStackAttr>(Caller, Callee); 539 Ret &= isEqual<ShadowCallStackAttr>(Caller, Callee); 544 static inline void mergeFnAttrs(Function &Caller, 546 setAND<UnsafeFPMathAttr>(Caller, Callee); [all …]
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/configs/common/include/llvm/IR/ |
D | Attributes.inc | 529 static inline bool hasCompatibleFnAttrs(const Function &Caller, 533 Ret &= isEqual<SanitizeAddressAttr>(Caller, Callee); 534 Ret &= isEqual<SanitizeThreadAttr>(Caller, Callee); 535 Ret &= isEqual<SanitizeMemoryAttr>(Caller, Callee); 536 Ret &= isEqual<SanitizeHWAddressAttr>(Caller, Callee); 537 Ret &= isEqual<SanitizeMemTagAttr>(Caller, Callee); 538 Ret &= isEqual<SafeStackAttr>(Caller, Callee); 539 Ret &= isEqual<ShadowCallStackAttr>(Caller, Callee); 544 static inline void mergeFnAttrs(Function &Caller, 546 setAND<UnsafeFPMathAttr>(Caller, Callee); [all …]
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Target/AMDGPU/ |
D | AMDGPUAnnotateKernelFeatures.cpp | 52 bool propagateUniformWorkGroupAttribute(Function &Caller, Function &Callee); 218 Function *Caller = Node->getFunction(); in processUniformWorkGroupAttribute() local 223 Changed = propagateUniformWorkGroupAttribute(*Caller, *Callee); in processUniformWorkGroupAttribute() 231 Function &Caller, Function &Callee) { in propagateUniformWorkGroupAttribute() argument 236 if (!Caller.hasFnAttribute("uniform-work-group-size")) in propagateUniformWorkGroupAttribute() 237 Caller.addFnAttr("uniform-work-group-size", "false"); in propagateUniformWorkGroupAttribute() 242 if (Caller.hasFnAttribute("uniform-work-group-size")) { in propagateUniformWorkGroupAttribute() 244 if (Caller.getFnAttribute("uniform-work-group-size") in propagateUniformWorkGroupAttribute() 257 Caller.addFnAttr("uniform-work-group-size", "false"); in propagateUniformWorkGroupAttribute()
|
D | AMDGPUInline.cpp | 112 Function *Caller = CS.getCaller(); in getInlineThreshold() local 119 && !Caller->hasFnAttribute(Attribute::MinSize)) in getInlineThreshold() 123 const DataLayout &DL = Caller->getParent()->getDataLayout(); in getInlineThreshold() 179 Function *Caller = CS.getCaller(); in getInlineCost() local 188 if (!TTI.areInlineCompatible(Caller, Callee)) in getInlineCost() 204 const auto &BBs = Caller->getBasicBlockList(); in getInlineCost() 211 OptimizationRemarkEmitter ORE(Caller); in getInlineCost() 223 size_t Size = Caller->size() + Callee->size() - 1; in getInlineCost()
|
D | AMDGPUOpenCLEnqueuedBlockLowering.cpp | 83 auto *Caller = CI->getParent()->getParent(); in collectCallers() local 84 if (Callers.insert(Caller).second) in collectCallers() 85 collectCallers(Caller, Callers); in collectCallers()
|
D | AMDGPUPropagateAttributes.cpp | 209 Function *Caller = CI->getCaller(); in process() local 210 if (!Caller) in process() 212 if (!Roots.count(Caller)) in process() 216 TM->getSubtargetImpl(*Caller)->getFeatureBits() & TargetFeatures; in process()
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Transforms/Utils/ |
D | InlineFunction.cpp | 588 Function *Caller = FirstNewBlock->getParent(); in HandleInlinedLandingPad() local 597 for (Function::iterator I = FirstNewBlock->getIterator(), E = Caller->end(); in HandleInlinedLandingPad() 614 for (Function::iterator BB = FirstNewBlock->getIterator(), E = Caller->end(); in HandleInlinedLandingPad() 644 Function *Caller = FirstNewBlock->getParent(); in HandleInlinedEHPad() local 675 for (Function::iterator BB = FirstNewBlock->getIterator(), E = Caller->end(); in HandleInlinedEHPad() 690 ConstantTokenNone::get(Caller->getContext()); in HandleInlinedEHPad() 723 UnwindDestToken = ConstantTokenNone::get(Caller->getContext()); in HandleInlinedEHPad() 752 E = Caller->end(); in HandleInlinedEHPad() 1184 const Function *Caller = CS.getCaller(); in UpdateCallGraphAfterInlining() local 1187 CallGraphNode *CallerNode = CG[Caller]; in UpdateCallGraphAfterInlining() [all …]
|
D | ImportedFunctionsInliningStatistics.cpp | 34 void ImportedFunctionsInliningStatistics::recordInline(const Function &Caller, in recordInline() argument 37 InlineGraphNode &CallerNode = createInlineGraphNode(Caller); in recordInline() 53 auto It = NodesMap.find(Caller.getName()); in recordInline()
|
/third_party/flutter/engine/flutter/shell/gpu/ |
D | gpu.gni | 9 "Caller must declare if the Software backend must be enabled.") 11 "Caller must declare if the Vulkan backend must be enabled.") 13 "Caller must declare if the Open GL backend must be enabled.") 15 "Caller must declare if the Metal backend must be enabled.")
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/IR/ |
D | Attributes.cpp | 1723 static bool isEqual(const Function &Caller, const Function &Callee) { in isEqual() argument 1724 return Caller.getFnAttribute(AttrClass::getKind()) == in isEqual() 1734 static void setAND(Function &Caller, const Function &Callee) { in setAND() argument 1735 if (AttrClass::isSet(Caller, AttrClass::getKind()) && in setAND() 1737 AttrClass::set(Caller, AttrClass::getKind(), false); in setAND() 1746 static void setOR(Function &Caller, const Function &Callee) { in setOR() argument 1747 if (!AttrClass::isSet(Caller, AttrClass::getKind()) && in setOR() 1749 AttrClass::set(Caller, AttrClass::getKind(), true); in setOR() 1754 static void adjustCallerSSPLevel(Function &Caller, const Function &Callee) { in adjustCallerSSPLevel() argument 1764 Caller.removeAttributes(AttributeList::FunctionIndex, OldSSPAttr); in adjustCallerSSPLevel() [all …]
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-subzero/build/Windows/include/llvm/IR/ |
D | Attributes.gen | 435 static inline bool hasCompatibleFnAttrs(const Function &Caller, 439 Ret &= isEqual<SanitizeAddressAttr>(Caller, Callee); 440 Ret &= isEqual<SanitizeThreadAttr>(Caller, Callee); 441 Ret &= isEqual<SanitizeMemoryAttr>(Caller, Callee); 442 Ret &= isEqual<SafeStackAttr>(Caller, Callee); 447 static inline void mergeFnAttrs(Function &Caller, 449 adjustCallerSSPLevel(Caller, Callee); 450 setAND<LessPreciseFPMADAttr>(Caller, Callee); 451 setAND<NoInfsFPMathAttr>(Caller, Callee); 452 setAND<NoNansFPMathAttr>(Caller, Callee); [all …]
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-subzero/build/Linux/include/llvm/IR/ |
D | Attributes.gen | 435 static inline bool hasCompatibleFnAttrs(const Function &Caller, 439 Ret &= isEqual<SanitizeAddressAttr>(Caller, Callee); 440 Ret &= isEqual<SanitizeThreadAttr>(Caller, Callee); 441 Ret &= isEqual<SanitizeMemoryAttr>(Caller, Callee); 442 Ret &= isEqual<SafeStackAttr>(Caller, Callee); 447 static inline void mergeFnAttrs(Function &Caller, 449 adjustCallerSSPLevel(Caller, Callee); 450 setAND<LessPreciseFPMADAttr>(Caller, Callee); 451 setAND<NoInfsFPMathAttr>(Caller, Callee); 452 setAND<NoNansFPMathAttr>(Caller, Callee); [all …]
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-subzero/include/llvm/IR/ |
D | Attributes.inc | 435 static inline bool hasCompatibleFnAttrs(const Function &Caller, 439 Ret &= isEqual<SanitizeAddressAttr>(Caller, Callee); 440 Ret &= isEqual<SanitizeThreadAttr>(Caller, Callee); 441 Ret &= isEqual<SanitizeMemoryAttr>(Caller, Callee); 442 Ret &= isEqual<SafeStackAttr>(Caller, Callee); 447 static inline void mergeFnAttrs(Function &Caller, 449 adjustCallerSSPLevel(Caller, Callee); 450 setAND<LessPreciseFPMADAttr>(Caller, Callee); 451 setAND<NoInfsFPMathAttr>(Caller, Callee); 452 setAND<NoNansFPMathAttr>(Caller, Callee); [all …]
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-subzero/build/Fuchsia/include/llvm/IR/ |
D | Attributes.gen | 435 static inline bool hasCompatibleFnAttrs(const Function &Caller, 439 Ret &= isEqual<SanitizeAddressAttr>(Caller, Callee); 440 Ret &= isEqual<SanitizeThreadAttr>(Caller, Callee); 441 Ret &= isEqual<SanitizeMemoryAttr>(Caller, Callee); 442 Ret &= isEqual<SafeStackAttr>(Caller, Callee); 447 static inline void mergeFnAttrs(Function &Caller, 449 adjustCallerSSPLevel(Caller, Callee); 450 setAND<LessPreciseFPMADAttr>(Caller, Callee); 451 setAND<NoInfsFPMathAttr>(Caller, Callee); 452 setAND<NoNansFPMathAttr>(Caller, Callee); [all …]
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-subzero/build/MacOS/include/llvm/IR/ |
D | Attributes.gen | 435 static inline bool hasCompatibleFnAttrs(const Function &Caller, 439 Ret &= isEqual<SanitizeAddressAttr>(Caller, Callee); 440 Ret &= isEqual<SanitizeThreadAttr>(Caller, Callee); 441 Ret &= isEqual<SanitizeMemoryAttr>(Caller, Callee); 442 Ret &= isEqual<SafeStackAttr>(Caller, Callee); 447 static inline void mergeFnAttrs(Function &Caller, 449 adjustCallerSSPLevel(Caller, Callee); 450 setAND<LessPreciseFPMADAttr>(Caller, Callee); 451 setAND<NoInfsFPMathAttr>(Caller, Callee); 452 setAND<NoNansFPMathAttr>(Caller, Callee); [all …]
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-subzero/build/Android/include/llvm/IR/ |
D | Attributes.gen | 435 static inline bool hasCompatibleFnAttrs(const Function &Caller, 439 Ret &= isEqual<SanitizeAddressAttr>(Caller, Callee); 440 Ret &= isEqual<SanitizeThreadAttr>(Caller, Callee); 441 Ret &= isEqual<SanitizeMemoryAttr>(Caller, Callee); 442 Ret &= isEqual<SafeStackAttr>(Caller, Callee); 447 static inline void mergeFnAttrs(Function &Caller, 449 adjustCallerSSPLevel(Caller, Callee); 450 setAND<LessPreciseFPMADAttr>(Caller, Callee); 451 setAND<NoInfsFPMathAttr>(Caller, Callee); 452 setAND<NoNansFPMathAttr>(Caller, Callee); [all …]
|
/third_party/skia/third_party/externals/swiftshader/third_party/subzero/crosstest/ |
D | test_calling_conv_main.cpp | 68 void (*Caller)(void); in testCaller() member 108 Funcs[f].Caller(); in testCaller() 131 void (*Caller)(void); in testCallee() member 158 Funcs[f].Caller(); in testCallee() 162 Funcs[f].Caller(); in testCallee()
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Analysis/ |
D | InlineCost.cpp | 547 auto *Caller = CandidateCall.getFunction(); in finalizeAnalysis() local 548 if (Caller->hasMinSize()) { in finalizeAnalysis() 1142 Function *Caller = Call.getCaller(); in updateThreshold() local 1179 if (Caller->hasMinSize()) { in updateThreshold() 1187 } else if (Caller->hasOptSize()) in updateThreshold() 1192 if (!Caller->hasMinSize()) { in updateThreshold() 1203 BlockFrequencyInfo *CallerBFI = GetBFI ? &((*GetBFI)(*Caller)) : nullptr; in updateThreshold() 1205 if (!Caller->hasOptSize() && HotCallSiteThreshold) { in updateThreshold() 1913 Function *Caller = CandidateCall.getFunction(); in analyze() local 1915 for (User *U : Caller->users()) { in analyze() [all …]
|
/third_party/jsframework/runtime/main/extend/systemplugin/napi/application/ |
D | ServiceExtensionContext.js | 17 import { Caller } from "../ohos_application_Ability"; 135 resolve(Caller);
|
/third_party/skia/third_party/externals/tint/tools/src/fileutils/ |
D | fileutils_common.go | 26 _, filename, _, ok := runtime.Caller(1)
|