Searched defs:init (Results 751 - 757 of 757) sorted by relevance

<<31

/openjdk7/hotspot/src/share/vm/opto/
H A DgraphKit.cpp3015 InitializeNode* init = insert_mem_bar_volatile(Op_Initialize, rawidx, local
3017 assert(alloc->initialization() == init, "2-way macro link must work");
3018 assert(init ->allocation() == alloc, "2-way macro link must work");
3024 assert(init->in(InitializeNode::Memory) == malloc, "");
3026 init->set_req(InitializeNode::Memory, minit_in);
3029 assert(minit_out->is_Proj() && minit_out->in(0) == init, "");
3368 Node* init = rawoop->fast_out(i); local
3369 if (init->is_Initialize()) {
3370 assert(init->as_Initialize()->allocation() == this, "2-way link");
3371 return init
[all...]
H A Dlibrary_call.cpp4608 InitializeNode* init = alloc->initialization(); local
4609 assert(init->is_complete(), "we just did this");
4610 init->set_complete_with_arraycopy();
4612 assert(dest->in(0)->in(0) == init, "dest pinned");
4691 InitializeNode* init = insert_mem_bar_volatile(Op_Initialize, local
4694 init->set_complete(&_gvn); // (there is no corresponding AllocateNode)
/openjdk7/hotspot/src/os/bsd/vm/
H A Dos_bsd.cpp249 static bool init = false; local
251 if (!init) {
253 init = true;
1080 // init thread attributes
1318 // If called before init complete, thread stack bottom will be null.
1323 "os::init did not locate initial thread's stack region");
2846 assert(os::Bsd::page_size() != -1, "must call os::init");
2852 assert(os::Bsd::page_size() != -1, "must call os::init");
4630 void os::init(void) { function in class:os
4652 fatal(err_msg("os_bsd.cpp: os::init
[all...]
/openjdk7/hotspot/src/os/linux/vm/
H A Dos_linux.cpp46 #include "runtime/init.hpp"
251 static bool init = false; local
253 if (!init) {
255 init = true;
909 // init thread attributes
1126 // If called before init complete, thread stack bottom will be null.
1131 "os::init did not locate initial thread's stack region");
2597 assert(os::Linux::page_size() != -1, "must call os::init");
2603 assert(os::Linux::page_size() != -1, "must call os::init");
4444 void os::init(voi function in class:os
[all...]
/openjdk7/hotspot/src/os/solaris/vm/
H A Dos_solaris.cpp730 static bool init = false; local
732 if (!init) {
734 init = true;
1967 // dladdr1_func was initialized in os::init()
2801 assert(page_size != -1, "must call os::init");
2807 assert(page_size != -1, "must call os::init");
4066 // If something went wrong on init, don't change priorities.
4069 tty->print_cr("Trying to set priority but init failed, ignoring");
5289 void os::init(void) { function in class:os
5298 fatal(err_msg("os_solaris.cpp: os::init
[all...]
/openjdk7/hotspot/src/os/windows/vm/
H A Dos_windows.cpp3751 void os::init(void) { function in class:os
/openjdk7/hotspot/src/share/vm/c1/
H A Dc1_LIR.hpp2188 void init(LIR_List* lir) { assert(!initialized(), "already initialized"); _lir = lir; _index_and_count.clear(); _ops.clear(); } function in class:LIR_InsertionBuffer

Completed in 116 milliseconds

<<31