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

  /external/llvm/lib/Target/MSP430/
MSP430ISelLowering.h 103 /// Ty1 to type Ty2. e.g. On msp430 it's free to truncate a i16 value in
105 virtual bool isTruncateFree(Type *Ty1, Type *Ty2) const;
109 /// of type Ty1 implicit zero-extends the value to Ty2 in the result
112 /// registers. Also, if isTruncateFree(Ty2, Ty1) is true, this does not
116 virtual bool isZExtFree(Type *Ty1, Type *Ty2) const;
MSP430ISelLowering.cpp     [all...]
  /external/llvm/lib/Transforms/Scalar/
GlobalMerge.cpp 107 Type *Ty2 = cast<PointerType>(GV2->getType())->getElementType();
109 return (TD->getTypeAllocSize(Ty1) < TD->getTypeAllocSize(Ty2));
  /external/llvm/lib/Transforms/IPO/
MergeFunctions.cpp 188 bool isEquivalentType(Type *Ty1, Type *Ty2) const;
204 Type *Ty2) const {
205 if (Ty1 == Ty2)
207 if (Ty1->getTypeID() != Ty2->getTypeID()) {
210 if (isa<PointerType>(Ty1) && Ty2 == TD->getIntPtrType(Ctx)) return true;
211 if (isa<PointerType>(Ty2) && Ty1 == TD->getIntPtrType(Ctx)) return true;
222 // Ty1 == Ty2 would have returned true earlier.
237 PointerType *PTy2 = cast<PointerType>(Ty2);
243 StructType *STy2 = cast<StructType>(Ty2);
259 FunctionType *FTy2 = cast<FunctionType>(Ty2);
    [all...]
  /external/clang/include/clang/StaticAnalyzer/Core/PathSensitive/
SValBuilder.h 78 bool haveSameType(QualType Ty1, QualType Ty2) {
81 return (Context.getCanonicalType(Ty1) == Context.getCanonicalType(Ty2) ||
82 (Ty1->isIntegerType() && Ty2->isIntegerType()));
  /external/llvm/lib/Target/Hexagon/
HexagonISelLowering.h 82 virtual bool isTruncateFree(Type *Ty1, Type *Ty2) const;
HexagonISelLowering.cpp     [all...]
  /external/llvm/lib/Target/X86/
X86ISelLowering.h 598 /// type Ty1 to type Ty2. e.g. On x86 it's free to truncate a i32 value in
600 virtual bool isTruncateFree(Type *Ty1, Type *Ty2) const;
604 /// value of type Ty1 implicit zero-extends the value to Ty2 in the result
607 /// virtual registers. Also, if isTruncateFree(Ty2, Ty1) is true, this
611 virtual bool isZExtFree(Type *Ty1, Type *Ty2) const;
    [all...]
X86ISelLowering.cpp     [all...]
  /external/llvm/lib/CodeGen/SelectionDAG/
SelectionDAG.cpp     [all...]

Completed in 751 milliseconds