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

1 23 4

  /external/llvm/lib/Target/AArch64/AsmParser/
AArch64AsmParser.cpp 681 template<int BitWidth>
688 return CE->getValue() >= -(1LL << (BitWidth - 1))
689 && CE->getValue() < (1LL << (BitWidth - 1));
692 template<int bitWidth>
699 return CE->getValue() >= 0 && CE->getValue() < (1LL << bitWidth);
860 template<int BitWidth>
866 Inst.addOperand(MCOperand::CreateImm(Val & ((1ULL << BitWidth) - 1)));
    [all...]
  /external/clang/lib/Sema/
SemaTemplateInstantiateDecl.cpp 472 Expr *BitWidth = D->getBitWidth();
474 BitWidth = 0;
475 else if (BitWidth) {
481 = SemaRef.SubstExpr(BitWidth, TemplateArgs);
484 BitWidth = 0;
486 BitWidth = InstantiatedBitWidth.takeAs<Expr>();
494 BitWidth,
    [all...]
SemaStmt.cpp 646 static void AdjustAPSInt(llvm::APSInt &Val, unsigned BitWidth, bool IsSigned) {
647 if (Val.getBitWidth() < BitWidth)
648 Val = Val.extend(BitWidth);
649 else if (Val.getBitWidth() > BitWidth)
650 Val = Val.trunc(BitWidth);
696 // Get the bitwidth of the switched-on value before promotions. We must
    [all...]
SemaDeclCXX.cpp     [all...]
SemaOverload.cpp     [all...]
  /external/llvm/lib/ExecutionEngine/Interpreter/
Execution.cpp 795 unsigned BitWidth =
797 if (BitWidth == 32)
800 assert(BitWidth == 64 && "Invalid index type for getelementptr");
    [all...]
  /external/llvm/lib/Transforms/InstCombine/
InstCombineAddSub.cpp 841 uint32_t BitWidth = cast<IntegerType>(V->getType())->getBitWidth();
842 uint32_t CSTVal = CST->getLimitedValue(BitWidth);
844 APInt(BitWidth, 1).shl(CSTVal));
    [all...]
InstructionCombining.cpp     [all...]
  /external/llvm/lib/CodeGen/SelectionDAG/
DAGCombiner.cpp 138 unsigned BitWidth = Op.getValueType().getScalarType().getSizeInBits();
139 APInt Demanded = APInt::getAllOnesValue(BitWidth);
    [all...]
LegalizeTypes.cpp     [all...]
  /external/llvm/lib/IR/
ConstantFold.cpp 660 uint32_t BitWidth = cast<IntegerType>(DestTy)->getBitWidth();
662 CI->getValue().zext(BitWidth));
667 uint32_t BitWidth = cast<IntegerType>(DestTy)->getBitWidth();
669 CI->getValue().sext(BitWidth));
    [all...]
  /external/llvm/lib/Transforms/Scalar/
ScalarReplAggregates.cpp 359 unsigned BitWidth = AllocaSize * 8;
363 if (BitWidth > ScalarLoadThreshold)
367 !HadNonMemTransferAccess && !TD.fitsInLegalInteger(BitWidth))
377 NewTy = IntegerType::get(AI->getContext(), BitWidth);
    [all...]
  /external/clang/include/clang/AST/
Expr.h     [all...]
  /external/llvm/lib/CodeGen/AsmPrinter/
AsmPrinter.cpp     [all...]
  /external/clang/lib/AST/
ASTImporter.cpp     [all...]
Decl.cpp     [all...]
ExprConstant.cpp     [all...]
ASTContext.cpp     [all...]
  /external/clang/lib/CodeGen/
CGExprConstant.cpp 296 unsigned BitWidth = FieldValue.getBitWidth();
298 FieldValue = FieldValue.zext(CharWidth) << (CharWidth - BitWidth);
    [all...]
TargetInfo.cpp     [all...]
  /external/llvm/lib/Target/PowerPC/
PPCISelLowering.cpp     [all...]
  /external/llvm/lib/Target/CppBackend/
CPPBackend.cpp 370 unsigned BitWidth = cast<IntegerType>(Ty)->getBitWidth();
371 return "IntegerType::get(mod->getContext(), " + utostr(BitWidth) + ")";
    [all...]
  /external/llvm/lib/Analysis/
DependenceAnalysis.cpp     [all...]
  /external/llvm/lib/Target/X86/
X86ISelLowering.cpp     [all...]
  /external/clang/lib/Serialization/
ASTReader.cpp     [all...]

Completed in 414 milliseconds

1 23 4