Searched refs:MemAlign (Results 1 – 7 of 7) sorted by relevance
/external/llvm-project/llvm/lib/Target/ARM/ |
D | ARMTargetTransformInfo.cpp | 66 static Value *simplifyNeonVld1(const IntrinsicInst &II, unsigned MemAlign, in simplifyNeonVld1() argument 73 unsigned Alignment = IntrAlign->getLimitedValue() < MemAlign in simplifyNeonVld1() 74 ? MemAlign in simplifyNeonVld1() 125 Align MemAlign = in instCombineIntrinsic() local 128 if (Value *V = simplifyNeonVld1(II, MemAlign.value(), IC.Builder)) { in instCombineIntrinsic() 147 Align MemAlign = in instCombineIntrinsic() local 153 if (Align && *Align < MemAlign) { in instCombineIntrinsic() 156 ConstantInt::get(Type::getInt32Ty(II.getContext()), MemAlign.value(), in instCombineIntrinsic()
|
/external/llvm-project/llvm/lib/Target/WebAssembly/ |
D | WebAssemblyISelLowering.cpp | 708 Align MemAlign; in getTgtMemIntrinsic() local 713 MemAlign = Align(1); in getTgtMemIntrinsic() 718 MemAlign = Align(2); in getTgtMemIntrinsic() 723 MemAlign = Align(4); in getTgtMemIntrinsic() 728 MemAlign = Align(8); in getTgtMemIntrinsic() 746 Info.align = MemAlign; in getTgtMemIntrinsic()
|
/external/swiftshader/third_party/llvm-10.0/llvm/lib/Transforms/InstCombine/ |
D | InstCombineCalls.cpp | 1446 unsigned MemAlign, in simplifyNeonVld1() argument 1453 unsigned Alignment = IntrAlign->getLimitedValue() < MemAlign ? in simplifyNeonVld1() 1454 MemAlign : IntrAlign->getLimitedValue(); in simplifyNeonVld1() 3310 unsigned MemAlign = getKnownAlignment(II->getArgOperand(0), in visitCallInst() local 3312 if (Value *V = simplifyNeonVld1(*II, MemAlign, Builder)) in visitCallInst() 3330 unsigned MemAlign = in visitCallInst() local 3334 if (IntrAlign && IntrAlign->getZExtValue() < MemAlign) { in visitCallInst() 3337 MemAlign, false)); in visitCallInst()
|
/external/llvm/lib/Transforms/InstCombine/ |
D | InstCombineCalls.cpp | 2107 unsigned MemAlign = getKnownAlignment(II->getArgOperand(0), DL, II, AC, DT); in visitCallInst() local 2110 if (IntrAlign && IntrAlign->getZExtValue() < MemAlign) { in visitCallInst() 2113 MemAlign, false)); in visitCallInst()
|
/external/llvm-project/llvm/lib/Target/AMDGPU/ |
D | AMDGPULegalizerInfo.cpp | 2389 const Align MemAlign = MMO->getAlign(); in legalizeLoad() local 2390 const unsigned AlignInBits = 8 * MemAlign.value(); in legalizeLoad() 4450 const Align MemAlign(4); in legalizeSBufferLoad() local 4455 MemSize, MemAlign); in legalizeSBufferLoad()
|
D | AMDGPURegisterBankInfo.cpp | 1454 const Align MemAlign(4); // FIXME: ABI type alignment? in applyMappingSBufferLoad() local 1459 MemSize, MemAlign); in applyMappingSBufferLoad()
|
/external/llvm-project/llvm/lib/CodeGen/SelectionDAG/ |
D | SelectionDAGBuilder.cpp | 9867 MaybeAlign MemAlign = Arg.getParamAlign(); in LowerArguments() local 9868 if (!MemAlign) in LowerArguments() 9869 MemAlign = Align(TLI->getByValTypeAlignment(ArgMemTy, DL)); in LowerArguments() 9873 Flags.setByRefAlign(*MemAlign); in LowerArguments() 9876 Flags.setByValAlign(*MemAlign); in LowerArguments()
|