Searched refs:IsSigned (Results 1 - 23 of 23) sorted by relevance

/freebsd-10.2-release/contrib/llvm/tools/clang/lib/CodeGen/
H A DCGRecordLayout.h75 unsigned IsSigned : 1; member in struct:clang::CodeGen::CGBitFieldInfo
85 : Offset(), Size(), IsSigned(), StorageSize(), StorageAlignment() {}
87 CGBitFieldInfo(unsigned Offset, unsigned Size, bool IsSigned, argument
89 : Offset(Offset), Size(Size), IsSigned(IsSigned),
H A DCGRecordLayoutBuilder.cpp239 bool IsSigned = FD->getType()->isSignedIntegerOrEnumerationType(); local
262 return CGBitFieldInfo(Offset, Size, IsSigned, StorageSize, StorageAlignment);
1108 << " IsSigned:" << IsSigned
H A DCGExpr.cpp1293 if (Info.IsSigned) {
1308 Val = Builder.CreateIntCast(Val, ResLTy, Info.IsSigned, "bf.cast");
1450 /*IsSigned=*/false);
1494 if (Info.IsSigned) {
1503 ResultVal = Builder.CreateIntCast(ResultVal, ResLTy, Info.IsSigned,
/freebsd-10.2-release/contrib/llvm/lib/Transforms/Utils/
H A DSimplifyIndVar.cpp77 bool IsSigned);
187 bool IsSigned) {
203 if ((!IsSigned || SE->isKnownNonNegative(S)) &&
204 SE->isKnownPredicate(IsSigned ? ICmpInst::ICMP_SLT : ICmpInst::ICMP_ULT,
211 if (IsSigned && !SE->isKnownNonNegative(LessOne))
214 if (!SE->isKnownPredicate(IsSigned ?
244 bool IsSigned = Rem->getOpcode() == Instruction::SRem; local
245 if (IsSigned || Rem->getOpcode() == Instruction::URem) {
246 eliminateIVRemainder(Rem, IVOperand, IsSigned);
185 eliminateIVRemainder(BinaryOperator *Rem, Value *IVOperand, bool IsSigned) argument
/freebsd-10.2-release/contrib/llvm/tools/clang/lib/Basic/
H A DTargetInfo.cpp156 unsigned BitWidth, bool IsSigned) const {
158 return IsSigned ? SignedChar : UnsignedChar;
160 return IsSigned ? SignedShort : UnsignedShort;
162 return IsSigned ? SignedInt : UnsignedInt;
164 return IsSigned ? SignedLong : UnsignedLong;
166 return IsSigned ? SignedLongLong : UnsignedLongLong;
/freebsd-10.2-release/contrib/llvm/include/llvm-c/
H A DExecutionEngine.h57 LLVMBool IsSigned);
66 LLVMBool IsSigned);
/freebsd-10.2-release/contrib/llvm/lib/Transforms/Scalar/
H A DIndVarSimplify.cpp633 bool IsSigned; // Was an sext user seen before a zext? member in struct:__anon2776::WideIVInfo
635 WideIVInfo() : NarrowIV(0), WidestNativeType(0), IsSigned(false) {}
658 bool IsSigned = Cast->getOpcode() == Instruction::SExt; local
659 if (!IsSigned && Cast->getOpcode() != Instruction::ZExt)
669 WI.IsSigned = IsSigned;
674 if (WI.IsSigned != IsSigned)
706 bool IsSigned; member in class:__anon2777::WidenIV
729 IsSigned(W
770 getExtend(Value *NarrowOper, Type *WideType, bool IsSigned, Instruction *Use) argument
[all...]
H A DLoopStrengthReduce.cpp1764 bool IsSigned = false; local
1779 IsSigned = false;
1783 IsSigned = true;
1813 Constant *NewInit = ConstantFP::get(DestTy, IsSigned ?
/freebsd-10.2-release/contrib/llvm/lib/ExecutionEngine/
H A DExecutionEngineBindings.cpp50 LLVMBool IsSigned) {
52 GenVal->IntVal = APInt(unwrap<IntegerType>(Ty)->getBitWidth(), N, IsSigned);
82 LLVMBool IsSigned) {
84 if (IsSigned)
48 LLVMCreateGenericValueOfInt(LLVMTypeRef Ty, unsigned long long N, LLVMBool IsSigned) argument
81 LLVMGenericValueToInt(LLVMGenericValueRef GenValRef, LLVMBool IsSigned) argument
/freebsd-10.2-release/contrib/llvm/lib/Target/PowerPC/
H A DPPCFastISel.cpp133 bool SelectIToFP(const Instruction *I, bool IsSigned);
134 bool SelectFPToI(const Instruction *I, bool IsSigned);
164 unsigned SrcReg, bool IsSigned);
165 unsigned PPCMoveToFPReg(MVT VT, unsigned SrcReg, bool IsSigned);
871 bool IsSigned) {
876 if (!PPCEmitIntExt(MVT::i32, SrcReg, MVT::i64, TmpReg, !IsSigned))
895 if (!IsSigned) {
906 if (!PPCEmitLoad(MVT::f64, ResultReg, Addr, RC, !IsSigned, LoadOpc))
913 bool PPCFastISel::SelectIToFP(const Instruction *I, bool IsSigned) { argument
939 if (!IsSigned
870 PPCMoveToFPReg(MVT SrcVT, unsigned SrcReg, bool IsSigned) argument
987 PPCMoveToIntReg(const Instruction *I, MVT VT, unsigned SrcReg, bool IsSigned) argument
1020 SelectFPToI(const Instruction *I, bool IsSigned) argument
[all...]
/freebsd-10.2-release/contrib/llvm/lib/CodeGen/AsmPrinter/
H A DDIE.h235 static dwarf::Form BestForm(bool IsSigned, uint64_t Int) { argument
236 if (IsSigned) {
/freebsd-10.2-release/contrib/llvm/lib/Target/AArch64/
H A DAArch64ISelLowering.h304 SDValue LowerFP_TO_INT(SDValue Op, SelectionDAG &DAG, bool IsSigned) const;
315 SDValue LowerINT_TO_FP(SDValue Op, SelectionDAG &DAG, bool IsSigned) const;
H A DAArch64ISelLowering.cpp2077 bool IsSigned) const {
2084 if (IsSigned)
2392 bool IsSigned) const {
2399 if (IsSigned)
/freebsd-10.2-release/contrib/llvm/include/llvm/Analysis/
H A DScalarEvolution.h887 bool IsSigned, bool NoWrap);
893 bool IsSigned, bool NoWrap);
/freebsd-10.2-release/contrib/llvm/include/llvm/MC/
H A DMCAssembler.h450 /// IsSigned - True if this is a sleb128, false if uleb128.
451 bool IsSigned; member in class:llvm::MCLEBFragment
457 Value(&Value_), IsSigned(IsSigned_) { Contents.push_back(0); }
464 bool isSigned() const { return IsSigned; }
/freebsd-10.2-release/contrib/llvm/lib/Analysis/
H A DScalarEvolution.cpp4616 bool IsSigned = Cond == ICmpInst::ICMP_SLT;
4617 ExitLimit EL = HowManyLessThans(LHS, RHS, L, IsSigned, IsSubExpr);
4623 bool IsSigned = Cond == ICmpInst::ICMP_SGT;
4624 ExitLimit EL = HowManyGreaterThans(LHS, RHS, L, IsSigned, IsSubExpr);
6341 bool IsSigned, bool NoWrap) {
6347 if (IsSigned) {
6370 bool IsSigned, bool NoWrap) {
6376 if (IsSigned) {
6414 const Loop *L, bool IsSigned,
6427 IV->getNoWrapFlags(IsSigned
[all...]
/freebsd-10.2-release/contrib/llvm/lib/Transforms/InstCombine/
H A DInstCombineCompares.cpp46 bool IsSigned) {
47 if (!IsSigned)
58 Constant *In2, bool IsSigned = false) {
67 IsSigned))
75 IsSigned);
80 bool IsSigned) {
81 if (!IsSigned)
93 Constant *In2, bool IsSigned = false) {
102 IsSigned))
110 IsSigned);
44 HasAddOverflow(ConstantInt *Result, ConstantInt *In1, ConstantInt *In2, bool IsSigned) argument
78 HasSubOverflow(ConstantInt *Result, ConstantInt *In1, ConstantInt *In2, bool IsSigned) argument
[all...]
/freebsd-10.2-release/contrib/llvm/tools/clang/include/clang/Basic/
H A DTargetInfo.h231 IntType getIntTypeByWidth(unsigned BitWidth, bool IsSigned) const;
/freebsd-10.2-release/contrib/llvm/lib/Transforms/Instrumentation/
H A DMemorySanitizer.cpp1453 bool IsSigned = I.isSigned(); local
1455 getLowestPossibleValue(IRB, A, Sa, IsSigned),
1456 getHighestPossibleValue(IRB, B, Sb, IsSigned));
1458 getHighestPossibleValue(IRB, A, Sa, IsSigned),
1459 getLowestPossibleValue(IRB, B, Sb, IsSigned));
/freebsd-10.2-release/contrib/llvm/lib/CodeGen/SelectionDAG/
H A DSelectionDAGBuilder.h774 SDValue Value, bool IsSigned);
H A DSelectionDAGBuilder.cpp5577 bool IsSigned) {
5579 if (IsSigned)
/freebsd-10.2-release/contrib/llvm/tools/clang/lib/Sema/
H A DSemaStmt.cpp655 static void AdjustAPSInt(llvm::APSInt &Val, unsigned BitWidth, bool IsSigned) { argument
660 Val.setIsSigned(IsSigned);
/freebsd-10.2-release/contrib/llvm/lib/Target/X86/
H A DX86ISelLowering.cpp8792 bool IsSigned, bool IsReplace) const {
8797 if (!IsSigned && !isIntegerTypeFTOL(DstTy)) {
8823 if (!IsSigned && isIntegerTypeFTOL(DstTy))
9144 /*IsSigned=*/ true, /*IsReplace=*/ false);
9162 /*IsSigned=*/ false, /*IsReplace=*/ false);
13547 bool IsSigned = N->getOpcode() == ISD::FP_TO_SINT; local
13549 if (!IsSigned && !isIntegerTypeFTOL(SDValue(N, 0).getValueType()))
13553 FP_TO_INTHelper(SDValue(N, 0), DAG, IsSigned, /*IsReplace=*/ true);
8791 FP_TO_INTHelper(SDValue Op, SelectionDAG &DAG, bool IsSigned, bool IsReplace) const argument

Completed in 581 milliseconds