Home
last modified time | relevance | path

Searched refs:ByValAlign (Results 1 – 7 of 7) sorted by relevance

/external/swiftshader/third_party/llvm-7.0/llvm/include/llvm/CodeGen/
DTargetCallingConv.h44 unsigned ByValAlign : 4; ///< Log 2 of byval alignment member
57 IsSecArgPass(0), ByValAlign(0), OrigAlign(0), in ArgFlagsTy()
117 unsigned getByValAlign() const { return (1U << ByValAlign) / 2; } in getByValAlign()
119 ByValAlign = Log2_32(A) + 1; in setByValAlign()
/external/swiftshader/third_party/LLVM/include/llvm/Target/
DTargetCallingConv.h35 static const uint64_t ByValAlign = 0xFULL << 6; //< Struct alignment member
70 ((One << ((Flags & ByValAlign) >> ByValAlignOffs)) / 2); in getByValAlign()
73 Flags = (Flags & ~ByValAlign) | in setByValAlign()
/external/llvm/include/llvm/Target/
DTargetCallingConv.h42 static const uint64_t ByValAlign = 0xFULL<<7; ///< Struct alignment member
108 ((One << ((Flags & ByValAlign) >> ByValAlignOffs)) / 2); in getByValAlign()
111 Flags = (Flags & ~ByValAlign) | in setByValAlign()
/external/swiftshader/third_party/LLVM/lib/Transforms/Scalar/
DMemCpyOptimizer.cpp887 unsigned ByValAlign = CS.getParamAlignment(ArgNo+1); in processByValArgument() local
888 if (ByValAlign == 0) return false; in processByValArgument()
892 if (MDep->getAlignment() < ByValAlign && in processByValArgument()
893 getOrEnforceKnownAlignment(MDep->getSource(),ByValAlign, TD) < ByValAlign) in processByValArgument()
/external/swiftshader/third_party/llvm-7.0/llvm/lib/Transforms/Scalar/
DMemCpyOptimizer.cpp1343 unsigned ByValAlign = CS.getParamAlignment(ArgNo); in processByValArgument() local
1344 if (ByValAlign == 0) return false; in processByValArgument()
1350 if (MDep->getSourceAlignment() < ByValAlign && in processByValArgument()
1351 getOrEnforceKnownAlignment(MDep->getSource(), ByValAlign, DL, in processByValArgument()
1352 CS.getInstruction(), &AC, &DT) < ByValAlign) in processByValArgument()
/external/llvm/lib/Transforms/Scalar/
DMemCpyOptimizer.cpp1290 unsigned ByValAlign = CS.getParamAlignment(ArgNo+1); in processByValArgument() local
1291 if (ByValAlign == 0) return false; in processByValArgument()
1297 if (MDep->getAlignment() < ByValAlign && in processByValArgument()
1298 getOrEnforceKnownAlignment(MDep->getSource(), ByValAlign, DL, in processByValArgument()
1299 CS.getInstruction(), &AC, &DT) < ByValAlign) in processByValArgument()
/external/swiftshader/third_party/LLVM/lib/Target/Mips/
DMipsISelLowering.cpp1841 unsigned ByValAlign = Flags.getByValAlign(); in WriteByValArg() local
1852 false, false, std::min(ByValAlign, in WriteByValArg()
1870 unsigned Alignment = std::min(ByValAlign, (unsigned )4); in WriteByValArg()
1891 unsigned Alignment = std::min(ByValAlign, (unsigned )2); in WriteByValArg()
1917 std::min(ByValAlign, (unsigned)4), in WriteByValArg()