| /freebsd-13.1/contrib/llvm-project/llvm/include/llvm/Support/ |
| H A D | LowLevelTypeImpl.h | 113 : IsScalar(false), IsPointer(false), IsVector(false), RawData(0) {} in LLT() 121 bool isPointer() const { return isValid() && IsPointer && !IsVector; } in isPointer() 123 bool isVector() const { return isValid() && IsVector; } in isVector() 216 if (IsVector) { in getScalarSizeInBits() 230 if (!IsVector) in getAddressSpace() 255 return IsPointer == RHS.IsPointer && IsVector == RHS.IsVector && 324 uint64_t IsVector : 1; 347 this->IsVector = IsVector; 351 else if (IsVector) { 376 ((uint64_t)IsPointer) << 1 | ((uint64_t)IsVector); [all …]
|
| /freebsd-13.1/contrib/llvm-project/llvm/lib/Support/ |
| H A D | LowLevelType.cpp | 32 IsVector = false; in LLT()
|
| /freebsd-13.1/contrib/llvm-project/llvm/include/llvm/CodeGen/GlobalISel/ |
| H A D | Utils.h | 390 bool isConstTrueVal(const TargetLowering &TLI, int64_t Val, bool IsVector, 395 int64_t getICmpTrueVal(const TargetLowering &TLI, bool IsVector, bool IsFP);
|
| /freebsd-13.1/contrib/llvm-project/llvm/lib/Target/AMDGPU/ |
| H A D | R600ExpandSpecialInstrs.cpp | 164 bool IsVector = TII->isVector(MI); in runOnMachineFunction() local 166 if (!IsReduction && !IsVector && !IsCube) { in runOnMachineFunction()
|
| /freebsd-13.1/contrib/llvm-project/llvm/lib/CodeGen/GlobalISel/ |
| H A D | Utils.cpp | 983 bool llvm::isConstTrueVal(const TargetLowering &TLI, int64_t Val, bool IsVector, in isConstTrueVal() argument 985 switch (TLI.getBooleanContents(IsVector, IsFP)) { in isConstTrueVal() 996 int64_t llvm::getICmpTrueVal(const TargetLowering &TLI, bool IsVector, in getICmpTrueVal() argument 998 switch (TLI.getBooleanContents(IsVector, IsFP)) { in getICmpTrueVal()
|
| H A D | CombinerHelper.cpp | 3188 int64_t Cst, bool IsVector, bool IsFP) { in isConstValidTrue() argument 3191 isConstTrueVal(TLI, Cst, IsVector, IsFP); in isConstValidTrue()
|
| /freebsd-13.1/contrib/llvm-project/llvm/lib/Target/ARM/MCTargetDesc/ |
| H A D | ARMELFStreamer.cpp | 1290 bool IsVector) { in emitRegSave() argument 1297 assert(Reg < (IsVector ? 32U : 16U) && "Register out of range"); in emitRegSave() 1309 SPOffset -= Count * (IsVector ? 8 : 4); in emitRegSave() 1313 if (IsVector) in emitRegSave()
|
| /freebsd-13.1/contrib/llvm-project/llvm/include/llvm/AsmParser/ |
| H A D | LLParser.h | 402 bool parseArrayVectorType(Type *&Result, bool IsVector);
|
| /freebsd-13.1/contrib/llvm-project/clang/lib/CodeGen/ |
| H A D | CGExpr.cpp | 1792 bool IsVector = true) { in MaybeConvertMatrixAddress() argument 1795 if (ArrayTy && IsVector) { in MaybeConvertMatrixAddress() 1803 if (VectorTy && !IsVector) { in MaybeConvertMatrixAddress()
|
| H A D | TargetInfo.cpp | 7441 bool IsVector = false; in EmitVAArg() local 7451 IsVector = ArgTy->isVectorTy(); in EmitVAArg() 7456 if (IsVector && UnpaddedSize > PaddedSize) in EmitVAArg() 7466 if (IsVector) { in EmitVAArg()
|
| /freebsd-13.1/contrib/llvm-project/llvm/lib/AsmParser/ |
| H A D | LLParser.cpp | 2704 bool LLParser::parseArrayVectorType(Type *&Result, bool IsVector) { in parseArrayVectorType() argument 2707 if (IsVector && Lex.getKind() == lltok::kw_vscale) { in parseArrayVectorType() 2731 if (parseToken(IsVector ? lltok::greater : lltok::rsquare, in parseArrayVectorType() 2735 if (IsVector) { in parseArrayVectorType()
|
| /freebsd-13.1/contrib/llvm-project/llvm/lib/Target/ARM/AsmParser/ |
| H A D | ARMAsmParser.cpp | 480 bool parseDirectiveRegSave(SMLoc L, bool IsVector); 11672 bool ARMAsmParser::parseDirectiveRegSave(SMLoc L, bool IsVector) { in parseDirectiveRegSave() argument 11687 if (!IsVector && !Op.isRegList()) in parseDirectiveRegSave() 11689 if (IsVector && !Op.isDPRRegList()) in parseDirectiveRegSave() 11692 getTargetStreamer().emitRegSave(Op.getRegList(), IsVector); in parseDirectiveRegSave()
|