/netbsd-src/external/gpl3/gcc.old/dist/gcc/ |
H A D | memory-block.h | 51 block_list *m_blocks; variable 58 if (instance.m_blocks == NULL) in allocate() 61 void *result = instance.m_blocks; in allocate() 62 instance.m_blocks = instance.m_blocks->m_next; in allocate() 72 block->m_next = instance.m_blocks; in release() 73 instance.m_blocks = block; in release()
|
H A D | memory-block.cc | 29 memory_block_pool::memory_block_pool () : m_blocks (NULL) {} in memory_block_pool() 35 block_list **blocks = &m_blocks; in reduce_free_list()
|
/netbsd-src/external/gpl3/gcc/dist/gcc/ |
H A D | memory-block.h | 51 block_list *m_blocks; variable 58 if (instance.m_blocks == NULL) in allocate() 61 void *result = instance.m_blocks; in allocate() 62 instance.m_blocks = instance.m_blocks->m_next; in allocate() 72 block->m_next = instance.m_blocks; in release() 73 instance.m_blocks = block; in release()
|
H A D | tree-ssa-threadedge.cc | 1236 m_blocks.safe_push (BB_MARKER); in push() 1237 if (m_blocks.length () == 1) in push() 1238 m_blocks.safe_push (e->src); in push() 1239 m_blocks.safe_push (e->dest); in push() 1247 if (!m_blocks.is_empty ()) in pop() 1249 while (m_blocks.last () != BB_MARKER) in pop() 1250 m_blocks.pop (); in pop() 1252 m_blocks.pop (); in pop() 1261 gcc_checking_assert (!m_blocks.is_empty ()); in append_path() 1262 m_blocks.safe_push (bb); in append_path() [all …]
|
H A D | memory-block.cc | 29 memory_block_pool::memory_block_pool () : m_blocks (NULL) {} in memory_block_pool() 35 block_list **blocks = &m_blocks; in reduce_free_list()
|
H A D | tree-ssa-threadedge.h | 43 auto_vec<basic_block> m_blocks;
|
/netbsd-src/external/gpl3/gcc.old/dist/gcc/jit/ |
H A D | jit-recording.c | 3690 m_blocks (), in function() 3784 new recording::block (this, m_blocks.length (), new_string (name)); in new_block() 3786 m_blocks.safe_push (result); in new_block() 3849 FOR_EACH_VEC_ELT (m_blocks, i, b) in write_to_dump() 3869 if (m_blocks.length () == 0) in validate() 3882 FOR_EACH_VEC_ELT (m_blocks, i, b) in validate() 3890 && m_blocks.length () > 0 && num_invalid_blocks == 0) in validate() 3894 auto_vec<block *> worklist (m_blocks.length ()); in validate() 3895 worklist.safe_push (m_blocks[0]); in validate() 3916 FOR_EACH_VEC_ELT (m_blocks, i, b) in validate() [all …]
|
H A D | jit-playback.c | 1361 m_blocks () in function() 1397 m_blocks.release (); in finalizer() 1442 m_blocks.safe_push (result); in new_block() 1473 FOR_EACH_VEC_ELT (m_blocks, i, b) in build_stmt_list()
|
H A D | jit-playback.h | 484 vec<block *> m_blocks; variable
|
H A D | jit-recording.h | 1216 auto_vec<block *> m_blocks; variable
|
/netbsd-src/external/gpl3/gcc/dist/gcc/jit/ |
H A D | jit-recording.cc | 4060 m_blocks (), in function() 4154 new recording::block (this, m_blocks.length (), new_string (name)); in new_block() 4156 m_blocks.safe_push (result); in new_block() 4219 FOR_EACH_VEC_ELT (m_blocks, i, b) in write_to_dump() 4239 if (m_blocks.length () == 0) in validate() 4252 FOR_EACH_VEC_ELT (m_blocks, i, b) in validate() 4260 && m_blocks.length () > 0 && num_invalid_blocks == 0) in validate() 4264 auto_vec<block *> worklist (m_blocks.length ()); in validate() 4265 worklist.safe_push (m_blocks[0]); in validate() 4286 FOR_EACH_VEC_ELT (m_blocks, i, b) in validate() [all …]
|
H A D | jit-playback.cc | 1743 m_blocks () in function() 1779 m_blocks.release (); in finalizer() 1824 m_blocks.safe_push (result); in new_block() 1855 FOR_EACH_VEC_ELT (m_blocks, i, b) in build_stmt_list()
|
H A D | jit-playback.h | 528 vec<block *> m_blocks; variable
|
H A D | jit-recording.h | 1315 auto_vec<block *> m_blocks; variable
|
H A D | ChangeLog.jit | 1397 (gcc::jit::recording::function::m_blocks): New field. 1424 (gcc::jit::playback::function::m_blocks): New field.
|
H A D | ChangeLog | 476 * jit-playback.c (function): Initialize m_blocks vector. 3610 "m_locals", "m_blocks" from vec<> to auto_vec<>.
|
/netbsd-src/external/bsd/elftosb/dist/elftosb2/ |
H A D | ElftosbAST.h | 210 inline void setBlocks(ListASTNode * blocks) { m_blocks = blocks; } in setBlocks() 216 inline ListASTNode * getBlocks() { return m_blocks; } in getBlocks() 223 smart_ptr<ListASTNode> m_blocks;
|