HomeSort by relevance Sort by last modified time
    Searched refs:BitWidth (Results 51 - 75 of 108) sorted by null

1 23 4 5

  /external/clang/lib/Lex/
PPExpressions.cpp 40 PPValue(unsigned BitWidth) : Val(BitWidth) {}
747 unsigned BitWidth = getTargetInfo().getIntMaxTWidth();
749 PPValue ResVal(BitWidth);
  /external/llvm/include/llvm/IR/
DataLayout.h 406 /// the specified bitwidth.
407 unsigned getABIIntegerTypeAlignment(unsigned BitWidth) const;
  /external/llvm/lib/Transforms/InstCombine/
InstructionCombining.cpp     [all...]
InstCombineMulDivRem.cpp 143 unsigned BitWidth = LHS->getType()->getScalarSizeInBits();
152 if (SignBits > BitWidth + 1)
156 // SignBits == BitWidth + 1 and
157 // SignBits == BitWidth
160 if (SignBits == BitWidth + 1) {
    [all...]
  /external/llvm/include/llvm/ADT/
APFloat.h 278 /// \param BitWidth - Select float type
280 static APFloat getAllOnesValue(unsigned BitWidth, bool isIEEE = false);
  /external/llvm/lib/Transforms/Utils/
Local.cpp     [all...]
  /external/llvm/lib/IR/
Type.cpp 53 bool Type::isIntegerTy(unsigned Bitwidth) const {
54 return isIntegerTy() && cast<IntegerType>(this)->getBitWidth() == Bitwidth;
299 assert(NumBits >= MIN_INT_BITS && "bitwidth too small");
300 assert(NumBits <= MAX_INT_BITS && "bitwidth too large");
323 unsigned BitWidth = getBitWidth();
324 return (BitWidth > 7) && isPowerOf2_32(BitWidth);
ConstantFold.cpp 687 uint32_t BitWidth = cast<IntegerType>(DestTy)->getBitWidth();
689 CI->getValue().zext(BitWidth));
694 uint32_t BitWidth = cast<IntegerType>(DestTy)->getBitWidth();
696 CI->getValue().sext(BitWidth));
    [all...]
  /external/llvm/lib/Target/AArch64/
AArch64ISelDAGToDAG.cpp     [all...]
  /external/llvm/lib/Analysis/
InstructionSimplify.cpp     [all...]
ScalarEvolutionExpander.cpp     [all...]
  /external/llvm/lib/CodeGen/
CodeGenPrepare.cpp     [all...]
  /external/clang/lib/Frontend/
InitPreprocessor.cpp 220 static void DefineTypeSizeof(StringRef MacroName, unsigned BitWidth,
223 Twine(BitWidth / TI.getCharWidth()));
    [all...]
  /external/clang/lib/Sema/
SemaDecl.cpp     [all...]
SemaTemplateInstantiateDecl.cpp 580 Expr *BitWidth = D->getBitWidth();
582 BitWidth = nullptr;
583 else if (BitWidth) {
589 = SemaRef.SubstExpr(BitWidth, TemplateArgs);
592 BitWidth = nullptr;
594 BitWidth = InstantiatedBitWidth.getAs<Expr>();
602 BitWidth,
    [all...]
  /external/clang/lib/StaticAnalyzer/Core/
SimpleSValBuilder.cpp 167 unsigned BitWidth = Context.getTypeSize(castTy);
170 return makeLocAsInteger(val, BitWidth);
    [all...]
  /external/llvm/lib/Support/
APFloat.cpp     [all...]
  /external/llvm/lib/Transforms/IPO/
LowerBitSets.cpp 334 unsigned BitWidth = BitsType->getBitWidth();
338 B.CreateAnd(BitOffset, ConstantInt::get(BitsType, BitWidth - 1));
    [all...]
MergeFunctions.cpp 211 /// If both types are vectors, then vector with greater bitwidth is
213 /// If both types are vectors with the same bitwidth, then types
238 /// Ints with greater bitwidth are greater. Ints with same bitwidths
285 /// 2.1. All vectors with equal bitwidth to vector A, has equal bitwidth to
    [all...]
  /external/llvm/utils/TableGen/
IntrinsicEmitter.cpp 269 unsigned BitWidth = MVT(VT).getSizeInBits();
270 switch (BitWidth) {
  /external/llvm/lib/CodeGen/AsmPrinter/
AsmPrinter.cpp     [all...]
  /external/llvm/include/llvm/Target/
TargetLowering.h     [all...]
  /external/llvm/lib/CodeGen/SelectionDAG/
DAGCombiner.cpp 183 unsigned BitWidth = Op.getValueType().getScalarType().getSizeInBits();
184 APInt Demanded = APInt::getAllOnesValue(BitWidth);
    [all...]
  /external/llvm/lib/Target/XCore/
XCoreISelLowering.cpp     [all...]
  /external/llvm/lib/Transforms/Scalar/
ScalarReplAggregates.cpp 366 unsigned BitWidth = AllocaSize * 8;
370 if (BitWidth > ScalarLoadThreshold)
374 !HadNonMemTransferAccess && !DL.fitsInLegalInteger(BitWidth))
384 NewTy = IntegerType::get(AI->getContext(), BitWidth);
    [all...]

Completed in 649 milliseconds

1 23 4 5