Home
last modified time | relevance | path

Searched refs:LType (Results 1 – 5 of 5) sorted by relevance

/external/llvm/lib/Transforms/Scalar/
DCodeGenPrepare.cpp983 unsigned LType; in MoveExtToFormExtLoad() local
985 LType = ISD::ZEXTLOAD; in MoveExtToFormExtLoad()
988 LType = ISD::SEXTLOAD; in MoveExtToFormExtLoad()
990 if (TLI && !TLI->isLoadExtLegal(LType, TLI->getValueType(LI->getType()))) in MoveExtToFormExtLoad()
/external/llvm/utils/TableGen/
DTGParser.cpp741 ListRecTy *LType = dynamic_cast<ListRecTy*>(LHSt->getType()); in ParseOperation() local
743 if (LType == 0 && SType == 0) { in ParseOperation()
774 ListRecTy *LType = dynamic_cast<ListRecTy*>(LHSt->getType()); in ParseOperation() local
775 if (LType == 0) { in ParseOperation()
780 Type = LType->getElementType(); in ParseOperation()
782 Type = LType; in ParseOperation()
DRecord.cpp251 ListRecTy *LType = dynamic_cast<ListRecTy*>(LI->getType()); in convertValue() local
252 if (LType == 0) { in convertValue()
/external/clang/lib/Sema/
DSemaExprCXX.cpp3286 QualType LType = lex.get()->getType(); in CheckPointerToMemberOperands() local
3288 if (const PointerType *Ptr = LType->getAs<PointerType>()) in CheckPointerToMemberOperands()
3289 LType = Ptr->getPointeeType(); in CheckPointerToMemberOperands()
3292 << OpSpelling << 1 << LType in CheckPointerToMemberOperands()
3298 if (!Context.hasSameUnqualifiedType(Class, LType)) { in CheckPointerToMemberOperands()
3300 if (RequireCompleteType(Loc, LType, PDiag(diag::err_bad_memptr_lhs) in CheckPointerToMemberOperands()
3308 if (!IsDerivedFrom(LType, Class, Paths) || in CheckPointerToMemberOperands()
3337 Result = Context.getCVRQualifiedType(Result, LType.getCVRQualifiers()); in CheckPointerToMemberOperands()
/external/llvm/lib/Analysis/
DScalarEvolution.cpp448 unsigned LType = LHS->getSCEVType(), RType = RHS->getSCEVType(); in compare() local
449 if (LType != RType) in compare()
450 return (int)LType - (int)RType; in compare()
455 switch (LType) { in compare()