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

/external/llvm/lib/Transforms/InstCombine/
H A DInstCombineCalls.cpp59 unsigned DstAlign = getKnownAlignment(MI->getArgOperand(0), TD); local
61 unsigned MinAlign = std::min(DstAlign, SrcAlign);
136 DstAlign = std::max(DstAlign, CopyAlign);
145 S->setAlignment(DstAlign);
/external/llvm/lib/Target/Mips/
H A DMipsISelLowering.cpp3053 EVT MipsTargetLowering::getOptimalMemOpType(uint64_t Size, unsigned DstAlign, argument
/external/llvm/lib/CodeGen/SelectionDAG/
H A DSelectionDAG.cpp3505 unsigned DstAlign, unsigned SrcAlign,
3512 assert((SrcAlign == 0 || SrcAlign >= DstAlign) &&
3516 // it's the inferred alignment of the source. 'DstAlign', on the other hand,
3521 EVT VT = TLI.getOptimalMemOpType(Size, DstAlign, SrcAlign,
3526 if (DstAlign >= TLI.getDataLayout()->getPointerPrefAlignment() ||
3530 switch (DstAlign & 7) {
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
/external/llvm/lib/Target/ARM/
H A DARMISelLowering.cpp9935 static bool memOpAlign(unsigned DstAlign, unsigned SrcAlign, argument
9938 (DstAlign == 0 || DstAlign % 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.cpp7834 /// lowering. If DstAlign is zero that means it's safe to destination
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.cpp1594 /// lowering. If DstAlign is zero that means it's safe to destination
1605 unsigned DstAlign, unsigned SrcAlign,
1615 ((DstAlign == 0 || DstAlign >= 16) &&
1604 getOptimalMemOpType(uint64_t Size, unsigned DstAlign, unsigned SrcAlign, bool IsMemset, bool ZeroMemset, bool MemcpyStrSrc, MachineFunction &MF) const argument

Completed in 306 milliseconds