HomeSort by relevance Sort by last modified time
    Searched refs:DstTy (Results 1 - 22 of 22) sorted by null

  /external/llvm/lib/ExecutionEngine/Interpreter/
Interpreter.h 216 GenericValue executeTruncInst(Value *SrcVal, Type *DstTy,
218 GenericValue executeSExtInst(Value *SrcVal, Type *DstTy,
220 GenericValue executeZExtInst(Value *SrcVal, Type *DstTy,
222 GenericValue executeFPTruncInst(Value *SrcVal, Type *DstTy,
224 GenericValue executeFPExtInst(Value *SrcVal, Type *DstTy,
226 GenericValue executeFPToUIInst(Value *SrcVal, Type *DstTy,
228 GenericValue executeFPToSIInst(Value *SrcVal, Type *DstTy,
230 GenericValue executeUIToFPInst(Value *SrcVal, Type *DstTy,
232 GenericValue executeSIToFPInst(Value *SrcVal, Type *DstTy,
234 GenericValue executePtrToIntInst(Value *SrcVal, Type *DstTy,
    [all...]
Execution.cpp     [all...]
  /external/llvm/lib/Linker/
LinkModules.cpp 62 void addTypeMapping(Type *DstTy, Type *SrcTy);
93 bool areTypesIsomorphic(Type *DstTy, Type *SrcTy);
97 void TypeMapTy::addTypeMapping(Type *DstTy, Type *SrcTy) {
101 if (DstTy == SrcTy) {
102 Entry = DstTy;
108 if (!areTypesIsomorphic(DstTy, SrcTy)) {
119 bool TypeMapTy::areTypesIsomorphic(Type *DstTy, Type *SrcTy) {
121 if (DstTy->getTypeID() != SrcTy->getTypeID()) return false;
126 return Entry == DstTy;
130 if (DstTy == SrcTy)
    [all...]
  /external/clang/lib/CodeGen/
CGExprScalar.cpp 103 Value *EmitConversionToBool(Value *Src, QualType DstTy);
109 QualType DstType, llvm::Type *DstTy);
113 Value *EmitScalarConversion(Value *Src, QualType SrcTy, QualType DstTy);
119 QualType SrcTy, QualType DstTy);
556 llvm::Type *DstTy) {
592 if (isa<llvm::IntegerType>(DstTy)) {
713 llvm::Type *DstTy = ConvertType(DstType);
716 if (SrcTy == DstTy)
722 if (isa<llvm::PointerType>(DstTy)) {
725 return Builder.CreateBitCast(Src, DstTy, "conv")
    [all...]
MicrosoftCXXABI.cpp     [all...]
CGCall.cpp 798 llvm::Type *DstTy
    [all...]
CodeGenFunction.h     [all...]
  /external/llvm/lib/IR/
Instructions.cpp     [all...]
ConstantFold.cpp 44 static Constant *BitCastConstantVector(Constant *CV, VectorType *DstTy) {
46 if (CV->isAllOnesValue()) return Constant::getAllOnesValue(DstTy);
47 if (CV->isNullValue()) return Constant::getNullValue(DstTy);
52 unsigned NumElts = DstTy->getNumElements();
56 Type *DstEltTy = DstTy->getElementType();
78 Type *DstTy ///< destination type of the first cast
81 assert(DstTy && DstTy->isFirstClassType() && "Invalid cast destination type");
93 IntegerType *FakeIntPtrTy = Type::getInt64Ty(DstTy->getContext());
96 return CastInst::isEliminableCastPair(firstOp, secondOp, SrcTy, MidTy, DstTy,
    [all...]
Constants.cpp     [all...]
Verifier.cpp     [all...]
  /external/llvm/lib/Target/ARM/
ARMTargetTransformInfo.cpp 202 EVT DstTy = TLI->getValueType(Dst);
204 if (!SrcTy.isSimple() || !DstTy.isSimple())
288 ISD, DstTy.getSimpleVT(), SrcTy.getSimpleVT());
319 ISD, DstTy.getSimpleVT(),
352 ISD, DstTy.getSimpleVT(),
374 ISD, DstTy.getSimpleVT(),
  /external/llvm/include/llvm/IR/
InstrTypes.h 576 Type *DstTy, ///< DstTy of cast
589 /// the pair, casting SrcTy to DstTy.
595 Type *MidTy, ///< DstTy of 1st cast & SrcTy of 2nd cast
596 Type *DstTy, ///< DstTy of 2nd cast
599 Type *DstIntPtrTy ///< Integer type corresponding to Ptr DstTy, or null
612 /// This method can be used to determine if a cast from S to DstTy using
616 static bool castIsValid(Instruction::CastOps op, Value *S, Type *DstTy);
    [all...]
  /external/llvm/lib/Target/X86/
X86TargetTransformInfo.cpp 398 EVT DstTy = TLI->getValueType(Dst);
401 if (!SrcTy.isSimple() || !DstTy.isSimple())
451 ISD, DstTy.getSimpleVT(), SrcTy.getSimpleVT());
X86ISelLowering.cpp     [all...]
  /external/llvm/lib/Transforms/InstCombine/
InstCombineCasts.cpp 237 Type *DstTy, ///< The target type for the second cast instruction
251 Type *DstIntPtrTy = TD && DstTy->isPtrOrPtrVectorTy() ?
252 TD->getIntPtrType(DstTy) : 0;
254 DstTy, SrcIntPtrTy, MidIntPtrTy,
260 (Res == Instruction::PtrToInt && DstTy != SrcIntPtrTy))
    [all...]
InstCombineCalls.cpp 778 Type* DstTy = cast<PointerType>(CI->getType())->getElementType();
779 if (!SrcTy->isSized() || !DstTy->isSized())
781 if (!TD || TD->getTypeAllocSize(SrcTy) != TD->getTypeAllocSize(DstTy))
    [all...]
  /external/llvm/lib/Transforms/Scalar/
LoopStrengthReduce.cpp     [all...]
  /external/llvm/lib/Analysis/
InstructionSimplify.cpp     [all...]
  /external/llvm/lib/Transforms/Vectorize/
LoopVectorize.cpp     [all...]
  /external/clang/lib/Sema/
SemaChecking.cpp     [all...]
SemaExpr.cpp     [all...]

Completed in 414 milliseconds