Lines Matching defs:space
43 // Bits 3 to 7 are reserved to denote the space where the region is located.
111 static inline std::string ToSpaceTypeName(uint8_t space)
113 switch (space) {
115 return "eden space";
117 return "young space";
119 return "snapshot space";
121 return "huge object space";
123 return "old space";
125 return "non movable space";
127 return "machine code space";
129 return "read only space";
131 return "appspawn space";
133 return "huge machine code space";
135 return "shared non movable space";
137 return "shared old space";
139 return "shared read only space";
141 return "shared huge object space";
143 return "shared appspawn space";
145 return "invalid space";
168 // JitFort space is divided into regions (JitForRegion) to enable
170 // JitFort space, and GC marking actually happens in corresponding
171 // MachineCode objects where JitFort space is allocated to. So no
535 // Not including shared read only space.
567 uint8_t space = packedData_.flags_.spaceFlag_;
568 return space >= RegionSpaceFlag::HEAP_SPACE_BEGIN && space <= RegionSpaceFlag::HEAP_SPACE_END;