Searched refs:IntTy (Results 1 - 20 of 20) sorted by relevance

/macosx-10.10.1/llvmCore-3425.0.34/include/llvm/Support/
H A DIntegersSubsetMapping.h32 class IntTy = IntItem>
40 typedef IntRange<IntTy> RangeTy;
46 RangeEx(const IntTy &C) : RangeTy(C), Weight(1) {}
47 RangeEx(const IntTy &L, const IntTy &H) : RangeTy(L, H), Weight(1) {}
48 RangeEx(const IntTy &L, const IntTy &H, unsigned W) :
58 typedef IntegersSubsetMapping<SuccessorClass, IntegersSubsetTy, IntTy> self;
117 IntTy OpenPt;
128 IntegersSubsetMapping<SuccessorClass, IntegersSubsetTy, IntTy> MappingT
[all...]
H A DIntegersSubset.h88 #define INT_ITEM_DEFINE_OP_STANDARD_INT(RetTy, op, IntTy) \
89 RetTy operator op (IntTy RHS) const { \
279 template <class IntTy>
287 typedef std::vector<IntTy> FlatCollectionTy;
288 typedef std::pair<IntTy*, IntTy*> RangeLinkTy;
292 typedef IntegersSubsetGeneric<IntTy> self;
352 typedef IntRange<IntTy> Range;
357 bool isSatisfies(const IntTy &CheckingVal) const {
448 const IntTy
[all...]
/macosx-10.10.1/llvmCore-3425.0.34/include/llvm/ADT/
H A DStringExtras.h38 template<typename IntTy>
39 static inline char *utohex_buffer(IntTy X, char *BufferEnd) {
/macosx-10.10.1/llvmCore-3425.0.34/lib/Transforms/Instrumentation/
H A DBoundsChecking.cpp146 IntegerType *IntTy = TD->getIntPtrType(Inst->getContext()); local
147 Value *NeededSizeVal = ConstantInt::get(IntTy, NeededSize);
161 Value *Cmp1 = Builder->CreateICmpSLT(Offset, ConstantInt::get(IntTy, 0));
/macosx-10.10.1/llvmCore-3425.0.34/lib/CodeGen/
H A DMachineFunction.cpp692 Type *IntTy = IntegerType::get(A->getContext(), StoreSize*8);
699 A = ConstantFoldInstOperands(Instruction::PtrToInt, IntTy,
701 else if (A->getType() != IntTy)
702 A = ConstantFoldInstOperands(Instruction::BitCast, IntTy,
705 B = ConstantFoldInstOperands(Instruction::PtrToInt, IntTy,
707 else if (B->getType() != IntTy)
708 B = ConstantFoldInstOperands(Instruction::BitCast, IntTy,
/macosx-10.10.1/llvmCore-3425.0.34/lib/Analysis/
H A DMemoryBuiltins.cpp381 IntegerType *IntTy = TD->getIntPtrType(Context); local
382 IntTyBits = IntTy->getBitWidth();
566 IntTy = TD->getIntPtrType(Context);
567 Zero = ConstantInt::get(IntTy, 0);
665 FirstArg = Builder.CreateZExt(FirstArg, IntTy);
670 SecondArg = Builder.CreateZExt(SecondArg, IntTy);
715 PHINode *SizePHI = Builder.CreatePHI(IntTy, PHI.getNumIncomingValues());
716 PHINode *OffsetPHI = Builder.CreatePHI(IntTy, PHI.getNumIncomingValues());
727 OffsetPHI->replaceAllUsesWith(UndefValue::get(IntTy));
729 SizePHI->replaceAllUsesWith(UndefValue::get(IntTy));
[all...]
H A DScalarEvolutionExpander.cpp1001 Type *ExpandTy, Type *IntTy,
1013 IncV = expandAddToGEP(StepArray, StepArray+1, GEPPtrTy, IntTy, PN);
1034 Type *IntTy) {
1113 Value *StepV = expandCodeFor(Step, IntTy, L->getHeader()->begin());
1139 Value *IncV = expandIVInc(PN, StepV, L, ExpandTy, IntTy, useSubtract);
1160 Type *IntTy = SE.getEffectiveSCEVType(STy); local
1203 Type *ExpandTy = PostLoopScale ? IntTy : STy;
1204 PHINode *PN = getAddRecExprPHILiterally(Normalized, L, ExpandTy, IntTy);
1238 Value *StepV = expandCodeFor(Step, IntTy, L->getHeader()->begin());
1242 Result = expandIVInc(PN, StepV, L, ExpandTy, IntTy, useSubtrac
1000 expandIVInc(PHINode *PN, Value *StepV, const Loop *L, Type *ExpandTy, Type *IntTy, bool useSubtract) argument
1031 getAddRecExprPHILiterally(const SCEVAddRecExpr *Normalized, const Loop *L, Type *ExpandTy, Type *IntTy) argument
[all...]
/macosx-10.10.1/llvmCore-3425.0.34/include/llvm/Analysis/
H A DScalarEvolutionExpander.h263 Type *IntTy);
265 Type *ExpandTy, Type *IntTy, bool useSubtract);
H A DMemoryBuiltins.h220 IntegerType *IntTy; member in class:llvm::ObjectSizeOffsetEvaluator
/macosx-10.10.1/llvmCore-3425.0.34/lib/VMCore/
H A DValueTypes.cpp24 EVT IntTy = getIntegerVT(Context, getVectorElementType().getSizeInBits()); local
25 return getVectorVT(Context, IntTy, getVectorNumElements());
H A DCore.cpp614 LLVMValueRef LLVMConstInt(LLVMTypeRef IntTy, unsigned long long N, argument
616 return wrap(ConstantInt::get(unwrap<IntegerType>(IntTy), N, SignExtend != 0));
619 LLVMValueRef LLVMConstIntOfArbitraryPrecision(LLVMTypeRef IntTy, argument
622 IntegerType *Ty = unwrap<IntegerType>(IntTy);
628 LLVMValueRef LLVMConstIntOfString(LLVMTypeRef IntTy, const char Str[], argument
630 return wrap(ConstantInt::get(unwrap<IntegerType>(IntTy), StringRef(Str),
634 LLVMValueRef LLVMConstIntOfStringAndSize(LLVMTypeRef IntTy, const char Str[], argument
636 return wrap(ConstantInt::get(unwrap<IntegerType>(IntTy), StringRef(Str, SLen),
H A DVerifier.cpp810 IntegerType *IntTy = cast<IntegerType>(SwitchTy); local
817 Assert1(((const APInt&)r.getLow()).getBitWidth() == IntTy->getBitWidth(),
819 Assert1(((const APInt&)r.getHigh()).getBitWidth() == IntTy->getBitWidth(),
/macosx-10.10.1/llvmCore-3425.0.34/lib/Transforms/Scalar/
H A DLoopStrengthReduce.cpp2735 Type *IntTy = SE.getEffectiveSCEVType(IVTy); local
2750 const SCEV *IncExpr = SE.getNoopOrSignExtend(IncI->IncExpr, IntTy);
2757 Value *IncV = Rewriter.expandCodeFor(LeftOverExpr, IntTy, InsertPt);
3266 Type *IntTy = Base.getType();
3267 if (!IntTy) return;
3268 if (SE.getTypeSizeInBits(IntTy) > 64) return;
3305 const SCEV *FactorS = SE.getConstant(IntTy, Factor);
3340 Type *IntTy = Base.getType(); local
3341 if (!IntTy) return;
3375 const SCEV *FactorS = SE.getConstant(IntTy, Facto
3545 Type *IntTy = SE.getEffectiveSCEVType(OrigReg->getType()); local
4288 Type *IntTy = SE.getEffectiveSCEVType(Ty); local
[all...]
H A DSROA.cpp2379 Type *IntTy = Type::getIntNTy(VTy->getContext(), local
2382 V = IRB.CreateMul(IRB.CreateZExt(V, IntTy, getName(".zext")),
2384 Constant::getAllOnesValue(IntTy),
2387 IntTy)),
/macosx-10.10.1/llvmCore-3425.0.34/include/llvm/CodeGen/
H A DValueTypes.h542 MVT IntTy = MVT::getIntegerVT(BitWidth); local
543 MVT VecTy = MVT::getVectorVT(IntTy, getVectorNumElements());
/macosx-10.10.1/llvmCore-3425.0.34/include/llvm-c/
H A DCore.h1307 * @param IntTy Integer type to obtain value of.
1311 LLVMValueRef LLVMConstInt(LLVMTypeRef IntTy, unsigned long long N,
1319 LLVMValueRef LLVMConstIntOfArbitraryPrecision(LLVMTypeRef IntTy,
1332 LLVMValueRef LLVMConstIntOfString(LLVMTypeRef IntTy, const char *Text,
1341 LLVMValueRef LLVMConstIntOfStringAndSize(LLVMTypeRef IntTy, const char *Text,
/macosx-10.10.1/llvmCore-3425.0.34/bindings/ocaml/llvm/
H A Dllvm_ocaml.c604 CAMLprim LLVMValueRef llvm_const_int(LLVMTypeRef IntTy, value N) { argument
605 return LLVMConstInt(IntTy, (long long) Int_val(N), 1);
609 CAMLprim LLVMValueRef llvm_const_of_int64(LLVMTypeRef IntTy, value N, argument
611 return LLVMConstInt(IntTy, Int64_val(N), Bool_val(SExt));
628 CAMLprim LLVMValueRef llvm_const_int_of_string(LLVMTypeRef IntTy, value S, argument
630 return LLVMConstIntOfStringAndSize(IntTy, String_val(S), caml_string_length(S),
/macosx-10.10.1/llvmCore-3425.0.34/include/llvm/
H A DIRBuilder.h1006 IntegerType *IntTy = cast<IntegerType>(V->getType()); local
1007 if (IntTy->getBitWidth() < DestTy->getBitWidth())
1009 if (IntTy->getBitWidth() > DestTy->getBitWidth())
1018 IntegerType *IntTy = cast<IntegerType>(V->getType()); local
1019 if (IntTy->getBitWidth() < DestTy->getBitWidth())
1021 if (IntTy->getBitWidth() > DestTy->getBitWidth())
/macosx-10.10.1/JavaScriptCore-7600.1.17/llvm/
H A DLLVMAPIFunctions.h206 macro(LLVMValueRef, ConstInt, (LLVMTypeRef IntTy, unsigned long long N, LLVMBool SignExtend)) \
207 macro(LLVMValueRef, ConstIntOfArbitraryPrecision, (LLVMTypeRef IntTy, unsigned NumWords, const uint64_t Words[])) \
208 macro(LLVMValueRef, ConstIntOfString, (LLVMTypeRef IntTy, const char *Text, uint8_t Radix)) \
209 macro(LLVMValueRef, ConstIntOfStringAndSize, (LLVMTypeRef IntTy, const char *Text, unsigned SLen, uint8_t Radix)) \
/macosx-10.10.1/llvmCore-3425.0.34/lib/Transforms/InstCombine/
H A DInstCombineCompares.cpp2709 IntegerType *IntTy = cast<IntegerType>(LHSI->getOperand(0)->getType()); local
2715 unsigned IntWidth = IntTy->getScalarSizeInBits();
2772 ? ConstantExpr::getFPToUI(RHSC, IntTy)
2773 : ConstantExpr::getFPToSI(RHSC, IntTy);

Completed in 612 milliseconds