Home
last modified time | relevance | path

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

/freebsd-13.1/contrib/llvm-project/llvm/include/llvm/ADT/
H A DAPInt.h88 static constexpr WordType WORDTYPE_MAX = ~WordType(0);
1896 static void tcSet(WordType *, WordType, unsigned);
1930 static WordType tcAdd(WordType *, const WordType *,
1933 static WordType tcAddPart(WordType *, WordType, unsigned);
1936 static WordType tcSubtract(WordType *, const WordType *,
1939 static WordType tcSubtractPart(WordType *, WordType, unsigned);
1960 static int tcMultiply(WordType *, const WordType *, const WordType *,
1965 static void tcFullMultiply(WordType *, const WordType *,
1977 static int tcDivide(WordType *lhs, const WordType *rhs,
1990 static void tcAnd(WordType *, const WordType *, unsigned);
[all …]
H A DAPFloat.h144 typedef APInt::WordType integerPart;
/freebsd-13.1/contrib/llvm-project/llvm/lib/Support/
H A DAPInt.cpp2319 static inline APInt::WordType lowHalf(APInt::WordType part) { in lowHalf()
2324 static inline APInt::WordType highHalf(APInt::WordType part) { in highHalf()
2445 APInt::WordType APInt::tcAdd(WordType *dst, const WordType *rhs, in tcAdd()
2467 APInt::WordType APInt::tcAddPart(WordType *dst, WordType src, in tcAddPart()
2480 APInt::WordType APInt::tcSubtract(WordType *dst, const WordType *rhs, in tcSubtract()
2505 APInt::WordType APInt::tcSubtractPart(WordType *dst, WordType src, in tcSubtractPart()
2535 int APInt::tcMultiplyPart(WordType *dst, const WordType *src, in tcMultiplyPart()
2536 WordType multiplier, WordType carry, in tcMultiplyPart()
2624 int APInt::tcMultiply(WordType *dst, const WordType *lhs, in tcMultiply()
2665 int APInt::tcDivide(WordType *lhs, const WordType *rhs, in tcDivide()
[all …]
/freebsd-13.1/contrib/llvm-project/llvm/lib/CodeGen/
H A DLowerEmuTLS.cpp117 IntegerType *WordType = DL.getIntPtrType(C); in addEmuTlsVar() local
120 Type *ElementTypes[4] = {WordType, WordType, VoidPtrType, InitPtrType}; in addEmuTlsVar()
149 ConstantInt::get(WordType, DL.getTypeStoreSize(GVType)), in addEmuTlsVar()
150 ConstantInt::get(WordType, GVAlignment.value()), NullPtr, in addEmuTlsVar()
156 std::max(DL.getABITypeAlign(WordType), DL.getABITypeAlign(VoidPtrType)); in addEmuTlsVar()
H A DAtomicExpandPass.cpp620 Type *WordType = nullptr; member
641 PrintObj(PMV.WordType); in operator <<()
689 if (PMV.ValueType == PMV.WordType) { in createMaskInstrs()
729 assert(WideWord->getType() == PMV.WordType && "Widened type mismatch"); in extractMaskedValue()
730 if (PMV.WordType == PMV.ValueType) in extractMaskedValue()
740 assert(WideWord->getType() == PMV.WordType && "Widened type mismatch"); in insertMaskedValue()
742 if (PMV.WordType == PMV.ValueType) in insertMaskedValue()
745 Value *ZExt = Builder.CreateZExt(Updated, PMV.WordType, "extended"); in insertMaskedValue()
955 PHINode *Loaded_MaskOut = Builder.CreatePHI(PMV.WordType, 2); in expandPartwordCmpXchg()
1033 Builder.CreateCast(CastOp, AI->getValOperand(), PMV.WordType), in expandAtomicRMWToMaskedIntrinsic()
[all …]
/freebsd-13.1/contrib/llvm-project/llvm/utils/TableGen/
H A DCodeGenDAGPatterns.h58 using WordType = uint64_t; member
59 static unsigned constexpr WordWidth = CHAR_BIT*sizeof(WordType);
72 for (WordType W : Words) in size()
78 std::memset(Words.data(), 0, NumWords*sizeof(WordType)); in clear()
82 for (WordType W : Words) in empty()
93 Words[T.SimpleTy / WordWidth] |= WordType(1) << (T.SimpleTy % WordWidth); in insert()
103 Words[T.SimpleTy / WordWidth] &= ~(WordType(1) << (T.SimpleTy % WordWidth)); in erase()
149 WordType W = Set->Words[SkipWords]; in find_from_pos()
150 W &= maskLeadingOnes<WordType>(WordWidth-SkipBits); in find_from_pos()
158 WordType W = Set->Words[i]; in find_from_pos()
[all …]
/freebsd-13.1/contrib/llvm-project/clang/include/clang/AST/
H A DExpr.h1022 static_assert(std::is_same<uint64_t, llvm::APInt::WordType>::value,