Searched defs:SrcAlign (Results 1 - 6 of 6) sorted by relevance

/external/llvm/lib/Transforms/InstCombine/
H A DInstCombineCalls.cpp60 unsigned SrcAlign = getKnownAlignment(MI->getArgOperand(1), TD); local
61 unsigned MinAlign = std::min(DstAlign, SrcAlign);
135 SrcAlign = std::max(SrcAlign, CopyAlign);
141 L->setAlignment(SrcAlign);
/external/llvm/lib/Target/Mips/
H A DMipsISelLowering.cpp3054 unsigned SrcAlign,
3053 getOptimalMemOpType(uint64_t Size, unsigned DstAlign, unsigned SrcAlign, bool IsMemset, bool ZeroMemset, bool MemcpyStrSrc, MachineFunction &MF) const argument
/external/llvm/lib/CodeGen/SelectionDAG/
H A DSelectionDAG.cpp3505 unsigned DstAlign, unsigned SrcAlign,
3512 assert((SrcAlign == 0 || SrcAlign >= DstAlign) &&
3514 // If 'SrcAlign' is zero, that means the memory operation does not need to
3521 EVT VT = TLI.getOptimalMemOpType(Size, DstAlign, SrcAlign,
3630 unsigned SrcAlign = DAG.InferPtrAlignment(Src); local
3631 if (Align > SrcAlign)
3632 SrcAlign = Align;
3640 (isZeroStr ? 0 : SrcAlign),
3706 MinAlign(SrcAlign, SrcOf
3503 FindOptimalMemOpLowering(std::vector<EVT> &MemOps, unsigned Limit, uint64_t Size, unsigned DstAlign, unsigned SrcAlign, bool IsMemset, bool ZeroMemset, bool MemcpyStrSrc, bool AllowOverlap, SelectionDAG &DAG, const TargetLowering &TLI) argument
3745 unsigned SrcAlign = DAG.InferPtrAlignment(Src); local
[all...]
/external/llvm/lib/Target/ARM/
H A DARMISelLowering.cpp9935 static bool memOpAlign(unsigned DstAlign, unsigned SrcAlign, argument
9937 return ((SrcAlign == 0 || SrcAlign % AlignCheck == 0) &&
9942 unsigned DstAlign, unsigned SrcAlign,
9955 (memOpAlign(SrcAlign, DstAlign, 16) ||
9959 (memOpAlign(SrcAlign, DstAlign, 8) ||
9941 getOptimalMemOpType(uint64_t Size, unsigned DstAlign, unsigned SrcAlign, bool IsMemset, bool ZeroMemset, bool MemcpyStrSrc, MachineFunction &MF) const argument
/external/llvm/lib/Target/PowerPC/
H A DPPCISelLowering.cpp7835 /// alignment can satisfy any constraint. Similarly if SrcAlign is zero it
7844 unsigned DstAlign, unsigned SrcAlign,
7843 getOptimalMemOpType(uint64_t Size, unsigned DstAlign, unsigned SrcAlign, bool IsMemset, bool ZeroMemset, bool MemcpyStrSrc, MachineFunction &MF) const argument
/external/llvm/lib/Target/X86/
H A DX86ISelLowering.cpp1595 /// alignment can satisfy any constraint. Similarly if SrcAlign is zero it
1605 unsigned DstAlign, unsigned SrcAlign,
1616 (SrcAlign == 0 || SrcAlign >= 16)))) {
1604 getOptimalMemOpType(uint64_t Size, unsigned DstAlign, unsigned SrcAlign, bool IsMemset, bool ZeroMemset, bool MemcpyStrSrc, MachineFunction &MF) const argument

Completed in 557 milliseconds