OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:AccessTy
(Results
1 - 3
of
3
) sorted by null
/external/llvm/lib/Analysis/
Loads.cpp
149
Type *
AccessTy
= cast<PointerType>(Ptr->getType())->getElementType();
150
AccessSize = AA->getTypeStoreSize(
AccessTy
);
/external/llvm/lib/Transforms/Scalar/
CodeGenPrepare.cpp
125
bool OptimizeMemoryInst(Instruction *I, Value *Addr, Type *
AccessTy
);
655
Type *
AccessTy
;
656
if (TLI->GetAddrModeArguments(II, PtrOps,
AccessTy
))
658
if (OptimizeMemoryInst(II, PtrOps.pop_back_val(),
AccessTy
))
891
///
AccessTy
/MemoryInst - This is the type for the access (e.g. double) and
893
Type *
AccessTy
;
908
: AddrModeInsts(AMI), TLI(T),
AccessTy
(AT), MemoryInst(MI), AddrMode(AM) {
914
/// give an access type of
AccessTy
. This returns a list of involved
916
static ExtAddrMode Match(Value *V, Type *
AccessTy
,
[
all
...]
LoopStrengthReduce.cpp
637
Type *
AccessTy
= Inst->getType();
639
AccessTy
= SI->getOperand(0)->getType();
649
AccessTy
= II->getArgOperand(0)->getType();
656
if (PointerType *PTy = dyn_cast<PointerType>(
AccessTy
))
657
AccessTy
= PointerType::get(IntegerType::get(PTy->getContext(), 1),
660
return
AccessTy
;
[
all
...]
Completed in 113 milliseconds