OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:getTypeSizeInBits
(Results
1 - 25
of
27
) sorted by null
1
2
/external/llvm/include/llvm/Target/
TargetData.h
203
///
getTypeSizeInBits
- Return the number of bits necessary to hold the
205
uint64_t
getTypeSizeInBits
(Type* Ty) const;
211
return (
getTypeSizeInBits
(Ty)+7)/8;
/external/llvm/lib/Transforms/Scalar/
IndVarSimplify.cpp
787
uint64_t Width = SE->
getTypeSizeInBits
(Ty);
801
if (Width > SE->
getTypeSizeInBits
(WI.WidestNativeType))
[
all
...]
LoopStrengthReduce.cpp
401
IntegerType::get(SE.getContext(), SE.
getTypeSizeInBits
(AR->getType()) + 1);
409
IntegerType::get(SE.getContext(), SE.
getTypeSizeInBits
(A->getType()) + 1);
418
SE.
getTypeSizeInBits
(M->getType()) * M->getNumOperands());
[
all
...]
ScalarReplAggregates.cpp
[
all
...]
GVN.cpp
668
if (TD.
getTypeSizeInBits
(StoredVal->getType()) <
669
TD.
getTypeSizeInBits
(LoadTy))
801
uint64_t LoadSize = TD.
getTypeSizeInBits
(LoadTy);
851
uint64_t StoreSize =TD.
getTypeSizeInBits
(DepSI->getValueOperand()->getType());
866
uint64_t DepSize = TD.
getTypeSizeInBits
(DepLI->getType());
[
all
...]
LoopIdiomRecognize.cpp
276
uint64_t SizeInBits = TD->
getTypeSizeInBits
(StoredVal->getType());
412
uint64_t Size = TD.
getTypeSizeInBits
(V->getType());
/external/llvm/lib/Analysis/
ScalarEvolution.cpp
714
unsigned W = SE.
getTypeSizeInBits
(ResultTy);
794
assert(
getTypeSizeInBits
(Op->getType()) >
getTypeSizeInBits
(Ty) &&
[
all
...]
ScalarEvolutionExpander.cpp
71
assert(SE.
getTypeSizeInBits
(V->getType()) == SE.
getTypeSizeInBits
(Ty) &&
80
SE.
getTypeSizeInBits
(Ty) == SE.
getTypeSizeInBits
(V->getType())) {
84
SE.
getTypeSizeInBits
(CI->getType()) ==
85
SE.
getTypeSizeInBits
(CI->getOperand(0)->getType()))
90
SE.
getTypeSizeInBits
(CE->getType()) ==
91
SE.
getTypeSizeInBits
(CE->getOperand(0)->getType()))
435
if (SE.
getTypeSizeInBits
(C->getType()) <= 64) {
[
all
...]
ScalarEvolutionAliasAnalysis.cpp
128
unsigned BitWidth = SE->
getTypeSizeInBits
(AS->getType());
IVUsers.cpp
92
uint64_t Width = SE->
getTypeSizeInBits
(I->getType());
ValueTracking.cpp
69
TD->
getTypeSizeInBits
(V->getType()->getScalarType()) == BitWidth) &&
277
SrcBitWidth = TD->
getTypeSizeInBits
(SrcTy);
[
all
...]
Lint.cpp
413
unsigned BitWidth = TD->
getTypeSizeInBits
(Ptr->getType());
ConstantFolding.cpp
608
unsigned BitWidth = TD->
getTypeSizeInBits
(IntPtrTy);
[
all
...]
/external/llvm/lib/Target/
Target.cpp
60
return unwrap(TD)->
getTypeSizeInBits
(unwrap(Ty));
TargetData.cpp
392
uint64_t TargetData::
getTypeSizeInBits
(Type *Ty) const {
424
llvm_unreachable("TargetData::
getTypeSizeInBits
(): Unsupported type");
484
return getAlignmentInfo((AlignTypeEnum)AlignType,
getTypeSizeInBits
(Ty),
578
if (
getTypeSizeInBits
(ElemType) > 128)
/external/llvm/lib/Transforms/InstCombine/
InstCombineLoadStoreAlloca.cpp
127
IC.getTargetData()->
getTypeSizeInBits
(SrcPTy) ==
128
IC.getTargetData()->
getTypeSizeInBits
(DestPTy)) {
307
IC.getTargetData()->
getTypeSizeInBits
(SrcPTy) !=
308
IC.getTargetData()->
getTypeSizeInBits
(DestPTy))
InstCombineSimplifyDemanded.cpp
109
assert((!TD || TD->
getTypeSizeInBits
(VTy->getScalarType()) == BitWidth) &&
[
all
...]
InstructionCombining.cpp
711
if (uint64_t(Offset*8) >= TD->
getTypeSizeInBits
(Ty))
[
all
...]
InstCombineCompares.cpp
[
all
...]
/external/llvm/bindings/ocaml/target/
llvm_target.mli
64
See the method llvm::TargetData::
getTypeSizeInBits
. *)
/external/clang/lib/CodeGen/
CGStmt.cpp
[
all
...]
CGExpr.cpp
[
all
...]
CGObjCGNU.cpp
[
all
...]
/external/llvm/include/llvm/Analysis/
ScalarEvolution.h
484
///
getTypeSizeInBits
- Return the size in bits of the specified type,
486
uint64_t
getTypeSizeInBits
(Type *Ty) const;
[
all
...]
/external/llvm/lib/CodeGen/SelectionDAG/
TargetLowering.cpp
[
all
...]
Completed in 944 milliseconds
1
2