Searched refs:_sux (Results 1 - 3 of 3) sorted by relevance

/openjdk9/hotspot/src/share/vm/c1/
H A Dc1_Instruction.hpp1821 BlockList* _sux;
1824 BlockList* sux() const { return _sux; }
1831 _sux = sux;
1838 , _sux(NULL)
1852 int number_of_sux() const { return _sux != NULL ? _sux->length() : 0; }
1853 BlockBegin* sux_at(int i) const { return _sux->at(i); }
1855 BlockBegin** addr_sux_at(int i) const { return _sux->adr_at(i); }
1856 int sux_index(BlockBegin* sux) const { return _sux->find(sux); }
H A Dc1_LIRGenerator.hpp49 BlockBegin* _sux; member in class:SwitchRange
51 SwitchRange(int start_key, BlockBegin* sux): _low_key(start_key), _high_key(start_key), _sux(sux) {}
56 BlockBegin* sux() const { return _sux; }
H A Dc1_Instruction.cpp954 _sux = sux;
959 substitute(*_sux, old_sux, new_sux);

Completed in 92 milliseconds