HomeSort by: relevance | last modified time | path
    Searched refs:VLA (Results 1 - 8 of 8) sorted by relevancy

  /src/external/apache2/llvm/dist/clang/lib/StaticAnalyzer/Checkers/
VLASizeChecker.cpp 10 // performs checks for declaration of VLA of undefined or zero size.
12 // of the MemRegion that represents a VLA.
45 /// Check a VLA for validity.
51 const VariableArrayType *VLA, SVal &ArraySize) const;
52 /// Check a single VLA index size expression for validity.
69 const VariableArrayType *VLA,
71 assert(VLA && "Function should be called with non-null VLA argument.");
76 // Walk over the VLAs for every dimension until a non-VLA is found.
80 // innermost VLA that was encountered
    [all...]
  /src/tests/usr.bin/xlint/lint1/
c11.c 113 typedef int VLA[m][m];
  /src/external/apache2/llvm/dist/clang/include/clang/Sema/
ScopeInfo.h 111 /// Whether this function contains a VLA, \@try, try, C++
598 Capture(IsVLACapture, const VariableArrayType *VLA, bool IsNested,
600 : CapturedVLA(VLA), Loc(Loc), CaptureType(CaptureType), Kind(Cap_VLA),
  /src/external/apache2/llvm/dist/clang/lib/CodeGen/
CGExpr.cpp 3546 // Note that VLA pointers are always decayed, so we don't need to do
3615 const VariableArrayType *vla) {
3618 eltType = vla->getElementType();
3619 } while ((vla = ctx.getAsVariableArrayType(eltType)));
3675 if (auto vla = CGF.getContext().getAsVariableArrayType(eltType)) {
3676 eltType = getFixedSizeElementType(CGF.getContext(), vla);
3766 if (const VariableArrayType *vla =
3770 // the VLA bounds.
3774 // The element count here is the total number of non-VLA elements.
3775 llvm::Value *numElements = getVLASize(vla).NumElts
    [all...]
CGStmtOpenMP.cpp 306 // getTypeSizeInChars() returns 0 for a VLA.
389 if (const auto *VLA = dyn_cast<VariableArrayType>(A))
390 return getCanonicalParamType(C, VLA->getElementType());
405 /// true if only casted arguments must be registered as local args or VLA
461 // deal with pointers. We can pass in the same way the VLA type sizes to the
475 II = &Ctx.Idents.get("vla");
CGOpenMPRuntime.cpp 5466 // Get array size and emit VLA type.
5470 const VariableArrayType *VLA =
5472 const auto *OVE = cast<OpaqueValueExpr>(VLA->getSizeExpr());
9334 // If we don't have any VLA types or other types that require runtime
10237 // VLA sizes are passed to the outlined region by copy and do not have map
  /src/external/gpl3/gdb/dist/gnulib/
configure 35347 /* Test for VLA support. This test is partly inspired
35348 from examples in the C standard. Use at least two VLA
35368 typedef int VLA[m][m];
35369 VLA x;
  /src/external/gpl3/gdb.old/dist/gnulib/
configure 35347 /* Test for VLA support. This test is partly inspired
35348 from examples in the C standard. Use at least two VLA
35368 typedef int VLA[m][m];
35369 VLA x;

Completed in 85 milliseconds