OpenGrok
Home
Sort by:
relevance
|
last modified time
|
path
Full Search
in project(s):
src
xsrc
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:VoidTy
(Results
1 - 14
of
14
) sorted by relevancy
/src/external/apache2/llvm/dist/llvm/lib/Transforms/Utils/
SanitizerStats.cpp
79
Type *
VoidTy
= Type::getVoidTy(M->getContext());
94
auto F = Function::Create(FunctionType::get(
VoidTy
, false),
99
FunctionType *StatInitTy = FunctionType::get(
VoidTy
, Int8PtrTy, false);
/src/external/apache2/llvm/dist/clang/lib/CodeGen/
CodeGenTypeCache.h
34
llvm::Type *
VoidTy
;
CGCUDANV.cpp
39
llvm::Type *
VoidTy
;
205
VoidTy
= CGM.
VoidTy
;
241
return llvm::FunctionType::get(
VoidTy
, VoidPtrPtrTy, false);
245
return llvm::FunctionType::get(
VoidTy
, VoidPtrTy, false);
253
return llvm::FunctionType::get(
VoidTy
, Params, false);
550
llvm::FunctionType::get(
VoidTy
, RegisterVarParams, false),
557
llvm::FunctionType::get(
VoidTy
, RegisterManagedVarParams, false),
563
VoidTy
, {VoidPtrPtrTy, VoidPtrTy, CharPtrTy, CharPtrTy, IntTy, IntTy},
570
VoidTy
,
[
all
...]
CGObjCGNU.cpp
825
llvm::Type *
VoidTy
= llvm::Type::getVoidTy(VMContext);
827
ExceptionReThrowFn.init(&CGM, "objc_exception_rethrow",
VoidTy
);
829
llvm::Type *
VoidTy
= llvm::Type::getVoidTy(VMContext);
833
ExitCatchFn.init(&CGM, "__cxa_end_catch",
VoidTy
);
835
ExceptionReThrowFn.init(&CGM, "_Unwind_Resume_or_Rethrow",
VoidTy
,
838
llvm::Type *
VoidTy
= llvm::Type::getVoidTy(VMContext);
842
ExitCatchFn.init(&CGM, "objc_end_catch",
VoidTy
);
844
ExceptionReThrowFn.init(&CGM, "objc_exception_rethrow",
VoidTy
, PtrTy);
846
llvm::Type *
VoidTy
= llvm::Type::getVoidTy(VMContext);
847
SetPropertyAtomic.init(&CGM, "objc_setProperty_atomic",
VoidTy
, IdTy
[
all
...]
/src/external/apache2/llvm/dist/llvm/lib/Target/X86/
X86WinEHState.cpp
279
Type *
VoidTy
= Builder.getVoidTy();
299
FunctionType::get(
VoidTy
, Int8PtrType, /*isVarArg=*/false));
/src/external/apache2/llvm/dist/llvm/lib/Transforms/Instrumentation/
SanitizerCoverage.cpp
411
Type *
VoidTy
= Type::getVoidTy(*C);
424
M.getOrInsertFunction(SanCovTracePCIndirName,
VoidTy
, IntptrTy);
434
M.getOrInsertFunction(SanCovTraceCmp1, SanCovTraceCmpZeroExtAL,
VoidTy
,
437
M.getOrInsertFunction(SanCovTraceCmp2, SanCovTraceCmpZeroExtAL,
VoidTy
,
440
M.getOrInsertFunction(SanCovTraceCmp4, SanCovTraceCmpZeroExtAL,
VoidTy
,
443
M.getOrInsertFunction(SanCovTraceCmp8,
VoidTy
, Int64Ty, Int64Ty);
446
SanCovTraceConstCmp1, SanCovTraceCmpZeroExtAL,
VoidTy
, Int8Ty, Int8Ty);
448
SanCovTraceConstCmp2, SanCovTraceCmpZeroExtAL,
VoidTy
, Int16Ty, Int16Ty);
450
SanCovTraceConstCmp4, SanCovTraceCmpZeroExtAL,
VoidTy
, Int32Ty, Int32Ty);
452
M.getOrInsertFunction(SanCovTraceConstCmp8,
VoidTy
, Int64Ty, Int64Ty)
[
all
...]
HWAddressSanitizer.cpp
278
Type *
VoidTy
= Type::getVoidTy(M.getContext());
1496
FunctionCallee UnwindGetGR = M.getOrInsertFunction("_Unwind_GetGR",
VoidTy
);
1497
FunctionCallee UnwindGetCFA = M.getOrInsertFunction("_Unwind_GetCFA",
VoidTy
);
/src/external/apache2/llvm/dist/llvm/lib/ExecutionEngine/Orc/
LLJIT.cpp
182
auto *
VoidTy
= Type::getVoidTy(*Ctx);
184
*M, "__lljit_run_atexits", FunctionType::get(
VoidTy
, {}, false),
424
auto *
VoidTy
= Type::getVoidTy(*Ctx);
426
auto *AtExitCallbackTy = FunctionType::get(
VoidTy
, {BytePtrTy}, false);
705
auto *
VoidTy
= Type::getVoidTy(*Ctx);
707
auto *AtExitCallbackTy = FunctionType::get(
VoidTy
, {BytePtrTy}, false);
/src/external/apache2/llvm/dist/clang/lib/StaticAnalyzer/Checkers/
StdLibraryFunctionsChecker.cpp
1050
const QualType
VoidTy
= ACtx.
VoidTy
;
1058
const QualType VoidPtrTy = getPointerTy(
VoidTy
); // void *
1064
getPointerTy(getConstTy(
VoidTy
)); // const void *
1883
"rewinddir", Signature(ArgTypes{DirPtrTy}, RetType{
VoidTy
}),
1888
"seekdir", Signature(ArgTypes{DirPtrTy, LongTy}, RetType{
VoidTy
}),
2639
Signature(ArgTypes{VoidPtrRestrictTy}, RetType{
VoidTy
}),
/src/external/apache2/llvm/dist/llvm/lib/IR/
LLVMContextImpl.h
1429
Type
VoidTy
, LabelTy, HalfTy, BFloatTy, FloatTy, DoubleTy, MetadataTy,
Instructions.cpp
766
Type *
VoidTy
= Type::getVoidTy(M->getContext());
769
FunctionCallee FreeFunc = M->getOrInsertFunction("free",
VoidTy
, IntPtrTy);
/src/external/apache2/llvm/dist/llvm/lib/Target/Hexagon/
HexagonLoopIdiomRecognition.cpp
2274
Type *
VoidTy
= Type::getVoidTy(Ctx);
2277
HexagonVolatileMemcpyName,
VoidTy
, Int32PtrTy, Int32PtrTy, Int32Ty);
/src/external/apache2/llvm/dist/llvm/lib/Transforms/Coroutines/
CoroSplit.cpp
462
auto *
VoidTy
= Type::getVoidTy(Context);
463
return FunctionType::get(
VoidTy
, StructTy->elements(), false);
/src/external/apache2/llvm/dist/clang/include/clang/AST/
ASTContext.h
1001
CanQualType
VoidTy
;
Completed in 65 milliseconds
Indexes created Thu Sep 24 00:25:51 UTC 2026