HomeSort by relevance Sort by last modified time
    Searched refs:SrcTy (Results 1 - 25 of 35) sorted by null

1 2

  /external/llvm/lib/IR/
Verifier.cpp 328 void VerifyBitcastType(const Value *V, Type *DestTy, Type *SrcTy);
    [all...]
Instructions.cpp     [all...]
ConstantFold.cpp 85 Type *SrcTy = Op->getOperand(0)->getType();
96 return CastInst::isEliminableCastPair(firstOp, secondOp, SrcTy, MidTy, DstTy,
101 Type *SrcTy = V->getType();
102 if (SrcTy == DestTy)
139 if (VectorType *SrcTy = dyn_cast<VectorType>(V->getType())) {
140 assert(DestPTy->getBitWidth() == SrcTy->getBitWidth() &&
142 SrcTy = NULL;
    [all...]
  /external/llvm/lib/Linker/
LinkModules.cpp 62 void addTypeMapping(Type *DstTy, Type *SrcTy);
70 Type *get(Type *SrcTy);
89 Type *remapType(Type *SrcTy) {
90 return get(SrcTy);
93 bool areTypesIsomorphic(Type *DstTy, Type *SrcTy);
97 void TypeMapTy::addTypeMapping(Type *DstTy, Type *SrcTy) {
98 Type *&Entry = MappedTypes[SrcTy];
101 if (DstTy == SrcTy) {
108 if (!areTypesIsomorphic(DstTy, SrcTy)) {
119 bool TypeMapTy::areTypesIsomorphic(Type *DstTy, Type *SrcTy) {
    [all...]