reference, declarationdefinition
definition → references, declarations, derived classes, virtual overrides
reference to multiple definitions → definitions
unreferenced

Declarations

include/llvm/IR/Constants.h
  118   static ConstantInt *getSigned(IntegerType *Ty, int64_t V);

References

lib/Analysis/ScalarEvolutionExpander.cpp
 1888             ConstantInt::getSigned(VO.second->getType(), -(Offset * 8) / ESize);
 1892             ConstantInt::getSigned(VO.second->getType(), -Offset);
lib/IR/DebugInfoMetadata.cpp
  320       ConstantInt::getSigned(Type::getInt64Ty(Context), Count));
lib/Target/PowerPC/PPCFastISel.cpp
  445       ConstantInt::getSigned(OffsetTy, (int64_t)(Addr.Offset));
lib/Transforms/Instrumentation/DataFlowSanitizer.cpp
  555   ZeroShadow = ConstantInt::getSigned(ShadowTy, 0);
  556   ShadowPtrMul = ConstantInt::getSigned(IntptrTy, ShadowWidth / 8);
  558     ShadowPtrMask = ConstantInt::getSigned(IntptrTy, ~0x700000000000LL);
  560     ShadowPtrMask = ConstantInt::getSigned(IntptrTy, ~0xF000000000LL);
lib/Transforms/Utils/CodeExtractor.cpp
 1012   auto NegativeOne = ConstantInt::getSigned(Type::getInt64Ty(Ctx), -1);
lib/Transforms/Utils/IntegerDivision.cpp
  168     NegOne    = ConstantInt::getSigned(DivTy, -1);
  174     NegOne    = ConstantInt::getSigned(DivTy, -1);
tools/clang/lib/CodeGen/CGBuiltin.cpp
12693     Ops[2] = ConstantInt::getSigned(Int32Ty, Index);
12714       Ops[1] = ConstantInt::getSigned(Int32Ty, Index);
12728       Ops[1] = ConstantInt::getSigned(Int32Ty, Index);
tools/clang/lib/CodeGen/CGDeclCXX.cpp
  167   llvm::Value *Args[2] = { llvm::ConstantInt::getSigned(Int64Ty, Width),
tools/clang/lib/CodeGen/CGOpenMPRuntime.cpp
 5398     IfVal = llvm::ConstantInt::getSigned(CGF.IntTy, /*V=*/1);
 5441       llvm::ConstantInt::getSigned(
 5443       llvm::ConstantInt::getSigned(
10852     CGF.EmitStoreOfScalar(llvm::ConstantInt::getSigned(CGM.Int64Ty, /*V=*/1),
10861       llvm::ConstantInt::getSigned(CGM.Int32Ty, NumIterations.size()),
unittests/ExecutionEngine/Orc/LegacyRTDyldObjectLinkingLayerTest.cpp
  164     Value *FourtyTwo = ConstantInt::getSigned(Int32Ty, 42);
  250     Value *FourtyTwo = ConstantInt::getSigned(Int32Ty, 42);
  264     Value *Seven = ConstantInt::getSigned(Int32Ty, 7);
unittests/ExecutionEngine/Orc/RemoteObjectLayerTest.cpp
  105   B.CreateRet(ConstantInt::getSigned(Type::getInt32Ty(Ctx), 42));
unittests/IR/ConstantsTest.cpp
   29   EXPECT_EQ(NegOne, ConstantInt::getSigned(Int1, -1));
  110   EXPECT_EQ(100, ConstantInt::getSigned(Int8Ty, 100)->getSExtValue());
  112   EXPECT_EQ(-50, ConstantInt::getSigned(Int8Ty, -50)->getSExtValue());
  113   EXPECT_EQ(206U, ConstantInt::getSigned(Int8Ty, -50)->getZExtValue());