Searched refs:getSigned (Results 1 - 13 of 13) sorted by relevance

/macosx-10.10.1/llvmCore-3425.0.34/unittests/VMCore/
H A DConstantsTest.cpp23 EXPECT_EQ(NegOne, ConstantInt::getSigned(Int1, -1));
103 EXPECT_EQ(100, ConstantInt::getSigned(Int8Ty, 100)->getSExtValue());
105 EXPECT_EQ(-50, ConstantInt::getSigned(Int8Ty, -50)->getSExtValue());
106 EXPECT_EQ(206U, ConstantInt::getSigned(Int8Ty, -50)->getZExtValue());
/macosx-10.10.1/llvmCore-3425.0.34/unittests/Support/
H A DDataExtractorTest.cpp78 EXPECT_EQ(-128, DE.getSigned(&offset, 1));
81 EXPECT_EQ(-32624, DE.getSigned(&offset, 2));
84 EXPECT_EQ(-2137980929, DE.getSigned(&offset, 4));
87 EXPECT_EQ(-9182558167379214336LL, DE.getSigned(&offset, 8));
/macosx-10.10.1/llvmCore-3425.0.34/include/llvm/Support/
H A DDataExtractor.h108 int64_t getSigned(uint32_t *offset_ptr, uint32_t size) const;
/macosx-10.10.1/llvmCore-3425.0.34/lib/DebugInfo/
H A DDWARFFormValue.h65 int64_t getSigned() const { return Value.sval; } function in class:llvm::DWARFFormValue
H A DDWARFFormValue.cpp344 case DW_FORM_sdata: OS << getSigned(); break;
H A DDWARFDebugInfoEntry.cpp444 return form_value.getSigned();
/macosx-10.10.1/llvmCore-3425.0.34/lib/Support/
H A DDataExtractor.cpp107 DataExtractor::getSigned(uint32_t *offset_ptr, uint32_t byte_size) const { function in class:DataExtractor
118 llvm_unreachable("getSigned unhandled case!");
/macosx-10.10.1/llvmCore-3425.0.34/lib/Transforms/Utils/
H A DIntegerDivision.cpp137 ConstantInt *NegOne = ConstantInt::getSigned(I32Ty, -1);
/macosx-10.10.1/llvmCore-3425.0.34/include/llvm/
H A DConstants.h85 static ConstantInt *getSigned(IntegerType *Ty, int64_t V);
86 static Constant *getSigned(Type *Ty, int64_t V);
/macosx-10.10.1/llvmCore-3425.0.34/lib/Transforms/InstCombine/
H A DInstCombineShifts.cpp741 Constant *RHS = ConstantInt::getSigned(Op0->getType(), isCtPop ? -1:0);
H A DInstCombineAndOrXor.cpp2023 return SelectInst::Create(A, ConstantInt::getSigned(I.getType(), -1), Op1);
2025 return SelectInst::Create(A, ConstantInt::getSigned(I.getType(), -1), Op0);
/macosx-10.10.1/llvmCore-3425.0.34/lib/Transforms/Scalar/
H A DLoopStrengthReduce.cpp4377 Ops.push_back(SE.getUnknown(ConstantInt::getSigned(IntTy, Offset)));
4385 Ops.push_back(SE.getUnknown(ConstantInt::getSigned(IntTy,
4419 Constant *C = ConstantInt::getSigned(SE.getEffectiveSCEVType(OpTy),
/macosx-10.10.1/llvmCore-3425.0.34/lib/VMCore/
H A DConstants.cpp448 ConstantInt *ConstantInt::getSigned(IntegerType *Ty, int64_t V) { function in class:ConstantInt
452 Constant *ConstantInt::getSigned(Type *Ty, int64_t V) { function in class:ConstantInt

Completed in 330 milliseconds