Searched refs:LoadedType (Results 1 – 6 of 6) sorted by relevance
/external/llvm/lib/Target/AArch64/ |
D | AArch64ISelLowering.h | 298 bool hasPairedLoad(Type *LoadedType, 300 bool hasPairedLoad(EVT LoadedType, unsigned &RequiredAligment) const override;
|
D | AArch64ISelLowering.cpp | 7063 bool AArch64TargetLowering::hasPairedLoad(Type *LoadedType, in hasPairedLoad() argument 7065 if (!LoadedType->isIntegerTy() && !LoadedType->isFloatTy()) in hasPairedLoad() 7069 unsigned NumBits = LoadedType->getPrimitiveSizeInBits(); in hasPairedLoad() 7073 bool AArch64TargetLowering::hasPairedLoad(EVT LoadedType, in hasPairedLoad() argument 7075 if (!LoadedType.isSimple() || in hasPairedLoad() 7076 (!LoadedType.isInteger() && !LoadedType.isFloatingPoint())) in hasPairedLoad() 7080 unsigned NumBits = LoadedType.getSizeInBits(); in hasPairedLoad()
|
/external/swiftshader/third_party/llvm-7.0/llvm/lib/Target/AArch64/ |
D | AArch64ISelLowering.h | 324 bool hasPairedLoad(EVT LoadedType, unsigned &RequiredAligment) const override;
|
D | AArch64ISelLowering.cpp | 8047 bool AArch64TargetLowering::hasPairedLoad(EVT LoadedType, in hasPairedLoad() argument 8049 if (!LoadedType.isSimple() || in hasPairedLoad() 8050 (!LoadedType.isInteger() && !LoadedType.isFloatingPoint())) in hasPairedLoad() 8054 unsigned NumBits = LoadedType.getSizeInBits(); in hasPairedLoad()
|
/external/llvm/lib/CodeGen/SelectionDAG/ |
D | DAGCombiner.cpp | 10209 EVT LoadedType = LS.getLoadedType(); in Cost() local 10210 if (TruncType != LoadedType && in Cost() 10211 !LS.DAG->getTargetLoweringInfo().isZExtFree(LoadedType, TruncType)) in Cost() 10543 EVT LoadedType = First->getLoadedType(); in adjustCostForPairing() local 10546 if (LoadedType != Second->getLoadedType()) in adjustCostForPairing() 10551 if (!TLI.hasPairedLoad(LoadedType, RequiredAlignment)) { in adjustCostForPairing()
|
/external/swiftshader/third_party/llvm-7.0/llvm/lib/CodeGen/SelectionDAG/ |
D | DAGCombiner.cpp | 12740 EVT LoadedType = LS.getLoadedType(); in Cost() local 12741 if (TruncType != LoadedType && in Cost() 12742 !LS.DAG->getTargetLoweringInfo().isZExtFree(LoadedType, TruncType)) in Cost() 13078 EVT LoadedType = First->getLoadedType(); in adjustCostForPairing() local 13081 if (LoadedType != Second->getLoadedType()) in adjustCostForPairing() 13086 if (!TLI.hasPairedLoad(LoadedType, RequiredAlignment)) { in adjustCostForPairing()
|