Home
last modified time | relevance | path

Searched refs:LowWidth (Results 1 – 8 of 8) sorted by relevance

/freebsd/contrib/llvm-project/llvm/lib/Target/Lanai/
H A DLanaiInstrInfo.cpp112 LocationSize LowWidth = (LowOffset == OffsetA) ? WidthA : WidthB; in areMemAccessesTriviallyDisjoint() local
113 if (LowWidth.hasValue() && in areMemAccessesTriviallyDisjoint()
114 LowOffset + (int)LowWidth.getValue() <= HighOffset) in areMemAccessesTriviallyDisjoint()
/freebsd/contrib/llvm-project/llvm/lib/Target/SystemZ/
H A DSystemZInstrInfo.cpp2331 LocationSize LowWidth = (LowOffset == OffsetA) ? WidthA : WidthB; in areMemAccessesTriviallyDisjoint() local
2332 if (LowWidth.hasValue() && in areMemAccessesTriviallyDisjoint()
2333 LowOffset + (int)LowWidth.getValue() <= HighOffset) in areMemAccessesTriviallyDisjoint()
/freebsd/contrib/llvm-project/llvm/lib/CodeGen/
H A DMachineInstr.cpp1474 int64_t LowWidth = (MinOffset == OffsetA) in MemOperandsHaveAlias() local
1477 return (MinOffset + LowWidth > MaxOffset); in MemOperandsHaveAlias()
/freebsd/contrib/llvm-project/llvm/lib/Target/RISCV/
H A DRISCVInstrInfo.cpp3314 LocationSize LowWidth = (LowOffset == OffsetA) ? WidthA : WidthB; in areMemAccessesTriviallyDisjoint() local
3315 if (LowWidth.hasValue() && in areMemAccessesTriviallyDisjoint()
3316 LowOffset + (int)LowWidth.getValue() <= HighOffset) in areMemAccessesTriviallyDisjoint()
/freebsd/contrib/llvm-project/llvm/lib/Target/PowerPC/
H A DPPCInstrInfo.cpp5817 LocationSize LowWidth = (LowOffset == OffsetA) ? WidthA : WidthB; in areMemAccessesTriviallyDisjoint() local
5818 if (LowWidth.hasValue() && in areMemAccessesTriviallyDisjoint()
5819 LowOffset + (int)LowWidth.getValue() <= HighOffset) in areMemAccessesTriviallyDisjoint()
/freebsd/contrib/llvm-project/llvm/lib/Target/AArch64/
H A DAArch64InstrInfo.cpp1236 TypeSize LowWidth = (LowOffset == OffsetA) ? WidthA : WidthB; in areMemAccessesTriviallyDisjoint() local
1237 if (LowWidth.isScalable() == OffsetAIsScalable && in areMemAccessesTriviallyDisjoint()
1238 LowOffset + (int)LowWidth.getKnownMinValue() <= HighOffset) in areMemAccessesTriviallyDisjoint()
/freebsd/contrib/llvm-project/llvm/lib/Target/AMDGPU/
H A DSIInstrInfo.cpp3818 LocationSize LowWidth = (LowOffset == OffsetA) ? WidthA : WidthB; in offsetsDoNotOverlap() local
3819 return LowWidth.hasValue() && in offsetsDoNotOverlap()
3820 LowOffset + (int)LowWidth.getValue() <= HighOffset; in offsetsDoNotOverlap()
/freebsd/contrib/llvm-project/llvm/lib/Target/ARM/
H A DARMISelLowering.cpp19096 unsigned LowWidth = N->getOperand(0).getValueType().getSizeInBits(); in PerformDAGCombine() local
19097 APInt LowMask = APInt::getLowBitsSet(LowWidth, 16); in PerformDAGCombine()
19108 unsigned LowWidth = N->getOperand(1).getValueType().getSizeInBits(); in PerformDAGCombine() local
19109 APInt LowMask = APInt::getLowBitsSet(LowWidth, 16); in PerformDAGCombine()