HomeSort by relevance Sort by last modified time
    Searched refs:IsLarge (Results 1 - 2 of 2) sorted by null

  /external/llvm/include/llvm/CodeGen/
StackProtector.h 93 /// \param [out] IsLarge is set to true if a protectable array is found and
96 bool ContainsProtectableArray(Type *Ty, bool &IsLarge, bool Strong = false,
  /external/llvm/lib/CodeGen/
StackProtector.cpp 103 /// \param [out] IsLarge is set to true if a protectable array is found and
106 bool StackProtector::ContainsProtectableArray(Type *Ty, bool &IsLarge,
124 IsLarge = true;
141 if (ContainsProtectableArray(*I, IsLarge, Strong, true)) {
145 if (IsLarge)
244 bool IsLarge = false;
245 if (ContainsProtectableArray(AI->getAllocatedType(), IsLarge, Strong)) {
246 Layout.insert(std::make_pair(AI, IsLarge ? SSPLK_LargeArray

Completed in 90 milliseconds