Home
last modified time | relevance | path

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

/external/llvm/lib/Transforms/InstCombine/
DInstCombineVectorOps.cpp800 SmallVector<Constant *, 16> MaskValues; in EvaluateInDifferentElementOrder() local
803 MaskValues.push_back(UndefValue::get(Builder->getInt32Ty())); in EvaluateInDifferentElementOrder()
805 MaskValues.push_back(Builder->getInt32(Mask[i])); in EvaluateInDifferentElementOrder()
808 ConstantVector::get(MaskValues)); in EvaluateInDifferentElementOrder()
/external/llvm/lib/CodeGen/
DIntrinsicLowering.cpp265 static const uint64_t MaskValues[6] = { in LowerCTPOP() local
281 Value *MaskCst = ConstantInt::get(V->getType(), MaskValues[ct]); in LowerCTPOP()
/external/swiftshader/third_party/LLVM/lib/CodeGen/
DIntrinsicLowering.cpp265 static const uint64_t MaskValues[6] = { in LowerCTPOP() local
281 Value *MaskCst = ConstantInt::get(V->getType(), MaskValues[ct]); in LowerCTPOP()
/external/swiftshader/third_party/llvm-7.0/llvm/lib/CodeGen/
DIntrinsicLowering.cpp263 static const uint64_t MaskValues[6] = { in LowerCTPOP() local
279 Value *MaskCst = ConstantInt::get(V->getType(), MaskValues[ct]); in LowerCTPOP()
/external/swiftshader/third_party/llvm-7.0/llvm/lib/Transforms/InstCombine/
DInstCombineVectorOps.cpp1025 SmallVector<Constant *, 16> MaskValues; in EvaluateInDifferentElementOrder() local
1028 MaskValues.push_back(UndefValue::get(Builder.getInt32Ty())); in EvaluateInDifferentElementOrder()
1030 MaskValues.push_back(Builder.getInt32(Mask[i])); in EvaluateInDifferentElementOrder()
1033 ConstantVector::get(MaskValues)); in EvaluateInDifferentElementOrder()
/external/swiftshader/third_party/llvm-7.0/llvm/lib/Target/PowerPC/
DPPCInstrInfo.td4818 def MaskValues {
4833 dag Bit = (OR (AND Shift1.Right, MaskValues.Lo1),
4834 (AND Shift1.Left, MaskValues.Hi1));
4843 dag Bits = (OR (AND Shift2.Right, MaskValues.Lo2),
4844 (AND Shift2.Left, MaskValues.Hi2));
4853 dag Bits = (OR (AND Shift4.Right, MaskValues.Lo4),
4854 (AND Shift4.Left, MaskValues.Hi4));
4884 dag Lo1 = (i64 (INSERT_SUBREG (i64 (IMPLICIT_DEF)), MaskValues.Lo1, sub_32));
4885 dag Hi1 = (i64 (INSERT_SUBREG (i64 (IMPLICIT_DEF)), MaskValues.Hi1, sub_32));
4886 dag Lo2 = (i64 (INSERT_SUBREG (i64 (IMPLICIT_DEF)), MaskValues.Lo2, sub_32));
[all …]
/external/swiftshader/third_party/llvm-7.0/llvm/lib/Transforms/Vectorize/
DLoopVectorize.cpp7238 InnerLoopVectorizer::VectorParts MaskValues(State.UF); in execute() local
7241 MaskValues[Part] = State.get(Mask, Part); in execute()
7242 State.ILV->vectorizeMemoryInstruction(&Instr, &MaskValues); in execute()