OpenGrok
Home
Sort by:
relevance
|
last modified time
|
path
Full Search
in project(s):
src
xsrc
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:PointerTy
(Results
1 - 13
of
13
) sorted by relevancy
/src/external/apache2/llvm/dist/llvm/include/llvm/ADT/
PointerIntPair.h
42
template <typename
PointerTy
, unsigned IntBits, typename IntType = unsigned,
43
typename PtrTraits = PointerLikeTypeTraits<
PointerTy
>,
44
typename Info = PointerIntPairInfo<
PointerTy
, IntBits, PtrTraits>>
53
PointerIntPair(
PointerTy
PtrVal, IntType IntVal) {
57
explicit PointerIntPair(
PointerTy
PtrVal) { initWithPointer(PtrVal); }
59
PointerTy
getPointer() const { return Info::getPointer(Value); }
63
void setPointer(
PointerTy
PtrVal) LLVM_LVALUE_FUNCTION {
71
void initWithPointer(
PointerTy
PtrVal) LLVM_LVALUE_FUNCTION {
75
void setPointerAndInt(
PointerTy
PtrVal, IntType IntVal) LLVM_LVALUE_FUNCTION {
80
PointerTy
const *getAddrOfPointer() const
[
all
...]
/src/external/apache2/llvm/dist/llvm/include/llvm/ExecutionEngine/
GenericValue.h
21
using
PointerTy
= void *;
31
PointerTy
PointerVal;
/src/external/apache2/llvm/dist/llvm/lib/ExecutionEngine/
ExecutionEngine.cpp
354
// Endian safe: Array[i] = (
PointerTy
)Dest;
743
GV.PointerVal =
PointerTy
(uintptr_t(GV.IntVal.getZExtValue()));
1040
if (StoreBytes != sizeof(
PointerTy
))
1043
*((
PointerTy
*)Ptr) = Val.PointerVal;
1086
Result.PointerVal = *((
PointerTy
*)Ptr);
/src/external/apache2/llvm/dist/llvm/lib/Transforms/Scalar/
SROA.cpp
1573
/// resulting pointer has
PointerTy
.
1588
APInt Offset, Type *
PointerTy
,
1607
PointerType *TargetPtrTy = cast<PointerType>(
PointerTy
);
1611
// address space from the expected `
PointerTy
` (the pointer to be used).
1614
PointerTy
= TargetTy->getPointerTo(AS);
1643
if (P->getType() ==
PointerTy
)
1669
Ptr, IRB.getInt8PtrTy(
PointerTy
->getPointerAddressSpace()),
2407
Value *getNewAllocaSlicePtr(IRBuilderTy &IRB, Type *
PointerTy
) {
2435
APInt(DL.getIndexTypeSizeInBits(
PointerTy
), Offset),
2436
PointerTy
,
[
all
...]
/src/external/apache2/llvm/dist/clang/lib/CodeGen/
ItaniumCXXABI.cpp
3306
static bool TypeInfoIsInStandardLibrary(const PointerType *
PointerTy
) {
3307
QualType PointeeTy =
PointerTy
->getPointeeType();
3331
if (const PointerType *
PointerTy
= dyn_cast<PointerType>(Ty))
3332
return TypeInfoIsInStandardLibrary(
PointerTy
);
3404
if (const PointerType *
PointerTy
= dyn_cast<PointerType>(Ty))
3405
return ContainsIncompleteClassType(
PointerTy
->getPointeeType());
/src/external/apache2/llvm/dist/llvm/include/llvm/CodeGen/
TargetLowering.h
1400
EVT
PointerTy
(getPointerTy(DL, PTy->getAddressSpace()));
1401
EltTy =
PointerTy
.getTypeForEVT(Ty->getContext());
1418
EVT
PointerTy
(getPointerMemTy(DL, PT->getAddressSpace()));
1419
Elm =
PointerTy
.getTypeForEVT(Ty->getContext());
/src/external/apache2/llvm/dist/clang/lib/Sema/
SemaStmt.cpp
2875
QualType
PointerTy
= PVD->getType();
2876
if (
PointerTy
->isPointerType() && ArrayTy->isArrayType()) {
2878
<< RangeLoc << PVD << ArrayTy <<
PointerTy
;
SemaOverload.cpp
7879
const PointerType *
PointerTy
= Ty->getAs<PointerType>();
7881
if (!
PointerTy
) {
7886
PointeeTy =
PointerTy
->getPointeeType();
7946
const MemberPointerType *
PointerTy
= Ty->getAs<MemberPointerType>();
7947
assert(
PointerTy
&& "type was not a member pointer type!");
7949
QualType PointeeTy =
PointerTy
->getPointeeType();
7956
const Type *ClassTy =
PointerTy
->getClass();
SemaExpr.cpp
7793
/// Return false if the NullExpr can be promoted to
PointerTy
,
7796
QualType
PointerTy
) {
7797
if ((!
PointerTy
->isAnyPointerType() && !
PointerTy
->isBlockPointerType()) ||
7802
NullExpr = S.ImpCastExprToType(NullExpr.get(),
PointerTy
, CK_NullToPointer);
/src/external/apache2/llvm/dist/llvm/include/llvm-c/
Core.h
1450
unsigned LLVMGetPointerAddressSpace(LLVMTypeRef
PointerTy
);
/src/external/apache2/llvm/dist/llvm/lib/IR/
Core.cpp
813
unsigned LLVMGetPointerAddressSpace(LLVMTypeRef
PointerTy
) {
814
return unwrap<PointerType>(
PointerTy
)->getAddressSpace();
/src/external/apache2/llvm/dist/llvm/lib/ExecutionEngine/Interpreter/
Execution.cpp
1533
Dest.PointerVal =
PointerTy
(intptr_t(Src.IntVal.getZExtValue()));
/src/external/apache2/llvm/dist/clang/lib/AST/
ExprConstant.cpp
1601
void setNull(ASTContext &Ctx, QualType
PointerTy
) {
1604
CharUnits::fromQuantity(Ctx.getTargetNullPointerValue(
PointerTy
));
1606
Designator = SubobjectDesignator(
PointerTy
->getPointeeType());
Completed in 126 milliseconds
Indexes created Wed Aug 05 00:25:39 UTC 2026