OpenGrok
Home
Sort by:
relevance
|
last modified time
|
path
Full Search
in project(s):
src
xsrc
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:FuncTy
(Results
1 - 18
of
18
) sorted by relevancy
/src/external/apache2/llvm/dist/llvm/include/llvm/Support/
Parallel.h
130
template <class IterTy, class
FuncTy
>
131
void parallel_for_each(IterTy Begin, IterTy End,
FuncTy
Fn) {
157
template <class IndexTy, class
FuncTy
>
158
void parallel_for_each_n(IndexTy Begin, IndexTy End,
FuncTy
Fn) {
251
template <class IterTy, class
FuncTy
>
252
void parallelForEach(IterTy Begin, IterTy End,
FuncTy
Fn) {
262
template <class
FuncTy
>
263
void parallelForEachN(size_t Begin, size_t End,
FuncTy
Fn) {
297
template <class RangeTy, class
FuncTy
>
298
void parallelForEach(RangeTy &&R,
FuncTy
Fn)
[
all
...]
/src/external/apache2/llvm/dist/llvm/include/llvm/CodeGen/
MachinePassManager.h
240
using
FuncTy
= Error(Module &, MachineFunctionAnalysisManager &);
241
SmallVector<llvm::unique_function<
FuncTy
>, 4> InitializationFuncs;
242
SmallVector<llvm::unique_function<
FuncTy
>, 4> FinalizationFuncs;
245
std::map<PassIndex, llvm::unique_function<
FuncTy
>> MachineModulePasses;
FastISel.h
103
CallLoweringInfo &setCallee(Type *ResultTy, FunctionType *
FuncTy
,
111
IsVarArg =
FuncTy
->isVarArg();
118
NumFixedArgs =
FuncTy
->getNumParams();
125
CallLoweringInfo &setCallee(Type *ResultTy, FunctionType *
FuncTy
,
135
IsVarArg =
FuncTy
->isVarArg();
142
NumFixedArgs = (FixedArgs == ~0U) ?
FuncTy
->getNumParams() : FixedArgs;
/src/external/apache2/llvm/dist/clang/tools/clang-offload-wrapper/
ClangOffloadWrapper.cpp
249
auto *
FuncTy
= FunctionType::get(Type::getVoidTy(C), /*isVarArg*/ false);
250
auto *Func = Function::Create(
FuncTy
, GlobalValue::InternalLinkage,
275
auto *
FuncTy
= FunctionType::get(Type::getVoidTy(C), /*isVarArg*/ false);
276
auto *Func = Function::Create(
FuncTy
, GlobalValue::InternalLinkage,
/src/external/apache2/llvm/dist/llvm/lib/Target/AMDGPU/
AMDGPULibFunc.h
437
FunctionType *
FuncTy
;
443
FuncTy
= FT;
447
FunctionType *getFunctionType(Module &M) const override { return
FuncTy
; }
456
void setFunctionType(FunctionType *FT) {
FuncTy
= FT; }
AMDGPULibFunc.cpp
511
FuncTy
= nullptr;
965
FunctionType *
FuncTy
= fInfo.getFunctionType(*M);
969
PI =
FuncTy
->param_begin(),
970
PE =
FuncTy
->param_end();
982
C = M->getOrInsertFunction(FuncName,
FuncTy
);
990
C = M->getOrInsertFunction(FuncName,
FuncTy
, Attr);
/src/external/apache2/llvm/dist/llvm/lib/Target/WebAssembly/
WebAssemblyFixFunctionBitcasts.cpp
225
// Test whether a main function with type
FuncTy
should be rewritten to have
227
static bool shouldFixMainFunction(FunctionType *
FuncTy
, FunctionType *MainTy) {
231
return
FuncTy
->getReturnType() == MainTy->getReturnType() &&
232
FuncTy
->getNumParams() == 0 &&
233
!
FuncTy
->isVarArg();
WebAssemblyMCInstLower.cpp
73
const auto *
FuncTy
= cast<FunctionType>(Global->getValueType());
81
computeSignatureVTs(
FuncTy
, F, CurrentFunc, TM, ParamMVTs, ResultMVTs);
WebAssemblyFastISel.cpp
770
FunctionType *
FuncTy
= Call->getFunctionType();
772
bool IsVoid =
FuncTy
->getReturnType()->isVoidTy();
/src/external/apache2/llvm/dist/llvm/include/llvm/ADT/
STLExtras.h
274
template <typename ItTy, typename
FuncTy
,
276
decltype(std::declval<
FuncTy
>()(*std::declval<ItTy>()))>
279
mapped_iterator<ItTy,
FuncTy
>, ItTy,
283
mapped_iterator(ItTy U,
FuncTy
F)
291
FuncTy
F;
296
template <class ItTy, class
FuncTy
>
297
inline mapped_iterator<ItTy,
FuncTy
> map_iterator(ItTy I,
FuncTy
F) {
298
return mapped_iterator<ItTy,
FuncTy
>(std::move(I), std::move(F));
301
template <class ContainerTy, class
FuncTy
>
[
all
...]
/src/external/apache2/llvm/dist/llvm/tools/bugpoint/
Miscompilation.cpp
873
FunctionType *
FuncTy
= F->getFunctionType();
875
Function::Create(
FuncTy
, GlobalValue::InternalLinkage,
918
CallInst::Create(
FuncTy
, FuncPtr, Args, "", DoCallBB);
922
CallInst::Create(
FuncTy
, FuncPtr, Args, "retval", DoCallBB);
/src/external/apache2/llvm/dist/llvm/lib/Analysis/
TargetLibraryInfo.cpp
71
FunctionType *
FuncTy
) {
86
if (!
FuncTy
->getReturnType()->isPointerTy() &&
87
!
FuncTy
->getReturnType()->isIntegerTy() &&
88
!
FuncTy
->getReturnType()->isVoidTy())
91
for (auto *Param :
FuncTy
->params()) {
/src/external/apache2/llvm/dist/llvm/tools/llvm-stress/
llvm-stress.cpp
165
auto *
FuncTy
= FunctionType::get(Type::getVoidTy(Context), ArgsTy, false);
168
auto *Func = Function::Create(
FuncTy
, GlobalValue::ExternalLinkage, Name, M);
/src/external/apache2/llvm/dist/clang/lib/CodeGen/
CGNonTrivialStruct.cpp
468
llvm::FunctionType *
FuncTy
= CGM.getTypes().GetFunctionType(FI);
470
llvm::Function::Create(
FuncTy
, llvm::GlobalValue::LinkOnceODRLinkage,
CGBlocks.cpp
1228
const FunctionType *
FuncTy
= FnType->castAs<FunctionType>();
1230
CGM.getTypes().arrangeBlockFunctionCall(Args,
FuncTy
);
CGBuiltin.cpp
1691
llvm::FunctionType *
FuncTy
= CGM.getTypes().GetFunctionType(FI);
1693
FuncTy
, llvm::GlobalValue::LinkOnceODRLinkage, Name, &CGM.getModule());
/src/external/apache2/llvm/dist/llvm/lib/CodeGen/SelectionDAG/
FastISel.cpp
1121
FunctionType *
FuncTy
= CI->getFunctionType();
1154
CLI.setCallee(RetTy,
FuncTy
, CI->getCalledOperand(), std::move(Args), *CI)
/src/external/apache2/llvm/dist/clang/lib/Sema/
SemaDeclAttr.cpp
5814
const auto *
FuncTy
= HandlerParam->getType()
5819
if (
FuncTy
)
5820
BlockParams =
FuncTy
->getParamTypes();
Completed in 86 milliseconds
Indexes created Tue Feb 24 08:35:24 UTC 2026