Searched refs:is_thread_local (Results 1 - 14 of 14) sorted by relevance

/macosx-10.10/libauto-186/
H A DBlockRef.h52 inline bool is_thread_local() const { return subzone()->is_thread_local(q()); } function in class:Auto::SubzoneBlockRef
91 inline bool is_thread_local() const { return false; } function in class:Auto::LargeBlockRef
H A DSubzone.h473 inline bool is_new(usword_t q) const { ASSERTION(!is_thread_local(q)); return !is_eldest(_side_data[q]); }
475 inline bool is_newest(usword_t q) const { ASSERTION(!is_thread_local(q)); return is_youngest(_side_data[q]); }
478 inline usword_t age(usword_t q) const { ASSERTION(!is_thread_local(q)); return (_side_data[q] & age_mask) >> age_mask_log2; }
481 ASSERTION(!is_thread_local(q));
491 if (!is_thread_local(q)) {
504 inline bool is_thread_local(usword_t q) const { return (_side_data[q] & (start_bit|alloc_local_bit|global_bit)) == (start_bit|alloc_local_bit); } function in class:Auto::Subzone
535 // Theoretically we should be able to assert !is_thread_local(q) here. But due to the way the bits
538 inline void mark_global_garbage(usword_t q) { /* ASSERTION(!is_thread_local(q)); */ _side_data[q] = (_side_data[q] & (start_bit|layout_mask)) | garbage_bit; }
540 inline bool is_global_garbage(usword_t q) const { return !is_thread_local(q) && is_garbage(q); }
H A DInUseEnumerator.cpp89 } else if (!subzoneReader->is_thread_local(q)) {
H A DThreadLocalCollector.cpp62 if (subzone->block_is_start(q) && subzone->is_thread_local(q)) {
312 if (subzone->is_thread_local(q)) {
541 assert(subzone->block_is_start(startingBlock, &q) && subzone->is_thread_local(q));
557 assert(subzone->is_thread_local(q));
H A DZoneDump.cpp151 _visitor->visit_node(block, subzone->size(q), subzone->layout(q), ref.refcount(), subzone->is_thread_local(q));
H A DThread.h363 if (block.is_thread_local()) block_escaped_internal(block);
374 if (value.is_thread_local()) {
H A DThread.cpp213 if (ref.is_thread_local()) block_escaped(ref);
223 assert(block.is_thread_local());
H A DReferenceIterator.h271 if (subzone->is_thread_local(q) || subzone->is_new(q)) {
388 bool is_local = subzone->is_thread_local(q);
H A DZone.h718 return subzone->is_thread_local(subzone->quantum_index_unchecked(block));
1104 if (value_block.is_thread_local() || value_block.is_new())
H A Dauto_zone.h666 void (^visit_node)(const void *address, size_t size, auto_memory_type_t type, uint32_t refcount, boolean_t is_thread_local); member in struct:__anon9461
H A Dauto_zone.cpp852 if (sz->is_thread_local(q)) {
888 if (new_value.is_thread_local()) {
H A DZone.cpp1365 if (subzone->is_thread_local(q)) return true;
/macosx-10.10/llvmCore-3425.0.34/bindings/ocaml/llvm/
H A Dllvm.ml531 external is_thread_local : llvalue -> bool = "llvm_is_thread_local"
H A Dllvm.mli1268 (** [is_thread_local gv] returns [true] if the global variable [gv] is
1271 val is_thread_local : llvalue -> bool var

Completed in 350 milliseconds