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

/external/llvm/lib/Transforms/InstCombine/
H A DInstCombineCalls.cpp34 unsigned DstAlign = getKnownAlignment(MI->getArgOperand(0), TD); local
36 unsigned MinAlign = std::min(DstAlign, SrcAlign);
109 DstAlign = std::max(DstAlign, CopyAlign);
116 S->setAlignment(DstAlign);
/external/llvm/lib/CodeGen/SelectionDAG/
H A DSelectionDAG.cpp3341 unsigned DstAlign, unsigned SrcAlign,
3346 assert((SrcAlign == 0 || SrcAlign >= DstAlign) &&
3350 // it's the inferred alignment of the source. 'DstAlign', on the other hand,
3355 EVT VT = TLI.getOptimalMemOpType(Size, DstAlign, SrcAlign,
3360 if (DstAlign >= TLI.getTargetData()->getPointerPrefAlignment() ||
3364 switch (DstAlign & 7) {
3339 FindOptimalMemOpLowering(std::vector<EVT> &MemOps, unsigned Limit, uint64_t Size, unsigned DstAlign, unsigned SrcAlign, bool IsZeroVal, bool MemcpyStrSrc, SelectionDAG &DAG, const TargetLowering &TLI) argument
/external/llvm/lib/Target/PowerPC/
H A DPPCISelLowering.cpp5820 /// lowering. If DstAlign is zero that means it's safe to destination
5831 unsigned DstAlign, unsigned SrcAlign,
5830 getOptimalMemOpType(uint64_t Size, unsigned DstAlign, unsigned SrcAlign, bool IsZeroVal, bool MemcpyStrSrc, MachineFunction &MF) const argument
/external/llvm/lib/Target/ARM/
H A DARMISelLowering.cpp8484 static bool memOpAlign(unsigned DstAlign, unsigned SrcAlign, argument
8487 (DstAlign == 0 || DstAlign % AlignCheck == 0));
8491 unsigned DstAlign, unsigned SrcAlign,
8501 if (memOpAlign(SrcAlign, DstAlign, 16) && Size >= 16) {
8503 } else if (memOpAlign(SrcAlign, DstAlign, 8) && Size >= 8) {
8490 getOptimalMemOpType(uint64_t Size, unsigned DstAlign, unsigned SrcAlign, bool IsZeroVal, bool MemcpyStrSrc, MachineFunction &MF) const argument
/external/llvm/lib/Target/X86/
H A DX86ISelLowering.cpp1304 /// lowering. If DstAlign is zero that means it's safe to destination
1316 unsigned DstAlign, unsigned SrcAlign,
1328 ((DstAlign == 0 || DstAlign >= 16) &&
1315 getOptimalMemOpType(uint64_t Size, unsigned DstAlign, unsigned SrcAlign, bool IsZeroVal, bool MemcpyStrSrc, MachineFunction &MF) const argument

Completed in 164 milliseconds