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

  /external/swiftshader/third_party/llvm-7.0/llvm/include/llvm/CodeGen/
StackProtector.h 92 /// \param [out] IsLarge is set to true if a protectable array is found and
95 bool ContainsProtectableArray(Type *Ty, bool &IsLarge, bool Strong = false,
  /external/llvm/lib/CodeGen/
StackProtector.cpp 116 /// \param [out] IsLarge is set to true if a protectable array is found and
119 bool StackProtector::ContainsProtectableArray(Type *Ty, bool &IsLarge,
137 IsLarge = true;
154 if (ContainsProtectableArray(*I, IsLarge, Strong, true)) {
158 if (IsLarge)
263 bool IsLarge = false;
264 if (ContainsProtectableArray(AI->getAllocatedType(), IsLarge, Strong)) {
265 Layout.insert(std::make_pair(AI, IsLarge ? SSPLK_LargeArray
  /external/llvm/include/llvm/CodeGen/
StackProtector.h 99 /// \param [out] IsLarge is set to true if a protectable array is found and
102 bool ContainsProtectableArray(Type *Ty, bool &IsLarge, bool Strong = false,
  /external/swiftshader/third_party/llvm-7.0/llvm/lib/CodeGen/
StackProtector.cpp 110 /// \param [out] IsLarge is set to true if a protectable array is found and
113 bool StackProtector::ContainsProtectableArray(Type *Ty, bool &IsLarge,
131 IsLarge = true;
148 if (ContainsProtectableArray(*I, IsLarge, Strong, true)) {
152 if (IsLarge)
287 bool IsLarge = false;
288 if (ContainsProtectableArray(AI->getAllocatedType(), IsLarge, Strong)) {
289 Layout.insert(std::make_pair(AI, IsLarge
  /art/runtime/gc/space/
region_space.cc 193 DCHECK(IsLarge() || IsLargeTail()) << static_cast<uint>(state_);
223 DCHECK((IsAllocated() || IsLarge()) && IsInToSpace());
252 DCHECK(IsLarge());
282 DCHECK(IsLarge());
314 DCHECK(region->IsLarge());
641 if (r->IsLarge()) {
    [all...]
region_space-inl.h 241 if (r->IsLarge()) {
259 DCHECK(!r->IsLarge() && !r->IsLargeTail());
476 DCHECK(reg->IsLarge());
495 if (IsLarge()) {
516 if (IsLarge()) {
region_space.h 264 return r->IsLarge();
458 bool IsLarge() const {
549 live_bytes_ += IsLarge() ? Top() - begin_ : live_bytes;

Completed in 1198 milliseconds