Go to the source code of this file.
◆ BYTECODE_UPDATE_LIVENESS
      
        
          | #define BYTECODE_UPDATE_LIVENESS | 
          ( | 
           |           Name,  | 
        
        
           | 
           | 
           |           ... ) | 
        
      
 
Value:  case Bytecode::k##Name:                                                 \
    return UpdateLiveness<IsFirstUpdate, Bytecode::k##Name, __VA_ARGS__>( \
        liveness, next_bytecode_in_liveness, iterator, bytecode_array,    \
        liveness_map, zone);
 
 
 
◆ BYTECODE_UPDATE_OUT_LIVENESS
      
        
          | #define BYTECODE_UPDATE_OUT_LIVENESS | 
          ( | 
           |           Name,  | 
        
        
           | 
           | 
           |           ... ) | 
        
      
 
Value:  case Bytecode::k##Name:                                              \
    return UpdateOutLiveness<IsFirstUpdate, Bytecode::k##Name>(        \
        liveness, next_bytecode_in_liveness, iterator, bytecode_array, \
        liveness_map, zone);
 
 
 
◆ CASE
Value:  case Bytecode::k##BC:                                                  \
    AnalyzeBCInLoop<Bytecode::k##BC>(current_offset, current_loop_info); \
    break;