Searched refs:ExtMask (Results 1 – 6 of 6) sorted by relevance
/external/llvm-project/clang/lib/AST/Interp/ |
D | Integral.h | 145 const T ExtMask = ~BitMask; 146 return Integral((V & BitMask) | (Signed && (V & SignBit) ? ExtMask : 0));
|
/external/llvm-project/llvm/lib/Target/X86/ |
D | X86InstCombineIntrinsic.cpp | 44 Value *ExtMask; in getBoolVecFromMask() local 46 Mask, PatternMatch::m_SExt(PatternMatch::m_Value(ExtMask))) && in getBoolVecFromMask() 47 ExtMask->getType()->isIntOrIntVectorTy(1)) in getBoolVecFromMask() 48 return ExtMask; in getBoolVecFromMask()
|
/external/swiftshader/third_party/llvm-10.0/llvm/lib/Analysis/ |
D | VectorUtils.cpp | 717 Constant *ExtMask = in concatenateTwoVectors() local 719 V2 = Builder.CreateShuffleVector(V2, UndefValue::get(VecTy2), ExtMask); in concatenateTwoVectors()
|
/external/clang/lib/CodeGen/ |
D | CGExpr.cpp | 1779 SmallVector<llvm::Constant*, 4> ExtMask; in EmitStoreThroughExtVectorComponentLValue() local 1781 ExtMask.push_back(Builder.getInt32(i)); in EmitStoreThroughExtVectorComponentLValue() 1782 ExtMask.resize(NumDstElts, llvm::UndefValue::get(Int32Ty)); in EmitStoreThroughExtVectorComponentLValue() 1783 llvm::Value *ExtMaskV = llvm::ConstantVector::get(ExtMask); in EmitStoreThroughExtVectorComponentLValue()
|
/external/llvm-project/clang/lib/CodeGen/ |
D | CGExpr.cpp | 2276 SmallVector<int, 4> ExtMask; in EmitStoreThroughExtVectorComponentLValue() local 2278 ExtMask.push_back(i); in EmitStoreThroughExtVectorComponentLValue() 2279 ExtMask.resize(NumDstElts, -1); in EmitStoreThroughExtVectorComponentLValue() 2281 SrcVal, llvm::UndefValue::get(SrcVal->getType()), ExtMask); in EmitStoreThroughExtVectorComponentLValue()
|
/external/llvm/lib/Transforms/Vectorize/ |
D | LoopVectorize.cpp | 2204 Constant *ExtMask = in ConcatenateTwoVectors() local 2206 V2 = Builder.CreateShuffleVector(V2, UndefValue::get(VecTy2), ExtMask); in ConcatenateTwoVectors()
|