HomeSort by: relevance | last modified time | path
    Searched refs:IsUnsigned (Results 1 - 25 of 57) sorted by relevancy

1 2 3

  /src/external/apache2/llvm/dist/llvm/include/llvm/ADT/
APSInt.h 23 bool IsUnsigned;
27 explicit APSInt() : IsUnsigned(false) {}
30 explicit APSInt(uint32_t BitWidth, bool isUnsigned = true)
31 : APInt(BitWidth, 0), IsUnsigned(isUnsigned) {}
33 explicit APSInt(APInt I, bool isUnsigned = true)
34 : APInt(std::move(I)), IsUnsigned(isUnsigned) {}
76 bool isSigned() const { return !IsUnsigned; }
77 bool isUnsigned() const { return IsUnsigned;
    [all...]
  /src/external/apache2/llvm/dist/clang/include/clang/StaticAnalyzer/Core/PathSensitive/
APSIntType.h 21 bool IsUnsigned;
25 : BitWidth(Width), IsUnsigned(Unsigned) {}
28 : BitWidth(Value.getBitWidth()), IsUnsigned(Value.isUnsigned()) {}
31 bool isUnsigned() const { return IsUnsigned; }
41 Value.setIsUnsigned(IsUnsigned);
49 llvm::APSInt Result(Value, Value.isUnsigned());
56 return llvm::APSInt(BitWidth, IsUnsigned);
61 return llvm::APSInt::getMinValue(BitWidth, IsUnsigned);
    [all...]
  /src/external/apache2/llvm/dist/clang/lib/StaticAnalyzer/Core/
APSIntType.cpp 19 if (IsUnsigned && !AllowSignConversions &&
25 if (Value.isSigned() && !IsUnsigned)
36 MinBits = Value.getMinSignedBits() - IsUnsigned;
38 MinBits = Value.getActiveBits() + !IsUnsigned;
  /src/external/apache2/llvm/dist/llvm/lib/Support/
APSInt.cpp 31 *this = APSInt(Tmp, /*isUnsigned=*/false);
37 *this = APSInt(Tmp, /*isUnsigned=*/true);
41 ID.AddInteger((unsigned) (IsUnsigned ? 1 : 0));
APFixedPoint.cpp 116 bool IsUnsigned = !Sema.isSigned();
117 auto Val = APSInt::getMaxValue(Sema.getWidth(), IsUnsigned);
118 if (IsUnsigned && Sema.hasUnsignedPadding())
433 } else if (Result.isUnsigned() && DstSign) {
  /src/external/apache2/llvm/dist/llvm/lib/Target/RISCV/
RISCVISelDAGToDAG.cpp 452 bool IsUnsigned = IntNo == Intrinsic::riscv_vmsgeu;
460 IsUnsigned ? RISCV::PseudoVMSLTU_VX_MF8 : RISCV::PseudoVMSLT_VX_MF8;
465 IsUnsigned ? RISCV::PseudoVMSLTU_VX_MF4 : RISCV::PseudoVMSLT_VX_MF4;
470 IsUnsigned ? RISCV::PseudoVMSLTU_VX_MF2 : RISCV::PseudoVMSLT_VX_MF2;
475 IsUnsigned ? RISCV::PseudoVMSLTU_VX_M1 : RISCV::PseudoVMSLT_VX_M1;
480 IsUnsigned ? RISCV::PseudoVMSLTU_VX_M2 : RISCV::PseudoVMSLT_VX_M2;
485 IsUnsigned ? RISCV::PseudoVMSLTU_VX_M4 : RISCV::PseudoVMSLT_VX_M4;
490 IsUnsigned ? RISCV::PseudoVMSLTU_VX_M8 : RISCV::PseudoVMSLT_VX_M8;
521 bool IsUnsigned = IntNo == Intrinsic::riscv_vmsgeu_mask;
529 IsUnsigned ? RISCV::PseudoVMSLTU_VX_MF8 : RISCV::PseudoVMSLT_VX_MF8
    [all...]
  /src/external/apache2/llvm/dist/clang/include/clang/Basic/
TargetBuiltins.h 165 NeonTypeFlags(EltType ET, bool IsUnsigned, bool IsQuad) : Flags(ET) {
166 if (IsUnsigned)
177 bool isUnsigned() const { return (Flags & UnsignedFlag) != 0; }
  /src/external/apache2/llvm/dist/clang/include/clang/AST/
TemplateBase.h 118 unsigned IsUnsigned : 1;
319 return APSInt(APInt(Integer.BitWidth, Integer.VAL), Integer.IsUnsigned);
323 Integer.IsUnsigned);
  /src/external/apache2/llvm/dist/llvm/include/llvm/IR/
MatrixBuilder.h 219 /// IsUnsigned indicates whether UDiv or SDiv should be used.
220 Value *CreateScalarDiv(Value *LHS, Value *RHS, bool IsUnsigned) {
231 : (IsUnsigned ? B.CreateUDiv(LHS, RHS) : B.CreateSDiv(LHS, RHS));
DebugInfoMetadata.h 418 bool IsUnsigned, ArrayRef<Metadata *> Ops)
421 SubclassData32 = IsUnsigned;
424 bool IsUnsigned, ArrayRef<Metadata *> Ops)
425 : DIEnumerator(C, Storage, APInt(64, Value, !IsUnsigned), IsUnsigned,
430 bool IsUnsigned, StringRef Name,
432 return getImpl(Context, Value, IsUnsigned,
436 bool IsUnsigned, MDString *Name,
440 return getTemporary(getContext(), getValue(), isUnsigned(), getName());
445 (int64_t Value, bool IsUnsigned, StringRef Name)
    [all...]
  /src/external/apache2/llvm/dist/llvm/lib/Target/Mips/
MipsExpandPseudo.cpp 344 bool IsUnsigned = false;
392 IsUnsigned = true;
400 IsUnsigned = true;
457 unsigned SLTScratch4 = IsUnsigned ? SLTu : SLT;
645 bool IsUnsigned = false;
696 IsUnsigned = true;
704 IsUnsigned = true;
743 unsigned SLTScratch2 = IsUnsigned ? SLTu : SLT;
MipsFastISel.cpp 199 unsigned getRegEnsuringSimpleIntegerWidening(const Value *, bool IsUnsigned);
639 bool IsUnsigned = CI->isUnsigned();
640 unsigned LeftReg = getRegEnsuringSimpleIntegerWidening(Left, IsUnsigned);
643 unsigned RightReg = getRegEnsuringSimpleIntegerWidening(Right, IsUnsigned);
2093 bool IsUnsigned) {
2104 if (!emitIntExt(VMVT, VReg, MVT::i32, TempReg, IsUnsigned))
  /src/external/apache2/llvm/dist/llvm/lib/Target/X86/
X86TargetTransformInfo.h 186 InstructionCost getMinMaxCost(Type *Ty, Type *CondTy, bool IsUnsigned);
189 bool IsPairwiseForm, bool IsUnsigned,
  /src/external/apache2/llvm/dist/llvm/lib/IR/
LLVMContextImpl.h 382 bool IsUnsigned;
384 MDNodeKeyImpl(APInt Value, bool IsUnsigned, MDString *Name)
385 : Value(Value), Name(Name), IsUnsigned(IsUnsigned) {}
386 MDNodeKeyImpl(int64_t Value, bool IsUnsigned, MDString *Name)
387 : Value(APInt(64, Value, !IsUnsigned)), Name(Name),
388 IsUnsigned(IsUnsigned) {}
391 IsUnsigned(N->isUnsigned()) {}
    [all...]
DIBuilder.cpp 247 bool IsUnsigned) {
249 return DIEnumerator::get(VMContext, APInt(64, Val, !IsUnsigned), IsUnsigned,
DebugInfoMetadata.cpp 532 bool IsUnsigned, MDString *Name,
535 DEFINE_GETIMPL_LOOKUP(DIEnumerator, (Value, IsUnsigned, Name));
537 DEFINE_GETIMPL_STORE(DIEnumerator, (Value, IsUnsigned), Ops);
  /src/external/apache2/llvm/dist/llvm/include/llvm/DebugInfo/PDB/
PDBTypes.h 510 #define VARIANT_APSINT(Enum, NumBits, IsUnsigned) \
512 return APSInt(APInt(NumBits, Value.Enum), IsUnsigned);
  /src/external/apache2/llvm/dist/llvm/lib/Target/AMDGPU/
AMDGPUTargetTransformInfo.h 221 VectorType *Ty, VectorType *CondTy, bool IsPairwiseForm, bool IsUnsigned,
SIShrinkInstructions.cpp 131 bool &IsUnsigned) {
133 IsUnsigned = false;
138 IsUnsigned = true;
  /src/external/apache2/llvm/dist/llvm/include/llvm/Analysis/
TargetTransformInfo.h 1198 VectorType *Ty, VectorType *CondTy, bool IsPairwiseForm, bool IsUnsigned,
1208 bool IsMLA, bool IsUnsigned, Type *ResTy, VectorType *Ty,
1662 bool IsPairwiseForm, bool IsUnsigned,
1665 bool IsMLA, bool IsUnsigned, Type *ResTy, VectorType *Ty,
2167 bool IsPairwiseForm, bool IsUnsigned,
2169 return Impl.getMinMaxReductionCost(Ty, CondTy, IsPairwiseForm, IsUnsigned,
2173 bool IsMLA, bool IsUnsigned, Type *ResTy, VectorType *Ty,
2175 return Impl.getExtendedAddReductionCost(IsMLA, IsUnsigned, ResTy, Ty,
  /src/external/apache2/llvm/dist/llvm/lib/Target/AArch64/
AArch64TargetTransformInfo.h 161 bool IsPairwise, bool IsUnsigned,
  /src/external/apache2/llvm/dist/llvm/lib/Target/ARM/
ARMTargetTransformInfo.h 262 InstructionCost getExtendedAddReductionCost(bool IsMLA, bool IsUnsigned,
  /src/external/apache2/llvm/dist/llvm/lib/Analysis/
TargetTransformInfo.cpp 905 VectorType *Ty, VectorType *CondTy, bool IsPairwiseForm, bool IsUnsigned,
908 Ty, CondTy, IsPairwiseForm, IsUnsigned, CostKind);
914 bool IsMLA, bool IsUnsigned, Type *ResTy, VectorType *Ty,
916 return TTIImpl->getExtendedAddReductionCost(IsMLA, IsUnsigned, ResTy, Ty,
  /src/external/apache2/llvm/dist/llvm/bindings/ocaml/debuginfo/
debuginfo_ocaml.c 391 value Value, value IsUnsigned) {
394 (int64_t)Int_val(Value), Bool_val(IsUnsigned));
  /src/external/apache2/llvm/dist/clang/lib/AST/
Type.cpp 341 ExtIntType::ExtIntType(bool IsUnsigned, unsigned NumBits)
342 : Type(ExtInt, QualType{}, TypeDependence::None), IsUnsigned(IsUnsigned),
346 bool IsUnsigned, Expr *NumBitsExpr)
349 Context(Context), ExprAndUnsigned(NumBitsExpr, IsUnsigned) {}
351 bool DependentExtIntType::isUnsigned() const {
360 const ASTContext &Context, bool IsUnsigned,
362 ID.AddBoolean(IsUnsigned);
2064 return IT->isUnsigned();
2081 return IT->isUnsigned();
    [all...]

Completed in 62 milliseconds

1 2 3