HomeSort by relevance Sort by last modified time
    Searched refs:Ty2 (Results 1 - 8 of 8) 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/llvm/lib/Target/X86/
X86ISelLowering.h 639 /// type Ty1 to type Ty2. e.g. On x86 it's free to truncate a i32 value in
641 virtual bool isTruncateFree(Type *Ty1, Type *Ty2) const;
645 /// value of type Ty1 implicit zero-extends the value to Ty2 in the result
648 /// virtual registers. Also, if isTruncateFree(Ty2, Ty1) is true, this
652 virtual bool isZExtFree(Type *Ty1, Type *Ty2) const;
    [all...]
X86ISelLowering.cpp     [all...]
  /external/llvm/include/llvm/Target/
TargetLowering.h     [all...]
  /external/llvm/lib/CodeGen/SelectionDAG/
SelectionDAG.cpp     [all...]

Completed in 68 milliseconds