Lines Matching defs:cts
677 CellTypeState CellTypeState::merge(CellTypeState cts, int slot) const {
680 assert(!is_bottom() && !cts.is_bottom(),
683 result._state = _state | cts._state;
690 if (!equal(cts)) {
704 // Merge the variable state for locals and stack from cts into bbts.
705 bool GenerateOopMap::merge_local_state_vectors(CellTypeState* cts,
712 CellTypeState v = cts[i].merge(bbts[i], i);
720 // Merge the monitor stack state from cts into bbts.
721 bool GenerateOopMap::merge_monitor_state_vectors(CellTypeState* cts,
732 CellTypeState v = cts[i].merge(bbts[i], i);
814 void GenerateOopMap::set_var(int localNo, CellTypeState cts) {
815 assert(cts.is_reference() || cts.is_value() || cts.is_address(),
821 vars()[localNo] = cts;
841 void GenerateOopMap::push(CellTypeState cts) {
846 stack()[_stack_top++] = cts;
864 void GenerateOopMap::monitor_push(CellTypeState cts) {
877 monitors()[_monitor_top++] = cts;
1860 CellTypeState cts = (bt == T_OBJECT) ? CellTypeState::make_line_ref(bci) : valCTS;
1866 ppush1(cts);