Home
last modified time | relevance | path

Searched refs:IsVector (Results 1 – 15 of 15) sorted by relevance

/netbsd-src/external/apache2/llvm/dist/llvm/include/llvm/Support/
H A DLowLevelTypeImpl.h86 explicit LLT() : IsPointer(false), IsVector(false), RawData(0) {} in LLT()
92 bool isScalar() const { return isValid() && !IsPointer && !IsVector; } in isScalar()
94 bool isPointer() const { return isValid() && IsPointer && !IsVector; } in isPointer()
96 bool isVector() const { return isValid() && IsVector; } in isVector()
101 assert(IsVector && "cannot get number of elements on scalar/aggregate"); in getNumElements()
165 if (!IsVector) { in getScalarSizeInBits()
181 if (!IsVector) in getAddressSpace()
206 return IsPointer == RHS.IsPointer && IsVector == RHS.IsVector &&
258 uint64_t IsVector : 1;
276 void init(bool IsPointer, bool IsVector, uint16_t NumElements,
[all …]
/netbsd-src/external/apache2/llvm/dist/llvm/include/llvm/CodeGen/GlobalISel/
H A DUtils.h376 bool isConstTrueVal(const TargetLowering &TLI, int64_t Val, bool IsVector,
381 int64_t getICmpTrueVal(const TargetLowering &TLI, bool IsVector, bool IsFP);
/netbsd-src/external/apache2/llvm/dist/llvm/lib/Support/
H A DLowLevelType.cpp31 IsVector = false; in LLT()
/netbsd-src/external/apache2/llvm/dist/llvm/lib/Target/AMDGPU/
H A DR600ExpandSpecialInstrs.cpp164 bool IsVector = TII->isVector(MI); in runOnMachineFunction() local
166 if (!IsReduction && !IsVector && !IsCube) { in runOnMachineFunction()
/netbsd-src/external/apache2/llvm/dist/llvm/lib/CodeGen/GlobalISel/
H A DUtils.cpp969 bool llvm::isConstTrueVal(const TargetLowering &TLI, int64_t Val, bool IsVector, in isConstTrueVal() argument
971 switch (TLI.getBooleanContents(IsVector, IsFP)) { in isConstTrueVal()
982 int64_t llvm::getICmpTrueVal(const TargetLowering &TLI, bool IsVector, in getICmpTrueVal() argument
984 switch (TLI.getBooleanContents(IsVector, IsFP)) { in getICmpTrueVal()
H A DCombinerHelper.cpp3110 int64_t Cst, bool IsVector, bool IsFP) { in isConstValidTrue() argument
3113 isConstTrueVal(TLI, Cst, IsVector, IsFP); in isConstValidTrue()
/netbsd-src/external/apache2/llvm/dist/llvm/lib/Target/ARM/MCTargetDesc/
H A DARMELFStreamer.cpp1467 bool IsVector) { in emitRegSave() argument
1474 assert(Reg < (IsVector ? 32U : 16U) && "Register out of range"); in emitRegSave()
1486 SPOffset -= Count * (IsVector ? 8 : 4); in emitRegSave()
1490 if (IsVector) in emitRegSave()
/netbsd-src/external/gpl3/gcc/dist/libstdc++-v3/include/pstl/
H A Dalgorithm_fwd.h367 class IsVector>
370 IsVector,
374 class IsVector>
377 _BinaryPredicate, IsVector,
/netbsd-src/external/gpl3/gcc.old/dist/libstdc++-v3/include/pstl/
H A Dalgorithm_fwd.h367 class IsVector>
370 IsVector,
374 class IsVector>
377 _BinaryPredicate, IsVector,
/netbsd-src/external/apache2/llvm/dist/llvm/include/llvm/AsmParser/
H A DLLParser.h413 bool parseArrayVectorType(Type *&Result, bool IsVector);
/netbsd-src/external/apache2/llvm/dist/clang/lib/CodeGen/
H A DCGExpr.cpp1792 bool IsVector = true) { in MaybeConvertMatrixAddress() argument
1795 if (ArrayTy && IsVector) { in MaybeConvertMatrixAddress()
1803 if (VectorTy && !IsVector) { in MaybeConvertMatrixAddress()
H A DTargetInfo.cpp7424 bool IsVector = false; in EmitVAArg() local
7434 IsVector = ArgTy->isVectorTy(); in EmitVAArg()
7439 if (IsVector && UnpaddedSize > PaddedSize) in EmitVAArg()
7449 if (IsVector) { in EmitVAArg()
/netbsd-src/external/apache2/llvm/dist/llvm/lib/AsmParser/
H A DLLParser.cpp3033 bool LLParser::parseArrayVectorType(Type *&Result, bool IsVector) { in parseArrayVectorType() argument
3036 if (IsVector && Lex.getKind() == lltok::kw_vscale) { in parseArrayVectorType()
3060 if (parseToken(IsVector ? lltok::greater : lltok::rsquare, in parseArrayVectorType()
3064 if (IsVector) { in parseArrayVectorType()
/netbsd-src/external/apache2/llvm/dist/llvm/lib/Target/ARM/AsmParser/
H A DARMAsmParser.cpp480 bool parseDirectiveRegSave(SMLoc L, bool IsVector);
11671 bool ARMAsmParser::parseDirectiveRegSave(SMLoc L, bool IsVector) { in parseDirectiveRegSave() argument
11686 if (!IsVector && !Op.isRegList()) in parseDirectiveRegSave()
11688 if (IsVector && !Op.isDPRRegList()) in parseDirectiveRegSave()
11691 getTargetStreamer().emitRegSave(Op.getRegList(), IsVector); in parseDirectiveRegSave()
/netbsd-src/external/apache2/llvm/dist/clang/docs/
H A DInternalsManual.rst1795 bool IsVector;