Home
last modified time | relevance | path

Searched refs:LoadedType (Results 1 – 3 of 3) sorted by relevance

/external/llvm/lib/Target/AArch64/
DAArch64ISelLowering.h304 bool hasPairedLoad(Type *LoadedType,
306 bool hasPairedLoad(EVT LoadedType, unsigned &RequiredAligment) const override;
DAArch64ISelLowering.cpp6677 bool AArch64TargetLowering::hasPairedLoad(Type *LoadedType, in hasPairedLoad() argument
6679 if (!LoadedType->isIntegerTy() && !LoadedType->isFloatTy()) in hasPairedLoad()
6683 unsigned NumBits = LoadedType->getPrimitiveSizeInBits(); in hasPairedLoad()
6687 bool AArch64TargetLowering::hasPairedLoad(EVT LoadedType, in hasPairedLoad() argument
6689 if (!LoadedType.isSimple() || in hasPairedLoad()
6690 (!LoadedType.isInteger() && !LoadedType.isFloatingPoint())) in hasPairedLoad()
6694 unsigned NumBits = LoadedType.getSizeInBits(); in hasPairedLoad()
/external/llvm/lib/CodeGen/SelectionDAG/
DDAGCombiner.cpp9145 EVT LoadedType = LS.getLoadedType(); in Cost() local
9146 if (TruncType != LoadedType && in Cost()
9147 !LS.DAG->getTargetLoweringInfo().isZExtFree(LoadedType, TruncType)) in Cost()
9479 EVT LoadedType = First->getLoadedType(); in adjustCostForPairing() local
9482 if (LoadedType != Second->getLoadedType()) in adjustCostForPairing()
9487 if (!TLI.hasPairedLoad(LoadedType, RequiredAlignment)) { in adjustCostForPairing()