Home
last modified time | relevance | path

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

/external/clang/lib/CodeGen/
DCodeGenFunction.cpp1294 std::tie(numElts, eltType) = getVLASize(vlaType); in EmitNullInitialization()
1379 numVLAElements = getVLASize(cast<VariableArrayType>(arrayType)).first; in emitArrayLength()
1461 CodeGenFunction::getVLASize(QualType type) { in getVLASize() function in CodeGenFunction
1464 return getVLASize(vla); in getVLASize()
1468 CodeGenFunction::getVLASize(const VariableArrayType *type) { in getVLASize() function in CodeGenFunction
DCGExprScalar.cpp1739 llvm::Value *numElts = CGF.getVLASize(vla).first; in EmitScalarPrePostIncDec()
2027 std::tie(numElts, eltType) = CGF.getVLASize(VAT); in VisitUnaryExprOrTypeTraitExpr()
2473 llvm::Value *numElements = CGF.getVLASize(vla).first; in emitPointerArithmetic()
2666 std::tie(numElements, elementType) = CGF.getVLASize(vla); in EmitSub()
DCodeGenFunction.h1633 std::pair<llvm::Value*,QualType> getVLASize(const VariableArrayType *vla);
1634 std::pair<llvm::Value*,QualType> getVLASize(QualType vla);
DCGDecl.cpp994 std::tie(elementCount, elementType) = getVLASize(Ty); in EmitAutoVarAlloca()
DCGExpr.cpp692 return CGF.getVLASize(VAT).first; in getArrayIndexingBound()
2478 llvm::Value *numElements = getVLASize(vla).first; in EmitArraySubscriptExpr()