Home
last modified time | relevance | path

Searched refs:Fn (Results 1 - 25 of 450) sorted by relevance

12345678910>>...18

/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Target/PowerPC/
H A DPPCBranchSelector.cpp51 unsigned ComputeBlockSizes(MachineFunction &Fn);
52 void modifyAdjustment(MachineFunction &Fn);
53 int computeBranchSize(MachineFunction &Fn,
58 bool runOnMachineFunction(MachineFunction &Fn) override;
106 static inline unsigned GetInitialOffset(MachineFunction &Fn) { in GetInitialOffset() argument
108 if (Fn.getSubtarget<PPCSubtarget>().isELFv2ABI() && in GetInitialOffset()
109 !Fn.getRegInfo().use_empty(PPC::X2)) in GetInitialOffset()
115 unsigned PPCBSel::ComputeBlockSizes(MachineFunction &Fn) { in ComputeBlockSizes() argument
117 static_cast<const PPCInstrInfo *>(Fn.getSubtarget().getInstrInfo()); in ComputeBlockSizes()
118 unsigned FuncSize = GetInitialOffset(Fn); in ComputeBlockSizes()
151 modifyAdjustment(MachineFunction &Fn) modifyAdjustment() argument
176 computeBranchSize(MachineFunction &Fn, const MachineBasicBlock *Src, const MachineBasicBlock *Dest, unsigned BrOffset) computeBranchSize() argument
263 runOnMachineFunction(MachineFunction &Fn) runOnMachineFunction() argument
[all...]
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Analysis/
H A DCFLSteensAliasAnalysis.cpp77 FunctionInfo(Function &Fn, const SmallVectorImpl<Value *> &RetVals,
117 Function &Fn, const SmallVectorImpl<Value *> &RetVals, in FunctionInfo()
122 if (Fn.arg_size() > MaxSupportedArgsInSummary) in FunctionInfo()
174 for (auto &Param : Fn.args()) { in FunctionInfo()
185 CFLSteensAAResult::FunctionInfo CFLSteensAAResult::buildSetsFrom(Function *Fn) { in buildSetsFrom() argument
186 CFLGraphBuilder<CFLSteensAAResult> GraphBuilder(*this, GetTLI(*Fn), *Fn); in buildSetsFrom()
224 return FunctionInfo(*Fn, GraphBuilder.getReturnValues(), SetBuilder.build()); in buildSetsFrom()
227 void CFLSteensAAResult::scan(Function *Fn) { in scan() argument
228 auto InsertPair = Cache.insert(std::make_pair(Fn, Optiona in scan()
116 FunctionInfo( Function &Fn, const SmallVectorImpl<Value *> &RetVals, StratifiedSets<InstantiatedValue> S) FunctionInfo() argument
242 evict(Function *Fn) evict() argument
247 ensureCached(Function *Fn) ensureCached() argument
258 getAliasSummary(Function &Fn) getAliasSummary() argument
[all...]
H A DCFLAndersAliasAnalysis.cpp405 SmallVectorImpl<ExternalRelation> &ExtRelations, const Function &Fn, in populateExternalRelations()
410 for (const auto &Arg : Fn.args()) { in populateExternalRelations()
490 SmallVectorImpl<ExternalAttribute> &ExtAttributes, const Function &Fn, in populateExternalAttributes()
502 const Function &Fn, const SmallVectorImpl<Value *> &RetVals, in FunctionInfo()
505 populateExternalAttributes(Summary.RetParamAttributes, Fn, RetVals, AMap); in FunctionInfo()
507 populateExternalRelations(Summary.RetParamRelations, Fn, RetVals, ReachSet); in FunctionInfo()
783 CFLAndersAAResult::buildInfoFrom(const Function &Fn) { in buildInfoFrom() argument
785 *this, GetTLI(const_cast<Function &>(Fn)), in buildInfoFrom()
787 const_cast<Function &>(Fn)); in buildInfoFrom()
808 return FunctionInfo(Fn, GraphBuilde in buildInfoFrom()
404 populateExternalRelations( SmallVectorImpl<ExternalRelation> &ExtRelations, const Function &Fn, const SmallVectorImpl<Value *> &RetVals, const ReachabilitySet &ReachSet) populateExternalRelations() argument
489 populateExternalAttributes( SmallVectorImpl<ExternalAttribute> &ExtAttributes, const Function &Fn, const SmallVectorImpl<Value *> &RetVals, const AliasAttrMap &AMap) populateExternalAttributes() argument
501 FunctionInfo( const Function &Fn, const SmallVectorImpl<Value *> &RetVals, const ReachabilitySet &ReachSet, const AliasAttrMap &AMap) FunctionInfo() argument
812 scan(const Function &Fn) scan() argument
826 evict(const Function *Fn) evict() argument
829 ensureCached(const Function &Fn) ensureCached() argument
840 getAliasSummary(const Function &Fn) getAliasSummary() argument
[all...]
H A DCFLGraph.h193 if (auto *Fn = Call.getCalledFunction()) {
194 Output.push_back(Fn);
371 static bool isFunctionExternal(Function *Fn) {
372 return !Fn->hasExactDefinition();
383 for (auto *Fn : Fns) {
384 if (isFunctionExternal(Fn) || Fn->isVarArg())
387 assert(Fn->arg_size() <= Call.arg_size());
388 if (!AA.getAliasSummary(*Fn))
392 for (auto *Fn
[all...]
H A DAnalysis.cpp119 LLVMBool LLVMVerifyFunction(LLVMValueRef Fn, LLVMVerifierFailureAction Action) { in LLVMVerifyFunction() argument
121 *unwrap<Function>(Fn), Action != LLVMReturnStatusAction ? &errs() in LLVMVerifyFunction()
130 void LLVMViewFunctionCFG(LLVMValueRef Fn) { in LLVMViewFunctionCFG() argument
131 Function *F = unwrap<Function>(Fn); in LLVMViewFunctionCFG()
135 void LLVMViewFunctionCFGOnly(LLVMValueRef Fn) { in LLVMViewFunctionCFGOnly() argument
136 Function *F = unwrap<Function>(Fn); in LLVMViewFunctionCFGOnly()
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/include/llvm/Support/
H A DTargetRegistry.h564 MCRelocationInfoCtorTy Fn = MCRelocationInfoCtorFn in createMCRelocationInfo() local
567 return Fn(Triple(TT), Ctx); in createMCRelocationInfo()
587 MCSymbolizerCtorTy Fn = in createMCSymbolizer() local
589 return Fn(Triple(TT), GetOpInfo, SymbolLookUp, DisInfo, Ctx, in createMCSymbolizer()
704 /// @param Fn - A function to construct a MCAsmInfo for the target.
705 static void RegisterMCAsmInfo(Target &T, Target::MCAsmInfoCtorFnTy Fn) { in RegisterMCAsmInfo()
706 T.MCAsmInfoCtorFn = Fn; in RegisterMCAsmInfo()
717 /// @param Fn - A function to construct a MCInstrInfo for the target.
718 static void RegisterMCInstrInfo(Target &T, Target::MCInstrInfoCtorFnTy Fn) { in RegisterMCInstrInfo()
719 T.MCInstrInfoCtorFn = Fn; in RegisterMCInstrInfo()
[all...]
H A DParallel.h129 void parallel_for_each(IterTy Begin, IterTy End, FuncTy Fn) { in parallel_for_each() argument
140 TG.spawn([=, &Fn] { std::for_each(Begin, Begin + TaskSize, Fn); }); in parallel_for_each()
143 std::for_each(Begin, End, Fn); in parallel_for_each()
147 void parallel_for_each_n(IndexTy Begin, IndexTy End, FuncTy Fn) { in parallel_for_each_n() argument
155 TG.spawn([=, &Fn] { in parallel_for_each_n()
157 Fn(J); in parallel_for_each_n()
161 Fn(J); in parallel_for_each_n()
183 void for_each(Policy policy, IterTy Begin, IterTy End, FuncTy Fn) { in for_each() argument
186 std::for_each(Begin, End, Fn); in for_each()
190 for_each_n(Policy policy, IndexTy Begin, IndexTy End, FuncTy Fn) for_each_n() argument
208 for_each(parallel_execution_policy policy, IterTy Begin, IterTy End, FuncTy Fn) for_each() argument
214 for_each_n(parallel_execution_policy policy, IndexTy Begin, IndexTy End, FuncTy Fn) for_each_n() argument
[all...]
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/CodeGen/
H A DDwarfEHPrepare.cpp54 bool InsertUnwindResumeCalls(Function &Fn);
57 pruneUnreachableResumes(Function &Fn,
66 bool runOnFunction(Function &Fn) override;
143 Function &Fn, SmallVectorImpl<ResumeInst *> &Resumes, in pruneUnreachableResumes()
162 getAnalysis<TargetTransformInfoWrapperPass>().getTTI(Fn); in pruneUnreachableResumes()
163 LLVMContext &Ctx = Fn.getContext(); in pruneUnreachableResumes()
184 bool DwarfEHPrepare::InsertUnwindResumeCalls(Function &Fn) { in InsertUnwindResumeCalls() argument
187 for (BasicBlock &BB : Fn) { in InsertUnwindResumeCalls()
199 EHPersonality Pers = classifyEHPersonality(Fn.getPersonalityFn()); in InsertUnwindResumeCalls()
203 LLVMContext &Ctx = Fn in InsertUnwindResumeCalls()
142 pruneUnreachableResumes( Function &Fn, SmallVectorImpl<ResumeInst *> &Resumes, SmallVectorImpl<LandingPadInst *> &CleanupLPads) pruneUnreachableResumes() argument
259 runOnFunction(Function &Fn) runOnFunction() argument
[all...]
H A DCallingConvLower.cpp87 CCAssignFn Fn) { in AnalyzeFormalArguments()
93 if (Fn(i, ArgVT, ArgVT, CCValAssign::Full, ArgFlags, *this)) in AnalyzeFormalArguments()
101 CCAssignFn Fn) { in CheckReturn()
106 if (Fn(i, VT, VT, CCValAssign::Full, ArgFlags, *this)) in CheckReturn()
115 CCAssignFn Fn) { in AnalyzeReturn()
120 if (Fn(i, VT, VT, CCValAssign::Full, ArgFlags, *this)) in AnalyzeReturn()
128 CCAssignFn Fn) { in AnalyzeCallOperands()
133 if (Fn(i, ArgVT, ArgVT, CCValAssign::Full, ArgFlags, *this)) { in AnalyzeCallOperands()
146 CCAssignFn Fn) { in AnalyzeCallOperands()
151 if (Fn( in AnalyzeCallOperands()
86 AnalyzeFormalArguments(const SmallVectorImpl<ISD::InputArg> &Ins, CCAssignFn Fn) AnalyzeFormalArguments() argument
100 CheckReturn(const SmallVectorImpl<ISD::OutputArg> &Outs, CCAssignFn Fn) CheckReturn() argument
114 AnalyzeReturn(const SmallVectorImpl<ISD::OutputArg> &Outs, CCAssignFn Fn) AnalyzeReturn() argument
127 AnalyzeCallOperands(const SmallVectorImpl<ISD::OutputArg> &Outs, CCAssignFn Fn) AnalyzeCallOperands() argument
144 AnalyzeCallOperands(SmallVectorImpl<MVT> &ArgVTs, SmallVectorImpl<ISD::ArgFlagsTy> &Flags, CCAssignFn Fn) AnalyzeCallOperands() argument
163 AnalyzeCallResult(const SmallVectorImpl<ISD::InputArg> &Ins, CCAssignFn Fn) AnalyzeCallResult() argument
179 AnalyzeCallResult(MVT VT, CCAssignFn Fn) AnalyzeCallResult() argument
199 getRemainingRegParmsForType(SmallVectorImpl<MCPhysReg> &Regs, MVT VT, CCAssignFn Fn) getRemainingRegParmsForType() argument
[all...]
H A DPostRAHazardRecognizer.cpp57 bool runOnMachineFunction(MachineFunction &Fn) override;
69 bool PostRAHazardRecognizer::runOnMachineFunction(MachineFunction &Fn) { in runOnMachineFunction() argument
70 const TargetInstrInfo *TII = Fn.getSubtarget().getInstrInfo(); in runOnMachineFunction()
72 TII->CreateTargetPostRAHazardRecognizer(Fn)); in runOnMachineFunction()
79 for (auto &MBB : Fn) { in runOnMachineFunction()
H A DLocalStackSlotAllocation.cpp87 void calculateFrameObjectOffsets(MachineFunction &Fn);
88 bool insertFrameReferenceRegisters(MachineFunction &Fn);
191 void LocalStackSlotPass::calculateFrameObjectOffsets(MachineFunction &Fn) { in calculateFrameObjectOffsets() argument
193 MachineFrameInfo &MFI = Fn.getFrameInfo(); in calculateFrameObjectOffsets()
194 const TargetFrameLowering &TFI = *Fn.getSubtarget().getFrameLowering(); in calculateFrameObjectOffsets()
281 bool LocalStackSlotPass::insertFrameReferenceRegisters(MachineFunction &Fn) { in insertFrameReferenceRegisters() argument
290 MachineFrameInfo &MFI = Fn.getFrameInfo(); in insertFrameReferenceRegisters()
291 const TargetRegisterInfo *TRI = Fn.getSubtarget().getRegisterInfo(); in insertFrameReferenceRegisters()
292 const TargetFrameLowering &TFI = *Fn.getSubtarget().getFrameLowering(); in insertFrameReferenceRegisters()
304 for (MachineBasicBlock &BB : Fn) { in insertFrameReferenceRegisters()
[all...]
H A DOptimizePHIs.cpp48 bool runOnMachineFunction(MachineFunction &Fn) override;
74 bool OptimizePHIs::runOnMachineFunction(MachineFunction &Fn) { in runOnMachineFunction() argument
75 if (skipFunction(Fn.getFunction())) in runOnMachineFunction()
78 MRI = &Fn.getRegInfo(); in runOnMachineFunction()
79 TII = Fn.getSubtarget().getInstrInfo(); in runOnMachineFunction()
86 for (MachineFunction::iterator I = Fn.begin(), E = Fn.end(); I != E; ++I) in runOnMachineFunction()
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Target/Mips/
H A DMipsCCState.h90 CCAssignFn Fn, in AnalyzeCallOperands()
94 CCState::AnalyzeCallOperands(Outs, Fn); in AnalyzeCallOperands()
105 CCAssignFn Fn) = delete;
108 CCAssignFn Fn) = delete;
111 CCAssignFn Fn) { in AnalyzeFormalArguments()
113 CCState::AnalyzeFormalArguments(Ins, Fn); in AnalyzeFormalArguments()
120 CCAssignFn Fn, const Type *RetTy, in AnalyzeCallResult()
124 CCState::AnalyzeCallResult(Ins, Fn); in AnalyzeCallResult()
131 CCAssignFn Fn) { in AnalyzeReturn()
134 CCState::AnalyzeReturn(Outs, Fn); in AnalyzeReturn()
89 AnalyzeCallOperands(const SmallVectorImpl<ISD::OutputArg> &Outs, CCAssignFn Fn, std::vector<TargetLowering::ArgListEntry> &FuncArgs, const char *Func) AnalyzeCallOperands() argument
110 AnalyzeFormalArguments(const SmallVectorImpl<ISD::InputArg> &Ins, CCAssignFn Fn) AnalyzeFormalArguments() argument
119 AnalyzeCallResult(const SmallVectorImpl<ISD::InputArg> &Ins, CCAssignFn Fn, const Type *RetTy, const char *Func) AnalyzeCallResult() argument
130 AnalyzeReturn(const SmallVectorImpl<ISD::OutputArg> &Outs, CCAssignFn Fn) AnalyzeReturn() argument
140 CheckReturn(const SmallVectorImpl<ISD::OutputArg> &ArgsFlags, CCAssignFn Fn) CheckReturn() argument
[all...]
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/include/llvm/IR/
H A DDiagnosticInfo.h179 const Function &Fn; member in llvm::DiagnosticInfoResourceLimit
193 DiagnosticInfoResourceLimit(const Function &Fn, const char *ResourceName, in DiagnosticInfoResourceLimit() argument
198 : DiagnosticInfo(Kind, Severity), Fn(Fn), ResourceName(ResourceName), in DiagnosticInfoResourceLimit()
201 const Function &getFunction() const { return Fn; } in getFunction()
217 DiagnosticInfoStackSize(const Function &Fn, uint64_t StackSize, in DiagnosticInfoStackSize() argument
220 : DiagnosticInfoResourceLimit(Fn, "stack size", StackSize, Severity, in DiagnosticInfoStackSize()
368 /// \p Fn is the function where the diagnostic is being emitted. \p Loc is
372 const Function &Fn, in DiagnosticInfoWithLocationBase()
374 : DiagnosticInfo(Kind, Severity), Fn(F in DiagnosticInfoWithLocationBase()
370 DiagnosticInfoWithLocationBase(enum DiagnosticKind Kind, enum DiagnosticSeverity Severity, const Function &Fn, const DiagnosticLocation &Loc) DiagnosticInfoWithLocationBase() argument
397 const Function &Fn; global() member in llvm::DiagnosticInfoWithLocationBase
446 DiagnosticInfoOptimizationBase(enum DiagnosticKind Kind, enum DiagnosticSeverity Severity, const char *PassName, StringRef RemarkName, const Function &Fn, const DiagnosticLocation &Loc) DiagnosticInfoOptimizationBase() argument
616 DiagnosticInfoIROptimization(enum DiagnosticKind Kind, enum DiagnosticSeverity Severity, const char *PassName, StringRef RemarkName, const Function &Fn, const DiagnosticLocation &Loc, const Value *CodeRegion = nullptr) DiagnosticInfoIROptimization() argument
651 DiagnosticInfoIROptimization(enum DiagnosticKind Kind, enum DiagnosticSeverity Severity, const char *PassName, const Function &Fn, const DiagnosticLocation &Loc, const Twine &Msg) DiagnosticInfoIROptimization() argument
710 OptimizationRemark(const char *PassName, const Function &Fn, const DiagnosticLocation &Loc, const Twine &Msg) OptimizationRemark() argument
751 OptimizationRemarkMissed(const char *PassName, const Function &Fn, const DiagnosticLocation &Loc, const Twine &Msg) OptimizationRemarkMissed() argument
798 OptimizationRemarkAnalysis(enum DiagnosticKind Kind, const char *PassName, const Function &Fn, const DiagnosticLocation &Loc, const Twine &Msg) OptimizationRemarkAnalysis() argument
818 OptimizationRemarkAnalysis(const char *PassName, const Function &Fn, const DiagnosticLocation &Loc, const Twine &Msg) OptimizationRemarkAnalysis() argument
859 OptimizationRemarkAnalysisFPCommute(const char *PassName, const Function &Fn, const DiagnosticLocation &Loc, const Twine &Msg) OptimizationRemarkAnalysisFPCommute() argument
900 OptimizationRemarkAnalysisAliasing(const char *PassName, const Function &Fn, const DiagnosticLocation &Loc, const Twine &Msg) OptimizationRemarkAnalysisAliasing() argument
928 const Function &Fn; global() member in llvm::DiagnosticInfoISelFallback
931 DiagnosticInfoISelFallback(const Function &Fn, DiagnosticSeverity Severity = DS_Warning) DiagnosticInfoISelFallback() argument
956 DiagnosticInfoOptimizationFailure(const Function &Fn, const DiagnosticLocation &Loc, const Twine &Msg) DiagnosticInfoOptimizationFailure() argument
991 DiagnosticInfoUnsupported( const Function &Fn, const Twine &Msg, const DiagnosticLocation &Loc = DiagnosticLocation(), DiagnosticSeverity Severity = DS_Error) DiagnosticInfoUnsupported() argument
[all...]
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/ExecutionEngine/Orc/
H A DSpeculation.cpp86 for (auto &Fn : M.getFunctionList()) { in emit()
87 if (!Fn.isDeclaration()) { in emit()
89 auto IRNames = QueryAnalysis(Fn); in emit()
98 "__orc_speculate.guard.for." + Fn.getName()); in emit()
102 BasicBlock &ProgramEntry = Fn.getEntryBlock(); in emit()
105 MContext, "__orc_speculate.block", &Fn, &ProgramEntry); in emit()
107 MContext, "__orc_speculate.decision.block", &Fn, SpeculateBlock); in emit()
109 assert(SpeculateDecisionBlock == &Fn.getEntryBlock() && in emit()
123 Mutator.CreatePtrToInt(&Fn, Type::getInt64Ty(MContext)); in emit()
130 assert(Mutator.GetInsertBlock()->getParent() == &Fn in emit()
[all...]
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Transforms/IPO/
H A DDeadArgumentElimination.cpp123 bool DeadArgumentEliminationPass::DeleteDeadVarargs(Function &Fn) { in DeleteDeadVarargs() argument
124 assert(Fn.getFunctionType()->isVarArg() && "Function isn't varargs!"); in DeleteDeadVarargs()
125 if (Fn.isDeclaration() || !Fn.hasLocalLinkage()) return false; in DeleteDeadVarargs()
128 if (Fn.hasAddressTaken()) in DeleteDeadVarargs()
134 if (Fn.hasFnAttribute(Attribute::Naked)) { in DeleteDeadVarargs()
140 for (BasicBlock &BB : Fn) { in DeleteDeadVarargs()
159 FunctionType *FTy = Fn.getFunctionType(); in DeleteDeadVarargs()
167 Function *NF = Function::Create(NFTy, Fn.getLinkage(), Fn in DeleteDeadVarargs()
261 RemoveDeadArgumentsFromCallers(Function &Fn) RemoveDeadArgumentsFromCallers() argument
[all...]
/third_party/typescript/tests/baselines/reference/
H A DvarianceMeasurement.js50 interface Fn<A, B> {
52 then<C>(next: Fn<B, C>): Fn<A, C>;
55 declare const fn: Fn<string, number>;
58 const fn1: Fn<unknown, number> = fn; // Error
59 const fn2: Fn<'a', number> = fn;
62 const fn3: Fn<string, unknown> = fn;
63 const fn4: Fn<string, 0> = fn; // Error
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-subzero/lib/Support/
H A DThreading.cpp46 void llvm::llvm_execute_on_thread(void (*Fn)(void*), void *UserData, in llvm_execute_on_thread() argument
48 ThreadInfo Info = { Fn, UserData }; in llvm_execute_on_thread()
93 void llvm::llvm_execute_on_thread(void (*Fn)(void*), void *UserData, in llvm_execute_on_thread() argument
95 struct ThreadInfo param = { Fn, UserData }; in llvm_execute_on_thread()
113 void llvm::llvm_execute_on_thread(void (*Fn)(void*), void *UserData, in llvm_execute_on_thread() argument
116 Fn(UserData); in llvm_execute_on_thread()
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/include/llvm/Demangle/
H A DItaniumDemangle.h149 template<typename Fn> void visit(Fn F) const;
155 //template<typename Fn> void match(Fn F) const;
254 template<typename Fn> void match(Fn F) const { F(Array); } in match()
269 template<typename Fn> void match(Fn F) const { F(Prefix, Suffix); } in match()
287 template<typename Fn> void match(Fn
[all...]
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Target/Hexagon/
H A DHexagonVectorPrint.cpp66 bool runOnMachineFunction(MachineFunction &Fn) override;
98 MachineFunction &Fn) { in addAsmInstr()
100 const char *cstr = Fn.createExternalSymbolName(VDescStr); in addAsmInstr()
130 bool HexagonVectorPrint::runOnMachineFunction(MachineFunction &Fn) { in runOnMachineFunction() argument
132 QST = &Fn.getSubtarget<HexagonSubtarget>(); in runOnMachineFunction()
136 for (auto &MBB : Fn) in runOnMachineFunction()
184 addAsmInstr(MBB, Reg, MII, DL, QII, Fn); in runOnMachineFunction()
188 MII, DL, QII, Fn); in runOnMachineFunction()
190 MII, DL, QII, Fn); in runOnMachineFunction()
193 addAsmInstr(MBB, Reg, MII, DL, QII, Fn); in runOnMachineFunction()
95 addAsmInstr(MachineBasicBlock *MBB, unsigned Reg, MachineBasicBlock::instr_iterator I, const DebugLoc &DL, const HexagonInstrInfo *QII, MachineFunction &Fn) addAsmInstr() argument
[all...]
/third_party/rust/crates/nom/src/bytes/
H A Dstreaming.rs33 ) -> impl Fn(Input) -> IResult<Input, Input, Error> in tag()
75 ) -> impl Fn(Input) -> IResult<Input, Input, Error> in tag_no_case()
119 ) -> impl Fn(Input) -> IResult<Input, Input, Error> in is_not()
155 ) -> impl Fn(Input) -> IResult<Input, Input, Error> in is_a()
190 ) -> impl Fn(Input) -> IResult<Input, Input, Error> in take_while()
193 F: Fn(<Input as InputTakeAtPosition>::Item) -> bool, in take_while()
224 ) -> impl Fn(Input) -> IResult<Input, Input, Error> in take_while1()
227 F: Fn(<Input as InputTakeAtPosition>::Item) -> bool, in take_while1()
264 ) -> impl Fn(Input) -> IResult<Input, Input, Error> in take_while_m_n()
267 F: Fn(<Inpu in take_while_m_n()
[all...]
H A Dcomplete.rs34 ) -> impl Fn(Input) -> IResult<Input, Input, Error> in tag()
76 ) -> impl Fn(Input) -> IResult<Input, Input, Error> in tag_no_case()
119 ) -> impl Fn(Input) -> IResult<Input, Input, Error> in is_not()
153 ) -> impl Fn(Input) -> IResult<Input, Input, Error> in is_a()
185 ) -> impl Fn(Input) -> IResult<Input, Input, Error> in take_while()
188 F: Fn(<Input as InputTakeAtPosition>::Item) -> bool, in take_while()
215 ) -> impl Fn(Input) -> IResult<Input, Input, Error> in take_while1()
218 F: Fn(<Input as InputTakeAtPosition>::Item) -> bool, in take_while1()
253 ) -> impl Fn(Input) -> IResult<Input, Input, Error> in take_while_m_n()
256 F: Fn(<Inpu in take_while_m_n()
[all...]
/third_party/node/src/
H A Dcallback_queue-inl.h11 template <typename Fn>
13 CallbackQueue<R, Args...>::CreateCallback(Fn&& fn, CallbackFlags::Flags flags) { in CreateCallback()
14 return std::make_unique<CallbackImpl<Fn>>(std::move(fn), flags); in CreateCallback()
81 template <typename Fn>
82 CallbackQueue<R, Args...>::CallbackImpl<Fn>::CallbackImpl( in CallbackImpl()
83 Fn&& callback, CallbackFlags::Flags flags) in CallbackImpl()
88 template <typename Fn>
89 R CallbackQueue<R, Args...>::CallbackImpl<Fn>::Call(Args... args) { in Call()
H A Dcallback_queue.h45 template <typename Fn>
47 Fn&& fn, CallbackFlags::Flags);
59 template <typename Fn>
62 CallbackImpl(Fn&& callback, CallbackFlags::Flags flags);
66 Fn callback_;
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/include/llvm/CodeGen/
H A DCallingConvLower.h292 CCAssignFn Fn);
296 CCAssignFn Fn) { in AnalyzeArguments()
297 AnalyzeFormalArguments(Ins, Fn); in AnalyzeArguments()
303 CCAssignFn Fn);
309 CCAssignFn Fn);
314 CCAssignFn Fn);
320 CCAssignFn Fn);
324 CCAssignFn Fn) { in AnalyzeArguments()
325 AnalyzeCallOperands(Outs, Fn); in AnalyzeArguments()
331 CCAssignFn Fn);
295 AnalyzeArguments(const SmallVectorImpl<ISD::InputArg> &Ins, CCAssignFn Fn) AnalyzeArguments() argument
323 AnalyzeArguments(const SmallVectorImpl<ISD::OutputArg> &Outs, CCAssignFn Fn) AnalyzeArguments() argument
[all...]

Completed in 18 milliseconds

12345678910>>...18