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

/external/clang/lib/CodeGen/
H A DCodeGenFunction.cpp771 llvm::tie(numElts, eltType) = getVLASize(vlaType);
856 numVLAElements = getVLASize(cast<VariableArrayType>(arrayType)).first;
923 CodeGenFunction::getVLASize(QualType type) { function in class:CodeGenFunction
926 return getVLASize(vla);
930 CodeGenFunction::getVLASize(const VariableArrayType *type) { function in class:CodeGenFunction
H A DCGExprScalar.cpp1320 llvm::Value *numElts = CGF.getVLASize(vla).first;
1588 llvm::tie(numElts, eltType) = CGF.getVLASize(VAT);
1973 llvm::Value *numElements = CGF.getVLASize(vla).first;
2070 llvm::tie(numElements, elementType) = CGF.getVLASize(vla);
H A DCodeGenFunction.h1716 /// getVLASize - Returns an LLVM value that corresponds to the size,
1720 std::pair<llvm::Value*,QualType> getVLASize(const VariableArrayType *vla);
1721 std::pair<llvm::Value*,QualType> getVLASize(QualType vla);
H A DCGDecl.cpp881 llvm::tie(elementCount, elementType) = getVLASize(Ty);
H A DCGExpr.cpp1829 llvm::Value *numElements = getVLASize(vla).first;

Completed in 67 milliseconds