OpenGrok
Home
Sort by:
relevance
|
last modified time
|
path
Full Search
in project(s):
src
xsrc
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:getIntPtrType
(Results
1 - 25
of
68
) sorted by relevancy
1
2
3
/src/external/apache2/llvm/dist/llvm/lib/Target/
Target.cpp
86
return wrap(unwrap(TD)->
getIntPtrType
(*unwrap(LLVMGetGlobalContext())));
90
return wrap(unwrap(TD)->
getIntPtrType
(*unwrap(LLVMGetGlobalContext()), AS));
94
return wrap(unwrap(TD)->
getIntPtrType
(*unwrap(C)));
98
return wrap(unwrap(TD)->
getIntPtrType
(*unwrap(C), AS));
/src/external/apache2/llvm/dist/llvm/lib/Target/XCore/
XCoreSelectionDAGInfo.cpp
29
Entry.Ty = DAG.getDataLayout().
getIntPtrType
(*DAG.getContext());
/src/external/apache2/llvm/dist/llvm/lib/Target/Hexagon/
HexagonSelectionDAGInfo.cpp
36
Entry.Ty = DAG.getDataLayout().
getIntPtrType
(*DAG.getContext());
/src/external/apache2/llvm/dist/llvm/lib/CodeGen/
IndirectBrExpandPass.cpp
161
auto *ITy = cast<IntegerType>(DL.
getIntPtrType
(BA->getType()));
200
cast<IntegerType>(DL.
getIntPtrType
(IBr->getAddress()->getType()));
LowerEmuTLS.cpp
117
IntegerType *WordType = DL.
getIntPtrType
(C);
IntrinsicLowering.cpp
337
Type *IntPtr = DL.
getIntPtrType
(Context);
348
Type *IntPtr = DL.
getIntPtrType
(Context);
360
Type *IntPtr = DL.
getIntPtrType
(Op0->getType());
/src/external/apache2/llvm/dist/llvm/lib/Transforms/Utils/
VNCoercion.cpp
89
StoredValTy = DL.
getIntPtrType
(StoredValTy);
95
TypeToCastTo = DL.
getIntPtrType
(TypeToCastTo);
118
StoredValTy = DL.
getIntPtrType
(StoredValTy);
444
SrcVal = Helper.CreatePtrToInt(SrcVal, DL.
getIntPtrType
(SrcVal->getType()));
BuildLibCalls.cpp
1242
return emitLibCall(LibFunc_strlen, DL.
getIntPtrType
(Context),
1265
{B.getInt8PtrTy(), B.getInt8PtrTy(), DL.
getIntPtrType
(Context)},
1310
B.getInt8PtrTy(), B.getInt8PtrTy(), DL.
getIntPtrType
(Context),
1311
DL.
getIntPtrType
(Context));
1326
{B.getInt8PtrTy(), B.getInt8PtrTy(), DL.
getIntPtrType
(Context)},
1335
{B.getInt8PtrTy(), B.getInt32Ty(), DL.
getIntPtrType
(Context)},
1344
{B.getInt8PtrTy(), B.getInt8PtrTy(), DL.
getIntPtrType
(Context)},
1353
{B.getInt8PtrTy(), B.getInt8PtrTy(), DL.
getIntPtrType
(Context)},
1623
FWriteName, DL.
getIntPtrType
(Context), B.getInt8PtrTy(),
1624
DL.
getIntPtrType
(Context), DL.getIntPtrType(Context), File->getType())
[
all
...]
SimplifyLibCalls.cpp
240
ConstantInt::get(DL.
getIntPtrType
(Src->getContext()), Len + 1));
306
ConstantInt::get(DL.
getIntPtrType
(CI->getContext()), Len),
391
ConstantInt::get(DL.
getIntPtrType
(CI->getContext()),
401
ConstantInt::get(DL.
getIntPtrType
(CI->getContext()), Len2), B, DL,
407
ConstantInt::get(DL.
getIntPtrType
(CI->getContext()), Len1), B, DL,
469
ConstantInt::get(DL.
getIntPtrType
(CI->getContext()), Len2), B, DL,
476
ConstantInt::get(DL.
getIntPtrType
(CI->getContext()), Len1), B, DL,
513
ConstantInt::get(DL.
getIntPtrType
(CI->getContext()), Len));
536
Value *LenV = ConstantInt::get(DL.
getIntPtrType
(PT), Len);
538
ConstantInt::get(DL.
getIntPtrType
(PT), Len - 1))
[
all
...]
RelLookupTableConverter.cpp
110
Type *IntPtrTy = M.getDataLayout().
getIntPtrType
(M.getContext());
FunctionComparator.cpp
419
TyL = DL.
getIntPtrType
(TyL);
421
TyR = DL.
getIntPtrType
(TyR);
/src/external/apache2/llvm/dist/llvm/include/llvm/IR/
DataLayout.h
550
IntegerType *
getIntPtrType
(LLVMContext &C, unsigned AddressSpace = 0) const;
554
Type *
getIntPtrType
(Type *) const;
/src/external/apache2/llvm/dist/clang/lib/Basic/Targets/
NVPTX.cpp
135
IntPtrType = HostTarget->
getIntPtrType
();
/src/external/apache2/llvm/dist/llvm/bindings/ocaml/target/
llvm_target.mli
79
See the method [llvm::DataLayout::
getIntPtrType
]. *)
88
See the method [llvm::DataLayout::
getIntPtrType
]. *)
/src/external/apache2/llvm/dist/llvm/lib/Transforms/Instrumentation/
BoundsChecking.cpp
76
Type *IntTy = DL.
getIntPtrType
(Ptr->getType());
/src/external/apache2/llvm/dist/llvm/lib/Transforms/Scalar/
SeparateConstOffsetFromGEP.cpp
798
Type *IntPtrTy = DL->
getIntPtrType
(GEP->getType());
849
Type *IntPtrTy = DL->
getIntPtrType
(Variadic->getType());
921
Type *IntPtrTy = DL->
getIntPtrType
(Variadic->getType());
1100
Type *IntPtrTy = DL->
getIntPtrType
(GEP->getType());
StraightLineStrengthReduce.cpp
488
IntegerType *IntPtrTy = cast<IntegerType>(DL->
getIntPtrType
(I->getType()));
679
Type *IntPtrTy = DL->
getIntPtrType
(C.Ins->getType());
NaryReassociate.cpp
447
Type *IntPtrTy = DL->
getIntPtrType
(GEP->getType());
/src/external/apache2/llvm/dist/clang/lib/Frontend/
InitPreprocessor.cpp
880
DefineTypeSize("__INTPTR_MAX__", TI.
getIntPtrType
(), TI, Builder);
914
DefineType("__INTPTR_TYPE__", TI.
getIntPtrType
(), Builder);
915
DefineFmt("__INTPTR", TI.
getIntPtrType
(), TI, Builder);
916
DefineTypeWidth("__INTPTR_WIDTH__", TI.
getIntPtrType
(), TI, Builder);
/src/external/apache2/llvm/dist/llvm/lib/Target/ARM/
ARMSelectionDAGInfo.cpp
91
Entry.Ty = DAG.getDataLayout().
getIntPtrType
(*DAG.getContext());
/src/external/apache2/llvm/dist/llvm/lib/Target/X86/
X86SelectionDAGInfo.cpp
79
Type *IntPtrTy = DAG.getDataLayout().
getIntPtrType
(*DAG.getContext());
/src/external/apache2/llvm/dist/llvm/bindings/go/llvm/
target.go
143
// See the method llvm::TargetData::
getIntPtrType
.
/src/external/apache2/llvm/dist/llvm/lib/IR/
DataLayout.cpp
838
IntegerType *DataLayout::
getIntPtrType
(LLVMContext &C,
843
Type *DataLayout::
getIntPtrType
(Type *Ty) const {
/src/external/apache2/llvm/dist/llvm/lib/CodeGen/GlobalISel/
CallLowering.cpp
781
LLT OffsetLLTy = getLLTForType(*DL.
getIntPtrType
(RetPtrTy), DL);
812
getLLTForType(*DL.
getIntPtrType
(RetTy->getPointerTo(AS)), DL);
/src/external/apache2/llvm/dist/llvm/lib/Analysis/
ConstantFolding.cpp
538
CE->getOperand(0)->getType() == DL.
getIntPtrType
(CE->getType())) {
584
Type *CastTy = LoadTy->isPtrOrPtrVectorTy() ? DL.
getIntPtrType
(LoadTy) : LoadTy;
1245
Type *IntPtrTy = DL.
getIntPtrType
(CE0->getType());
1257
Type *IntPtrTy = DL.
getIntPtrType
(CE0->getOperand(0)->getType());
1269
Type *IntPtrTy = DL.
getIntPtrType
(CE0->getType());
1283
Type *IntPtrTy = DL.
getIntPtrType
(CE0->getOperand(0)->getType());
Completed in 57 milliseconds
1
2
3
Indexes created Tue Feb 24 08:35:24 UTC 2026