Searched defs:entry_code (Results 1 - 3 of 3) sorted by relevance

/openjdk7/hotspot/src/cpu/x86/vm/
H A Dc1_LinearScan_x86.cpp255 if (xhandler->entry_code() == NULL) {
257 LIR_List* entry_code = new LIR_List(_compilation); local
258 entry_code->jump(xhandler->entry_block());
259 xhandler->set_entry_code(entry_code);
262 LIR_OpList* insts = xhandler->entry_code()->instructions_list();
263 set_lir(xhandler->entry_code());
/openjdk7/hotspot/src/share/vm/c1/
H A Dc1_IR.hpp42 int _entry_pco; // pco where entry_code (or entry_block if no entry_code) starts
87 LIR_List* entry_code() const { return _entry_code; } function in class:XHandler
98 void set_entry_code(LIR_List* entry_code) { _entry_code = entry_code; } argument
H A Dc1_LinearScan.cpp1945 assert(handler->entry_code() == NULL, "code already present");
1960 LIR_List* entry_code = new LIR_List(compilation()); local
1961 move_resolver.set_insert_position(entry_code, 0);
1964 entry_code->jump(handler->entry_block());
1965 handler->set_entry_code(entry_code);
2958 if (handler->entry_code() != NULL) {
2959 assign_reg_num(handler->entry_code()->instructions_list(), NULL);
3499 if (xhandler->entry_code() != NULL) {
3500 process_operations(xhandler->entry_code(), input_state);

Completed in 58 milliseconds