ofp-protocol.c:ds_put_char:
   94|  5.55k|{
   95|  5.55k|    if (ds->length < ds->allocated) {
  ------------------
  |  Branch (95:9): [True: 4.35k, False: 1.20k]
  ------------------
   96|  4.35k|        ds->string[ds->length++] = c;
   97|  4.35k|        ds->string[ds->length] = '\0';
   98|  4.35k|    } else {
   99|  1.20k|        ds_put_char__(ds, c);
  100|  1.20k|    }
  101|  5.55k|}
dynamic-string.c:ds_put_char:
   94|  79.8k|{
   95|  79.8k|    if (ds->length < ds->allocated) {
  ------------------
  |  Branch (95:9): [True: 79.8k, False: 0]
  ------------------
   96|  79.8k|        ds->string[ds->length++] = c;
   97|  79.8k|        ds->string[ds->length] = '\0';
   98|  79.8k|    } else {
   99|      0|        ds_put_char__(ds, c);
  100|      0|    }
  101|  79.8k|}
flow.c:ds_put_char:
   94|     50|{
   95|     50|    if (ds->length < ds->allocated) {
  ------------------
  |  Branch (95:9): [True: 50, False: 0]
  ------------------
   96|     50|        ds->string[ds->length++] = c;
   97|     50|        ds->string[ds->length] = '\0';
   98|     50|    } else {
   99|      0|        ds_put_char__(ds, c);
  100|      0|    }
  101|     50|}
json.c:ds_put_char:
   94|  17.5M|{
   95|  17.5M|    if (ds->length < ds->allocated) {
  ------------------
  |  Branch (95:9): [True: 17.5M, False: 0]
  ------------------
   96|  17.5M|        ds->string[ds->length++] = c;
   97|  17.5M|        ds->string[ds->length] = '\0';
   98|  17.5M|    } else {
   99|      0|        ds_put_char__(ds, c);
  100|      0|    }
  101|  17.5M|}

ofp-msgs.c:hmap_insert_at:
  306|  1.46k|{
  307|  1.46k|    hmap_insert_fast(hmap, node, hash);
  308|  1.46k|    if (hmap->n / 2 > hmap->mask) {
  ------------------
  |  Branch (308:9): [True: 9, False: 1.45k]
  ------------------
  309|      9|        hmap_expand_at(hmap, where);
  310|      9|    }
  311|  1.46k|}
ofp-msgs.c:hmap_insert_fast:
  289|  1.46k|{
  290|  1.46k|    struct hmap_node **bucket = &hmap->buckets[hash & hmap->mask];
  291|  1.46k|    node->hash = hash;
  292|  1.46k|    node->next = *bucket;
  293|  1.46k|    *bucket = node;
  294|  1.46k|    hmap->n++;
  295|  1.46k|}
hmap.c:hmap_insert_fast:
  289|  3.29k|{
  290|  3.29k|    struct hmap_node **bucket = &hmap->buckets[hash & hmap->mask];
  291|  3.29k|    node->hash = hash;
  292|  3.29k|    node->next = *bucket;
  293|  3.29k|    *bucket = node;
  294|  3.29k|    hmap->n++;
  295|  3.29k|}
nx-match.c:hmap_insert_at:
  306|    474|{
  307|    474|    hmap_insert_fast(hmap, node, hash);
  308|    474|    if (hmap->n / 2 > hmap->mask) {
  ------------------
  |  Branch (308:9): [True: 12, False: 462]
  ------------------
  309|     12|        hmap_expand_at(hmap, where);
  310|     12|    }
  311|    474|}
nx-match.c:hmap_insert_fast:
  289|    474|{
  290|    474|    struct hmap_node **bucket = &hmap->buckets[hash & hmap->mask];
  291|    474|    node->hash = hash;
  292|    474|    node->next = *bucket;
  293|    474|    *bucket = node;
  294|    474|    hmap->n++;
  295|    474|}
nx-match.c:hmap_first_with_hash:
  359|   181k|{
  360|   181k|    return hmap_next_with_hash__(hmap->buckets[hash & hmap->mask], hash);
  361|   181k|}
nx-match.c:hmap_next_with_hash__:
  348|   182k|{
  349|   506k|    while (node != NULL && node->hash != hash) {
  ------------------
  |  Branch (349:12): [True: 326k, False: 179k]
  |  Branch (349:28): [True: 323k, False: 2.72k]
  ------------------
  350|   323k|        node = node->next;
  351|   323k|    }
  352|   182k|    return CONST_CAST(struct hmap_node *, node);
  ------------------
  |  |   85|   182k|    (BUILD_ASSERT_TYPE(POINTER, TYPE),                          \
  |  |  ------------------
  |  |  |  |   80|   182k|    ((void) sizeof ((int) ((POINTER) == (TYPE) (POINTER))))
  |  |  ------------------
  |  |   86|   182k|     (TYPE) (POINTER))
  ------------------
  353|   182k|}
nx-match.c:hmap_next_with_hash:
  395|    204|{
  396|    204|    return hmap_next_with_hash__(node->next, node->hash);
  397|    204|}
ofp-actions.c:hmap_first_with_hash:
  359|   299k|{
  360|   299k|    return hmap_next_with_hash__(hmap->buckets[hash & hmap->mask], hash);
  361|   299k|}
ofp-actions.c:hmap_next_with_hash__:
  348|   299k|{
  349|   590k|    while (node != NULL && node->hash != hash) {
  ------------------
  |  Branch (349:12): [True: 590k, False: 0]
  |  Branch (349:28): [True: 290k, False: 299k]
  ------------------
  350|   290k|        node = node->next;
  351|   290k|    }
  352|   299k|    return CONST_CAST(struct hmap_node *, node);
  ------------------
  |  |   85|   299k|    (BUILD_ASSERT_TYPE(POINTER, TYPE),                          \
  |  |  ------------------
  |  |  |  |   80|   299k|    ((void) sizeof ((int) ((POINTER) == (TYPE) (POINTER))))
  |  |  ------------------
  |  |   86|   299k|     (TYPE) (POINTER))
  ------------------
  353|   299k|}
ofp-actions.c:hmap_insert_at:
  306|    384|{
  307|    384|    hmap_insert_fast(hmap, node, hash);
  308|    384|    if (hmap->n / 2 > hmap->mask) {
  ------------------
  |  Branch (308:9): [True: 7, False: 377]
  ------------------
  309|      7|        hmap_expand_at(hmap, where);
  310|      7|    }
  311|    384|}
ofp-actions.c:hmap_insert_fast:
  289|    384|{
  290|    384|    struct hmap_node **bucket = &hmap->buckets[hash & hmap->mask];
  291|    384|    node->hash = hash;
  292|    384|    node->next = *bucket;
  293|    384|    *bucket = node;
  294|    384|    hmap->n++;
  295|    384|}
shash.c:hmap_insert_at:
  306|    228|{
  307|    228|    hmap_insert_fast(hmap, node, hash);
  308|    228|    if (hmap->n / 2 > hmap->mask) {
  ------------------
  |  Branch (308:9): [True: 6, False: 222]
  ------------------
  309|      6|        hmap_expand_at(hmap, where);
  310|      6|    }
  311|    228|}
shash.c:hmap_insert_fast:
  289|    228|{
  290|    228|    struct hmap_node **bucket = &hmap->buckets[hash & hmap->mask];
  291|    228|    node->hash = hash;
  292|    228|    node->next = *bucket;
  293|    228|    *bucket = node;
  294|    228|    hmap->n++;
  295|    228|}
shash.c:hmap_first_with_hash:
  359|   381k|{
  360|   381k|    return hmap_next_with_hash__(hmap->buckets[hash & hmap->mask], hash);
  361|   381k|}
shash.c:hmap_next_with_hash__:
  348|   381k|{
  349|   911k|    while (node != NULL && node->hash != hash) {
  ------------------
  |  Branch (349:12): [True: 781k, False: 129k]
  |  Branch (349:28): [True: 530k, False: 251k]
  ------------------
  350|   530k|        node = node->next;
  351|   530k|    }
  352|   381k|    return CONST_CAST(struct hmap_node *, node);
  ------------------
  |  |   85|   381k|    (BUILD_ASSERT_TYPE(POINTER, TYPE),                          \
  |  |  ------------------
  |  |  |  |   80|   381k|    ((void) sizeof ((int) ((POINTER) == (TYPE) (POINTER))))
  |  |  ------------------
  |  |   86|   381k|     (TYPE) (POINTER))
  ------------------
  353|   381k|}
shash.c:hmap_next_with_hash:
  395|    243|{
  396|    243|    return hmap_next_with_hash__(node->next, node->hash);
  397|    243|}

ofpbuf.c:ovs_list_poison:
  157|  25.6k|{
  158|  25.6k|    *list = OVS_LIST_POISON;
  159|  25.6k|}
vlog.c:ovs_list_insert:
  164|    182|{
  165|    182|    elem->prev = before->prev;
  166|    182|    elem->next = before;
  167|    182|    before->prev->next = elem;
  168|    182|    before->prev = elem;
  169|    182|}
nx-match.c:ovs_list_init:
  149|    211|{
  150|    211|    list->next = list->prev = list;
  151|    211|}
nx-match.c:ovs_list_push_back:
  204|    237|{
  205|    237|    ovs_list_insert(list, elem);
  206|    237|}
nx-match.c:ovs_list_insert:
  164|    237|{
  165|    237|    elem->prev = before->prev;
  166|    237|    elem->next = before;
  167|    237|    before->prev->next = elem;
  168|    237|    before->prev = elem;
  169|    237|}

nx-match.c:mf_from_id:
 2363|  5.55k|{
 2364|  5.55k|    extern const struct mf_field mf_fields[MFF_N_IDS];
 2365|  5.55k|    ovs_assert((unsigned int) id < MFF_N_IDS);
  ------------------
  |  |   62|  5.55k|#define ovs_assert ovs_ignore
  ------------------
 2366|  5.55k|    return &mf_fields[id];
 2367|  5.55k|}
ofp-actions.c:mf_from_id:
 2363|  10.5k|{
 2364|  10.5k|    extern const struct mf_field mf_fields[MFF_N_IDS];
 2365|  10.5k|    ovs_assert((unsigned int) id < MFF_N_IDS);
  ------------------
  |  |   62|  10.5k|#define ovs_assert ovs_ignore
  ------------------
 2366|  10.5k|    return &mf_fields[id];
 2367|  10.5k|}

meta-flow.c:nsh_path_hdr_to_spi:
  346|  2.38k|{
  347|  2.38k|    uint32_t hv = (ntohl(path_hdr) & NSH_SPI_MASK) >> NSH_SPI_SHIFT;
  ------------------
  |  |  238|  2.38k|#define NSH_SPI_MASK       0xffffff00
  ------------------
                  uint32_t hv = (ntohl(path_hdr) & NSH_SPI_MASK) >> NSH_SPI_SHIFT;
  ------------------
  |  |  239|  2.38k|#define NSH_SPI_SHIFT      8
  ------------------
  348|       |    return htonl(hv);
  349|  2.38k|}
meta-flow.c:nsh_path_hdr_to_si:
  359|    958|{
  360|    958|    return (ntohl(path_hdr) & NSH_SI_MASK) >> NSH_SI_SHIFT;
  ------------------
  |  |  240|    958|#define NSH_SI_MASK        0x000000ff
  ------------------
                  return (ntohl(path_hdr) & NSH_SI_MASK) >> NSH_SI_SHIFT;
  ------------------
  |  |  241|    958|#define NSH_SI_SHIFT       0
  ------------------
  361|    958|}
meta-flow.c:nsh_path_hdr_set_spi:
  395|  2.23k|{
  396|  2.23k|    uint32_t hvph  = ntohl(*path_hdr);
  397|  2.23k|    uint32_t hvspi = ntohl(spi);
  398|       |    *path_hdr = htonl(( hvph & ~NSH_SPI_MASK) |
  399|  2.23k|                      ((hvspi << NSH_SPI_SHIFT) & NSH_SPI_MASK));
  400|  2.23k|}
meta-flow.c:nsh_path_hdr_set_si:
  404|  1.31k|{
  405|  1.31k|    uint32_t hvph  = ntohl(*path_hdr);
  406|       |    *path_hdr = htonl((hvph & ~NSH_SI_MASK) |
  407|  1.31k|                      ((si << NSH_SI_SHIFT) & NSH_SI_MASK));
  408|  1.31k|}
nx-match.c:nsh_path_hdr_to_spi:
  346|  8.21k|{
  347|  8.21k|    uint32_t hv = (ntohl(path_hdr) & NSH_SPI_MASK) >> NSH_SPI_SHIFT;
  ------------------
  |  |  238|  8.21k|#define NSH_SPI_MASK       0xffffff00
  ------------------
                  uint32_t hv = (ntohl(path_hdr) & NSH_SPI_MASK) >> NSH_SPI_SHIFT;
  ------------------
  |  |  239|  8.21k|#define NSH_SPI_SHIFT      8
  ------------------
  348|       |    return htonl(hv);
  349|  8.21k|}
nx-match.c:nsh_path_hdr_to_si:
  359|  8.21k|{
  360|  8.21k|    return (ntohl(path_hdr) & NSH_SI_MASK) >> NSH_SI_SHIFT;
  ------------------
  |  |  240|  8.21k|#define NSH_SI_MASK        0x000000ff
  ------------------
                  return (ntohl(path_hdr) & NSH_SI_MASK) >> NSH_SI_SHIFT;
  ------------------
  |  |  241|  8.21k|#define NSH_SI_SHIFT       0
  ------------------
  361|  8.21k|}

ofp-actions.c:ofpact_next:
  212|   839k|{
  213|   839k|    return ALIGNED_CAST(struct ofpact *,
  ------------------
  |  |  434|   839k|#define ALIGNED_CAST(TYPE, ATTR) ((TYPE) (void *) (ATTR))
  ------------------
  214|   839k|                        (uint8_t *) ofpact + OFPACT_ALIGN(ofpact->len));
  215|   839k|}
ofp-actions.c:ofpact_get_CLONE:
 1289|  11.7k|    {                                                                   \
 1290|  11.7k|        ovs_assert(ofpact->type == OFPACT_##ENUM);                      \
  ------------------
  |  |   62|  11.7k|#define ovs_assert ovs_ignore
  ------------------
 1291|  11.7k|        return ALIGNED_CAST(struct STRUCT *, ofpact);                   \
  ------------------
  |  |  434|  11.7k|#define ALIGNED_CAST(TYPE, ATTR) ((TYPE) (void *) (ATTR))
  ------------------
 1292|  11.7k|    }                                                                   \
ofp-actions.c:ofpact_get_CT:
 1289|  17.9k|    {                                                                   \
 1290|  17.9k|        ovs_assert(ofpact->type == OFPACT_##ENUM);                      \
  ------------------
  |  |   62|  17.9k|#define ovs_assert ovs_ignore
  ------------------
 1291|  17.9k|        return ALIGNED_CAST(struct STRUCT *, ofpact);                   \
  ------------------
  |  |  434|  17.9k|#define ALIGNED_CAST(TYPE, ATTR) ((TYPE) (void *) (ATTR))
  ------------------
 1292|  17.9k|    }                                                                   \
ofp-actions.c:ofpact_get_WRITE_ACTIONS:
 1289|    127|    {                                                                   \
 1290|    127|        ovs_assert(ofpact->type == OFPACT_##ENUM);                      \
  ------------------
  |  |   62|    127|#define ovs_assert ovs_ignore
  ------------------
 1291|    127|        return ALIGNED_CAST(struct STRUCT *, ofpact);                   \
  ------------------
  |  |  434|    127|#define ALIGNED_CAST(TYPE, ATTR) ((TYPE) (void *) (ATTR))
  ------------------
 1292|    127|    }                                                                   \
ofp-actions.c:ofpact_put_SET_FIELD:
 1303|  48.1k|    {                                                                   \
 1304|  48.1k|        return (struct STRUCT *) ofpact_put(ofpacts, OFPACT_##ENUM,     \
 1305|  48.1k|                                            sizeof(struct STRUCT));     \
 1306|  48.1k|    }                                                                   \
ofp-actions.c:ofpact_finish_SET_FIELD:
 1317|  48.1k|    {                                                                   \
 1318|  48.1k|        struct ofpact *ofpact = &(*ofpactp)->ofpact;                    \
 1319|  48.1k|        ovs_assert(ofpact->type == OFPACT_##ENUM);                      \
  ------------------
  |  |   62|  48.1k|#define ovs_assert ovs_ignore
  ------------------
 1320|  48.1k|        *ofpactp = (struct STRUCT *) ofpact_finish(ofpbuf, ofpact);     \
 1321|  48.1k|    }
ofp-actions.c:ofpact_end:
  221|   781k|{
  222|   781k|    return ofpacts
  ------------------
  |  Branch (222:12): [True: 777k, False: 3.53k]
  ------------------
  223|   781k|           ? ALIGNED_CAST(struct ofpact *, (uint8_t *) ofpacts + ofpacts_len)
  ------------------
  |  |  434|   777k|#define ALIGNED_CAST(TYPE, ATTR) ((TYPE) (void *) (ATTR))
  ------------------
  224|       |           : NULL;
  225|   781k|}
ofp-actions.c:ofpact_put_METER:
 1303|    566|    {                                                                   \
 1304|    566|        return (struct STRUCT *) ofpact_put(ofpacts, OFPACT_##ENUM,     \
 1305|    566|                                            sizeof(struct STRUCT));     \
 1306|    566|    }                                                                   \
ofp-actions.c:ofpact_put_OUTPUT:
 1303|   166k|    {                                                                   \
 1304|   166k|        return (struct STRUCT *) ofpact_put(ofpacts, OFPACT_##ENUM,     \
 1305|   166k|                                            sizeof(struct STRUCT));     \
 1306|   166k|    }                                                                   \
ofp-actions.c:ofpact_put_SET_VLAN_VID:
 1303|  2.08k|    {                                                                   \
 1304|  2.08k|        return (struct STRUCT *) ofpact_put(ofpacts, OFPACT_##ENUM,     \
 1305|  2.08k|                                            sizeof(struct STRUCT));     \
 1306|  2.08k|    }                                                                   \
ofp-actions.c:ofpact_put_SET_VLAN_PCP:
 1303|  2.36k|    {                                                                   \
 1304|  2.36k|        return (struct STRUCT *) ofpact_put(ofpacts, OFPACT_##ENUM,     \
 1305|  2.36k|                                            sizeof(struct STRUCT));     \
 1306|  2.36k|    }                                                                   \
ofp-actions.c:ofpact_put_PUSH_VLAN:
 1303|  1.87k|    {                                                                   \
 1304|  1.87k|        return (struct STRUCT *) ofpact_put(ofpacts, OFPACT_##ENUM,     \
 1305|  1.87k|                                            sizeof(struct STRUCT));     \
 1306|  1.87k|    }                                                                   \
ofp-actions.c:ofpact_put_STRIP_VLAN:
 1303|  3.70k|    {                                                                   \
 1304|  3.70k|        return (struct STRUCT *) ofpact_put(ofpacts, OFPACT_##ENUM,     \
 1305|  3.70k|                                            sizeof(struct STRUCT));     \
 1306|  3.70k|    }                                                                   \
ofp-actions.c:ofpact_put_SET_ETH_SRC:
 1303|    498|    {                                                                   \
 1304|    498|        return (struct STRUCT *) ofpact_put(ofpacts, OFPACT_##ENUM,     \
 1305|    498|                                            sizeof(struct STRUCT));     \
 1306|    498|    }                                                                   \
ofp-actions.c:ofpact_put_SET_ETH_DST:
 1303|    995|    {                                                                   \
 1304|    995|        return (struct STRUCT *) ofpact_put(ofpacts, OFPACT_##ENUM,     \
 1305|    995|                                            sizeof(struct STRUCT));     \
 1306|    995|    }                                                                   \
ofp-actions.c:ofpact_put_SET_IPV4_SRC:
 1303|  2.33k|    {                                                                   \
 1304|  2.33k|        return (struct STRUCT *) ofpact_put(ofpacts, OFPACT_##ENUM,     \
 1305|  2.33k|                                            sizeof(struct STRUCT));     \
 1306|  2.33k|    }                                                                   \
ofp-actions.c:ofpact_put_SET_IPV4_DST:
 1303|    941|    {                                                                   \
 1304|    941|        return (struct STRUCT *) ofpact_put(ofpacts, OFPACT_##ENUM,     \
 1305|    941|                                            sizeof(struct STRUCT));     \
 1306|    941|    }                                                                   \
ofp-actions.c:ofpact_put_SET_IP_DSCP:
 1303|  1.86k|    {                                                                   \
 1304|  1.86k|        return (struct STRUCT *) ofpact_put(ofpacts, OFPACT_##ENUM,     \
 1305|  1.86k|                                            sizeof(struct STRUCT));     \
 1306|  1.86k|    }                                                                   \
ofp-actions.c:ofpact_put_SET_IP_ECN:
 1303|  1.19k|    {                                                                   \
 1304|  1.19k|        return (struct STRUCT *) ofpact_put(ofpacts, OFPACT_##ENUM,     \
 1305|  1.19k|                                            sizeof(struct STRUCT));     \
 1306|  1.19k|    }                                                                   \
ofp-actions.c:ofpact_put_SET_L4_SRC_PORT:
 1303|  3.73k|    {                                                                   \
 1304|  3.73k|        return (struct STRUCT *) ofpact_put(ofpacts, OFPACT_##ENUM,     \
 1305|  3.73k|                                            sizeof(struct STRUCT));     \
 1306|  3.73k|    }                                                                   \
ofp-actions.c:ofpact_put_SET_L4_DST_PORT:
 1303|  1.90k|    {                                                                   \
 1304|  1.90k|        return (struct STRUCT *) ofpact_put(ofpacts, OFPACT_##ENUM,     \
 1305|  1.90k|                                            sizeof(struct STRUCT));     \
 1306|  1.90k|    }                                                                   \
ofp-actions.c:ofpact_put_ENQUEUE:
 1303|  1.03k|    {                                                                   \
 1304|  1.03k|        return (struct STRUCT *) ofpact_put(ofpacts, OFPACT_##ENUM,     \
 1305|  1.03k|                                            sizeof(struct STRUCT));     \
 1306|  1.03k|    }                                                                   \
ofp-actions.c:ofpact_put_SET_MPLS_LABEL:
 1303|  2.37k|    {                                                                   \
 1304|  2.37k|        return (struct STRUCT *) ofpact_put(ofpacts, OFPACT_##ENUM,     \
 1305|  2.37k|                                            sizeof(struct STRUCT));     \
 1306|  2.37k|    }                                                                   \
ofp-actions.c:ofpact_put_SET_MPLS_TC:
 1303|  2.36k|    {                                                                   \
 1304|  2.36k|        return (struct STRUCT *) ofpact_put(ofpacts, OFPACT_##ENUM,     \
 1305|  2.36k|                                            sizeof(struct STRUCT));     \
 1306|  2.36k|    }                                                                   \
ofp-actions.c:ofpact_put_SET_MPLS_TTL:
 1303|  1.53k|    {                                                                   \
 1304|  1.53k|        return (struct STRUCT *) ofpact_put(ofpacts, OFPACT_##ENUM,     \
 1305|  1.53k|                                            sizeof(struct STRUCT));     \
 1306|  1.53k|    }                                                                   \
ofp-actions.c:ofpact_put_DEC_MPLS_TTL:
 1303|  2.25k|    {                                                                   \
 1304|  2.25k|        return (struct STRUCT *) ofpact_put(ofpacts, OFPACT_##ENUM,     \
 1305|  2.25k|                                            sizeof(struct STRUCT));     \
 1306|  2.25k|    }                                                                   \
ofp-actions.c:ofpact_put_PUSH_MPLS:
 1303|    753|    {                                                                   \
 1304|    753|        return (struct STRUCT *) ofpact_put(ofpacts, OFPACT_##ENUM,     \
 1305|    753|                                            sizeof(struct STRUCT));     \
 1306|    753|    }                                                                   \
ofp-actions.c:ofpact_put_POP_MPLS:
 1303|  1.33k|    {                                                                   \
 1304|  1.33k|        return (struct STRUCT *) ofpact_put(ofpacts, OFPACT_##ENUM,     \
 1305|  1.33k|                                            sizeof(struct STRUCT));     \
 1306|  1.33k|    }                                                                   \
ofp-actions.c:ofpact_put_SET_QUEUE:
 1303|    274|    {                                                                   \
 1304|    274|        return (struct STRUCT *) ofpact_put(ofpacts, OFPACT_##ENUM,     \
 1305|    274|                                            sizeof(struct STRUCT));     \
 1306|    274|    }                                                                   \
ofp-actions.c:ofpact_put_GROUP:
 1303|    223|    {                                                                   \
 1304|    223|        return (struct STRUCT *) ofpact_put(ofpacts, OFPACT_##ENUM,     \
 1305|    223|                                            sizeof(struct STRUCT));     \
 1306|    223|    }                                                                   \
ofp-actions.c:ofpact_put_SET_IP_TTL:
 1303|  2.63k|    {                                                                   \
 1304|  2.63k|        return (struct STRUCT *) ofpact_put(ofpacts, OFPACT_##ENUM,     \
 1305|  2.63k|                                            sizeof(struct STRUCT));     \
 1306|  2.63k|    }                                                                   \
ofp-actions.c:ofpact_put_DEC_TTL:
 1303|  4.53k|    {                                                                   \
 1304|  4.53k|        return (struct STRUCT *) ofpact_put(ofpacts, OFPACT_##ENUM,     \
 1305|  4.53k|                                            sizeof(struct STRUCT));     \
 1306|  4.53k|    }                                                                   \
ofp-actions.c:ofpact_finish_DEC_TTL:
 1317|  4.52k|    {                                                                   \
 1318|  4.52k|        struct ofpact *ofpact = &(*ofpactp)->ofpact;                    \
 1319|  4.52k|        ovs_assert(ofpact->type == OFPACT_##ENUM);                      \
  ------------------
  |  |   62|  4.52k|#define ovs_assert ovs_ignore
  ------------------
 1320|  4.52k|        *ofpactp = (struct STRUCT *) ofpact_finish(ofpbuf, ofpact);     \
 1321|  4.52k|    }
ofp-actions.c:ofpact_put_REG_MOVE:
 1303|    482|    {                                                                   \
 1304|    482|        return (struct STRUCT *) ofpact_put(ofpacts, OFPACT_##ENUM,     \
 1305|    482|                                            sizeof(struct STRUCT));     \
 1306|    482|    }                                                                   \
ofp-actions.c:ofpact_put_RESUBMIT:
 1303|  2.97k|    {                                                                   \
 1304|  2.97k|        return (struct STRUCT *) ofpact_put(ofpacts, OFPACT_##ENUM,     \
 1305|  2.97k|                                            sizeof(struct STRUCT));     \
 1306|  2.97k|    }                                                                   \
ofp-actions.c:ofpact_put_SET_TUNNEL:
 1303|  1.81k|    {                                                                   \
 1304|  1.81k|        return (struct STRUCT *) ofpact_put(ofpacts, OFPACT_##ENUM,     \
 1305|  1.81k|                                            sizeof(struct STRUCT));     \
 1306|  1.81k|    }                                                                   \
ofp-actions.c:ofpact_put_POP_QUEUE:
 1303|    730|    {                                                                   \
 1304|    730|        return (struct STRUCT *) ofpact_put(ofpacts, OFPACT_##ENUM,     \
 1305|    730|                                            sizeof(struct STRUCT));     \
 1306|    730|    }                                                                   \
ofp-actions.c:ofpact_put_NOTE:
 1303|  2.02k|    {                                                                   \
 1304|  2.02k|        return (struct STRUCT *) ofpact_put(ofpacts, OFPACT_##ENUM,     \
 1305|  2.02k|                                            sizeof(struct STRUCT));     \
 1306|  2.02k|    }                                                                   \
ofp-actions.c:ofpact_finish_NOTE:
 1317|  2.01k|    {                                                                   \
 1318|  2.01k|        struct ofpact *ofpact = &(*ofpactp)->ofpact;                    \
 1319|  2.01k|        ovs_assert(ofpact->type == OFPACT_##ENUM);                      \
  ------------------
  |  |   62|  2.01k|#define ovs_assert ovs_ignore
  ------------------
 1320|  2.01k|        *ofpactp = (struct STRUCT *) ofpact_finish(ofpbuf, ofpact);     \
 1321|  2.01k|    }
ofp-actions.c:ofpact_put_MULTIPATH:
 1303|  2.45k|    {                                                                   \
 1304|  2.45k|        return (struct STRUCT *) ofpact_put(ofpacts, OFPACT_##ENUM,     \
 1305|  2.45k|                                            sizeof(struct STRUCT));     \
 1306|  2.45k|    }                                                                   \
ofp-actions.c:ofpact_put_OUTPUT_REG:
 1303|    945|    {                                                                   \
 1304|    945|        return (struct STRUCT *) ofpact_put(ofpacts, OFPACT_##ENUM,     \
 1305|    945|                                            sizeof(struct STRUCT));     \
 1306|    945|    }                                                                   \
ofp-actions.c:ofpact_put_EXIT:
 1303|  2.21k|    {                                                                   \
 1304|  2.21k|        return (struct STRUCT *) ofpact_put(ofpacts, OFPACT_##ENUM,     \
 1305|  2.21k|                                            sizeof(struct STRUCT));     \
 1306|  2.21k|    }                                                                   \
ofp-actions.c:ofpact_put_FIN_TIMEOUT:
 1303|  1.37k|    {                                                                   \
 1304|  1.37k|        return (struct STRUCT *) ofpact_put(ofpacts, OFPACT_##ENUM,     \
 1305|  1.37k|                                            sizeof(struct STRUCT));     \
 1306|  1.37k|    }                                                                   \
ofp-actions.c:ofpact_put_CONTROLLER:
 1303|  8.52k|    {                                                                   \
 1304|  8.52k|        return (struct STRUCT *) ofpact_put(ofpacts, OFPACT_##ENUM,     \
 1305|  8.52k|                                            sizeof(struct STRUCT));     \
 1306|  8.52k|    }                                                                   \
ofp-actions.c:ofpact_finish_CONTROLLER:
 1317|  8.52k|    {                                                                   \
 1318|  8.52k|        struct ofpact *ofpact = &(*ofpactp)->ofpact;                    \
 1319|  8.52k|        ovs_assert(ofpact->type == OFPACT_##ENUM);                      \
  ------------------
  |  |   62|  8.52k|#define ovs_assert ovs_ignore
  ------------------
 1320|  8.52k|        *ofpactp = (struct STRUCT *) ofpact_finish(ofpbuf, ofpact);     \
 1321|  8.52k|    }
ofp-actions.c:ofpact_put_STACK_PUSH:
 1303|    382|    {                                                                   \
 1304|    382|        return (struct STRUCT *) ofpact_put(ofpacts, OFPACT_##ENUM,     \
 1305|    382|                                            sizeof(struct STRUCT));     \
 1306|    382|    }                                                                   \
ofp-actions.c:ofpact_put_STACK_POP:
 1303|  2.08k|    {                                                                   \
 1304|  2.08k|        return (struct STRUCT *) ofpact_put(ofpacts, OFPACT_##ENUM,     \
 1305|  2.08k|                                            sizeof(struct STRUCT));     \
 1306|  2.08k|    }                                                                   \
ofp-actions.c:ofpact_put_SAMPLE:
 1303|  2.20k|    {                                                                   \
 1304|  2.20k|        return (struct STRUCT *) ofpact_put(ofpacts, OFPACT_##ENUM,     \
 1305|  2.20k|                                            sizeof(struct STRUCT));     \
 1306|  2.20k|    }                                                                   \
ofp-actions.c:ofpact_put_CONJUNCTION:
 1303|    542|    {                                                                   \
 1304|    542|        return (struct STRUCT *) ofpact_put(ofpacts, OFPACT_##ENUM,     \
 1305|    542|                                            sizeof(struct STRUCT));     \
 1306|    542|    }                                                                   \
ofp-actions.c:ofpact_put_CT:
 1303|  20.8k|    {                                                                   \
 1304|  20.8k|        return (struct STRUCT *) ofpact_put(ofpacts, OFPACT_##ENUM,     \
 1305|  20.8k|                                            sizeof(struct STRUCT));     \
 1306|  20.8k|    }                                                                   \
ofp-actions.c:ofpact_finish_CT:
 1317|  20.8k|    {                                                                   \
 1318|  20.8k|        struct ofpact *ofpact = &(*ofpactp)->ofpact;                    \
 1319|  20.8k|        ovs_assert(ofpact->type == OFPACT_##ENUM);                      \
  ------------------
  |  |   62|  20.8k|#define ovs_assert ovs_ignore
  ------------------
 1320|  20.8k|        *ofpactp = (struct STRUCT *) ofpact_finish(ofpbuf, ofpact);     \
 1321|  20.8k|    }
ofp-actions.c:ofpact_get_NAT:
 1289|  14.7k|    {                                                                   \
 1290|  14.7k|        ovs_assert(ofpact->type == OFPACT_##ENUM);                      \
  ------------------
  |  |   62|  14.7k|#define ovs_assert ovs_ignore
  ------------------
 1291|  14.7k|        return ALIGNED_CAST(struct STRUCT *, ofpact);                   \
  ------------------
  |  |  434|  14.7k|#define ALIGNED_CAST(TYPE, ATTR) ((TYPE) (void *) (ATTR))
  ------------------
 1292|  14.7k|    }                                                                   \
ofp-actions.c:ofpact_put_NAT:
 1303|  80.7k|    {                                                                   \
 1304|  80.7k|        return (struct STRUCT *) ofpact_put(ofpacts, OFPACT_##ENUM,     \
 1305|  80.7k|                                            sizeof(struct STRUCT));     \
 1306|  80.7k|    }                                                                   \
ofp-actions.c:ofpact_put_OUTPUT_TRUNC:
 1303|  1.20k|    {                                                                   \
 1304|  1.20k|        return (struct STRUCT *) ofpact_put(ofpacts, OFPACT_##ENUM,     \
 1305|  1.20k|                                            sizeof(struct STRUCT));     \
 1306|  1.20k|    }                                                                   \
ofp-actions.c:ofpact_put_CLONE:
 1303|  10.0k|    {                                                                   \
 1304|  10.0k|        return (struct STRUCT *) ofpact_put(ofpacts, OFPACT_##ENUM,     \
 1305|  10.0k|                                            sizeof(struct STRUCT));     \
 1306|  10.0k|    }                                                                   \
ofp-actions.c:ofpact_finish_CLONE:
 1317|  10.0k|    {                                                                   \
 1318|  10.0k|        struct ofpact *ofpact = &(*ofpactp)->ofpact;                    \
 1319|  10.0k|        ovs_assert(ofpact->type == OFPACT_##ENUM);                      \
  ------------------
  |  |   62|  10.0k|#define ovs_assert ovs_ignore
  ------------------
 1320|  10.0k|        *ofpactp = (struct STRUCT *) ofpact_finish(ofpbuf, ofpact);     \
 1321|  10.0k|    }
ofp-actions.c:ofpact_put_CT_CLEAR:
 1303|  1.69k|    {                                                                   \
 1304|  1.69k|        return (struct STRUCT *) ofpact_put(ofpacts, OFPACT_##ENUM,     \
 1305|  1.69k|                                            sizeof(struct STRUCT));     \
 1306|  1.69k|    }                                                                   \
ofp-actions.c:ofpact_put_ENCAP:
 1303|  2.77k|    {                                                                   \
 1304|  2.77k|        return (struct STRUCT *) ofpact_put(ofpacts, OFPACT_##ENUM,     \
 1305|  2.77k|                                            sizeof(struct STRUCT));     \
 1306|  2.77k|    }                                                                   \
ofp-actions.c:ofpact_finish_ENCAP:
 1317|  2.57k|    {                                                                   \
 1318|  2.57k|        struct ofpact *ofpact = &(*ofpactp)->ofpact;                    \
 1319|  2.57k|        ovs_assert(ofpact->type == OFPACT_##ENUM);                      \
  ------------------
  |  |   62|  2.57k|#define ovs_assert ovs_ignore
  ------------------
 1320|  2.57k|        *ofpactp = (struct STRUCT *) ofpact_finish(ofpbuf, ofpact);     \
 1321|  2.57k|    }
ofp-actions.c:ofpact_put_DECAP:
 1303|  3.12k|    {                                                                   \
 1304|  3.12k|        return (struct STRUCT *) ofpact_put(ofpacts, OFPACT_##ENUM,     \
 1305|  3.12k|                                            sizeof(struct STRUCT));     \
 1306|  3.12k|    }                                                                   \
ofp-actions.c:ofpact_put_DEC_NSH_TTL:
 1303|  1.39k|    {                                                                   \
 1304|  1.39k|        return (struct STRUCT *) ofpact_put(ofpacts, OFPACT_##ENUM,     \
 1305|  1.39k|                                            sizeof(struct STRUCT));     \
 1306|  1.39k|    }                                                                   \
ofp-actions.c:ofpact_put_CHECK_PKT_LARGER:
 1303|    755|    {                                                                   \
 1304|    755|        return (struct STRUCT *) ofpact_put(ofpacts, OFPACT_##ENUM,     \
 1305|    755|                                            sizeof(struct STRUCT));     \
 1306|    755|    }                                                                   \
ofp-actions.c:ofpact_put_DELETE_FIELD:
 1303|    429|    {                                                                   \
 1304|    429|        return (struct STRUCT *) ofpact_put(ofpacts, OFPACT_##ENUM,     \
 1305|    429|                                            sizeof(struct STRUCT));     \
 1306|    429|    }                                                                   \
ofp-actions.c:ofpact_put_DEBUG_SLOW:
 1303|  1.91k|    {                                                                   \
 1304|  1.91k|        return (struct STRUCT *) ofpact_put(ofpacts, OFPACT_##ENUM,     \
 1305|  1.91k|                                            sizeof(struct STRUCT));     \
 1306|  1.91k|    }                                                                   \
ofp-actions.c:ofpact_put_DEBUG_RECIRC:
 1303|  1.28k|    {                                                                   \
 1304|  1.28k|        return (struct STRUCT *) ofpact_put(ofpacts, OFPACT_##ENUM,     \
 1305|  1.28k|                                            sizeof(struct STRUCT));     \
 1306|  1.28k|    }                                                                   \
ofp-actions.c:ofpact_put_CLEAR_ACTIONS:
 1303|    206|    {                                                                   \
 1304|    206|        return (struct STRUCT *) ofpact_put(ofpacts, OFPACT_##ENUM,     \
 1305|    206|                                            sizeof(struct STRUCT));     \
 1306|    206|    }                                                                   \
ofp-actions.c:ofpact_put_WRITE_METADATA:
 1303|    707|    {                                                                   \
 1304|    707|        return (struct STRUCT *) ofpact_put(ofpacts, OFPACT_##ENUM,     \
 1305|    707|                                            sizeof(struct STRUCT));     \
 1306|    707|    }                                                                   \
ofp-actions.c:ofpact_put_GOTO_TABLE:
 1303|    247|    {                                                                   \
 1304|    247|        return (struct STRUCT *) ofpact_put(ofpacts, OFPACT_##ENUM,     \
 1305|    247|                                            sizeof(struct STRUCT));     \
 1306|    247|    }                                                                   \
ofp-actions.c:ofpact_get_OUTPUT:
 1289|   199k|    {                                                                   \
 1290|   199k|        ovs_assert(ofpact->type == OFPACT_##ENUM);                      \
  ------------------
  |  |   62|   199k|#define ovs_assert ovs_ignore
  ------------------
 1291|   199k|        return ALIGNED_CAST(struct STRUCT *, ofpact);                   \
  ------------------
  |  |  434|   199k|#define ALIGNED_CAST(TYPE, ATTR) ((TYPE) (void *) (ATTR))
  ------------------
 1292|   199k|    }                                                                   \
ofp-actions.c:ofpact_get_CONTROLLER:
 1289|  12.5k|    {                                                                   \
 1290|  12.5k|        ovs_assert(ofpact->type == OFPACT_##ENUM);                      \
  ------------------
  |  |   62|  12.5k|#define ovs_assert ovs_ignore
  ------------------
 1291|  12.5k|        return ALIGNED_CAST(struct STRUCT *, ofpact);                   \
  ------------------
  |  |  434|  12.5k|#define ALIGNED_CAST(TYPE, ATTR) ((TYPE) (void *) (ATTR))
  ------------------
 1292|  12.5k|    }                                                                   \
ofp-actions.c:ofpact_get_ENQUEUE:
 1289|  1.48k|    {                                                                   \
 1290|  1.48k|        ovs_assert(ofpact->type == OFPACT_##ENUM);                      \
  ------------------
  |  |   62|  1.48k|#define ovs_assert ovs_ignore
  ------------------
 1291|  1.48k|        return ALIGNED_CAST(struct STRUCT *, ofpact);                   \
  ------------------
  |  |  434|  1.48k|#define ALIGNED_CAST(TYPE, ATTR) ((TYPE) (void *) (ATTR))
  ------------------
 1292|  1.48k|    }                                                                   \
ofp-actions.c:ofpact_get_OUTPUT_REG:
 1289|  1.44k|    {                                                                   \
 1290|  1.44k|        ovs_assert(ofpact->type == OFPACT_##ENUM);                      \
  ------------------
  |  |   62|  1.44k|#define ovs_assert ovs_ignore
  ------------------
 1291|  1.44k|        return ALIGNED_CAST(struct STRUCT *, ofpact);                   \
  ------------------
  |  |  434|  1.44k|#define ALIGNED_CAST(TYPE, ATTR) ((TYPE) (void *) (ATTR))
  ------------------
 1292|  1.44k|    }                                                                   \
ofp-actions.c:ofpact_get_BUNDLE:
 1289|  1.69k|    {                                                                   \
 1290|  1.69k|        ovs_assert(ofpact->type == OFPACT_##ENUM);                      \
  ------------------
  |  |   62|  1.69k|#define ovs_assert ovs_ignore
  ------------------
 1291|  1.69k|        return ALIGNED_CAST(struct STRUCT *, ofpact);                   \
  ------------------
  |  |  434|  1.69k|#define ALIGNED_CAST(TYPE, ATTR) ((TYPE) (void *) (ATTR))
  ------------------
 1292|  1.69k|    }                                                                   \
ofp-actions.c:ofpact_get_SET_FIELD:
 1289|  50.3k|    {                                                                   \
 1290|  50.3k|        ovs_assert(ofpact->type == OFPACT_##ENUM);                      \
  ------------------
  |  |   62|  50.3k|#define ovs_assert ovs_ignore
  ------------------
 1291|  50.3k|        return ALIGNED_CAST(struct STRUCT *, ofpact);                   \
  ------------------
  |  |  434|  50.3k|#define ALIGNED_CAST(TYPE, ATTR) ((TYPE) (void *) (ATTR))
  ------------------
 1292|  50.3k|    }                                                                   \
ofp-actions.c:ofpact_get_SET_VLAN_VID:
 1289|  2.81k|    {                                                                   \
 1290|  2.81k|        ovs_assert(ofpact->type == OFPACT_##ENUM);                      \
  ------------------
  |  |   62|  2.81k|#define ovs_assert ovs_ignore
  ------------------
 1291|  2.81k|        return ALIGNED_CAST(struct STRUCT *, ofpact);                   \
  ------------------
  |  |  434|  2.81k|#define ALIGNED_CAST(TYPE, ATTR) ((TYPE) (void *) (ATTR))
  ------------------
 1292|  2.81k|    }                                                                   \
ofp-actions.c:ofpact_get_SET_VLAN_PCP:
 1289|  2.50k|    {                                                                   \
 1290|  2.50k|        ovs_assert(ofpact->type == OFPACT_##ENUM);                      \
  ------------------
  |  |   62|  2.50k|#define ovs_assert ovs_ignore
  ------------------
 1291|  2.50k|        return ALIGNED_CAST(struct STRUCT *, ofpact);                   \
  ------------------
  |  |  434|  2.50k|#define ALIGNED_CAST(TYPE, ATTR) ((TYPE) (void *) (ATTR))
  ------------------
 1292|  2.50k|    }                                                                   \
ofp-actions.c:ofpact_get_STRIP_VLAN:
 1289|  5.38k|    {                                                                   \
 1290|  5.38k|        ovs_assert(ofpact->type == OFPACT_##ENUM);                      \
  ------------------
  |  |   62|  5.38k|#define ovs_assert ovs_ignore
  ------------------
 1291|  5.38k|        return ALIGNED_CAST(struct STRUCT *, ofpact);                   \
  ------------------
  |  |  434|  5.38k|#define ALIGNED_CAST(TYPE, ATTR) ((TYPE) (void *) (ATTR))
  ------------------
 1292|  5.38k|    }                                                                   \
ofp-actions.c:ofpact_get_PUSH_VLAN:
 1289|  3.02k|    {                                                                   \
 1290|  3.02k|        ovs_assert(ofpact->type == OFPACT_##ENUM);                      \
  ------------------
  |  |   62|  3.02k|#define ovs_assert ovs_ignore
  ------------------
 1291|  3.02k|        return ALIGNED_CAST(struct STRUCT *, ofpact);                   \
  ------------------
  |  |  434|  3.02k|#define ALIGNED_CAST(TYPE, ATTR) ((TYPE) (void *) (ATTR))
  ------------------
 1292|  3.02k|    }                                                                   \
ofp-actions.c:ofpact_get_SET_ETH_SRC:
 1289|    846|    {                                                                   \
 1290|    846|        ovs_assert(ofpact->type == OFPACT_##ENUM);                      \
  ------------------
  |  |   62|    846|#define ovs_assert ovs_ignore
  ------------------
 1291|    846|        return ALIGNED_CAST(struct STRUCT *, ofpact);                   \
  ------------------
  |  |  434|    846|#define ALIGNED_CAST(TYPE, ATTR) ((TYPE) (void *) (ATTR))
  ------------------
 1292|    846|    }                                                                   \
ofp-actions.c:ofpact_get_SET_ETH_DST:
 1289|  1.42k|    {                                                                   \
 1290|  1.42k|        ovs_assert(ofpact->type == OFPACT_##ENUM);                      \
  ------------------
  |  |   62|  1.42k|#define ovs_assert ovs_ignore
  ------------------
 1291|  1.42k|        return ALIGNED_CAST(struct STRUCT *, ofpact);                   \
  ------------------
  |  |  434|  1.42k|#define ALIGNED_CAST(TYPE, ATTR) ((TYPE) (void *) (ATTR))
  ------------------
 1292|  1.42k|    }                                                                   \
ofp-actions.c:ofpact_get_SET_IPV4_SRC:
 1289|  3.68k|    {                                                                   \
 1290|  3.68k|        ovs_assert(ofpact->type == OFPACT_##ENUM);                      \
  ------------------
  |  |   62|  3.68k|#define ovs_assert ovs_ignore
  ------------------
 1291|  3.68k|        return ALIGNED_CAST(struct STRUCT *, ofpact);                   \
  ------------------
  |  |  434|  3.68k|#define ALIGNED_CAST(TYPE, ATTR) ((TYPE) (void *) (ATTR))
  ------------------
 1292|  3.68k|    }                                                                   \
ofp-actions.c:ofpact_get_SET_IPV4_DST:
 1289|  1.40k|    {                                                                   \
 1290|  1.40k|        ovs_assert(ofpact->type == OFPACT_##ENUM);                      \
  ------------------
  |  |   62|  1.40k|#define ovs_assert ovs_ignore
  ------------------
 1291|  1.40k|        return ALIGNED_CAST(struct STRUCT *, ofpact);                   \
  ------------------
  |  |  434|  1.40k|#define ALIGNED_CAST(TYPE, ATTR) ((TYPE) (void *) (ATTR))
  ------------------
 1292|  1.40k|    }                                                                   \
ofp-actions.c:ofpact_get_SET_IP_DSCP:
 1289|  3.03k|    {                                                                   \
 1290|  3.03k|        ovs_assert(ofpact->type == OFPACT_##ENUM);                      \
  ------------------
  |  |   62|  3.03k|#define ovs_assert ovs_ignore
  ------------------
 1291|  3.03k|        return ALIGNED_CAST(struct STRUCT *, ofpact);                   \
  ------------------
  |  |  434|  3.03k|#define ALIGNED_CAST(TYPE, ATTR) ((TYPE) (void *) (ATTR))
  ------------------
 1292|  3.03k|    }                                                                   \
ofp-actions.c:ofpact_get_SET_IP_ECN:
 1289|  2.30k|    {                                                                   \
 1290|  2.30k|        ovs_assert(ofpact->type == OFPACT_##ENUM);                      \
  ------------------
  |  |   62|  2.30k|#define ovs_assert ovs_ignore
  ------------------
 1291|  2.30k|        return ALIGNED_CAST(struct STRUCT *, ofpact);                   \
  ------------------
  |  |  434|  2.30k|#define ALIGNED_CAST(TYPE, ATTR) ((TYPE) (void *) (ATTR))
  ------------------
 1292|  2.30k|    }                                                                   \
ofp-actions.c:ofpact_get_SET_IP_TTL:
 1289|  4.26k|    {                                                                   \
 1290|  4.26k|        ovs_assert(ofpact->type == OFPACT_##ENUM);                      \
  ------------------
  |  |   62|  4.26k|#define ovs_assert ovs_ignore
  ------------------
 1291|  4.26k|        return ALIGNED_CAST(struct STRUCT *, ofpact);                   \
  ------------------
  |  |  434|  4.26k|#define ALIGNED_CAST(TYPE, ATTR) ((TYPE) (void *) (ATTR))
  ------------------
 1292|  4.26k|    }                                                                   \
ofp-actions.c:ofpact_get_SET_L4_SRC_PORT:
 1289|  6.73k|    {                                                                   \
 1290|  6.73k|        ovs_assert(ofpact->type == OFPACT_##ENUM);                      \
  ------------------
  |  |   62|  6.73k|#define ovs_assert ovs_ignore
  ------------------
 1291|  6.73k|        return ALIGNED_CAST(struct STRUCT *, ofpact);                   \
  ------------------
  |  |  434|  6.73k|#define ALIGNED_CAST(TYPE, ATTR) ((TYPE) (void *) (ATTR))
  ------------------
 1292|  6.73k|    }                                                                   \
ofp-actions.c:ofpact_get_SET_L4_DST_PORT:
 1289|  3.63k|    {                                                                   \
 1290|  3.63k|        ovs_assert(ofpact->type == OFPACT_##ENUM);                      \
  ------------------
  |  |   62|  3.63k|#define ovs_assert ovs_ignore
  ------------------
 1291|  3.63k|        return ALIGNED_CAST(struct STRUCT *, ofpact);                   \
  ------------------
  |  |  434|  3.63k|#define ALIGNED_CAST(TYPE, ATTR) ((TYPE) (void *) (ATTR))
  ------------------
 1292|  3.63k|    }                                                                   \
ofp-actions.c:ofpact_get_REG_MOVE:
 1289|    911|    {                                                                   \
 1290|    911|        ovs_assert(ofpact->type == OFPACT_##ENUM);                      \
  ------------------
  |  |   62|    911|#define ovs_assert ovs_ignore
  ------------------
 1291|    911|        return ALIGNED_CAST(struct STRUCT *, ofpact);                   \
  ------------------
  |  |  434|    911|#define ALIGNED_CAST(TYPE, ATTR) ((TYPE) (void *) (ATTR))
  ------------------
 1292|    911|    }                                                                   \
ofp-actions.c:ofpact_get_STACK_PUSH:
 1289|    734|    {                                                                   \
 1290|    734|        ovs_assert(ofpact->type == OFPACT_##ENUM);                      \
  ------------------
  |  |   62|    734|#define ovs_assert ovs_ignore
  ------------------
 1291|    734|        return ALIGNED_CAST(struct STRUCT *, ofpact);                   \
  ------------------
  |  |  434|    734|#define ALIGNED_CAST(TYPE, ATTR) ((TYPE) (void *) (ATTR))
  ------------------
 1292|    734|    }                                                                   \
ofp-actions.c:ofpact_get_STACK_POP:
 1289|  3.91k|    {                                                                   \
 1290|  3.91k|        ovs_assert(ofpact->type == OFPACT_##ENUM);                      \
  ------------------
  |  |   62|  3.91k|#define ovs_assert ovs_ignore
  ------------------
 1291|  3.91k|        return ALIGNED_CAST(struct STRUCT *, ofpact);                   \
  ------------------
  |  |  434|  3.91k|#define ALIGNED_CAST(TYPE, ATTR) ((TYPE) (void *) (ATTR))
  ------------------
 1292|  3.91k|    }                                                                   \
ofp-actions.c:ofpact_get_DEC_TTL:
 1289|  5.79k|    {                                                                   \
 1290|  5.79k|        ovs_assert(ofpact->type == OFPACT_##ENUM);                      \
  ------------------
  |  |   62|  5.79k|#define ovs_assert ovs_ignore
  ------------------
 1291|  5.79k|        return ALIGNED_CAST(struct STRUCT *, ofpact);                   \
  ------------------
  |  |  434|  5.79k|#define ALIGNED_CAST(TYPE, ATTR) ((TYPE) (void *) (ATTR))
  ------------------
 1292|  5.79k|    }                                                                   \
ofp-actions.c:ofpact_get_SET_MPLS_LABEL:
 1289|  3.73k|    {                                                                   \
 1290|  3.73k|        ovs_assert(ofpact->type == OFPACT_##ENUM);                      \
  ------------------
  |  |   62|  3.73k|#define ovs_assert ovs_ignore
  ------------------
 1291|  3.73k|        return ALIGNED_CAST(struct STRUCT *, ofpact);                   \
  ------------------
  |  |  434|  3.73k|#define ALIGNED_CAST(TYPE, ATTR) ((TYPE) (void *) (ATTR))
  ------------------
 1292|  3.73k|    }                                                                   \
ofp-actions.c:ofpact_get_SET_MPLS_TC:
 1289|  2.41k|    {                                                                   \
 1290|  2.41k|        ovs_assert(ofpact->type == OFPACT_##ENUM);                      \
  ------------------
  |  |   62|  2.41k|#define ovs_assert ovs_ignore
  ------------------
 1291|  2.41k|        return ALIGNED_CAST(struct STRUCT *, ofpact);                   \
  ------------------
  |  |  434|  2.41k|#define ALIGNED_CAST(TYPE, ATTR) ((TYPE) (void *) (ATTR))
  ------------------
 1292|  2.41k|    }                                                                   \
ofp-actions.c:ofpact_get_SET_MPLS_TTL:
 1289|  2.48k|    {                                                                   \
 1290|  2.48k|        ovs_assert(ofpact->type == OFPACT_##ENUM);                      \
  ------------------
  |  |   62|  2.48k|#define ovs_assert ovs_ignore
  ------------------
 1291|  2.48k|        return ALIGNED_CAST(struct STRUCT *, ofpact);                   \
  ------------------
  |  |  434|  2.48k|#define ALIGNED_CAST(TYPE, ATTR) ((TYPE) (void *) (ATTR))
  ------------------
 1292|  2.48k|    }                                                                   \
ofp-actions.c:ofpact_get_DEC_MPLS_TTL:
 1289|  4.32k|    {                                                                   \
 1290|  4.32k|        ovs_assert(ofpact->type == OFPACT_##ENUM);                      \
  ------------------
  |  |   62|  4.32k|#define ovs_assert ovs_ignore
  ------------------
 1291|  4.32k|        return ALIGNED_CAST(struct STRUCT *, ofpact);                   \
  ------------------
  |  |  434|  4.32k|#define ALIGNED_CAST(TYPE, ATTR) ((TYPE) (void *) (ATTR))
  ------------------
 1292|  4.32k|    }                                                                   \
ofp-actions.c:ofpact_get_PUSH_MPLS:
 1289|  1.13k|    {                                                                   \
 1290|  1.13k|        ovs_assert(ofpact->type == OFPACT_##ENUM);                      \
  ------------------
  |  |   62|  1.13k|#define ovs_assert ovs_ignore
  ------------------
 1291|  1.13k|        return ALIGNED_CAST(struct STRUCT *, ofpact);                   \
  ------------------
  |  |  434|  1.13k|#define ALIGNED_CAST(TYPE, ATTR) ((TYPE) (void *) (ATTR))
  ------------------
 1292|  1.13k|    }                                                                   \
ofp-actions.c:ofpact_get_POP_MPLS:
 1289|  2.56k|    {                                                                   \
 1290|  2.56k|        ovs_assert(ofpact->type == OFPACT_##ENUM);                      \
  ------------------
  |  |   62|  2.56k|#define ovs_assert ovs_ignore
  ------------------
 1291|  2.56k|        return ALIGNED_CAST(struct STRUCT *, ofpact);                   \
  ------------------
  |  |  434|  2.56k|#define ALIGNED_CAST(TYPE, ATTR) ((TYPE) (void *) (ATTR))
  ------------------
 1292|  2.56k|    }                                                                   \
ofp-actions.c:ofpact_get_DEC_NSH_TTL:
 1289|  1.60k|    {                                                                   \
 1290|  1.60k|        ovs_assert(ofpact->type == OFPACT_##ENUM);                      \
  ------------------
  |  |   62|  1.60k|#define ovs_assert ovs_ignore
  ------------------
 1291|  1.60k|        return ALIGNED_CAST(struct STRUCT *, ofpact);                   \
  ------------------
  |  |  434|  1.60k|#define ALIGNED_CAST(TYPE, ATTR) ((TYPE) (void *) (ATTR))
  ------------------
 1292|  1.60k|    }                                                                   \
ofp-actions.c:ofpact_get_DELETE_FIELD:
 1289|    692|    {                                                                   \
 1290|    692|        ovs_assert(ofpact->type == OFPACT_##ENUM);                      \
  ------------------
  |  |   62|    692|#define ovs_assert ovs_ignore
  ------------------
 1291|    692|        return ALIGNED_CAST(struct STRUCT *, ofpact);                   \
  ------------------
  |  |  434|    692|#define ALIGNED_CAST(TYPE, ATTR) ((TYPE) (void *) (ATTR))
  ------------------
 1292|    692|    }                                                                   \
ofp-actions.c:ofpact_get_ENCAP:
 1289|  3.04k|    {                                                                   \
 1290|  3.04k|        ovs_assert(ofpact->type == OFPACT_##ENUM);                      \
  ------------------
  |  |   62|  3.04k|#define ovs_assert ovs_ignore
  ------------------
 1291|  3.04k|        return ALIGNED_CAST(struct STRUCT *, ofpact);                   \
  ------------------
  |  |  434|  3.04k|#define ALIGNED_CAST(TYPE, ATTR) ((TYPE) (void *) (ATTR))
  ------------------
 1292|  3.04k|    }                                                                   \
ofp-actions.c:ofpact_get_DECAP:
 1289|  3.82k|    {                                                                   \
 1290|  3.82k|        ovs_assert(ofpact->type == OFPACT_##ENUM);                      \
  ------------------
  |  |   62|  3.82k|#define ovs_assert ovs_ignore
  ------------------
 1291|  3.82k|        return ALIGNED_CAST(struct STRUCT *, ofpact);                   \
  ------------------
  |  |  434|  3.82k|#define ALIGNED_CAST(TYPE, ATTR) ((TYPE) (void *) (ATTR))
  ------------------
 1292|  3.82k|    }                                                                   \
ofp-actions.c:ofpact_get_SET_TUNNEL:
 1289|  2.51k|    {                                                                   \
 1290|  2.51k|        ovs_assert(ofpact->type == OFPACT_##ENUM);                      \
  ------------------
  |  |   62|  2.51k|#define ovs_assert ovs_ignore
  ------------------
 1291|  2.51k|        return ALIGNED_CAST(struct STRUCT *, ofpact);                   \
  ------------------
  |  |  434|  2.51k|#define ALIGNED_CAST(TYPE, ATTR) ((TYPE) (void *) (ATTR))
  ------------------
 1292|  2.51k|    }                                                                   \
ofp-actions.c:ofpact_get_SET_QUEUE:
 1289|    476|    {                                                                   \
 1290|    476|        ovs_assert(ofpact->type == OFPACT_##ENUM);                      \
  ------------------
  |  |   62|    476|#define ovs_assert ovs_ignore
  ------------------
 1291|    476|        return ALIGNED_CAST(struct STRUCT *, ofpact);                   \
  ------------------
  |  |  434|    476|#define ALIGNED_CAST(TYPE, ATTR) ((TYPE) (void *) (ATTR))
  ------------------
 1292|    476|    }                                                                   \
ofp-actions.c:ofpact_get_POP_QUEUE:
 1289|    904|    {                                                                   \
 1290|    904|        ovs_assert(ofpact->type == OFPACT_##ENUM);                      \
  ------------------
  |  |   62|    904|#define ovs_assert ovs_ignore
  ------------------
 1291|    904|        return ALIGNED_CAST(struct STRUCT *, ofpact);                   \
  ------------------
  |  |  434|    904|#define ALIGNED_CAST(TYPE, ATTR) ((TYPE) (void *) (ATTR))
  ------------------
 1292|    904|    }                                                                   \
ofp-actions.c:ofpact_get_FIN_TIMEOUT:
 1289|    880|    {                                                                   \
 1290|    880|        ovs_assert(ofpact->type == OFPACT_##ENUM);                      \
  ------------------
  |  |   62|    880|#define ovs_assert ovs_ignore
  ------------------
 1291|    880|        return ALIGNED_CAST(struct STRUCT *, ofpact);                   \
  ------------------
  |  |  434|    880|#define ALIGNED_CAST(TYPE, ATTR) ((TYPE) (void *) (ATTR))
  ------------------
 1292|    880|    }                                                                   \
ofp-actions.c:ofpact_get_RESUBMIT:
 1289|  2.46k|    {                                                                   \
 1290|  2.46k|        ovs_assert(ofpact->type == OFPACT_##ENUM);                      \
  ------------------
  |  |   62|  2.46k|#define ovs_assert ovs_ignore
  ------------------
 1291|  2.46k|        return ALIGNED_CAST(struct STRUCT *, ofpact);                   \
  ------------------
  |  |  434|  2.46k|#define ALIGNED_CAST(TYPE, ATTR) ((TYPE) (void *) (ATTR))
  ------------------
 1292|  2.46k|    }                                                                   \
ofp-actions.c:ofpact_get_LEARN:
 1289|  66.7k|    {                                                                   \
 1290|  66.7k|        ovs_assert(ofpact->type == OFPACT_##ENUM);                      \
  ------------------
  |  |   62|  66.7k|#define ovs_assert ovs_ignore
  ------------------
 1291|  66.7k|        return ALIGNED_CAST(struct STRUCT *, ofpact);                   \
  ------------------
  |  |  434|  66.7k|#define ALIGNED_CAST(TYPE, ATTR) ((TYPE) (void *) (ATTR))
  ------------------
 1292|  66.7k|    }                                                                   \
ofp-actions.c:ofpact_get_CONJUNCTION:
 1289|    436|    {                                                                   \
 1290|    436|        ovs_assert(ofpact->type == OFPACT_##ENUM);                      \
  ------------------
  |  |   62|    436|#define ovs_assert ovs_ignore
  ------------------
 1291|    436|        return ALIGNED_CAST(struct STRUCT *, ofpact);                   \
  ------------------
  |  |  434|    436|#define ALIGNED_CAST(TYPE, ATTR) ((TYPE) (void *) (ATTR))
  ------------------
 1292|    436|    }                                                                   \
ofp-actions.c:ofpact_get_MULTIPATH:
 1289|    583|    {                                                                   \
 1290|    583|        ovs_assert(ofpact->type == OFPACT_##ENUM);                      \
  ------------------
  |  |   62|    583|#define ovs_assert ovs_ignore
  ------------------
 1291|    583|        return ALIGNED_CAST(struct STRUCT *, ofpact);                   \
  ------------------
  |  |  434|    583|#define ALIGNED_CAST(TYPE, ATTR) ((TYPE) (void *) (ATTR))
  ------------------
 1292|    583|    }                                                                   \
ofp-actions.c:ofpact_get_NOTE:
 1289|  3.44k|    {                                                                   \
 1290|  3.44k|        ovs_assert(ofpact->type == OFPACT_##ENUM);                      \
  ------------------
  |  |   62|  3.44k|#define ovs_assert ovs_ignore
  ------------------
 1291|  3.44k|        return ALIGNED_CAST(struct STRUCT *, ofpact);                   \
  ------------------
  |  |  434|  3.44k|#define ALIGNED_CAST(TYPE, ATTR) ((TYPE) (void *) (ATTR))
  ------------------
 1292|  3.44k|    }                                                                   \
ofp-actions.c:ofpact_get_EXIT:
 1289|  3.74k|    {                                                                   \
 1290|  3.74k|        ovs_assert(ofpact->type == OFPACT_##ENUM);                      \
  ------------------
  |  |   62|  3.74k|#define ovs_assert ovs_ignore
  ------------------
 1291|  3.74k|        return ALIGNED_CAST(struct STRUCT *, ofpact);                   \
  ------------------
  |  |  434|  3.74k|#define ALIGNED_CAST(TYPE, ATTR) ((TYPE) (void *) (ATTR))
  ------------------
 1292|  3.74k|    }                                                                   \
ofp-actions.c:ofpact_get_SAMPLE:
 1289|  3.16k|    {                                                                   \
 1290|  3.16k|        ovs_assert(ofpact->type == OFPACT_##ENUM);                      \
  ------------------
  |  |   62|  3.16k|#define ovs_assert ovs_ignore
  ------------------
 1291|  3.16k|        return ALIGNED_CAST(struct STRUCT *, ofpact);                   \
  ------------------
  |  |  434|  3.16k|#define ALIGNED_CAST(TYPE, ATTR) ((TYPE) (void *) (ATTR))
  ------------------
 1292|  3.16k|    }                                                                   \
ofp-actions.c:ofpact_ct_get_action_len:
  723|  17.5k|{
  724|       |    return oc->ofpact.len - offsetof(struct ofpact_conntrack, actions);
  725|  17.5k|}
ofp-actions.c:ofpact_get_CT_CLEAR:
 1289|  2.65k|    {                                                                   \
 1290|  2.65k|        ovs_assert(ofpact->type == OFPACT_##ENUM);                      \
  ------------------
  |  |   62|  2.65k|#define ovs_assert ovs_ignore
  ------------------
 1291|  2.65k|        return ALIGNED_CAST(struct STRUCT *, ofpact);                   \
  ------------------
  |  |  434|  2.65k|#define ALIGNED_CAST(TYPE, ATTR) ((TYPE) (void *) (ATTR))
  ------------------
 1292|  2.65k|    }                                                                   \
ofp-actions.c:ofpact_get_OUTPUT_TRUNC:
 1289|  1.74k|    {                                                                   \
 1290|  1.74k|        ovs_assert(ofpact->type == OFPACT_##ENUM);                      \
  ------------------
  |  |   62|  1.74k|#define ovs_assert ovs_ignore
  ------------------
 1291|  1.74k|        return ALIGNED_CAST(struct STRUCT *, ofpact);                   \
  ------------------
  |  |  434|  1.74k|#define ALIGNED_CAST(TYPE, ATTR) ((TYPE) (void *) (ATTR))
  ------------------
 1292|  1.74k|    }                                                                   \
ofp-actions.c:ofpact_nest_get_action_len:
  673|  11.8k|{
  674|       |    return on->ofpact.len - offsetof(struct ofpact_nest, actions);
  675|  11.8k|}
ofp-actions.c:ofpact_get_CHECK_PKT_LARGER:
 1289|  1.34k|    {                                                                   \
 1290|  1.34k|        ovs_assert(ofpact->type == OFPACT_##ENUM);                      \
  ------------------
  |  |   62|  1.34k|#define ovs_assert ovs_ignore
  ------------------
 1291|  1.34k|        return ALIGNED_CAST(struct STRUCT *, ofpact);                   \
  ------------------
  |  |  434|  1.34k|#define ALIGNED_CAST(TYPE, ATTR) ((TYPE) (void *) (ATTR))
  ------------------
 1292|  1.34k|    }                                                                   \
ofp-actions.c:ofpact_get_DEBUG_RECIRC:
 1289|  1.76k|    {                                                                   \
 1290|  1.76k|        ovs_assert(ofpact->type == OFPACT_##ENUM);                      \
  ------------------
  |  |   62|  1.76k|#define ovs_assert ovs_ignore
  ------------------
 1291|  1.76k|        return ALIGNED_CAST(struct STRUCT *, ofpact);                   \
  ------------------
  |  |  434|  1.76k|#define ALIGNED_CAST(TYPE, ATTR) ((TYPE) (void *) (ATTR))
  ------------------
 1292|  1.76k|    }                                                                   \
ofp-actions.c:ofpact_get_DEBUG_SLOW:
 1289|  3.54k|    {                                                                   \
 1290|  3.54k|        ovs_assert(ofpact->type == OFPACT_##ENUM);                      \
  ------------------
  |  |   62|  3.54k|#define ovs_assert ovs_ignore
  ------------------
 1291|  3.54k|        return ALIGNED_CAST(struct STRUCT *, ofpact);                   \
  ------------------
  |  |  434|  3.54k|#define ALIGNED_CAST(TYPE, ATTR) ((TYPE) (void *) (ATTR))
  ------------------
 1292|  3.54k|    }                                                                   \
ofp-actions.c:ofpact_get_CLEAR_ACTIONS:
 1289|     20|    {                                                                   \
 1290|     20|        ovs_assert(ofpact->type == OFPACT_##ENUM);                      \
  ------------------
  |  |   62|     20|#define ovs_assert ovs_ignore
  ------------------
 1291|     20|        return ALIGNED_CAST(struct STRUCT *, ofpact);                   \
  ------------------
  |  |  434|     20|#define ALIGNED_CAST(TYPE, ATTR) ((TYPE) (void *) (ATTR))
  ------------------
 1292|     20|    }                                                                   \
ofp-actions.c:ofpact_get_WRITE_METADATA:
 1289|     16|    {                                                                   \
 1290|     16|        ovs_assert(ofpact->type == OFPACT_##ENUM);                      \
  ------------------
  |  |   62|     16|#define ovs_assert ovs_ignore
  ------------------
 1291|     16|        return ALIGNED_CAST(struct STRUCT *, ofpact);                   \
  ------------------
  |  |  434|     16|#define ALIGNED_CAST(TYPE, ATTR) ((TYPE) (void *) (ATTR))
  ------------------
 1292|     16|    }                                                                   \
ofp-actions.c:ofpact_get_GOTO_TABLE:
 1289|     21|    {                                                                   \
 1290|     21|        ovs_assert(ofpact->type == OFPACT_##ENUM);                      \
  ------------------
  |  |   62|     21|#define ovs_assert ovs_ignore
  ------------------
 1291|     21|        return ALIGNED_CAST(struct STRUCT *, ofpact);                   \
  ------------------
  |  |  434|     21|#define ALIGNED_CAST(TYPE, ATTR) ((TYPE) (void *) (ATTR))
  ------------------
 1292|     21|    }                                                                   \
ofp-actions.c:ofpact_learn_spec_end:
  894|  81.9k|{
  895|  81.9k|    return ALIGNED_CAST(const struct ofpact_learn_spec *,
  ------------------
  |  |  434|  81.9k|#define ALIGNED_CAST(TYPE, ATTR) ((TYPE) (void *) (ATTR))
  ------------------
  896|  81.9k|                        ofpact_next(&learn->ofpact));
  897|  81.9k|}
ofp-actions.c:ofpact_learn_spec_imm:
  850|  46.7k|{
  851|  46.7k|    return spec + 1;
  852|  46.7k|}
ofp-actions.c:ofpact_learn_spec_next:
  856|  48.7k|{
  857|  48.7k|    if (spec->src_type == NX_LEARN_SRC_IMMEDIATE) {
  ------------------
  |  |  822|  48.7k|#define NX_LEARN_SRC_IMMEDIATE (1 << 13) /* Copy from immediate value. */
  ------------------
  |  Branch (857:9): [True: 46.7k, False: 2.00k]
  ------------------
  858|  46.7k|        unsigned int n_bytes = OFPACT_ALIGN(DIV_ROUND_UP(spec->n_bits, 8));
  ------------------
  |  |  205|  46.7k|#define OFPACT_ALIGN(SIZE) ROUND_UP(SIZE, OFPACT_ALIGNTO)
  |  |  ------------------
  |  |  |  |  303|  46.7k|#define ROUND_UP(X, Y) (DIV_ROUND_UP(X, Y) * (Y))
  |  |  |  |  ------------------
  |  |  |  |  |  |  300|  46.7k|#define DIV_ROUND_UP(X, Y) (((X) + ((Y) - 1)) / (Y))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  859|  46.7k|        return ALIGNED_CAST(const struct ofpact_learn_spec *,
  ------------------
  |  |  434|  46.7k|#define ALIGNED_CAST(TYPE, ATTR) ((TYPE) (void *) (ATTR))
  ------------------
  860|  46.7k|                            (const uint8_t *)(spec + 1) + n_bytes);
  861|  46.7k|    }
  862|  2.00k|    return spec + 1;
  863|  48.7k|}
ofp-actions.c:ofpact_get_GROUP:
 1289|    418|    {                                                                   \
 1290|    418|        ovs_assert(ofpact->type == OFPACT_##ENUM);                      \
  ------------------
  |  |   62|    418|#define ovs_assert ovs_ignore
  ------------------
 1291|    418|        return ALIGNED_CAST(struct STRUCT *, ofpact);                   \
  ------------------
  |  |  434|    418|#define ALIGNED_CAST(TYPE, ATTR) ((TYPE) (void *) (ATTR))
  ------------------
 1292|    418|    }                                                                   \
ofp-actions.c:ofpact_get_METER:
 1289|    245|    {                                                                   \
 1290|    245|        ovs_assert(ofpact->type == OFPACT_##ENUM);                      \
  ------------------
  |  |   62|    245|#define ovs_assert ovs_ignore
  ------------------
 1291|    245|        return ALIGNED_CAST(struct STRUCT *, ofpact);                   \
  ------------------
  |  |  434|    245|#define ALIGNED_CAST(TYPE, ATTR) ((TYPE) (void *) (ATTR))
  ------------------
 1292|    245|    }                                                                   \
bundle.c:ofpact_put_BUNDLE:
 1303|  2.16k|    {                                                                   \
 1304|  2.16k|        return (struct STRUCT *) ofpact_put(ofpacts, OFPACT_##ENUM,     \
 1305|  2.16k|                                            sizeof(struct STRUCT));     \
 1306|  2.16k|    }                                                                   \
bundle.c:ofpact_finish_BUNDLE:
 1317|  2.15k|    {                                                                   \
 1318|  2.15k|        struct ofpact *ofpact = &(*ofpactp)->ofpact;                    \
 1319|  2.15k|        ovs_assert(ofpact->type == OFPACT_##ENUM);                      \
  ------------------
  |  |   62|  2.15k|#define ovs_assert ovs_ignore
  ------------------
 1320|  2.15k|        *ofpactp = (struct STRUCT *) ofpact_finish(ofpbuf, ofpact);     \
 1321|  2.15k|    }
learn.c:ofpact_learn_spec_end:
  894|  82.9k|{
  895|  82.9k|    return ALIGNED_CAST(const struct ofpact_learn_spec *,
  ------------------
  |  |  434|  82.9k|#define ALIGNED_CAST(TYPE, ATTR) ((TYPE) (void *) (ATTR))
  ------------------
  896|  82.9k|                        ofpact_next(&learn->ofpact));
  897|  82.9k|}
learn.c:ofpact_next:
  212|  82.9k|{
  213|  82.9k|    return ALIGNED_CAST(struct ofpact *,
  ------------------
  |  |  434|  82.9k|#define ALIGNED_CAST(TYPE, ATTR) ((TYPE) (void *) (ATTR))
  ------------------
  214|  82.9k|                        (uint8_t *) ofpact + OFPACT_ALIGN(ofpact->len));
  215|  82.9k|}
learn.c:ofpact_learn_spec_imm:
  850|  47.1k|{
  851|  47.1k|    return spec + 1;
  852|  47.1k|}
learn.c:ofpact_learn_spec_next:
  856|  49.4k|{
  857|  49.4k|    if (spec->src_type == NX_LEARN_SRC_IMMEDIATE) {
  ------------------
  |  |  822|  49.4k|#define NX_LEARN_SRC_IMMEDIATE (1 << 13) /* Copy from immediate value. */
  ------------------
  |  Branch (857:9): [True: 47.4k, False: 2.00k]
  ------------------
  858|  47.4k|        unsigned int n_bytes = OFPACT_ALIGN(DIV_ROUND_UP(spec->n_bits, 8));
  ------------------
  |  |  205|  47.4k|#define OFPACT_ALIGN(SIZE) ROUND_UP(SIZE, OFPACT_ALIGNTO)
  |  |  ------------------
  |  |  |  |  303|  47.4k|#define ROUND_UP(X, Y) (DIV_ROUND_UP(X, Y) * (Y))
  |  |  |  |  ------------------
  |  |  |  |  |  |  300|  47.4k|#define DIV_ROUND_UP(X, Y) (((X) + ((Y) - 1)) / (Y))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  859|  47.4k|        return ALIGNED_CAST(const struct ofpact_learn_spec *,
  ------------------
  |  |  434|  47.4k|#define ALIGNED_CAST(TYPE, ATTR) ((TYPE) (void *) (ATTR))
  ------------------
  860|  47.4k|                            (const uint8_t *)(spec + 1) + n_bytes);
  861|  47.4k|    }
  862|  2.00k|    return spec + 1;
  863|  49.4k|}
learn.c:ofpact_put_LEARN:
 1303|  36.2k|    {                                                                   \
 1304|  36.2k|        return (struct STRUCT *) ofpact_put(ofpacts, OFPACT_##ENUM,     \
 1305|  36.2k|                                            sizeof(struct STRUCT));     \
 1306|  36.2k|    }                                                                   \
learn.c:ofpact_finish_LEARN:
 1317|  35.3k|    {                                                                   \
 1318|  35.3k|        struct ofpact *ofpact = &(*ofpactp)->ofpact;                    \
 1319|  35.3k|        ovs_assert(ofpact->type == OFPACT_##ENUM);                      \
  ------------------
  |  |   62|  35.3k|#define ovs_assert ovs_ignore
  ------------------
 1320|  35.3k|        *ofpactp = (struct STRUCT *) ofpact_finish(ofpbuf, ofpact);     \
 1321|  35.3k|    }
multipath.c:ofpact_init_MULTIPATH:
 1310|  2.45k|    {                                                                   \
 1311|  2.45k|        ofpact_init(&ofpact->ofpact, OFPACT_##ENUM,                     \
 1312|  2.45k|                    sizeof(struct STRUCT));                             \
 1313|  2.45k|    }                                                                   \

ofp-prop.c:ofpprop_is_experimenter:
   73|  6.66k|{
   74|       |    return type > UINT16_MAX;
   75|  6.66k|}

ofctl_parse_target.c:ofpbuf_delete:
  172|  9.08k|{
  173|  9.08k|    if (b) {
  ------------------
  |  Branch (173:9): [True: 9.08k, False: 0]
  ------------------
  174|  9.08k|        ofpbuf_uninit(b);
  175|  9.08k|        free(b);
  176|  9.08k|    }
  177|  9.08k|}
ofp-msgs.c:ofpbuf_at_assert:
  195|  9.08k|{
  196|  9.08k|    ovs_assert(offset + size <= b->size);
  ------------------
  |  |   62|  9.08k|#define ovs_assert ovs_ignore
  ------------------
  197|  9.08k|    ovs_assert(b->data);
  ------------------
  |  |   62|  9.08k|#define ovs_assert ovs_ignore
  ------------------
  198|  9.08k|    return (char *) b->data + offset;
  199|  9.08k|}
ofp-msgs.c:ofpbuf_tail:
  203|  9.08k|{
  204|  9.08k|    ovs_assert(b->data || !b->size);
  ------------------
  |  |   62|  9.08k|#define ovs_assert ovs_ignore
  ------------------
  |  Branch (204:16): [True: 9.08k, False: 0]
  |  Branch (204:27): [True: 0, False: 0]
  ------------------
  205|  9.08k|    return b->data ? (char *) b->data + b->size : NULL;
  ------------------
  |  Branch (205:12): [True: 9.08k, False: 0]
  ------------------
  206|  9.08k|}
ofp-prop.c:ofpbuf_at_assert:
  195|  6.23k|{
  196|  6.23k|    ovs_assert(offset + size <= b->size);
  ------------------
  |  |   62|  6.23k|#define ovs_assert ovs_ignore
  ------------------
  197|  6.23k|    ovs_assert(b->data);
  ------------------
  |  |   62|  6.23k|#define ovs_assert ovs_ignore
  ------------------
  198|  6.23k|    return (char *) b->data + offset;
  199|  6.23k|}
ofpbuf.c:ofpbuf_tailroom:
  228|  4.51M|{
  229|  4.51M|    return (char*)ofpbuf_end(b) - (char*)ofpbuf_tail(b);
  230|  4.51M|}
ofpbuf.c:ofpbuf_end:
  211|  4.51M|{
  212|  4.51M|    ovs_assert(b->base || !b->allocated);
  ------------------
  |  |   62|  4.51M|#define ovs_assert ovs_ignore
  ------------------
  |  Branch (212:16): [True: 4.50M, False: 9.08k]
  |  Branch (212:27): [True: 9.08k, False: 0]
  ------------------
  213|  4.51M|    return b->base ? (char *) b->base + b->allocated : NULL;
  ------------------
  |  Branch (213:12): [True: 4.50M, False: 9.08k]
  ------------------
  214|  4.51M|}
ofpbuf.c:ofpbuf_headroom:
  221|   976k|{
  222|   976k|    return (char*)b->data - (char*)b->base;
  223|   976k|}
ofpbuf.c:ofpbuf_tail:
  203|  9.03M|{
  204|  9.03M|    ovs_assert(b->data || !b->size);
  ------------------
  |  |   62|  9.03M|#define ovs_assert ovs_ignore
  ------------------
  |  Branch (204:16): [True: 9.03M, False: 9.08k]
  |  Branch (204:27): [True: 9.08k, False: 0]
  ------------------
  205|  9.03M|    return b->data ? (char *) b->data + b->size : NULL;
  ------------------
  |  Branch (205:12): [True: 9.03M, False: 9.08k]
  ------------------
  206|  9.03M|}
nx-match.c:ofpbuf_at:
  183|    466|{
  184|    466|    if (offset + size <= b->size) {
  ------------------
  |  Branch (184:9): [True: 466, False: 0]
  ------------------
  185|    466|        ovs_assert(b->data);
  ------------------
  |  |   62|    466|#define ovs_assert ovs_ignore
  ------------------
  186|    466|        return (char *) b->data + offset;
  187|    466|    }
  188|      0|    return NULL;
  189|    466|}
ofp-actions.c:ofpbuf_pull:
  258|   115k|{
  259|   115k|    ovs_assert(b->size >= size);
  ------------------
  |  |   62|   115k|#define ovs_assert ovs_ignore
  ------------------
  260|   115k|    void *data = b->data;
  261|       |
  262|   115k|    if (!size) {
  ------------------
  |  Branch (262:9): [True: 5.00k, False: 110k]
  ------------------
  263|  5.00k|        return data;
  264|  5.00k|    }
  265|       |
  266|   110k|    b->data = (char*)b->data + size;
  267|   110k|    b->size = b->size - size;
  268|   110k|    return data;
  269|   115k|}
ofp-actions.c:ofpbuf_at_assert:
  195|  65.6k|{
  196|  65.6k|    ovs_assert(offset + size <= b->size);
  ------------------
  |  |   62|  65.6k|#define ovs_assert ovs_ignore
  ------------------
  197|  65.6k|    ovs_assert(b->data);
  ------------------
  |  |   62|  65.6k|#define ovs_assert ovs_ignore
  ------------------
  198|  65.6k|    return (char *) b->data + offset;
  199|  65.6k|}
ofp-actions.c:ofpbuf_at:
  183|  21.8k|{
  184|  21.8k|    if (offset + size <= b->size) {
  ------------------
  |  Branch (184:9): [True: 21.8k, False: 0]
  ------------------
  185|  21.8k|        ovs_assert(b->data);
  ------------------
  |  |   62|  21.8k|#define ovs_assert ovs_ignore
  ------------------
  186|  21.8k|        return (char *) b->data + offset;
  187|  21.8k|    }
  188|      0|    return NULL;
  189|  21.8k|}
ofp-actions.c:ofpbuf_tail:
  203|   180k|{
  204|   180k|    ovs_assert(b->data || !b->size);
  ------------------
  |  |   62|   180k|#define ovs_assert ovs_ignore
  ------------------
  |  Branch (204:16): [True: 180k, False: 0]
  |  Branch (204:27): [True: 0, False: 0]
  ------------------
  205|   180k|    return b->data ? (char *) b->data + b->size : NULL;
  ------------------
  |  Branch (205:12): [True: 180k, False: 0]
  ------------------
  206|   180k|}
ofp-actions.c:ofpbuf_oversized:
  291|  46.8k|{
  292|       |    return (char *)ofpbuf_tail(ofpacts) - (char *)ofpacts->header > UINT16_MAX;
  293|  46.8k|}
ofp-actions.c:ofpbuf_truncate:
  297|  10.4k|{
  298|  10.4k|    ovs_assert(b->size >= new_size);
  ------------------
  |  |   62|  10.4k|#define ovs_assert ovs_ignore
  ------------------
  299|  10.4k|    b->size = new_size;
  300|  10.4k|}
bundle.c:ofpbuf_oversized:
  291|  2.15k|{
  292|       |    return (char *)ofpbuf_tail(ofpacts) - (char *)ofpacts->header > UINT16_MAX;
  293|  2.15k|}
bundle.c:ofpbuf_tail:
  203|  2.15k|{
  204|  2.15k|    ovs_assert(b->data || !b->size);
  ------------------
  |  |   62|  2.15k|#define ovs_assert ovs_ignore
  ------------------
  |  Branch (204:16): [True: 2.15k, False: 0]
  |  Branch (204:27): [True: 0, False: 0]
  ------------------
  205|  2.15k|    return b->data ? (char *) b->data + b->size : NULL;
  ------------------
  |  Branch (205:12): [True: 2.15k, False: 0]
  ------------------
  206|  2.15k|}
learn.c:ofpbuf_oversized:
  291|  35.3k|{
  292|       |    return (char *)ofpbuf_tail(ofpacts) - (char *)ofpacts->header > UINT16_MAX;
  293|  35.3k|}
learn.c:ofpbuf_tail:
  203|  35.3k|{
  204|  35.3k|    ovs_assert(b->data || !b->size);
  ------------------
  |  |   62|  35.3k|#define ovs_assert ovs_ignore
  ------------------
  |  Branch (204:16): [True: 35.3k, False: 0]
  |  Branch (204:27): [True: 0, False: 0]
  ------------------
  205|  35.3k|    return b->data ? (char *) b->data + b->size : NULL;
  ------------------
  |  Branch (205:12): [True: 35.3k, False: 0]
  ------------------
  206|  35.3k|}

ofp-msgs.c:ovsthread_once_start:
  156|  9.08k|{
  157|       |    /* We may be reading 'done' at the same time as the first thread
  158|       |     * is writing on it, or we can be using a stale copy of it.  The
  159|       |     * worst that can happen is that we call ovsthread_once_start__()
  160|       |     * once when strictly not necessary. */
  161|  9.08k|    return OVS_UNLIKELY(!once->done && ovsthread_once_start__(once));
  ------------------
  |  |   66|  9.08k|#define OVS_UNLIKELY(CONDITION) __builtin_expect(!!(CONDITION), 0)
  |  |  ------------------
  |  |  |  Branch (66:53): [True: 1, False: 9.08k]
  |  |  |  Branch (66:53): [True: 1, False: 0]
  |  |  ------------------
  ------------------
  162|  9.08k|}
ofp-port.c:ovsthread_once_start:
  156|  4.89k|{
  157|       |    /* We may be reading 'done' at the same time as the first thread
  158|       |     * is writing on it, or we can be using a stale copy of it.  The
  159|       |     * worst that can happen is that we call ovsthread_once_start__()
  160|       |     * once when strictly not necessary. */
  161|  4.89k|    return OVS_UNLIKELY(!once->done && ovsthread_once_start__(once));
  ------------------
  |  |   66|  4.90k|#define OVS_UNLIKELY(CONDITION) __builtin_expect(!!(CONDITION), 0)
  |  |  ------------------
  |  |  |  Branch (66:53): [True: 1, False: 4.89k]
  |  |  |  Branch (66:53): [True: 1, False: 0]
  |  |  ------------------
  ------------------
  162|  4.89k|}
nx-match.c:ovsthread_once_start:
  156|   410k|{
  157|       |    /* We may be reading 'done' at the same time as the first thread
  158|       |     * is writing on it, or we can be using a stale copy of it.  The
  159|       |     * worst that can happen is that we call ovsthread_once_start__()
  160|       |     * once when strictly not necessary. */
  161|   410k|    return OVS_UNLIKELY(!once->done && ovsthread_once_start__(once));
  ------------------
  |  |   66|   410k|#define OVS_UNLIKELY(CONDITION) __builtin_expect(!!(CONDITION), 0)
  |  |  ------------------
  |  |  |  Branch (66:53): [True: 1, False: 410k]
  |  |  |  Branch (66:53): [True: 1, False: 0]
  |  |  ------------------
  ------------------
  162|   410k|}
ofp-actions.c:ovsthread_once_start:
  156|   299k|{
  157|       |    /* We may be reading 'done' at the same time as the first thread
  158|       |     * is writing on it, or we can be using a stale copy of it.  The
  159|       |     * worst that can happen is that we call ovsthread_once_start__()
  160|       |     * once when strictly not necessary. */
  161|   299k|    return OVS_UNLIKELY(!once->done && ovsthread_once_start__(once));
  ------------------
  |  |   66|   299k|#define OVS_UNLIKELY(CONDITION) __builtin_expect(!!(CONDITION), 0)
  |  |  ------------------
  |  |  |  Branch (66:53): [True: 1, False: 299k]
  |  |  |  Branch (66:53): [True: 1, False: 0]
  |  |  ------------------
  ------------------
  162|   299k|}

ofctl_parse_target.c:is_pow2:
  399|  9.08k|{
  400|  9.08k|    return IS_POW2(x);
  ------------------
  |  |  312|  9.08k|#define IS_POW2(X) ((X) && !((X) & ((X) - 1)))
  |  |  ------------------
  |  |  |  Branch (312:21): [True: 9.08k, False: 0]
  |  |  |  Branch (312:28): [True: 9.08k, False: 0]
  |  |  ------------------
  ------------------
  401|  9.08k|}
hmap.c:is_pow2:
  399|     34|{
  400|     34|    return IS_POW2(x);
  ------------------
  |  |  312|     34|#define IS_POW2(X) ((X) && !((X) & ((X) - 1)))
  |  |  ------------------
  |  |  |  Branch (312:21): [True: 34, False: 0]
  |  |  |  Branch (312:28): [True: 34, False: 0]
  |  |  ------------------
  ------------------
  401|     34|}

ofp-flow.c:init_this_module_ofp_flow:
  191|      2|        OVS_CONSTRUCTOR(init_this_module_##MODULE) {                    \
  192|      2|            vlog_insert_module(&this_module.list);                      \
  193|      2|        }                                                               \
ofp-group.c:init_this_module_ofp_group:
  191|      2|        OVS_CONSTRUCTOR(init_this_module_##MODULE) {                    \
  192|      2|            vlog_insert_module(&this_module.list);                      \
  193|      2|        }                                                               \
ofp-match.c:init_this_module_ofp_match:
  191|      2|        OVS_CONSTRUCTOR(init_this_module_##MODULE) {                    \
  192|      2|            vlog_insert_module(&this_module.list);                      \
  193|      2|        }                                                               \
ofp-msgs.c:init_this_module_ofp_msgs:
  191|      2|        OVS_CONSTRUCTOR(init_this_module_##MODULE) {                    \
  192|      2|            vlog_insert_module(&this_module.list);                      \
  193|      2|        }                                                               \
ofp-port.c:init_this_module_ofp_port:
  191|      2|        OVS_CONSTRUCTOR(init_this_module_##MODULE) {                    \
  192|      2|            vlog_insert_module(&this_module.list);                      \
  193|      2|        }                                                               \
ofp-protocol.c:init_this_module_ofp_protocol:
  191|      2|        OVS_CONSTRUCTOR(init_this_module_##MODULE) {                    \
  192|      2|            vlog_insert_module(&this_module.list);                      \
  193|      2|        }                                                               \
ofp-queue.c:init_this_module_ofp_queue:
  191|      2|        OVS_CONSTRUCTOR(init_this_module_##MODULE) {                    \
  192|      2|            vlog_insert_module(&this_module.list);                      \
  193|      2|        }                                                               \
ofp-table.c:init_this_module_ofp_table:
  191|      2|        OVS_CONSTRUCTOR(init_this_module_##MODULE) {                    \
  192|      2|            vlog_insert_module(&this_module.list);                      \
  193|      2|        }                                                               \
ofp-util.c:init_this_module_ofp_util:
  191|      2|        OVS_CONSTRUCTOR(init_this_module_##MODULE) {                    \
  192|      2|            vlog_insert_module(&this_module.list);                      \
  193|      2|        }                                                               \
ovs-thread.c:init_this_module_ovs_thread:
  191|      2|        OVS_CONSTRUCTOR(init_this_module_##MODULE) {                    \
  192|      2|            vlog_insert_module(&this_module.list);                      \
  193|      2|        }                                                               \
ox-stat.c:init_this_module_ox_stat:
  191|      2|        OVS_CONSTRUCTOR(init_this_module_##MODULE) {                    \
  192|      2|            vlog_insert_module(&this_module.list);                      \
  193|      2|        }                                                               \
poll-loop.c:init_this_module_poll_loop:
  191|      2|        OVS_CONSTRUCTOR(init_this_module_##MODULE) {                    \
  192|      2|            vlog_insert_module(&this_module.list);                      \
  193|      2|        }                                                               \
socket-util.c:init_this_module_socket_util:
  191|      2|        OVS_CONSTRUCTOR(init_this_module_##MODULE) {                    \
  192|      2|            vlog_insert_module(&this_module.list);                      \
  193|      2|        }                                                               \
timeval.c:init_this_module_timeval:
  191|      2|        OVS_CONSTRUCTOR(init_this_module_##MODULE) {                    \
  192|      2|            vlog_insert_module(&this_module.list);                      \
  193|      2|        }                                                               \
unixctl.c:init_this_module_unixctl:
  191|      2|        OVS_CONSTRUCTOR(init_this_module_##MODULE) {                    \
  192|      2|            vlog_insert_module(&this_module.list);                      \
  193|      2|        }                                                               \
util.c:init_this_module_util:
  191|      2|        OVS_CONSTRUCTOR(init_this_module_##MODULE) {                    \
  192|      2|            vlog_insert_module(&this_module.list);                      \
  193|      2|        }                                                               \
vlog.c:init_this_module_vlog:
  191|      2|        OVS_CONSTRUCTOR(init_this_module_##MODULE) {                    \
  192|      2|            vlog_insert_module(&this_module.list);                      \
  193|      2|        }                                                               \
socket-util-unix.c:init_this_module_socket_util_unix:
  191|      2|        OVS_CONSTRUCTOR(init_this_module_##MODULE) {                    \
  192|      2|            vlog_insert_module(&this_module.list);                      \
  193|      2|        }                                                               \
backtrace.c:init_this_module_backtrace:
  191|      2|        OVS_CONSTRUCTOR(init_this_module_##MODULE) {                    \
  192|      2|            vlog_insert_module(&this_module.list);                      \
  193|      2|        }                                                               \
command-line.c:init_this_module_command_line:
  191|      2|        OVS_CONSTRUCTOR(init_this_module_##MODULE) {                    \
  192|      2|            vlog_insert_module(&this_module.list);                      \
  193|      2|        }                                                               \
coverage.c:init_this_module_coverage:
  191|      2|        OVS_CONSTRUCTOR(init_this_module_##MODULE) {                    \
  192|      2|            vlog_insert_module(&this_module.list);                      \
  193|      2|        }                                                               \
dp-packet-gso.c:init_this_module_dp_packet_gso:
  191|      2|        OVS_CONSTRUCTOR(init_this_module_##MODULE) {                    \
  192|      2|            vlog_insert_module(&this_module.list);                      \
  193|      2|        }                                                               \
fatal-signal.c:init_this_module_fatal_signal:
  191|      2|        OVS_CONSTRUCTOR(init_this_module_##MODULE) {                    \
  192|      2|            vlog_insert_module(&this_module.list);                      \
  193|      2|        }                                                               \
flow.c:init_this_module_flow:
  191|      2|        OVS_CONSTRUCTOR(init_this_module_##MODULE) {                    \
  192|      2|            vlog_insert_module(&this_module.list);                      \
  193|      2|        }                                                               \
hmap.c:init_this_module_hmap:
  191|      2|        OVS_CONSTRUCTOR(init_this_module_##MODULE) {                    \
  192|      2|            vlog_insert_module(&this_module.list);                      \
  193|      2|        }                                                               \
jsonrpc.c:init_this_module_jsonrpc:
  191|      2|        OVS_CONSTRUCTOR(init_this_module_##MODULE) {                    \
  192|      2|            vlog_insert_module(&this_module.list);                      \
  193|      2|        }                                                               \
meta-flow.c:init_this_module_meta_flow:
  191|      2|        OVS_CONSTRUCTOR(init_this_module_##MODULE) {                    \
  192|      2|            vlog_insert_module(&this_module.list);                      \
  193|      2|        }                                                               \
netdev.c:init_this_module_netdev:
  191|      2|        OVS_CONSTRUCTOR(init_this_module_##MODULE) {                    \
  192|      2|            vlog_insert_module(&this_module.list);                      \
  193|      2|        }                                                               \
netlink.c:init_this_module_netlink:
  191|      2|        OVS_CONSTRUCTOR(init_this_module_##MODULE) {                    \
  192|      2|            vlog_insert_module(&this_module.list);                      \
  193|      2|        }                                                               \
nx-match.c:init_this_module_nx_match:
  191|      2|        OVS_CONSTRUCTOR(init_this_module_##MODULE) {                    \
  192|      2|            vlog_insert_module(&this_module.list);                      \
  193|      2|        }                                                               \
ofp-actions.c:init_this_module_ofp_actions:
  191|      2|        OVS_CONSTRUCTOR(init_this_module_##MODULE) {                    \
  192|      2|            vlog_insert_module(&this_module.list);                      \
  193|      2|        }                                                               \
ofp-bundle.c:init_this_module_ofp_bundle:
  191|      2|        OVS_CONSTRUCTOR(init_this_module_##MODULE) {                    \
  192|      2|            vlog_insert_module(&this_module.list);                      \
  193|      2|        }                                                               \
ofp-connection.c:init_this_module_ofp_connection:
  191|      2|        OVS_CONSTRUCTOR(init_this_module_##MODULE) {                    \
  192|      2|            vlog_insert_module(&this_module.list);                      \
  193|      2|        }                                                               \
ofp-ct.c:init_this_module_ofp_ct:
  191|      2|        OVS_CONSTRUCTOR(init_this_module_##MODULE) {                    \
  192|      2|            vlog_insert_module(&this_module.list);                      \
  193|      2|        }                                                               \
ofp-errors.c:init_this_module_ofp_errors:
  191|      2|        OVS_CONSTRUCTOR(init_this_module_##MODULE) {                    \
  192|      2|            vlog_insert_module(&this_module.list);                      \
  193|      2|        }                                                               \
ofp-meter.c:init_this_module_ofp_meter:
  191|      2|        OVS_CONSTRUCTOR(init_this_module_##MODULE) {                    \
  192|      2|            vlog_insert_module(&this_module.list);                      \
  193|      2|        }                                                               \
ofp-monitor.c:init_this_module_ofp_monitor:
  191|      2|        OVS_CONSTRUCTOR(init_this_module_##MODULE) {                    \
  192|      2|            vlog_insert_module(&this_module.list);                      \
  193|      2|        }                                                               \
ofp-packet.c:init_this_module_ofp_packet:
  191|      2|        OVS_CONSTRUCTOR(init_this_module_##MODULE) {                    \
  192|      2|            vlog_insert_module(&this_module.list);                      \
  193|      2|        }                                                               \
ovs-rcu.c:init_this_module_ovs_rcu:
  191|      2|        OVS_CONSTRUCTOR(init_this_module_##MODULE) {                    \
  192|      2|            vlog_insert_module(&this_module.list);                      \
  193|      2|        }                                                               \
ovs-replay.c:init_this_module_ovs_replay:
  191|      2|        OVS_CONSTRUCTOR(init_this_module_##MODULE) {                    \
  192|      2|            vlog_insert_module(&this_module.list);                      \
  193|      2|        }                                                               \
ovs-router.c:init_this_module_ovs_router:
  191|      2|        OVS_CONSTRUCTOR(init_this_module_##MODULE) {                    \
  192|      2|            vlog_insert_module(&this_module.list);                      \
  193|      2|        }                                                               \
reconnect.c:init_this_module_reconnect:
  191|      2|        OVS_CONSTRUCTOR(init_this_module_##MODULE) {                    \
  192|      2|            vlog_insert_module(&this_module.list);                      \
  193|      2|        }                                                               \
stream.c:init_this_module_stream:
  191|      2|        OVS_CONSTRUCTOR(init_this_module_##MODULE) {                    \
  192|      2|            vlog_insert_module(&this_module.list);                      \
  193|      2|        }                                                               \
svec.c:init_this_module_svec:
  191|      2|        OVS_CONSTRUCTOR(init_this_module_##MODULE) {                    \
  192|      2|            vlog_insert_module(&this_module.list);                      \
  193|      2|        }                                                               \
userspace-tso.c:init_this_module_userspace_tso:
  191|      2|        OVS_CONSTRUCTOR(init_this_module_##MODULE) {                    \
  192|      2|            vlog_insert_module(&this_module.list);                      \
  193|      2|        }                                                               \
uuid.c:init_this_module_uuid:
  191|      2|        OVS_CONSTRUCTOR(init_this_module_##MODULE) {                    \
  192|      2|            vlog_insert_module(&this_module.list);                      \
  193|      2|        }                                                               \
daemon-unix.c:init_this_module_daemon_unix:
  191|      2|        OVS_CONSTRUCTOR(init_this_module_##MODULE) {                    \
  192|      2|            vlog_insert_module(&this_module.list);                      \
  193|      2|        }                                                               \
signals.c:init_this_module_signals:
  191|      2|        OVS_CONSTRUCTOR(init_this_module_##MODULE) {                    \
  192|      2|            vlog_insert_module(&this_module.list);                      \
  193|      2|        }                                                               \
stream-unix.c:init_this_module_stream_unix:
  191|      2|        OVS_CONSTRUCTOR(init_this_module_##MODULE) {                    \
  192|      2|            vlog_insert_module(&this_module.list);                      \
  193|      2|        }                                                               \
netdev-linux.c:init_this_module_netdev_linux:
  191|      2|        OVS_CONSTRUCTOR(init_this_module_##MODULE) {                    \
  192|      2|            vlog_insert_module(&this_module.list);                      \
  193|      2|        }                                                               \
netlink-socket.c:init_this_module_netlink_socket:
  191|      2|        OVS_CONSTRUCTOR(init_this_module_##MODULE) {                    \
  192|      2|            vlog_insert_module(&this_module.list);                      \
  193|      2|        }                                                               \
route-table.c:init_this_module_route_table:
  191|      2|        OVS_CONSTRUCTOR(init_this_module_##MODULE) {                    \
  192|      2|            vlog_insert_module(&this_module.list);                      \
  193|      2|        }                                                               \
tc.c:init_this_module_tc:
  191|      2|        OVS_CONSTRUCTOR(init_this_module_##MODULE) {                    \
  192|      2|            vlog_insert_module(&this_module.list);                      \
  193|      2|        }                                                               \
stream-ssl.c:init_this_module_stream_ssl:
  191|      2|        OVS_CONSTRUCTOR(init_this_module_##MODULE) {                    \
  192|      2|            vlog_insert_module(&this_module.list);                      \
  193|      2|        }                                                               \
bundle.c:init_this_module_bundle:
  191|      2|        OVS_CONSTRUCTOR(init_this_module_##MODULE) {                    \
  192|      2|            vlog_insert_module(&this_module.list);                      \
  193|      2|        }                                                               \
cooperative-multitasking.c:init_this_module_cooperative_multitasking:
  191|      2|        OVS_CONSTRUCTOR(init_this_module_##MODULE) {                    \
  192|      2|            vlog_insert_module(&this_module.list);                      \
  193|      2|        }                                                               \
daemon.c:init_this_module_daemon:
  191|      2|        OVS_CONSTRUCTOR(init_this_module_##MODULE) {                    \
  192|      2|            vlog_insert_module(&this_module.list);                      \
  193|      2|        }                                                               \
dpif-offload.c:init_this_module_dpif_offload:
  191|      2|        OVS_CONSTRUCTOR(init_this_module_##MODULE) {                    \
  192|      2|            vlog_insert_module(&this_module.list);                      \
  193|      2|        }                                                               \
dpif-offload-dummy.c:init_this_module_dpif_offload_dummy:
  191|      2|        OVS_CONSTRUCTOR(init_this_module_##MODULE) {                    \
  192|      2|            vlog_insert_module(&this_module.list);                      \
  193|      2|        }                                                               \
dpif.c:init_this_module_dpif:
  191|      2|        OVS_CONSTRUCTOR(init_this_module_##MODULE) {                    \
  192|      2|            vlog_insert_module(&this_module.list);                      \
  193|      2|        }                                                               \
entropy.c:init_this_module_entropy:
  191|      2|        OVS_CONSTRUCTOR(init_this_module_##MODULE) {                    \
  192|      2|            vlog_insert_module(&this_module.list);                      \
  193|      2|        }                                                               \
lockfile.c:init_this_module_lockfile:
  191|      2|        OVS_CONSTRUCTOR(init_this_module_##MODULE) {                    \
  192|      2|            vlog_insert_module(&this_module.list);                      \
  193|      2|        }                                                               \
netdev-dummy.c:init_this_module_netdev_dummy:
  191|      2|        OVS_CONSTRUCTOR(init_this_module_##MODULE) {                    \
  192|      2|            vlog_insert_module(&this_module.list);                      \
  193|      2|        }                                                               \
netdev-vport.c:init_this_module_netdev_vport:
  191|      2|        OVS_CONSTRUCTOR(init_this_module_##MODULE) {                    \
  192|      2|            vlog_insert_module(&this_module.list);                      \
  193|      2|        }                                                               \
odp-execute.c:init_this_module_odp_execute:
  191|      2|        OVS_CONSTRUCTOR(init_this_module_##MODULE) {                    \
  192|      2|            vlog_insert_module(&this_module.list);                      \
  193|      2|        }                                                               \
odp-util.c:init_this_module_odp_util:
  191|      2|        OVS_CONSTRUCTOR(init_this_module_##MODULE) {                    \
  192|      2|            vlog_insert_module(&this_module.list);                      \
  193|      2|        }                                                               \
pcap-file.c:init_this_module_pcap:
  191|      2|        OVS_CONSTRUCTOR(init_this_module_##MODULE) {                    \
  192|      2|            vlog_insert_module(&this_module.list);                      \
  193|      2|        }                                                               \
process.c:init_this_module_process:
  191|      2|        OVS_CONSTRUCTOR(init_this_module_##MODULE) {                    \
  192|      2|            vlog_insert_module(&this_module.list);                      \
  193|      2|        }                                                               \
sha1.c:init_this_module_sha1:
  191|      2|        OVS_CONSTRUCTOR(init_this_module_##MODULE) {                    \
  192|      2|            vlog_insert_module(&this_module.list);                      \
  193|      2|        }                                                               \
stream-fd.c:init_this_module_stream_fd:
  191|      2|        OVS_CONSTRUCTOR(init_this_module_##MODULE) {                    \
  192|      2|            vlog_insert_module(&this_module.list);                      \
  193|      2|        }                                                               \
stream-replay.c:init_this_module_stream_replay:
  191|      2|        OVS_CONSTRUCTOR(init_this_module_##MODULE) {                    \
  192|      2|            vlog_insert_module(&this_module.list);                      \
  193|      2|        }                                                               \
stream-tcp.c:init_this_module_stream_tcp:
  191|      2|        OVS_CONSTRUCTOR(init_this_module_##MODULE) {                    \
  192|      2|            vlog_insert_module(&this_module.list);                      \
  193|      2|        }                                                               \
netdev-native-tnl.c:init_this_module_native_tnl:
  191|      2|        OVS_CONSTRUCTOR(init_this_module_##MODULE) {                    \
  192|      2|            vlog_insert_module(&this_module.list);                      \
  193|      2|        }                                                               \
dpif-netlink.c:init_this_module_dpif_netlink:
  191|      2|        OVS_CONSTRUCTOR(init_this_module_##MODULE) {                    \
  192|      2|            vlog_insert_module(&this_module.list);                      \
  193|      2|        }                                                               \
dpif-netlink-rtnl.c:init_this_module_dpif_netlink_rtnl:
  191|      2|        OVS_CONSTRUCTOR(init_this_module_##MODULE) {                    \
  192|      2|            vlog_insert_module(&this_module.list);                      \
  193|      2|        }                                                               \
dpif-offload-tc.c:init_this_module_dpif_offload_tc:
  191|      2|        OVS_CONSTRUCTOR(init_this_module_##MODULE) {                    \
  192|      2|            vlog_insert_module(&this_module.list);                      \
  193|      2|        }                                                               \
dpif-offload-tc-netdev.c:init_this_module_dpif_offload_tc_netdev:
  191|      2|        OVS_CONSTRUCTOR(init_this_module_##MODULE) {                    \
  192|      2|            vlog_insert_module(&this_module.list);                      \
  193|      2|        }                                                               \
netlink-conntrack.c:init_this_module_netlink_conntrack:
  191|      2|        OVS_CONSTRUCTOR(init_this_module_##MODULE) {                    \
  192|      2|            vlog_insert_module(&this_module.list);                      \
  193|      2|        }                                                               \
netlink-notifier.c:init_this_module_netlink_notifier:
  191|      2|        OVS_CONSTRUCTOR(init_this_module_##MODULE) {                    \
  192|      2|            vlog_insert_module(&this_module.list);                      \
  193|      2|        }                                                               \
conntrack.c:init_this_module_conntrack:
  191|      2|        OVS_CONSTRUCTOR(init_this_module_##MODULE) {                    \
  192|      2|            vlog_insert_module(&this_module.list);                      \
  193|      2|        }                                                               \
ct-dpif.c:init_this_module_ct_dpif:
  191|      2|        OVS_CONSTRUCTOR(init_this_module_##MODULE) {                    \
  192|      2|            vlog_insert_module(&this_module.list);                      \
  193|      2|        }                                                               \
dpif-netdev.c:init_this_module_dpif_netdev:
  191|      2|        OVS_CONSTRUCTOR(init_this_module_##MODULE) {                    \
  192|      2|            vlog_insert_module(&this_module.list);                      \
  193|      2|        }                                                               \
ipf.c:init_this_module_ipf:
  191|      2|        OVS_CONSTRUCTOR(init_this_module_##MODULE) {                    \
  192|      2|            vlog_insert_module(&this_module.list);                      \
  193|      2|        }                                                               \
ovs-numa.c:init_this_module_ovs_numa:
  191|      2|        OVS_CONSTRUCTOR(init_this_module_##MODULE) {                    \
  192|      2|            vlog_insert_module(&this_module.list);                      \
  193|      2|        }                                                               \
dpdk-stub.c:init_this_module_dpdk:
  191|      2|        OVS_CONSTRUCTOR(init_this_module_##MODULE) {                    \
  192|      2|            vlog_insert_module(&this_module.list);                      \
  193|      2|        }                                                               \
conntrack-tp.c:init_this_module_conntrack_tp:
  191|      2|        OVS_CONSTRUCTOR(init_this_module_##MODULE) {                    \
  192|      2|            vlog_insert_module(&this_module.list);                      \
  193|      2|        }                                                               \
dpif-netdev-dpcls.c:init_this_module_dpif_netdev_dpcls:
  191|      2|        OVS_CONSTRUCTOR(init_this_module_##MODULE) {                    \
  192|      2|            vlog_insert_module(&this_module.list);                      \
  193|      2|        }                                                               \
dpif-netdev-perf.c:init_this_module_pmd_perf:
  191|      2|        OVS_CONSTRUCTOR(init_this_module_##MODULE) {                    \
  192|      2|            vlog_insert_module(&this_module.list);                      \
  193|      2|        }                                                               \
ovsdb-error.c:init_this_module_ovsdb_error:
  191|      2|        OVS_CONSTRUCTOR(init_this_module_##MODULE) {                    \
  192|      2|            vlog_insert_module(&this_module.list);                      \
  193|      2|        }                                                               \
ovsdb-idl.c:init_this_module_ovsdb_idl:
  191|      2|        OVS_CONSTRUCTOR(init_this_module_##MODULE) {                    \
  192|      2|            vlog_insert_module(&this_module.list);                      \
  193|      2|        }                                                               \
ovsdb-cs.c:init_this_module_ovsdb_cs:
  191|      2|        OVS_CONSTRUCTOR(init_this_module_##MODULE) {                    \
  192|      2|            vlog_insert_module(&this_module.list);                      \
  193|      2|        }                                                               \

util.c:bitmap_set1:
   96|  1.71M|{
   97|  1.71M|    *bitmap_unit__(bitmap, offset) |= bitmap_bit__(offset);
   98|  1.71M|    return bitmap;
   99|  1.71M|}
util.c:bitmap_bit__:
   32|  2.29M|{
   33|       |    return 1UL << (offset % BITMAP_ULONG_BITS);
  ------------------
  |  |  423|  2.29M|#define BITMAP_ULONG_BITS (sizeof(unsigned long) * CHAR_BIT)
  ------------------
   34|  2.29M|}
util.c:bitmap_unit__:
   26|  2.29M|{
   27|  2.29M|    return CONST_CAST(unsigned long *, &bitmap[offset / BITMAP_ULONG_BITS]);
  ------------------
  |  |   85|  2.29M|    (BUILD_ASSERT_TYPE(POINTER, TYPE),                          \
  |  |  ------------------
  |  |  |  |   80|  2.29M|    ((void) sizeof ((int) ((POINTER) == (TYPE) (POINTER))))
  |  |  ------------------
  |  |   86|  2.29M|     (TYPE) (POINTER))
  ------------------
   28|  2.29M|}
util.c:bitmap_is_set:
   90|   573k|{
   91|   573k|    return (*bitmap_unit__(bitmap, offset) & bitmap_bit__(offset)) != 0;
   92|   573k|}

bundle_check:
  111|    854|{
  112|    854|    static struct vlog_rate_limit rl = VLOG_RATE_LIMIT_INIT(1, 5);
  ------------------
  |  |  110|    854|        {                                                                 \
  |  |  111|    854|            TOKEN_BUCKET_INIT(RATE, OVS_SAT_MUL(BURST, VLOG_MSG_TOKENS)), \
  |  |  ------------------
  |  |  |  |   37|  3.41k|#define TOKEN_BUCKET_INIT(RATE, BURST) { RATE, BURST, 0, LLONG_MIN }
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (37:48): [True: 0, Folded]
  |  |  |  |  |  Branch (37:48): [Folded, False: 854]
  |  |  |  |  ------------------
  |  |  ------------------
  |  |  112|    854|            0,                              /* first_dropped */           \
  |  |  113|    854|            0,                              /* last_dropped */            \
  |  |  114|    854|            0,                              /* n_dropped */               \
  |  |  115|    854|            OVS_MUTEX_INITIALIZER           /* mutex */                   \
  |  |  ------------------
  |  |  |  |   45|    854|#define OVS_MUTEX_INITIALIZER { PTHREAD_ERRORCHECK_MUTEX_INITIALIZER_NP, \
  |  |  |  |   46|    854|                                "<unlocked>" }
  |  |  ------------------
  |  |  116|    854|        }
  ------------------
  113|    854|    size_t i;
  114|       |
  115|    854|    if (bundle->dst.field) {
  ------------------
  |  Branch (115:9): [True: 3, False: 851]
  ------------------
  116|      3|        enum ofperr error = mf_check_dst(&bundle->dst, match);
  117|      3|        if (error) {
  ------------------
  |  Branch (117:13): [True: 0, False: 3]
  ------------------
  118|      0|            return error;
  119|      0|        }
  120|      3|    }
  121|       |
  122|  47.2k|    for (i = 0; i < bundle->n_members; i++) {
  ------------------
  |  Branch (122:17): [True: 46.3k, False: 847]
  ------------------
  123|  46.3k|        ofp_port_t ofp_port = bundle->members[i];
  124|       |
  125|  46.3k|        if (ofp_port != OFPP_NONE) {
  ------------------
  |  |   47|  46.3k|#define OFPP_NONE       OFP_PORT_C(0xffff) /* Not associated with any port. */
  |  |  ------------------
  |  |  |  |  157|  46.3k|#define OFP_PORT_C(X) ((OVS_FORCE ofp_port_t) (X))
  |  |  ------------------
  ------------------
  |  Branch (125:13): [True: 46.0k, False: 374]
  ------------------
  126|  46.0k|            enum ofperr error = ofpact_check_output_port(ofp_port, max_ports);
  127|  46.0k|            if (error) {
  ------------------
  |  Branch (127:17): [True: 6, False: 46.0k]
  ------------------
  128|      6|                VLOG_WARN_RL(&rl, "invalid member %"PRIu32, ofp_port);
  ------------------
  |  |  224|      6|#define VLOG_WARN_RL(RL, ...) VLOG_RL(RL, VLL_WARN, __VA_ARGS__)
  |  |  ------------------
  |  |  |  |  287|      6|    do {                                                                \
  |  |  |  |  288|      6|        enum vlog_level level__ = LEVEL;                                \
  |  |  |  |  289|      6|        if (this_module.min_level >= level__) {                         \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (289:13): [True: 0, False: 6]
  |  |  |  |  ------------------
  |  |  |  |  290|      0|            vlog_rate_limit(&this_module, level__, RL, __VA_ARGS__);    \
  |  |  |  |  291|      0|        }                                                               \
  |  |  |  |  292|      6|    } while (0)
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (292:14): [Folded, False: 6]
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  129|      6|                return error;
  130|      6|            }
  131|  46.0k|        }
  132|       |        /* Controller members are unsupported due to the lack of a max_len
  133|       |         * argument. This may or may not change in the future.  There doesn't
  134|       |         * seem to be a real-world use-case for supporting it. */
  135|  46.3k|        if (ofp_port == OFPP_CONTROLLER) {
  ------------------
  |  |   45|  46.3k|#define OFPP_CONTROLLER OFP_PORT_C(0xfffd) /* Send to controller. */
  |  |  ------------------
  |  |  |  |  157|  46.3k|#define OFP_PORT_C(X) ((OVS_FORCE ofp_port_t) (X))
  |  |  ------------------
  ------------------
  |  Branch (135:13): [True: 1, False: 46.3k]
  ------------------
  136|      1|            VLOG_WARN_RL(&rl, "unsupported controller member");
  ------------------
  |  |  224|      1|#define VLOG_WARN_RL(RL, ...) VLOG_RL(RL, VLL_WARN, __VA_ARGS__)
  |  |  ------------------
  |  |  |  |  287|      1|    do {                                                                \
  |  |  |  |  288|      1|        enum vlog_level level__ = LEVEL;                                \
  |  |  |  |  289|      1|        if (this_module.min_level >= level__) {                         \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (289:13): [True: 0, False: 1]
  |  |  |  |  ------------------
  |  |  |  |  290|      0|            vlog_rate_limit(&this_module, level__, RL, __VA_ARGS__);    \
  |  |  |  |  291|      0|        }                                                               \
  |  |  |  |  292|      1|    } while (0)
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (292:14): [Folded, False: 1]
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  137|      1|            return OFPERR_OFPBAC_BAD_OUT_PORT;
  138|      1|        }
  139|  46.3k|    }
  140|       |
  141|    847|    return 0;
  142|    854|}
bundle_parse:
  248|  2.19k|{
  249|  2.19k|    char *fields, *basis, *algorithm, *member_type, *member_delim;
  250|  2.19k|    char *tokstr, *save_ptr;
  251|  2.19k|    char *error;
  252|       |
  253|  2.19k|    save_ptr = NULL;
  254|  2.19k|    tokstr = xstrdup(s);
  255|  2.19k|    fields = strtok_r(tokstr, ", ", &save_ptr);
  256|  2.19k|    basis = strtok_r(NULL, ", ", &save_ptr);
  257|  2.19k|    algorithm = strtok_r(NULL, ", ", &save_ptr);
  258|  2.19k|    member_type = strtok_r(NULL, ", ", &save_ptr);
  259|  2.19k|    member_delim = strtok_r(NULL, ": ", &save_ptr);
  260|       |
  261|  2.19k|    error = bundle_parse__(s, port_map,
  262|  2.19k|                           &save_ptr, fields, basis, algorithm, member_type,
  263|  2.19k|                           NULL, member_delim, ofpacts);
  264|  2.19k|    free(tokstr);
  265|       |
  266|  2.19k|    return error;
  267|  2.19k|}
bundle_parse_load:
  277|     10|{
  278|     10|    char *fields, *basis, *algorithm, *member_type, *dst, *member_delim;
  279|     10|    char *tokstr, *save_ptr;
  280|     10|    char *error;
  281|       |
  282|     10|    save_ptr = NULL;
  283|     10|    tokstr = xstrdup(s);
  284|     10|    fields = strtok_r(tokstr, ", ", &save_ptr);
  285|     10|    basis = strtok_r(NULL, ", ", &save_ptr);
  286|     10|    algorithm = strtok_r(NULL, ", ", &save_ptr);
  287|     10|    member_type = strtok_r(NULL, ", ", &save_ptr);
  288|     10|    dst = strtok_r(NULL, ", ", &save_ptr);
  289|     10|    member_delim = strtok_r(NULL, ": ", &save_ptr);
  290|       |
  291|     10|    error = bundle_parse__(s, port_map,
  292|     10|                           &save_ptr, fields, basis, algorithm, member_type,
  293|     10|                           dst, member_delim, ofpacts);
  294|       |
  295|     10|    free(tokstr);
  296|       |
  297|     10|    return error;
  298|     10|}
bundle.c:bundle_parse__:
  155|  2.20k|{
  156|  2.20k|    struct ofpact_bundle *bundle;
  157|       |
  158|  2.20k|    if (!member_delim) {
  ------------------
  |  Branch (158:9): [True: 8, False: 2.19k]
  ------------------
  159|      8|        return xasprintf("%s: not enough arguments to bundle action", s);
  160|      8|    }
  161|       |
  162|  2.19k|    if (strcasecmp(member_delim, "members")
  ------------------
  |  Branch (162:9): [True: 2.08k, False: 108]
  ------------------
  163|  2.08k|        && strcasecmp(member_delim, "slaves")) {
  ------------------
  |  Branch (163:12): [True: 34, False: 2.05k]
  ------------------
  164|     34|        return xasprintf("%s: missing member delimiter, expected `members', "
  165|     34|                         "got `%s'", s, member_delim);
  166|     34|    }
  167|       |
  168|  2.16k|    bundle = ofpact_put_BUNDLE(ofpacts);
  169|       |
  170|  65.9k|    for (;;) {
  171|  65.9k|        ofp_port_t member_port;
  172|  65.9k|        char *member;
  173|       |
  174|  65.9k|        member = strtok_r(NULL, ", []", save_ptr);
  175|  65.9k|        if (!member || bundle->n_members >= BUNDLE_MAX_MEMBERS) {
  ------------------
  |  |   43|  63.7k|#define BUNDLE_MAX_MEMBERS 2048
  ------------------
  |  Branch (175:13): [True: 2.14k, False: 63.7k]
  |  Branch (175:24): [True: 18, False: 63.7k]
  ------------------
  176|  2.15k|            break;
  177|  2.15k|        }
  178|       |
  179|  63.7k|        if (!ofputil_port_from_string(member, port_map, &member_port)) {
  ------------------
  |  Branch (179:13): [True: 3, False: 63.7k]
  ------------------
  180|      3|            return xasprintf("%s: bad port number", member);
  181|      3|        }
  182|  63.7k|        ofpbuf_put(ofpacts, &member_port, sizeof member_port);
  183|       |
  184|  63.7k|        bundle = ofpacts->header;
  185|  63.7k|        bundle->n_members++;
  186|  63.7k|    }
  187|       |
  188|  2.15k|    if (ofpbuf_oversized(ofpacts)) {
  ------------------
  |  Branch (188:9): [True: 0, False: 2.15k]
  ------------------
  189|      0|        return xasprintf("input too big");
  190|      0|    }
  191|       |
  192|  2.15k|    ofpact_finish_BUNDLE(ofpacts, &bundle);
  193|  2.15k|    bundle->basis = atoi(basis);
  194|       |
  195|  2.15k|    if (!strcasecmp(fields, "eth_src")) {
  ------------------
  |  Branch (195:9): [True: 56, False: 2.10k]
  ------------------
  196|     56|        bundle->fields = NX_HASH_FIELDS_ETH_SRC;
  197|  2.10k|    } else if (!strcasecmp(fields, "symmetric_l4")) {
  ------------------
  |  Branch (197:16): [True: 400, False: 1.70k]
  ------------------
  198|    400|        bundle->fields = NX_HASH_FIELDS_SYMMETRIC_L4;
  199|  1.70k|    } else if (!strcasecmp(fields, "symmetric_l3l4")) {
  ------------------
  |  Branch (199:16): [True: 128, False: 1.57k]
  ------------------
  200|    128|        bundle->fields = NX_HASH_FIELDS_SYMMETRIC_L3L4;
  201|  1.57k|    } else if (!strcasecmp(fields, "symmetric_l3l4+udp")) {
  ------------------
  |  Branch (201:16): [True: 303, False: 1.27k]
  ------------------
  202|    303|        bundle->fields = NX_HASH_FIELDS_SYMMETRIC_L3L4_UDP;
  203|  1.27k|    } else if (!strcasecmp(fields, "nw_src")) {
  ------------------
  |  Branch (203:16): [True: 254, False: 1.01k]
  ------------------
  204|    254|        bundle->fields = NX_HASH_FIELDS_NW_SRC;
  205|  1.01k|    } else if (!strcasecmp(fields, "nw_dst")) {
  ------------------
  |  Branch (205:16): [True: 440, False: 577]
  ------------------
  206|    440|        bundle->fields = NX_HASH_FIELDS_NW_DST;
  207|    577|    } else if (!strcasecmp(fields, "symmetric_l3")) {
  ------------------
  |  Branch (207:16): [True: 315, False: 262]
  ------------------
  208|    315|        bundle->fields = NX_HASH_FIELDS_SYMMETRIC_L3;
  209|    315|    } else {
  210|    262|        return xasprintf("%s: unknown fields `%s'", s, fields);
  211|    262|    }
  212|       |
  213|  1.89k|    if (!strcasecmp(algorithm, "active_backup")) {
  ------------------
  |  Branch (213:9): [True: 594, False: 1.30k]
  ------------------
  214|    594|        bundle->algorithm = NX_BD_ALG_ACTIVE_BACKUP;
  215|  1.30k|    } else if (!strcasecmp(algorithm, "hrw")) {
  ------------------
  |  Branch (215:16): [True: 1.17k, False: 123]
  ------------------
  216|  1.17k|        bundle->algorithm = NX_BD_ALG_HRW;
  217|  1.17k|    } else {
  218|    123|        return xasprintf("%s: unknown algorithm `%s'", s, algorithm);
  219|    123|    }
  220|       |
  221|  1.77k|    if (strcasecmp(member_type, "ofport")) {
  ------------------
  |  Branch (221:9): [True: 53, False: 1.72k]
  ------------------
  222|     53|        return xasprintf("%s: unknown member_type `%s'", s, member_type);
  223|     53|    }
  224|       |
  225|  1.72k|    if (dst) {
  ------------------
  |  Branch (225:9): [True: 5, False: 1.71k]
  ------------------
  226|      5|        char *error = mf_parse_subfield(&bundle->dst, dst);
  227|      5|        if (error) {
  ------------------
  |  Branch (227:13): [True: 1, False: 4]
  ------------------
  228|      1|            return error;
  229|      1|        }
  230|       |
  231|      4|        if (!mf_nxm_header(bundle->dst.field->id)) {
  ------------------
  |  Branch (231:13): [True: 1, False: 3]
  ------------------
  232|      1|            return xasprintf("%s: experimenter OXM field '%s' not supported",
  233|      1|                             s, dst);
  234|      1|        }
  235|      4|    }
  236|       |
  237|  1.71k|    return NULL;
  238|  1.72k|}

ofp-flow.c:htonll:
   29|  10.7k|{
   30|  10.7k|    return htonl(1) == 1 ? n : ((uint64_t) htonl(n) << 32) | htonl(n >> 32);
  ------------------
  |  Branch (30:12): [True: 0, False: 10.7k]
  ------------------
   31|  10.7k|}
ofp-flow.c:be32_to_be16:
  135|    156|static inline ovs_be16 be32_to_be16(ovs_be32 x) { return x >> 16; }
ofp-match.c:be32_to_be16:
  135|    116|static inline ovs_be16 be32_to_be16(ovs_be32 x) { return x >> 16; }
ofp-parse.c:htonll:
   29|  2.99k|{
   30|  2.99k|    return htonl(1) == 1 ? n : ((uint64_t) htonl(n) << 32) | htonl(n >> 32);
  ------------------
  |  Branch (30:12): [True: 0, False: 2.99k]
  ------------------
   31|  2.99k|}
util.c:htonll:
   29|  73.5k|{
   30|  73.5k|    return htonl(1) == 1 ? n : ((uint64_t) htonl(n) << 32) | htonl(n >> 32);
  ------------------
  |  Branch (30:12): [True: 0, False: 73.5k]
  ------------------
   31|  73.5k|}
util.c:ntohll:
   35|  73.5k|{
   36|  73.5k|    return htonl(1) == 1 ? n : ((uint64_t) ntohl(n) << 32) | ntohl(n >> 32);
  ------------------
  |  Branch (36:12): [True: 0, False: 73.5k]
  ------------------
   37|  73.5k|}
flow.c:be32_to_be16:
  135|     50|static inline ovs_be16 be32_to_be16(ovs_be32 x) { return x >> 16; }
meta-flow.c:be32_to_be16:
  135|  8.15k|static inline ovs_be16 be32_to_be16(ovs_be32 x) { return x >> 16; }
meta-flow.c:hton128:
   48|  10.9k|{
   49|  10.9k|    ovs_be128 dst;
   50|       |
   51|  10.9k|    dst.be64.hi = htonll(src.u64.hi);
   52|  10.9k|    dst.be64.lo = htonll(src.u64.lo);
   53|  10.9k|    return dst;
   54|  10.9k|}
meta-flow.c:htonll:
   29|  38.6k|{
   30|  38.6k|    return htonl(1) == 1 ? n : ((uint64_t) htonl(n) << 32) | htonl(n >> 32);
  ------------------
  |  Branch (30:12): [True: 0, False: 38.6k]
  ------------------
   31|  38.6k|}
meta-flow.c:ntoh128:
   58|  11.2k|{
   59|  11.2k|    ovs_u128 dst;
   60|       |
   61|  11.2k|    dst.u64.hi = ntohll(src.be64.hi);
   62|  11.2k|    dst.u64.lo = ntohll(src.be64.lo);
   63|  11.2k|    return dst;
   64|  11.2k|}
meta-flow.c:ntohll:
   35|  41.8k|{
   36|  41.8k|    return htonl(1) == 1 ? n : ((uint64_t) ntohl(n) << 32) | ntohl(n >> 32);
  ------------------
  |  Branch (36:12): [True: 0, False: 41.8k]
  ------------------
   37|  41.8k|}
nx-match.c:be32_to_be16:
  135|    239|static inline ovs_be16 be32_to_be16(ovs_be32 x) { return x >> 16; }
nx-match.c:hton128:
   48|  8.21k|{
   49|  8.21k|    ovs_be128 dst;
   50|       |
   51|  8.21k|    dst.be64.hi = htonll(src.u64.hi);
   52|  8.21k|    dst.be64.lo = htonll(src.u64.lo);
   53|  8.21k|    return dst;
   54|  8.21k|}
nx-match.c:htonll:
   29|  40.1k|{
   30|  40.1k|    return htonl(1) == 1 ? n : ((uint64_t) htonl(n) << 32) | htonl(n >> 32);
  ------------------
  |  Branch (30:12): [True: 0, False: 40.1k]
  ------------------
   31|  40.1k|}
ofp-actions.c:be32_to_be16:
  135|  14.6k|static inline ovs_be16 be32_to_be16(ovs_be32 x) { return x >> 16; }
ofp-actions.c:htonll:
   29|  79.9k|{
   30|  79.9k|    return htonl(1) == 1 ? n : ((uint64_t) htonl(n) << 32) | htonl(n >> 32);
  ------------------
  |  Branch (30:12): [True: 0, False: 79.9k]
  ------------------
   31|  79.9k|}
learn.c:htonll:
   29|  1.94k|{
   30|  1.94k|    return htonl(1) == 1 ? n : ((uint64_t) htonl(n) << 32) | htonl(n >> 32);
  ------------------
  |  Branch (30:12): [True: 0, False: 1.94k]
  ------------------
   31|  1.94k|}

coverage_counter_register:
   53|    258|{
   54|    258|    if (n_coverage_counters >= allocated_coverage_counters) {
  ------------------
  |  Branch (54:9): [True: 18, False: 240]
  ------------------
   55|     18|        coverage_counters = x2nrealloc(coverage_counters,
   56|     18|                                       &allocated_coverage_counters,
   57|     18|                                       sizeof(struct coverage_counter*));
   58|     18|    }
   59|    258|    coverage_counters[n_coverage_counters++] = counter;
   60|    258|}

poll-loop.c:poll_create_node_init_coverage:
   78|      2|        OVS_CONSTRUCTOR(COUNTER##_init_coverage) {                      \
   79|      2|            coverage_counter_register(&counter_##COUNTER);              \
   80|      2|        }
poll-loop.c:poll_zero_timeout_init_coverage:
   78|      2|        OVS_CONSTRUCTOR(COUNTER##_init_coverage) {                      \
   79|      2|            coverage_counter_register(&counter_##COUNTER);              \
   80|      2|        }
seq.c:seq_change_init_coverage:
   78|      2|        OVS_CONSTRUCTOR(COUNTER##_init_coverage) {                      \
   79|      2|            coverage_counter_register(&counter_##COUNTER);              \
   80|      2|        }
timeval.c:long_poll_interval_init_coverage:
   78|      2|        OVS_CONSTRUCTOR(COUNTER##_init_coverage) {                      \
   79|      2|            coverage_counter_register(&counter_##COUNTER);              \
   80|      2|        }
unixctl.c:unixctl_received_init_coverage:
   78|      2|        OVS_CONSTRUCTOR(COUNTER##_init_coverage) {                      \
   79|      2|            coverage_counter_register(&counter_##COUNTER);              \
   80|      2|        }
unixctl.c:unixctl_replied_init_coverage:
   78|      2|        OVS_CONSTRUCTOR(COUNTER##_init_coverage) {                      \
   79|      2|            coverage_counter_register(&counter_##COUNTER);              \
   80|      2|        }
util.c:util_xalloc_init_coverage:
   78|      2|        OVS_CONSTRUCTOR(COUNTER##_init_coverage) {                      \
   79|      2|            coverage_counter_register(&counter_##COUNTER);              \
   80|      2|        }
util.c:util_xalloc_add:
   72|   699k|        {                                                               \
   73|   699k|            *counter_##COUNTER##_get() += n;                            \
   74|   699k|        }                                                               \
flow.c:flow_extract_init_coverage:
   78|      2|        OVS_CONSTRUCTOR(COUNTER##_init_coverage) {                      \
   79|      2|            coverage_counter_register(&counter_##COUNTER);              \
   80|      2|        }
flow.c:miniflow_extract_ipv4_pkt_len_error_init_coverage:
   78|      2|        OVS_CONSTRUCTOR(COUNTER##_init_coverage) {                      \
   79|      2|            coverage_counter_register(&counter_##COUNTER);              \
   80|      2|        }
flow.c:miniflow_extract_ipv4_pkt_too_short_init_coverage:
   78|      2|        OVS_CONSTRUCTOR(COUNTER##_init_coverage) {                      \
   79|      2|            coverage_counter_register(&counter_##COUNTER);              \
   80|      2|        }
flow.c:miniflow_extract_ipv6_pkt_len_error_init_coverage:
   78|      2|        OVS_CONSTRUCTOR(COUNTER##_init_coverage) {                      \
   79|      2|            coverage_counter_register(&counter_##COUNTER);              \
   80|      2|        }
flow.c:miniflow_extract_ipv6_pkt_too_short_init_coverage:
   78|      2|        OVS_CONSTRUCTOR(COUNTER##_init_coverage) {                      \
   79|      2|            coverage_counter_register(&counter_##COUNTER);              \
   80|      2|        }
flow.c:miniflow_malloc_init_coverage:
   78|      2|        OVS_CONSTRUCTOR(COUNTER##_init_coverage) {                      \
   79|      2|            coverage_counter_register(&counter_##COUNTER);              \
   80|      2|        }
flow.c:miniflow_malloc_add:
   72|  9.28k|        {                                                               \
   73|  9.28k|            *counter_##COUNTER##_get() += n;                            \
   74|  9.28k|        }                                                               \
hmap.c:hmap_pathological_init_coverage:
   78|      2|        OVS_CONSTRUCTOR(COUNTER##_init_coverage) {                      \
   79|      2|            coverage_counter_register(&counter_##COUNTER);              \
   80|      2|        }
hmap.c:hmap_expand_init_coverage:
   78|      2|        OVS_CONSTRUCTOR(COUNTER##_init_coverage) {                      \
   79|      2|            coverage_counter_register(&counter_##COUNTER);              \
   80|      2|        }
hmap.c:hmap_shrink_init_coverage:
   78|      2|        OVS_CONSTRUCTOR(COUNTER##_init_coverage) {                      \
   79|      2|            coverage_counter_register(&counter_##COUNTER);              \
   80|      2|        }
hmap.c:hmap_reserve_init_coverage:
   78|      2|        OVS_CONSTRUCTOR(COUNTER##_init_coverage) {                      \
   79|      2|            coverage_counter_register(&counter_##COUNTER);              \
   80|      2|        }
hmap.c:hmap_expand_add:
   72|     34|        {                                                               \
   73|     34|            *counter_##COUNTER##_get() += n;                            \
   74|     34|        }                                                               \
hmap.c:hmap_pathological_add:
   72|     11|        {                                                               \
   73|     11|            *counter_##COUNTER##_get() += n;                            \
   74|     11|        }                                                               \
jsonrpc.c:jsonrpc_recv_incomplete_init_coverage:
   78|      2|        OVS_CONSTRUCTOR(COUNTER##_init_coverage) {                      \
   79|      2|            coverage_counter_register(&counter_##COUNTER);              \
   80|      2|        }
netdev.c:netdev_received_init_coverage:
   78|      2|        OVS_CONSTRUCTOR(COUNTER##_init_coverage) {                      \
   79|      2|            coverage_counter_register(&counter_##COUNTER);              \
   80|      2|        }
netdev.c:netdev_sent_init_coverage:
   78|      2|        OVS_CONSTRUCTOR(COUNTER##_init_coverage) {                      \
   79|      2|            coverage_counter_register(&counter_##COUNTER);              \
   80|      2|        }
netdev.c:netdev_add_router_init_coverage:
   78|      2|        OVS_CONSTRUCTOR(COUNTER##_init_coverage) {                      \
   79|      2|            coverage_counter_register(&counter_##COUNTER);              \
   80|      2|        }
netdev.c:netdev_get_stats_init_coverage:
   78|      2|        OVS_CONSTRUCTOR(COUNTER##_init_coverage) {                      \
   79|      2|            coverage_counter_register(&counter_##COUNTER);              \
   80|      2|        }
netdev.c:netdev_push_header_drops_init_coverage:
   78|      2|        OVS_CONSTRUCTOR(COUNTER##_init_coverage) {                      \
   79|      2|            coverage_counter_register(&counter_##COUNTER);              \
   80|      2|        }
netdev.c:netdev_soft_seg_good_init_coverage:
   78|      2|        OVS_CONSTRUCTOR(COUNTER##_init_coverage) {                      \
   79|      2|            coverage_counter_register(&counter_##COUNTER);              \
   80|      2|        }
netdev.c:netdev_partial_seg_good_init_coverage:
   78|      2|        OVS_CONSTRUCTOR(COUNTER##_init_coverage) {                      \
   79|      2|            coverage_counter_register(&counter_##COUNTER);              \
   80|      2|        }
stream.c:pstream_open_init_coverage:
   78|      2|        OVS_CONSTRUCTOR(COUNTER##_init_coverage) {                      \
   79|      2|            coverage_counter_register(&counter_##COUNTER);              \
   80|      2|        }
stream.c:stream_open_init_coverage:
   78|      2|        OVS_CONSTRUCTOR(COUNTER##_init_coverage) {                      \
   79|      2|            coverage_counter_register(&counter_##COUNTER);              \
   80|      2|        }
netdev-linux.c:netdev_set_policing_init_coverage:
   78|      2|        OVS_CONSTRUCTOR(COUNTER##_init_coverage) {                      \
   79|      2|            coverage_counter_register(&counter_##COUNTER);              \
   80|      2|        }
netdev-linux.c:netdev_arp_lookup_init_coverage:
   78|      2|        OVS_CONSTRUCTOR(COUNTER##_init_coverage) {                      \
   79|      2|            coverage_counter_register(&counter_##COUNTER);              \
   80|      2|        }
netdev-linux.c:netdev_get_ifindex_init_coverage:
   78|      2|        OVS_CONSTRUCTOR(COUNTER##_init_coverage) {                      \
   79|      2|            coverage_counter_register(&counter_##COUNTER);              \
   80|      2|        }
netdev-linux.c:netdev_get_hwaddr_init_coverage:
   78|      2|        OVS_CONSTRUCTOR(COUNTER##_init_coverage) {                      \
   79|      2|            coverage_counter_register(&counter_##COUNTER);              \
   80|      2|        }
netdev-linux.c:netdev_set_hwaddr_init_coverage:
   78|      2|        OVS_CONSTRUCTOR(COUNTER##_init_coverage) {                      \
   79|      2|            coverage_counter_register(&counter_##COUNTER);              \
   80|      2|        }
netdev-linux.c:netdev_get_ethtool_init_coverage:
   78|      2|        OVS_CONSTRUCTOR(COUNTER##_init_coverage) {                      \
   79|      2|            coverage_counter_register(&counter_##COUNTER);              \
   80|      2|        }
netdev-linux.c:netdev_set_ethtool_init_coverage:
   78|      2|        OVS_CONSTRUCTOR(COUNTER##_init_coverage) {                      \
   79|      2|            coverage_counter_register(&counter_##COUNTER);              \
   80|      2|        }
netdev-linux.c:netdev_linux_invalid_l4_csum_init_coverage:
   78|      2|        OVS_CONSTRUCTOR(COUNTER##_init_coverage) {                      \
   79|      2|            coverage_counter_register(&counter_##COUNTER);              \
   80|      2|        }
netdev-linux.c:netdev_linux_unknown_l4_csum_init_coverage:
   78|      2|        OVS_CONSTRUCTOR(COUNTER##_init_coverage) {                      \
   79|      2|            coverage_counter_register(&counter_##COUNTER);              \
   80|      2|        }
netlink-socket.c:netlink_overflow_init_coverage:
   78|      2|        OVS_CONSTRUCTOR(COUNTER##_init_coverage) {                      \
   79|      2|            coverage_counter_register(&counter_##COUNTER);              \
   80|      2|        }
netlink-socket.c:netlink_received_init_coverage:
   78|      2|        OVS_CONSTRUCTOR(COUNTER##_init_coverage) {                      \
   79|      2|            coverage_counter_register(&counter_##COUNTER);              \
   80|      2|        }
netlink-socket.c:netlink_recv_jumbo_init_coverage:
   78|      2|        OVS_CONSTRUCTOR(COUNTER##_init_coverage) {                      \
   79|      2|            coverage_counter_register(&counter_##COUNTER);              \
   80|      2|        }
netlink-socket.c:netlink_sent_init_coverage:
   78|      2|        OVS_CONSTRUCTOR(COUNTER##_init_coverage) {                      \
   79|      2|            coverage_counter_register(&counter_##COUNTER);              \
   80|      2|        }
route-table.c:route_table_dump_init_coverage:
   78|      2|        OVS_CONSTRUCTOR(COUNTER##_init_coverage) {                      \
   79|      2|            coverage_counter_register(&counter_##COUNTER);              \
   80|      2|        }
tc.c:tc_netlink_malformed_reply_init_coverage:
   78|      2|        OVS_CONSTRUCTOR(COUNTER##_init_coverage) {                      \
   79|      2|            coverage_counter_register(&counter_##COUNTER);              \
   80|      2|        }
ccmap.c:ccmap_expand_init_coverage:
   78|      2|        OVS_CONSTRUCTOR(COUNTER##_init_coverage) {                      \
   79|      2|            coverage_counter_register(&counter_##COUNTER);              \
   80|      2|        }
ccmap.c:ccmap_shrink_init_coverage:
   78|      2|        OVS_CONSTRUCTOR(COUNTER##_init_coverage) {                      \
   79|      2|            coverage_counter_register(&counter_##COUNTER);              \
   80|      2|        }
cmap.c:cmap_expand_init_coverage:
   78|      2|        OVS_CONSTRUCTOR(COUNTER##_init_coverage) {                      \
   79|      2|            coverage_counter_register(&counter_##COUNTER);              \
   80|      2|        }
cmap.c:cmap_shrink_init_coverage:
   78|      2|        OVS_CONSTRUCTOR(COUNTER##_init_coverage) {                      \
   79|      2|            coverage_counter_register(&counter_##COUNTER);              \
   80|      2|        }
dpif.c:dpif_destroy_init_coverage:
   78|      2|        OVS_CONSTRUCTOR(COUNTER##_init_coverage) {                      \
   79|      2|            coverage_counter_register(&counter_##COUNTER);              \
   80|      2|        }
dpif.c:dpif_execute_init_coverage:
   78|      2|        OVS_CONSTRUCTOR(COUNTER##_init_coverage) {                      \
   79|      2|            coverage_counter_register(&counter_##COUNTER);              \
   80|      2|        }
dpif.c:dpif_execute_error_init_coverage:
   78|      2|        OVS_CONSTRUCTOR(COUNTER##_init_coverage) {                      \
   79|      2|            coverage_counter_register(&counter_##COUNTER);              \
   80|      2|        }
dpif.c:dpif_execute_with_help_init_coverage:
   78|      2|        OVS_CONSTRUCTOR(COUNTER##_init_coverage) {                      \
   79|      2|            coverage_counter_register(&counter_##COUNTER);              \
   80|      2|        }
dpif.c:dpif_flow_del_init_coverage:
   78|      2|        OVS_CONSTRUCTOR(COUNTER##_init_coverage) {                      \
   79|      2|            coverage_counter_register(&counter_##COUNTER);              \
   80|      2|        }
dpif.c:dpif_flow_del_error_init_coverage:
   78|      2|        OVS_CONSTRUCTOR(COUNTER##_init_coverage) {                      \
   79|      2|            coverage_counter_register(&counter_##COUNTER);              \
   80|      2|        }
dpif.c:dpif_flow_flush_init_coverage:
   78|      2|        OVS_CONSTRUCTOR(COUNTER##_init_coverage) {                      \
   79|      2|            coverage_counter_register(&counter_##COUNTER);              \
   80|      2|        }
dpif.c:dpif_flow_get_init_coverage:
   78|      2|        OVS_CONSTRUCTOR(COUNTER##_init_coverage) {                      \
   79|      2|            coverage_counter_register(&counter_##COUNTER);              \
   80|      2|        }
dpif.c:dpif_flow_get_error_init_coverage:
   78|      2|        OVS_CONSTRUCTOR(COUNTER##_init_coverage) {                      \
   79|      2|            coverage_counter_register(&counter_##COUNTER);              \
   80|      2|        }
dpif.c:dpif_flow_put_init_coverage:
   78|      2|        OVS_CONSTRUCTOR(COUNTER##_init_coverage) {                      \
   79|      2|            coverage_counter_register(&counter_##COUNTER);              \
   80|      2|        }
dpif.c:dpif_flow_put_error_init_coverage:
   78|      2|        OVS_CONSTRUCTOR(COUNTER##_init_coverage) {                      \
   79|      2|            coverage_counter_register(&counter_##COUNTER);              \
   80|      2|        }
dpif.c:dpif_meter_del_init_coverage:
   78|      2|        OVS_CONSTRUCTOR(COUNTER##_init_coverage) {                      \
   79|      2|            coverage_counter_register(&counter_##COUNTER);              \
   80|      2|        }
dpif.c:dpif_meter_get_init_coverage:
   78|      2|        OVS_CONSTRUCTOR(COUNTER##_init_coverage) {                      \
   79|      2|            coverage_counter_register(&counter_##COUNTER);              \
   80|      2|        }
dpif.c:dpif_meter_set_init_coverage:
   78|      2|        OVS_CONSTRUCTOR(COUNTER##_init_coverage) {                      \
   79|      2|            coverage_counter_register(&counter_##COUNTER);              \
   80|      2|        }
dpif.c:dpif_port_add_init_coverage:
   78|      2|        OVS_CONSTRUCTOR(COUNTER##_init_coverage) {                      \
   79|      2|            coverage_counter_register(&counter_##COUNTER);              \
   80|      2|        }
dpif.c:dpif_port_del_init_coverage:
   78|      2|        OVS_CONSTRUCTOR(COUNTER##_init_coverage) {                      \
   79|      2|            coverage_counter_register(&counter_##COUNTER);              \
   80|      2|        }
dpif.c:dpif_purge_init_coverage:
   78|      2|        OVS_CONSTRUCTOR(COUNTER##_init_coverage) {                      \
   79|      2|            coverage_counter_register(&counter_##COUNTER);              \
   80|      2|        }
lockfile.c:lockfile_lock_init_coverage:
   78|      2|        OVS_CONSTRUCTOR(COUNTER##_init_coverage) {                      \
   79|      2|            coverage_counter_register(&counter_##COUNTER);              \
   80|      2|        }
lockfile.c:lockfile_error_init_coverage:
   78|      2|        OVS_CONSTRUCTOR(COUNTER##_init_coverage) {                      \
   79|      2|            coverage_counter_register(&counter_##COUNTER);              \
   80|      2|        }
lockfile.c:lockfile_unlock_init_coverage:
   78|      2|        OVS_CONSTRUCTOR(COUNTER##_init_coverage) {                      \
   79|      2|            coverage_counter_register(&counter_##COUNTER);              \
   80|      2|        }
odp-execute.c:datapath_drop_sample_error_init_coverage:
   78|      2|        OVS_CONSTRUCTOR(COUNTER##_init_coverage) {                      \
   79|      2|            coverage_counter_register(&counter_##COUNTER);              \
   80|      2|        }
odp-execute.c:datapath_drop_nsh_decap_error_init_coverage:
   78|      2|        OVS_CONSTRUCTOR(COUNTER##_init_coverage) {                      \
   79|      2|            coverage_counter_register(&counter_##COUNTER);              \
   80|      2|        }
odp-execute.c:drop_action_of_pipeline_init_coverage:
   78|      2|        OVS_CONSTRUCTOR(COUNTER##_init_coverage) {                      \
   79|      2|            coverage_counter_register(&counter_##COUNTER);              \
   80|      2|        }
odp-execute.c:drop_action_bridge_not_found_init_coverage:
   78|      2|        OVS_CONSTRUCTOR(COUNTER##_init_coverage) {                      \
   79|      2|            coverage_counter_register(&counter_##COUNTER);              \
   80|      2|        }
odp-execute.c:drop_action_recursion_too_deep_init_coverage:
   78|      2|        OVS_CONSTRUCTOR(COUNTER##_init_coverage) {                      \
   79|      2|            coverage_counter_register(&counter_##COUNTER);              \
   80|      2|        }
odp-execute.c:drop_action_too_many_resubmit_init_coverage:
   78|      2|        OVS_CONSTRUCTOR(COUNTER##_init_coverage) {                      \
   79|      2|            coverage_counter_register(&counter_##COUNTER);              \
   80|      2|        }
odp-execute.c:drop_action_stack_too_deep_init_coverage:
   78|      2|        OVS_CONSTRUCTOR(COUNTER##_init_coverage) {                      \
   79|      2|            coverage_counter_register(&counter_##COUNTER);              \
   80|      2|        }
odp-execute.c:drop_action_no_recirculation_context_init_coverage:
   78|      2|        OVS_CONSTRUCTOR(COUNTER##_init_coverage) {                      \
   79|      2|            coverage_counter_register(&counter_##COUNTER);              \
   80|      2|        }
odp-execute.c:drop_action_recirculation_conflict_init_coverage:
   78|      2|        OVS_CONSTRUCTOR(COUNTER##_init_coverage) {                      \
   79|      2|            coverage_counter_register(&counter_##COUNTER);              \
   80|      2|        }
odp-execute.c:drop_action_too_many_mpls_labels_init_coverage:
   78|      2|        OVS_CONSTRUCTOR(COUNTER##_init_coverage) {                      \
   79|      2|            coverage_counter_register(&counter_##COUNTER);              \
   80|      2|        }
odp-execute.c:drop_action_invalid_tunnel_metadata_init_coverage:
   78|      2|        OVS_CONSTRUCTOR(COUNTER##_init_coverage) {                      \
   79|      2|            coverage_counter_register(&counter_##COUNTER);              \
   80|      2|        }
odp-execute.c:drop_action_unsupported_packet_type_init_coverage:
   78|      2|        OVS_CONSTRUCTOR(COUNTER##_init_coverage) {                      \
   79|      2|            coverage_counter_register(&counter_##COUNTER);              \
   80|      2|        }
odp-execute.c:drop_action_congestion_init_coverage:
   78|      2|        OVS_CONSTRUCTOR(COUNTER##_init_coverage) {                      \
   79|      2|            coverage_counter_register(&counter_##COUNTER);              \
   80|      2|        }
odp-execute.c:drop_action_forwarding_disabled_init_coverage:
   78|      2|        OVS_CONSTRUCTOR(COUNTER##_init_coverage) {                      \
   79|      2|            coverage_counter_register(&counter_##COUNTER);              \
   80|      2|        }
odp-execute.c:drop_action_tunnel_routing_failed_init_coverage:
   78|      2|        OVS_CONSTRUCTOR(COUNTER##_init_coverage) {                      \
   79|      2|            coverage_counter_register(&counter_##COUNTER);              \
   80|      2|        }
odp-execute.c:drop_action_tunnel_output_no_ethernet_init_coverage:
   78|      2|        OVS_CONSTRUCTOR(COUNTER##_init_coverage) {                      \
   79|      2|            coverage_counter_register(&counter_##COUNTER);              \
   80|      2|        }
odp-execute.c:drop_action_tunnel_neigh_cache_miss_init_coverage:
   78|      2|        OVS_CONSTRUCTOR(COUNTER##_init_coverage) {                      \
   79|      2|            coverage_counter_register(&counter_##COUNTER);              \
   80|      2|        }
odp-execute.c:drop_action_tunnel_header_build_failed_init_coverage:
   78|      2|        OVS_CONSTRUCTOR(COUNTER##_init_coverage) {                      \
   79|      2|            coverage_counter_register(&counter_##COUNTER);              \
   80|      2|        }
process.c:process_start_init_coverage:
   78|      2|        OVS_CONSTRUCTOR(COUNTER##_init_coverage) {                      \
   79|      2|            coverage_counter_register(&counter_##COUNTER);              \
   80|      2|        }
netdev-native-tnl.c:native_tnl_l3csum_checked_init_coverage:
   78|      2|        OVS_CONSTRUCTOR(COUNTER##_init_coverage) {                      \
   79|      2|            coverage_counter_register(&counter_##COUNTER);              \
   80|      2|        }
netdev-native-tnl.c:native_tnl_l3csum_err_init_coverage:
   78|      2|        OVS_CONSTRUCTOR(COUNTER##_init_coverage) {                      \
   79|      2|            coverage_counter_register(&counter_##COUNTER);              \
   80|      2|        }
netdev-native-tnl.c:native_tnl_l4csum_checked_init_coverage:
   78|      2|        OVS_CONSTRUCTOR(COUNTER##_init_coverage) {                      \
   79|      2|            coverage_counter_register(&counter_##COUNTER);              \
   80|      2|        }
netdev-native-tnl.c:native_tnl_l4csum_err_init_coverage:
   78|      2|        OVS_CONSTRUCTOR(COUNTER##_init_coverage) {                      \
   79|      2|            coverage_counter_register(&counter_##COUNTER);              \
   80|      2|        }
netlink-notifier.c:nln_changed_init_coverage:
   78|      2|        OVS_CONSTRUCTOR(COUNTER##_init_coverage) {                      \
   79|      2|            coverage_counter_register(&counter_##COUNTER);              \
   80|      2|        }
conntrack.c:conntrack_full_init_coverage:
   78|      2|        OVS_CONSTRUCTOR(COUNTER##_init_coverage) {                      \
   79|      2|            coverage_counter_register(&counter_##COUNTER);              \
   80|      2|        }
conntrack.c:conntrack_l3csum_checked_init_coverage:
   78|      2|        OVS_CONSTRUCTOR(COUNTER##_init_coverage) {                      \
   79|      2|            coverage_counter_register(&counter_##COUNTER);              \
   80|      2|        }
conntrack.c:conntrack_l3csum_err_init_coverage:
   78|      2|        OVS_CONSTRUCTOR(COUNTER##_init_coverage) {                      \
   79|      2|            coverage_counter_register(&counter_##COUNTER);              \
   80|      2|        }
conntrack.c:conntrack_l4csum_checked_init_coverage:
   78|      2|        OVS_CONSTRUCTOR(COUNTER##_init_coverage) {                      \
   79|      2|            coverage_counter_register(&counter_##COUNTER);              \
   80|      2|        }
conntrack.c:conntrack_l4csum_err_init_coverage:
   78|      2|        OVS_CONSTRUCTOR(COUNTER##_init_coverage) {                      \
   79|      2|            coverage_counter_register(&counter_##COUNTER);              \
   80|      2|        }
conntrack.c:conntrack_lookup_natted_miss_init_coverage:
   78|      2|        OVS_CONSTRUCTOR(COUNTER##_init_coverage) {                      \
   79|      2|            coverage_counter_register(&counter_##COUNTER);              \
   80|      2|        }
conntrack.c:conntrack_zone_full_init_coverage:
   78|      2|        OVS_CONSTRUCTOR(COUNTER##_init_coverage) {                      \
   79|      2|            coverage_counter_register(&counter_##COUNTER);              \
   80|      2|        }
dpif-netdev.c:datapath_drop_meter_init_coverage:
   78|      2|        OVS_CONSTRUCTOR(COUNTER##_init_coverage) {                      \
   79|      2|            coverage_counter_register(&counter_##COUNTER);              \
   80|      2|        }
dpif-netdev.c:datapath_drop_upcall_error_init_coverage:
   78|      2|        OVS_CONSTRUCTOR(COUNTER##_init_coverage) {                      \
   79|      2|            coverage_counter_register(&counter_##COUNTER);              \
   80|      2|        }
dpif-netdev.c:datapath_drop_lock_error_init_coverage:
   78|      2|        OVS_CONSTRUCTOR(COUNTER##_init_coverage) {                      \
   79|      2|            coverage_counter_register(&counter_##COUNTER);              \
   80|      2|        }
dpif-netdev.c:datapath_drop_userspace_action_error_init_coverage:
   78|      2|        OVS_CONSTRUCTOR(COUNTER##_init_coverage) {                      \
   79|      2|            coverage_counter_register(&counter_##COUNTER);              \
   80|      2|        }
dpif-netdev.c:datapath_drop_tunnel_push_error_init_coverage:
   78|      2|        OVS_CONSTRUCTOR(COUNTER##_init_coverage) {                      \
   79|      2|            coverage_counter_register(&counter_##COUNTER);              \
   80|      2|        }
dpif-netdev.c:datapath_drop_tunnel_pop_error_init_coverage:
   78|      2|        OVS_CONSTRUCTOR(COUNTER##_init_coverage) {                      \
   79|      2|            coverage_counter_register(&counter_##COUNTER);              \
   80|      2|        }
dpif-netdev.c:datapath_drop_recirc_error_init_coverage:
   78|      2|        OVS_CONSTRUCTOR(COUNTER##_init_coverage) {                      \
   79|      2|            coverage_counter_register(&counter_##COUNTER);              \
   80|      2|        }
dpif-netdev.c:datapath_drop_invalid_port_init_coverage:
   78|      2|        OVS_CONSTRUCTOR(COUNTER##_init_coverage) {                      \
   79|      2|            coverage_counter_register(&counter_##COUNTER);              \
   80|      2|        }
dpif-netdev.c:datapath_drop_invalid_bond_init_coverage:
   78|      2|        OVS_CONSTRUCTOR(COUNTER##_init_coverage) {                      \
   79|      2|            coverage_counter_register(&counter_##COUNTER);              \
   80|      2|        }
dpif-netdev.c:datapath_drop_invalid_tnl_port_init_coverage:
   78|      2|        OVS_CONSTRUCTOR(COUNTER##_init_coverage) {                      \
   79|      2|            coverage_counter_register(&counter_##COUNTER);              \
   80|      2|        }
dpif-netdev.c:datapath_drop_rx_invalid_packet_init_coverage:
   78|      2|        OVS_CONSTRUCTOR(COUNTER##_init_coverage) {                      \
   79|      2|            coverage_counter_register(&counter_##COUNTER);              \
   80|      2|        }
dpif-netdev.c:datapath_drop_hw_post_process_init_coverage:
   78|      2|        OVS_CONSTRUCTOR(COUNTER##_init_coverage) {                      \
   79|      2|            coverage_counter_register(&counter_##COUNTER);              \
   80|      2|        }
dpif-netdev.c:datapath_drop_hw_post_process_consumed_init_coverage:
   78|      2|        OVS_CONSTRUCTOR(COUNTER##_init_coverage) {                      \
   79|      2|            coverage_counter_register(&counter_##COUNTER);              \
   80|      2|        }
hindex.c:hindex_pathological_init_coverage:
   78|      2|        OVS_CONSTRUCTOR(COUNTER##_init_coverage) {                      \
   79|      2|            coverage_counter_register(&counter_##COUNTER);              \
   80|      2|        }
hindex.c:hindex_expand_init_coverage:
   78|      2|        OVS_CONSTRUCTOR(COUNTER##_init_coverage) {                      \
   79|      2|            coverage_counter_register(&counter_##COUNTER);              \
   80|      2|        }
hindex.c:hindex_shrink_init_coverage:
   78|      2|        OVS_CONSTRUCTOR(COUNTER##_init_coverage) {                      \
   79|      2|            coverage_counter_register(&counter_##COUNTER);              \
   80|      2|        }
hindex.c:hindex_reserve_init_coverage:
   78|      2|        OVS_CONSTRUCTOR(COUNTER##_init_coverage) {                      \
   79|      2|            coverage_counter_register(&counter_##COUNTER);              \
   80|      2|        }
ipf.c:ipf_stuck_frag_list_expired_init_coverage:
   78|      2|        OVS_CONSTRUCTOR(COUNTER##_init_coverage) {                      \
   79|      2|            coverage_counter_register(&counter_##COUNTER);              \
   80|      2|        }
ipf.c:ipf_stuck_frag_list_purged_init_coverage:
   78|      2|        OVS_CONSTRUCTOR(COUNTER##_init_coverage) {                      \
   79|      2|            coverage_counter_register(&counter_##COUNTER);              \
   80|      2|        }
ipf.c:ipf_l3csum_checked_init_coverage:
   78|      2|        OVS_CONSTRUCTOR(COUNTER##_init_coverage) {                      \
   79|      2|            coverage_counter_register(&counter_##COUNTER);              \
   80|      2|        }
ipf.c:ipf_l3csum_err_init_coverage:
   78|      2|        OVS_CONSTRUCTOR(COUNTER##_init_coverage) {                      \
   79|      2|            coverage_counter_register(&counter_##COUNTER);              \
   80|      2|        }
conntrack-tcp.c:conntrack_tcp_seq_chk_bypass_init_coverage:
   78|      2|        OVS_CONSTRUCTOR(COUNTER##_init_coverage) {                      \
   79|      2|            coverage_counter_register(&counter_##COUNTER);              \
   80|      2|        }
conntrack-tcp.c:conntrack_tcp_seq_chk_failed_init_coverage:
   78|      2|        OVS_CONSTRUCTOR(COUNTER##_init_coverage) {                      \
   79|      2|            coverage_counter_register(&counter_##COUNTER);              \
   80|      2|        }
conntrack-tcp.c:conntrack_invalid_tcp_flags_init_coverage:
   78|      2|        OVS_CONSTRUCTOR(COUNTER##_init_coverage) {                      \
   79|      2|            coverage_counter_register(&counter_##COUNTER);              \
   80|      2|        }
ovsdb-idl.c:txn_uncommitted_init_coverage:
   78|      2|        OVS_CONSTRUCTOR(COUNTER##_init_coverage) {                      \
   79|      2|            coverage_counter_register(&counter_##COUNTER);              \
   80|      2|        }
ovsdb-idl.c:txn_unchanged_init_coverage:
   78|      2|        OVS_CONSTRUCTOR(COUNTER##_init_coverage) {                      \
   79|      2|            coverage_counter_register(&counter_##COUNTER);              \
   80|      2|        }
ovsdb-idl.c:txn_incomplete_init_coverage:
   78|      2|        OVS_CONSTRUCTOR(COUNTER##_init_coverage) {                      \
   79|      2|            coverage_counter_register(&counter_##COUNTER);              \
   80|      2|        }
ovsdb-idl.c:txn_aborted_init_coverage:
   78|      2|        OVS_CONSTRUCTOR(COUNTER##_init_coverage) {                      \
   79|      2|            coverage_counter_register(&counter_##COUNTER);              \
   80|      2|        }
ovsdb-idl.c:txn_success_init_coverage:
   78|      2|        OVS_CONSTRUCTOR(COUNTER##_init_coverage) {                      \
   79|      2|            coverage_counter_register(&counter_##COUNTER);              \
   80|      2|        }
ovsdb-idl.c:txn_try_again_init_coverage:
   78|      2|        OVS_CONSTRUCTOR(COUNTER##_init_coverage) {                      \
   79|      2|            coverage_counter_register(&counter_##COUNTER);              \
   80|      2|        }
ovsdb-idl.c:txn_not_locked_init_coverage:
   78|      2|        OVS_CONSTRUCTOR(COUNTER##_init_coverage) {                      \
   79|      2|            coverage_counter_register(&counter_##COUNTER);              \
   80|      2|        }
ovsdb-idl.c:txn_error_init_coverage:
   78|      2|        OVS_CONSTRUCTOR(COUNTER##_init_coverage) {                      \
   79|      2|            coverage_counter_register(&counter_##COUNTER);              \
   80|      2|        }

ds_init:
   30|  22.6k|{
   31|       |    ds->string = NULL;
   32|  22.6k|    ds->length = 0;
   33|  22.6k|    ds->allocated = 0;
   34|  22.6k|}
ds_clear:
   40|  4.13k|{
   41|  4.13k|    ds->length = 0;
   42|  4.13k|}
ds_reserve:
   60|  24.2k|{
   61|  24.2k|    if (min_length > ds->allocated || !ds->string) {
  ------------------
  |  Branch (61:9): [True: 19.2k, False: 4.99k]
  |  Branch (61:39): [True: 6, False: 4.98k]
  ------------------
   62|  19.2k|        ds->allocated += MAX(min_length, ds->allocated);
  ------------------
  |  |   95|  19.2k|#define MAX(X, Y) ((X) > (Y) ? (X) : (Y))
  |  |  ------------------
  |  |  |  Branch (95:20): [True: 19.2k, False: 6]
  |  |  ------------------
  ------------------
   63|  19.2k|        ds->allocated = MAX(8, ds->allocated);
  ------------------
  |  |   95|  19.2k|#define MAX(X, Y) ((X) > (Y) ? (X) : (Y))
  |  |  ------------------
  |  |  |  Branch (95:20): [True: 10.0k, False: 9.23k]
  |  |  ------------------
  ------------------
   64|  19.2k|        ds->string = xrealloc(ds->string, ds->allocated + 1);
   65|  19.2k|    }
   66|  24.2k|}
ds_put_uninit:
   73|  19.1k|{
   74|  19.1k|    ds_reserve(ds, ds->length + n);
   75|  19.1k|    ds->length += n;
   76|  19.1k|    ds->string[ds->length] = '\0';
   77|  19.1k|    return &ds->string[ds->length - n];
   78|  19.1k|}
ds_put_char__:
   82|  1.20k|{
   83|  1.20k|    *ds_put_uninit(ds, 1) = c;
   84|  1.20k|}
ds_put_utf8:
   89|  32.1k|{
   90|  32.1k|    if (uc <= 0x7f) {
  ------------------
  |  Branch (90:9): [True: 6.00k, False: 26.1k]
  ------------------
   91|  6.00k|        ds_put_char(ds, uc);
   92|  26.1k|    } else if (uc <= 0x7ff) {
  ------------------
  |  Branch (92:16): [True: 10.0k, False: 16.1k]
  ------------------
   93|  10.0k|        ds_put_char(ds, 0xc0 | (uc >> 6));
   94|  10.0k|        ds_put_char(ds, 0x80 | (uc & 0x3f));
   95|  16.1k|    } else if (uc <= 0xffff) {
  ------------------
  |  Branch (95:16): [True: 10.7k, False: 5.42k]
  ------------------
   96|  10.7k|        ds_put_char(ds, 0xe0 | (uc >> 12));
   97|  10.7k|        ds_put_char(ds, 0x80 | ((uc >> 6) & 0x3f));
   98|  10.7k|        ds_put_char(ds, 0x80 | (uc & 0x3f));
   99|  10.7k|    } else if (uc <= 0x10ffff) {
  ------------------
  |  Branch (99:16): [True: 5.42k, False: 0]
  ------------------
  100|  5.42k|        ds_put_char(ds, 0xf0 | (uc >> 18));
  101|  5.42k|        ds_put_char(ds, 0x80 | ((uc >> 12) & 0x3f));
  102|  5.42k|        ds_put_char(ds, 0x80 | ((uc >> 6) & 0x3f));
  103|  5.42k|        ds_put_char(ds, 0x80 | (uc & 0x3f));
  104|  5.42k|    } else {
  105|       |        /* Invalid code point.  Insert the Unicode general substitute
  106|       |         * REPLACEMENT CHARACTER. */
  107|      0|        ds_put_utf8(ds, 0xfffd);
  108|      0|    }
  109|  32.1k|}
ds_put_cstr:
  125|  17.9k|{
  126|  17.9k|    size_t s_len = strlen(s);
  127|  17.9k|    memcpy(ds_put_uninit(ds, s_len), s, s_len);
  128|  17.9k|}
ds_put_format:
  139|  1.37k|{
  140|  1.37k|    va_list args;
  141|       |
  142|  1.37k|    va_start(args, format);
  143|  1.37k|    ds_put_format_valist(ds, format, args);
  144|       |    va_end(args);
  145|  1.37k|}
ds_put_format_valist:
  149|  1.37k|{
  150|  1.37k|    va_list args;
  151|  1.37k|    size_t available;
  152|  1.37k|    int needed;
  153|       |
  154|  1.37k|    va_copy(args, args_);
  155|  1.37k|    available = ds->string ? ds->allocated - ds->length + 1 : 0;
  ------------------
  |  Branch (155:17): [True: 1.29k, False: 74]
  ------------------
  156|  1.37k|    needed = vsnprintf(ds->string
  ------------------
  |  Branch (156:24): [True: 1.29k, False: 74]
  ------------------
  157|  1.37k|                       ? &ds->string[ds->length]
  158|  1.37k|                       : NULL,
  159|  1.37k|                       available, format, args);
  160|  1.37k|    va_end(args);
  161|       |
  162|  1.37k|    if (needed < available) {
  ------------------
  |  Branch (162:9): [True: 590, False: 782]
  ------------------
  163|    590|        ds->length += needed;
  164|    782|    } else {
  165|    782|        ds_reserve(ds, ds->length + needed);
  166|       |
  167|    782|        va_copy(args, args_);
  168|    782|        available = ds->allocated - ds->length + 1;
  169|    782|        needed = vsnprintf(&ds->string[ds->length],
  170|    782|                           available, format, args);
  171|    782|        va_end(args);
  172|       |
  173|    782|        ovs_assert(needed < available);
  ------------------
  |  |   62|    782|#define ovs_assert ovs_ignore
  ------------------
  174|    782|        ds->length += needed;
  175|    782|    }
  176|  1.37k|}
ds_cstr:
  343|  13.5k|{
  344|  13.5k|    if (!ds->string) {
  ------------------
  |  Branch (344:9): [True: 0, False: 13.5k]
  ------------------
  345|      0|        ds_reserve(ds, 0);
  346|      0|    }
  347|  13.5k|    ds->string[ds->length] = '\0';
  348|  13.5k|    return ds->string;
  349|  13.5k|}
ds_steal_cstr:
  362|  9.08k|{
  363|  9.08k|    char *s = ds_cstr(ds);
  364|  9.08k|    ds_init(ds);
  365|  9.08k|    return s;
  366|  9.08k|}
ds_destroy:
  370|    115|{
  371|    115|    free(ds->string);
  372|    115|}
ds_put_hex:
  385|     25|{
  386|     25|    const uint8_t *buf = buf_;
  387|     25|    bool printed = false;
  388|     25|    int i;
  389|       |
  390|    891|    for (i = 0; i < size; i++) {
  ------------------
  |  Branch (390:17): [True: 866, False: 25]
  ------------------
  391|    866|        uint8_t val = buf[i];
  392|    866|        if (val || printed) {
  ------------------
  |  Branch (392:13): [True: 99, False: 767]
  |  Branch (392:20): [True: 197, False: 570]
  ------------------
  393|    296|            if (!printed) {
  ------------------
  |  Branch (393:17): [True: 25, False: 271]
  ------------------
  394|     25|                ds_put_format(ds, "0x%"PRIx8, val);
  395|    271|            } else {
  396|    271|                ds_put_format(ds, "%02"PRIx8, val);
  397|    271|            }
  398|    296|            printed = true;
  399|    296|        }
  400|    866|    }
  401|     25|    if (!printed) {
  ------------------
  |  Branch (401:9): [True: 0, False: 25]
  ------------------
  402|      0|        ds_put_char(ds, '0');
  403|      0|    }
  404|     25|}
ds_chomp:
  505|     21|{
  506|     21|    if (ds->length > 0 && ds->string[ds->length - 1] == (char) c) {
  ------------------
  |  Branch (506:9): [True: 21, False: 0]
  |  Branch (506:27): [True: 21, False: 0]
  ------------------
  507|     21|        ds->string[--ds->length] = '\0';
  508|     21|        return true;
  509|     21|    } else {
  510|       |        return false;
  511|      0|    }
  512|     21|}

flow_zero_wildcards:
 1288|    407|{
 1289|    407|    uint64_t *flow_u64 = (uint64_t *) flow;
 1290|    407|    const uint64_t *wc_u64 = (const uint64_t *) &wildcards->masks;
 1291|    407|    size_t i;
 1292|       |
 1293|  37.8k|    for (i = 0; i < FLOW_U64S; i++) {
  ------------------
  |  |  165|  37.8k|#define FLOW_U64S (sizeof(struct flow) / sizeof(uint64_t))
  ------------------
  |  Branch (1293:17): [True: 37.4k, False: 407]
  ------------------
 1294|  37.4k|        flow_u64[i] &= wc_u64[i];
 1295|  37.4k|    }
 1296|    407|}
ct_state_to_string:
 1416|  11.0k|{
 1417|  11.0k|    switch (state) {
 1418|      0|#define CS_STATE(ENUM, INDEX, NAME) case CS_##ENUM: return NAME;
 1419|      0|        CS_STATES
  ------------------
  |  |  926|  1.62k|    CS_STATE(NEW,         0, "new")             \
  |  |  ------------------
  |  |  |  | 1418|  1.62k|#define CS_STATE(ENUM, INDEX, NAME) case CS_##ENUM: return NAME;
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (1418:37): [True: 1.62k, False: 9.41k]
  |  |  |  |  ------------------
  |  |  ------------------
  |  |  927|  1.62k|    CS_STATE(ESTABLISHED, 1, "est")             \
  |  |  ------------------
  |  |  |  | 1418|  1.54k|#define CS_STATE(ENUM, INDEX, NAME) case CS_##ENUM: return NAME;
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (1418:37): [True: 1.54k, False: 9.49k]
  |  |  |  |  ------------------
  |  |  ------------------
  |  |  928|  1.54k|    CS_STATE(RELATED,     2, "rel")             \
  |  |  ------------------
  |  |  |  | 1418|  1.22k|#define CS_STATE(ENUM, INDEX, NAME) case CS_##ENUM: return NAME;
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (1418:37): [True: 1.22k, False: 9.81k]
  |  |  |  |  ------------------
  |  |  ------------------
  |  |  929|  1.22k|    CS_STATE(REPLY_DIR,   3, "rpl")             \
  |  |  ------------------
  |  |  |  | 1418|  1.07k|#define CS_STATE(ENUM, INDEX, NAME) case CS_##ENUM: return NAME;
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (1418:37): [True: 1.07k, False: 9.96k]
  |  |  |  |  ------------------
  |  |  ------------------
  |  |  930|  1.07k|    CS_STATE(INVALID,     4, "inv")             \
  |  |  ------------------
  |  |  |  | 1418|    946|#define CS_STATE(ENUM, INDEX, NAME) case CS_##ENUM: return NAME;
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (1418:37): [True: 946, False: 10.0k]
  |  |  |  |  ------------------
  |  |  ------------------
  |  |  931|    946|    CS_STATE(TRACKED,     5, "trk")             \
  |  |  ------------------
  |  |  |  | 1418|    889|#define CS_STATE(ENUM, INDEX, NAME) case CS_##ENUM: return NAME;
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (1418:37): [True: 889, False: 10.1k]
  |  |  |  |  ------------------
  |  |  ------------------
  |  |  932|    889|    CS_STATE(SRC_NAT,     6, "snat")            \
  |  |  ------------------
  |  |  |  | 1418|    533|#define CS_STATE(ENUM, INDEX, NAME) case CS_##ENUM: return NAME;
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (1418:37): [True: 533, False: 10.5k]
  |  |  |  |  ------------------
  |  |  ------------------
  |  |  933|    533|    CS_STATE(DST_NAT,     7, "dnat")
  |  |  ------------------
  |  |  |  | 1418|    403|#define CS_STATE(ENUM, INDEX, NAME) case CS_##ENUM: return NAME;
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (1418:37): [True: 403, False: 10.6k]
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 1420|      0|#undef CS_STATE
 1421|  2.80k|    default:
  ------------------
  |  Branch (1421:5): [True: 2.80k, False: 8.22k]
  ------------------
 1422|       |        return NULL;
 1423|  11.0k|    }
 1424|  11.0k|}
flow_tun_flag_to_string:
 1539|  1.17k|{
 1540|  1.17k|    switch (flags) {
 1541|     29|    case FLOW_TNL_F_DONT_FRAGMENT:
  ------------------
  |  |   61|     29|#define FLOW_TNL_F_DONT_FRAGMENT (1 << 1)
  ------------------
  |  Branch (1541:5): [True: 29, False: 1.14k]
  ------------------
 1542|     29|        return "df";
 1543|     29|    case FLOW_TNL_F_CSUM:
  ------------------
  |  |   62|     29|#define FLOW_TNL_F_CSUM (1 << 2)
  ------------------
  |  Branch (1543:5): [True: 29, False: 1.14k]
  ------------------
 1544|     29|        return "csum";
 1545|     27|    case FLOW_TNL_F_KEY:
  ------------------
  |  |   63|     27|#define FLOW_TNL_F_KEY (1 << 3)
  ------------------
  |  Branch (1545:5): [True: 27, False: 1.14k]
  ------------------
 1546|     27|        return "key";
 1547|    534|    case FLOW_TNL_F_OAM:
  ------------------
  |  |   56|    534|#define FLOW_TNL_F_OAM (1 << 0)
  ------------------
  |  Branch (1547:5): [True: 534, False: 637]
  ------------------
 1548|    534|        return "oam";
 1549|    552|    default:
  ------------------
  |  Branch (1549:5): [True: 552, False: 619]
  ------------------
 1550|       |        return NULL;
 1551|  1.17k|    }
 1552|  1.17k|}
format_flags:
 1557|     21|{
 1558|     21|    uint32_t bad = 0;
 1559|       |
 1560|     21|    if (!flags) {
  ------------------
  |  Branch (1560:9): [True: 0, False: 21]
  ------------------
 1561|      0|        ds_put_char(ds, '0');
 1562|      0|        return;
 1563|      0|    }
 1564|    191|    while (flags) {
  ------------------
  |  Branch (1564:12): [True: 170, False: 21]
  ------------------
 1565|    170|        uint32_t bit = rightmost_1bit(flags);
 1566|    170|        const char *s;
 1567|       |
 1568|    170|        s = bit_to_string(bit);
 1569|    170|        if (s) {
  ------------------
  |  Branch (1569:13): [True: 84, False: 86]
  ------------------
 1570|     84|            ds_put_format(ds, "%s%c", s, del);
 1571|     86|        } else {
 1572|     86|            bad |= bit;
 1573|     86|        }
 1574|       |
 1575|    170|        flags &= ~bit;
 1576|    170|    }
 1577|       |
 1578|     21|    if (bad) {
  ------------------
  |  Branch (1578:9): [True: 16, False: 5]
  ------------------
 1579|     16|        ds_put_format(ds, "0x%"PRIx32"%c", bad, del);
 1580|     16|    }
 1581|     21|    ds_chomp(ds, del);
 1582|     21|}
format_flags_masked:
 1588|     22|{
 1589|     22|    if (name) {
  ------------------
  |  Branch (1589:9): [True: 0, False: 22]
  ------------------
 1590|      0|        ds_put_format(ds, "%s%s=%s", colors.param, name, colors.end);
 1591|      0|    }
 1592|       |
 1593|     22|    if (mask == max_mask) {
  ------------------
  |  Branch (1593:9): [True: 21, False: 1]
  ------------------
 1594|     21|        format_flags(ds, bit_to_string, flags, '|');
 1595|     21|        return;
 1596|     21|    }
 1597|       |
 1598|      1|    if (!mask) {
  ------------------
  |  Branch (1598:9): [True: 0, False: 1]
  ------------------
 1599|      0|        ds_put_cstr(ds, "0/0");
 1600|      0|        return;
 1601|      0|    }
 1602|       |
 1603|     33|    while (mask) {
  ------------------
  |  Branch (1603:12): [True: 32, False: 1]
  ------------------
 1604|     32|        uint32_t bit = rightmost_1bit(mask);
 1605|     32|        const char *s = bit_to_string(bit);
 1606|       |
 1607|     32|        ds_put_format(ds, "%s%s", (flags & bit) ? "+" : "-",
  ------------------
  |  Branch (1607:35): [True: 1, False: 31]
  ------------------
 1608|     32|                      s ? s : "[Unknown]");
  ------------------
  |  Branch (1608:23): [True: 8, False: 24]
  ------------------
 1609|     32|        mask &= ~bit;
 1610|     32|    }
 1611|      1|}
format_packet_type_masked:
 1633|     25|{
 1634|     25|    if (value == htonl(PT_ETH) && mask == OVS_BE32_MAX) {
  ------------------
  |  |   43|      0|#define OVS_BE32_MAX ((OVS_FORCE ovs_be32) 0xffffffff)
  ------------------
  |  Branch (1634:9): [True: 0, False: 25]
  |  Branch (1634:35): [True: 0, False: 0]
  ------------------
 1635|      0|        ds_put_cstr(s, "eth");
 1636|     25|    } else {
 1637|     25|        ds_put_cstr(s, "packet_type=(");
 1638|     25|        put_u16_masked(s, pt_ns(value), pt_ns(mask));
 1639|     25|        ds_put_char(s, ',');
 1640|     25|        put_u16_masked(s, pt_ns_type(value), pt_ns_type(mask));
 1641|     25|        ds_put_char(s, ')');
 1642|     25|    }
 1643|     25|}
parse_flags:
 1664|  3.68k|{
 1665|  3.68k|    uint32_t result = 0;
 1666|  3.68k|    int n;
 1667|       |
 1668|       |    /* Parse masked flags in numeric format? */
 1669|  3.68k|    if (res_mask && ovs_scan(s, "%"SCNi32"/%"SCNi32"%n",
  ------------------
  |  Branch (1669:9): [True: 3.68k, False: 0]
  |  Branch (1669:21): [True: 1.13k, False: 2.54k]
  ------------------
 1670|  3.68k|                             res_flags, res_mask, &n) && n > 0) {
  ------------------
  |  Branch (1670:58): [True: 1.13k, False: 0]
  ------------------
 1671|  1.13k|        if (*res_flags & ~allowed || *res_mask & ~allowed) {
  ------------------
  |  Branch (1671:13): [True: 28, False: 1.11k]
  |  Branch (1671:38): [True: 23, False: 1.08k]
  ------------------
 1672|     51|            goto unknown;
 1673|     51|        }
 1674|  1.08k|        return n;
 1675|  1.13k|    }
 1676|       |
 1677|  2.54k|    n = 0;
 1678|       |
 1679|  2.54k|    if (res_mask && (*s == '+' || *s == '-')) {
  ------------------
  |  Branch (1679:9): [True: 2.54k, False: 0]
  |  Branch (1679:22): [True: 322, False: 2.21k]
  |  Branch (1679:35): [True: 431, False: 1.78k]
  ------------------
 1680|    753|        uint32_t flags = 0, mask = 0;
 1681|       |
 1682|       |        /* Parse masked flags. */
 1683|  2.07k|        while (s[0] != end) {
  ------------------
  |  Branch (1683:16): [True: 1.41k, False: 662]
  ------------------
 1684|  1.41k|            bool set;
 1685|  1.41k|            uint32_t bit;
 1686|  1.41k|            size_t len;
 1687|       |
 1688|  1.41k|            if (s[0] == '+') {
  ------------------
  |  Branch (1688:17): [True: 631, False: 780]
  ------------------
 1689|    631|                set = true;
 1690|    780|            } else if (s[0] == '-') {
  ------------------
  |  Branch (1690:24): [True: 780, False: 0]
  ------------------
 1691|    780|                set = false;
 1692|    780|            } else {
 1693|      0|                if (res_string) {
  ------------------
  |  Branch (1693:21): [True: 0, False: 0]
  ------------------
 1694|      0|                    *res_string = xasprintf("%s: %s must be preceded by '+' "
 1695|      0|                                            "(for SET) or '-' (NOT SET)", s,
 1696|      0|                                            field_name);
 1697|      0|                }
 1698|      0|                return -EINVAL;
 1699|      0|            }
 1700|  1.41k|            s++;
 1701|  1.41k|            n++;
 1702|       |
 1703|  11.3k|            for (bit = 1; bit; bit <<= 1) {
  ------------------
  |  Branch (1703:27): [True: 11.2k, False: 79]
  ------------------
 1704|  11.2k|                const char *fname = bit_to_string(bit);
 1705|       |
 1706|  11.2k|                if (!fname) {
  ------------------
  |  Branch (1706:21): [True: 1.80k, False: 9.47k]
  ------------------
 1707|  1.80k|                    continue;
 1708|  1.80k|                }
 1709|       |
 1710|  9.47k|                len = strlen(fname);
 1711|  9.47k|                if (strncmp(s, fname, len) ||
  ------------------
  |  Branch (1711:21): [True: 8.12k, False: 1.34k]
  ------------------
 1712|  8.14k|                    (s[len] != '+' && s[len] != '-' && s[len] != end)) {
  ------------------
  |  Branch (1712:22): [True: 1.03k, False: 314]
  |  Branch (1712:39): [True: 679, False: 354]
  |  Branch (1712:56): [True: 15, False: 664]
  ------------------
 1713|  8.14k|                    continue;
 1714|  8.14k|                }
 1715|       |
 1716|  1.33k|                if (mask & bit) {
  ------------------
  |  Branch (1716:21): [True: 11, False: 1.32k]
  ------------------
 1717|       |                    /* bit already set. */
 1718|     11|                    if (res_string) {
  ------------------
  |  Branch (1718:25): [True: 11, False: 0]
  ------------------
 1719|     11|                        *res_string = xasprintf("%s: Each %s flag can be "
 1720|     11|                                                "specified only once", s,
 1721|     11|                                                field_name);
 1722|     11|                    }
 1723|     11|                    return -EINVAL;
 1724|     11|                }
 1725|  1.32k|                if (!(bit & allowed)) {
  ------------------
  |  Branch (1725:21): [True: 1, False: 1.32k]
  ------------------
 1726|      1|                    goto unknown;
 1727|      1|                }
 1728|  1.32k|                if (set) {
  ------------------
  |  Branch (1728:21): [True: 595, False: 725]
  ------------------
 1729|    595|                   flags |= bit;
 1730|    595|                }
 1731|  1.32k|                mask |= bit;
 1732|  1.32k|                break;
 1733|  1.32k|            }
 1734|       |
 1735|  1.39k|            if (!bit) {
  ------------------
  |  Branch (1735:17): [True: 79, False: 1.32k]
  ------------------
 1736|     79|                goto unknown;
 1737|     79|            }
 1738|  1.32k|            s += len;
 1739|  1.32k|            n += len;
 1740|  1.32k|        }
 1741|       |
 1742|    662|        *res_flags = flags;
 1743|    662|        *res_mask = mask;
 1744|    662|        return n;
 1745|    753|    }
 1746|       |
 1747|       |    /* Parse unmasked flags.  If a flag is present, it is set, otherwise
 1748|       |     * it is not set. */
 1749|  6.02k|    while (s[n] != end) {
  ------------------
  |  Branch (1749:12): [True: 4.36k, False: 1.65k]
  ------------------
 1750|  4.36k|        unsigned long long int flags;
 1751|  4.36k|        uint32_t bit;
 1752|  4.36k|        int n0;
 1753|       |
 1754|  4.36k|        if (ovs_scan(&s[n], "%lli%n", &flags, &n0)) {
  ------------------
  |  Branch (1754:13): [True: 2.56k, False: 1.80k]
  ------------------
 1755|  2.56k|            if (flags & ~allowed) {
  ------------------
  |  Branch (1755:17): [True: 15, False: 2.54k]
  ------------------
 1756|     15|                goto unknown;
 1757|     15|            }
 1758|  2.54k|            n += n0 + (s[n + n0] == '|');
 1759|  2.54k|            result |= flags;
 1760|  2.54k|            continue;
 1761|  2.56k|        }
 1762|       |
 1763|  13.5k|        for (bit = 1; bit; bit <<= 1) {
  ------------------
  |  Branch (1763:23): [True: 13.4k, False: 116]
  ------------------
 1764|  13.4k|            const char *name = bit_to_string(bit);
 1765|  13.4k|            size_t len;
 1766|       |
 1767|  13.4k|            if (!name) {
  ------------------
  |  Branch (1767:17): [True: 2.69k, False: 10.7k]
  ------------------
 1768|  2.69k|                continue;
 1769|  2.69k|            }
 1770|       |
 1771|  10.7k|            len = strlen(name);
 1772|  10.7k|            if (!strncmp(s + n, name, len) &&
  ------------------
  |  Branch (1772:17): [True: 1.69k, False: 9.04k]
  ------------------
 1773|  1.69k|                (s[n + len] == '|' || s[n + len] == end)) {
  ------------------
  |  Branch (1773:18): [True: 774, False: 921]
  |  Branch (1773:39): [True: 914, False: 7]
  ------------------
 1774|  1.68k|                if (!(bit & allowed)) {
  ------------------
  |  Branch (1774:21): [True: 1, False: 1.68k]
  ------------------
 1775|      1|                    goto unknown;
 1776|      1|                }
 1777|  1.68k|                result |= bit;
 1778|  1.68k|                n += len + (s[n + len] == '|');
 1779|  1.68k|                break;
 1780|  1.68k|            }
 1781|  10.7k|        }
 1782|       |
 1783|  1.80k|        if (!bit) {
  ------------------
  |  Branch (1783:13): [True: 116, False: 1.68k]
  ------------------
 1784|    116|            goto unknown;
 1785|    116|        }
 1786|  1.80k|    }
 1787|       |
 1788|  1.65k|    *res_flags = result;
 1789|  1.65k|    if (res_mask) {
  ------------------
  |  Branch (1789:9): [True: 1.65k, False: 0]
  ------------------
 1790|  1.65k|        *res_mask = UINT32_MAX;
 1791|  1.65k|    }
 1792|  1.65k|    if (res_string) {
  ------------------
  |  Branch (1792:9): [True: 1.65k, False: 0]
  ------------------
 1793|  1.65k|        *res_string = NULL;
 1794|  1.65k|    }
 1795|  1.65k|    return n;
 1796|       |
 1797|    263|unknown:
 1798|    263|    if (res_string) {
  ------------------
  |  Branch (1798:9): [True: 263, False: 0]
  ------------------
 1799|    263|        *res_string = xasprintf("%s: unknown %s flag(s)", s, field_name);
 1800|    263|    }
 1801|       |    return -EINVAL;
 1802|  1.78k|}
flow_wildcards_init_catchall:
 1885|  33.5k|{
 1886|  33.5k|    memset(&wc->masks, 0, sizeof wc->masks);
 1887|  33.5k|}
flow_wildcards_equal:
 2230|  9.28k|{
 2231|  9.28k|    return flow_equal(&a->masks, &b->masks);
 2232|  9.28k|}
flow_wildcards_set_reg_mask:
 2275|  39.2k|{
 2276|  39.2k|    wc->masks.regs[idx] = mask;
 2277|  39.2k|}
flow_wildcards_set_xreg_mask:
 2283|  19.8k|{
 2284|  19.8k|    flow_set_xreg(&wc->masks, idx, mask);
 2285|  19.8k|}
flow_wildcards_set_xxreg_mask:
 2292|  10.7k|{
 2293|  10.7k|    flow_set_xxreg(&wc->masks, idx, mask);
 2294|  10.7k|}
flow_set_dl_vlan:
 2780|    574|{
 2781|    574|    if (vid == htons(OFP10_VLAN_NONE)) {
  ------------------
  |  Branch (2781:9): [True: 217, False: 357]
  ------------------
 2782|    217|        flow->vlans[id].tci = htons(0);
 2783|    357|    } else {
 2784|    357|        vid &= htons(VLAN_VID_MASK);
 2785|    357|        flow->vlans[id].tci &= ~htons(VLAN_VID_MASK);
 2786|       |        flow->vlans[id].tci |= htons(VLAN_CFI) | vid;
 2787|    357|    }
 2788|    574|}
flow_set_vlan_vid:
 2805|    306|{
 2806|       |    ovs_be16 mask = htons(VLAN_VID_MASK | VLAN_CFI);
 2807|    306|    flow->vlans[0].tci &= ~mask;
 2808|    306|    flow->vlans[0].tci |= vid & mask;
 2809|    306|}
flow_set_vlan_pcp:
 2820|    943|{
 2821|    943|    pcp &= 0x07;
 2822|    943|    flow->vlans[id].tci &= ~htons(VLAN_PCP_MASK);
 2823|       |    flow->vlans[id].tci |= htons((pcp << VLAN_PCP_SHIFT) | VLAN_CFI);
 2824|    943|}
flow_count_vlan_headers:
 2829|  3.09k|{
 2830|  3.09k|    int i;
 2831|       |
 2832|  5.29k|    for (i = 0; i < FLOW_MAX_VLAN_HEADERS; i++) {
  ------------------
  |  |   75|  5.29k|#define FLOW_MAX_VLAN_HEADERS 2
  ------------------
  |  Branch (2832:17): [True: 4.96k, False: 330]
  ------------------
 2833|  4.96k|        if (!(flow->vlans[i].tci & htons(VLAN_CFI))) {
  ------------------
  |  Branch (2833:13): [True: 2.76k, False: 2.20k]
  ------------------
 2834|  2.76k|            break;
 2835|  2.76k|        }
 2836|  4.96k|    }
 2837|  3.09k|    return i;
 2838|  3.09k|}
flow_pop_vlan:
 2860|  3.09k|{
 2861|  3.09k|    int n = flow_count_vlan_headers(flow);
 2862|  3.09k|    if (n > 1) {
  ------------------
  |  Branch (2862:9): [True: 330, False: 2.76k]
  ------------------
 2863|    330|        if (wc) {
  ------------------
  |  Branch (2863:13): [True: 0, False: 330]
  ------------------
 2864|      0|            memset(&wc->masks.vlans[1], 0xff,
 2865|      0|                   sizeof(union flow_vlan_hdr) * (n - 1));
 2866|      0|        }
 2867|    330|        memmove(&flow->vlans[0], &flow->vlans[1],
 2868|    330|                sizeof(union flow_vlan_hdr) * (n - 1));
 2869|    330|    }
 2870|  3.09k|    if (n > 0) {
  ------------------
  |  Branch (2870:9): [True: 1.87k, False: 1.21k]
  ------------------
 2871|  1.87k|        memset(&flow->vlans[n - 1], 0, sizeof(union flow_vlan_hdr));
 2872|  1.87k|    }
 2873|  3.09k|}
flow_push_vlan_uninit:
 2877|  1.74k|{
 2878|  1.74k|    if (wc) {
  ------------------
  |  Branch (2878:9): [True: 0, False: 1.74k]
  ------------------
 2879|      0|        int n = flow_count_vlan_headers(flow);
 2880|      0|        if (n) {
  ------------------
  |  Branch (2880:13): [True: 0, False: 0]
  ------------------
 2881|      0|            memset(wc->masks.vlans, 0xff, sizeof(union flow_vlan_hdr) * n);
 2882|      0|        }
 2883|      0|    }
 2884|  1.74k|    memmove(&flow->vlans[1], &flow->vlans[0],
 2885|  1.74k|            sizeof(union flow_vlan_hdr) * (FLOW_MAX_VLAN_HEADERS - 1));
  ------------------
  |  |   75|  1.74k|#define FLOW_MAX_VLAN_HEADERS 2
  ------------------
 2886|  1.74k|    memset(&flow->vlans[0], 0, sizeof(union flow_vlan_hdr));
 2887|  1.74k|}
flow_set_mpls_label:
 3076|    388|{
 3077|    388|    set_mpls_lse_label(&flow->mpls_lse[idx], label);
 3078|    388|}
flow_set_mpls_ttl:
 3084|    382|{
 3085|    382|    set_mpls_lse_ttl(&flow->mpls_lse[idx], ttl);
 3086|    382|}
flow_set_mpls_tc:
 3092|    879|{
 3093|    879|    set_mpls_lse_tc(&flow->mpls_lse[idx], tc);
 3094|    879|}
flow_set_mpls_bos:
 3099|  1.72k|{
 3100|  1.72k|    set_mpls_lse_bos(&flow->mpls_lse[idx], bos);
 3101|  1.72k|}
miniflow_init:
 3474|  18.5k|{
 3475|  18.5k|    uint64_t *dst_u64 = miniflow_values(dst);
 3476|  18.5k|    size_t idx;
 3477|       |
 3478|  19.5k|    FLOWMAP_FOR_EACH_INDEX(idx, dst->map) {
  ------------------
  |  |  337|  18.5k|    for (struct flowmap_aux aux__ = FLOWMAP_AUX_INITIALIZER(MAP);   \
  |  |  ------------------
  |  |  |  |  331|  18.5k|#define FLOWMAP_AUX_INITIALIZER(FLOWMAP) { .unit = 0, .map = (FLOWMAP) }
  |  |  ------------------
  |  |  338|  38.0k|         flowmap_next_index(&aux__, &(IDX));)
  |  |  ------------------
  |  |  |  Branch (338:10): [True: 19.5k, False: 18.5k]
  |  |  ------------------
  ------------------
 3479|  19.5k|        *dst_u64++ = flow_u64_value(src, idx);
 3480|  19.5k|    }
 3481|  18.5k|}
miniflow_map_init:
 3486|  9.28k|{
 3487|       |    /* Initialize map, counting the number of nonzero elements. */
 3488|  9.28k|    flowmap_init(&flow->map);
 3489|   863k|    for (size_t i = 0; i < FLOW_U64S; i++) {
  ------------------
  |  |  165|   863k|#define FLOW_U64S (sizeof(struct flow) / sizeof(uint64_t))
  ------------------
  |  Branch (3489:24): [True: 854k, False: 9.28k]
  ------------------
 3490|   854k|        if (flow_u64_value(src, i)) {
  ------------------
  |  Branch (3490:13): [True: 9.76k, False: 844k]
  ------------------
 3491|  9.76k|            flowmap_set(&flow->map, i, 1);
 3492|  9.76k|        }
 3493|   854k|    }
 3494|  9.28k|}
miniflow_alloc:
 3501|  9.28k|{
 3502|  9.28k|    size_t n_values = miniflow_n_values(src);
 3503|  9.28k|    size_t data_size = MINIFLOW_VALUES_SIZE(n_values);
  ------------------
  |  |  527|  9.28k|#define MINIFLOW_VALUES_SIZE(COUNT) ((COUNT) * sizeof(uint64_t))
  ------------------
 3504|  9.28k|    struct miniflow *dst = xmalloc(n * (sizeof *src + data_size));
 3505|  9.28k|    size_t i;
 3506|       |
 3507|  9.28k|    COVERAGE_INC(miniflow_malloc);
  ------------------
  |  |   83|  9.28k|#define COVERAGE_INC(COUNTER) COVERAGE_ADD(COUNTER, 1)
  |  |  ------------------
  |  |  |  |   86|  9.28k|#define COVERAGE_ADD(COUNTER, AMOUNT) COUNTER##_add(AMOUNT)
  |  |  ------------------
  ------------------
 3508|       |
 3509|  27.8k|    for (i = 0; i < n; i++) {
  ------------------
  |  Branch (3509:17): [True: 18.5k, False: 9.28k]
  ------------------
 3510|  18.5k|        *dst = *src;   /* Copy maps. */
 3511|  18.5k|        dsts[i] = dst;
 3512|  18.5k|        dst += 1;      /* Just past the maps. */
 3513|  18.5k|        dst = (struct miniflow *)((uint64_t *)dst + n_values); /* Skip data. */
 3514|  18.5k|    }
 3515|  9.28k|    return data_size;
 3516|  9.28k|}
miniflow_expand:
 3547|  36.7k|{
 3548|  36.7k|    memset(dst, 0, sizeof *dst);
 3549|  36.7k|    flow_union_with_miniflow(dst, src);
 3550|  36.7k|}
minimask_init:
 3616|  9.28k|{
 3617|  9.28k|    miniflow_init(&mask->masks, &wc->masks);
 3618|  9.28k|}
minimask_expand:
 3660|  18.3k|{
 3661|  18.3k|    miniflow_expand(&mask->masks, &wc->masks);
 3662|  18.3k|}
flow.c:put_u16_masked:
 1615|     50|{
 1616|     50|    if (!mask) {
  ------------------
  |  Branch (1616:9): [True: 0, False: 50]
  ------------------
 1617|      0|        ds_put_char(s, '*');
 1618|     50|    } else {
 1619|     50|        if (value > 9) {
  ------------------
  |  Branch (1619:13): [True: 36, False: 14]
  ------------------
 1620|     36|            ds_put_format(s, "0x%"PRIx16, value);
 1621|     36|        } else {
 1622|     14|            ds_put_format(s, "%"PRIu16, value);
 1623|     14|        }
 1624|       |
 1625|     50|        if (mask != UINT16_MAX) {
  ------------------
  |  Branch (1625:13): [True: 0, False: 50]
  ------------------
 1626|       |            ds_put_format(s, "/0x%"PRIx16, mask);
 1627|      0|        }
 1628|     50|    }
 1629|     50|}

match.c:flow_set_xreg:
  149|  19.8k|{
  150|  19.8k|    flow->regs[idx * 2] = value >> 32;
  151|  19.8k|    flow->regs[idx * 2 + 1] = value;
  152|  19.8k|}
match.c:flow_set_xxreg:
  169|  10.7k|{
  170|  10.7k|    flow->regs[idx * 4] = value.u64.hi >> 32;
  171|  10.7k|    flow->regs[idx * 4 + 1] = value.u64.hi;
  172|  10.7k|    flow->regs[idx * 4 + 2] = value.u64.lo >> 32;
  173|  10.7k|    flow->regs[idx * 4 + 3] = value.u64.lo;
  174|  10.7k|}
match.c:u16_to_ofp:
  214|  1.47k|{
  215|  1.47k|    return OFP_PORT_C(port);
  ------------------
  |  |  157|  1.47k|#define OFP_PORT_C(X) ((OVS_FORCE ofp_port_t) (X))
  ------------------
  216|  1.47k|}
ofp-flow.c:ofp_to_u16:
  196|  8.40k|{
  197|  8.40k|    return (OVS_FORCE uint16_t) ofp_port;
  198|  8.40k|}
ofp-match.c:ofp_to_u16:
  196|  4.76k|{
  197|  4.76k|    return (OVS_FORCE uint16_t) ofp_port;
  198|  4.76k|}
ofp-port.c:ofp_to_u16:
  196|   319k|{
  197|   319k|    return (OVS_FORCE uint16_t) ofp_port;
  198|   319k|}
ofp-port.c:u16_to_ofp:
  214|   236k|{
  215|   236k|    return OFP_PORT_C(port);
  ------------------
  |  |  157|   236k|#define OFP_PORT_C(X) ((OVS_FORCE ofp_port_t) (X))
  ------------------
  216|   236k|}
ofp-port.c:ofp11_to_u32:
  208|  1.03k|{
  209|  1.03k|    return (OVS_FORCE uint32_t) ofp11_port;
  210|  1.03k|}
flow.c:miniflow_values:
  530|  18.5k|{
  531|  18.5k|    return (uint64_t *)(mf + 1);
  532|  18.5k|}
flow.c:flowmap_set:
  385|  9.76k|{
  386|  9.76k|    map_t n_bits_mask = (MAP_1 << n_bits) - 1;
  ------------------
  |  |  271|  9.76k|#define MAP_1 (map_t)1
  ------------------
  387|  9.76k|    size_t unit = idx / MAP_T_BITS;
  ------------------
  |  |  270|  9.76k|#define MAP_T_BITS (sizeof(map_t) * CHAR_BIT)
  ------------------
  388|       |
  389|  9.76k|    idx %= MAP_T_BITS;
  ------------------
  |  |  270|  9.76k|#define MAP_T_BITS (sizeof(map_t) * CHAR_BIT)
  ------------------
  390|       |
  391|  9.76k|    fm->bits[unit] |= n_bits_mask << idx;
  392|       |    /* The seemingly unnecessary bounds check on 'unit' is a workaround for a
  393|       |     * false-positive array out of bounds error by GCC 4.9. */
  394|  9.76k|    if (unit + 1 < FLOWMAP_UNITS && idx + n_bits > MAP_T_BITS) {
  ------------------
  |  |  280|  9.76k|#define FLOWMAP_UNITS DIV_ROUND_UP(FLOW_U64S, MAP_T_BITS)
  |  |  ------------------
  |  |  |  |  300|  19.5k|#define DIV_ROUND_UP(X, Y) (((X) + ((Y) - 1)) / (Y))
  |  |  ------------------
  ------------------
                  if (unit + 1 < FLOWMAP_UNITS && idx + n_bits > MAP_T_BITS) {
  ------------------
  |  |  270|  5.78k|#define MAP_T_BITS (sizeof(map_t) * CHAR_BIT)
  ------------------
  |  Branch (394:9): [True: 5.78k, False: 3.97k]
  |  Branch (394:37): [True: 0, False: 5.78k]
  ------------------
  395|       |        /* 'MAP_T_BITS - idx' bits were set on 'unit', set the remaining
  396|       |         * bits from the next unit. */
  397|       |        fm->bits[unit + 1] |= n_bits_mask >> (MAP_T_BITS - idx);
  ------------------
  |  |  270|      0|#define MAP_T_BITS (sizeof(map_t) * CHAR_BIT)
  ------------------
  398|      0|    }
  399|  9.76k|}
flow.c:flowmap_init:
  343|  9.28k|{
  344|  9.28k|    memset(fm, 0, sizeof *fm);
  345|  9.28k|}
flow.c:flow_equal:
  184|  9.28k|{
  185|  9.28k|    return !flow_compare_3way(a, b);
  186|  9.28k|}
flow.c:flow_compare_3way:
  178|  9.28k|{
  179|  9.28k|    return memcmp(a, b, sizeof *a);
  180|  9.28k|}
flow.c:flow_set_xreg:
  149|  19.8k|{
  150|  19.8k|    flow->regs[idx * 2] = value >> 32;
  151|  19.8k|    flow->regs[idx * 2 + 1] = value;
  152|  19.8k|}
flow.c:flow_set_xxreg:
  169|  10.7k|{
  170|  10.7k|    flow->regs[idx * 4] = value.u64.hi >> 32;
  171|  10.7k|    flow->regs[idx * 4 + 1] = value.u64.hi;
  172|  10.7k|    flow->regs[idx * 4 + 2] = value.u64.lo >> 32;
  173|  10.7k|    flow->regs[idx * 4 + 3] = value.u64.lo;
  174|  10.7k|}
flow.c:miniflow_get_values:
  535|  36.7k|{
  536|  36.7k|    return (const uint64_t *)(mf + 1);
  537|  36.7k|}
flow.c:flowmap_next_index:
  479|  38.0k|{
  480|  56.6k|    for (;;) {
  481|  56.6k|        map_t *map = &aux->map.bits[aux->unit];
  482|  56.6k|        if (*map) {
  ------------------
  |  Branch (482:13): [True: 19.5k, False: 37.1k]
  ------------------
  483|  19.5k|            *idx = aux->unit * MAP_T_BITS + raw_ctz(*map);
  ------------------
  |  |  270|  19.5k|#define MAP_T_BITS (sizeof(map_t) * CHAR_BIT)
  ------------------
  484|  19.5k|            *map = zero_rightmost_1bit(*map);
  485|  19.5k|            return true;
  486|  19.5k|        }
  487|  37.1k|        if (++aux->unit >= FLOWMAP_UNITS) {
  ------------------
  |  |  280|  37.1k|#define FLOWMAP_UNITS DIV_ROUND_UP(FLOW_U64S, MAP_T_BITS)
  |  |  ------------------
  |  |  |  |  300|  37.1k|#define DIV_ROUND_UP(X, Y) (((X) + ((Y) - 1)) / (Y))
  |  |  ------------------
  ------------------
  |  Branch (487:13): [True: 18.5k, False: 18.5k]
  ------------------
  488|       |            return false;
  489|  18.5k|        }
  490|  37.1k|    }
  491|  38.0k|}
flow.c:flow_u64_value:
  557|   873k|{
  558|   873k|    return ((uint64_t *)flow)[index];
  559|   873k|}
flow.c:miniflow_n_values:
  568|  9.28k|{
  569|  9.28k|    return flowmap_n_1bits(flow->map);
  570|  9.28k|}
flow.c:flowmap_n_1bits:
  462|  9.28k|{
  463|  9.28k|    unsigned int n_1bits = 0;
  464|  9.28k|    size_t unit;
  465|       |
  466|  18.5k|    FLOWMAP_FOR_EACH_UNIT (unit) {
  ------------------
  |  |  320|  27.8k|    for ((UNIT) = 0; (UNIT) < FLOWMAP_UNITS; (UNIT)++)
  |  |  ------------------
  |  |  |  |  280|  27.8k|#define FLOWMAP_UNITS DIV_ROUND_UP(FLOW_U64S, MAP_T_BITS)
  |  |  |  |  ------------------
  |  |  |  |  |  |  300|  27.8k|#define DIV_ROUND_UP(X, Y) (((X) + ((Y) - 1)) / (Y))
  |  |  |  |  ------------------
  |  |  ------------------
  |  |  |  Branch (320:22): [True: 18.5k, False: 9.28k]
  |  |  ------------------
  ------------------
  467|  18.5k|        n_1bits += count_1bits(fm.bits[unit]);
  468|  18.5k|    }
  469|  9.28k|    return n_1bits;
  470|  9.28k|}
flow.c:flow_union_with_miniflow:
  938|  36.7k|{
  939|  36.7k|    flow_union_with_miniflow_subset(dst, src, src->map);
  940|  36.7k|}
flow.c:flow_union_with_miniflow_subset:
  919|  36.7k|{
  920|  36.7k|    uint64_t *dst_u64 = (uint64_t *) dst;
  921|  36.7k|    const uint64_t *p = miniflow_get_values(src);
  922|  36.7k|    map_t map;
  923|       |
  924|  73.4k|    FLOWMAP_FOR_EACH_MAP (map, subset) {
  ------------------
  |  |  324|  36.7k|    for (size_t unit__ = 0;                                       \
  |  |  325|   110k|         unit__ < FLOWMAP_UNITS && ((MAP) = (FLOWMAP).bits[unit__], true); \
  |  |  ------------------
  |  |  |  |  280|   110k|#define FLOWMAP_UNITS DIV_ROUND_UP(FLOW_U64S, MAP_T_BITS)
  |  |  |  |  ------------------
  |  |  |  |  |  |  300|   220k|#define DIV_ROUND_UP(X, Y) (((X) + ((Y) - 1)) / (Y))
  |  |  |  |  ------------------
  |  |  ------------------
  |  |  |  Branch (325:10): [True: 73.4k, False: 36.7k]
  |  |  |  Branch (325:36): [True: 73.4k, False: 0]
  |  |  ------------------
  |  |  326|  73.4k|         unit__++)
  ------------------
  925|  73.4k|        size_t idx;
  926|       |
  927|  73.4k|        MAP_FOR_EACH_INDEX(idx, map) {
  ------------------
  |  |  278|  73.4k|    ULLONG_FOR_EACH_1(IDX, MAP)
  |  |  ------------------
  |  |  |  |  285|  73.4k|    for (uint64_t map__ = (MAP);                    \
  |  |  |  |  286|   112k|         map__ && (((IDX) = raw_ctz(map__)), true); \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (286:10): [True: 38.5k, False: 73.4k]
  |  |  |  |  |  Branch (286:19): [True: 38.5k, False: 0]
  |  |  |  |  ------------------
  |  |  |  |  287|  73.4k|         map__ = zero_rightmost_1bit(map__))
  |  |  ------------------
  ------------------
  928|  38.5k|            dst_u64[idx] |= *p++;
  929|  38.5k|        }
  930|       |        dst_u64 += MAP_T_BITS;
  ------------------
  |  |  270|  73.4k|#define MAP_T_BITS (sizeof(map_t) * CHAR_BIT)
  ------------------
  931|  73.4k|    }
  932|  36.7k|}
meta-flow.c:flow_get_xreg:
  143|  15.8k|{
  144|  15.8k|    return ((uint64_t) flow->regs[idx * 2] << 32) | flow->regs[idx * 2 + 1];
  145|  15.8k|}
meta-flow.c:flow_get_xxreg:
  156|  10.1k|{
  157|  10.1k|    ovs_u128 value;
  158|       |
  159|  10.1k|    value.u64.hi = (uint64_t) flow->regs[idx * 4] << 32;
  160|  10.1k|    value.u64.hi |= flow->regs[idx * 4 + 1];
  161|  10.1k|    value.u64.lo = (uint64_t) flow->regs[idx * 4 + 2] << 32;
  162|  10.1k|    value.u64.lo |= flow->regs[idx * 4 + 3];
  163|       |
  164|  10.1k|    return value;
  165|  10.1k|}
meta-flow.c:get_dl_type:
 1036|  87.6k|{
 1037|  87.6k|    if (flow->packet_type == htonl(PT_ETH)) {
  ------------------
  |  Branch (1037:9): [True: 78.0k, False: 9.59k]
  ------------------
 1038|  78.0k|        return flow->dl_type;
 1039|  78.0k|    } else if (pt_ns(flow->packet_type) == OFPHTN_ETHERTYPE) {
  ------------------
  |  Branch (1039:16): [True: 8.15k, False: 1.43k]
  ------------------
 1040|  8.15k|        return pt_ns_type_be(flow->packet_type);
 1041|  8.15k|    } else {
 1042|       |        return htons(FLOW_DL_TYPE_NONE);
 1043|  1.43k|    }
 1044|  87.6k|}
meta-flow.c:is_ethernet:
 1028|  3.44k|{
 1029|  3.44k|    if (wc) {
  ------------------
  |  Branch (1029:9): [True: 0, False: 3.44k]
  ------------------
 1030|      0|        WC_MASK_FIELD(wc, packet_type);
  ------------------
  |  |  201|      0|    memset(&(WC)->masks.FIELD, 0xff, sizeof (WC)->masks.FIELD)
  ------------------
 1031|      0|    }
 1032|       |    return flow->packet_type == htonl(PT_ETH);
 1033|  3.44k|}
meta-flow.c:is_vlan:
 1048|    416|{
 1049|    416|    if (!is_ethernet(flow, wc)) {
  ------------------
  |  Branch (1049:9): [True: 18, False: 398]
  ------------------
 1050|     18|        return false;
 1051|     18|    }
 1052|    398|    if (wc) {
  ------------------
  |  Branch (1052:9): [True: 0, False: 398]
  ------------------
 1053|      0|        WC_MASK_FIELD_MASK(wc, vlans[0].tci, htons(VLAN_CFI));
  ------------------
  |  |  203|      0|    ((WC)->masks.FIELD |= (MASK))
  ------------------
 1054|      0|    }
 1055|       |    return (flow->vlans[0].tci & htons(VLAN_CFI)) != 0;
 1056|    416|}
meta-flow.c:is_ct_valid:
  954|    458|{
  955|       |    /* Matches are checked with 'mask' and without 'wc'. */
  956|    458|    if (mask && !wc) {
  ------------------
  |  Branch (956:9): [True: 457, False: 1]
  |  Branch (956:17): [True: 457, False: 0]
  ------------------
  957|       |        /* Must match at least one of the bits that implies a valid
  958|       |         * conntrack entry, or an explicit not-invalid. */
  959|    457|        return flow->ct_state & (CS_NEW | CS_ESTABLISHED | CS_RELATED
  ------------------
  |  Branch (959:16): [True: 259, False: 198]
  ------------------
  960|    457|                                 | CS_REPLY_DIR | CS_SRC_NAT | CS_DST_NAT)
  961|    198|            || (flow->ct_state & CS_TRACKED
  ------------------
  |  Branch (961:17): [True: 195, False: 3]
  ------------------
  962|    195|                && mask->masks.ct_state & CS_INVALID
  ------------------
  |  Branch (962:20): [True: 195, False: 0]
  ------------------
  963|    195|                && !(flow->ct_state & CS_INVALID));
  ------------------
  |  Branch (963:20): [True: 194, False: 1]
  ------------------
  964|    457|    }
  965|       |    /* Else we are checking a fully extracted flow, where valid CT state always
  966|       |     * has either 'new', 'established', or 'reply_dir' bit set. */
  967|      1|#define CS_VALID_MASK (CS_NEW | CS_ESTABLISHED | CS_REPLY_DIR)
  968|      1|    if (wc) {
  ------------------
  |  Branch (968:9): [True: 0, False: 1]
  ------------------
  969|      0|        wc->masks.ct_state |= CS_VALID_MASK;
  ------------------
  |  |  967|      0|#define CS_VALID_MASK (CS_NEW | CS_ESTABLISHED | CS_REPLY_DIR)
  ------------------
  970|      0|    }
  971|      1|    return flow->ct_state & CS_VALID_MASK;
  ------------------
  |  |  967|      1|#define CS_VALID_MASK (CS_NEW | CS_ESTABLISHED | CS_REPLY_DIR)
  ------------------
  972|    458|}
meta-flow.c:is_tcp:
 1077|  1.42k|{
 1078|       |    return is_ip_proto(flow, IPPROTO_TCP, wc);
 1079|  1.42k|}
meta-flow.c:is_ip_proto:
 1065|  2.66k|{
 1066|  2.66k|    if (is_ip_any(flow)) {
  ------------------
  |  Branch (1066:9): [True: 2.59k, False: 71]
  ------------------
 1067|  2.59k|        if (wc) {
  ------------------
  |  Branch (1067:13): [True: 0, False: 2.59k]
  ------------------
 1068|      0|            WC_MASK_FIELD(wc, nw_proto);
  ------------------
  |  |  201|      0|    memset(&(WC)->masks.FIELD, 0xff, sizeof (WC)->masks.FIELD)
  ------------------
 1069|      0|        }
 1070|  2.59k|        return flow->nw_proto == ip_proto;
 1071|  2.59k|    }
 1072|     71|    return false;
 1073|  2.66k|}
meta-flow.c:is_udp:
 1083|    756|{
 1084|       |    return is_ip_proto(flow, IPPROTO_UDP, wc);
 1085|    756|}
meta-flow.c:is_sctp:
 1089|    480|{
 1090|       |    return is_ip_proto(flow, IPPROTO_SCTP, wc);
 1091|    480|}
meta-flow.c:is_icmpv4:
 1095|    460|{
 1096|    460|    if (get_dl_type(flow) == htons(ETH_TYPE_IP)) {
  ------------------
  |  Branch (1096:9): [True: 450, False: 10]
  ------------------
 1097|    450|        if (wc) {
  ------------------
  |  Branch (1097:13): [True: 0, False: 450]
  ------------------
 1098|      0|            memset(&wc->masks.nw_proto, 0xff, sizeof wc->masks.nw_proto);
 1099|      0|        }
 1100|    450|        return flow->nw_proto == IPPROTO_ICMP;
 1101|    450|    }
 1102|     10|    return false;
 1103|    460|}
meta-flow.c:is_icmpv6:
 1107|  2.02k|{
 1108|  2.02k|    if (get_dl_type(flow) == htons(ETH_TYPE_IPV6)) {
  ------------------
  |  Branch (1108:9): [True: 1.94k, False: 74]
  ------------------
 1109|  1.94k|        if (wc) {
  ------------------
  |  Branch (1109:13): [True: 0, False: 1.94k]
  ------------------
 1110|      0|            memset(&wc->masks.nw_proto, 0xff, sizeof wc->masks.nw_proto);
 1111|      0|        }
 1112|  1.94k|        return flow->nw_proto == IPPROTO_ICMPV6;
 1113|  1.94k|    }
 1114|     74|    return false;
 1115|  2.02k|}
meta-flow.c:is_nd:
 1119|  1.56k|{
 1120|  1.56k|    if (is_icmpv6(flow, wc)) {
  ------------------
  |  Branch (1120:9): [True: 1.50k, False: 55]
  ------------------
 1121|  1.50k|        if (wc) {
  ------------------
  |  Branch (1121:13): [True: 0, False: 1.50k]
  ------------------
 1122|      0|            memset(&wc->masks.tp_dst, 0xff, sizeof wc->masks.tp_dst);
 1123|      0|        }
 1124|  1.50k|        if (flow->tp_dst != htons(0)) {
  ------------------
  |  Branch (1124:13): [True: 10, False: 1.49k]
  ------------------
 1125|     10|            return false;
 1126|     10|        }
 1127|       |
 1128|  1.49k|        if (wc) {
  ------------------
  |  Branch (1128:13): [True: 0, False: 1.49k]
  ------------------
 1129|      0|            memset(&wc->masks.tp_src, 0xff, sizeof wc->masks.tp_src);
 1130|      0|        }
 1131|  1.49k|        return (flow->tp_src == htons(ND_NEIGHBOR_SOLICIT) ||
  ------------------
  |  Branch (1131:17): [True: 611, False: 884]
  ------------------
 1132|    884|                flow->tp_src == htons(ND_NEIGHBOR_ADVERT));
  ------------------
  |  Branch (1132:17): [True: 856, False: 28]
  ------------------
 1133|  1.50k|    }
 1134|     55|    return false;
 1135|  1.56k|}
meta-flow.c:ofp_to_u16:
  196|  1.55k|{
  197|  1.55k|    return (OVS_FORCE uint16_t) ofp_port;
  198|  1.55k|}
meta-flow.c:u16_to_ofp:
  214|    324|{
  215|    324|    return OFP_PORT_C(port);
  ------------------
  |  |  157|    324|#define OFP_PORT_C(X) ((OVS_FORCE ofp_port_t) (X))
  ------------------
  216|    324|}
meta-flow.c:is_ip_any:
 1059|  3.95k|{
 1060|  3.95k|    return dl_type_is_ip_any(get_dl_type(flow));
 1061|  3.95k|}
nx-match.c:get_dl_type:
 1036|  9.27k|{
 1037|  9.27k|    if (flow->packet_type == htonl(PT_ETH)) {
  ------------------
  |  Branch (1037:9): [True: 8.28k, False: 999]
  ------------------
 1038|  8.28k|        return flow->dl_type;
 1039|  8.28k|    } else if (pt_ns(flow->packet_type) == OFPHTN_ETHERTYPE) {
  ------------------
  |  Branch (1039:16): [True: 239, False: 760]
  ------------------
 1040|    239|        return pt_ns_type_be(flow->packet_type);
 1041|    760|    } else {
 1042|       |        return htons(FLOW_DL_TYPE_NONE);
 1043|    760|    }
 1044|  9.27k|}
nx-match.c:ofp_to_u16:
  196|      8|{
  197|      8|    return (OVS_FORCE uint16_t) ofp_port;
  198|      8|}
nx-match.c:is_ip_any:
 1059|  4.10k|{
 1060|  4.10k|    return dl_type_is_ip_any(get_dl_type(flow));
 1061|  4.10k|}
nx-match.c:is_icmpv4:
 1095|    182|{
 1096|    182|    if (get_dl_type(flow) == htons(ETH_TYPE_IP)) {
  ------------------
  |  Branch (1096:9): [True: 28, False: 154]
  ------------------
 1097|     28|        if (wc) {
  ------------------
  |  Branch (1097:13): [True: 0, False: 28]
  ------------------
 1098|      0|            memset(&wc->masks.nw_proto, 0xff, sizeof wc->masks.nw_proto);
 1099|      0|        }
 1100|     28|        return flow->nw_proto == IPPROTO_ICMP;
 1101|     28|    }
 1102|    154|    return false;
 1103|    182|}
nx-match.c:is_icmpv6:
 1107|    296|{
 1108|    296|    if (get_dl_type(flow) == htons(ETH_TYPE_IPV6)) {
  ------------------
  |  Branch (1108:9): [True: 295, False: 1]
  ------------------
 1109|    295|        if (wc) {
  ------------------
  |  Branch (1109:13): [True: 0, False: 295]
  ------------------
 1110|      0|            memset(&wc->masks.nw_proto, 0xff, sizeof wc->masks.nw_proto);
 1111|      0|        }
 1112|    295|        return flow->nw_proto == IPPROTO_ICMPV6;
 1113|    295|    }
 1114|      1|    return false;
 1115|    296|}
nx-match.c:is_nd:
 1119|    141|{
 1120|    141|    if (is_icmpv6(flow, wc)) {
  ------------------
  |  Branch (1120:9): [True: 141, False: 0]
  ------------------
 1121|    141|        if (wc) {
  ------------------
  |  Branch (1121:13): [True: 0, False: 141]
  ------------------
 1122|      0|            memset(&wc->masks.tp_dst, 0xff, sizeof wc->masks.tp_dst);
 1123|      0|        }
 1124|    141|        if (flow->tp_dst != htons(0)) {
  ------------------
  |  Branch (1124:13): [True: 11, False: 130]
  ------------------
 1125|     11|            return false;
 1126|     11|        }
 1127|       |
 1128|    130|        if (wc) {
  ------------------
  |  Branch (1128:13): [True: 0, False: 130]
  ------------------
 1129|      0|            memset(&wc->masks.tp_src, 0xff, sizeof wc->masks.tp_src);
 1130|      0|        }
 1131|    130|        return (flow->tp_src == htons(ND_NEIGHBOR_SOLICIT) ||
  ------------------
  |  Branch (1131:17): [True: 24, False: 106]
  ------------------
 1132|    106|                flow->tp_src == htons(ND_NEIGHBOR_ADVERT));
  ------------------
  |  Branch (1132:17): [True: 30, False: 76]
  ------------------
 1133|    141|    }
 1134|      0|    return false;
 1135|    141|}
ofp-actions.c:ofp_to_u16:
  196|   416k|{
  197|   416k|    return (OVS_FORCE uint16_t) ofp_port;
  198|   416k|}
ofp-actions.c:get_dl_type:
 1036|  42.7k|{
 1037|  42.7k|    if (flow->packet_type == htonl(PT_ETH)) {
  ------------------
  |  Branch (1037:9): [True: 25.2k, False: 17.5k]
  ------------------
 1038|  25.2k|        return flow->dl_type;
 1039|  25.2k|    } else if (pt_ns(flow->packet_type) == OFPHTN_ETHERTYPE) {
  ------------------
  |  Branch (1039:16): [True: 13.3k, False: 4.22k]
  ------------------
 1040|  13.3k|        return pt_ns_type_be(flow->packet_type);
 1041|  13.3k|    } else {
 1042|       |        return htons(FLOW_DL_TYPE_NONE);
 1043|  4.22k|    }
 1044|  42.7k|}
ofp-actions.c:is_ip_any:
 1059|  15.2k|{
 1060|  15.2k|    return dl_type_is_ip_any(get_dl_type(flow));
 1061|  15.2k|}
ofp-actions.c:is_ct_valid:
  954|    392|{
  955|       |    /* Matches are checked with 'mask' and without 'wc'. */
  956|    392|    if (mask && !wc) {
  ------------------
  |  Branch (956:9): [True: 392, False: 0]
  |  Branch (956:17): [True: 392, False: 0]
  ------------------
  957|       |        /* Must match at least one of the bits that implies a valid
  958|       |         * conntrack entry, or an explicit not-invalid. */
  959|    392|        return flow->ct_state & (CS_NEW | CS_ESTABLISHED | CS_RELATED
  ------------------
  |  Branch (959:16): [True: 195, False: 197]
  ------------------
  960|    392|                                 | CS_REPLY_DIR | CS_SRC_NAT | CS_DST_NAT)
  961|    197|            || (flow->ct_state & CS_TRACKED
  ------------------
  |  Branch (961:17): [True: 195, False: 2]
  ------------------
  962|    195|                && mask->masks.ct_state & CS_INVALID
  ------------------
  |  Branch (962:20): [True: 194, False: 1]
  ------------------
  963|    194|                && !(flow->ct_state & CS_INVALID));
  ------------------
  |  Branch (963:20): [True: 193, False: 1]
  ------------------
  964|    392|    }
  965|       |    /* Else we are checking a fully extracted flow, where valid CT state always
  966|       |     * has either 'new', 'established', or 'reply_dir' bit set. */
  967|      0|#define CS_VALID_MASK (CS_NEW | CS_ESTABLISHED | CS_REPLY_DIR)
  968|      0|    if (wc) {
  ------------------
  |  Branch (968:9): [True: 0, False: 0]
  ------------------
  969|      0|        wc->masks.ct_state |= CS_VALID_MASK;
  ------------------
  |  |  967|      0|#define CS_VALID_MASK (CS_NEW | CS_ESTABLISHED | CS_REPLY_DIR)
  ------------------
  970|      0|    }
  971|      0|    return flow->ct_state & CS_VALID_MASK;
  ------------------
  |  |  967|      0|#define CS_VALID_MASK (CS_NEW | CS_ESTABLISHED | CS_REPLY_DIR)
  ------------------
  972|    392|}

hash_bytes:
   31|   563k|{
   32|   563k|    const uint8_t *p = p_;
   33|   563k|    size_t orig_n = n;
   34|   563k|    uint32_t hash;
   35|       |
   36|   563k|    hash = basis;
   37|  2.68M|    while (n >= 4) {
  ------------------
  |  Branch (37:12): [True: 2.12M, False: 563k]
  ------------------
   38|  2.12M|        hash = hash_add(hash,
   39|  2.12M|                        get_unaligned_u32(ALIGNED_CAST(const uint32_t *, p)));
  ------------------
  |  |  434|  2.12M|#define ALIGNED_CAST(TYPE, ATTR) ((TYPE) (void *) (ATTR))
  ------------------
   40|  2.12M|        n -= 4;
   41|  2.12M|        p += 4;
   42|  2.12M|    }
   43|       |
   44|   563k|    if (n) {
  ------------------
  |  Branch (44:9): [True: 468k, False: 94.5k]
  ------------------
   45|   468k|        uint32_t tmp = 0;
   46|       |
   47|   468k|        memcpy(&tmp, p, n);
   48|   468k|        hash = hash_add(hash, tmp);
   49|   468k|    }
   50|       |
   51|   563k|    return hash_finish(hash, orig_n);
   52|   563k|}

ofp-msgs.c:hash_finish:
  118|  1.46k|{
  119|  1.46k|    return mhash_finish(hash ^ final);
  120|  1.46k|}
ofp-msgs.c:mhash_finish:
   84|  1.46k|{
   85|  1.46k|    hash ^= hash >> 16;
   86|  1.46k|    hash *= 0x85ebca6b;
   87|  1.46k|    hash ^= hash >> 13;
   88|  1.46k|    hash *= 0xc2b2ae35;
   89|  1.46k|    hash ^= hash >> 16;
   90|  1.46k|    return hash;
   91|  1.46k|}
ofp-msgs.c:hash_add:
  108|  4.39k|{
  109|  4.39k|    return mhash_add(hash, data);
  110|  4.39k|}
ofp-msgs.c:mhash_add:
   77|  4.39k|{
   78|  4.39k|    hash = mhash_add__(hash, data);
   79|  4.39k|    hash = hash_rot(hash, 13);
   80|  4.39k|    return hash * 5 + 0xe6546b64;
   81|  4.39k|}
ofp-msgs.c:mhash_add__:
   64|  4.39k|{
   65|       |    /* zero-valued 'data' will not change the 'hash' value */
   66|  4.39k|    if (!data) {
  ------------------
  |  Branch (66:9): [True: 2.59k, False: 1.80k]
  ------------------
   67|  2.59k|        return hash;
   68|  2.59k|    }
   69|       |
   70|  1.80k|    data *= 0xcc9e2d51;
   71|  1.80k|    data = hash_rot(data, 15);
   72|  1.80k|    data *= 0x1b873593;
   73|  1.80k|    return hash ^ data;
   74|  4.39k|}
ofp-msgs.c:hash_rot:
   31|  6.20k|{
   32|  6.20k|    return (x << k) | (x >> (32 - k));
   33|  6.20k|}
ofp-msgs.c:hash_bytes32:
  392|  1.46k|{
  393|  1.46k|    return hash_words(p, n_bytes / 4, basis);
  394|  1.46k|}
ofp-msgs.c:hash_words:
  357|  1.46k|{
  358|  1.46k|    if (__builtin_constant_p(n_words)) {
  ------------------
  |  Branch (358:9): [True: 1.46k, False: 0]
  ------------------
  359|  1.46k|        return hash_words_inline(p, n_words, basis);
  360|  1.46k|    } else {
  361|      0|        return hash_words__(p, n_words, basis);
  362|      0|    }
  363|  1.46k|}
ofp-msgs.c:hash_words_inline:
  129|  1.46k|{
  130|  1.46k|    return hash_finish(hash_add_words(basis, p, n_words), n_words * 4);
  131|  1.46k|}
ofp-msgs.c:hash_add_words:
  428|  1.46k|{
  429|  5.86k|    for (size_t i = 0; i < n_words; i++) {
  ------------------
  |  Branch (429:24): [True: 4.39k, False: 1.46k]
  ------------------
  430|  4.39k|        hash = hash_add(hash, p[i]);
  431|  4.39k|    }
  432|  1.46k|    return hash;
  433|  1.46k|}
hash.c:hash_finish:
  118|   563k|{
  119|   563k|    return mhash_finish(hash ^ final);
  120|   563k|}
hash.c:mhash_finish:
   84|   563k|{
   85|   563k|    hash ^= hash >> 16;
   86|   563k|    hash *= 0x85ebca6b;
   87|   563k|    hash ^= hash >> 13;
   88|   563k|    hash *= 0xc2b2ae35;
   89|   563k|    hash ^= hash >> 16;
   90|   563k|    return hash;
   91|   563k|}
hash.c:hash_add:
  108|  2.58M|{
  109|  2.58M|    return mhash_add(hash, data);
  110|  2.58M|}
hash.c:mhash_add:
   77|  2.58M|{
   78|  2.58M|    hash = mhash_add__(hash, data);
   79|  2.58M|    hash = hash_rot(hash, 13);
   80|  2.58M|    return hash * 5 + 0xe6546b64;
   81|  2.58M|}
hash.c:mhash_add__:
   64|  2.58M|{
   65|       |    /* zero-valued 'data' will not change the 'hash' value */
   66|  2.58M|    if (!data) {
  ------------------
  |  Branch (66:9): [True: 0, False: 2.58M]
  ------------------
   67|      0|        return hash;
   68|      0|    }
   69|       |
   70|  2.58M|    data *= 0xcc9e2d51;
   71|  2.58M|    data = hash_rot(data, 15);
   72|  2.58M|    data *= 0x1b873593;
   73|  2.58M|    return hash ^ data;
   74|  2.58M|}
hash.c:hash_rot:
   31|  5.17M|{
   32|  5.17M|    return (x << k) | (x >> (32 - k));
   33|  5.17M|}
nx-match.c:hash_string:
  403|    237|{
  404|    237|    return hash_bytes(s, strlen(s), basis);
  405|    237|}
nx-match.c:hash_uint64:
  164|    237|{
  165|    237|    return hash_uint64_basis(x, 0);
  166|    237|}
nx-match.c:hash_uint64_basis:
  159|    237|{
  160|    237|    return hash_finish(hash_add64(basis, x), 8);
  161|    237|}
nx-match.c:hash_finish:
  118|    237|{
  119|    237|    return mhash_finish(hash ^ final);
  120|    237|}
nx-match.c:mhash_finish:
   84|    237|{
   85|    237|    hash ^= hash >> 16;
   86|    237|    hash *= 0x85ebca6b;
   87|    237|    hash ^= hash >> 13;
   88|    237|    hash *= 0xc2b2ae35;
   89|    237|    hash ^= hash >> 16;
   90|    237|    return hash;
   91|    237|}
nx-match.c:hash_add64:
  113|    237|{
  114|    237|    return hash_add(hash_add(hash, data), data >> 32);
  115|    237|}
nx-match.c:hash_add:
  108|    474|{
  109|    474|    return mhash_add(hash, data);
  110|    474|}
nx-match.c:mhash_add:
   77|    474|{
   78|    474|    hash = mhash_add__(hash, data);
   79|    474|    hash = hash_rot(hash, 13);
   80|    474|    return hash * 5 + 0xe6546b64;
   81|    474|}
nx-match.c:mhash_add__:
   64|    474|{
   65|       |    /* zero-valued 'data' will not change the 'hash' value */
   66|    474|    if (!data) {
  ------------------
  |  Branch (66:9): [True: 199, False: 275]
  ------------------
   67|    199|        return hash;
   68|    199|    }
   69|       |
   70|    275|    data *= 0xcc9e2d51;
   71|    275|    data = hash_rot(data, 15);
   72|    275|    data *= 0x1b873593;
   73|    275|    return hash ^ data;
   74|    474|}
nx-match.c:hash_rot:
   31|    749|{
   32|    749|    return (x << k) | (x >> (32 - k));
   33|    749|}
ofp-actions.c:hash_2words:
  153|   300k|{
  154|   300k|    return hash_finish(hash_add(hash_add(x, 0), y), 8);
  155|   300k|}
ofp-actions.c:hash_finish:
  118|   300k|{
  119|   300k|    return mhash_finish(hash ^ final);
  120|   300k|}
ofp-actions.c:mhash_finish:
   84|   300k|{
   85|   300k|    hash ^= hash >> 16;
   86|   300k|    hash *= 0x85ebca6b;
   87|   300k|    hash ^= hash >> 13;
   88|   300k|    hash *= 0xc2b2ae35;
   89|   300k|    hash ^= hash >> 16;
   90|   300k|    return hash;
   91|   300k|}
ofp-actions.c:hash_add:
  108|   600k|{
  109|   600k|    return mhash_add(hash, data);
  110|   600k|}
ofp-actions.c:mhash_add:
   77|   600k|{
   78|   600k|    hash = mhash_add__(hash, data);
   79|   600k|    hash = hash_rot(hash, 13);
   80|   600k|    return hash * 5 + 0xe6546b64;
   81|   600k|}
ofp-actions.c:mhash_add__:
   64|   600k|{
   65|       |    /* zero-valued 'data' will not change the 'hash' value */
   66|   600k|    if (!data) {
  ------------------
  |  Branch (66:9): [True: 300k, False: 300k]
  ------------------
   67|   300k|        return hash;
   68|   300k|    }
   69|       |
   70|   300k|    data *= 0xcc9e2d51;
   71|   300k|    data = hash_rot(data, 15);
   72|   300k|    data *= 0x1b873593;
   73|   300k|    return hash ^ data;
   74|   600k|}
ofp-actions.c:hash_rot:
   31|   900k|{
   32|   900k|    return (x << k) | (x >> (32 - k));
   33|   900k|}
shash.c:hash_string:
  403|   201k|{
  404|   201k|    return hash_bytes(s, strlen(s), basis);
  405|   201k|}

hmap_init:
   36|     39|{
   37|     39|    hmap->buckets = &hmap->one;
   38|       |    hmap->one = NULL;
   39|     39|    hmap->mask = 0;
   40|     39|    hmap->n = 0;
   41|     39|}
hmap_destroy:
   47|     34|{
   48|     34|    if (hmap && hmap->buckets != &hmap->one) {
  ------------------
  |  Branch (48:9): [True: 34, False: 0]
  |  Branch (48:17): [True: 29, False: 5]
  ------------------
   49|     29|        free(hmap->buckets);
   50|     29|    }
   51|     34|}
hmap_swap:
   72|     34|{
   73|     34|    struct hmap tmp = *a;
   74|     34|    *a = *b;
   75|     34|    *b = tmp;
   76|     34|    hmap_moved(a);
   77|     34|    hmap_moved(b);
   78|     34|}
hmap_moved:
   84|     68|{
   85|     68|    if (!hmap->mask) {
  ------------------
  |  Branch (85:9): [True: 5, False: 63]
  ------------------
   86|      5|        hmap->buckets = &hmap->one;
   87|      5|    }
   88|     68|}
hmap_expand_at:
  171|     34|{
  172|     34|    size_t new_mask = calc_mask(hmap->n);
  173|     34|    if (new_mask > hmap->mask) {
  ------------------
  |  Branch (173:9): [True: 34, False: 0]
  ------------------
  174|     34|        COVERAGE_INC(hmap_expand);
  ------------------
  |  |   83|     34|#define COVERAGE_INC(COUNTER) COVERAGE_ADD(COUNTER, 1)
  |  |  ------------------
  |  |  |  |   86|     34|#define COVERAGE_ADD(COUNTER, AMOUNT) COUNTER##_add(AMOUNT)
  |  |  ------------------
  ------------------
  175|     34|        resize(hmap, new_mask, where);
  176|     34|    }
  177|     34|}
hmap.c:calc_mask:
  146|     34|{
  147|     34|    size_t mask = capacity / 2;
  148|     34|    mask |= mask >> 1;
  149|     34|    mask |= mask >> 2;
  150|     34|    mask |= mask >> 4;
  151|     34|    mask |= mask >> 8;
  152|     34|    mask |= mask >> 16;
  153|     34|#if SIZE_MAX > UINT32_MAX
  154|     34|    mask |= mask >> 32;
  155|     34|#endif
  156|       |
  157|       |    /* If we need to dynamically allocate buckets we might as well allocate at
  158|       |     * least 4 of them. */
  159|     34|    mask |= (mask & 1) << 1;
  160|       |
  161|     34|    return mask;
  162|     34|}
hmap.c:resize:
   92|     34|{
   93|     34|    struct hmap tmp;
   94|     34|    size_t i;
   95|       |
   96|     34|    ovs_assert(is_pow2(new_mask + 1));
  ------------------
  |  |   62|     34|#define ovs_assert ovs_ignore
  ------------------
   97|       |
   98|     34|    hmap_init(&tmp);
   99|     34|    if (new_mask) {
  ------------------
  |  Branch (99:9): [True: 34, False: 0]
  ------------------
  100|     34|        tmp.buckets = xmalloc(sizeof *tmp.buckets * (new_mask + 1));
  101|     34|        tmp.mask = new_mask;
  102|  3.34k|        for (i = 0; i <= tmp.mask; i++) {
  ------------------
  |  Branch (102:21): [True: 3.30k, False: 34]
  ------------------
  103|  3.30k|            tmp.buckets[i] = NULL;
  104|  3.30k|        }
  105|     34|    }
  106|     34|    int n_big_buckets = 0;
  107|     34|    int biggest_count = 0;
  108|     34|    int n_biggest_buckets = 0;
  109|  1.68k|    for (i = 0; i <= hmap->mask; i++) {
  ------------------
  |  Branch (109:17): [True: 1.64k, False: 34]
  ------------------
  110|  1.64k|        struct hmap_node *node, *next;
  111|  1.64k|        int count = 0;
  112|  4.94k|        for (node = hmap->buckets[i]; node; node = next) {
  ------------------
  |  Branch (112:39): [True: 3.29k, False: 1.64k]
  ------------------
  113|  3.29k|            next = node->next;
  114|  3.29k|            hmap_insert_fast(&tmp, node, node->hash);
  115|  3.29k|            count++;
  116|  3.29k|        }
  117|  1.64k|        if (count > 5) {
  ------------------
  |  Branch (117:13): [True: 24, False: 1.62k]
  ------------------
  118|     24|            n_big_buckets++;
  119|     24|            if (count > biggest_count) {
  ------------------
  |  Branch (119:17): [True: 12, False: 12]
  ------------------
  120|     12|                biggest_count = count;
  121|     12|                n_biggest_buckets = 1;
  122|     12|            } else if (count == biggest_count) {
  ------------------
  |  Branch (122:24): [True: 3, False: 9]
  ------------------
  123|      3|                n_biggest_buckets++;
  124|      3|            }
  125|     24|        }
  126|  1.64k|    }
  127|     34|    hmap_swap(hmap, &tmp);
  128|     34|    hmap_destroy(&tmp);
  129|       |
  130|     34|    if (n_big_buckets) {
  ------------------
  |  Branch (130:9): [True: 11, False: 23]
  ------------------
  131|     11|        static struct vlog_rate_limit rl = VLOG_RATE_LIMIT_INIT(10, 10);
  ------------------
  |  |  110|     11|        {                                                                 \
  |  |  111|     11|            TOKEN_BUCKET_INIT(RATE, OVS_SAT_MUL(BURST, VLOG_MSG_TOKENS)), \
  |  |  ------------------
  |  |  |  |   37|     44|#define TOKEN_BUCKET_INIT(RATE, BURST) { RATE, BURST, 0, LLONG_MIN }
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (37:48): [True: 0, Folded]
  |  |  |  |  |  Branch (37:48): [Folded, False: 11]
  |  |  |  |  ------------------
  |  |  ------------------
  |  |  112|     11|            0,                              /* first_dropped */           \
  |  |  113|     11|            0,                              /* last_dropped */            \
  |  |  114|     11|            0,                              /* n_dropped */               \
  |  |  115|     11|            OVS_MUTEX_INITIALIZER           /* mutex */                   \
  |  |  ------------------
  |  |  |  |   45|     11|#define OVS_MUTEX_INITIALIZER { PTHREAD_ERRORCHECK_MUTEX_INITIALIZER_NP, \
  |  |  |  |   46|     11|                                "<unlocked>" }
  |  |  ------------------
  |  |  116|     11|        }
  ------------------
  132|     11|        COVERAGE_INC(hmap_pathological);
  ------------------
  |  |   83|     11|#define COVERAGE_INC(COUNTER) COVERAGE_ADD(COUNTER, 1)
  |  |  ------------------
  |  |  |  |   86|     11|#define COVERAGE_ADD(COUNTER, AMOUNT) COUNTER##_add(AMOUNT)
  |  |  ------------------
  ------------------
  133|     11|        VLOG_DBG_RL(&rl, "%s: %d bucket%s with 6+ nodes, "
  ------------------
  |  |  226|     11|#define VLOG_DBG_RL(RL, ...) VLOG_RL(RL, VLL_DBG, __VA_ARGS__)
  |  |  ------------------
  |  |  |  |  287|     11|    do {                                                                \
  |  |  |  |  288|     11|        enum vlog_level level__ = LEVEL;                                \
  |  |  |  |  289|     11|        if (this_module.min_level >= level__) {                         \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (289:13): [True: 0, False: 11]
  |  |  |  |  ------------------
  |  |  |  |  290|      0|            vlog_rate_limit(&this_module, level__, RL, __VA_ARGS__);    \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (290:56): [True: 0, False: 0]
  |  |  |  |  |  Branch (290:56): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |  291|      0|        }                                                               \
  |  |  |  |  292|     11|    } while (0)
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (292:14): [Folded, False: 11]
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  134|     11|                    "including %d bucket%s with %d nodes "
  135|     11|                    "(%"PRIuSIZE" nodes total across %"PRIuSIZE" buckets)",
  136|     11|                    where,
  137|     11|                    n_big_buckets, n_big_buckets > 1 ? "s" : "",
  138|     11|                    n_biggest_buckets, n_biggest_buckets > 1 ? "s" : "",
  139|     11|                    biggest_count,
  140|     11|                    hmap->n, hmap->mask + 1);
  141|     11|    }
  142|     34|}

json_string_unescape:
 1078|  4.32k|{
 1079|  4.32k|    const char *end = in + in_len;
 1080|  4.32k|    bool ok = false;
 1081|  4.32k|    struct ds out;
 1082|       |
 1083|  4.32k|    ds_init(&out);
 1084|  4.32k|    ds_reserve(&out, in_len);
 1085|  17.5M|    while (in < end) {
  ------------------
  |  Branch (1085:12): [True: 17.5M, False: 190]
  ------------------
 1086|  17.5M|        if (*in == '"') {
  ------------------
  |  Branch (1086:13): [True: 553, False: 17.5M]
  ------------------
 1087|    553|            ds_clear(&out);
 1088|    553|            ds_put_cstr(&out, "quoted string may not include unescaped \"");
 1089|    553|            goto exit;
 1090|    553|        }
 1091|  17.5M|        if (*in != '\\') {
  ------------------
  |  Branch (1091:13): [True: 17.2M, False: 261k]
  ------------------
 1092|  17.2M|            ds_put_char(&out, *in++);
 1093|  17.2M|            continue;
 1094|  17.2M|        }
 1095|       |
 1096|   261k|        in++;
 1097|   261k|        if (in >= end) {
  ------------------
  |  Branch (1097:13): [True: 364, False: 260k]
  ------------------
 1098|       |            /* The JSON parser will never trigger this message, because its
 1099|       |             * lexer will never pass in a string that ends in a single
 1100|       |             * backslash, but json_string_unescape() has other callers that
 1101|       |             * are not as careful.*/
 1102|    364|            ds_clear(&out);
 1103|    364|            ds_put_cstr(&out, "quoted string may not end with backslash");
 1104|    364|            goto exit;
 1105|    364|        }
 1106|   260k|        switch (*in++) {
 1107|  31.3k|        case '"': case '\\': case '/':
  ------------------
  |  Branch (1107:9): [True: 16.5k, False: 244k]
  |  Branch (1107:19): [True: 2.56k, False: 258k]
  |  Branch (1107:30): [True: 12.2k, False: 248k]
  ------------------
 1108|  31.3k|            ds_put_char(&out, in[-1]);
 1109|  31.3k|            break;
 1110|       |
 1111|   107k|        case 'b':
  ------------------
  |  Branch (1111:9): [True: 107k, False: 153k]
  ------------------
 1112|   107k|            ds_put_char(&out, '\b');
 1113|   107k|            break;
 1114|       |
 1115|  65.2k|        case 'f':
  ------------------
  |  Branch (1115:9): [True: 65.2k, False: 195k]
  ------------------
 1116|  65.2k|            ds_put_char(&out, '\f');
 1117|  65.2k|            break;
 1118|       |
 1119|  13.1k|        case 'n':
  ------------------
  |  Branch (1119:9): [True: 13.1k, False: 247k]
  ------------------
 1120|  13.1k|            ds_put_char(&out, '\n');
 1121|  13.1k|            break;
 1122|       |
 1123|  3.06k|        case 'r':
  ------------------
  |  Branch (1123:9): [True: 3.06k, False: 257k]
  ------------------
 1124|  3.06k|            ds_put_char(&out, '\r');
 1125|  3.06k|            break;
 1126|       |
 1127|  5.54k|        case 't':
  ------------------
  |  Branch (1127:9): [True: 5.54k, False: 255k]
  ------------------
 1128|  5.54k|            ds_put_char(&out, '\t');
 1129|  5.54k|            break;
 1130|       |
 1131|  34.4k|        case 'u':
  ------------------
  |  Branch (1131:9): [True: 34.4k, False: 226k]
  ------------------
 1132|  34.4k|            in = json_lex_unicode(in, end, &out);
 1133|  34.4k|            if (!in) {
  ------------------
  |  Branch (1133:17): [True: 2.34k, False: 32.1k]
  ------------------
 1134|  2.34k|                goto exit;
 1135|  2.34k|            }
 1136|  32.1k|            break;
 1137|       |
 1138|  32.1k|        default:
  ------------------
  |  Branch (1138:9): [True: 867, False: 260k]
  ------------------
 1139|    867|            ds_clear(&out);
 1140|    867|            ds_put_format(&out, "bad escape \\%c", in[-1]);
 1141|    867|            goto exit;
 1142|   260k|        }
 1143|   260k|    }
 1144|    190|    ok = true;
 1145|       |
 1146|  4.32k|exit:
 1147|  4.32k|    *outp = ds_cstr(&out);
 1148|  4.32k|    return ok;
 1149|    190|}
json.c:json_lex_unicode:
 1036|  34.4k|{
 1037|  34.4k|    const char *error;
 1038|  34.4k|    int c0, c1;
 1039|       |
 1040|  34.4k|    error = json_lex_4hex(cp, end, &c0);
 1041|  34.4k|    if (error) {
  ------------------
  |  Branch (1041:9): [True: 795, False: 33.6k]
  ------------------
 1042|    795|        ds_clear(out);
 1043|    795|        ds_put_cstr(out, error);
 1044|    795|        return NULL;
 1045|    795|    }
 1046|  33.6k|    cp += 4;
 1047|  33.6k|    if (!uc_is_leading_surrogate(c0)) {
  ------------------
  |  Branch (1047:9): [True: 26.7k, False: 6.97k]
  ------------------
 1048|  26.7k|        ds_put_utf8(out, c0);
 1049|  26.7k|        return cp;
 1050|  26.7k|    }
 1051|       |
 1052|  6.97k|    if (cp + 2 > end || *cp++ != '\\' || *cp++ != 'u') {
  ------------------
  |  Branch (1052:9): [True: 84, False: 6.89k]
  |  Branch (1052:25): [True: 284, False: 6.60k]
  |  Branch (1052:42): [True: 225, False: 6.38k]
  ------------------
 1053|    593|        ds_clear(out);
 1054|    593|        ds_put_cstr(out, "malformed escaped surrogate pair");
 1055|    593|        return NULL;
 1056|    593|    }
 1057|       |
 1058|  6.38k|    error = json_lex_4hex(cp, end, &c1);
 1059|  6.38k|    if (error) {
  ------------------
  |  Branch (1059:9): [True: 727, False: 5.65k]
  ------------------
 1060|    727|        ds_clear(out);
 1061|    727|        ds_put_cstr(out, error);
 1062|    727|        return NULL;
 1063|    727|    }
 1064|  5.65k|    cp += 4;
 1065|  5.65k|    if (!uc_is_trailing_surrogate(c1)) {
  ------------------
  |  Branch (1065:9): [True: 234, False: 5.42k]
  ------------------
 1066|    234|        ds_clear(out);
 1067|    234|        ds_put_cstr(out, "second half of escaped surrogate pair is not "
 1068|    234|                    "trailing surrogate");
 1069|    234|        return NULL;
 1070|    234|    }
 1071|       |
 1072|  5.42k|    ds_put_utf8(out, utf16_decode_surrogate_pair(c0, c1));
 1073|  5.42k|    return cp;
 1074|  5.65k|}
json.c:json_lex_4hex:
 1015|  40.8k|{
 1016|  40.8k|    unsigned int value;
 1017|  40.8k|    bool ok;
 1018|       |
 1019|  40.8k|    if (cp + 4 > end) {
  ------------------
  |  Branch (1019:9): [True: 468, False: 40.4k]
  ------------------
 1020|    468|        return "quoted string ends within \\u escape";
 1021|    468|    }
 1022|       |
 1023|  40.4k|    value = hexits_value(cp, 4, &ok);
 1024|  40.4k|    if (!ok) {
  ------------------
  |  Branch (1024:9): [True: 597, False: 39.8k]
  ------------------
 1025|    597|        return "malformed \\u escape";
 1026|    597|    }
 1027|  39.8k|    if (!value) {
  ------------------
  |  Branch (1027:9): [True: 457, False: 39.3k]
  ------------------
 1028|    457|        return "null bytes not supported in quoted strings";
 1029|    457|    }
 1030|  39.3k|    *valuep = value;
 1031|       |    return NULL;
 1032|  39.8k|}

learn_check:
   42|  33.5k|{
   43|  33.5k|    const struct ofpact_learn_spec *spec;
   44|  33.5k|    struct match dst_match;
   45|       |
   46|  33.5k|    match_init_catchall(&dst_match);
   47|  49.4k|    OFPACT_LEARN_SPEC_FOR_EACH (spec, learn) {
  ------------------
  |  |  900|  33.5k|    for ((SPEC) = (LEARN)->specs;               \
  |  |  901|  82.9k|         (SPEC) < ofpact_learn_spec_end(LEARN); \
  |  |  ------------------
  |  |  |  Branch (901:10): [True: 49.4k, False: 33.4k]
  |  |  ------------------
  |  |  902|  49.4k|         (SPEC) = ofpact_learn_spec_next(SPEC))
  ------------------
   48|  49.4k|        enum ofperr error;
   49|       |
   50|       |        /* Check the source. */
   51|  49.4k|        if (spec->src_type == NX_LEARN_SRC_FIELD) {
  ------------------
  |  |  821|  49.4k|#define NX_LEARN_SRC_FIELD     (0 << 13) /* Copy from field. */
  ------------------
  |  Branch (51:13): [True: 2.06k, False: 47.4k]
  ------------------
   52|  2.06k|            error = mf_check_src(&spec->src, src_match);
   53|  2.06k|            if (error) {
  ------------------
  |  Branch (53:17): [True: 45, False: 2.02k]
  ------------------
   54|     45|                return error;
   55|     45|            }
   56|  2.06k|        }
   57|       |
   58|       |        /* Check the destination. */
   59|  49.4k|        switch (spec->dst_type) {
  ------------------
  |  Branch (59:17): [True: 49.4k, False: 0]
  ------------------
   60|  48.8k|        case NX_LEARN_DST_MATCH:
  ------------------
  |  |  825|  48.8k|#define NX_LEARN_DST_MATCH     (0 << 11) /* Add match criterion. */
  ------------------
  |  Branch (60:9): [True: 48.8k, False: 637]
  ------------------
   61|  48.8k|            error = mf_check_src(&spec->dst, &dst_match);
   62|  48.8k|            if (error) {
  ------------------
  |  Branch (62:17): [True: 20, False: 48.7k]
  ------------------
   63|     20|                return error;
   64|     20|            }
   65|  48.7k|            if (spec->src_type & NX_LEARN_SRC_IMMEDIATE) {
  ------------------
  |  |  822|  48.7k|#define NX_LEARN_SRC_IMMEDIATE (1 << 13) /* Copy from immediate value. */
  ------------------
  |  Branch (65:17): [True: 47.1k, False: 1.60k]
  ------------------
   66|  47.1k|                mf_write_subfield_value(&spec->dst,
   67|  47.1k|                                        ofpact_learn_spec_imm(spec),
   68|  47.1k|                                        &dst_match);
   69|  47.1k|            }
   70|  48.7k|            break;
   71|       |
   72|    375|        case NX_LEARN_DST_LOAD:
  ------------------
  |  |  826|    375|#define NX_LEARN_DST_LOAD      (1 << 11) /* Add NXAST_REG_LOAD action. */
  ------------------
  |  Branch (72:9): [True: 375, False: 49.0k]
  ------------------
   73|    375|            error = mf_check_dst(&spec->dst, &dst_match);
   74|    375|            if (error) {
  ------------------
  |  Branch (74:17): [True: 1, False: 374]
  ------------------
   75|      1|                return error;
   76|      1|            }
   77|    374|            break;
   78|       |
   79|    374|        case NX_LEARN_DST_OUTPUT:
  ------------------
  |  |  827|    262|#define NX_LEARN_DST_OUTPUT    (2 << 11) /* Add OFPAT_OUTPUT action. */
  ------------------
  |  Branch (79:9): [True: 262, False: 49.1k]
  ------------------
   80|       |            /* Nothing to do. */
   81|    262|            break;
   82|  49.4k|        }
   83|  49.4k|    }
   84|  33.4k|    return 0;
   85|  33.5k|}
learn_parse:
  480|  36.2k|{
  481|  36.2k|    char *orig = xstrdup(arg);
  482|  36.2k|    char *error = learn_parse__(orig, arg, port_map, table_map, ofpacts);
  483|  36.2k|    free(orig);
  484|  36.2k|    return error;
  485|  36.2k|}
learn.c:learn_parse__:
  390|  36.2k|{
  391|  36.2k|    struct ofpact_learn *learn;
  392|  36.2k|    char *name, *value;
  393|       |
  394|  36.2k|    learn = ofpact_put_LEARN(ofpacts);
  395|  36.2k|    learn->idle_timeout = OFP_FLOW_PERMANENT;
  ------------------
  |  |  135|  36.2k|#define OFP_FLOW_PERMANENT 0
  ------------------
  396|  36.2k|    learn->hard_timeout = OFP_FLOW_PERMANENT;
  ------------------
  |  |  135|  36.2k|#define OFP_FLOW_PERMANENT 0
  ------------------
  397|  36.2k|    learn->priority = OFP_DEFAULT_PRIORITY;
  ------------------
  |  |  138|  36.2k|#define OFP_DEFAULT_PRIORITY 0x8000
  ------------------
  398|  36.2k|    learn->table_id = 1;
  399|       |
  400|  99.3k|    while (ofputil_parse_key_value(&arg, &name, &value)) {
  ------------------
  |  Branch (400:12): [True: 64.0k, False: 35.3k]
  ------------------
  401|  64.0k|        if (!strcmp(name, "table")) {
  ------------------
  |  Branch (401:13): [True: 876, False: 63.1k]
  ------------------
  402|    876|            if (!ofputil_table_from_string(value, table_map,
  ------------------
  |  Branch (402:17): [True: 1, False: 875]
  ------------------
  403|    876|                                           &learn->table_id)) {
  404|      1|                return xasprintf("unknown table \"%s\"", value);
  405|    875|            } else if (learn->table_id == 255) {
  ------------------
  |  Branch (405:24): [True: 1, False: 874]
  ------------------
  406|      1|                return xasprintf("%s: table id 255 not valid for `learn' "
  407|      1|                                 "action", orig);
  408|      1|            }
  409|  63.1k|        } else if (!strcmp(name, "priority")) {
  ------------------
  |  Branch (409:20): [True: 437, False: 62.6k]
  ------------------
  410|    437|            learn->priority = atoi(value);
  411|  62.6k|        } else if (!strcmp(name, "idle_timeout")) {
  ------------------
  |  Branch (411:20): [True: 132, False: 62.5k]
  ------------------
  412|    132|            learn->idle_timeout = atoi(value);
  413|  62.5k|        } else if (!strcmp(name, "hard_timeout")) {
  ------------------
  |  Branch (413:20): [True: 489, False: 62.0k]
  ------------------
  414|    489|            learn->hard_timeout = atoi(value);
  415|  62.0k|        } else if (!strcmp(name, "fin_idle_timeout")) {
  ------------------
  |  Branch (415:20): [True: 1.33k, False: 60.7k]
  ------------------
  416|  1.33k|            learn->fin_idle_timeout = atoi(value);
  417|  60.7k|        } else if (!strcmp(name, "fin_hard_timeout")) {
  ------------------
  |  Branch (417:20): [True: 124, False: 60.6k]
  ------------------
  418|    124|            learn->fin_hard_timeout = atoi(value);
  419|  60.6k|        } else if (!strcmp(name, "cookie")) {
  ------------------
  |  Branch (419:20): [True: 1.94k, False: 58.6k]
  ------------------
  420|  1.94k|            learn->cookie = htonll(strtoull(value, NULL, 0));
  421|  58.6k|        } else if (!strcmp(name, "send_flow_rem")) {
  ------------------
  |  Branch (421:20): [True: 195, False: 58.4k]
  ------------------
  422|    195|            learn->flags |= NX_LEARN_F_SEND_FLOW_REM;
  423|  58.4k|        } else if (!strcmp(name, "delete_learned")) {
  ------------------
  |  Branch (423:20): [True: 673, False: 57.8k]
  ------------------
  424|    673|            learn->flags |= NX_LEARN_F_DELETE_LEARNED;
  425|  57.8k|        } else if (!strcmp(name, "limit")) {
  ------------------
  |  Branch (425:20): [True: 675, False: 57.1k]
  ------------------
  426|    675|            learn->limit = atoi(value);
  427|  57.1k|        } else if (!strcmp(name, "result_dst")) {
  ------------------
  |  Branch (427:20): [True: 388, False: 56.7k]
  ------------------
  428|    388|            char *error;
  429|    388|            learn->flags |= NX_LEARN_F_WRITE_RESULT;
  430|    388|            error = mf_parse_subfield(&learn->result_dst, value);
  431|    388|            if (error) {
  ------------------
  |  Branch (431:17): [True: 1, False: 387]
  ------------------
  432|      1|                return error;
  433|      1|            }
  434|    387|            if (!learn->result_dst.field->writable) {
  ------------------
  |  Branch (434:17): [True: 1, False: 386]
  ------------------
  435|      1|                return xasprintf("%s is read-only", value);
  436|      1|            }
  437|    386|            if (learn->result_dst.n_bits != 1) {
  ------------------
  |  Branch (437:17): [True: 1, False: 385]
  ------------------
  438|      1|                return xasprintf("result_dst in 'learn' action must be a "
  439|      1|                                 "single bit");
  440|      1|            }
  441|  56.7k|        } else {
  442|  56.7k|            struct ofpact_learn_spec *spec;
  443|  56.7k|            char *error;
  444|       |
  445|  56.7k|            spec = ofpbuf_put_zeros(ofpacts, sizeof *spec);
  446|  56.7k|            error = learn_parse_spec(orig, name, value, port_map,
  447|  56.7k|                                     spec, ofpacts);
  448|  56.7k|            if (error) {
  ------------------
  |  Branch (448:17): [True: 960, False: 55.7k]
  ------------------
  449|    960|                return error;
  450|    960|            }
  451|  55.7k|            learn = ofpacts->header;
  452|  55.7k|        }
  453|  64.0k|    }
  454|       |
  455|  35.3k|    if (ofpbuf_oversized(ofpacts)) {
  ------------------
  |  Branch (455:9): [True: 2, False: 35.3k]
  ------------------
  456|      2|        return xasprintf("input too big");
  457|      2|    }
  458|       |
  459|  35.3k|    ofpact_finish_LEARN(ofpacts, &learn);
  460|       |
  461|       |    return NULL;
  462|  35.3k|}
learn.c:learn_parse_spec:
  245|  56.7k|{
  246|       |    /* Parse destination and check prerequisites. */
  247|  56.7k|    struct mf_subfield dst;
  248|       |
  249|  56.7k|    char *error = mf_parse_subfield(&dst, name);
  250|  56.7k|    bool parse_error = error != NULL;
  251|  56.7k|    free(error);
  252|       |
  253|  56.7k|    if (!parse_error) {
  ------------------
  |  Branch (253:9): [True: 54.0k, False: 2.71k]
  ------------------
  254|  54.0k|        if (!mf_nxm_header(dst.field->id)) {
  ------------------
  |  Branch (254:13): [True: 5, False: 54.0k]
  ------------------
  255|      5|            return xasprintf("%s: experimenter OXM field '%s' not supported",
  256|      5|                             orig, name);
  257|      5|        }
  258|  54.0k|        spec->dst = dst;
  259|  54.0k|        spec->n_bits = dst.n_bits;
  260|  54.0k|        spec->dst_type = NX_LEARN_DST_MATCH;
  ------------------
  |  |  825|  54.0k|#define NX_LEARN_DST_MATCH     (0 << 11) /* Add match criterion. */
  ------------------
  261|       |
  262|       |        /* Parse source and check prerequisites. */
  263|  54.0k|        if (value[0] != '\0') {
  ------------------
  |  Branch (263:13): [True: 51.9k, False: 2.02k]
  ------------------
  264|  51.9k|            struct mf_subfield src;
  265|  51.9k|            error = mf_parse_subfield(&src, value);
  266|  51.9k|            if (error) {
  ------------------
  |  Branch (266:17): [True: 51.7k, False: 207]
  ------------------
  267|  51.7k|                union mf_value imm;
  268|  51.7k|                char *imm_error = NULL;
  269|       |
  270|       |                /* Try an immediate value. */
  271|  51.7k|                if (dst.ofs == 0 && dst.n_bits == dst.field->n_bits) {
  ------------------
  |  Branch (271:21): [True: 42.7k, False: 9.08k]
  |  Branch (271:37): [True: 32.4k, False: 10.2k]
  ------------------
  272|       |                    /* Full field value. */
  273|  32.4k|                    imm_error = mf_parse_value(dst.field, value, port_map,
  274|  32.4k|                                               &imm);
  275|  32.4k|                } else {
  276|  19.2k|                    char *tail;
  277|       |                    /* Partial field value. */
  278|  19.2k|                    if (parse_int_string(value, imm.b,
  ------------------
  |  Branch (278:25): [True: 6, False: 19.2k]
  ------------------
  279|  19.2k|                                          dst.field->n_bytes, &tail)
  280|  19.2k|                        || *tail != 0) {
  ------------------
  |  Branch (280:28): [True: 5, False: 19.2k]
  ------------------
  281|     11|                        imm_error = xasprintf("%s: cannot parse integer value", orig);
  282|     11|                    }
  283|       |
  284|  19.2k|                    if (!imm_error &&
  ------------------
  |  Branch (284:25): [True: 19.2k, False: 11]
  ------------------
  285|  19.2k|                        !bitwise_is_all_zeros(imm.b, dst.field->n_bytes,
  ------------------
  |  Branch (285:25): [True: 2, False: 19.2k]
  ------------------
  286|  19.2k|                                              dst.n_bits,
  287|  19.2k|                                              dst.field->n_bytes * 8 - dst.n_bits)) {
  288|      2|                        struct ds ds;
  289|       |
  290|      2|                        ds_init(&ds);
  291|      2|                        mf_format(dst.field, &imm, NULL, NULL, &ds);
  292|      2|                        imm_error = xasprintf("%s: value %s does not fit into %d bits",
  293|      2|                                              orig, ds_cstr(&ds), dst.n_bits);
  294|      2|                        ds_destroy(&ds);
  295|      2|                    }
  296|  19.2k|                }
  297|  51.7k|                if (imm_error) {
  ------------------
  |  Branch (297:21): [True: 33, False: 51.7k]
  ------------------
  298|     33|                    char *err = xasprintf("%s: %s value %s cannot be parsed as a subfield (%s) or an immediate value (%s)",
  299|     33|                                          orig, name, value, error, imm_error);
  300|     33|                    free(error);
  301|     33|                    free(imm_error);
  302|     33|                    return err;
  303|     33|                }
  304|       |
  305|  51.7k|                spec->src_type = NX_LEARN_SRC_IMMEDIATE;
  ------------------
  |  |  822|  51.7k|#define NX_LEARN_SRC_IMMEDIATE (1 << 13) /* Copy from immediate value. */
  ------------------
  306|       |
  307|       |                /* Push value last, as this may reallocate 'spec'! */
  308|  51.7k|                unsigned int imm_bytes = DIV_ROUND_UP(dst.n_bits, 8);
  ------------------
  |  |  300|  51.7k|#define DIV_ROUND_UP(X, Y) (((X) + ((Y) - 1)) / (Y))
  ------------------
  309|  51.7k|                uint8_t *src_imm = ofpbuf_put_zeros(ofpacts,
  310|  51.7k|                                                    OFPACT_ALIGN(imm_bytes));
  ------------------
  |  |  205|  51.7k|#define OFPACT_ALIGN(SIZE) ROUND_UP(SIZE, OFPACT_ALIGNTO)
  |  |  ------------------
  |  |  |  |  303|  51.7k|#define ROUND_UP(X, Y) (DIV_ROUND_UP(X, Y) * (Y))
  |  |  |  |  ------------------
  |  |  |  |  |  |  300|  51.7k|#define DIV_ROUND_UP(X, Y) (((X) + ((Y) - 1)) / (Y))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  311|       |
  312|  51.7k|                memcpy(src_imm, &imm.b[dst.field->n_bytes - imm_bytes],
  313|  51.7k|                       imm_bytes);
  314|       |
  315|  51.7k|                free(error);
  316|  51.7k|                return NULL;
  317|  51.7k|            }
  318|    207|            spec->src = src;
  319|    207|            if (spec->src.n_bits != spec->dst.n_bits) {
  ------------------
  |  Branch (319:17): [True: 4, False: 203]
  ------------------
  320|      4|                return xasprintf("%s: bit widths of %s (%u) and %s (%u) "
  321|      4|                                 "differ", orig, name, spec->src.n_bits, value,
  322|      4|                                 spec->dst.n_bits);
  323|      4|            }
  324|  2.02k|        } else {
  325|  2.02k|            spec->src = spec->dst;
  326|  2.02k|        }
  327|       |
  328|  2.23k|        spec->src_type = NX_LEARN_SRC_FIELD;
  ------------------
  |  |  821|  2.23k|#define NX_LEARN_SRC_FIELD     (0 << 13) /* Copy from field. */
  ------------------
  329|  2.71k|    } else if (!strcmp(name, "load")) {
  ------------------
  |  Branch (329:16): [True: 937, False: 1.78k]
  ------------------
  330|    937|        union mf_subvalue imm;
  331|    937|        char *tail;
  332|    937|        char *dst_value = strstr(value, "->");
  333|       |
  334|    937|        if (dst_value == value) {
  ------------------
  |  Branch (334:13): [True: 1, False: 936]
  ------------------
  335|      1|            return xasprintf("%s: missing source before `->' in `%s'", name,
  336|      1|                             value);
  337|      1|        }
  338|    936|        if (!dst_value) {
  ------------------
  |  Branch (338:13): [True: 1, False: 935]
  ------------------
  339|      1|            return xasprintf("%s: missing `->' in `%s'", name, value);
  340|      1|        }
  341|       |
  342|    935|        if (!parse_int_string(value, imm.u8, sizeof imm.u8, (char **) &tail)
  ------------------
  |  Branch (342:13): [True: 384, False: 551]
  ------------------
  343|    384|            && tail != value) {
  ------------------
  |  Branch (343:16): [True: 384, False: 0]
  ------------------
  344|    384|            if (tail != dst_value) {
  ------------------
  |  Branch (344:17): [True: 2, False: 382]
  ------------------
  345|      2|                return xasprintf("%s: garbage before `->' in `%s'",
  346|      2|                                 name, value);
  347|      2|            }
  348|       |
  349|    382|            error = learn_parse_load_immediate(&imm, dst_value + 2, value, spec,
  350|    382|                                               ofpacts);
  351|    382|            if (error) {
  ------------------
  |  Branch (351:17): [True: 7, False: 375]
  ------------------
  352|      7|                return error;
  353|      7|            }
  354|    551|        } else {
  355|    551|            struct ofpact_reg_move move;
  356|       |
  357|    551|            error = nxm_parse_reg_move(&move, value);
  358|    551|            if (error) {
  ------------------
  |  Branch (358:17): [True: 12, False: 539]
  ------------------
  359|     12|                return error;
  360|     12|            }
  361|       |
  362|    539|            spec->n_bits = move.src.n_bits;
  363|    539|            spec->src_type = NX_LEARN_SRC_FIELD;
  ------------------
  |  |  821|    539|#define NX_LEARN_SRC_FIELD     (0 << 13) /* Copy from field. */
  ------------------
  364|    539|            spec->src = move.src;
  365|    539|            spec->dst_type = NX_LEARN_DST_LOAD;
  ------------------
  |  |  826|    539|#define NX_LEARN_DST_LOAD      (1 << 11) /* Add NXAST_REG_LOAD action. */
  ------------------
  366|    539|            spec->dst = move.dst;
  367|    539|        }
  368|  1.78k|    } else if (!strcmp(name, "output")) {
  ------------------
  |  Branch (368:16): [True: 886, False: 894]
  ------------------
  369|    886|        error = mf_parse_subfield(&spec->src, value);
  370|    886|        if (error) {
  ------------------
  |  Branch (370:13): [True: 1, False: 885]
  ------------------
  371|      1|            return error;
  372|      1|        }
  373|       |
  374|    885|        spec->n_bits = spec->src.n_bits;
  375|    885|        spec->src_type = NX_LEARN_SRC_FIELD;
  ------------------
  |  |  821|    885|#define NX_LEARN_SRC_FIELD     (0 << 13) /* Copy from field. */
  ------------------
  376|    885|        spec->dst_type = NX_LEARN_DST_OUTPUT;
  ------------------
  |  |  827|    885|#define NX_LEARN_DST_OUTPUT    (2 << 11) /* Add OFPAT_OUTPUT action. */
  ------------------
  377|    894|    } else {
  378|    894|        return xasprintf("%s: unknown keyword %s", orig, name);
  379|    894|    }
  380|       |
  381|  4.03k|    return NULL;
  382|  56.7k|}
learn.c:learn_parse_load_immediate:
  206|    382|{
  207|    382|    struct mf_subfield dst;
  208|    382|    char *error;
  209|       |
  210|    382|    error = mf_parse_subfield(&dst, s);
  211|    382|    if (error) {
  ------------------
  |  Branch (211:9): [True: 5, False: 377]
  ------------------
  212|      5|        return error;
  213|      5|    }
  214|    377|    if (!mf_nxm_header(dst.field->id)) {
  ------------------
  |  Branch (214:9): [True: 1, False: 376]
  ------------------
  215|      1|        return xasprintf("%s: experimenter OXM field '%s' not supported",
  216|      1|                         full_s, s);
  217|      1|    }
  218|       |
  219|    376|    if (!bitwise_is_all_zeros(imm, sizeof *imm, dst.n_bits,
  ------------------
  |  Branch (219:9): [True: 1, False: 375]
  ------------------
  220|    376|                              (8 * sizeof *imm) - dst.n_bits)) {
  221|      1|        return xasprintf("%s: value does not fit into %u bits",
  222|      1|                         full_s, dst.n_bits);
  223|      1|    }
  224|       |
  225|    375|    spec->n_bits = dst.n_bits;
  226|    375|    spec->src_type = NX_LEARN_SRC_IMMEDIATE;
  ------------------
  |  |  822|    375|#define NX_LEARN_SRC_IMMEDIATE (1 << 13) /* Copy from immediate value. */
  ------------------
  227|    375|    spec->dst_type = NX_LEARN_DST_LOAD;
  ------------------
  |  |  826|    375|#define NX_LEARN_DST_LOAD      (1 << 11) /* Add NXAST_REG_LOAD action. */
  ------------------
  228|    375|    spec->dst = dst;
  229|       |
  230|       |    /* Push value last, as this may reallocate 'spec'! */
  231|    375|    unsigned int n_bytes = DIV_ROUND_UP(dst.n_bits, 8);
  ------------------
  |  |  300|    375|#define DIV_ROUND_UP(X, Y) (((X) + ((Y) - 1)) / (Y))
  ------------------
  232|    375|    uint8_t *src_imm = ofpbuf_put_zeros(ofpacts, OFPACT_ALIGN(n_bytes));
  ------------------
  |  |  205|    375|#define OFPACT_ALIGN(SIZE) ROUND_UP(SIZE, OFPACT_ALIGNTO)
  |  |  ------------------
  |  |  |  |  303|    375|#define ROUND_UP(X, Y) (DIV_ROUND_UP(X, Y) * (Y))
  |  |  |  |  ------------------
  |  |  |  |  |  |  300|    375|#define DIV_ROUND_UP(X, Y) (((X) + ((Y) - 1)) / (Y))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  233|    375|    memcpy(src_imm, &imm->u8[sizeof imm->u8 - n_bytes], n_bytes);
  234|       |
  235|       |    return NULL;
  236|    376|}

match_init_catchall:
   60|  33.5k|{
   61|  33.5k|    memset(&match->flow, 0, sizeof match->flow);
   62|  33.5k|    flow_wildcards_init_catchall(&match->wc);
   63|  33.5k|    memset(&match->tun_md, 0, sizeof match->tun_md);
   64|  33.5k|}
match_zero_wildcarded_fields:
   76|    407|{
   77|    407|    flow_zero_wildcards(&match->flow, &match->wc);
   78|    407|}
match_set_dp_hash:
   82|    477|{
   83|       |    match_set_dp_hash_masked(match, value, UINT32_MAX);
   84|    477|}
match_set_dp_hash_masked:
   88|    546|{
   89|    546|    match->wc.masks.dp_hash = mask;
   90|    546|    match->flow.dp_hash = value & mask;
   91|    546|}
match_set_recirc_id:
   95|    216|{
   96|    216|    match->flow.recirc_id = value;
   97|       |    match->wc.masks.recirc_id = UINT32_MAX;
   98|    216|}
match_set_conj_id:
  102|    368|{
  103|    368|    match->flow.conj_id = value;
  104|       |    match->wc.masks.conj_id = UINT32_MAX;
  105|    368|}
match_set_reg:
  109|  14.0k|{
  110|       |    match_set_reg_masked(match, reg_idx, value, UINT32_MAX);
  111|  14.0k|}
match_set_reg_masked:
  116|  39.2k|{
  117|  39.2k|    ovs_assert(reg_idx < FLOW_N_REGS);
  ------------------
  |  |   62|  39.2k|#define ovs_assert ovs_ignore
  ------------------
                  ovs_assert(reg_idx < FLOW_N_REGS);
  ------------------
  |  |   33|  39.2k|#define FLOW_N_REGS 32
  ------------------
  118|  39.2k|    flow_wildcards_set_reg_mask(&match->wc, reg_idx, mask);
  119|  39.2k|    match->flow.regs[reg_idx] = value & mask;
  120|  39.2k|}
match_set_xreg:
  124|  6.37k|{
  125|       |    match_set_xreg_masked(match, xreg_idx, value, UINT64_MAX);
  126|  6.37k|}
match_set_xreg_masked:
  131|  19.8k|{
  132|  19.8k|    ovs_assert(xreg_idx < FLOW_N_XREGS);
  ------------------
  |  |   62|  19.8k|#define ovs_assert ovs_ignore
  ------------------
                  ovs_assert(xreg_idx < FLOW_N_XREGS);
  ------------------
  |  |   41|  19.8k|#define FLOW_N_XREGS (FLOW_N_REGS / 2)
  |  |  ------------------
  |  |  |  |   33|  19.8k|#define FLOW_N_REGS 32
  |  |  ------------------
  ------------------
  133|  19.8k|    flow_wildcards_set_xreg_mask(&match->wc, xreg_idx, mask);
  134|  19.8k|    flow_set_xreg(&match->flow, xreg_idx, value & mask);
  135|  19.8k|}
match_set_xxreg:
  139|  4.52k|{
  140|  4.52k|    match_set_xxreg_masked(match, xxreg_idx, value, OVS_U128_MAX);
  141|  4.52k|}
match_set_xxreg_masked:
  146|  10.7k|{
  147|  10.7k|    ovs_assert(xxreg_idx < FLOW_N_XXREGS);
  ------------------
  |  |   62|  10.7k|#define ovs_assert ovs_ignore
  ------------------
                  ovs_assert(xxreg_idx < FLOW_N_XXREGS);
  ------------------
  |  |   47|  10.7k|#define FLOW_N_XXREGS (FLOW_N_REGS / 4)
  |  |  ------------------
  |  |  |  |   33|  10.7k|#define FLOW_N_REGS 32
  |  |  ------------------
  ------------------
  148|  10.7k|    flow_wildcards_set_xxreg_mask(&match->wc, xxreg_idx, mask);
  149|  10.7k|    flow_set_xxreg(&match->flow, xxreg_idx, ovs_u128_and(value, mask));
  150|  10.7k|}
match_set_actset_output:
  154|    732|{
  155|       |    match->wc.masks.actset_output = u16_to_ofp(UINT16_MAX);
  156|    732|    match->flow.actset_output = actset_output;
  157|    732|}
match_set_metadata:
  161|    283|{
  162|    283|    match_set_metadata_masked(match, metadata, OVS_BE64_MAX);
  ------------------
  |  |   44|    283|#define OVS_BE64_MAX ((OVS_FORCE ovs_be64) 0xffffffffffffffffULL)
  ------------------
  163|    283|}
match_set_metadata_masked:
  168|    802|{
  169|    802|    match->wc.masks.metadata = mask;
  170|    802|    match->flow.metadata = metadata & mask;
  171|    802|}
match_set_tun_id:
  175|    366|{
  176|    366|    match_set_tun_id_masked(match, tun_id, OVS_BE64_MAX);
  ------------------
  |  |   44|    366|#define OVS_BE64_MAX ((OVS_FORCE ovs_be64) 0xffffffffffffffffULL)
  ------------------
  177|    366|}
match_set_tun_id_masked:
  181|    879|{
  182|    879|    match->wc.masks.tunnel.tun_id = mask;
  183|    879|    match->flow.tunnel.tun_id = tun_id & mask;
  184|    879|}
match_set_tun_src:
  188|    226|{
  189|    226|    match_set_tun_src_masked(match, src, OVS_BE32_MAX);
  ------------------
  |  |   43|    226|#define OVS_BE32_MAX ((OVS_FORCE ovs_be32) 0xffffffff)
  ------------------
  190|    226|}
match_set_tun_src_masked:
  194|    623|{
  195|    623|    match->wc.masks.tunnel.ip_src = mask;
  196|    623|    match->flow.tunnel.ip_src = src & mask;
  197|    623|}
match_set_tun_dst:
  201|    178|{
  202|    178|    match_set_tun_dst_masked(match, dst, OVS_BE32_MAX);
  ------------------
  |  |   43|    178|#define OVS_BE32_MAX ((OVS_FORCE ovs_be32) 0xffffffff)
  ------------------
  203|    178|}
match_set_tun_dst_masked:
  207|    684|{
  208|    684|    match->wc.masks.tunnel.ip_dst = mask;
  209|    684|    match->flow.tunnel.ip_dst = dst & mask;
  210|    684|}
match_set_tun_ipv6_src:
  214|    227|{
  215|    227|    match->flow.tunnel.ipv6_src = *src;
  216|    227|    match->wc.masks.tunnel.ipv6_src = in6addr_exact;
  217|    227|}
match_set_tun_ipv6_src_masked:
  222|     67|{
  223|     67|    match->flow.tunnel.ipv6_src = ipv6_addr_bitand(src, mask);
  224|     67|    match->wc.masks.tunnel.ipv6_src = *mask;
  225|     67|}
match_set_tun_ipv6_dst:
  229|    191|{
  230|    191|    match->flow.tunnel.ipv6_dst = *dst;
  231|    191|    match->wc.masks.tunnel.ipv6_dst = in6addr_exact;
  232|    191|}
match_set_tun_ipv6_dst_masked:
  237|    220|{
  238|    220|    match->flow.tunnel.ipv6_dst = ipv6_addr_bitand(dst, mask);
  239|    220|    match->wc.masks.tunnel.ipv6_dst = *mask;
  240|    220|}
match_set_tun_ttl:
  244|    281|{
  245|       |    match_set_tun_ttl_masked(match, ttl, UINT8_MAX);
  246|    281|}
match_set_tun_ttl_masked:
  250|  1.20k|{
  251|  1.20k|    match->wc.masks.tunnel.ip_ttl = mask;
  252|  1.20k|    match->flow.tunnel.ip_ttl = ttl & mask;
  253|  1.20k|}
match_set_tun_tos:
  257|    232|{
  258|       |    match_set_tun_tos_masked(match, tos, UINT8_MAX);
  259|    232|}
match_set_tun_tos_masked:
  263|    642|{
  264|    642|    match->wc.masks.tunnel.ip_tos = mask;
  265|    642|    match->flow.tunnel.ip_tos = tos & mask;
  266|    642|}
match_set_tun_flags:
  270|    307|{
  271|       |    match_set_tun_flags_masked(match, flags, UINT16_MAX);
  272|    307|}
match_set_tun_flags_masked:
  276|    833|{
  277|    833|    mask &= FLOW_TNL_PUB_F_MASK;
  ------------------
  |  |   58|    833|#define FLOW_TNL_PUB_F_MASK ((1 << 1) - 1)
  ------------------
  278|       |
  279|    833|    match->wc.masks.tunnel.flags = mask;
  280|    833|    match->flow.tunnel.flags = flags & mask;
  281|    833|}
match_set_tun_gbp_id_masked:
  298|    635|{
  299|    635|    match->wc.masks.tunnel.gbp_id = mask;
  300|    635|    match->flow.tunnel.gbp_id = gbp_id & mask;
  301|    635|}
match_set_tun_gbp_id:
  305|    192|{
  306|    192|    match_set_tun_gbp_id_masked(match, gbp_id, OVS_BE16_MAX);
  ------------------
  |  |   42|    192|#define OVS_BE16_MAX ((OVS_FORCE ovs_be16) 0xffff)
  ------------------
  307|    192|}
match_set_tun_gbp_flags_masked:
  311|    649|{
  312|    649|    match->wc.masks.tunnel.gbp_flags = mask;
  313|    649|    match->flow.tunnel.gbp_flags = flags & mask;
  314|    649|}
match_set_tun_gbp_flags:
  318|    210|{
  319|       |    match_set_tun_gbp_flags_masked(match, flags, UINT8_MAX);
  320|    210|}
match_set_tun_erspan_ver_masked:
  324|    273|{
  325|    273|    match->wc.masks.tunnel.erspan_ver = ver;
  326|    273|    match->flow.tunnel.erspan_ver = ver & mask;
  327|    273|}
match_set_tun_erspan_idx_masked:
  338|    130|{
  339|    130|    match->wc.masks.tunnel.erspan_idx = mask;
  340|    130|    match->flow.tunnel.erspan_idx = erspan_idx & mask;
  341|    130|}
match_set_tun_erspan_dir_masked:
  352|    265|{
  353|    265|    match->wc.masks.tunnel.erspan_dir = dir;
  354|    265|    match->flow.tunnel.erspan_dir = dir & mask;
  355|    265|}
match_set_tun_gtpu_flags_masked:
  380|    740|{
  381|    740|    match->wc.masks.tunnel.gtpu_flags = flags;
  382|    740|    match->flow.tunnel.gtpu_flags = flags & mask;
  383|    740|}
match_set_tun_gtpu_flags:
  387|    294|{
  388|       |    match_set_tun_gtpu_flags_masked(match, flags, UINT8_MAX);
  389|    294|}
match_set_in_port:
  407|    745|{
  408|       |    match->wc.masks.in_port.ofp_port = u16_to_ofp(UINT16_MAX);
  409|    745|    match->flow.in_port.ofp_port = ofp_port;
  410|    745|}
match_set_pkt_mark:
  421|    261|{
  422|       |    match_set_pkt_mark_masked(match, pkt_mark, UINT32_MAX);
  423|    261|}
match_set_pkt_mark_masked:
  427|    452|{
  428|    452|    match->flow.pkt_mark = pkt_mark & mask;
  429|    452|    match->wc.masks.pkt_mark = mask;
  430|    452|}
match_set_ct_state:
  434|    530|{
  435|       |    match_set_ct_state_masked(match, ct_state, UINT32_MAX);
  436|    530|}
match_set_ct_state_masked:
  440|  1.06k|{
  441|  1.06k|    match->flow.ct_state = ct_state & mask & UINT8_MAX;
  442|       |    match->wc.masks.ct_state = mask & UINT8_MAX;
  443|  1.06k|}
match_set_ct_zone:
  447|    230|{
  448|       |    match_set_ct_zone_masked(match, ct_zone, UINT16_MAX);
  449|    230|}
match_set_ct_zone_masked:
  453|    230|{
  454|    230|    match->flow.ct_zone = ct_zone & mask;
  455|    230|    match->wc.masks.ct_zone = mask;
  456|    230|}
match_set_ct_mark:
  460|  1.34k|{
  461|       |    match_set_ct_mark_masked(match, ct_mark, UINT32_MAX);
  462|  1.34k|}
match_set_ct_mark_masked:
  467|  3.39k|{
  468|  3.39k|    match->flow.ct_mark = ct_mark & mask;
  469|  3.39k|    match->wc.masks.ct_mark = mask;
  470|  3.39k|}
match_set_ct_label:
  474|    206|{
  475|    206|    ovs_u128 mask;
  476|       |
  477|    206|    mask.u64.lo = UINT64_MAX;
  478|       |    mask.u64.hi = UINT64_MAX;
  479|    206|    match_set_ct_label_masked(match, ct_label, mask);
  480|    206|}
match_set_ct_label_masked:
  484|    471|{
  485|    471|    match->flow.ct_label.u64.lo = value.u64.lo & mask.u64.lo;
  486|    471|    match->flow.ct_label.u64.hi = value.u64.hi & mask.u64.hi;
  487|    471|    match->wc.masks.ct_label = mask;
  488|    471|}
match_set_ct_nw_src:
  492|    195|{
  493|    195|    match->flow.ct_nw_src = ct_nw_src;
  494|    195|    match->wc.masks.ct_nw_src = OVS_BE32_MAX;
  ------------------
  |  |   43|    195|#define OVS_BE32_MAX ((OVS_FORCE ovs_be32) 0xffffffff)
  ------------------
  495|    195|}
match_set_ct_nw_src_masked:
  500|    262|{
  501|    262|    match->flow.ct_nw_src = ct_nw_src & mask;
  502|    262|    match->wc.masks.ct_nw_src = mask;
  503|    262|}
match_set_ct_nw_dst:
  507|     98|{
  508|     98|    match->flow.ct_nw_dst = ct_nw_dst;
  509|     98|    match->wc.masks.ct_nw_dst = OVS_BE32_MAX;
  ------------------
  |  |   43|     98|#define OVS_BE32_MAX ((OVS_FORCE ovs_be32) 0xffffffff)
  ------------------
  510|     98|}
match_set_ct_nw_dst_masked:
  515|  1.14k|{
  516|  1.14k|    match->flow.ct_nw_dst = ct_nw_dst & mask;
  517|  1.14k|    match->wc.masks.ct_nw_dst = mask;
  518|  1.14k|}
match_set_ct_nw_proto:
  522|    289|{
  523|    289|    match->flow.ct_nw_proto = ct_nw_proto;
  524|       |    match->wc.masks.ct_nw_proto = UINT8_MAX;
  525|    289|}
match_set_ct_tp_src:
  529|    471|{
  530|    471|    match_set_ct_tp_src_masked(match, ct_tp_src, OVS_BE16_MAX);
  ------------------
  |  |   42|    471|#define OVS_BE16_MAX ((OVS_FORCE ovs_be16) 0xffff)
  ------------------
  531|    471|}
match_set_ct_tp_src_masked:
  535|    708|{
  536|    708|    match->flow.ct_tp_src = port & mask;
  537|    708|    match->wc.masks.ct_tp_src = mask;
  538|    708|}
match_set_ct_tp_dst:
  542|    200|{
  543|    200|    match_set_ct_tp_dst_masked(match, ct_tp_dst, OVS_BE16_MAX);
  ------------------
  |  |   42|    200|#define OVS_BE16_MAX ((OVS_FORCE ovs_be16) 0xffff)
  ------------------
  544|    200|}
match_set_ct_tp_dst_masked:
  548|    464|{
  549|    464|    match->flow.ct_tp_dst = port & mask;
  550|    464|    match->wc.masks.ct_tp_dst = mask;
  551|    464|}
match_set_ct_ipv6_src:
  555|    288|{
  556|    288|    match->flow.ct_ipv6_src = *src;
  557|    288|    match->wc.masks.ct_ipv6_src = in6addr_exact;
  558|    288|}
match_set_ct_ipv6_src_masked:
  563|    204|{
  564|    204|    match->flow.ct_ipv6_src = ipv6_addr_bitand(src, mask);
  565|    204|    match->wc.masks.ct_ipv6_src = *mask;
  566|    204|}
match_set_ct_ipv6_dst:
  570|    266|{
  571|    266|    match->flow.ct_ipv6_dst = *dst;
  572|    266|    match->wc.masks.ct_ipv6_dst = in6addr_exact;
  573|    266|}
match_set_ct_ipv6_dst_masked:
  578|    290|{
  579|    290|    match->flow.ct_ipv6_dst = ipv6_addr_bitand(dst, mask);
  580|    290|    match->wc.masks.ct_ipv6_dst = *mask;
  581|    290|}
match_set_packet_type:
  585|  9.22k|{
  586|  9.22k|    match->flow.packet_type = packet_type;
  587|  9.22k|    match->wc.masks.packet_type = OVS_BE32_MAX;
  ------------------
  |  |   43|  9.22k|#define OVS_BE32_MAX ((OVS_FORCE ovs_be32) 0xffffffff)
  ------------------
  588|  9.22k|}
match_set_default_packet_type:
  594|  70.3k|{
  595|  70.3k|    if (!match->wc.masks.packet_type) {
  ------------------
  |  Branch (595:9): [True: 4.87k, False: 65.4k]
  ------------------
  596|       |        match_set_packet_type(match, htonl(PT_ETH));
  597|  4.87k|    }
  598|  70.3k|}
match_has_default_packet_type:
  604|  9.57k|{
  605|  9.57k|    return (match->flow.packet_type == htonl(PT_ETH)
  ------------------
  |  Branch (605:13): [True: 8.09k, False: 1.48k]
  ------------------
  606|  8.09k|            && match->wc.masks.packet_type == OVS_BE32_MAX);
  ------------------
  |  |   43|  8.09k|#define OVS_BE32_MAX ((OVS_FORCE ovs_be32) 0xffffffff)
  ------------------
  |  Branch (606:16): [True: 5.72k, False: 2.36k]
  ------------------
  607|  9.57k|}
match_add_ethernet_prereq:
  627|   139k|{
  628|   139k|    if (field->prereqs != MFP_NONE) {
  ------------------
  |  Branch (628:9): [True: 54.1k, False: 84.9k]
  ------------------
  629|  54.1k|        match_set_default_packet_type(match);
  630|  54.1k|    }
  631|   139k|}
match_set_dl_type:
  635|  16.6k|{
  636|  16.6k|    match->wc.masks.dl_type = OVS_BE16_MAX;
  ------------------
  |  |   42|  16.6k|#define OVS_BE16_MAX ((OVS_FORCE ovs_be16) 0xffff)
  ------------------
  637|  16.6k|    match->flow.dl_type = dl_type;
  638|  16.6k|}
match_set_dl_src:
  671|    362|{
  672|    362|    set_eth(dl_src, &match->flow.dl_src, &match->wc.masks.dl_src);
  673|    362|}
match_set_dl_src_masked:
  681|    545|{
  682|    545|    set_eth_masked(dl_src, mask, &match->flow.dl_src, &match->wc.masks.dl_src);
  683|    545|}
match_set_dl_dst:
  689|    286|{
  690|    286|    set_eth(dl_dst, &match->flow.dl_dst, &match->wc.masks.dl_dst);
  691|    286|}
match_set_dl_dst_masked:
  702|    202|{
  703|    202|    set_eth_masked(dl_dst, mask, &match->flow.dl_dst, &match->wc.masks.dl_dst);
  704|    202|}
match_set_dl_tci:
  708|    316|{
  709|       |    match_set_dl_tci_masked(match, tci, htons(0xffff));
  710|    316|}
match_set_dl_tci_masked:
  714|  2.12k|{
  715|  2.12k|    match->flow.vlans[0].tci = tci & mask;
  716|  2.12k|    match->wc.masks.vlans[0].tci = mask;
  717|  2.12k|}
match_set_any_vid:
  724|  1.03k|{
  725|  1.03k|    if (match->wc.masks.vlans[0].tci & htons(VLAN_PCP_MASK)) {
  ------------------
  |  Branch (725:9): [True: 554, False: 482]
  ------------------
  726|    554|        match->wc.masks.vlans[0].tci &= ~htons(VLAN_VID_MASK);
  727|    554|        match->flow.vlans[0].tci &= ~htons(VLAN_VID_MASK);
  728|    554|    } else {
  729|    482|        match_set_dl_tci_masked(match, htons(0), htons(0));
  730|    482|    }
  731|  1.03k|}
match_set_dl_vlan:
  743|    574|{
  744|    574|    flow_set_dl_vlan(&match->flow, dl_vlan, id);
  745|    574|    if (dl_vlan == htons(OFP10_VLAN_NONE)) {
  ------------------
  |  Branch (745:9): [True: 217, False: 357]
  ------------------
  746|    217|        match->wc.masks.vlans[id].tci = OVS_BE16_MAX;
  ------------------
  |  |   42|    217|#define OVS_BE16_MAX ((OVS_FORCE ovs_be16) 0xffff)
  ------------------
  747|    357|    } else {
  748|       |        match->wc.masks.vlans[id].tci |= htons(VLAN_VID_MASK | VLAN_CFI);
  749|    357|    }
  750|    574|}
match_set_vlan_vid:
  757|    198|{
  758|       |    match_set_vlan_vid_masked(match, vid, htons(VLAN_VID_MASK | VLAN_CFI));
  759|    198|}
match_set_vlan_vid_masked:
  767|    306|{
  768|    306|    ovs_be16 pcp_mask = htons(VLAN_PCP_MASK);
  769|    306|    ovs_be16 vid_mask = htons(VLAN_VID_MASK | VLAN_CFI);
  770|       |
  771|    306|    mask &= vid_mask;
  772|    306|    flow_set_vlan_vid(&match->flow, vid & mask);
  773|    306|    match->wc.masks.vlans[0].tci =
  774|    306|        mask | (match->wc.masks.vlans[0].tci & pcp_mask);
  775|    306|}
match_set_any_pcp:
  782|  1.05k|{
  783|  1.05k|    if (match->wc.masks.vlans[0].tci & htons(VLAN_VID_MASK)) {
  ------------------
  |  Branch (783:9): [True: 86, False: 967]
  ------------------
  784|     86|        match->wc.masks.vlans[0].tci &= ~htons(VLAN_PCP_MASK);
  785|     86|        match->flow.vlans[0].tci &= ~htons(VLAN_PCP_MASK);
  786|    967|    } else {
  787|    967|        match_set_dl_tci_masked(match, htons(0), htons(0));
  788|    967|    }
  789|  1.05k|}
match_set_dl_vlan_pcp:
  795|    943|{
  796|    943|    flow_set_vlan_pcp(&match->flow, dl_vlan_pcp, id);
  797|       |    match->wc.masks.vlans[id].tci |= htons(VLAN_CFI | VLAN_PCP_MASK);
  798|    943|}
match_set_any_mpls_label:
  811|    186|{
  812|    186|    match->wc.masks.mpls_lse[idx] &= ~htonl(MPLS_LABEL_MASK);
  813|       |    flow_set_mpls_label(&match->flow, idx, htonl(0));
  814|    186|}
match_set_mpls_label:
  820|    202|{
  821|       |    match->wc.masks.mpls_lse[idx] |= htonl(MPLS_LABEL_MASK);
  822|    202|    flow_set_mpls_label(&match->flow, idx, mpls_label);
  823|    202|}
match_set_any_mpls_tc:
  828|    483|{
  829|       |    match->wc.masks.mpls_lse[idx] &= ~htonl(MPLS_TC_MASK);
  830|    483|    flow_set_mpls_tc(&match->flow, idx, 0);
  831|    483|}
match_set_mpls_tc:
  837|    396|{
  838|       |    match->wc.masks.mpls_lse[idx] |= htonl(MPLS_TC_MASK);
  839|    396|    flow_set_mpls_tc(&match->flow, idx, mpls_tc);
  840|    396|}
match_set_any_mpls_bos:
  845|    188|{
  846|       |    match->wc.masks.mpls_lse[idx] &= ~htonl(MPLS_BOS_MASK);
  847|    188|    flow_set_mpls_bos(&match->flow, idx, 0);
  848|    188|}
match_set_mpls_bos:
  854|  1.53k|{
  855|       |    match->wc.masks.mpls_lse[idx] |= htonl(MPLS_BOS_MASK);
  856|  1.53k|    flow_set_mpls_bos(&match->flow, idx, mpls_bos);
  857|  1.53k|}
match_set_any_mpls_ttl:
  862|    172|{
  863|       |    match->wc.masks.mpls_lse[idx] &= ~htonl(MPLS_TTL_MASK);
  864|    172|    flow_set_mpls_ttl(&match->flow, idx, 0);
  865|    172|}
match_set_mpls_ttl:
  871|    210|{
  872|       |    match->wc.masks.mpls_lse[idx] |= htonl(MPLS_TTL_MASK);
  873|    210|    flow_set_mpls_ttl(&match->flow, idx, mpls_ttl);
  874|    210|}
match_set_tp_src:
  886|  1.56k|{
  887|  1.56k|    match_set_tp_src_masked(match, tp_src, OVS_BE16_MAX);
  ------------------
  |  |   42|  1.56k|#define OVS_BE16_MAX ((OVS_FORCE ovs_be16) 0xffff)
  ------------------
  888|  1.56k|}
match_set_tp_src_masked:
  892|  2.61k|{
  893|  2.61k|    match->flow.tp_src = port & mask;
  894|  2.61k|    match->wc.masks.tp_src = mask;
  895|  2.61k|}
match_set_tp_dst:
  899|  1.22k|{
  900|  1.22k|    match_set_tp_dst_masked(match, tp_dst, OVS_BE16_MAX);
  ------------------
  |  |   42|  1.22k|#define OVS_BE16_MAX ((OVS_FORCE ovs_be16) 0xffff)
  ------------------
  901|  1.22k|}
match_set_tp_dst_masked:
  905|  2.03k|{
  906|  2.03k|    match->flow.tp_dst = port & mask;
  907|  2.03k|    match->wc.masks.tp_dst = mask;
  908|  2.03k|}
match_set_tcp_flags:
  912|    404|{
  913|    404|    match_set_tcp_flags_masked(match, flags, OVS_BE16_MAX);
  ------------------
  |  |   42|    404|#define OVS_BE16_MAX ((OVS_FORCE ovs_be16) 0xffff)
  ------------------
  914|    404|}
match_set_tcp_flags_masked:
  918|    801|{
  919|    801|    match->flow.tcp_flags = flags & mask;
  920|    801|    match->wc.masks.tcp_flags = mask;
  921|    801|}
match_set_nw_proto:
  925|  4.72k|{
  926|  4.72k|    match->flow.nw_proto = nw_proto;
  927|       |    match->wc.masks.nw_proto = UINT8_MAX;
  928|  4.72k|}
match_set_nw_src:
  940|    641|{
  941|    641|    match->flow.nw_src = nw_src;
  942|    641|    match->wc.masks.nw_src = OVS_BE32_MAX;
  ------------------
  |  |   43|    641|#define OVS_BE32_MAX ((OVS_FORCE ovs_be32) 0xffffffff)
  ------------------
  943|    641|}
match_set_nw_src_masked:
  948|  1.11k|{
  949|  1.11k|    match->flow.nw_src = nw_src & mask;
  950|  1.11k|    match->wc.masks.nw_src = mask;
  951|  1.11k|}
match_set_nw_dst:
  955|    580|{
  956|    580|    match->flow.nw_dst = nw_dst;
  957|    580|    match->wc.masks.nw_dst = OVS_BE32_MAX;
  ------------------
  |  |   43|    580|#define OVS_BE32_MAX ((OVS_FORCE ovs_be32) 0xffffffff)
  ------------------
  958|    580|}
match_set_nw_dst_masked:
  962|  2.05k|{
  963|  2.05k|    match->flow.nw_dst = ip & mask;
  964|  2.05k|    match->wc.masks.nw_dst = mask;
  965|  2.05k|}
match_set_nw_dscp:
  969|    836|{
  970|    836|    match->wc.masks.nw_tos |= IP_DSCP_MASK;
  ------------------
  |  |  724|    836|#define IP_DSCP_MASK 0xfc
  ------------------
  971|    836|    match->flow.nw_tos &= ~IP_DSCP_MASK;
  ------------------
  |  |  724|    836|#define IP_DSCP_MASK 0xfc
  ------------------
  972|    836|    match->flow.nw_tos |= nw_dscp & IP_DSCP_MASK;
  ------------------
  |  |  724|    836|#define IP_DSCP_MASK 0xfc
  ------------------
  973|    836|}
match_set_nw_ecn:
  977|    200|{
  978|    200|    match->wc.masks.nw_tos |= IP_ECN_MASK;
  ------------------
  |  |  722|    200|#define IP_ECN_MASK 0x03
  ------------------
  979|    200|    match->flow.nw_tos &= ~IP_ECN_MASK;
  ------------------
  |  |  722|    200|#define IP_ECN_MASK 0x03
  ------------------
  980|    200|    match->flow.nw_tos |= nw_ecn & IP_ECN_MASK;
  ------------------
  |  |  722|    200|#define IP_ECN_MASK 0x03
  ------------------
  981|    200|}
match_set_nw_ttl:
  985|    268|{
  986|       |    match->wc.masks.nw_ttl = UINT8_MAX;
  987|    268|    match->flow.nw_ttl = nw_ttl;
  988|    268|}
match_set_nw_frag:
 1006|    200|{
 1007|    200|    match->wc.masks.nw_frag |= FLOW_NW_FRAG_MASK;
  ------------------
  |  |   56|    200|#define FLOW_NW_FRAG_MASK  (FLOW_NW_FRAG_ANY | FLOW_NW_FRAG_LATER)
  |  |  ------------------
  |  |  |  |   54|    200|#define FLOW_NW_FRAG_ANY   (1 << 0) /* Set for any IP frag. */
  |  |  ------------------
  |  |               #define FLOW_NW_FRAG_MASK  (FLOW_NW_FRAG_ANY | FLOW_NW_FRAG_LATER)
  |  |  ------------------
  |  |  |  |   55|    200|#define FLOW_NW_FRAG_LATER (1 << 1) /* Set for IP frag with nonzero offset. */
  |  |  ------------------
  ------------------
 1008|    200|    match->flow.nw_frag = nw_frag;
 1009|    200|}
match_set_nw_frag_masked:
 1014|    334|{
 1015|    334|    match->flow.nw_frag = nw_frag & mask;
 1016|    334|    match->wc.masks.nw_frag = mask;
 1017|    334|}
match_set_icmp_type:
 1021|    532|{
 1022|       |    match_set_tp_src(match, htons(icmp_type));
 1023|    532|}
match_set_icmp_code:
 1027|    478|{
 1028|       |    match_set_tp_dst(match, htons(icmp_code));
 1029|    478|}
match_set_arp_sha:
 1057|    521|{
 1058|    521|    match->flow.arp_sha = sha;
 1059|    521|    match->wc.masks.arp_sha = eth_addr_exact;
 1060|    521|}
match_set_arp_sha_masked:
 1066|  1.00k|{
 1067|  1.00k|    set_eth_masked(arp_sha, mask,
 1068|  1.00k|                   &match->flow.arp_sha, &match->wc.masks.arp_sha);
 1069|  1.00k|}
match_set_arp_tha:
 1073|    464|{
 1074|    464|    match->flow.arp_tha = tha;
 1075|    464|    match->wc.masks.arp_tha = eth_addr_exact;
 1076|    464|}
match_set_arp_tha_masked:
 1082|    541|{
 1083|    541|    set_eth_masked(arp_tha, mask,
 1084|    541|                   &match->flow.arp_tha, &match->wc.masks.arp_tha);
 1085|    541|}
match_set_ipv6_src:
 1089|    137|{
 1090|    137|    match->flow.ipv6_src = *src;
 1091|    137|    match->wc.masks.ipv6_src = in6addr_exact;
 1092|    137|}
match_set_ipv6_src_masked:
 1097|    324|{
 1098|    324|    match->flow.ipv6_src = ipv6_addr_bitand(src, mask);
 1099|    324|    match->wc.masks.ipv6_src = *mask;
 1100|    324|}
match_set_ipv6_dst:
 1104|    374|{
 1105|    374|    match->flow.ipv6_dst = *dst;
 1106|    374|    match->wc.masks.ipv6_dst = in6addr_exact;
 1107|    374|}
match_set_ipv6_dst_masked:
 1112|    607|{
 1113|    607|    match->flow.ipv6_dst = ipv6_addr_bitand(dst, mask);
 1114|    607|    match->wc.masks.ipv6_dst = *mask;
 1115|    607|}
match_set_ipv6_label:
 1119|    417|{
 1120|    417|    match->wc.masks.ipv6_label = OVS_BE32_MAX;
  ------------------
  |  |   43|    417|#define OVS_BE32_MAX ((OVS_FORCE ovs_be32) 0xffffffff)
  ------------------
 1121|    417|    match->flow.ipv6_label = ipv6_label;
 1122|    417|}
match_set_ipv6_label_masked:
 1128|    164|{
 1129|    164|    match->flow.ipv6_label = ipv6_label & mask;
 1130|    164|    match->wc.masks.ipv6_label = mask;
 1131|    164|}
match_set_nd_target:
 1135|    222|{
 1136|    222|    match->flow.nd_target = *target;
 1137|    222|    match->wc.masks.nd_target = in6addr_exact;
 1138|    222|}
match_set_nd_target_masked:
 1144|    263|{
 1145|    263|    match->flow.nd_target = ipv6_addr_bitand(target, mask);
 1146|    263|    match->wc.masks.nd_target = *mask;
 1147|    263|}
minimatch_init:
 1819|  9.28k|{
 1820|  9.28k|    struct miniflow tmp;
 1821|       |
 1822|  9.28k|    miniflow_map_init(&tmp, &src->wc.masks);
 1823|       |    /* Allocate two consecutive miniflows. */
 1824|  9.28k|    miniflow_alloc(dst->flows, 2, &tmp);
 1825|  9.28k|    miniflow_init(dst->flow, &src->flow);
 1826|  9.28k|    minimask_init(dst->mask, &src->wc);
 1827|       |
 1828|  9.28k|    dst->tun_md = tun_metadata_allocation_clone(&src->tun_md);
 1829|  9.28k|}
minimatch_destroy:
 1869|  9.28k|{
 1870|  9.28k|    free(match->flow);
 1871|  9.28k|    free(match->tun_md);
 1872|  9.28k|}
minimatch_expand:
 1877|  18.3k|{
 1878|  18.3k|    miniflow_expand(src->flow, &dst->flow);
 1879|  18.3k|    minimask_expand(src->mask, &dst->wc);
 1880|  18.3k|    tun_metadata_allocation_copy(&dst->tun_md, src->tun_md);
 1881|  18.3k|}
match.c:set_eth:
  646|    648|{
  647|    648|    *value_dst = value_src;
  648|    648|    *mask_dst = eth_addr_exact;
  649|    648|}
match.c:set_eth_masked:
  658|  2.29k|{
  659|  2.29k|    size_t i;
  660|       |
  661|  9.16k|    for (i = 0; i < ARRAY_SIZE(value_dst->be16); i++) {
  ------------------
  |  |  297|  9.16k|#define ARRAY_SIZE(ARRAY) __ARRAY_SIZE(ARRAY)
  |  |  ------------------
  |  |  |  |   46|  9.16k|    __builtin_choose_expr(__ARRAY_CHECK(ARRAY),			\
  |  |  |  |  ------------------
  |  |  |  |  |  |   41|  9.16k|    !__builtin_types_compatible_p(typeof(ARRAY), typeof(&ARRAY[0]))
  |  |  |  |  ------------------
  |  |  |  |   47|  9.16k|        __ARRAY_SIZE_NOCHECK(ARRAY), __ARRAY_FAIL(ARRAY))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|  9.16k|#define __ARRAY_SIZE_NOCHECK(ARRAY) (sizeof(ARRAY) / sizeof((ARRAY)[0]))
  |  |  |  |  ------------------
  |  |  |  |                       __ARRAY_SIZE_NOCHECK(ARRAY), __ARRAY_FAIL(ARRAY))
  |  |  |  |  ------------------
  |  |  |  |  |  |   44|  9.16k|#define __ARRAY_FAIL(ARRAY) (sizeof(char[-2*!__ARRAY_CHECK(ARRAY)]))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  |  Branch (661:17): [True: 6.87k, False: 2.29k]
  ------------------
  662|  6.87k|        value_dst->be16[i] = value_src.be16[i] & mask_src.be16[i];
  663|  6.87k|    }
  664|  2.29k|    *mask_dst = mask_src;
  665|  2.29k|}

mf_from_name:
   85|   201k|{
   86|   201k|    nxm_init();
   87|   201k|    return shash_find_data(&mf_by_name, name);
   88|   201k|}
mf_from_name_len:
   94|   179k|{
   95|   179k|    nxm_init();
   96|       |
   97|   179k|    struct shash_node *node = shash_find_len(&mf_by_name, name, len);
   98|   179k|    return node ? node->data : NULL;
  ------------------
  |  Branch (98:12): [True: 124k, False: 54.8k]
  ------------------
   99|   179k|}
mf_get_mask:
  416|   107k|{
  417|   107k|    mf_get_value(mf, &wc->masks, mask);
  418|   107k|}
mf_is_mask_valid:
  424|   124k|{
  425|   124k|    switch (mf->maskable) {
  ------------------
  |  Branch (425:13): [True: 124k, False: 0]
  ------------------
  426|  19.8k|    case MFM_NONE:
  ------------------
  |  Branch (426:5): [True: 19.8k, False: 104k]
  ------------------
  427|  19.8k|        return (is_all_zeros(mask, mf->n_bytes) ||
  ------------------
  |  Branch (427:17): [True: 9.23k, False: 10.6k]
  ------------------
  428|  10.6k|                is_all_ones(mask, mf->n_bytes));
  ------------------
  |  Branch (428:17): [True: 10.6k, False: 4]
  ------------------
  429|       |
  430|   104k|    case MFM_FULLY:
  ------------------
  |  Branch (430:5): [True: 104k, False: 19.8k]
  ------------------
  431|   104k|        return true;
  432|   124k|    }
  433|       |
  434|      0|    OVS_NOT_REACHED();
  ------------------
  |  |  107|      0|#define OVS_NOT_REACHED() abort()
  ------------------
  435|   124k|}
mf_are_prereqs_ok:
  496|  25.3k|{
  497|       |    return mf_are_prereqs_ok__(mf, flow, NULL, wc);
  498|  25.3k|}
mf_are_match_prereqs_ok:
  504|  55.8k|{
  505|       |    return mf_are_prereqs_ok__(mf, &match->flow, &match->wc, NULL);
  506|  55.8k|}
mf_is_value_valid:
  520|  47.5k|{
  521|  47.5k|    switch (mf->id) {
  522|      0|    case MFF_DP_HASH:
  ------------------
  |  Branch (522:5): [True: 0, False: 47.5k]
  ------------------
  523|      0|    case MFF_RECIRC_ID:
  ------------------
  |  Branch (523:5): [True: 0, False: 47.5k]
  ------------------
  524|      0|    case MFF_PACKET_TYPE:
  ------------------
  |  Branch (524:5): [True: 0, False: 47.5k]
  ------------------
  525|      0|    case MFF_CONJ_ID:
  ------------------
  |  Branch (525:5): [True: 0, False: 47.5k]
  ------------------
  526|    178|    case MFF_TUN_ID:
  ------------------
  |  Branch (526:5): [True: 178, False: 47.3k]
  ------------------
  527|    244|    case MFF_TUN_SRC:
  ------------------
  |  Branch (527:5): [True: 66, False: 47.4k]
  ------------------
  528|    423|    case MFF_TUN_DST:
  ------------------
  |  Branch (528:5): [True: 179, False: 47.3k]
  ------------------
  529|    616|    case MFF_TUN_IPV6_SRC:
  ------------------
  |  Branch (529:5): [True: 193, False: 47.3k]
  ------------------
  530|    810|    case MFF_TUN_IPV6_DST:
  ------------------
  |  Branch (530:5): [True: 194, False: 47.3k]
  ------------------
  531|    810|    case MFF_TUN_TOS:
  ------------------
  |  Branch (531:5): [True: 0, False: 47.5k]
  ------------------
  532|    810|    case MFF_TUN_TTL:
  ------------------
  |  Branch (532:5): [True: 0, False: 47.5k]
  ------------------
  533|    873|    case MFF_TUN_GBP_ID:
  ------------------
  |  Branch (533:5): [True: 63, False: 47.4k]
  ------------------
  534|  1.23k|    case MFF_TUN_GBP_FLAGS:
  ------------------
  |  Branch (534:5): [True: 358, False: 47.1k]
  ------------------
  535|  1.23k|    case MFF_TUN_ERSPAN_IDX:
  ------------------
  |  Branch (535:5): [True: 0, False: 47.5k]
  ------------------
  536|  1.23k|    case MFF_TUN_ERSPAN_VER:
  ------------------
  |  Branch (536:5): [True: 0, False: 47.5k]
  ------------------
  537|  1.23k|    case MFF_TUN_ERSPAN_DIR:
  ------------------
  |  Branch (537:5): [True: 0, False: 47.5k]
  ------------------
  538|  1.23k|    case MFF_TUN_ERSPAN_HWID:
  ------------------
  |  Branch (538:5): [True: 0, False: 47.5k]
  ------------------
  539|  1.23k|    case MFF_TUN_GTPU_FLAGS:
  ------------------
  |  Branch (539:5): [True: 0, False: 47.5k]
  ------------------
  540|  1.23k|    case MFF_TUN_GTPU_MSGTYPE:
  ------------------
  |  Branch (540:5): [True: 0, False: 47.5k]
  ------------------
  541|   597k|    CASE_MFF_TUN_METADATA:
  ------------------
  |  | 2110|  1.90k|    case MFF_TUN_METADATA0: case MFF_TUN_METADATA1:   \
  |  |  ------------------
  |  |  |  Branch (2110:5): [True: 406, False: 47.1k]
  |  |  |  Branch (2110:29): [True: 268, False: 47.2k]
  |  |  ------------------
  |  | 2111|  2.50k|    case MFF_TUN_METADATA2: case MFF_TUN_METADATA3:   \
  |  |  ------------------
  |  |  |  Branch (2111:5): [True: 308, False: 47.2k]
  |  |  |  Branch (2111:29): [True: 287, False: 47.2k]
  |  |  ------------------
  |  | 2112|  3.08k|    case MFF_TUN_METADATA4: case MFF_TUN_METADATA5:   \
  |  |  ------------------
  |  |  |  Branch (2112:5): [True: 308, False: 47.2k]
  |  |  |  Branch (2112:29): [True: 277, False: 47.2k]
  |  |  ------------------
  |  | 2113|  3.49k|    case MFF_TUN_METADATA6: case MFF_TUN_METADATA7:   \
  |  |  ------------------
  |  |  |  Branch (2113:5): [True: 212, False: 47.3k]
  |  |  |  Branch (2113:29): [True: 199, False: 47.3k]
  |  |  ------------------
  |  | 2114|  3.92k|    case MFF_TUN_METADATA8: case MFF_TUN_METADATA9:   \
  |  |  ------------------
  |  |  |  Branch (2114:5): [True: 232, False: 47.2k]
  |  |  |  Branch (2114:29): [True: 194, False: 47.3k]
  |  |  ------------------
  |  | 2115|  4.20k|    case MFF_TUN_METADATA10: case MFF_TUN_METADATA11: \
  |  |  ------------------
  |  |  |  Branch (2115:5): [True: 66, False: 47.4k]
  |  |  |  Branch (2115:30): [True: 212, False: 47.3k]
  |  |  ------------------
  |  | 2116|  5.07k|    case MFF_TUN_METADATA12: case MFF_TUN_METADATA13: \
  |  |  ------------------
  |  |  |  Branch (2116:5): [True: 658, False: 46.8k]
  |  |  |  Branch (2116:30): [True: 216, False: 47.3k]
  |  |  ------------------
  |  | 2117|  5.55k|    case MFF_TUN_METADATA14: case MFF_TUN_METADATA15: \
  |  |  ------------------
  |  |  |  Branch (2117:5): [True: 227, False: 47.3k]
  |  |  |  Branch (2117:30): [True: 257, False: 47.2k]
  |  |  ------------------
  |  | 2118|  6.00k|    case MFF_TUN_METADATA16: case MFF_TUN_METADATA17: \
  |  |  ------------------
  |  |  |  Branch (2118:5): [True: 239, False: 47.2k]
  |  |  |  Branch (2118:30): [True: 204, False: 47.3k]
  |  |  ------------------
  |  | 2119|  6.46k|    case MFF_TUN_METADATA18: case MFF_TUN_METADATA19: \
  |  |  ------------------
  |  |  |  Branch (2119:5): [True: 206, False: 47.3k]
  |  |  |  Branch (2119:30): [True: 257, False: 47.2k]
  |  |  ------------------
  |  | 2120|  6.89k|    case MFF_TUN_METADATA20: case MFF_TUN_METADATA21: \
  |  |  ------------------
  |  |  |  Branch (2120:5): [True: 194, False: 47.3k]
  |  |  |  Branch (2120:30): [True: 239, False: 47.2k]
  |  |  ------------------
  |  | 2121|  7.48k|    case MFF_TUN_METADATA22: case MFF_TUN_METADATA23: \
  |  |  ------------------
  |  |  |  Branch (2121:5): [True: 241, False: 47.2k]
  |  |  |  Branch (2121:30): [True: 342, False: 47.1k]
  |  |  ------------------
  |  | 2122|  7.96k|    case MFF_TUN_METADATA24: case MFF_TUN_METADATA25: \
  |  |  ------------------
  |  |  |  Branch (2122:5): [True: 264, False: 47.2k]
  |  |  |  Branch (2122:30): [True: 216, False: 47.3k]
  |  |  ------------------
  |  | 2123|  8.23k|    case MFF_TUN_METADATA26: case MFF_TUN_METADATA27: \
  |  |  ------------------
  |  |  |  Branch (2123:5): [True: 185, False: 47.3k]
  |  |  |  Branch (2123:30): [True: 87, False: 47.4k]
  |  |  ------------------
  |  | 2124|  8.98k|    case MFF_TUN_METADATA28: case MFF_TUN_METADATA29: \
  |  |  ------------------
  |  |  |  Branch (2124:5): [True: 448, False: 47.0k]
  |  |  |  Branch (2124:30): [True: 309, False: 47.2k]
  |  |  ------------------
  |  | 2125|  9.39k|    case MFF_TUN_METADATA30: case MFF_TUN_METADATA31: \
  |  |  ------------------
  |  |  |  Branch (2125:5): [True: 198, False: 47.3k]
  |  |  |  Branch (2125:30): [True: 206, False: 47.3k]
  |  |  ------------------
  |  | 2126|  9.85k|    case MFF_TUN_METADATA32: case MFF_TUN_METADATA33: \
  |  |  ------------------
  |  |  |  Branch (2126:5): [True: 227, False: 47.3k]
  |  |  |  Branch (2126:30): [True: 232, False: 47.2k]
  |  |  ------------------
  |  | 2127|  10.2k|    case MFF_TUN_METADATA34: case MFF_TUN_METADATA35: \
  |  |  ------------------
  |  |  |  Branch (2127:5): [True: 215, False: 47.3k]
  |  |  |  Branch (2127:30): [True: 190, False: 47.3k]
  |  |  ------------------
  |  | 2128|  10.7k|    case MFF_TUN_METADATA36: case MFF_TUN_METADATA37: \
  |  |  ------------------
  |  |  |  Branch (2128:5): [True: 268, False: 47.2k]
  |  |  |  Branch (2128:30): [True: 224, False: 47.3k]
  |  |  ------------------
  |  | 2129|  10.9k|    case MFF_TUN_METADATA38: case MFF_TUN_METADATA39: \
  |  |  ------------------
  |  |  |  Branch (2129:5): [True: 96, False: 47.4k]
  |  |  |  Branch (2129:30): [True: 136, False: 47.3k]
  |  |  ------------------
  |  | 2130|  11.3k|    case MFF_TUN_METADATA40: case MFF_TUN_METADATA41: \
  |  |  ------------------
  |  |  |  Branch (2130:5): [True: 211, False: 47.3k]
  |  |  |  Branch (2130:30): [True: 207, False: 47.3k]
  |  |  ------------------
  |  | 2131|  11.8k|    case MFF_TUN_METADATA42: case MFF_TUN_METADATA43: \
  |  |  ------------------
  |  |  |  Branch (2131:5): [True: 224, False: 47.3k]
  |  |  |  Branch (2131:30): [True: 230, False: 47.3k]
  |  |  ------------------
  |  | 2132|  12.6k|    case MFF_TUN_METADATA44: case MFF_TUN_METADATA45: \
  |  |  ------------------
  |  |  |  Branch (2132:5): [True: 210, False: 47.3k]
  |  |  |  Branch (2132:30): [True: 563, False: 46.9k]
  |  |  ------------------
  |  | 2133|  13.0k|    case MFF_TUN_METADATA46: case MFF_TUN_METADATA47: \
  |  |  ------------------
  |  |  |  Branch (2133:5): [True: 197, False: 47.3k]
  |  |  |  Branch (2133:30): [True: 222, False: 47.3k]
  |  |  ------------------
  |  | 2134|  13.5k|    case MFF_TUN_METADATA48: case MFF_TUN_METADATA49: \
  |  |  ------------------
  |  |  |  Branch (2134:5): [True: 214, False: 47.3k]
  |  |  |  Branch (2134:30): [True: 279, False: 47.2k]
  |  |  ------------------
  |  | 2135|  14.0k|    case MFF_TUN_METADATA50: case MFF_TUN_METADATA51: \
  |  |  ------------------
  |  |  |  Branch (2135:5): [True: 199, False: 47.3k]
  |  |  |  Branch (2135:30): [True: 279, False: 47.2k]
  |  |  ------------------
  |  | 2136|  14.4k|    case MFF_TUN_METADATA52: case MFF_TUN_METADATA53: \
  |  |  ------------------
  |  |  |  Branch (2136:5): [True: 220, False: 47.3k]
  |  |  |  Branch (2136:30): [True: 221, False: 47.3k]
  |  |  ------------------
  |  | 2137|  14.8k|    case MFF_TUN_METADATA54: case MFF_TUN_METADATA55: \
  |  |  ------------------
  |  |  |  Branch (2137:5): [True: 228, False: 47.3k]
  |  |  |  Branch (2137:30): [True: 206, False: 47.3k]
  |  |  ------------------
  |  | 2138|  15.2k|    case MFF_TUN_METADATA56: case MFF_TUN_METADATA57: \
  |  |  ------------------
  |  |  |  Branch (2138:5): [True: 182, False: 47.3k]
  |  |  |  Branch (2138:30): [True: 191, False: 47.3k]
  |  |  ------------------
  |  | 2139|  15.6k|    case MFF_TUN_METADATA58: case MFF_TUN_METADATA59: \
  |  |  ------------------
  |  |  |  Branch (2139:5): [True: 211, False: 47.3k]
  |  |  |  Branch (2139:30): [True: 199, False: 47.3k]
  |  |  ------------------
  |  | 2140|  16.0k|    case MFF_TUN_METADATA60: case MFF_TUN_METADATA61: \
  |  |  ------------------
  |  |  |  Branch (2140:5): [True: 238, False: 47.2k]
  |  |  |  Branch (2140:30): [True: 168, False: 47.3k]
  |  |  ------------------
  |  | 2141|  16.3k|    case MFF_TUN_METADATA62: case MFF_TUN_METADATA63
  |  |  ------------------
  |  |  |  Branch (2141:5): [True: 210, False: 47.3k]
  |  |  ------------------
  ------------------
  542|   597k|    case MFF_METADATA:
  ------------------
  |  Branch (542:5): [True: 72, False: 47.4k]
  ------------------
  543|  16.6k|    case MFF_IN_PORT:
  ------------------
  |  Branch (543:5): [True: 208, False: 47.3k]
  ------------------
  544|  16.6k|    case MFF_SKB_PRIORITY:
  ------------------
  |  Branch (544:5): [True: 0, False: 47.5k]
  ------------------
  545|  16.8k|    case MFF_PKT_MARK:
  ------------------
  |  Branch (545:5): [True: 211, False: 47.3k]
  ------------------
  546|  16.8k|    case MFF_CT_ZONE:
  ------------------
  |  Branch (546:5): [True: 0, False: 47.5k]
  ------------------
  547|  17.1k|    case MFF_CT_MARK:
  ------------------
  |  Branch (547:5): [True: 292, False: 47.2k]
  ------------------
  548|  17.3k|    case MFF_CT_LABEL:
  ------------------
  |  Branch (548:5): [True: 218, False: 47.3k]
  ------------------
  549|  17.3k|    case MFF_CT_NW_PROTO:
  ------------------
  |  Branch (549:5): [True: 0, False: 47.5k]
  ------------------
  550|  17.3k|    case MFF_CT_NW_SRC:
  ------------------
  |  Branch (550:5): [True: 0, False: 47.5k]
  ------------------
  551|  17.3k|    case MFF_CT_NW_DST:
  ------------------
  |  Branch (551:5): [True: 0, False: 47.5k]
  ------------------
  552|  17.3k|    case MFF_CT_IPV6_SRC:
  ------------------
  |  Branch (552:5): [True: 0, False: 47.5k]
  ------------------
  553|  17.3k|    case MFF_CT_IPV6_DST:
  ------------------
  |  Branch (553:5): [True: 0, False: 47.5k]
  ------------------
  554|  17.3k|    case MFF_CT_TP_SRC:
  ------------------
  |  Branch (554:5): [True: 0, False: 47.5k]
  ------------------
  555|  17.3k|    case MFF_CT_TP_DST:
  ------------------
  |  Branch (555:5): [True: 0, False: 47.5k]
  ------------------
  556|   691k|    CASE_MFF_REGS:
  ------------------
  |  | 2065|  18.5k|    case MFF_REG0: case MFF_REG1: case MFF_REG2: case MFF_REG3:     \
  |  |  ------------------
  |  |  |  Branch (2065:5): [True: 260, False: 47.2k]
  |  |  |  Branch (2065:20): [True: 214, False: 47.3k]
  |  |  |  Branch (2065:35): [True: 358, False: 47.1k]
  |  |  |  Branch (2065:50): [True: 323, False: 47.2k]
  |  |  ------------------
  |  | 2066|  19.5k|    case MFF_REG4: case MFF_REG5: case MFF_REG6: case MFF_REG7:     \
  |  |  ------------------
  |  |  |  Branch (2066:5): [True: 291, False: 47.2k]
  |  |  |  Branch (2066:20): [True: 241, False: 47.2k]
  |  |  |  Branch (2066:35): [True: 250, False: 47.2k]
  |  |  |  Branch (2066:50): [True: 241, False: 47.2k]
  |  |  ------------------
  |  | 2067|  20.2k|    case MFF_REG8: case MFF_REG9: case MFF_REG10: case MFF_REG11:   \
  |  |  ------------------
  |  |  |  Branch (2067:5): [True: 175, False: 47.3k]
  |  |  |  Branch (2067:20): [True: 194, False: 47.3k]
  |  |  |  Branch (2067:35): [True: 129, False: 47.4k]
  |  |  |  Branch (2067:51): [True: 200, False: 47.3k]
  |  |  ------------------
  |  | 2068|  21.2k|    case MFF_REG12: case MFF_REG13: case MFF_REG14: case MFF_REG15: \
  |  |  ------------------
  |  |  |  Branch (2068:5): [True: 204, False: 47.3k]
  |  |  |  Branch (2068:21): [True: 267, False: 47.2k]
  |  |  |  Branch (2068:37): [True: 220, False: 47.3k]
  |  |  |  Branch (2068:53): [True: 276, False: 47.2k]
  |  |  ------------------
  |  | 2069|  21.9k|    case MFF_REG16: case MFF_REG17: case MFF_REG18: case MFF_REG19: \
  |  |  ------------------
  |  |  |  Branch (2069:5): [True: 71, False: 47.4k]
  |  |  |  Branch (2069:21): [True: 195, False: 47.3k]
  |  |  |  Branch (2069:37): [True: 207, False: 47.3k]
  |  |  |  Branch (2069:53): [True: 241, False: 47.2k]
  |  |  ------------------
  |  | 2070|  23.8k|    case MFF_REG20: case MFF_REG21: case MFF_REG22: case MFF_REG23: \
  |  |  ------------------
  |  |  |  Branch (2070:5): [True: 728, False: 46.8k]
  |  |  |  Branch (2070:21): [True: 105, False: 47.4k]
  |  |  |  Branch (2070:37): [True: 766, False: 46.7k]
  |  |  |  Branch (2070:53): [True: 326, False: 47.2k]
  |  |  ------------------
  |  | 2071|  24.8k|    case MFF_REG24: case MFF_REG25: case MFF_REG26: case MFF_REG27: \
  |  |  ------------------
  |  |  |  Branch (2071:5): [True: 208, False: 47.3k]
  |  |  |  Branch (2071:21): [True: 301, False: 47.2k]
  |  |  |  Branch (2071:37): [True: 208, False: 47.3k]
  |  |  |  Branch (2071:53): [True: 316, False: 47.2k]
  |  |  ------------------
  |  | 2072|  25.9k|    case MFF_REG28: case MFF_REG29: case MFF_REG30: case MFF_REG31
  |  |  ------------------
  |  |  |  Branch (2072:5): [True: 267, False: 47.2k]
  |  |  |  Branch (2072:21): [True: 386, False: 47.1k]
  |  |  |  Branch (2072:37): [True: 237, False: 47.2k]
  |  |  ------------------
  ------------------
  557|   691k|    CASE_MFF_XREGS:
  ------------------
  |  | 2081|  27.3k|    case MFF_XREG0: case MFF_XREG1: case MFF_XREG2: case MFF_XREG3:    \
  |  |  ------------------
  |  |  |  Branch (2081:5): [True: 608, False: 46.9k]
  |  |  |  Branch (2081:21): [True: 261, False: 47.2k]
  |  |  |  Branch (2081:37): [True: 244, False: 47.2k]
  |  |  |  Branch (2081:53): [True: 228, False: 47.3k]
  |  |  ------------------
  |  | 2082|  28.0k|    case MFF_XREG4: case MFF_XREG5: case MFF_XREG6: case MFF_XREG7:    \
  |  |  ------------------
  |  |  |  Branch (2082:5): [True: 150, False: 47.3k]
  |  |  |  Branch (2082:21): [True: 116, False: 47.4k]
  |  |  |  Branch (2082:37): [True: 204, False: 47.3k]
  |  |  |  Branch (2082:53): [True: 268, False: 47.2k]
  |  |  ------------------
  |  | 2083|  28.9k|    case MFF_XREG8: case MFF_XREG9: case MFF_XREG10: case MFF_XREG11:  \
  |  |  ------------------
  |  |  |  Branch (2083:5): [True: 298, False: 47.2k]
  |  |  |  Branch (2083:21): [True: 216, False: 47.3k]
  |  |  |  Branch (2083:37): [True: 211, False: 47.3k]
  |  |  |  Branch (2083:54): [True: 195, False: 47.3k]
  |  |  ------------------
  |  | 2084|  29.8k|    case MFF_XREG12: case MFF_XREG13: case MFF_XREG14: case MFF_XREG15
  |  |  ------------------
  |  |  |  Branch (2084:5): [True: 252, False: 47.2k]
  |  |  |  Branch (2084:22): [True: 213, False: 47.3k]
  |  |  |  Branch (2084:39): [True: 191, False: 47.3k]
  |  |  ------------------
  ------------------
  558|   451k|    CASE_MFF_XXREGS:
  ------------------
  |  | 2093|  33.8k|    case MFF_XXREG0: case MFF_XXREG1: case MFF_XXREG2: case MFF_XXREG3: \
  |  |  ------------------
  |  |  |  Branch (2093:5): [True: 1.39k, False: 46.1k]
  |  |  |  Branch (2093:22): [True: 1.75k, False: 45.7k]
  |  |  |  Branch (2093:39): [True: 243, False: 47.2k]
  |  |  |  Branch (2093:56): [True: 605, False: 46.9k]
  |  |  ------------------
  |  | 2094|  34.7k|    case MFF_XXREG4: case MFF_XXREG5: case MFF_XXREG6: case MFF_XXREG7
  |  |  ------------------
  |  |  |  Branch (2094:5): [True: 221, False: 47.3k]
  |  |  |  Branch (2094:22): [True: 195, False: 47.3k]
  |  |  |  Branch (2094:39): [True: 284, False: 47.2k]
  |  |  ------------------
  ------------------
  559|   268k|    case MFF_ETH_SRC:
  ------------------
  |  Branch (559:5): [True: 329, False: 47.2k]
  ------------------
  560|  35.3k|    case MFF_ETH_DST:
  ------------------
  |  Branch (560:5): [True: 249, False: 47.2k]
  ------------------
  561|  35.3k|    case MFF_ETH_TYPE:
  ------------------
  |  Branch (561:5): [True: 0, False: 47.5k]
  ------------------
  562|  36.5k|    case MFF_VLAN_TCI:
  ------------------
  |  Branch (562:5): [True: 1.20k, False: 46.3k]
  ------------------
  563|  36.7k|    case MFF_MPLS_TTL:
  ------------------
  |  Branch (563:5): [True: 199, False: 47.3k]
  ------------------
  564|  36.9k|    case MFF_IPV4_SRC:
  ------------------
  |  Branch (564:5): [True: 269, False: 47.2k]
  ------------------
  565|  37.1k|    case MFF_IPV4_DST:
  ------------------
  |  Branch (565:5): [True: 198, False: 47.3k]
  ------------------
  566|  37.3k|    case MFF_IPV6_SRC:
  ------------------
  |  Branch (566:5): [True: 205, False: 47.3k]
  ------------------
  567|  37.7k|    case MFF_IPV6_DST:
  ------------------
  |  Branch (567:5): [True: 399, False: 47.1k]
  ------------------
  568|  37.7k|    case MFF_IP_PROTO:
  ------------------
  |  Branch (568:5): [True: 0, False: 47.5k]
  ------------------
  569|  37.9k|    case MFF_IP_TTL:
  ------------------
  |  Branch (569:5): [True: 207, False: 47.3k]
  ------------------
  570|  38.2k|    case MFF_ARP_SPA:
  ------------------
  |  Branch (570:5): [True: 234, False: 47.2k]
  ------------------
  571|  38.8k|    case MFF_ARP_TPA:
  ------------------
  |  Branch (571:5): [True: 641, False: 46.8k]
  ------------------
  572|  39.0k|    case MFF_ARP_SHA:
  ------------------
  |  Branch (572:5): [True: 218, False: 47.3k]
  ------------------
  573|  39.2k|    case MFF_ARP_THA:
  ------------------
  |  Branch (573:5): [True: 194, False: 47.3k]
  ------------------
  574|  39.5k|    case MFF_TCP_SRC:
  ------------------
  |  Branch (574:5): [True: 275, False: 47.2k]
  ------------------
  575|  39.8k|    case MFF_TCP_DST:
  ------------------
  |  Branch (575:5): [True: 303, False: 47.2k]
  ------------------
  576|  40.2k|    case MFF_UDP_SRC:
  ------------------
  |  Branch (576:5): [True: 373, False: 47.1k]
  ------------------
  577|  40.3k|    case MFF_UDP_DST:
  ------------------
  |  Branch (577:5): [True: 83, False: 47.4k]
  ------------------
  578|  40.7k|    case MFF_SCTP_SRC:
  ------------------
  |  Branch (578:5): [True: 421, False: 47.1k]
  ------------------
  579|  40.7k|    case MFF_SCTP_DST:
  ------------------
  |  Branch (579:5): [True: 66, False: 47.4k]
  ------------------
  580|  41.2k|    case MFF_ICMPV4_TYPE:
  ------------------
  |  Branch (580:5): [True: 421, False: 47.1k]
  ------------------
  581|  41.2k|    case MFF_ICMPV4_CODE:
  ------------------
  |  Branch (581:5): [True: 34, False: 47.4k]
  ------------------
  582|  41.5k|    case MFF_ICMPV6_TYPE:
  ------------------
  |  Branch (582:5): [True: 316, False: 47.2k]
  ------------------
  583|  41.7k|    case MFF_ICMPV6_CODE:
  ------------------
  |  Branch (583:5): [True: 196, False: 47.3k]
  ------------------
  584|  41.7k|    case MFF_ND_TARGET:
  ------------------
  |  Branch (584:5): [True: 0, False: 47.5k]
  ------------------
  585|  42.2k|    case MFF_ND_SLL:
  ------------------
  |  Branch (585:5): [True: 458, False: 47.0k]
  ------------------
  586|  42.8k|    case MFF_ND_TLL:
  ------------------
  |  Branch (586:5): [True: 673, False: 46.8k]
  ------------------
  587|  42.8k|    case MFF_ND_RESERVED:
  ------------------
  |  Branch (587:5): [True: 0, False: 47.5k]
  ------------------
  588|  42.8k|    case MFF_ND_OPTIONS_TYPE:
  ------------------
  |  Branch (588:5): [True: 0, False: 47.5k]
  ------------------
  589|  42.8k|        return true;
  590|       |
  591|      0|    case MFF_IN_PORT_OXM:
  ------------------
  |  Branch (591:5): [True: 0, False: 47.5k]
  ------------------
  592|      0|    case MFF_ACTSET_OUTPUT: {
  ------------------
  |  Branch (592:5): [True: 0, False: 47.5k]
  ------------------
  593|      0|        ofp_port_t port;
  594|      0|        return !ofputil_port_from_ofp11(value->be32, &port);
  595|      0|    }
  596|       |
  597|    236|    case MFF_IP_DSCP:
  ------------------
  |  Branch (597:5): [True: 236, False: 47.2k]
  ------------------
  598|    236|        return !(value->u8 & ~IP_DSCP_MASK);
  ------------------
  |  |  724|    236|#define IP_DSCP_MASK 0xfc
  ------------------
  599|    194|    case MFF_IP_DSCP_SHIFTED:
  ------------------
  |  Branch (599:5): [True: 194, False: 47.3k]
  ------------------
  600|    194|        return !(value->u8 & (~IP_DSCP_MASK >> 2));
  ------------------
  |  |  724|    194|#define IP_DSCP_MASK 0xfc
  ------------------
  601|    607|    case MFF_IP_ECN:
  ------------------
  |  Branch (601:5): [True: 607, False: 46.9k]
  ------------------
  602|    607|        return !(value->u8 & ~IP_ECN_MASK);
  ------------------
  |  |  722|    607|#define IP_ECN_MASK 0x03
  ------------------
  603|      0|    case MFF_IP_FRAG:
  ------------------
  |  Branch (603:5): [True: 0, False: 47.5k]
  ------------------
  604|      0|        return !(value->u8 & ~FLOW_NW_FRAG_MASK);
  ------------------
  |  |   56|      0|#define FLOW_NW_FRAG_MASK  (FLOW_NW_FRAG_ANY | FLOW_NW_FRAG_LATER)
  |  |  ------------------
  |  |  |  |   54|      0|#define FLOW_NW_FRAG_ANY   (1 << 0) /* Set for any IP frag. */
  |  |  ------------------
  |  |               #define FLOW_NW_FRAG_MASK  (FLOW_NW_FRAG_ANY | FLOW_NW_FRAG_LATER)
  |  |  ------------------
  |  |  |  |   55|      0|#define FLOW_NW_FRAG_LATER (1 << 1) /* Set for IP frag with nonzero offset. */
  |  |  ------------------
  ------------------
  605|      0|    case MFF_TCP_FLAGS:
  ------------------
  |  Branch (605:5): [True: 0, False: 47.5k]
  ------------------
  606|      0|        return !(value->be16 & ~htons(0x0fff));
  607|       |
  608|    204|    case MFF_ARP_OP:
  ------------------
  |  Branch (608:5): [True: 204, False: 47.3k]
  ------------------
  609|    204|        return !(value->be16 & htons(0xff00));
  610|       |
  611|    331|    case MFF_DL_VLAN:
  ------------------
  |  Branch (611:5): [True: 331, False: 47.1k]
  ------------------
  612|    331|        return !(value->be16 & htons(VLAN_CFI | VLAN_PCP_MASK));
  613|    436|    case MFF_VLAN_VID:
  ------------------
  |  Branch (613:5): [True: 436, False: 47.0k]
  ------------------
  614|    436|        return !(value->be16 & htons(VLAN_PCP_MASK));
  615|       |
  616|     31|    case MFF_DL_VLAN_PCP:
  ------------------
  |  Branch (616:5): [True: 31, False: 47.4k]
  ------------------
  617|    470|    case MFF_VLAN_PCP:
  ------------------
  |  Branch (617:5): [True: 439, False: 47.0k]
  ------------------
  618|    470|        return !(value->u8 & ~(VLAN_PCP_MASK >> VLAN_PCP_SHIFT));
  ------------------
  |  |  497|    470|#define VLAN_PCP_MASK 0xe000
  ------------------
                      return !(value->u8 & ~(VLAN_PCP_MASK >> VLAN_PCP_SHIFT));
  ------------------
  |  |  498|    470|#define VLAN_PCP_SHIFT 13
  ------------------
  619|       |
  620|     13|    case MFF_IPV6_LABEL:
  ------------------
  |  Branch (620:5): [True: 13, False: 47.5k]
  ------------------
  621|     13|        return !(value->be32 & ~htonl(IPV6_LABEL_MASK));
  622|       |
  623|     72|    case MFF_MPLS_LABEL:
  ------------------
  |  Branch (623:5): [True: 72, False: 47.4k]
  ------------------
  624|     72|        return !(value->be32 & ~htonl(MPLS_LABEL_MASK >> MPLS_LABEL_SHIFT));
  625|       |
  626|    363|    case MFF_MPLS_TC:
  ------------------
  |  Branch (626:5): [True: 363, False: 47.1k]
  ------------------
  627|    363|        return !(value->u8 & ~(MPLS_TC_MASK >> MPLS_TC_SHIFT));
  ------------------
  |  |  551|    363|#define MPLS_TC_MASK        0x00000e00
  ------------------
                      return !(value->u8 & ~(MPLS_TC_MASK >> MPLS_TC_SHIFT));
  ------------------
  |  |  552|    363|#define MPLS_TC_SHIFT       9
  ------------------
  628|       |
  629|      0|    case MFF_MPLS_BOS:
  ------------------
  |  Branch (629:5): [True: 0, False: 47.5k]
  ------------------
  630|      0|        return !(value->u8 & ~(MPLS_BOS_MASK >> MPLS_BOS_SHIFT));
  ------------------
  |  |  548|      0|#define MPLS_BOS_MASK       0x00000100
  ------------------
                      return !(value->u8 & ~(MPLS_BOS_MASK >> MPLS_BOS_SHIFT));
  ------------------
  |  |  549|      0|#define MPLS_BOS_SHIFT      8
  ------------------
  631|       |
  632|    214|    case MFF_TUN_FLAGS:
  ------------------
  |  Branch (632:5): [True: 214, False: 47.3k]
  ------------------
  633|    214|        return !(value->be16 & ~htons(FLOW_TNL_PUB_F_MASK));
  634|       |
  635|      0|    case MFF_CT_STATE:
  ------------------
  |  Branch (635:5): [True: 0, False: 47.5k]
  ------------------
  636|      0|        return !(value->be32 & ~htonl(CS_SUPPORTED_MASK));
  637|       |
  638|     19|    case MFF_NSH_FLAGS:
  ------------------
  |  Branch (638:5): [True: 19, False: 47.5k]
  ------------------
  639|     19|        return true;
  640|    202|    case MFF_NSH_TTL:
  ------------------
  |  Branch (640:5): [True: 202, False: 47.3k]
  ------------------
  641|    202|        return (value->u8 <= 63);
  642|      0|    case MFF_NSH_MDTYPE:
  ------------------
  |  Branch (642:5): [True: 0, False: 47.5k]
  ------------------
  643|      0|        return (value->u8 == 1 || value->u8 == 2);
  ------------------
  |  Branch (643:17): [True: 0, False: 0]
  |  Branch (643:35): [True: 0, False: 0]
  ------------------
  644|      0|    case MFF_NSH_NP:
  ------------------
  |  Branch (644:5): [True: 0, False: 47.5k]
  ------------------
  645|      0|        return true;
  646|    196|    case MFF_NSH_SPI:
  ------------------
  |  Branch (646:5): [True: 196, False: 47.3k]
  ------------------
  647|    196|        return !(value->be32 & htonl(0xFF000000));
  648|    201|    case MFF_NSH_SI:
  ------------------
  |  Branch (648:5): [True: 201, False: 47.3k]
  ------------------
  649|    467|    case MFF_NSH_C1:
  ------------------
  |  Branch (649:5): [True: 266, False: 47.2k]
  ------------------
  650|    748|    case MFF_NSH_C2:
  ------------------
  |  Branch (650:5): [True: 281, False: 47.2k]
  ------------------
  651|    976|    case MFF_NSH_C3:
  ------------------
  |  Branch (651:5): [True: 228, False: 47.3k]
  ------------------
  652|  1.08k|    case MFF_NSH_C4:
  ------------------
  |  Branch (652:5): [True: 106, False: 47.4k]
  ------------------
  653|  1.08k|        return true;
  654|       |
  655|      0|    case MFF_N_IDS:
  ------------------
  |  Branch (655:5): [True: 0, False: 47.5k]
  ------------------
  656|      0|    default:
  ------------------
  |  Branch (656:5): [True: 0, False: 47.5k]
  ------------------
  657|      0|        OVS_NOT_REACHED();
  ------------------
  |  |  107|      0|#define OVS_NOT_REACHED() abort()
  ------------------
  658|  47.5k|    }
  659|  47.5k|}
mf_get_value:
  666|   215k|{
  667|   215k|    switch (mf->id) {
  668|    658|    case MFF_DP_HASH:
  ------------------
  |  Branch (668:5): [True: 658, False: 214k]
  ------------------
  669|    658|        value->be32 = htonl(flow->dp_hash);
  670|    658|        break;
  671|  1.13k|    case MFF_RECIRC_ID:
  ------------------
  |  Branch (671:5): [True: 1.13k, False: 214k]
  ------------------
  672|  1.13k|        value->be32 = htonl(flow->recirc_id);
  673|  1.13k|        break;
  674|  2.06k|    case MFF_PACKET_TYPE:
  ------------------
  |  Branch (674:5): [True: 2.06k, False: 213k]
  ------------------
  675|  2.06k|        value->be32 = flow->packet_type;
  676|  2.06k|        break;
  677|  1.17k|    case MFF_CONJ_ID:
  ------------------
  |  Branch (677:5): [True: 1.17k, False: 214k]
  ------------------
  678|  1.17k|        value->be32 = htonl(flow->conj_id);
  679|  1.17k|        break;
  680|  1.10k|    case MFF_TUN_ID:
  ------------------
  |  Branch (680:5): [True: 1.10k, False: 214k]
  ------------------
  681|  1.10k|        value->be64 = flow->tunnel.tun_id;
  682|  1.10k|        break;
  683|    858|    case MFF_TUN_SRC:
  ------------------
  |  Branch (683:5): [True: 858, False: 214k]
  ------------------
  684|    858|        value->be32 = flow->tunnel.ip_src;
  685|    858|        break;
  686|    978|    case MFF_TUN_DST:
  ------------------
  |  Branch (686:5): [True: 978, False: 214k]
  ------------------
  687|    978|        value->be32 = flow->tunnel.ip_dst;
  688|    978|        break;
  689|    530|    case MFF_TUN_IPV6_SRC:
  ------------------
  |  Branch (689:5): [True: 530, False: 214k]
  ------------------
  690|    530|        value->ipv6 = flow->tunnel.ipv6_src;
  691|    530|        break;
  692|    812|    case MFF_TUN_IPV6_DST:
  ------------------
  |  Branch (692:5): [True: 812, False: 214k]
  ------------------
  693|    812|        value->ipv6 = flow->tunnel.ipv6_dst;
  694|    812|        break;
  695|    608|    case MFF_TUN_FLAGS:
  ------------------
  |  Branch (695:5): [True: 608, False: 214k]
  ------------------
  696|    608|        value->be16 = htons(flow->tunnel.flags & FLOW_TNL_PUB_F_MASK);
  697|    608|        break;
  698|    856|    case MFF_TUN_GBP_ID:
  ------------------
  |  Branch (698:5): [True: 856, False: 214k]
  ------------------
  699|    856|        value->be16 = flow->tunnel.gbp_id;
  700|    856|        break;
  701|  1.19k|    case MFF_TUN_GBP_FLAGS:
  ------------------
  |  Branch (701:5): [True: 1.19k, False: 214k]
  ------------------
  702|  1.19k|        value->u8 = flow->tunnel.gbp_flags;
  703|  1.19k|        break;
  704|    908|    case MFF_TUN_TTL:
  ------------------
  |  Branch (704:5): [True: 908, False: 214k]
  ------------------
  705|    908|        value->u8 = flow->tunnel.ip_ttl;
  706|    908|        break;
  707|    926|    case MFF_TUN_TOS:
  ------------------
  |  Branch (707:5): [True: 926, False: 214k]
  ------------------
  708|    926|        value->u8 = flow->tunnel.ip_tos;
  709|    926|        break;
  710|    546|    case MFF_TUN_ERSPAN_VER:
  ------------------
  |  Branch (710:5): [True: 546, False: 214k]
  ------------------
  711|    546|        value->u8 = flow->tunnel.erspan_ver;
  712|    546|        break;
  713|    260|    case MFF_TUN_ERSPAN_IDX:
  ------------------
  |  Branch (713:5): [True: 260, False: 215k]
  ------------------
  714|    260|        value->be32 = htonl(flow->tunnel.erspan_idx);
  715|    260|        break;
  716|    530|    case MFF_TUN_ERSPAN_DIR:
  ------------------
  |  Branch (716:5): [True: 530, False: 214k]
  ------------------
  717|    530|        value->u8 = flow->tunnel.erspan_dir;
  718|    530|        break;
  719|      0|    case MFF_TUN_ERSPAN_HWID:
  ------------------
  |  Branch (719:5): [True: 0, False: 215k]
  ------------------
  720|      0|        value->u8 = flow->tunnel.erspan_hwid;
  721|      0|        break;
  722|    962|    case MFF_TUN_GTPU_FLAGS:
  ------------------
  |  Branch (722:5): [True: 962, False: 214k]
  ------------------
  723|    962|        value->u8 = flow->tunnel.gtpu_flags;
  724|    962|        break;
  725|      0|    case MFF_TUN_GTPU_MSGTYPE:
  ------------------
  |  Branch (725:5): [True: 0, False: 215k]
  ------------------
  726|      0|        value->u8 = flow->tunnel.gtpu_msgtype;
  727|      0|        break;
  728|  77.1k|    CASE_MFF_TUN_METADATA:
  ------------------
  |  | 2110|  2.75k|    case MFF_TUN_METADATA0: case MFF_TUN_METADATA1:   \
  |  |  ------------------
  |  |  |  Branch (2110:5): [True: 1.57k, False: 213k]
  |  |  |  Branch (2110:29): [True: 1.18k, False: 214k]
  |  |  ------------------
  |  | 2111|  5.35k|    case MFF_TUN_METADATA2: case MFF_TUN_METADATA3:   \
  |  |  ------------------
  |  |  |  Branch (2111:5): [True: 1.80k, False: 213k]
  |  |  |  Branch (2111:29): [True: 792, False: 214k]
  |  |  ------------------
  |  | 2112|  8.39k|    case MFF_TUN_METADATA4: case MFF_TUN_METADATA5:   \
  |  |  ------------------
  |  |  |  Branch (2112:5): [True: 1.83k, False: 213k]
  |  |  |  Branch (2112:29): [True: 1.20k, False: 214k]
  |  |  ------------------
  |  | 2113|  10.7k|    case MFF_TUN_METADATA6: case MFF_TUN_METADATA7:   \
  |  |  ------------------
  |  |  |  Branch (2113:5): [True: 1.16k, False: 214k]
  |  |  |  Branch (2113:29): [True: 1.16k, False: 214k]
  |  |  ------------------
  |  | 2114|  13.1k|    case MFF_TUN_METADATA8: case MFF_TUN_METADATA9:   \
  |  |  ------------------
  |  |  |  Branch (2114:5): [True: 1.48k, False: 214k]
  |  |  |  Branch (2114:29): [True: 978, False: 214k]
  |  |  ------------------
  |  | 2115|  15.3k|    case MFF_TUN_METADATA10: case MFF_TUN_METADATA11: \
  |  |  ------------------
  |  |  |  Branch (2115:5): [True: 1.26k, False: 214k]
  |  |  |  Branch (2115:30): [True: 916, False: 214k]
  |  |  ------------------
  |  | 2116|  17.2k|    case MFF_TUN_METADATA12: case MFF_TUN_METADATA13: \
  |  |  ------------------
  |  |  |  Branch (2116:5): [True: 970, False: 214k]
  |  |  |  Branch (2116:30): [True: 934, False: 214k]
  |  |  ------------------
  |  | 2117|  19.3k|    case MFF_TUN_METADATA14: case MFF_TUN_METADATA15: \
  |  |  ------------------
  |  |  |  Branch (2117:5): [True: 1.13k, False: 214k]
  |  |  |  Branch (2117:30): [True: 976, False: 214k]
  |  |  ------------------
  |  | 2118|  21.1k|    case MFF_TUN_METADATA16: case MFF_TUN_METADATA17: \
  |  |  ------------------
  |  |  |  Branch (2118:5): [True: 970, False: 214k]
  |  |  |  Branch (2118:30): [True: 806, False: 214k]
  |  |  ------------------
  |  | 2119|  23.1k|    case MFF_TUN_METADATA18: case MFF_TUN_METADATA19: \
  |  |  ------------------
  |  |  |  Branch (2119:5): [True: 962, False: 214k]
  |  |  |  Branch (2119:30): [True: 1.05k, False: 214k]
  |  |  ------------------
  |  | 2120|  26.4k|    case MFF_TUN_METADATA20: case MFF_TUN_METADATA21: \
  |  |  ------------------
  |  |  |  Branch (2120:5): [True: 1.33k, False: 214k]
  |  |  |  Branch (2120:30): [True: 1.90k, False: 213k]
  |  |  ------------------
  |  | 2121|  28.9k|    case MFF_TUN_METADATA22: case MFF_TUN_METADATA23: \
  |  |  ------------------
  |  |  |  Branch (2121:5): [True: 1.25k, False: 214k]
  |  |  |  Branch (2121:30): [True: 1.30k, False: 214k]
  |  |  ------------------
  |  | 2122|  31.5k|    case MFF_TUN_METADATA24: case MFF_TUN_METADATA25: \
  |  |  ------------------
  |  |  |  Branch (2122:5): [True: 1.34k, False: 214k]
  |  |  |  Branch (2122:30): [True: 1.23k, False: 214k]
  |  |  ------------------
  |  | 2123|  33.5k|    case MFF_TUN_METADATA26: case MFF_TUN_METADATA27: \
  |  |  ------------------
  |  |  |  Branch (2123:5): [True: 1.01k, False: 214k]
  |  |  |  Branch (2123:30): [True: 970, False: 214k]
  |  |  ------------------
  |  | 2124|  35.5k|    case MFF_TUN_METADATA28: case MFF_TUN_METADATA29: \
  |  |  ------------------
  |  |  |  Branch (2124:5): [True: 1.08k, False: 214k]
  |  |  |  Branch (2124:30): [True: 928, False: 214k]
  |  |  ------------------
  |  | 2125|  37.8k|    case MFF_TUN_METADATA30: case MFF_TUN_METADATA31: \
  |  |  ------------------
  |  |  |  Branch (2125:5): [True: 1.28k, False: 214k]
  |  |  |  Branch (2125:30): [True: 1.00k, False: 214k]
  |  |  ------------------
  |  | 2126|  39.9k|    case MFF_TUN_METADATA32: case MFF_TUN_METADATA33: \
  |  |  ------------------
  |  |  |  Branch (2126:5): [True: 1.11k, False: 214k]
  |  |  |  Branch (2126:30): [True: 1.01k, False: 214k]
  |  |  ------------------
  |  | 2127|  42.3k|    case MFF_TUN_METADATA34: case MFF_TUN_METADATA35: \
  |  |  ------------------
  |  |  |  Branch (2127:5): [True: 1.51k, False: 213k]
  |  |  |  Branch (2127:30): [True: 914, False: 214k]
  |  |  ------------------
  |  | 2128|  47.6k|    case MFF_TUN_METADATA36: case MFF_TUN_METADATA37: \
  |  |  ------------------
  |  |  |  Branch (2128:5): [True: 1.08k, False: 214k]
  |  |  |  Branch (2128:30): [True: 4.19k, False: 211k]
  |  |  ------------------
  |  | 2129|  50.1k|    case MFF_TUN_METADATA38: case MFF_TUN_METADATA39: \
  |  |  ------------------
  |  |  |  Branch (2129:5): [True: 1.28k, False: 214k]
  |  |  |  Branch (2129:30): [True: 1.23k, False: 214k]
  |  |  ------------------
  |  | 2130|  52.1k|    case MFF_TUN_METADATA40: case MFF_TUN_METADATA41: \
  |  |  ------------------
  |  |  |  Branch (2130:5): [True: 916, False: 214k]
  |  |  |  Branch (2130:30): [True: 1.05k, False: 214k]
  |  |  ------------------
  |  | 2131|  55.6k|    case MFF_TUN_METADATA42: case MFF_TUN_METADATA43: \
  |  |  ------------------
  |  |  |  Branch (2131:5): [True: 1.20k, False: 214k]
  |  |  |  Branch (2131:30): [True: 2.27k, False: 213k]
  |  |  ------------------
  |  | 2132|  57.3k|    case MFF_TUN_METADATA44: case MFF_TUN_METADATA45: \
  |  |  ------------------
  |  |  |  Branch (2132:5): [True: 904, False: 214k]
  |  |  |  Branch (2132:30): [True: 768, False: 214k]
  |  |  ------------------
  |  | 2133|  59.4k|    case MFF_TUN_METADATA46: case MFF_TUN_METADATA47: \
  |  |  ------------------
  |  |  |  Branch (2133:5): [True: 964, False: 214k]
  |  |  |  Branch (2133:30): [True: 1.16k, False: 214k]
  |  |  ------------------
  |  | 2134|  61.7k|    case MFF_TUN_METADATA48: case MFF_TUN_METADATA49: \
  |  |  ------------------
  |  |  |  Branch (2134:5): [True: 1.34k, False: 214k]
  |  |  |  Branch (2134:30): [True: 930, False: 214k]
  |  |  ------------------
  |  | 2135|  63.2k|    case MFF_TUN_METADATA50: case MFF_TUN_METADATA51: \
  |  |  ------------------
  |  |  |  Branch (2135:5): [True: 914, False: 214k]
  |  |  |  Branch (2135:30): [True: 608, False: 214k]
  |  |  ------------------
  |  | 2136|  65.1k|    case MFF_TUN_METADATA52: case MFF_TUN_METADATA53: \
  |  |  ------------------
  |  |  |  Branch (2136:5): [True: 912, False: 214k]
  |  |  |  Branch (2136:30): [True: 984, False: 214k]
  |  |  ------------------
  |  | 2137|  67.6k|    case MFF_TUN_METADATA54: case MFF_TUN_METADATA55: \
  |  |  ------------------
  |  |  |  Branch (2137:5): [True: 1.27k, False: 214k]
  |  |  |  Branch (2137:30): [True: 1.28k, False: 214k]
  |  |  ------------------
  |  | 2138|  70.5k|    case MFF_TUN_METADATA56: case MFF_TUN_METADATA57: \
  |  |  ------------------
  |  |  |  Branch (2138:5): [True: 1.59k, False: 213k]
  |  |  |  Branch (2138:30): [True: 1.29k, False: 214k]
  |  |  ------------------
  |  | 2139|  72.6k|    case MFF_TUN_METADATA58: case MFF_TUN_METADATA59: \
  |  |  ------------------
  |  |  |  Branch (2139:5): [True: 798, False: 214k]
  |  |  |  Branch (2139:30): [True: 1.30k, False: 214k]
  |  |  ------------------
  |  | 2140|  75.3k|    case MFF_TUN_METADATA60: case MFF_TUN_METADATA61: \
  |  |  ------------------
  |  |  |  Branch (2140:5): [True: 1.42k, False: 214k]
  |  |  |  Branch (2140:30): [True: 1.21k, False: 214k]
  |  |  ------------------
  |  | 2141|  77.1k|    case MFF_TUN_METADATA62: case MFF_TUN_METADATA63
  |  |  ------------------
  |  |  |  Branch (2141:5): [True: 1.09k, False: 214k]
  |  |  ------------------
  ------------------
  729|  77.1k|        tun_metadata_read(&flow->tunnel, mf, value);
  730|  77.1k|        break;
  731|       |
  732|    866|    case MFF_METADATA:
  ------------------
  |  Branch (732:5): [True: 866, False: 214k]
  ------------------
  733|    866|        value->be64 = flow->metadata;
  734|    866|        break;
  735|       |
  736|    986|    case MFF_IN_PORT:
  ------------------
  |  Branch (736:5): [True: 986, False: 214k]
  ------------------
  737|    986|        value->be16 = htons(ofp_to_u16(flow->in_port.ofp_port));
  738|    986|        break;
  739|  1.34k|    case MFF_IN_PORT_OXM:
  ------------------
  |  Branch (739:5): [True: 1.34k, False: 214k]
  ------------------
  740|  1.34k|        value->be32 = ofputil_port_to_ofp11(flow->in_port.ofp_port);
  741|  1.34k|        break;
  742|    990|    case MFF_ACTSET_OUTPUT:
  ------------------
  |  Branch (742:5): [True: 990, False: 214k]
  ------------------
  743|    990|        value->be32 = ofputil_port_to_ofp11(flow->actset_output);
  744|    990|        break;
  745|       |
  746|      0|    case MFF_SKB_PRIORITY:
  ------------------
  |  Branch (746:5): [True: 0, False: 215k]
  ------------------
  747|      0|        value->be32 = htonl(flow->skb_priority);
  748|      0|        break;
  749|       |
  750|    870|    case MFF_PKT_MARK:
  ------------------
  |  Branch (750:5): [True: 870, False: 214k]
  ------------------
  751|    870|        value->be32 = htonl(flow->pkt_mark);
  752|    870|        break;
  753|       |
  754|    486|    case MFF_CT_STATE:
  ------------------
  |  Branch (754:5): [True: 486, False: 215k]
  ------------------
  755|    486|        value->be32 = htonl(flow->ct_state);
  756|    486|        break;
  757|       |
  758|    678|    case MFF_CT_ZONE:
  ------------------
  |  Branch (758:5): [True: 678, False: 214k]
  ------------------
  759|    678|        value->be16 = htons(flow->ct_zone);
  760|    678|        break;
  761|       |
  762|  6.38k|    case MFF_CT_MARK:
  ------------------
  |  Branch (762:5): [True: 6.38k, False: 209k]
  ------------------
  763|  6.38k|        value->be32 = htonl(flow->ct_mark);
  764|  6.38k|        break;
  765|       |
  766|    828|    case MFF_CT_LABEL:
  ------------------
  |  Branch (766:5): [True: 828, False: 214k]
  ------------------
  767|    828|        value->be128 = hton128(flow->ct_label);
  768|    828|        break;
  769|       |
  770|    700|    case MFF_CT_NW_PROTO:
  ------------------
  |  Branch (770:5): [True: 700, False: 214k]
  ------------------
  771|    700|        value->u8 = flow->ct_nw_proto;
  772|    700|        break;
  773|       |
  774|    914|    case MFF_CT_NW_SRC:
  ------------------
  |  Branch (774:5): [True: 914, False: 214k]
  ------------------
  775|    914|        value->be32 = flow->ct_nw_src;
  776|    914|        break;
  777|       |
  778|  2.48k|    case MFF_CT_NW_DST:
  ------------------
  |  Branch (778:5): [True: 2.48k, False: 213k]
  ------------------
  779|  2.48k|        value->be32 = flow->ct_nw_dst;
  780|  2.48k|        break;
  781|       |
  782|    522|    case MFF_CT_IPV6_SRC:
  ------------------
  |  Branch (782:5): [True: 522, False: 214k]
  ------------------
  783|    522|        value->ipv6 = flow->ct_ipv6_src;
  784|    522|        break;
  785|       |
  786|    888|    case MFF_CT_IPV6_DST:
  ------------------
  |  Branch (786:5): [True: 888, False: 214k]
  ------------------
  787|    888|        value->ipv6 = flow->ct_ipv6_dst;
  788|    888|        break;
  789|       |
  790|  1.37k|    case MFF_CT_TP_SRC:
  ------------------
  |  Branch (790:5): [True: 1.37k, False: 214k]
  ------------------
  791|  1.37k|        value->be16 = flow->ct_tp_src;
  792|  1.37k|        break;
  793|       |
  794|    810|    case MFF_CT_TP_DST:
  ------------------
  |  Branch (794:5): [True: 810, False: 214k]
  ------------------
  795|    810|        value->be16 = flow->ct_tp_dst;
  796|    810|        break;
  797|       |
  798|  29.1k|    CASE_MFF_REGS:
  ------------------
  |  | 2065|  5.96k|    case MFF_REG0: case MFF_REG1: case MFF_REG2: case MFF_REG3:     \
  |  |  ------------------
  |  |  |  Branch (2065:5): [True: 1.07k, False: 214k]
  |  |  |  Branch (2065:20): [True: 1.15k, False: 214k]
  |  |  |  Branch (2065:35): [True: 2.01k, False: 213k]
  |  |  |  Branch (2065:50): [True: 1.71k, False: 213k]
  |  |  ------------------
  |  | 2066|  9.37k|    case MFF_REG4: case MFF_REG5: case MFF_REG6: case MFF_REG7:     \
  |  |  ------------------
  |  |  |  Branch (2066:5): [True: 1.09k, False: 214k]
  |  |  |  Branch (2066:20): [True: 1.04k, False: 214k]
  |  |  |  Branch (2066:35): [True: 628, False: 214k]
  |  |  |  Branch (2066:50): [True: 644, False: 214k]
  |  |  ------------------
  |  | 2067|  15.1k|    case MFF_REG8: case MFF_REG9: case MFF_REG10: case MFF_REG11:   \
  |  |  ------------------
  |  |  |  Branch (2067:5): [True: 738, False: 214k]
  |  |  |  Branch (2067:20): [True: 338, False: 215k]
  |  |  |  Branch (2067:35): [True: 1.02k, False: 214k]
  |  |  |  Branch (2067:51): [True: 3.70k, False: 211k]
  |  |  ------------------
  |  | 2068|  17.5k|    case MFF_REG12: case MFF_REG13: case MFF_REG14: case MFF_REG15: \
  |  |  ------------------
  |  |  |  Branch (2068:5): [True: 552, False: 214k]
  |  |  |  Branch (2068:21): [True: 580, False: 214k]
  |  |  |  Branch (2068:37): [True: 650, False: 214k]
  |  |  |  Branch (2068:53): [True: 560, False: 214k]
  |  |  ------------------
  |  | 2069|  20.3k|    case MFF_REG16: case MFF_REG17: case MFF_REG18: case MFF_REG19: \
  |  |  ------------------
  |  |  |  Branch (2069:5): [True: 580, False: 214k]
  |  |  |  Branch (2069:21): [True: 946, False: 214k]
  |  |  |  Branch (2069:37): [True: 722, False: 214k]
  |  |  |  Branch (2069:53): [True: 582, False: 214k]
  |  |  ------------------
  |  | 2070|  23.8k|    case MFF_REG20: case MFF_REG21: case MFF_REG22: case MFF_REG23: \
  |  |  ------------------
  |  |  |  Branch (2070:5): [True: 482, False: 215k]
  |  |  |  Branch (2070:21): [True: 580, False: 214k]
  |  |  |  Branch (2070:37): [True: 1.34k, False: 214k]
  |  |  |  Branch (2070:53): [True: 1.13k, False: 214k]
  |  |  ------------------
  |  | 2071|  26.5k|    case MFF_REG24: case MFF_REG25: case MFF_REG26: case MFF_REG27: \
  |  |  ------------------
  |  |  |  Branch (2071:5): [True: 726, False: 214k]
  |  |  |  Branch (2071:21): [True: 328, False: 215k]
  |  |  |  Branch (2071:37): [True: 678, False: 214k]
  |  |  |  Branch (2071:53): [True: 872, False: 214k]
  |  |  ------------------
  |  | 2072|  29.1k|    case MFF_REG28: case MFF_REG29: case MFF_REG30: case MFF_REG31
  |  |  ------------------
  |  |  |  Branch (2072:5): [True: 874, False: 214k]
  |  |  |  Branch (2072:21): [True: 360, False: 215k]
  |  |  |  Branch (2072:37): [True: 816, False: 214k]
  |  |  ------------------
  ------------------
  799|  29.1k|        value->be32 = htonl(flow->regs[mf->id - MFF_REG0]);
  800|  29.1k|        break;
  801|       |
  802|  15.8k|    CASE_MFF_XREGS:
  ------------------
  |  | 2081|  4.98k|    case MFF_XREG0: case MFF_XREG1: case MFF_XREG2: case MFF_XREG3:    \
  |  |  ------------------
  |  |  |  Branch (2081:5): [True: 1.23k, False: 214k]
  |  |  |  Branch (2081:21): [True: 1.10k, False: 214k]
  |  |  |  Branch (2081:37): [True: 1.35k, False: 214k]
  |  |  |  Branch (2081:53): [True: 1.29k, False: 214k]
  |  |  ------------------
  |  | 2082|  8.72k|    case MFF_XREG4: case MFF_XREG5: case MFF_XREG6: case MFF_XREG7:    \
  |  |  ------------------
  |  |  |  Branch (2082:5): [True: 1.38k, False: 214k]
  |  |  |  Branch (2082:21): [True: 950, False: 214k]
  |  |  |  Branch (2082:37): [True: 724, False: 214k]
  |  |  |  Branch (2082:53): [True: 684, False: 214k]
  |  |  ------------------
  |  | 2083|  12.6k|    case MFF_XREG8: case MFF_XREG9: case MFF_XREG10: case MFF_XREG11:  \
  |  |  ------------------
  |  |  |  Branch (2083:5): [True: 698, False: 214k]
  |  |  |  Branch (2083:21): [True: 962, False: 214k]
  |  |  |  Branch (2083:37): [True: 1.11k, False: 214k]
  |  |  |  Branch (2083:54): [True: 1.15k, False: 214k]
  |  |  ------------------
  |  | 2084|  15.8k|    case MFF_XREG12: case MFF_XREG13: case MFF_XREG14: case MFF_XREG15
  |  |  ------------------
  |  |  |  Branch (2084:5): [True: 1.31k, False: 214k]
  |  |  |  Branch (2084:22): [True: 502, False: 214k]
  |  |  |  Branch (2084:39): [True: 554, False: 214k]
  |  |  ------------------
  ------------------
  803|  15.8k|        value->be64 = htonll(flow_get_xreg(flow, mf->id - MFF_XREG0));
  804|  15.8k|        break;
  805|       |
  806|  10.1k|    CASE_MFF_XXREGS:
  ------------------
  |  | 2093|  6.20k|    case MFF_XXREG0: case MFF_XXREG1: case MFF_XXREG2: case MFF_XXREG3: \
  |  |  ------------------
  |  |  |  Branch (2093:5): [True: 610, False: 214k]
  |  |  |  Branch (2093:22): [True: 560, False: 214k]
  |  |  |  Branch (2093:39): [True: 574, False: 214k]
  |  |  |  Branch (2093:56): [True: 4.45k, False: 211k]
  |  |  ------------------
  |  | 2094|  10.1k|    case MFF_XXREG4: case MFF_XXREG5: case MFF_XXREG6: case MFF_XXREG7
  |  |  ------------------
  |  |  |  Branch (2094:5): [True: 766, False: 214k]
  |  |  |  Branch (2094:22): [True: 322, False: 215k]
  |  |  |  Branch (2094:39): [True: 1.74k, False: 213k]
  |  |  ------------------
  ------------------
  807|  10.1k|        value->be128 = hton128(flow_get_xxreg(flow, mf->id - MFF_XXREG0));
  808|  10.1k|        break;
  809|       |
  810|  1.19k|    case MFF_ETH_SRC:
  ------------------
  |  Branch (810:5): [True: 1.19k, False: 214k]
  ------------------
  811|  1.19k|        value->mac = flow->dl_src;
  812|  1.19k|        break;
  813|       |
  814|    958|    case MFF_ETH_DST:
  ------------------
  |  Branch (814:5): [True: 958, False: 214k]
  ------------------
  815|    958|        value->mac = flow->dl_dst;
  816|    958|        break;
  817|       |
  818|    572|    case MFF_ETH_TYPE:
  ------------------
  |  Branch (818:5): [True: 572, False: 214k]
  ------------------
  819|    572|        value->be16 = flow->dl_type;
  820|    572|        break;
  821|       |
  822|    990|    case MFF_VLAN_TCI:
  ------------------
  |  Branch (822:5): [True: 990, False: 214k]
  ------------------
  823|    990|        value->be16 = flow->vlans[0].tci;
  824|    990|        break;
  825|       |
  826|    454|    case MFF_DL_VLAN:
  ------------------
  |  Branch (826:5): [True: 454, False: 215k]
  ------------------
  827|    454|        value->be16 = flow->vlans[0].tci & htons(VLAN_VID_MASK);
  828|    454|        break;
  829|    198|    case MFF_VLAN_VID:
  ------------------
  |  Branch (829:5): [True: 198, False: 215k]
  ------------------
  830|    198|        value->be16 = flow->vlans[0].tci & htons(VLAN_VID_MASK | VLAN_CFI);
  831|    198|        break;
  832|       |
  833|    690|    case MFF_DL_VLAN_PCP:
  ------------------
  |  Branch (833:5): [True: 690, False: 214k]
  ------------------
  834|  1.16k|    case MFF_VLAN_PCP:
  ------------------
  |  Branch (834:5): [True: 470, False: 215k]
  ------------------
  835|  1.16k|        value->u8 = vlan_tci_to_pcp(flow->vlans[0].tci);
  836|  1.16k|        break;
  837|       |
  838|    398|    case MFF_MPLS_LABEL:
  ------------------
  |  Branch (838:5): [True: 398, False: 215k]
  ------------------
  839|    398|        value->be32 = htonl(mpls_lse_to_label(flow->mpls_lse[0]));
  840|    398|        break;
  841|       |
  842|    520|    case MFF_MPLS_TC:
  ------------------
  |  Branch (842:5): [True: 520, False: 214k]
  ------------------
  843|    520|        value->u8 = mpls_lse_to_tc(flow->mpls_lse[0]);
  844|    520|        break;
  845|       |
  846|    516|    case MFF_MPLS_BOS:
  ------------------
  |  Branch (846:5): [True: 516, False: 214k]
  ------------------
  847|    516|        value->u8 = mpls_lse_to_bos(flow->mpls_lse[0]);
  848|    516|        break;
  849|       |
  850|    574|    case MFF_MPLS_TTL:
  ------------------
  |  Branch (850:5): [True: 574, False: 214k]
  ------------------
  851|    574|        value->u8 = mpls_lse_to_ttl(flow->mpls_lse[0]);
  852|    574|        break;
  853|       |
  854|  1.01k|    case MFF_IPV4_SRC:
  ------------------
  |  Branch (854:5): [True: 1.01k, False: 214k]
  ------------------
  855|  1.01k|        value->be32 = flow->nw_src;
  856|  1.01k|        break;
  857|       |
  858|    776|    case MFF_IPV4_DST:
  ------------------
  |  Branch (858:5): [True: 776, False: 214k]
  ------------------
  859|    776|        value->be32 = flow->nw_dst;
  860|    776|        break;
  861|       |
  862|    392|    case MFF_IPV6_SRC:
  ------------------
  |  Branch (862:5): [True: 392, False: 215k]
  ------------------
  863|    392|        value->ipv6 = flow->ipv6_src;
  864|    392|        break;
  865|       |
  866|    716|    case MFF_IPV6_DST:
  ------------------
  |  Branch (866:5): [True: 716, False: 214k]
  ------------------
  867|    716|        value->ipv6 = flow->ipv6_dst;
  868|    716|        break;
  869|       |
  870|  1.08k|    case MFF_IPV6_LABEL:
  ------------------
  |  Branch (870:5): [True: 1.08k, False: 214k]
  ------------------
  871|  1.08k|        value->be32 = flow->ipv6_label;
  872|  1.08k|        break;
  873|       |
  874|    916|    case MFF_IP_PROTO:
  ------------------
  |  Branch (874:5): [True: 916, False: 214k]
  ------------------
  875|    916|        value->u8 = flow->nw_proto;
  876|    916|        break;
  877|       |
  878|    528|    case MFF_IP_DSCP:
  ------------------
  |  Branch (878:5): [True: 528, False: 214k]
  ------------------
  879|    528|        value->u8 = flow->nw_tos & IP_DSCP_MASK;
  ------------------
  |  |  724|    528|#define IP_DSCP_MASK 0xfc
  ------------------
  880|    528|        break;
  881|       |
  882|    528|    case MFF_IP_DSCP_SHIFTED:
  ------------------
  |  Branch (882:5): [True: 528, False: 214k]
  ------------------
  883|    528|        value->u8 = flow->nw_tos >> 2;
  884|    528|        break;
  885|       |
  886|    518|    case MFF_IP_ECN:
  ------------------
  |  Branch (886:5): [True: 518, False: 214k]
  ------------------
  887|    518|        value->u8 = flow->nw_tos & IP_ECN_MASK;
  ------------------
  |  |  722|    518|#define IP_ECN_MASK 0x03
  ------------------
  888|    518|        break;
  889|       |
  890|    610|    case MFF_IP_TTL:
  ------------------
  |  Branch (890:5): [True: 610, False: 214k]
  ------------------
  891|    610|        value->u8 = flow->nw_ttl;
  892|    610|        break;
  893|       |
  894|    510|    case MFF_IP_FRAG:
  ------------------
  |  Branch (894:5): [True: 510, False: 214k]
  ------------------
  895|    510|        value->u8 = flow->nw_frag;
  896|    510|        break;
  897|       |
  898|    514|    case MFF_ARP_OP:
  ------------------
  |  Branch (898:5): [True: 514, False: 214k]
  ------------------
  899|    514|        value->be16 = htons(flow->nw_proto);
  900|    514|        break;
  901|       |
  902|  1.47k|    case MFF_ARP_SPA:
  ------------------
  |  Branch (902:5): [True: 1.47k, False: 214k]
  ------------------
  903|  1.47k|        value->be32 = flow->nw_src;
  904|  1.47k|        break;
  905|       |
  906|  2.27k|    case MFF_ARP_TPA:
  ------------------
  |  Branch (906:5): [True: 2.27k, False: 213k]
  ------------------
  907|  2.27k|        value->be32 = flow->nw_dst;
  908|  2.27k|        break;
  909|       |
  910|  1.65k|    case MFF_ARP_SHA:
  ------------------
  |  Branch (910:5): [True: 1.65k, False: 213k]
  ------------------
  911|  3.04k|    case MFF_ND_SLL:
  ------------------
  |  Branch (911:5): [True: 1.39k, False: 214k]
  ------------------
  912|  3.04k|        value->mac = flow->arp_sha;
  913|  3.04k|        break;
  914|       |
  915|    964|    case MFF_ARP_THA:
  ------------------
  |  Branch (915:5): [True: 964, False: 214k]
  ------------------
  916|  2.01k|    case MFF_ND_TLL:
  ------------------
  |  Branch (916:5): [True: 1.04k, False: 214k]
  ------------------
  917|  2.01k|        value->mac = flow->arp_tha;
  918|  2.01k|        break;
  919|       |
  920|    502|    case MFF_TCP_SRC:
  ------------------
  |  Branch (920:5): [True: 502, False: 214k]
  ------------------
  921|  1.02k|    case MFF_UDP_SRC:
  ------------------
  |  Branch (921:5): [True: 518, False: 214k]
  ------------------
  922|  1.93k|    case MFF_SCTP_SRC:
  ------------------
  |  Branch (922:5): [True: 910, False: 214k]
  ------------------
  923|  1.93k|        value->be16 = flow->tp_src;
  924|  1.93k|        break;
  925|       |
  926|  1.08k|    case MFF_TCP_DST:
  ------------------
  |  Branch (926:5): [True: 1.08k, False: 214k]
  ------------------
  927|  2.01k|    case MFF_UDP_DST:
  ------------------
  |  Branch (927:5): [True: 924, False: 214k]
  ------------------
  928|  2.51k|    case MFF_SCTP_DST:
  ------------------
  |  Branch (928:5): [True: 500, False: 214k]
  ------------------
  929|  2.51k|        value->be16 = flow->tp_dst;
  930|  2.51k|        break;
  931|       |
  932|    574|    case MFF_TCP_FLAGS:
  ------------------
  |  Branch (932:5): [True: 574, False: 214k]
  ------------------
  933|    574|    case MFF_ND_OPTIONS_TYPE:
  ------------------
  |  Branch (933:5): [True: 0, False: 215k]
  ------------------
  934|    574|        value->be16 = flow->tcp_flags;
  935|    574|        break;
  936|       |
  937|      0|    case MFF_ND_RESERVED:
  ------------------
  |  Branch (937:5): [True: 0, False: 215k]
  ------------------
  938|      0|        value->be32 = flow->igmp_group_ip4;
  939|      0|        break;
  940|       |
  941|    800|    case MFF_ICMPV4_TYPE:
  ------------------
  |  Branch (941:5): [True: 800, False: 214k]
  ------------------
  942|  1.64k|    case MFF_ICMPV6_TYPE:
  ------------------
  |  Branch (942:5): [True: 840, False: 214k]
  ------------------
  943|  1.64k|        value->u8 = ntohs(flow->tp_src);
  944|  1.64k|        break;
  945|       |
  946|    772|    case MFF_ICMPV4_CODE:
  ------------------
  |  Branch (946:5): [True: 772, False: 214k]
  ------------------
  947|  1.67k|    case MFF_ICMPV6_CODE:
  ------------------
  |  Branch (947:5): [True: 904, False: 214k]
  ------------------
  948|  1.67k|        value->u8 = ntohs(flow->tp_dst);
  949|  1.67k|        break;
  950|       |
  951|    970|    case MFF_ND_TARGET:
  ------------------
  |  Branch (951:5): [True: 970, False: 214k]
  ------------------
  952|    970|        value->ipv6 = flow->nd_target;
  953|    970|        break;
  954|       |
  955|    554|    case MFF_NSH_FLAGS:
  ------------------
  |  Branch (955:5): [True: 554, False: 214k]
  ------------------
  956|    554|        value->u8 = flow->nsh.flags;
  957|    554|        break;
  958|    922|    case MFF_NSH_TTL:
  ------------------
  |  Branch (958:5): [True: 922, False: 214k]
  ------------------
  959|    922|        value->u8 = flow->nsh.ttl;
  960|    922|        break;
  961|    912|    case MFF_NSH_MDTYPE:
  ------------------
  |  Branch (961:5): [True: 912, False: 214k]
  ------------------
  962|    912|        value->u8 = flow->nsh.mdtype;
  963|    912|        break;
  964|    806|    case MFF_NSH_NP:
  ------------------
  |  Branch (964:5): [True: 806, False: 214k]
  ------------------
  965|    806|        value->u8 = flow->nsh.np;
  966|    806|        break;
  967|  2.38k|    case MFF_NSH_SPI:
  ------------------
  |  Branch (967:5): [True: 2.38k, False: 213k]
  ------------------
  968|  2.38k|        value->be32 = nsh_path_hdr_to_spi(flow->nsh.path_hdr);
  969|  2.38k|        if (value->be32 == htonl(NSH_SPI_MASK >> NSH_SPI_SHIFT)) {
  ------------------
  |  Branch (969:13): [True: 471, False: 1.91k]
  ------------------
  970|    471|            value->be32 = OVS_BE32_MAX;
  ------------------
  |  |   43|    471|#define OVS_BE32_MAX ((OVS_FORCE ovs_be32) 0xffffffff)
  ------------------
  971|    471|        }
  972|  2.38k|        break;
  973|    958|    case MFF_NSH_SI:
  ------------------
  |  Branch (973:5): [True: 958, False: 214k]
  ------------------
  974|    958|        value->u8 = nsh_path_hdr_to_si(flow->nsh.path_hdr);
  975|    958|        break;
  976|  3.25k|    case MFF_NSH_C1:
  ------------------
  |  Branch (976:5): [True: 3.25k, False: 212k]
  ------------------
  977|  4.25k|    case MFF_NSH_C2:
  ------------------
  |  Branch (977:5): [True: 998, False: 214k]
  ------------------
  978|  5.07k|    case MFF_NSH_C3:
  ------------------
  |  Branch (978:5): [True: 824, False: 214k]
  ------------------
  979|  5.69k|    case MFF_NSH_C4:
  ------------------
  |  Branch (979:5): [True: 622, False: 214k]
  ------------------
  980|  5.69k|        value->be32 = flow->nsh.context[mf->id - MFF_NSH_C1];
  981|  5.69k|        break;
  982|       |
  983|      0|    case MFF_N_IDS:
  ------------------
  |  Branch (983:5): [True: 0, False: 215k]
  ------------------
  984|      0|    default:
  ------------------
  |  Branch (984:5): [True: 0, False: 215k]
  ------------------
  985|      0|        OVS_NOT_REACHED();
  ------------------
  |  |  107|      0|#define OVS_NOT_REACHED() abort()
  ------------------
  986|   215k|    }
  987|   215k|}
mf_set_value:
  999|  74.6k|{
 1000|  74.6k|    if (err_str) {
  ------------------
  |  Branch (1000:9): [True: 45.7k, False: 28.8k]
  ------------------
 1001|  45.7k|        *err_str = NULL;
 1002|  45.7k|    }
 1003|       |
 1004|  74.6k|    switch (mf->id) {
 1005|    477|    case MFF_DP_HASH:
  ------------------
  |  Branch (1005:5): [True: 477, False: 74.1k]
  ------------------
 1006|    477|        match_set_dp_hash(match, ntohl(value->be32));
 1007|    477|        break;
 1008|    216|    case MFF_RECIRC_ID:
  ------------------
  |  Branch (1008:5): [True: 216, False: 74.3k]
  ------------------
 1009|    216|        match_set_recirc_id(match, ntohl(value->be32));
 1010|    216|        break;
 1011|  1.06k|    case MFF_PACKET_TYPE:
  ------------------
  |  Branch (1011:5): [True: 1.06k, False: 73.5k]
  ------------------
 1012|  1.06k|        match_set_packet_type(match, value->be32);
 1013|  1.06k|        break;
 1014|    368|    case MFF_CONJ_ID:
  ------------------
  |  Branch (1014:5): [True: 368, False: 74.2k]
  ------------------
 1015|    368|        match_set_conj_id(match, ntohl(value->be32));
 1016|    368|        break;
 1017|    366|    case MFF_TUN_ID:
  ------------------
  |  Branch (1017:5): [True: 366, False: 74.2k]
  ------------------
 1018|    366|        match_set_tun_id(match, value->be64);
 1019|    366|        break;
 1020|    226|    case MFF_TUN_SRC:
  ------------------
  |  Branch (1020:5): [True: 226, False: 74.3k]
  ------------------
 1021|    226|        match_set_tun_src(match, value->be32);
 1022|    226|        break;
 1023|    178|    case MFF_TUN_DST:
  ------------------
  |  Branch (1023:5): [True: 178, False: 74.4k]
  ------------------
 1024|    178|        match_set_tun_dst(match, value->be32);
 1025|    178|        break;
 1026|    227|    case MFF_TUN_IPV6_SRC:
  ------------------
  |  Branch (1026:5): [True: 227, False: 74.3k]
  ------------------
 1027|    227|        match_set_tun_ipv6_src(match, &value->ipv6);
 1028|    227|        break;
 1029|    191|    case MFF_TUN_IPV6_DST:
  ------------------
  |  Branch (1029:5): [True: 191, False: 74.4k]
  ------------------
 1030|    191|        match_set_tun_ipv6_dst(match, &value->ipv6);
 1031|    191|        break;
 1032|    307|    case MFF_TUN_FLAGS:
  ------------------
  |  Branch (1032:5): [True: 307, False: 74.3k]
  ------------------
 1033|    307|        match_set_tun_flags(match, ntohs(value->be16));
 1034|    307|        break;
 1035|    192|    case MFF_TUN_GBP_ID:
  ------------------
  |  Branch (1035:5): [True: 192, False: 74.4k]
  ------------------
 1036|    192|         match_set_tun_gbp_id(match, value->be16);
 1037|    192|         break;
 1038|    210|    case MFF_TUN_GBP_FLAGS:
  ------------------
  |  Branch (1038:5): [True: 210, False: 74.4k]
  ------------------
 1039|    210|         match_set_tun_gbp_flags(match, value->u8);
 1040|    210|         break;
 1041|    232|    case MFF_TUN_TOS:
  ------------------
  |  Branch (1041:5): [True: 232, False: 74.3k]
  ------------------
 1042|    232|        match_set_tun_tos(match, value->u8);
 1043|    232|        break;
 1044|    281|    case MFF_TUN_TTL:
  ------------------
  |  Branch (1044:5): [True: 281, False: 74.3k]
  ------------------
 1045|    281|        match_set_tun_ttl(match, value->u8);
 1046|    281|        break;
 1047|      0|    case MFF_TUN_ERSPAN_VER:
  ------------------
  |  Branch (1047:5): [True: 0, False: 74.6k]
  ------------------
 1048|      0|        match_set_tun_erspan_ver(match, value->u8);
 1049|      0|        break;
 1050|      0|    case MFF_TUN_ERSPAN_IDX:
  ------------------
  |  Branch (1050:5): [True: 0, False: 74.6k]
  ------------------
 1051|      0|        match_set_tun_erspan_idx(match, ntohl(value->be32));
 1052|      0|        break;
 1053|      0|    case MFF_TUN_ERSPAN_DIR:
  ------------------
  |  Branch (1053:5): [True: 0, False: 74.6k]
  ------------------
 1054|      0|        match_set_tun_erspan_dir(match, value->u8);
 1055|      0|        break;
 1056|      0|    case MFF_TUN_ERSPAN_HWID:
  ------------------
  |  Branch (1056:5): [True: 0, False: 74.6k]
  ------------------
 1057|      0|        match_set_tun_erspan_hwid(match, value->u8);
 1058|      0|        break;
 1059|    294|    case MFF_TUN_GTPU_FLAGS:
  ------------------
  |  Branch (1059:5): [True: 294, False: 74.3k]
  ------------------
 1060|    294|        match_set_tun_gtpu_flags(match, value->u8);
 1061|    294|        break;
 1062|      0|    case MFF_TUN_GTPU_MSGTYPE:
  ------------------
  |  Branch (1062:5): [True: 0, False: 74.6k]
  ------------------
 1063|      0|        match_set_tun_gtpu_msgtype(match, value->u8);
 1064|      0|        break;
 1065|  21.2k|    CASE_MFF_TUN_METADATA:
  ------------------
  |  | 2110|    626|    case MFF_TUN_METADATA0: case MFF_TUN_METADATA1:   \
  |  |  ------------------
  |  |  |  Branch (2110:5): [True: 360, False: 74.2k]
  |  |  |  Branch (2110:29): [True: 266, False: 74.3k]
  |  |  ------------------
  |  | 2111|  1.48k|    case MFF_TUN_METADATA2: case MFF_TUN_METADATA3:   \
  |  |  ------------------
  |  |  |  Branch (2111:5): [True: 526, False: 74.0k]
  |  |  |  Branch (2111:29): [True: 332, False: 74.2k]
  |  |  ------------------
  |  | 2112|  2.35k|    case MFF_TUN_METADATA4: case MFF_TUN_METADATA5:   \
  |  |  ------------------
  |  |  |  Branch (2112:5): [True: 535, False: 74.0k]
  |  |  |  Branch (2112:29): [True: 339, False: 74.2k]
  |  |  ------------------
  |  | 2113|  3.10k|    case MFF_TUN_METADATA6: case MFF_TUN_METADATA7:   \
  |  |  ------------------
  |  |  |  Branch (2113:5): [True: 363, False: 74.2k]
  |  |  |  Branch (2113:29): [True: 382, False: 74.2k]
  |  |  ------------------
  |  | 2114|  3.50k|    case MFF_TUN_METADATA8: case MFF_TUN_METADATA9:   \
  |  |  ------------------
  |  |  |  Branch (2114:5): [True: 322, False: 74.2k]
  |  |  |  Branch (2114:29): [True: 83, False: 74.5k]
  |  |  ------------------
  |  | 2115|  4.02k|    case MFF_TUN_METADATA10: case MFF_TUN_METADATA11: \
  |  |  ------------------
  |  |  |  Branch (2115:5): [True: 251, False: 74.3k]
  |  |  |  Branch (2115:30): [True: 262, False: 74.3k]
  |  |  ------------------
  |  | 2116|  4.42k|    case MFF_TUN_METADATA12: case MFF_TUN_METADATA13: \
  |  |  ------------------
  |  |  |  Branch (2116:5): [True: 203, False: 74.4k]
  |  |  |  Branch (2116:30): [True: 204, False: 74.4k]
  |  |  ------------------
  |  | 2117|  4.96k|    case MFF_TUN_METADATA14: case MFF_TUN_METADATA15: \
  |  |  ------------------
  |  |  |  Branch (2117:5): [True: 367, False: 74.2k]
  |  |  |  Branch (2117:30): [True: 170, False: 74.4k]
  |  |  ------------------
  |  | 2118|  5.33k|    case MFF_TUN_METADATA16: case MFF_TUN_METADATA17: \
  |  |  ------------------
  |  |  |  Branch (2118:5): [True: 218, False: 74.3k]
  |  |  |  Branch (2118:30): [True: 153, False: 74.4k]
  |  |  ------------------
  |  | 2119|  5.87k|    case MFF_TUN_METADATA18: case MFF_TUN_METADATA19: \
  |  |  ------------------
  |  |  |  Branch (2119:5): [True: 207, False: 74.4k]
  |  |  |  Branch (2119:30): [True: 330, False: 74.2k]
  |  |  ------------------
  |  | 2120|  6.80k|    case MFF_TUN_METADATA20: case MFF_TUN_METADATA21: \
  |  |  ------------------
  |  |  |  Branch (2120:5): [True: 418, False: 74.1k]
  |  |  |  Branch (2120:30): [True: 518, False: 74.0k]
  |  |  ------------------
  |  | 2121|  7.50k|    case MFF_TUN_METADATA22: case MFF_TUN_METADATA23: \
  |  |  ------------------
  |  |  |  Branch (2121:5): [True: 340, False: 74.2k]
  |  |  |  Branch (2121:30): [True: 351, False: 74.2k]
  |  |  ------------------
  |  | 2122|  8.10k|    case MFF_TUN_METADATA24: case MFF_TUN_METADATA25: \
  |  |  ------------------
  |  |  |  Branch (2122:5): [True: 335, False: 74.2k]
  |  |  |  Branch (2122:30): [True: 265, False: 74.3k]
  |  |  ------------------
  |  | 2123|  8.63k|    case MFF_TUN_METADATA26: case MFF_TUN_METADATA27: \
  |  |  ------------------
  |  |  |  Branch (2123:5): [True: 299, False: 74.3k]
  |  |  |  Branch (2123:30): [True: 233, False: 74.3k]
  |  |  ------------------
  |  | 2124|  9.22k|    case MFF_TUN_METADATA28: case MFF_TUN_METADATA29: \
  |  |  ------------------
  |  |  |  Branch (2124:5): [True: 324, False: 74.2k]
  |  |  |  Branch (2124:30): [True: 267, False: 74.3k]
  |  |  ------------------
  |  | 2125|  9.77k|    case MFF_TUN_METADATA30: case MFF_TUN_METADATA31: \
  |  |  ------------------
  |  |  |  Branch (2125:5): [True: 341, False: 74.2k]
  |  |  |  Branch (2125:30): [True: 212, False: 74.3k]
  |  |  ------------------
  |  | 2126|  10.4k|    case MFF_TUN_METADATA32: case MFF_TUN_METADATA33: \
  |  |  ------------------
  |  |  |  Branch (2126:5): [True: 363, False: 74.2k]
  |  |  |  Branch (2126:30): [True: 285, False: 74.3k]
  |  |  ------------------
  |  | 2127|  11.0k|    case MFF_TUN_METADATA34: case MFF_TUN_METADATA35: \
  |  |  ------------------
  |  |  |  Branch (2127:5): [True: 395, False: 74.2k]
  |  |  |  Branch (2127:30): [True: 240, False: 74.3k]
  |  |  ------------------
  |  | 2128|  13.2k|    case MFF_TUN_METADATA36: case MFF_TUN_METADATA37: \
  |  |  ------------------
  |  |  |  Branch (2128:5): [True: 290, False: 74.3k]
  |  |  |  Branch (2128:30): [True: 1.90k, False: 72.7k]
  |  |  ------------------
  |  | 2129|  14.0k|    case MFF_TUN_METADATA38: case MFF_TUN_METADATA39: \
  |  |  ------------------
  |  |  |  Branch (2129:5): [True: 340, False: 74.2k]
  |  |  |  Branch (2129:30): [True: 402, False: 74.2k]
  |  |  ------------------
  |  | 2130|  14.5k|    case MFF_TUN_METADATA40: case MFF_TUN_METADATA41: \
  |  |  ------------------
  |  |  |  Branch (2130:5): [True: 277, False: 74.3k]
  |  |  |  Branch (2130:30): [True: 318, False: 74.2k]
  |  |  ------------------
  |  | 2131|  15.4k|    case MFF_TUN_METADATA42: case MFF_TUN_METADATA43: \
  |  |  ------------------
  |  |  |  Branch (2131:5): [True: 259, False: 74.3k]
  |  |  |  Branch (2131:30): [True: 626, False: 73.9k]
  |  |  ------------------
  |  | 2132|  15.9k|    case MFF_TUN_METADATA44: case MFF_TUN_METADATA45: \
  |  |  ------------------
  |  |  |  Branch (2132:5): [True: 242, False: 74.3k]
  |  |  |  Branch (2132:30): [True: 185, False: 74.4k]
  |  |  ------------------
  |  | 2133|  16.4k|    case MFF_TUN_METADATA46: case MFF_TUN_METADATA47: \
  |  |  ------------------
  |  |  |  Branch (2133:5): [True: 263, False: 74.3k]
  |  |  |  Branch (2133:30): [True: 306, False: 74.3k]
  |  |  ------------------
  |  | 2134|  17.1k|    case MFF_TUN_METADATA48: case MFF_TUN_METADATA49: \
  |  |  ------------------
  |  |  |  Branch (2134:5): [True: 404, False: 74.2k]
  |  |  |  Branch (2134:30): [True: 289, False: 74.3k]
  |  |  ------------------
  |  | 2135|  17.6k|    case MFF_TUN_METADATA50: case MFF_TUN_METADATA51: \
  |  |  ------------------
  |  |  |  Branch (2135:5): [True: 264, False: 74.3k]
  |  |  |  Branch (2135:30): [True: 232, False: 74.3k]
  |  |  ------------------
  |  | 2136|  18.1k|    case MFF_TUN_METADATA52: case MFF_TUN_METADATA53: \
  |  |  ------------------
  |  |  |  Branch (2136:5): [True: 252, False: 74.3k]
  |  |  |  Branch (2136:30): [True: 212, False: 74.3k]
  |  |  ------------------
  |  | 2137|  18.7k|    case MFF_TUN_METADATA54: case MFF_TUN_METADATA55: \
  |  |  ------------------
  |  |  |  Branch (2137:5): [True: 298, False: 74.3k]
  |  |  |  Branch (2137:30): [True: 288, False: 74.3k]
  |  |  ------------------
  |  | 2138|  19.7k|    case MFF_TUN_METADATA56: case MFF_TUN_METADATA57: \
  |  |  ------------------
  |  |  |  Branch (2138:5): [True: 577, False: 74.0k]
  |  |  |  Branch (2138:30): [True: 419, False: 74.1k]
  |  |  ------------------
  |  | 2139|  20.1k|    case MFF_TUN_METADATA58: case MFF_TUN_METADATA59: \
  |  |  ------------------
  |  |  |  Branch (2139:5): [True: 267, False: 74.3k]
  |  |  |  Branch (2139:30): [True: 203, False: 74.4k]
  |  |  ------------------
  |  | 2140|  20.7k|    case MFF_TUN_METADATA60: case MFF_TUN_METADATA61: \
  |  |  ------------------
  |  |  |  Branch (2140:5): [True: 284, False: 74.3k]
  |  |  |  Branch (2140:30): [True: 309, False: 74.3k]
  |  |  ------------------
  |  | 2141|  21.2k|    case MFF_TUN_METADATA62: case MFF_TUN_METADATA63
  |  |  ------------------
  |  |  |  Branch (2141:5): [True: 270, False: 74.3k]
  |  |  ------------------
  ------------------
 1066|  21.2k|        tun_metadata_set_match(mf, value, NULL, match, err_str);
 1067|  21.2k|        break;
 1068|       |
 1069|    283|    case MFF_METADATA:
  ------------------
  |  Branch (1069:5): [True: 283, False: 74.3k]
  ------------------
 1070|    283|        match_set_metadata(match, value->be64);
 1071|    283|        break;
 1072|       |
 1073|    300|    case MFF_IN_PORT:
  ------------------
  |  Branch (1073:5): [True: 300, False: 74.3k]
  ------------------
 1074|    300|        match_set_in_port(match, u16_to_ofp(ntohs(value->be16)));
 1075|    300|        break;
 1076|       |
 1077|    445|    case MFF_IN_PORT_OXM: {
  ------------------
  |  Branch (1077:5): [True: 445, False: 74.1k]
  ------------------
 1078|    445|        ofp_port_t port;
 1079|    445|        ofputil_port_from_ofp11(value->be32, &port);
 1080|    445|        match_set_in_port(match, port);
 1081|    445|        break;
 1082|   669k|    }
 1083|    732|    case MFF_ACTSET_OUTPUT: {
  ------------------
  |  Branch (1083:5): [True: 732, False: 73.8k]
  ------------------
 1084|    732|        ofp_port_t port;
 1085|    732|        ofputil_port_from_ofp11(value->be32, &port);
 1086|    732|        match_set_actset_output(match, port);
 1087|    732|        break;
 1088|   669k|    }
 1089|       |
 1090|      0|    case MFF_SKB_PRIORITY:
  ------------------
  |  Branch (1090:5): [True: 0, False: 74.6k]
  ------------------
 1091|      0|        match_set_skb_priority(match, ntohl(value->be32));
 1092|      0|        break;
 1093|       |
 1094|    261|    case MFF_PKT_MARK:
  ------------------
  |  Branch (1094:5): [True: 261, False: 74.3k]
  ------------------
 1095|    261|        match_set_pkt_mark(match, ntohl(value->be32));
 1096|    261|        break;
 1097|       |
 1098|    530|    case MFF_CT_STATE:
  ------------------
  |  Branch (1098:5): [True: 530, False: 74.0k]
  ------------------
 1099|    530|        match_set_ct_state(match, ntohl(value->be32));
 1100|    530|        break;
 1101|       |
 1102|    230|    case MFF_CT_ZONE:
  ------------------
  |  Branch (1102:5): [True: 230, False: 74.3k]
  ------------------
 1103|    230|        match_set_ct_zone(match, ntohs(value->be16));
 1104|    230|        break;
 1105|       |
 1106|  1.34k|    case MFF_CT_MARK:
  ------------------
  |  Branch (1106:5): [True: 1.34k, False: 73.2k]
  ------------------
 1107|  1.34k|        match_set_ct_mark(match, ntohl(value->be32));
 1108|  1.34k|        break;
 1109|       |
 1110|    206|    case MFF_CT_LABEL:
  ------------------
  |  Branch (1110:5): [True: 206, False: 74.4k]
  ------------------
 1111|    206|        match_set_ct_label(match, ntoh128(value->be128));
 1112|    206|        break;
 1113|       |
 1114|    289|    case MFF_CT_NW_PROTO:
  ------------------
  |  Branch (1114:5): [True: 289, False: 74.3k]
  ------------------
 1115|    289|        match_set_ct_nw_proto(match, value->u8);
 1116|    289|        break;
 1117|       |
 1118|    195|    case MFF_CT_NW_SRC:
  ------------------
  |  Branch (1118:5): [True: 195, False: 74.4k]
  ------------------
 1119|    195|        match_set_ct_nw_src(match, value->be32);
 1120|    195|        break;
 1121|       |
 1122|     98|    case MFF_CT_NW_DST:
  ------------------
  |  Branch (1122:5): [True: 98, False: 74.5k]
  ------------------
 1123|     98|        match_set_ct_nw_dst(match, value->be32);
 1124|     98|        break;
 1125|       |
 1126|    288|    case MFF_CT_IPV6_SRC:
  ------------------
  |  Branch (1126:5): [True: 288, False: 74.3k]
  ------------------
 1127|    288|        match_set_ct_ipv6_src(match, &value->ipv6);
 1128|    288|        break;
 1129|       |
 1130|    266|    case MFF_CT_IPV6_DST:
  ------------------
  |  Branch (1130:5): [True: 266, False: 74.3k]
  ------------------
 1131|    266|        match_set_ct_ipv6_dst(match, &value->ipv6);
 1132|    266|        break;
 1133|       |
 1134|    471|    case MFF_CT_TP_SRC:
  ------------------
  |  Branch (1134:5): [True: 471, False: 74.1k]
  ------------------
 1135|    471|        match_set_ct_tp_src(match, value->be16);
 1136|    471|        break;
 1137|       |
 1138|    200|    case MFF_CT_TP_DST:
  ------------------
  |  Branch (1138:5): [True: 200, False: 74.4k]
  ------------------
 1139|    200|        match_set_ct_tp_dst(match, value->be16);
 1140|    200|        break;
 1141|       |
 1142|  14.0k|    CASE_MFF_REGS:
  ------------------
  |  | 2065|  2.58k|    case MFF_REG0: case MFF_REG1: case MFF_REG2: case MFF_REG3:     \
  |  |  ------------------
  |  |  |  Branch (2065:5): [True: 351, False: 74.2k]
  |  |  |  Branch (2065:20): [True: 629, False: 73.9k]
  |  |  |  Branch (2065:35): [True: 676, False: 73.9k]
  |  |  |  Branch (2065:50): [True: 933, False: 73.6k]
  |  |  ------------------
  |  | 2066|  4.28k|    case MFF_REG4: case MFF_REG5: case MFF_REG6: case MFF_REG7:     \
  |  |  ------------------
  |  |  |  Branch (2066:5): [True: 482, False: 74.1k]
  |  |  |  Branch (2066:20): [True: 469, False: 74.1k]
  |  |  |  Branch (2066:35): [True: 422, False: 74.1k]
  |  |  |  Branch (2066:50): [True: 326, False: 74.2k]
  |  |  ------------------
  |  | 2067|  7.37k|    case MFF_REG8: case MFF_REG9: case MFF_REG10: case MFF_REG11:   \
  |  |  ------------------
  |  |  |  Branch (2067:5): [True: 585, False: 74.0k]
  |  |  |  Branch (2067:20): [True: 470, False: 74.1k]
  |  |  |  Branch (2067:35): [True: 307, False: 74.3k]
  |  |  |  Branch (2067:51): [True: 1.72k, False: 72.8k]
  |  |  ------------------
  |  | 2068|  8.97k|    case MFF_REG12: case MFF_REG13: case MFF_REG14: case MFF_REG15: \
  |  |  ------------------
  |  |  |  Branch (2068:5): [True: 330, False: 74.2k]
  |  |  |  Branch (2068:21): [True: 646, False: 73.9k]
  |  |  |  Branch (2068:37): [True: 335, False: 74.2k]
  |  |  |  Branch (2068:53): [True: 294, False: 74.3k]
  |  |  ------------------
  |  | 2069|  10.2k|    case MFF_REG16: case MFF_REG17: case MFF_REG18: case MFF_REG19: \
  |  |  ------------------
  |  |  |  Branch (2069:5): [True: 318, False: 74.2k]
  |  |  |  Branch (2069:21): [True: 252, False: 74.3k]
  |  |  |  Branch (2069:37): [True: 367, False: 74.2k]
  |  |  |  Branch (2069:53): [True: 356, False: 74.2k]
  |  |  ------------------
  |  | 2070|  11.7k|    case MFF_REG20: case MFF_REG21: case MFF_REG22: case MFF_REG23: \
  |  |  ------------------
  |  |  |  Branch (2070:5): [True: 306, False: 74.3k]
  |  |  |  Branch (2070:21): [True: 284, False: 74.3k]
  |  |  |  Branch (2070:37): [True: 522, False: 74.0k]
  |  |  |  Branch (2070:53): [True: 379, False: 74.2k]
  |  |  ------------------
  |  | 2071|  13.0k|    case MFF_REG24: case MFF_REG25: case MFF_REG26: case MFF_REG27: \
  |  |  ------------------
  |  |  |  Branch (2071:5): [True: 331, False: 74.2k]
  |  |  |  Branch (2071:21): [True: 334, False: 74.2k]
  |  |  |  Branch (2071:37): [True: 320, False: 74.2k]
  |  |  |  Branch (2071:53): [True: 263, False: 74.3k]
  |  |  ------------------
  |  | 2072|  14.0k|    case MFF_REG28: case MFF_REG29: case MFF_REG30: case MFF_REG31
  |  |  ------------------
  |  |  |  Branch (2072:5): [True: 245, False: 74.3k]
  |  |  |  Branch (2072:21): [True: 379, False: 74.2k]
  |  |  |  Branch (2072:37): [True: 298, False: 74.3k]
  |  |  ------------------
  ------------------
 1143|  14.0k|        match_set_reg(match, mf->id - MFF_REG0, ntohl(value->be32));
 1144|  14.0k|        break;
 1145|       |
 1146|  6.37k|    CASE_MFF_XREGS:
  ------------------
  |  | 2081|  2.45k|    case MFF_XREG0: case MFF_XREG1: case MFF_XREG2: case MFF_XREG3:    \
  |  |  ------------------
  |  |  |  Branch (2081:5): [True: 544, False: 74.0k]
  |  |  |  Branch (2081:21): [True: 473, False: 74.1k]
  |  |  |  Branch (2081:37): [True: 742, False: 73.8k]
  |  |  |  Branch (2081:53): [True: 698, False: 73.9k]
  |  |  ------------------
  |  | 2082|  4.14k|    case MFF_XREG4: case MFF_XREG5: case MFF_XREG6: case MFF_XREG7:    \
  |  |  ------------------
  |  |  |  Branch (2082:5): [True: 445, False: 74.1k]
  |  |  |  Branch (2082:21): [True: 330, False: 74.2k]
  |  |  |  Branch (2082:37): [True: 396, False: 74.2k]
  |  |  |  Branch (2082:53): [True: 516, False: 74.0k]
  |  |  ------------------
  |  | 2083|  5.27k|    case MFF_XREG8: case MFF_XREG9: case MFF_XREG10: case MFF_XREG11:  \
  |  |  ------------------
  |  |  |  Branch (2083:5): [True: 349, False: 74.2k]
  |  |  |  Branch (2083:21): [True: 221, False: 74.3k]
  |  |  |  Branch (2083:37): [True: 306, False: 74.3k]
  |  |  |  Branch (2083:54): [True: 253, False: 74.3k]
  |  |  ------------------
  |  | 2084|  6.37k|    case MFF_XREG12: case MFF_XREG13: case MFF_XREG14: case MFF_XREG15
  |  |  ------------------
  |  |  |  Branch (2084:5): [True: 223, False: 74.3k]
  |  |  |  Branch (2084:22): [True: 356, False: 74.2k]
  |  |  |  Branch (2084:39): [True: 82, False: 74.5k]
  |  |  ------------------
  ------------------
 1147|  6.37k|        match_set_xreg(match, mf->id - MFF_XREG0, ntohll(value->be64));
 1148|  6.37k|        break;
 1149|       |
 1150|  4.52k|    CASE_MFF_XXREGS:
  ------------------
  |  | 2093|  3.22k|    case MFF_XXREG0: case MFF_XXREG1: case MFF_XXREG2: case MFF_XXREG3: \
  |  |  ------------------
  |  |  |  Branch (2093:5): [True: 361, False: 74.2k]
  |  |  |  Branch (2093:22): [True: 449, False: 74.1k]
  |  |  |  Branch (2093:39): [True: 245, False: 74.3k]
  |  |  |  Branch (2093:56): [True: 2.16k, False: 72.4k]
  |  |  ------------------
  |  | 2094|  4.52k|    case MFF_XXREG4: case MFF_XXREG5: case MFF_XXREG6: case MFF_XXREG7
  |  |  ------------------
  |  |  |  Branch (2094:5): [True: 265, False: 74.3k]
  |  |  |  Branch (2094:22): [True: 378, False: 74.2k]
  |  |  |  Branch (2094:39): [True: 306, False: 74.3k]
  |  |  ------------------
  ------------------
 1151|  4.52k|        match_set_xxreg(match, mf->id - MFF_XXREG0, ntoh128(value->be128));
 1152|  4.52k|        break;
 1153|       |
 1154|    362|    case MFF_ETH_SRC:
  ------------------
  |  Branch (1154:5): [True: 362, False: 74.2k]
  ------------------
 1155|    362|        match_set_dl_src(match, value->mac);
 1156|    362|        break;
 1157|       |
 1158|    286|    case MFF_ETH_DST:
  ------------------
  |  Branch (1158:5): [True: 286, False: 74.3k]
  ------------------
 1159|    286|        match_set_dl_dst(match, value->mac);
 1160|    286|        break;
 1161|       |
 1162|    461|    case MFF_ETH_TYPE:
  ------------------
  |  Branch (1162:5): [True: 461, False: 74.1k]
  ------------------
 1163|    461|        match_set_dl_type(match, value->be16);
 1164|    461|        break;
 1165|       |
 1166|    316|    case MFF_VLAN_TCI:
  ------------------
  |  Branch (1166:5): [True: 316, False: 74.2k]
  ------------------
 1167|    316|        match_set_dl_tci(match, value->be16);
 1168|    316|        break;
 1169|       |
 1170|    574|    case MFF_DL_VLAN:
  ------------------
  |  Branch (1170:5): [True: 574, False: 74.0k]
  ------------------
 1171|    574|        match_set_dl_vlan(match, value->be16, 0);
 1172|    574|        break;
 1173|    198|    case MFF_VLAN_VID:
  ------------------
  |  Branch (1173:5): [True: 198, False: 74.4k]
  ------------------
 1174|    198|        match_set_vlan_vid(match, value->be16);
 1175|    198|        break;
 1176|       |
 1177|    336|    case MFF_DL_VLAN_PCP:
  ------------------
  |  Branch (1177:5): [True: 336, False: 74.2k]
  ------------------
 1178|    943|    case MFF_VLAN_PCP:
  ------------------
  |  Branch (1178:5): [True: 607, False: 74.0k]
  ------------------
 1179|    943|        match_set_dl_vlan_pcp(match, value->u8, 0);
 1180|    943|        break;
 1181|       |
 1182|    202|    case MFF_MPLS_LABEL:
  ------------------
  |  Branch (1182:5): [True: 202, False: 74.4k]
  ------------------
 1183|    202|        match_set_mpls_label(match, 0, value->be32);
 1184|    202|        break;
 1185|       |
 1186|    396|    case MFF_MPLS_TC:
  ------------------
  |  Branch (1186:5): [True: 396, False: 74.2k]
  ------------------
 1187|    396|        match_set_mpls_tc(match, 0, value->u8);
 1188|    396|        break;
 1189|       |
 1190|  1.53k|    case MFF_MPLS_BOS:
  ------------------
  |  Branch (1190:5): [True: 1.53k, False: 73.0k]
  ------------------
 1191|  1.53k|        match_set_mpls_bos(match, 0, value->u8);
 1192|  1.53k|        break;
 1193|       |
 1194|    210|    case MFF_MPLS_TTL:
  ------------------
  |  Branch (1194:5): [True: 210, False: 74.4k]
  ------------------
 1195|    210|        match_set_mpls_ttl(match, 0, value->u8);
 1196|    210|        break;
 1197|       |
 1198|    321|    case MFF_IPV4_SRC:
  ------------------
  |  Branch (1198:5): [True: 321, False: 74.2k]
  ------------------
 1199|    321|        match_set_nw_src(match, value->be32);
 1200|    321|        break;
 1201|       |
 1202|    370|    case MFF_IPV4_DST:
  ------------------
  |  Branch (1202:5): [True: 370, False: 74.2k]
  ------------------
 1203|    370|        match_set_nw_dst(match, value->be32);
 1204|    370|        break;
 1205|       |
 1206|    137|    case MFF_IPV6_SRC:
  ------------------
  |  Branch (1206:5): [True: 137, False: 74.4k]
  ------------------
 1207|    137|        match_set_ipv6_src(match, &value->ipv6);
 1208|    137|        break;
 1209|       |
 1210|    374|    case MFF_IPV6_DST:
  ------------------
  |  Branch (1210:5): [True: 374, False: 74.2k]
  ------------------
 1211|    374|        match_set_ipv6_dst(match, &value->ipv6);
 1212|    374|        break;
 1213|       |
 1214|    417|    case MFF_IPV6_LABEL:
  ------------------
  |  Branch (1214:5): [True: 417, False: 74.1k]
  ------------------
 1215|    417|        match_set_ipv6_label(match, value->be32);
 1216|    417|        break;
 1217|       |
 1218|    342|    case MFF_IP_PROTO:
  ------------------
  |  Branch (1218:5): [True: 342, False: 74.2k]
  ------------------
 1219|    342|        match_set_nw_proto(match, value->u8);
 1220|    342|        break;
 1221|       |
 1222|    482|    case MFF_IP_DSCP:
  ------------------
  |  Branch (1222:5): [True: 482, False: 74.1k]
  ------------------
 1223|    482|        match_set_nw_dscp(match, value->u8);
 1224|    482|        break;
 1225|       |
 1226|    354|    case MFF_IP_DSCP_SHIFTED:
  ------------------
  |  Branch (1226:5): [True: 354, False: 74.2k]
  ------------------
 1227|    354|        match_set_nw_dscp(match, value->u8 << 2);
 1228|    354|        break;
 1229|       |
 1230|    200|    case MFF_IP_ECN:
  ------------------
  |  Branch (1230:5): [True: 200, False: 74.4k]
  ------------------
 1231|    200|        match_set_nw_ecn(match, value->u8);
 1232|    200|        break;
 1233|       |
 1234|    268|    case MFF_IP_TTL:
  ------------------
  |  Branch (1234:5): [True: 268, False: 74.3k]
  ------------------
 1235|    268|        match_set_nw_ttl(match, value->u8);
 1236|    268|        break;
 1237|       |
 1238|    200|    case MFF_IP_FRAG:
  ------------------
  |  Branch (1238:5): [True: 200, False: 74.4k]
  ------------------
 1239|    200|        match_set_nw_frag(match, value->u8);
 1240|    200|        break;
 1241|       |
 1242|    234|    case MFF_ARP_OP:
  ------------------
  |  Branch (1242:5): [True: 234, False: 74.3k]
  ------------------
 1243|    234|        match_set_nw_proto(match, ntohs(value->be16));
 1244|    234|        break;
 1245|       |
 1246|    320|    case MFF_ARP_SPA:
  ------------------
  |  Branch (1246:5): [True: 320, False: 74.2k]
  ------------------
 1247|    320|        match_set_nw_src(match, value->be32);
 1248|    320|        break;
 1249|       |
 1250|    210|    case MFF_ARP_TPA:
  ------------------
  |  Branch (1250:5): [True: 210, False: 74.4k]
  ------------------
 1251|    210|        match_set_nw_dst(match, value->be32);
 1252|    210|        break;
 1253|       |
 1254|    294|    case MFF_ARP_SHA:
  ------------------
  |  Branch (1254:5): [True: 294, False: 74.3k]
  ------------------
 1255|    521|    case MFF_ND_SLL:
  ------------------
  |  Branch (1255:5): [True: 227, False: 74.3k]
  ------------------
 1256|    521|        match_set_arp_sha(match, value->mac);
 1257|    521|        break;
 1258|       |
 1259|    208|    case MFF_ARP_THA:
  ------------------
  |  Branch (1259:5): [True: 208, False: 74.4k]
  ------------------
 1260|    464|    case MFF_ND_TLL:
  ------------------
  |  Branch (1260:5): [True: 256, False: 74.3k]
  ------------------
 1261|    464|        match_set_arp_tha(match, value->mac);
 1262|    464|        break;
 1263|       |
 1264|    363|    case MFF_TCP_SRC:
  ------------------
  |  Branch (1264:5): [True: 363, False: 74.2k]
  ------------------
 1265|    809|    case MFF_UDP_SRC:
  ------------------
  |  Branch (1265:5): [True: 446, False: 74.1k]
  ------------------
 1266|  1.03k|    case MFF_SCTP_SRC:
  ------------------
  |  Branch (1266:5): [True: 228, False: 74.3k]
  ------------------
 1267|  1.03k|        match_set_tp_src(match, value->be16);
 1268|  1.03k|        break;
 1269|       |
 1270|    322|    case MFF_TCP_DST:
  ------------------
  |  Branch (1270:5): [True: 322, False: 74.2k]
  ------------------
 1271|    597|    case MFF_UDP_DST:
  ------------------
  |  Branch (1271:5): [True: 275, False: 74.3k]
  ------------------
 1272|    747|    case MFF_SCTP_DST:
  ------------------
  |  Branch (1272:5): [True: 150, False: 74.4k]
  ------------------
 1273|    747|        match_set_tp_dst(match, value->be16);
 1274|    747|        break;
 1275|       |
 1276|    404|    case MFF_TCP_FLAGS:
  ------------------
  |  Branch (1276:5): [True: 404, False: 74.2k]
  ------------------
 1277|    404|        match_set_tcp_flags(match, value->be16);
 1278|    404|        break;
 1279|       |
 1280|    314|    case MFF_ICMPV4_TYPE:
  ------------------
  |  Branch (1280:5): [True: 314, False: 74.2k]
  ------------------
 1281|    532|    case MFF_ICMPV6_TYPE:
  ------------------
  |  Branch (1281:5): [True: 218, False: 74.3k]
  ------------------
 1282|    532|        match_set_icmp_type(match, value->u8);
 1283|    532|        break;
 1284|       |
 1285|    259|    case MFF_ICMPV4_CODE:
  ------------------
  |  Branch (1285:5): [True: 259, False: 74.3k]
  ------------------
 1286|    478|    case MFF_ICMPV6_CODE:
  ------------------
  |  Branch (1286:5): [True: 219, False: 74.3k]
  ------------------
 1287|    478|        match_set_icmp_code(match, value->u8);
 1288|    478|        break;
 1289|       |
 1290|    222|    case MFF_ND_TARGET:
  ------------------
  |  Branch (1290:5): [True: 222, False: 74.3k]
  ------------------
 1291|    222|        match_set_nd_target(match, &value->ipv6);
 1292|    222|        break;
 1293|       |
 1294|      0|    case MFF_ND_RESERVED:
  ------------------
  |  Branch (1294:5): [True: 0, False: 74.6k]
  ------------------
 1295|      0|        match_set_nd_reserved(match, value->be32);
 1296|      0|        break;
 1297|       |
 1298|      0|    case MFF_ND_OPTIONS_TYPE:
  ------------------
  |  Branch (1298:5): [True: 0, False: 74.6k]
  ------------------
 1299|      0|        match_set_nd_options_type(match, value->u8);
 1300|      0|        break;
 1301|       |
 1302|    263|    case MFF_NSH_FLAGS:
  ------------------
  |  Branch (1302:5): [True: 263, False: 74.3k]
  ------------------
 1303|    263|        MATCH_SET_FIELD_UINT8(match, nsh.flags, value->u8);
  ------------------
  |  |   56|    263|    MATCH_SET_FIELD_MASKED(match, field, value, UINT8_MAX)
  |  |  ------------------
  |  |  |  |   50|    263|    do {                                                      \
  |  |  |  |   51|    263|        (match)->wc.masks.field = (msk);                      \
  |  |  |  |   52|    263|        (match)->flow.field = (value) & (msk);                \
  |  |  |  |   53|    263|    } while (0)
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (53:14): [Folded, False: 263]
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 1304|    263|        break;
 1305|    456|    case MFF_NSH_TTL:
  ------------------
  |  Branch (1305:5): [True: 456, False: 74.1k]
  ------------------
 1306|    456|        MATCH_SET_FIELD_UINT8(match, nsh.ttl, value->u8);
  ------------------
  |  |   56|    456|    MATCH_SET_FIELD_MASKED(match, field, value, UINT8_MAX)
  |  |  ------------------
  |  |  |  |   50|    456|    do {                                                      \
  |  |  |  |   51|    456|        (match)->wc.masks.field = (msk);                      \
  |  |  |  |   52|    456|        (match)->flow.field = (value) & (msk);                \
  |  |  |  |   53|    456|    } while (0)
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (53:14): [Folded, False: 456]
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 1307|    456|        break;
 1308|    266|    case MFF_NSH_MDTYPE:
  ------------------
  |  Branch (1308:5): [True: 266, False: 74.3k]
  ------------------
 1309|    266|        MATCH_SET_FIELD_UINT8(match, nsh.mdtype, value->u8);
  ------------------
  |  |   56|    266|    MATCH_SET_FIELD_MASKED(match, field, value, UINT8_MAX)
  |  |  ------------------
  |  |  |  |   50|    266|    do {                                                      \
  |  |  |  |   51|    266|        (match)->wc.masks.field = (msk);                      \
  |  |  |  |   52|    266|        (match)->flow.field = (value) & (msk);                \
  |  |  |  |   53|    266|    } while (0)
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (53:14): [Folded, False: 266]
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 1310|    266|        break;
 1311|    212|    case MFF_NSH_NP:
  ------------------
  |  Branch (1311:5): [True: 212, False: 74.3k]
  ------------------
 1312|    212|        MATCH_SET_FIELD_UINT8(match, nsh.np, value->u8);
  ------------------
  |  |   56|    212|    MATCH_SET_FIELD_MASKED(match, field, value, UINT8_MAX)
  |  |  ------------------
  |  |  |  |   50|    212|    do {                                                      \
  |  |  |  |   51|    212|        (match)->wc.masks.field = (msk);                      \
  |  |  |  |   52|    212|        (match)->flow.field = (value) & (msk);                \
  |  |  |  |   53|    212|    } while (0)
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (53:14): [Folded, False: 212]
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 1313|    212|        break;
 1314|    779|    case MFF_NSH_SPI:
  ------------------
  |  Branch (1314:5): [True: 779, False: 73.8k]
  ------------------
 1315|    779|        match->wc.masks.nsh.path_hdr |= htonl(NSH_SPI_MASK);
 1316|    779|        nsh_path_hdr_set_spi(&match->flow.nsh.path_hdr, value->be32);
 1317|    779|        break;
 1318|    281|    case MFF_NSH_SI:
  ------------------
  |  Branch (1318:5): [True: 281, False: 74.3k]
  ------------------
 1319|    281|        match->wc.masks.nsh.path_hdr |= htonl(NSH_SI_MASK);
 1320|    281|        nsh_path_hdr_set_si(&match->flow.nsh.path_hdr, value->u8);
 1321|    281|        break;
 1322|    315|    case MFF_NSH_C1:
  ------------------
  |  Branch (1322:5): [True: 315, False: 74.2k]
  ------------------
 1323|    601|    case MFF_NSH_C2:
  ------------------
  |  Branch (1323:5): [True: 286, False: 74.3k]
  ------------------
 1324|    941|    case MFF_NSH_C3:
  ------------------
  |  Branch (1324:5): [True: 340, False: 74.2k]
  ------------------
 1325|  1.09k|    case MFF_NSH_C4:
  ------------------
  |  Branch (1325:5): [True: 154, False: 74.4k]
  ------------------
 1326|  1.09k|        MATCH_SET_FIELD_BE32(match, nsh.context[mf->id - MFF_NSH_C1],
  ------------------
  |  |   59|  1.09k|    MATCH_SET_FIELD_MASKED(match, field, value, OVS_BE32_MAX)
  |  |  ------------------
  |  |  |  |   50|  1.09k|    do {                                                      \
  |  |  |  |   51|  1.09k|        (match)->wc.masks.field = (msk);                      \
  |  |  |  |   52|  1.09k|        (match)->flow.field = (value) & (msk);                \
  |  |  |  |   53|  1.09k|    } while (0)
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (53:14): [Folded, False: 1.09k]
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 1327|  1.09k|                             value->be32);
 1328|  1.09k|        break;
 1329|       |
 1330|      0|    case MFF_N_IDS:
  ------------------
  |  Branch (1330:5): [True: 0, False: 74.6k]
  ------------------
 1331|      0|    default:
  ------------------
  |  Branch (1331:5): [True: 0, False: 74.6k]
  ------------------
 1332|      0|        OVS_NOT_REACHED();
  ------------------
  |  |  107|      0|#define OVS_NOT_REACHED() abort()
  ------------------
 1333|  74.6k|    }
 1334|  74.6k|}
mf_field_len:
 1403|  52.4k|{
 1404|  52.4k|    int len, mask_len;
 1405|  52.4k|    bool is_masked = mask && !is_all_ones(mask, mf->n_bytes);
  ------------------
  |  Branch (1405:22): [True: 27.0k, False: 25.4k]
  |  Branch (1405:30): [True: 25.4k, False: 1.54k]
  ------------------
 1406|       |
 1407|  52.4k|    len = field_len(mf, value);
 1408|  52.4k|    if (is_masked) {
  ------------------
  |  Branch (1408:9): [True: 25.4k, False: 26.9k]
  ------------------
 1409|  25.4k|        mask_len = field_len(mf, mask);
 1410|  25.4k|        len = MAX(len, mask_len);
  ------------------
  |  |   95|  25.4k|#define MAX(X, Y) ((X) > (Y) ? (X) : (Y))
  |  |  ------------------
  |  |  |  Branch (95:20): [True: 379, False: 25.0k]
  |  |  ------------------
  ------------------
 1411|  25.4k|    }
 1412|       |
 1413|  52.4k|    if (is_masked_) {
  ------------------
  |  Branch (1413:9): [True: 52.4k, False: 0]
  ------------------
 1414|  52.4k|        *is_masked_ = is_masked;
 1415|  52.4k|    }
 1416|       |
 1417|  52.4k|    return len;
 1418|  52.4k|}
mf_is_tun_metadata:
 1897|  46.4k|{
 1898|  46.4k|    return mf->id >= MFF_TUN_METADATA0 &&
  ------------------
  |  Branch (1898:12): [True: 42.9k, False: 3.52k]
  ------------------
 1899|  42.9k|           mf->id < MFF_TUN_METADATA0 + TUN_METADATA_NUM_OPTS;
  ------------------
  |  |   26|  89.3k|#define TUN_METADATA_NUM_OPTS 64
  ------------------
  |  Branch (1899:12): [True: 291, False: 42.6k]
  ------------------
 1900|  46.4k|}
mf_set_wild:
 2162|  46.1k|{
 2163|  46.1k|    if (err_str) {
  ------------------
  |  Branch (2163:9): [True: 46.1k, False: 0]
  ------------------
 2164|  46.1k|        *err_str = NULL;
 2165|  46.1k|    }
 2166|       |
 2167|  46.1k|    switch (mf->id) {
 2168|    293|    case MFF_DP_HASH:
  ------------------
  |  Branch (2168:5): [True: 293, False: 45.8k]
  ------------------
 2169|    293|        match->flow.dp_hash = 0;
 2170|    293|        match->wc.masks.dp_hash = 0;
 2171|    293|        break;
 2172|    243|    case MFF_RECIRC_ID:
  ------------------
  |  Branch (2172:5): [True: 243, False: 45.8k]
  ------------------
 2173|    243|        match->flow.recirc_id = 0;
 2174|    243|        match->wc.masks.recirc_id = 0;
 2175|    243|        break;
 2176|    288|    case MFF_PACKET_TYPE:
  ------------------
  |  Branch (2176:5): [True: 288, False: 45.8k]
  ------------------
 2177|    288|        match->flow.packet_type = 0;
 2178|    288|        match->wc.masks.packet_type = 0;
 2179|    288|        break;
 2180|    183|    case MFF_CONJ_ID:
  ------------------
  |  Branch (2180:5): [True: 183, False: 45.9k]
  ------------------
 2181|    183|        match->flow.conj_id = 0;
 2182|    183|        match->wc.masks.conj_id = 0;
 2183|    183|        break;
 2184|    230|    case MFF_TUN_ID:
  ------------------
  |  Branch (2184:5): [True: 230, False: 45.9k]
  ------------------
 2185|    230|        match_set_tun_id_masked(match, htonll(0), htonll(0));
 2186|    230|        break;
 2187|    194|    case MFF_TUN_SRC:
  ------------------
  |  Branch (2187:5): [True: 194, False: 45.9k]
  ------------------
 2188|    194|        match_set_tun_src_masked(match, htonl(0), htonl(0));
 2189|    194|        break;
 2190|    195|    case MFF_TUN_DST:
  ------------------
  |  Branch (2190:5): [True: 195, False: 45.9k]
  ------------------
 2191|    195|        match_set_tun_dst_masked(match, htonl(0), htonl(0));
 2192|    195|        break;
 2193|    190|    case MFF_TUN_IPV6_SRC:
  ------------------
  |  Branch (2193:5): [True: 190, False: 45.9k]
  ------------------
 2194|    190|        memset(&match->wc.masks.tunnel.ipv6_src, 0,
 2195|    190|               sizeof match->wc.masks.tunnel.ipv6_src);
 2196|    190|        memset(&match->flow.tunnel.ipv6_src, 0,
 2197|    190|               sizeof match->flow.tunnel.ipv6_src);
 2198|    190|        break;
 2199|    290|    case MFF_TUN_IPV6_DST:
  ------------------
  |  Branch (2199:5): [True: 290, False: 45.8k]
  ------------------
 2200|    290|        memset(&match->wc.masks.tunnel.ipv6_dst, 0,
 2201|    290|               sizeof match->wc.masks.tunnel.ipv6_dst);
 2202|    290|        memset(&match->flow.tunnel.ipv6_dst, 0,
 2203|    290|               sizeof match->flow.tunnel.ipv6_dst);
 2204|    290|        break;
 2205|    222|    case MFF_TUN_FLAGS:
  ------------------
  |  Branch (2205:5): [True: 222, False: 45.9k]
  ------------------
 2206|    222|        match_set_tun_flags_masked(match, 0, 0);
 2207|    222|        break;
 2208|    199|    case MFF_TUN_GBP_ID:
  ------------------
  |  Branch (2208:5): [True: 199, False: 45.9k]
  ------------------
 2209|    199|        match_set_tun_gbp_id_masked(match, 0, 0);
 2210|    199|        break;
 2211|     42|    case MFF_TUN_GBP_FLAGS:
  ------------------
  |  Branch (2211:5): [True: 42, False: 46.1k]
  ------------------
 2212|     42|        match_set_tun_gbp_flags_masked(match, 0, 0);
 2213|     42|        break;
 2214|     96|    case MFF_TUN_TOS:
  ------------------
  |  Branch (2214:5): [True: 96, False: 46.0k]
  ------------------
 2215|     96|        match_set_tun_tos_masked(match, 0, 0);
 2216|     96|        break;
 2217|    663|    case MFF_TUN_TTL:
  ------------------
  |  Branch (2217:5): [True: 663, False: 45.4k]
  ------------------
 2218|    663|        match_set_tun_ttl_masked(match, 0, 0);
 2219|    663|        break;
 2220|      0|    case MFF_TUN_ERSPAN_VER:
  ------------------
  |  Branch (2220:5): [True: 0, False: 46.1k]
  ------------------
 2221|      0|        match_set_tun_erspan_ver_masked(match, 0, 0);
 2222|      0|        break;
 2223|      0|    case MFF_TUN_ERSPAN_IDX:
  ------------------
  |  Branch (2223:5): [True: 0, False: 46.1k]
  ------------------
 2224|      0|        match_set_tun_erspan_idx_masked(match, 0, 0);
 2225|      0|        break;
 2226|      0|    case MFF_TUN_ERSPAN_DIR:
  ------------------
  |  Branch (2226:5): [True: 0, False: 46.1k]
  ------------------
 2227|      0|        match_set_tun_erspan_dir_masked(match, 0, 0);
 2228|      0|        break;
 2229|      0|    case MFF_TUN_ERSPAN_HWID:
  ------------------
  |  Branch (2229:5): [True: 0, False: 46.1k]
  ------------------
 2230|      0|        match_set_tun_erspan_hwid_masked(match, 0, 0);
 2231|      0|        break;
 2232|    197|    case MFF_TUN_GTPU_FLAGS:
  ------------------
  |  Branch (2232:5): [True: 197, False: 45.9k]
  ------------------
 2233|    197|        match_set_tun_gtpu_flags_masked(match, 0, 0);
 2234|    197|        break;
 2235|      0|    case MFF_TUN_GTPU_MSGTYPE:
  ------------------
  |  Branch (2235:5): [True: 0, False: 46.1k]
  ------------------
 2236|      0|        match_set_tun_gtpu_msgtype_masked(match, 0, 0);
 2237|      0|        break;
 2238|      0|    CASE_MFF_TUN_METADATA:
  ------------------
  |  | 2110|      0|    case MFF_TUN_METADATA0: case MFF_TUN_METADATA1:   \
  |  |  ------------------
  |  |  |  Branch (2110:5): [True: 0, False: 46.1k]
  |  |  |  Branch (2110:29): [True: 0, False: 46.1k]
  |  |  ------------------
  |  | 2111|      0|    case MFF_TUN_METADATA2: case MFF_TUN_METADATA3:   \
  |  |  ------------------
  |  |  |  Branch (2111:5): [True: 0, False: 46.1k]
  |  |  |  Branch (2111:29): [True: 0, False: 46.1k]
  |  |  ------------------
  |  | 2112|      0|    case MFF_TUN_METADATA4: case MFF_TUN_METADATA5:   \
  |  |  ------------------
  |  |  |  Branch (2112:5): [True: 0, False: 46.1k]
  |  |  |  Branch (2112:29): [True: 0, False: 46.1k]
  |  |  ------------------
  |  | 2113|      0|    case MFF_TUN_METADATA6: case MFF_TUN_METADATA7:   \
  |  |  ------------------
  |  |  |  Branch (2113:5): [True: 0, False: 46.1k]
  |  |  |  Branch (2113:29): [True: 0, False: 46.1k]
  |  |  ------------------
  |  | 2114|      0|    case MFF_TUN_METADATA8: case MFF_TUN_METADATA9:   \
  |  |  ------------------
  |  |  |  Branch (2114:5): [True: 0, False: 46.1k]
  |  |  |  Branch (2114:29): [True: 0, False: 46.1k]
  |  |  ------------------
  |  | 2115|      0|    case MFF_TUN_METADATA10: case MFF_TUN_METADATA11: \
  |  |  ------------------
  |  |  |  Branch (2115:5): [True: 0, False: 46.1k]
  |  |  |  Branch (2115:30): [True: 0, False: 46.1k]
  |  |  ------------------
  |  | 2116|      0|    case MFF_TUN_METADATA12: case MFF_TUN_METADATA13: \
  |  |  ------------------
  |  |  |  Branch (2116:5): [True: 0, False: 46.1k]
  |  |  |  Branch (2116:30): [True: 0, False: 46.1k]
  |  |  ------------------
  |  | 2117|      0|    case MFF_TUN_METADATA14: case MFF_TUN_METADATA15: \
  |  |  ------------------
  |  |  |  Branch (2117:5): [True: 0, False: 46.1k]
  |  |  |  Branch (2117:30): [True: 0, False: 46.1k]
  |  |  ------------------
  |  | 2118|      0|    case MFF_TUN_METADATA16: case MFF_TUN_METADATA17: \
  |  |  ------------------
  |  |  |  Branch (2118:5): [True: 0, False: 46.1k]
  |  |  |  Branch (2118:30): [True: 0, False: 46.1k]
  |  |  ------------------
  |  | 2119|      0|    case MFF_TUN_METADATA18: case MFF_TUN_METADATA19: \
  |  |  ------------------
  |  |  |  Branch (2119:5): [True: 0, False: 46.1k]
  |  |  |  Branch (2119:30): [True: 0, False: 46.1k]
  |  |  ------------------
  |  | 2120|      0|    case MFF_TUN_METADATA20: case MFF_TUN_METADATA21: \
  |  |  ------------------
  |  |  |  Branch (2120:5): [True: 0, False: 46.1k]
  |  |  |  Branch (2120:30): [True: 0, False: 46.1k]
  |  |  ------------------
  |  | 2121|      0|    case MFF_TUN_METADATA22: case MFF_TUN_METADATA23: \
  |  |  ------------------
  |  |  |  Branch (2121:5): [True: 0, False: 46.1k]
  |  |  |  Branch (2121:30): [True: 0, False: 46.1k]
  |  |  ------------------
  |  | 2122|      0|    case MFF_TUN_METADATA24: case MFF_TUN_METADATA25: \
  |  |  ------------------
  |  |  |  Branch (2122:5): [True: 0, False: 46.1k]
  |  |  |  Branch (2122:30): [True: 0, False: 46.1k]
  |  |  ------------------
  |  | 2123|      0|    case MFF_TUN_METADATA26: case MFF_TUN_METADATA27: \
  |  |  ------------------
  |  |  |  Branch (2123:5): [True: 0, False: 46.1k]
  |  |  |  Branch (2123:30): [True: 0, False: 46.1k]
  |  |  ------------------
  |  | 2124|      0|    case MFF_TUN_METADATA28: case MFF_TUN_METADATA29: \
  |  |  ------------------
  |  |  |  Branch (2124:5): [True: 0, False: 46.1k]
  |  |  |  Branch (2124:30): [True: 0, False: 46.1k]
  |  |  ------------------
  |  | 2125|      0|    case MFF_TUN_METADATA30: case MFF_TUN_METADATA31: \
  |  |  ------------------
  |  |  |  Branch (2125:5): [True: 0, False: 46.1k]
  |  |  |  Branch (2125:30): [True: 0, False: 46.1k]
  |  |  ------------------
  |  | 2126|      0|    case MFF_TUN_METADATA32: case MFF_TUN_METADATA33: \
  |  |  ------------------
  |  |  |  Branch (2126:5): [True: 0, False: 46.1k]
  |  |  |  Branch (2126:30): [True: 0, False: 46.1k]
  |  |  ------------------
  |  | 2127|      0|    case MFF_TUN_METADATA34: case MFF_TUN_METADATA35: \
  |  |  ------------------
  |  |  |  Branch (2127:5): [True: 0, False: 46.1k]
  |  |  |  Branch (2127:30): [True: 0, False: 46.1k]
  |  |  ------------------
  |  | 2128|      0|    case MFF_TUN_METADATA36: case MFF_TUN_METADATA37: \
  |  |  ------------------
  |  |  |  Branch (2128:5): [True: 0, False: 46.1k]
  |  |  |  Branch (2128:30): [True: 0, False: 46.1k]
  |  |  ------------------
  |  | 2129|      0|    case MFF_TUN_METADATA38: case MFF_TUN_METADATA39: \
  |  |  ------------------
  |  |  |  Branch (2129:5): [True: 0, False: 46.1k]
  |  |  |  Branch (2129:30): [True: 0, False: 46.1k]
  |  |  ------------------
  |  | 2130|      0|    case MFF_TUN_METADATA40: case MFF_TUN_METADATA41: \
  |  |  ------------------
  |  |  |  Branch (2130:5): [True: 0, False: 46.1k]
  |  |  |  Branch (2130:30): [True: 0, False: 46.1k]
  |  |  ------------------
  |  | 2131|      0|    case MFF_TUN_METADATA42: case MFF_TUN_METADATA43: \
  |  |  ------------------
  |  |  |  Branch (2131:5): [True: 0, False: 46.1k]
  |  |  |  Branch (2131:30): [True: 0, False: 46.1k]
  |  |  ------------------
  |  | 2132|      0|    case MFF_TUN_METADATA44: case MFF_TUN_METADATA45: \
  |  |  ------------------
  |  |  |  Branch (2132:5): [True: 0, False: 46.1k]
  |  |  |  Branch (2132:30): [True: 0, False: 46.1k]
  |  |  ------------------
  |  | 2133|      0|    case MFF_TUN_METADATA46: case MFF_TUN_METADATA47: \
  |  |  ------------------
  |  |  |  Branch (2133:5): [True: 0, False: 46.1k]
  |  |  |  Branch (2133:30): [True: 0, False: 46.1k]
  |  |  ------------------
  |  | 2134|      0|    case MFF_TUN_METADATA48: case MFF_TUN_METADATA49: \
  |  |  ------------------
  |  |  |  Branch (2134:5): [True: 0, False: 46.1k]
  |  |  |  Branch (2134:30): [True: 0, False: 46.1k]
  |  |  ------------------
  |  | 2135|      0|    case MFF_TUN_METADATA50: case MFF_TUN_METADATA51: \
  |  |  ------------------
  |  |  |  Branch (2135:5): [True: 0, False: 46.1k]
  |  |  |  Branch (2135:30): [True: 0, False: 46.1k]
  |  |  ------------------
  |  | 2136|      0|    case MFF_TUN_METADATA52: case MFF_TUN_METADATA53: \
  |  |  ------------------
  |  |  |  Branch (2136:5): [True: 0, False: 46.1k]
  |  |  |  Branch (2136:30): [True: 0, False: 46.1k]
  |  |  ------------------
  |  | 2137|      0|    case MFF_TUN_METADATA54: case MFF_TUN_METADATA55: \
  |  |  ------------------
  |  |  |  Branch (2137:5): [True: 0, False: 46.1k]
  |  |  |  Branch (2137:30): [True: 0, False: 46.1k]
  |  |  ------------------
  |  | 2138|      0|    case MFF_TUN_METADATA56: case MFF_TUN_METADATA57: \
  |  |  ------------------
  |  |  |  Branch (2138:5): [True: 0, False: 46.1k]
  |  |  |  Branch (2138:30): [True: 0, False: 46.1k]
  |  |  ------------------
  |  | 2139|      0|    case MFF_TUN_METADATA58: case MFF_TUN_METADATA59: \
  |  |  ------------------
  |  |  |  Branch (2139:5): [True: 0, False: 46.1k]
  |  |  |  Branch (2139:30): [True: 0, False: 46.1k]
  |  |  ------------------
  |  | 2140|      0|    case MFF_TUN_METADATA60: case MFF_TUN_METADATA61: \
  |  |  ------------------
  |  |  |  Branch (2140:5): [True: 0, False: 46.1k]
  |  |  |  Branch (2140:30): [True: 0, False: 46.1k]
  |  |  ------------------
  |  | 2141|      0|    case MFF_TUN_METADATA62: case MFF_TUN_METADATA63
  |  |  ------------------
  |  |  |  Branch (2141:5): [True: 0, False: 46.1k]
  |  |  ------------------
  ------------------
 2239|      0|        tun_metadata_set_match(mf, NULL, NULL, match, err_str);
 2240|      0|        break;
 2241|       |
 2242|    216|    case MFF_METADATA:
  ------------------
  |  Branch (2242:5): [True: 216, False: 45.9k]
  ------------------
 2243|    216|        match_set_metadata_masked(match, htonll(0), htonll(0));
 2244|    216|        break;
 2245|       |
 2246|    194|    case MFF_IN_PORT:
  ------------------
  |  Branch (2246:5): [True: 194, False: 45.9k]
  ------------------
 2247|    194|    case MFF_IN_PORT_OXM:
  ------------------
  |  Branch (2247:5): [True: 0, False: 46.1k]
  ------------------
 2248|    194|        match->flow.in_port.ofp_port = 0;
 2249|    194|        match->wc.masks.in_port.ofp_port = 0;
 2250|    194|        break;
 2251|    192|    case MFF_ACTSET_OUTPUT:
  ------------------
  |  Branch (2251:5): [True: 192, False: 45.9k]
  ------------------
 2252|    192|        match->flow.actset_output = 0;
 2253|    192|        match->wc.masks.actset_output = 0;
 2254|    192|        break;
 2255|       |
 2256|      0|    case MFF_SKB_PRIORITY:
  ------------------
  |  Branch (2256:5): [True: 0, False: 46.1k]
  ------------------
 2257|      0|        match->flow.skb_priority = 0;
 2258|      0|        match->wc.masks.skb_priority = 0;
 2259|      0|        break;
 2260|       |
 2261|     66|    case MFF_PKT_MARK:
  ------------------
  |  Branch (2261:5): [True: 66, False: 46.0k]
  ------------------
 2262|     66|        match->flow.pkt_mark = 0;
 2263|     66|        match->wc.masks.pkt_mark = 0;
 2264|     66|        break;
 2265|       |
 2266|    443|    case MFF_CT_STATE:
  ------------------
  |  Branch (2266:5): [True: 443, False: 45.6k]
  ------------------
 2267|    443|        match->flow.ct_state = 0;
 2268|    443|        match->wc.masks.ct_state = 0;
 2269|    443|        break;
 2270|       |
 2271|     62|    case MFF_CT_ZONE:
  ------------------
  |  Branch (2271:5): [True: 62, False: 46.0k]
  ------------------
 2272|     62|        match->flow.ct_zone = 0;
 2273|     62|        match->wc.masks.ct_zone = 0;
 2274|     62|        break;
 2275|       |
 2276|    200|    case MFF_CT_MARK:
  ------------------
  |  Branch (2276:5): [True: 200, False: 45.9k]
  ------------------
 2277|    200|        match->flow.ct_mark = 0;
 2278|    200|        match->wc.masks.ct_mark = 0;
 2279|    200|        break;
 2280|       |
 2281|    194|    case MFF_CT_LABEL:
  ------------------
  |  Branch (2281:5): [True: 194, False: 45.9k]
  ------------------
 2282|    194|        memset(&match->flow.ct_label, 0, sizeof(match->flow.ct_label));
 2283|    194|        memset(&match->wc.masks.ct_label, 0, sizeof(match->wc.masks.ct_label));
 2284|    194|        break;
 2285|       |
 2286|    216|    case MFF_CT_NW_PROTO:
  ------------------
  |  Branch (2286:5): [True: 216, False: 45.9k]
  ------------------
 2287|    216|        match->flow.ct_nw_proto = 0;
 2288|    216|        match->wc.masks.ct_nw_proto = 0;
 2289|    216|        break;
 2290|       |
 2291|    194|    case MFF_CT_NW_SRC:
  ------------------
  |  Branch (2291:5): [True: 194, False: 45.9k]
  ------------------
 2292|    194|        match->flow.ct_nw_src = 0;
 2293|    194|        match->wc.masks.ct_nw_src = 0;
 2294|    194|        break;
 2295|       |
 2296|    340|    case MFF_CT_NW_DST:
  ------------------
  |  Branch (2296:5): [True: 340, False: 45.8k]
  ------------------
 2297|    340|        match->flow.ct_nw_dst = 0;
 2298|    340|        match->wc.masks.ct_nw_dst = 0;
 2299|    340|        break;
 2300|       |
 2301|    205|    case MFF_CT_IPV6_SRC:
  ------------------
  |  Branch (2301:5): [True: 205, False: 45.9k]
  ------------------
 2302|    205|        memset(&match->flow.ct_ipv6_src, 0, sizeof(match->flow.ct_ipv6_src));
 2303|    205|        WC_UNMASK_FIELD(&match->wc, ct_ipv6_src);
  ------------------
  |  |  205|    205|    memset(&(WC)->masks.FIELD, 0, sizeof (WC)->masks.FIELD)
  ------------------
 2304|    205|        break;
 2305|       |
 2306|    316|    case MFF_CT_IPV6_DST:
  ------------------
  |  Branch (2306:5): [True: 316, False: 45.8k]
  ------------------
 2307|    316|        memset(&match->flow.ct_ipv6_dst, 0, sizeof(match->flow.ct_ipv6_dst));
 2308|    316|        WC_UNMASK_FIELD(&match->wc, ct_ipv6_dst);
  ------------------
  |  |  205|    316|    memset(&(WC)->masks.FIELD, 0, sizeof (WC)->masks.FIELD)
  ------------------
 2309|    316|        break;
 2310|       |
 2311|    205|    case MFF_CT_TP_SRC:
  ------------------
  |  Branch (2311:5): [True: 205, False: 45.9k]
  ------------------
 2312|    205|        match->flow.ct_tp_src = 0;
 2313|    205|        match->wc.masks.ct_tp_src = 0;
 2314|    205|        break;
 2315|       |
 2316|    195|    case MFF_CT_TP_DST:
  ------------------
  |  Branch (2316:5): [True: 195, False: 45.9k]
  ------------------
 2317|    195|        match->flow.ct_tp_dst = 0;
 2318|    195|        match->wc.masks.ct_tp_dst = 0;
 2319|    195|        break;
 2320|       |
 2321|  15.0k|    CASE_MFF_REGS:
  ------------------
  |  | 2065|  3.53k|    case MFF_REG0: case MFF_REG1: case MFF_REG2: case MFF_REG3:     \
  |  |  ------------------
  |  |  |  Branch (2065:5): [True: 894, False: 45.2k]
  |  |  |  Branch (2065:20): [True: 1.10k, False: 45.0k]
  |  |  |  Branch (2065:35): [True: 977, False: 45.1k]
  |  |  |  Branch (2065:50): [True: 561, False: 45.5k]
  |  |  ------------------
  |  | 2066|  5.78k|    case MFF_REG4: case MFF_REG5: case MFF_REG6: case MFF_REG7:     \
  |  |  ------------------
  |  |  |  Branch (2066:5): [True: 707, False: 45.4k]
  |  |  |  Branch (2066:20): [True: 643, False: 45.4k]
  |  |  |  Branch (2066:35): [True: 438, False: 45.7k]
  |  |  |  Branch (2066:50): [True: 458, False: 45.6k]
  |  |  ------------------
  |  | 2067|  7.50k|    case MFF_REG8: case MFF_REG9: case MFF_REG10: case MFF_REG11:   \
  |  |  ------------------
  |  |  |  Branch (2067:5): [True: 330, False: 45.8k]
  |  |  |  Branch (2067:20): [True: 577, False: 45.5k]
  |  |  |  Branch (2067:35): [True: 432, False: 45.7k]
  |  |  |  Branch (2067:51): [True: 382, False: 45.7k]
  |  |  ------------------
  |  | 2068|  9.73k|    case MFF_REG12: case MFF_REG13: case MFF_REG14: case MFF_REG15: \
  |  |  ------------------
  |  |  |  Branch (2068:5): [True: 527, False: 45.6k]
  |  |  |  Branch (2068:21): [True: 740, False: 45.4k]
  |  |  |  Branch (2068:37): [True: 495, False: 45.6k]
  |  |  |  Branch (2068:53): [True: 466, False: 45.6k]
  |  |  ------------------
  |  | 2069|  10.7k|    case MFF_REG16: case MFF_REG17: case MFF_REG18: case MFF_REG19: \
  |  |  ------------------
  |  |  |  Branch (2069:5): [True: 284, False: 45.8k]
  |  |  |  Branch (2069:21): [True: 250, False: 45.8k]
  |  |  |  Branch (2069:37): [True: 244, False: 45.8k]
  |  |  |  Branch (2069:53): [True: 242, False: 45.9k]
  |  |  ------------------
  |  | 2070|  12.0k|    case MFF_REG20: case MFF_REG21: case MFF_REG22: case MFF_REG23: \
  |  |  ------------------
  |  |  |  Branch (2070:5): [True: 328, False: 45.8k]
  |  |  |  Branch (2070:21): [True: 474, False: 45.6k]
  |  |  |  Branch (2070:37): [True: 276, False: 45.8k]
  |  |  |  Branch (2070:53): [True: 255, False: 45.8k]
  |  |  ------------------
  |  | 2071|  13.3k|    case MFF_REG24: case MFF_REG25: case MFF_REG26: case MFF_REG27: \
  |  |  ------------------
  |  |  |  Branch (2071:5): [True: 519, False: 45.6k]
  |  |  |  Branch (2071:21): [True: 213, False: 45.9k]
  |  |  |  Branch (2071:37): [True: 222, False: 45.9k]
  |  |  |  Branch (2071:53): [True: 274, False: 45.8k]
  |  |  ------------------
  |  | 2072|  15.0k|    case MFF_REG28: case MFF_REG29: case MFF_REG30: case MFF_REG31
  |  |  ------------------
  |  |  |  Branch (2072:5): [True: 431, False: 45.7k]
  |  |  |  Branch (2072:21): [True: 1.02k, False: 45.1k]
  |  |  |  Branch (2072:37): [True: 213, False: 45.9k]
  |  |  ------------------
  ------------------
 2322|  15.0k|        match_set_reg_masked(match, mf->id - MFF_REG0, 0, 0);
 2323|  15.0k|        break;
 2324|       |
 2325|  6.95k|    CASE_MFF_XREGS:
  ------------------
  |  | 2081|  2.89k|    case MFF_XREG0: case MFF_XREG1: case MFF_XREG2: case MFF_XREG3:    \
  |  |  ------------------
  |  |  |  Branch (2081:5): [True: 419, False: 45.7k]
  |  |  |  Branch (2081:21): [True: 763, False: 45.3k]
  |  |  |  Branch (2081:37): [True: 1.00k, False: 45.1k]
  |  |  |  Branch (2081:53): [True: 717, False: 45.4k]
  |  |  ------------------
  |  | 2082|  4.35k|    case MFF_XREG4: case MFF_XREG5: case MFF_XREG6: case MFF_XREG7:    \
  |  |  ------------------
  |  |  |  Branch (2082:5): [True: 406, False: 45.7k]
  |  |  |  Branch (2082:21): [True: 325, False: 45.8k]
  |  |  |  Branch (2082:37): [True: 426, False: 45.7k]
  |  |  |  Branch (2082:53): [True: 303, False: 45.8k]
  |  |  ------------------
  |  | 2083|  5.56k|    case MFF_XREG8: case MFF_XREG9: case MFF_XREG10: case MFF_XREG11:  \
  |  |  ------------------
  |  |  |  Branch (2083:5): [True: 222, False: 45.9k]
  |  |  |  Branch (2083:21): [True: 196, False: 45.9k]
  |  |  |  Branch (2083:37): [True: 252, False: 45.8k]
  |  |  |  Branch (2083:54): [True: 532, False: 45.6k]
  |  |  ------------------
  |  | 2084|  6.95k|    case MFF_XREG12: case MFF_XREG13: case MFF_XREG14: case MFF_XREG15
  |  |  ------------------
  |  |  |  Branch (2084:5): [True: 444, False: 45.6k]
  |  |  |  Branch (2084:22): [True: 282, False: 45.8k]
  |  |  |  Branch (2084:39): [True: 372, False: 45.7k]
  |  |  ------------------
  ------------------
 2326|  6.95k|        match_set_xreg_masked(match, mf->id - MFF_XREG0, 0, 0);
 2327|  6.95k|        break;
 2328|       |
 2329|  3.23k|    CASE_MFF_XXREGS: {
  ------------------
  |  | 2093|  1.94k|    case MFF_XXREG0: case MFF_XXREG1: case MFF_XXREG2: case MFF_XXREG3: \
  |  |  ------------------
  |  |  |  Branch (2093:5): [True: 451, False: 45.6k]
  |  |  |  Branch (2093:22): [True: 464, False: 45.6k]
  |  |  |  Branch (2093:39): [True: 670, False: 45.4k]
  |  |  |  Branch (2093:56): [True: 357, False: 45.7k]
  |  |  ------------------
  |  | 2094|  3.23k|    case MFF_XXREG4: case MFF_XXREG5: case MFF_XXREG6: case MFF_XXREG7
  |  |  ------------------
  |  |  |  Branch (2094:5): [True: 79, False: 46.0k]
  |  |  |  Branch (2094:22): [True: 397, False: 45.7k]
  |  |  |  Branch (2094:39): [True: 510, False: 45.6k]
  |  |  ------------------
  ------------------
 2330|  3.23k|        match_set_xxreg_masked(match, mf->id - MFF_XXREG0, OVS_U128_ZERO,
  ------------------
  |  |  130|  3.23k|#define OVS_U128_ZERO OVS_U128_MIN
  ------------------
 2331|  3.23k|                               OVS_U128_ZERO);
  ------------------
  |  |  130|  3.23k|#define OVS_U128_ZERO OVS_U128_MIN
  ------------------
 2332|  3.23k|        break;
 2333|  12.2k|    }
 2334|       |
 2335|    235|    case MFF_ETH_SRC:
  ------------------
  |  Branch (2335:5): [True: 235, False: 45.9k]
  ------------------
 2336|    235|        match->flow.dl_src = eth_addr_zero;
 2337|    235|        match->wc.masks.dl_src = eth_addr_zero;
 2338|    235|        break;
 2339|       |
 2340|    192|    case MFF_ETH_DST:
  ------------------
  |  Branch (2340:5): [True: 192, False: 45.9k]
  ------------------
 2341|    192|        match->flow.dl_dst = eth_addr_zero;
 2342|    192|        match->wc.masks.dl_dst = eth_addr_zero;
 2343|    192|        break;
 2344|       |
 2345|    195|    case MFF_ETH_TYPE:
  ------------------
  |  Branch (2345:5): [True: 195, False: 45.9k]
  ------------------
 2346|    195|        match->flow.dl_type = htons(0);
 2347|    195|        match->wc.masks.dl_type = htons(0);
 2348|    195|        break;
 2349|       |
 2350|    162|    case MFF_VLAN_TCI:
  ------------------
  |  Branch (2350:5): [True: 162, False: 45.9k]
  ------------------
 2351|    162|        match_set_dl_tci_masked(match, htons(0), htons(0));
 2352|    162|        break;
 2353|       |
 2354|    964|    case MFF_DL_VLAN:
  ------------------
  |  Branch (2354:5): [True: 964, False: 45.1k]
  ------------------
 2355|  1.03k|    case MFF_VLAN_VID:
  ------------------
  |  Branch (2355:5): [True: 72, False: 46.0k]
  ------------------
 2356|  1.03k|        match_set_any_vid(match);
 2357|  1.03k|        break;
 2358|       |
 2359|    335|    case MFF_DL_VLAN_PCP:
  ------------------
  |  Branch (2359:5): [True: 335, False: 45.8k]
  ------------------
 2360|  1.05k|    case MFF_VLAN_PCP:
  ------------------
  |  Branch (2360:5): [True: 718, False: 45.4k]
  ------------------
 2361|  1.05k|        match_set_any_pcp(match);
 2362|  1.05k|        break;
 2363|       |
 2364|    186|    case MFF_MPLS_LABEL:
  ------------------
  |  Branch (2364:5): [True: 186, False: 45.9k]
  ------------------
 2365|    186|        match_set_any_mpls_label(match, 0);
 2366|    186|        break;
 2367|       |
 2368|    483|    case MFF_MPLS_TC:
  ------------------
  |  Branch (2368:5): [True: 483, False: 45.6k]
  ------------------
 2369|    483|        match_set_any_mpls_tc(match, 0);
 2370|    483|        break;
 2371|       |
 2372|    188|    case MFF_MPLS_BOS:
  ------------------
  |  Branch (2372:5): [True: 188, False: 45.9k]
  ------------------
 2373|    188|        match_set_any_mpls_bos(match, 0);
 2374|    188|        break;
 2375|       |
 2376|    172|    case MFF_MPLS_TTL:
  ------------------
  |  Branch (2376:5): [True: 172, False: 45.9k]
  ------------------
 2377|    172|        match_set_any_mpls_ttl(match, 0);
 2378|    172|        break;
 2379|       |
 2380|    227|    case MFF_IPV4_SRC:
  ------------------
  |  Branch (2380:5): [True: 227, False: 45.9k]
  ------------------
 2381|    420|    case MFF_ARP_SPA:
  ------------------
  |  Branch (2381:5): [True: 193, False: 45.9k]
  ------------------
 2382|    420|        match_set_nw_src_masked(match, htonl(0), htonl(0));
 2383|    420|        break;
 2384|       |
 2385|    402|    case MFF_IPV4_DST:
  ------------------
  |  Branch (2385:5): [True: 402, False: 45.7k]
  ------------------
 2386|    598|    case MFF_ARP_TPA:
  ------------------
  |  Branch (2386:5): [True: 196, False: 45.9k]
  ------------------
 2387|    598|        match_set_nw_dst_masked(match, htonl(0), htonl(0));
 2388|    598|        break;
 2389|       |
 2390|    310|    case MFF_IPV6_SRC:
  ------------------
  |  Branch (2390:5): [True: 310, False: 45.8k]
  ------------------
 2391|    310|        memset(&match->wc.masks.ipv6_src, 0, sizeof match->wc.masks.ipv6_src);
 2392|    310|        memset(&match->flow.ipv6_src, 0, sizeof match->flow.ipv6_src);
 2393|    310|        break;
 2394|       |
 2395|    202|    case MFF_IPV6_DST:
  ------------------
  |  Branch (2395:5): [True: 202, False: 45.9k]
  ------------------
 2396|    202|        memset(&match->wc.masks.ipv6_dst, 0, sizeof match->wc.masks.ipv6_dst);
 2397|    202|        memset(&match->flow.ipv6_dst, 0, sizeof match->flow.ipv6_dst);
 2398|    202|        break;
 2399|       |
 2400|    496|    case MFF_IPV6_LABEL:
  ------------------
  |  Branch (2400:5): [True: 496, False: 45.6k]
  ------------------
 2401|    496|        match->wc.masks.ipv6_label = htonl(0);
 2402|    496|        match->flow.ipv6_label = htonl(0);
 2403|    496|        break;
 2404|       |
 2405|    270|    case MFF_IP_PROTO:
  ------------------
  |  Branch (2405:5): [True: 270, False: 45.8k]
  ------------------
 2406|    270|        match->wc.masks.nw_proto = 0;
 2407|    270|        match->flow.nw_proto = 0;
 2408|    270|        break;
 2409|       |
 2410|    258|    case MFF_IP_DSCP:
  ------------------
  |  Branch (2410:5): [True: 258, False: 45.8k]
  ------------------
 2411|    550|    case MFF_IP_DSCP_SHIFTED:
  ------------------
  |  Branch (2411:5): [True: 292, False: 45.8k]
  ------------------
 2412|    550|        match->wc.masks.nw_tos &= ~IP_DSCP_MASK;
  ------------------
  |  |  724|    550|#define IP_DSCP_MASK 0xfc
  ------------------
 2413|    550|        match->flow.nw_tos &= ~IP_DSCP_MASK;
  ------------------
  |  |  724|    550|#define IP_DSCP_MASK 0xfc
  ------------------
 2414|    550|        break;
 2415|       |
 2416|    199|    case MFF_IP_ECN:
  ------------------
  |  Branch (2416:5): [True: 199, False: 45.9k]
  ------------------
 2417|    199|        match->wc.masks.nw_tos &= ~IP_ECN_MASK;
  ------------------
  |  |  722|    199|#define IP_ECN_MASK 0x03
  ------------------
 2418|    199|        match->flow.nw_tos &= ~IP_ECN_MASK;
  ------------------
  |  |  722|    199|#define IP_ECN_MASK 0x03
  ------------------
 2419|    199|        break;
 2420|       |
 2421|    196|    case MFF_IP_TTL:
  ------------------
  |  Branch (2421:5): [True: 196, False: 45.9k]
  ------------------
 2422|    196|        match->wc.masks.nw_ttl = 0;
 2423|    196|        match->flow.nw_ttl = 0;
 2424|    196|        break;
 2425|       |
 2426|    195|    case MFF_IP_FRAG:
  ------------------
  |  Branch (2426:5): [True: 195, False: 45.9k]
  ------------------
 2427|    195|        match->wc.masks.nw_frag &= ~FLOW_NW_FRAG_MASK;
  ------------------
  |  |   56|    195|#define FLOW_NW_FRAG_MASK  (FLOW_NW_FRAG_ANY | FLOW_NW_FRAG_LATER)
  |  |  ------------------
  |  |  |  |   54|    195|#define FLOW_NW_FRAG_ANY   (1 << 0) /* Set for any IP frag. */
  |  |  ------------------
  |  |               #define FLOW_NW_FRAG_MASK  (FLOW_NW_FRAG_ANY | FLOW_NW_FRAG_LATER)
  |  |  ------------------
  |  |  |  |   55|    195|#define FLOW_NW_FRAG_LATER (1 << 1) /* Set for IP frag with nonzero offset. */
  |  |  ------------------
  ------------------
 2428|    195|        match->flow.nw_frag &= ~FLOW_NW_FRAG_MASK;
  ------------------
  |  |   56|    195|#define FLOW_NW_FRAG_MASK  (FLOW_NW_FRAG_ANY | FLOW_NW_FRAG_LATER)
  |  |  ------------------
  |  |  |  |   54|    195|#define FLOW_NW_FRAG_ANY   (1 << 0) /* Set for any IP frag. */
  |  |  ------------------
  |  |               #define FLOW_NW_FRAG_MASK  (FLOW_NW_FRAG_ANY | FLOW_NW_FRAG_LATER)
  |  |  ------------------
  |  |  |  |   55|    195|#define FLOW_NW_FRAG_LATER (1 << 1) /* Set for IP frag with nonzero offset. */
  |  |  ------------------
  ------------------
 2429|    195|        break;
 2430|       |
 2431|    311|    case MFF_ARP_OP:
  ------------------
  |  Branch (2431:5): [True: 311, False: 45.8k]
  ------------------
 2432|    311|        match->wc.masks.nw_proto = 0;
 2433|    311|        match->flow.nw_proto = 0;
 2434|    311|        break;
 2435|       |
 2436|     66|    case MFF_ARP_SHA:
  ------------------
  |  Branch (2436:5): [True: 66, False: 46.0k]
  ------------------
 2437|    260|    case MFF_ND_SLL:
  ------------------
  |  Branch (2437:5): [True: 194, False: 45.9k]
  ------------------
 2438|    260|        match->flow.arp_sha = eth_addr_zero;
 2439|    260|        match->wc.masks.arp_sha = eth_addr_zero;
 2440|    260|        break;
 2441|       |
 2442|    194|    case MFF_ARP_THA:
  ------------------
  |  Branch (2442:5): [True: 194, False: 45.9k]
  ------------------
 2443|    285|    case MFF_ND_TLL:
  ------------------
  |  Branch (2443:5): [True: 91, False: 46.0k]
  ------------------
 2444|    285|        match->flow.arp_tha = eth_addr_zero;
 2445|    285|        match->wc.masks.arp_tha = eth_addr_zero;
 2446|    285|        break;
 2447|       |
 2448|      0|    case MFF_ND_RESERVED:
  ------------------
  |  Branch (2448:5): [True: 0, False: 46.1k]
  ------------------
 2449|      0|        match->wc.masks.igmp_group_ip4 = htonl(0);
 2450|      0|        match->flow.igmp_group_ip4 = htonl(0);
 2451|      0|        break;
 2452|       |
 2453|    463|    case MFF_TCP_SRC:
  ------------------
  |  Branch (2453:5): [True: 463, False: 45.6k]
  ------------------
 2454|    551|    case MFF_UDP_SRC:
  ------------------
  |  Branch (2454:5): [True: 88, False: 46.0k]
  ------------------
 2455|    847|    case MFF_SCTP_SRC:
  ------------------
  |  Branch (2455:5): [True: 296, False: 45.8k]
  ------------------
 2456|    867|    case MFF_ICMPV4_TYPE:
  ------------------
  |  Branch (2456:5): [True: 20, False: 46.1k]
  ------------------
 2457|  1.59k|    case MFF_ICMPV6_TYPE:
  ------------------
  |  Branch (2457:5): [True: 731, False: 45.4k]
  ------------------
 2458|  1.59k|        match->wc.masks.tp_src = htons(0);
 2459|  1.59k|        match->flow.tp_src = htons(0);
 2460|  1.59k|        break;
 2461|       |
 2462|    274|    case MFF_TCP_DST:
  ------------------
  |  Branch (2462:5): [True: 274, False: 45.8k]
  ------------------
 2463|    490|    case MFF_UDP_DST:
  ------------------
  |  Branch (2463:5): [True: 216, False: 45.9k]
  ------------------
 2464|    534|    case MFF_SCTP_DST:
  ------------------
  |  Branch (2464:5): [True: 44, False: 46.0k]
  ------------------
 2465|    732|    case MFF_ICMPV4_CODE:
  ------------------
  |  Branch (2465:5): [True: 198, False: 45.9k]
  ------------------
 2466|    806|    case MFF_ICMPV6_CODE:
  ------------------
  |  Branch (2466:5): [True: 74, False: 46.0k]
  ------------------
 2467|    806|        match->wc.masks.tp_dst = htons(0);
 2468|    806|        match->flow.tp_dst = htons(0);
 2469|    806|        break;
 2470|       |
 2471|    414|    case MFF_TCP_FLAGS:
  ------------------
  |  Branch (2471:5): [True: 414, False: 45.7k]
  ------------------
 2472|    414|    case MFF_ND_OPTIONS_TYPE:
  ------------------
  |  Branch (2472:5): [True: 0, False: 46.1k]
  ------------------
 2473|    414|        match->wc.masks.tcp_flags = htons(0);
 2474|    414|        match->flow.tcp_flags = htons(0);
 2475|    414|        break;
 2476|       |
 2477|      0|    case MFF_ND_TARGET:
  ------------------
  |  Branch (2477:5): [True: 0, False: 46.1k]
  ------------------
 2478|      0|        memset(&match->wc.masks.nd_target, 0,
 2479|      0|               sizeof match->wc.masks.nd_target);
 2480|      0|        memset(&match->flow.nd_target, 0, sizeof match->flow.nd_target);
 2481|      0|        break;
 2482|       |
 2483|    178|    case MFF_NSH_FLAGS:
  ------------------
  |  Branch (2483:5): [True: 178, False: 45.9k]
  ------------------
 2484|    178|        MATCH_SET_FIELD_MASKED(match, nsh.flags, 0, 0);
  ------------------
  |  |   50|    178|    do {                                                      \
  |  |   51|    178|        (match)->wc.masks.field = (msk);                      \
  |  |   52|    178|        (match)->flow.field = (value) & (msk);                \
  |  |   53|    178|    } while (0)
  |  |  ------------------
  |  |  |  Branch (53:14): [Folded, False: 178]
  |  |  ------------------
  ------------------
 2485|    178|        break;
 2486|    312|    case MFF_NSH_TTL:
  ------------------
  |  Branch (2486:5): [True: 312, False: 45.8k]
  ------------------
 2487|    312|        MATCH_SET_FIELD_MASKED(match, nsh.ttl, 0, 0);
  ------------------
  |  |   50|    312|    do {                                                      \
  |  |   51|    312|        (match)->wc.masks.field = (msk);                      \
  |  |   52|    312|        (match)->flow.field = (value) & (msk);                \
  |  |   53|    312|    } while (0)
  |  |  ------------------
  |  |  |  Branch (53:14): [Folded, False: 312]
  |  |  ------------------
  ------------------
 2488|    312|        break;
 2489|     52|    case MFF_NSH_MDTYPE:
  ------------------
  |  Branch (2489:5): [True: 52, False: 46.0k]
  ------------------
 2490|     52|        MATCH_SET_FIELD_MASKED(match, nsh.mdtype, 0, 0);
  ------------------
  |  |   50|     52|    do {                                                      \
  |  |   51|     52|        (match)->wc.masks.field = (msk);                      \
  |  |   52|     52|        (match)->flow.field = (value) & (msk);                \
  |  |   53|     52|    } while (0)
  |  |  ------------------
  |  |  |  Branch (53:14): [Folded, False: 52]
  |  |  ------------------
  ------------------
 2491|     52|        break;
 2492|    270|    case MFF_NSH_NP:
  ------------------
  |  Branch (2492:5): [True: 270, False: 45.8k]
  ------------------
 2493|    270|        MATCH_SET_FIELD_MASKED(match, nsh.np, 0, 0);
  ------------------
  |  |   50|    270|    do {                                                      \
  |  |   51|    270|        (match)->wc.masks.field = (msk);                      \
  |  |   52|    270|        (match)->flow.field = (value) & (msk);                \
  |  |   53|    270|    } while (0)
  |  |  ------------------
  |  |  |  Branch (53:14): [Folded, False: 270]
  |  |  ------------------
  ------------------
 2494|    270|        break;
 2495|    731|    case MFF_NSH_SPI:
  ------------------
  |  Branch (2495:5): [True: 731, False: 45.4k]
  ------------------
 2496|    731|        match->wc.masks.nsh.path_hdr &= ~htonl(NSH_SPI_MASK);
 2497|    731|        nsh_path_hdr_set_spi(&match->flow.nsh.path_hdr, htonl(0));
 2498|    731|        break;
 2499|    737|    case MFF_NSH_SI:
  ------------------
  |  Branch (2499:5): [True: 737, False: 45.4k]
  ------------------
 2500|    737|        match->wc.masks.nsh.path_hdr &= ~htonl(NSH_SI_MASK);
 2501|    737|        nsh_path_hdr_set_si(&match->flow.nsh.path_hdr, 0);
 2502|    737|        break;
 2503|    264|    case MFF_NSH_C1:
  ------------------
  |  Branch (2503:5): [True: 264, False: 45.8k]
  ------------------
 2504|    443|    case MFF_NSH_C2:
  ------------------
  |  Branch (2504:5): [True: 179, False: 45.9k]
  ------------------
 2505|    551|    case MFF_NSH_C3:
  ------------------
  |  Branch (2505:5): [True: 108, False: 46.0k]
  ------------------
 2506|    813|    case MFF_NSH_C4:
  ------------------
  |  Branch (2506:5): [True: 262, False: 45.8k]
  ------------------
 2507|    813|        MATCH_SET_FIELD_MASKED(match, nsh.context[mf->id - MFF_NSH_C1],
  ------------------
  |  |   50|    813|    do {                                                      \
  |  |   51|    813|        (match)->wc.masks.field = (msk);                      \
  |  |   52|    813|        (match)->flow.field = (value) & (msk);                \
  |  |   53|    813|    } while (0)
  |  |  ------------------
  |  |  |  Branch (53:14): [Folded, False: 813]
  |  |  ------------------
  ------------------
 2508|    813|                               htonl(0), htonl(0));
 2509|    813|        break;
 2510|       |
 2511|      0|    case MFF_N_IDS:
  ------------------
  |  Branch (2511:5): [True: 0, False: 46.1k]
  ------------------
 2512|      0|    default:
  ------------------
  |  Branch (2512:5): [True: 0, False: 46.1k]
  ------------------
 2513|      0|        OVS_NOT_REACHED();
  ------------------
  |  |  107|      0|#define OVS_NOT_REACHED() abort()
  ------------------
 2514|  46.1k|    }
 2515|  46.1k|}
mf_set:
 2540|   186k|{
 2541|   186k|    if (!mask || is_all_ones(mask, mf->n_bytes)) {
  ------------------
  |  Branch (2541:9): [True: 0, False: 186k]
  |  Branch (2541:18): [True: 74.3k, False: 112k]
  ------------------
 2542|  74.3k|        mf_set_value(mf, value, match, err_str);
 2543|  74.3k|        return mf->usable_protocols_exact;
 2544|   112k|    } else if (is_all_zeros(mask, mf->n_bytes) && !mf_is_tun_metadata(mf)) {
  ------------------
  |  Branch (2544:16): [True: 46.4k, False: 65.6k]
  |  Branch (2544:51): [True: 46.1k, False: 291]
  ------------------
 2545|       |        /* Tunnel metadata matches on the existence of the field itself, so
 2546|       |         * it still needs to be encoded even if the value is wildcarded. */
 2547|  46.1k|        mf_set_wild(mf, match, err_str);
 2548|  46.1k|        return OFPUTIL_P_ANY;
  ------------------
  |  |  100|  46.1k|#define OFPUTIL_P_ANY ((1 << 9) - 1)
  ------------------
 2549|  46.1k|    }
 2550|       |
 2551|  65.8k|    if (err_str) {
  ------------------
  |  Branch (2551:9): [True: 47.5k, False: 18.3k]
  ------------------
 2552|  47.5k|        *err_str = NULL;
 2553|  47.5k|    }
 2554|       |
 2555|       |    /* The cases where 'mask' is all-1-bits or all-0-bits were already handled
 2556|       |     * above[*], so the code below only needs to work for the remaining cases
 2557|       |     * of a nontrivial mask.
 2558|       |     *
 2559|       |     * [*] Except where the field is a tunnel metadata field and 'mask' is
 2560|       |     *     all-0-bits; see above. */
 2561|  65.8k|    switch (mf->id) {
 2562|    141|    case MFF_CT_ZONE:
  ------------------
  |  Branch (2562:5): [True: 141, False: 65.7k]
  ------------------
 2563|    309|    case MFF_CT_NW_PROTO:
  ------------------
  |  Branch (2563:5): [True: 168, False: 65.7k]
  ------------------
 2564|    677|    case MFF_RECIRC_ID:
  ------------------
  |  Branch (2564:5): [True: 368, False: 65.5k]
  ------------------
 2565|    780|    case MFF_PACKET_TYPE:
  ------------------
  |  Branch (2565:5): [True: 103, False: 65.7k]
  ------------------
 2566|  1.01k|    case MFF_CONJ_ID:
  ------------------
  |  Branch (2566:5): [True: 235, False: 65.6k]
  ------------------
 2567|  1.27k|    case MFF_IN_PORT:
  ------------------
  |  Branch (2567:5): [True: 261, False: 65.6k]
  ------------------
 2568|  1.50k|    case MFF_IN_PORT_OXM:
  ------------------
  |  Branch (2568:5): [True: 228, False: 65.6k]
  ------------------
 2569|  1.57k|    case MFF_ACTSET_OUTPUT:
  ------------------
  |  Branch (2569:5): [True: 66, False: 65.8k]
  ------------------
 2570|  1.57k|    case MFF_SKB_PRIORITY:
  ------------------
  |  Branch (2570:5): [True: 0, False: 65.8k]
  ------------------
 2571|  1.78k|    case MFF_ETH_TYPE:
  ------------------
  |  Branch (2571:5): [True: 218, False: 65.6k]
  ------------------
 2572|  2.01k|    case MFF_DL_VLAN:
  ------------------
  |  Branch (2572:5): [True: 227, False: 65.6k]
  ------------------
 2573|  2.36k|    case MFF_DL_VLAN_PCP:
  ------------------
  |  Branch (2573:5): [True: 345, False: 65.5k]
  ------------------
 2574|  2.59k|    case MFF_VLAN_PCP:
  ------------------
  |  Branch (2574:5): [True: 235, False: 65.6k]
  ------------------
 2575|  2.79k|    case MFF_MPLS_LABEL:
  ------------------
  |  Branch (2575:5): [True: 199, False: 65.7k]
  ------------------
 2576|  3.05k|    case MFF_MPLS_TC:
  ------------------
  |  Branch (2576:5): [True: 260, False: 65.6k]
  ------------------
 2577|  3.31k|    case MFF_MPLS_BOS:
  ------------------
  |  Branch (2577:5): [True: 258, False: 65.6k]
  ------------------
 2578|  3.57k|    case MFF_MPLS_TTL:
  ------------------
  |  Branch (2578:5): [True: 260, False: 65.6k]
  ------------------
 2579|  3.86k|    case MFF_IP_PROTO:
  ------------------
  |  Branch (2579:5): [True: 293, False: 65.6k]
  ------------------
 2580|  3.93k|    case MFF_IP_TTL:
  ------------------
  |  Branch (2580:5): [True: 70, False: 65.8k]
  ------------------
 2581|  4.19k|    case MFF_IP_DSCP:
  ------------------
  |  Branch (2581:5): [True: 256, False: 65.6k]
  ------------------
 2582|  4.45k|    case MFF_IP_DSCP_SHIFTED:
  ------------------
  |  Branch (2582:5): [True: 264, False: 65.6k]
  ------------------
 2583|  4.71k|    case MFF_IP_ECN:
  ------------------
  |  Branch (2583:5): [True: 259, False: 65.6k]
  ------------------
 2584|  4.93k|    case MFF_ARP_OP:
  ------------------
  |  Branch (2584:5): [True: 222, False: 65.6k]
  ------------------
 2585|  5.15k|    case MFF_ICMPV4_TYPE:
  ------------------
  |  Branch (2585:5): [True: 220, False: 65.6k]
  ------------------
 2586|  5.33k|    case MFF_ICMPV4_CODE:
  ------------------
  |  Branch (2586:5): [True: 178, False: 65.7k]
  ------------------
 2587|  5.75k|    case MFF_ICMPV6_TYPE:
  ------------------
  |  Branch (2587:5): [True: 420, False: 65.4k]
  ------------------
 2588|  6.00k|    case MFF_ICMPV6_CODE:
  ------------------
  |  Branch (2588:5): [True: 249, False: 65.6k]
  ------------------
 2589|  6.00k|    case MFF_ND_RESERVED:
  ------------------
  |  Branch (2589:5): [True: 0, False: 65.8k]
  ------------------
 2590|  6.00k|    case MFF_ND_OPTIONS_TYPE:
  ------------------
  |  Branch (2590:5): [True: 0, False: 65.8k]
  ------------------
 2591|  6.00k|        return OFPUTIL_P_NONE;
  ------------------
  |  |   53|  6.00k|#define OFPUTIL_P_NONE 0
  ------------------
 2592|       |
 2593|     69|    case MFF_DP_HASH:
  ------------------
  |  Branch (2593:5): [True: 69, False: 65.8k]
  ------------------
 2594|     69|        match_set_dp_hash_masked(match, ntohl(value->be32), ntohl(mask->be32));
 2595|     69|        break;
 2596|    283|    case MFF_TUN_ID:
  ------------------
  |  Branch (2596:5): [True: 283, False: 65.6k]
  ------------------
 2597|    283|        match_set_tun_id_masked(match, value->be64, mask->be64);
 2598|    283|        break;
 2599|    203|    case MFF_TUN_SRC:
  ------------------
  |  Branch (2599:5): [True: 203, False: 65.6k]
  ------------------
 2600|    203|        match_set_tun_src_masked(match, value->be32, mask->be32);
 2601|    203|        break;
 2602|    311|    case MFF_TUN_DST:
  ------------------
  |  Branch (2602:5): [True: 311, False: 65.5k]
  ------------------
 2603|    311|        match_set_tun_dst_masked(match, value->be32, mask->be32);
 2604|    311|        break;
 2605|     67|    case MFF_TUN_IPV6_SRC:
  ------------------
  |  Branch (2605:5): [True: 67, False: 65.8k]
  ------------------
 2606|     67|        match_set_tun_ipv6_src_masked(match, &value->ipv6, &mask->ipv6);
 2607|     67|        break;
 2608|    220|    case MFF_TUN_IPV6_DST:
  ------------------
  |  Branch (2608:5): [True: 220, False: 65.6k]
  ------------------
 2609|    220|        match_set_tun_ipv6_dst_masked(match, &value->ipv6, &mask->ipv6);
 2610|    220|        break;
 2611|    304|    case MFF_TUN_FLAGS:
  ------------------
  |  Branch (2611:5): [True: 304, False: 65.5k]
  ------------------
 2612|    304|        match_set_tun_flags_masked(match, ntohs(value->be16), ntohs(mask->be16));
 2613|    304|        break;
 2614|    244|    case MFF_TUN_GBP_ID:
  ------------------
  |  Branch (2614:5): [True: 244, False: 65.6k]
  ------------------
 2615|    244|        match_set_tun_gbp_id_masked(match, value->be16, mask->be16);
 2616|    244|        break;
 2617|    397|    case MFF_TUN_GBP_FLAGS:
  ------------------
  |  Branch (2617:5): [True: 397, False: 65.5k]
  ------------------
 2618|    397|        match_set_tun_gbp_flags_masked(match, value->u8, mask->u8);
 2619|    397|        break;
 2620|    256|    case MFF_TUN_TTL:
  ------------------
  |  Branch (2620:5): [True: 256, False: 65.6k]
  ------------------
 2621|    256|        match_set_tun_ttl_masked(match, value->u8, mask->u8);
 2622|    256|        break;
 2623|    314|    case MFF_TUN_TOS:
  ------------------
  |  Branch (2623:5): [True: 314, False: 65.5k]
  ------------------
 2624|    314|        match_set_tun_tos_masked(match, value->u8, mask->u8);
 2625|    314|        break;
 2626|    273|    case MFF_TUN_ERSPAN_VER:
  ------------------
  |  Branch (2626:5): [True: 273, False: 65.6k]
  ------------------
 2627|    273|        match_set_tun_erspan_ver_masked(match, value->u8, mask->u8);
 2628|    273|        break;
 2629|    130|    case MFF_TUN_ERSPAN_IDX:
  ------------------
  |  Branch (2629:5): [True: 130, False: 65.7k]
  ------------------
 2630|    130|        match_set_tun_erspan_idx_masked(match, ntohl(value->be32),
 2631|    130|                                        ntohl(mask->be32));
 2632|    130|        break;
 2633|    265|    case MFF_TUN_ERSPAN_DIR:
  ------------------
  |  Branch (2633:5): [True: 265, False: 65.6k]
  ------------------
 2634|    265|        match_set_tun_erspan_dir_masked(match, value->u8, mask->u8);
 2635|    265|        break;
 2636|      0|    case MFF_TUN_ERSPAN_HWID:
  ------------------
  |  Branch (2636:5): [True: 0, False: 65.8k]
  ------------------
 2637|      0|        match_set_tun_erspan_hwid_masked(match, value->u8, mask->u8);
 2638|      0|        break;
 2639|    249|    case MFF_TUN_GTPU_FLAGS:
  ------------------
  |  Branch (2639:5): [True: 249, False: 65.6k]
  ------------------
 2640|    249|        match_set_tun_gtpu_flags_masked(match, value->u8, mask->u8);
 2641|    249|        break;
 2642|      0|    case MFF_TUN_GTPU_MSGTYPE:
  ------------------
  |  Branch (2642:5): [True: 0, False: 65.8k]
  ------------------
 2643|      0|        match_set_tun_gtpu_msgtype_masked(match, value->u8, mask->u8);
 2644|      0|        break;
 2645|  17.8k|    CASE_MFF_TUN_METADATA:
  ------------------
  |  | 2110|    780|    case MFF_TUN_METADATA0: case MFF_TUN_METADATA1:   \
  |  |  ------------------
  |  |  |  Branch (2110:5): [True: 437, False: 65.4k]
  |  |  |  Branch (2110:29): [True: 343, False: 65.5k]
  |  |  ------------------
  |  | 2111|  1.25k|    case MFF_TUN_METADATA2: case MFF_TUN_METADATA3:   \
  |  |  ------------------
  |  |  |  Branch (2111:5): [True: 395, False: 65.5k]
  |  |  |  Branch (2111:29): [True: 78, False: 65.8k]
  |  |  ------------------
  |  | 2112|  1.92k|    case MFF_TUN_METADATA4: case MFF_TUN_METADATA5:   \
  |  |  ------------------
  |  |  |  Branch (2112:5): [True: 390, False: 65.5k]
  |  |  |  Branch (2112:29): [True: 283, False: 65.6k]
  |  |  ------------------
  |  | 2113|  2.36k|    case MFF_TUN_METADATA6: case MFF_TUN_METADATA7:   \
  |  |  ------------------
  |  |  |  Branch (2113:5): [True: 231, False: 65.6k]
  |  |  |  Branch (2113:29): [True: 209, False: 65.6k]
  |  |  ------------------
  |  | 2114|  3.21k|    case MFF_TUN_METADATA8: case MFF_TUN_METADATA9:   \
  |  |  ------------------
  |  |  |  Branch (2114:5): [True: 433, False: 65.4k]
  |  |  |  Branch (2114:29): [True: 415, False: 65.4k]
  |  |  ------------------
  |  | 2115|  3.80k|    case MFF_TUN_METADATA10: case MFF_TUN_METADATA11: \
  |  |  ------------------
  |  |  |  Branch (2115:5): [True: 386, False: 65.5k]
  |  |  |  Branch (2115:30): [True: 204, False: 65.6k]
  |  |  ------------------
  |  | 2116|  4.36k|    case MFF_TUN_METADATA12: case MFF_TUN_METADATA13: \
  |  |  ------------------
  |  |  |  Branch (2116:5): [True: 286, False: 65.6k]
  |  |  |  Branch (2116:30): [True: 271, False: 65.6k]
  |  |  ------------------
  |  | 2117|  4.89k|    case MFF_TUN_METADATA14: case MFF_TUN_METADATA15: \
  |  |  ------------------
  |  |  |  Branch (2117:5): [True: 209, False: 65.6k]
  |  |  |  Branch (2117:30): [True: 324, False: 65.5k]
  |  |  ------------------
  |  | 2118|  5.42k|    case MFF_TUN_METADATA16: case MFF_TUN_METADATA17: \
  |  |  ------------------
  |  |  |  Branch (2118:5): [True: 274, False: 65.6k]
  |  |  |  Branch (2118:30): [True: 259, False: 65.6k]
  |  |  ------------------
  |  | 2119|  5.91k|    case MFF_TUN_METADATA18: case MFF_TUN_METADATA19: \
  |  |  ------------------
  |  |  |  Branch (2119:5): [True: 277, False: 65.6k]
  |  |  |  Branch (2119:30): [True: 208, False: 65.6k]
  |  |  ------------------
  |  | 2120|  6.61k|    case MFF_TUN_METADATA20: case MFF_TUN_METADATA21: \
  |  |  ------------------
  |  |  |  Branch (2120:5): [True: 259, False: 65.6k]
  |  |  |  Branch (2120:30): [True: 445, False: 65.4k]
  |  |  ------------------
  |  | 2121|  7.21k|    case MFF_TUN_METADATA22: case MFF_TUN_METADATA23: \
  |  |  ------------------
  |  |  |  Branch (2121:5): [True: 294, False: 65.6k]
  |  |  |  Branch (2121:30): [True: 308, False: 65.5k]
  |  |  ------------------
  |  | 2122|  7.91k|    case MFF_TUN_METADATA24: case MFF_TUN_METADATA25: \
  |  |  ------------------
  |  |  |  Branch (2122:5): [True: 345, False: 65.5k]
  |  |  |  Branch (2122:30): [True: 355, False: 65.5k]
  |  |  ------------------
  |  | 2123|  8.38k|    case MFF_TUN_METADATA26: case MFF_TUN_METADATA27: \
  |  |  ------------------
  |  |  |  Branch (2123:5): [True: 210, False: 65.6k]
  |  |  |  Branch (2123:30): [True: 257, False: 65.6k]
  |  |  ------------------
  |  | 2124|  8.81k|    case MFF_TUN_METADATA28: case MFF_TUN_METADATA29: \
  |  |  ------------------
  |  |  |  Branch (2124:5): [True: 224, False: 65.6k]
  |  |  |  Branch (2124:30): [True: 201, False: 65.6k]
  |  |  ------------------
  |  | 2125|  9.41k|    case MFF_TUN_METADATA30: case MFF_TUN_METADATA31: \
  |  |  ------------------
  |  |  |  Branch (2125:5): [True: 308, False: 65.5k]
  |  |  |  Branch (2125:30): [True: 296, False: 65.6k]
  |  |  ------------------
  |  | 2126|  9.84k|    case MFF_TUN_METADATA32: case MFF_TUN_METADATA33: \
  |  |  ------------------
  |  |  |  Branch (2126:5): [True: 201, False: 65.6k]
  |  |  |  Branch (2126:30): [True: 229, False: 65.6k]
  |  |  ------------------
  |  | 2127|  10.4k|    case MFF_TUN_METADATA34: case MFF_TUN_METADATA35: \
  |  |  ------------------
  |  |  |  Branch (2127:5): [True: 368, False: 65.5k]
  |  |  |  Branch (2127:30): [True: 223, False: 65.6k]
  |  |  ------------------
  |  | 2128|  10.8k|    case MFF_TUN_METADATA36: case MFF_TUN_METADATA37: \
  |  |  ------------------
  |  |  |  Branch (2128:5): [True: 256, False: 65.6k]
  |  |  |  Branch (2128:30): [True: 194, False: 65.7k]
  |  |  ------------------
  |  | 2129|  11.4k|    case MFF_TUN_METADATA38: case MFF_TUN_METADATA39: \
  |  |  ------------------
  |  |  |  Branch (2129:5): [True: 307, False: 65.5k]
  |  |  |  Branch (2129:30): [True: 221, False: 65.6k]
  |  |  ------------------
  |  | 2130|  11.8k|    case MFF_TUN_METADATA40: case MFF_TUN_METADATA41: \
  |  |  ------------------
  |  |  |  Branch (2130:5): [True: 188, False: 65.7k]
  |  |  |  Branch (2130:30): [True: 215, False: 65.6k]
  |  |  ------------------
  |  | 2131|  12.6k|    case MFF_TUN_METADATA42: case MFF_TUN_METADATA43: \
  |  |  ------------------
  |  |  |  Branch (2131:5): [True: 353, False: 65.5k]
  |  |  |  Branch (2131:30): [True: 520, False: 65.3k]
  |  |  ------------------
  |  | 2132|  13.1k|    case MFF_TUN_METADATA44: case MFF_TUN_METADATA45: \
  |  |  ------------------
  |  |  |  Branch (2132:5): [True: 219, False: 65.6k]
  |  |  |  Branch (2132:30): [True: 207, False: 65.6k]
  |  |  ------------------
  |  | 2133|  13.6k|    case MFF_TUN_METADATA46: case MFF_TUN_METADATA47: \
  |  |  ------------------
  |  |  |  Branch (2133:5): [True: 227, False: 65.6k]
  |  |  |  Branch (2133:30): [True: 283, False: 65.6k]
  |  |  ------------------
  |  | 2134|  14.0k|    case MFF_TUN_METADATA48: case MFF_TUN_METADATA49: \
  |  |  ------------------
  |  |  |  Branch (2134:5): [True: 276, False: 65.6k]
  |  |  |  Branch (2134:30): [True: 182, False: 65.7k]
  |  |  ------------------
  |  | 2135|  14.3k|    case MFF_TUN_METADATA50: case MFF_TUN_METADATA51: \
  |  |  ------------------
  |  |  |  Branch (2135:5): [True: 198, False: 65.7k]
  |  |  |  Branch (2135:30): [True: 79, False: 65.8k]
  |  |  ------------------
  |  | 2136|  14.8k|    case MFF_TUN_METADATA52: case MFF_TUN_METADATA53: \
  |  |  ------------------
  |  |  |  Branch (2136:5): [True: 219, False: 65.6k]
  |  |  |  Branch (2136:30): [True: 283, False: 65.6k]
  |  |  ------------------
  |  | 2137|  15.5k|    case MFF_TUN_METADATA54: case MFF_TUN_METADATA55: \
  |  |  ------------------
  |  |  |  Branch (2137:5): [True: 345, False: 65.5k]
  |  |  |  Branch (2137:30): [True: 359, False: 65.5k]
  |  |  ------------------
  |  | 2138|  16.0k|    case MFF_TUN_METADATA56: case MFF_TUN_METADATA57: \
  |  |  ------------------
  |  |  |  Branch (2138:5): [True: 222, False: 65.6k]
  |  |  |  Branch (2138:30): [True: 230, False: 65.6k]
  |  |  ------------------
  |  | 2139|  16.6k|    case MFF_TUN_METADATA58: case MFF_TUN_METADATA59: \
  |  |  ------------------
  |  |  |  Branch (2139:5): [True: 139, False: 65.7k]
  |  |  |  Branch (2139:30): [True: 453, False: 65.4k]
  |  |  ------------------
  |  | 2140|  17.3k|    case MFF_TUN_METADATA60: case MFF_TUN_METADATA61: \
  |  |  ------------------
  |  |  |  Branch (2140:5): [True: 436, False: 65.4k]
  |  |  |  Branch (2140:30): [True: 307, False: 65.5k]
  |  |  ------------------
  |  | 2141|  17.8k|    case MFF_TUN_METADATA62: case MFF_TUN_METADATA63
  |  |  ------------------
  |  |  |  Branch (2141:5): [True: 282, False: 65.6k]
  |  |  ------------------
  ------------------
 2646|  17.8k|        tun_metadata_set_match(mf, value, mask, match, err_str);
 2647|  17.8k|        break;
 2648|       |
 2649|    303|    case MFF_METADATA:
  ------------------
  |  Branch (2649:5): [True: 303, False: 65.5k]
  ------------------
 2650|    303|        match_set_metadata_masked(match, value->be64, mask->be64);
 2651|    303|        break;
 2652|       |
 2653|  10.0k|    CASE_MFF_REGS:
  ------------------
  |  | 2065|  1.79k|    case MFF_REG0: case MFF_REG1: case MFF_REG2: case MFF_REG3:     \
  |  |  ------------------
  |  |  |  Branch (2065:5): [True: 327, False: 65.5k]
  |  |  |  Branch (2065:20): [True: 441, False: 65.4k]
  |  |  |  Branch (2065:35): [True: 756, False: 65.1k]
  |  |  |  Branch (2065:50): [True: 275, False: 65.6k]
  |  |  ------------------
  |  | 2066|  3.80k|    case MFF_REG4: case MFF_REG5: case MFF_REG6: case MFF_REG7:     \
  |  |  ------------------
  |  |  |  Branch (2066:5): [True: 372, False: 65.5k]
  |  |  |  Branch (2066:20): [True: 424, False: 65.4k]
  |  |  |  Branch (2066:35): [True: 791, False: 65.1k]
  |  |  |  Branch (2066:50): [True: 416, False: 65.4k]
  |  |  ------------------
  |  | 2067|  5.01k|    case MFF_REG8: case MFF_REG9: case MFF_REG10: case MFF_REG11:   \
  |  |  ------------------
  |  |  |  Branch (2067:5): [True: 317, False: 65.5k]
  |  |  |  Branch (2067:20): [True: 305, False: 65.5k]
  |  |  |  Branch (2067:35): [True: 347, False: 65.5k]
  |  |  |  Branch (2067:51): [True: 242, False: 65.6k]
  |  |  ------------------
  |  | 2068|  6.00k|    case MFF_REG12: case MFF_REG13: case MFF_REG14: case MFF_REG15: \
  |  |  ------------------
  |  |  |  Branch (2068:5): [True: 224, False: 65.6k]
  |  |  |  Branch (2068:21): [True: 269, False: 65.6k]
  |  |  |  Branch (2068:37): [True: 232, False: 65.6k]
  |  |  |  Branch (2068:53): [True: 263, False: 65.6k]
  |  |  ------------------
  |  | 2069|  6.87k|    case MFF_REG16: case MFF_REG17: case MFF_REG18: case MFF_REG19: \
  |  |  ------------------
  |  |  |  Branch (2069:5): [True: 301, False: 65.5k]
  |  |  |  Branch (2069:21): [True: 326, False: 65.5k]
  |  |  |  Branch (2069:37): [True: 68, False: 65.8k]
  |  |  |  Branch (2069:53): [True: 178, False: 65.7k]
  |  |  ------------------
  |  | 2070|  7.78k|    case MFF_REG20: case MFF_REG21: case MFF_REG22: case MFF_REG23: \
  |  |  ------------------
  |  |  |  Branch (2070:5): [True: 242, False: 65.6k]
  |  |  |  Branch (2070:21): [True: 158, False: 65.7k]
  |  |  |  Branch (2070:37): [True: 261, False: 65.6k]
  |  |  |  Branch (2070:53): [True: 253, False: 65.6k]
  |  |  ------------------
  |  | 2071|  8.77k|    case MFF_REG24: case MFF_REG25: case MFF_REG26: case MFF_REG27: \
  |  |  ------------------
  |  |  |  Branch (2071:5): [True: 291, False: 65.6k]
  |  |  |  Branch (2071:21): [True: 223, False: 65.6k]
  |  |  |  Branch (2071:37): [True: 254, False: 65.6k]
  |  |  |  Branch (2071:53): [True: 218, False: 65.6k]
  |  |  ------------------
  |  | 2072|  10.0k|    case MFF_REG28: case MFF_REG29: case MFF_REG30: case MFF_REG31
  |  |  ------------------
  |  |  |  Branch (2072:5): [True: 239, False: 65.6k]
  |  |  |  Branch (2072:21): [True: 551, False: 65.3k]
  |  |  |  Branch (2072:37): [True: 216, False: 65.6k]
  |  |  ------------------
  ------------------
 2654|  10.0k|        match_set_reg_masked(match, mf->id - MFF_REG0,
 2655|  10.0k|                             ntohl(value->be32), ntohl(mask->be32));
 2656|  10.0k|        break;
 2657|       |
 2658|  6.47k|    CASE_MFF_XREGS:
  ------------------
  |  | 2081|  1.83k|    case MFF_XREG0: case MFF_XREG1: case MFF_XREG2: case MFF_XREG3:    \
  |  |  ------------------
  |  |  |  Branch (2081:5): [True: 347, False: 65.5k]
  |  |  |  Branch (2081:21): [True: 411, False: 65.4k]
  |  |  |  Branch (2081:37): [True: 417, False: 65.4k]
  |  |  |  Branch (2081:53): [True: 658, False: 65.2k]
  |  |  ------------------
  |  | 2082|  3.42k|    case MFF_XREG4: case MFF_XREG5: case MFF_XREG6: case MFF_XREG7:    \
  |  |  ------------------
  |  |  |  Branch (2082:5): [True: 377, False: 65.5k]
  |  |  |  Branch (2082:21): [True: 445, False: 65.4k]
  |  |  |  Branch (2082:37): [True: 441, False: 65.4k]
  |  |  |  Branch (2082:53): [True: 324, False: 65.5k]
  |  |  ------------------
  |  | 2083|  4.98k|    case MFF_XREG8: case MFF_XREG9: case MFF_XREG10: case MFF_XREG11:  \
  |  |  ------------------
  |  |  |  Branch (2083:5): [True: 435, False: 65.4k]
  |  |  |  Branch (2083:21): [True: 303, False: 65.5k]
  |  |  |  Branch (2083:37): [True: 357, False: 65.5k]
  |  |  |  Branch (2083:54): [True: 469, False: 65.4k]
  |  |  ------------------
  |  | 2084|  6.47k|    case MFF_XREG12: case MFF_XREG13: case MFF_XREG14: case MFF_XREG15
  |  |  ------------------
  |  |  |  Branch (2084:5): [True: 535, False: 65.3k]
  |  |  |  Branch (2084:22): [True: 203, False: 65.6k]
  |  |  |  Branch (2084:39): [True: 255, False: 65.6k]
  |  |  ------------------
  ------------------
 2659|  6.47k|        match_set_xreg_masked(match, mf->id - MFF_XREG0,
 2660|  6.47k|                              ntohll(value->be64), ntohll(mask->be64));
 2661|  6.47k|        break;
 2662|       |
 2663|  2.99k|    CASE_MFF_XXREGS: {
  ------------------
  |  | 2093|  1.52k|    case MFF_XXREG0: case MFF_XXREG1: case MFF_XXREG2: case MFF_XXREG3: \
  |  |  ------------------
  |  |  |  Branch (2093:5): [True: 248, False: 65.6k]
  |  |  |  Branch (2093:22): [True: 205, False: 65.6k]
  |  |  |  Branch (2093:39): [True: 248, False: 65.6k]
  |  |  |  Branch (2093:56): [True: 822, False: 65.0k]
  |  |  ------------------
  |  | 2094|  2.99k|    case MFF_XXREG4: case MFF_XXREG5: case MFF_XXREG6: case MFF_XXREG7
  |  |  ------------------
  |  |  |  Branch (2094:5): [True: 221, False: 65.6k]
  |  |  |  Branch (2094:22): [True: 238, False: 65.6k]
  |  |  |  Branch (2094:39): [True: 738, False: 65.1k]
  |  |  ------------------
  ------------------
 2664|  2.99k|        match_set_xxreg_masked(match, mf->id - MFF_XXREG0,
 2665|  2.99k|                ntoh128(value->be128), ntoh128(mask->be128));
 2666|  2.99k|        break;
 2667|  9.37k|    }
 2668|       |
 2669|    191|    case MFF_PKT_MARK:
  ------------------
  |  Branch (2669:5): [True: 191, False: 65.7k]
  ------------------
 2670|    191|        match_set_pkt_mark_masked(match, ntohl(value->be32),
 2671|    191|                                  ntohl(mask->be32));
 2672|    191|        break;
 2673|       |
 2674|    534|    case MFF_CT_STATE:
  ------------------
  |  Branch (2674:5): [True: 534, False: 65.3k]
  ------------------
 2675|    534|        match_set_ct_state_masked(match, ntohl(value->be32), ntohl(mask->be32));
 2676|    534|        break;
 2677|       |
 2678|  2.05k|    case MFF_CT_MARK:
  ------------------
  |  Branch (2678:5): [True: 2.05k, False: 63.8k]
  ------------------
 2679|  2.05k|        match_set_ct_mark_masked(match, ntohl(value->be32), ntohl(mask->be32));
 2680|  2.05k|        break;
 2681|       |
 2682|    265|    case MFF_CT_LABEL:
  ------------------
  |  Branch (2682:5): [True: 265, False: 65.6k]
  ------------------
 2683|    265|        match_set_ct_label_masked(match, ntoh128(value->be128),
 2684|    265|                                  ntoh128(mask->be128));
 2685|    265|        break;
 2686|       |
 2687|    262|    case MFF_CT_NW_SRC:
  ------------------
  |  Branch (2687:5): [True: 262, False: 65.6k]
  ------------------
 2688|    262|        match_set_ct_nw_src_masked(match, value->be32, mask->be32);
 2689|    262|        break;
 2690|       |
 2691|  1.14k|    case MFF_CT_NW_DST:
  ------------------
  |  Branch (2691:5): [True: 1.14k, False: 64.7k]
  ------------------
 2692|  1.14k|        match_set_ct_nw_dst_masked(match, value->be32, mask->be32);
 2693|  1.14k|        break;
 2694|       |
 2695|    204|    case MFF_CT_IPV6_SRC:
  ------------------
  |  Branch (2695:5): [True: 204, False: 65.6k]
  ------------------
 2696|    204|        match_set_ct_ipv6_src_masked(match, &value->ipv6, &mask->ipv6);
 2697|    204|        break;
 2698|       |
 2699|    290|    case MFF_CT_IPV6_DST:
  ------------------
  |  Branch (2699:5): [True: 290, False: 65.6k]
  ------------------
 2700|    290|        match_set_ct_ipv6_dst_masked(match, &value->ipv6, &mask->ipv6);
 2701|    290|        break;
 2702|       |
 2703|    237|    case MFF_CT_TP_SRC:
  ------------------
  |  Branch (2703:5): [True: 237, False: 65.6k]
  ------------------
 2704|    237|        match_set_ct_tp_src_masked(match, value->be16, mask->be16);
 2705|    237|        break;
 2706|       |
 2707|    264|    case MFF_CT_TP_DST:
  ------------------
  |  Branch (2707:5): [True: 264, False: 65.6k]
  ------------------
 2708|    264|        match_set_ct_tp_dst_masked(match, value->be16, mask->be16);
 2709|    264|        break;
 2710|       |
 2711|    202|    case MFF_ETH_DST:
  ------------------
  |  Branch (2711:5): [True: 202, False: 65.6k]
  ------------------
 2712|    202|        match_set_dl_dst_masked(match, value->mac, mask->mac);
 2713|    202|        break;
 2714|       |
 2715|    545|    case MFF_ETH_SRC:
  ------------------
  |  Branch (2715:5): [True: 545, False: 65.3k]
  ------------------
 2716|    545|        match_set_dl_src_masked(match, value->mac, mask->mac);
 2717|    545|        break;
 2718|       |
 2719|    532|    case MFF_ARP_SHA:
  ------------------
  |  Branch (2719:5): [True: 532, False: 65.3k]
  ------------------
 2720|  1.00k|    case MFF_ND_SLL:
  ------------------
  |  Branch (2720:5): [True: 470, False: 65.4k]
  ------------------
 2721|  1.00k|        match_set_arp_sha_masked(match, value->mac, mask->mac);
 2722|  1.00k|        break;
 2723|       |
 2724|    274|    case MFF_ARP_THA:
  ------------------
  |  Branch (2724:5): [True: 274, False: 65.6k]
  ------------------
 2725|    541|    case MFF_ND_TLL:
  ------------------
  |  Branch (2725:5): [True: 267, False: 65.6k]
  ------------------
 2726|    541|        match_set_arp_tha_masked(match, value->mac, mask->mac);
 2727|    541|        break;
 2728|       |
 2729|    199|    case MFF_VLAN_TCI:
  ------------------
  |  Branch (2729:5): [True: 199, False: 65.7k]
  ------------------
 2730|    199|        match_set_dl_tci_masked(match, value->be16, mask->be16);
 2731|    199|        break;
 2732|       |
 2733|    108|    case MFF_VLAN_VID:
  ------------------
  |  Branch (2733:5): [True: 108, False: 65.7k]
  ------------------
 2734|    108|        match_set_vlan_vid_masked(match, value->be16, mask->be16);
 2735|    108|        break;
 2736|       |
 2737|    276|    case MFF_IPV4_SRC:
  ------------------
  |  Branch (2737:5): [True: 276, False: 65.6k]
  ------------------
 2738|    276|        match_set_nw_src_masked(match, value->be32, mask->be32);
 2739|    276|        break;
 2740|       |
 2741|    532|    case MFF_IPV4_DST:
  ------------------
  |  Branch (2741:5): [True: 532, False: 65.3k]
  ------------------
 2742|    532|        match_set_nw_dst_masked(match, value->be32, mask->be32);
 2743|    532|        break;
 2744|       |
 2745|    324|    case MFF_IPV6_SRC:
  ------------------
  |  Branch (2745:5): [True: 324, False: 65.5k]
  ------------------
 2746|    324|        match_set_ipv6_src_masked(match, &value->ipv6, &mask->ipv6);
 2747|    324|        break;
 2748|       |
 2749|    607|    case MFF_IPV6_DST:
  ------------------
  |  Branch (2749:5): [True: 607, False: 65.2k]
  ------------------
 2750|    607|        match_set_ipv6_dst_masked(match, &value->ipv6, &mask->ipv6);
 2751|    607|        break;
 2752|       |
 2753|    458|    case MFF_IPV6_LABEL:
  ------------------
  |  Branch (2753:5): [True: 458, False: 65.4k]
  ------------------
 2754|    458|        if ((mask->be32 & htonl(IPV6_LABEL_MASK)) == htonl(IPV6_LABEL_MASK)) {
  ------------------
  |  Branch (2754:13): [True: 294, False: 164]
  ------------------
 2755|    294|            mf_set_value(mf, value, match, err_str);
 2756|    294|        } else {
 2757|    164|            match_set_ipv6_label_masked(match, value->be32, mask->be32);
 2758|    164|        }
 2759|    458|        break;
 2760|       |
 2761|    263|    case MFF_ND_TARGET:
  ------------------
  |  Branch (2761:5): [True: 263, False: 65.6k]
  ------------------
 2762|    263|        match_set_nd_target_masked(match, &value->ipv6, &mask->ipv6);
 2763|    263|        break;
 2764|       |
 2765|    334|    case MFF_IP_FRAG:
  ------------------
  |  Branch (2765:5): [True: 334, False: 65.5k]
  ------------------
 2766|    334|        match_set_nw_frag_masked(match, value->u8,
 2767|    334|                                 mask->u8 & FLOW_NW_FRAG_MASK);
  ------------------
  |  |   56|    334|#define FLOW_NW_FRAG_MASK  (FLOW_NW_FRAG_ANY | FLOW_NW_FRAG_LATER)
  |  |  ------------------
  |  |  |  |   54|    334|#define FLOW_NW_FRAG_ANY   (1 << 0) /* Set for any IP frag. */
  |  |  ------------------
  |  |               #define FLOW_NW_FRAG_MASK  (FLOW_NW_FRAG_ANY | FLOW_NW_FRAG_LATER)
  |  |  ------------------
  |  |  |  |   55|    334|#define FLOW_NW_FRAG_LATER (1 << 1) /* Set for IP frag with nonzero offset. */
  |  |  ------------------
  ------------------
 2768|    334|        break;
 2769|       |
 2770|    415|    case MFF_ARP_SPA:
  ------------------
  |  Branch (2770:5): [True: 415, False: 65.4k]
  ------------------
 2771|    415|        match_set_nw_src_masked(match, value->be32, mask->be32);
 2772|    415|        break;
 2773|       |
 2774|    929|    case MFF_ARP_TPA:
  ------------------
  |  Branch (2774:5): [True: 929, False: 64.9k]
  ------------------
 2775|    929|        match_set_nw_dst_masked(match, value->be32, mask->be32);
 2776|    929|        break;
 2777|       |
 2778|    448|    case MFF_TCP_SRC:
  ------------------
  |  Branch (2778:5): [True: 448, False: 65.4k]
  ------------------
 2779|    677|    case MFF_UDP_SRC:
  ------------------
  |  Branch (2779:5): [True: 229, False: 65.6k]
  ------------------
 2780|  1.04k|    case MFF_SCTP_SRC:
  ------------------
  |  Branch (2780:5): [True: 369, False: 65.5k]
  ------------------
 2781|  1.04k|        match_set_tp_src_masked(match, value->be16, mask->be16);
 2782|  1.04k|        break;
 2783|       |
 2784|    314|    case MFF_TCP_DST:
  ------------------
  |  Branch (2784:5): [True: 314, False: 65.5k]
  ------------------
 2785|    546|    case MFF_UDP_DST:
  ------------------
  |  Branch (2785:5): [True: 232, False: 65.6k]
  ------------------
 2786|    806|    case MFF_SCTP_DST:
  ------------------
  |  Branch (2786:5): [True: 260, False: 65.6k]
  ------------------
 2787|    806|        match_set_tp_dst_masked(match, value->be16, mask->be16);
 2788|    806|        break;
 2789|       |
 2790|    397|    case MFF_TCP_FLAGS:
  ------------------
  |  Branch (2790:5): [True: 397, False: 65.5k]
  ------------------
 2791|    397|        match_set_tcp_flags_masked(match, value->be16, mask->be16);
 2792|    397|        break;
 2793|       |
 2794|     31|    case MFF_NSH_FLAGS:
  ------------------
  |  Branch (2794:5): [True: 31, False: 65.8k]
  ------------------
 2795|     31|        MATCH_SET_FIELD_MASKED(match, nsh.flags, value->u8, mask->u8);
  ------------------
  |  |   50|     31|    do {                                                      \
  |  |   51|     31|        (match)->wc.masks.field = (msk);                      \
  |  |   52|     31|        (match)->flow.field = (value) & (msk);                \
  |  |   53|     31|    } while (0)
  |  |  ------------------
  |  |  |  Branch (53:14): [Folded, False: 31]
  |  |  ------------------
  ------------------
 2796|     31|        break;
 2797|    362|    case MFF_NSH_TTL:
  ------------------
  |  Branch (2797:5): [True: 362, False: 65.5k]
  ------------------
 2798|    362|        MATCH_SET_FIELD_MASKED(match, nsh.ttl, value->u8, mask->u8);
  ------------------
  |  |   50|    362|    do {                                                      \
  |  |   51|    362|        (match)->wc.masks.field = (msk);                      \
  |  |   52|    362|        (match)->flow.field = (value) & (msk);                \
  |  |   53|    362|    } while (0)
  |  |  ------------------
  |  |  |  Branch (53:14): [Folded, False: 362]
  |  |  ------------------
  ------------------
 2799|    362|        break;
 2800|    206|    case MFF_NSH_MDTYPE:
  ------------------
  |  Branch (2800:5): [True: 206, False: 65.6k]
  ------------------
 2801|    206|        MATCH_SET_FIELD_MASKED(match, nsh.mdtype, value->u8, mask->u8);
  ------------------
  |  |   50|    206|    do {                                                      \
  |  |   51|    206|        (match)->wc.masks.field = (msk);                      \
  |  |   52|    206|        (match)->flow.field = (value) & (msk);                \
  |  |   53|    206|    } while (0)
  |  |  ------------------
  |  |  |  Branch (53:14): [Folded, False: 206]
  |  |  ------------------
  ------------------
 2802|    206|        break;
 2803|    228|    case MFF_NSH_NP:
  ------------------
  |  Branch (2803:5): [True: 228, False: 65.6k]
  ------------------
 2804|    228|        MATCH_SET_FIELD_MASKED(match, nsh.np, value->u8, mask->u8);
  ------------------
  |  |   50|    228|    do {                                                      \
  |  |   51|    228|        (match)->wc.masks.field = (msk);                      \
  |  |   52|    228|        (match)->flow.field = (value) & (msk);                \
  |  |   53|    228|    } while (0)
  |  |  ------------------
  |  |  |  Branch (53:14): [Folded, False: 228]
  |  |  ------------------
  ------------------
 2805|    228|        break;
 2806|    723|    case MFF_NSH_SPI:
  ------------------
  |  Branch (2806:5): [True: 723, False: 65.1k]
  ------------------
 2807|    723|        match->wc.masks.nsh.path_hdr |= mask->be32;
 2808|    723|        nsh_path_hdr_set_spi(&match->flow.nsh.path_hdr,
 2809|    723|                             value->be32 & mask->be32);
 2810|    723|        break;
 2811|    299|    case MFF_NSH_SI:
  ------------------
  |  Branch (2811:5): [True: 299, False: 65.6k]
  ------------------
 2812|    299|        match->wc.masks.nsh.path_hdr |= htonl(mask->u8);
 2813|    299|        nsh_path_hdr_set_si(&match->flow.nsh.path_hdr,
 2814|    299|                             value->u8 & mask->u8);
 2815|    299|        break;
 2816|  1.42k|    case MFF_NSH_C1:
  ------------------
  |  Branch (2816:5): [True: 1.42k, False: 64.4k]
  ------------------
 2817|  1.86k|    case MFF_NSH_C2:
  ------------------
  |  Branch (2817:5): [True: 445, False: 65.4k]
  ------------------
 2818|  2.08k|    case MFF_NSH_C3:
  ------------------
  |  Branch (2818:5): [True: 220, False: 65.6k]
  ------------------
 2819|  2.36k|    case MFF_NSH_C4:
  ------------------
  |  Branch (2819:5): [True: 279, False: 65.6k]
  ------------------
 2820|  2.36k|        MATCH_SET_FIELD_MASKED(match, nsh.context[mf->id - MFF_NSH_C1],
  ------------------
  |  |   50|  2.36k|    do {                                                      \
  |  |   51|  2.36k|        (match)->wc.masks.field = (msk);                      \
  |  |   52|  2.36k|        (match)->flow.field = (value) & (msk);                \
  |  |   53|  2.36k|    } while (0)
  |  |  ------------------
  |  |  |  Branch (53:14): [Folded, False: 2.36k]
  |  |  ------------------
  ------------------
 2821|  2.36k|                               value->be32, mask->be32);
 2822|  2.36k|        break;
 2823|       |
 2824|      0|    case MFF_N_IDS:
  ------------------
  |  Branch (2824:5): [True: 0, False: 65.8k]
  ------------------
 2825|      0|    default:
  ------------------
  |  Branch (2825:5): [True: 0, False: 65.8k]
  ------------------
 2826|      0|        OVS_NOT_REACHED();
  ------------------
  |  |  107|      0|#define OVS_NOT_REACHED() abort()
  ------------------
 2827|  65.8k|    }
 2828|       |
 2829|  59.8k|    return ((mf->usable_protocols_bitwise == mf->usable_protocols_cidr
  ------------------
  |  Branch (2829:14): [True: 57.7k, False: 2.15k]
  ------------------
 2830|  2.15k|             || ip_is_cidr(mask->be32))
  ------------------
  |  Branch (2830:17): [True: 349, False: 1.80k]
  ------------------
 2831|  59.8k|            ? mf->usable_protocols_cidr
 2832|  59.8k|            : mf->usable_protocols_bitwise);
 2833|  65.8k|}
mf_check_src:
 2948|  52.6k|{
 2949|  52.6k|    return mf_check__(sf, match, "source");
 2950|  52.6k|}
mf_check_dst:
 2957|  3.17k|{
 2958|  3.17k|    int error = mf_check__(sf, match, "destination");
 2959|  3.17k|    if (!error && !sf->field->writable) {
  ------------------
  |  Branch (2959:9): [True: 3.00k, False: 166]
  |  Branch (2959:19): [True: 1, False: 3.00k]
  ------------------
 2960|      1|        VLOG_WARN_RL(&rl, "destination field %s is not writable",
  ------------------
  |  |  224|      1|#define VLOG_WARN_RL(RL, ...) VLOG_RL(RL, VLL_WARN, __VA_ARGS__)
  |  |  ------------------
  |  |  |  |  287|      1|    do {                                                                \
  |  |  |  |  288|      1|        enum vlog_level level__ = LEVEL;                                \
  |  |  |  |  289|      1|        if (this_module.min_level >= level__) {                         \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (289:13): [True: 0, False: 1]
  |  |  |  |  ------------------
  |  |  |  |  290|      0|            vlog_rate_limit(&this_module, level__, RL, __VA_ARGS__);    \
  |  |  |  |  291|      0|        }                                                               \
  |  |  |  |  292|      1|    } while (0)
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (292:14): [Folded, False: 1]
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 2961|      1|                     sf->field->name);
 2962|      1|        return OFPERR_OFPBAC_BAD_SET_ARGUMENT;
 2963|      1|    }
 2964|  3.17k|    return error;
 2965|  3.17k|}
mf_get:
 2972|   107k|{
 2973|   107k|    mf_get_value(mf, &match->flow, value);
 2974|   107k|    mf_get_mask(mf, &match->wc, mask);
 2975|   107k|}
mf_parse:
 3231|   159k|{
 3232|   159k|    char *error;
 3233|       |
 3234|   159k|    if (!strcmp(s, "*")) {
  ------------------
  |  Branch (3234:9): [True: 34.6k, False: 124k]
  ------------------
 3235|  34.6k|        memset(value, 0, mf->n_bytes);
 3236|  34.6k|        memset(mask, 0, mf->n_bytes);
 3237|  34.6k|        return NULL;
 3238|  34.6k|    }
 3239|       |
 3240|   124k|    switch (mf->string) {
 3241|  21.3k|    case MFS_DECIMAL:
  ------------------
  |  Branch (3241:5): [True: 21.3k, False: 103k]
  ------------------
 3242|   114k|    case MFS_HEXADECIMAL:
  ------------------
  |  Branch (3242:5): [True: 92.7k, False: 31.9k]
  ------------------
 3243|   114k|        error = mf_from_integer_string(mf, s,
 3244|   114k|                                       (uint8_t *) value, (uint8_t *) mask);
 3245|   114k|        break;
 3246|       |
 3247|  1.65k|    case MFS_CT_STATE:
  ------------------
  |  Branch (3247:5): [True: 1.65k, False: 123k]
  ------------------
 3248|  1.65k|        ovs_assert(mf->n_bytes == sizeof(ovs_be32));
  ------------------
  |  |   62|  1.65k|#define ovs_assert ovs_ignore
  ------------------
 3249|  1.65k|        error = mf_from_ct_state_string(s, &value->be32, &mask->be32);
 3250|  1.65k|        break;
 3251|       |
 3252|    577|    case MFS_ETHERNET:
  ------------------
  |  Branch (3252:5): [True: 577, False: 124k]
  ------------------
 3253|    577|        error = mf_from_ethernet_string(mf, s, &value->mac, &mask->mac);
 3254|    577|        break;
 3255|       |
 3256|  1.68k|    case MFS_IPV4:
  ------------------
  |  Branch (3256:5): [True: 1.68k, False: 123k]
  ------------------
 3257|  1.68k|        error = mf_from_ipv4_string(mf, s, &value->be32, &mask->be32);
 3258|  1.68k|        break;
 3259|       |
 3260|  2.74k|    case MFS_IPV6:
  ------------------
  |  Branch (3260:5): [True: 2.74k, False: 121k]
  ------------------
 3261|  2.74k|        error = mf_from_ipv6_string(mf, s, &value->ipv6, &mask->ipv6);
 3262|  2.74k|        break;
 3263|       |
 3264|    575|    case MFS_OFP_PORT:
  ------------------
  |  Branch (3264:5): [True: 575, False: 124k]
  ------------------
 3265|    575|        error = mf_from_ofp_port_string(mf, s, port_map,
 3266|    575|                                        &value->be16, &mask->be16);
 3267|    575|        break;
 3268|       |
 3269|    361|    case MFS_OFP_PORT_OXM:
  ------------------
  |  Branch (3269:5): [True: 361, False: 124k]
  ------------------
 3270|    361|        error = mf_from_ofp_port_string32(mf, s, port_map,
 3271|    361|                                          &value->be32, &mask->be32);
 3272|    361|        break;
 3273|       |
 3274|    340|    case MFS_FRAG:
  ------------------
  |  Branch (3274:5): [True: 340, False: 124k]
  ------------------
 3275|    340|        error = mf_from_frag_string(s, &value->u8, &mask->u8);
 3276|    340|        break;
 3277|       |
 3278|  1.01k|    case MFS_TNL_FLAGS:
  ------------------
  |  Branch (3278:5): [True: 1.01k, False: 123k]
  ------------------
 3279|  1.01k|        ovs_assert(mf->n_bytes == sizeof(ovs_be16));
  ------------------
  |  |   62|  1.01k|#define ovs_assert ovs_ignore
  ------------------
 3280|  1.01k|        error = mf_from_tun_flags_string(s, &value->be16, &mask->be16);
 3281|  1.01k|        break;
 3282|       |
 3283|  1.01k|    case MFS_TCP_FLAGS:
  ------------------
  |  Branch (3283:5): [True: 1.01k, False: 123k]
  ------------------
 3284|  1.01k|        ovs_assert(mf->n_bytes == sizeof(ovs_be16));
  ------------------
  |  |   62|  1.01k|#define ovs_assert ovs_ignore
  ------------------
 3285|  1.01k|        error = mf_from_tcp_flags_string(s, &value->be16, &mask->be16);
 3286|  1.01k|        break;
 3287|       |
 3288|    568|    case MFS_PACKET_TYPE:
  ------------------
  |  Branch (3288:5): [True: 568, False: 124k]
  ------------------
 3289|    568|        ovs_assert(mf->n_bytes == sizeof(ovs_be32));
  ------------------
  |  |   62|    568|#define ovs_assert ovs_ignore
  ------------------
 3290|    568|        error = mf_from_packet_type_string(s, &value->be32);
 3291|    568|        mask->be32 = OVS_BE32_MAX;
  ------------------
  |  |   43|    568|#define OVS_BE32_MAX ((OVS_FORCE ovs_be32) 0xffffffff)
  ------------------
 3292|    568|        break;
 3293|       |
 3294|      0|    default:
  ------------------
  |  Branch (3294:5): [True: 0, False: 124k]
  ------------------
 3295|      0|        OVS_NOT_REACHED();
  ------------------
  |  |  107|      0|#define OVS_NOT_REACHED() abort()
  ------------------
 3296|   124k|    }
 3297|       |
 3298|   124k|    if (!error && !mf_is_mask_valid(mf, mask)) {
  ------------------
  |  Branch (3298:9): [True: 124k, False: 711]
  |  Branch (3298:19): [True: 4, False: 124k]
  ------------------
 3299|      4|        error = xasprintf("%s: invalid mask for field %s", s, mf->name);
 3300|      4|    }
 3301|   124k|    return error;
 3302|   124k|}
mf_parse_value:
 3309|  32.4k|{
 3310|  32.4k|    union mf_value mask;
 3311|  32.4k|    char *error;
 3312|       |
 3313|  32.4k|    error = mf_parse(mf, s, port_map, value, &mask);
 3314|  32.4k|    if (error) {
  ------------------
  |  Branch (3314:9): [True: 19, False: 32.4k]
  ------------------
 3315|     19|        return error;
 3316|     19|    }
 3317|       |
 3318|  32.4k|    if (!is_all_ones((const uint8_t *) &mask, mf->n_bytes)) {
  ------------------
  |  Branch (3318:9): [True: 1, False: 32.4k]
  ------------------
 3319|      1|        return xasprintf("%s: wildcards not allowed here", s);
 3320|      1|    }
 3321|  32.4k|    return NULL;
 3322|  32.4k|}
mf_format:
 3401|    115|{
 3402|    115|    if (mask) {
  ------------------
  |  Branch (3402:9): [True: 0, False: 115]
  ------------------
 3403|      0|        if (is_all_zeros(mask, mf->n_bytes)) {
  ------------------
  |  Branch (3403:13): [True: 0, False: 0]
  ------------------
 3404|      0|            ds_put_cstr(s, "ANY");
 3405|      0|            return;
 3406|      0|        } else if (is_all_ones(mask, mf->n_bytes)) {
  ------------------
  |  Branch (3406:20): [True: 0, False: 0]
  ------------------
 3407|      0|            mask = NULL;
 3408|      0|        }
 3409|      0|    }
 3410|       |
 3411|    115|    switch (mf->string) {
 3412|      9|    case MFS_OFP_PORT_OXM:
  ------------------
  |  Branch (3412:5): [True: 9, False: 106]
  ------------------
 3413|      9|        if (!mask) {
  ------------------
  |  Branch (3413:13): [True: 9, False: 0]
  ------------------
 3414|      9|            ofp_port_t port;
 3415|      9|            ofputil_port_from_ofp11(value->be32, &port);
 3416|      9|            ofputil_format_port(port, port_map, s);
 3417|      9|            break;
 3418|      9|        }
 3419|       |        /* fall through */
 3420|     24|    case MFS_OFP_PORT:
  ------------------
  |  Branch (3420:5): [True: 24, False: 91]
  ------------------
 3421|     24|        if (!mask) {
  ------------------
  |  Branch (3421:13): [True: 24, False: 0]
  ------------------
 3422|     24|            ofputil_format_port(u16_to_ofp(ntohs(value->be16)), port_map, s);
 3423|     24|            break;
 3424|     24|        }
 3425|       |        /* fall through */
 3426|      4|    case MFS_DECIMAL:
  ------------------
  |  Branch (3426:5): [True: 4, False: 111]
  ------------------
 3427|     29|    case MFS_HEXADECIMAL:
  ------------------
  |  Branch (3427:5): [True: 25, False: 90]
  ------------------
 3428|     29|        mf_format_integer_string(mf, (uint8_t *) value, (uint8_t *) mask, s);
 3429|     29|        break;
 3430|       |
 3431|      1|    case MFS_CT_STATE:
  ------------------
  |  Branch (3431:5): [True: 1, False: 114]
  ------------------
 3432|      1|        mf_format_ct_state_string(value->be32,
 3433|      1|                                  mask ? mask->be32 : OVS_BE32_MAX, s);
  ------------------
  |  |   43|      1|#define OVS_BE32_MAX ((OVS_FORCE ovs_be32) 0xffffffff)
  ------------------
  |  Branch (3433:35): [True: 0, False: 1]
  ------------------
 3434|      1|        break;
 3435|       |
 3436|      1|    case MFS_ETHERNET:
  ------------------
  |  Branch (3436:5): [True: 1, False: 114]
  ------------------
 3437|      1|        eth_format_masked(value->mac, mask ? &mask->mac : NULL, s);
  ------------------
  |  Branch (3437:39): [True: 0, False: 1]
  ------------------
 3438|      1|        break;
 3439|       |
 3440|      1|    case MFS_IPV4:
  ------------------
  |  Branch (3440:5): [True: 1, False: 114]
  ------------------
 3441|      1|        ip_format_masked(value->be32, mask ? mask->be32 : OVS_BE32_MAX, s);
  ------------------
  |  |   43|      1|#define OVS_BE32_MAX ((OVS_FORCE ovs_be32) 0xffffffff)
  ------------------
  |  Branch (3441:39): [True: 0, False: 1]
  ------------------
 3442|      1|        break;
 3443|       |
 3444|      1|    case MFS_IPV6:
  ------------------
  |  Branch (3444:5): [True: 1, False: 114]
  ------------------
 3445|      1|        ipv6_format_masked(&value->ipv6, mask ? &mask->ipv6 : NULL, s);
  ------------------
  |  Branch (3445:42): [True: 0, False: 1]
  ------------------
 3446|      1|        break;
 3447|       |
 3448|      3|    case MFS_FRAG:
  ------------------
  |  Branch (3448:5): [True: 3, False: 112]
  ------------------
 3449|      3|        mf_format_frag_string(value->u8, mask ? mask->u8 : UINT8_MAX, s);
  ------------------
  |  Branch (3449:42): [True: 0, False: 3]
  ------------------
 3450|      3|        break;
 3451|       |
 3452|     15|    case MFS_TNL_FLAGS:
  ------------------
  |  Branch (3452:5): [True: 15, False: 100]
  ------------------
 3453|     15|        mf_format_tnl_flags_string(value->be16,
 3454|     15|                                   mask ? mask->be16 : OVS_BE16_MAX, s);
  ------------------
  |  |   42|     30|#define OVS_BE16_MAX ((OVS_FORCE ovs_be16) 0xffff)
  ------------------
  |  Branch (3454:36): [True: 0, False: 15]
  ------------------
 3455|     15|        break;
 3456|       |
 3457|      6|    case MFS_TCP_FLAGS:
  ------------------
  |  Branch (3457:5): [True: 6, False: 109]
  ------------------
 3458|      6|        mf_format_tcp_flags_string(value->be16,
 3459|      6|                                   mask ? mask->be16 : OVS_BE16_MAX, s);
  ------------------
  |  |   42|     12|#define OVS_BE16_MAX ((OVS_FORCE ovs_be16) 0xffff)
  ------------------
  |  Branch (3459:36): [True: 0, False: 6]
  ------------------
 3460|      6|        break;
 3461|       |
 3462|     25|    case MFS_PACKET_TYPE:
  ------------------
  |  Branch (3462:5): [True: 25, False: 90]
  ------------------
 3463|     25|        mf_format_packet_type_string(value->be32,
 3464|     25|                                     mask ? mask->be32 : OVS_BE32_MAX, s);
  ------------------
  |  |   43|     25|#define OVS_BE32_MAX ((OVS_FORCE ovs_be32) 0xffffffff)
  ------------------
  |  Branch (3464:38): [True: 0, False: 25]
  ------------------
 3465|     25|        break;
 3466|       |
 3467|      0|    default:
  ------------------
  |  Branch (3467:5): [True: 0, False: 115]
  ------------------
 3468|      0|        OVS_NOT_REACHED();
  ------------------
  |  |  107|      0|#define OVS_NOT_REACHED() abort()
  ------------------
 3469|    115|    }
 3470|    115|}
mf_write_subfield_value:
 3507|  47.1k|{
 3508|  47.1k|    const struct mf_field *field = sf->field;
 3509|  47.1k|    union mf_value value, mask;
 3510|  47.1k|    unsigned int size = DIV_ROUND_UP(sf->n_bits, 8);
  ------------------
  |  |  300|  47.1k|#define DIV_ROUND_UP(X, Y) (((X) + ((Y) - 1)) / (Y))
  ------------------
 3511|       |
 3512|  47.1k|    mf_get(field, match, &value, &mask);
 3513|  47.1k|    bitwise_copy(src, size, 0, &value, field->n_bytes, sf->ofs, sf->n_bits);
 3514|  47.1k|    bitwise_one (              &mask,  field->n_bytes, sf->ofs, sf->n_bits);
 3515|       |    mf_set(field, &value, &mask, match, NULL);
 3516|  47.1k|}
meta-flow.c:nxm_init:
  121|   380k|{
  122|       |    static pthread_once_t once = PTHREAD_ONCE_INIT;
  123|   380k|    pthread_once(&once, nxm_do_init);
  124|   380k|}
meta-flow.c:nxm_do_init:
  103|      1|{
  104|      1|    int i;
  105|       |
  106|      1|    shash_init(&mf_by_name);
  107|    212|    for (i = 0; i < MFF_N_IDS; i++) {
  ------------------
  |  Branch (107:17): [True: 211, False: 1]
  ------------------
  108|    211|        const struct mf_field *mf = &mf_fields[i];
  109|       |
  110|    211|        ovs_assert(mf->id == i); /* Fields must be in the enum order. */
  ------------------
  |  |   62|    211|#define ovs_assert ovs_ignore
  ------------------
  111|       |
  112|    211|        shash_add_once(&mf_by_name, mf->name, mf);
  113|    211|        if (mf->extra_name) {
  ------------------
  |  Branch (113:13): [True: 17, False: 194]
  ------------------
  114|     17|            shash_add_once(&mf_by_name, mf->extra_name, mf);
  115|     17|        }
  116|    211|    }
  117|      1|}
meta-flow.c:mf_are_prereqs_ok__:
  444|  81.2k|{
  445|  81.2k|    ovs_be16 dl_type = get_dl_type(flow);
  446|       |
  447|  81.2k|    switch (mf->prereqs) {
  ------------------
  |  Branch (447:13): [True: 81.2k, False: 0]
  ------------------
  448|  68.3k|    case MFP_NONE:
  ------------------
  |  Branch (448:5): [True: 68.3k, False: 12.8k]
  ------------------
  449|  68.3k|        return true;
  450|  3.02k|    case MFP_ETHERNET:
  ------------------
  |  Branch (450:5): [True: 3.02k, False: 78.1k]
  ------------------
  451|  3.02k|        return is_ethernet(flow, wc);
  452|    309|    case MFP_ARP:
  ------------------
  |  Branch (452:5): [True: 309, False: 80.9k]
  ------------------
  453|    309|        return (dl_type == htons(ETH_TYPE_ARP) ||
  ------------------
  |  Branch (453:17): [True: 227, False: 82]
  ------------------
  454|     82|                dl_type == htons(ETH_TYPE_RARP));
  ------------------
  |  Branch (454:17): [True: 50, False: 32]
  ------------------
  455|    529|    case MFP_IPV4:
  ------------------
  |  Branch (455:5): [True: 529, False: 80.6k]
  ------------------
  456|    529|        return dl_type == htons(ETH_TYPE_IP);
  457|    458|    case MFP_IPV6:
  ------------------
  |  Branch (457:5): [True: 458, False: 80.7k]
  ------------------
  458|    458|        return dl_type == htons(ETH_TYPE_IPV6);
  459|    416|    case MFP_VLAN_VID:
  ------------------
  |  Branch (459:5): [True: 416, False: 80.7k]
  ------------------
  460|    416|        return is_vlan(flow, wc);
  461|    439|    case MFP_MPLS:
  ------------------
  |  Branch (461:5): [True: 439, False: 80.7k]
  ------------------
  462|    439|        return eth_type_mpls(dl_type);
  463|  1.29k|    case MFP_IP_ANY:
  ------------------
  |  Branch (463:5): [True: 1.29k, False: 79.9k]
  ------------------
  464|  1.29k|        return is_ip_any(flow);
  465|    756|    case MFP_NSH:
  ------------------
  |  Branch (465:5): [True: 756, False: 80.4k]
  ------------------
  466|    756|        return dl_type == htons(ETH_TYPE_NSH);
  467|    458|    case MFP_CT_VALID:
  ------------------
  |  Branch (467:5): [True: 458, False: 80.7k]
  ------------------
  468|    458|        return is_ct_valid(flow, mask, wc);
  469|  1.42k|    case MFP_TCP:
  ------------------
  |  Branch (469:5): [True: 1.42k, False: 79.7k]
  ------------------
  470|       |        /* Matching !FRAG_LATER is not enforced (mask is not checked). */
  471|  1.42k|        return is_tcp(flow, wc) && !(flow->nw_frag & FLOW_NW_FRAG_LATER);
  ------------------
  |  |   55|  1.39k|#define FLOW_NW_FRAG_LATER (1 << 1) /* Set for IP frag with nonzero offset. */
  ------------------
  |  Branch (471:16): [True: 1.39k, False: 27]
  |  Branch (471:36): [True: 1.39k, False: 0]
  ------------------
  472|    756|    case MFP_UDP:
  ------------------
  |  Branch (472:5): [True: 756, False: 80.4k]
  ------------------
  473|    756|        return is_udp(flow, wc) && !(flow->nw_frag & FLOW_NW_FRAG_LATER);
  ------------------
  |  |   55|    723|#define FLOW_NW_FRAG_LATER (1 << 1) /* Set for IP frag with nonzero offset. */
  ------------------
  |  Branch (473:16): [True: 723, False: 33]
  |  Branch (473:36): [True: 723, False: 0]
  ------------------
  474|    480|    case MFP_SCTP:
  ------------------
  |  Branch (474:5): [True: 480, False: 80.7k]
  ------------------
  475|    480|        return is_sctp(flow, wc) && !(flow->nw_frag & FLOW_NW_FRAG_LATER);
  ------------------
  |  |   55|    460|#define FLOW_NW_FRAG_LATER (1 << 1) /* Set for IP frag with nonzero offset. */
  ------------------
  |  Branch (475:16): [True: 460, False: 20]
  |  Branch (475:37): [True: 460, False: 0]
  ------------------
  476|    460|    case MFP_ICMPV4:
  ------------------
  |  Branch (476:5): [True: 460, False: 80.7k]
  ------------------
  477|    460|        return is_icmpv4(flow, wc);
  478|    460|    case MFP_ICMPV6:
  ------------------
  |  Branch (478:5): [True: 460, False: 80.7k]
  ------------------
  479|    460|        return is_icmpv6(flow, wc);
  480|    593|    case MFP_ND:
  ------------------
  |  Branch (480:5): [True: 593, False: 80.6k]
  ------------------
  481|    593|        return is_nd(flow, wc);
  482|    434|    case MFP_ND_SOLICIT:
  ------------------
  |  Branch (482:5): [True: 434, False: 80.7k]
  ------------------
  483|    434|        return is_nd(flow, wc) && flow->tp_src == htons(ND_NEIGHBOR_SOLICIT);
  ------------------
  |  Branch (483:16): [True: 404, False: 30]
  |  Branch (483:35): [True: 403, False: 1]
  ------------------
  484|    533|    case MFP_ND_ADVERT:
  ------------------
  |  Branch (484:5): [True: 533, False: 80.6k]
  ------------------
  485|    533|        return is_nd(flow, wc) && flow->tp_src == htons(ND_NEIGHBOR_ADVERT);
  ------------------
  |  Branch (485:16): [True: 482, False: 51]
  |  Branch (485:35): [True: 481, False: 1]
  ------------------
  486|  81.2k|    }
  487|       |
  488|      0|    OVS_NOT_REACHED();
  ------------------
  |  |  107|      0|#define OVS_NOT_REACHED() abort()
  ------------------
  489|  81.2k|}
meta-flow.c:field_len:
 1371|  77.8k|{
 1372|  77.8k|    const uint8_t *value = &value_->u8;
 1373|  77.8k|    int i;
 1374|       |
 1375|  77.8k|    if (!mf->variable_len) {
  ------------------
  |  Branch (1375:9): [True: 9.67k, False: 68.2k]
  ------------------
 1376|  9.67k|        return mf->n_bytes;
 1377|  9.67k|    }
 1378|       |
 1379|  68.2k|    if (!value) {
  ------------------
  |  Branch (1379:9): [True: 0, False: 68.2k]
  ------------------
 1380|      0|        return 0;
 1381|      0|    }
 1382|       |
 1383|  8.38M|    for (i = 0; i < mf->n_bytes; i++) {
  ------------------
  |  Branch (1383:17): [True: 8.35M, False: 29.0k]
  ------------------
 1384|  8.35M|        if (value[i] != 0) {
  ------------------
  |  Branch (1384:13): [True: 39.2k, False: 8.31M]
  ------------------
 1385|  39.2k|            break;
 1386|  39.2k|        }
 1387|  8.35M|    }
 1388|       |
 1389|  68.2k|    return mf->n_bytes - i;
 1390|  68.2k|}
meta-flow.c:mf_check__:
 2838|  55.8k|{
 2839|  55.8k|    if (!sf->field) {
  ------------------
  |  Branch (2839:9): [True: 0, False: 55.8k]
  ------------------
 2840|      0|        VLOG_WARN_RL(&rl, "unknown %s field", type);
  ------------------
  |  |  224|      0|#define VLOG_WARN_RL(RL, ...) VLOG_RL(RL, VLL_WARN, __VA_ARGS__)
  |  |  ------------------
  |  |  |  |  287|      0|    do {                                                                \
  |  |  |  |  288|      0|        enum vlog_level level__ = LEVEL;                                \
  |  |  |  |  289|      0|        if (this_module.min_level >= level__) {                         \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (289:13): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |  290|      0|            vlog_rate_limit(&this_module, level__, RL, __VA_ARGS__);    \
  |  |  |  |  291|      0|        }                                                               \
  |  |  |  |  292|      0|    } while (0)
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (292:14): [Folded, False: 0]
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 2841|      0|        return OFPERR_OFPBAC_BAD_SET_TYPE;
 2842|  55.8k|    } else if (!sf->n_bits) {
  ------------------
  |  Branch (2842:16): [True: 0, False: 55.8k]
  ------------------
 2843|      0|        VLOG_WARN_RL(&rl, "zero bit %s field %s", type, sf->field->name);
  ------------------
  |  |  224|      0|#define VLOG_WARN_RL(RL, ...) VLOG_RL(RL, VLL_WARN, __VA_ARGS__)
  |  |  ------------------
  |  |  |  |  287|      0|    do {                                                                \
  |  |  |  |  288|      0|        enum vlog_level level__ = LEVEL;                                \
  |  |  |  |  289|      0|        if (this_module.min_level >= level__) {                         \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (289:13): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |  290|      0|            vlog_rate_limit(&this_module, level__, RL, __VA_ARGS__);    \
  |  |  |  |  291|      0|        }                                                               \
  |  |  |  |  292|      0|    } while (0)
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (292:14): [Folded, False: 0]
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 2844|      0|        return OFPERR_OFPBAC_BAD_SET_LEN;
 2845|  55.8k|    } else if (sf->ofs >= sf->field->n_bits) {
  ------------------
  |  Branch (2845:16): [True: 0, False: 55.8k]
  ------------------
 2846|      0|        VLOG_WARN_RL(&rl, "bit offset %d exceeds %d-bit width of %s field %s",
  ------------------
  |  |  224|      0|#define VLOG_WARN_RL(RL, ...) VLOG_RL(RL, VLL_WARN, __VA_ARGS__)
  |  |  ------------------
  |  |  |  |  287|      0|    do {                                                                \
  |  |  |  |  288|      0|        enum vlog_level level__ = LEVEL;                                \
  |  |  |  |  289|      0|        if (this_module.min_level >= level__) {                         \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (289:13): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |  290|      0|            vlog_rate_limit(&this_module, level__, RL, __VA_ARGS__);    \
  |  |  |  |  291|      0|        }                                                               \
  |  |  |  |  292|      0|    } while (0)
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (292:14): [Folded, False: 0]
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 2847|      0|                     sf->ofs, sf->field->n_bits, type, sf->field->name);
 2848|      0|        return OFPERR_OFPBAC_BAD_SET_LEN;
 2849|  55.8k|    } else if (sf->ofs + sf->n_bits > sf->field->n_bits) {
  ------------------
  |  Branch (2849:16): [True: 0, False: 55.8k]
  ------------------
 2850|      0|        VLOG_WARN_RL(&rl, "bit offset %d and width %d exceeds %d-bit width "
  ------------------
  |  |  224|      0|#define VLOG_WARN_RL(RL, ...) VLOG_RL(RL, VLL_WARN, __VA_ARGS__)
  |  |  ------------------
  |  |  |  |  287|      0|    do {                                                                \
  |  |  |  |  288|      0|        enum vlog_level level__ = LEVEL;                                \
  |  |  |  |  289|      0|        if (this_module.min_level >= level__) {                         \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (289:13): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |  290|      0|            vlog_rate_limit(&this_module, level__, RL, __VA_ARGS__);    \
  |  |  |  |  291|      0|        }                                                               \
  |  |  |  |  292|      0|    } while (0)
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (292:14): [Folded, False: 0]
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 2851|      0|                     "of %s field %s", sf->ofs, sf->n_bits,
 2852|      0|                     sf->field->n_bits, type, sf->field->name);
 2853|      0|        return OFPERR_OFPBAC_BAD_SET_LEN;
 2854|  55.8k|    } else if (match && !mf_are_match_prereqs_ok(sf->field, match)) {
  ------------------
  |  Branch (2854:16): [True: 55.8k, False: 0]
  |  Branch (2854:25): [True: 259, False: 55.5k]
  ------------------
 2855|    259|        VLOG_WARN_RL(&rl, "%s field %s lacks correct prerequisites",
  ------------------
  |  |  224|    259|#define VLOG_WARN_RL(RL, ...) VLOG_RL(RL, VLL_WARN, __VA_ARGS__)
  |  |  ------------------
  |  |  |  |  287|    259|    do {                                                                \
  |  |  |  |  288|    259|        enum vlog_level level__ = LEVEL;                                \
  |  |  |  |  289|    259|        if (this_module.min_level >= level__) {                         \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (289:13): [True: 0, False: 259]
  |  |  |  |  ------------------
  |  |  |  |  290|      0|            vlog_rate_limit(&this_module, level__, RL, __VA_ARGS__);    \
  |  |  |  |  291|      0|        }                                                               \
  |  |  |  |  292|    259|    } while (0)
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (292:14): [Folded, False: 259]
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 2856|    259|                     type, sf->field->name);
 2857|    259|        return OFPERR_OFPBAC_MATCH_INCONSISTENT;
 2858|  55.5k|    } else {
 2859|  55.5k|        return 0;
 2860|  55.5k|    }
 2861|  55.8k|}
meta-flow.c:mf_from_integer_string:
 2980|   114k|{
 2981|   114k|    const char *err_str;
 2982|   114k|    char *tail;
 2983|   114k|    int err;
 2984|       |
 2985|   114k|    err = parse_int_string(s, valuep, mf->n_bytes, &tail);
 2986|   114k|    if (err || (*tail != '\0' && *tail != '/')) {
  ------------------
  |  Branch (2986:9): [True: 85, False: 114k]
  |  Branch (2986:17): [True: 53.7k, False: 60.3k]
  |  Branch (2986:34): [True: 26, False: 53.7k]
  ------------------
 2987|    111|        err_str = "value";
 2988|    111|        goto syntax_error;
 2989|    111|    }
 2990|       |
 2991|   114k|    if (*tail == '/') {
  ------------------
  |  Branch (2991:9): [True: 53.7k, False: 60.3k]
  ------------------
 2992|  53.7k|        err = parse_int_string(tail + 1, maskp, mf->n_bytes, &tail);
 2993|  53.7k|        if (err || *tail != '\0') {
  ------------------
  |  Branch (2993:13): [True: 6, False: 53.7k]
  |  Branch (2993:20): [True: 6, False: 53.7k]
  ------------------
 2994|     12|            err_str = "mask";
 2995|     12|            goto syntax_error;
 2996|     12|        }
 2997|  60.3k|    } else {
 2998|  60.3k|        memset(maskp, 0xff, mf->n_bytes);
 2999|  60.3k|    }
 3000|       |
 3001|   114k|    return NULL;
 3002|       |
 3003|    123|syntax_error:
 3004|    123|    if (err == ERANGE) {
  ------------------
  |  Branch (3004:9): [True: 54, False: 69]
  ------------------
 3005|     54|        return xasprintf("%s: %s too large for %u-byte field %s",
 3006|     54|                         s, err_str, mf->n_bytes, mf->name);
 3007|     69|    } else {
 3008|     69|        return xasprintf("%s: bad syntax for %s %s", s, mf->name, err_str);
 3009|     69|    }
 3010|    123|}
meta-flow.c:mf_from_ct_state_string:
 3206|  1.65k|{
 3207|  1.65k|    int err;
 3208|  1.65k|    char *err_str;
 3209|  1.65k|    uint32_t flags, mask;
 3210|       |
 3211|  1.65k|    err = parse_flags(s, ct_state_to_string, '\0', "ct_state", &err_str,
 3212|  1.65k|                      &flags, CS_SUPPORTED_MASK, maskp ? &mask : NULL);
  ------------------
  |  Branch (3212:50): [True: 1.65k, False: 0]
  ------------------
 3213|  1.65k|    if (err < 0) {
  ------------------
  |  Branch (3213:9): [True: 152, False: 1.50k]
  ------------------
 3214|    152|        return err_str;
 3215|    152|    }
 3216|       |
 3217|  1.50k|    *flagsp = htonl(flags);
 3218|  1.50k|    if (maskp) {
  ------------------
  |  Branch (3218:9): [True: 1.50k, False: 0]
  ------------------
 3219|  1.50k|        *maskp = htonl(mask);
 3220|  1.50k|    }
 3221|       |
 3222|       |    return NULL;
 3223|  1.65k|}
meta-flow.c:mf_from_ethernet_string:
 3053|    577|{
 3054|    577|    int n;
 3055|       |
 3056|    577|    ovs_assert(mf->n_bytes == ETH_ADDR_LEN);
  ------------------
  |  |   62|    577|#define ovs_assert ovs_ignore
  ------------------
                  ovs_assert(mf->n_bytes == ETH_ADDR_LEN);
  ------------------
  |  |  205|    577|#define ETH_ADDR_LEN           6
  ------------------
 3057|       |
 3058|    577|    n = -1;
 3059|    577|    if (ovs_scan(s, ETH_ADDR_SCAN_FMT"%n", ETH_ADDR_SCAN_ARGS(*mac), &n)
  ------------------
  |  |  403|    577|#define ETH_ADDR_SCAN_FMT "%"SCNx8":%"SCNx8":%"SCNx8":%"SCNx8":%"SCNx8":%"SCNx8
  ------------------
                  if (ovs_scan(s, ETH_ADDR_SCAN_FMT"%n", ETH_ADDR_SCAN_ARGS(*mac), &n)
  ------------------
  |  |  405|    577|    &(EA).ea[0], &(EA).ea[1], &(EA).ea[2], &(EA).ea[3], &(EA).ea[4], &(EA).ea[5]
  ------------------
  |  Branch (3059:9): [True: 551, False: 26]
  ------------------
 3060|    551|        && n == strlen(s)) {
  ------------------
  |  Branch (3060:12): [True: 226, False: 325]
  ------------------
 3061|    226|        *mask = eth_addr_exact;
 3062|    226|        return NULL;
 3063|    226|    }
 3064|       |
 3065|    351|    n = -1;
 3066|    351|    if (ovs_scan(s, ETH_ADDR_SCAN_FMT"/"ETH_ADDR_SCAN_FMT"%n",
  ------------------
  |  |  403|    351|#define ETH_ADDR_SCAN_FMT "%"SCNx8":%"SCNx8":%"SCNx8":%"SCNx8":%"SCNx8":%"SCNx8
  ------------------
  |  Branch (3066:9): [True: 307, False: 44]
  ------------------
 3067|    351|                 ETH_ADDR_SCAN_ARGS(*mac), ETH_ADDR_SCAN_ARGS(*mask), &n)
  ------------------
  |  |  405|    351|    &(EA).ea[0], &(EA).ea[1], &(EA).ea[2], &(EA).ea[3], &(EA).ea[4], &(EA).ea[5]
  ------------------
                               ETH_ADDR_SCAN_ARGS(*mac), ETH_ADDR_SCAN_ARGS(*mask), &n)
  ------------------
  |  |  405|    351|    &(EA).ea[0], &(EA).ea[1], &(EA).ea[2], &(EA).ea[3], &(EA).ea[4], &(EA).ea[5]
  ------------------
 3068|    307|        && n == strlen(s)) {
  ------------------
  |  Branch (3068:12): [True: 275, False: 32]
  ------------------
 3069|    275|        return NULL;
 3070|    275|    }
 3071|       |
 3072|     76|    return xasprintf("%s: invalid Ethernet address", s);
 3073|    351|}
meta-flow.c:mf_from_ipv4_string:
 3078|  1.68k|{
 3079|  1.68k|    ovs_assert(mf->n_bytes == sizeof *ip);
  ------------------
  |  |   62|  1.68k|#define ovs_assert ovs_ignore
  ------------------
 3080|  1.68k|    return ip_parse_masked(s, ip, mask);
 3081|  1.68k|}
meta-flow.c:mf_from_ipv6_string:
 3086|  2.74k|{
 3087|  2.74k|    ovs_assert(mf->n_bytes == sizeof *ipv6);
  ------------------
  |  |   62|  2.74k|#define ovs_assert ovs_ignore
  ------------------
 3088|  2.74k|    return ipv6_parse_masked(s, ipv6, mask);
 3089|  2.74k|}
meta-flow.c:mf_from_ofp_port_string:
 3095|    575|{
 3096|    575|    ofp_port_t port;
 3097|       |
 3098|    575|    ovs_assert(mf->n_bytes == sizeof(ovs_be16));
  ------------------
  |  |   62|    575|#define ovs_assert ovs_ignore
  ------------------
 3099|       |
 3100|    575|    if (ofputil_port_from_string(s, port_map, &port)) {
  ------------------
  |  Branch (3100:9): [True: 573, False: 2]
  ------------------
 3101|    573|        *valuep = htons(ofp_to_u16(port));
 3102|    573|        *maskp = OVS_BE16_MAX;
  ------------------
  |  |   42|    573|#define OVS_BE16_MAX ((OVS_FORCE ovs_be16) 0xffff)
  ------------------
 3103|    573|        return NULL;
 3104|    573|    }
 3105|      2|    return xasprintf("%s: invalid or unknown port for %s", s, mf->name);
 3106|    575|}
meta-flow.c:mf_from_ofp_port_string32:
 3112|    361|{
 3113|    361|    ofp_port_t port;
 3114|       |
 3115|    361|    ovs_assert(mf->n_bytes == sizeof(ovs_be32));
  ------------------
  |  |   62|    361|#define ovs_assert ovs_ignore
  ------------------
 3116|    361|    if (ofputil_port_from_string(s, port_map, &port)) {
  ------------------
  |  Branch (3116:9): [True: 359, False: 2]
  ------------------
 3117|    359|        *valuep = ofputil_port_to_ofp11(port);
 3118|    359|        *maskp = OVS_BE32_MAX;
  ------------------
  |  |   43|    359|#define OVS_BE32_MAX ((OVS_FORCE ovs_be32) 0xffffffff)
  ------------------
 3119|    359|        return NULL;
 3120|    359|    }
 3121|      2|    return xasprintf("%s: port value out of range for %s", s, mf->name);
 3122|    361|}
meta-flow.c:mf_from_frag_string:
 3150|    340|{
 3151|    340|    const struct frag_handling *h;
 3152|       |
 3153|  1.39k|    for (h = all_frags; h < &all_frags[ARRAY_SIZE(all_frags)]; h++) {
  ------------------
  |  |  297|  1.39k|#define ARRAY_SIZE(ARRAY) __ARRAY_SIZE(ARRAY)
  |  |  ------------------
  |  |  |  |   46|  1.39k|    __builtin_choose_expr(__ARRAY_CHECK(ARRAY),			\
  |  |  |  |  ------------------
  |  |  |  |  |  |   41|  1.39k|    !__builtin_types_compatible_p(typeof(ARRAY), typeof(&ARRAY[0]))
  |  |  |  |  ------------------
  |  |  |  |   47|  1.39k|        __ARRAY_SIZE_NOCHECK(ARRAY), __ARRAY_FAIL(ARRAY))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|  1.39k|#define __ARRAY_SIZE_NOCHECK(ARRAY) (sizeof(ARRAY) / sizeof((ARRAY)[0]))
  |  |  |  |  ------------------
  |  |  |  |                       __ARRAY_SIZE_NOCHECK(ARRAY), __ARRAY_FAIL(ARRAY))
  |  |  |  |  ------------------
  |  |  |  |  |  |   44|  1.39k|#define __ARRAY_FAIL(ARRAY) (sizeof(char[-2*!__ARRAY_CHECK(ARRAY)]))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  |  Branch (3153:25): [True: 1.33k, False: 61]
  ------------------
 3154|  1.33k|        if (!strcasecmp(s, h->name)) {
  ------------------
  |  Branch (3154:13): [True: 279, False: 1.05k]
  ------------------
 3155|       |            /* We force the upper bits of the mask on to make mf_parse_value()
 3156|       |             * happy (otherwise it will never think it's an exact match.) */
 3157|    279|            *maskp = h->mask | ~FLOW_NW_FRAG_MASK;
  ------------------
  |  |   56|    279|#define FLOW_NW_FRAG_MASK  (FLOW_NW_FRAG_ANY | FLOW_NW_FRAG_LATER)
  |  |  ------------------
  |  |  |  |   54|    279|#define FLOW_NW_FRAG_ANY   (1 << 0) /* Set for any IP frag. */
  |  |  ------------------
  |  |               #define FLOW_NW_FRAG_MASK  (FLOW_NW_FRAG_ANY | FLOW_NW_FRAG_LATER)
  |  |  ------------------
  |  |  |  |   55|    279|#define FLOW_NW_FRAG_LATER (1 << 1) /* Set for IP frag with nonzero offset. */
  |  |  ------------------
  ------------------
 3158|    279|            *valuep = h->value;
 3159|    279|            return NULL;
 3160|    279|        }
 3161|  1.33k|    }
 3162|       |
 3163|     61|    return xasprintf("%s: unknown fragment type (valid types are \"no\", "
 3164|     61|                     "\"yes\", \"first\", \"later\", \"not_later\"", s);
 3165|    340|}
meta-flow.c:mf_from_tun_flags_string:
 3199|  1.01k|{
 3200|  1.01k|    return parse_mf_flags(s, flow_tun_flag_to_string, "tunnel", flagsp,
 3201|       |                          htons(FLOW_TNL_PUB_F_MASK), maskp);
 3202|  1.01k|}
meta-flow.c:parse_mf_flags:
 3171|  2.02k|{
 3172|  2.02k|    int err;
 3173|  2.02k|    char *err_str;
 3174|  2.02k|    uint32_t flags, mask;
 3175|       |
 3176|  2.02k|    err = parse_flags(s, bit_to_string, '\0', field_name, &err_str,
 3177|  2.02k|                      &flags, ntohs(allowed), maskp ? &mask : NULL);
  ------------------
  |  Branch (3177:47): [True: 2.02k, False: 0]
  ------------------
 3178|  2.02k|    if (err < 0) {
  ------------------
  |  Branch (3178:9): [True: 122, False: 1.90k]
  ------------------
 3179|    122|        return err_str;
 3180|    122|    }
 3181|       |
 3182|  1.90k|    *flagsp = htons(flags);
 3183|  1.90k|    if (maskp) {
  ------------------
  |  Branch (3183:9): [True: 1.90k, False: 0]
  ------------------
 3184|  1.90k|        *maskp = htons(mask);
 3185|  1.90k|    }
 3186|       |
 3187|       |    return NULL;
 3188|  2.02k|}
meta-flow.c:mf_from_tcp_flags_string:
 3192|  1.01k|{
 3193|  1.01k|    return parse_mf_flags(s, packet_tcp_flag_to_string, "TCP", flagsp,
 3194|       |                          TCP_FLAGS_BE16(OVS_BE16_MAX), maskp);
  ------------------
  |  |  905|  1.01k|#define TCP_FLAGS_BE16(tcp_ctl) ((tcp_ctl) & htons(0x0fff))
  ------------------
 3195|  1.01k|}
meta-flow.c:mf_from_packet_type_string:
 3014|    568|{
 3015|    568|    const char *err_str;
 3016|    568|    char *tail;
 3017|    568|    int err;
 3018|       |
 3019|    568|    if (*s != '(') {
  ------------------
  |  Branch (3019:9): [True: 5, False: 563]
  ------------------
 3020|      5|        err_str = "missing '('";
 3021|      5|        goto syntax_error;
 3022|      5|    }
 3023|    563|    s++;
 3024|    563|    err = parse_int_string(s, (uint8_t *)packet_type, 2, &tail);
 3025|    563|    if (err) {
  ------------------
  |  Branch (3025:9): [True: 2, False: 561]
  ------------------
 3026|      2|        err_str = "ns";
 3027|      2|        goto syntax_error;
 3028|      2|    }
 3029|    561|    if (*tail != ',') {
  ------------------
  |  Branch (3029:9): [True: 3, False: 558]
  ------------------
 3030|      3|        err_str = "missing ','";
 3031|      3|        goto syntax_error;
 3032|      3|    }
 3033|    558|    s = tail + 1;
 3034|    558|    err = parse_int_string(s, ((uint8_t *)packet_type) + 2, 2, &tail);
 3035|    558|    if (err) {
  ------------------
  |  Branch (3035:9): [True: 2, False: 556]
  ------------------
 3036|      2|        err_str = "ns_type";
 3037|      2|        goto syntax_error;
 3038|      2|    }
 3039|    556|    if (*tail != ')') {
  ------------------
  |  Branch (3039:9): [True: 3, False: 553]
  ------------------
 3040|      3|        err_str = "missing ')'";
 3041|      3|        goto syntax_error;
 3042|      3|    }
 3043|       |
 3044|    553|    return NULL;
 3045|       |
 3046|     15|syntax_error:
 3047|     15|    return xasprintf("%s: bad syntax for packet type %s", s, err_str);
 3048|    556|}
meta-flow.c:mf_format_integer_string:
 3327|     29|{
 3328|     29|    if (mf->string == MFS_HEXADECIMAL) {
  ------------------
  |  Branch (3328:9): [True: 25, False: 4]
  ------------------
 3329|     25|        ds_put_hex(s, valuep, mf->n_bytes);
 3330|     25|    } else {
 3331|      4|        unsigned long long int integer = 0;
 3332|      4|        int i;
 3333|       |
 3334|      4|        ovs_assert(mf->n_bytes <= 8);
  ------------------
  |  |   62|      4|#define ovs_assert ovs_ignore
  ------------------
 3335|     12|        for (i = 0; i < mf->n_bytes; i++) {
  ------------------
  |  Branch (3335:21): [True: 8, False: 4]
  ------------------
 3336|      8|            integer = (integer << 8) | valuep[i];
 3337|      8|        }
 3338|      4|        ds_put_format(s, "%lld", integer);
 3339|      4|    }
 3340|       |
 3341|     29|    if (maskp) {
  ------------------
  |  Branch (3341:9): [True: 0, False: 29]
  ------------------
 3342|       |        /* I guess we could write the mask in decimal for MFS_DECIMAL but I'm
 3343|       |         * not sure that that a bit-mask written in decimal is ever easier to
 3344|       |         * understand than the same bit-mask written in hexadecimal. */
 3345|      0|        ds_put_char(s, '/');
 3346|      0|        ds_put_hex(s, maskp, mf->n_bytes);
 3347|      0|    }
 3348|     29|}
meta-flow.c:mf_format_ct_state_string:
 3383|      1|{
 3384|      1|    format_flags_masked(s, NULL, ct_state_to_string, ntohl(value),
 3385|      1|                        ntohl(mask), UINT16_MAX);
 3386|      1|}
meta-flow.c:mf_format_frag_string:
 3352|      3|{
 3353|      3|    const struct frag_handling *h;
 3354|       |
 3355|      3|    mask &= FLOW_NW_FRAG_MASK;
  ------------------
  |  |   56|      3|#define FLOW_NW_FRAG_MASK  (FLOW_NW_FRAG_ANY | FLOW_NW_FRAG_LATER)
  |  |  ------------------
  |  |  |  |   54|      3|#define FLOW_NW_FRAG_ANY   (1 << 0) /* Set for any IP frag. */
  |  |  ------------------
  |  |               #define FLOW_NW_FRAG_MASK  (FLOW_NW_FRAG_ANY | FLOW_NW_FRAG_LATER)
  |  |  ------------------
  |  |  |  |   55|      3|#define FLOW_NW_FRAG_LATER (1 << 1) /* Set for IP frag with nonzero offset. */
  |  |  ------------------
  ------------------
 3356|      3|    value &= mask;
 3357|       |
 3358|     13|    for (h = all_frags; h < &all_frags[ARRAY_SIZE(all_frags)]; h++) {
  ------------------
  |  |  297|     13|#define ARRAY_SIZE(ARRAY) __ARRAY_SIZE(ARRAY)
  |  |  ------------------
  |  |  |  |   46|     13|    __builtin_choose_expr(__ARRAY_CHECK(ARRAY),			\
  |  |  |  |  ------------------
  |  |  |  |  |  |   41|     13|    !__builtin_types_compatible_p(typeof(ARRAY), typeof(&ARRAY[0]))
  |  |  |  |  ------------------
  |  |  |  |   47|     13|        __ARRAY_SIZE_NOCHECK(ARRAY), __ARRAY_FAIL(ARRAY))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|     13|#define __ARRAY_SIZE_NOCHECK(ARRAY) (sizeof(ARRAY) / sizeof((ARRAY)[0]))
  |  |  |  |  ------------------
  |  |  |  |                       __ARRAY_SIZE_NOCHECK(ARRAY), __ARRAY_FAIL(ARRAY))
  |  |  |  |  ------------------
  |  |  |  |  |  |   44|     13|#define __ARRAY_FAIL(ARRAY) (sizeof(char[-2*!__ARRAY_CHECK(ARRAY)]))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  |  Branch (3358:25): [True: 12, False: 1]
  ------------------
 3359|     12|        if (value == h->value && mask == h->mask) {
  ------------------
  |  Branch (3359:13): [True: 3, False: 9]
  |  Branch (3359:34): [True: 2, False: 1]
  ------------------
 3360|      2|            ds_put_cstr(s, h->name);
 3361|      2|            return;
 3362|      2|        }
 3363|     12|    }
 3364|      1|    ds_put_cstr(s, "<error>");
 3365|      1|}
meta-flow.c:mf_format_tnl_flags_string:
 3369|     15|{
 3370|     15|    format_flags_masked(s, NULL, flow_tun_flag_to_string, ntohs(value),
 3371|     15|                        ntohs(mask) & FLOW_TNL_PUB_F_MASK, FLOW_TNL_PUB_F_MASK);
  ------------------
  |  |   58|     15|#define FLOW_TNL_PUB_F_MASK ((1 << 1) - 1)
  ------------------
                                      ntohs(mask) & FLOW_TNL_PUB_F_MASK, FLOW_TNL_PUB_F_MASK);
  ------------------
  |  |   58|     15|#define FLOW_TNL_PUB_F_MASK ((1 << 1) - 1)
  ------------------
 3372|     15|}
meta-flow.c:mf_format_tcp_flags_string:
 3376|      6|{
 3377|      6|    format_flags_masked(s, NULL, packet_tcp_flag_to_string, ntohs(value),
 3378|      6|                        TCP_FLAGS(mask), TCP_FLAGS(OVS_BE16_MAX));
  ------------------
  |  |  904|      6|#define TCP_FLAGS(tcp_ctl) (ntohs(tcp_ctl) & 0x0fff)
  ------------------
                                      TCP_FLAGS(mask), TCP_FLAGS(OVS_BE16_MAX));
  ------------------
  |  |  904|      6|#define TCP_FLAGS(tcp_ctl) (ntohs(tcp_ctl) & 0x0fff)
  ------------------
 3379|      6|}
meta-flow.c:mf_format_packet_type_string:
 3390|     25|{
 3391|     25|    format_packet_type_masked(s, value, mask);
 3392|     25|}

multipath_check:
   38|    297|{
   39|    297|    return mf_check_dst(&mp->dst, match);
   40|    297|}
multipath_parse:
  223|  2.45k|{
  224|  2.45k|    char *s = xstrdup(s_);
  225|  2.45k|    char *error = multipath_parse__(mp, s_, s);
  226|  2.45k|    free(s);
  227|  2.45k|    return error;
  228|  2.45k|}
multipath.c:multipath_parse__:
  145|  2.45k|{
  146|  2.45k|    char *save_ptr = NULL;
  147|  2.45k|    char *fields, *basis, *algorithm, *n_links_str, *arg, *dst;
  148|  2.45k|    char *error;
  149|  2.45k|    int n_links;
  150|       |
  151|  2.45k|    fields = strtok_r(s, ", ", &save_ptr);
  152|  2.45k|    basis = strtok_r(NULL, ", ", &save_ptr);
  153|  2.45k|    algorithm = strtok_r(NULL, ", ", &save_ptr);
  154|  2.45k|    n_links_str = strtok_r(NULL, ", ", &save_ptr);
  155|  2.45k|    arg = strtok_r(NULL, ", ", &save_ptr);
  156|  2.45k|    dst = strtok_r(NULL, ", ", &save_ptr);
  157|  2.45k|    if (!dst) {
  ------------------
  |  Branch (157:9): [True: 5, False: 2.45k]
  ------------------
  158|      5|        return xasprintf("%s: not enough arguments to multipath action", s_);
  159|      5|    }
  160|       |
  161|  2.45k|    ofpact_init_MULTIPATH(mp);
  162|  2.45k|    if (!strcasecmp(fields, "eth_src")) {
  ------------------
  |  Branch (162:9): [True: 295, False: 2.15k]
  ------------------
  163|    295|        mp->fields = NX_HASH_FIELDS_ETH_SRC;
  164|  2.15k|    } else if (!strcasecmp(fields, "symmetric_l4")) {
  ------------------
  |  Branch (164:16): [True: 310, False: 1.84k]
  ------------------
  165|    310|        mp->fields = NX_HASH_FIELDS_SYMMETRIC_L4;
  166|  1.84k|    } else if (!strcasecmp(fields, "symmetric_l3l4")) {
  ------------------
  |  Branch (166:16): [True: 188, False: 1.66k]
  ------------------
  167|    188|        mp->fields = NX_HASH_FIELDS_SYMMETRIC_L3L4;
  168|  1.66k|    } else if (!strcasecmp(fields, "symmetric_l3l4+udp")) {
  ------------------
  |  Branch (168:16): [True: 73, False: 1.58k]
  ------------------
  169|     73|        mp->fields = NX_HASH_FIELDS_SYMMETRIC_L3L4_UDP;
  170|  1.58k|    } else if (!strcasecmp(fields, "nw_src")) {
  ------------------
  |  Branch (170:16): [True: 288, False: 1.29k]
  ------------------
  171|    288|        mp->fields = NX_HASH_FIELDS_NW_SRC;
  172|  1.29k|    } else if (!strcasecmp(fields, "nw_dst")) {
  ------------------
  |  Branch (172:16): [True: 626, False: 673]
  ------------------
  173|    626|        mp->fields = NX_HASH_FIELDS_NW_DST;
  174|    673|    } else if (!strcasecmp(fields, "symmetric_l3")) {
  ------------------
  |  Branch (174:16): [True: 447, False: 226]
  ------------------
  175|    447|        mp->fields = NX_HASH_FIELDS_SYMMETRIC_L3;
  176|    447|    } else {
  177|    226|        return xasprintf("%s: unknown fields `%s'", s_, fields);
  178|    226|    }
  179|  2.22k|    mp->basis = atoi(basis);
  180|  2.22k|    if (!strcasecmp(algorithm, "modulo_n")) {
  ------------------
  |  Branch (180:9): [True: 232, False: 1.99k]
  ------------------
  181|    232|        mp->algorithm = NX_MP_ALG_MODULO_N;
  182|  1.99k|    } else if (!strcasecmp(algorithm, "hash_threshold")) {
  ------------------
  |  Branch (182:16): [True: 523, False: 1.47k]
  ------------------
  183|    523|        mp->algorithm = NX_MP_ALG_HASH_THRESHOLD;
  184|  1.47k|    } else if (!strcasecmp(algorithm, "hrw")) {
  ------------------
  |  Branch (184:16): [True: 801, False: 671]
  ------------------
  185|    801|        mp->algorithm = NX_MP_ALG_HRW;
  186|    801|    } else if (!strcasecmp(algorithm, "iter_hash")) {
  ------------------
  |  Branch (186:16): [True: 414, False: 257]
  ------------------
  187|    414|        mp->algorithm = NX_MP_ALG_ITER_HASH;
  188|    414|    } else {
  189|    257|        return xasprintf("%s: unknown algorithm `%s'", s_, algorithm);
  190|    257|    }
  191|  1.97k|    n_links = atoi(n_links_str);
  192|  1.97k|    if (n_links < 1 || n_links > 65536) {
  ------------------
  |  Branch (192:9): [True: 25, False: 1.94k]
  |  Branch (192:24): [True: 5, False: 1.94k]
  ------------------
  193|     30|        return xasprintf("%s: n_links %d is not in valid range 1 to 65536",
  194|     30|                         s_, n_links);
  195|     30|    }
  196|  1.94k|    mp->max_link = n_links - 1;
  197|  1.94k|    mp->arg = atoi(arg);
  198|       |
  199|  1.94k|    error = mf_parse_subfield(&mp->dst, dst);
  200|  1.94k|    if (error) {
  ------------------
  |  Branch (200:9): [True: 17, False: 1.92k]
  ------------------
  201|     17|        return error;
  202|     17|    }
  203|  1.92k|    if (!mf_nxm_header(mp->dst.field->id)) {
  ------------------
  |  Branch (203:9): [True: 1, False: 1.92k]
  ------------------
  204|      1|        return xasprintf("%s: experimenter OXM field '%s' not supported",
  205|      1|                         s_, dst);
  206|      1|    }
  207|  1.92k|    if (mp->dst.n_bits < 16 && n_links > (1u << mp->dst.n_bits)) {
  ------------------
  |  Branch (207:9): [True: 693, False: 1.22k]
  |  Branch (207:32): [True: 7, False: 686]
  ------------------
  208|      7|        return xasprintf("%s: %d-bit destination field has %u possible "
  209|      7|                         "values, less than specified n_links %d",
  210|      7|                         s_, mp->dst.n_bits, 1u << mp->dst.n_bits, n_links);
  211|      7|    }
  212|       |
  213|  1.91k|    return NULL;
  214|  1.92k|}

mf_nxm_header:
  234|  77.8k|{
  235|  77.8k|    uint64_t oxm = mf_oxm_header(id, 0);
  236|  77.8k|    return is_experimenter_oxm(oxm) ? 0 : oxm >> 32;
  ------------------
  |  Branch (236:12): [True: 2.50k, False: 75.3k]
  ------------------
  237|  77.8k|}
nxm_header_from_mff:
  245|   127k|{
  246|   127k|    uint64_t oxm = mf_oxm_header(mff->id, 0);
  247|       |
  248|   127k|    if (mff->mapped) {
  ------------------
  |  Branch (248:9): [True: 0, False: 127k]
  ------------------
  249|      0|        oxm = nxm_no_len(oxm) | ((uint64_t) mff->n_bytes << 32);
  250|      0|    }
  251|       |
  252|   127k|    return is_experimenter_oxm(oxm) ? 0 : oxm >> 32;
  ------------------
  |  Branch (252:12): [True: 392, False: 127k]
  ------------------
  253|   127k|}
nxm_put_entry_raw:
  808|  17.9k|{
  809|  17.9k|    nx_put_header_len(b, field, version, !!mask, n_bytes);
  810|  17.9k|    ofpbuf_put(b, value, n_bytes);
  811|  17.9k|    if (mask) {
  ------------------
  |  Branch (811:9): [True: 8.45k, False: 9.45k]
  ------------------
  812|  8.45k|        ofpbuf_put(b, mask, n_bytes);
  813|  8.45k|    }
  814|  17.9k|}
nx_put_match:
 1318|  3.64k|{
 1319|  3.64k|    int match_len = nx_put_raw(b, 0, match, cookie, cookie_mask);
 1320|       |
 1321|  3.64k|    ofpbuf_put_zeros(b, PAD_SIZE(match_len, 8));
  ------------------
  |  |  306|  3.64k|#define PAD_SIZE(X, Y) (ROUND_UP(X, Y) - (X))
  |  |  ------------------
  |  |  |  |  303|  3.64k|#define ROUND_UP(X, Y) (DIV_ROUND_UP(X, Y) * (Y))
  |  |  |  |  ------------------
  |  |  |  |  |  |  300|  3.64k|#define DIV_ROUND_UP(X, Y) (((X) + ((Y) - 1)) / (Y))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 1322|  3.64k|    return match_len;
 1323|  3.64k|}
oxm_put_match:
 1339|    466|{
 1340|    466|    int match_len;
 1341|    466|    struct ofp11_match_header *omh;
 1342|    466|    size_t start_len = b->size;
 1343|    466|    ovs_be64 cookie = htonll(0), cookie_mask = htonll(0);
 1344|       |
 1345|    466|    ofpbuf_put_uninit(b, sizeof *omh);
 1346|    466|    match_len = (nx_put_raw(b, version, match, cookie, cookie_mask)
 1347|    466|                 + sizeof *omh);
 1348|    466|    ofpbuf_put_zeros(b, PAD_SIZE(match_len, 8));
  ------------------
  |  |  306|    466|#define PAD_SIZE(X, Y) (ROUND_UP(X, Y) - (X))
  |  |  ------------------
  |  |  |  |  303|    466|#define ROUND_UP(X, Y) (DIV_ROUND_UP(X, Y) * (Y))
  |  |  |  |  ------------------
  |  |  |  |  |  |  300|    466|#define DIV_ROUND_UP(X, Y) (((X) + ((Y) - 1)) / (Y))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 1349|       |
 1350|    466|    omh = ofpbuf_at(b, start_len, sizeof *omh);
 1351|    466|    omh->type = htons(OFPMT_OXM);
 1352|    466|    omh->length = htons(match_len);
 1353|       |
 1354|    466|    return match_len;
 1355|    466|}
nx_put_header:
 1465|  4.80k|{
 1466|  4.80k|    nx_put_header__(b, mf_oxm_header(field, version), masked);
 1467|  4.80k|}
nx_put_mff_header:
 1471|  4.54k|{
 1472|  4.54k|    if (mff->mapped) {
  ------------------
  |  Branch (1472:9): [True: 0, False: 4.54k]
  ------------------
 1473|      0|        nx_put_header_len(b, mff->id, version, masked, mff->n_bytes);
 1474|  4.54k|    } else {
 1475|  4.54k|        nx_put_header(b, mff->id, version, masked);
 1476|  4.54k|    }
 1477|  4.54k|}
nx_put_entry:
 1496|  13.3k|{
 1497|  13.3k|    bool masked;
 1498|  13.3k|    int len, offset;
 1499|       |
 1500|  13.3k|    len = mf_field_len(mff, value, mask, &masked);
 1501|  13.3k|    offset = mff->n_bytes - len;
 1502|       |
 1503|  13.3k|    nxm_put_entry_raw(b, mff->id, version,
 1504|  13.3k|                      &value->u8 + offset, masked ? &mask->u8 + offset : NULL,
  ------------------
  |  Branch (1504:44): [True: 7.62k, False: 5.74k]
  ------------------
 1505|  13.3k|                      len);
 1506|  13.3k|}
nxm_parse_reg_move:
 1792|  1.03k|{
 1793|  1.03k|    const char *full_s = s;
 1794|  1.03k|    char *error;
 1795|       |
 1796|  1.03k|    error = mf_parse_subfield__(&move->src, &s);
 1797|  1.03k|    if (error) {
  ------------------
  |  Branch (1797:9): [True: 6, False: 1.02k]
  ------------------
 1798|      6|        return error;
 1799|      6|    }
 1800|  1.02k|    if (strncmp(s, "->", 2)) {
  ------------------
  |  Branch (1800:9): [True: 14, False: 1.01k]
  ------------------
 1801|     14|        return xasprintf("%s: missing `->' following source", full_s);
 1802|     14|    }
 1803|  1.01k|    s += 2;
 1804|  1.01k|    error = mf_parse_subfield(&move->dst, s);
 1805|  1.01k|    if (error) {
  ------------------
  |  Branch (1805:9): [True: 6, False: 1.00k]
  ------------------
 1806|      6|        return error;
 1807|      6|    }
 1808|       |
 1809|  1.00k|    if (move->src.n_bits != move->dst.n_bits) {
  ------------------
  |  Branch (1809:9): [True: 2, False: 1.00k]
  ------------------
 1810|      2|        return xasprintf("%s: source field is %d bits wide but destination is "
 1811|      2|                         "%d bits wide", full_s,
 1812|      2|                         move->src.n_bits, move->dst.n_bits);
 1813|      2|    }
 1814|  1.00k|    return NULL;
 1815|  1.00k|}
nxm_reg_move_check:
 1832|    458|{
 1833|    458|    enum ofperr error;
 1834|       |
 1835|    458|    error = mf_check_src(&move->src, match);
 1836|    458|    if (error) {
  ------------------
  |  Branch (1836:9): [True: 0, False: 458]
  ------------------
 1837|      0|        return error;
 1838|      0|    }
 1839|       |
 1840|    458|    return mf_check_dst(&move->dst, match);
 1841|    458|}
nxm_parse_stack_action:
 1875|  2.46k|{
 1876|  2.46k|    char *error;
 1877|       |
 1878|  2.46k|    error = mf_parse_subfield__(&stack_action->subfield, &s);
 1879|  2.46k|    if (error) {
  ------------------
  |  Branch (1879:9): [True: 7, False: 2.45k]
  ------------------
 1880|      7|        return error;
 1881|      7|    }
 1882|       |
 1883|  2.45k|    if (*s != '\0') {
  ------------------
  |  Branch (1883:9): [True: 1, False: 2.45k]
  ------------------
 1884|      1|        return xasprintf("%s: trailing garbage following push or pop", s);
 1885|      1|    }
 1886|       |
 1887|  2.45k|    return NULL;
 1888|  2.45k|}
nxm_stack_push_check:
 1907|    375|{
 1908|    375|    return mf_check_src(&push->subfield, match);
 1909|    375|}
nxm_stack_pop_check:
 1914|  2.03k|{
 1915|  2.03k|    return mf_check_dst(&pop->subfield, match);
 1916|  2.03k|}
mf_parse_field:
 2019|    429|{
 2020|    429|    const struct nxm_field *f;
 2021|    429|    int s_len = strlen(s);
 2022|       |
 2023|    429|    f = nxm_field_by_name(s, s_len);
 2024|    429|    (*field) = f ? mf_from_id(f->id) : mf_from_name_len(s, s_len);
  ------------------
  |  Branch (2024:16): [True: 19, False: 410]
  ------------------
 2025|    429|    if (!*field) {
  ------------------
  |  Branch (2025:9): [True: 3, False: 426]
  ------------------
 2026|      3|        return xasprintf("unknown field `%s'", s);
 2027|      3|    }
 2028|    426|    return NULL;
 2029|    429|}
mf_parse_subfield__:
 2076|   181k|{
 2077|   181k|    const struct mf_field *field = NULL;
 2078|   181k|    const struct nxm_field *f;
 2079|   181k|    const char *name;
 2080|   181k|    int start, end;
 2081|   181k|    const char *s;
 2082|   181k|    int name_len;
 2083|   181k|    bool wild;
 2084|       |
 2085|   181k|    s = *sp;
 2086|   181k|    name = s;
 2087|   181k|    name_len = strcspn(s, "[-");
 2088|       |
 2089|   181k|    f = mf_parse_subfield_name(name, name_len, &wild);
 2090|   181k|    field = f ? mf_from_id(f->id) : mf_from_name_len(name, name_len);
  ------------------
  |  Branch (2090:13): [True: 2.50k, False: 179k]
  ------------------
 2091|   181k|    if (!field) {
  ------------------
  |  Branch (2091:9): [True: 54.8k, False: 126k]
  ------------------
 2092|  54.8k|        return xasprintf("%s: unknown field `%.*s'", *sp, name_len, s);
 2093|  54.8k|    }
 2094|       |
 2095|   126k|    s += name_len;
 2096|       |    /* Assume full field. */
 2097|   126k|    start = 0;
 2098|   126k|    end = field->n_bits - 1;
 2099|   126k|    if (*s == '[') {
  ------------------
  |  Branch (2099:9): [True: 83.6k, False: 43.0k]
  ------------------
 2100|  83.6k|        if (!strncmp(s, "[]", 2)) {
  ------------------
  |  Branch (2100:13): [True: 18.5k, False: 65.0k]
  ------------------
 2101|       |            /* Nothing to do. */
 2102|  65.0k|        } else if (ovs_scan(s, "[%d..%d]", &start, &end)) {
  ------------------
  |  Branch (2102:20): [True: 660, False: 64.3k]
  ------------------
 2103|       |            /* Nothing to do. */
 2104|  64.3k|        } else if (ovs_scan(s, "[%d]", &start)) {
  ------------------
  |  Branch (2104:20): [True: 64.3k, False: 73]
  ------------------
 2105|  64.3k|            end = start;
 2106|  64.3k|        } else {
 2107|     73|            return xasprintf("%s: syntax error expecting [] or [<bit>] or "
 2108|     73|                             "[<start>..<end>]", *sp);
 2109|     73|        }
 2110|  83.5k|        s = strchr(s, ']') + 1;
 2111|  83.5k|    }
 2112|       |
 2113|   126k|    if (start > end) {
  ------------------
  |  Branch (2113:9): [True: 27, False: 126k]
  ------------------
 2114|     27|        return xasprintf("%s: starting bit %d is after ending bit %d",
 2115|     27|                         *sp, start, end);
 2116|   126k|    } else if (start >= field->n_bits) {
  ------------------
  |  Branch (2116:16): [True: 31, False: 126k]
  ------------------
 2117|     31|        return xasprintf("%s: starting bit %d is not valid because field is "
 2118|     31|                         "only %d bits wide", *sp, start, field->n_bits);
 2119|   126k|    } else if (end >= field->n_bits){
  ------------------
  |  Branch (2119:16): [True: 30, False: 126k]
  ------------------
 2120|     30|        return xasprintf("%s: ending bit %d is not valid because field is "
 2121|     30|                         "only %d bits wide", *sp, end, field->n_bits);
 2122|     30|    }
 2123|       |
 2124|   126k|    sf->field = field;
 2125|   126k|    sf->ofs = start;
 2126|   126k|    sf->n_bits = end - start + 1;
 2127|       |
 2128|   126k|    *sp = s;
 2129|       |    return NULL;
 2130|   126k|}
mf_parse_subfield:
 2143|   178k|{
 2144|   178k|    char *error = mf_parse_subfield__(sf, &s);
 2145|   178k|    if (!error && s[0]) {
  ------------------
  |  Branch (2145:9): [True: 122k, False: 55.0k]
  |  Branch (2145:19): [True: 33, False: 122k]
  ------------------
 2146|     33|        error = xstrdup("unexpected input following field syntax");
 2147|     33|    }
 2148|   178k|    return error;
 2149|   178k|}
nx-match.c:mf_oxm_header:
  221|   228k|{
  222|   228k|    const struct nxm_field *f = nxm_field_by_mf_id(id, version);
  223|   228k|    return f ? f->header : 0;
  ------------------
  |  Branch (223:12): [True: 226k, False: 1.56k]
  ------------------
  224|   228k|}
nx-match.c:is_experimenter_oxm:
  108|   271k|{
  109|   271k|    return nxm_class(header) == OFPXMC12_EXPERIMENTER;
  110|   271k|}
nx-match.c:nxm_no_len:
  104|    237|static uint64_t nxm_no_len(uint64_t header) { return header & 0xffffff80ffffffffULL; }
nx-match.c:nxm_payload_len:
  136|  8.56k|{
  137|  8.56k|    ovs_assert(nxm_length(header) >= nxm_experimenter_len(header));
  ------------------
  |  |   62|  8.56k|#define ovs_assert ovs_ignore
  ------------------
  138|  8.56k|    return nxm_length(header) - nxm_experimenter_len(header);
  139|  8.56k|}
nx-match.c:nxm_experimenter_len:
  128|  66.4k|{
  129|  66.4k|    return is_experimenter_oxm(header) ? 4 : 0;
  ------------------
  |  Branch (129:12): [True: 13.8k, False: 52.6k]
  ------------------
  130|  66.4k|}
nx-match.c:nxm_vendor:
   99|  26.4k|static uint32_t nxm_vendor(uint64_t header) { return header; }
nx-match.c:nxm_length:
  103|  17.1k|static int nxm_length(uint64_t header) { return (header >> 32) & 0xff; }
nx-match.c:nxm_header_len:
  145|  22.8k|{
  146|  22.8k|    return 4 + nxm_experimenter_len(header);
  147|  22.8k|}
nx-match.c:nxm_make_wild_header:
  173|  8.56k|{
  174|  8.56k|    unsigned int new_len = nxm_payload_len(header) * 2
  175|  8.56k|                           + nxm_experimenter_len(header);
  176|  8.56k|    return NXM_HEADER(nxm_vendor(header), nxm_class(header),
  ------------------
  |  |  150|  8.56k|    (((uint64_t) (CLASS) << 48) |                               \
  |  |  151|  8.56k|     ((uint64_t) (FIELD) << 41) |                               \
  |  |  152|  8.56k|     ((uint64_t) (HASMASK) << 40) |                             \
  |  |  153|  8.56k|     ((uint64_t) (LENGTH) << 32) |                              \
  |  |  154|  8.56k|     (VENDOR))
  ------------------
  177|  8.56k|                      nxm_field(header), 1, new_len);
  178|  8.56k|}
nx-match.c:nx_put_raw:
 1050|  4.10k|{
 1051|  4.10k|    const struct flow *flow = &match->flow;
 1052|  4.10k|    const size_t start_len = b->size;
 1053|  4.10k|    ovs_be16 dl_type = get_dl_type(flow);
 1054|  4.10k|    ovs_be32 spi_mask;
 1055|  4.10k|    int match_len;
 1056|       |
 1057|  4.10k|    BUILD_ASSERT_DECL(FLOW_WC_SEQ == 43);
  ------------------
  |  |  270|  4.10k|#define BUILD_ASSERT_DECL(EXPR) _Static_assert(EXPR, #EXPR)
  ------------------
 1058|       |
 1059|  4.10k|    struct nxm_put_ctx ctx = { .output = b, .implied_ethernet = false };
 1060|       |
 1061|       |    /* OpenFlow Packet Type. Must be first. */
 1062|  4.10k|    if (match->wc.masks.packet_type && !match_has_default_packet_type(match)) {
  ------------------
  |  Branch (1062:9): [True: 1.74k, False: 2.36k]
  |  Branch (1062:40): [True: 496, False: 1.24k]
  ------------------
 1063|    496|        nxm_put_32m(&ctx, MFF_PACKET_TYPE, oxm, flow->packet_type,
 1064|    496|                    match->wc.masks.packet_type);
 1065|    496|    }
 1066|       |
 1067|       |    /* Metadata. */
 1068|  4.10k|    if (match->wc.masks.dp_hash) {
  ------------------
  |  Branch (1068:9): [True: 36, False: 4.07k]
  ------------------
 1069|     36|        nxm_put_32m(&ctx, MFF_DP_HASH, oxm,
 1070|     36|                    htonl(flow->dp_hash), htonl(match->wc.masks.dp_hash));
 1071|     36|    }
 1072|       |
 1073|  4.10k|    if (match->wc.masks.recirc_id) {
  ------------------
  |  Branch (1073:9): [True: 7, False: 4.10k]
  ------------------
 1074|      7|        nxm_put_32(&ctx, MFF_RECIRC_ID, oxm, htonl(flow->recirc_id));
 1075|      7|    }
 1076|       |
 1077|  4.10k|    if (match->wc.masks.conj_id) {
  ------------------
  |  Branch (1077:9): [True: 8, False: 4.10k]
  ------------------
 1078|      8|        nxm_put_32(&ctx, MFF_CONJ_ID, oxm, htonl(flow->conj_id));
 1079|      8|    }
 1080|       |
 1081|  4.10k|    if (match->wc.masks.in_port.ofp_port) {
  ------------------
  |  Branch (1081:9): [True: 9, False: 4.10k]
  ------------------
 1082|      9|        ofp_port_t in_port = flow->in_port.ofp_port;
 1083|      9|        if (oxm) {
  ------------------
  |  Branch (1083:13): [True: 1, False: 8]
  ------------------
 1084|      1|            nxm_put_32(&ctx, MFF_IN_PORT_OXM, oxm,
 1085|      1|                       ofputil_port_to_ofp11(in_port));
 1086|      8|        } else {
 1087|      8|            nxm_put_16(&ctx, MFF_IN_PORT, oxm,
 1088|      8|                       htons(ofp_to_u16(in_port)));
 1089|      8|        }
 1090|      9|    }
 1091|  4.10k|    if (match->wc.masks.actset_output) {
  ------------------
  |  Branch (1091:9): [True: 40, False: 4.06k]
  ------------------
 1092|     40|        nxm_put_32(&ctx, MFF_ACTSET_OUTPUT, oxm,
 1093|     40|                   ofputil_port_to_ofp11(flow->actset_output));
 1094|     40|    }
 1095|       |
 1096|       |    /* Ethernet. */
 1097|  4.10k|    nxm_put_eth_masked(&ctx, MFF_ETH_SRC, oxm,
 1098|  4.10k|                       flow->dl_src, match->wc.masks.dl_src);
 1099|  4.10k|    nxm_put_eth_masked(&ctx, MFF_ETH_DST, oxm,
 1100|  4.10k|                       flow->dl_dst, match->wc.masks.dl_dst);
 1101|  4.10k|    nxm_put_16m(&ctx, MFF_ETH_TYPE, oxm,
 1102|  4.10k|                ofputil_dl_type_to_openflow(flow->dl_type),
 1103|  4.10k|                match->wc.masks.dl_type);
 1104|       |
 1105|       |    /* 802.1Q. */
 1106|  4.10k|    if (oxm) {
  ------------------
  |  Branch (1106:9): [True: 466, False: 3.64k]
  ------------------
 1107|    466|        ovs_be16 VID_CFI_MASK = htons(VLAN_VID_MASK | VLAN_CFI);
 1108|    466|        ovs_be16 vid = flow->vlans[0].tci & VID_CFI_MASK;
 1109|    466|        ovs_be16 mask = match->wc.masks.vlans[0].tci & VID_CFI_MASK;
 1110|       |
 1111|    466|        if (mask == htons(VLAN_VID_MASK | VLAN_CFI)) {
  ------------------
  |  Branch (1111:13): [True: 2, False: 464]
  ------------------
 1112|      2|            nxm_put_16(&ctx, MFF_VLAN_VID, oxm, vid);
 1113|    464|        } else if (mask) {
  ------------------
  |  Branch (1113:20): [True: 3, False: 461]
  ------------------
 1114|      3|            nxm_put_16m(&ctx, MFF_VLAN_VID, oxm, vid, mask);
 1115|      3|        }
 1116|       |
 1117|    466|        if (vid && vlan_tci_to_pcp(match->wc.masks.vlans[0].tci)) {
  ------------------
  |  Branch (1117:13): [True: 3, False: 463]
  |  Branch (1117:20): [True: 1, False: 2]
  ------------------
 1118|      1|            nxm_put_8(&ctx, MFF_VLAN_PCP, oxm,
 1119|      1|                      vlan_tci_to_pcp(flow->vlans[0].tci));
 1120|      1|        }
 1121|       |
 1122|  3.64k|    } else {
 1123|  3.64k|        nxm_put_16m(&ctx, MFF_VLAN_TCI, oxm, flow->vlans[0].tci,
 1124|  3.64k|                    match->wc.masks.vlans[0].tci);
 1125|  3.64k|    }
 1126|       |
 1127|       |    /* MPLS. */
 1128|  4.10k|    if (eth_type_mpls(dl_type)) {
  ------------------
  |  Branch (1128:9): [True: 65, False: 4.04k]
  ------------------
 1129|     65|        if (match->wc.masks.mpls_lse[0] & htonl(MPLS_TC_MASK)) {
  ------------------
  |  Branch (1129:13): [True: 1, False: 64]
  ------------------
 1130|      1|            nxm_put_8(&ctx, MFF_MPLS_TC, oxm,
 1131|      1|                      mpls_lse_to_tc(flow->mpls_lse[0]));
 1132|      1|        }
 1133|       |
 1134|     65|        if (match->wc.masks.mpls_lse[0] & htonl(MPLS_BOS_MASK)) {
  ------------------
  |  Branch (1134:13): [True: 3, False: 62]
  ------------------
 1135|      3|            nxm_put_8(&ctx, MFF_MPLS_BOS, oxm,
 1136|      3|                      mpls_lse_to_bos(flow->mpls_lse[0]));
 1137|      3|        }
 1138|       |
 1139|     65|        if (match->wc.masks.mpls_lse[0] & htonl(MPLS_TTL_MASK)) {
  ------------------
  |  Branch (1139:13): [True: 1, False: 64]
  ------------------
 1140|      1|            nxm_put_8(&ctx, MFF_MPLS_TTL, oxm,
 1141|      1|                      mpls_lse_to_ttl(flow->mpls_lse[0]));
 1142|      1|        }
 1143|       |
 1144|     65|        if (match->wc.masks.mpls_lse[0] & htonl(MPLS_LABEL_MASK)) {
  ------------------
  |  Branch (1144:13): [True: 1, False: 64]
  ------------------
 1145|      1|            nxm_put_32(&ctx, MFF_MPLS_LABEL, oxm,
 1146|      1|                       htonl(mpls_lse_to_label(flow->mpls_lse[0])));
 1147|      1|        }
 1148|     65|    }
 1149|       |
 1150|       |    /* L3. */
 1151|  4.10k|    if (is_ip_any(flow)) {
  ------------------
  |  Branch (1151:9): [True: 583, False: 3.52k]
  ------------------
 1152|    583|        nxm_put_ip(&ctx, match, oxm);
 1153|  3.52k|    } else if (dl_type == htons(ETH_TYPE_ARP) ||
  ------------------
  |  Branch (1153:16): [True: 22, False: 3.50k]
  ------------------
 1154|  3.50k|               dl_type == htons(ETH_TYPE_RARP)) {
  ------------------
  |  Branch (1154:16): [True: 5, False: 3.49k]
  ------------------
 1155|       |        /* ARP. */
 1156|     27|        if (match->wc.masks.nw_proto) {
  ------------------
  |  Branch (1156:13): [True: 4, False: 23]
  ------------------
 1157|      4|            nxm_put_16(&ctx, MFF_ARP_OP, oxm,
 1158|      4|                       htons(flow->nw_proto));
 1159|      4|        }
 1160|     27|        nxm_put_32m(&ctx, MFF_ARP_SPA, oxm,
 1161|     27|                    flow->nw_src, match->wc.masks.nw_src);
 1162|     27|        nxm_put_32m(&ctx, MFF_ARP_TPA, oxm,
 1163|     27|                    flow->nw_dst, match->wc.masks.nw_dst);
 1164|     27|        nxm_put_eth_masked(&ctx, MFF_ARP_SHA, oxm,
 1165|     27|                           flow->arp_sha, match->wc.masks.arp_sha);
 1166|     27|        nxm_put_eth_masked(&ctx, MFF_ARP_THA, oxm,
 1167|     27|                           flow->arp_tha, match->wc.masks.arp_tha);
 1168|     27|    }
 1169|       |
 1170|       |    /* Tunnel ID. */
 1171|  4.10k|    nxm_put_64m(&ctx, MFF_TUN_ID, oxm,
 1172|  4.10k|                flow->tunnel.tun_id, match->wc.masks.tunnel.tun_id);
 1173|       |
 1174|       |    /* Other tunnel metadata. */
 1175|  4.10k|    nxm_put_16m(&ctx, MFF_TUN_FLAGS, oxm,
 1176|  4.10k|                htons(flow->tunnel.flags), htons(match->wc.masks.tunnel.flags));
 1177|  4.10k|    nxm_put_32m(&ctx, MFF_TUN_SRC, oxm,
 1178|  4.10k|                flow->tunnel.ip_src, match->wc.masks.tunnel.ip_src);
 1179|  4.10k|    nxm_put_32m(&ctx, MFF_TUN_DST, oxm,
 1180|  4.10k|                flow->tunnel.ip_dst, match->wc.masks.tunnel.ip_dst);
 1181|  4.10k|    nxm_put_ipv6(&ctx, MFF_TUN_IPV6_SRC, oxm,
 1182|  4.10k|                 &flow->tunnel.ipv6_src, &match->wc.masks.tunnel.ipv6_src);
 1183|  4.10k|    nxm_put_ipv6(&ctx, MFF_TUN_IPV6_DST, oxm,
 1184|  4.10k|                 &flow->tunnel.ipv6_dst, &match->wc.masks.tunnel.ipv6_dst);
 1185|  4.10k|    nxm_put_16m(&ctx, MFF_TUN_GBP_ID, oxm,
 1186|  4.10k|                flow->tunnel.gbp_id, match->wc.masks.tunnel.gbp_id);
 1187|  4.10k|    nxm_put_8m(&ctx, MFF_TUN_GBP_FLAGS, oxm,
 1188|  4.10k|               flow->tunnel.gbp_flags, match->wc.masks.tunnel.gbp_flags);
 1189|  4.10k|    tun_metadata_to_nx_match(b, oxm, match);
 1190|       |
 1191|       |    /* ERSPAN */
 1192|  4.10k|    nxm_put_32m(&ctx, MFF_TUN_ERSPAN_IDX, oxm,
 1193|  4.10k|                htonl(flow->tunnel.erspan_idx),
 1194|  4.10k|                htonl(match->wc.masks.tunnel.erspan_idx));
 1195|  4.10k|    nxm_put_8m(&ctx, MFF_TUN_ERSPAN_VER, oxm,
 1196|  4.10k|                flow->tunnel.erspan_ver, match->wc.masks.tunnel.erspan_ver);
 1197|  4.10k|    nxm_put_8m(&ctx, MFF_TUN_ERSPAN_DIR, oxm,
 1198|  4.10k|                flow->tunnel.erspan_dir, match->wc.masks.tunnel.erspan_dir);
 1199|  4.10k|    nxm_put_8m(&ctx, MFF_TUN_ERSPAN_HWID, oxm,
 1200|  4.10k|                flow->tunnel.erspan_hwid, match->wc.masks.tunnel.erspan_hwid);
 1201|       |
 1202|       |    /* GTP-U */
 1203|  4.10k|    nxm_put_8m(&ctx, MFF_TUN_GTPU_FLAGS, oxm, flow->tunnel.gtpu_flags,
 1204|  4.10k|               match->wc.masks.tunnel.gtpu_flags);
 1205|  4.10k|    nxm_put_8m(&ctx, MFF_TUN_GTPU_MSGTYPE, oxm, flow->tunnel.gtpu_msgtype,
 1206|  4.10k|               match->wc.masks.tunnel.gtpu_msgtype);
 1207|       |
 1208|       |    /* Network Service Header */
 1209|  4.10k|    nxm_put_8m(&ctx, MFF_NSH_FLAGS, oxm, flow->nsh.flags,
 1210|  4.10k|            match->wc.masks.nsh.flags);
 1211|  4.10k|    nxm_put_8m(&ctx, MFF_NSH_TTL, oxm, flow->nsh.ttl,
 1212|  4.10k|            match->wc.masks.nsh.ttl);
 1213|  4.10k|    nxm_put_8m(&ctx, MFF_NSH_MDTYPE, oxm, flow->nsh.mdtype,
 1214|  4.10k|            match->wc.masks.nsh.mdtype);
 1215|  4.10k|    nxm_put_8m(&ctx, MFF_NSH_NP, oxm, flow->nsh.np,
 1216|  4.10k|            match->wc.masks.nsh.np);
 1217|  4.10k|    spi_mask = nsh_path_hdr_to_spi(match->wc.masks.nsh.path_hdr);
 1218|  4.10k|    if (spi_mask == htonl(NSH_SPI_MASK >> NSH_SPI_SHIFT)) {
  ------------------
  |  Branch (1218:9): [True: 54, False: 4.05k]
  ------------------
 1219|     54|        spi_mask = OVS_BE32_MAX;
  ------------------
  |  |   43|     54|#define OVS_BE32_MAX ((OVS_FORCE ovs_be32) 0xffffffff)
  ------------------
 1220|     54|    }
 1221|  4.10k|    nxm_put_32m(&ctx, MFF_NSH_SPI, oxm,
 1222|  4.10k|                nsh_path_hdr_to_spi(flow->nsh.path_hdr),
 1223|  4.10k|                spi_mask);
 1224|  4.10k|    nxm_put_8m(&ctx, MFF_NSH_SI, oxm,
 1225|  4.10k|                nsh_path_hdr_to_si(flow->nsh.path_hdr),
 1226|  4.10k|                nsh_path_hdr_to_si(match->wc.masks.nsh.path_hdr));
 1227|  20.5k|    for (int i = 0; i < 4; i++) {
  ------------------
  |  Branch (1227:21): [True: 16.4k, False: 4.10k]
  ------------------
 1228|  16.4k|        nxm_put_32m(&ctx, MFF_NSH_C1 + i, oxm, flow->nsh.context[i],
 1229|  16.4k|                    match->wc.masks.nsh.context[i]);
 1230|  16.4k|    }
 1231|       |
 1232|       |    /* Registers. */
 1233|  4.10k|    if (oxm < OFP15_VERSION) {
  ------------------
  |  Branch (1233:9): [True: 4.10k, False: 0]
  ------------------
 1234|   135k|        for (int i = 0; i < FLOW_N_REGS; i++) {
  ------------------
  |  |   33|   135k|#define FLOW_N_REGS 32
  ------------------
  |  Branch (1234:25): [True: 131k, False: 4.10k]
  ------------------
 1235|   131k|            nxm_put_32m(&ctx, MFF_REG0 + i, oxm,
 1236|   131k|                        htonl(flow->regs[i]), htonl(match->wc.masks.regs[i]));
 1237|   131k|        }
 1238|  4.10k|    } else {
 1239|      0|        for (int i = 0; i < FLOW_N_XREGS; i++) {
  ------------------
  |  |   41|      0|#define FLOW_N_XREGS (FLOW_N_REGS / 2)
  |  |  ------------------
  |  |  |  |   33|      0|#define FLOW_N_REGS 32
  |  |  ------------------
  ------------------
  |  Branch (1239:25): [True: 0, False: 0]
  ------------------
 1240|      0|            nxm_put_64m(&ctx, MFF_XREG0 + i, oxm,
 1241|      0|                        htonll(flow_get_xreg(flow, i)),
 1242|      0|                        htonll(flow_get_xreg(&match->wc.masks, i)));
 1243|      0|        }
 1244|      0|    }
 1245|       |
 1246|       |    /* Packet mark. */
 1247|  4.10k|    nxm_put_32m(&ctx, MFF_PKT_MARK, oxm, htonl(flow->pkt_mark),
 1248|  4.10k|                htonl(match->wc.masks.pkt_mark));
 1249|       |
 1250|       |    /* Connection tracking. */
 1251|  4.10k|    nxm_put_32m(&ctx, MFF_CT_STATE, oxm, htonl(flow->ct_state),
 1252|  4.10k|                htonl(match->wc.masks.ct_state));
 1253|  4.10k|    nxm_put_16m(&ctx, MFF_CT_ZONE, oxm, htons(flow->ct_zone),
 1254|  4.10k|                htons(match->wc.masks.ct_zone));
 1255|  4.10k|    nxm_put_32m(&ctx, MFF_CT_MARK, oxm, htonl(flow->ct_mark),
 1256|  4.10k|                htonl(match->wc.masks.ct_mark));
 1257|  4.10k|    nxm_put_128m(&ctx, MFF_CT_LABEL, oxm, hton128(flow->ct_label),
 1258|  4.10k|                 hton128(match->wc.masks.ct_label));
 1259|  4.10k|    nxm_put_32m(&ctx, MFF_CT_NW_SRC, oxm,
 1260|  4.10k|                flow->ct_nw_src, match->wc.masks.ct_nw_src);
 1261|  4.10k|    nxm_put_ipv6(&ctx, MFF_CT_IPV6_SRC, oxm,
 1262|  4.10k|                 &flow->ct_ipv6_src, &match->wc.masks.ct_ipv6_src);
 1263|  4.10k|    nxm_put_32m(&ctx, MFF_CT_NW_DST, oxm,
 1264|  4.10k|                flow->ct_nw_dst, match->wc.masks.ct_nw_dst);
 1265|  4.10k|    nxm_put_ipv6(&ctx, MFF_CT_IPV6_DST, oxm,
 1266|  4.10k|                 &flow->ct_ipv6_dst, &match->wc.masks.ct_ipv6_dst);
 1267|  4.10k|    if (flow->ct_nw_proto) {
  ------------------
  |  Branch (1267:9): [True: 5, False: 4.10k]
  ------------------
 1268|      5|        nxm_put_8m(&ctx, MFF_CT_NW_PROTO, oxm, flow->ct_nw_proto,
 1269|      5|                   match->wc.masks.ct_nw_proto);
 1270|      5|        nxm_put_16m(&ctx, MFF_CT_TP_SRC, oxm,
 1271|      5|                    flow->ct_tp_src, match->wc.masks.ct_tp_src);
 1272|      5|        nxm_put_16m(&ctx, MFF_CT_TP_DST, oxm,
 1273|      5|                    flow->ct_tp_dst, match->wc.masks.ct_tp_dst);
 1274|      5|    }
 1275|       |    /* OpenFlow 1.1+ Metadata. */
 1276|  4.10k|    nxm_put_64m(&ctx, MFF_METADATA, oxm,
 1277|  4.10k|                flow->metadata, match->wc.masks.metadata);
 1278|       |
 1279|       |    /* Cookie. */
 1280|  4.10k|    if (cookie_mask) {
  ------------------
  |  Branch (1280:9): [True: 107, False: 4.00k]
  ------------------
 1281|    107|        bool masked = cookie_mask != OVS_BE64_MAX;
  ------------------
  |  |   44|    107|#define OVS_BE64_MAX ((OVS_FORCE ovs_be64) 0xffffffffffffffffULL)
  ------------------
 1282|       |
 1283|    107|        cookie &= cookie_mask;
 1284|    107|        nx_put_header__(b, NXM_NX_COOKIE, masked);
  ------------------
  |  |  187|    107|#define NXM_NX_COOKIE     NXM_HEADER  (0, 0x0001, 30, 0, 8)
  |  |  ------------------
  |  |  |  |  150|    107|    (((uint64_t) (CLASS) << 48) |                               \
  |  |  |  |  151|    107|     ((uint64_t) (FIELD) << 41) |                               \
  |  |  |  |  152|    107|     ((uint64_t) (HASMASK) << 40) |                             \
  |  |  |  |  153|    107|     ((uint64_t) (LENGTH) << 32) |                              \
  |  |  |  |  154|    107|     (VENDOR))
  |  |  ------------------
  ------------------
 1285|    107|        ofpbuf_put(b, &cookie, sizeof cookie);
 1286|    107|        if (masked) {
  ------------------
  |  Branch (1286:13): [True: 106, False: 1]
  ------------------
 1287|    106|            ofpbuf_put(b, &cookie_mask, sizeof cookie_mask);
 1288|    106|        }
 1289|    107|    }
 1290|       |
 1291|  4.10k|    if (match_has_default_packet_type(match) && !ctx.implied_ethernet) {
  ------------------
  |  Branch (1291:9): [True: 1.24k, False: 2.86k]
  |  Branch (1291:49): [True: 326, False: 918]
  ------------------
 1292|    326|        uint64_t pt_stub[16 / 8];
 1293|    326|        struct ofpbuf pt;
 1294|    326|        ofpbuf_use_stack(&pt, pt_stub, sizeof pt_stub);
 1295|    326|        nxm_put_entry_raw(&pt, MFF_PACKET_TYPE, oxm, &flow->packet_type,
 1296|    326|                          NULL, sizeof flow->packet_type);
 1297|       |
 1298|    326|        ofpbuf_insert(b, start_len, pt.data, pt.size);
 1299|    326|    }
 1300|       |
 1301|  4.10k|    match_len = b->size - start_len;
 1302|  4.10k|    return match_len;
 1303|  4.10k|}
nx-match.c:nxm_put_32m:
  872|   186k|{
  873|   186k|    nxm_put(ctx, field, version, &value, &mask, sizeof value);
  874|   186k|}
nx-match.c:nxm_put:
  831|   290k|{
  832|   290k|    if (!is_all_zeros(mask, n_bytes)) {
  ------------------
  |  Branch (832:9): [True: 3.21k, False: 287k]
  ------------------
  833|  3.21k|        bool masked = !is_all_ones(mask, n_bytes);
  834|  3.21k|        nxm_put__(ctx, field, version, value, masked ? mask : NULL, n_bytes);
  ------------------
  |  Branch (834:47): [True: 620, False: 2.59k]
  ------------------
  835|  3.21k|    }
  836|   290k|}
nx-match.c:nxm_put__:
  820|  3.85k|{
  821|  3.85k|    nxm_put_entry_raw(ctx->output, field, version, value, mask, n_bytes);
  822|  3.85k|    if (!ctx->implied_ethernet && mf_from_id(field)->prereqs != MFP_NONE) {
  ------------------
  |  Branch (822:9): [True: 3.03k, False: 819]
  |  Branch (822:35): [True: 924, False: 2.10k]
  ------------------
  823|       |        ctx->implied_ethernet = true;
  824|    924|    }
  825|  3.85k|}
nx-match.c:nxm_put_32:
  879|     57|{
  880|       |    nxm_put__(ctx, field, version, &value, NULL, sizeof value);
  881|     57|}
nx-match.c:nxm_put_16:
  864|     14|{
  865|       |    nxm_put__(ctx, field, version, &value, NULL, sizeof value);
  866|     14|}
nx-match.c:nxm_put_eth_masked:
  903|  8.32k|{
  904|  8.32k|    nxm_put(ctx, field, version, value.ea, mask.ea, ETH_ADDR_LEN);
  ------------------
  |  |  205|  8.32k|#define ETH_ADDR_LEN           6
  ------------------
  905|  8.32k|}
nx-match.c:nxm_put_16m:
  857|  20.6k|{
  858|  20.6k|    nxm_put(ctx, field, version, &value, &mask, sizeof value);
  859|  20.6k|}
nx-match.c:nxm_put_8:
  849|    564|{
  850|       |    nxm_put__(ctx, field, version, &value, NULL, sizeof value);
  851|    564|}
nx-match.c:nxm_put_ip:
  932|    583|{
  933|    583|    const struct flow *flow = &match->flow;
  934|    583|    ovs_be16 dl_type = get_dl_type(flow);
  935|       |
  936|    583|    if (dl_type == htons(ETH_TYPE_IP)) {
  ------------------
  |  Branch (936:9): [True: 251, False: 332]
  ------------------
  937|    251|        nxm_put_32m(ctx, MFF_IPV4_SRC, oxm,
  938|    251|                    flow->nw_src, match->wc.masks.nw_src);
  939|    251|        nxm_put_32m(ctx, MFF_IPV4_DST, oxm,
  940|    251|                    flow->nw_dst, match->wc.masks.nw_dst);
  941|    332|    } else {
  942|    332|        nxm_put_ipv6(ctx, MFF_IPV6_SRC, oxm,
  943|    332|                     &flow->ipv6_src, &match->wc.masks.ipv6_src);
  944|    332|        nxm_put_ipv6(ctx, MFF_IPV6_DST, oxm,
  945|    332|                     &flow->ipv6_dst, &match->wc.masks.ipv6_dst);
  946|    332|    }
  947|       |
  948|    583|    nxm_put_frag(ctx, match, oxm);
  949|       |
  950|    583|    if (match->wc.masks.nw_tos & IP_DSCP_MASK) {
  ------------------
  |  |  724|    583|#define IP_DSCP_MASK 0xfc
  ------------------
  |  Branch (950:9): [True: 2, False: 581]
  ------------------
  951|      2|        if (oxm) {
  ------------------
  |  Branch (951:13): [True: 1, False: 1]
  ------------------
  952|      1|            nxm_put_8(ctx, MFF_IP_DSCP_SHIFTED, oxm,
  953|      1|                      flow->nw_tos >> 2);
  954|      1|        } else {
  955|      1|            nxm_put_8(ctx, MFF_IP_DSCP, oxm,
  956|      1|                      flow->nw_tos & IP_DSCP_MASK);
  ------------------
  |  |  724|      1|#define IP_DSCP_MASK 0xfc
  ------------------
  957|      1|        }
  958|      2|    }
  959|       |
  960|    583|    if (match->wc.masks.nw_tos & IP_ECN_MASK) {
  ------------------
  |  |  722|    583|#define IP_ECN_MASK 0x03
  ------------------
  |  Branch (960:9): [True: 4, False: 579]
  ------------------
  961|      4|        nxm_put_8(ctx, MFF_IP_ECN, oxm,
  962|      4|                  flow->nw_tos & IP_ECN_MASK);
  ------------------
  |  |  722|      4|#define IP_ECN_MASK 0x03
  ------------------
  963|      4|    }
  964|       |
  965|    583|    if (match->wc.masks.nw_ttl) {
  ------------------
  |  Branch (965:9): [True: 4, False: 579]
  ------------------
  966|      4|        nxm_put_8(ctx, MFF_IP_TTL, oxm, flow->nw_ttl);
  967|      4|    }
  968|       |
  969|    583|    nxm_put_32m(ctx, MFF_IPV6_LABEL, oxm,
  970|    583|                flow->ipv6_label, match->wc.masks.ipv6_label);
  971|       |
  972|    583|    if (match->wc.masks.nw_proto) {
  ------------------
  |  Branch (972:9): [True: 432, False: 151]
  ------------------
  973|    432|        nxm_put_8(ctx, MFF_IP_PROTO, oxm, flow->nw_proto);
  974|       |
  975|    432|        if (flow->nw_proto == IPPROTO_TCP) {
  ------------------
  |  Branch (975:13): [True: 104, False: 328]
  ------------------
  976|    104|            nxm_put_16m(ctx, MFF_TCP_SRC, oxm,
  977|    104|                        flow->tp_src, match->wc.masks.tp_src);
  978|    104|            nxm_put_16m(ctx, MFF_TCP_DST, oxm,
  979|    104|                        flow->tp_dst, match->wc.masks.tp_dst);
  980|    104|            nxm_put_16m(ctx, MFF_TCP_FLAGS, oxm,
  981|    104|                        flow->tcp_flags, match->wc.masks.tcp_flags);
  982|    328|        } else if (flow->nw_proto == IPPROTO_UDP) {
  ------------------
  |  Branch (982:20): [True: 90, False: 238]
  ------------------
  983|     90|            nxm_put_16m(ctx, MFF_UDP_SRC, oxm,
  984|     90|                        flow->tp_src, match->wc.masks.tp_src);
  985|     90|            nxm_put_16m(ctx, MFF_UDP_DST, oxm,
  986|     90|                        flow->tp_dst, match->wc.masks.tp_dst);
  987|    238|        } else if (flow->nw_proto == IPPROTO_SCTP) {
  ------------------
  |  Branch (987:20): [True: 56, False: 182]
  ------------------
  988|     56|            nxm_put_16m(ctx, MFF_SCTP_SRC, oxm, flow->tp_src,
  989|     56|                        match->wc.masks.tp_src);
  990|     56|            nxm_put_16m(ctx, MFF_SCTP_DST, oxm, flow->tp_dst,
  991|     56|                        match->wc.masks.tp_dst);
  992|    182|        } else if (is_icmpv4(flow, NULL)) {
  ------------------
  |  Branch (992:20): [True: 27, False: 155]
  ------------------
  993|     27|            if (match->wc.masks.tp_src) {
  ------------------
  |  Branch (993:17): [True: 9, False: 18]
  ------------------
  994|      9|                nxm_put_8(ctx, MFF_ICMPV4_TYPE, oxm,
  995|      9|                          ntohs(flow->tp_src));
  996|      9|            }
  997|     27|            if (match->wc.masks.tp_dst) {
  ------------------
  |  Branch (997:17): [True: 10, False: 17]
  ------------------
  998|     10|                nxm_put_8(ctx, MFF_ICMPV4_CODE, oxm,
  999|     10|                          ntohs(flow->tp_dst));
 1000|     10|            }
 1001|    155|        } else if (is_icmpv6(flow, NULL)) {
  ------------------
  |  Branch (1001:20): [True: 141, False: 14]
  ------------------
 1002|    141|            if (match->wc.masks.tp_src) {
  ------------------
  |  Branch (1002:17): [True: 78, False: 63]
  ------------------
 1003|     78|                nxm_put_8(ctx, MFF_ICMPV6_TYPE, oxm,
 1004|     78|                          ntohs(flow->tp_src));
 1005|     78|            }
 1006|    141|            if (match->wc.masks.tp_dst) {
  ------------------
  |  Branch (1006:17): [True: 18, False: 123]
  ------------------
 1007|     18|                nxm_put_8(ctx, MFF_ICMPV6_CODE, oxm,
 1008|     18|                          ntohs(flow->tp_dst));
 1009|     18|            }
 1010|    141|            if (is_nd(flow, NULL)) {
  ------------------
  |  Branch (1010:17): [True: 54, False: 87]
  ------------------
 1011|     54|                if (match->wc.masks.igmp_group_ip4) {
  ------------------
  |  Branch (1011:21): [True: 0, False: 54]
  ------------------
 1012|      0|                    nxm_put_32(ctx, MFF_ND_RESERVED, oxm,
 1013|      0|                           flow->igmp_group_ip4);
 1014|      0|                }
 1015|     54|                nxm_put_ipv6(ctx, MFF_ND_TARGET, oxm,
 1016|     54|                             &flow->nd_target, &match->wc.masks.nd_target);
 1017|     54|                if (match->wc.masks.tcp_flags) {
  ------------------
  |  Branch (1017:21): [True: 1, False: 53]
  ------------------
 1018|      1|                   nxm_put_8(ctx, MFF_ND_OPTIONS_TYPE, oxm,
 1019|      1|                             ntohs(flow->tcp_flags));
 1020|      1|                }
 1021|     54|                if (flow->tp_src == htons(ND_NEIGHBOR_SOLICIT)) {
  ------------------
  |  Branch (1021:21): [True: 24, False: 30]
  ------------------
 1022|     24|                    nxm_put_eth_masked(ctx, MFF_ND_SLL, oxm,
 1023|     24|                                       flow->arp_sha, match->wc.masks.arp_sha);
 1024|     24|                }
 1025|     54|                if (flow->tp_src == htons(ND_NEIGHBOR_ADVERT)) {
  ------------------
  |  Branch (1025:21): [True: 30, False: 24]
  ------------------
 1026|     30|                    nxm_put_eth_masked(ctx, MFF_ND_TLL, oxm,
 1027|     30|                                       flow->arp_tha, match->wc.masks.arp_tha);
 1028|     30|                }
 1029|     54|            }
 1030|    141|        }
 1031|    432|    }
 1032|    583|}
nx-match.c:nxm_put_frag:
  919|    583|{
  920|    583|    uint8_t nw_frag = match->flow.nw_frag & FLOW_NW_FRAG_MASK;
  ------------------
  |  |   56|    583|#define FLOW_NW_FRAG_MASK  (FLOW_NW_FRAG_ANY | FLOW_NW_FRAG_LATER)
  |  |  ------------------
  |  |  |  |   54|    583|#define FLOW_NW_FRAG_ANY   (1 << 0) /* Set for any IP frag. */
  |  |  ------------------
  |  |               #define FLOW_NW_FRAG_MASK  (FLOW_NW_FRAG_ANY | FLOW_NW_FRAG_LATER)
  |  |  ------------------
  |  |  |  |   55|    583|#define FLOW_NW_FRAG_LATER (1 << 1) /* Set for IP frag with nonzero offset. */
  |  |  ------------------
  ------------------
  921|    583|    uint8_t nw_frag_mask = match->wc.masks.nw_frag & FLOW_NW_FRAG_MASK;
  ------------------
  |  |   56|    583|#define FLOW_NW_FRAG_MASK  (FLOW_NW_FRAG_ANY | FLOW_NW_FRAG_LATER)
  |  |  ------------------
  |  |  |  |   54|    583|#define FLOW_NW_FRAG_ANY   (1 << 0) /* Set for any IP frag. */
  |  |  ------------------
  |  |               #define FLOW_NW_FRAG_MASK  (FLOW_NW_FRAG_ANY | FLOW_NW_FRAG_LATER)
  |  |  ------------------
  |  |  |  |   55|    583|#define FLOW_NW_FRAG_LATER (1 << 1) /* Set for IP frag with nonzero offset. */
  |  |  ------------------
  ------------------
  922|       |
  923|    583|    nxm_put_8m(ctx, MFF_IP_FRAG, version, nw_frag,
  924|    583|               nw_frag_mask == FLOW_NW_FRAG_MASK ? UINT8_MAX : nw_frag_mask);
  ------------------
  |  |   56|    583|#define FLOW_NW_FRAG_MASK  (FLOW_NW_FRAG_ANY | FLOW_NW_FRAG_LATER)
  |  |  ------------------
  |  |  |  |   54|    583|#define FLOW_NW_FRAG_ANY   (1 << 0) /* Set for any IP frag. */
  |  |  ------------------
  |  |               #define FLOW_NW_FRAG_MASK  (FLOW_NW_FRAG_ANY | FLOW_NW_FRAG_LATER)
  |  |  ------------------
  |  |  |  |   55|    583|#define FLOW_NW_FRAG_LATER (1 << 1) /* Set for IP frag with nonzero offset. */
  |  |  ------------------
  ------------------
  |  Branch (924:16): [True: 25, False: 558]
  ------------------
  925|    583|}
nx-match.c:nxm_put_64m:
  887|  8.21k|{
  888|  8.21k|    nxm_put(ctx, field, version, &value, &mask, sizeof value);
  889|  8.21k|}
nx-match.c:nxm_put_ipv6:
  911|  17.1k|{
  912|  17.1k|    nxm_put(ctx, field, version, value->s6_addr, mask->s6_addr,
  913|       |            sizeof value->s6_addr);
  914|  17.1k|}
nx-match.c:nxm_put_8m:
  842|  45.7k|{
  843|  45.7k|    nxm_put(ctx, field, version, &value, &mask, sizeof value);
  844|  45.7k|}
nx-match.c:nxm_put_128m:
  895|  4.10k|{
  896|  4.10k|    nxm_put(ctx, field, version, &value, &mask, sizeof(value));
  897|  4.10k|}
nx-match.c:nx_put_header__:
 1455|  22.8k|{
 1456|  22.8k|    uint64_t masked_header = masked ? nxm_make_wild_header(header) : header;
  ------------------
  |  Branch (1456:30): [True: 8.56k, False: 14.2k]
  ------------------
 1457|  22.8k|    ovs_be64 network_header = htonll(masked_header);
 1458|       |
 1459|  22.8k|    ofpbuf_put(b, &network_header, nxm_header_len(header));
 1460|  22.8k|}
nx-match.c:nx_put_header_len:
 1482|  17.9k|{
 1483|  17.9k|    uint64_t header = mf_oxm_header(field, version);
 1484|       |
 1485|  17.9k|    header = NXM_HEADER(nxm_vendor(header), nxm_class(header),
  ------------------
  |  |  150|  17.9k|    (((uint64_t) (CLASS) << 48) |                               \
  |  |  151|  17.9k|     ((uint64_t) (FIELD) << 41) |                               \
  |  |  152|  17.9k|     ((uint64_t) (HASMASK) << 40) |                             \
  |  |  153|  17.9k|     ((uint64_t) (LENGTH) << 32) |                              \
  |  |  154|  17.9k|     (VENDOR))
  ------------------
 1486|  17.9k|                        nxm_field(header), false,
 1487|  17.9k|                        nxm_experimenter_len(header) + n_bytes);
 1488|       |
 1489|  17.9k|    nx_put_header__(b, header, masked);
 1490|  17.9k|}
nx-match.c:mf_parse_subfield_name:
 2055|   181k|{
 2056|   181k|    *wild = name_len > 2 && !memcmp(&name[name_len - 2], "_W", 2);
  ------------------
  |  Branch (2056:13): [True: 131k, False: 49.8k]
  |  Branch (2056:29): [True: 300, False: 131k]
  ------------------
 2057|   181k|    if (*wild) {
  ------------------
  |  Branch (2057:9): [True: 300, False: 181k]
  ------------------
 2058|    300|        name_len -= 2;
 2059|    300|    }
 2060|       |
 2061|   181k|    return nxm_field_by_name(name, name_len);
 2062|   181k|}
nx-match.c:nxm_class:
  100|   298k|static int nxm_class(uint64_t header) { return header >> 48; }
nx-match.c:nxm_field:
  101|  26.4k|static int nxm_field(uint64_t header) { return (header >> 41) & 0x7f; }
nx-match.c:nxm_init:
 2263|   410k|{
 2264|   410k|    static struct ovsthread_once once = OVSTHREAD_ONCE_INITIALIZER;
  ------------------
  |  |  134|   410k|    {                                           \
  |  |  135|   410k|        false,                                  \
  |  |  136|   410k|        OVS_MUTEX_INITIALIZER,                  \
  |  |  ------------------
  |  |  |  |   45|   410k|#define OVS_MUTEX_INITIALIZER { PTHREAD_ERRORCHECK_MUTEX_INITIALIZER_NP, \
  |  |  |  |   46|   410k|                                "<unlocked>" }
  |  |  ------------------
  |  |  137|   410k|    }
  ------------------
 2265|   410k|    if (ovsthread_once_start(&once)) {
  ------------------
  |  Branch (2265:9): [True: 1, False: 410k]
  ------------------
 2266|      1|        hmap_init(&nxm_header_map);
 2267|      1|        hmap_init(&nxm_name_map);
 2268|    212|        for (int i = 0; i < MFF_N_IDS; i++) {
  ------------------
  |  Branch (2268:25): [True: 211, False: 1]
  ------------------
 2269|    211|            ovs_list_init(&nxm_mf_map[i]);
 2270|    211|        }
 2271|      1|        for (struct nxm_field_index *nfi = all_nxm_fields;
 2272|    238|             nfi < &all_nxm_fields[ARRAY_SIZE(all_nxm_fields)]; nfi++) {
  ------------------
  |  |  297|    238|#define ARRAY_SIZE(ARRAY) __ARRAY_SIZE(ARRAY)
  |  |  ------------------
  |  |  |  |   46|    238|    __builtin_choose_expr(__ARRAY_CHECK(ARRAY),			\
  |  |  |  |  ------------------
  |  |  |  |  |  |   41|    238|    !__builtin_types_compatible_p(typeof(ARRAY), typeof(&ARRAY[0]))
  |  |  |  |  ------------------
  |  |  |  |   47|    238|        __ARRAY_SIZE_NOCHECK(ARRAY), __ARRAY_FAIL(ARRAY))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|    238|#define __ARRAY_SIZE_NOCHECK(ARRAY) (sizeof(ARRAY) / sizeof((ARRAY)[0]))
  |  |  |  |  ------------------
  |  |  |  |                       __ARRAY_SIZE_NOCHECK(ARRAY), __ARRAY_FAIL(ARRAY))
  |  |  |  |  ------------------
  |  |  |  |  |  |   44|    238|#define __ARRAY_FAIL(ARRAY) (sizeof(char[-2*!__ARRAY_CHECK(ARRAY)]))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  |  Branch (2272:14): [True: 237, False: 1]
  ------------------
 2273|    237|            hmap_insert(&nxm_header_map, &nfi->header_node,
  ------------------
  |  |  101|    237|    hmap_insert_at(HMAP, NODE, HASH, OVS_SOURCE_LOCATOR)
  |  |  ------------------
  |  |  |  |   37|    237|#define OVS_SOURCE_LOCATOR __FILE__ ":" OVS_STRINGIZE(__LINE__)
  |  |  |  |  ------------------
  |  |  |  |  |  |   38|    237|#define OVS_STRINGIZE(ARG) OVS_STRINGIZE2(ARG)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   39|    237|#define OVS_STRINGIZE2(ARG) #ARG
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 2274|    237|                        hash_uint64(nxm_no_len(nfi->nf.header)));
 2275|    237|            hmap_insert(&nxm_name_map, &nfi->name_node,
  ------------------
  |  |  101|    237|    hmap_insert_at(HMAP, NODE, HASH, OVS_SOURCE_LOCATOR)
  |  |  ------------------
  |  |  |  |   37|    237|#define OVS_SOURCE_LOCATOR __FILE__ ":" OVS_STRINGIZE(__LINE__)
  |  |  |  |  ------------------
  |  |  |  |  |  |   38|    237|#define OVS_STRINGIZE(ARG) OVS_STRINGIZE2(ARG)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   39|    237|#define OVS_STRINGIZE2(ARG) #ARG
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 2276|    237|                        hash_string(nfi->nf.name, 0));
 2277|    237|            ovs_list_push_back(&nxm_mf_map[nfi->nf.id], &nfi->mf_node);
 2278|    237|        }
 2279|      1|        ovsthread_once_done(&once);
 2280|      1|    }
 2281|   410k|}
nx-match.c:nxm_field_by_name:
 2318|   181k|{
 2319|   181k|    const struct nxm_field_index *nfi;
 2320|       |
 2321|   181k|    nxm_init();
 2322|   181k|    HMAP_FOR_EACH_WITH_HASH (nfi, name_node, hash_bytes(name, len, 0),
  ------------------
  |  |  138|   181k|    for (INIT_MULTIVAR(NODE, MEMBER, hmap_first_with_hash(HMAP, HASH),        \
  |  |  ------------------
  |  |  |  |  171|   181k|    INIT_MULTIVAR_EXP(VAR, MEMBER, POINTER, ITER_TYPE, (void) 0)
  |  |  |  |  ------------------
  |  |  |  |  |  |  174|   181k|    ITER_TYPE *ITER_VAR(VAR) = ( __VA_ARGS__ , (ITER_TYPE *) POINTER)
  |  |  |  |  ------------------
  |  |  ------------------
  |  |  139|   181k|                       struct hmap_node);                                     \
  |  |  140|   182k|         CONDITION_MULTIVAR(NODE, MEMBER, ITER_VAR(NODE) != NULL);            \
  |  |  ------------------
  |  |  |  |  185|   182k|    ((EXPR) ?                                                                 \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (185:5): [True: 2.72k, False: 179k]
  |  |  |  |  |  Branch (185:6): [True: 2.72k, False: 179k]
  |  |  |  |  ------------------
  |  |  |  |  186|   182k|     (((VAR) = OBJECT_CONTAINING(ITER_VAR(VAR), VAR, MEMBER)), 1) :           \
  |  |  |  |  ------------------
  |  |  |  |  |  |  134|  2.72k|    ((OVS_TYPEOF(OBJECT)) (void *)                                      \
  |  |  |  |  |  |  135|  2.72k|     ((char *) (POINTER) - OBJECT_OFFSETOF(OBJECT, MEMBER)))
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  108|  2.72k|#define OBJECT_OFFSETOF(OBJECT, MEMBER) offsetof(typeof(*(OBJECT)), MEMBER)
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  |  |  187|   182k|     (((VAR) = NULL), 0))
  |  |  ------------------
  |  |  141|   181k|         UPDATE_MULTIVAR(NODE, hmap_next_with_hash(ITER_VAR(NODE))))
  |  |  ------------------
  |  |  |  |  193|    204|    (ITER_VAR(VAR) = NEXT_ITER)
  |  |  |  |  ------------------
  |  |  |  |  |  |  162|    204|#define ITER_VAR(NAME) NAME ## __iterator__
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 2323|   181k|                             &nxm_name_map) {
 2324|  2.72k|        if (strlen(nfi->nf.name) == len && !memcmp(nfi->nf.name, name, len)) {
  ------------------
  |  Branch (2324:13): [True: 2.52k, False: 203]
  |  Branch (2324:44): [True: 2.52k, False: 1]
  ------------------
 2325|  2.52k|            return &nfi->nf;
 2326|  2.52k|        }
 2327|  2.72k|    }
 2328|   179k|    return NULL;
 2329|   181k|}
nx-match.c:nxm_field_by_mf_id:
 2333|   228k|{
 2334|   228k|    const struct nxm_field_index *nfi;
 2335|   228k|    const struct nxm_field *f;
 2336|       |
 2337|   228k|    nxm_init();
 2338|       |
 2339|   228k|    f = NULL;
 2340|   240k|    LIST_FOR_EACH (nfi, mf_node, &nxm_mf_map[id]) {
  ------------------
  |  |   76|   228k|    for (INIT_MULTIVAR(VAR, MEMBER, (LIST)->next, struct ovs_list);           \
  |  |  ------------------
  |  |  |  |  171|   228k|    INIT_MULTIVAR_EXP(VAR, MEMBER, POINTER, ITER_TYPE, (void) 0)
  |  |  |  |  ------------------
  |  |  |  |  |  |  174|   228k|    ITER_TYPE *ITER_VAR(VAR) = ( __VA_ARGS__ , (ITER_TYPE *) POINTER)
  |  |  |  |  ------------------
  |  |  ------------------
  |  |   77|   468k|         CONDITION_MULTIVAR(VAR, MEMBER, ITER_VAR(VAR) != (LIST));            \
  |  |  ------------------
  |  |  |  |  185|   468k|    ((EXPR) ?                                                                 \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (185:5): [True: 240k, False: 228k]
  |  |  |  |  |  Branch (185:6): [True: 240k, False: 228k]
  |  |  |  |  ------------------
  |  |  |  |  186|   468k|     (((VAR) = OBJECT_CONTAINING(ITER_VAR(VAR), VAR, MEMBER)), 1) :           \
  |  |  |  |  ------------------
  |  |  |  |  |  |  134|   240k|    ((OVS_TYPEOF(OBJECT)) (void *)                                      \
  |  |  |  |  |  |  135|   240k|     ((char *) (POINTER) - OBJECT_OFFSETOF(OBJECT, MEMBER)))
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  108|   240k|#define OBJECT_OFFSETOF(OBJECT, MEMBER) offsetof(typeof(*(OBJECT)), MEMBER)
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  |  |  187|   468k|     (((VAR) = NULL), 0))
  |  |  ------------------
  |  |   78|   240k|         UPDATE_MULTIVAR(VAR, ITER_VAR(VAR)->next))
  |  |  ------------------
  |  |  |  |  193|   240k|    (ITER_VAR(VAR) = NEXT_ITER)
  |  |  |  |  ------------------
  |  |  |  |  |  |  162|   240k|#define ITER_VAR(NAME) NAME ## __iterator__
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 2341|   240k|        if (!f || version >= nfi->nf.version) {
  ------------------
  |  Branch (2341:13): [True: 226k, False: 13.4k]
  |  Branch (2341:19): [True: 2.50k, False: 10.9k]
  ------------------
 2342|   229k|            f = &nfi->nf;
 2343|   229k|        }
 2344|   240k|    }
 2345|   228k|    return f;
 2346|   228k|}

ofp-actions.c:nxm_encode_ofs_nbits:
  161|  77.6k|{
  162|       |    return htons((ofs << 6) | (n_bits - 1));
  163|  77.6k|}

ofpact_put_set_field:
 3385|  48.1k|{
 3386|       |    /* Ensure there's enough space for:
 3387|       |     * - value (8-byte aligned)
 3388|       |     * - mask  (8-byte aligned)
 3389|       |     * - padding (to make the whole ofpact_set_field 8-byte aligned)
 3390|       |     */
 3391|  48.1k|    size_t total_size = 2 * ROUND_UP(field->n_bytes, OFPACT_ALIGNTO);
  ------------------
  |  |  303|  48.1k|#define ROUND_UP(X, Y) (DIV_ROUND_UP(X, Y) * (Y))
  |  |  ------------------
  |  |  |  |  300|  48.1k|#define DIV_ROUND_UP(X, Y) (((X) + ((Y) - 1)) / (Y))
  |  |  ------------------
  ------------------
 3392|  48.1k|    struct ofpact_set_field *sf = ofpact_put_SET_FIELD(ofpacts);
 3393|  48.1k|    sf->field = field;
 3394|       |
 3395|       |    /* Fill with all zeroes to make sure the padding is initialized. */
 3396|  48.1k|    ofpbuf_put_zeros(ofpacts, total_size);
 3397|  48.1k|    sf = ofpacts->header;
 3398|       |
 3399|       |    /* Fill in the value and mask if given, otherwise keep the zeroes
 3400|       |     * so that the caller may fill in the value and mask itself. */
 3401|  48.1k|    if (value) {
  ------------------
  |  Branch (3401:9): [True: 47.5k, False: 626]
  ------------------
 3402|  47.5k|        memcpy(sf->value, value, field->n_bytes);
 3403|  47.5k|        if (mask) {
  ------------------
  |  Branch (3403:13): [True: 47.5k, False: 0]
  ------------------
 3404|  47.5k|            memcpy(ofpact_set_field_mask(sf), mask, field->n_bytes);
  ------------------
  |  |  563|  47.5k|    ALIGNED_CAST(union mf_value *,                                          \
  |  |  ------------------
  |  |  |  |  434|  47.5k|#define ALIGNED_CAST(TYPE, ATTR) ((TYPE) (void *) (ATTR))
  |  |  ------------------
  |  |  564|  47.5k|                 (uint8_t *)(SF)->value +                                   \
  |  |  565|  47.5k|                            ROUND_UP((SF)->field->n_bytes, OFPACT_ALIGNTO))
  ------------------
 3405|  47.5k|        } else {
 3406|      0|            memset(ofpact_set_field_mask(sf), 0xff, field->n_bytes);
  ------------------
  |  |  563|      0|    ALIGNED_CAST(union mf_value *,                                          \
  |  |  ------------------
  |  |  |  |  434|      0|#define ALIGNED_CAST(TYPE, ATTR) ((TYPE) (void *) (ATTR))
  |  |  ------------------
  |  |  564|      0|                 (uint8_t *)(SF)->value +                                   \
  |  |  565|      0|                            ROUND_UP((SF)->field->n_bytes, OFPACT_ALIGNTO))
  ------------------
 3407|      0|        }
 3408|  47.5k|    }
 3409|       |
 3410|       |    /* Update length. */
 3411|  48.1k|    ofpact_finish_SET_FIELD(ofpacts, &sf);
 3412|       |
 3413|  48.1k|    return sf;
 3414|  48.1k|}
ofpact_put_reg_load:
 3424|    626|{
 3425|    626|    struct ofpact_set_field *sf = ofpact_put_set_field(ofpacts, field, value,
 3426|    626|                                                       mask);
 3427|    626|    sf->ofpact.raw = NXAST_RAW_REG_LOAD;
 3428|       |
 3429|    626|    return sf;
 3430|    626|}
ovs_instruction_name_from_type:
 8363|     70|{
 8364|     70|    return type < ARRAY_SIZE(inst_info) ? inst_info[type].name : NULL;
  ------------------
  |  |  297|     70|#define ARRAY_SIZE(ARRAY) __ARRAY_SIZE(ARRAY)
  |  |  ------------------
  |  |  |  |   46|     70|    __builtin_choose_expr(__ARRAY_CHECK(ARRAY),			\
  |  |  |  |  ------------------
  |  |  |  |  |  |   41|     70|    !__builtin_types_compatible_p(typeof(ARRAY), typeof(&ARRAY[0]))
  |  |  |  |  ------------------
  |  |  |  |   47|     70|        __ARRAY_SIZE_NOCHECK(ARRAY), __ARRAY_FAIL(ARRAY))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|     70|#define __ARRAY_SIZE_NOCHECK(ARRAY) (sizeof(ARRAY) / sizeof((ARRAY)[0]))
  |  |  |  |  ------------------
  |  |  |  |                       __ARRAY_SIZE_NOCHECK(ARRAY), __ARRAY_FAIL(ARRAY))
  |  |  |  |  ------------------
  |  |  |  |  |  |   44|     70|#define __ARRAY_FAIL(ARRAY) (sizeof(char[-2*!__ARRAY_CHECK(ARRAY)]))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  |  Branch (8364:12): [True: 70, False: 0]
  ------------------
 8365|     70|}
ovs_instruction_type_from_ofpact_type:
 8382|   308k|{
 8383|   308k|    switch (type) {
 8384|    251|    case OFPACT_METER:
  ------------------
  |  Branch (8384:5): [True: 251, False: 308k]
  ------------------
 8385|    251|        return (version >= OFP15_VERSION
  ------------------
  |  Branch (8385:17): [True: 0, False: 251]
  ------------------
 8386|    251|                ? OVSINST_OFPIT11_APPLY_ACTIONS
 8387|    251|                : OVSINST_OFPIT13_METER);
 8388|     31|    case OFPACT_CLEAR_ACTIONS:
  ------------------
  |  Branch (8388:5): [True: 31, False: 308k]
  ------------------
 8389|     31|        return OVSINST_OFPIT11_CLEAR_ACTIONS;
 8390|    157|    case OFPACT_WRITE_ACTIONS:
  ------------------
  |  Branch (8390:5): [True: 157, False: 308k]
  ------------------
 8391|    157|        return OVSINST_OFPIT11_WRITE_ACTIONS;
 8392|     15|    case OFPACT_WRITE_METADATA:
  ------------------
  |  Branch (8392:5): [True: 15, False: 308k]
  ------------------
 8393|     15|        return OVSINST_OFPIT11_WRITE_METADATA;
 8394|     31|    case OFPACT_GOTO_TABLE:
  ------------------
  |  Branch (8394:5): [True: 31, False: 308k]
  ------------------
 8395|     31|        return OVSINST_OFPIT11_GOTO_TABLE;
 8396|   129k|    case OFPACT_OUTPUT:
  ------------------
  |  Branch (8396:5): [True: 129k, False: 179k]
  ------------------
 8397|   129k|    case OFPACT_GROUP:
  ------------------
  |  Branch (8397:5): [True: 209, False: 308k]
  ------------------
 8398|   137k|    case OFPACT_CLONE:
  ------------------
  |  Branch (8398:5): [True: 7.61k, False: 301k]
  ------------------
 8399|   145k|    case OFPACT_CONTROLLER:
  ------------------
  |  Branch (8399:5): [True: 7.92k, False: 301k]
  ------------------
 8400|   146k|    case OFPACT_ENQUEUE:
  ------------------
  |  Branch (8400:5): [True: 1.12k, False: 307k]
  ------------------
 8401|   147k|    case OFPACT_OUTPUT_REG:
  ------------------
  |  Branch (8401:5): [True: 848, False: 308k]
  ------------------
 8402|   148k|    case OFPACT_OUTPUT_TRUNC:
  ------------------
  |  Branch (8402:5): [True: 876, False: 308k]
  ------------------
 8403|   149k|    case OFPACT_BUNDLE:
  ------------------
  |  Branch (8403:5): [True: 1.04k, False: 307k]
  ------------------
 8404|   151k|    case OFPACT_SET_VLAN_VID:
  ------------------
  |  Branch (8404:5): [True: 2.23k, False: 306k]
  ------------------
 8405|   153k|    case OFPACT_SET_VLAN_PCP:
  ------------------
  |  Branch (8405:5): [True: 2.06k, False: 306k]
  ------------------
 8406|   157k|    case OFPACT_STRIP_VLAN:
  ------------------
  |  Branch (8406:5): [True: 3.92k, False: 305k]
  ------------------
 8407|   160k|    case OFPACT_PUSH_VLAN:
  ------------------
  |  Branch (8407:5): [True: 2.60k, False: 306k]
  ------------------
 8408|   160k|    case OFPACT_SET_ETH_SRC:
  ------------------
  |  Branch (8408:5): [True: 647, False: 308k]
  ------------------
 8409|   161k|    case OFPACT_SET_ETH_DST:
  ------------------
  |  Branch (8409:5): [True: 1.20k, False: 307k]
  ------------------
 8410|   164k|    case OFPACT_SET_IPV4_SRC:
  ------------------
  |  Branch (8410:5): [True: 2.32k, False: 306k]
  ------------------
 8411|   165k|    case OFPACT_SET_IPV4_DST:
  ------------------
  |  Branch (8411:5): [True: 840, False: 308k]
  ------------------
 8412|   167k|    case OFPACT_SET_IP_DSCP:
  ------------------
  |  Branch (8412:5): [True: 1.92k, False: 307k]
  ------------------
 8413|   168k|    case OFPACT_SET_IP_ECN:
  ------------------
  |  Branch (8413:5): [True: 1.70k, False: 307k]
  ------------------
 8414|   171k|    case OFPACT_SET_IP_TTL:
  ------------------
  |  Branch (8414:5): [True: 3.09k, False: 305k]
  ------------------
 8415|   175k|    case OFPACT_SET_L4_SRC_PORT:
  ------------------
  |  Branch (8415:5): [True: 3.62k, False: 305k]
  ------------------
 8416|   177k|    case OFPACT_SET_L4_DST_PORT:
  ------------------
  |  Branch (8416:5): [True: 2.11k, False: 306k]
  ------------------
 8417|   178k|    case OFPACT_REG_MOVE:
  ------------------
  |  Branch (8417:5): [True: 650, False: 308k]
  ------------------
 8418|   209k|    case OFPACT_SET_FIELD:
  ------------------
  |  Branch (8418:5): [True: 31.7k, False: 277k]
  ------------------
 8419|   210k|    case OFPACT_STACK_PUSH:
  ------------------
  |  Branch (8419:5): [True: 376, False: 308k]
  ------------------
 8420|   212k|    case OFPACT_STACK_POP:
  ------------------
  |  Branch (8420:5): [True: 2.15k, False: 306k]
  ------------------
 8421|   215k|    case OFPACT_DEC_TTL:
  ------------------
  |  Branch (8421:5): [True: 3.07k, False: 305k]
  ------------------
 8422|   218k|    case OFPACT_SET_MPLS_LABEL:
  ------------------
  |  Branch (8422:5): [True: 3.04k, False: 305k]
  ------------------
 8423|   221k|    case OFPACT_SET_MPLS_TC:
  ------------------
  |  Branch (8423:5): [True: 2.63k, False: 306k]
  ------------------
 8424|   222k|    case OFPACT_SET_MPLS_TTL:
  ------------------
  |  Branch (8424:5): [True: 1.35k, False: 307k]
  ------------------
 8425|   224k|    case OFPACT_DEC_MPLS_TTL:
  ------------------
  |  Branch (8425:5): [True: 2.32k, False: 306k]
  ------------------
 8426|   225k|    case OFPACT_PUSH_MPLS:
  ------------------
  |  Branch (8426:5): [True: 744, False: 308k]
  ------------------
 8427|   227k|    case OFPACT_POP_MPLS:
  ------------------
  |  Branch (8427:5): [True: 1.32k, False: 307k]
  ------------------
 8428|   228k|    case OFPACT_SET_TUNNEL:
  ------------------
  |  Branch (8428:5): [True: 1.64k, False: 307k]
  ------------------
 8429|   228k|    case OFPACT_SET_QUEUE:
  ------------------
  |  Branch (8429:5): [True: 263, False: 308k]
  ------------------
 8430|   229k|    case OFPACT_POP_QUEUE:
  ------------------
  |  Branch (8430:5): [True: 452, False: 308k]
  ------------------
 8431|   229k|    case OFPACT_FIN_TIMEOUT:
  ------------------
  |  Branch (8431:5): [True: 440, False: 308k]
  ------------------
 8432|   231k|    case OFPACT_RESUBMIT:
  ------------------
  |  Branch (8432:5): [True: 1.23k, False: 307k]
  ------------------
 8433|   266k|    case OFPACT_LEARN:
  ------------------
  |  Branch (8433:5): [True: 35.6k, False: 273k]
  ------------------
 8434|   266k|    case OFPACT_CONJUNCTION:
  ------------------
  |  Branch (8434:5): [True: 0, False: 308k]
  ------------------
 8435|   267k|    case OFPACT_MULTIPATH:
  ------------------
  |  Branch (8435:5): [True: 380, False: 308k]
  ------------------
 8436|   268k|    case OFPACT_NOTE:
  ------------------
  |  Branch (8436:5): [True: 1.57k, False: 307k]
  ------------------
 8437|   271k|    case OFPACT_EXIT:
  ------------------
  |  Branch (8437:5): [True: 2.51k, False: 306k]
  ------------------
 8438|   271k|    case OFPACT_UNROLL_XLATE:
  ------------------
  |  Branch (8438:5): [True: 0, False: 308k]
  ------------------
 8439|   272k|    case OFPACT_SAMPLE:
  ------------------
  |  Branch (8439:5): [True: 1.76k, False: 307k]
  ------------------
 8440|   274k|    case OFPACT_DEBUG_RECIRC:
  ------------------
  |  Branch (8440:5): [True: 1.22k, False: 307k]
  ------------------
 8441|   276k|    case OFPACT_DEBUG_SLOW:
  ------------------
  |  Branch (8441:5): [True: 1.89k, False: 307k]
  ------------------
 8442|   293k|    case OFPACT_CT:
  ------------------
  |  Branch (8442:5): [True: 17.4k, False: 291k]
  ------------------
 8443|   295k|    case OFPACT_CT_CLEAR:
  ------------------
  |  Branch (8443:5): [True: 1.86k, False: 307k]
  ------------------
 8444|   300k|    case OFPACT_NAT:
  ------------------
  |  Branch (8444:5): [True: 5.15k, False: 303k]
  ------------------
 8445|   303k|    case OFPACT_ENCAP:
  ------------------
  |  Branch (8445:5): [True: 2.75k, False: 306k]
  ------------------
 8446|   305k|    case OFPACT_DECAP:
  ------------------
  |  Branch (8446:5): [True: 2.68k, False: 306k]
  ------------------
 8447|   307k|    case OFPACT_DEC_NSH_TTL:
  ------------------
  |  Branch (8447:5): [True: 1.20k, False: 307k]
  ------------------
 8448|   308k|    case OFPACT_CHECK_PKT_LARGER:
  ------------------
  |  Branch (8448:5): [True: 913, False: 308k]
  ------------------
 8449|   308k|    case OFPACT_DELETE_FIELD:
  ------------------
  |  Branch (8449:5): [True: 376, False: 308k]
  ------------------
 8450|   308k|    default:
  ------------------
  |  Branch (8450:5): [True: 0, False: 308k]
  ------------------
 8451|   308k|        return OVSINST_OFPIT11_APPLY_ACTIONS;
 8452|   308k|    }
 8453|   308k|}
ofpact_check_output_port:
 8782|   149k|{
 8783|   149k|    switch (port) {
 8784|    849|    case OFPP_IN_PORT:
  ------------------
  |  |   39|    849|#define OFPP_IN_PORT    OFP_PORT_C(0xfff8) /* Where the packet came in. */
  |  |  ------------------
  |  |  |  |  157|    849|#define OFP_PORT_C(X) ((OVS_FORCE ofp_port_t) (X))
  |  |  ------------------
  ------------------
  |  Branch (8784:5): [True: 849, False: 148k]
  ------------------
 8785|  2.86k|    case OFPP_TABLE:
  ------------------
  |  |   40|  2.86k|#define OFPP_TABLE      OFP_PORT_C(0xfff9) /* Perform actions in flow table. */
  |  |  ------------------
  |  |  |  |  157|  2.86k|#define OFP_PORT_C(X) ((OVS_FORCE ofp_port_t) (X))
  |  |  ------------------
  ------------------
  |  Branch (8785:5): [True: 2.01k, False: 147k]
  ------------------
 8786|  3.11k|    case OFPP_NORMAL:
  ------------------
  |  |   41|  3.11k|#define OFPP_NORMAL     OFP_PORT_C(0xfffa) /* Process with normal L2/L3. */
  |  |  ------------------
  |  |  |  |  157|  3.11k|#define OFP_PORT_C(X) ((OVS_FORCE ofp_port_t) (X))
  |  |  ------------------
  ------------------
  |  Branch (8786:5): [True: 256, False: 149k]
  ------------------
 8787|  3.64k|    case OFPP_FLOOD:
  ------------------
  |  |   42|  3.64k|#define OFPP_FLOOD      OFP_PORT_C(0xfffb) /* All ports except input port and
  |  |  ------------------
  |  |  |  |  157|  3.64k|#define OFP_PORT_C(X) ((OVS_FORCE ofp_port_t) (X))
  |  |  ------------------
  ------------------
  |  Branch (8787:5): [True: 524, False: 149k]
  ------------------
 8788|  4.30k|    case OFPP_ALL:
  ------------------
  |  |   44|  4.30k|#define OFPP_ALL        OFP_PORT_C(0xfffc) /* All ports except input port. */
  |  |  ------------------
  |  |  |  |  157|  4.30k|#define OFP_PORT_C(X) ((OVS_FORCE ofp_port_t) (X))
  |  |  ------------------
  ------------------
  |  Branch (8788:5): [True: 664, False: 149k]
  ------------------
 8789|  6.09k|    case OFPP_CONTROLLER:
  ------------------
  |  |   45|  6.09k|#define OFPP_CONTROLLER OFP_PORT_C(0xfffd) /* Send to controller. */
  |  |  ------------------
  |  |  |  |  157|  6.09k|#define OFP_PORT_C(X) ((OVS_FORCE ofp_port_t) (X))
  |  |  ------------------
  ------------------
  |  Branch (8789:5): [True: 1.79k, False: 147k]
  ------------------
 8790|  6.18k|    case OFPP_LOCAL:
  ------------------
  |  |   46|  6.18k|#define OFPP_LOCAL      OFP_PORT_C(0xfffe) /* Local openflow "port". */
  |  |  ------------------
  |  |  |  |  157|  6.18k|#define OFP_PORT_C(X) ((OVS_FORCE ofp_port_t) (X))
  |  |  ------------------
  ------------------
  |  Branch (8790:5): [True: 85, False: 149k]
  ------------------
 8791|  6.18k|        return 0;
 8792|       |
 8793|     12|    case OFPP_NONE:
  ------------------
  |  |   47|     12|#define OFPP_NONE       OFP_PORT_C(0xffff) /* Not associated with any port. */
  |  |  ------------------
  |  |  |  |  157|     12|#define OFP_PORT_C(X) ((OVS_FORCE ofp_port_t) (X))
  |  |  ------------------
  ------------------
  |  Branch (8793:5): [True: 12, False: 149k]
  ------------------
 8794|     12|        return OFPERR_OFPBAC_BAD_OUT_PORT;
 8795|       |
 8796|   143k|    default:
  ------------------
  |  Branch (8796:5): [True: 143k, False: 6.19k]
  ------------------
 8797|   143k|        if (ofp_to_u16(port) < ofp_to_u16(max_ports)) {
  ------------------
  |  Branch (8797:13): [True: 143k, False: 46]
  ------------------
 8798|   143k|            return 0;
 8799|   143k|        }
 8800|     46|        return OFPERR_OFPBAC_BAD_OUT_PORT;
 8801|   149k|    }
 8802|   149k|}
ofpacts_check:
 8851|  21.1k|{
 8852|       |    /* Save fields that might temporarily be modified. */
 8853|  21.1k|    struct flow *flow = &cp->match->flow;
 8854|  21.1k|    ovs_be32 packet_type = flow->packet_type;
 8855|  21.1k|    ovs_be16 dl_type = flow->dl_type;
 8856|  21.1k|    uint8_t nw_proto = flow->nw_proto;
 8857|  21.1k|    union flow_vlan_hdr vlans[FLOW_MAX_VLAN_HEADERS];
 8858|  21.1k|    memcpy(vlans, flow->vlans, sizeof vlans);
 8859|       |
 8860|       |    /* Check all the actions. */
 8861|  21.1k|    cp->usable_protocols = OFPUTIL_P_ANY;
  ------------------
  |  |  100|  21.1k|#define OFPUTIL_P_ANY ((1 << 9) - 1)
  ------------------
 8862|  21.1k|    enum ofperr error = 0;
 8863|  21.1k|    struct ofpact *a;
 8864|   250k|    OFPACT_FOR_EACH (a, ofpacts, ofpacts_len) {
  ------------------
  |  |  261|   270k|    for ((POS) = (OFPACTS); (POS) < ofpact_end(OFPACTS, OFPACTS_LEN);  \
  |  |  ------------------
  |  |  |  Branch (261:29): [True: 250k, False: 20.3k]
  |  |  ------------------
  |  |  262|   249k|         (POS) = ofpact_next(POS))
  ------------------
 8865|   250k|        error = ofpact_check__(a, cp);
 8866|   250k|        if (error) {
  ------------------
  |  Branch (8866:13): [True: 778, False: 249k]
  ------------------
 8867|    778|            break;
 8868|    778|        }
 8869|   250k|    }
 8870|       |
 8871|       |    /* Restore fields that may have been modified. */
 8872|  21.1k|    flow->packet_type = packet_type;
 8873|  21.1k|    flow->dl_type = dl_type;
 8874|  21.1k|    memcpy(flow->vlans, vlans, sizeof vlans);
 8875|  21.1k|    flow->nw_proto = nw_proto;
 8876|       |
 8877|  21.1k|    return error;
 8878|  21.1k|}
ofpact_get_mf_dst:
 8898|   270k|{
 8899|   270k|    if (ofpact->type == OFPACT_SET_FIELD) {
  ------------------
  |  Branch (8899:9): [True: 27.1k, False: 243k]
  ------------------
 8900|  27.1k|        const struct ofpact_set_field *orl;
 8901|       |
 8902|  27.1k|        orl = CONTAINER_OF(ofpact, struct ofpact_set_field, ofpact);
  ------------------
  |  |  124|  27.1k|        ((STRUCT *) (void *) ((char *) (POINTER) - offsetof (STRUCT, MEMBER)))
  ------------------
 8903|  27.1k|        return orl->field;
 8904|   243k|    } else if (ofpact->type == OFPACT_REG_MOVE) {
  ------------------
  |  Branch (8904:16): [True: 458, False: 243k]
  ------------------
 8905|    458|        const struct ofpact_reg_move *orm;
 8906|       |
 8907|    458|        orm = CONTAINER_OF(ofpact, struct ofpact_reg_move, ofpact);
  ------------------
  |  |  124|    458|        ((STRUCT *) (void *) ((char *) (POINTER) - offsetof (STRUCT, MEMBER)))
  ------------------
 8908|    458|        return orm->dst.field;
 8909|    458|    }
 8910|       |
 8911|   243k|    return NULL;
 8912|   270k|}
ofpacts_put_openflow_actions:
 9095|  22.9k|{
 9096|  22.9k|    const struct ofpact *a;
 9097|  22.9k|    size_t start_size = openflow->size;
 9098|       |
 9099|   197k|    OFPACT_FOR_EACH (a, ofpacts, ofpacts_len) {
  ------------------
  |  |  261|   220k|    for ((POS) = (OFPACTS); (POS) < ofpact_end(OFPACTS, OFPACTS_LEN);  \
  |  |  ------------------
  |  |  |  Branch (261:29): [True: 197k, False: 22.9k]
  |  |  ------------------
  |  |  262|   197k|         (POS) = ofpact_next(POS))
  ------------------
 9100|   197k|        encode_ofpact(a, ofp_version, openflow);
 9101|   197k|    }
 9102|  22.9k|    return openflow->size - start_size;
 9103|  22.9k|}
ofpacts_put_openflow_instructions:
 9117|    678|{
 9118|    678|    const struct ofpact *end = ofpact_end(ofpacts, ofpacts_len);
 9119|    678|    const struct ofpact *a;
 9120|       |
 9121|    678|    if (ofp_version == OFP10_VERSION) {
  ------------------
  |  Branch (9121:9): [True: 0, False: 678]
  ------------------
 9122|      0|        ofpacts_put_openflow_actions(ofpacts, ofpacts_len, openflow,
 9123|      0|                                     ofp_version);
 9124|      0|        return;
 9125|      0|    }
 9126|       |
 9127|    678|    a = ofpacts;
 9128|  1.38k|    while (a < end) {
  ------------------
  |  Branch (9128:12): [True: 707, False: 678]
  ------------------
 9129|    707|        if (ofpact_is_apply_actions(a, ofp_version)) {
  ------------------
  |  Branch (9129:13): [True: 535, False: 172]
  ------------------
 9130|    535|            size_t ofs = openflow->size;
 9131|       |
 9132|    535|            instruction_put_OFPIT11_APPLY_ACTIONS(openflow);
 9133|  37.8k|            do {
 9134|  37.8k|                encode_ofpact(a, ofp_version, openflow);
 9135|  37.8k|                a = ofpact_next(a);
 9136|  37.8k|            } while (a < end && ofpact_is_apply_actions(a, ofp_version));
  ------------------
  |  Branch (9136:22): [True: 37.3k, False: 508]
  |  Branch (9136:33): [True: 37.3k, False: 27]
  ------------------
 9137|    535|            ofpacts_update_instruction_actions(openflow, ofs);
 9138|    535|        } else {
 9139|    172|            encode_ofpact(a, ofp_version, openflow);
 9140|    172|            a = ofpact_next(a);
 9141|    172|        }
 9142|    707|    }
 9143|    678|}
ofpact_put:
 9505|   453k|{
 9506|   453k|    struct ofpact *ofpact;
 9507|       |
 9508|   453k|    ofpacts->header = ofpbuf_put_uninit(ofpacts, len);
 9509|   453k|    ofpact = ofpacts->header;
 9510|   453k|    ofpact_init(ofpact, type, len);
 9511|   453k|    return ofpact;
 9512|   453k|}
ofpact_init:
 9517|   456k|{
 9518|   456k|    memset(ofpact, 0, len);
 9519|   456k|    ofpact->type = type;
 9520|   456k|    ofpact->raw = -1;
 9521|   456k|    ofpact->len = len;
 9522|   456k|}
ofpact_finish:
 9535|   134k|{
 9536|   134k|    ptrdiff_t len;
 9537|       |
 9538|   134k|    ovs_assert(ofpact == ofpacts->header);
  ------------------
  |  |   62|   134k|#define ovs_assert ovs_ignore
  ------------------
 9539|   134k|    len = (char *) ofpbuf_tail(ofpacts) - (char *) ofpact;
 9540|   134k|    ovs_assert(len > 0 && len <= UINT16_MAX);
  ------------------
  |  |   62|   134k|#define ovs_assert ovs_ignore
  ------------------
  |  Branch (9540:16): [True: 134k, False: 0]
  |  Branch (9540:27): [True: 134k, False: 0]
  ------------------
 9541|   134k|    ofpact->len = len;
 9542|   134k|    ofpbuf_padto(ofpacts, OFPACT_ALIGN(ofpacts->size));
  ------------------
  |  |  205|   134k|#define OFPACT_ALIGN(SIZE) ROUND_UP(SIZE, OFPACT_ALIGNTO)
  |  |  ------------------
  |  |  |  |  303|   134k|#define ROUND_UP(X, Y) (DIV_ROUND_UP(X, Y) * (Y))
  |  |  |  |  ------------------
  |  |  |  |  |  |  300|   134k|#define DIV_ROUND_UP(X, Y) (((X) + ((Y) - 1)) / (Y))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 9543|       |
 9544|   134k|    return ofpacts->header;
 9545|   134k|}
ofpacts_parse_instructions:
 9707|  13.9k|{
 9708|       |    return ofpacts_parse_copy(s, pp, true, 0);
 9709|  13.9k|}
ofpact_name:
 9713|     40|{
 9714|     40|    switch (type) {
  ------------------
  |  Branch (9714:13): [True: 40, False: 0]
  ------------------
 9715|      0|#define OFPACT(ENUM, STRUCT, MEMBER, NAME) case OFPACT_##ENUM: return NAME;
 9716|     40|        OFPACTS
  ------------------
  |  |   64|      2|    OFPACT(OUTPUT,          ofpact_output,      ofpact, "output")       \
  |  |  ------------------
  |  |  |  | 9715|      2|#define OFPACT(ENUM, STRUCT, MEMBER, NAME) case OFPACT_##ENUM: return NAME;
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (9715:44): [True: 2, False: 38]
  |  |  |  |  ------------------
  |  |  ------------------
  |  |   65|      2|    OFPACT(GROUP,           ofpact_group,       ofpact, "group")        \
  |  |  ------------------
  |  |  |  | 9715|      0|#define OFPACT(ENUM, STRUCT, MEMBER, NAME) case OFPACT_##ENUM: return NAME;
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (9715:44): [True: 0, False: 40]
  |  |  |  |  ------------------
  |  |  ------------------
  |  |   66|      0|    OFPACT(CONTROLLER,      ofpact_controller,  userdata, "controller") \
  |  |  ------------------
  |  |  |  | 9715|      0|#define OFPACT(ENUM, STRUCT, MEMBER, NAME) case OFPACT_##ENUM: return NAME;
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (9715:44): [True: 0, False: 40]
  |  |  |  |  ------------------
  |  |  ------------------
  |  |   67|      0|    OFPACT(ENQUEUE,         ofpact_enqueue,     ofpact, "enqueue")      \
  |  |  ------------------
  |  |  |  | 9715|      0|#define OFPACT(ENUM, STRUCT, MEMBER, NAME) case OFPACT_##ENUM: return NAME;
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (9715:44): [True: 0, False: 40]
  |  |  |  |  ------------------
  |  |  ------------------
  |  |   68|      0|    OFPACT(OUTPUT_REG,      ofpact_output_reg,  ofpact, "output_reg")   \
  |  |  ------------------
  |  |  |  | 9715|      0|#define OFPACT(ENUM, STRUCT, MEMBER, NAME) case OFPACT_##ENUM: return NAME;
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (9715:44): [True: 0, False: 40]
  |  |  |  |  ------------------
  |  |  ------------------
  |  |   69|      0|    OFPACT(BUNDLE,          ofpact_bundle,      members, "bundle")      \
  |  |  ------------------
  |  |  |  | 9715|      0|#define OFPACT(ENUM, STRUCT, MEMBER, NAME) case OFPACT_##ENUM: return NAME;
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (9715:44): [True: 0, False: 40]
  |  |  |  |  ------------------
  |  |  ------------------
  |  |   70|      0|                                                                        \
  |  |   71|      0|    /* Header changes. */                                               \
  |  |   72|      0|    OFPACT(SET_FIELD,       ofpact_set_field,   ofpact, "set_field")    \
  |  |  ------------------
  |  |  |  | 9715|      0|#define OFPACT(ENUM, STRUCT, MEMBER, NAME) case OFPACT_##ENUM: return NAME;
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (9715:44): [True: 0, False: 40]
  |  |  |  |  ------------------
  |  |  ------------------
  |  |   73|      0|    OFPACT(SET_VLAN_VID,    ofpact_vlan_vid,    ofpact, "set_vlan_vid") \
  |  |  ------------------
  |  |  |  | 9715|      0|#define OFPACT(ENUM, STRUCT, MEMBER, NAME) case OFPACT_##ENUM: return NAME;
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (9715:44): [True: 0, False: 40]
  |  |  |  |  ------------------
  |  |  ------------------
  |  |   74|      0|    OFPACT(SET_VLAN_PCP,    ofpact_vlan_pcp,    ofpact, "set_vlan_pcp") \
  |  |  ------------------
  |  |  |  | 9715|      0|#define OFPACT(ENUM, STRUCT, MEMBER, NAME) case OFPACT_##ENUM: return NAME;
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (9715:44): [True: 0, False: 40]
  |  |  |  |  ------------------
  |  |  ------------------
  |  |   75|      0|    OFPACT(STRIP_VLAN,      ofpact_null,        ofpact, "strip_vlan")   \
  |  |  ------------------
  |  |  |  | 9715|      0|#define OFPACT(ENUM, STRUCT, MEMBER, NAME) case OFPACT_##ENUM: return NAME;
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (9715:44): [True: 0, False: 40]
  |  |  |  |  ------------------
  |  |  ------------------
  |  |   76|      0|    OFPACT(PUSH_VLAN,       ofpact_push_vlan,   ofpact, "push_vlan")    \
  |  |  ------------------
  |  |  |  | 9715|      0|#define OFPACT(ENUM, STRUCT, MEMBER, NAME) case OFPACT_##ENUM: return NAME;
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (9715:44): [True: 0, False: 40]
  |  |  |  |  ------------------
  |  |  ------------------
  |  |   77|      0|    OFPACT(SET_ETH_SRC,     ofpact_mac,         ofpact, "mod_dl_src")   \
  |  |  ------------------
  |  |  |  | 9715|      0|#define OFPACT(ENUM, STRUCT, MEMBER, NAME) case OFPACT_##ENUM: return NAME;
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (9715:44): [True: 0, False: 40]
  |  |  |  |  ------------------
  |  |  ------------------
  |  |   78|      0|    OFPACT(SET_ETH_DST,     ofpact_mac,         ofpact, "mod_dl_dst")   \
  |  |  ------------------
  |  |  |  | 9715|      0|#define OFPACT(ENUM, STRUCT, MEMBER, NAME) case OFPACT_##ENUM: return NAME;
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (9715:44): [True: 0, False: 40]
  |  |  |  |  ------------------
  |  |  ------------------
  |  |   79|      0|    OFPACT(SET_IPV4_SRC,    ofpact_ipv4,        ofpact, "mod_nw_src")   \
  |  |  ------------------
  |  |  |  | 9715|      0|#define OFPACT(ENUM, STRUCT, MEMBER, NAME) case OFPACT_##ENUM: return NAME;
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (9715:44): [True: 0, False: 40]
  |  |  |  |  ------------------
  |  |  ------------------
  |  |   80|      0|    OFPACT(SET_IPV4_DST,    ofpact_ipv4,        ofpact, "mod_nw_dst")   \
  |  |  ------------------
  |  |  |  | 9715|      0|#define OFPACT(ENUM, STRUCT, MEMBER, NAME) case OFPACT_##ENUM: return NAME;
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (9715:44): [True: 0, False: 40]
  |  |  |  |  ------------------
  |  |  ------------------
  |  |   81|      0|    OFPACT(SET_IP_DSCP,     ofpact_dscp,        ofpact, "mod_nw_tos")   \
  |  |  ------------------
  |  |  |  | 9715|      0|#define OFPACT(ENUM, STRUCT, MEMBER, NAME) case OFPACT_##ENUM: return NAME;
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (9715:44): [True: 0, False: 40]
  |  |  |  |  ------------------
  |  |  ------------------
  |  |   82|      0|    OFPACT(SET_IP_ECN,      ofpact_ecn,         ofpact, "mod_nw_ecn")   \
  |  |  ------------------
  |  |  |  | 9715|      0|#define OFPACT(ENUM, STRUCT, MEMBER, NAME) case OFPACT_##ENUM: return NAME;
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (9715:44): [True: 0, False: 40]
  |  |  |  |  ------------------
  |  |  ------------------
  |  |   83|      1|    OFPACT(SET_IP_TTL,      ofpact_ip_ttl,      ofpact, "mod_nw_ttl")   \
  |  |  ------------------
  |  |  |  | 9715|      1|#define OFPACT(ENUM, STRUCT, MEMBER, NAME) case OFPACT_##ENUM: return NAME;
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (9715:44): [True: 1, False: 39]
  |  |  |  |  ------------------
  |  |  ------------------
  |  |   84|      1|    OFPACT(SET_L4_SRC_PORT, ofpact_l4_port,     ofpact, "mod_tp_src")   \
  |  |  ------------------
  |  |  |  | 9715|      0|#define OFPACT(ENUM, STRUCT, MEMBER, NAME) case OFPACT_##ENUM: return NAME;
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (9715:44): [True: 0, False: 40]
  |  |  |  |  ------------------
  |  |  ------------------
  |  |   85|      1|    OFPACT(SET_L4_DST_PORT, ofpact_l4_port,     ofpact, "mod_tp_dst")   \
  |  |  ------------------
  |  |  |  | 9715|      1|#define OFPACT(ENUM, STRUCT, MEMBER, NAME) case OFPACT_##ENUM: return NAME;
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (9715:44): [True: 1, False: 39]
  |  |  |  |  ------------------
  |  |  ------------------
  |  |   86|      1|    OFPACT(REG_MOVE,        ofpact_reg_move,    ofpact, "move")         \
  |  |  ------------------
  |  |  |  | 9715|      0|#define OFPACT(ENUM, STRUCT, MEMBER, NAME) case OFPACT_##ENUM: return NAME;
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (9715:44): [True: 0, False: 40]
  |  |  |  |  ------------------
  |  |  ------------------
  |  |   87|      1|    OFPACT(STACK_PUSH,      ofpact_stack,       ofpact, "push")         \
  |  |  ------------------
  |  |  |  | 9715|      1|#define OFPACT(ENUM, STRUCT, MEMBER, NAME) case OFPACT_##ENUM: return NAME;
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (9715:44): [True: 1, False: 39]
  |  |  |  |  ------------------
  |  |  ------------------
  |  |   88|      1|    OFPACT(STACK_POP,       ofpact_stack,       ofpact, "pop")          \
  |  |  ------------------
  |  |  |  | 9715|      0|#define OFPACT(ENUM, STRUCT, MEMBER, NAME) case OFPACT_##ENUM: return NAME;
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (9715:44): [True: 0, False: 40]
  |  |  |  |  ------------------
  |  |  ------------------
  |  |   89|      1|    OFPACT(DEC_TTL,         ofpact_cnt_ids,     cnt_ids, "dec_ttl")     \
  |  |  ------------------
  |  |  |  | 9715|      1|#define OFPACT(ENUM, STRUCT, MEMBER, NAME) case OFPACT_##ENUM: return NAME;
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (9715:44): [True: 1, False: 39]
  |  |  |  |  ------------------
  |  |  ------------------
  |  |   90|      1|    OFPACT(SET_MPLS_LABEL,  ofpact_mpls_label,  ofpact, "set_mpls_label") \
  |  |  ------------------
  |  |  |  | 9715|      0|#define OFPACT(ENUM, STRUCT, MEMBER, NAME) case OFPACT_##ENUM: return NAME;
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (9715:44): [True: 0, False: 40]
  |  |  |  |  ------------------
  |  |  ------------------
  |  |   91|      0|    OFPACT(SET_MPLS_TC,     ofpact_mpls_tc,     ofpact, "set_mpls_tc")  \
  |  |  ------------------
  |  |  |  | 9715|      0|#define OFPACT(ENUM, STRUCT, MEMBER, NAME) case OFPACT_##ENUM: return NAME;
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (9715:44): [True: 0, False: 40]
  |  |  |  |  ------------------
  |  |  ------------------
  |  |   92|      0|    OFPACT(SET_MPLS_TTL,    ofpact_mpls_ttl,    ofpact, "set_mpls_ttl") \
  |  |  ------------------
  |  |  |  | 9715|      0|#define OFPACT(ENUM, STRUCT, MEMBER, NAME) case OFPACT_##ENUM: return NAME;
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (9715:44): [True: 0, False: 40]
  |  |  |  |  ------------------
  |  |  ------------------
  |  |   93|      1|    OFPACT(DEC_MPLS_TTL,    ofpact_null,        ofpact, "dec_mpls_ttl") \
  |  |  ------------------
  |  |  |  | 9715|      1|#define OFPACT(ENUM, STRUCT, MEMBER, NAME) case OFPACT_##ENUM: return NAME;
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (9715:44): [True: 1, False: 39]
  |  |  |  |  ------------------
  |  |  ------------------
  |  |   94|      1|    OFPACT(PUSH_MPLS,       ofpact_push_mpls,   ofpact, "push_mpls")    \
  |  |  ------------------
  |  |  |  | 9715|      0|#define OFPACT(ENUM, STRUCT, MEMBER, NAME) case OFPACT_##ENUM: return NAME;
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (9715:44): [True: 0, False: 40]
  |  |  |  |  ------------------
  |  |  ------------------
  |  |   95|      0|    OFPACT(POP_MPLS,        ofpact_pop_mpls,    ofpact, "pop_mpls")     \
  |  |  ------------------
  |  |  |  | 9715|      0|#define OFPACT(ENUM, STRUCT, MEMBER, NAME) case OFPACT_##ENUM: return NAME;
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (9715:44): [True: 0, False: 40]
  |  |  |  |  ------------------
  |  |  ------------------
  |  |   96|      0|    OFPACT(DEC_NSH_TTL,     ofpact_null,        ofpact, "dec_nsh_ttl")  \
  |  |  ------------------
  |  |  |  | 9715|      0|#define OFPACT(ENUM, STRUCT, MEMBER, NAME) case OFPACT_##ENUM: return NAME;
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (9715:44): [True: 0, False: 40]
  |  |  |  |  ------------------
  |  |  ------------------
  |  |   97|      0|    OFPACT(DELETE_FIELD,    ofpact_delete_field, ofpact, "delete_field") \
  |  |  ------------------
  |  |  |  | 9715|      0|#define OFPACT(ENUM, STRUCT, MEMBER, NAME) case OFPACT_##ENUM: return NAME;
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (9715:44): [True: 0, False: 40]
  |  |  |  |  ------------------
  |  |  ------------------
  |  |   98|      0|                                                                        \
  |  |   99|      0|    /* Generic encap & decap */                                         \
  |  |  100|      0|    OFPACT(ENCAP,           ofpact_encap,       props, "encap")         \
  |  |  ------------------
  |  |  |  | 9715|      0|#define OFPACT(ENUM, STRUCT, MEMBER, NAME) case OFPACT_##ENUM: return NAME;
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (9715:44): [True: 0, False: 40]
  |  |  |  |  ------------------
  |  |  ------------------
  |  |  101|      0|    OFPACT(DECAP,           ofpact_decap,       ofpact, "decap")        \
  |  |  ------------------
  |  |  |  | 9715|      0|#define OFPACT(ENUM, STRUCT, MEMBER, NAME) case OFPACT_##ENUM: return NAME;
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (9715:44): [True: 0, False: 40]
  |  |  |  |  ------------------
  |  |  ------------------
  |  |  102|      0|                                                                        \
  |  |  103|      0|    /* Metadata. */                                                     \
  |  |  104|      0|    OFPACT(SET_TUNNEL,      ofpact_tunnel,      ofpact, "set_tunnel")   \
  |  |  ------------------
  |  |  |  | 9715|      0|#define OFPACT(ENUM, STRUCT, MEMBER, NAME) case OFPACT_##ENUM: return NAME;
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (9715:44): [True: 0, False: 40]
  |  |  |  |  ------------------
  |  |  ------------------
  |  |  105|      1|    OFPACT(SET_QUEUE,       ofpact_queue,       ofpact, "set_queue")    \
  |  |  ------------------
  |  |  |  | 9715|      1|#define OFPACT(ENUM, STRUCT, MEMBER, NAME) case OFPACT_##ENUM: return NAME;
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (9715:44): [True: 1, False: 39]
  |  |  |  |  ------------------
  |  |  ------------------
  |  |  106|      1|    OFPACT(POP_QUEUE,       ofpact_null,        ofpact, "pop_queue")    \
  |  |  ------------------
  |  |  |  | 9715|      0|#define OFPACT(ENUM, STRUCT, MEMBER, NAME) case OFPACT_##ENUM: return NAME;
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (9715:44): [True: 0, False: 40]
  |  |  |  |  ------------------
  |  |  ------------------
  |  |  107|      1|    OFPACT(FIN_TIMEOUT,     ofpact_fin_timeout, ofpact, "fin_timeout")  \
  |  |  ------------------
  |  |  |  | 9715|      1|#define OFPACT(ENUM, STRUCT, MEMBER, NAME) case OFPACT_##ENUM: return NAME;
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (9715:44): [True: 1, False: 39]
  |  |  |  |  ------------------
  |  |  ------------------
  |  |  108|      1|                                                                        \
  |  |  109|      1|    /* Flow table interaction. */                                       \
  |  |  110|      1|    OFPACT(RESUBMIT,        ofpact_resubmit,    ofpact, "resubmit")     \
  |  |  ------------------
  |  |  |  | 9715|      1|#define OFPACT(ENUM, STRUCT, MEMBER, NAME) case OFPACT_##ENUM: return NAME;
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (9715:44): [True: 1, False: 39]
  |  |  |  |  ------------------
  |  |  ------------------
  |  |  111|      1|    OFPACT(LEARN,           ofpact_learn,       specs, "learn")         \
  |  |  ------------------
  |  |  |  | 9715|      1|#define OFPACT(ENUM, STRUCT, MEMBER, NAME) case OFPACT_##ENUM: return NAME;
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (9715:44): [True: 1, False: 39]
  |  |  |  |  ------------------
  |  |  ------------------
  |  |  112|      1|    OFPACT(CONJUNCTION,     ofpact_conjunction, ofpact, "conjunction")  \
  |  |  ------------------
  |  |  |  | 9715|      0|#define OFPACT(ENUM, STRUCT, MEMBER, NAME) case OFPACT_##ENUM: return NAME;
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (9715:44): [True: 0, False: 40]
  |  |  |  |  ------------------
  |  |  ------------------
  |  |  113|      0|                                                                        \
  |  |  114|      0|    /* Arithmetic. */                                                   \
  |  |  115|      0|    OFPACT(MULTIPATH,       ofpact_multipath,   ofpact, "multipath")    \
  |  |  ------------------
  |  |  |  | 9715|      0|#define OFPACT(ENUM, STRUCT, MEMBER, NAME) case OFPACT_##ENUM: return NAME;
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (9715:44): [True: 0, False: 40]
  |  |  |  |  ------------------
  |  |  ------------------
  |  |  116|      0|                                                                        \
  |  |  117|      0|    /* Other. */                                                        \
  |  |  118|      0|    OFPACT(NOTE,            ofpact_note,        data, "note")           \
  |  |  ------------------
  |  |  |  | 9715|      0|#define OFPACT(ENUM, STRUCT, MEMBER, NAME) case OFPACT_##ENUM: return NAME;
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (9715:44): [True: 0, False: 40]
  |  |  |  |  ------------------
  |  |  ------------------
  |  |  119|      1|    OFPACT(EXIT,            ofpact_null,        ofpact, "exit")         \
  |  |  ------------------
  |  |  |  | 9715|      1|#define OFPACT(ENUM, STRUCT, MEMBER, NAME) case OFPACT_##ENUM: return NAME;
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (9715:44): [True: 1, False: 39]
  |  |  |  |  ------------------
  |  |  ------------------
  |  |  120|      1|    OFPACT(SAMPLE,          ofpact_sample,      ofpact, "sample")       \
  |  |  ------------------
  |  |  |  | 9715|      0|#define OFPACT(ENUM, STRUCT, MEMBER, NAME) case OFPACT_##ENUM: return NAME;
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (9715:44): [True: 0, False: 40]
  |  |  |  |  ------------------
  |  |  ------------------
  |  |  121|      0|    OFPACT(UNROLL_XLATE,    ofpact_unroll_xlate, ofpact, "unroll_xlate") \
  |  |  ------------------
  |  |  |  | 9715|      0|#define OFPACT(ENUM, STRUCT, MEMBER, NAME) case OFPACT_##ENUM: return NAME;
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (9715:44): [True: 0, False: 40]
  |  |  |  |  ------------------
  |  |  ------------------
  |  |  122|     22|    OFPACT(CT,              ofpact_conntrack,   ofpact, "ct")           \
  |  |  ------------------
  |  |  |  | 9715|     22|#define OFPACT(ENUM, STRUCT, MEMBER, NAME) case OFPACT_##ENUM: return NAME;
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (9715:44): [True: 22, False: 18]
  |  |  |  |  ------------------
  |  |  ------------------
  |  |  123|     22|    OFPACT(CT_CLEAR,        ofpact_null,        ofpact, "ct_clear")     \
  |  |  ------------------
  |  |  |  | 9715|      0|#define OFPACT(ENUM, STRUCT, MEMBER, NAME) case OFPACT_##ENUM: return NAME;
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (9715:44): [True: 0, False: 40]
  |  |  |  |  ------------------
  |  |  ------------------
  |  |  124|      0|    OFPACT(NAT,             ofpact_nat,         ofpact, "nat")          \
  |  |  ------------------
  |  |  |  | 9715|      0|#define OFPACT(ENUM, STRUCT, MEMBER, NAME) case OFPACT_##ENUM: return NAME;
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (9715:44): [True: 0, False: 40]
  |  |  |  |  ------------------
  |  |  ------------------
  |  |  125|      0|    OFPACT(OUTPUT_TRUNC,    ofpact_output_trunc,ofpact, "output_trunc") \
  |  |  ------------------
  |  |  |  | 9715|      0|#define OFPACT(ENUM, STRUCT, MEMBER, NAME) case OFPACT_##ENUM: return NAME;
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (9715:44): [True: 0, False: 40]
  |  |  |  |  ------------------
  |  |  ------------------
  |  |  126|      3|    OFPACT(CLONE,           ofpact_nest,        actions, "clone")       \
  |  |  ------------------
  |  |  |  | 9715|      3|#define OFPACT(ENUM, STRUCT, MEMBER, NAME) case OFPACT_##ENUM: return NAME;
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (9715:44): [True: 3, False: 37]
  |  |  |  |  ------------------
  |  |  ------------------
  |  |  127|      3|    OFPACT(CHECK_PKT_LARGER, ofpact_check_pkt_larger, ofpact,           \
  |  |  ------------------
  |  |  |  | 9715|      1|#define OFPACT(ENUM, STRUCT, MEMBER, NAME) case OFPACT_##ENUM: return NAME;
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (9715:44): [True: 1, False: 39]
  |  |  |  |  ------------------
  |  |  ------------------
  |  |  128|      1|           "check_pkt_larger")                                          \
  |  |  129|      1|                                                                        \
  |  |  130|      1|    /* Debugging actions.                                               \
  |  |  131|      1|     *                                                                  \
  |  |  132|      1|     * These are intentionally undocumented, subject to change, and     \
  |  |  133|      1|     * only accepted if ovs-vswitchd is started with --enable-dummy. */ \
  |  |  134|      1|    OFPACT(DEBUG_RECIRC, ofpact_null,           ofpact, "debug_recirc") \
  |  |  ------------------
  |  |  |  | 9715|      0|#define OFPACT(ENUM, STRUCT, MEMBER, NAME) case OFPACT_##ENUM: return NAME;
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (9715:44): [True: 0, False: 40]
  |  |  |  |  ------------------
  |  |  ------------------
  |  |  135|      0|    OFPACT(DEBUG_SLOW,   ofpact_null,           ofpact, "debug_slow")   \
  |  |  ------------------
  |  |  |  | 9715|      0|#define OFPACT(ENUM, STRUCT, MEMBER, NAME) case OFPACT_##ENUM: return NAME;
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (9715:44): [True: 0, False: 40]
  |  |  |  |  ------------------
  |  |  ------------------
  |  |  136|      0|                                                                        \
  |  |  137|      0|    /* Instructions ("meter" is an action in OF1.5+). */                \
  |  |  138|      1|    OFPACT(METER,           ofpact_meter,       ofpact, "meter")        \
  |  |  ------------------
  |  |  |  | 9715|      1|#define OFPACT(ENUM, STRUCT, MEMBER, NAME) case OFPACT_##ENUM: return NAME;
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (9715:44): [True: 1, False: 39]
  |  |  |  |  ------------------
  |  |  ------------------
  |  |  139|      1|    OFPACT(CLEAR_ACTIONS,   ofpact_null,        ofpact, "clear_actions") \
  |  |  ------------------
  |  |  |  | 9715|      0|#define OFPACT(ENUM, STRUCT, MEMBER, NAME) case OFPACT_##ENUM: return NAME;
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (9715:44): [True: 0, False: 40]
  |  |  |  |  ------------------
  |  |  ------------------
  |  |  140|      0|    OFPACT(WRITE_ACTIONS,   ofpact_nest,        actions, "write_actions") \
  |  |  ------------------
  |  |  |  | 9715|      0|#define OFPACT(ENUM, STRUCT, MEMBER, NAME) case OFPACT_##ENUM: return NAME;
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (9715:44): [True: 0, False: 40]
  |  |  |  |  ------------------
  |  |  ------------------
  |  |  141|      1|    OFPACT(WRITE_METADATA,  ofpact_metadata,    ofpact, "write_metadata") \
  |  |  ------------------
  |  |  |  | 9715|      1|#define OFPACT(ENUM, STRUCT, MEMBER, NAME) case OFPACT_##ENUM: return NAME;
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (9715:44): [True: 1, False: 39]
  |  |  |  |  ------------------
  |  |  ------------------
  |  |  142|      1|    OFPACT(GOTO_TABLE,      ofpact_goto_table,  ofpact, "goto_table")
  |  |  ------------------
  |  |  |  | 9715|      0|#define OFPACT(ENUM, STRUCT, MEMBER, NAME) case OFPACT_##ENUM: return NAME;
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (9715:44): [True: 0, False: 40]
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 9717|     40|#undef OFPACT
 9718|     40|    }
 9719|      0|    return "<unknown>";
 9720|     40|}
ofp-actions.c:add_conjunction:
 5665|    542|{
 5666|    542|    struct ofpact_conjunction *oc;
 5667|       |
 5668|    542|    oc = ofpact_put_CONJUNCTION(out);
 5669|    542|    oc->id = id;
 5670|    542|    oc->clause = clause;
 5671|    542|    oc->n_clauses = n_clauses;
 5672|    542|}
ofp-actions.c:ofpacts_pull:
  536|   104k|{
  537|   104k|    size_t ofs;
  538|       |
  539|   104k|    ofs = ofpacts->size;
  540|   104k|    ofpbuf_pull(ofpacts, ofs);
  541|       |
  542|   104k|    return ofs;
  543|   104k|}
ofp-actions.c:ofpact_check__:
 8823|   250k|{
 8824|   250k|    switch (a->type) {
 8825|      0|#define OFPACT(ENUM, STRUCT, MEMBER, NAME)                  \
 8826|      0|        case OFPACT_##ENUM:                                 \
 8827|      0|            return check_##ENUM(ofpact_get_##ENUM(a), cp);
 8828|      0|        OFPACTS
  ------------------
  |  |   64|   102k|    OFPACT(OUTPUT,          ofpact_output,      ofpact, "output")       \
  |  |  ------------------
  |  |  |  | 8826|   102k|        case OFPACT_##ENUM:                                 \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (8826:9): [True: 102k, False: 147k]
  |  |  |  |  ------------------
  |  |  |  | 8827|   102k|            return check_##ENUM(ofpact_get_##ENUM(a), cp);
  |  |  ------------------
  |  |   65|   102k|    OFPACT(GROUP,           ofpact_group,       ofpact, "group")        \
  |  |  ------------------
  |  |  |  | 8826|    209|        case OFPACT_##ENUM:                                 \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (8826:9): [True: 209, False: 250k]
  |  |  |  |  ------------------
  |  |  |  | 8827|    209|            return check_##ENUM(ofpact_get_##ENUM(a), cp);
  |  |  ------------------
  |  |   66|  6.44k|    OFPACT(CONTROLLER,      ofpact_controller,  userdata, "controller") \
  |  |  ------------------
  |  |  |  | 8826|  6.44k|        case OFPACT_##ENUM:                                 \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (8826:9): [True: 6.44k, False: 244k]
  |  |  |  |  ------------------
  |  |  |  | 8827|  6.44k|            return check_##ENUM(ofpact_get_##ENUM(a), cp);
  |  |  ------------------
  |  |   67|  6.44k|    OFPACT(ENQUEUE,         ofpact_enqueue,     ofpact, "enqueue")      \
  |  |  ------------------
  |  |  |  | 8826|    770|        case OFPACT_##ENUM:                                 \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (8826:9): [True: 770, False: 249k]
  |  |  |  |  ------------------
  |  |  |  | 8827|    770|            return check_##ENUM(ofpact_get_##ENUM(a), cp);
  |  |  ------------------
  |  |   68|    770|    OFPACT(OUTPUT_REG,      ofpact_output_reg,  ofpact, "output_reg")   \
  |  |  ------------------
  |  |  |  | 8826|    728|        case OFPACT_##ENUM:                                 \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (8826:9): [True: 728, False: 249k]
  |  |  |  |  ------------------
  |  |  |  | 8827|    728|            return check_##ENUM(ofpact_get_##ENUM(a), cp);
  |  |  ------------------
  |  |   69|    854|    OFPACT(BUNDLE,          ofpact_bundle,      members, "bundle")      \
  |  |  ------------------
  |  |  |  | 8826|    854|        case OFPACT_##ENUM:                                 \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (8826:9): [True: 854, False: 249k]
  |  |  |  |  ------------------
  |  |  |  | 8827|    854|            return check_##ENUM(ofpact_get_##ENUM(a), cp);
  |  |  ------------------
  |  |   70|    854|                                                                        \
  |  |   71|    854|    /* Header changes. */                                               \
  |  |   72|  25.3k|    OFPACT(SET_FIELD,       ofpact_set_field,   ofpact, "set_field")    \
  |  |  ------------------
  |  |  |  | 8826|  25.3k|        case OFPACT_##ENUM:                                 \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (8826:9): [True: 25.3k, False: 225k]
  |  |  |  |  ------------------
  |  |  |  | 8827|  25.3k|            return check_##ENUM(ofpact_get_##ENUM(a), cp);
  |  |  ------------------
  |  |   73|  25.3k|    OFPACT(SET_VLAN_VID,    ofpact_vlan_vid,    ofpact, "set_vlan_vid") \
  |  |  ------------------
  |  |  |  | 8826|  1.47k|        case OFPACT_##ENUM:                                 \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (8826:9): [True: 1.47k, False: 249k]
  |  |  |  |  ------------------
  |  |  |  | 8827|  1.47k|            return check_##ENUM(ofpact_get_##ENUM(a), cp);
  |  |  ------------------
  |  |   74|  1.47k|    OFPACT(SET_VLAN_PCP,    ofpact_vlan_pcp,    ofpact, "set_vlan_pcp") \
  |  |  ------------------
  |  |  |  | 8826|  1.25k|        case OFPACT_##ENUM:                                 \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (8826:9): [True: 1.25k, False: 249k]
  |  |  |  |  ------------------
  |  |  |  | 8827|  1.25k|            return check_##ENUM(ofpact_get_##ENUM(a), cp);
  |  |  ------------------
  |  |   75|  3.09k|    OFPACT(STRIP_VLAN,      ofpact_null,        ofpact, "strip_vlan")   \
  |  |  ------------------
  |  |  |  | 8826|  3.09k|        case OFPACT_##ENUM:                                 \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (8826:9): [True: 3.09k, False: 247k]
  |  |  |  |  ------------------
  |  |  |  | 8827|  3.09k|            return check_##ENUM(ofpact_get_##ENUM(a), cp);
  |  |  ------------------
  |  |   76|  3.09k|    OFPACT(PUSH_VLAN,       ofpact_push_vlan,   ofpact, "push_vlan")    \
  |  |  ------------------
  |  |  |  | 8826|  1.74k|        case OFPACT_##ENUM:                                 \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (8826:9): [True: 1.74k, False: 248k]
  |  |  |  |  ------------------
  |  |  |  | 8827|  1.74k|            return check_##ENUM(ofpact_get_##ENUM(a), cp);
  |  |  ------------------
  |  |   77|  1.74k|    OFPACT(SET_ETH_SRC,     ofpact_mac,         ofpact, "mod_dl_src")   \
  |  |  ------------------
  |  |  |  | 8826|    423|        case OFPACT_##ENUM:                                 \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (8826:9): [True: 423, False: 250k]
  |  |  |  |  ------------------
  |  |  |  | 8827|    423|            return check_##ENUM(ofpact_get_##ENUM(a), cp);
  |  |  ------------------
  |  |   78|    970|    OFPACT(SET_ETH_DST,     ofpact_mac,         ofpact, "mod_dl_dst")   \
  |  |  ------------------
  |  |  |  | 8826|    970|        case OFPACT_##ENUM:                                 \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (8826:9): [True: 970, False: 249k]
  |  |  |  |  ------------------
  |  |  |  | 8827|    970|            return check_##ENUM(ofpact_get_##ENUM(a), cp);
  |  |  ------------------
  |  |   79|  2.11k|    OFPACT(SET_IPV4_SRC,    ofpact_ipv4,        ofpact, "mod_nw_src")   \
  |  |  ------------------
  |  |  |  | 8826|  2.11k|        case OFPACT_##ENUM:                                 \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (8826:9): [True: 2.11k, False: 248k]
  |  |  |  |  ------------------
  |  |  |  | 8827|  2.11k|            return check_##ENUM(ofpact_get_##ENUM(a), cp);
  |  |  ------------------
  |  |   80|  2.11k|    OFPACT(SET_IPV4_DST,    ofpact_ipv4,        ofpact, "mod_nw_dst")   \
  |  |  ------------------
  |  |  |  | 8826|    700|        case OFPACT_##ENUM:                                 \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (8826:9): [True: 700, False: 249k]
  |  |  |  |  ------------------
  |  |  |  | 8827|    700|            return check_##ENUM(ofpact_get_##ENUM(a), cp);
  |  |  ------------------
  |  |   81|  1.65k|    OFPACT(SET_IP_DSCP,     ofpact_dscp,        ofpact, "mod_nw_tos")   \
  |  |  ------------------
  |  |  |  | 8826|  1.65k|        case OFPACT_##ENUM:                                 \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (8826:9): [True: 1.65k, False: 248k]
  |  |  |  |  ------------------
  |  |  |  | 8827|  1.65k|            return check_##ENUM(ofpact_get_##ENUM(a), cp);
  |  |  ------------------
  |  |   82|  1.65k|    OFPACT(SET_IP_ECN,      ofpact_ecn,         ofpact, "mod_nw_ecn")   \
  |  |  ------------------
  |  |  |  | 8826|  1.18k|        case OFPACT_##ENUM:                                 \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (8826:9): [True: 1.18k, False: 249k]
  |  |  |  |  ------------------
  |  |  |  | 8827|  1.18k|            return check_##ENUM(ofpact_get_##ENUM(a), cp);
  |  |  ------------------
  |  |   83|  2.43k|    OFPACT(SET_IP_TTL,      ofpact_ip_ttl,      ofpact, "mod_nw_ttl")   \
  |  |  ------------------
  |  |  |  | 8826|  2.43k|        case OFPACT_##ENUM:                                 \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (8826:9): [True: 2.43k, False: 248k]
  |  |  |  |  ------------------
  |  |  |  | 8827|  2.43k|            return check_##ENUM(ofpact_get_##ENUM(a), cp);
  |  |  ------------------
  |  |   84|  3.50k|    OFPACT(SET_L4_SRC_PORT, ofpact_l4_port,     ofpact, "mod_tp_src")   \
  |  |  ------------------
  |  |  |  | 8826|  3.50k|        case OFPACT_##ENUM:                                 \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (8826:9): [True: 3.50k, False: 247k]
  |  |  |  |  ------------------
  |  |  |  | 8827|  3.50k|            return check_##ENUM(ofpact_get_##ENUM(a), cp);
  |  |  ------------------
  |  |   85|  3.50k|    OFPACT(SET_L4_DST_PORT, ofpact_l4_port,     ofpact, "mod_tp_dst")   \
  |  |  ------------------
  |  |  |  | 8826|  1.84k|        case OFPACT_##ENUM:                                 \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (8826:9): [True: 1.84k, False: 248k]
  |  |  |  |  ------------------
  |  |  |  | 8827|  1.84k|            return check_##ENUM(ofpact_get_##ENUM(a), cp);
  |  |  ------------------
  |  |   86|  1.84k|    OFPACT(REG_MOVE,        ofpact_reg_move,    ofpact, "move")         \
  |  |  ------------------
  |  |  |  | 8826|    458|        case OFPACT_##ENUM:                                 \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (8826:9): [True: 458, False: 250k]
  |  |  |  |  ------------------
  |  |  |  | 8827|    458|            return check_##ENUM(ofpact_get_##ENUM(a), cp);
  |  |  ------------------
  |  |   87|    458|    OFPACT(STACK_PUSH,      ofpact_stack,       ofpact, "push")         \
  |  |  ------------------
  |  |  |  | 8826|    375|        case OFPACT_##ENUM:                                 \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (8826:9): [True: 375, False: 250k]
  |  |  |  |  ------------------
  |  |  |  | 8827|    375|            return check_##ENUM(ofpact_get_##ENUM(a), cp);
  |  |  ------------------
  |  |   88|  2.03k|    OFPACT(STACK_POP,       ofpact_stack,       ofpact, "pop")          \
  |  |  ------------------
  |  |  |  | 8826|  2.03k|        case OFPACT_##ENUM:                                 \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (8826:9): [True: 2.03k, False: 248k]
  |  |  |  |  ------------------
  |  |  |  | 8827|  2.03k|            return check_##ENUM(ofpact_get_##ENUM(a), cp);
  |  |  ------------------
  |  |   89|  2.95k|    OFPACT(DEC_TTL,         ofpact_cnt_ids,     cnt_ids, "dec_ttl")     \
  |  |  ------------------
  |  |  |  | 8826|  2.95k|        case OFPACT_##ENUM:                                 \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (8826:9): [True: 2.95k, False: 247k]
  |  |  |  |  ------------------
  |  |  |  | 8827|  2.95k|            return check_##ENUM(ofpact_get_##ENUM(a), cp);
  |  |  ------------------
  |  |   90|  2.95k|    OFPACT(SET_MPLS_LABEL,  ofpact_mpls_label,  ofpact, "set_mpls_label") \
  |  |  ------------------
  |  |  |  | 8826|  2.04k|        case OFPACT_##ENUM:                                 \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (8826:9): [True: 2.04k, False: 248k]
  |  |  |  |  ------------------
  |  |  |  | 8827|  2.04k|            return check_##ENUM(ofpact_get_##ENUM(a), cp);
  |  |  ------------------
  |  |   91|  2.04k|    OFPACT(SET_MPLS_TC,     ofpact_mpls_tc,     ofpact, "set_mpls_tc")  \
  |  |  ------------------
  |  |  |  | 8826|  1.28k|        case OFPACT_##ENUM:                                 \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (8826:9): [True: 1.28k, False: 249k]
  |  |  |  |  ------------------
  |  |  |  | 8827|  1.28k|            return check_##ENUM(ofpact_get_##ENUM(a), cp);
  |  |  ------------------
  |  |   92|  1.35k|    OFPACT(SET_MPLS_TTL,    ofpact_mpls_ttl,    ofpact, "set_mpls_ttl") \
  |  |  ------------------
  |  |  |  | 8826|  1.35k|        case OFPACT_##ENUM:                                 \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (8826:9): [True: 1.35k, False: 249k]
  |  |  |  |  ------------------
  |  |  |  | 8827|  1.35k|            return check_##ENUM(ofpact_get_##ENUM(a), cp);
  |  |  ------------------
  |  |   93|  2.20k|    OFPACT(DEC_MPLS_TTL,    ofpact_null,        ofpact, "dec_mpls_ttl") \
  |  |  ------------------
  |  |  |  | 8826|  2.20k|        case OFPACT_##ENUM:                                 \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (8826:9): [True: 2.20k, False: 248k]
  |  |  |  |  ------------------
  |  |  |  | 8827|  2.20k|            return check_##ENUM(ofpact_get_##ENUM(a), cp);
  |  |  ------------------
  |  |   94|  2.20k|    OFPACT(PUSH_MPLS,       ofpact_push_mpls,   ofpact, "push_mpls")    \
  |  |  ------------------
  |  |  |  | 8826|    696|        case OFPACT_##ENUM:                                 \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (8826:9): [True: 696, False: 249k]
  |  |  |  |  ------------------
  |  |  |  | 8827|    696|            return check_##ENUM(ofpact_get_##ENUM(a), cp);
  |  |  ------------------
  |  |   95|  1.31k|    OFPACT(POP_MPLS,        ofpact_pop_mpls,    ofpact, "pop_mpls")     \
  |  |  ------------------
  |  |  |  | 8826|  1.31k|        case OFPACT_##ENUM:                                 \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (8826:9): [True: 1.31k, False: 249k]
  |  |  |  |  ------------------
  |  |  |  | 8827|  1.31k|            return check_##ENUM(ofpact_get_##ENUM(a), cp);
  |  |  ------------------
  |  |   96|  1.31k|    OFPACT(DEC_NSH_TTL,     ofpact_null,        ofpact, "dec_nsh_ttl")  \
  |  |  ------------------
  |  |  |  | 8826|    867|        case OFPACT_##ENUM:                                 \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (8826:9): [True: 867, False: 249k]
  |  |  |  |  ------------------
  |  |  |  | 8827|    867|            return check_##ENUM(ofpact_get_##ENUM(a), cp);
  |  |  ------------------
  |  |   97|    867|    OFPACT(DELETE_FIELD,    ofpact_delete_field, ofpact, "delete_field") \
  |  |  ------------------
  |  |  |  | 8826|    350|        case OFPACT_##ENUM:                                 \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (8826:9): [True: 350, False: 250k]
  |  |  |  |  ------------------
  |  |  |  | 8827|    350|            return check_##ENUM(ofpact_get_##ENUM(a), cp);
  |  |  ------------------
  |  |   98|    350|                                                                        \
  |  |   99|    350|    /* Generic encap & decap */                                         \
  |  |  100|  1.65k|    OFPACT(ENCAP,           ofpact_encap,       props, "encap")         \
  |  |  ------------------
  |  |  |  | 8826|  1.65k|        case OFPACT_##ENUM:                                 \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (8826:9): [True: 1.65k, False: 248k]
  |  |  |  |  ------------------
  |  |  |  | 8827|  1.65k|            return check_##ENUM(ofpact_get_##ENUM(a), cp);
  |  |  ------------------
  |  |  101|  2.00k|    OFPACT(DECAP,           ofpact_decap,       ofpact, "decap")        \
  |  |  ------------------
  |  |  |  | 8826|  2.00k|        case OFPACT_##ENUM:                                 \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (8826:9): [True: 2.00k, False: 248k]
  |  |  |  |  ------------------
  |  |  |  | 8827|  2.00k|            return check_##ENUM(ofpact_get_##ENUM(a), cp);
  |  |  ------------------
  |  |  102|  2.00k|                                                                        \
  |  |  103|  2.00k|    /* Metadata. */                                                     \
  |  |  104|  2.00k|    OFPACT(SET_TUNNEL,      ofpact_tunnel,      ofpact, "set_tunnel")   \
  |  |  ------------------
  |  |  |  | 8826|  1.25k|        case OFPACT_##ENUM:                                 \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (8826:9): [True: 1.25k, False: 249k]
  |  |  |  |  ------------------
  |  |  |  | 8827|  1.25k|            return check_##ENUM(ofpact_get_##ENUM(a), cp);
  |  |  ------------------
  |  |  105|  1.25k|    OFPACT(SET_QUEUE,       ofpact_queue,       ofpact, "set_queue")    \
  |  |  ------------------
  |  |  |  | 8826|    263|        case OFPACT_##ENUM:                                 \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (8826:9): [True: 263, False: 250k]
  |  |  |  |  ------------------
  |  |  |  | 8827|    263|            return check_##ENUM(ofpact_get_##ENUM(a), cp);
  |  |  ------------------
  |  |  106|    452|    OFPACT(POP_QUEUE,       ofpact_null,        ofpact, "pop_queue")    \
  |  |  ------------------
  |  |  |  | 8826|    452|        case OFPACT_##ENUM:                                 \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (8826:9): [True: 452, False: 250k]
  |  |  |  |  ------------------
  |  |  |  | 8827|    452|            return check_##ENUM(ofpact_get_##ENUM(a), cp);
  |  |  ------------------
  |  |  107|    452|    OFPACT(FIN_TIMEOUT,     ofpact_fin_timeout, ofpact, "fin_timeout")  \
  |  |  ------------------
  |  |  |  | 8826|    440|        case OFPACT_##ENUM:                                 \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (8826:9): [True: 440, False: 250k]
  |  |  |  |  ------------------
  |  |  |  | 8827|    440|            return check_##ENUM(ofpact_get_##ENUM(a), cp);
  |  |  ------------------
  |  |  108|    440|                                                                        \
  |  |  109|    440|    /* Flow table interaction. */                                       \
  |  |  110|  1.23k|    OFPACT(RESUBMIT,        ofpact_resubmit,    ofpact, "resubmit")     \
  |  |  ------------------
  |  |  |  | 8826|  1.23k|        case OFPACT_##ENUM:                                 \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (8826:9): [True: 1.23k, False: 249k]
  |  |  |  |  ------------------
  |  |  |  | 8827|  1.23k|            return check_##ENUM(ofpact_get_##ENUM(a), cp);
  |  |  ------------------
  |  |  111|  33.5k|    OFPACT(LEARN,           ofpact_learn,       specs, "learn")         \
  |  |  ------------------
  |  |  |  | 8826|  33.5k|        case OFPACT_##ENUM:                                 \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (8826:9): [True: 33.5k, False: 217k]
  |  |  |  |  ------------------
  |  |  |  | 8827|  33.5k|            return check_##ENUM(ofpact_get_##ENUM(a), cp);
  |  |  ------------------
  |  |  112|  33.5k|    OFPACT(CONJUNCTION,     ofpact_conjunction, ofpact, "conjunction")  \
  |  |  ------------------
  |  |  |  | 8826|    218|        case OFPACT_##ENUM:                                 \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (8826:9): [True: 218, False: 250k]
  |  |  |  |  ------------------
  |  |  |  | 8827|    218|            return check_##ENUM(ofpact_get_##ENUM(a), cp);
  |  |  ------------------
  |  |  113|    218|                                                                        \
  |  |  114|    218|    /* Arithmetic. */                                                   \
  |  |  115|    297|    OFPACT(MULTIPATH,       ofpact_multipath,   ofpact, "multipath")    \
  |  |  ------------------
  |  |  |  | 8826|    297|        case OFPACT_##ENUM:                                 \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (8826:9): [True: 297, False: 250k]
  |  |  |  |  ------------------
  |  |  |  | 8827|    297|            return check_##ENUM(ofpact_get_##ENUM(a), cp);
  |  |  ------------------
  |  |  116|    297|                                                                        \
  |  |  117|    297|    /* Other. */                                                        \
  |  |  118|  1.73k|    OFPACT(NOTE,            ofpact_note,        data, "note")           \
  |  |  ------------------
  |  |  |  | 8826|  1.73k|        case OFPACT_##ENUM:                                 \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (8826:9): [True: 1.73k, False: 248k]
  |  |  |  |  ------------------
  |  |  |  | 8827|  1.73k|            return check_##ENUM(ofpact_get_##ENUM(a), cp);
  |  |  ------------------
  |  |  119|  1.88k|    OFPACT(EXIT,            ofpact_null,        ofpact, "exit")         \
  |  |  ------------------
  |  |  |  | 8826|  1.88k|        case OFPACT_##ENUM:                                 \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (8826:9): [True: 1.88k, False: 248k]
  |  |  |  |  ------------------
  |  |  |  | 8827|  1.88k|            return check_##ENUM(ofpact_get_##ENUM(a), cp);
  |  |  ------------------
  |  |  120|  1.88k|    OFPACT(SAMPLE,          ofpact_sample,      ofpact, "sample")       \
  |  |  ------------------
  |  |  |  | 8826|  1.58k|        case OFPACT_##ENUM:                                 \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (8826:9): [True: 1.58k, False: 249k]
  |  |  |  |  ------------------
  |  |  |  | 8827|  1.58k|            return check_##ENUM(ofpact_get_##ENUM(a), cp);
  |  |  ------------------
  |  |  121|  1.58k|    OFPACT(UNROLL_XLATE,    ofpact_unroll_xlate, ofpact, "unroll_xlate") \
  |  |  ------------------
  |  |  |  | 8826|      0|        case OFPACT_##ENUM:                                 \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (8826:9): [True: 0, False: 250k]
  |  |  |  |  ------------------
  |  |  |  | 8827|      0|            return check_##ENUM(ofpact_get_##ENUM(a), cp);
  |  |  ------------------
  |  |  122|  9.12k|    OFPACT(CT,              ofpact_conntrack,   ofpact, "ct")           \
  |  |  ------------------
  |  |  |  | 8826|  9.12k|        case OFPACT_##ENUM:                                 \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (8826:9): [True: 9.12k, False: 241k]
  |  |  |  |  ------------------
  |  |  |  | 8827|  9.12k|            return check_##ENUM(ofpact_get_##ENUM(a), cp);
  |  |  ------------------
  |  |  123|  9.12k|    OFPACT(CT_CLEAR,        ofpact_null,        ofpact, "ct_clear")     \
  |  |  ------------------
  |  |  |  | 8826|  1.33k|        case OFPACT_##ENUM:                                 \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (8826:9): [True: 1.33k, False: 249k]
  |  |  |  |  ------------------
  |  |  |  | 8827|  1.33k|            return check_##ENUM(ofpact_get_##ENUM(a), cp);
  |  |  ------------------
  |  |  124|  7.41k|    OFPACT(NAT,             ofpact_nat,         ofpact, "nat")          \
  |  |  ------------------
  |  |  |  | 8826|  7.41k|        case OFPACT_##ENUM:                                 \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (8826:9): [True: 7.41k, False: 243k]
  |  |  |  |  ------------------
  |  |  |  | 8827|  7.41k|            return check_##ENUM(ofpact_get_##ENUM(a), cp);
  |  |  ------------------
  |  |  125|  7.41k|    OFPACT(OUTPUT_TRUNC,    ofpact_output_trunc,ofpact, "output_trunc") \
  |  |  ------------------
  |  |  |  | 8826|    871|        case OFPACT_##ENUM:                                 \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (8826:9): [True: 871, False: 249k]
  |  |  |  |  ------------------
  |  |  |  | 8827|    871|            return check_##ENUM(ofpact_get_##ENUM(a), cp);
  |  |  ------------------
  |  |  126|  6.02k|    OFPACT(CLONE,           ofpact_nest,        actions, "clone")       \
  |  |  ------------------
  |  |  |  | 8826|  6.02k|        case OFPACT_##ENUM:                                 \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (8826:9): [True: 6.02k, False: 244k]
  |  |  |  |  ------------------
  |  |  |  | 8827|  6.02k|            return check_##ENUM(ofpact_get_##ENUM(a), cp);
  |  |  ------------------
  |  |  127|  6.02k|    OFPACT(CHECK_PKT_LARGER, ofpact_check_pkt_larger, ofpact,           \
  |  |  ------------------
  |  |  |  | 8826|    703|        case OFPACT_##ENUM:                                 \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (8826:9): [True: 703, False: 249k]
  |  |  |  |  ------------------
  |  |  |  | 8827|    703|            return check_##ENUM(ofpact_get_##ENUM(a), cp);
  |  |  ------------------
  |  |  128|    703|           "check_pkt_larger")                                          \
  |  |  129|    703|                                                                        \
  |  |  130|    703|    /* Debugging actions.                                               \
  |  |  131|    703|     *                                                                  \
  |  |  132|    703|     * These are intentionally undocumented, subject to change, and     \
  |  |  133|    703|     * only accepted if ovs-vswitchd is started with --enable-dummy. */ \
  |  |  134|    915|    OFPACT(DEBUG_RECIRC, ofpact_null,           ofpact, "debug_recirc") \
  |  |  ------------------
  |  |  |  | 8826|    915|        case OFPACT_##ENUM:                                 \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (8826:9): [True: 915, False: 249k]
  |  |  |  |  ------------------
  |  |  |  | 8827|    915|            return check_##ENUM(ofpact_get_##ENUM(a), cp);
  |  |  ------------------
  |  |  135|  1.81k|    OFPACT(DEBUG_SLOW,   ofpact_null,           ofpact, "debug_slow")   \
  |  |  ------------------
  |  |  |  | 8826|  1.81k|        case OFPACT_##ENUM:                                 \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (8826:9): [True: 1.81k, False: 248k]
  |  |  |  |  ------------------
  |  |  |  | 8827|  1.81k|            return check_##ENUM(ofpact_get_##ENUM(a), cp);
  |  |  ------------------
  |  |  136|  1.81k|                                                                        \
  |  |  137|  1.81k|    /* Instructions ("meter" is an action in OF1.5+). */                \
  |  |  138|  1.81k|    OFPACT(METER,           ofpact_meter,       ofpact, "meter")        \
  |  |  ------------------
  |  |  |  | 8826|    130|        case OFPACT_##ENUM:                                 \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (8826:9): [True: 130, False: 250k]
  |  |  |  |  ------------------
  |  |  |  | 8827|    130|            return check_##ENUM(ofpact_get_##ENUM(a), cp);
  |  |  ------------------
  |  |  139|    130|    OFPACT(CLEAR_ACTIONS,   ofpact_null,        ofpact, "clear_actions") \
  |  |  ------------------
  |  |  |  | 8826|     10|        case OFPACT_##ENUM:                                 \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (8826:9): [True: 10, False: 250k]
  |  |  |  |  ------------------
  |  |  |  | 8827|     10|            return check_##ENUM(ofpact_get_##ENUM(a), cp);
  |  |  ------------------
  |  |  140|     64|    OFPACT(WRITE_ACTIONS,   ofpact_nest,        actions, "write_actions") \
  |  |  ------------------
  |  |  |  | 8826|     64|        case OFPACT_##ENUM:                                 \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (8826:9): [True: 64, False: 250k]
  |  |  |  |  ------------------
  |  |  |  | 8827|     64|            return check_##ENUM(ofpact_get_##ENUM(a), cp);
  |  |  ------------------
  |  |  141|     64|    OFPACT(WRITE_METADATA,  ofpact_metadata,    ofpact, "write_metadata") \
  |  |  ------------------
  |  |  |  | 8826|      8|        case OFPACT_##ENUM:                                 \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (8826:9): [True: 8, False: 250k]
  |  |  |  |  ------------------
  |  |  |  | 8827|      8|            return check_##ENUM(ofpact_get_##ENUM(a), cp);
  |  |  ------------------
  |  |  142|     11|    OFPACT(GOTO_TABLE,      ofpact_goto_table,  ofpact, "goto_table")
  |  |  ------------------
  |  |  |  | 8826|     11|        case OFPACT_##ENUM:                                 \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (8826:9): [True: 11, False: 250k]
  |  |  |  |  ------------------
  |  |  |  | 8827|     11|            return check_##ENUM(ofpact_get_##ENUM(a), cp);
  |  |  ------------------
  ------------------
 8829|      0|#undef OFPACT
 8830|      0|    default:
  ------------------
  |  Branch (8830:5): [True: 0, False: 250k]
  ------------------
 8831|      0|        OVS_NOT_REACHED();
  ------------------
  |  |  107|      0|#define OVS_NOT_REACHED() abort()
  ------------------
 8832|   250k|    }
 8833|   250k|}
ofp-actions.c:check_OUTPUT:
  717|   102k|{
  718|   102k|    return ofpact_check_output_port(a->port, cp->max_ports);
  719|   102k|}
ofp-actions.c:check_GROUP:
  756|    209|{
  757|    209|    return 0;
  758|    209|}
ofp-actions.c:check_CONTROLLER:
 1074|  6.44k|{
 1075|  6.44k|    return 0;
 1076|  6.44k|}
ofp-actions.c:check_ENQUEUE:
 1161|    770|{
 1162|    770|    if (ofp_to_u16(a->port) >= ofp_to_u16(cp->max_ports)
  ------------------
  |  Branch (1162:9): [True: 539, False: 231]
  ------------------
 1163|    770|        && a->port != OFPP_IN_PORT
  ------------------
  |  |   39|    539|#define OFPP_IN_PORT    OFP_PORT_C(0xfff8) /* Where the packet came in. */
  |  |  ------------------
  |  |  |  |  157|  1.30k|#define OFP_PORT_C(X) ((OVS_FORCE ofp_port_t) (X))
  |  |  ------------------
  ------------------
  |  Branch (1163:12): [True: 145, False: 394]
  ------------------
 1164|    145|        && a->port != OFPP_LOCAL) {
  ------------------
  |  |   46|    145|#define OFPP_LOCAL      OFP_PORT_C(0xfffe) /* Local openflow "port". */
  |  |  ------------------
  |  |  |  |  157|    145|#define OFP_PORT_C(X) ((OVS_FORCE ofp_port_t) (X))
  |  |  ------------------
  ------------------
  |  Branch (1164:12): [True: 8, False: 137]
  ------------------
 1165|      8|        return OFPERR_OFPBAC_BAD_OUT_PORT;
 1166|      8|    }
 1167|    762|    return 0;
 1168|    770|}
ofp-actions.c:check_OUTPUT_REG:
 1326|    728|{
 1327|    728|    return mf_check_src(&a->src, cp->match);
 1328|    728|}
ofp-actions.c:check_BUNDLE:
 1552|    854|{
 1553|    854|    return bundle_check(a, cp->max_ports, cp->match);
 1554|    854|}
ofp-actions.c:check_SET_FIELD:
 3352|  25.3k|{
 3353|  25.3k|    const struct mf_field *mf = a->field;
 3354|  25.3k|    struct flow *flow = &cp->match->flow;
 3355|  25.3k|    ovs_be16 *tci = &flow->vlans[0].tci;
 3356|       |
 3357|       |    /* Require OXM_OF_VLAN_VID to have an existing VLAN header. */
 3358|  25.3k|    if (!mf_are_prereqs_ok(mf, flow, NULL)
  ------------------
  |  Branch (3358:9): [True: 179, False: 25.1k]
  ------------------
 3359|  25.1k|        || (mf->id == MFF_VLAN_VID && !(*tci & htons(VLAN_CFI)))) {
  ------------------
  |  Branch (3359:13): [True: 429, False: 24.7k]
  |  Branch (3359:39): [True: 3, False: 426]
  ------------------
 3360|    182|        VLOG_WARN_RL(&rl, "set_field %s lacks correct prerequisites",
  ------------------
  |  |  224|    182|#define VLOG_WARN_RL(RL, ...) VLOG_RL(RL, VLL_WARN, __VA_ARGS__)
  |  |  ------------------
  |  |  |  |  287|    182|    do {                                                                \
  |  |  |  |  288|    182|        enum vlog_level level__ = LEVEL;                                \
  |  |  |  |  289|    182|        if (this_module.min_level >= level__) {                         \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (289:13): [True: 0, False: 182]
  |  |  |  |  ------------------
  |  |  |  |  290|      0|            vlog_rate_limit(&this_module, level__, RL, __VA_ARGS__);    \
  |  |  |  |  291|      0|        }                                                               \
  |  |  |  |  292|    182|    } while (0)
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (292:14): [Folded, False: 182]
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 3361|    182|                     mf->name);
 3362|    182|        return OFPERR_OFPBAC_MATCH_INCONSISTENT;
 3363|    182|    }
 3364|       |
 3365|       |    /* Remember if we saw a VLAN tag in the flow, to aid translating to
 3366|       |     * OpenFlow 1.1 if need be. */
 3367|  25.1k|    a->flow_has_vlan = (*tci & htons(VLAN_CFI)) != 0;
 3368|  25.1k|    if (mf->id == MFF_VLAN_TCI) {
  ------------------
  |  Branch (3368:9): [True: 1.21k, False: 23.9k]
  ------------------
 3369|       |        /* The set field may add or remove the VLAN tag,
 3370|       |         * Mark the status temporarily. */
 3371|  1.21k|        *tci = a->value->be16;
 3372|  1.21k|    }
 3373|       |
 3374|  25.1k|    return 0;
 3375|  25.3k|}
ofp-actions.c:check_SET_VLAN_VID:
 1649|  1.47k|{
 1650|       |    /* Remember if we saw a vlan tag in the flow to aid translating to OpenFlow
 1651|       |     * 1.1+ if need be. */
 1652|  1.47k|    ovs_be16 *tci = &cp->match->flow.vlans[0].tci;
 1653|  1.47k|    a->flow_has_vlan = (*tci & htons(VLAN_CFI)) != 0;
 1654|  1.47k|    if (!a->flow_has_vlan && !a->push_vlan_if_needed) {
  ------------------
  |  Branch (1654:9): [True: 517, False: 958]
  |  Branch (1654:30): [True: 265, False: 252]
  ------------------
 1655|    265|        inconsistent_match(&cp->usable_protocols);
 1656|    265|    }
 1657|       |
 1658|       |    /* Temporarily mark that we have a vlan tag. */
 1659|  1.47k|    *tci |= htons(VLAN_CFI);
 1660|       |
 1661|  1.47k|    return 0;
 1662|  1.47k|}
ofp-actions.c:inconsistent_match:
 8812|  14.4k|{
 8813|  14.4k|    *usable_protocols &= OFPUTIL_P_OF10_ANY;
  ------------------
  |  |   60|  14.4k|#define OFPUTIL_P_OF10_ANY (OFPUTIL_P_OF10_STD_ANY | OFPUTIL_P_OF10_NXM_ANY)
  |  |  ------------------
  |  |  |  |   58|  14.4k|#define OFPUTIL_P_OF10_STD_ANY (OFPUTIL_P_OF10_STD | OFPUTIL_P_OF10_STD_TID)
  |  |  ------------------
  |  |               #define OFPUTIL_P_OF10_ANY (OFPUTIL_P_OF10_STD_ANY | OFPUTIL_P_OF10_NXM_ANY)
  |  |  ------------------
  |  |  |  |   59|  14.4k|#define OFPUTIL_P_OF10_NXM_ANY (OFPUTIL_P_OF10_NXM | OFPUTIL_P_OF10_NXM_TID)
  |  |  ------------------
  ------------------
 8814|  14.4k|}
ofp-actions.c:check_SET_VLAN_PCP:
 1757|  1.25k|{
 1758|       |    /* Remember if we saw a vlan tag in the flow to aid translating to OpenFlow
 1759|       |     * 1.1+ if need be. */
 1760|  1.25k|    ovs_be16 *tci = &cp->match->flow.vlans[0].tci;
 1761|  1.25k|    a->flow_has_vlan = (*tci & htons(VLAN_CFI)) != 0;
 1762|  1.25k|    if (!a->flow_has_vlan && !a->push_vlan_if_needed) {
  ------------------
  |  Branch (1762:9): [True: 294, False: 962]
  |  Branch (1762:30): [True: 204, False: 90]
  ------------------
 1763|    204|        inconsistent_match(&cp->usable_protocols);
 1764|    204|    }
 1765|       |
 1766|       |    /* Temporarily mark that we have a vlan tag. */
 1767|  1.25k|    *tci |= htons(VLAN_CFI);
 1768|       |
 1769|  1.25k|    return 0;
 1770|  1.25k|}
ofp-actions.c:check_STRIP_VLAN:
 1826|  3.09k|{
 1827|  3.09k|    if (!(cp->match->flow.vlans[0].tci & htons(VLAN_CFI))) {
  ------------------
  |  Branch (1827:9): [True: 1.21k, False: 1.87k]
  ------------------
 1828|  1.21k|        inconsistent_match(&cp->usable_protocols);
 1829|  1.21k|    }
 1830|       |    flow_pop_vlan(&cp->match->flow, NULL);
 1831|  3.09k|    return 0;
 1832|  3.09k|}
ofp-actions.c:check_PUSH_VLAN:
 1894|  1.74k|{
 1895|  1.74k|    struct flow *flow = &cp->match->flow;
 1896|  1.74k|    if (flow->vlans[FLOW_MAX_VLAN_HEADERS - 1].tci & htons(VLAN_CFI)) {
  ------------------
  |  |   75|  1.74k|#define FLOW_MAX_VLAN_HEADERS 2
  ------------------
  |  Branch (1896:9): [True: 2, False: 1.74k]
  ------------------
 1897|       |        /* Support maximum (FLOW_MAX_VLAN_HEADERS) VLAN headers. */
 1898|      2|        return OFPERR_OFPBAC_BAD_TAG;
 1899|      2|    }
 1900|       |    /* Temporary mark that we have a vlan tag. */
 1901|  1.74k|    flow_push_vlan_uninit(flow, NULL);
 1902|       |    flow->vlans[0].tci |= htons(VLAN_CFI);
 1903|  1.74k|    return 0;
 1904|  1.74k|}
ofp-actions.c:check_SET_ETH_SRC:
 1998|    423|{
 1999|    423|    return 0;
 2000|    423|}
ofp-actions.c:check_SET_ETH_DST:
 2005|    970|{
 2006|    970|    return 0;
 2007|    970|}
ofp-actions.c:check_SET_IPV4_SRC:
 2100|  2.11k|{
 2101|  2.11k|    return check_set_ipv4(cp);
 2102|  2.11k|}
ofp-actions.c:check_set_ipv4:
 2089|  2.81k|{
 2090|  2.81k|    ovs_be16 dl_type = get_dl_type(&cp->match->flow);
 2091|  2.81k|    if (dl_type != htons(ETH_TYPE_IP)) {
  ------------------
  |  Branch (2091:9): [True: 1.83k, False: 984]
  ------------------
 2092|  1.83k|        inconsistent_match(&cp->usable_protocols);
 2093|  1.83k|    }
 2094|  2.81k|    return 0;
 2095|  2.81k|}
ofp-actions.c:check_SET_IPV4_DST:
 2107|    700|{
 2108|    700|    return check_set_ipv4(cp);
 2109|    700|}
ofp-actions.c:check_SET_IP_DSCP:
 2176|  1.65k|{
 2177|  1.65k|    return check_set_ip(cp);
 2178|  1.65k|}
ofp-actions.c:check_set_ip:
 2166|  8.23k|{
 2167|  8.23k|    if (!is_ip_any(&cp->match->flow)) {
  ------------------
  |  Branch (2167:9): [True: 4.14k, False: 4.09k]
  ------------------
 2168|  4.14k|        inconsistent_match(&cp->usable_protocols);
 2169|  4.14k|    }
 2170|  8.23k|    return 0;
 2171|  8.23k|}
ofp-actions.c:check_SET_IP_ECN:
 2240|  1.18k|{
 2241|  1.18k|    return check_set_ip(cp);
 2242|  1.18k|}
ofp-actions.c:check_SET_IP_TTL:
 2295|  2.43k|{
 2296|  2.43k|    return check_set_ip(cp);
 2297|  2.43k|}
ofp-actions.c:check_SET_L4_SRC_PORT:
 2411|  3.50k|{
 2412|  3.50k|    return check_set_l4_port(a, cp);
 2413|  3.50k|}
ofp-actions.c:check_set_l4_port:
 2392|  5.34k|{
 2393|  5.34k|    const struct flow *flow = &cp->match->flow;
 2394|  5.34k|    if (!is_ip_any(flow)
  ------------------
  |  Branch (2394:9): [True: 1.40k, False: 3.94k]
  ------------------
 2395|  3.94k|        || flow->nw_frag & FLOW_NW_FRAG_LATER
  ------------------
  |  |   55|  9.28k|#define FLOW_NW_FRAG_LATER (1 << 1) /* Set for IP frag with nonzero offset. */
  ------------------
  |  Branch (2395:12): [True: 401, False: 3.53k]
  ------------------
 2396|  3.53k|        || (flow->nw_proto != IPPROTO_TCP &&
  ------------------
  |  Branch (2396:13): [True: 2.14k, False: 1.39k]
  ------------------
 2397|  2.14k|            flow->nw_proto != IPPROTO_UDP &&
  ------------------
  |  Branch (2397:13): [True: 1.53k, False: 609]
  ------------------
 2398|  2.31k|            flow->nw_proto != IPPROTO_SCTP)) {
  ------------------
  |  Branch (2398:13): [True: 507, False: 1.02k]
  ------------------
 2399|  2.31k|        inconsistent_match(&cp->usable_protocols);
 2400|  2.31k|    }
 2401|       |
 2402|       |    /* Note the transport protocol in use, to allow this action to be converted
 2403|       |     * to an OF1.2 set_field action later if necessary. */
 2404|  5.34k|    a->flow_ip_proto = flow->nw_proto;
 2405|       |
 2406|  5.34k|    return 0;
 2407|  5.34k|}
ofp-actions.c:check_SET_L4_DST_PORT:
 2417|  1.84k|{
 2418|  1.84k|    return check_set_l4_port(a, cp);
 2419|  1.84k|}
ofp-actions.c:check_REG_MOVE:
 2722|    458|{
 2723|    458|    return nxm_reg_move_check(a, cp->match);
 2724|    458|}
ofp-actions.c:check_STACK_PUSH:
 3572|    375|{
 3573|    375|    return nxm_stack_push_check(a, cp->match);
 3574|    375|}
ofp-actions.c:check_STACK_POP:
 3579|  2.03k|{
 3580|  2.03k|    return nxm_stack_pop_check(a, cp->match);
 3581|  2.03k|}
ofp-actions.c:check_DEC_TTL:
 3755|  2.95k|{
 3756|  2.95k|    return check_set_ip(cp);
 3757|  2.95k|}
ofp-actions.c:check_SET_MPLS_LABEL:
 3828|  2.04k|{
 3829|  2.04k|    return check_set_mpls(cp);
 3830|  2.04k|}
ofp-actions.c:check_set_mpls:
 3817|  6.88k|{
 3818|  6.88k|    ovs_be16 dl_type = get_dl_type(&cp->match->flow);
 3819|  6.88k|    if (!eth_type_mpls(dl_type)) {
  ------------------
  |  Branch (3819:9): [True: 3.03k, False: 3.85k]
  ------------------
 3820|  3.03k|        inconsistent_match(&cp->usable_protocols);
 3821|  3.03k|    }
 3822|  6.88k|    return 0;
 3823|  6.88k|}
ofp-actions.c:check_SET_MPLS_TC:
 3889|  1.28k|{
 3890|  1.28k|    return check_set_mpls(cp);
 3891|  1.28k|}
ofp-actions.c:check_SET_MPLS_TTL:
 3947|  1.35k|{
 3948|  1.35k|    return check_set_mpls(cp);
 3949|  1.35k|}
ofp-actions.c:check_DEC_MPLS_TTL:
 3984|  2.20k|{
 3985|  2.20k|    return check_set_mpls(cp);
 3986|  2.20k|}
ofp-actions.c:check_PUSH_MPLS:
 4037|    696|{
 4038|    696|    struct flow *flow = &cp->match->flow;
 4039|       |
 4040|    696|    if (flow->packet_type != htonl(PT_ETH)) {
  ------------------
  |  Branch (4040:9): [True: 398, False: 298]
  ------------------
 4041|    398|        inconsistent_match(&cp->usable_protocols);
 4042|    398|    }
 4043|    696|    flow->dl_type = a->ethertype;
 4044|       |
 4045|       |    /* The packet is now MPLS and the MPLS payload is opaque.
 4046|       |     * Thus nothing can be assumed about the network protocol.
 4047|       |     * Temporarily mark that we have no nw_proto. */
 4048|    696|    flow->nw_proto = 0;
 4049|       |
 4050|    696|    return 0;
 4051|    696|}
ofp-actions.c:check_POP_MPLS:
 4094|  1.31k|{
 4095|  1.31k|    struct flow *flow = &cp->match->flow;
 4096|  1.31k|    ovs_be16 dl_type = get_dl_type(flow);
 4097|       |
 4098|  1.31k|    if (flow->packet_type != htonl(PT_ETH) || !eth_type_mpls(dl_type)) {
  ------------------
  |  Branch (4098:9): [True: 297, False: 1.01k]
  |  Branch (4098:47): [True: 299, False: 714]
  ------------------
 4099|    596|        inconsistent_match(&cp->usable_protocols);
 4100|    596|    }
 4101|  1.31k|    flow->dl_type = a->ethertype;
 4102|  1.31k|    return 0;
 4103|  1.31k|}
ofp-actions.c:check_DEC_NSH_TTL:
 4829|    867|{
 4830|    867|    struct flow *flow = &cp->match->flow;
 4831|    867|    if (flow->packet_type != htonl(PT_NSH) &&
  ------------------
  |  Branch (4831:9): [True: 452, False: 415]
  ------------------
 4832|    452|        flow->dl_type != htons(ETH_TYPE_NSH)) {
  ------------------
  |  Branch (4832:9): [True: 243, False: 209]
  ------------------
 4833|    243|        inconsistent_match(&cp->usable_protocols);
 4834|    243|    }
 4835|    867|    return 0;
 4836|    867|}
ofp-actions.c:check_DELETE_FIELD:
 4256|    350|{
 4257|    350|    if (odf->field->id < MFF_TUN_METADATA0 ||
  ------------------
  |  Branch (4257:9): [True: 0, False: 350]
  ------------------
 4258|    350|        odf->field->id > MFF_TUN_METADATA63) {
  ------------------
  |  Branch (4258:9): [True: 8, False: 342]
  ------------------
 4259|      8|        return OFPERR_OFPBAC_BAD_ARGUMENT;
 4260|      8|    }
 4261|    342|    return 0;
 4262|    350|}
ofp-actions.c:check_ENCAP:
 4664|  1.65k|{
 4665|  1.65k|    struct flow *flow = &cp->match->flow;
 4666|  1.65k|    flow->packet_type = a->new_pkt_type;
 4667|  1.65k|    if (pt_ns(flow->packet_type) == OFPHTN_ETHERTYPE) {
  ------------------
  |  Branch (4667:9): [True: 1.30k, False: 351]
  ------------------
 4668|  1.30k|        flow->dl_type = htons(pt_ns_type(flow->packet_type));
 4669|  1.30k|    }
 4670|  1.65k|    if (!is_ip_any(flow)) {
  ------------------
  |  Branch (4670:9): [True: 1.41k, False: 240]
  ------------------
 4671|  1.41k|        flow->nw_proto = 0;
 4672|  1.41k|    }
 4673|  1.65k|    return 0;
 4674|  1.65k|}
ofp-actions.c:check_DECAP:
 4781|  2.00k|{
 4782|  2.00k|    struct flow *flow = &cp->match->flow;
 4783|  2.00k|    if (flow->packet_type == htonl(PT_ETH)) {
  ------------------
  |  Branch (4783:9): [True: 985, False: 1.02k]
  ------------------
 4784|       |        /* Adjust the packet_type to allow subsequent actions. */
 4785|    985|        flow->packet_type = PACKET_TYPE_BE(OFPHTN_ETHERTYPE,
  ------------------
  |  | 1565|    985|#define PACKET_TYPE_BE(NS, NS_TYPE) (htonl((NS) << 16 | (NS_TYPE)))
  ------------------
 4786|    985|                                           ntohs(flow->dl_type));
 4787|  1.02k|    } else {
 4788|       |        /* The actual packet_type is only known after decapsulation.
 4789|       |         * Do not allow subsequent actions that depend on packet headers. */
 4790|  1.02k|        flow->packet_type = htonl(PT_UNKNOWN);
 4791|  1.02k|        flow->dl_type = OVS_BE16_MAX;
  ------------------
  |  |   42|  1.02k|#define OVS_BE16_MAX ((OVS_FORCE ovs_be16) 0xffff)
  ------------------
 4792|  1.02k|    }
 4793|  2.00k|    return 0;
 4794|  2.00k|}
ofp-actions.c:check_SET_TUNNEL:
 4177|  1.25k|{
 4178|  1.25k|    return 0;
 4179|  1.25k|}
ofp-actions.c:check_SET_QUEUE:
 4299|    263|{
 4300|    263|    return 0;
 4301|    263|}
ofp-actions.c:check_POP_QUEUE:
 4337|    452|{
 4338|    452|    return 0;
 4339|    452|}
ofp-actions.c:check_FIN_TIMEOUT:
 4444|    440|{
 4445|    440|    if (cp->match->flow.nw_proto != IPPROTO_TCP) {
  ------------------
  |  Branch (4445:9): [True: 191, False: 249]
  ------------------
 4446|    191|        inconsistent_match(&cp->usable_protocols);
 4447|    191|    }
 4448|    440|    return 0;
 4449|    440|}
ofp-actions.c:check_RESUBMIT:
 5051|  1.23k|{
 5052|  1.23k|    if (a->with_ct_orig && !is_ct_valid(&cp->match->flow, &cp->match->wc,
  ------------------
  |  Branch (5052:9): [True: 392, False: 844]
  |  Branch (5052:28): [True: 4, False: 388]
  ------------------
 5053|    392|                                        NULL)) {
 5054|      4|        return OFPERR_OFPBAC_MATCH_INCONSISTENT;
 5055|      4|    }
 5056|  1.23k|    return 0;
 5057|  1.23k|}
ofp-actions.c:check_LEARN:
 5646|  33.5k|{
 5647|  33.5k|    return learn_check(a, cp->match);
 5648|  33.5k|}
ofp-actions.c:check_CONJUNCTION:
 5739|    218|{
 5740|    218|    return 0;
 5741|    218|}
ofp-actions.c:check_MULTIPATH:
 5873|    297|{
 5874|    297|    return multipath_check(a, cp->match);
 5875|    297|}
ofp-actions.c:check_NOTE:
 5959|  1.73k|{
 5960|  1.73k|    return 0;
 5961|  1.73k|}
ofp-actions.c:check_EXIT:
 5996|  1.88k|{
 5997|  1.88k|    return 0;
 5998|  1.88k|}
ofp-actions.c:check_SAMPLE:
 6561|  1.58k|{
 6562|  1.58k|    return 0;
 6563|  1.58k|}
ofp-actions.c:check_CT:
 7068|  9.12k|{
 7069|  9.12k|    struct flow *flow = &cp->match->flow;
 7070|       |
 7071|  9.12k|    if (!dl_type_is_ip_any(get_dl_type(flow))
  ------------------
  |  Branch (7071:9): [True: 131, False: 8.99k]
  ------------------
 7072|  8.99k|        || (flow->ct_state & CS_INVALID && a->flags & NX_CT_F_COMMIT)
  ------------------
  |  Branch (7072:13): [True: 101, False: 8.89k]
  |  Branch (7072:44): [True: 1, False: 100]
  ------------------
 7073|  8.99k|        || (a->alg == IPPORT_FTP && flow->nw_proto != IPPROTO_TCP)
  ------------------
  |  |  695|  17.9k|#define IPPORT_FTP  21
  ------------------
  |  Branch (7073:13): [True: 197, False: 8.79k]
  |  Branch (7073:37): [True: 2, False: 195]
  ------------------
 7074|  8.99k|        || (a->alg == IPPORT_TFTP && flow->nw_proto != IPPROTO_UDP)) {
  ------------------
  |  |  699|  17.9k|#define IPPORT_TFTP  69
  ------------------
  |  Branch (7074:13): [True: 67, False: 8.92k]
  |  Branch (7074:38): [True: 1, False: 66]
  ------------------
 7075|       |        /* We can't downgrade to OF1.0 and expect inconsistent CT actions
 7076|       |         * be silently discarded.  Instead, datapath flow install fails, so
 7077|       |         * it is better to flag inconsistent CT actions as hard errors. */
 7078|    135|        return OFPERR_OFPBAC_MATCH_INCONSISTENT;
 7079|    135|    }
 7080|       |
 7081|  8.99k|    if (a->zone_src.field) {
  ------------------
  |  Branch (7081:9): [True: 228, False: 8.76k]
  ------------------
 7082|    228|        return mf_check_src(&a->zone_src, cp->match);
 7083|    228|    }
 7084|       |
 7085|  8.76k|    return check_subactions(a->actions, ofpact_ct_get_action_len(a), cp);
 7086|  8.99k|}
ofp-actions.c:check_subactions:
 6123|  14.7k|{
 6124|  14.7k|    struct ofpact_check_params sub = *cp;
 6125|  14.7k|    enum ofperr error = ofpacts_check(ofpacts, ofpacts_len, &sub);
 6126|  14.7k|    cp->usable_protocols &= sub.usable_protocols;
 6127|  14.7k|    return error;
 6128|  14.7k|}
ofp-actions.c:check_CT_CLEAR:
 7122|  1.33k|{
 7123|  1.33k|    return 0;
 7124|  1.33k|}
ofp-actions.c:check_NAT:
 7480|  7.41k|{
 7481|  7.41k|    ovs_be16 dl_type = get_dl_type(&cp->match->flow);
 7482|  7.41k|    if (!dl_type_is_ip_any(dl_type) ||
  ------------------
  |  Branch (7482:9): [True: 0, False: 7.41k]
  ------------------
 7483|  7.41k|        (a->range_af == AF_INET && dl_type != htons(ETH_TYPE_IP)) ||
  ------------------
  |  Branch (7483:10): [True: 682, False: 6.73k]
  |  Branch (7483:36): [True: 1, False: 681]
  ------------------
 7484|  7.41k|        (a->range_af == AF_INET6 && dl_type != htons(ETH_TYPE_IPV6))) {
  ------------------
  |  Branch (7484:10): [True: 4.00k, False: 3.41k]
  |  Branch (7484:37): [True: 1, False: 3.99k]
  ------------------
 7485|      2|        return OFPERR_OFPBAC_MATCH_INCONSISTENT;
 7486|      2|    }
 7487|  7.41k|    return 0;
 7488|  7.41k|}
ofp-actions.c:check_OUTPUT_TRUNC:
 7550|    871|{
 7551|    871|    return ofpact_check_output_port(a->port, cp->max_ports);
 7552|    871|}
ofp-actions.c:check_CLONE:
 6132|  6.02k|{
 6133|  6.02k|    return check_subactions(a->actions, ofpact_nest_get_action_len(a), cp);
 6134|  6.02k|}
ofp-actions.c:check_CHECK_PKT_LARGER:
 7911|    703|{
 7912|    703|    return 0;
 7913|    703|}
ofp-actions.c:check_DEBUG_RECIRC:
 6611|    915|{
 6612|    915|    return 0;
 6613|    915|}
ofp-actions.c:check_DEBUG_SLOW:
 6651|  1.81k|{
 6652|  1.81k|    return 0;
 6653|  1.81k|}
ofp-actions.c:check_METER:
 7601|    130|{
 7602|    130|    uint32_t mid = a->meter_id;
 7603|    130|    return mid == 0 || mid > OFPM13_MAX ? OFPERR_OFPMMFC_INVALID_METER : 0;
  ------------------
  |  Branch (7603:12): [True: 1, False: 129]
  |  Branch (7603:24): [True: 12, False: 117]
  ------------------
 7604|    130|}
ofp-actions.c:check_CLEAR_ACTIONS:
 7635|     10|{
 7636|     10|    return 0;
 7637|     10|}
ofp-actions.c:check_WRITE_ACTIONS:
 7698|     64|{
 7699|       |    /* Use a temporary copy of 'cp' to avoid updating 'cp->usable_protocols',
 7700|       |     * since we can't check consistency of an action set. */
 7701|     64|    struct ofpact_check_params tmp = *cp;
 7702|     64|    return ofpacts_check(a->actions, ofpact_nest_get_action_len(a), &tmp);
 7703|     64|}
ofp-actions.c:check_WRITE_METADATA:
 7794|      8|{
 7795|      8|    return 0;
 7796|      8|}
ofp-actions.c:check_GOTO_TABLE:
 7958|     11|{
 7959|     11|    if ((cp->table_id != 255 && a->table_id <= cp->table_id)
  ------------------
  |  Branch (7959:10): [True: 6, False: 5]
  |  Branch (7959:33): [True: 1, False: 5]
  ------------------
 7960|     10|        || (cp->n_tables != 255 && a->table_id >= cp->n_tables)) {
  ------------------
  |  Branch (7960:13): [True: 0, False: 10]
  |  Branch (7960:36): [True: 0, False: 0]
  ------------------
 7961|      1|        return OFPERR_OFPBIC_BAD_TABLE_ID;
 7962|      1|    }
 7963|     10|    return 0;
 7964|     11|}
ofp-actions.c:ofpacts_verify:
 9006|  16.5k|{
 9007|  16.5k|    const struct ofpact *a;
 9008|  16.5k|    enum ovs_instruction_type inst;
 9009|       |
 9010|  16.5k|    inst = OVSINST_OFPIT13_METER;
 9011|   271k|    OFPACT_FOR_EACH (a, ofpacts, ofpacts_len) {
  ------------------
  |  |  261|   287k|    for ((POS) = (OFPACTS); (POS) < ofpact_end(OFPACTS, OFPACTS_LEN);  \
  |  |  ------------------
  |  |  |  Branch (261:29): [True: 271k, False: 15.8k]
  |  |  ------------------
  |  |  262|   270k|         (POS) = ofpact_next(POS))
  ------------------
 9012|   271k|        enum ovs_instruction_type next;
 9013|   271k|        enum ofperr error;
 9014|       |
 9015|   271k|        if (a->type == OFPACT_CONJUNCTION) {
  ------------------
  |  Branch (9015:13): [True: 499, False: 270k]
  ------------------
 9016|  1.00k|            OFPACT_FOR_EACH (a, ofpacts, ofpacts_len) {
  ------------------
  |  |  261|  1.49k|    for ((POS) = (OFPACTS); (POS) < ofpact_end(OFPACTS, OFPACTS_LEN);  \
  |  |  ------------------
  |  |  |  Branch (261:29): [True: 1.00k, False: 488]
  |  |  ------------------
  |  |  262|    993|         (POS) = ofpact_next(POS))
  ------------------
 9017|  1.00k|                if (a->type != OFPACT_CONJUNCTION && a->type != OFPACT_NOTE) {
  ------------------
  |  Branch (9017:21): [True: 485, False: 519]
  |  Branch (9017:54): [True: 11, False: 474]
  ------------------
 9018|     11|                    verify_error(errorp, "\"conjunction\" actions may be used "
 9019|     11|                                 "along with \"note\" but not any other kind "
 9020|     11|                                 "of action (such as the \"%s\" action used "
 9021|     11|                                 "here)", ofpact_name(a->type));
 9022|     11|                    return OFPERR_NXBAC_BAD_CONJUNCTION;
 9023|     11|                }
 9024|  1.00k|            }
 9025|    488|            return 0;
 9026|    499|        }
 9027|       |
 9028|   270k|        error = ofpacts_verify_nested(a, outer_action, errorp);
 9029|   270k|        if (error) {
  ------------------
  |  Branch (9029:13): [True: 127, False: 270k]
  ------------------
 9030|    127|            return error;
 9031|    127|        }
 9032|       |
 9033|   270k|        next = ovs_instruction_type_from_ofpact_type(a->type, version);
 9034|   270k|        if (a > ofpacts
  ------------------
  |  Branch (9034:13): [True: 257k, False: 13.3k]
  ------------------
 9035|   257k|            && (inst == OVSINST_OFPIT11_APPLY_ACTIONS
  ------------------
  |  Branch (9035:16): [True: 33, False: 257k]
  |  Branch (9035:17): [True: 257k, False: 114]
  ------------------
 9036|   257k|                ? next < inst
 9037|   257k|                : next <= inst)) {
 9038|     33|            const char *name = ovs_instruction_name_from_type(inst);
 9039|     33|            const char *next_name = ovs_instruction_name_from_type(next);
 9040|       |
 9041|     33|            if (next == inst) {
  ------------------
  |  Branch (9041:17): [True: 26, False: 7]
  ------------------
 9042|     26|                verify_error(errorp, "duplicate %s instruction not allowed, "
 9043|     26|                             "for OpenFlow 1.1+ compatibility", name);
 9044|     26|            } else {
 9045|      7|                verify_error(errorp, "invalid instruction ordering: "
 9046|      7|                             "%s must appear before %s, "
 9047|      7|                             "for OpenFlow 1.1+ compatibility",
 9048|      7|                             next_name, name);
 9049|      7|            }
 9050|     33|            return OFPERR_OFPBAC_UNSUPPORTED_ORDER;
 9051|     33|        }
 9052|   270k|        if (!((1u << next) & allowed_ovsinsts)) {
  ------------------
  |  Branch (9052:13): [True: 4, False: 270k]
  ------------------
 9053|      4|            const char *name = ovs_instruction_name_from_type(next);
 9054|       |
 9055|      4|            if (next == OVSINST_OFPIT13_METER && version >= OFP15_VERSION) {
  ------------------
  |  Branch (9055:17): [True: 0, False: 4]
  |  Branch (9055:50): [True: 0, False: 0]
  ------------------
 9056|      0|                verify_error(errorp, "%s action not allowed here", name);
 9057|      0|                return OFPERR_OFPBAC_BAD_TYPE;
 9058|      4|            } else {
 9059|      4|                verify_error(errorp, "%s instruction not allowed here", name);
 9060|      4|                return OFPERR_OFPBIC_UNSUP_INST;
 9061|      4|            }
 9062|      4|        }
 9063|       |
 9064|   270k|        inst = next;
 9065|   270k|    }
 9066|       |
 9067|  15.8k|    return 0;
 9068|  16.5k|}
ofp-actions.c:verify_error:
 8916|    175|{
 8917|    175|    va_list args;
 8918|    175|    va_start(args, format);
 8919|    175|    char *error = xvasprintf(format, args);
 8920|    175|    va_end(args);
 8921|       |
 8922|    175|    if (errorp) {
  ------------------
  |  Branch (8922:9): [True: 175, False: 0]
  ------------------
 8923|    175|        *errorp = error;
 8924|    175|    } else {
 8925|      0|        VLOG_WARN("%s", error);
  ------------------
  |  |  209|      0|#define VLOG_WARN(...) VLOG(VLL_WARN, __VA_ARGS__)
  |  |  ------------------
  |  |  |  |  280|      0|    do {                                                \
  |  |  |  |  281|      0|        enum vlog_level level__ = LEVEL;                \
  |  |  |  |  282|      0|        if (this_module.min_level >= level__) {         \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (282:13): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |  283|      0|            vlog(&this_module, level__, __VA_ARGS__);   \
  |  |  |  |  284|      0|        }                                               \
  |  |  |  |  285|      0|    } while (0)
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (285:14): [Folded, False: 0]
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 8926|      0|        free(error);
 8927|      0|    }
 8928|    175|}
ofp-actions.c:ofpacts_verify_nested:
 8949|   270k|{
 8950|   270k|    const struct mf_field *field = ofpact_get_mf_dst(a);
 8951|       |
 8952|   270k|    if (field && field_requires_ct(field->id) && outer_action != OFPACT_CT) {
  ------------------
  |  Branch (8952:9): [True: 27.6k, False: 243k]
  |  Branch (8952:18): [True: 545, False: 27.1k]
  |  Branch (8952:50): [True: 10, False: 535]
  ------------------
 8953|     10|        verify_error(errorp, "cannot set CT fields outside of ct action");
 8954|     10|        return OFPERR_OFPBAC_BAD_SET_ARGUMENT;
 8955|     10|    }
 8956|   270k|    if (a->type == OFPACT_NAT) {
  ------------------
  |  Branch (8956:9): [True: 5.25k, False: 265k]
  ------------------
 8957|  5.25k|        if (outer_action != OFPACT_CT) {
  ------------------
  |  Branch (8957:13): [True: 101, False: 5.15k]
  ------------------
 8958|    101|            verify_error(errorp,
 8959|    101|                         "Cannot have NAT action outside of \"ct\" action");
 8960|    101|            return OFPERR_OFPBAC_BAD_SET_ARGUMENT;
 8961|    101|        }
 8962|  5.15k|        return 0;
 8963|  5.25k|    }
 8964|       |
 8965|   265k|    if (outer_action) {
  ------------------
  |  Branch (8965:9): [True: 55.0k, False: 210k]
  ------------------
 8966|  55.0k|        ovs_assert(outer_action == OFPACT_WRITE_ACTIONS
  ------------------
  |  |   62|  55.0k|#define ovs_assert ovs_ignore
  ------------------
  |  Branch (8966:20): [True: 3.66k, False: 51.3k]
  ------------------
 8967|  51.3k|                   || outer_action == OFPACT_CT
  ------------------
  |  Branch (8967:23): [True: 550, False: 50.7k]
  ------------------
 8968|  50.7k|                   || outer_action == OFPACT_CLONE);
  ------------------
  |  Branch (8968:23): [True: 50.7k, False: 0]
  ------------------
 8969|       |
 8970|  55.0k|        if (outer_action == OFPACT_CT) {
  ------------------
  |  Branch (8970:13): [True: 550, False: 54.4k]
  ------------------
 8971|    550|            if (!field) {
  ------------------
  |  Branch (8971:17): [True: 12, False: 538]
  ------------------
 8972|     12|                return unsupported_nesting(a->type, outer_action, errorp);
 8973|    538|            } else if (!field_requires_ct(field->id)) {
  ------------------
  |  Branch (8973:24): [True: 3, False: 535]
  ------------------
 8974|      3|                verify_error(errorp,
 8975|      3|                             "%s action doesn't support nested modification "
 8976|      3|                             "of %s", ofpact_name(outer_action), field->name);
 8977|      3|                return OFPERR_OFPBAC_BAD_ARGUMENT;
 8978|      3|            }
 8979|    550|        }
 8980|       |
 8981|  54.9k|        if (a->type == OFPACT_METER) {
  ------------------
  |  Branch (8981:13): [True: 1, False: 54.9k]
  ------------------
 8982|      1|            return unsupported_nesting(a->type, outer_action, errorp);
 8983|      1|        }
 8984|  54.9k|    }
 8985|       |
 8986|   265k|    return 0;
 8987|   265k|}
ofp-actions.c:field_requires_ct:
 8941|  28.1k|{
 8942|  28.1k|    return field == MFF_CT_MARK || field == MFF_CT_LABEL;
  ------------------
  |  Branch (8942:12): [True: 659, False: 27.5k]
  |  Branch (8942:36): [True: 421, False: 27.1k]
  ------------------
 8943|  28.1k|}
ofp-actions.c:unsupported_nesting:
 8933|     13|{
 8934|     13|    verify_error(errorp, "%s action doesn't support nested action %s",
 8935|     13|                 ofpact_name(outer_action), ofpact_name(action));
 8936|     13|    return OFPERR_OFPBAC_BAD_ARGUMENT;
 8937|     13|}
ofp-actions.c:encode_ofpact:
 9075|   235k|{
 9076|   235k|    switch (a->type) {
 9077|      0|#define OFPACT(ENUM, STRUCT, MEMBER, NAME)                              \
 9078|      0|        case OFPACT_##ENUM:                                             \
 9079|      0|            encode_##ENUM(ofpact_get_##ENUM(a), ofp_version, out);      \
 9080|      0|            return;
 9081|      0|        OFPACTS
  ------------------
  |  |   64|  96.2k|    OFPACT(OUTPUT,          ofpact_output,      ofpact, "output")       \
  |  |  ------------------
  |  |  |  | 9078|  96.2k|        case OFPACT_##ENUM:                                             \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (9078:9): [True: 96.2k, False: 139k]
  |  |  |  |  ------------------
  |  |  |  | 9079|  96.2k|            encode_##ENUM(ofpact_get_##ENUM(a), ofp_version, out);      \
  |  |  |  | 9080|  96.2k|            return;
  |  |  ------------------
  |  |   65|  96.2k|    OFPACT(GROUP,           ofpact_group,       ofpact, "group")        \
  |  |  ------------------
  |  |  |  | 9078|    209|        case OFPACT_##ENUM:                                             \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (9078:9): [True: 209, False: 235k]
  |  |  |  |  ------------------
  |  |  |  | 9079|    209|            encode_##ENUM(ofpact_get_##ENUM(a), ofp_version, out);      \
  |  |  |  | 9080|    209|            return;
  |  |  ------------------
  |  |   66|  6.11k|    OFPACT(CONTROLLER,      ofpact_controller,  userdata, "controller") \
  |  |  ------------------
  |  |  |  | 9078|  6.11k|        case OFPACT_##ENUM:                                             \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (9078:9): [True: 6.11k, False: 229k]
  |  |  |  |  ------------------
  |  |  |  | 9079|  6.11k|            encode_##ENUM(ofpact_get_##ENUM(a), ofp_version, out);      \
  |  |  |  | 9080|  6.11k|            return;
  |  |  ------------------
  |  |   67|  6.11k|    OFPACT(ENQUEUE,         ofpact_enqueue,     ofpact, "enqueue")      \
  |  |  ------------------
  |  |  |  | 9078|    719|        case OFPACT_##ENUM:                                             \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (9078:9): [True: 719, False: 235k]
  |  |  |  |  ------------------
  |  |  |  | 9079|    719|            encode_##ENUM(ofpact_get_##ENUM(a), ofp_version, out);      \
  |  |  |  | 9080|    719|            return;
  |  |  ------------------
  |  |   68|    719|    OFPACT(OUTPUT_REG,      ofpact_output_reg,  ofpact, "output_reg")   \
  |  |  ------------------
  |  |  |  | 9078|    714|        case OFPACT_##ENUM:                                             \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (9078:9): [True: 714, False: 235k]
  |  |  |  |  ------------------
  |  |  |  | 9079|    714|            encode_##ENUM(ofpact_get_##ENUM(a), ofp_version, out);      \
  |  |  |  | 9080|    714|            return;
  |  |  ------------------
  |  |   69|    843|    OFPACT(BUNDLE,          ofpact_bundle,      members, "bundle")      \
  |  |  ------------------
  |  |  |  | 9078|    843|        case OFPACT_##ENUM:                                             \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (9078:9): [True: 843, False: 235k]
  |  |  |  |  ------------------
  |  |  |  | 9079|    843|            encode_##ENUM(ofpact_get_##ENUM(a), ofp_version, out);      \
  |  |  |  | 9080|    843|            return;
  |  |  ------------------
  |  |   70|    843|                                                                        \
  |  |   71|    843|    /* Header changes. */                                               \
  |  |   72|  24.9k|    OFPACT(SET_FIELD,       ofpact_set_field,   ofpact, "set_field")    \
  |  |  ------------------
  |  |  |  | 9078|  24.9k|        case OFPACT_##ENUM:                                             \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (9078:9): [True: 24.9k, False: 210k]
  |  |  |  |  ------------------
  |  |  |  | 9079|  24.9k|            encode_##ENUM(ofpact_get_##ENUM(a), ofp_version, out);      \
  |  |  |  | 9080|  24.9k|            return;
  |  |  ------------------
  |  |   73|  24.9k|    OFPACT(SET_VLAN_VID,    ofpact_vlan_vid,    ofpact, "set_vlan_vid") \
  |  |  ------------------
  |  |  |  | 9078|  1.34k|        case OFPACT_##ENUM:                                             \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (9078:9): [True: 1.34k, False: 234k]
  |  |  |  |  ------------------
  |  |  |  | 9079|  1.34k|            encode_##ENUM(ofpact_get_##ENUM(a), ofp_version, out);      \
  |  |  |  | 9080|  1.34k|            return;
  |  |  ------------------
  |  |   74|  1.34k|    OFPACT(SET_VLAN_PCP,    ofpact_vlan_pcp,    ofpact, "set_vlan_pcp") \
  |  |  ------------------
  |  |  |  | 9078|  1.24k|        case OFPACT_##ENUM:                                             \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (9078:9): [True: 1.24k, False: 234k]
  |  |  |  |  ------------------
  |  |  |  | 9079|  1.24k|            encode_##ENUM(ofpact_get_##ENUM(a), ofp_version, out);      \
  |  |  |  | 9080|  1.24k|            return;
  |  |  ------------------
  |  |   75|  2.28k|    OFPACT(STRIP_VLAN,      ofpact_null,        ofpact, "strip_vlan")   \
  |  |  ------------------
  |  |  |  | 9078|  2.28k|        case OFPACT_##ENUM:                                             \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (9078:9): [True: 2.28k, False: 233k]
  |  |  |  |  ------------------
  |  |  |  | 9079|  2.28k|            encode_##ENUM(ofpact_get_##ENUM(a), ofp_version, out);      \
  |  |  |  | 9080|  2.28k|            return;
  |  |  ------------------
  |  |   76|  2.28k|    OFPACT(PUSH_VLAN,       ofpact_push_vlan,   ofpact, "push_vlan")    \
  |  |  ------------------
  |  |  |  | 9078|  1.28k|        case OFPACT_##ENUM:                                             \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (9078:9): [True: 1.28k, False: 234k]
  |  |  |  |  ------------------
  |  |  |  | 9079|  1.28k|            encode_##ENUM(ofpact_get_##ENUM(a), ofp_version, out);      \
  |  |  |  | 9080|  1.28k|            return;
  |  |  ------------------
  |  |   77|  1.28k|    OFPACT(SET_ETH_SRC,     ofpact_mac,         ofpact, "mod_dl_src")   \
  |  |  ------------------
  |  |  |  | 9078|    423|        case OFPACT_##ENUM:                                             \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (9078:9): [True: 423, False: 235k]
  |  |  |  |  ------------------
  |  |  |  | 9079|    423|            encode_##ENUM(ofpact_get_##ENUM(a), ofp_version, out);      \
  |  |  |  | 9080|    423|            return;
  |  |  ------------------
  |  |   78|    456|    OFPACT(SET_ETH_DST,     ofpact_mac,         ofpact, "mod_dl_dst")   \
  |  |  ------------------
  |  |  |  | 9078|    456|        case OFPACT_##ENUM:                                             \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (9078:9): [True: 456, False: 235k]
  |  |  |  |  ------------------
  |  |  |  | 9079|    456|            encode_##ENUM(ofpact_get_##ENUM(a), ofp_version, out);      \
  |  |  |  | 9080|    456|            return;
  |  |  ------------------
  |  |   79|  1.56k|    OFPACT(SET_IPV4_SRC,    ofpact_ipv4,        ofpact, "mod_nw_src")   \
  |  |  ------------------
  |  |  |  | 9078|  1.56k|        case OFPACT_##ENUM:                                             \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (9078:9): [True: 1.56k, False: 234k]
  |  |  |  |  ------------------
  |  |  |  | 9079|  1.56k|            encode_##ENUM(ofpact_get_##ENUM(a), ofp_version, out);      \
  |  |  |  | 9080|  1.56k|            return;
  |  |  ------------------
  |  |   80|  1.56k|    OFPACT(SET_IPV4_DST,    ofpact_ipv4,        ofpact, "mod_nw_dst")   \
  |  |  ------------------
  |  |  |  | 9078|    700|        case OFPACT_##ENUM:                                             \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (9078:9): [True: 700, False: 235k]
  |  |  |  |  ------------------
  |  |  |  | 9079|    700|            encode_##ENUM(ofpact_get_##ENUM(a), ofp_version, out);      \
  |  |  |  | 9080|    700|            return;
  |  |  ------------------
  |  |   81|  1.37k|    OFPACT(SET_IP_DSCP,     ofpact_dscp,        ofpact, "mod_nw_tos")   \
  |  |  ------------------
  |  |  |  | 9078|  1.37k|        case OFPACT_##ENUM:                                             \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (9078:9): [True: 1.37k, False: 234k]
  |  |  |  |  ------------------
  |  |  |  | 9079|  1.37k|            encode_##ENUM(ofpact_get_##ENUM(a), ofp_version, out);      \
  |  |  |  | 9080|  1.37k|            return;
  |  |  ------------------
  |  |   82|  1.37k|    OFPACT(SET_IP_ECN,      ofpact_ecn,         ofpact, "mod_nw_ecn")   \
  |  |  ------------------
  |  |  |  | 9078|  1.11k|        case OFPACT_##ENUM:                                             \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (9078:9): [True: 1.11k, False: 234k]
  |  |  |  |  ------------------
  |  |  |  | 9079|  1.11k|            encode_##ENUM(ofpact_get_##ENUM(a), ofp_version, out);      \
  |  |  |  | 9080|  1.11k|            return;
  |  |  ------------------
  |  |   83|  1.82k|    OFPACT(SET_IP_TTL,      ofpact_ip_ttl,      ofpact, "mod_nw_ttl")   \
  |  |  ------------------
  |  |  |  | 9078|  1.82k|        case OFPACT_##ENUM:                                             \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (9078:9): [True: 1.82k, False: 234k]
  |  |  |  |  ------------------
  |  |  |  | 9079|  1.82k|            encode_##ENUM(ofpact_get_##ENUM(a), ofp_version, out);      \
  |  |  |  | 9080|  1.82k|            return;
  |  |  ------------------
  |  |   84|  3.22k|    OFPACT(SET_L4_SRC_PORT, ofpact_l4_port,     ofpact, "mod_tp_src")   \
  |  |  ------------------
  |  |  |  | 9078|  3.22k|        case OFPACT_##ENUM:                                             \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (9078:9): [True: 3.22k, False: 232k]
  |  |  |  |  ------------------
  |  |  |  | 9079|  3.22k|            encode_##ENUM(ofpact_get_##ENUM(a), ofp_version, out);      \
  |  |  |  | 9080|  3.22k|            return;
  |  |  ------------------
  |  |   85|  3.22k|    OFPACT(SET_L4_DST_PORT, ofpact_l4_port,     ofpact, "mod_tp_dst")   \
  |  |  ------------------
  |  |  |  | 9078|  1.79k|        case OFPACT_##ENUM:                                             \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (9078:9): [True: 1.79k, False: 234k]
  |  |  |  |  ------------------
  |  |  |  | 9079|  1.79k|            encode_##ENUM(ofpact_get_##ENUM(a), ofp_version, out);      \
  |  |  |  | 9080|  1.79k|            return;
  |  |  ------------------
  |  |   86|  1.79k|    OFPACT(REG_MOVE,        ofpact_reg_move,    ofpact, "move")         \
  |  |  ------------------
  |  |  |  | 9078|    453|        case OFPACT_##ENUM:                                             \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (9078:9): [True: 453, False: 235k]
  |  |  |  |  ------------------
  |  |  |  | 9079|    453|            encode_##ENUM(ofpact_get_##ENUM(a), ofp_version, out);      \
  |  |  |  | 9080|    453|            return;
  |  |  ------------------
  |  |   87|    453|    OFPACT(STACK_PUSH,      ofpact_stack,       ofpact, "push")         \
  |  |  ------------------
  |  |  |  | 9078|    359|        case OFPACT_##ENUM:                                             \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (9078:9): [True: 359, False: 235k]
  |  |  |  |  ------------------
  |  |  |  | 9079|    359|            encode_##ENUM(ofpact_get_##ENUM(a), ofp_version, out);      \
  |  |  |  | 9080|    359|            return;
  |  |  ------------------
  |  |   88|  1.87k|    OFPACT(STACK_POP,       ofpact_stack,       ofpact, "pop")          \
  |  |  ------------------
  |  |  |  | 9078|  1.87k|        case OFPACT_##ENUM:                                             \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (9078:9): [True: 1.87k, False: 234k]
  |  |  |  |  ------------------
  |  |  |  | 9079|  1.87k|            encode_##ENUM(ofpact_get_##ENUM(a), ofp_version, out);      \
  |  |  |  | 9080|  1.87k|            return;
  |  |  ------------------
  |  |   89|  2.84k|    OFPACT(DEC_TTL,         ofpact_cnt_ids,     cnt_ids, "dec_ttl")     \
  |  |  ------------------
  |  |  |  | 9078|  2.84k|        case OFPACT_##ENUM:                                             \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (9078:9): [True: 2.84k, False: 233k]
  |  |  |  |  ------------------
  |  |  |  | 9079|  2.84k|            encode_##ENUM(ofpact_get_##ENUM(a), ofp_version, out);      \
  |  |  |  | 9080|  2.84k|            return;
  |  |  ------------------
  |  |   90|  2.84k|    OFPACT(SET_MPLS_LABEL,  ofpact_mpls_label,  ofpact, "set_mpls_label") \
  |  |  ------------------
  |  |  |  | 9078|  1.69k|        case OFPACT_##ENUM:                                             \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (9078:9): [True: 1.69k, False: 234k]
  |  |  |  |  ------------------
  |  |  |  | 9079|  1.69k|            encode_##ENUM(ofpact_get_##ENUM(a), ofp_version, out);      \
  |  |  |  | 9080|  1.69k|            return;
  |  |  ------------------
  |  |   91|  1.69k|    OFPACT(SET_MPLS_TC,     ofpact_mpls_tc,     ofpact, "set_mpls_tc")  \
  |  |  ------------------
  |  |  |  | 9078|  1.12k|        case OFPACT_##ENUM:                                             \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (9078:9): [True: 1.12k, False: 234k]
  |  |  |  |  ------------------
  |  |  |  | 9079|  1.12k|            encode_##ENUM(ofpact_get_##ENUM(a), ofp_version, out);      \
  |  |  |  | 9080|  1.12k|            return;
  |  |  ------------------
  |  |   92|  1.12k|    OFPACT(SET_MPLS_TTL,    ofpact_mpls_ttl,    ofpact, "set_mpls_ttl") \
  |  |  ------------------
  |  |  |  | 9078|  1.12k|        case OFPACT_##ENUM:                                             \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (9078:9): [True: 1.12k, False: 234k]
  |  |  |  |  ------------------
  |  |  |  | 9079|  1.12k|            encode_##ENUM(ofpact_get_##ENUM(a), ofp_version, out);      \
  |  |  |  | 9080|  1.12k|            return;
  |  |  ------------------
  |  |   93|  2.12k|    OFPACT(DEC_MPLS_TTL,    ofpact_null,        ofpact, "dec_mpls_ttl") \
  |  |  ------------------
  |  |  |  | 9078|  2.12k|        case OFPACT_##ENUM:                                             \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (9078:9): [True: 2.12k, False: 233k]
  |  |  |  |  ------------------
  |  |  |  | 9079|  2.12k|            encode_##ENUM(ofpact_get_##ENUM(a), ofp_version, out);      \
  |  |  |  | 9080|  2.12k|            return;
  |  |  ------------------
  |  |   94|  2.12k|    OFPACT(PUSH_MPLS,       ofpact_push_mpls,   ofpact, "push_mpls")    \
  |  |  ------------------
  |  |  |  | 9078|    439|        case OFPACT_##ENUM:                                             \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (9078:9): [True: 439, False: 235k]
  |  |  |  |  ------------------
  |  |  |  | 9079|    439|            encode_##ENUM(ofpact_get_##ENUM(a), ofp_version, out);      \
  |  |  |  | 9080|    439|            return;
  |  |  ------------------
  |  |   95|  1.25k|    OFPACT(POP_MPLS,        ofpact_pop_mpls,    ofpact, "pop_mpls")     \
  |  |  ------------------
  |  |  |  | 9078|  1.25k|        case OFPACT_##ENUM:                                             \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (9078:9): [True: 1.25k, False: 234k]
  |  |  |  |  ------------------
  |  |  |  | 9079|  1.25k|            encode_##ENUM(ofpact_get_##ENUM(a), ofp_version, out);      \
  |  |  |  | 9080|  1.25k|            return;
  |  |  ------------------
  |  |   96|  1.25k|    OFPACT(DEC_NSH_TTL,     ofpact_null,        ofpact, "dec_nsh_ttl")  \
  |  |  ------------------
  |  |  |  | 9078|    737|        case OFPACT_##ENUM:                                             \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (9078:9): [True: 737, False: 235k]
  |  |  |  |  ------------------
  |  |  |  | 9079|    737|            encode_##ENUM(ofpact_get_##ENUM(a), ofp_version, out);      \
  |  |  |  | 9080|    737|            return;
  |  |  ------------------
  |  |   97|    737|    OFPACT(DELETE_FIELD,    ofpact_delete_field, ofpact, "delete_field") \
  |  |  ------------------
  |  |  |  | 9078|    342|        case OFPACT_##ENUM:                                             \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (9078:9): [True: 342, False: 235k]
  |  |  |  |  ------------------
  |  |  |  | 9079|    342|            encode_##ENUM(ofpact_get_##ENUM(a), ofp_version, out);      \
  |  |  |  | 9080|    342|            return;
  |  |  ------------------
  |  |   98|    342|                                                                        \
  |  |   99|    342|    /* Generic encap & decap */                                         \
  |  |  100|  1.38k|    OFPACT(ENCAP,           ofpact_encap,       props, "encap")         \
  |  |  ------------------
  |  |  |  | 9078|  1.38k|        case OFPACT_##ENUM:                                             \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (9078:9): [True: 1.38k, False: 234k]
  |  |  |  |  ------------------
  |  |  |  | 9079|  1.38k|            encode_##ENUM(ofpact_get_##ENUM(a), ofp_version, out);      \
  |  |  |  | 9080|  1.38k|            return;
  |  |  ------------------
  |  |  101|  1.82k|    OFPACT(DECAP,           ofpact_decap,       ofpact, "decap")        \
  |  |  ------------------
  |  |  |  | 9078|  1.82k|        case OFPACT_##ENUM:                                             \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (9078:9): [True: 1.82k, False: 234k]
  |  |  |  |  ------------------
  |  |  |  | 9079|  1.82k|            encode_##ENUM(ofpact_get_##ENUM(a), ofp_version, out);      \
  |  |  |  | 9080|  1.82k|            return;
  |  |  ------------------
  |  |  102|  1.82k|                                                                        \
  |  |  103|  1.82k|    /* Metadata. */                                                     \
  |  |  104|  1.82k|    OFPACT(SET_TUNNEL,      ofpact_tunnel,      ofpact, "set_tunnel")   \
  |  |  ------------------
  |  |  |  | 9078|  1.25k|        case OFPACT_##ENUM:                                             \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (9078:9): [True: 1.25k, False: 234k]
  |  |  |  |  ------------------
  |  |  |  | 9079|  1.25k|            encode_##ENUM(ofpact_get_##ENUM(a), ofp_version, out);      \
  |  |  |  | 9080|  1.25k|            return;
  |  |  ------------------
  |  |  105|  1.25k|    OFPACT(SET_QUEUE,       ofpact_queue,       ofpact, "set_queue")    \
  |  |  ------------------
  |  |  |  | 9078|    213|        case OFPACT_##ENUM:                                             \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (9078:9): [True: 213, False: 235k]
  |  |  |  |  ------------------
  |  |  |  | 9079|    213|            encode_##ENUM(ofpact_get_##ENUM(a), ofp_version, out);      \
  |  |  |  | 9080|    213|            return;
  |  |  ------------------
  |  |  106|    452|    OFPACT(POP_QUEUE,       ofpact_null,        ofpact, "pop_queue")    \
  |  |  ------------------
  |  |  |  | 9078|    452|        case OFPACT_##ENUM:                                             \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (9078:9): [True: 452, False: 235k]
  |  |  |  |  ------------------
  |  |  |  | 9079|    452|            encode_##ENUM(ofpact_get_##ENUM(a), ofp_version, out);      \
  |  |  |  | 9080|    452|            return;
  |  |  ------------------
  |  |  107|    452|    OFPACT(FIN_TIMEOUT,     ofpact_fin_timeout, ofpact, "fin_timeout")  \
  |  |  ------------------
  |  |  |  | 9078|    440|        case OFPACT_##ENUM:                                             \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (9078:9): [True: 440, False: 235k]
  |  |  |  |  ------------------
  |  |  |  | 9079|    440|            encode_##ENUM(ofpact_get_##ENUM(a), ofp_version, out);      \
  |  |  |  | 9080|    440|            return;
  |  |  ------------------
  |  |  108|    440|                                                                        \
  |  |  109|    440|    /* Flow table interaction. */                                       \
  |  |  110|  1.23k|    OFPACT(RESUBMIT,        ofpact_resubmit,    ofpact, "resubmit")     \
  |  |  ------------------
  |  |  |  | 9078|  1.23k|        case OFPACT_##ENUM:                                             \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (9078:9): [True: 1.23k, False: 234k]
  |  |  |  |  ------------------
  |  |  |  | 9079|  1.23k|            encode_##ENUM(ofpact_get_##ENUM(a), ofp_version, out);      \
  |  |  |  | 9080|  1.23k|            return;
  |  |  ------------------
  |  |  111|  33.1k|    OFPACT(LEARN,           ofpact_learn,       specs, "learn")         \
  |  |  ------------------
  |  |  |  | 9078|  33.1k|        case OFPACT_##ENUM:                                             \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (9078:9): [True: 33.1k, False: 202k]
  |  |  |  |  ------------------
  |  |  |  | 9079|  33.1k|            encode_##ENUM(ofpact_get_##ENUM(a), ofp_version, out);      \
  |  |  |  | 9080|  33.1k|            return;
  |  |  ------------------
  |  |  112|  33.1k|    OFPACT(CONJUNCTION,     ofpact_conjunction, ofpact, "conjunction")  \
  |  |  ------------------
  |  |  |  | 9078|    218|        case OFPACT_##ENUM:                                             \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (9078:9): [True: 218, False: 235k]
  |  |  |  |  ------------------
  |  |  |  | 9079|    218|            encode_##ENUM(ofpact_get_##ENUM(a), ofp_version, out);      \
  |  |  |  | 9080|    218|            return;
  |  |  ------------------
  |  |  113|    218|                                                                        \
  |  |  114|    218|    /* Arithmetic. */                                                   \
  |  |  115|    286|    OFPACT(MULTIPATH,       ofpact_multipath,   ofpact, "multipath")    \
  |  |  ------------------
  |  |  |  | 9078|    286|        case OFPACT_##ENUM:                                             \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (9078:9): [True: 286, False: 235k]
  |  |  |  |  ------------------
  |  |  |  | 9079|    286|            encode_##ENUM(ofpact_get_##ENUM(a), ofp_version, out);      \
  |  |  |  | 9080|    286|            return;
  |  |  ------------------
  |  |  116|    286|                                                                        \
  |  |  117|    286|    /* Other. */                                                        \
  |  |  118|  1.71k|    OFPACT(NOTE,            ofpact_note,        data, "note")           \
  |  |  ------------------
  |  |  |  | 9078|  1.71k|        case OFPACT_##ENUM:                                             \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (9078:9): [True: 1.71k, False: 234k]
  |  |  |  |  ------------------
  |  |  |  | 9079|  1.71k|            encode_##ENUM(ofpact_get_##ENUM(a), ofp_version, out);      \
  |  |  |  | 9080|  1.71k|            return;
  |  |  ------------------
  |  |  119|  1.86k|    OFPACT(EXIT,            ofpact_null,        ofpact, "exit")         \
  |  |  ------------------
  |  |  |  | 9078|  1.86k|        case OFPACT_##ENUM:                                             \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (9078:9): [True: 1.86k, False: 234k]
  |  |  |  |  ------------------
  |  |  |  | 9079|  1.86k|            encode_##ENUM(ofpact_get_##ENUM(a), ofp_version, out);      \
  |  |  |  | 9080|  1.86k|            return;
  |  |  ------------------
  |  |  120|  1.86k|    OFPACT(SAMPLE,          ofpact_sample,      ofpact, "sample")       \
  |  |  ------------------
  |  |  |  | 9078|  1.58k|        case OFPACT_##ENUM:                                             \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (9078:9): [True: 1.58k, False: 234k]
  |  |  |  |  ------------------
  |  |  |  | 9079|  1.58k|            encode_##ENUM(ofpact_get_##ENUM(a), ofp_version, out);      \
  |  |  |  | 9080|  1.58k|            return;
  |  |  ------------------
  |  |  121|  1.58k|    OFPACT(UNROLL_XLATE,    ofpact_unroll_xlate, ofpact, "unroll_xlate") \
  |  |  ------------------
  |  |  |  | 9078|      0|        case OFPACT_##ENUM:                                             \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (9078:9): [True: 0, False: 235k]
  |  |  |  |  ------------------
  |  |  |  | 9079|      0|            encode_##ENUM(ofpact_get_##ENUM(a), ofp_version, out);      \
  |  |  |  | 9080|      0|            return;
  |  |  ------------------
  |  |  122|  8.78k|    OFPACT(CT,              ofpact_conntrack,   ofpact, "ct")           \
  |  |  ------------------
  |  |  |  | 9078|  8.78k|        case OFPACT_##ENUM:                                             \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (9078:9): [True: 8.78k, False: 227k]
  |  |  |  |  ------------------
  |  |  |  | 9079|  8.78k|            encode_##ENUM(ofpact_get_##ENUM(a), ofp_version, out);      \
  |  |  |  | 9080|  8.78k|            return;
  |  |  ------------------
  |  |  123|  8.78k|    OFPACT(CT_CLEAR,        ofpact_null,        ofpact, "ct_clear")     \
  |  |  ------------------
  |  |  |  | 9078|  1.31k|        case OFPACT_##ENUM:                                             \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (9078:9): [True: 1.31k, False: 234k]
  |  |  |  |  ------------------
  |  |  |  | 9079|  1.31k|            encode_##ENUM(ofpact_get_##ENUM(a), ofp_version, out);      \
  |  |  |  | 9080|  1.31k|            return;
  |  |  ------------------
  |  |  124|  7.36k|    OFPACT(NAT,             ofpact_nat,         ofpact, "nat")          \
  |  |  ------------------
  |  |  |  | 9078|  7.36k|        case OFPACT_##ENUM:                                             \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (9078:9): [True: 7.36k, False: 228k]
  |  |  |  |  ------------------
  |  |  |  | 9079|  7.36k|            encode_##ENUM(ofpact_get_##ENUM(a), ofp_version, out);      \
  |  |  |  | 9080|  7.36k|            return;
  |  |  ------------------
  |  |  125|  7.36k|    OFPACT(OUTPUT_TRUNC,    ofpact_output_trunc,ofpact, "output_trunc") \
  |  |  ------------------
  |  |  |  | 9078|    870|        case OFPACT_##ENUM:                                             \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (9078:9): [True: 870, False: 235k]
  |  |  |  |  ------------------
  |  |  |  | 9079|    870|            encode_##ENUM(ofpact_get_##ENUM(a), ofp_version, out);      \
  |  |  |  | 9080|    870|            return;
  |  |  ------------------
  |  |  126|  5.70k|    OFPACT(CLONE,           ofpact_nest,        actions, "clone")       \
  |  |  ------------------
  |  |  |  | 9078|  5.70k|        case OFPACT_##ENUM:                                             \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (9078:9): [True: 5.70k, False: 230k]
  |  |  |  |  ------------------
  |  |  |  | 9079|  5.70k|            encode_##ENUM(ofpact_get_##ENUM(a), ofp_version, out);      \
  |  |  |  | 9080|  5.70k|            return;
  |  |  ------------------
  |  |  127|  5.70k|    OFPACT(CHECK_PKT_LARGER, ofpact_check_pkt_larger, ofpact,           \
  |  |  ------------------
  |  |  |  | 9078|    637|        case OFPACT_##ENUM:                                             \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (9078:9): [True: 637, False: 235k]
  |  |  |  |  ------------------
  |  |  |  | 9079|    637|            encode_##ENUM(ofpact_get_##ENUM(a), ofp_version, out);      \
  |  |  |  | 9080|    637|            return;
  |  |  ------------------
  |  |  128|    637|           "check_pkt_larger")                                          \
  |  |  129|    637|                                                                        \
  |  |  130|    637|    /* Debugging actions.                                               \
  |  |  131|    637|     *                                                                  \
  |  |  132|    637|     * These are intentionally undocumented, subject to change, and     \
  |  |  133|    637|     * only accepted if ovs-vswitchd is started with --enable-dummy. */ \
  |  |  134|    846|    OFPACT(DEBUG_RECIRC, ofpact_null,           ofpact, "debug_recirc") \
  |  |  ------------------
  |  |  |  | 9078|    846|        case OFPACT_##ENUM:                                             \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (9078:9): [True: 846, False: 235k]
  |  |  |  |  ------------------
  |  |  |  | 9079|    846|            encode_##ENUM(ofpact_get_##ENUM(a), ofp_version, out);      \
  |  |  |  | 9080|    846|            return;
  |  |  ------------------
  |  |  135|  1.73k|    OFPACT(DEBUG_SLOW,   ofpact_null,           ofpact, "debug_slow")   \
  |  |  ------------------
  |  |  |  | 9078|  1.73k|        case OFPACT_##ENUM:                                             \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (9078:9): [True: 1.73k, False: 234k]
  |  |  |  |  ------------------
  |  |  |  | 9079|  1.73k|            encode_##ENUM(ofpact_get_##ENUM(a), ofp_version, out);      \
  |  |  |  | 9080|  1.73k|            return;
  |  |  ------------------
  |  |  136|  1.73k|                                                                        \
  |  |  137|  1.73k|    /* Instructions ("meter" is an action in OF1.5+). */                \
  |  |  138|  1.73k|    OFPACT(METER,           ofpact_meter,       ofpact, "meter")        \
  |  |  ------------------
  |  |  |  | 9078|    115|        case OFPACT_##ENUM:                                             \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (9078:9): [True: 115, False: 235k]
  |  |  |  |  ------------------
  |  |  |  | 9079|    115|            encode_##ENUM(ofpact_get_##ENUM(a), ofp_version, out);      \
  |  |  |  | 9080|    115|            return;
  |  |  ------------------
  |  |  139|    115|    OFPACT(CLEAR_ACTIONS,   ofpact_null,        ofpact, "clear_actions") \
  |  |  ------------------
  |  |  |  | 9078|     10|        case OFPACT_##ENUM:                                             \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (9078:9): [True: 10, False: 235k]
  |  |  |  |  ------------------
  |  |  |  | 9079|     10|            encode_##ENUM(ofpact_get_##ENUM(a), ofp_version, out);      \
  |  |  |  | 9080|     10|            return;
  |  |  ------------------
  |  |  140|     63|    OFPACT(WRITE_ACTIONS,   ofpact_nest,        actions, "write_actions") \
  |  |  ------------------
  |  |  |  | 9078|     63|        case OFPACT_##ENUM:                                             \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (9078:9): [True: 63, False: 235k]
  |  |  |  |  ------------------
  |  |  |  | 9079|     63|            encode_##ENUM(ofpact_get_##ENUM(a), ofp_version, out);      \
  |  |  |  | 9080|     63|            return;
  |  |  ------------------
  |  |  141|     63|    OFPACT(WRITE_METADATA,  ofpact_metadata,    ofpact, "write_metadata") \
  |  |  ------------------
  |  |  |  | 9078|      8|        case OFPACT_##ENUM:                                             \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (9078:9): [True: 8, False: 235k]
  |  |  |  |  ------------------
  |  |  |  | 9079|      8|            encode_##ENUM(ofpact_get_##ENUM(a), ofp_version, out);      \
  |  |  |  | 9080|      8|            return;
  |  |  ------------------
  |  |  142|     10|    OFPACT(GOTO_TABLE,      ofpact_goto_table,  ofpact, "goto_table")
  |  |  ------------------
  |  |  |  | 9078|     10|        case OFPACT_##ENUM:                                             \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (9078:9): [True: 10, False: 235k]
  |  |  |  |  ------------------
  |  |  |  | 9079|     10|            encode_##ENUM(ofpact_get_##ENUM(a), ofp_version, out);      \
  |  |  |  | 9080|     10|            return;
  |  |  ------------------
  ------------------
 9082|      0|#undef OFPACT
 9083|      0|    default:
  ------------------
  |  Branch (9083:5): [True: 0, False: 235k]
  ------------------
 9084|      0|        OVS_NOT_REACHED();
  ------------------
  |  |  107|      0|#define OVS_NOT_REACHED() abort()
  ------------------
 9085|   235k|    }
 9086|   235k|}
ofp-actions.c:encode_OUTPUT:
  610|  96.2k|{
  611|  96.2k|    if (ofp_version == OFP10_VERSION) {
  ------------------
  |  Branch (611:9): [True: 74.6k, False: 21.5k]
  ------------------
  612|  74.6k|        struct ofp10_action_output *oao;
  613|       |
  614|  74.6k|        oao = put_OFPAT10_OUTPUT(out);
  615|  74.6k|        oao->port = htons(ofp_to_u16(output->port));
  616|  74.6k|        oao->max_len = htons(output->max_len);
  617|  74.6k|    } else {
  618|  21.5k|        struct ofp11_action_output *oao;
  619|       |
  620|  21.5k|        oao = put_OFPAT11_OUTPUT(out);
  621|  21.5k|        oao->port = ofputil_port_to_ofp11(output->port);
  622|       |        oao->max_len = htons(output->max_len);
  623|  21.5k|    }
  624|  96.2k|}
ofp-actions.c:ofpact_put_raw:
 9974|   299k|{
 9975|   299k|    const struct ofpact_raw_instance *inst;
 9976|   299k|    struct ofp_action_header *oah;
 9977|   299k|    const struct ofpact_hdrs *hdrs;
 9978|       |
 9979|   299k|    inst = ofpact_raw_lookup(ofp_version, raw);
 9980|   299k|    hdrs = &inst->hdrs;
 9981|       |
 9982|   299k|    oah = ofpbuf_put_zeros(buf, inst->min_length);
 9983|   299k|    oah->type = htons(hdrs->vendor ? OFPAT_VENDOR : hdrs->type);
  ------------------
  |  Branch (9983:17): [True: 178k, False: 121k]
  ------------------
 9984|   299k|    oah->len = htons(inst->min_length);
 9985|   299k|    oah->vendor = htonl(hdrs->vendor);
 9986|       |
 9987|   299k|    switch (hdrs->vendor) {
 9988|   121k|    case 0:
  ------------------
  |  Branch (9988:5): [True: 121k, False: 178k]
  ------------------
 9989|   121k|        break;
 9990|       |
 9991|   178k|    case NX_VENDOR_ID:
  ------------------
  |  |  110|   178k|#define NX_VENDOR_ID    0x00002320 /* Nicira. */
  ------------------
  |  Branch (9991:5): [True: 178k, False: 121k]
  ------------------
 9992|   178k|    case ONF_VENDOR_ID: {
  ------------------
  |  |  111|   178k|#define ONF_VENDOR_ID   0x4f4e4600 /* Open Networking Foundation. */
  ------------------
  |  Branch (9992:5): [True: 0, False: 299k]
  ------------------
 9993|   178k|        struct ext_action_header *nah = (struct ext_action_header *) oah;
 9994|   178k|        nah->subtype = htons(hdrs->type);
 9995|   178k|        break;
 9996|   178k|    }
 9997|       |
 9998|      0|    default:
  ------------------
  |  Branch (9998:5): [True: 0, False: 299k]
  ------------------
 9999|      0|        OVS_NOT_REACHED();
  ------------------
  |  |  107|      0|#define OVS_NOT_REACHED() abort()
  ------------------
10000|   299k|    }
10001|       |
10002|   299k|    if (inst->arg_len) {
  ------------------
  |  Branch (10002:9): [True: 21.7k, False: 277k]
  ------------------
10003|  21.7k|        uint8_t *p = (uint8_t *) oah + inst->arg_ofs + inst->arg_len;
10004|  21.7k|        int i;
10005|       |
10006|  71.7k|        for (i = 0; i < inst->arg_len; i++) {
  ------------------
  |  Branch (10006:21): [True: 49.9k, False: 21.7k]
  ------------------
10007|  49.9k|            *--p = arg;
10008|  49.9k|            arg >>= 8;
10009|  49.9k|        }
10010|   277k|    } else {
10011|   277k|        ovs_assert(!arg);
  ------------------
  |  |   62|   277k|#define ovs_assert ovs_ignore
  ------------------
10012|   277k|    }
10013|       |
10014|   299k|    return oah;
10015|   299k|}
ofp-actions.c:ofpact_raw_lookup:
 9959|   299k|{
 9960|   299k|    const struct ofpact_raw_instance *inst;
 9961|       |
 9962|   299k|    HMAP_FOR_EACH_WITH_HASH (inst, encode_node, hash_2words(raw, ofp_version),
  ------------------
  |  |  138|   299k|    for (INIT_MULTIVAR(NODE, MEMBER, hmap_first_with_hash(HMAP, HASH),        \
  |  |  ------------------
  |  |  |  |  171|   299k|    INIT_MULTIVAR_EXP(VAR, MEMBER, POINTER, ITER_TYPE, (void) 0)
  |  |  |  |  ------------------
  |  |  |  |  |  |  174|   299k|    ITER_TYPE *ITER_VAR(VAR) = ( __VA_ARGS__ , (ITER_TYPE *) POINTER)
  |  |  |  |  ------------------
  |  |  ------------------
  |  |  139|   299k|                       struct hmap_node);                                     \
  |  |  140|   299k|         CONDITION_MULTIVAR(NODE, MEMBER, ITER_VAR(NODE) != NULL);            \
  |  |  ------------------
  |  |  |  |  185|   299k|    ((EXPR) ?                                                                 \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (185:5): [True: 299k, False: 0]
  |  |  |  |  |  Branch (185:6): [True: 299k, False: 0]
  |  |  |  |  ------------------
  |  |  |  |  186|   299k|     (((VAR) = OBJECT_CONTAINING(ITER_VAR(VAR), VAR, MEMBER)), 1) :           \
  |  |  |  |  ------------------
  |  |  |  |  |  |  134|   299k|    ((OVS_TYPEOF(OBJECT)) (void *)                                      \
  |  |  |  |  |  |  135|   299k|     ((char *) (POINTER) - OBJECT_OFFSETOF(OBJECT, MEMBER)))
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  108|   299k|#define OBJECT_OFFSETOF(OBJECT, MEMBER) offsetof(typeof(*(OBJECT)), MEMBER)
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  |  |  187|   299k|     (((VAR) = NULL), 0))
  |  |  ------------------
  |  |  141|   299k|         UPDATE_MULTIVAR(NODE, hmap_next_with_hash(ITER_VAR(NODE))))
  |  |  ------------------
  |  |  |  |  193|      0|    (ITER_VAR(VAR) = NEXT_ITER)
  |  |  |  |  ------------------
  |  |  |  |  |  |  162|      0|#define ITER_VAR(NAME) NAME ## __iterator__
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 9963|   299k|                             ofpact_encode_hmap()) {
 9964|   299k|        if (inst->raw == raw && inst->hdrs.ofp_version == ofp_version) {
  ------------------
  |  Branch (9964:13): [True: 299k, False: 0]
  |  Branch (9964:33): [True: 299k, False: 0]
  ------------------
 9965|   299k|            return inst;
 9966|   299k|        }
 9967|   299k|    }
 9968|      0|    OVS_NOT_REACHED();
  ------------------
  |  |  107|      0|#define OVS_NOT_REACHED() abort()
  ------------------
 9969|   299k|}
ofp-actions.c:ofpact_encode_hmap:
 9827|   299k|{
 9828|   299k|    static struct ovsthread_once once = OVSTHREAD_ONCE_INITIALIZER;
  ------------------
  |  |  134|   299k|    {                                           \
  |  |  135|   299k|        false,                                  \
  |  |  136|   299k|        OVS_MUTEX_INITIALIZER,                  \
  |  |  ------------------
  |  |  |  |   45|   299k|#define OVS_MUTEX_INITIALIZER { PTHREAD_ERRORCHECK_MUTEX_INITIALIZER_NP, \
  |  |  |  |   46|   299k|                                "<unlocked>" }
  |  |  ------------------
  |  |  137|   299k|    }
  ------------------
 9829|   299k|    static struct hmap hmap;
 9830|       |
 9831|   299k|    if (ovsthread_once_start(&once)) {
  ------------------
  |  Branch (9831:9): [True: 1, False: 299k]
  ------------------
 9832|      1|        struct ofpact_raw_instance *inst;
 9833|       |
 9834|      1|        hmap_init(&hmap);
 9835|      1|        for (inst = all_raw_instances;
 9836|    385|             inst < &all_raw_instances[ARRAY_SIZE(all_raw_instances)];
  ------------------
  |  |  297|    385|#define ARRAY_SIZE(ARRAY) __ARRAY_SIZE(ARRAY)
  |  |  ------------------
  |  |  |  |   46|    385|    __builtin_choose_expr(__ARRAY_CHECK(ARRAY),			\
  |  |  |  |  ------------------
  |  |  |  |  |  |   41|    385|    !__builtin_types_compatible_p(typeof(ARRAY), typeof(&ARRAY[0]))
  |  |  |  |  ------------------
  |  |  |  |   47|    385|        __ARRAY_SIZE_NOCHECK(ARRAY), __ARRAY_FAIL(ARRAY))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|    385|#define __ARRAY_SIZE_NOCHECK(ARRAY) (sizeof(ARRAY) / sizeof((ARRAY)[0]))
  |  |  |  |  ------------------
  |  |  |  |                       __ARRAY_SIZE_NOCHECK(ARRAY), __ARRAY_FAIL(ARRAY))
  |  |  |  |  ------------------
  |  |  |  |  |  |   44|    385|#define __ARRAY_FAIL(ARRAY) (sizeof(char[-2*!__ARRAY_CHECK(ARRAY)]))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  |  Branch (9836:14): [True: 384, False: 1]
  ------------------
 9837|    384|             inst++) {
 9838|    384|            hmap_insert(&hmap, &inst->encode_node,
  ------------------
  |  |  101|    384|    hmap_insert_at(HMAP, NODE, HASH, OVS_SOURCE_LOCATOR)
  |  |  ------------------
  |  |  |  |   37|    384|#define OVS_SOURCE_LOCATOR __FILE__ ":" OVS_STRINGIZE(__LINE__)
  |  |  |  |  ------------------
  |  |  |  |  |  |   38|    384|#define OVS_STRINGIZE(ARG) OVS_STRINGIZE2(ARG)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   39|    384|#define OVS_STRINGIZE2(ARG) #ARG
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 9839|    384|                        hash_2words(inst->raw, inst->hdrs.ofp_version));
 9840|    384|        }
 9841|      1|        ovsthread_once_done(&once);
 9842|      1|    }
 9843|   299k|    return &hmap;
 9844|   299k|}
ofp-actions.c:encode_GROUP:
  735|    209|{
  736|    209|    put_OFPAT_GROUP(out, ofp_version, group->group_id);
  737|    209|}
ofp-actions.c:encode_CONTROLLER:
  898|  6.11k|{
  899|  6.11k|    if (controller->userdata_len
  ------------------
  |  Branch (899:9): [True: 1.08k, False: 5.03k]
  ------------------
  900|  5.03k|        || controller->pause
  ------------------
  |  Branch (900:12): [True: 4.02k, False: 1.01k]
  ------------------
  901|  1.01k|        || controller->meter_id != NX_CTLR_NO_METER
  ------------------
  |  |  307|  7.12k|#define NX_CTLR_NO_METER 0
  ------------------
  |  Branch (901:12): [True: 512, False: 500]
  ------------------
  902|  5.61k|        || controller->ofpact.raw == NXAST_RAW_CONTROLLER2) {
  ------------------
  |  Branch (902:12): [True: 0, False: 500]
  ------------------
  903|  5.61k|        size_t start_ofs = out->size;
  904|  5.61k|        put_NXAST_CONTROLLER2(out);
  905|  5.61k|        if (controller->max_len != UINT16_MAX) {
  ------------------
  |  Branch (905:13): [True: 185, False: 5.43k]
  ------------------
  906|    185|            ofpprop_put_u16(out, NXAC2PT_MAX_LEN, controller->max_len);
  907|    185|        }
  908|  5.61k|        if (controller->controller_id != 0) {
  ------------------
  |  Branch (908:13): [True: 246, False: 5.36k]
  ------------------
  909|    246|            ofpprop_put_u16(out, NXAC2PT_CONTROLLER_ID,
  910|    246|                            controller->controller_id);
  911|    246|        }
  912|  5.61k|        if (controller->reason != OFPR_ACTION) {
  ------------------
  |  Branch (912:13): [True: 191, False: 5.42k]
  ------------------
  913|    191|            ofpprop_put_u8(out, NXAC2PT_REASON, controller->reason);
  914|    191|        }
  915|  5.61k|        if (controller->userdata_len != 0) {
  ------------------
  |  Branch (915:13): [True: 1.08k, False: 4.53k]
  ------------------
  916|  1.08k|            ofpprop_put(out, NXAC2PT_USERDATA, controller->userdata,
  917|  1.08k|                        controller->userdata_len);
  918|  1.08k|        }
  919|  5.61k|        if (controller->pause) {
  ------------------
  |  Branch (919:13): [True: 4.02k, False: 1.59k]
  ------------------
  920|  4.02k|            ofpprop_put_flag(out, NXAC2PT_PAUSE);
  921|  4.02k|        }
  922|  5.61k|        if (controller->meter_id != NX_CTLR_NO_METER) {
  ------------------
  |  |  307|  5.61k|#define NX_CTLR_NO_METER 0
  ------------------
  |  Branch (922:13): [True: 512, False: 5.10k]
  ------------------
  923|    512|            ofpprop_put_u32(out, NXAC2PT_METER_ID, controller->meter_id);
  924|    512|        }
  925|  5.61k|        pad_ofpat(out, start_ofs);
  926|  5.61k|    } else {
  927|    500|        struct nx_action_controller *nac;
  928|       |
  929|    500|        nac = put_NXAST_CONTROLLER(out);
  930|    500|        nac->max_len = htons(controller->max_len);
  931|       |        nac->controller_id = htons(controller->controller_id);
  932|    500|        nac->reason = controller->reason;
  933|    500|    }
  934|  6.11k|}
ofp-actions.c:pad_ofpat:
10019|  63.0k|{
10020|  63.0k|    struct ofp_action_header *oah;
10021|       |
10022|  63.0k|    ofpbuf_put_zeros(openflow, PAD_SIZE(openflow->size - start_ofs,
  ------------------
  |  |  306|  63.0k|#define PAD_SIZE(X, Y) (ROUND_UP(X, Y) - (X))
  |  |  ------------------
  |  |  |  |  303|  63.0k|#define ROUND_UP(X, Y) (DIV_ROUND_UP(X, Y) * (Y))
  |  |  |  |  ------------------
  |  |  |  |  |  |  300|  63.0k|#define DIV_ROUND_UP(X, Y) (((X) + ((Y) - 1)) / (Y))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
10023|  63.0k|                                        OFP_ACTION_ALIGN));
10024|       |
10025|  63.0k|    oah = ofpbuf_at_assert(openflow, start_ofs, sizeof *oah);
10026|       |    oah->len = htons(openflow->size - start_ofs);
10027|  63.0k|}
ofp-actions.c:encode_ENQUEUE:
 1111|    719|{
 1112|    719|    if (ofp_version == OFP10_VERSION) {
  ------------------
  |  Branch (1112:9): [True: 315, False: 404]
  ------------------
 1113|    315|        struct ofp10_action_enqueue *oae;
 1114|       |
 1115|    315|        oae = put_OFPAT10_ENQUEUE(out);
 1116|    315|        oae->port = htons(ofp_to_u16(enqueue->port));
 1117|    315|        oae->queue_id = htonl(enqueue->queue);
 1118|    404|    } else {
 1119|    404|        put_OFPAT_SET_QUEUE(out, ofp_version, enqueue->queue);
 1120|       |
 1121|    404|        struct ofp11_action_output *oao = put_OFPAT11_OUTPUT(out);
 1122|    404|        oao->port = ofputil_port_to_ofp11(enqueue->port);
 1123|    404|        oao->max_len = OVS_BE16_MAX;
  ------------------
  |  |   42|    404|#define OVS_BE16_MAX ((OVS_FORCE ovs_be16) 0xffff)
  ------------------
 1124|       |
 1125|    404|        put_NXAST_POP_QUEUE(out);
 1126|    404|    }
 1127|    719|}
ofp-actions.c:encode_OUTPUT_REG:
 1283|    714|{
 1284|       |    /* If 'output_reg' came in as an NXAST_RAW_OUTPUT_REG2 action, or if it
 1285|       |     * cannot be encoded in the older form, encode it as
 1286|       |     * NXAST_RAW_OUTPUT_REG2. */
 1287|    714|    if (output_reg->ofpact.raw == NXAST_RAW_OUTPUT_REG2
  ------------------
  |  Branch (1287:9): [True: 0, False: 714]
  ------------------
 1288|    714|        || !mf_nxm_header(output_reg->src.field->id)) {
  ------------------
  |  Branch (1288:12): [True: 423, False: 291]
  ------------------
 1289|    423|        struct nx_action_output_reg2 *naor = put_NXAST_OUTPUT_REG2(out);
 1290|    423|        size_t size = out->size;
 1291|       |
 1292|    423|        naor->ofs_nbits = nxm_encode_ofs_nbits(output_reg->src.ofs,
 1293|    423|                                               output_reg->src.n_bits);
 1294|    423|        naor->max_len = htons(output_reg->max_len);
 1295|       |
 1296|    423|        out->size = size - sizeof naor->pad;
 1297|    423|        nx_put_mff_header(out, output_reg->src.field, 0, false);
 1298|    423|        out->size = size;
 1299|    423|    } else {
 1300|    291|        struct nx_action_output_reg *naor = put_NXAST_OUTPUT_REG(out);
 1301|       |
 1302|    291|        naor->ofs_nbits = nxm_encode_ofs_nbits(output_reg->src.ofs,
 1303|    291|                                               output_reg->src.n_bits);
 1304|    291|        naor->src = htonl(nxm_header_from_mff(output_reg->src.field));
 1305|       |        naor->max_len = htons(output_reg->max_len);
 1306|    291|    }
 1307|    714|}
ofp-actions.c:encode_BUNDLE:
 1503|    843|{
 1504|    843|    int members_len = ROUND_UP(2 * bundle->n_members, OFP_ACTION_ALIGN);
  ------------------
  |  |  303|    843|#define ROUND_UP(X, Y) (DIV_ROUND_UP(X, Y) * (Y))
  |  |  ------------------
  |  |  |  |  300|    843|#define DIV_ROUND_UP(X, Y) (((X) + ((Y) - 1)) / (Y))
  |  |  ------------------
  ------------------
 1505|    843|    struct nx_action_bundle *nab;
 1506|    843|    ovs_be16 *members;
 1507|    843|    size_t i;
 1508|       |
 1509|    843|    nab = (bundle->dst.field
  ------------------
  |  Branch (1509:12): [True: 3, False: 840]
  ------------------
 1510|    843|           ? put_NXAST_BUNDLE_LOAD(out)
 1511|    843|           : put_NXAST_BUNDLE(out));
 1512|    843|    nab->len = htons(ntohs(nab->len) + members_len);
 1513|    843|    nab->algorithm = htons(bundle->algorithm);
 1514|    843|    nab->fields = htons(bundle->fields);
 1515|    843|    nab->basis = htons(bundle->basis);
 1516|    843|    nab->member_type = htonl(mf_nxm_header(MFF_IN_PORT));
 1517|    843|    nab->n_members = htons(bundle->n_members);
 1518|    843|    if (bundle->dst.field) {
  ------------------
  |  Branch (1518:9): [True: 3, False: 840]
  ------------------
 1519|      3|        nab->ofs_nbits = nxm_encode_ofs_nbits(bundle->dst.ofs,
 1520|      3|                                              bundle->dst.n_bits);
 1521|      3|        nab->dst = htonl(nxm_header_from_mff(bundle->dst.field));
 1522|      3|    }
 1523|       |
 1524|    843|    members = ofpbuf_put_zeros(out, members_len);
 1525|  47.1k|    for (i = 0; i < bundle->n_members; i++) {
  ------------------
  |  Branch (1525:17): [True: 46.2k, False: 843]
  ------------------
 1526|       |        members[i] = htons(ofp_to_u16(bundle->members[i]));
 1527|  46.2k|    }
 1528|    843|}
ofp-actions.c:encode_SET_FIELD:
 3158|  24.9k|{
 3159|  24.9k|    if (ofp_version >= OFP15_VERSION) {
  ------------------
  |  Branch (3159:9): [True: 0, False: 24.9k]
  ------------------
 3160|       |        /* OF1.5+ only has Set-Field (reg_load is redundant so we drop it
 3161|       |         * entirely). */
 3162|      0|        set_field_to_set_field(sf, ofp_version, out);
 3163|  24.9k|    } else if (sf->ofpact.raw == NXAST_RAW_REG_LOAD ||
  ------------------
  |  Branch (3163:16): [True: 392, False: 24.5k]
  ------------------
 3164|  24.5k|               sf->ofpact.raw == NXAST_RAW_REG_LOAD2) {
  ------------------
  |  Branch (3164:16): [True: 0, False: 24.5k]
  ------------------
 3165|       |        /* It came in as reg_load, send it out the same way. */
 3166|    392|        set_field_to_nxast(sf, out);
 3167|  24.5k|    } else if (ofp_version < OFP12_VERSION) {
  ------------------
  |  Branch (3167:16): [True: 21.3k, False: 3.19k]
  ------------------
 3168|       |        /* OpenFlow 1.0 and 1.1 don't have Set-Field. */
 3169|  21.3k|        set_field_to_legacy_openflow(sf, ofp_version, out);
 3170|  21.3k|    } else if (is_all_ones(ofpact_set_field_mask(sf), sf->field->n_bytes)) {
  ------------------
  |  |  563|  3.19k|    ALIGNED_CAST(union mf_value *,                                          \
  |  |  ------------------
  |  |  |  |  434|  3.19k|#define ALIGNED_CAST(TYPE, ATTR) ((TYPE) (void *) (ATTR))
  |  |  ------------------
  |  |  564|  3.19k|                 (uint8_t *)(SF)->value +                                   \
  |  |  565|  3.19k|                            ROUND_UP((SF)->field->n_bytes, OFPACT_ALIGNTO))
  ------------------
  |  Branch (3170:16): [True: 447, False: 2.75k]
  ------------------
 3171|       |        /* We're encoding to OpenFlow 1.2, 1.3, or 1.4.  The action sets an
 3172|       |         * entire field, so encode it as OFPAT_SET_FIELD. */
 3173|    447|        set_field_to_set_field(sf, ofp_version, out);
 3174|  2.75k|    } else {
 3175|       |        /* We're encoding to OpenFlow 1.2, 1.3, or 1.4.  The action cannot be
 3176|       |         * encoded as OFPAT_SET_FIELD because it does not set an entire field,
 3177|       |         * so encode it as reg_load. */
 3178|  2.75k|        set_field_to_nxast(sf, out);
 3179|  2.75k|    }
 3180|  24.9k|}
ofp-actions.c:set_field_to_set_field:
 3144|    447|{
 3145|    447|    struct ofp12_action_set_field *oasf OVS_UNUSED;
 3146|    447|    size_t start_ofs = out->size;
 3147|       |
 3148|    447|    oasf = put_OFPAT12_SET_FIELD(out);
 3149|    447|    out->size = out->size - sizeof oasf->pad;
 3150|    447|    nx_put_entry(out, sf->field, ofp_version, sf->value,
 3151|    447|                 ofpact_set_field_mask(sf));
  ------------------
  |  |  563|    447|    ALIGNED_CAST(union mf_value *,                                          \
  |  |  ------------------
  |  |  |  |  434|    447|#define ALIGNED_CAST(TYPE, ATTR) ((TYPE) (void *) (ATTR))
  |  |  ------------------
  |  |  564|    447|                 (uint8_t *)(SF)->value +                                   \
  |  |  565|    447|                            ROUND_UP((SF)->field->n_bytes, OFPACT_ALIGNTO))
  ------------------
 3152|    447|    pad_ofpat(out, start_ofs);
 3153|    447|}
ofp-actions.c:set_field_to_nxast:
 2990|  19.9k|{
 2991|       |    /* If 'sf' cannot be encoded as NXAST_REG_LOAD because it requires an
 2992|       |     * experimenter OXM or is variable length (or if it came in as
 2993|       |     * NXAST_REG_LOAD2), encode as NXAST_REG_LOAD2.  Otherwise use
 2994|       |     * NXAST_REG_LOAD, which is backward compatible. */
 2995|  19.9k|    if (sf->ofpact.raw == NXAST_RAW_REG_LOAD2
  ------------------
  |  Branch (2995:9): [True: 0, False: 19.9k]
  ------------------
 2996|  19.9k|        || !mf_nxm_header(sf->field->id) || sf->field->variable_len) {
  ------------------
  |  Branch (2996:12): [True: 2.74k, False: 17.1k]
  |  Branch (2996:45): [True: 5.98k, False: 11.2k]
  ------------------
 2997|  8.72k|        struct ext_action_header *eah OVS_UNUSED;
 2998|  8.72k|        size_t start_ofs = openflow->size;
 2999|       |
 3000|  8.72k|        eah = put_NXAST_REG_LOAD2(openflow);
 3001|  8.72k|        openflow->size = openflow->size - sizeof eah->pad;
 3002|  8.72k|        nx_put_entry(openflow, sf->field, 0, sf->value,
 3003|  8.72k|                     ofpact_set_field_mask(sf));
  ------------------
  |  |  563|  8.72k|    ALIGNED_CAST(union mf_value *,                                          \
  |  |  ------------------
  |  |  |  |  434|  8.72k|#define ALIGNED_CAST(TYPE, ATTR) ((TYPE) (void *) (ATTR))
  |  |  ------------------
  |  |  564|  8.72k|                 (uint8_t *)(SF)->value +                                   \
  |  |  565|  8.72k|                            ROUND_UP((SF)->field->n_bytes, OFPACT_ALIGNTO))
  ------------------
 3004|  8.72k|        pad_ofpat(openflow, start_ofs);
 3005|  11.2k|    } else {
 3006|  11.2k|        struct mf_subfield dst;
 3007|  11.2k|        uint64_t value;
 3008|       |
 3009|  11.2k|        dst.ofs = dst.n_bits = 0;
 3010|  84.8k|        while (next_load_segment(sf, &dst, &value)) {
  ------------------
  |  Branch (3010:16): [True: 73.5k, False: 11.2k]
  ------------------
 3011|  73.5k|            put_reg_load(openflow, &dst, value);
 3012|  73.5k|        }
 3013|  11.2k|    }
 3014|  19.9k|}
ofp-actions.c:next_load_segment:
 2967|  84.8k|{
 2968|  84.8k|    int n_bits = sf->field->n_bits;
 2969|  84.8k|    int n_bytes = sf->field->n_bytes;
 2970|  84.8k|    int start = dst->ofs + dst->n_bits;
 2971|       |
 2972|  84.8k|    if (start < n_bits) {
  ------------------
  |  Branch (2972:9): [True: 80.6k, False: 4.14k]
  ------------------
 2973|  80.6k|        dst->field = sf->field;
 2974|  80.6k|        dst->ofs = bitwise_scan(ofpact_set_field_mask(sf), n_bytes, 1, start,
  ------------------
  |  |  563|  80.6k|    ALIGNED_CAST(union mf_value *,                                          \
  |  |  ------------------
  |  |  |  |  434|  80.6k|#define ALIGNED_CAST(TYPE, ATTR) ((TYPE) (void *) (ATTR))
  |  |  ------------------
  |  |  564|  80.6k|                 (uint8_t *)(SF)->value +                                   \
  |  |  565|  80.6k|                            ROUND_UP((SF)->field->n_bytes, OFPACT_ALIGNTO))
  ------------------
 2975|  80.6k|                                n_bits);
 2976|  80.6k|        if (dst->ofs < n_bits) {
  ------------------
  |  Branch (2976:13): [True: 73.5k, False: 7.06k]
  ------------------
 2977|  73.5k|            dst->n_bits = bitwise_scan(ofpact_set_field_mask(sf), n_bytes, 0,
  ------------------
  |  |  563|  73.5k|    ALIGNED_CAST(union mf_value *,                                          \
  |  |  ------------------
  |  |  |  |  434|  73.5k|#define ALIGNED_CAST(TYPE, ATTR) ((TYPE) (void *) (ATTR))
  |  |  ------------------
  |  |  564|  73.5k|                 (uint8_t *)(SF)->value +                                   \
  |  |  565|  73.5k|                            ROUND_UP((SF)->field->n_bytes, OFPACT_ALIGNTO))
  ------------------
 2978|  73.5k|                                       dst->ofs + 1,
 2979|  73.5k|                                       MIN(dst->ofs + 64, n_bits)) - dst->ofs;
  ------------------
  |  |   91|  73.5k|#define MIN(X, Y) ((X) < (Y) ? (X) : (Y))
  |  |  ------------------
  |  |  |  Branch (91:20): [True: 49.6k, False: 23.9k]
  |  |  ------------------
  ------------------
 2980|  73.5k|            *value = bitwise_get(sf->value, n_bytes, dst->ofs, dst->n_bits);
 2981|  73.5k|            return true;
 2982|  73.5k|        }
 2983|  80.6k|    }
 2984|  11.2k|    return false;
 2985|  84.8k|}
ofp-actions.c:put_reg_load:
 2955|  75.7k|{
 2956|  75.7k|    ovs_assert(dst->n_bits <= 64);
  ------------------
  |  |   62|  75.7k|#define ovs_assert ovs_ignore
  ------------------
 2957|       |
 2958|  75.7k|    struct nx_action_reg_load *narl = put_NXAST_REG_LOAD(openflow);
 2959|  75.7k|    narl->ofs_nbits = nxm_encode_ofs_nbits(dst->ofs, dst->n_bits);
 2960|       |    narl->dst = htonl(nxm_header_from_mff(dst->field));
 2961|  75.7k|    narl->value = htonll(value);
 2962|  75.7k|}
ofp-actions.c:set_field_to_legacy_openflow:
 3027|  21.3k|{
 3028|  21.3k|    switch ((int) sf->field->id) {
 3029|  1.20k|    case MFF_VLAN_TCI: {
  ------------------
  |  Branch (3029:5): [True: 1.20k, False: 20.1k]
  ------------------
 3030|  1.20k|        ovs_be16 tci = sf->value->be16;
 3031|  1.20k|        bool cfi = (tci & htons(VLAN_CFI)) != 0;
 3032|  1.20k|        uint16_t vid = vlan_tci_to_vid(tci);
 3033|  1.20k|        uint8_t pcp = vlan_tci_to_pcp(tci);
 3034|       |
 3035|  1.20k|        if (ofp_version < OFP11_VERSION) {
  ------------------
  |  Branch (3035:13): [True: 524, False: 676]
  ------------------
 3036|       |            /* NXM_OF_VLAN_TCI to OpenFlow 1.0 mapping:
 3037|       |             *
 3038|       |             * If CFI=1, Add or modify VLAN VID & PCP.
 3039|       |             * If CFI=0, strip VLAN header, if any.
 3040|       |             */
 3041|    524|            if (cfi) {
  ------------------
  |  Branch (3041:17): [True: 215, False: 309]
  ------------------
 3042|    215|                put_OFPAT10_SET_VLAN_VID(out, vid);
 3043|    215|                put_OFPAT10_SET_VLAN_PCP(out, pcp);
 3044|    309|            } else {
 3045|    309|                put_OFPAT10_STRIP_VLAN(out);
 3046|    309|            }
 3047|    676|        } else {
 3048|       |            /* NXM_OF_VLAN_TCI to OpenFlow 1.1 mapping:
 3049|       |             *
 3050|       |             * If CFI=1, Add or modify VLAN VID & PCP.
 3051|       |             *    OpenFlow 1.1 set actions only apply if the packet
 3052|       |             *    already has VLAN tags.  To be sure that is the case
 3053|       |             *    we have to push a VLAN header.  As we do not support
 3054|       |             *    multiple layers of VLANs, this is a no-op, if a VLAN
 3055|       |             *    header already exists.  This may backfire, however,
 3056|       |             *    when we start supporting multiple layers of VLANs.
 3057|       |             * If CFI=0, strip VLAN header, if any.
 3058|       |             */
 3059|    676|            if (cfi) {
  ------------------
  |  Branch (3059:17): [True: 409, False: 267]
  ------------------
 3060|       |                /* Push a VLAN tag, if one was not seen at action validation
 3061|       |                 * time. */
 3062|    409|                if (!sf->flow_has_vlan) {
  ------------------
  |  Branch (3062:21): [True: 209, False: 200]
  ------------------
 3063|    209|                    put_OFPAT11_PUSH_VLAN(out, htons(ETH_TYPE_VLAN_8021Q));
 3064|    209|                }
 3065|    409|                put_OFPAT11_SET_VLAN_VID(out, vid);
 3066|    409|                put_OFPAT11_SET_VLAN_PCP(out, pcp);
 3067|    409|            } else {
 3068|       |                /* If the flow did not match on vlan, we have no way of
 3069|       |                 * knowing if the vlan tag exists, so we must POP just to be
 3070|       |                 * sure. */
 3071|    267|                put_OFPAT11_POP_VLAN(out);
 3072|    267|            }
 3073|    676|        }
 3074|  1.20k|        break;
 3075|      0|    }
 3076|       |
 3077|    426|    case MFF_VLAN_VID: {
  ------------------
  |  Branch (3077:5): [True: 426, False: 20.9k]
  ------------------
 3078|    426|        uint16_t vid = ntohs(sf->value->be16) & VLAN_VID_MASK;
  ------------------
  |  |  494|    426|#define VLAN_VID_MASK 0x0fff
  ------------------
 3079|    426|        if (ofp_version == OFP10_VERSION) {
  ------------------
  |  Branch (3079:13): [True: 194, False: 232]
  ------------------
 3080|    194|            put_OFPAT10_SET_VLAN_VID(out, vid);
 3081|    232|        } else {
 3082|    232|            put_OFPAT11_SET_VLAN_VID(out, vid);
 3083|    232|        }
 3084|    426|        break;
 3085|      0|    }
 3086|       |
 3087|    390|    case MFF_VLAN_PCP:
  ------------------
  |  Branch (3087:5): [True: 390, False: 20.9k]
  ------------------
 3088|    390|        if (ofp_version == OFP10_VERSION) {
  ------------------
  |  Branch (3088:13): [True: 194, False: 196]
  ------------------
 3089|    194|            put_OFPAT10_SET_VLAN_PCP(out, sf->value->u8);
 3090|    196|        } else {
 3091|    196|            put_OFPAT11_SET_VLAN_PCP(out, sf->value->u8);
 3092|    196|        }
 3093|    390|        break;
 3094|       |
 3095|    201|    case MFF_ETH_SRC:
  ------------------
  |  Branch (3095:5): [True: 201, False: 21.1k]
  ------------------
 3096|    201|        put_OFPAT_SET_DL_SRC(out, ofp_version)->dl_addr = sf->value->mac;
 3097|    201|        break;
 3098|       |
 3099|     66|    case MFF_ETH_DST:
  ------------------
  |  Branch (3099:5): [True: 66, False: 21.2k]
  ------------------
 3100|     66|        put_OFPAT_SET_DL_DST(out, ofp_version)->dl_addr = sf->value->mac;
 3101|     66|        break;
 3102|       |
 3103|    262|    case MFF_IPV4_SRC:
  ------------------
  |  Branch (3103:5): [True: 262, False: 21.0k]
  ------------------
 3104|    262|        put_OFPAT_SET_NW_SRC(out, ofp_version, sf->value->be32);
 3105|    262|        break;
 3106|       |
 3107|    194|    case MFF_IPV4_DST:
  ------------------
  |  Branch (3107:5): [True: 194, False: 21.1k]
  ------------------
 3108|    194|        put_OFPAT_SET_NW_DST(out, ofp_version, sf->value->be32);
 3109|    194|        break;
 3110|       |
 3111|    226|    case MFF_IP_DSCP:
  ------------------
  |  Branch (3111:5): [True: 226, False: 21.1k]
  ------------------
 3112|    226|        put_OFPAT_SET_NW_TOS(out, ofp_version, sf->value->u8);
 3113|    226|        break;
 3114|       |
 3115|    194|    case MFF_IP_DSCP_SHIFTED:
  ------------------
  |  Branch (3115:5): [True: 194, False: 21.1k]
  ------------------
 3116|    194|        put_OFPAT_SET_NW_TOS(out, ofp_version, sf->value->u8 << 2);
 3117|    194|        break;
 3118|       |
 3119|    538|    case MFF_IP_ECN: {
  ------------------
  |  Branch (3119:5): [True: 538, False: 20.8k]
  ------------------
 3120|    538|        struct ofpact_ecn ip_ecn = { .ecn = sf->value->u8 };
 3121|    538|        encode_SET_IP_ECN(&ip_ecn, ofp_version, out);
 3122|    538|        break;
 3123|      0|    }
 3124|       |
 3125|    207|    case MFF_TCP_SRC:
  ------------------
  |  Branch (3125:5): [True: 207, False: 21.1k]
  ------------------
 3126|    498|    case MFF_UDP_SRC:
  ------------------
  |  Branch (3126:5): [True: 291, False: 21.0k]
  ------------------
 3127|    498|        put_OFPAT_SET_TP_SRC(out, sf->value->be16);
 3128|    498|        break;
 3129|       |
 3130|    295|    case MFF_TCP_DST:
  ------------------
  |  Branch (3130:5): [True: 295, False: 21.0k]
  ------------------
 3131|    369|    case MFF_UDP_DST:
  ------------------
  |  Branch (3131:5): [True: 74, False: 21.2k]
  ------------------
 3132|    369|        put_OFPAT_SET_TP_DST(out, sf->value->be16);
 3133|    369|        break;
 3134|       |
 3135|  16.7k|    default:
  ------------------
  |  Branch (3135:5): [True: 16.7k, False: 4.56k]
  ------------------
 3136|  16.7k|        set_field_to_nxast(sf, out);
 3137|  16.7k|        break;
 3138|  21.3k|    }
 3139|  21.3k|}
ofp-actions.c:encode_SET_VLAN_VID:
 1590|  1.34k|{
 1591|  1.34k|    uint16_t vid = vlan_vid->vlan_vid;
 1592|       |
 1593|       |    /* Push a VLAN tag, if none is present and this form of the action calls
 1594|       |     * for such a feature. */
 1595|  1.34k|    if (ofp_version > OFP10_VERSION
  ------------------
  |  Branch (1595:9): [True: 769, False: 572]
  ------------------
 1596|    769|        && vlan_vid->push_vlan_if_needed
  ------------------
  |  Branch (1596:12): [True: 679, False: 90]
  ------------------
 1597|    679|        && !vlan_vid->flow_has_vlan) {
  ------------------
  |  Branch (1597:12): [True: 211, False: 468]
  ------------------
 1598|    211|        put_OFPAT11_PUSH_VLAN(out, htons(ETH_TYPE_VLAN_8021Q));
 1599|    211|    }
 1600|       |
 1601|  1.34k|    if (ofp_version == OFP10_VERSION) {
  ------------------
  |  Branch (1601:9): [True: 572, False: 769]
  ------------------
 1602|    572|        put_OFPAT10_SET_VLAN_VID(out, vid);
 1603|    769|    } else if (ofp_version == OFP11_VERSION) {
  ------------------
  |  Branch (1603:16): [True: 275, False: 494]
  ------------------
 1604|    275|        put_OFPAT11_SET_VLAN_VID(out, vid);
 1605|    494|    } else {
 1606|    494|        put_set_field(out, ofp_version, MFF_VLAN_VID, vid | OFPVID12_PRESENT);
 1607|    494|    }
 1608|  1.34k|}
ofp-actions.c:put_set_field:
 2938|  4.19k|{
 2939|  4.19k|    struct ofp12_action_set_field *oasf OVS_UNUSED;
 2940|  4.19k|    int n_bytes = mf_from_id(field)->n_bytes;
 2941|  4.19k|    size_t start_ofs = openflow->size;
 2942|  4.19k|    union mf_value value;
 2943|       |
 2944|  4.19k|    value.be64 = htonll(value_ << (8 * (8 - n_bytes)));
 2945|       |
 2946|  4.19k|    oasf = put_OFPAT12_SET_FIELD(openflow);
 2947|  4.19k|    openflow->size = openflow->size - sizeof oasf->pad;
 2948|       |    nx_put_entry(openflow, mf_from_id(field), ofp_version, &value, NULL);
 2949|  4.19k|    pad_ofpat(openflow, start_ofs);
 2950|  4.19k|}
ofp-actions.c:encode_SET_VLAN_PCP:
 1698|  1.24k|{
 1699|  1.24k|    uint8_t pcp = vlan_pcp->vlan_pcp;
 1700|       |
 1701|       |    /* Push a VLAN tag, if none is present and this form of the action calls
 1702|       |     * for such a feature. */
 1703|  1.24k|    if (ofp_version > OFP10_VERSION
  ------------------
  |  Branch (1703:9): [True: 805, False: 439]
  ------------------
 1704|    805|        && vlan_pcp->push_vlan_if_needed
  ------------------
  |  Branch (1704:12): [True: 415, False: 390]
  ------------------
 1705|    415|        && !vlan_pcp->flow_has_vlan) {
  ------------------
  |  Branch (1705:12): [True: 71, False: 344]
  ------------------
 1706|     71|        put_OFPAT11_PUSH_VLAN(out, htons(ETH_TYPE_VLAN_8021Q));
 1707|     71|    }
 1708|       |
 1709|  1.24k|    if (ofp_version == OFP10_VERSION) {
  ------------------
  |  Branch (1709:9): [True: 439, False: 805]
  ------------------
 1710|    439|        put_OFPAT10_SET_VLAN_PCP(out, pcp);
 1711|    805|    } else if (ofp_version == OFP11_VERSION) {
  ------------------
  |  Branch (1711:16): [True: 373, False: 432]
  ------------------
 1712|    373|        put_OFPAT11_SET_VLAN_PCP(out, pcp);
 1713|    432|    } else {
 1714|    432|        put_set_field(out, ofp_version, MFF_VLAN_PCP, pcp);
 1715|    432|    }
 1716|  1.24k|}
ofp-actions.c:encode_STRIP_VLAN:
 1791|  2.28k|{
 1792|  2.28k|    if (ofp_version == OFP10_VERSION) {
  ------------------
  |  Branch (1792:9): [True: 1.28k, False: 1.00k]
  ------------------
 1793|  1.28k|        put_OFPAT10_STRIP_VLAN(out);
 1794|  1.28k|    } else {
 1795|  1.00k|        put_OFPAT11_POP_VLAN(out);
 1796|  1.00k|    }
 1797|  2.28k|}
ofp-actions.c:encode_PUSH_VLAN:
 1853|  1.28k|{
 1854|  1.28k|    if (ofp_version == OFP10_VERSION) {
  ------------------
  |  Branch (1854:9): [True: 308, False: 973]
  ------------------
 1855|       |        /* PUSH is a side effect of a SET_VLAN_VID/PCP, which should
 1856|       |         * follow this action. */
 1857|    973|    } else {
 1858|    973|        put_OFPAT11_PUSH_VLAN(out, push_vlan->ethertype);
 1859|    973|    }
 1860|  1.28k|}
ofp-actions.c:encode_SET_ETH_SRC:
 1951|    423|{
 1952|    423|    encode_SET_ETH_addr(mac, ofp_version, OFPAT_RAW_SET_DL_SRC, MFF_ETH_SRC,
 1953|    423|                        out);
 1954|       |
 1955|    423|}
ofp-actions.c:encode_SET_ETH_addr:
 1937|    879|{
 1938|    879|    if (ofp_version < OFP12_VERSION) {
  ------------------
  |  Branch (1938:9): [True: 446, False: 433]
  ------------------
 1939|    446|        struct ofp_action_dl_addr *oada;
 1940|       |
 1941|    446|        oada = ofpact_put_raw(out, ofp_version, raw, 0);
 1942|    446|        oada->dl_addr = mac->mac;
 1943|    446|    } else {
 1944|    433|        put_set_field(out, ofp_version, field, eth_addr_to_uint64(mac->mac));
 1945|    433|    }
 1946|    879|}
ofp-actions.c:encode_SET_ETH_DST:
 1961|    456|{
 1962|    456|    encode_SET_ETH_addr(mac, ofp_version, OFPAT_RAW_SET_DL_DST, MFF_ETH_DST,
 1963|    456|                        out);
 1964|       |
 1965|    456|}
ofp-actions.c:encode_SET_IPV4_SRC:
 2046|  1.56k|{
 2047|  1.56k|    encode_SET_IPV4_addr(ipv4, ofp_version, OFPAT_RAW_SET_NW_SRC, MFF_IPV4_SRC,
 2048|  1.56k|                         out);
 2049|  1.56k|}
ofp-actions.c:encode_SET_IPV4_addr:
 2034|  2.26k|{
 2035|  2.26k|    ovs_be32 addr = ipv4->ipv4;
 2036|  2.26k|    if (ofp_version < OFP12_VERSION) {
  ------------------
  |  Branch (2036:9): [True: 1.98k, False: 286]
  ------------------
 2037|  1.98k|        ofpact_put_raw(out, ofp_version, raw, ntohl(addr));
 2038|  1.98k|    } else {
 2039|       |        put_set_field(out, ofp_version, field, ntohl(addr));
 2040|    286|    }
 2041|  2.26k|}
ofp-actions.c:encode_SET_IPV4_DST:
 2054|    700|{
 2055|    700|    encode_SET_IPV4_addr(ipv4, ofp_version, OFPAT_RAW_SET_NW_DST, MFF_IPV4_DST,
 2056|    700|                         out);
 2057|    700|}
ofp-actions.c:encode_SET_IP_DSCP:
 2129|  1.37k|{
 2130|  1.37k|    if (ofp_version < OFP12_VERSION) {
  ------------------
  |  Branch (2130:9): [True: 1.08k, False: 291]
  ------------------
 2131|  1.08k|        put_OFPAT_SET_NW_TOS(out, ofp_version, dscp->dscp);
 2132|  1.08k|    } else {
 2133|    291|        put_set_field(out, ofp_version, MFF_IP_DSCP_SHIFTED, dscp->dscp >> 2);
 2134|    291|    }
 2135|  1.37k|}
ofp-actions.c:encode_SET_IP_ECN:
 2198|  1.65k|{
 2199|  1.65k|    uint8_t ecn = ip_ecn->ecn;
 2200|  1.65k|    if (ofp_version == OFP10_VERSION) {
  ------------------
  |  Branch (2200:9): [True: 961, False: 690]
  ------------------
 2201|    961|        struct mf_subfield dst = { .field = mf_from_id(MFF_IP_ECN),
 2202|    961|                                   .ofs = 0, .n_bits = 2 };
 2203|    961|        put_reg_load(out, &dst, ecn);
 2204|    961|    } else if (ofp_version == OFP11_VERSION) {
  ------------------
  |  Branch (2204:16): [True: 331, False: 359]
  ------------------
 2205|    331|        put_OFPAT11_SET_NW_ECN(out, ecn);
 2206|    359|    } else {
 2207|    359|        put_set_field(out, ofp_version, MFF_IP_ECN, ecn);
 2208|    359|    }
 2209|  1.65k|}
ofp-actions.c:encode_SET_IP_TTL:
 2258|  1.82k|{
 2259|  1.82k|    if (ofp_version >= OFP11_VERSION) {
  ------------------
  |  Branch (2259:9): [True: 596, False: 1.23k]
  ------------------
 2260|    596|        put_OFPAT11_SET_NW_TTL(out, ttl->ttl);
 2261|  1.23k|    } else {
 2262|  1.23k|        struct mf_subfield dst = { .field = mf_from_id(MFF_IP_TTL),
 2263|  1.23k|                                   .ofs = 0, .n_bits = 8 };
 2264|  1.23k|        put_reg_load(out, &dst, ttl->ttl);
 2265|  1.23k|    }
 2266|  1.82k|}
ofp-actions.c:encode_SET_L4_SRC_PORT:
 2336|  3.22k|{
 2337|  3.22k|    uint8_t proto = l4_port->flow_ip_proto;
 2338|  3.22k|    enum mf_field_id field = (proto == IPPROTO_TCP ? MFF_TCP_SRC
  ------------------
  |  Branch (2338:31): [True: 959, False: 2.26k]
  ------------------
 2339|  3.22k|                              : proto == IPPROTO_UDP ? MFF_UDP_SRC
  ------------------
  |  Branch (2339:33): [True: 241, False: 2.02k]
  ------------------
 2340|  2.26k|                              : proto == IPPROTO_SCTP ? MFF_SCTP_SRC
  ------------------
  |  Branch (2340:33): [True: 761, False: 1.26k]
  ------------------
 2341|  2.02k|                              : MFF_N_IDS);
 2342|       |
 2343|  3.22k|    encode_SET_L4_port(l4_port, ofp_version, OFPAT_RAW_SET_TP_SRC, field, out);
 2344|  3.22k|}
ofp-actions.c:encode_SET_L4_port:
 2323|  5.02k|{
 2324|  5.02k|    uint16_t port = l4_port->port;
 2325|       |
 2326|  5.02k|    if (ofp_version >= OFP12_VERSION && field != MFF_N_IDS) {
  ------------------
  |  Branch (2326:9): [True: 640, False: 4.38k]
  |  Branch (2326:41): [True: 394, False: 246]
  ------------------
 2327|    394|        put_set_field(out, ofp_version, field, port);
 2328|  4.62k|    } else {
 2329|  4.62k|        ofpact_put_raw(out, ofp_version, raw, port);
 2330|  4.62k|    }
 2331|  5.02k|}
ofp-actions.c:encode_SET_L4_DST_PORT:
 2350|  1.79k|{
 2351|  1.79k|    uint8_t proto = l4_port->flow_ip_proto;
 2352|  1.79k|    enum mf_field_id field = (proto == IPPROTO_TCP ? MFF_TCP_DST
  ------------------
  |  Branch (2352:31): [True: 437, False: 1.35k]
  ------------------
 2353|  1.79k|                              : proto == IPPROTO_UDP ? MFF_UDP_DST
  ------------------
  |  Branch (2353:33): [True: 372, False: 986]
  ------------------
 2354|  1.35k|                              : proto == IPPROTO_SCTP ? MFF_SCTP_DST
  ------------------
  |  Branch (2354:33): [True: 399, False: 587]
  ------------------
 2355|    986|                              : MFF_N_IDS);
 2356|       |
 2357|  1.79k|    encode_SET_L4_port(l4_port, ofp_version, OFPAT_RAW_SET_TP_DST, field, out);
 2358|  1.79k|}
ofp-actions.c:encode_REG_MOVE:
 2669|    453|{
 2670|       |    /* For OpenFlow 1.3, the choice of ONFACT_RAW13_COPY_FIELD versus
 2671|       |     * NXAST_RAW_REG_MOVE is somewhat difficult.  Neither one is guaranteed to
 2672|       |     * be supported by every OpenFlow 1.3 implementation.  It would be ideal to
 2673|       |     * probe for support.  Until we have that ability, we currently prefer
 2674|       |     * NXAST_RAW_REG_MOVE for backward compatibility with older Open vSwitch
 2675|       |     * versions.  */
 2676|    453|    size_t start_ofs = out->size;
 2677|    453|    if (ofp_version >= OFP15_VERSION) {
  ------------------
  |  Branch (2677:9): [True: 0, False: 453]
  ------------------
 2678|      0|        struct ofp15_action_copy_field *copy = put_OFPAT15_COPY_FIELD(out);
 2679|      0|        copy->n_bits = htons(move->dst.n_bits);
 2680|      0|        copy->src_offset = htons(move->src.ofs);
 2681|      0|        copy->dst_offset = htons(move->dst.ofs);
 2682|      0|        out->size = out->size - sizeof copy->pad2;
 2683|      0|        nx_put_mff_header(out, move->src.field, ofp_version, false);
 2684|      0|        nx_put_mff_header(out, move->dst.field, ofp_version, false);
 2685|    453|    } else if (ofp_version == OFP13_VERSION
  ------------------
  |  Branch (2685:16): [True: 192, False: 261]
  ------------------
 2686|    192|               && move->ofpact.raw == ONFACT_RAW13_COPY_FIELD) {
  ------------------
  |  Branch (2686:19): [True: 0, False: 192]
  ------------------
 2687|      0|        struct onf_action_copy_field *copy = put_ONFACT13_COPY_FIELD(out);
 2688|      0|        copy->n_bits = htons(move->dst.n_bits);
 2689|      0|        copy->src_offset = htons(move->src.ofs);
 2690|      0|        copy->dst_offset = htons(move->dst.ofs);
 2691|      0|        out->size = out->size - sizeof copy->pad3;
 2692|      0|        nx_put_mff_header(out, move->src.field, ofp_version, false);
 2693|      0|        nx_put_mff_header(out, move->dst.field, ofp_version, false);
 2694|    453|    } else {
 2695|    453|        struct nx_action_reg_move *narm = put_NXAST_REG_MOVE(out);
 2696|    453|        narm->n_bits = htons(move->dst.n_bits);
 2697|    453|        narm->src_ofs = htons(move->src.ofs);
 2698|    453|        narm->dst_ofs = htons(move->dst.ofs);
 2699|    453|        nx_put_mff_header(out, move->src.field, 0, false);
 2700|       |        nx_put_mff_header(out, move->dst.field, 0, false);
 2701|    453|    }
 2702|    453|    pad_ofpat(out, start_ofs);
 2703|    453|}
ofp-actions.c:encode_STACK_PUSH:
 3532|    359|{
 3533|    359|    encode_STACK_op(stack, put_NXAST_STACK_PUSH(out));
 3534|    359|}
ofp-actions.c:encode_STACK_op:
 3516|  2.23k|{
 3517|  2.23k|    struct ofpbuf b;
 3518|  2.23k|    ovs_be16 n_bits;
 3519|       |
 3520|  2.23k|    nasp->offset = htons(stack_action->subfield.ofs);
 3521|       |
 3522|  2.23k|    ofpbuf_use_stack(&b, nasp, ntohs(nasp->len));
 3523|  2.23k|    ofpbuf_put_uninit(&b, OBJECT_OFFSETOF(nasp, pad));
  ------------------
  |  |  108|  2.23k|#define OBJECT_OFFSETOF(OBJECT, MEMBER) offsetof(typeof(*(OBJECT)), MEMBER)
  ------------------
 3524|  2.23k|    nx_put_mff_header(&b, stack_action->subfield.field, 0, false);
 3525|       |    n_bits = htons(stack_action->subfield.n_bits);
 3526|  2.23k|    ofpbuf_put(&b, &n_bits, sizeof n_bits);
 3527|  2.23k|}
ofp-actions.c:encode_STACK_POP:
 3539|  1.87k|{
 3540|  1.87k|    encode_STACK_op(stack, put_NXAST_STACK_POP(out));
 3541|  1.87k|}
ofp-actions.c:encode_DEC_TTL:
 3666|  2.84k|{
 3667|  2.84k|    if (dec_ttl->ofpact.raw == NXAST_RAW_DEC_TTL_CNT_IDS
  ------------------
  |  Branch (3667:9): [True: 2.03k, False: 812]
  ------------------
 3668|    812|        || dec_ttl->n_controllers != 1
  ------------------
  |  Branch (3668:12): [True: 0, False: 812]
  ------------------
 3669|  2.03k|        || dec_ttl->cnt_ids[0] != 0) {
  ------------------
  |  Branch (3669:12): [True: 0, False: 812]
  ------------------
 3670|  2.03k|        struct nx_action_cnt_ids *nac_ids = put_NXAST_DEC_TTL_CNT_IDS(out);
 3671|  2.03k|        int ids_len = ROUND_UP(2 * dec_ttl->n_controllers, OFP_ACTION_ALIGN);
  ------------------
  |  |  303|  2.03k|#define ROUND_UP(X, Y) (DIV_ROUND_UP(X, Y) * (Y))
  |  |  ------------------
  |  |  |  |  300|  2.03k|#define DIV_ROUND_UP(X, Y) (((X) + ((Y) - 1)) / (Y))
  |  |  ------------------
  ------------------
 3672|  2.03k|        ovs_be16 *ids;
 3673|  2.03k|        size_t i;
 3674|       |
 3675|  2.03k|        nac_ids->len = htons(ntohs(nac_ids->len) + ids_len);
 3676|  2.03k|        nac_ids->n_controllers = htons(dec_ttl->n_controllers);
 3677|       |
 3678|  2.03k|        ids = ofpbuf_put_zeros(out, ids_len);
 3679|   622k|        for (i = 0; i < dec_ttl->n_controllers; i++) {
  ------------------
  |  Branch (3679:21): [True: 620k, False: 2.03k]
  ------------------
 3680|   620k|            ids[i] = htons(dec_ttl->cnt_ids[i]);
 3681|   620k|        }
 3682|  2.03k|    } else {
 3683|    812|        put_OFPAT_DEC_NW_TTL(out, ofp_version);
 3684|    812|    }
 3685|  2.84k|}
ofp-actions.c:encode_SET_MPLS_LABEL:
 3774|  1.69k|{
 3775|  1.69k|    if (ofp_version < OFP12_VERSION) {
  ------------------
  |  Branch (3775:9): [True: 770, False: 923]
  ------------------
 3776|    770|        put_OFPAT_SET_MPLS_LABEL(out, ofp_version, label->label);
 3777|    923|    } else {
 3778|       |        put_set_field(out, ofp_version, MFF_MPLS_LABEL, ntohl(label->label));
 3779|    923|    }
 3780|  1.69k|}
ofp-actions.c:encode_SET_MPLS_TC:
 3846|  1.12k|{
 3847|  1.12k|    if (ofp_version < OFP12_VERSION) {
  ------------------
  |  Branch (3847:9): [True: 810, False: 319]
  ------------------
 3848|    810|        put_OFPAT_SET_MPLS_TC(out, ofp_version, tc->tc);
 3849|    810|    } else {
 3850|    319|        put_set_field(out, ofp_version, MFF_MPLS_TC, tc->tc);
 3851|    319|    }
 3852|  1.12k|}
ofp-actions.c:encode_SET_MPLS_TTL:
 3907|  1.12k|{
 3908|  1.12k|    put_OFPAT_SET_MPLS_TTL(out, ofp_version, ttl->ttl);
 3909|  1.12k|}
ofp-actions.c:encode_DEC_MPLS_TTL:
 3963|  2.12k|{
 3964|  2.12k|    put_OFPAT_DEC_MPLS_TTL(out, ofp_version);
 3965|  2.12k|}
ofp-actions.c:encode_PUSH_MPLS:
 4009|    439|{
 4010|    439|    put_OFPAT_PUSH_MPLS(out, ofp_version, push_mpls->ethertype);
 4011|    439|}
ofp-actions.c:encode_POP_MPLS:
 4067|  1.25k|{
 4068|  1.25k|    put_OFPAT_POP_MPLS(out, ofp_version, pop_mpls->ethertype);
 4069|  1.25k|}
ofp-actions.c:encode_DEC_NSH_TTL:
 4808|    737|{
 4809|    737|    put_NXAST_DEC_NSH_TTL(out);
 4810|    737|}
ofp-actions.c:encode_DELETE_FIELD:
 4224|    342|{
 4225|    342|    size_t size;
 4226|       |
 4227|    342|    put_NXAST_DELETE_FIELD(out);
 4228|    342|    size = out->size;
 4229|       |
 4230|    342|    out->size = size - MEMBER_SIZEOF(struct nx_action_delete_field, pad);
  ------------------
  |  |  115|    342|#define MEMBER_SIZEOF(STRUCT, MEMBER) (sizeof(((STRUCT *) NULL)->MEMBER))
  ------------------
 4231|       |    nx_put_mff_header(out, delete_field->field, 0, false);
 4232|    342|    out->size = size;
 4233|    342|}
ofp-actions.c:encode_ENCAP:
 4512|  1.38k|{
 4513|  1.38k|    size_t start_ofs = out->size;
 4514|  1.38k|    struct nx_action_encap *nae = put_NXAST_ENCAP(out);
 4515|  1.38k|    int i;
 4516|       |
 4517|  1.38k|    nae->new_pkt_type = encap->new_pkt_type;
 4518|  1.38k|    nae->hdr_size = htons(encap->hdr_size);
 4519|  1.38k|    const struct ofpact_ed_prop *prop = encap->props;
 4520|  2.82k|    for (i = 0; i < encap->n_props; i++) {
  ------------------
  |  Branch (4520:17): [True: 1.44k, False: 1.38k]
  ------------------
 4521|  1.44k|        encode_ed_prop(&prop, out);
 4522|  1.44k|    }
 4523|  1.38k|    pad_ofpat(out, start_ofs);
 4524|  1.38k|}
ofp-actions.c:encode_DECAP:
 4715|  1.82k|{
 4716|  1.82k|    struct nx_action_decap *nad = put_NXAST_DECAP(out);
 4717|       |
 4718|       |    nad->len = htons(sizeof(struct nx_action_decap));
 4719|  1.82k|    nad->new_pkt_type = decap->new_pkt_type;
 4720|  1.82k|}
ofp-actions.c:encode_SET_TUNNEL:
 4132|  1.25k|{
 4133|  1.25k|    uint64_t tun_id = tunnel->tun_id;
 4134|       |
 4135|  1.25k|    if (ofp_version < OFP12_VERSION) {
  ------------------
  |  Branch (4135:9): [True: 989, False: 267]
  ------------------
 4136|    989|        if (tun_id <= UINT32_MAX
  ------------------
  |  Branch (4136:13): [True: 712, False: 277]
  ------------------
 4137|    712|            && tunnel->ofpact.raw != NXAST_RAW_SET_TUNNEL64) {
  ------------------
  |  Branch (4137:16): [True: 355, False: 357]
  ------------------
 4138|    355|            put_NXAST_SET_TUNNEL(out, tun_id);
 4139|    634|        } else {
 4140|    634|            put_NXAST_SET_TUNNEL64(out, tun_id);
 4141|    634|        }
 4142|    989|    } else {
 4143|    267|        put_set_field(out, ofp_version, MFF_TUN_ID, tun_id);
 4144|    267|    }
 4145|  1.25k|}
ofp-actions.c:encode_SET_QUEUE:
 4278|    213|{
 4279|    213|    put_OFPAT_SET_QUEUE(out, ofp_version, queue->queue_id);
 4280|    213|}
ofp-actions.c:encode_POP_QUEUE:
 4315|    452|{
 4316|    452|    put_NXAST_POP_QUEUE(out);
 4317|    452|}
ofp-actions.c:encode_FIN_TIMEOUT:
 4392|    440|{
 4393|    440|    struct nx_action_fin_timeout *naft = put_NXAST_FIN_TIMEOUT(out);
 4394|    440|    naft->fin_idle_timeout = htons(fin_timeout->fin_idle_timeout);
 4395|       |    naft->fin_hard_timeout = htons(fin_timeout->fin_hard_timeout);
 4396|    440|}
ofp-actions.c:encode_RESUBMIT:
 4965|  1.23k|{
 4966|  1.23k|    uint16_t in_port = ofp_to_u16(resubmit->in_port);
 4967|       |
 4968|  1.23k|    if (resubmit->table_id == 0xff
  ------------------
  |  Branch (4968:9): [True: 805, False: 426]
  ------------------
 4969|    805|        && resubmit->ofpact.raw == NXAST_RAW_RESUBMIT) {
  ------------------
  |  Branch (4969:12): [True: 0, False: 805]
  ------------------
 4970|      0|        put_NXAST_RESUBMIT(out, in_port);
 4971|  1.23k|    } else {
 4972|  1.23k|        struct nx_action_resubmit *nar;
 4973|  1.23k|        nar = resubmit->with_ct_orig
  ------------------
  |  Branch (4973:15): [True: 388, False: 843]
  ------------------
 4974|  1.23k|            ? put_NXAST_RESUBMIT_TABLE_CT(out) : put_NXAST_RESUBMIT_TABLE(out);
 4975|  1.23k|        nar->table = resubmit->table_id;
 4976|       |        nar->in_port = htons(in_port);
 4977|  1.23k|    }
 4978|  1.23k|}
ofp-actions.c:encode_LEARN:
 5573|  33.1k|{
 5574|  33.1k|    const struct ofpact_learn_spec *spec;
 5575|  33.1k|    struct nx_action_learn *nal;
 5576|  33.1k|    size_t start_ofs;
 5577|       |
 5578|  33.1k|    start_ofs = out->size;
 5579|       |
 5580|  33.1k|    if (learn->ofpact.raw == NXAST_RAW_LEARN2
  ------------------
  |  Branch (5580:9): [True: 0, False: 33.1k]
  ------------------
 5581|  33.1k|        || learn->limit != 0
  ------------------
  |  Branch (5581:12): [True: 485, False: 32.6k]
  ------------------
 5582|  32.6k|        || learn->flags & NX_LEARN_F_WRITE_RESULT) {
  ------------------
  |  Branch (5582:12): [True: 263, False: 32.4k]
  ------------------
 5583|    748|        struct nx_action_learn2 *nal2;
 5584|       |
 5585|    748|        nal2 = put_NXAST_LEARN2(out);
 5586|    748|        nal2->limit = htonl(learn->limit);
 5587|    748|        nal2->result_dst_ofs = htons(learn->result_dst.ofs);
 5588|    748|        nal = &nal2->up;
 5589|  32.4k|    } else {
 5590|  32.4k|        nal = put_NXAST_LEARN(out);
 5591|  32.4k|    }
 5592|  33.1k|    nal->idle_timeout = htons(learn->idle_timeout);
 5593|  33.1k|    nal->hard_timeout = htons(learn->hard_timeout);
 5594|  33.1k|    nal->fin_idle_timeout = htons(learn->fin_idle_timeout);
 5595|  33.1k|    nal->fin_hard_timeout = htons(learn->fin_hard_timeout);
 5596|  33.1k|    nal->priority = htons(learn->priority);
 5597|  33.1k|    nal->cookie = learn->cookie;
 5598|  33.1k|    nal->flags = htons(learn->flags);
 5599|  33.1k|    nal->table_id = learn->table_id;
 5600|       |
 5601|  33.1k|    if (learn->flags & NX_LEARN_F_WRITE_RESULT) {
  ------------------
  |  Branch (5601:9): [True: 263, False: 32.9k]
  ------------------
 5602|    263|        nx_put_header(out, learn->result_dst.field->id, 0, false);
 5603|    263|    }
 5604|       |
 5605|  48.7k|    OFPACT_LEARN_SPEC_FOR_EACH (spec, learn) {
  ------------------
  |  |  900|  33.1k|    for ((SPEC) = (LEARN)->specs;               \
  |  |  901|  81.9k|         (SPEC) < ofpact_learn_spec_end(LEARN); \
  |  |  ------------------
  |  |  |  Branch (901:10): [True: 48.7k, False: 33.1k]
  |  |  ------------------
  |  |  902|  48.7k|         (SPEC) = ofpact_learn_spec_next(SPEC))
  ------------------
 5606|  48.7k|        put_u16(out, spec->n_bits | spec->dst_type | spec->src_type);
 5607|       |
 5608|  48.7k|        if (spec->src_type == NX_LEARN_SRC_FIELD) {
  ------------------
  |  |  821|  48.7k|#define NX_LEARN_SRC_FIELD     (0 << 13) /* Copy from field. */
  ------------------
  |  Branch (5608:13): [True: 2.00k, False: 46.7k]
  ------------------
 5609|  2.00k|            put_u32(out, nxm_header_from_mff(spec->src.field));
 5610|  2.00k|            put_u16(out, spec->src.ofs);
 5611|  46.7k|        } else {
 5612|  46.7k|            size_t n_dst_bytes = 2 * DIV_ROUND_UP(spec->n_bits, 16);
  ------------------
  |  |  300|  46.7k|#define DIV_ROUND_UP(X, Y) (((X) + ((Y) - 1)) / (Y))
  ------------------
 5613|  46.7k|            uint8_t *bits = ofpbuf_put_zeros(out, n_dst_bytes);
 5614|  46.7k|            unsigned int n_bytes = DIV_ROUND_UP(spec->n_bits, 8);
  ------------------
  |  |  300|  46.7k|#define DIV_ROUND_UP(X, Y) (((X) + ((Y) - 1)) / (Y))
  ------------------
 5615|       |
 5616|  46.7k|            memcpy(bits + n_dst_bytes - n_bytes, ofpact_learn_spec_imm(spec),
 5617|  46.7k|                   n_bytes);
 5618|  46.7k|        }
 5619|       |
 5620|  48.7k|        if (spec->dst_type == NX_LEARN_DST_MATCH ||
  ------------------
  |  |  825|  97.5k|#define NX_LEARN_DST_MATCH     (0 << 11) /* Add match criterion. */
  ------------------
  |  Branch (5620:13): [True: 48.1k, False: 636]
  ------------------
 5621|  48.5k|            spec->dst_type == NX_LEARN_DST_LOAD) {
  ------------------
  |  |  826|    636|#define NX_LEARN_DST_LOAD      (1 << 11) /* Add NXAST_REG_LOAD action. */
  ------------------
  |  Branch (5621:13): [True: 374, False: 262]
  ------------------
 5622|  48.5k|            put_u32(out, nxm_header_from_mff(spec->dst.field));
 5623|  48.5k|            put_u16(out, spec->dst.ofs);
 5624|  48.5k|        }
 5625|  48.7k|    }
 5626|       |
 5627|  33.1k|    pad_ofpat(out, start_ofs);
 5628|  33.1k|}
ofp-actions.c:put_u16:
 5560|  99.2k|{
 5561|       |    put_be16(b, htons(x));
 5562|  99.2k|}
ofp-actions.c:put_be16:
 5548|  99.2k|{
 5549|  99.2k|    ofpbuf_put(b, &x, sizeof x);
 5550|  99.2k|}
ofp-actions.c:put_u32:
 5566|  50.5k|{
 5567|       |    put_be32(b, htonl(x));
 5568|  50.5k|}
ofp-actions.c:put_be32:
 5554|  50.5k|{
 5555|  50.5k|    ofpbuf_put(b, &x, sizeof x);
 5556|  50.5k|}
ofp-actions.c:encode_CONJUNCTION:
 5691|    218|{
 5692|    218|    struct nx_action_conjunction *nac = put_NXAST_CONJUNCTION(out);
 5693|    218|    nac->clause = oc->clause;
 5694|    218|    nac->n_clauses = oc->n_clauses;
 5695|       |    nac->id = htonl(oc->id);
 5696|    218|}
ofp-actions.c:encode_MULTIPATH:
 5845|    286|{
 5846|    286|    struct nx_action_multipath *nam = put_NXAST_MULTIPATH(out);
 5847|       |
 5848|    286|    nam->fields = htons(mp->fields);
 5849|    286|    nam->basis = htons(mp->basis);
 5850|    286|    nam->algorithm = htons(mp->algorithm);
 5851|    286|    nam->max_link = htons(mp->max_link);
 5852|    286|    nam->arg = htonl(mp->arg);
 5853|    286|    nam->ofs_nbits = nxm_encode_ofs_nbits(mp->dst.ofs, mp->dst.n_bits);
 5854|       |    nam->dst = htonl(nxm_header_from_mff(mp->dst.field));
 5855|    286|}
ofp-actions.c:encode_NOTE:
 5916|  1.71k|{
 5917|  1.71k|    size_t start_ofs = out->size;
 5918|  1.71k|    struct nx_action_note *nan;
 5919|       |
 5920|  1.71k|    put_NXAST_NOTE(out);
 5921|  1.71k|    out->size = out->size - sizeof nan->note;
 5922|       |
 5923|  1.71k|    ofpbuf_put(out, note->data, note->length);
 5924|  1.71k|    pad_ofpat(out, start_ofs);
 5925|  1.71k|}
ofp-actions.c:encode_EXIT:
 5975|  1.86k|{
 5976|  1.86k|    put_NXAST_EXIT(out);
 5977|  1.86k|}
ofp-actions.c:encode_SAMPLE:
 6427|  1.58k|{
 6428|  1.58k|    if (sample->ofpact.raw == NXAST_RAW_SAMPLE4 ||
  ------------------
  |  Branch (6428:9): [True: 0, False: 1.58k]
  ------------------
 6429|  1.58k|        sample->obs_domain_src.field ||
  ------------------
  |  Branch (6429:9): [True: 381, False: 1.20k]
  ------------------
 6430|  1.20k|        sample->obs_point_src.field) {
  ------------------
  |  Branch (6430:9): [True: 224, False: 977]
  ------------------
 6431|    605|        encode_SAMPLE4(sample, put_NXAST_SAMPLE4(out));
 6432|    977|    } else if (sample->ofpact.raw == NXAST_RAW_SAMPLE3
  ------------------
  |  Branch (6432:16): [True: 0, False: 977]
  ------------------
 6433|    977|        || sample->direction != NX_ACTION_SAMPLE_DEFAULT) {
  ------------------
  |  Branch (6433:12): [True: 299, False: 678]
  ------------------
 6434|    299|        encode_SAMPLE2(sample, put_NXAST_SAMPLE3(out));
 6435|    678|    } else if (sample->ofpact.raw == NXAST_RAW_SAMPLE2
  ------------------
  |  Branch (6435:16): [True: 0, False: 678]
  ------------------
 6436|    678|               || sample->sampling_port != OFPP_NONE) {
  ------------------
  |  |   47|    678|#define OFPP_NONE       OFP_PORT_C(0xffff) /* Not associated with any port. */
  |  |  ------------------
  |  |  |  |  157|    678|#define OFP_PORT_C(X) ((OVS_FORCE ofp_port_t) (X))
  |  |  ------------------
  ------------------
  |  Branch (6436:19): [True: 211, False: 467]
  ------------------
 6437|    211|        encode_SAMPLE2(sample, put_NXAST_SAMPLE2(out));
 6438|    467|    } else {
 6439|    467|        struct nx_action_sample *nas = put_NXAST_SAMPLE(out);
 6440|    467|        nas->probability = htons(sample->probability);
 6441|    467|        nas->collector_set_id = htonl(sample->collector_set_id);
 6442|    467|        nas->obs_domain_id = htonl(sample->obs_domain_imm);
 6443|       |        nas->obs_point_id = htonl(sample->obs_point_imm);
 6444|    467|    }
 6445|  1.58k|}
ofp-actions.c:encode_SAMPLE4:
 6396|    605|{
 6397|    605|    nas->probability = htons(sample->probability);
 6398|    605|    nas->collector_set_id = htonl(sample->collector_set_id);
 6399|    605|    nas->sampling_port = htons(ofp_to_u16(sample->sampling_port));
 6400|    605|    nas->direction = sample->direction;
 6401|       |
 6402|    605|    if (sample->obs_domain_src.field) {
  ------------------
  |  Branch (6402:9): [True: 381, False: 224]
  ------------------
 6403|    381|        nas->obs_domain_src =
 6404|    381|            htonl(nxm_header_from_mff(sample->obs_domain_src.field));
 6405|    381|        nas->obs_domain_ofs_nbits =
 6406|    381|            nxm_encode_ofs_nbits(sample->obs_domain_src.ofs,
 6407|    381|                                 sample->obs_domain_src.n_bits);
 6408|    381|    } else {
 6409|    224|        nas->obs_domain_src = htonl(0);
 6410|    224|        nas->obs_domain_imm = htonl(sample->obs_domain_imm);
 6411|    224|    }
 6412|    605|    if (sample->obs_point_src.field) {
  ------------------
  |  Branch (6412:9): [True: 224, False: 381]
  ------------------
 6413|    224|        nas->obs_point_src =
 6414|    224|            htonl(nxm_header_from_mff(sample->obs_point_src.field));
 6415|    224|        nas->obs_point_ofs_nbits =
 6416|    224|            nxm_encode_ofs_nbits(sample->obs_point_src.ofs,
 6417|    224|                                 sample->obs_point_src.n_bits);
 6418|    381|    } else {
 6419|    381|        nas->obs_point_src = htonl(0);
 6420|       |        nas->obs_point_imm = htonl(sample->obs_point_imm);
 6421|    381|    }
 6422|    605|}
ofp-actions.c:encode_SAMPLE2:
 6384|    510|{
 6385|    510|    nas->probability = htons(sample->probability);
 6386|    510|    nas->collector_set_id = htonl(sample->collector_set_id);
 6387|    510|    nas->obs_domain_id = htonl(sample->obs_domain_imm);
 6388|    510|    nas->obs_point_id = htonl(sample->obs_point_imm);
 6389|       |    nas->sampling_port = htons(ofp_to_u16(sample->sampling_port));
 6390|    510|    nas->direction = sample->direction;
 6391|    510|}
ofp-actions.c:encode_CT:
 6888|  8.78k|{
 6889|  8.78k|    struct nx_action_conntrack *nac;
 6890|  8.78k|    const size_t ofs = out->size;
 6891|  8.78k|    size_t len;
 6892|       |
 6893|  8.78k|    nac = put_NXAST_CT(out);
 6894|  8.78k|    nac->flags = htons(conntrack->flags);
 6895|  8.78k|    if (conntrack->zone_src.field) {
  ------------------
  |  Branch (6895:9): [True: 227, False: 8.56k]
  ------------------
 6896|    227|        nac->zone_src = htonl(nxm_header_from_mff(conntrack->zone_src.field));
 6897|    227|        nac->zone_ofs_nbits = nxm_encode_ofs_nbits(conntrack->zone_src.ofs,
 6898|    227|                                                   conntrack->zone_src.n_bits);
 6899|  8.56k|    } else {
 6900|  8.56k|        nac->zone_src = htonl(0);
 6901|  8.56k|        nac->zone_imm = htons(conntrack->zone_imm);
 6902|  8.56k|    }
 6903|  8.78k|    nac->recirc_table = conntrack->recirc_table;
 6904|  8.78k|    nac->alg = htons(conntrack->alg);
 6905|       |
 6906|  8.78k|    len = ofpacts_put_openflow_actions(conntrack->actions,
 6907|  8.78k|                                       ofpact_ct_get_action_len(conntrack),
 6908|  8.78k|                                       out, ofp_version);
 6909|  8.78k|    len += sizeof(*nac);
 6910|  8.78k|    nac = ofpbuf_at(out, ofs, sizeof(*nac));
 6911|       |    nac->len = htons(len);
 6912|  8.78k|}
ofp-actions.c:encode_CT_CLEAR:
 7101|  1.31k|{
 7102|  1.31k|    put_NXAST_CT_CLEAR(out);
 7103|  1.31k|}
ofp-actions.c:encode_NAT:
 7156|  7.36k|{
 7157|  7.36k|    struct nx_action_nat *nan;
 7158|  7.36k|    const size_t ofs = out->size;
 7159|  7.36k|    uint16_t range_present = 0;
 7160|       |
 7161|  7.36k|    nan = put_NXAST_NAT(out);
 7162|  7.36k|    nan->flags = htons(nat->flags);
 7163|  7.36k|    if (nat->range_af == AF_INET) {
  ------------------
  |  Branch (7163:9): [True: 681, False: 6.68k]
  ------------------
 7164|    681|        if (nat->range.addr.ipv4.min) {
  ------------------
  |  Branch (7164:13): [True: 315, False: 366]
  ------------------
 7165|    315|            ovs_be32 *min = ofpbuf_put_uninit(out, sizeof *min);
 7166|    315|            *min = nat->range.addr.ipv4.min;
 7167|    315|            range_present |= NX_NAT_RANGE_IPV4_MIN;
 7168|    315|        }
 7169|    681|        if (nat->range.addr.ipv4.max) {
  ------------------
  |  Branch (7169:13): [True: 99, False: 582]
  ------------------
 7170|     99|            ovs_be32 *max = ofpbuf_put_uninit(out, sizeof *max);
 7171|     99|            *max = nat->range.addr.ipv4.max;
 7172|     99|            range_present |= NX_NAT_RANGE_IPV4_MAX;
 7173|     99|        }
 7174|  6.68k|    } else if (nat->range_af == AF_INET6) {
  ------------------
  |  Branch (7174:16): [True: 3.99k, False: 2.68k]
  ------------------
 7175|  3.99k|        if (!ipv6_mask_is_any(&nat->range.addr.ipv6.min)) {
  ------------------
  |  Branch (7175:13): [True: 2.76k, False: 1.23k]
  ------------------
 7176|  2.76k|            struct in6_addr *min = ofpbuf_put_uninit(out, sizeof *min);
 7177|  2.76k|            *min = nat->range.addr.ipv6.min;
 7178|  2.76k|            range_present |= NX_NAT_RANGE_IPV6_MIN;
 7179|  2.76k|        }
 7180|  3.99k|        if (!ipv6_mask_is_any(&nat->range.addr.ipv6.max)) {
  ------------------
  |  Branch (7180:13): [True: 1.04k, False: 2.95k]
  ------------------
 7181|  1.04k|            struct in6_addr *max = ofpbuf_put_uninit(out, sizeof *max);
 7182|  1.04k|            *max = nat->range.addr.ipv6.max;
 7183|  1.04k|            range_present |= NX_NAT_RANGE_IPV6_MAX;
 7184|  1.04k|        }
 7185|  3.99k|    }
 7186|  7.36k|    if (nat->range_af != AF_UNSPEC) {
  ------------------
  |  Branch (7186:9): [True: 4.68k, False: 2.68k]
  ------------------
 7187|  4.68k|        if (nat->range.proto.min) {
  ------------------
  |  Branch (7187:13): [True: 1.14k, False: 3.53k]
  ------------------
 7188|  1.14k|            ovs_be16 *min = ofpbuf_put_uninit(out, sizeof *min);
 7189|  1.14k|            *min = htons(nat->range.proto.min);
 7190|  1.14k|            range_present |= NX_NAT_RANGE_PROTO_MIN;
 7191|  1.14k|        }
 7192|  4.68k|        if (nat->range.proto.max) {
  ------------------
  |  Branch (7192:13): [True: 520, False: 4.16k]
  ------------------
 7193|    520|            ovs_be16 *max = ofpbuf_put_uninit(out, sizeof *max);
 7194|    520|            *max = htons(nat->range.proto.max);
 7195|    520|            range_present |= NX_NAT_RANGE_PROTO_MAX;
 7196|    520|        }
 7197|  4.68k|    }
 7198|  7.36k|    pad_ofpat(out, ofs);
 7199|  7.36k|    nan = ofpbuf_at(out, ofs, sizeof *nan);
 7200|       |    nan->range_present = htons(range_present);
 7201|  7.36k|}
ofp-actions.c:encode_OUTPUT_TRUNC:
 7522|    870|{
 7523|    870|    struct nx_action_output_trunc *natrc = put_NXAST_OUTPUT_TRUNC(out);
 7524|       |
 7525|    870|    natrc->max_len = htonl(output_trunc->max_len);
 7526|       |    natrc->port = htons(ofp_to_u16(output_trunc->port));
 7527|    870|}
ofp-actions.c:encode_CLONE:
 6074|  5.70k|{
 6075|  5.70k|    size_t len;
 6076|  5.70k|    const size_t ofs = out->size;
 6077|  5.70k|    struct ext_action_header *eah;
 6078|       |
 6079|  5.70k|    put_NXAST_CLONE(out);
 6080|  5.70k|    len = ofpacts_put_openflow_actions(clone->actions,
 6081|  5.70k|                                       ofpact_nest_get_action_len(clone),
 6082|  5.70k|                                       out, ofp_version);
 6083|  5.70k|    len += sizeof *eah;
 6084|  5.70k|    eah = ofpbuf_at(out, ofs, sizeof *eah);
 6085|       |    eah->len = htons(len);
 6086|  5.70k|}
ofp-actions.c:encode_CHECK_PKT_LARGER:
 7851|    637|{
 7852|    637|    struct nx_action_check_pkt_larger *ncpl = put_NXAST_CHECK_PKT_LARGER(out);
 7853|    637|    ncpl->pkt_len = htons(check_pkt_larger->pkt_len);
 7854|    637|    ncpl->offset = htons(check_pkt_larger->dst.ofs);
 7855|       |
 7856|    637|    if (check_pkt_larger->dst.field) {
  ------------------
  |  Branch (7856:9): [True: 637, False: 0]
  ------------------
 7857|    637|        size_t size = out->size;
 7858|    637|        out->size = size - sizeof ncpl->pad;
 7859|       |        nx_put_mff_header(out, check_pkt_larger->dst.field, 0, false);
 7860|    637|        out->size = size;
 7861|    637|    }
 7862|    637|}
ofp-actions.c:encode_DEBUG_RECIRC:
 6590|    846|{
 6591|    846|    put_NXAST_DEBUG_RECIRC(out);
 6592|    846|}
ofp-actions.c:encode_DEBUG_SLOW:
 6630|  1.73k|{
 6631|  1.73k|    put_NXAST_DEBUG_SLOW(out);
 6632|  1.73k|}
ofp-actions.c:encode_METER:
 7575|    115|{
 7576|    115|    if (ofp_version == OFP13_VERSION || ofp_version == OFP14_VERSION) {
  ------------------
  |  Branch (7576:9): [True: 111, False: 4]
  |  Branch (7576:41): [True: 0, False: 4]
  ------------------
 7577|    111|        instruction_put_OFPIT13_METER(out)->meter_id = htonl(meter->meter_id);
 7578|    111|    } else if (ofp_version >= OFP15_VERSION) {
  ------------------
  |  Branch (7578:16): [True: 0, False: 4]
  ------------------
 7579|      0|        put_OFPAT15_METER(out, meter->meter_id);
 7580|      0|    }
 7581|    115|}
ofp-actions.c:instruction_put_OFPIT13_METER:
  405|    111|    {                                                           \
  406|    111|        struct STRUCT *s = ofpbuf_put_uninit(buf, sizeof *s);   \
  407|    111|        instruction_init_##ENUM(s);                             \
  408|    111|        return s;                                               \
  409|    111|    }
ofp-actions.c:encode_CLEAR_ACTIONS:
 7612|     10|{
 7613|     10|    if (ofp_version > OFP10_VERSION) {
  ------------------
  |  Branch (7613:9): [True: 5, False: 5]
  ------------------
 7614|      5|        instruction_put_OFPIT11_CLEAR_ACTIONS(out);
 7615|      5|    }
 7616|     10|}
ofp-actions.c:instruction_put_OFPIT11_CLEAR_ACTIONS:
  405|      5|    {                                                           \
  406|      5|        struct STRUCT *s = ofpbuf_put_uninit(buf, sizeof *s);   \
  407|      5|        instruction_init_##ENUM(s);                             \
  408|      5|        return s;                                               \
  409|      5|    }
ofp-actions.c:encode_WRITE_ACTIONS:
 7644|     63|{
 7645|     63|    if (ofp_version > OFP10_VERSION) {
  ------------------
  |  Branch (7645:9): [True: 48, False: 15]
  ------------------
 7646|     48|        const size_t ofs = out->size;
 7647|       |
 7648|     48|        instruction_put_OFPIT11_WRITE_ACTIONS(out);
 7649|     48|        ofpacts_put_openflow_actions(actions->actions,
 7650|     48|                                     ofpact_nest_get_action_len(actions),
 7651|     48|                                     out, ofp_version);
 7652|     48|        ofpacts_update_instruction_actions(out, ofs);
 7653|     48|    }
 7654|     63|}
ofp-actions.c:instruction_put_OFPIT11_WRITE_ACTIONS:
  405|     48|    {                                                           \
  406|     48|        struct STRUCT *s = ofpbuf_put_uninit(buf, sizeof *s);   \
  407|     48|        instruction_init_##ENUM(s);                             \
  408|     48|        return s;                                               \
  409|     48|    }
ofp-actions.c:encode_WRITE_METADATA:
 7740|      8|{
 7741|      8|    if (ofp_version == OFP10_VERSION) {
  ------------------
  |  Branch (7741:9): [True: 4, False: 4]
  ------------------
 7742|      4|        struct nx_action_write_metadata *nawm;
 7743|       |
 7744|      4|        nawm = put_NXAST_WRITE_METADATA(out);
 7745|      4|        nawm->metadata = metadata->metadata;
 7746|      4|        nawm->mask = metadata->mask;
 7747|      4|    } else {
 7748|      4|        struct ofp11_instruction_write_metadata *oiwm;
 7749|       |
 7750|      4|        oiwm = instruction_put_OFPIT11_WRITE_METADATA(out);
 7751|      4|        oiwm->metadata = metadata->metadata;
 7752|      4|        oiwm->metadata_mask = metadata->mask;
 7753|      4|    }
 7754|      8|}
ofp-actions.c:instruction_put_OFPIT11_WRITE_METADATA:
  405|      4|    {                                                           \
  406|      4|        struct STRUCT *s = ofpbuf_put_uninit(buf, sizeof *s);   \
  407|      4|        instruction_init_##ENUM(s);                             \
  408|      4|        return s;                                               \
  409|      4|    }
ofp-actions.c:encode_GOTO_TABLE:
 7921|     10|{
 7922|     10|    if (ofp_version == OFP10_VERSION) {
  ------------------
  |  Branch (7922:9): [True: 7, False: 3]
  ------------------
 7923|      7|        struct nx_action_resubmit *nar;
 7924|       |
 7925|      7|        nar = put_NXAST_RESUBMIT_TABLE(out);
 7926|      7|        nar->table = goto_table->table_id;
 7927|      7|        nar->in_port = htons(ofp_to_u16(OFPP_IN_PORT));
 7928|      7|    } else {
 7929|      3|        struct ofp11_instruction_goto_table *oigt;
 7930|       |
 7931|      3|        oigt = instruction_put_OFPIT11_GOTO_TABLE(out);
 7932|      3|        oigt->table_id = goto_table->table_id;
 7933|      3|        memset(oigt->pad, 0, sizeof oigt->pad);
 7934|      3|    }
 7935|     10|}
ofp-actions.c:instruction_put_OFPIT11_GOTO_TABLE:
  405|      3|    {                                                           \
  406|      3|        struct STRUCT *s = ofpbuf_put_uninit(buf, sizeof *s);   \
  407|      3|        instruction_init_##ENUM(s);                             \
  408|      3|        return s;                                               \
  409|      3|    }
ofp-actions.c:ofpact_is_apply_actions:
 9107|  38.0k|{
 9108|  38.0k|    return (ovs_instruction_type_from_ofpact_type(a->type, version)
 9109|  38.0k|            == OVSINST_OFPIT11_APPLY_ACTIONS);
 9110|  38.0k|}
ofp-actions.c:instruction_put_OFPIT11_APPLY_ACTIONS:
  405|    535|    {                                                           \
  406|    535|        struct STRUCT *s = ofpbuf_put_uninit(buf, sizeof *s);   \
  407|    535|        instruction_init_##ENUM(s);                             \
  408|    535|        return s;                                               \
  409|    535|    }
ofp-actions.c:ofpacts_update_instruction_actions:
 8766|    583|{
 8767|    583|    struct ofp11_instruction_actions *oia;
 8768|       |
 8769|    583|    oia = ofpbuf_at_assert(openflow, ofs, sizeof *oia);
 8770|    583|    if (openflow->size > ofs + sizeof *oia) {
  ------------------
  |  Branch (8770:9): [True: 578, False: 5]
  ------------------
 8771|    578|        oia->len = htons(openflow->size - ofs);
 8772|    578|    } else {
 8773|      5|        openflow->size = ofs;
 8774|      5|    }
 8775|    583|}
ofp-actions.c:ofpacts_parse_copy:
 9676|  25.6k|{
 9677|  25.6k|    char *error, *s;
 9678|       |
 9679|  25.6k|    *pp->usable_protocols = OFPUTIL_P_ANY;
  ------------------
  |  |  100|  25.6k|#define OFPUTIL_P_ANY ((1 << 9) - 1)
  ------------------
 9680|       |
 9681|  25.6k|    s = xstrdup(s_);
 9682|  25.6k|    error = ofpacts_parse(s, pp, allow_instructions, outer_action);
 9683|  25.6k|    free(s);
 9684|       |
 9685|  25.6k|    return error;
 9686|  25.6k|}
ofp-actions.c:ofpacts_parse:
 9659|  26.7k|{
 9660|  26.7k|    if (pp->depth >= MAX_OFPACT_PARSE_DEPTH) {
  ------------------
  |  | 1221|  26.7k|#define MAX_OFPACT_PARSE_DEPTH 100
  ------------------
  |  Branch (9660:9): [True: 4, False: 26.7k]
  ------------------
 9661|      4|        return xstrdup("Action nested too deeply");
 9662|      4|    }
 9663|  26.7k|    CONST_CAST(struct ofpact_parse_params *, pp)->depth++;
  ------------------
  |  |   85|  26.7k|    (BUILD_ASSERT_TYPE(POINTER, TYPE),                          \
  |  |  ------------------
  |  |  |  |   80|  26.7k|    ((void) sizeof ((int) ((POINTER) == (TYPE) (POINTER))))
  |  |  ------------------
  |  |   86|  26.7k|     (TYPE) (POINTER))
  ------------------
 9664|  26.7k|    uint32_t orig_size = pp->ofpacts->size;
 9665|  26.7k|    char *error = ofpacts_parse__(str, pp, allow_instructions, outer_action);
 9666|  26.7k|    if (error) {
  ------------------
  |  Branch (9666:9): [True: 10.4k, False: 16.3k]
  ------------------
 9667|  10.4k|        ofpbuf_truncate(pp->ofpacts, orig_size);
 9668|  10.4k|    }
 9669|  26.7k|    CONST_CAST(struct ofpact_parse_params *, pp)->depth--;
  ------------------
  |  |   85|  26.7k|    (BUILD_ASSERT_TYPE(POINTER, TYPE),                          \
  |  |  ------------------
  |  |  |  |   80|  26.7k|    ((void) sizeof ((int) ((POINTER) == (TYPE) (POINTER))))
  |  |  ------------------
  |  |   86|  26.7k|     (TYPE) (POINTER))
  ------------------
 9670|  26.7k|    return error;
 9671|  26.7k|}
ofp-actions.c:ofpacts_parse__:
 9586|  26.7k|{
 9587|  26.7k|    uint32_t orig_size = pp->ofpacts->size;
 9588|  26.7k|    char *key, *value;
 9589|  26.7k|    bool drop = false;
 9590|  26.7k|    char *pos;
 9591|       |
 9592|  26.7k|    pos = str;
 9593|   404k|    while (ofputil_parse_key_value(&pos, &key, &value)) {
  ------------------
  |  Branch (9593:12): [True: 388k, False: 16.5k]
  ------------------
 9594|   388k|        enum ofpact_type type;
 9595|   388k|        char *error = NULL;
 9596|   388k|        ofp_port_t port;
 9597|   388k|        if (ofpact_type_from_name(key, &type)) {
  ------------------
  |  Branch (9597:13): [True: 212k, False: 175k]
  ------------------
 9598|   212k|            error = ofpact_parse(type, value, pp);
 9599|       |
 9600|   212k|            if (type == OFPACT_METER && !allow_instructions) {
  ------------------
  |  Branch (9600:17): [True: 566, False: 211k]
  |  Branch (9600:41): [True: 195, False: 371]
  ------------------
 9601|       |                /* Meter is an action in OF1.5 and it's being used in a
 9602|       |                 * context where instructions aren't allowed.  Therefore,
 9603|       |                 * this must be OF1.5+. */
 9604|    195|                *pp->usable_protocols &= OFPUTIL_P_OF15_UP;
  ------------------
  |  |   97|    195|#define OFPUTIL_P_OF15_UP OFPUTIL_P_OF15_OXM
  ------------------
 9605|    195|            }
 9606|   212k|        } else if (!strcasecmp(key, "mod_vlan_vid")) {
  ------------------
  |  Branch (9606:20): [True: 988, False: 174k]
  ------------------
 9607|    988|            error = parse_set_vlan_vid(value, true, pp);
 9608|   174k|        } else if (!strcasecmp(key, "mod_vlan_pcp")) {
  ------------------
  |  Branch (9608:20): [True: 871, False: 174k]
  ------------------
 9609|    871|            error = parse_set_vlan_pcp(value, true, pp);
 9610|   174k|        } else if (!strcasecmp(key, "set_nw_ttl")) {
  ------------------
  |  Branch (9610:20): [True: 1.09k, False: 172k]
  ------------------
 9611|  1.09k|            error = parse_SET_IP_TTL(value, pp);
 9612|   172k|        } else if (!strcasecmp(key, "pop_vlan")) {
  ------------------
  |  Branch (9612:20): [True: 2.95k, False: 169k]
  ------------------
 9613|  2.95k|            error = parse_pop_vlan(pp);
 9614|   169k|        } else if (!strcasecmp(key, "set_tunnel64")) {
  ------------------
  |  Branch (9614:20): [True: 1.06k, False: 168k]
  ------------------
 9615|  1.06k|            error = parse_set_tunnel(value, NXAST_RAW_SET_TUNNEL64, pp);
 9616|   168k|        } else if (!strcasecmp(key, "load")) {
  ------------------
  |  Branch (9616:20): [True: 637, False: 168k]
  ------------------
 9617|    637|            error = parse_reg_load(value, pp);
 9618|   168k|        } else if (!strcasecmp(key, "bundle_load")) {
  ------------------
  |  Branch (9618:20): [True: 10, False: 168k]
  ------------------
 9619|     10|            error = parse_bundle_load(value, pp);
 9620|   168k|        } else if (!strcasecmp(key, "drop")) {
  ------------------
  |  Branch (9620:20): [True: 676, False: 167k]
  ------------------
 9621|    676|            drop = true;
 9622|   167k|        } else if (!strcasecmp(key, "apply_actions")) {
  ------------------
  |  Branch (9622:20): [True: 1, False: 167k]
  ------------------
 9623|      1|            return xstrdup("apply_actions is the default instruction");
 9624|   167k|        } else if (ofputil_port_from_string(key, pp->port_map, &port)) {
  ------------------
  |  Branch (9624:20): [True: 164k, False: 3.57k]
  ------------------
 9625|   164k|            ofpact_put_OUTPUT(pp->ofpacts)->port = port;
 9626|   164k|        } else {
 9627|  3.57k|            return xasprintf("unknown action %s", key);
 9628|  3.57k|        }
 9629|   384k|        if (error) {
  ------------------
  |  Branch (9629:13): [True: 6.65k, False: 377k]
  ------------------
 9630|  6.65k|            return error;
 9631|  6.65k|        }
 9632|   377k|        if (pp->ofpacts->size - orig_size > UINT16_MAX) {
  ------------------
  |  Branch (9632:13): [True: 19, False: 377k]
  ------------------
 9633|     19|            return xasprintf("input too big");
 9634|     19|        }
 9635|   377k|    }
 9636|       |
 9637|  16.5k|    if (drop && pp->ofpacts->size) {
  ------------------
  |  Branch (9637:9): [True: 377, False: 16.1k]
  |  Branch (9637:17): [True: 16, False: 361]
  ------------------
 9638|     16|        return xstrdup("\"drop\" must not be accompanied by any other action "
 9639|     16|                       "or instruction");
 9640|     16|    }
 9641|       |
 9642|  16.5k|    char *error = NULL;
 9643|  16.5k|    ofpacts_verify(pp->ofpacts->data, pp->ofpacts->size, OFP11_VERSION,
 9644|  16.5k|                   (allow_instructions
  ------------------
  |  Branch (9644:21): [True: 6.40k, False: 10.1k]
  ------------------
 9645|  16.5k|                    ? (1u << N_OVS_INSTRUCTIONS) - 1
 9646|  16.5k|                    : ((1u << OVSINST_OFPIT11_APPLY_ACTIONS)
 9647|  10.1k|                       | (1u << OVSINST_OFPIT13_METER))),
 9648|  16.5k|                   outer_action, &error);
 9649|  16.5k|    if (error) {
  ------------------
  |  Branch (9649:9): [True: 175, False: 16.3k]
  ------------------
 9650|    175|        return error;
 9651|    175|    }
 9652|       |
 9653|  16.3k|    return NULL;
 9654|  16.5k|}
ofp-actions.c:ofpact_type_from_name:
 9564|   388k|{
 9565|   388k|#define OFPACT(ENUM, STRUCT, MEMBER, NAME)                            \
 9566|   388k|    if (!strcasecmp(name, NAME)) {                                    \
 9567|   388k|        *type = OFPACT_##ENUM;                                          \
 9568|   388k|        return true;                                                    \
 9569|   388k|    }
 9570|   388k|    OFPACTS
  ------------------
  |  |   64|   388k|    OFPACT(OUTPUT,          ofpact_output,      ofpact, "output")       \
  |  |  ------------------
  |  |  |  | 9566|   388k|    if (!strcasecmp(name, NAME)) {                                    \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (9566:9): [True: 2.25k, False: 385k]
  |  |  |  |  ------------------
  |  |  |  | 9567|  2.25k|        *type = OFPACT_##ENUM;                                          \
  |  |  |  | 9568|  2.25k|        return true;                                                    \
  |  |  |  | 9569|  2.25k|    }
  |  |  ------------------
  |  |   65|   388k|    OFPACT(GROUP,           ofpact_group,       ofpact, "group")        \
  |  |  ------------------
  |  |  |  | 9566|   385k|    if (!strcasecmp(name, NAME)) {                                    \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (9566:9): [True: 223, False: 385k]
  |  |  |  |  ------------------
  |  |  |  | 9567|    223|        *type = OFPACT_##ENUM;                                          \
  |  |  |  | 9568|    223|        return true;                                                    \
  |  |  |  | 9569|    223|    }
  |  |  ------------------
  |  |   66|   385k|    OFPACT(CONTROLLER,      ofpact_controller,  userdata, "controller") \
  |  |  ------------------
  |  |  |  | 9566|   385k|    if (!strcasecmp(name, NAME)) {                                    \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (9566:9): [True: 10.5k, False: 374k]
  |  |  |  |  ------------------
  |  |  |  | 9567|  10.5k|        *type = OFPACT_##ENUM;                                          \
  |  |  |  | 9568|  10.5k|        return true;                                                    \
  |  |  |  | 9569|  10.5k|    }
  |  |  ------------------
  |  |   67|   385k|    OFPACT(ENQUEUE,         ofpact_enqueue,     ofpact, "enqueue")      \
  |  |  ------------------
  |  |  |  | 9566|   374k|    if (!strcasecmp(name, NAME)) {                                    \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (9566:9): [True: 1.04k, False: 373k]
  |  |  |  |  ------------------
  |  |  |  | 9567|  1.04k|        *type = OFPACT_##ENUM;                                          \
  |  |  |  | 9568|  1.04k|        return true;                                                    \
  |  |  |  | 9569|  1.04k|    }
  |  |  ------------------
  |  |   68|   374k|    OFPACT(OUTPUT_REG,      ofpact_output_reg,  ofpact, "output_reg")   \
  |  |  ------------------
  |  |  |  | 9566|   373k|    if (!strcasecmp(name, NAME)) {                                    \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (9566:9): [True: 369, False: 373k]
  |  |  |  |  ------------------
  |  |  |  | 9567|    369|        *type = OFPACT_##ENUM;                                          \
  |  |  |  | 9568|    369|        return true;                                                    \
  |  |  |  | 9569|    369|    }
  |  |  ------------------
  |  |   69|   373k|    OFPACT(BUNDLE,          ofpact_bundle,      members, "bundle")      \
  |  |  ------------------
  |  |  |  | 9566|   373k|    if (!strcasecmp(name, NAME)) {                                    \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (9566:9): [True: 2.19k, False: 371k]
  |  |  |  |  ------------------
  |  |  |  | 9567|  2.19k|        *type = OFPACT_##ENUM;                                          \
  |  |  |  | 9568|  2.19k|        return true;                                                    \
  |  |  |  | 9569|  2.19k|    }
  |  |  ------------------
  |  |   70|   373k|                                                                        \
  |  |   71|   373k|    /* Header changes. */                                               \
  |  |   72|   373k|    OFPACT(SET_FIELD,       ofpact_set_field,   ofpact, "set_field")    \
  |  |  ------------------
  |  |  |  | 9566|   371k|    if (!strcasecmp(name, NAME)) {                                    \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (9566:9): [True: 47.6k, False: 323k]
  |  |  |  |  ------------------
  |  |  |  | 9567|  47.6k|        *type = OFPACT_##ENUM;                                          \
  |  |  |  | 9568|  47.6k|        return true;                                                    \
  |  |  |  | 9569|  47.6k|    }
  |  |  ------------------
  |  |   73|   371k|    OFPACT(SET_VLAN_VID,    ofpact_vlan_vid,    ofpact, "set_vlan_vid") \
  |  |  ------------------
  |  |  |  | 9566|   323k|    if (!strcasecmp(name, NAME)) {                                    \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (9566:9): [True: 1.10k, False: 322k]
  |  |  |  |  ------------------
  |  |  |  | 9567|  1.10k|        *type = OFPACT_##ENUM;                                          \
  |  |  |  | 9568|  1.10k|        return true;                                                    \
  |  |  |  | 9569|  1.10k|    }
  |  |  ------------------
  |  |   74|   323k|    OFPACT(SET_VLAN_PCP,    ofpact_vlan_pcp,    ofpact, "set_vlan_pcp") \
  |  |  ------------------
  |  |  |  | 9566|   322k|    if (!strcasecmp(name, NAME)) {                                    \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (9566:9): [True: 1.50k, False: 321k]
  |  |  |  |  ------------------
  |  |  |  | 9567|  1.50k|        *type = OFPACT_##ENUM;                                          \
  |  |  |  | 9568|  1.50k|        return true;                                                    \
  |  |  |  | 9569|  1.50k|    }
  |  |  ------------------
  |  |   75|   322k|    OFPACT(STRIP_VLAN,      ofpact_null,        ofpact, "strip_vlan")   \
  |  |  ------------------
  |  |  |  | 9566|   321k|    if (!strcasecmp(name, NAME)) {                                    \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (9566:9): [True: 753, False: 320k]
  |  |  |  |  ------------------
  |  |  |  | 9567|    753|        *type = OFPACT_##ENUM;                                          \
  |  |  |  | 9568|    753|        return true;                                                    \
  |  |  |  | 9569|    753|    }
  |  |  ------------------
  |  |   76|   321k|    OFPACT(PUSH_VLAN,       ofpact_push_vlan,   ofpact, "push_vlan")    \
  |  |  ------------------
  |  |  |  | 9566|   320k|    if (!strcasecmp(name, NAME)) {                                    \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (9566:9): [True: 1.91k, False: 318k]
  |  |  |  |  ------------------
  |  |  |  | 9567|  1.91k|        *type = OFPACT_##ENUM;                                          \
  |  |  |  | 9568|  1.91k|        return true;                                                    \
  |  |  |  | 9569|  1.91k|    }
  |  |  ------------------
  |  |   77|   320k|    OFPACT(SET_ETH_SRC,     ofpact_mac,         ofpact, "mod_dl_src")   \
  |  |  ------------------
  |  |  |  | 9566|   318k|    if (!strcasecmp(name, NAME)) {                                    \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (9566:9): [True: 498, False: 317k]
  |  |  |  |  ------------------
  |  |  |  | 9567|    498|        *type = OFPACT_##ENUM;                                          \
  |  |  |  | 9568|    498|        return true;                                                    \
  |  |  |  | 9569|    498|    }
  |  |  ------------------
  |  |   78|   318k|    OFPACT(SET_ETH_DST,     ofpact_mac,         ofpact, "mod_dl_dst")   \
  |  |  ------------------
  |  |  |  | 9566|   317k|    if (!strcasecmp(name, NAME)) {                                    \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (9566:9): [True: 995, False: 316k]
  |  |  |  |  ------------------
  |  |  |  | 9567|    995|        *type = OFPACT_##ENUM;                                          \
  |  |  |  | 9568|    995|        return true;                                                    \
  |  |  |  | 9569|    995|    }
  |  |  ------------------
  |  |   79|   317k|    OFPACT(SET_IPV4_SRC,    ofpact_ipv4,        ofpact, "mod_nw_src")   \
  |  |  ------------------
  |  |  |  | 9566|   316k|    if (!strcasecmp(name, NAME)) {                                    \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (9566:9): [True: 2.33k, False: 314k]
  |  |  |  |  ------------------
  |  |  |  | 9567|  2.33k|        *type = OFPACT_##ENUM;                                          \
  |  |  |  | 9568|  2.33k|        return true;                                                    \
  |  |  |  | 9569|  2.33k|    }
  |  |  ------------------
  |  |   80|   316k|    OFPACT(SET_IPV4_DST,    ofpact_ipv4,        ofpact, "mod_nw_dst")   \
  |  |  ------------------
  |  |  |  | 9566|   314k|    if (!strcasecmp(name, NAME)) {                                    \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (9566:9): [True: 941, False: 313k]
  |  |  |  |  ------------------
  |  |  |  | 9567|    941|        *type = OFPACT_##ENUM;                                          \
  |  |  |  | 9568|    941|        return true;                                                    \
  |  |  |  | 9569|    941|    }
  |  |  ------------------
  |  |   81|   314k|    OFPACT(SET_IP_DSCP,     ofpact_dscp,        ofpact, "mod_nw_tos")   \
  |  |  ------------------
  |  |  |  | 9566|   313k|    if (!strcasecmp(name, NAME)) {                                    \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (9566:9): [True: 1.86k, False: 311k]
  |  |  |  |  ------------------
  |  |  |  | 9567|  1.86k|        *type = OFPACT_##ENUM;                                          \
  |  |  |  | 9568|  1.86k|        return true;                                                    \
  |  |  |  | 9569|  1.86k|    }
  |  |  ------------------
  |  |   82|   313k|    OFPACT(SET_IP_ECN,      ofpact_ecn,         ofpact, "mod_nw_ecn")   \
  |  |  ------------------
  |  |  |  | 9566|   311k|    if (!strcasecmp(name, NAME)) {                                    \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (9566:9): [True: 1.21k, False: 310k]
  |  |  |  |  ------------------
  |  |  |  | 9567|  1.21k|        *type = OFPACT_##ENUM;                                          \
  |  |  |  | 9568|  1.21k|        return true;                                                    \
  |  |  |  | 9569|  1.21k|    }
  |  |  ------------------
  |  |   83|   311k|    OFPACT(SET_IP_TTL,      ofpact_ip_ttl,      ofpact, "mod_nw_ttl")   \
  |  |  ------------------
  |  |  |  | 9566|   310k|    if (!strcasecmp(name, NAME)) {                                    \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (9566:9): [True: 1.56k, False: 309k]
  |  |  |  |  ------------------
  |  |  |  | 9567|  1.56k|        *type = OFPACT_##ENUM;                                          \
  |  |  |  | 9568|  1.56k|        return true;                                                    \
  |  |  |  | 9569|  1.56k|    }
  |  |  ------------------
  |  |   84|   310k|    OFPACT(SET_L4_SRC_PORT, ofpact_l4_port,     ofpact, "mod_tp_src")   \
  |  |  ------------------
  |  |  |  | 9566|   309k|    if (!strcasecmp(name, NAME)) {                                    \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (9566:9): [True: 3.73k, False: 305k]
  |  |  |  |  ------------------
  |  |  |  | 9567|  3.73k|        *type = OFPACT_##ENUM;                                          \
  |  |  |  | 9568|  3.73k|        return true;                                                    \
  |  |  |  | 9569|  3.73k|    }
  |  |  ------------------
  |  |   85|   309k|    OFPACT(SET_L4_DST_PORT, ofpact_l4_port,     ofpact, "mod_tp_dst")   \
  |  |  ------------------
  |  |  |  | 9566|   305k|    if (!strcasecmp(name, NAME)) {                                    \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (9566:9): [True: 1.90k, False: 303k]
  |  |  |  |  ------------------
  |  |  |  | 9567|  1.90k|        *type = OFPACT_##ENUM;                                          \
  |  |  |  | 9568|  1.90k|        return true;                                                    \
  |  |  |  | 9569|  1.90k|    }
  |  |  ------------------
  |  |   86|   305k|    OFPACT(REG_MOVE,        ofpact_reg_move,    ofpact, "move")         \
  |  |  ------------------
  |  |  |  | 9566|   303k|    if (!strcasecmp(name, NAME)) {                                    \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (9566:9): [True: 482, False: 302k]
  |  |  |  |  ------------------
  |  |  |  | 9567|    482|        *type = OFPACT_##ENUM;                                          \
  |  |  |  | 9568|    482|        return true;                                                    \
  |  |  |  | 9569|    482|    }
  |  |  ------------------
  |  |   87|   303k|    OFPACT(STACK_PUSH,      ofpact_stack,       ofpact, "push")         \
  |  |  ------------------
  |  |  |  | 9566|   302k|    if (!strcasecmp(name, NAME)) {                                    \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (9566:9): [True: 382, False: 302k]
  |  |  |  |  ------------------
  |  |  |  | 9567|    382|        *type = OFPACT_##ENUM;                                          \
  |  |  |  | 9568|    382|        return true;                                                    \
  |  |  |  | 9569|    382|    }
  |  |  ------------------
  |  |   88|   302k|    OFPACT(STACK_POP,       ofpact_stack,       ofpact, "pop")          \
  |  |  ------------------
  |  |  |  | 9566|   302k|    if (!strcasecmp(name, NAME)) {                                    \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (9566:9): [True: 2.08k, False: 300k]
  |  |  |  |  ------------------
  |  |  |  | 9567|  2.08k|        *type = OFPACT_##ENUM;                                          \
  |  |  |  | 9568|  2.08k|        return true;                                                    \
  |  |  |  | 9569|  2.08k|    }
  |  |  ------------------
  |  |   89|   302k|    OFPACT(DEC_TTL,         ofpact_cnt_ids,     cnt_ids, "dec_ttl")     \
  |  |  ------------------
  |  |  |  | 9566|   300k|    if (!strcasecmp(name, NAME)) {                                    \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (9566:9): [True: 4.53k, False: 295k]
  |  |  |  |  ------------------
  |  |  |  | 9567|  4.53k|        *type = OFPACT_##ENUM;                                          \
  |  |  |  | 9568|  4.53k|        return true;                                                    \
  |  |  |  | 9569|  4.53k|    }
  |  |  ------------------
  |  |   90|   300k|    OFPACT(SET_MPLS_LABEL,  ofpact_mpls_label,  ofpact, "set_mpls_label") \
  |  |  ------------------
  |  |  |  | 9566|   295k|    if (!strcasecmp(name, NAME)) {                                    \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (9566:9): [True: 2.37k, False: 293k]
  |  |  |  |  ------------------
  |  |  |  | 9567|  2.37k|        *type = OFPACT_##ENUM;                                          \
  |  |  |  | 9568|  2.37k|        return true;                                                    \
  |  |  |  | 9569|  2.37k|    }
  |  |  ------------------
  |  |   91|   295k|    OFPACT(SET_MPLS_TC,     ofpact_mpls_tc,     ofpact, "set_mpls_tc")  \
  |  |  ------------------
  |  |  |  | 9566|   293k|    if (!strcasecmp(name, NAME)) {                                    \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (9566:9): [True: 2.36k, False: 291k]
  |  |  |  |  ------------------
  |  |  |  | 9567|  2.36k|        *type = OFPACT_##ENUM;                                          \
  |  |  |  | 9568|  2.36k|        return true;                                                    \
  |  |  |  | 9569|  2.36k|    }
  |  |  ------------------
  |  |   92|   293k|    OFPACT(SET_MPLS_TTL,    ofpact_mpls_ttl,    ofpact, "set_mpls_ttl") \
  |  |  ------------------
  |  |  |  | 9566|   291k|    if (!strcasecmp(name, NAME)) {                                    \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (9566:9): [True: 1.53k, False: 289k]
  |  |  |  |  ------------------
  |  |  |  | 9567|  1.53k|        *type = OFPACT_##ENUM;                                          \
  |  |  |  | 9568|  1.53k|        return true;                                                    \
  |  |  |  | 9569|  1.53k|    }
  |  |  ------------------
  |  |   93|   291k|    OFPACT(DEC_MPLS_TTL,    ofpact_null,        ofpact, "dec_mpls_ttl") \
  |  |  ------------------
  |  |  |  | 9566|   289k|    if (!strcasecmp(name, NAME)) {                                    \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (9566:9): [True: 2.25k, False: 287k]
  |  |  |  |  ------------------
  |  |  |  | 9567|  2.25k|        *type = OFPACT_##ENUM;                                          \
  |  |  |  | 9568|  2.25k|        return true;                                                    \
  |  |  |  | 9569|  2.25k|    }
  |  |  ------------------
  |  |   94|   289k|    OFPACT(PUSH_MPLS,       ofpact_push_mpls,   ofpact, "push_mpls")    \
  |  |  ------------------
  |  |  |  | 9566|   287k|    if (!strcasecmp(name, NAME)) {                                    \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (9566:9): [True: 758, False: 286k]
  |  |  |  |  ------------------
  |  |  |  | 9567|    758|        *type = OFPACT_##ENUM;                                          \
  |  |  |  | 9568|    758|        return true;                                                    \
  |  |  |  | 9569|    758|    }
  |  |  ------------------
  |  |   95|   287k|    OFPACT(POP_MPLS,        ofpact_pop_mpls,    ofpact, "pop_mpls")     \
  |  |  ------------------
  |  |  |  | 9566|   286k|    if (!strcasecmp(name, NAME)) {                                    \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (9566:9): [True: 1.33k, False: 285k]
  |  |  |  |  ------------------
  |  |  |  | 9567|  1.33k|        *type = OFPACT_##ENUM;                                          \
  |  |  |  | 9568|  1.33k|        return true;                                                    \
  |  |  |  | 9569|  1.33k|    }
  |  |  ------------------
  |  |   96|   286k|    OFPACT(DEC_NSH_TTL,     ofpact_null,        ofpact, "dec_nsh_ttl")  \
  |  |  ------------------
  |  |  |  | 9566|   285k|    if (!strcasecmp(name, NAME)) {                                    \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (9566:9): [True: 1.39k, False: 283k]
  |  |  |  |  ------------------
  |  |  |  | 9567|  1.39k|        *type = OFPACT_##ENUM;                                          \
  |  |  |  | 9568|  1.39k|        return true;                                                    \
  |  |  |  | 9569|  1.39k|    }
  |  |  ------------------
  |  |   97|   285k|    OFPACT(DELETE_FIELD,    ofpact_delete_field, ofpact, "delete_field") \
  |  |  ------------------
  |  |  |  | 9566|   283k|    if (!strcasecmp(name, NAME)) {                                    \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (9566:9): [True: 429, False: 283k]
  |  |  |  |  ------------------
  |  |  |  | 9567|    429|        *type = OFPACT_##ENUM;                                          \
  |  |  |  | 9568|    429|        return true;                                                    \
  |  |  |  | 9569|    429|    }
  |  |  ------------------
  |  |   98|   283k|                                                                        \
  |  |   99|   283k|    /* Generic encap & decap */                                         \
  |  |  100|   283k|    OFPACT(ENCAP,           ofpact_encap,       props, "encap")         \
  |  |  ------------------
  |  |  |  | 9566|   283k|    if (!strcasecmp(name, NAME)) {                                    \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (9566:9): [True: 2.77k, False: 280k]
  |  |  |  |  ------------------
  |  |  |  | 9567|  2.77k|        *type = OFPACT_##ENUM;                                          \
  |  |  |  | 9568|  2.77k|        return true;                                                    \
  |  |  |  | 9569|  2.77k|    }
  |  |  ------------------
  |  |  101|   283k|    OFPACT(DECAP,           ofpact_decap,       ofpact, "decap")        \
  |  |  ------------------
  |  |  |  | 9566|   280k|    if (!strcasecmp(name, NAME)) {                                    \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (9566:9): [True: 3.12k, False: 277k]
  |  |  |  |  ------------------
  |  |  |  | 9567|  3.12k|        *type = OFPACT_##ENUM;                                          \
  |  |  |  | 9568|  3.12k|        return true;                                                    \
  |  |  |  | 9569|  3.12k|    }
  |  |  ------------------
  |  |  102|   280k|                                                                        \
  |  |  103|   280k|    /* Metadata. */                                                     \
  |  |  104|   280k|    OFPACT(SET_TUNNEL,      ofpact_tunnel,      ofpact, "set_tunnel")   \
  |  |  ------------------
  |  |  |  | 9566|   277k|    if (!strcasecmp(name, NAME)) {                                    \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (9566:9): [True: 751, False: 276k]
  |  |  |  |  ------------------
  |  |  |  | 9567|    751|        *type = OFPACT_##ENUM;                                          \
  |  |  |  | 9568|    751|        return true;                                                    \
  |  |  |  | 9569|    751|    }
  |  |  ------------------
  |  |  105|   277k|    OFPACT(SET_QUEUE,       ofpact_queue,       ofpact, "set_queue")    \
  |  |  ------------------
  |  |  |  | 9566|   276k|    if (!strcasecmp(name, NAME)) {                                    \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (9566:9): [True: 274, False: 276k]
  |  |  |  |  ------------------
  |  |  |  | 9567|    274|        *type = OFPACT_##ENUM;                                          \
  |  |  |  | 9568|    274|        return true;                                                    \
  |  |  |  | 9569|    274|    }
  |  |  ------------------
  |  |  106|   276k|    OFPACT(POP_QUEUE,       ofpact_null,        ofpact, "pop_queue")    \
  |  |  ------------------
  |  |  |  | 9566|   276k|    if (!strcasecmp(name, NAME)) {                                    \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (9566:9): [True: 730, False: 275k]
  |  |  |  |  ------------------
  |  |  |  | 9567|    730|        *type = OFPACT_##ENUM;                                          \
  |  |  |  | 9568|    730|        return true;                                                    \
  |  |  |  | 9569|    730|    }
  |  |  ------------------
  |  |  107|   276k|    OFPACT(FIN_TIMEOUT,     ofpact_fin_timeout, ofpact, "fin_timeout")  \
  |  |  ------------------
  |  |  |  | 9566|   275k|    if (!strcasecmp(name, NAME)) {                                    \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (9566:9): [True: 1.37k, False: 274k]
  |  |  |  |  ------------------
  |  |  |  | 9567|  1.37k|        *type = OFPACT_##ENUM;                                          \
  |  |  |  | 9568|  1.37k|        return true;                                                    \
  |  |  |  | 9569|  1.37k|    }
  |  |  ------------------
  |  |  108|   275k|                                                                        \
  |  |  109|   275k|    /* Flow table interaction. */                                       \
  |  |  110|   275k|    OFPACT(RESUBMIT,        ofpact_resubmit,    ofpact, "resubmit")     \
  |  |  ------------------
  |  |  |  | 9566|   274k|    if (!strcasecmp(name, NAME)) {                                    \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (9566:9): [True: 2.97k, False: 271k]
  |  |  |  |  ------------------
  |  |  |  | 9567|  2.97k|        *type = OFPACT_##ENUM;                                          \
  |  |  |  | 9568|  2.97k|        return true;                                                    \
  |  |  |  | 9569|  2.97k|    }
  |  |  ------------------
  |  |  111|   274k|    OFPACT(LEARN,           ofpact_learn,       specs, "learn")         \
  |  |  ------------------
  |  |  |  | 9566|   271k|    if (!strcasecmp(name, NAME)) {                                    \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (9566:9): [True: 36.2k, False: 235k]
  |  |  |  |  ------------------
  |  |  |  | 9567|  36.2k|        *type = OFPACT_##ENUM;                                          \
  |  |  |  | 9568|  36.2k|        return true;                                                    \
  |  |  |  | 9569|  36.2k|    }
  |  |  ------------------
  |  |  112|   271k|    OFPACT(CONJUNCTION,     ofpact_conjunction, ofpact, "conjunction")  \
  |  |  ------------------
  |  |  |  | 9566|   235k|    if (!strcasecmp(name, NAME)) {                                    \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (9566:9): [True: 568, False: 234k]
  |  |  |  |  ------------------
  |  |  |  | 9567|    568|        *type = OFPACT_##ENUM;                                          \
  |  |  |  | 9568|    568|        return true;                                                    \
  |  |  |  | 9569|    568|    }
  |  |  ------------------
  |  |  113|   235k|                                                                        \
  |  |  114|   235k|    /* Arithmetic. */                                                   \
  |  |  115|   235k|    OFPACT(MULTIPATH,       ofpact_multipath,   ofpact, "multipath")    \
  |  |  ------------------
  |  |  |  | 9566|   234k|    if (!strcasecmp(name, NAME)) {                                    \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (9566:9): [True: 2.45k, False: 232k]
  |  |  |  |  ------------------
  |  |  |  | 9567|  2.45k|        *type = OFPACT_##ENUM;                                          \
  |  |  |  | 9568|  2.45k|        return true;                                                    \
  |  |  |  | 9569|  2.45k|    }
  |  |  ------------------
  |  |  116|   234k|                                                                        \
  |  |  117|   234k|    /* Other. */                                                        \
  |  |  118|   234k|    OFPACT(NOTE,            ofpact_note,        data, "note")           \
  |  |  ------------------
  |  |  |  | 9566|   232k|    if (!strcasecmp(name, NAME)) {                                    \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (9566:9): [True: 2.02k, False: 230k]
  |  |  |  |  ------------------
  |  |  |  | 9567|  2.02k|        *type = OFPACT_##ENUM;                                          \
  |  |  |  | 9568|  2.02k|        return true;                                                    \
  |  |  |  | 9569|  2.02k|    }
  |  |  ------------------
  |  |  119|   232k|    OFPACT(EXIT,            ofpact_null,        ofpact, "exit")         \
  |  |  ------------------
  |  |  |  | 9566|   230k|    if (!strcasecmp(name, NAME)) {                                    \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (9566:9): [True: 2.21k, False: 227k]
  |  |  |  |  ------------------
  |  |  |  | 9567|  2.21k|        *type = OFPACT_##ENUM;                                          \
  |  |  |  | 9568|  2.21k|        return true;                                                    \
  |  |  |  | 9569|  2.21k|    }
  |  |  ------------------
  |  |  120|   230k|    OFPACT(SAMPLE,          ofpact_sample,      ofpact, "sample")       \
  |  |  ------------------
  |  |  |  | 9566|   227k|    if (!strcasecmp(name, NAME)) {                                    \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (9566:9): [True: 2.20k, False: 225k]
  |  |  |  |  ------------------
  |  |  |  | 9567|  2.20k|        *type = OFPACT_##ENUM;                                          \
  |  |  |  | 9568|  2.20k|        return true;                                                    \
  |  |  |  | 9569|  2.20k|    }
  |  |  ------------------
  |  |  121|   227k|    OFPACT(UNROLL_XLATE,    ofpact_unroll_xlate, ofpact, "unroll_xlate") \
  |  |  ------------------
  |  |  |  | 9566|   225k|    if (!strcasecmp(name, NAME)) {                                    \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (9566:9): [True: 1, False: 225k]
  |  |  |  |  ------------------
  |  |  |  | 9567|      1|        *type = OFPACT_##ENUM;                                          \
  |  |  |  | 9568|      1|        return true;                                                    \
  |  |  |  | 9569|      1|    }
  |  |  ------------------
  |  |  122|   225k|    OFPACT(CT,              ofpact_conntrack,   ofpact, "ct")           \
  |  |  ------------------
  |  |  |  | 9566|   225k|    if (!strcasecmp(name, NAME)) {                                    \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (9566:9): [True: 20.8k, False: 204k]
  |  |  |  |  ------------------
  |  |  |  | 9567|  20.8k|        *type = OFPACT_##ENUM;                                          \
  |  |  |  | 9568|  20.8k|        return true;                                                    \
  |  |  |  | 9569|  20.8k|    }
  |  |  ------------------
  |  |  123|   225k|    OFPACT(CT_CLEAR,        ofpact_null,        ofpact, "ct_clear")     \
  |  |  ------------------
  |  |  |  | 9566|   204k|    if (!strcasecmp(name, NAME)) {                                    \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (9566:9): [True: 1.69k, False: 203k]
  |  |  |  |  ------------------
  |  |  |  | 9567|  1.69k|        *type = OFPACT_##ENUM;                                          \
  |  |  |  | 9568|  1.69k|        return true;                                                    \
  |  |  |  | 9569|  1.69k|    }
  |  |  ------------------
  |  |  124|   204k|    OFPACT(NAT,             ofpact_nat,         ofpact, "nat")          \
  |  |  ------------------
  |  |  |  | 9566|   203k|    if (!strcasecmp(name, NAME)) {                                    \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (9566:9): [True: 10.3k, False: 192k]
  |  |  |  |  ------------------
  |  |  |  | 9567|  10.3k|        *type = OFPACT_##ENUM;                                          \
  |  |  |  | 9568|  10.3k|        return true;                                                    \
  |  |  |  | 9569|  10.3k|    }
  |  |  ------------------
  |  |  125|   203k|    OFPACT(OUTPUT_TRUNC,    ofpact_output_trunc,ofpact, "output_trunc") \
  |  |  ------------------
  |  |  |  | 9566|   192k|    if (!strcasecmp(name, NAME)) {                                    \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (9566:9): [True: 1, False: 192k]
  |  |  |  |  ------------------
  |  |  |  | 9567|      1|        *type = OFPACT_##ENUM;                                          \
  |  |  |  | 9568|      1|        return true;                                                    \
  |  |  |  | 9569|      1|    }
  |  |  ------------------
  |  |  126|   192k|    OFPACT(CLONE,           ofpact_nest,        actions, "clone")       \
  |  |  ------------------
  |  |  |  | 9566|   192k|    if (!strcasecmp(name, NAME)) {                                    \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (9566:9): [True: 10.0k, False: 182k]
  |  |  |  |  ------------------
  |  |  |  | 9567|  10.0k|        *type = OFPACT_##ENUM;                                          \
  |  |  |  | 9568|  10.0k|        return true;                                                    \
  |  |  |  | 9569|  10.0k|    }
  |  |  ------------------
  |  |  127|   192k|    OFPACT(CHECK_PKT_LARGER, ofpact_check_pkt_larger, ofpact,           \
  |  |  ------------------
  |  |  |  | 9566|   182k|    if (!strcasecmp(name, NAME)) {                                    \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (9566:9): [True: 787, False: 181k]
  |  |  |  |  ------------------
  |  |  |  | 9567|    787|        *type = OFPACT_##ENUM;                                          \
  |  |  |  | 9568|    787|        return true;                                                    \
  |  |  |  | 9569|    787|    }
  |  |  ------------------
  |  |  128|   182k|           "check_pkt_larger")                                          \
  |  |  129|   182k|                                                                        \
  |  |  130|   182k|    /* Debugging actions.                                               \
  |  |  131|   182k|     *                                                                  \
  |  |  132|   182k|     * These are intentionally undocumented, subject to change, and     \
  |  |  133|   182k|     * only accepted if ovs-vswitchd is started with --enable-dummy. */ \
  |  |  134|   182k|    OFPACT(DEBUG_RECIRC, ofpact_null,           ofpact, "debug_recirc") \
  |  |  ------------------
  |  |  |  | 9566|   181k|    if (!strcasecmp(name, NAME)) {                                    \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (9566:9): [True: 1.28k, False: 180k]
  |  |  |  |  ------------------
  |  |  |  | 9567|  1.28k|        *type = OFPACT_##ENUM;                                          \
  |  |  |  | 9568|  1.28k|        return true;                                                    \
  |  |  |  | 9569|  1.28k|    }
  |  |  ------------------
  |  |  135|   181k|    OFPACT(DEBUG_SLOW,   ofpact_null,           ofpact, "debug_slow")   \
  |  |  ------------------
  |  |  |  | 9566|   180k|    if (!strcasecmp(name, NAME)) {                                    \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (9566:9): [True: 1.91k, False: 178k]
  |  |  |  |  ------------------
  |  |  |  | 9567|  1.91k|        *type = OFPACT_##ENUM;                                          \
  |  |  |  | 9568|  1.91k|        return true;                                                    \
  |  |  |  | 9569|  1.91k|    }
  |  |  ------------------
  |  |  136|   180k|                                                                        \
  |  |  137|   180k|    /* Instructions ("meter" is an action in OF1.5+). */                \
  |  |  138|   180k|    OFPACT(METER,           ofpact_meter,       ofpact, "meter")        \
  |  |  ------------------
  |  |  |  | 9566|   178k|    if (!strcasecmp(name, NAME)) {                                    \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (9566:9): [True: 566, False: 178k]
  |  |  |  |  ------------------
  |  |  |  | 9567|    566|        *type = OFPACT_##ENUM;                                          \
  |  |  |  | 9568|    566|        return true;                                                    \
  |  |  |  | 9569|    566|    }
  |  |  ------------------
  |  |  139|   178k|    OFPACT(CLEAR_ACTIONS,   ofpact_null,        ofpact, "clear_actions") \
  |  |  ------------------
  |  |  |  | 9566|   178k|    if (!strcasecmp(name, NAME)) {                                    \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (9566:9): [True: 206, False: 178k]
  |  |  |  |  ------------------
  |  |  |  | 9567|    206|        *type = OFPACT_##ENUM;                                          \
  |  |  |  | 9568|    206|        return true;                                                    \
  |  |  |  | 9569|    206|    }
  |  |  ------------------
  |  |  140|   178k|    OFPACT(WRITE_ACTIONS,   ofpact_nest,        actions, "write_actions") \
  |  |  ------------------
  |  |  |  | 9566|   178k|    if (!strcasecmp(name, NAME)) {                                    \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (9566:9): [True: 1.17k, False: 176k]
  |  |  |  |  ------------------
  |  |  |  | 9567|  1.17k|        *type = OFPACT_##ENUM;                                          \
  |  |  |  | 9568|  1.17k|        return true;                                                    \
  |  |  |  | 9569|  1.17k|    }
  |  |  ------------------
  |  |  141|   178k|    OFPACT(WRITE_METADATA,  ofpact_metadata,    ofpact, "write_metadata") \
  |  |  ------------------
  |  |  |  | 9566|   176k|    if (!strcasecmp(name, NAME)) {                                    \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (9566:9): [True: 707, False: 176k]
  |  |  |  |  ------------------
  |  |  |  | 9567|    707|        *type = OFPACT_##ENUM;                                          \
  |  |  |  | 9568|    707|        return true;                                                    \
  |  |  |  | 9569|    707|    }
  |  |  ------------------
  |  |  142|   176k|    OFPACT(GOTO_TABLE,      ofpact_goto_table,  ofpact, "goto_table")
  |  |  ------------------
  |  |  |  | 9566|   176k|    if (!strcasecmp(name, NAME)) {                                    \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (9566:9): [True: 247, False: 175k]
  |  |  |  |  ------------------
  |  |  |  | 9567|    247|        *type = OFPACT_##ENUM;                                          \
  |  |  |  | 9568|    247|        return true;                                                    \
  |  |  |  | 9569|    247|    }
  |  |  ------------------
  ------------------
 9571|   175k|#undef OFPACT
 9572|       |
 9573|   175k|    return false;
 9574|  15.9M|}
ofp-actions.c:ofpact_parse:
 9550|   212k|{
 9551|   212k|    switch (type) {
 9552|      0|#define OFPACT(ENUM, STRUCT, MEMBER, NAME)                              \
 9553|      0|        case OFPACT_##ENUM:                                             \
 9554|      0|            return parse_##ENUM(value, pp);
 9555|      0|        OFPACTS
  ------------------
  |  |   64|  2.25k|    OFPACT(OUTPUT,          ofpact_output,      ofpact, "output")       \
  |  |  ------------------
  |  |  |  | 9553|  2.25k|        case OFPACT_##ENUM:                                             \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (9553:9): [True: 2.25k, False: 209k]
  |  |  |  |  ------------------
  |  |  |  | 9554|  2.25k|            return parse_##ENUM(value, pp);
  |  |  ------------------
  |  |   65|  2.25k|    OFPACT(GROUP,           ofpact_group,       ofpact, "group")        \
  |  |  ------------------
  |  |  |  | 9553|    223|        case OFPACT_##ENUM:                                             \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (9553:9): [True: 223, False: 211k]
  |  |  |  |  ------------------
  |  |  |  | 9554|    223|            return parse_##ENUM(value, pp);
  |  |  ------------------
  |  |   66|  10.5k|    OFPACT(CONTROLLER,      ofpact_controller,  userdata, "controller") \
  |  |  ------------------
  |  |  |  | 9553|  10.5k|        case OFPACT_##ENUM:                                             \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (9553:9): [True: 10.5k, False: 201k]
  |  |  |  |  ------------------
  |  |  |  | 9554|  10.5k|            return parse_##ENUM(value, pp);
  |  |  ------------------
  |  |   67|  10.5k|    OFPACT(ENQUEUE,         ofpact_enqueue,     ofpact, "enqueue")      \
  |  |  ------------------
  |  |  |  | 9553|  1.04k|        case OFPACT_##ENUM:                                             \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (9553:9): [True: 1.04k, False: 211k]
  |  |  |  |  ------------------
  |  |  |  | 9554|  1.04k|            return parse_##ENUM(value, pp);
  |  |  ------------------
  |  |   68|  1.04k|    OFPACT(OUTPUT_REG,      ofpact_output_reg,  ofpact, "output_reg")   \
  |  |  ------------------
  |  |  |  | 9553|    369|        case OFPACT_##ENUM:                                             \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (9553:9): [True: 369, False: 211k]
  |  |  |  |  ------------------
  |  |  |  | 9554|    369|            return parse_##ENUM(value, pp);
  |  |  ------------------
  |  |   69|  2.19k|    OFPACT(BUNDLE,          ofpact_bundle,      members, "bundle")      \
  |  |  ------------------
  |  |  |  | 9553|  2.19k|        case OFPACT_##ENUM:                                             \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (9553:9): [True: 2.19k, False: 209k]
  |  |  |  |  ------------------
  |  |  |  | 9554|  2.19k|            return parse_##ENUM(value, pp);
  |  |  ------------------
  |  |   70|  2.19k|                                                                        \
  |  |   71|  2.19k|    /* Header changes. */                                               \
  |  |   72|  47.6k|    OFPACT(SET_FIELD,       ofpact_set_field,   ofpact, "set_field")    \
  |  |  ------------------
  |  |  |  | 9553|  47.6k|        case OFPACT_##ENUM:                                             \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (9553:9): [True: 47.6k, False: 164k]
  |  |  |  |  ------------------
  |  |  |  | 9554|  47.6k|            return parse_##ENUM(value, pp);
  |  |  ------------------
  |  |   73|  47.6k|    OFPACT(SET_VLAN_VID,    ofpact_vlan_vid,    ofpact, "set_vlan_vid") \
  |  |  ------------------
  |  |  |  | 9553|  1.10k|        case OFPACT_##ENUM:                                             \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (9553:9): [True: 1.10k, False: 211k]
  |  |  |  |  ------------------
  |  |  |  | 9554|  1.10k|            return parse_##ENUM(value, pp);
  |  |  ------------------
  |  |   74|  1.50k|    OFPACT(SET_VLAN_PCP,    ofpact_vlan_pcp,    ofpact, "set_vlan_pcp") \
  |  |  ------------------
  |  |  |  | 9553|  1.50k|        case OFPACT_##ENUM:                                             \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (9553:9): [True: 1.50k, False: 210k]
  |  |  |  |  ------------------
  |  |  |  | 9554|  1.50k|            return parse_##ENUM(value, pp);
  |  |  ------------------
  |  |   75|  1.50k|    OFPACT(STRIP_VLAN,      ofpact_null,        ofpact, "strip_vlan")   \
  |  |  ------------------
  |  |  |  | 9553|    753|        case OFPACT_##ENUM:                                             \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (9553:9): [True: 753, False: 211k]
  |  |  |  |  ------------------
  |  |  |  | 9554|    753|            return parse_##ENUM(value, pp);
  |  |  ------------------
  |  |   76|  1.91k|    OFPACT(PUSH_VLAN,       ofpact_push_vlan,   ofpact, "push_vlan")    \
  |  |  ------------------
  |  |  |  | 9553|  1.91k|        case OFPACT_##ENUM:                                             \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (9553:9): [True: 1.91k, False: 210k]
  |  |  |  |  ------------------
  |  |  |  | 9554|  1.91k|            return parse_##ENUM(value, pp);
  |  |  ------------------
  |  |   77|  1.91k|    OFPACT(SET_ETH_SRC,     ofpact_mac,         ofpact, "mod_dl_src")   \
  |  |  ------------------
  |  |  |  | 9553|    498|        case OFPACT_##ENUM:                                             \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (9553:9): [True: 498, False: 211k]
  |  |  |  |  ------------------
  |  |  |  | 9554|    498|            return parse_##ENUM(value, pp);
  |  |  ------------------
  |  |   78|    995|    OFPACT(SET_ETH_DST,     ofpact_mac,         ofpact, "mod_dl_dst")   \
  |  |  ------------------
  |  |  |  | 9553|    995|        case OFPACT_##ENUM:                                             \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (9553:9): [True: 995, False: 211k]
  |  |  |  |  ------------------
  |  |  |  | 9554|    995|            return parse_##ENUM(value, pp);
  |  |  ------------------
  |  |   79|  2.33k|    OFPACT(SET_IPV4_SRC,    ofpact_ipv4,        ofpact, "mod_nw_src")   \
  |  |  ------------------
  |  |  |  | 9553|  2.33k|        case OFPACT_##ENUM:                                             \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (9553:9): [True: 2.33k, False: 209k]
  |  |  |  |  ------------------
  |  |  |  | 9554|  2.33k|            return parse_##ENUM(value, pp);
  |  |  ------------------
  |  |   80|  2.33k|    OFPACT(SET_IPV4_DST,    ofpact_ipv4,        ofpact, "mod_nw_dst")   \
  |  |  ------------------
  |  |  |  | 9553|    941|        case OFPACT_##ENUM:                                             \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (9553:9): [True: 941, False: 211k]
  |  |  |  |  ------------------
  |  |  |  | 9554|    941|            return parse_##ENUM(value, pp);
  |  |  ------------------
  |  |   81|  1.86k|    OFPACT(SET_IP_DSCP,     ofpact_dscp,        ofpact, "mod_nw_tos")   \
  |  |  ------------------
  |  |  |  | 9553|  1.86k|        case OFPACT_##ENUM:                                             \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (9553:9): [True: 1.86k, False: 210k]
  |  |  |  |  ------------------
  |  |  |  | 9554|  1.86k|            return parse_##ENUM(value, pp);
  |  |  ------------------
  |  |   82|  1.86k|    OFPACT(SET_IP_ECN,      ofpact_ecn,         ofpact, "mod_nw_ecn")   \
  |  |  ------------------
  |  |  |  | 9553|  1.21k|        case OFPACT_##ENUM:                                             \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (9553:9): [True: 1.21k, False: 210k]
  |  |  |  |  ------------------
  |  |  |  | 9554|  1.21k|            return parse_##ENUM(value, pp);
  |  |  ------------------
  |  |   83|  1.56k|    OFPACT(SET_IP_TTL,      ofpact_ip_ttl,      ofpact, "mod_nw_ttl")   \
  |  |  ------------------
  |  |  |  | 9553|  1.56k|        case OFPACT_##ENUM:                                             \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (9553:9): [True: 1.56k, False: 210k]
  |  |  |  |  ------------------
  |  |  |  | 9554|  1.56k|            return parse_##ENUM(value, pp);
  |  |  ------------------
  |  |   84|  3.73k|    OFPACT(SET_L4_SRC_PORT, ofpact_l4_port,     ofpact, "mod_tp_src")   \
  |  |  ------------------
  |  |  |  | 9553|  3.73k|        case OFPACT_##ENUM:                                             \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (9553:9): [True: 3.73k, False: 208k]
  |  |  |  |  ------------------
  |  |  |  | 9554|  3.73k|            return parse_##ENUM(value, pp);
  |  |  ------------------
  |  |   85|  3.73k|    OFPACT(SET_L4_DST_PORT, ofpact_l4_port,     ofpact, "mod_tp_dst")   \
  |  |  ------------------
  |  |  |  | 9553|  1.90k|        case OFPACT_##ENUM:                                             \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (9553:9): [True: 1.90k, False: 210k]
  |  |  |  |  ------------------
  |  |  |  | 9554|  1.90k|            return parse_##ENUM(value, pp);
  |  |  ------------------
  |  |   86|  1.90k|    OFPACT(REG_MOVE,        ofpact_reg_move,    ofpact, "move")         \
  |  |  ------------------
  |  |  |  | 9553|    482|        case OFPACT_##ENUM:                                             \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (9553:9): [True: 482, False: 211k]
  |  |  |  |  ------------------
  |  |  |  | 9554|    482|            return parse_##ENUM(value, pp);
  |  |  ------------------
  |  |   87|    482|    OFPACT(STACK_PUSH,      ofpact_stack,       ofpact, "push")         \
  |  |  ------------------
  |  |  |  | 9553|    382|        case OFPACT_##ENUM:                                             \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (9553:9): [True: 382, False: 211k]
  |  |  |  |  ------------------
  |  |  |  | 9554|    382|            return parse_##ENUM(value, pp);
  |  |  ------------------
  |  |   88|  2.08k|    OFPACT(STACK_POP,       ofpact_stack,       ofpact, "pop")          \
  |  |  ------------------
  |  |  |  | 9553|  2.08k|        case OFPACT_##ENUM:                                             \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (9553:9): [True: 2.08k, False: 210k]
  |  |  |  |  ------------------
  |  |  |  | 9554|  2.08k|            return parse_##ENUM(value, pp);
  |  |  ------------------
  |  |   89|  4.53k|    OFPACT(DEC_TTL,         ofpact_cnt_ids,     cnt_ids, "dec_ttl")     \
  |  |  ------------------
  |  |  |  | 9553|  4.53k|        case OFPACT_##ENUM:                                             \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (9553:9): [True: 4.53k, False: 207k]
  |  |  |  |  ------------------
  |  |  |  | 9554|  4.53k|            return parse_##ENUM(value, pp);
  |  |  ------------------
  |  |   90|  4.53k|    OFPACT(SET_MPLS_LABEL,  ofpact_mpls_label,  ofpact, "set_mpls_label") \
  |  |  ------------------
  |  |  |  | 9553|  2.37k|        case OFPACT_##ENUM:                                             \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (9553:9): [True: 2.37k, False: 209k]
  |  |  |  |  ------------------
  |  |  |  | 9554|  2.37k|            return parse_##ENUM(value, pp);
  |  |  ------------------
  |  |   91|  2.37k|    OFPACT(SET_MPLS_TC,     ofpact_mpls_tc,     ofpact, "set_mpls_tc")  \
  |  |  ------------------
  |  |  |  | 9553|  2.36k|        case OFPACT_##ENUM:                                             \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (9553:9): [True: 2.36k, False: 209k]
  |  |  |  |  ------------------
  |  |  |  | 9554|  2.36k|            return parse_##ENUM(value, pp);
  |  |  ------------------
  |  |   92|  2.36k|    OFPACT(SET_MPLS_TTL,    ofpact_mpls_ttl,    ofpact, "set_mpls_ttl") \
  |  |  ------------------
  |  |  |  | 9553|  1.53k|        case OFPACT_##ENUM:                                             \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (9553:9): [True: 1.53k, False: 210k]
  |  |  |  |  ------------------
  |  |  |  | 9554|  1.53k|            return parse_##ENUM(value, pp);
  |  |  ------------------
  |  |   93|  2.25k|    OFPACT(DEC_MPLS_TTL,    ofpact_null,        ofpact, "dec_mpls_ttl") \
  |  |  ------------------
  |  |  |  | 9553|  2.25k|        case OFPACT_##ENUM:                                             \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (9553:9): [True: 2.25k, False: 209k]
  |  |  |  |  ------------------
  |  |  |  | 9554|  2.25k|            return parse_##ENUM(value, pp);
  |  |  ------------------
  |  |   94|  2.25k|    OFPACT(PUSH_MPLS,       ofpact_push_mpls,   ofpact, "push_mpls")    \
  |  |  ------------------
  |  |  |  | 9553|    758|        case OFPACT_##ENUM:                                             \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (9553:9): [True: 758, False: 211k]
  |  |  |  |  ------------------
  |  |  |  | 9554|    758|            return parse_##ENUM(value, pp);
  |  |  ------------------
  |  |   95|  1.33k|    OFPACT(POP_MPLS,        ofpact_pop_mpls,    ofpact, "pop_mpls")     \
  |  |  ------------------
  |  |  |  | 9553|  1.33k|        case OFPACT_##ENUM:                                             \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (9553:9): [True: 1.33k, False: 210k]
  |  |  |  |  ------------------
  |  |  |  | 9554|  1.33k|            return parse_##ENUM(value, pp);
  |  |  ------------------
  |  |   96|  1.39k|    OFPACT(DEC_NSH_TTL,     ofpact_null,        ofpact, "dec_nsh_ttl")  \
  |  |  ------------------
  |  |  |  | 9553|  1.39k|        case OFPACT_##ENUM:                                             \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (9553:9): [True: 1.39k, False: 210k]
  |  |  |  |  ------------------
  |  |  |  | 9554|  1.39k|            return parse_##ENUM(value, pp);
  |  |  ------------------
  |  |   97|  1.39k|    OFPACT(DELETE_FIELD,    ofpact_delete_field, ofpact, "delete_field") \
  |  |  ------------------
  |  |  |  | 9553|    429|        case OFPACT_##ENUM:                                             \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (9553:9): [True: 429, False: 211k]
  |  |  |  |  ------------------
  |  |  |  | 9554|    429|            return parse_##ENUM(value, pp);
  |  |  ------------------
  |  |   98|    429|                                                                        \
  |  |   99|    429|    /* Generic encap & decap */                                         \
  |  |  100|  2.77k|    OFPACT(ENCAP,           ofpact_encap,       props, "encap")         \
  |  |  ------------------
  |  |  |  | 9553|  2.77k|        case OFPACT_##ENUM:                                             \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (9553:9): [True: 2.77k, False: 209k]
  |  |  |  |  ------------------
  |  |  |  | 9554|  2.77k|            return parse_##ENUM(value, pp);
  |  |  ------------------
  |  |  101|  3.12k|    OFPACT(DECAP,           ofpact_decap,       ofpact, "decap")        \
  |  |  ------------------
  |  |  |  | 9553|  3.12k|        case OFPACT_##ENUM:                                             \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (9553:9): [True: 3.12k, False: 209k]
  |  |  |  |  ------------------
  |  |  |  | 9554|  3.12k|            return parse_##ENUM(value, pp);
  |  |  ------------------
  |  |  102|  3.12k|                                                                        \
  |  |  103|  3.12k|    /* Metadata. */                                                     \
  |  |  104|  3.12k|    OFPACT(SET_TUNNEL,      ofpact_tunnel,      ofpact, "set_tunnel")   \
  |  |  ------------------
  |  |  |  | 9553|    751|        case OFPACT_##ENUM:                                             \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (9553:9): [True: 751, False: 211k]
  |  |  |  |  ------------------
  |  |  |  | 9554|    751|            return parse_##ENUM(value, pp);
  |  |  ------------------
  |  |  105|    751|    OFPACT(SET_QUEUE,       ofpact_queue,       ofpact, "set_queue")    \
  |  |  ------------------
  |  |  |  | 9553|    274|        case OFPACT_##ENUM:                                             \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (9553:9): [True: 274, False: 211k]
  |  |  |  |  ------------------
  |  |  |  | 9554|    274|            return parse_##ENUM(value, pp);
  |  |  ------------------
  |  |  106|    730|    OFPACT(POP_QUEUE,       ofpact_null,        ofpact, "pop_queue")    \
  |  |  ------------------
  |  |  |  | 9553|    730|        case OFPACT_##ENUM:                                             \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (9553:9): [True: 730, False: 211k]
  |  |  |  |  ------------------
  |  |  |  | 9554|    730|            return parse_##ENUM(value, pp);
  |  |  ------------------
  |  |  107|  1.37k|    OFPACT(FIN_TIMEOUT,     ofpact_fin_timeout, ofpact, "fin_timeout")  \
  |  |  ------------------
  |  |  |  | 9553|  1.37k|        case OFPACT_##ENUM:                                             \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (9553:9): [True: 1.37k, False: 210k]
  |  |  |  |  ------------------
  |  |  |  | 9554|  1.37k|            return parse_##ENUM(value, pp);
  |  |  ------------------
  |  |  108|  1.37k|                                                                        \
  |  |  109|  1.37k|    /* Flow table interaction. */                                       \
  |  |  110|  2.97k|    OFPACT(RESUBMIT,        ofpact_resubmit,    ofpact, "resubmit")     \
  |  |  ------------------
  |  |  |  | 9553|  2.97k|        case OFPACT_##ENUM:                                             \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (9553:9): [True: 2.97k, False: 209k]
  |  |  |  |  ------------------
  |  |  |  | 9554|  2.97k|            return parse_##ENUM(value, pp);
  |  |  ------------------
  |  |  111|  36.2k|    OFPACT(LEARN,           ofpact_learn,       specs, "learn")         \
  |  |  ------------------
  |  |  |  | 9553|  36.2k|        case OFPACT_##ENUM:                                             \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (9553:9): [True: 36.2k, False: 175k]
  |  |  |  |  ------------------
  |  |  |  | 9554|  36.2k|            return parse_##ENUM(value, pp);
  |  |  ------------------
  |  |  112|  36.2k|    OFPACT(CONJUNCTION,     ofpact_conjunction, ofpact, "conjunction")  \
  |  |  ------------------
  |  |  |  | 9553|    568|        case OFPACT_##ENUM:                                             \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (9553:9): [True: 568, False: 211k]
  |  |  |  |  ------------------
  |  |  |  | 9554|    568|            return parse_##ENUM(value, pp);
  |  |  ------------------
  |  |  113|    568|                                                                        \
  |  |  114|    568|    /* Arithmetic. */                                                   \
  |  |  115|  2.45k|    OFPACT(MULTIPATH,       ofpact_multipath,   ofpact, "multipath")    \
  |  |  ------------------
  |  |  |  | 9553|  2.45k|        case OFPACT_##ENUM:                                             \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (9553:9): [True: 2.45k, False: 209k]
  |  |  |  |  ------------------
  |  |  |  | 9554|  2.45k|            return parse_##ENUM(value, pp);
  |  |  ------------------
  |  |  116|  2.45k|                                                                        \
  |  |  117|  2.45k|    /* Other. */                                                        \
  |  |  118|  2.45k|    OFPACT(NOTE,            ofpact_note,        data, "note")           \
  |  |  ------------------
  |  |  |  | 9553|  2.02k|        case OFPACT_##ENUM:                                             \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (9553:9): [True: 2.02k, False: 210k]
  |  |  |  |  ------------------
  |  |  |  | 9554|  2.02k|            return parse_##ENUM(value, pp);
  |  |  ------------------
  |  |  119|  2.21k|    OFPACT(EXIT,            ofpact_null,        ofpact, "exit")         \
  |  |  ------------------
  |  |  |  | 9553|  2.21k|        case OFPACT_##ENUM:                                             \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (9553:9): [True: 2.21k, False: 209k]
  |  |  |  |  ------------------
  |  |  |  | 9554|  2.21k|            return parse_##ENUM(value, pp);
  |  |  ------------------
  |  |  120|  2.21k|    OFPACT(SAMPLE,          ofpact_sample,      ofpact, "sample")       \
  |  |  ------------------
  |  |  |  | 9553|  2.20k|        case OFPACT_##ENUM:                                             \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (9553:9): [True: 2.20k, False: 209k]
  |  |  |  |  ------------------
  |  |  |  | 9554|  2.20k|            return parse_##ENUM(value, pp);
  |  |  ------------------
  |  |  121|  2.20k|    OFPACT(UNROLL_XLATE,    ofpact_unroll_xlate, ofpact, "unroll_xlate") \
  |  |  ------------------
  |  |  |  | 9553|      1|        case OFPACT_##ENUM:                                             \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (9553:9): [True: 1, False: 212k]
  |  |  |  |  ------------------
  |  |  |  | 9554|      1|            return parse_##ENUM(value, pp);
  |  |  ------------------
  |  |  122|  20.8k|    OFPACT(CT,              ofpact_conntrack,   ofpact, "ct")           \
  |  |  ------------------
  |  |  |  | 9553|  20.8k|        case OFPACT_##ENUM:                                             \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (9553:9): [True: 20.8k, False: 191k]
  |  |  |  |  ------------------
  |  |  |  | 9554|  20.8k|            return parse_##ENUM(value, pp);
  |  |  ------------------
  |  |  123|  20.8k|    OFPACT(CT_CLEAR,        ofpact_null,        ofpact, "ct_clear")     \
  |  |  ------------------
  |  |  |  | 9553|  1.69k|        case OFPACT_##ENUM:                                             \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (9553:9): [True: 1.69k, False: 210k]
  |  |  |  |  ------------------
  |  |  |  | 9554|  1.69k|            return parse_##ENUM(value, pp);
  |  |  ------------------
  |  |  124|  10.3k|    OFPACT(NAT,             ofpact_nat,         ofpact, "nat")          \
  |  |  ------------------
  |  |  |  | 9553|  10.3k|        case OFPACT_##ENUM:                                             \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (9553:9): [True: 10.3k, False: 201k]
  |  |  |  |  ------------------
  |  |  |  | 9554|  10.3k|            return parse_##ENUM(value, pp);
  |  |  ------------------
  |  |  125|  10.3k|    OFPACT(OUTPUT_TRUNC,    ofpact_output_trunc,ofpact, "output_trunc") \
  |  |  ------------------
  |  |  |  | 9553|      1|        case OFPACT_##ENUM:                                             \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (9553:9): [True: 1, False: 212k]
  |  |  |  |  ------------------
  |  |  |  | 9554|      1|            return parse_##ENUM(value, pp);
  |  |  ------------------
  |  |  126|  10.0k|    OFPACT(CLONE,           ofpact_nest,        actions, "clone")       \
  |  |  ------------------
  |  |  |  | 9553|  10.0k|        case OFPACT_##ENUM:                                             \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (9553:9): [True: 10.0k, False: 202k]
  |  |  |  |  ------------------
  |  |  |  | 9554|  10.0k|            return parse_##ENUM(value, pp);
  |  |  ------------------
  |  |  127|  10.0k|    OFPACT(CHECK_PKT_LARGER, ofpact_check_pkt_larger, ofpact,           \
  |  |  ------------------
  |  |  |  | 9553|    787|        case OFPACT_##ENUM:                                             \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (9553:9): [True: 787, False: 211k]
  |  |  |  |  ------------------
  |  |  |  | 9554|    787|            return parse_##ENUM(value, pp);
  |  |  ------------------
  |  |  128|    787|           "check_pkt_larger")                                          \
  |  |  129|    787|                                                                        \
  |  |  130|    787|    /* Debugging actions.                                               \
  |  |  131|    787|     *                                                                  \
  |  |  132|    787|     * These are intentionally undocumented, subject to change, and     \
  |  |  133|    787|     * only accepted if ovs-vswitchd is started with --enable-dummy. */ \
  |  |  134|  1.28k|    OFPACT(DEBUG_RECIRC, ofpact_null,           ofpact, "debug_recirc") \
  |  |  ------------------
  |  |  |  | 9553|  1.28k|        case OFPACT_##ENUM:                                             \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (9553:9): [True: 1.28k, False: 210k]
  |  |  |  |  ------------------
  |  |  |  | 9554|  1.28k|            return parse_##ENUM(value, pp);
  |  |  ------------------
  |  |  135|  1.91k|    OFPACT(DEBUG_SLOW,   ofpact_null,           ofpact, "debug_slow")   \
  |  |  ------------------
  |  |  |  | 9553|  1.91k|        case OFPACT_##ENUM:                                             \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (9553:9): [True: 1.91k, False: 210k]
  |  |  |  |  ------------------
  |  |  |  | 9554|  1.91k|            return parse_##ENUM(value, pp);
  |  |  ------------------
  |  |  136|  1.91k|                                                                        \
  |  |  137|  1.91k|    /* Instructions ("meter" is an action in OF1.5+). */                \
  |  |  138|  1.91k|    OFPACT(METER,           ofpact_meter,       ofpact, "meter")        \
  |  |  ------------------
  |  |  |  | 9553|    566|        case OFPACT_##ENUM:                                             \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (9553:9): [True: 566, False: 211k]
  |  |  |  |  ------------------
  |  |  |  | 9554|    566|            return parse_##ENUM(value, pp);
  |  |  ------------------
  |  |  139|    566|    OFPACT(CLEAR_ACTIONS,   ofpact_null,        ofpact, "clear_actions") \
  |  |  ------------------
  |  |  |  | 9553|    206|        case OFPACT_##ENUM:                                             \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (9553:9): [True: 206, False: 211k]
  |  |  |  |  ------------------
  |  |  |  | 9554|    206|            return parse_##ENUM(value, pp);
  |  |  ------------------
  |  |  140|  1.17k|    OFPACT(WRITE_ACTIONS,   ofpact_nest,        actions, "write_actions") \
  |  |  ------------------
  |  |  |  | 9553|  1.17k|        case OFPACT_##ENUM:                                             \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (9553:9): [True: 1.17k, False: 210k]
  |  |  |  |  ------------------
  |  |  |  | 9554|  1.17k|            return parse_##ENUM(value, pp);
  |  |  ------------------
  |  |  141|  1.17k|    OFPACT(WRITE_METADATA,  ofpact_metadata,    ofpact, "write_metadata") \
  |  |  ------------------
  |  |  |  | 9553|    707|        case OFPACT_##ENUM:                                             \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (9553:9): [True: 707, False: 211k]
  |  |  |  |  ------------------
  |  |  |  | 9554|    707|            return parse_##ENUM(value, pp);
  |  |  ------------------
  |  |  142|    707|    OFPACT(GOTO_TABLE,      ofpact_goto_table,  ofpact, "goto_table")
  |  |  ------------------
  |  |  |  | 9553|    247|        case OFPACT_##ENUM:                                             \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (9553:9): [True: 247, False: 211k]
  |  |  |  |  ------------------
  |  |  |  | 9554|    247|            return parse_##ENUM(value, pp);
  |  |  ------------------
  ------------------
 9556|      0|#undef OFPACT
 9557|      0|    default:
  ------------------
  |  Branch (9557:5): [True: 0, False: 212k]
  ------------------
 9558|      0|        OVS_NOT_REACHED();
  ------------------
  |  |  107|      0|#define OVS_NOT_REACHED() abort()
  ------------------
 9559|   212k|    }
 9560|   212k|}
ofp-actions.c:parse_OUTPUT:
  670|  2.62k|{
  671|  2.62k|    if (strstr(arg, "port") && strstr(arg, "max_len")) {
  ------------------
  |  Branch (671:9): [True: 1.27k, False: 1.35k]
  |  Branch (671:32): [True: 1.20k, False: 68]
  ------------------
  672|  1.20k|        struct ofpact_output_trunc *output_trunc;
  673|       |
  674|  1.20k|        output_trunc = ofpact_put_OUTPUT_TRUNC(pp->ofpacts);
  675|  1.20k|        return parse_truncate_subfield(arg, pp, output_trunc);
  676|  1.20k|    }
  677|       |
  678|  1.42k|    ofp_port_t port;
  679|  1.42k|    if (ofputil_port_from_string(arg, pp->port_map, &port)) {
  ------------------
  |  Branch (679:9): [True: 461, False: 961]
  ------------------
  680|    461|        struct ofpact_output *output = ofpact_put_OUTPUT(pp->ofpacts);
  681|    461|        output->port = port;
  682|    461|        output->max_len = output->port == OFPP_CONTROLLER ? UINT16_MAX : 0;
  ------------------
  |  |   45|    461|#define OFPP_CONTROLLER OFP_PORT_C(0xfffd) /* Send to controller. */
  |  |  ------------------
  |  |  |  |  157|    461|#define OFP_PORT_C(X) ((OVS_FORCE ofp_port_t) (X))
  |  |  ------------------
  ------------------
  |  Branch (682:27): [True: 0, False: 461]
  ------------------
  683|    461|        return NULL;
  684|    461|    }
  685|       |
  686|    961|    struct mf_subfield src;
  687|    961|    char *error = mf_parse_subfield(&src, arg);
  688|    961|    if (!error) {
  ------------------
  |  Branch (688:9): [True: 945, False: 16]
  ------------------
  689|    945|        struct ofpact_output_reg *output_reg;
  690|       |
  691|    945|        output_reg = ofpact_put_OUTPUT_REG(pp->ofpacts);
  692|    945|        output_reg->max_len = UINT16_MAX;
  693|    945|        output_reg->src = src;
  694|    945|        return NULL;
  695|    945|    }
  696|     16|    free(error);
  697|       |
  698|     16|    return xasprintf("%s: output to unknown port", arg);
  699|    961|}
ofp-actions.c:parse_truncate_subfield:
  630|  1.20k|{
  631|  1.20k|    char *key, *value;
  632|  1.20k|    char *arg = CONST_CAST(char *, arg_);
  ------------------
  |  |   85|  1.20k|    (BUILD_ASSERT_TYPE(POINTER, TYPE),                          \
  |  |  ------------------
  |  |  |  |   80|  1.20k|    ((void) sizeof ((int) ((POINTER) == (TYPE) (POINTER))))
  |  |  ------------------
  |  |   86|  1.20k|     (TYPE) (POINTER))
  ------------------
  633|       |
  634|  4.43k|    while (ofputil_parse_key_value(&arg, &key, &value)) {
  ------------------
  |  Branch (634:12): [True: 3.33k, False: 1.10k]
  ------------------
  635|  3.33k|        if (!strcmp(key, "port")) {
  ------------------
  |  Branch (635:13): [True: 1.84k, False: 1.48k]
  ------------------
  636|  1.84k|            if (!ofputil_port_from_string(value, pp->port_map,
  ------------------
  |  Branch (636:17): [True: 5, False: 1.83k]
  ------------------
  637|  1.84k|                                          &output_trunc->port)) {
  638|      5|                return xasprintf("output to unknown truncate port: %s",
  639|      5|                                  value);
  640|      5|            }
  641|  1.83k|            if (ofp_to_u16(output_trunc->port) > ofp_to_u16(OFPP_MAX)) {
  ------------------
  |  |   33|  1.83k|#define OFPP_MAX        OFP_PORT_C(0xff00) /* Max # of switch ports. */
  |  |  ------------------
  |  |  |  |  157|  1.83k|#define OFP_PORT_C(X) ((OVS_FORCE ofp_port_t) (X))
  |  |  ------------------
  ------------------
  |  Branch (641:17): [True: 803, False: 1.03k]
  ------------------
  642|    803|                if (output_trunc->port != OFPP_LOCAL &&
  ------------------
  |  |   46|    803|#define OFPP_LOCAL      OFP_PORT_C(0xfffe) /* Local openflow "port". */
  |  |  ------------------
  |  |  |  |  157|  1.60k|#define OFP_PORT_C(X) ((OVS_FORCE ofp_port_t) (X))
  |  |  ------------------
  ------------------
  |  Branch (642:21): [True: 733, False: 70]
  ------------------
  643|    733|                    output_trunc->port != OFPP_IN_PORT)
  ------------------
  |  |   39|    733|#define OFPP_IN_PORT    OFP_PORT_C(0xfff8) /* Where the packet came in. */
  |  |  ------------------
  |  |  |  |  157|    733|#define OFP_PORT_C(X) ((OVS_FORCE ofp_port_t) (X))
  |  |  ------------------
  ------------------
  |  Branch (643:21): [True: 9, False: 724]
  ------------------
  644|      9|                return xasprintf("output to unsupported truncate port: %s",
  645|      9|                                 value);
  646|    803|            }
  647|  1.83k|        } else if (!strcmp(key, "max_len")) {
  ------------------
  |  Branch (647:20): [True: 1.42k, False: 68]
  ------------------
  648|  1.42k|            char *err;
  649|       |
  650|  1.42k|            err = str_to_u32(value, &output_trunc->max_len);
  651|  1.42k|            if (err) {
  ------------------
  |  Branch (651:17): [True: 13, False: 1.40k]
  ------------------
  652|     13|                return err;
  653|     13|            }
  654|       |
  655|  1.40k|            if (output_trunc->max_len < ETH_HEADER_LEN) {
  ------------------
  |  |  439|  1.40k|#define ETH_HEADER_LEN 14
  ------------------
  |  Branch (655:17): [True: 4, False: 1.40k]
  ------------------
  656|      4|                return xasprintf("max_len %"PRIu32" is less than the minimum "
  657|      4|                                 "value %d",
  658|      4|                                 output_trunc->max_len, ETH_HEADER_LEN);
  ------------------
  |  |  439|      4|#define ETH_HEADER_LEN 14
  ------------------
  659|      4|            }
  660|  1.40k|        } else {
  661|     68|            return xasprintf("invalid key '%s' in output_trunc argument",
  662|     68|                                key);
  663|     68|        }
  664|  3.33k|    }
  665|  1.10k|    return NULL;
  666|  1.20k|}
ofp-actions.c:parse_GROUP:
  741|    223|{
  742|    223|    return str_to_u32(arg, &ofpact_put_GROUP(pp->ofpacts)->group_id);
  743|    223|}
ofp-actions.c:parse_CONTROLLER:
  938|  10.5k|{
  939|  10.5k|    enum ofp_packet_in_reason reason = OFPR_ACTION;
  940|  10.5k|    uint16_t controller_id = 0;
  941|  10.5k|    uint16_t max_len = UINT16_MAX;
  942|  10.5k|    uint32_t meter_id = NX_CTLR_NO_METER;
  ------------------
  |  |  307|  10.5k|#define NX_CTLR_NO_METER 0
  ------------------
  943|  10.5k|    const char *userdata = NULL;
  944|  10.5k|    bool pause = false;
  945|       |
  946|  10.5k|    if (!arg[0]) {
  ------------------
  |  Branch (946:9): [True: 592, False: 10.0k]
  ------------------
  947|       |        /* Use defaults. */
  948|  10.0k|    } else if (strspn(arg, "0123456789") == strlen(arg)) {
  ------------------
  |  Branch (948:16): [True: 980, False: 9.02k]
  ------------------
  949|    980|        char *error = str_to_u16(arg, "max_len", &max_len);
  950|    980|        if (error) {
  ------------------
  |  Branch (950:13): [True: 1, False: 979]
  ------------------
  951|      1|            return error;
  952|      1|        }
  953|  9.02k|    } else {
  954|  9.02k|        char *name, *value;
  955|       |
  956|  20.0k|        while (ofputil_parse_key_value(&arg, &name, &value)) {
  ------------------
  |  Branch (956:16): [True: 11.1k, False: 8.89k]
  ------------------
  957|  11.1k|            if (!strcmp(name, "reason")) {
  ------------------
  |  Branch (957:17): [True: 663, False: 10.4k]
  ------------------
  958|    663|                if (!ofputil_packet_in_reason_from_string(value, &reason)) {
  ------------------
  |  Branch (958:21): [True: 80, False: 583]
  ------------------
  959|     80|                    return xasprintf("unknown reason \"%s\"", value);
  960|     80|                }
  961|  10.4k|            } else if (!strcmp(name, "max_len")) {
  ------------------
  |  Branch (961:24): [True: 342, False: 10.1k]
  ------------------
  962|    342|                char *error = str_to_u16(value, "max_len", &max_len);
  963|    342|                if (error) {
  ------------------
  |  Branch (963:21): [True: 1, False: 341]
  ------------------
  964|      1|                    return error;
  965|      1|                }
  966|  10.1k|            } else if (!strcmp(name, "id")) {
  ------------------
  |  Branch (966:24): [True: 1.58k, False: 8.52k]
  ------------------
  967|  1.58k|                char *error = str_to_u16(value, "id", &controller_id);
  968|  1.58k|                if (error) {
  ------------------
  |  Branch (968:21): [True: 2, False: 1.58k]
  ------------------
  969|      2|                    return error;
  970|      2|                }
  971|  8.52k|            } else if (!strcmp(name, "userdata")) {
  ------------------
  |  Branch (971:24): [True: 2.07k, False: 6.45k]
  ------------------
  972|  2.07k|                userdata = value;
  973|  6.45k|            } else if (!strcmp(name, "pause")) {
  ------------------
  |  Branch (973:24): [True: 5.74k, False: 709]
  ------------------
  974|  5.74k|                pause = true;
  975|  5.74k|            } else if (!strcmp(name, "meter_id")) {
  ------------------
  |  Branch (975:24): [True: 665, False: 44]
  ------------------
  976|    665|                char *error = str_to_u32(value, &meter_id);
  977|    665|                if (error) {
  ------------------
  |  Branch (977:21): [True: 1, False: 664]
  ------------------
  978|      1|                    return error;
  979|      1|                }
  980|    665|            } else {
  981|     44|                return xasprintf("unknown key \"%s\" parsing controller "
  982|     44|                                 "action", name);
  983|     44|            }
  984|  11.1k|        }
  985|  9.02k|    }
  986|       |
  987|  10.4k|    if (reason == OFPR_ACTION && controller_id == 0 && !userdata && !pause
  ------------------
  |  Branch (987:9): [True: 10.0k, False: 409]
  |  Branch (987:34): [True: 9.10k, False: 958]
  |  Branch (987:56): [True: 7.45k, False: 1.64k]
  |  Branch (987:69): [True: 2.58k, False: 4.87k]
  ------------------
  988|  2.58k|        && meter_id == NX_CTLR_NO_METER) {
  ------------------
  |  |  307|  2.58k|#define NX_CTLR_NO_METER 0
  ------------------
  |  Branch (988:12): [True: 1.94k, False: 641]
  ------------------
  989|  1.94k|        struct ofpact_output *output;
  990|       |
  991|  1.94k|        output = ofpact_put_OUTPUT(pp->ofpacts);
  992|  1.94k|        output->port = OFPP_CONTROLLER;
  ------------------
  |  |   45|  1.94k|#define OFPP_CONTROLLER OFP_PORT_C(0xfffd) /* Send to controller. */
  |  |  ------------------
  |  |  |  |  157|  1.94k|#define OFP_PORT_C(X) ((OVS_FORCE ofp_port_t) (X))
  |  |  ------------------
  ------------------
  993|  1.94k|        output->max_len = max_len;
  994|  8.52k|    } else {
  995|  8.52k|        struct ofpact_controller *controller;
  996|       |
  997|  8.52k|        controller = ofpact_put_CONTROLLER(pp->ofpacts);
  998|  8.52k|        controller->max_len = max_len;
  999|  8.52k|        controller->reason = reason;
 1000|  8.52k|        controller->controller_id = controller_id;
 1001|  8.52k|        controller->pause = pause;
 1002|  8.52k|        controller->meter_id = meter_id;
 1003|       |
 1004|  8.52k|        if (userdata) {
  ------------------
  |  Branch (1004:13): [True: 1.64k, False: 6.88k]
  ------------------
 1005|  1.64k|            size_t start_ofs = pp->ofpacts->size;
 1006|  1.64k|            const char *end = ofpbuf_put_hex(pp->ofpacts, userdata, NULL);
 1007|  1.64k|            if (*end) {
  ------------------
  |  Branch (1007:17): [True: 4, False: 1.63k]
  ------------------
 1008|      4|                return xstrdup("bad hex digit in `controller' "
 1009|      4|                               "action `userdata'");
 1010|      4|            }
 1011|  1.63k|            size_t userdata_len = pp->ofpacts->size - start_ofs;
 1012|  1.63k|            controller = pp->ofpacts->header;
 1013|  1.63k|            controller->userdata_len = userdata_len;
 1014|  1.63k|        }
 1015|       |
 1016|  8.52k|        if (ofpbuf_oversized(pp->ofpacts)) {
  ------------------
  |  Branch (1016:13): [True: 1, False: 8.52k]
  ------------------
 1017|      1|            return xasprintf("input too big");
 1018|      1|        }
 1019|       |
 1020|  8.52k|        ofpact_finish_CONTROLLER(pp->ofpacts, &controller);
 1021|  8.52k|    }
 1022|       |
 1023|  10.4k|    return NULL;
 1024|  10.4k|}
ofp-actions.c:parse_ENQUEUE:
 1131|  1.04k|{
 1132|  1.04k|    char *sp = NULL;
 1133|  1.04k|    char *port = strtok_r(arg, ":q,", &sp);
 1134|  1.04k|    char *queue = strtok_r(NULL, "", &sp);
 1135|  1.04k|    struct ofpact_enqueue *enqueue;
 1136|       |
 1137|  1.04k|    if (port == NULL || queue == NULL) {
  ------------------
  |  Branch (1137:9): [True: 2, False: 1.03k]
  |  Branch (1137:25): [True: 1, False: 1.03k]
  ------------------
 1138|      3|        return xstrdup("\"enqueue\" syntax is \"enqueue:PORT:QUEUE\" or "
 1139|      3|                       "\"enqueue(PORT,QUEUE)\"");
 1140|      3|    }
 1141|       |
 1142|  1.03k|    enqueue = ofpact_put_ENQUEUE(pp->ofpacts);
 1143|  1.03k|    if (!ofputil_port_from_string(port, pp->port_map, &enqueue->port)) {
  ------------------
  |  Branch (1143:9): [True: 1, False: 1.03k]
  ------------------
 1144|      1|        return xasprintf("%s: enqueue to unknown port", port);
 1145|      1|    }
 1146|  1.03k|    return str_to_u32(queue, &enqueue->queue);
 1147|  1.03k|}
ofp-actions.c:parse_OUTPUT_REG:
 1311|    369|{
 1312|    369|    return parse_OUTPUT(arg, pp);
 1313|    369|}
ofp-actions.c:parse_BUNDLE:
 1532|  2.19k|{
 1533|  2.19k|    return bundle_parse(arg, pp->port_map, pp->ofpacts);
 1534|  2.19k|}
ofp-actions.c:parse_SET_FIELD:
 3271|  47.6k|{
 3272|  47.6k|    char *copy = xstrdup(arg);
 3273|  47.6k|    char *error = set_field_parse__(copy, pp);
 3274|  47.6k|    free(copy);
 3275|  47.6k|    return error;
 3276|  47.6k|}
ofp-actions.c:set_field_parse__:
 3227|  47.6k|{
 3228|  47.6k|    char *value;
 3229|  47.6k|    char *delim;
 3230|  47.6k|    char *key;
 3231|  47.6k|    const struct mf_field *mf;
 3232|  47.6k|    union mf_value sf_value, sf_mask;
 3233|  47.6k|    char *error;
 3234|       |
 3235|  47.6k|    error = set_field_split_str(arg, &key, &value, &delim);
 3236|  47.6k|    if (error) {
  ------------------
  |  Branch (3236:9): [True: 21, False: 47.6k]
  ------------------
 3237|     21|        return error;
 3238|     21|    }
 3239|       |
 3240|  47.6k|    mf = mf_from_name(key);
 3241|  47.6k|    if (!mf) {
  ------------------
  |  Branch (3241:9): [True: 70, False: 47.5k]
  ------------------
 3242|     70|        return xasprintf("%s is not a valid OXM field name", key);
 3243|     70|    }
 3244|  47.5k|    if (!mf->writable) {
  ------------------
  |  Branch (3244:9): [True: 1, False: 47.5k]
  ------------------
 3245|      1|        return xasprintf("%s is read-only", key);
 3246|      1|    }
 3247|       |
 3248|  47.5k|    delim[0] = '\0';
 3249|  47.5k|    error = mf_parse(mf, value, pp->port_map, &sf_value, &sf_mask);
 3250|  47.5k|    if (error) {
  ------------------
  |  Branch (3250:9): [True: 5, False: 47.5k]
  ------------------
 3251|      5|        return error;
 3252|      5|    }
 3253|       |
 3254|  47.5k|    if (!mf_is_value_valid(mf, &sf_value)) {
  ------------------
  |  Branch (3254:9): [True: 7, False: 47.5k]
  ------------------
 3255|      7|        return xasprintf("%s is not a valid value for field %s", value, key);
 3256|      7|    }
 3257|       |
 3258|  47.5k|    *pp->usable_protocols &= mf->usable_protocols_exact;
 3259|       |
 3260|  47.5k|    ofpact_put_set_field(pp->ofpacts, mf, &sf_value, &sf_mask);
 3261|       |    return NULL;
 3262|  47.5k|}
ofp-actions.c:set_field_split_str:
 3195|  49.0k|{
 3196|  49.0k|    char *value_end;
 3197|       |
 3198|  49.0k|    *key = NULL;
 3199|  49.0k|    *value = arg;
 3200|  49.0k|    if (delim) {
  ------------------
  |  Branch (3200:9): [True: 48.4k, False: 637]
  ------------------
 3201|  48.4k|        *delim = NULL;
 3202|  48.4k|    }
 3203|       |
 3204|  49.0k|    value_end = strstr(arg, "->");
 3205|  49.0k|    if (!value_end) {
  ------------------
  |  Branch (3205:9): [True: 24, False: 49.0k]
  ------------------
 3206|     24|        return xasprintf("%s: missing `->'", arg);
 3207|     24|    }
 3208|       |
 3209|  49.0k|    *key = value_end + strlen("->");
 3210|  49.0k|    if (delim) {
  ------------------
  |  Branch (3210:9): [True: 48.3k, False: 636]
  ------------------
 3211|  48.3k|        *delim = value_end;
 3212|  48.3k|    }
 3213|  49.0k|    if (strlen(value_end) <= strlen("->")) {
  ------------------
  |  Branch (3213:9): [True: 3, False: 49.0k]
  ------------------
 3214|      3|        return xasprintf("%s: missing field name following `->'", arg);
 3215|      3|    }
 3216|       |
 3217|  49.0k|    return NULL;
 3218|  49.0k|}
ofp-actions.c:parse_SET_VLAN_VID:
 1634|  1.10k|{
 1635|       |    return parse_set_vlan_vid(arg, false, pp);
 1636|  1.10k|}
ofp-actions.c:parse_SET_VLAN_PCP:
 1742|  1.50k|{
 1743|       |    return parse_set_vlan_pcp(arg, false, pp);
 1744|  1.50k|}
ofp-actions.c:parse_STRIP_VLAN:
 1801|    753|{
 1802|    753|    ofpact_put_STRIP_VLAN(pp->ofpacts)->ofpact.raw = OFPAT_RAW10_STRIP_VLAN;
 1803|       |    return NULL;
 1804|    753|}
ofp-actions.c:parse_PUSH_VLAN:
 1864|  1.91k|{
 1865|  1.91k|    struct ofpact_push_vlan *push_vlan;
 1866|  1.91k|    uint16_t ethertype;
 1867|  1.91k|    char *error;
 1868|       |
 1869|  1.91k|    *pp->usable_protocols &= OFPUTIL_P_OF11_UP;
  ------------------
  |  |   92|  1.91k|#define OFPUTIL_P_OF11_UP (OFPUTIL_P_OF11_STD | OFPUTIL_P_ANY_OXM)
  |  |  ------------------
  |  |  |  |   82|  1.91k|#define OFPUTIL_P_ANY_OXM (OFPUTIL_P_OF12_OXM | \
  |  |  |  |   83|  1.91k|                           OFPUTIL_P_OF13_OXM | \
  |  |  |  |   84|  1.91k|                           OFPUTIL_P_OF14_OXM | \
  |  |  |  |   85|  1.91k|                           OFPUTIL_P_OF15_OXM)
  |  |  ------------------
  ------------------
 1870|  1.91k|    error = str_to_u16(arg, "ethertype", &ethertype);
 1871|  1.91k|    if (error) {
  ------------------
  |  Branch (1871:9): [True: 4, False: 1.91k]
  ------------------
 1872|      4|        return error;
 1873|      4|    }
 1874|       |
 1875|  1.91k|    if (!eth_type_vlan(htons(ethertype))) {
  ------------------
  |  Branch (1875:9): [True: 41, False: 1.87k]
  ------------------
 1876|     41|        return xasprintf("%s: not a valid VLAN ethertype", arg);
 1877|     41|    }
 1878|  1.87k|    push_vlan = ofpact_put_PUSH_VLAN(pp->ofpacts);
 1879|  1.87k|    push_vlan->ethertype = htons(ethertype);
 1880|       |    return NULL;
 1881|  1.91k|}
ofp-actions.c:parse_SET_ETH_SRC:
 1969|    498|{
 1970|    498|    return str_to_mac(arg, &ofpact_put_SET_ETH_SRC(pp->ofpacts)->mac);
 1971|    498|}
ofp-actions.c:parse_SET_ETH_DST:
 1975|    995|{
 1976|    995|    return str_to_mac(arg, &ofpact_put_SET_ETH_DST(pp->ofpacts)->mac);
 1977|    995|}
ofp-actions.c:parse_SET_IPV4_SRC:
 2061|  2.33k|{
 2062|  2.33k|    return str_to_ip(arg, &ofpact_put_SET_IPV4_SRC(pp->ofpacts)->ipv4);
 2063|  2.33k|}
ofp-actions.c:parse_SET_IPV4_DST:
 2067|    941|{
 2068|    941|    return str_to_ip(arg, &ofpact_put_SET_IPV4_DST(pp->ofpacts)->ipv4);
 2069|    941|}
ofp-actions.c:parse_SET_IP_DSCP:
 2140|  1.86k|{
 2141|  1.86k|    uint8_t tos;
 2142|  1.86k|    char *error;
 2143|       |
 2144|  1.86k|    error = str_to_u8(arg, "TOS", &tos);
 2145|  1.86k|    if (error) {
  ------------------
  |  Branch (2145:9): [True: 6, False: 1.86k]
  ------------------
 2146|      6|        return error;
 2147|      6|    }
 2148|       |
 2149|  1.86k|    if (tos & ~IP_DSCP_MASK) {
  ------------------
  |  |  724|  1.86k|#define IP_DSCP_MASK 0xfc
  ------------------
  |  Branch (2149:9): [True: 1, False: 1.86k]
  ------------------
 2150|      1|        return xasprintf("%s: not a valid TOS", arg);
 2151|      1|    }
 2152|  1.86k|    ofpact_put_SET_IP_DSCP(pp->ofpacts)->dscp = tos;
 2153|       |    return NULL;
 2154|  1.86k|}
ofp-actions.c:parse_SET_IP_ECN:
 2213|  1.21k|{
 2214|  1.21k|    uint8_t ecn;
 2215|  1.21k|    char *error;
 2216|       |
 2217|  1.21k|    error = str_to_u8(arg, "ECN", &ecn);
 2218|  1.21k|    if (error) {
  ------------------
  |  Branch (2218:9): [True: 21, False: 1.19k]
  ------------------
 2219|     21|        return error;
 2220|     21|    }
 2221|       |
 2222|  1.19k|    if (ecn & ~IP_ECN_MASK) {
  ------------------
  |  |  722|  1.19k|#define IP_ECN_MASK 0x03
  ------------------
  |  Branch (2222:9): [True: 1, False: 1.19k]
  ------------------
 2223|      1|        return xasprintf("%s: not a valid ECN", arg);
 2224|      1|    }
 2225|  1.19k|    ofpact_put_SET_IP_ECN(pp->ofpacts)->ecn = ecn;
 2226|       |    return NULL;
 2227|  1.19k|}
ofp-actions.c:parse_SET_L4_SRC_PORT:
 2362|  3.73k|{
 2363|  3.73k|    return str_to_u16(arg, "source port",
 2364|  3.73k|                      &ofpact_put_SET_L4_SRC_PORT(pp->ofpacts)->port);
 2365|  3.73k|}
ofp-actions.c:parse_SET_L4_DST_PORT:
 2369|  1.90k|{
 2370|  1.90k|    return str_to_u16(arg, "destination port",
 2371|  1.90k|                      &ofpact_put_SET_L4_DST_PORT(pp->ofpacts)->port);
 2372|  1.90k|}
ofp-actions.c:parse_REG_MOVE:
 2707|    482|{
 2708|    482|    struct ofpact_reg_move *move = ofpact_put_REG_MOVE(pp->ofpacts);
 2709|    482|    return nxm_parse_reg_move(move, arg);
 2710|    482|}
ofp-actions.c:parse_STACK_PUSH:
 3545|    382|{
 3546|    382|    return nxm_parse_stack_action(ofpact_put_STACK_PUSH(pp->ofpacts), arg);
 3547|    382|}
ofp-actions.c:parse_STACK_POP:
 3551|  2.08k|{
 3552|  2.08k|    return nxm_parse_stack_action(ofpact_put_STACK_POP(pp->ofpacts), arg);
 3553|  2.08k|}
ofp-actions.c:parse_DEC_TTL:
 3702|  4.53k|{
 3703|  4.53k|    if (*arg == '\0') {
  ------------------
  |  Branch (3703:9): [True: 1.72k, False: 2.80k]
  ------------------
 3704|  1.72k|        parse_noargs_dec_ttl(pp);
 3705|  2.80k|    } else {
 3706|  2.80k|        struct ofpact_cnt_ids *ids;
 3707|  2.80k|        char *cntr;
 3708|       |
 3709|  2.80k|        ids = ofpact_put_DEC_TTL(pp->ofpacts);
 3710|  2.80k|        ids->ofpact.raw = NXAST_RAW_DEC_TTL_CNT_IDS;
 3711|  1.68M|        for (cntr = strtok_r(arg, ", ", &arg); cntr != NULL;
  ------------------
  |  Branch (3711:48): [True: 1.67M, False: 2.80k]
  ------------------
 3712|  1.67M|             cntr = strtok_r(NULL, ", ", &arg)) {
 3713|  1.67M|            uint16_t id = atoi(cntr);
 3714|       |
 3715|  1.67M|            ofpbuf_put(pp->ofpacts, &id, sizeof id);
 3716|  1.67M|            ids = pp->ofpacts->header;
 3717|  1.67M|            ids->n_controllers++;
 3718|  1.67M|        }
 3719|  2.80k|        if (!ids->n_controllers) {
  ------------------
  |  Branch (3719:13): [True: 1, False: 2.80k]
  ------------------
 3720|      1|            return xstrdup("dec_ttl_cnt_ids: expected at least one controller "
 3721|      1|                           "id.");
 3722|      1|        }
 3723|       |
 3724|  2.80k|        if (ofpbuf_oversized(pp->ofpacts)) {
  ------------------
  |  Branch (3724:13): [True: 10, False: 2.79k]
  ------------------
 3725|     10|            return xasprintf("input too big");
 3726|     10|        }
 3727|       |
 3728|  2.79k|        ofpact_finish_DEC_TTL(pp->ofpacts, &ids);
 3729|  2.79k|    }
 3730|  4.52k|    return NULL;
 3731|  4.53k|}
ofp-actions.c:parse_noargs_dec_ttl:
 3689|  1.72k|{
 3690|  1.72k|    struct ofpact_cnt_ids *ids;
 3691|  1.72k|    uint16_t id = 0;
 3692|       |
 3693|  1.72k|    ofpact_put_DEC_TTL(pp->ofpacts);
 3694|  1.72k|    ofpbuf_put(pp->ofpacts, &id, sizeof id);
 3695|  1.72k|    ids = pp->ofpacts->header;
 3696|  1.72k|    ids->n_controllers++;
 3697|  1.72k|    ofpact_finish_DEC_TTL(pp->ofpacts, &ids);
 3698|  1.72k|}
ofp-actions.c:parse_SET_MPLS_LABEL:
 3784|  2.37k|{
 3785|  2.37k|    struct ofpact_mpls_label *mpls_label
 3786|  2.37k|        = ofpact_put_SET_MPLS_LABEL(pp->ofpacts);
 3787|  2.37k|    uint32_t label;
 3788|  2.37k|    char *error;
 3789|       |
 3790|  2.37k|    if (*arg == '\0') {
  ------------------
  |  Branch (3790:9): [True: 3, False: 2.37k]
  ------------------
 3791|      3|        return xstrdup("set_mpls_label: expected label.");
 3792|      3|    }
 3793|       |
 3794|  2.37k|    error = str_to_u32(arg, &label);
 3795|  2.37k|    if (error) {
  ------------------
  |  Branch (3795:9): [True: 4, False: 2.36k]
  ------------------
 3796|      4|        return error;
 3797|      4|    }
 3798|       |
 3799|  2.36k|    if (label & ~0xfffff) {
  ------------------
  |  Branch (3799:9): [True: 11, False: 2.35k]
  ------------------
 3800|     11|        return xasprintf("%s: not a valid MPLS label", arg);
 3801|     11|    }
 3802|  2.35k|    mpls_label->label = htonl(label);
 3803|       |    return NULL;
 3804|  2.36k|}
ofp-actions.c:parse_SET_MPLS_TC:
 3856|  2.36k|{
 3857|  2.36k|    struct ofpact_mpls_tc *mpls_tc = ofpact_put_SET_MPLS_TC(pp->ofpacts);
 3858|  2.36k|    uint8_t tc;
 3859|  2.36k|    char *error;
 3860|       |
 3861|  2.36k|    if (*arg == '\0') {
  ------------------
  |  Branch (3861:9): [True: 2, False: 2.36k]
  ------------------
 3862|      2|        return xstrdup("set_mpls_tc: expected tc.");
 3863|      2|    }
 3864|       |
 3865|  2.36k|    error = str_to_u8(arg, "MPLS TC", &tc);
 3866|  2.36k|    if (error) {
  ------------------
  |  Branch (3866:9): [True: 1, False: 2.36k]
  ------------------
 3867|      1|        return error;
 3868|      1|    }
 3869|       |
 3870|  2.36k|    if (tc & ~7) {
  ------------------
  |  Branch (3870:9): [True: 2, False: 2.36k]
  ------------------
 3871|      2|        return xasprintf("%s: not a valid MPLS TC", arg);
 3872|      2|    }
 3873|  2.36k|    mpls_tc->tc = tc;
 3874|       |    return NULL;
 3875|  2.36k|}
ofp-actions.c:parse_SET_MPLS_TTL:
 3918|  1.53k|{
 3919|  1.53k|    struct ofpact_mpls_ttl *mpls_ttl = ofpact_put_SET_MPLS_TTL(pp->ofpacts);
 3920|  1.53k|    uint8_t ttl;
 3921|  1.53k|    char *error;
 3922|       |
 3923|  1.53k|    if (*arg == '\0') {
  ------------------
  |  Branch (3923:9): [True: 1, False: 1.53k]
  ------------------
 3924|      1|        return xstrdup("set_mpls_ttl: expected ttl.");
 3925|      1|    }
 3926|       |
 3927|  1.53k|    error = str_to_u8(arg, "MPLS TTL", &ttl);
 3928|  1.53k|    if (error) {
  ------------------
  |  Branch (3928:9): [True: 2, False: 1.53k]
  ------------------
 3929|      2|        return error;
 3930|      2|    }
 3931|  1.53k|    mpls_ttl->ttl = ttl;
 3932|       |    return NULL;
 3933|  1.53k|}
ofp-actions.c:parse_DEC_MPLS_TTL:
 3969|  2.25k|{
 3970|  2.25k|    ofpact_put_DEC_MPLS_TTL(pp->ofpacts);
 3971|       |    return NULL;
 3972|  2.25k|}
ofp-actions.c:parse_PUSH_MPLS:
 4015|    758|{
 4016|    758|    uint16_t ethertype;
 4017|    758|    char *error;
 4018|       |
 4019|    758|    error = str_to_u16(arg, "push_mpls", &ethertype);
 4020|    758|    if (!error) {
  ------------------
  |  Branch (4020:9): [True: 753, False: 5]
  ------------------
 4021|       |        ofpact_put_PUSH_MPLS(pp->ofpacts)->ethertype = htons(ethertype);
 4022|    753|    }
 4023|    758|    return error;
 4024|    758|}
ofp-actions.c:parse_POP_MPLS:
 4073|  1.33k|{
 4074|  1.33k|    uint16_t ethertype;
 4075|  1.33k|    char *error;
 4076|       |
 4077|  1.33k|    error = str_to_u16(arg, "pop_mpls", &ethertype);
 4078|  1.33k|    if (!error) {
  ------------------
  |  Branch (4078:9): [True: 1.33k, False: 4]
  ------------------
 4079|       |        ofpact_put_POP_MPLS(pp->ofpacts)->ethertype = htons(ethertype);
 4080|  1.33k|    }
 4081|  1.33k|    return error;
 4082|  1.33k|}
ofp-actions.c:parse_DEC_NSH_TTL:
 4814|  1.39k|{
 4815|  1.39k|    ofpact_put_DEC_NSH_TTL(pp->ofpacts);
 4816|       |    return NULL;
 4817|  1.39k|}
ofp-actions.c:parse_DELETE_FIELD:
 4237|    429|{
 4238|    429|    struct ofpact_delete_field *delete_field;
 4239|       |
 4240|    429|    delete_field = ofpact_put_DELETE_FIELD(pp->ofpacts);
 4241|    429|    return mf_parse_field(&delete_field->field, arg);
 4242|    429|}
ofp-actions.c:parse_ENCAP:
 4571|  2.77k|{
 4572|  2.77k|    *pp->usable_protocols &= OFPUTIL_P_OF13_UP;
  ------------------
  |  |   95|  2.77k|#define OFPUTIL_P_OF13_UP (OFPUTIL_P_OF13_OXM | OFPUTIL_P_OF14_UP)
  |  |  ------------------
  |  |  |  |   96|  2.77k|#define OFPUTIL_P_OF14_UP (OFPUTIL_P_OF14_OXM | OFPUTIL_P_OF15_UP)
  |  |  |  |  ------------------
  |  |  |  |  |  |   97|  2.77k|#define OFPUTIL_P_OF15_UP OFPUTIL_P_OF15_OXM
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 4573|       |
 4574|  2.77k|    struct ofpact_encap *encap;
 4575|  2.77k|    char *key, *value, *str;
 4576|  2.77k|    char *error = NULL;
 4577|  2.77k|    uint16_t prop_class;
 4578|  2.77k|    int n_props = 0;
 4579|       |
 4580|  2.77k|    encap = ofpact_put_ENCAP(pp->ofpacts);
 4581|  2.77k|    encap->hdr_size = 0;
 4582|       |    /* Parse encap header type. */
 4583|  2.77k|    str = arg;
 4584|  2.77k|    if (!ofputil_parse_key_value(&arg, &key, &value)) {
  ------------------
  |  Branch (4584:9): [True: 5, False: 2.77k]
  ------------------
 4585|      5|        return xasprintf("Missing encap hdr: %s", str);
 4586|      5|    }
 4587|  2.77k|    if (!parse_encap_header(key, &encap->new_pkt_type)) {
  ------------------
  |  Branch (4587:9): [True: 126, False: 2.64k]
  ------------------
 4588|    126|        return xasprintf("Encap hdr not supported: %s", value);
 4589|    126|    }
 4590|  2.64k|    if (!parse_ed_prop_class(key, &prop_class)) {
  ------------------
  |  Branch (4590:9): [True: 0, False: 2.64k]
  ------------------
 4591|      0|        return xasprintf("Invalid encap prop class: %s", key);
 4592|      0|    }
 4593|       |    /* Parse encap properties. */
 4594|  2.64k|    error = parse_ed_props(prop_class, &value, &n_props, pp->ofpacts);
 4595|  2.64k|    if (error != NULL) {
  ------------------
  |  Branch (4595:9): [True: 68, False: 2.57k]
  ------------------
 4596|     68|        return error;
 4597|     68|    }
 4598|       |    /* ofpbuf may have been re-allocated. */
 4599|  2.57k|    encap = pp->ofpacts->header;
 4600|  2.57k|    encap->n_props = n_props;
 4601|       |
 4602|  2.57k|    if (ofpbuf_oversized(pp->ofpacts)) {
  ------------------
  |  Branch (4602:9): [True: 0, False: 2.57k]
  ------------------
 4603|      0|        return xasprintf("input too big");
 4604|      0|    }
 4605|       |
 4606|  2.57k|    ofpact_finish_ENCAP(pp->ofpacts, &encap);
 4607|       |    return NULL;
 4608|  2.57k|}
ofp-actions.c:parse_encap_header:
 4528|  2.77k|{
 4529|  2.77k|    if (strcmp(hdr, "ethernet") == 0) {
  ------------------
  |  Branch (4529:9): [True: 357, False: 2.41k]
  ------------------
 4530|    357|        *packet_type = htonl(PT_ETH);
 4531|  2.41k|    } else if (strcmp(hdr, "nsh") == 0) {
  ------------------
  |  Branch (4531:16): [True: 1.30k, False: 1.10k]
  ------------------
 4532|  1.30k|        *packet_type = htonl(PT_NSH);
 4533|  1.30k|    } else if (strcmp(hdr, "mpls") == 0) {
  ------------------
  |  Branch (4533:16): [True: 384, False: 725]
  ------------------
 4534|    384|        *packet_type = htonl(PT_MPLS);
 4535|    725|    } else if (strcmp(hdr, "mpls_mc") == 0) {
  ------------------
  |  Branch (4535:16): [True: 599, False: 126]
  ------------------
 4536|    599|        *packet_type = htonl(PT_MPLS_MC);
 4537|    599|    } else {
 4538|    126|        return false;
 4539|    126|    }
 4540|  2.64k|    return true;
 4541|  2.77k|}
ofp-actions.c:parse_ed_props:
 4545|  2.64k|{
 4546|  2.64k|    char *key, *value, *err;
 4547|  2.64k|    uint8_t prop_type;
 4548|       |
 4549|  4.62k|    while (ofputil_parse_key_value(arg, &key, &value)) {
  ------------------
  |  Branch (4549:12): [True: 2.05k, False: 2.57k]
  ------------------
 4550|  2.05k|        if (!parse_ed_prop_type(prop_class, key, &prop_type)) {
  ------------------
  |  Branch (4550:13): [True: 57, False: 1.99k]
  ------------------
 4551|     57|            return xasprintf("Invalid property: %s", key);
 4552|     57|        }
 4553|  1.99k|        if (value == NULL) {
  ------------------
  |  Branch (4553:13): [True: 0, False: 1.99k]
  ------------------
 4554|      0|            return xasprintf("Missing the value for property: %s", key);
 4555|      0|        }
 4556|  1.99k|        err = parse_ed_prop_value(prop_class, prop_type, value, out);
 4557|  1.99k|        if (err != NULL) {
  ------------------
  |  Branch (4557:13): [True: 11, False: 1.98k]
  ------------------
 4558|     11|            return err;
 4559|     11|        }
 4560|  1.98k|        (*n_props)++;
 4561|  1.98k|    }
 4562|  2.57k|    return NULL;
 4563|  2.64k|}
ofp-actions.c:parse_DECAP:
 4724|  3.12k|{
 4725|  3.12k|    struct ofpact_decap *decap;
 4726|  3.12k|    char *key, *value, *pos;
 4727|  3.12k|    char *error = NULL;
 4728|  3.12k|    uint16_t ns, type;
 4729|       |
 4730|  3.12k|    decap = ofpact_put_DECAP(pp->ofpacts);
 4731|       |    /* Default next packet_type is PT_USE_NEXT_PROTO. */
 4732|  3.12k|    decap->new_pkt_type = htonl(PT_USE_NEXT_PROTO);
 4733|       |
 4734|       |    /* Parse decap packet_type if given. */
 4735|  3.12k|    if (ofputil_parse_key_value(&arg, &key, &value)) {
  ------------------
  |  Branch (4735:9): [True: 123, False: 3.00k]
  ------------------
 4736|    123|        if (strcmp(key, "packet_type") == 0) {
  ------------------
  |  Branch (4736:13): [True: 28, False: 95]
  ------------------
 4737|     28|            pos = value;
 4738|     28|            if (!ofputil_parse_key_value(&pos, &key, &value)
  ------------------
  |  Branch (4738:17): [True: 1, False: 27]
  ------------------
 4739|     27|                || strcmp(key, "ns") != 0) {
  ------------------
  |  Branch (4739:20): [True: 9, False: 18]
  ------------------
 4740|     10|                return xstrdup("Missing packet_type attribute ns");
 4741|     10|            }
 4742|     18|            error = str_to_u16(value, "ns", &ns);
 4743|     18|            if (error) {
  ------------------
  |  Branch (4743:17): [True: 1, False: 17]
  ------------------
 4744|      1|                return error;
 4745|      1|            }
 4746|     17|            if (ns >= OFPHTN_N_TYPES) {
  ------------------
  |  Branch (4746:17): [True: 3, False: 14]
  ------------------
 4747|      3|                return xasprintf("Unsupported ns value: %"PRIu16, ns);
 4748|      3|            }
 4749|     14|            if (!ofputil_parse_key_value(&pos, &key, &value)
  ------------------
  |  Branch (4749:17): [True: 1, False: 13]
  ------------------
 4750|     13|                || strcmp(key, "type") != 0) {
  ------------------
  |  Branch (4750:20): [True: 11, False: 2]
  ------------------
 4751|     12|                return xstrdup("Missing packet_type attribute type");
 4752|     12|            }
 4753|      2|            error = str_to_u16(value, "type", &type);
 4754|      2|            if (error) {
  ------------------
  |  Branch (4754:17): [True: 1, False: 1]
  ------------------
 4755|      1|                return error;
 4756|      1|            }
 4757|      1|            decap->new_pkt_type = htonl(PACKET_TYPE(ns, type));
 4758|     95|        } else {
 4759|     95|            return xasprintf("Invalid decap argument: %s", key);
 4760|     95|        }
 4761|    123|    }
 4762|  3.00k|    return NULL;
 4763|  3.12k|}
ofp-actions.c:parse_SET_TUNNEL:
 4160|    751|{
 4161|    751|    return parse_set_tunnel(arg, NXAST_RAW_SET_TUNNEL, pp);
 4162|    751|}
ofp-actions.c:parse_SET_QUEUE:
 4284|    274|{
 4285|    274|    return str_to_u32(arg, &ofpact_put_SET_QUEUE(pp->ofpacts)->queue_id);
 4286|    274|}
ofp-actions.c:parse_POP_QUEUE:
 4322|    730|{
 4323|    730|    ofpact_put_POP_QUEUE(pp->ofpacts);
 4324|       |    return NULL;
 4325|    730|}
ofp-actions.c:parse_FIN_TIMEOUT:
 4400|  1.37k|{
 4401|  1.37k|    struct ofpact_fin_timeout *oft = ofpact_put_FIN_TIMEOUT(pp->ofpacts);
 4402|  1.37k|    char *key, *value;
 4403|       |
 4404|  2.28k|    while (ofputil_parse_key_value(&arg, &key, &value)) {
  ------------------
  |  Branch (4404:12): [True: 1.10k, False: 1.18k]
  ------------------
 4405|  1.10k|        char *error;
 4406|       |
 4407|  1.10k|        if (!strcmp(key, "idle_timeout")) {
  ------------------
  |  Branch (4407:13): [True: 226, False: 880]
  ------------------
 4408|    226|            error =  str_to_u16(value, key, &oft->fin_idle_timeout);
 4409|    880|        } else if (!strcmp(key, "hard_timeout")) {
  ------------------
  |  Branch (4409:20): [True: 698, False: 182]
  ------------------
 4410|    698|            error = str_to_u16(value, key, &oft->fin_hard_timeout);
 4411|    698|        } else {
 4412|    182|            error = xasprintf("invalid key '%s' in 'fin_timeout' argument",
 4413|    182|                              key);
 4414|    182|        }
 4415|       |
 4416|  1.10k|        if (error) {
  ------------------
  |  Branch (4416:13): [True: 187, False: 919]
  ------------------
 4417|    187|            return error;
 4418|    187|        }
 4419|  1.10k|    }
 4420|  1.18k|    return NULL;
 4421|  1.37k|}
ofp-actions.c:parse_RESUBMIT:
 4982|  2.97k|{
 4983|  2.97k|    struct ofpact_resubmit *resubmit;
 4984|  2.97k|    char *in_port_s, *table_s, *ct_s;
 4985|       |
 4986|  2.97k|    resubmit = ofpact_put_RESUBMIT(pp->ofpacts);
 4987|       |
 4988|  2.97k|    in_port_s = strsep(&arg, ",");
 4989|  2.97k|    if (in_port_s && in_port_s[0]) {
  ------------------
  |  Branch (4989:9): [True: 2.97k, False: 0]
  |  Branch (4989:22): [True: 2.22k, False: 745]
  ------------------
 4990|  2.22k|        if (!ofputil_port_from_string(in_port_s, pp->port_map,
  ------------------
  |  Branch (4990:13): [True: 2, False: 2.22k]
  ------------------
 4991|  2.22k|                                      &resubmit->in_port)) {
 4992|      2|            return xasprintf("%s: resubmit to unknown port", in_port_s);
 4993|      2|        }
 4994|  2.22k|    } else {
 4995|    745|        resubmit->in_port = OFPP_IN_PORT;
  ------------------
  |  |   39|    745|#define OFPP_IN_PORT    OFP_PORT_C(0xfff8) /* Where the packet came in. */
  |  |  ------------------
  |  |  |  |  157|    745|#define OFP_PORT_C(X) ((OVS_FORCE ofp_port_t) (X))
  |  |  ------------------
  ------------------
 4996|    745|    }
 4997|       |
 4998|  2.97k|    table_s = strsep(&arg, ",");
 4999|  2.97k|    if (table_s && table_s[0]) {
  ------------------
  |  Branch (4999:9): [True: 2.40k, False: 563]
  |  Branch (4999:20): [True: 793, False: 1.61k]
  ------------------
 5000|    793|        if (!ofputil_table_from_string(table_s, pp->table_map,
  ------------------
  |  Branch (5000:13): [True: 1, False: 792]
  ------------------
 5001|    793|                                       &resubmit->table_id)) {
 5002|      1|            return xasprintf("%s: resubmit to unknown table", table_s);
 5003|      1|        }
 5004|  2.17k|    } else {
 5005|  2.17k|        resubmit->table_id = 255;
 5006|  2.17k|    }
 5007|       |
 5008|  2.96k|    ct_s = strsep(&arg, ",");
 5009|  2.96k|    if (ct_s && ct_s[0]) {
  ------------------
  |  Branch (5009:9): [True: 917, False: 2.05k]
  |  Branch (5009:17): [True: 409, False: 508]
  ------------------
 5010|    409|        if (strcmp(ct_s, "ct")) {
  ------------------
  |  Branch (5010:13): [True: 11, False: 398]
  ------------------
 5011|     11|            return xasprintf("%s: unknown parameter", ct_s);
 5012|     11|        }
 5013|    398|        resubmit->with_ct_orig = true;
 5014|  2.56k|    } else {
 5015|  2.56k|        resubmit->with_ct_orig = false;
 5016|  2.56k|    }
 5017|       |
 5018|  2.95k|    if (resubmit->in_port == OFPP_IN_PORT && resubmit->table_id == 255) {
  ------------------
  |  |   39|  2.95k|#define OFPP_IN_PORT    OFP_PORT_C(0xfff8) /* Where the packet came in. */
  |  |  ------------------
  |  |  |  |  157|  5.91k|#define OFP_PORT_C(X) ((OVS_FORCE ofp_port_t) (X))
  |  |  ------------------
  ------------------
  |  Branch (5018:9): [True: 741, False: 2.21k]
  |  Branch (5018:46): [True: 13, False: 728]
  ------------------
 5019|     13|        return xstrdup("at least one \"in_port\" or \"table\" must be "
 5020|     13|                       "specified on resubmit");
 5021|     13|    }
 5022|  2.94k|    return NULL;
 5023|  2.95k|}
ofp-actions.c:parse_LEARN:
 5632|  36.2k|{
 5633|  36.2k|    return learn_parse(arg, pp->port_map, pp->table_map, pp->ofpacts);
 5634|  36.2k|}
ofp-actions.c:parse_CONJUNCTION:
 5710|    568|{
 5711|    568|    uint8_t n_clauses;
 5712|    568|    uint8_t clause;
 5713|    568|    uint32_t id;
 5714|    568|    int n;
 5715|       |
 5716|    568|    if (!ovs_scan(arg, "%"SCNi32" , %"SCNu8" / %"SCNu8" %n",
  ------------------
  |  Branch (5716:9): [True: 8, False: 560]
  ------------------
 5717|    568|                  &id, &clause, &n_clauses, &n) || n != strlen(arg)) {
  ------------------
  |  Branch (5717:52): [True: 13, False: 547]
  ------------------
 5718|     21|        return xstrdup("\"conjunction\" syntax is \"conjunction(id,i/n)\"");
 5719|     21|    }
 5720|       |
 5721|    547|    if (n_clauses < 2) {
  ------------------
  |  Branch (5721:9): [True: 1, False: 546]
  ------------------
 5722|      1|        return xstrdup("conjunction must have at least 2 clauses");
 5723|    546|    } else if (n_clauses > 64) {
  ------------------
  |  Branch (5723:16): [True: 1, False: 545]
  ------------------
 5724|      1|        return xstrdup("conjunction must have at most 64 clauses");
 5725|    545|    } else if (clause < 1) {
  ------------------
  |  Branch (5725:16): [True: 2, False: 543]
  ------------------
 5726|      2|        return xstrdup("clause index must be positive");
 5727|    543|    } else if (clause > n_clauses) {
  ------------------
  |  Branch (5727:16): [True: 1, False: 542]
  ------------------
 5728|      1|        return xstrdup("clause index must be less than or equal to "
 5729|      1|                       "number of clauses");
 5730|      1|    }
 5731|       |
 5732|    542|    add_conjunction(pp->ofpacts, id, clause - 1, n_clauses);
 5733|       |    return NULL;
 5734|    547|}
ofp-actions.c:parse_MULTIPATH:
 5859|  2.45k|{
 5860|  2.45k|    return multipath_parse(ofpact_put_MULTIPATH(pp->ofpacts), arg);
 5861|  2.45k|}
ofp-actions.c:parse_NOTE:
 5929|  2.02k|{
 5930|  2.02k|    size_t start_ofs = pp->ofpacts->size;
 5931|  2.02k|    ofpact_put_NOTE(pp->ofpacts);
 5932|  2.02k|    arg = ofpbuf_put_hex(pp->ofpacts, arg, NULL);
 5933|  2.02k|    if (arg[0]) {
  ------------------
  |  Branch (5933:9): [True: 10, False: 2.01k]
  ------------------
 5934|     10|        return xstrdup("bad hex digit in `note' argument");
 5935|     10|    }
 5936|  2.01k|    struct ofpact_note *note = ofpbuf_at_assert(pp->ofpacts, start_ofs,
 5937|  2.01k|                                                sizeof *note);
 5938|  2.01k|    note->length = pp->ofpacts->size - (start_ofs + sizeof *note);
 5939|       |
 5940|  2.01k|    if (ofpbuf_oversized(pp->ofpacts)) {
  ------------------
  |  Branch (5940:9): [True: 1, False: 2.01k]
  ------------------
 5941|      1|        return xasprintf("input too big");
 5942|      1|    }
 5943|       |
 5944|  2.01k|    ofpact_finish_NOTE(pp->ofpacts, &note);
 5945|       |    return NULL;
 5946|  2.01k|}
ofp-actions.c:parse_EXIT:
 5981|  2.21k|{
 5982|  2.21k|    ofpact_put_EXIT(pp->ofpacts);
 5983|       |    return NULL;
 5984|  2.21k|}
ofp-actions.c:parse_SAMPLE:
 6454|  2.20k|{
 6455|  2.20k|    struct ofpact_sample *os = ofpact_put_SAMPLE(pp->ofpacts);
 6456|  2.20k|    os->sampling_port = OFPP_NONE;
  ------------------
  |  |   47|  2.20k|#define OFPP_NONE       OFP_PORT_C(0xffff) /* Not associated with any port. */
  |  |  ------------------
  |  |  |  |  157|  2.20k|#define OFP_PORT_C(X) ((OVS_FORCE ofp_port_t) (X))
  |  |  ------------------
  ------------------
 6457|  2.20k|    os->direction = NX_ACTION_SAMPLE_DEFAULT;
 6458|       |
 6459|  2.20k|    char *key, *value;
 6460|  7.01k|    while (ofputil_parse_key_value(&arg, &key, &value)) {
  ------------------
  |  Branch (6460:12): [True: 4.98k, False: 2.02k]
  ------------------
 6461|  4.98k|        char *error = NULL;
 6462|       |
 6463|  4.98k|        if (!strcmp(key, "probability")) {
  ------------------
  |  Branch (6463:13): [True: 2.01k, False: 2.96k]
  ------------------
 6464|  2.01k|            error = str_to_u16(value, "probability", &os->probability);
 6465|  2.01k|            if (!error && os->probability == 0) {
  ------------------
  |  Branch (6465:17): [True: 2.01k, False: 1]
  |  Branch (6465:27): [True: 1, False: 2.01k]
  ------------------
 6466|      1|                error = xasprintf("invalid probability value \"%s\"", value);
 6467|      1|            }
 6468|  2.96k|        } else if (!strcmp(key, "collector_set_id")) {
  ------------------
  |  Branch (6468:20): [True: 75, False: 2.89k]
  ------------------
 6469|     75|            error = str_to_u32(value, &os->collector_set_id);
 6470|  2.89k|        } else if (!strcmp(key, "obs_domain_id")) {
  ------------------
  |  Branch (6470:20): [True: 721, False: 2.17k]
  ------------------
 6471|    721|            error = str_to_u32(value, &os->obs_domain_imm);
 6472|       |
 6473|    721|            if (error) {
  ------------------
  |  Branch (6473:17): [True: 401, False: 320]
  ------------------
 6474|    401|                free(error);
 6475|    401|                error = mf_parse_subfield(&os->obs_domain_src, value);
 6476|    401|                if (error) {
  ------------------
  |  Branch (6476:21): [True: 1, False: 400]
  ------------------
 6477|      1|                    return error;
 6478|      1|                }
 6479|    400|                if (os->obs_domain_src.n_bits > 32) {
  ------------------
  |  Branch (6479:21): [True: 1, False: 399]
  ------------------
 6480|      1|                    return xasprintf("size of obs_domain_id field (%d) "
 6481|      1|                                     "exceeds maximum (32)",
 6482|      1|                                     os->obs_domain_src.n_bits);
 6483|      1|                }
 6484|    400|            }
 6485|  2.17k|        } else if (!strcmp(key, "obs_point_id")) {
  ------------------
  |  Branch (6485:20): [True: 659, False: 1.51k]
  ------------------
 6486|    659|            error = str_to_u32(value, &os->obs_point_imm);
 6487|       |
 6488|    659|            if (error) {
  ------------------
  |  Branch (6488:17): [True: 320, False: 339]
  ------------------
 6489|    320|                free(error);
 6490|    320|                error = mf_parse_subfield(&os->obs_point_src, value);
 6491|    320|                if (error) {
  ------------------
  |  Branch (6491:21): [True: 6, False: 314]
  ------------------
 6492|      6|                    return error;
 6493|      6|                }
 6494|    314|                if (os->obs_point_src.n_bits > 32) {
  ------------------
  |  Branch (6494:21): [True: 1, False: 313]
  ------------------
 6495|      1|                    return xasprintf("size of obs_point_id field (%d) "
 6496|      1|                                     "exceeds maximum (32)",
 6497|      1|                                     os->obs_point_src.n_bits);
 6498|      1|                }
 6499|    314|            }
 6500|  1.51k|        } else if (!strcmp(key, "sampling_port")) {
  ------------------
  |  Branch (6500:20): [True: 272, False: 1.24k]
  ------------------
 6501|    272|            if (!ofputil_port_from_string(value, pp->port_map,
  ------------------
  |  Branch (6501:17): [True: 1, False: 271]
  ------------------
 6502|    272|                                          &os->sampling_port)) {
 6503|      1|                error = xasprintf("%s: unknown port", value);
 6504|      1|            }
 6505|  1.24k|        } else if (!strcmp(key, "ingress")) {
  ------------------
  |  Branch (6505:20): [True: 754, False: 486]
  ------------------
 6506|    754|            os->direction = NX_ACTION_SAMPLE_INGRESS;
 6507|    754|        } else if (!strcmp(key, "egress")) {
  ------------------
  |  Branch (6507:20): [True: 330, False: 156]
  ------------------
 6508|    330|            os->direction = NX_ACTION_SAMPLE_EGRESS;
 6509|    330|        } else {
 6510|    156|            error = xasprintf("invalid key \"%s\" in \"sample\" argument",
 6511|    156|                              key);
 6512|    156|        }
 6513|  4.97k|        if (error) {
  ------------------
  |  Branch (6513:13): [True: 164, False: 4.81k]
  ------------------
 6514|    164|            return error;
 6515|    164|        }
 6516|  4.97k|    }
 6517|  2.02k|    if (os->probability == 0) {
  ------------------
  |  Branch (6517:9): [True: 28, False: 2.00k]
  ------------------
 6518|     28|        return xstrdup("non-zero \"probability\" must be specified on sample");
 6519|     28|    }
 6520|       |
 6521|  2.00k|    return NULL;
 6522|  2.02k|}
ofp-actions.c:parse_UNROLL_XLATE:
 6013|      1|{
 6014|      1|    return xasprintf("UNROLL is an internal action "
 6015|      1|                     "that shouldn't be used via OpenFlow");
 6016|      1|}
ofp-actions.c:parse_CT:
 6924|  20.8k|{
 6925|  20.8k|    const size_t ct_offset = ofpacts_pull(pp->ofpacts);
 6926|  20.8k|    struct ofpact_conntrack *oc;
 6927|  20.8k|    char *error = NULL;
 6928|  20.8k|    char *key, *value;
 6929|       |
 6930|  20.8k|    oc = ofpact_put_CT(pp->ofpacts);
 6931|  20.8k|    oc->flags = 0;
 6932|  20.8k|    oc->recirc_table = NX_CT_RECIRC_NONE;
  ------------------
  |  |  692|  20.8k|#define NX_CT_RECIRC_NONE OFPTT_ALL
  ------------------
 6933|  94.6k|    while (ofputil_parse_key_value(&arg, &key, &value)) {
  ------------------
  |  Branch (6933:12): [True: 74.7k, False: 19.8k]
  ------------------
 6934|  74.7k|        if (!strcmp(key, "commit")) {
  ------------------
  |  Branch (6934:13): [True: 210, False: 74.5k]
  ------------------
 6935|    210|            oc->flags |= NX_CT_F_COMMIT;
 6936|  74.5k|        } else if (!strcmp(key, "force")) {
  ------------------
  |  Branch (6936:20): [True: 214, False: 74.3k]
  ------------------
 6937|    214|            oc->flags |= NX_CT_F_FORCE;
 6938|  74.3k|        } else if (!strcmp(key, "table")) {
  ------------------
  |  Branch (6938:20): [True: 1.24k, False: 73.1k]
  ------------------
 6939|  1.24k|            if (!ofputil_table_from_string(value, pp->table_map,
  ------------------
  |  Branch (6939:17): [True: 2, False: 1.24k]
  ------------------
 6940|  1.24k|                                           &oc->recirc_table)) {
 6941|      2|                error = xasprintf("unknown table %s", value);
 6942|  1.24k|            } else if (oc->recirc_table == NX_CT_RECIRC_NONE) {
  ------------------
  |  |  692|  1.24k|#define NX_CT_RECIRC_NONE OFPTT_ALL
  ------------------
  |  Branch (6942:24): [True: 1, False: 1.23k]
  ------------------
 6943|      1|                error = xasprintf("invalid table %#"PRIx8, oc->recirc_table);
 6944|      1|            }
 6945|  73.1k|        } else if (!strcmp(key, "zone")) {
  ------------------
  |  Branch (6945:20): [True: 573, False: 72.5k]
  ------------------
 6946|    573|            error = str_to_u16(value, "zone", &oc->zone_imm);
 6947|       |
 6948|    573|            if (error) {
  ------------------
  |  Branch (6948:17): [True: 377, False: 196]
  ------------------
 6949|    377|                free(error);
 6950|    377|                error = mf_parse_subfield(&oc->zone_src, value);
 6951|    377|                if (error) {
  ------------------
  |  Branch (6951:21): [True: 11, False: 366]
  ------------------
 6952|     11|                    return error;
 6953|     11|                }
 6954|    377|            }
 6955|  72.5k|        } else if (!strcmp(key, "alg")) {
  ------------------
  |  Branch (6955:20): [True: 338, False: 72.2k]
  ------------------
 6956|    338|            error = str_to_connhelper(value, &oc->alg);
 6957|  72.2k|        } else if (!strcmp(key, "nat")) {
  ------------------
  |  Branch (6957:20): [True: 70.3k, False: 1.83k]
  ------------------
 6958|  70.3k|            const size_t nat_offset = ofpacts_pull(pp->ofpacts);
 6959|       |
 6960|  70.3k|            error = parse_NAT(value, pp);
 6961|       |            /* Update CT action pointer and length. */
 6962|  70.3k|            pp->ofpacts->header = ofpbuf_push_uninit(pp->ofpacts, nat_offset);
 6963|  70.3k|            oc = pp->ofpacts->header;
 6964|  70.3k|        } else if (!strcmp(key, "exec")) {
  ------------------
  |  Branch (6964:20): [True: 1.61k, False: 215]
  ------------------
 6965|       |            /* Hide existing actions from ofpacts_parse_copy(), so the
 6966|       |             * nesting can be handled transparently. */
 6967|  1.61k|            enum ofputil_protocol usable_protocols2;
 6968|  1.61k|            const size_t exec_offset = ofpacts_pull(pp->ofpacts);
 6969|       |
 6970|       |            /* Initializes 'usable_protocol2', fold it back to
 6971|       |             * '*usable_protocols' afterwards, so that we do not lose
 6972|       |             * restrictions already in there. */
 6973|  1.61k|            struct ofpact_parse_params pp2 = *pp;
 6974|  1.61k|            pp2.usable_protocols = &usable_protocols2;
 6975|  1.61k|            error = ofpacts_parse_copy(value, &pp2, false, OFPACT_CT);
 6976|  1.61k|            *pp->usable_protocols &= usable_protocols2;
 6977|  1.61k|            pp->ofpacts->header = ofpbuf_push_uninit(pp->ofpacts, exec_offset);
 6978|  1.61k|            oc = pp->ofpacts->header;
 6979|  1.61k|        } else {
 6980|    215|            error = xasprintf("invalid argument to \"ct\" action: `%s'", key);
 6981|    215|        }
 6982|  74.7k|        if (error) {
  ------------------
  |  Branch (6982:13): [True: 1.06k, False: 73.7k]
  ------------------
 6983|  1.06k|            break;
 6984|  1.06k|        }
 6985|  74.7k|    }
 6986|  20.8k|    if (!error && oc->flags & NX_CT_F_FORCE && !(oc->flags & NX_CT_F_COMMIT)) {
  ------------------
  |  Branch (6986:9): [True: 19.8k, False: 1.06k]
  |  Branch (6986:19): [True: 72, False: 19.7k]
  |  Branch (6986:48): [True: 4, False: 68]
  ------------------
 6987|      4|        error = xasprintf("\"force\" flag requires \"commit\" flag.");
 6988|      4|    }
 6989|       |
 6990|  20.8k|    if (ofpbuf_oversized(pp->ofpacts)) {
  ------------------
  |  Branch (6990:9): [True: 3, False: 20.8k]
  ------------------
 6991|      3|        free(error);
 6992|      3|        return xasprintf("input too big");
 6993|      3|    }
 6994|       |
 6995|  20.8k|    ofpact_finish_CT(pp->ofpacts, &oc);
 6996|  20.8k|    ofpbuf_push_uninit(pp->ofpacts, ct_offset);
 6997|  20.8k|    return error;
 6998|  20.8k|}
ofp-actions.c:parse_CT_CLEAR:
 7107|  1.69k|{
 7108|  1.69k|    ofpact_put_CT_CLEAR(pp->ofpacts);
 7109|       |    return NULL;
 7110|  1.69k|}
ofp-actions.c:parse_NAT:
 7430|  80.7k|{
 7431|  80.7k|    struct ofpact_nat *on = ofpact_put_NAT(pp->ofpacts);
 7432|  80.7k|    char *key, *value;
 7433|       |
 7434|  80.7k|    on->flags = 0;
 7435|  80.7k|    on->range_af = AF_UNSPEC;
 7436|       |
 7437|   146k|    while (ofputil_parse_key_value(&arg, &key, &value)) {
  ------------------
  |  Branch (7437:12): [True: 65.5k, False: 80.5k]
  ------------------
 7438|  65.5k|        char *error = NULL;
 7439|       |
 7440|  65.5k|        if (!strcmp(key, "src")) {
  ------------------
  |  Branch (7440:13): [True: 1.61k, False: 63.9k]
  ------------------
 7441|  1.61k|            on->flags |= NX_NAT_F_SRC;
 7442|  1.61k|            error = str_to_nat_range(value, on);
 7443|  63.9k|        } else if (!strcmp(key, "dst")) {
  ------------------
  |  Branch (7443:20): [True: 63.2k, False: 661]
  ------------------
 7444|  63.2k|            on->flags |= NX_NAT_F_DST;
 7445|  63.2k|            error = str_to_nat_range(value, on);
 7446|  63.2k|        } else if (!strcmp(key, "persistent")) {
  ------------------
  |  Branch (7446:20): [True: 195, False: 466]
  ------------------
 7447|    195|            on->flags |= NX_NAT_F_PERSISTENT;
 7448|    466|        } else if (!strcmp(key, "hash")) {
  ------------------
  |  Branch (7448:20): [True: 225, False: 241]
  ------------------
 7449|    225|            on->flags |= NX_NAT_F_PROTO_HASH;
 7450|    241|        } else if (!strcmp(key, "random")) {
  ------------------
  |  Branch (7450:20): [True: 195, False: 46]
  ------------------
 7451|    195|            on->flags |= NX_NAT_F_PROTO_RANDOM;
 7452|    195|        } else {
 7453|     46|            error = xasprintf("invalid key \"%s\" in \"nat\" argument",
 7454|     46|                              key);
 7455|     46|        }
 7456|  65.5k|        if (error) {
  ------------------
  |  Branch (7456:13): [True: 157, False: 65.3k]
  ------------------
 7457|    157|            return error;
 7458|    157|        }
 7459|  65.5k|    }
 7460|  80.5k|    if (on->flags & NX_NAT_F_SRC && on->flags & NX_NAT_F_DST) {
  ------------------
  |  Branch (7460:9): [True: 341, False: 80.2k]
  |  Branch (7460:37): [True: 1, False: 340]
  ------------------
 7461|      1|        return xasprintf("May only specify one of \"src\" or \"dst\".");
 7462|      1|    }
 7463|  80.5k|    if (!(on->flags & NX_NAT_F_SRC || on->flags & NX_NAT_F_DST)) {
  ------------------
  |  Branch (7463:11): [True: 340, False: 80.2k]
  |  Branch (7463:39): [True: 62.2k, False: 17.9k]
  ------------------
 7464|  17.9k|        if (on->flags) {
  ------------------
  |  Branch (7464:13): [True: 15, False: 17.9k]
  ------------------
 7465|     15|            return xasprintf("Flags allowed only with \"src\" or \"dst\".");
 7466|     15|        }
 7467|  17.9k|        if (on->range_af != AF_UNSPEC) {
  ------------------
  |  Branch (7467:13): [True: 0, False: 17.9k]
  ------------------
 7468|      0|            return xasprintf("Range allowed only with \"src\" or \"dst\".");
 7469|      0|        }
 7470|  17.9k|    }
 7471|  80.5k|    if (on->flags & NX_NAT_F_PROTO_HASH && on->flags & NX_NAT_F_PROTO_RANDOM) {
  ------------------
  |  Branch (7471:9): [True: 209, False: 80.3k]
  |  Branch (7471:44): [True: 1, False: 208]
  ------------------
 7472|      1|        return xasprintf("Both \"hash\" and \"random\" are not allowed.");
 7473|      1|    }
 7474|       |
 7475|  80.5k|    return NULL;
 7476|  80.5k|}
ofp-actions.c:str_to_nat_range:
 7366|  64.8k|{
 7367|  64.8k|    char ipv6_s[IPV6_SCAN_LEN + 1];
 7368|  64.8k|    int n = 0;
 7369|       |
 7370|  64.8k|    on->range_af = AF_UNSPEC;
 7371|  64.8k|    if (ovs_scan_len(s, &n, IP_SCAN_FMT,
  ------------------
  |  |  645|  64.8k|#define IP_SCAN_FMT "%"SCNu8".%"SCNu8".%"SCNu8".%"SCNu8
  ------------------
  |  Branch (7371:9): [True: 874, False: 64.0k]
  ------------------
 7372|  64.8k|                     IP_SCAN_ARGS(&on->range.addr.ipv4.min))) {
  ------------------
  |  |  647|  64.8k|        ((void) (ovs_be32) *(ip), &((uint8_t *) ip)[0]),    \
  |  |  648|  64.8k|        &((uint8_t *) ip)[1],                               \
  |  |  649|  64.8k|        &((uint8_t *) ip)[2],                               \
  |  |  650|  64.8k|        &((uint8_t *) ip)[3]
  ------------------
 7373|    874|        on->range_af = AF_INET;
 7374|       |
 7375|    874|        if (s[n] == '-') {
  ------------------
  |  Branch (7375:13): [True: 249, False: 625]
  ------------------
 7376|    249|            n++;
 7377|    249|            if (!ovs_scan_len(s, &n, IP_SCAN_FMT,
  ------------------
  |  |  645|    249|#define IP_SCAN_FMT "%"SCNu8".%"SCNu8".%"SCNu8".%"SCNu8
  ------------------
  |  Branch (7377:17): [True: 1, False: 248]
  ------------------
 7378|    249|                              IP_SCAN_ARGS(&on->range.addr.ipv4.max))
  ------------------
  |  |  647|    249|        ((void) (ovs_be32) *(ip), &((uint8_t *) ip)[0]),    \
  |  |  648|    249|        &((uint8_t *) ip)[1],                               \
  |  |  649|    249|        &((uint8_t *) ip)[2],                               \
  |  |  650|    249|        &((uint8_t *) ip)[3]
  ------------------
 7379|    248|                || (ntohl(on->range.addr.ipv4.max)
  ------------------
  |  Branch (7379:20): [True: 3, False: 245]
  ------------------
 7380|    248|                    < ntohl(on->range.addr.ipv4.min))) {
 7381|      4|                goto error;
 7382|      4|            }
 7383|    249|        }
 7384|  64.0k|    } else if ((ovs_scan_len(s, &n, IPV6_SCAN_FMT, ipv6_s)
  ------------------
  |  | 1162|  64.0k|#define IPV6_SCAN_FMT "%46[0123456789abcdefABCDEF:.]"
  ------------------
  |  Branch (7384:17): [True: 60.6k, False: 3.33k]
  ------------------
 7385|  3.33k|                || ovs_scan_len(s, &n, "["IPV6_SCAN_FMT"]", ipv6_s))
  ------------------
  |  Branch (7385:20): [True: 2.27k, False: 1.05k]
  ------------------
 7386|  62.9k|               && inet_pton(AF_INET6, ipv6_s, &on->range.addr.ipv6.min) == 1) {
  ------------------
  |  Branch (7386:19): [True: 36.7k, False: 26.2k]
  ------------------
 7387|  36.7k|        on->range_af = AF_INET6;
 7388|       |
 7389|  36.7k|        if (s[n] == '-') {
  ------------------
  |  Branch (7389:13): [True: 1.97k, False: 34.7k]
  ------------------
 7390|  1.97k|            n++;
 7391|  1.97k|            if (!(ovs_scan_len(s, &n, IPV6_SCAN_FMT, ipv6_s)
  ------------------
  |  | 1162|  1.97k|#define IPV6_SCAN_FMT "%46[0123456789abcdefABCDEF:.]"
  ------------------
  |  Branch (7391:19): [True: 1.71k, False: 260]
  ------------------
 7392|    260|                  || ovs_scan_len(s, &n, "["IPV6_SCAN_FMT"]", ipv6_s))
  ------------------
  |  Branch (7392:22): [True: 252, False: 8]
  ------------------
 7393|  1.96k|                || inet_pton(AF_INET6, ipv6_s, &on->range.addr.ipv6.max) != 1
  ------------------
  |  Branch (7393:20): [True: 8, False: 1.95k]
  ------------------
 7394|  1.95k|                || memcmp(&on->range.addr.ipv6.max, &on->range.addr.ipv6.min,
  ------------------
  |  Branch (7394:20): [True: 13, False: 1.94k]
  ------------------
 7395|  1.95k|                          sizeof on->range.addr.ipv6.max) < 0) {
 7396|     29|                goto error;
 7397|     29|            }
 7398|  1.97k|        }
 7399|  36.7k|    }
 7400|  64.8k|    if (on->range_af != AF_UNSPEC && s[n] == ':') {
  ------------------
  |  Branch (7400:9): [True: 37.5k, False: 27.2k]
  |  Branch (7400:38): [True: 1.52k, False: 36.0k]
  ------------------
 7401|  1.52k|        n++;
 7402|  1.52k|        if (!ovs_scan_len(s, &n, "%"SCNu16, &on->range.proto.min)) {
  ------------------
  |  Branch (7402:13): [True: 3, False: 1.52k]
  ------------------
 7403|      3|            goto error;
 7404|      3|        }
 7405|  1.52k|        if (s[n] == '-') {
  ------------------
  |  Branch (7405:13): [True: 766, False: 758]
  ------------------
 7406|    766|            n++;
 7407|    766|            if (!ovs_scan_len(s, &n, "%"SCNu16, &on->range.proto.max)
  ------------------
  |  Branch (7407:17): [True: 3, False: 763]
  ------------------
 7408|    763|                || on->range.proto.max < on->range.proto.min) {
  ------------------
  |  Branch (7408:20): [True: 1, False: 762]
  ------------------
 7409|      4|                goto error;
 7410|      4|            }
 7411|    766|        }
 7412|  1.52k|    }
 7413|  64.8k|    if (strlen(s) != n) {
  ------------------
  |  Branch (7413:9): [True: 71, False: 64.7k]
  ------------------
 7414|     71|        return xasprintf("garbage (%s) after nat range \"%s\" (pos: %d)",
 7415|     71|                         &s[n], s, n);
 7416|     71|    }
 7417|  64.7k|    return NULL;
 7418|     40|error:
 7419|     40|    return xasprintf("invalid nat range \"%s\"", s);
 7420|  64.8k|}
ofp-actions.c:parse_OUTPUT_TRUNC:
 7532|      1|{
 7533|       |    /* Disable output_trunc parsing.  Expose as output(port=N,max_len=M) and
 7534|       |     * reuse parse_OUTPUT to parse output_trunc action. */
 7535|      1|    return xasprintf("unknown action %s", arg);
 7536|      1|}
ofp-actions.c:parse_CLONE:
 6090|  10.0k|{
 6091|  10.0k|    const size_t clone_offset = ofpacts_pull(pp->ofpacts);
 6092|  10.0k|    struct ofpact_nest *clone = ofpact_put_CLONE(pp->ofpacts);
 6093|  10.0k|    char *error;
 6094|       |
 6095|  10.0k|    ofpbuf_pull(pp->ofpacts, sizeof *clone);
 6096|  10.0k|    error = ofpacts_parse_copy(arg, pp, false, OFPACT_CLONE);
 6097|       |    /* header points to the action list */
 6098|  10.0k|    pp->ofpacts->header = ofpbuf_push_uninit(pp->ofpacts, sizeof *clone);
 6099|  10.0k|    clone = pp->ofpacts->header;
 6100|       |
 6101|  10.0k|    if (ofpbuf_oversized(pp->ofpacts)) {
  ------------------
  |  Branch (6101:9): [True: 1, False: 10.0k]
  ------------------
 6102|      1|        free(error);
 6103|      1|        return xasprintf("input too big");
 6104|      1|    }
 6105|       |
 6106|  10.0k|    ofpact_finish_CLONE(pp->ofpacts, &clone);
 6107|  10.0k|    ofpbuf_push_uninit(pp->ofpacts, clone_offset);
 6108|  10.0k|    return error;
 6109|  10.0k|}
ofp-actions.c:parse_CHECK_PKT_LARGER:
 7866|    787|{
 7867|    787|    char *value;
 7868|    787|    char *delim;
 7869|    787|    char *key;
 7870|    787|    char *error = set_field_split_str(arg, &key, &value, &delim);
 7871|    787|    if (error) {
  ------------------
  |  Branch (7871:9): [True: 4, False: 783]
  ------------------
 7872|      4|        return error;
 7873|      4|    }
 7874|       |
 7875|    783|    delim[0] = '\0';
 7876|    783|    if (value[strlen(value) - 1] == ')') {
  ------------------
  |  Branch (7876:9): [True: 560, False: 223]
  ------------------
 7877|    560|        value[strlen(value) - 1] = '\0';
 7878|    560|    }
 7879|    783|    struct mf_subfield dst;
 7880|    783|    error = mf_parse_subfield(&dst, key);
 7881|    783|    if (error) {
  ------------------
  |  Branch (7881:9): [True: 26, False: 757]
  ------------------
 7882|     26|        return error;
 7883|     26|    }
 7884|       |
 7885|    757|    if (dst.n_bits != 1) {
  ------------------
  |  Branch (7885:9): [True: 2, False: 755]
  ------------------
 7886|      2|        return xstrdup("Only 1-bit destination field is allowed");
 7887|      2|    }
 7888|       |
 7889|    755|    struct ofpact_check_pkt_larger *check_pkt_larger =
 7890|    755|        ofpact_put_CHECK_PKT_LARGER(pp->ofpacts);
 7891|    755|    error = str_to_u16(value, NULL, &check_pkt_larger->pkt_len);
 7892|    755|    if (error) {
  ------------------
  |  Branch (7892:9): [True: 1, False: 754]
  ------------------
 7893|      1|        return error;
 7894|      1|    }
 7895|    754|    check_pkt_larger->dst = dst;
 7896|       |    return NULL;
 7897|    755|}
ofp-actions.c:parse_DEBUG_RECIRC:
 6596|  1.28k|{
 6597|  1.28k|    ofpact_put_DEBUG_RECIRC(pp->ofpacts);
 6598|       |    return NULL;
 6599|  1.28k|}
ofp-actions.c:parse_DEBUG_SLOW:
 6636|  1.91k|{
 6637|  1.91k|    ofpact_put_DEBUG_SLOW(pp->ofpacts);
 6638|       |    return NULL;
 6639|  1.91k|}
ofp-actions.c:parse_METER:
 7585|    566|{
 7586|    566|    *pp->usable_protocols &= OFPUTIL_P_OF13_UP;
  ------------------
  |  |   95|    566|#define OFPUTIL_P_OF13_UP (OFPUTIL_P_OF13_OXM | OFPUTIL_P_OF14_UP)
  |  |  ------------------
  |  |  |  |   96|    566|#define OFPUTIL_P_OF14_UP (OFPUTIL_P_OF14_OXM | OFPUTIL_P_OF15_UP)
  |  |  |  |  ------------------
  |  |  |  |  |  |   97|    566|#define OFPUTIL_P_OF15_UP OFPUTIL_P_OF15_OXM
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 7587|    566|    return str_to_u32(arg, &ofpact_put_METER(pp->ofpacts)->meter_id);
 7588|    566|}
ofp-actions.c:parse_CLEAR_ACTIONS:
 7620|    206|{
 7621|    206|    ofpact_put_CLEAR_ACTIONS(pp->ofpacts);
 7622|       |    return NULL;
 7623|    206|}
ofp-actions.c:parse_WRITE_ACTIONS:
 7658|  1.17k|{
 7659|  1.17k|    size_t ofs = ofpacts_pull(pp->ofpacts);
 7660|  1.17k|    struct ofpact_nest *on;
 7661|  1.17k|    char *error;
 7662|       |
 7663|       |    /* Add a Write-Actions instruction and then pull it off. */
 7664|  1.17k|    ofpact_put(pp->ofpacts, OFPACT_WRITE_ACTIONS, sizeof *on);
 7665|  1.17k|    ofpbuf_pull(pp->ofpacts, sizeof *on);
 7666|       |
 7667|       |    /* Parse nested actions.
 7668|       |     *
 7669|       |     * We pulled off "write-actions" and the previous actions because the
 7670|       |     * OFPACT_WRITE_ACTIONS is only partially constructed: its length is such
 7671|       |     * that it doesn't actually include the nested actions.  That means that
 7672|       |     * ofpacts_parse() would reject them as being part of an Apply-Actions that
 7673|       |     * follows a Write-Actions, which is an invalid order.  */
 7674|  1.17k|    error = ofpacts_parse(arg, pp, false, OFPACT_WRITE_ACTIONS);
 7675|       |
 7676|       |    /* Put the Write-Actions back on and update its length. */
 7677|  1.17k|    on = ofpbuf_push_uninit(pp->ofpacts, sizeof *on);
 7678|  1.17k|    on->ofpact.len = pp->ofpacts->size;
 7679|       |
 7680|       |    /* Put any previous actions or instructions back on. */
 7681|  1.17k|    ofpbuf_push_uninit(pp->ofpacts, ofs);
 7682|       |
 7683|  1.17k|    return error;
 7684|  1.17k|}
ofp-actions.c:parse_WRITE_METADATA:
 7758|    707|{
 7759|    707|    struct ofpact_metadata *om;
 7760|    707|    char *mask = strchr(arg, '/');
 7761|       |
 7762|    707|    *pp->usable_protocols &= OFPUTIL_P_NXM_OF11_UP;
  ------------------
  |  |   87|    707|#define OFPUTIL_P_NXM_OF11_UP (OFPUTIL_P_OF10_NXM_ANY | OFPUTIL_P_OF11_STD | \
  |  |  ------------------
  |  |  |  |   59|    707|#define OFPUTIL_P_OF10_NXM_ANY (OFPUTIL_P_OF10_NXM | OFPUTIL_P_OF10_NXM_TID)
  |  |  ------------------
  |  |   88|    707|                               OFPUTIL_P_ANY_OXM)
  |  |  ------------------
  |  |  |  |   82|    707|#define OFPUTIL_P_ANY_OXM (OFPUTIL_P_OF12_OXM | \
  |  |  |  |   83|    707|                           OFPUTIL_P_OF13_OXM | \
  |  |  |  |   84|    707|                           OFPUTIL_P_OF14_OXM | \
  |  |  |  |   85|    707|                           OFPUTIL_P_OF15_OXM)
  |  |  ------------------
  ------------------
 7763|       |
 7764|    707|    om = ofpact_put_WRITE_METADATA(pp->ofpacts);
 7765|    707|    if (mask) {
  ------------------
  |  Branch (7765:9): [True: 339, False: 368]
  ------------------
 7766|    339|        char *error;
 7767|       |
 7768|    339|        *mask = '\0';
 7769|    339|        error = str_to_be64(mask + 1, &om->mask);
 7770|    339|        if (error) {
  ------------------
  |  Branch (7770:13): [True: 2, False: 337]
  ------------------
 7771|      2|            return error;
 7772|      2|        }
 7773|    368|    } else {
 7774|    368|        om->mask = OVS_BE64_MAX;
  ------------------
  |  |   44|    368|#define OVS_BE64_MAX ((OVS_FORCE ovs_be64) 0xffffffffffffffffULL)
  ------------------
 7775|    368|    }
 7776|       |
 7777|    705|    return str_to_be64(arg, &om->metadata);
 7778|    707|}
ofp-actions.c:parse_GOTO_TABLE:
 7939|    247|{
 7940|    247|    struct ofpact_goto_table *ogt = ofpact_put_GOTO_TABLE(pp->ofpacts);
 7941|    247|    if (!ofputil_table_from_string(arg, pp->table_map, &ogt->table_id)) {
  ------------------
  |  Branch (7941:9): [True: 4, False: 243]
  ------------------
 7942|      4|        return xasprintf("unknown table \"%s\"", arg);
 7943|      4|    }
 7944|    243|    return NULL;
 7945|    247|}
ofp-actions.c:parse_set_vlan_vid:
 1613|  2.09k|{
 1614|  2.09k|    struct ofpact_vlan_vid *vlan_vid;
 1615|  2.09k|    uint16_t vid;
 1616|  2.09k|    char *error;
 1617|       |
 1618|  2.09k|    error = str_to_u16(arg, "VLAN VID", &vid);
 1619|  2.09k|    if (error) {
  ------------------
  |  Branch (1619:9): [True: 5, False: 2.09k]
  ------------------
 1620|      5|        return error;
 1621|      5|    }
 1622|       |
 1623|  2.09k|    if (vid & ~VLAN_VID_MASK) {
  ------------------
  |  |  494|  2.09k|#define VLAN_VID_MASK 0x0fff
  ------------------
  |  Branch (1623:9): [True: 8, False: 2.08k]
  ------------------
 1624|      8|        return xasprintf("%s: not a valid VLAN VID", arg);
 1625|      8|    }
 1626|  2.08k|    vlan_vid = ofpact_put_SET_VLAN_VID(pp->ofpacts);
 1627|  2.08k|    vlan_vid->vlan_vid = vid;
 1628|  2.08k|    vlan_vid->push_vlan_if_needed = push_vlan_if_needed;
 1629|       |    return NULL;
 1630|  2.09k|}
ofp-actions.c:parse_set_vlan_pcp:
 1721|  2.37k|{
 1722|  2.37k|    struct ofpact_vlan_pcp *vlan_pcp;
 1723|  2.37k|    uint8_t pcp;
 1724|  2.37k|    char *error;
 1725|       |
 1726|  2.37k|    error = str_to_u8(arg, "VLAN PCP", &pcp);
 1727|  2.37k|    if (error) {
  ------------------
  |  Branch (1727:9): [True: 5, False: 2.36k]
  ------------------
 1728|      5|        return error;
 1729|      5|    }
 1730|       |
 1731|  2.36k|    if (pcp & ~7) {
  ------------------
  |  Branch (1731:9): [True: 3, False: 2.36k]
  ------------------
 1732|      3|        return xasprintf("%s: not a valid VLAN PCP", arg);
 1733|      3|    }
 1734|  2.36k|    vlan_pcp = ofpact_put_SET_VLAN_PCP(pp->ofpacts);
 1735|  2.36k|    vlan_pcp->vlan_pcp = pcp;
 1736|  2.36k|    vlan_pcp->push_vlan_if_needed = push_vlan_if_needed;
 1737|       |    return NULL;
 1738|  2.36k|}
ofp-actions.c:parse_SET_IP_TTL:
 2271|  2.66k|{
 2272|  2.66k|    uint8_t ttl;
 2273|  2.66k|    char *error;
 2274|       |
 2275|  2.66k|    error = str_to_u8(arg, "TTL", &ttl);
 2276|  2.66k|    if (error) {
  ------------------
  |  Branch (2276:9): [True: 28, False: 2.63k]
  ------------------
 2277|     28|        return error;
 2278|     28|    }
 2279|       |
 2280|  2.63k|    ofpact_put_SET_IP_TTL(pp->ofpacts)->ttl = ttl;
 2281|       |    return NULL;
 2282|  2.66k|}
ofp-actions.c:parse_pop_vlan:
 1808|  2.95k|{
 1809|  2.95k|    ofpact_put_STRIP_VLAN(pp->ofpacts)->ofpact.raw = OFPAT_RAW11_POP_VLAN;
 1810|       |    return NULL;
 1811|  2.95k|}
ofp-actions.c:parse_set_tunnel:
 4150|  1.81k|{
 4151|  1.81k|    struct ofpact_tunnel *tunnel;
 4152|       |
 4153|  1.81k|    tunnel = ofpact_put_SET_TUNNEL(pp->ofpacts);
 4154|  1.81k|    tunnel->ofpact.raw = raw;
 4155|  1.81k|    return str_to_u64(arg, &tunnel->tun_id);
 4156|  1.81k|}
ofp-actions.c:parse_reg_load:
 3280|    637|{
 3281|    637|    struct mf_subfield dst;
 3282|    637|    char *key, *value_str;
 3283|    637|    union mf_value value;
 3284|    637|    char *error;
 3285|       |
 3286|    637|    error = set_field_split_str(arg, &key, &value_str, NULL);
 3287|    637|    if (error) {
  ------------------
  |  Branch (3287:9): [True: 2, False: 635]
  ------------------
 3288|      2|        return error;
 3289|      2|    }
 3290|       |
 3291|    635|    error = mf_parse_subfield(&dst, key);
 3292|    635|    if (error) {
  ------------------
  |  Branch (3292:9): [True: 7, False: 628]
  ------------------
 3293|      7|        return error;
 3294|      7|    }
 3295|       |
 3296|    628|    if (parse_int_string(value_str, (uint8_t *)&value, dst.field->n_bytes,
  ------------------
  |  Branch (3296:9): [True: 1, False: 627]
  ------------------
 3297|    628|                         &key)) {
 3298|      1|        return xasprintf("%s: cannot parse integer value", arg);
 3299|      1|    }
 3300|       |
 3301|    627|    if (!bitwise_is_all_zeros(&value, dst.field->n_bytes, dst.n_bits,
  ------------------
  |  Branch (3301:9): [True: 1, False: 626]
  ------------------
 3302|    627|                              dst.field->n_bytes * 8 - dst.n_bits)) {
 3303|      1|        struct ds ds;
 3304|       |
 3305|      1|        ds_init(&ds);
 3306|      1|        mf_format(dst.field, &value, NULL, NULL, &ds);
 3307|      1|        error = xasprintf("%s: value %s does not fit into %d bits",
 3308|      1|                          arg, ds_cstr(&ds), dst.n_bits);
 3309|      1|        ds_destroy(&ds);
 3310|      1|        return error;
 3311|      1|    }
 3312|       |
 3313|    626|    struct ofpact_set_field *sf = ofpact_put_reg_load(pp->ofpacts, dst.field,
 3314|    626|                                                      NULL, NULL);
 3315|       |
 3316|    626|    bitwise_copy(&value, dst.field->n_bytes, 0, sf->value,
 3317|    626|                 dst.field->n_bytes, dst.ofs, dst.n_bits);
 3318|    626|    bitwise_one(ofpact_set_field_mask(sf), dst.field->n_bytes, dst.ofs,
  ------------------
  |  |  563|    626|    ALIGNED_CAST(union mf_value *,                                          \
  |  |  ------------------
  |  |  |  |  434|    626|#define ALIGNED_CAST(TYPE, ATTR) ((TYPE) (void *) (ATTR))
  |  |  ------------------
  |  |  564|    626|                 (uint8_t *)(SF)->value +                                   \
  |  |  565|    626|                            ROUND_UP((SF)->field->n_bytes, OFPACT_ALIGNTO))
  ------------------
 3319|    626|                dst.n_bits);
 3320|       |    return NULL;
 3321|    627|}
ofp-actions.c:parse_bundle_load:
 1538|     10|{
 1539|     10|    return bundle_parse_load(arg, pp->port_map, pp->ofpacts);
 1540|     10|}

ofp-actions.c:put_OFPAT10_OUTPUT:
 4266|  74.6k|put_OFPAT10_OUTPUT(struct ofpbuf *openflow){
 4267|  74.6k|    return ofpact_put_raw(openflow, 1, OFPAT_RAW10_OUTPUT, 0);
 4268|  74.6k|}
ofp-actions.c:put_OFPAT11_OUTPUT:
 4271|  21.9k|put_OFPAT11_OUTPUT(struct ofpbuf *openflow){
 4272|  21.9k|    return ofpact_put_raw(openflow, 2, OFPAT_RAW11_OUTPUT, 0);
 4273|  21.9k|}
ofp-actions.c:put_OFPAT_GROUP:
 4391|    209|put_OFPAT_GROUP(struct ofpbuf *openflow, enum ofp_version version, uint32_t arg){
 4392|    209|    ofpact_put_raw(openflow, version, OFPAT_RAW_GROUP, arg);
 4393|    209|}
ofp-actions.c:put_NXAST_CONTROLLER2:
 4536|  5.61k|put_NXAST_CONTROLLER2(struct ofpbuf *openflow){
 4537|  5.61k|    return ofpact_put_raw(openflow, 1, NXAST_RAW_CONTROLLER2, 0);
 4538|  5.61k|}
ofp-actions.c:put_NXAST_CONTROLLER:
 4531|    500|put_NXAST_CONTROLLER(struct ofpbuf *openflow){
 4532|    500|    return ofpact_put_raw(openflow, 1, NXAST_RAW_CONTROLLER, 0);
 4533|    500|}
ofp-actions.c:put_OFPAT10_ENQUEUE:
 4351|    315|put_OFPAT10_ENQUEUE(struct ofpbuf *openflow){
 4352|    315|    return ofpact_put_raw(openflow, 1, OFPAT_RAW10_ENQUEUE, 0);
 4353|    315|}
ofp-actions.c:put_OFPAT_SET_QUEUE:
 4386|    617|put_OFPAT_SET_QUEUE(struct ofpbuf *openflow, enum ofp_version version, uint32_t arg){
 4387|    617|    ofpact_put_raw(openflow, version, OFPAT_RAW_SET_QUEUE, arg);
 4388|    617|}
ofp-actions.c:put_NXAST_POP_QUEUE:
 4476|    856|put_NXAST_POP_QUEUE(struct ofpbuf *openflow){
 4477|    856|    ofpact_put_raw(openflow, 1, NXAST_RAW_POP_QUEUE, 0);
 4478|    856|}
ofp-actions.c:put_NXAST_OUTPUT_REG2:
 4506|    423|put_NXAST_OUTPUT_REG2(struct ofpbuf *openflow){
 4507|    423|    return ofpact_put_raw(openflow, 1, NXAST_RAW_OUTPUT_REG2, 0);
 4508|    423|}
ofp-actions.c:put_NXAST_OUTPUT_REG:
 4501|    291|put_NXAST_OUTPUT_REG(struct ofpbuf *openflow){
 4502|    291|    return ofpact_put_raw(openflow, 1, NXAST_RAW_OUTPUT_REG, 0);
 4503|    291|}
ofp-actions.c:put_NXAST_BUNDLE_LOAD:
 4496|      3|put_NXAST_BUNDLE_LOAD(struct ofpbuf *openflow){
 4497|      3|    return ofpact_put_raw(openflow, 1, NXAST_RAW_BUNDLE_LOAD, 0);
 4498|      3|}
ofp-actions.c:put_NXAST_BUNDLE:
 4491|    840|put_NXAST_BUNDLE(struct ofpbuf *openflow){
 4492|    840|    return ofpact_put_raw(openflow, 1, NXAST_RAW_BUNDLE, 0);
 4493|    840|}
ofp-actions.c:put_OFPAT12_SET_FIELD:
 4411|  4.64k|put_OFPAT12_SET_FIELD(struct ofpbuf *openflow){
 4412|  4.64k|    return ofpact_put_raw(openflow, 3, OFPAT_RAW12_SET_FIELD, 0);
 4413|  4.64k|}
ofp-actions.c:put_NXAST_REG_LOAD2:
 4426|  8.72k|put_NXAST_REG_LOAD2(struct ofpbuf *openflow){
 4427|  8.72k|    return ofpact_put_raw(openflow, 1, NXAST_RAW_REG_LOAD2, 0);
 4428|  8.72k|}
ofp-actions.c:put_NXAST_REG_LOAD:
 4421|  75.7k|put_NXAST_REG_LOAD(struct ofpbuf *openflow){
 4422|  75.7k|    return ofpact_put_raw(openflow, 1, NXAST_RAW_REG_LOAD, 0);
 4423|  75.7k|}
ofp-actions.c:put_OFPAT10_SET_VLAN_VID:
 4276|    981|put_OFPAT10_SET_VLAN_VID(struct ofpbuf *openflow, uint16_t arg){
 4277|    981|    ofpact_put_raw(openflow, 1, OFPAT_RAW10_SET_VLAN_VID, arg);
 4278|    981|}
ofp-actions.c:put_OFPAT10_SET_VLAN_PCP:
 4281|    848|put_OFPAT10_SET_VLAN_PCP(struct ofpbuf *openflow, uint8_t arg){
 4282|    848|    ofpact_put_raw(openflow, 1, OFPAT_RAW10_SET_VLAN_PCP, arg);
 4283|    848|}
ofp-actions.c:put_OFPAT10_STRIP_VLAN:
 4301|  1.59k|put_OFPAT10_STRIP_VLAN(struct ofpbuf *openflow){
 4302|  1.59k|    ofpact_put_raw(openflow, 1, OFPAT_RAW10_STRIP_VLAN, 0);
 4303|  1.59k|}
ofp-actions.c:put_OFPAT11_PUSH_VLAN:
 4296|  1.46k|put_OFPAT11_PUSH_VLAN(struct ofpbuf *openflow, ovs_be16 arg){
 4297|       |    ofpact_put_raw(openflow, 2, OFPAT_RAW11_PUSH_VLAN, ntohs(arg));
 4298|  1.46k|}
ofp-actions.c:put_OFPAT11_SET_VLAN_VID:
 4286|    916|put_OFPAT11_SET_VLAN_VID(struct ofpbuf *openflow, uint16_t arg){
 4287|    916|    ofpact_put_raw(openflow, 2, OFPAT_RAW11_SET_VLAN_VID, arg);
 4288|    916|}
ofp-actions.c:put_OFPAT11_SET_VLAN_PCP:
 4291|    978|put_OFPAT11_SET_VLAN_PCP(struct ofpbuf *openflow, uint8_t arg){
 4292|    978|    ofpact_put_raw(openflow, 2, OFPAT_RAW11_SET_VLAN_PCP, arg);
 4293|    978|}
ofp-actions.c:put_OFPAT11_POP_VLAN:
 4306|  1.27k|put_OFPAT11_POP_VLAN(struct ofpbuf *openflow){
 4307|  1.27k|    ofpact_put_raw(openflow, 2, OFPAT_RAW11_POP_VLAN, 0);
 4308|  1.27k|}
ofp-actions.c:put_OFPAT_SET_DL_SRC:
 4311|    201|put_OFPAT_SET_DL_SRC(struct ofpbuf *openflow, enum ofp_version version){
 4312|    201|    return ofpact_put_raw(openflow, version, OFPAT_RAW_SET_DL_SRC, 0);
 4313|    201|}
ofp-actions.c:put_OFPAT_SET_DL_DST:
 4316|     66|put_OFPAT_SET_DL_DST(struct ofpbuf *openflow, enum ofp_version version){
 4317|     66|    return ofpact_put_raw(openflow, version, OFPAT_RAW_SET_DL_DST, 0);
 4318|     66|}
ofp-actions.c:put_OFPAT_SET_NW_SRC:
 4321|    262|put_OFPAT_SET_NW_SRC(struct ofpbuf *openflow, enum ofp_version version, ovs_be32 arg){
 4322|       |    ofpact_put_raw(openflow, version, OFPAT_RAW_SET_NW_SRC, ntohl(arg));
 4323|    262|}
ofp-actions.c:put_OFPAT_SET_NW_DST:
 4326|    194|put_OFPAT_SET_NW_DST(struct ofpbuf *openflow, enum ofp_version version, ovs_be32 arg){
 4327|       |    ofpact_put_raw(openflow, version, OFPAT_RAW_SET_NW_DST, ntohl(arg));
 4328|    194|}
ofp-actions.c:put_OFPAT_SET_NW_TOS:
 4331|  1.50k|put_OFPAT_SET_NW_TOS(struct ofpbuf *openflow, enum ofp_version version, uint8_t arg){
 4332|  1.50k|    ofpact_put_raw(openflow, version, OFPAT_RAW_SET_NW_TOS, arg);
 4333|  1.50k|}
ofp-actions.c:put_OFPAT_SET_TP_SRC:
 4341|    498|put_OFPAT_SET_TP_SRC(struct ofpbuf *openflow, ovs_be16 arg){
 4342|       |    ofpact_put_raw(openflow, 1, OFPAT_RAW_SET_TP_SRC, ntohs(arg));
 4343|    498|}
ofp-actions.c:put_OFPAT_SET_TP_DST:
 4346|    369|put_OFPAT_SET_TP_DST(struct ofpbuf *openflow, ovs_be16 arg){
 4347|       |    ofpact_put_raw(openflow, 1, OFPAT_RAW_SET_TP_DST, ntohs(arg));
 4348|    369|}
ofp-actions.c:put_OFPAT11_SET_NW_ECN:
 4336|    331|put_OFPAT11_SET_NW_ECN(struct ofpbuf *openflow, uint8_t arg){
 4337|    331|    ofpact_put_raw(openflow, 2, OFPAT_RAW11_SET_NW_ECN, arg);
 4338|    331|}
ofp-actions.c:put_OFPAT11_SET_NW_TTL:
 4396|    596|put_OFPAT11_SET_NW_TTL(struct ofpbuf *openflow, uint8_t arg){
 4397|    596|    ofpact_put_raw(openflow, 2, OFPAT_RAW11_SET_NW_TTL, arg);
 4398|    596|}
ofp-actions.c:put_NXAST_REG_MOVE:
 4441|    453|put_NXAST_REG_MOVE(struct ofpbuf *openflow){
 4442|    453|    return ofpact_put_raw(openflow, 1, NXAST_RAW_REG_MOVE, 0);
 4443|    453|}
ofp-actions.c:put_NXAST_STACK_PUSH:
 4546|    359|put_NXAST_STACK_PUSH(struct ofpbuf *openflow){
 4547|    359|    return ofpact_put_raw(openflow, 1, NXAST_RAW_STACK_PUSH, 0);
 4548|    359|}
ofp-actions.c:put_NXAST_STACK_POP:
 4551|  1.87k|put_NXAST_STACK_POP(struct ofpbuf *openflow){
 4552|  1.87k|    return ofpact_put_raw(openflow, 1, NXAST_RAW_STACK_POP, 0);
 4553|  1.87k|}
ofp-actions.c:put_NXAST_DEC_TTL_CNT_IDS:
 4406|  2.03k|put_NXAST_DEC_TTL_CNT_IDS(struct ofpbuf *openflow){
 4407|  2.03k|    return ofpact_put_raw(openflow, 1, NXAST_RAW_DEC_TTL_CNT_IDS, 0);
 4408|  2.03k|}
ofp-actions.c:put_OFPAT_DEC_NW_TTL:
 4401|    812|put_OFPAT_DEC_NW_TTL(struct ofpbuf *openflow, enum ofp_version version){
 4402|    812|    ofpact_put_raw(openflow, version, OFPAT_RAW_DEC_NW_TTL, 0);
 4403|    812|}
ofp-actions.c:put_OFPAT_SET_MPLS_LABEL:
 4356|    770|put_OFPAT_SET_MPLS_LABEL(struct ofpbuf *openflow, enum ofp_version version, ovs_be32 arg){
 4357|       |    ofpact_put_raw(openflow, version, OFPAT_RAW_SET_MPLS_LABEL, ntohl(arg));
 4358|    770|}
ofp-actions.c:put_OFPAT_SET_MPLS_TC:
 4361|    810|put_OFPAT_SET_MPLS_TC(struct ofpbuf *openflow, enum ofp_version version, uint8_t arg){
 4362|    810|    ofpact_put_raw(openflow, version, OFPAT_RAW_SET_MPLS_TC, arg);
 4363|    810|}
ofp-actions.c:put_OFPAT_SET_MPLS_TTL:
 4366|  1.12k|put_OFPAT_SET_MPLS_TTL(struct ofpbuf *openflow, enum ofp_version version, uint8_t arg){
 4367|  1.12k|    ofpact_put_raw(openflow, version, OFPAT_RAW_SET_MPLS_TTL, arg);
 4368|  1.12k|}
ofp-actions.c:put_OFPAT_DEC_MPLS_TTL:
 4371|  2.12k|put_OFPAT_DEC_MPLS_TTL(struct ofpbuf *openflow, enum ofp_version version){
 4372|  2.12k|    ofpact_put_raw(openflow, version, OFPAT_RAW_DEC_MPLS_TTL, 0);
 4373|  2.12k|}
ofp-actions.c:put_OFPAT_PUSH_MPLS:
 4376|    439|put_OFPAT_PUSH_MPLS(struct ofpbuf *openflow, enum ofp_version version, ovs_be16 arg){
 4377|       |    ofpact_put_raw(openflow, version, OFPAT_RAW_PUSH_MPLS, ntohs(arg));
 4378|    439|}
ofp-actions.c:put_OFPAT_POP_MPLS:
 4381|  1.25k|put_OFPAT_POP_MPLS(struct ofpbuf *openflow, enum ofp_version version, ovs_be16 arg){
 4382|       |    ofpact_put_raw(openflow, version, OFPAT_RAW_POP_MPLS, ntohs(arg));
 4383|  1.25k|}
ofp-actions.c:put_NXAST_DEC_NSH_TTL:
 4616|    737|put_NXAST_DEC_NSH_TTL(struct ofpbuf *openflow){
 4617|    737|    ofpact_put_raw(openflow, 4, NXAST_RAW_DEC_NSH_TTL, 0);
 4618|    737|}
ofp-actions.c:put_NXAST_DELETE_FIELD:
 4626|    342|put_NXAST_DELETE_FIELD(struct ofpbuf *openflow){
 4627|    342|    return ofpact_put_raw(openflow, 1, NXAST_RAW_DELETE_FIELD, 0);
 4628|    342|}
ofp-actions.c:put_NXAST_ENCAP:
 4606|  1.38k|put_NXAST_ENCAP(struct ofpbuf *openflow){
 4607|  1.38k|    return ofpact_put_raw(openflow, 4, NXAST_RAW_ENCAP, 0);
 4608|  1.38k|}
ofp-actions.c:put_NXAST_DECAP:
 4611|  1.82k|put_NXAST_DECAP(struct ofpbuf *openflow){
 4612|  1.82k|    return ofpact_put_raw(openflow, 4, NXAST_RAW_DECAP, 0);
 4613|  1.82k|}
ofp-actions.c:put_NXAST_SET_TUNNEL:
 4466|    355|put_NXAST_SET_TUNNEL(struct ofpbuf *openflow, uint32_t arg){
 4467|    355|    ofpact_put_raw(openflow, 1, NXAST_RAW_SET_TUNNEL, arg);
 4468|    355|}
ofp-actions.c:put_NXAST_SET_TUNNEL64:
 4471|    634|put_NXAST_SET_TUNNEL64(struct ofpbuf *openflow, uint64_t arg){
 4472|    634|    ofpact_put_raw(openflow, 1, NXAST_RAW_SET_TUNNEL64, arg);
 4473|    634|}
ofp-actions.c:put_NXAST_FIN_TIMEOUT:
 4526|    440|put_NXAST_FIN_TIMEOUT(struct ofpbuf *openflow){
 4527|    440|    return ofpact_put_raw(openflow, 1, NXAST_RAW_FIN_TIMEOUT, 0);
 4528|    440|}
ofp-actions.c:put_NXAST_RESUBMIT_TABLE_CT:
 4461|    388|put_NXAST_RESUBMIT_TABLE_CT(struct ofpbuf *openflow){
 4462|    388|    return ofpact_put_raw(openflow, 1, NXAST_RAW_RESUBMIT_TABLE_CT, 0);
 4463|    388|}
ofp-actions.c:put_NXAST_RESUBMIT_TABLE:
 4456|    850|put_NXAST_RESUBMIT_TABLE(struct ofpbuf *openflow){
 4457|    850|    return ofpact_put_raw(openflow, 1, NXAST_RAW_RESUBMIT_TABLE, 0);
 4458|    850|}
ofp-actions.c:put_NXAST_LEARN2:
 4516|    748|put_NXAST_LEARN2(struct ofpbuf *openflow){
 4517|    748|    return ofpact_put_raw(openflow, 1, NXAST_RAW_LEARN2, 0);
 4518|    748|}
ofp-actions.c:put_NXAST_LEARN:
 4511|  32.4k|put_NXAST_LEARN(struct ofpbuf *openflow){
 4512|  32.4k|    return ofpact_put_raw(openflow, 1, NXAST_RAW_LEARN, 0);
 4513|  32.4k|}
ofp-actions.c:put_NXAST_CONJUNCTION:
 4576|    218|put_NXAST_CONJUNCTION(struct ofpbuf *openflow){
 4577|    218|    return ofpact_put_raw(openflow, 1, NXAST_RAW_CONJUNCTION, 0);
 4578|    218|}
ofp-actions.c:put_NXAST_MULTIPATH:
 4486|    286|put_NXAST_MULTIPATH(struct ofpbuf *openflow){
 4487|    286|    return ofpact_put_raw(openflow, 1, NXAST_RAW_MULTIPATH, 0);
 4488|    286|}
ofp-actions.c:put_NXAST_NOTE:
 4481|  1.71k|put_NXAST_NOTE(struct ofpbuf *openflow){
 4482|  1.71k|    return ofpact_put_raw(openflow, 1, NXAST_RAW_NOTE, 0);
 4483|  1.71k|}
ofp-actions.c:put_NXAST_EXIT:
 4521|  1.86k|put_NXAST_EXIT(struct ofpbuf *openflow){
 4522|  1.86k|    ofpact_put_raw(openflow, 1, NXAST_RAW_EXIT, 0);
 4523|  1.86k|}
ofp-actions.c:put_NXAST_SAMPLE4:
 4571|    605|put_NXAST_SAMPLE4(struct ofpbuf *openflow){
 4572|    605|    return ofpact_put_raw(openflow, 1, NXAST_RAW_SAMPLE4, 0);
 4573|    605|}
ofp-actions.c:put_NXAST_SAMPLE3:
 4566|    299|put_NXAST_SAMPLE3(struct ofpbuf *openflow){
 4567|    299|    return ofpact_put_raw(openflow, 1, NXAST_RAW_SAMPLE3, 0);
 4568|    299|}
ofp-actions.c:put_NXAST_SAMPLE2:
 4561|    211|put_NXAST_SAMPLE2(struct ofpbuf *openflow){
 4562|    211|    return ofpact_put_raw(openflow, 1, NXAST_RAW_SAMPLE2, 0);
 4563|    211|}
ofp-actions.c:put_NXAST_SAMPLE:
 4556|    467|put_NXAST_SAMPLE(struct ofpbuf *openflow){
 4557|    467|    return ofpact_put_raw(openflow, 1, NXAST_RAW_SAMPLE, 0);
 4558|    467|}
ofp-actions.c:put_NXAST_CT:
 4581|  8.78k|put_NXAST_CT(struct ofpbuf *openflow){
 4582|  8.78k|    return ofpact_put_raw(openflow, 1, NXAST_RAW_CT, 0);
 4583|  8.78k|}
ofp-actions.c:put_NXAST_CT_CLEAR:
 4601|  1.31k|put_NXAST_CT_CLEAR(struct ofpbuf *openflow){
 4602|  1.31k|    ofpact_put_raw(openflow, 1, NXAST_RAW_CT_CLEAR, 0);
 4603|  1.31k|}
ofp-actions.c:put_NXAST_NAT:
 4586|  7.36k|put_NXAST_NAT(struct ofpbuf *openflow){
 4587|  7.36k|    return ofpact_put_raw(openflow, 1, NXAST_RAW_NAT, 0);
 4588|  7.36k|}
ofp-actions.c:put_NXAST_OUTPUT_TRUNC:
 4591|    870|put_NXAST_OUTPUT_TRUNC(struct ofpbuf *openflow){
 4592|    870|    return ofpact_put_raw(openflow, 1, NXAST_RAW_OUTPUT_TRUNC, 0);
 4593|    870|}
ofp-actions.c:put_NXAST_CLONE:
 4596|  5.70k|put_NXAST_CLONE(struct ofpbuf *openflow){
 4597|  5.70k|    return ofpact_put_raw(openflow, 1, NXAST_RAW_CLONE, 0);
 4598|  5.70k|}
ofp-actions.c:put_NXAST_CHECK_PKT_LARGER:
 4621|    637|put_NXAST_CHECK_PKT_LARGER(struct ofpbuf *openflow){
 4622|    637|    return ofpact_put_raw(openflow, 1, NXAST_RAW_CHECK_PKT_LARGER, 0);
 4623|    637|}
ofp-actions.c:put_NXAST_DEBUG_RECIRC:
 4636|    846|put_NXAST_DEBUG_RECIRC(struct ofpbuf *openflow){
 4637|    846|    ofpact_put_raw(openflow, 1, NXAST_RAW_DEBUG_RECIRC, 0);
 4638|    846|}
ofp-actions.c:put_NXAST_DEBUG_SLOW:
 4631|  1.73k|put_NXAST_DEBUG_SLOW(struct ofpbuf *openflow){
 4632|  1.73k|    ofpact_put_raw(openflow, 1, NXAST_RAW_DEBUG_SLOW, 0);
 4633|  1.73k|}
ofp-actions.c:put_NXAST_WRITE_METADATA:
 4541|      4|put_NXAST_WRITE_METADATA(struct ofpbuf *openflow){
 4542|      4|    return ofpact_put_raw(openflow, 1, NXAST_RAW_WRITE_METADATA, 0);
 4543|      4|}

encode_ed_prop:
   95|  1.44k|{
   96|  1.44k|    size_t prop_len;
   97|       |
   98|  1.44k|    switch ((*prop)->prop_class) {
   99|  1.44k|    case OFPPPC_NSH: {
  ------------------
  |  Branch (99:5): [True: 1.44k, False: 0]
  ------------------
  100|  1.44k|        switch ((*prop)->type) {
  101|  1.44k|        case OFPPPT_PROP_NSH_MDTYPE: {
  ------------------
  |  Branch (101:9): [True: 1.44k, False: 0]
  ------------------
  102|  1.44k|            struct ofpact_ed_prop_nsh_md_type *pnmt =
  103|  1.44k|                ALIGNED_CAST(struct ofpact_ed_prop_nsh_md_type *, *prop);
  ------------------
  |  |  434|  1.44k|#define ALIGNED_CAST(TYPE, ATTR) ((TYPE) (void *) (ATTR))
  ------------------
  104|  1.44k|            struct ofp_ed_prop_nsh_md_type *opnmt =
  105|  1.44k|                    ofpbuf_put_uninit(out, sizeof(*opnmt));
  106|  1.44k|            opnmt->header.prop_class = htons((*prop)->prop_class);
  107|  1.44k|            opnmt->header.type = (*prop)->type;
  108|  1.44k|            opnmt->header.len =
  109|  1.44k|                    offsetof(struct ofp_ed_prop_nsh_md_type, pad);
  110|  1.44k|            opnmt->md_type = pnmt->md_type;
  111|  1.44k|            memset(opnmt->pad, 0, sizeof opnmt->pad);
  112|  1.44k|            prop_len = sizeof(*pnmt);
  113|  1.44k|            break;
  114|      0|        }
  115|      0|        case OFPPPT_PROP_NSH_TLV: {
  ------------------
  |  Branch (115:9): [True: 0, False: 1.44k]
  ------------------
  116|      0|            struct ofpact_ed_prop_nsh_tlv *pnt =
  117|      0|                ALIGNED_CAST(struct ofpact_ed_prop_nsh_tlv *, *prop);
  ------------------
  |  |  434|      0|#define ALIGNED_CAST(TYPE, ATTR) ((TYPE) (void *) (ATTR))
  ------------------
  118|      0|            struct ofp_ed_prop_nsh_tlv *opnt;
  119|      0|            size_t tlv_pad_len = ROUND_UP(pnt->tlv_len, 8);
  ------------------
  |  |  303|      0|#define ROUND_UP(X, Y) (DIV_ROUND_UP(X, Y) * (Y))
  |  |  ------------------
  |  |  |  |  300|      0|#define DIV_ROUND_UP(X, Y) (((X) + ((Y) - 1)) / (Y))
  |  |  ------------------
  ------------------
  120|      0|            size_t len = sizeof(*opnt) + tlv_pad_len;
  121|      0|            opnt = ofpbuf_put_uninit(out, len);
  122|      0|            opnt->header.prop_class = htons((*prop)->prop_class);
  123|      0|            opnt->header.type = (*prop)->type;
  124|      0|            opnt->header.len = len;
  125|      0|            opnt->tlv_class = pnt->tlv_class;
  126|      0|            opnt->tlv_type = pnt->tlv_type;
  127|      0|            opnt->tlv_len = pnt->tlv_len;
  128|      0|            memcpy(opnt->data, pnt->data, tlv_pad_len);
  129|      0|            prop_len = sizeof(*pnt) + tlv_pad_len;
  130|      0|            break;
  131|      0|        }
  132|      0|        default:
  ------------------
  |  Branch (132:9): [True: 0, False: 1.44k]
  ------------------
  133|      0|            return OFPERR_OFPBAC_BAD_ARGUMENT;
  134|  1.44k|        }
  135|  1.44k|        break;
  136|  1.44k|    }
  137|  1.44k|    default:
  ------------------
  |  Branch (137:5): [True: 0, False: 1.44k]
  ------------------
  138|      0|        return OFPERR_OFPBAC_BAD_ARGUMENT;
  139|  1.44k|    }
  140|       |
  141|  1.44k|    *prop = ALIGNED_CAST(const struct ofpact_ed_prop *,
  ------------------
  |  |  434|  1.44k|#define ALIGNED_CAST(TYPE, ATTR) ((TYPE) (void *) (ATTR))
  ------------------
  142|  1.44k|                         ((char *)(*prop) + prop_len));
  143|  1.44k|    return 0;
  144|  1.44k|}
parse_ed_prop_class:
  149|  2.64k|{
  150|  2.64k|    if (!strcmp(str,"basic")) {
  ------------------
  |  Branch (150:9): [True: 0, False: 2.64k]
  ------------------
  151|      0|        *prop_class = OFPPPC_BASIC;
  152|  2.64k|    } else if (!strcmp(str,"ethernet")) {
  ------------------
  |  Branch (152:16): [True: 357, False: 2.28k]
  ------------------
  153|    357|        *prop_class = OFPPPC_BASIC;
  154|  2.28k|    } else if (!strcmp(str,"mpls")) {
  ------------------
  |  Branch (154:16): [True: 384, False: 1.90k]
  ------------------
  155|    384|        *prop_class = OFPPPC_MPLS;
  156|  1.90k|    } else if (!strcmp(str,"mpls_mc")) {
  ------------------
  |  Branch (156:16): [True: 599, False: 1.30k]
  ------------------
  157|    599|        *prop_class = OFPPPC_MPLS;
  158|  1.30k|    } else if (!strcmp(str,"gre")) {
  ------------------
  |  Branch (158:16): [True: 0, False: 1.30k]
  ------------------
  159|      0|        *prop_class = OFPPPC_GRE;
  160|  1.30k|    } else if (!strcmp(str,"gtp")) {
  ------------------
  |  Branch (160:16): [True: 0, False: 1.30k]
  ------------------
  161|      0|        *prop_class = OFPPPC_GTP;
  162|  1.30k|    } else if (!strcmp(str,"nsh")) {
  ------------------
  |  Branch (162:16): [True: 1.30k, False: 0]
  ------------------
  163|  1.30k|        *prop_class = OFPPPC_NSH;
  164|  1.30k|    } else {
  165|      0|        return false;
  166|      0|    }
  167|  2.64k|    return true;
  168|  2.64k|}
parse_ed_prop_type:
  174|  2.05k|{
  175|  2.05k|    switch (prop_class) {
  176|  2.04k|    case OFPPPC_NSH:
  ------------------
  |  Branch (176:5): [True: 2.04k, False: 3]
  ------------------
  177|  2.04k|        if (!strcmp(str, "md_type")) {
  ------------------
  |  Branch (177:13): [True: 1.99k, False: 57]
  ------------------
  178|  1.99k|            *type = OFPPPT_PROP_NSH_MDTYPE;
  179|  1.99k|            return true;
  180|  1.99k|        } else if (!strcmp(str, "tlv")) {
  ------------------
  |  Branch (180:20): [True: 3, False: 54]
  ------------------
  181|      3|            *type = OFPPPT_PROP_NSH_TLV;
  182|      3|            return true;
  183|     54|        } else {
  184|     54|            return false;
  185|     54|        }
  186|      3|    default:
  ------------------
  |  Branch (186:5): [True: 3, False: 2.04k]
  ------------------
  187|       |        return false;
  188|  2.05k|    }
  189|  2.05k|}
parse_ed_prop_value:
  201|  1.99k|{
  202|  1.99k|    char *error = NULL;
  203|       |
  204|  1.99k|    if (value == NULL || *value == '\0') {
  ------------------
  |  Branch (204:9): [True: 0, False: 1.99k]
  |  Branch (204:26): [True: 3, False: 1.99k]
  ------------------
  205|      3|        return xstrdup("Value missing for encap property");
  206|      3|    }
  207|       |
  208|  1.99k|    switch (prop_class) {
  209|  1.99k|    case OFPPPC_NSH:
  ------------------
  |  Branch (209:5): [True: 1.99k, False: 0]
  ------------------
  210|  1.99k|        switch (prop_type) {
  211|  1.99k|        case OFPPPT_PROP_NSH_MDTYPE: {
  ------------------
  |  Branch (211:9): [True: 1.99k, False: 2]
  ------------------
  212|       |            /* Format: "<md_type>:uint8_t". */
  213|  1.99k|            uint8_t md_type;
  214|  1.99k|            error = str_to_u8(value, "md_type", &md_type);
  215|  1.99k|            if (error != NULL) {
  ------------------
  |  Branch (215:17): [True: 2, False: 1.98k]
  ------------------
  216|      2|                return error;
  217|      2|            }
  218|  1.98k|            if (md_type < 1 || md_type > 2) {
  ------------------
  |  Branch (218:17): [True: 2, False: 1.98k]
  |  Branch (218:32): [True: 2, False: 1.98k]
  ------------------
  219|      4|                return xstrdup("invalid md_type");
  220|      4|            }
  221|  1.98k|            struct ofpact_ed_prop_nsh_md_type *pnmt =
  222|  1.98k|                    ofpbuf_put_uninit(out, sizeof(*pnmt));
  223|  1.98k|            pnmt->header.prop_class = prop_class;
  224|  1.98k|            pnmt->header.type = prop_type;
  225|  1.98k|            pnmt->header.len =
  226|  1.98k|                    offsetof(struct ofp_ed_prop_nsh_md_type, pad);
  227|  1.98k|            pnmt->md_type = md_type;
  228|  1.98k|            break;
  229|  1.98k|        }
  230|      2|        case OFPPPT_PROP_NSH_TLV: {
  ------------------
  |  Branch (230:9): [True: 2, False: 1.99k]
  ------------------
  231|       |            /* Format: "<class>:ovs_be16,<type>:uint8_t,<val>:hex_string" */
  232|      2|            struct ofpact_ed_prop_nsh_tlv *pnt;
  233|      2|            uint16_t tlv_class;
  234|      2|            uint8_t tlv_type;
  235|      2|            char buf[256];
  236|      2|            size_t tlv_value_len, padding;
  237|      2|            size_t start_ofs = out->size;
  238|       |
  239|      2|            if (!ovs_scan(value, "0x%"SCNx16",%"SCNu8",0x%251[0-9a-fA-F]",
  ------------------
  |  Branch (239:17): [True: 2, False: 0]
  ------------------
  240|      2|                          &tlv_class, &tlv_type, buf)) {
  241|      2|                return xasprintf("Invalid NSH TLV header: %s", value);
  242|      2|            }
  243|      0|            ofpbuf_put_uninit(out, sizeof(*pnt));
  244|      0|            ofpbuf_put_hex(out, buf, &tlv_value_len);
  245|      0|            pnt = ALIGNED_CAST(struct ofpact_ed_prop_nsh_tlv *,
  ------------------
  |  |  434|      0|#define ALIGNED_CAST(TYPE, ATTR) ((TYPE) (void *) (ATTR))
  ------------------
  246|      0|                               ((char *)out->data + start_ofs));
  247|      0|            padding = ROUND_UP(tlv_value_len, 8) - tlv_value_len;
  ------------------
  |  |  303|      0|#define ROUND_UP(X, Y) (DIV_ROUND_UP(X, Y) * (Y))
  |  |  ------------------
  |  |  |  |  300|      0|#define DIV_ROUND_UP(X, Y) (((X) + ((Y) - 1)) / (Y))
  |  |  ------------------
  ------------------
  248|      0|            pnt->header.prop_class = prop_class;
  249|      0|            pnt->header.type = prop_type;
  250|      0|            pnt->header.len = sizeof(*pnt) + tlv_value_len + padding;
  251|      0|            pnt->tlv_class = htons(tlv_class);
  252|      0|            pnt->tlv_type = tlv_type;
  253|      0|            pnt->tlv_len = tlv_value_len;
  254|      0|            if (padding > 0) {
  ------------------
  |  Branch (254:17): [True: 0, False: 0]
  ------------------
  255|      0|                ofpbuf_put_zeros(out, padding);
  256|      0|            }
  257|      0|            break;
  258|      2|        }
  259|      0|        default:
  ------------------
  |  Branch (259:9): [True: 0, False: 1.99k]
  ------------------
  260|       |            /* Unsupported property types rejected before. */
  261|      0|            OVS_NOT_REACHED();
  ------------------
  |  |  107|      0|#define OVS_NOT_REACHED() abort()
  ------------------
  262|  1.99k|        }
  263|  1.98k|        break;
  264|  1.98k|    default:
  ------------------
  |  Branch (264:5): [True: 0, False: 1.99k]
  ------------------
  265|       |        /* Unsupported property classes rejected before. */
  266|      0|        OVS_NOT_REACHED();
  ------------------
  |  |  107|      0|#define OVS_NOT_REACHED() abort()
  ------------------
  267|  1.99k|    }
  268|       |
  269|  1.98k|    return NULL;
  270|  1.99k|}

ofperr_is_valid:
   76|  1.41k|{
   77|  1.41k|    return error >= OFPERR_OFS && error < OFPERR_OFS + OFPERR_N_ERRORS;
  ------------------
  |  |   52|  2.83k|#define OFPERR_OFS (1 << 30)
  ------------------
                  return error >= OFPERR_OFS && error < OFPERR_OFS + OFPERR_N_ERRORS;
  ------------------
  |  |   52|  1.41k|#define OFPERR_OFS (1 << 30)
  ------------------
                  return error >= OFPERR_OFS && error < OFPERR_OFS + OFPERR_N_ERRORS;
  ------------------
  |  |    3|  2.83k|#define OFPERR_N_ERRORS 198
  ------------------
  |  Branch (77:12): [True: 1.41k, False: 0]
  |  Branch (77:35): [True: 1.41k, False: 0]
  ------------------
   78|  1.41k|}
ofperr_get_name:
   98|    708|{
   99|    708|    return (ofperr_is_valid(error)
  ------------------
  |  Branch (99:13): [True: 708, False: 0]
  ------------------
  100|    708|            ? error_names[error - OFPERR_OFS]
  ------------------
  |  |   52|    708|#define OFPERR_OFS (1 << 30)
  ------------------
  101|    708|            : "<invalid>");
  102|    708|}
ofperr_to_string:
  361|    708|{
  362|    708|    return (ofperr_is_valid(error)
  ------------------
  |  Branch (362:13): [True: 708, False: 0]
  ------------------
  363|    708|            ? ofperr_get_name(error)
  364|    708|            : ovs_strerror(error));
  365|    708|}

ofputil_encode_flow_mod:
  374|  9.08k|{
  375|  9.08k|    enum ofp_version version = ofputil_protocol_to_ofp_version(protocol);
  376|  9.08k|    ovs_be16 raw_flags = ofputil_encode_flow_mod_flags(fm->flags, version);
  377|  9.08k|    struct ofpbuf *msg;
  378|       |
  379|  9.08k|    struct match match;
  380|  9.08k|    minimatch_expand(&fm->match, &match);
  381|       |
  382|  9.08k|    switch (protocol) {
  383|    212|    case OFPUTIL_P_OF11_STD:
  ------------------
  |  Branch (383:5): [True: 212, False: 8.87k]
  ------------------
  384|    329|    case OFPUTIL_P_OF12_OXM:
  ------------------
  |  Branch (384:5): [True: 117, False: 8.96k]
  ------------------
  385|    678|    case OFPUTIL_P_OF13_OXM:
  ------------------
  |  Branch (385:5): [True: 349, False: 8.73k]
  ------------------
  386|    678|    case OFPUTIL_P_OF14_OXM:
  ------------------
  |  Branch (386:5): [True: 0, False: 9.08k]
  ------------------
  387|    678|    case OFPUTIL_P_OF15_OXM: {
  ------------------
  |  Branch (387:5): [True: 0, False: 9.08k]
  ------------------
  388|    678|        struct ofp11_flow_mod *ofm;
  389|    678|        int tailroom;
  390|       |
  391|    678|        tailroom = ofputil_match_typical_len(protocol) + fm->ofpacts_len;
  392|    678|        msg = ofpraw_alloc(OFPRAW_OFPT11_FLOW_MOD, version, tailroom);
  393|    678|        ofm = ofpbuf_put_zeros(msg, sizeof *ofm);
  394|    678|        if ((protocol == OFPUTIL_P_OF11_STD
  ------------------
  |  Branch (394:14): [True: 212, False: 466]
  ------------------
  395|    212|             && (fm->command == OFPFC_MODIFY ||
  ------------------
  |  Branch (395:18): [True: 30, False: 182]
  ------------------
  396|    182|                 fm->command == OFPFC_MODIFY_STRICT)
  ------------------
  |  Branch (396:18): [True: 97, False: 85]
  ------------------
  397|    127|             && fm->cookie_mask == htonll(0))
  ------------------
  |  Branch (397:17): [True: 55, False: 72]
  ------------------
  398|    623|            || fm->command == OFPFC_ADD) {
  ------------------
  |  Branch (398:16): [True: 185, False: 438]
  ------------------
  399|    240|            ofm->cookie = fm->new_cookie;
  400|    438|        } else {
  401|    438|            ofm->cookie = fm->cookie & fm->cookie_mask;
  402|    438|        }
  403|    678|        ofm->cookie_mask = fm->cookie_mask;
  404|    678|        if (fm->table_id != OFPTT_ALL
  ------------------
  |  Branch (404:13): [True: 2, False: 676]
  ------------------
  405|    676|            || (protocol != OFPUTIL_P_OF11_STD
  ------------------
  |  Branch (405:17): [True: 466, False: 210]
  ------------------
  406|    466|                && (fm->command == OFPFC_DELETE ||
  ------------------
  |  Branch (406:21): [True: 4, False: 462]
  ------------------
  407|    462|                    fm->command == OFPFC_DELETE_STRICT))) {
  ------------------
  |  Branch (407:21): [True: 4, False: 458]
  ------------------
  408|     10|            ofm->table_id = fm->table_id;
  409|    668|        } else {
  410|    668|            ofm->table_id = 0;
  411|    668|        }
  412|    678|        ofm->command = fm->command;
  413|    678|        ofm->idle_timeout = htons(fm->idle_timeout);
  414|    678|        ofm->hard_timeout = htons(fm->hard_timeout);
  415|    678|        ofm->priority = htons(fm->priority);
  416|    678|        ofm->buffer_id = htonl(fm->buffer_id);
  417|    678|        ofm->out_port = ofputil_port_to_ofp11(fm->out_port);
  418|    678|        ofm->out_group = htonl(fm->out_group);
  419|    678|        ofm->flags = raw_flags;
  420|    678|        if (version >= OFP14_VERSION && fm->command == OFPFC_ADD) {
  ------------------
  |  Branch (420:13): [True: 0, False: 678]
  |  Branch (420:41): [True: 0, False: 0]
  ------------------
  421|      0|            ofm->importance = htons(fm->importance);
  422|    678|        } else {
  423|    678|            ofm->importance = 0;
  424|    678|        }
  425|    678|        ofputil_put_ofp11_match(msg, &match, protocol);
  426|    678|        ofpacts_put_openflow_instructions(fm->ofpacts, fm->ofpacts_len, msg,
  427|    678|                                          version);
  428|    678|        break;
  429|    678|    }
  430|       |
  431|  4.51k|    case OFPUTIL_P_OF10_STD:
  ------------------
  |  Branch (431:5): [True: 4.51k, False: 4.56k]
  ------------------
  432|  4.76k|    case OFPUTIL_P_OF10_STD_TID: {
  ------------------
  |  Branch (432:5): [True: 243, False: 8.83k]
  ------------------
  433|  4.76k|        struct ofp10_flow_mod *ofm;
  434|       |
  435|  4.76k|        msg = ofpraw_alloc(OFPRAW_OFPT10_FLOW_MOD, OFP10_VERSION,
  436|  4.76k|                           fm->ofpacts_len);
  437|  4.76k|        ofm = ofpbuf_put_zeros(msg, sizeof *ofm);
  438|  4.76k|        ofputil_match_to_ofp10_match(&match, &ofm->match);
  439|  4.76k|        ofm->cookie = fm->new_cookie;
  440|  4.76k|        ofm->command = ofputil_tid_command(fm, protocol);
  441|  4.76k|        ofm->idle_timeout = htons(fm->idle_timeout);
  442|  4.76k|        ofm->hard_timeout = htons(fm->hard_timeout);
  443|  4.76k|        ofm->priority = htons(fm->priority);
  444|  4.76k|        ofm->buffer_id = htonl(fm->buffer_id);
  445|  4.76k|        ofm->out_port = htons(ofp_to_u16(fm->out_port));
  446|  4.76k|        ofm->flags = raw_flags;
  447|  4.76k|        ofpacts_put_openflow_actions(fm->ofpacts, fm->ofpacts_len, msg,
  448|  4.76k|                                     version);
  449|  4.76k|        break;
  450|  4.51k|    }
  451|       |
  452|  3.62k|    case OFPUTIL_P_OF10_NXM:
  ------------------
  |  Branch (452:5): [True: 3.62k, False: 5.45k]
  ------------------
  453|  3.64k|    case OFPUTIL_P_OF10_NXM_TID: {
  ------------------
  |  Branch (453:5): [True: 16, False: 9.06k]
  ------------------
  454|  3.64k|        struct nx_flow_mod *nfm;
  455|  3.64k|        int match_len;
  456|       |
  457|  3.64k|        msg = ofpraw_alloc(OFPRAW_NXT_FLOW_MOD, OFP10_VERSION,
  458|  3.64k|                           NXM_TYPICAL_LEN + fm->ofpacts_len);
  ------------------
  |  |  179|  3.64k|#define NXM_TYPICAL_LEN 64
  ------------------
  459|  3.64k|        nfm = ofpbuf_put_zeros(msg, sizeof *nfm);
  460|  3.64k|        nfm->command = ofputil_tid_command(fm, protocol);
  461|  3.64k|        nfm->cookie = fm->new_cookie;
  462|  3.64k|        match_len = nx_put_match(msg, &match, fm->cookie, fm->cookie_mask);
  463|  3.64k|        nfm = msg->msg;
  464|  3.64k|        nfm->idle_timeout = htons(fm->idle_timeout);
  465|  3.64k|        nfm->hard_timeout = htons(fm->hard_timeout);
  466|  3.64k|        nfm->priority = htons(fm->priority);
  467|  3.64k|        nfm->buffer_id = htonl(fm->buffer_id);
  468|  3.64k|        nfm->out_port = htons(ofp_to_u16(fm->out_port));
  469|  3.64k|        nfm->flags = raw_flags;
  470|  3.64k|        nfm->match_len = htons(match_len);
  471|  3.64k|        ofpacts_put_openflow_actions(fm->ofpacts, fm->ofpacts_len, msg,
  472|  3.64k|                                     version);
  473|  3.64k|        break;
  474|  3.62k|    }
  475|       |
  476|      0|    default:
  ------------------
  |  Branch (476:5): [True: 0, False: 9.08k]
  ------------------
  477|      0|        OVS_NOT_REACHED();
  ------------------
  |  |  107|      0|#define OVS_NOT_REACHED() abort()
  ------------------
  478|  9.08k|    }
  479|       |
  480|  9.08k|    ofpmsg_update_length(msg);
  481|  9.08k|    return msg;
  482|  9.08k|}
parse_ofp_str:
 1795|  22.5k|{
 1796|  22.5k|    char *string = xstrdup(str_);
 1797|  22.5k|    char *error;
 1798|       |
 1799|  22.5k|    error = parse_ofp_str__(fm, command, string, port_map, table_map,
 1800|  22.5k|                            usable_protocols);
 1801|  22.5k|    if (error) {
  ------------------
  |  Branch (1801:9): [True: 13.2k, False: 9.28k]
  ------------------
 1802|  13.2k|        fm->ofpacts = NULL;
 1803|  13.2k|        fm->ofpacts_len = 0;
 1804|  13.2k|    }
 1805|       |
 1806|  22.5k|    free(string);
 1807|  22.5k|    return error;
 1808|  22.5k|}
parse_ofp_flow_mod_str:
 1825|  22.5k|{
 1826|  22.5k|    char *error = parse_ofp_str(fm, command, string, port_map, table_map,
 1827|  22.5k|                                usable_protocols);
 1828|       |
 1829|  22.5k|    if (!error) {
  ------------------
  |  Branch (1829:9): [True: 9.28k, False: 13.2k]
  ------------------
 1830|       |        /* Normalize a copy of the match.  This ensures that non-normalized
 1831|       |         * flows get logged but doesn't affect what gets sent to the switch, so
 1832|       |         * that the switch can do whatever it likes with the flow. */
 1833|  9.28k|        struct match match;
 1834|  9.28k|        minimatch_expand(&fm->match, &match);
 1835|  9.28k|        ofputil_normalize_match(&match);
 1836|  9.28k|    }
 1837|       |
 1838|  22.5k|    return error;
 1839|  22.5k|}
ofp-flow.c:ofputil_encode_flow_mod_flags:
   93|  9.08k|{
   94|  9.08k|    const struct ofputil_flow_mod_flag *f;
   95|  9.08k|    uint16_t raw_flags;
   96|       |
   97|  9.08k|    raw_flags = 0;
   98|  63.5k|    for (f = ofputil_flow_mod_flags; f->raw_flag; f++) {
  ------------------
  |  Branch (98:38): [True: 54.4k, False: 9.08k]
  ------------------
   99|  54.4k|        if (f->flag & flags
  ------------------
  |  Branch (99:13): [True: 165, False: 54.3k]
  ------------------
  100|    165|            && version >= f->min_version
  ------------------
  |  Branch (100:16): [True: 165, False: 0]
  ------------------
  101|    165|            && (!f->max_version || version <= f->max_version)) {
  ------------------
  |  Branch (101:17): [True: 165, False: 0]
  |  Branch (101:36): [True: 0, False: 0]
  ------------------
  102|    165|            raw_flags |= f->raw_flag;
  103|    165|        }
  104|  54.4k|    }
  105|       |
  106|       |    return htons(raw_flags);
  107|  9.08k|}
ofp-flow.c:ofputil_tid_command:
  363|  8.40k|{
  364|       |    return htons(protocol & OFPUTIL_P_TID
  ------------------
  |  Branch (364:12): [True: 259, False: 8.14k]
  ------------------
  365|  8.40k|                 ? (fm->command & 0xff) | (fm->table_id << 8)
  366|  8.40k|                 : fm->command);
  367|  8.40k|}
ofp-flow.c:parse_ofp_str__:
 1490|  22.5k|{
 1491|  22.5k|    enum {
 1492|  22.5k|        F_OUT_PORT = 1 << 0,
 1493|  22.5k|        F_ACTIONS = 1 << 1,
 1494|  22.5k|        F_IMPORTANCE = 1 << 2,
 1495|  22.5k|        F_TIMEOUT = 1 << 3,
 1496|  22.5k|        F_PRIORITY = 1 << 4,
 1497|  22.5k|        F_FLAGS = 1 << 5,
 1498|  22.5k|    } fields;
 1499|  22.5k|    char *act_str = NULL;
 1500|  22.5k|    char *name, *value;
 1501|       |
 1502|  22.5k|    *usable_protocols = OFPUTIL_P_ANY;
  ------------------
  |  |  100|  22.5k|#define OFPUTIL_P_ANY ((1 << 9) - 1)
  ------------------
 1503|       |
 1504|  22.5k|    if (command == -2) {
  ------------------
  |  Branch (1504:9): [True: 2.47k, False: 20.0k]
  ------------------
 1505|  2.47k|        size_t len;
 1506|       |
 1507|  2.47k|        string += strspn(string, " \t\r\n");   /* Skip white space. */
 1508|  2.47k|        len = strcspn(string, ", \t\r\n"); /* Get length of the first token. */
 1509|       |
 1510|  2.47k|        if (!strncmp(string, "add", len)) {
  ------------------
  |  Branch (1510:13): [True: 5, False: 2.47k]
  ------------------
 1511|      5|            command = OFPFC_ADD;
 1512|  2.47k|        } else if (!strncmp(string, "delete", len)) {
  ------------------
  |  Branch (1512:20): [True: 5, False: 2.46k]
  ------------------
 1513|      5|            command = OFPFC_DELETE;
 1514|  2.46k|        } else if (!strncmp(string, "delete_strict", len)) {
  ------------------
  |  Branch (1514:20): [True: 1, False: 2.46k]
  ------------------
 1515|      1|            command = OFPFC_DELETE_STRICT;
 1516|  2.46k|        } else if (!strncmp(string, "modify", len)) {
  ------------------
  |  Branch (1516:20): [True: 1, False: 2.46k]
  ------------------
 1517|      1|            command = OFPFC_MODIFY;
 1518|  2.46k|        } else if (!strncmp(string, "modify_strict", len)) {
  ------------------
  |  Branch (1518:20): [True: 1, False: 2.46k]
  ------------------
 1519|      1|            command = OFPFC_MODIFY_STRICT;
 1520|  2.46k|        } else {
 1521|  2.46k|            len = 0;
 1522|  2.46k|            command = OFPFC_ADD;
 1523|  2.46k|        }
 1524|  2.47k|        string += len;
 1525|  2.47k|    }
 1526|       |
 1527|  22.5k|    switch (command) {
 1528|    735|    case -1:
  ------------------
  |  Branch (1528:5): [True: 735, False: 21.8k]
  ------------------
 1529|    735|        fields = F_OUT_PORT;
 1530|    735|        break;
 1531|       |
 1532|  4.34k|    case OFPFC_ADD:
  ------------------
  |  Branch (1532:5): [True: 4.34k, False: 18.1k]
  ------------------
 1533|  4.34k|        fields = F_ACTIONS | F_TIMEOUT | F_PRIORITY | F_FLAGS | F_IMPORTANCE;
 1534|  4.34k|        break;
 1535|       |
 1536|  3.20k|    case OFPFC_DELETE:
  ------------------
  |  Branch (1536:5): [True: 3.20k, False: 19.3k]
  ------------------
 1537|  3.20k|        fields = F_OUT_PORT;
 1538|  3.20k|        break;
 1539|       |
 1540|  3.56k|    case OFPFC_DELETE_STRICT:
  ------------------
  |  Branch (1540:5): [True: 3.56k, False: 18.9k]
  ------------------
 1541|  3.56k|        fields = F_OUT_PORT | F_PRIORITY;
 1542|  3.56k|        break;
 1543|       |
 1544|  6.53k|    case OFPFC_MODIFY:
  ------------------
  |  Branch (1544:5): [True: 6.53k, False: 16.0k]
  ------------------
 1545|  6.53k|        fields = F_ACTIONS | F_TIMEOUT | F_PRIORITY | F_FLAGS;
 1546|  6.53k|        break;
 1547|       |
 1548|  4.16k|    case OFPFC_MODIFY_STRICT:
  ------------------
  |  Branch (1548:5): [True: 4.16k, False: 18.3k]
  ------------------
 1549|  4.16k|        fields = F_ACTIONS | F_TIMEOUT | F_PRIORITY | F_FLAGS;
 1550|  4.16k|        break;
 1551|       |
 1552|      0|    default:
  ------------------
  |  Branch (1552:5): [True: 0, False: 22.5k]
  ------------------
 1553|      0|        OVS_NOT_REACHED();
  ------------------
  |  |  107|      0|#define OVS_NOT_REACHED() abort()
  ------------------
 1554|  22.5k|    }
 1555|       |
 1556|  22.5k|    *fm = (struct ofputil_flow_mod) {
 1557|  22.5k|        .priority = OFP_DEFAULT_PRIORITY,
  ------------------
  |  |  138|  22.5k|#define OFP_DEFAULT_PRIORITY 0x8000
  ------------------
 1558|  22.5k|        .table_id = 0xff,
 1559|  22.5k|        .command = command,
 1560|  22.5k|        .buffer_id = UINT32_MAX,
 1561|  22.5k|        .out_port = OFPP_ANY,
  ------------------
  |  |   80|  22.5k|#define OFPP_ANY OFPP_NONE
  |  |  ------------------
  |  |  |  |   47|  22.5k|#define OFPP_NONE       OFP_PORT_C(0xffff) /* Not associated with any port. */
  |  |  |  |  ------------------
  |  |  |  |  |  |  157|  22.5k|#define OFP_PORT_C(X) ((OVS_FORCE ofp_port_t) (X))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 1562|  22.5k|        .out_group = OFPG_ANY,
 1563|  22.5k|    };
 1564|       |    /* For modify, by default, don't update the cookie. */
 1565|  22.5k|    if (command == OFPFC_MODIFY || command == OFPFC_MODIFY_STRICT) {
  ------------------
  |  Branch (1565:9): [True: 6.53k, False: 16.0k]
  |  Branch (1565:36): [True: 4.16k, False: 11.8k]
  ------------------
 1566|  10.6k|        fm->new_cookie = OVS_BE64_MAX;
  ------------------
  |  |   44|  10.6k|#define OVS_BE64_MAX ((OVS_FORCE ovs_be64) 0xffffffffffffffffULL)
  ------------------
 1567|  10.6k|    }
 1568|       |
 1569|  22.5k|    if (fields & F_ACTIONS) {
  ------------------
  |  Branch (1569:9): [True: 15.0k, False: 7.49k]
  ------------------
 1570|  15.0k|        act_str = ofp_extract_actions(string);
 1571|  15.0k|        if (!act_str) {
  ------------------
  |  Branch (1571:13): [True: 192, False: 14.8k]
  ------------------
 1572|    192|            return xstrdup("must specify an action");
 1573|    192|        }
 1574|  15.0k|    }
 1575|       |
 1576|  22.3k|    struct match match = MATCH_CATCHALL_INITIALIZER;
  ------------------
  |  |   47|  22.3k|#define MATCH_CATCHALL_INITIALIZER { .flow = { .dl_type = 0 } }
  ------------------
 1577|   192k|    while (ofputil_parse_key_value(&string, &name, &value)) {
  ------------------
  |  Branch (1577:12): [True: 175k, False: 17.7k]
  ------------------
 1578|   175k|        const struct ofp_protocol *p;
 1579|   175k|        const struct mf_field *mf;
 1580|   175k|        char *error = NULL;
 1581|       |
 1582|   175k|        if (ofp_parse_protocol(name, &p)) {
  ------------------
  |  Branch (1582:13): [True: 16.2k, False: 158k]
  ------------------
 1583|  16.2k|            match_set_dl_type(&match, htons(p->dl_type));
 1584|  16.2k|            if (p->nw_proto) {
  ------------------
  |  Branch (1584:17): [True: 4.14k, False: 12.0k]
  ------------------
 1585|  4.14k|                match_set_nw_proto(&match, p->nw_proto);
 1586|  4.14k|            }
 1587|  16.2k|            match_set_default_packet_type(&match);
 1588|   158k|        } else if (!strcmp(name, "eth")) {
  ------------------
  |  Branch (1588:20): [True: 3.28k, False: 155k]
  ------------------
 1589|  3.28k|            match_set_packet_type(&match, htonl(PT_ETH));
 1590|   155k|        } else if (fields & F_FLAGS && !strcmp(name, "send_flow_rem")) {
  ------------------
  |  Branch (1590:20): [True: 15.1k, False: 140k]
  |  Branch (1590:40): [True: 71, False: 15.0k]
  ------------------
 1591|     71|            fm->flags |= OFPUTIL_FF_SEND_FLOW_REM;
 1592|   155k|        } else if (fields & F_FLAGS && !strcmp(name, "check_overlap")) {
  ------------------
  |  Branch (1592:20): [True: 15.0k, False: 140k]
  |  Branch (1592:40): [True: 197, False: 14.8k]
  ------------------
 1593|    197|            fm->flags |= OFPUTIL_FF_CHECK_OVERLAP;
 1594|   155k|        } else if (fields & F_FLAGS && !strcmp(name, "reset_counts")) {
  ------------------
  |  Branch (1594:20): [True: 14.8k, False: 140k]
  |  Branch (1594:40): [True: 720, False: 14.1k]
  ------------------
 1595|    720|            fm->flags |= OFPUTIL_FF_RESET_COUNTS;
 1596|    720|            *usable_protocols &= OFPUTIL_P_OF12_UP;
  ------------------
  |  |   94|    720|#define OFPUTIL_P_OF12_UP (OFPUTIL_P_OF12_OXM | OFPUTIL_P_OF13_UP)
  |  |  ------------------
  |  |  |  |   95|    720|#define OFPUTIL_P_OF13_UP (OFPUTIL_P_OF13_OXM | OFPUTIL_P_OF14_UP)
  |  |  |  |  ------------------
  |  |  |  |  |  |   96|    720|#define OFPUTIL_P_OF14_UP (OFPUTIL_P_OF14_OXM | OFPUTIL_P_OF15_UP)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   97|    720|#define OFPUTIL_P_OF15_UP OFPUTIL_P_OF15_OXM
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 1597|   154k|        } else if (fields & F_FLAGS && !strcmp(name, "no_packet_counts")) {
  ------------------
  |  Branch (1597:20): [True: 14.1k, False: 140k]
  |  Branch (1597:40): [True: 215, False: 13.9k]
  ------------------
 1598|    215|            fm->flags |= OFPUTIL_FF_NO_PKT_COUNTS;
 1599|    215|            *usable_protocols &= OFPUTIL_P_OF13_UP;
  ------------------
  |  |   95|    215|#define OFPUTIL_P_OF13_UP (OFPUTIL_P_OF13_OXM | OFPUTIL_P_OF14_UP)
  |  |  ------------------
  |  |  |  |   96|    215|#define OFPUTIL_P_OF14_UP (OFPUTIL_P_OF14_OXM | OFPUTIL_P_OF15_UP)
  |  |  |  |  ------------------
  |  |  |  |  |  |   97|    215|#define OFPUTIL_P_OF15_UP OFPUTIL_P_OF15_OXM
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 1600|   154k|        } else if (fields & F_FLAGS && !strcmp(name, "no_byte_counts")) {
  ------------------
  |  Branch (1600:20): [True: 13.9k, False: 140k]
  |  Branch (1600:40): [True: 273, False: 13.6k]
  ------------------
 1601|    273|            fm->flags |= OFPUTIL_FF_NO_BYT_COUNTS;
 1602|    273|            *usable_protocols &= OFPUTIL_P_OF13_UP;
  ------------------
  |  |   95|    273|#define OFPUTIL_P_OF13_UP (OFPUTIL_P_OF13_OXM | OFPUTIL_P_OF14_UP)
  |  |  ------------------
  |  |  |  |   96|    273|#define OFPUTIL_P_OF14_UP (OFPUTIL_P_OF14_OXM | OFPUTIL_P_OF15_UP)
  |  |  |  |  ------------------
  |  |  |  |  |  |   97|    273|#define OFPUTIL_P_OF15_UP OFPUTIL_P_OF15_OXM
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 1603|   154k|        } else if (!strcmp(name, "no_readonly_table")
  ------------------
  |  Branch (1603:20): [True: 195, False: 154k]
  ------------------
 1604|   154k|                   || !strcmp(name, "allow_hidden_fields")) {
  ------------------
  |  Branch (1604:23): [True: 201, False: 153k]
  ------------------
 1605|       |             /* ignore these fields. */
 1606|   153k|        } else if ((mf = mf_from_name(name)) != NULL) {
  ------------------
  |  Branch (1606:20): [True: 79.3k, False: 74.5k]
  ------------------
 1607|  79.3k|            error = ofp_parse_field(mf, value, port_map,
 1608|  79.3k|                                    &match, usable_protocols);
 1609|  79.3k|        } else if (strchr(name, '[')) {
  ------------------
  |  Branch (1609:20): [True: 61.1k, False: 13.3k]
  ------------------
 1610|  61.1k|            error = parse_subfield(name, value, &match, usable_protocols);
 1611|  61.1k|        } else {
 1612|  13.3k|            if (!*value) {
  ------------------
  |  Branch (1612:17): [True: 1.65k, False: 11.6k]
  ------------------
 1613|  1.65k|                return xasprintf("field %s missing value", name);
 1614|  1.65k|            }
 1615|       |
 1616|  11.6k|            if (!strcmp(name, "table")) {
  ------------------
  |  Branch (1616:17): [True: 5.43k, False: 6.23k]
  ------------------
 1617|  5.43k|                if (!ofputil_table_from_string(value, table_map,
  ------------------
  |  Branch (1617:21): [True: 247, False: 5.18k]
  ------------------
 1618|  5.43k|                                               &fm->table_id)) {
 1619|    247|                    return xasprintf("unknown table \"%s\"", value);
 1620|    247|                }
 1621|  5.18k|                if (fm->table_id != 0xff) {
  ------------------
  |  Branch (1621:21): [True: 4.95k, False: 228]
  ------------------
 1622|  4.95k|                    *usable_protocols &= OFPUTIL_P_TID;
  ------------------
  |  |  103|  4.95k|#define OFPUTIL_P_TID (OFPUTIL_P_OF10_STD_TID | \
  |  |  104|  4.95k|                       OFPUTIL_P_OF10_NXM_TID | \
  |  |  105|  4.95k|                       OFPUTIL_P_OF11_STD |     \
  |  |  106|  4.95k|                       OFPUTIL_P_ANY_OXM)
  |  |  ------------------
  |  |  |  |   82|  4.95k|#define OFPUTIL_P_ANY_OXM (OFPUTIL_P_OF12_OXM | \
  |  |  |  |   83|  4.95k|                           OFPUTIL_P_OF13_OXM | \
  |  |  |  |   84|  4.95k|                           OFPUTIL_P_OF14_OXM | \
  |  |  |  |   85|  4.95k|                           OFPUTIL_P_OF15_OXM)
  |  |  ------------------
  ------------------
 1623|  4.95k|                }
 1624|  6.23k|            } else if (fields & F_OUT_PORT && !strcmp(name, "out_port")) {
  ------------------
  |  Branch (1624:24): [True: 4.23k, False: 1.99k]
  |  Branch (1624:47): [True: 254, False: 3.98k]
  ------------------
 1625|    254|                if (!ofputil_port_from_string(value, port_map,
  ------------------
  |  Branch (1625:21): [True: 1, False: 253]
  ------------------
 1626|    254|                                              &fm->out_port)) {
 1627|      1|                    error = xasprintf("%s is not a valid OpenFlow port",
 1628|      1|                                      value);
 1629|      1|                }
 1630|  5.97k|            } else if (fields & F_OUT_PORT && !strcmp(name, "out_group")) {
  ------------------
  |  Branch (1630:24): [True: 3.98k, False: 1.99k]
  |  Branch (1630:47): [True: 669, False: 3.31k]
  ------------------
 1631|    669|                *usable_protocols &= OFPUTIL_P_OF11_UP;
  ------------------
  |  |   92|    669|#define OFPUTIL_P_OF11_UP (OFPUTIL_P_OF11_STD | OFPUTIL_P_ANY_OXM)
  |  |  ------------------
  |  |  |  |   82|    669|#define OFPUTIL_P_ANY_OXM (OFPUTIL_P_OF12_OXM | \
  |  |  |  |   83|    669|                           OFPUTIL_P_OF13_OXM | \
  |  |  |  |   84|    669|                           OFPUTIL_P_OF14_OXM | \
  |  |  |  |   85|    669|                           OFPUTIL_P_OF15_OXM)
  |  |  ------------------
  ------------------
 1632|    669|                if (!ofputil_group_from_string(value, &fm->out_group)) {
  ------------------
  |  Branch (1632:21): [True: 48, False: 621]
  ------------------
 1633|     48|                    error = xasprintf("%s is not a valid OpenFlow group",
 1634|     48|                                      value);
 1635|     48|                }
 1636|  5.30k|            } else if (fields & F_PRIORITY && !strcmp(name, "priority")) {
  ------------------
  |  Branch (1636:24): [True: 3.02k, False: 2.28k]
  |  Branch (1636:47): [True: 295, False: 2.73k]
  ------------------
 1637|    295|                uint16_t priority = 0;
 1638|       |
 1639|    295|                error = str_to_u16(value, name, &priority);
 1640|    295|                fm->priority = priority;
 1641|  5.01k|            } else if (fields & F_TIMEOUT && !strcmp(name, "idle_timeout")) {
  ------------------
  |  Branch (1641:24): [True: 1.99k, False: 3.02k]
  |  Branch (1641:46): [True: 237, False: 1.75k]
  ------------------
 1642|    237|                error = str_to_u16(value, name, &fm->idle_timeout);
 1643|  4.77k|            } else if (fields & F_TIMEOUT && !strcmp(name, "hard_timeout")) {
  ------------------
  |  Branch (1643:24): [True: 1.75k, False: 3.02k]
  |  Branch (1643:46): [True: 195, False: 1.55k]
  ------------------
 1644|    195|                error = str_to_u16(value, name, &fm->hard_timeout);
 1645|  4.58k|            } else if (fields & F_IMPORTANCE && !strcmp(name, "importance")) {
  ------------------
  |  Branch (1645:24): [True: 585, False: 3.99k]
  |  Branch (1645:49): [True: 35, False: 550]
  ------------------
 1646|     35|                error = str_to_u16(value, name, &fm->importance);
 1647|  4.54k|            } else if (!strcmp(name, "cookie")) {
  ------------------
  |  Branch (1647:24): [True: 1.31k, False: 3.23k]
  ------------------
 1648|  1.31k|                char *mask = strchr(value, '/');
 1649|       |
 1650|  1.31k|                if (mask) {
  ------------------
  |  Branch (1650:21): [True: 687, False: 625]
  ------------------
 1651|       |                    /* A mask means we're searching for a cookie. */
 1652|    687|                    if (command == OFPFC_ADD) {
  ------------------
  |  Branch (1652:25): [True: 1, False: 686]
  ------------------
 1653|      1|                        return xstrdup("flow additions cannot use "
 1654|      1|                                       "a cookie mask");
 1655|      1|                    }
 1656|    686|                    *mask = '\0';
 1657|    686|                    error = str_to_be64(value, &fm->cookie);
 1658|    686|                    if (error) {
  ------------------
  |  Branch (1658:25): [True: 11, False: 675]
  ------------------
 1659|     11|                        return error;
 1660|     11|                    }
 1661|    675|                    error = str_to_be64(mask + 1, &fm->cookie_mask);
 1662|       |
 1663|       |                    /* Matching of the cookie is only supported through NXM or
 1664|       |                     * OF1.1+. */
 1665|    675|                    if (fm->cookie_mask != htonll(0)) {
  ------------------
  |  Branch (1665:25): [True: 526, False: 149]
  ------------------
 1666|    526|                        *usable_protocols &= OFPUTIL_P_NXM_OF11_UP;
  ------------------
  |  |   87|    526|#define OFPUTIL_P_NXM_OF11_UP (OFPUTIL_P_OF10_NXM_ANY | OFPUTIL_P_OF11_STD | \
  |  |  ------------------
  |  |  |  |   59|    526|#define OFPUTIL_P_OF10_NXM_ANY (OFPUTIL_P_OF10_NXM | OFPUTIL_P_OF10_NXM_TID)
  |  |  ------------------
  |  |   88|    526|                               OFPUTIL_P_ANY_OXM)
  |  |  ------------------
  |  |  |  |   82|    526|#define OFPUTIL_P_ANY_OXM (OFPUTIL_P_OF12_OXM | \
  |  |  |  |   83|    526|                           OFPUTIL_P_OF13_OXM | \
  |  |  |  |   84|    526|                           OFPUTIL_P_OF14_OXM | \
  |  |  |  |   85|    526|                           OFPUTIL_P_OF15_OXM)
  |  |  ------------------
  ------------------
 1667|    526|                    }
 1668|    675|                } else {
 1669|       |                    /* No mask means that the cookie is being set. */
 1670|    625|                    if (command != OFPFC_ADD && command != OFPFC_MODIFY
  ------------------
  |  Branch (1670:25): [True: 403, False: 222]
  |  Branch (1670:49): [True: 183, False: 220]
  ------------------
 1671|    183|                        && command != OFPFC_MODIFY_STRICT) {
  ------------------
  |  Branch (1671:28): [True: 2, False: 181]
  ------------------
 1672|      2|                        return xasprintf("cannot set cookie (to match on a "
 1673|      2|                                         "cookie, specify a mask, e.g. "
 1674|      2|                                         "cookie=%s/-1)", value);
 1675|      2|                    }
 1676|    623|                    error = str_to_be64(value, &fm->new_cookie);
 1677|    623|                    fm->modify_cookie = true;
 1678|    623|                }
 1679|  3.23k|            } else if (!strcmp(name, "duration")
  ------------------
  |  Branch (1679:24): [True: 273, False: 2.96k]
  ------------------
 1680|  2.96k|                       || !strcmp(name, "n_packets")
  ------------------
  |  Branch (1680:27): [True: 179, False: 2.78k]
  ------------------
 1681|  2.78k|                       || !strcmp(name, "n_bytes")
  ------------------
  |  Branch (1681:27): [True: 808, False: 1.97k]
  ------------------
 1682|  1.97k|                       || !strcmp(name, "idle_age")
  ------------------
  |  Branch (1682:27): [True: 364, False: 1.61k]
  ------------------
 1683|  2.15k|                       || !strcmp(name, "hard_age")) {
  ------------------
  |  Branch (1683:27): [True: 535, False: 1.07k]
  ------------------
 1684|       |                /* Ignore these, so that users can feed the output of
 1685|       |                 * "ovs-ofctl dump-flows" back into commands that parse
 1686|       |                 * flows. */
 1687|  2.15k|            } else {
 1688|  1.07k|                error = xasprintf("unknown keyword %s", name);
 1689|  1.07k|            }
 1690|  11.6k|        }
 1691|       |
 1692|   173k|        if (error) {
  ------------------
  |  Branch (1692:13): [True: 2.71k, False: 170k]
  ------------------
 1693|  2.71k|            return error;
 1694|  2.71k|        }
 1695|   173k|    }
 1696|       |    /* Copy ethertype to flow->dl_type for matches on packet_type
 1697|       |     * (OFPHTN_ETHERTYPE, ethertype). */
 1698|  17.7k|    if (match.wc.masks.packet_type == OVS_BE32_MAX &&
  ------------------
  |  |   43|  35.4k|#define OVS_BE32_MAX ((OVS_FORCE ovs_be32) 0xffffffff)
  ------------------
  |  Branch (1698:9): [True: 4.54k, False: 13.1k]
  ------------------
 1699|  4.54k|            pt_ns(match.flow.packet_type) == OFPHTN_ETHERTYPE) {
  ------------------
  |  Branch (1699:13): [True: 156, False: 4.39k]
  ------------------
 1700|    156|        match.flow.dl_type = pt_ns_type_be(match.flow.packet_type);
 1701|    156|    }
 1702|       |    /* Check for usable protocol interdependencies between match fields. */
 1703|  17.7k|    if (match.flow.dl_type == htons(ETH_TYPE_IPV6)) {
  ------------------
  |  Branch (1703:9): [True: 950, False: 16.7k]
  ------------------
 1704|    950|        const struct flow_wildcards *wc = &match.wc;
 1705|       |        /* Only NXM and OXM support matching L3 and L4 fields within IPv6.
 1706|       |         *
 1707|       |         * (IPv6 specific fields as well as arp_sha, arp_tha, nw_frag, and
 1708|       |         *  nw_ttl are covered elsewhere so they don't need to be included in
 1709|       |         *  this test too.)
 1710|       |         */
 1711|    950|        if (wc->masks.nw_proto || wc->masks.nw_tos
  ------------------
  |  Branch (1711:13): [True: 400, False: 550]
  |  Branch (1711:35): [True: 2, False: 548]
  ------------------
 1712|    548|            || wc->masks.tp_src || wc->masks.tp_dst) {
  ------------------
  |  Branch (1712:16): [True: 1, False: 547]
  |  Branch (1712:36): [True: 11, False: 536]
  ------------------
 1713|    414|            *usable_protocols &= OFPUTIL_P_NXM_OXM_ANY;
  ------------------
  |  |   90|    414|#define OFPUTIL_P_NXM_OXM_ANY (OFPUTIL_P_OF10_NXM_ANY | OFPUTIL_P_ANY_OXM)
  |  |  ------------------
  |  |  |  |   59|    414|#define OFPUTIL_P_OF10_NXM_ANY (OFPUTIL_P_OF10_NXM | OFPUTIL_P_OF10_NXM_TID)
  |  |  ------------------
  |  |               #define OFPUTIL_P_NXM_OXM_ANY (OFPUTIL_P_OF10_NXM_ANY | OFPUTIL_P_ANY_OXM)
  |  |  ------------------
  |  |  |  |   82|    414|#define OFPUTIL_P_ANY_OXM (OFPUTIL_P_OF12_OXM | \
  |  |  |  |   83|    414|                           OFPUTIL_P_OF13_OXM | \
  |  |  |  |   84|    414|                           OFPUTIL_P_OF14_OXM | \
  |  |  |  |   85|    414|                           OFPUTIL_P_OF15_OXM)
  |  |  ------------------
  ------------------
 1714|    414|        }
 1715|    950|    }
 1716|  17.7k|    if (!fm->cookie_mask && fm->new_cookie == OVS_BE64_MAX
  ------------------
  |  |   44|  35.2k|#define OVS_BE64_MAX ((OVS_FORCE ovs_be64) 0xffffffffffffffffULL)
  ------------------
  |  Branch (1716:9): [True: 17.5k, False: 180]
  |  Branch (1716:29): [True: 9.97k, False: 7.56k]
  ------------------
 1717|  9.97k|        && (command == OFPFC_MODIFY || command == OFPFC_MODIFY_STRICT)) {
  ------------------
  |  Branch (1717:13): [True: 6.12k, False: 3.84k]
  |  Branch (1717:40): [True: 3.84k, False: 1]
  ------------------
 1718|       |        /* On modifies without a mask, we are supposed to add a flow if
 1719|       |         * one does not exist.  If a cookie wasn't been specified, use a
 1720|       |         * default of zero. */
 1721|  9.97k|        fm->new_cookie = htonll(0);
 1722|  9.97k|    }
 1723|  17.7k|    if (fields & F_ACTIONS) {
  ------------------
  |  Branch (1723:9): [True: 13.9k, False: 3.73k]
  ------------------
 1724|  13.9k|        enum ofputil_protocol action_usable_protocols;
 1725|  13.9k|        struct ofpbuf ofpacts;
 1726|  13.9k|        char *error;
 1727|       |
 1728|  13.9k|        ofpbuf_init(&ofpacts, 32);
 1729|  13.9k|        struct ofpact_parse_params pp = {
 1730|  13.9k|            .port_map = port_map,
 1731|  13.9k|            .table_map = table_map,
 1732|  13.9k|            .ofpacts = &ofpacts,
 1733|  13.9k|            .usable_protocols = &action_usable_protocols
 1734|  13.9k|        };
 1735|  13.9k|        error = ofpacts_parse_instructions(act_str, &pp);
 1736|  13.9k|        *usable_protocols &= action_usable_protocols;
 1737|  13.9k|        if (!error) {
  ------------------
  |  Branch (1737:13): [True: 6.25k, False: 7.72k]
  ------------------
 1738|  6.25k|            enum ofperr err;
 1739|       |
 1740|  6.25k|            struct ofpact_check_params cp = {
 1741|  6.25k|                .match = &match,
 1742|  6.25k|                .max_ports = OFPP_MAX,
  ------------------
  |  |   33|  6.25k|#define OFPP_MAX        OFP_PORT_C(0xff00) /* Max # of switch ports. */
  |  |  ------------------
  |  |  |  |  157|  6.25k|#define OFP_PORT_C(X) ((OVS_FORCE ofp_port_t) (X))
  |  |  ------------------
  ------------------
 1743|  6.25k|                .table_id = fm->table_id,
 1744|  6.25k|                .n_tables = 255,
 1745|  6.25k|            };
 1746|  6.25k|            err = ofpacts_check(ofpacts.data, ofpacts.size, &cp);
 1747|  6.25k|            *usable_protocols &= cp.usable_protocols;
 1748|  6.25k|            if (!err && !*usable_protocols) {
  ------------------
  |  Branch (1748:17): [True: 5.58k, False: 674]
  |  Branch (1748:25): [True: 34, False: 5.54k]
  ------------------
 1749|     34|                err = OFPERR_OFPBAC_MATCH_INCONSISTENT;
 1750|     34|            }
 1751|  6.25k|            if (err) {
  ------------------
  |  Branch (1751:17): [True: 708, False: 5.54k]
  ------------------
 1752|    708|                error = xasprintf("actions are invalid with specified match "
 1753|    708|                                  "(%s)", ofperr_to_string(err));
 1754|    708|            }
 1755|       |
 1756|  6.25k|        }
 1757|  13.9k|        if (error) {
  ------------------
  |  Branch (1757:13): [True: 8.43k, False: 5.54k]
  ------------------
 1758|  8.43k|            ofpbuf_uninit(&ofpacts);
 1759|  8.43k|            return error;
 1760|  8.43k|        }
 1761|       |
 1762|  5.54k|        fm->ofpacts_len = ofpacts.size;
 1763|  5.54k|        fm->ofpacts = ofpbuf_steal_data(&ofpacts);
 1764|  5.54k|    } else {
 1765|  3.73k|        fm->ofpacts_len = 0;
 1766|  3.73k|        fm->ofpacts = NULL;
 1767|  3.73k|    }
 1768|  9.28k|    minimatch_init(&fm->match, &match);
 1769|       |
 1770|       |    return NULL;
 1771|  17.7k|}
ofp-flow.c:parse_subfield:
 1446|  61.1k|{
 1447|  61.1k|    struct mf_subfield sf;
 1448|  61.1k|    char *error;
 1449|       |
 1450|  61.1k|    error = mf_parse_subfield(&sf, name);
 1451|  61.1k|    if (!error) {
  ------------------
  |  Branch (1451:9): [True: 60.7k, False: 468]
  ------------------
 1452|  60.7k|        union mf_value val;
 1453|  60.7k|        char *tail;
 1454|  60.7k|        if (parse_int_string(str_value, (uint8_t *)&val, sf.field->n_bytes,
  ------------------
  |  Branch (1454:13): [True: 42, False: 60.6k]
  ------------------
 1455|  60.7k|                             &tail) || *tail != 0) {
  ------------------
  |  Branch (1455:40): [True: 23, False: 60.6k]
  ------------------
 1456|     65|            return xasprintf("%s: cannot parse integer value: %s", name,
 1457|     65|                             str_value);
 1458|     65|        }
 1459|  60.6k|        if (!bitwise_is_all_zeros(&val, sf.field->n_bytes, sf.n_bits,
  ------------------
  |  Branch (1459:13): [True: 112, False: 60.5k]
  ------------------
 1460|  60.6k|                                  sf.field->n_bytes * 8 - sf.n_bits)) {
 1461|    112|            struct ds ds;
 1462|       |
 1463|    112|            ds_init(&ds);
 1464|    112|            mf_format(sf.field, &val, NULL, NULL, &ds);
 1465|    112|            error = xasprintf("%s: value %s does not fit into %d bits",
 1466|    112|                              name, ds_cstr(&ds), sf.n_bits);
 1467|    112|            ds_destroy(&ds);
 1468|    112|            return error;
 1469|    112|        }
 1470|       |
 1471|  60.5k|        const struct mf_field *field = sf.field;
 1472|  60.5k|        union mf_value value, mask;
 1473|  60.5k|        unsigned int size = field->n_bytes;
 1474|       |
 1475|  60.5k|        mf_get(field, match, &value, &mask);
 1476|  60.5k|        bitwise_copy(&val, size, 0, &value, size, sf.ofs, sf.n_bits);
 1477|  60.5k|        bitwise_one (               &mask,  size, sf.ofs, sf.n_bits);
 1478|  60.5k|        *usable_protocols &= mf_set(field, &value, &mask, match, &error);
 1479|       |
 1480|  60.5k|        match_add_ethernet_prereq(match, sf.field);
 1481|  60.5k|    }
 1482|  61.0k|    return error;
 1483|  61.1k|}

ofputil_group_from_string:
   46|    669|{
   47|    669|    if (!strcasecmp(s, "any")) {
  ------------------
  |  Branch (47:9): [True: 194, False: 475]
  ------------------
   48|    194|        *group_idp = OFPG_ANY;
   49|    475|    } else if (!strcasecmp(s, "all")) {
  ------------------
  |  Branch (49:16): [True: 194, False: 281]
  ------------------
   50|    194|        *group_idp = OFPG_ALL;
   51|    281|    } else if (!str_to_uint(s, 10, group_idp)) {
  ------------------
  |  Branch (51:16): [True: 48, False: 233]
  ------------------
   52|     48|        VLOG_WARN("%s is not a valid group ID.  (Valid group IDs are "
  ------------------
  |  |  209|     48|#define VLOG_WARN(...) VLOG(VLL_WARN, __VA_ARGS__)
  |  |  ------------------
  |  |  |  |  280|     48|    do {                                                \
  |  |  |  |  281|     48|        enum vlog_level level__ = LEVEL;                \
  |  |  |  |  282|     48|        if (this_module.min_level >= level__) {         \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (282:13): [True: 0, False: 48]
  |  |  |  |  ------------------
  |  |  |  |  283|      0|            vlog(&this_module, level__, __VA_ARGS__);   \
  |  |  |  |  284|      0|        }                                               \
  |  |  |  |  285|     48|    } while (0)
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (285:14): [Folded, False: 48]
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
   53|     48|                  "32-bit nonnegative integers or the keywords ANY or "
   54|     48|                  "ALL.)", s);
   55|     48|        return false;
   56|     48|    }
   57|       |
   58|    621|    return true;
   59|    669|}

ofputil_match_to_ofp10_match:
  184|  4.76k|{
  185|  4.76k|    const struct flow_wildcards *wc = &match->wc;
  186|  4.76k|    uint32_t ofpfw;
  187|       |
  188|       |    /* Figure out most OpenFlow wildcards. */
  189|  4.76k|    ofpfw = 0;
  190|  4.76k|    if (!wc->masks.in_port.ofp_port) {
  ------------------
  |  Branch (190:9): [True: 4.75k, False: 4]
  ------------------
  191|  4.75k|        ofpfw |= OFPFW10_IN_PORT;
  192|  4.75k|    }
  193|  4.76k|    if (!wc->masks.dl_type) {
  ------------------
  |  Branch (193:9): [True: 3.51k, False: 1.25k]
  ------------------
  194|  3.51k|        ofpfw |= OFPFW10_DL_TYPE;
  195|  3.51k|    }
  196|  4.76k|    if (!wc->masks.nw_proto) {
  ------------------
  |  Branch (196:9): [True: 4.40k, False: 356]
  ------------------
  197|  4.40k|        ofpfw |= OFPFW10_NW_PROTO;
  198|  4.40k|    }
  199|  4.76k|    ofpfw |= (ofputil_netmask_to_wcbits(wc->masks.nw_src)
  200|  4.76k|              << OFPFW10_NW_SRC_SHIFT);
  201|  4.76k|    ofpfw |= (ofputil_netmask_to_wcbits(wc->masks.nw_dst)
  202|  4.76k|              << OFPFW10_NW_DST_SHIFT);
  203|  4.76k|    if (!(wc->masks.nw_tos & IP_DSCP_MASK)) {
  ------------------
  |  |  724|  4.76k|#define IP_DSCP_MASK 0xfc
  ------------------
  |  Branch (203:9): [True: 4.74k, False: 14]
  ------------------
  204|  4.74k|        ofpfw |= OFPFW10_NW_TOS;
  205|  4.74k|    }
  206|  4.76k|    if (!wc->masks.tp_src) {
  ------------------
  |  Branch (206:9): [True: 4.73k, False: 24]
  ------------------
  207|  4.73k|        ofpfw |= OFPFW10_TP_SRC;
  208|  4.73k|    }
  209|  4.76k|    if (!wc->masks.tp_dst) {
  ------------------
  |  Branch (209:9): [True: 4.74k, False: 21]
  ------------------
  210|  4.74k|        ofpfw |= OFPFW10_TP_DST;
  211|  4.74k|    }
  212|  4.76k|    if (eth_addr_is_zero(wc->masks.dl_src)) {
  ------------------
  |  Branch (212:9): [True: 4.75k, False: 8]
  ------------------
  213|  4.75k|        ofpfw |= OFPFW10_DL_SRC;
  214|  4.75k|    }
  215|  4.76k|    if (eth_addr_is_zero(wc->masks.dl_dst)) {
  ------------------
  |  Branch (215:9): [True: 4.75k, False: 6]
  ------------------
  216|  4.75k|        ofpfw |= OFPFW10_DL_DST;
  217|  4.75k|    }
  218|       |
  219|       |    /* Translate VLANs. */
  220|  4.76k|    ofmatch->dl_vlan = htons(0);
  221|  4.76k|    ofmatch->dl_vlan_pcp = 0;
  222|  4.76k|    if (match->wc.masks.vlans[0].tci == htons(0)) {
  ------------------
  |  Branch (222:9): [True: 4.70k, False: 61]
  ------------------
  223|  4.70k|        ofpfw |= OFPFW10_DL_VLAN | OFPFW10_DL_VLAN_PCP;
  224|  4.70k|    } else if (match->wc.masks.vlans[0].tci & htons(VLAN_CFI)
  ------------------
  |  Branch (224:16): [True: 61, False: 0]
  ------------------
  225|     61|               && !(match->flow.vlans[0].tci & htons(VLAN_CFI))) {
  ------------------
  |  Branch (225:19): [True: 20, False: 41]
  ------------------
  226|     20|        ofmatch->dl_vlan = htons(OFP10_VLAN_NONE);
  227|     41|    } else {
  228|     41|        if (!(match->wc.masks.vlans[0].tci & htons(VLAN_VID_MASK))) {
  ------------------
  |  Branch (228:13): [True: 14, False: 27]
  ------------------
  229|     14|            ofpfw |= OFPFW10_DL_VLAN;
  230|     27|        } else {
  231|     27|            ofmatch->dl_vlan =
  232|     27|                htons(vlan_tci_to_vid(match->flow.vlans[0].tci));
  233|     27|        }
  234|       |
  235|     41|        if (!(match->wc.masks.vlans[0].tci & htons(VLAN_PCP_MASK))) {
  ------------------
  |  Branch (235:13): [True: 27, False: 14]
  ------------------
  236|     27|            ofpfw |= OFPFW10_DL_VLAN_PCP;
  237|     27|        } else {
  238|     14|            ofmatch->dl_vlan_pcp = vlan_tci_to_pcp(match->flow.vlans[0].tci);
  239|     14|        }
  240|     41|    }
  241|       |
  242|       |    /* Compose most of the match structure. */
  243|  4.76k|    ofmatch->wildcards = htonl(ofpfw);
  244|  4.76k|    ofmatch->in_port = htons(ofp_to_u16(match->flow.in_port.ofp_port));
  245|  4.76k|    ofmatch->dl_src = match->flow.dl_src;
  246|  4.76k|    ofmatch->dl_dst = match->flow.dl_dst;
  247|  4.76k|    ofmatch->dl_type = ofputil_dl_type_to_openflow(match->flow.dl_type);
  248|  4.76k|    ofmatch->nw_src = match->flow.nw_src;
  249|  4.76k|    ofmatch->nw_dst = match->flow.nw_dst;
  250|  4.76k|    ofmatch->nw_tos = match->flow.nw_tos & IP_DSCP_MASK;
  ------------------
  |  |  724|  4.76k|#define IP_DSCP_MASK 0xfc
  ------------------
  251|  4.76k|    ofmatch->nw_proto = match->flow.nw_proto;
  252|  4.76k|    ofmatch->tp_src = match->flow.tp_src;
  253|  4.76k|    ofmatch->tp_dst = match->flow.tp_dst;
  254|  4.76k|    memset(ofmatch->pad1, '\0', sizeof ofmatch->pad1);
  255|  4.76k|    memset(ofmatch->pad2, '\0', sizeof ofmatch->pad2);
  256|  4.76k|}
ofputil_match_to_ofp11_match:
  453|    212|{
  454|    212|    uint32_t wc = 0;
  455|       |
  456|    212|    memset(ofmatch, 0, sizeof *ofmatch);
  457|    212|    ofmatch->omh.type = htons(OFPMT_STANDARD);
  458|    212|    ofmatch->omh.length = htons(OFPMT11_STANDARD_LENGTH);
  459|       |
  460|    212|    if (!match->wc.masks.in_port.ofp_port) {
  ------------------
  |  Branch (460:9): [True: 211, False: 1]
  ------------------
  461|    211|        wc |= OFPFW11_IN_PORT;
  462|    211|    } else {
  463|      1|        ofmatch->in_port = ofputil_port_to_ofp11(match->flow.in_port.ofp_port);
  464|      1|    }
  465|       |
  466|    212|    ofmatch->dl_src = match->flow.dl_src;
  467|    212|    ofmatch->dl_src_mask = eth_addr_invert(match->wc.masks.dl_src);
  468|    212|    ofmatch->dl_dst = match->flow.dl_dst;
  469|    212|    ofmatch->dl_dst_mask = eth_addr_invert(match->wc.masks.dl_dst);
  470|       |
  471|    212|    if (match->wc.masks.vlans[0].tci == htons(0)) {
  ------------------
  |  Branch (471:9): [True: 208, False: 4]
  ------------------
  472|    208|        wc |= OFPFW11_DL_VLAN | OFPFW11_DL_VLAN_PCP;
  473|    208|    } else if (match->wc.masks.vlans[0].tci & htons(VLAN_CFI)
  ------------------
  |  Branch (473:16): [True: 4, False: 0]
  ------------------
  474|      4|               && !(match->flow.vlans[0].tci & htons(VLAN_CFI))) {
  ------------------
  |  Branch (474:19): [True: 2, False: 2]
  ------------------
  475|      2|        ofmatch->dl_vlan = htons(OFPVID11_NONE);
  476|      2|        wc |= OFPFW11_DL_VLAN_PCP;
  477|      2|    } else {
  478|      2|        if (!(match->wc.masks.vlans[0].tci & htons(VLAN_VID_MASK))) {
  ------------------
  |  Branch (478:13): [True: 1, False: 1]
  ------------------
  479|      1|            ofmatch->dl_vlan = htons(OFPVID11_ANY);
  480|      1|        } else {
  481|      1|            ofmatch->dl_vlan =
  482|      1|                htons(vlan_tci_to_vid(match->flow.vlans[0].tci));
  483|      1|        }
  484|       |
  485|      2|        if (!(match->wc.masks.vlans[0].tci & htons(VLAN_PCP_MASK))) {
  ------------------
  |  Branch (485:13): [True: 1, False: 1]
  ------------------
  486|      1|            wc |= OFPFW11_DL_VLAN_PCP;
  487|      1|        } else {
  488|      1|            ofmatch->dl_vlan_pcp = vlan_tci_to_pcp(match->flow.vlans[0].tci);
  489|      1|        }
  490|      2|    }
  491|       |
  492|    212|    if (!match->wc.masks.dl_type) {
  ------------------
  |  Branch (492:9): [True: 149, False: 63]
  ------------------
  493|    149|        wc |= OFPFW11_DL_TYPE;
  494|    149|    } else {
  495|     63|        ofmatch->dl_type = ofputil_dl_type_to_openflow(match->flow.dl_type);
  496|     63|    }
  497|       |
  498|    212|    if (!(match->wc.masks.nw_tos & IP_DSCP_MASK)) {
  ------------------
  |  |  724|    212|#define IP_DSCP_MASK 0xfc
  ------------------
  |  Branch (498:9): [True: 211, False: 1]
  ------------------
  499|    211|        wc |= OFPFW11_NW_TOS;
  500|    211|    } else {
  501|      1|        ofmatch->nw_tos = match->flow.nw_tos & IP_DSCP_MASK;
  ------------------
  |  |  724|      1|#define IP_DSCP_MASK 0xfc
  ------------------
  502|      1|    }
  503|       |
  504|    212|    if (!match->wc.masks.nw_proto) {
  ------------------
  |  Branch (504:9): [True: 195, False: 17]
  ------------------
  505|    195|        wc |= OFPFW11_NW_PROTO;
  506|    195|    } else {
  507|     17|        ofmatch->nw_proto = match->flow.nw_proto;
  508|     17|    }
  509|       |
  510|    212|    ofmatch->nw_src = match->flow.nw_src;
  511|    212|    ofmatch->nw_src_mask = ~match->wc.masks.nw_src;
  512|    212|    ofmatch->nw_dst = match->flow.nw_dst;
  513|    212|    ofmatch->nw_dst_mask = ~match->wc.masks.nw_dst;
  514|       |
  515|    212|    if (!match->wc.masks.tp_src) {
  ------------------
  |  Branch (515:9): [True: 211, False: 1]
  ------------------
  516|    211|        wc |= OFPFW11_TP_SRC;
  517|    211|    } else {
  518|      1|        ofmatch->tp_src = match->flow.tp_src;
  519|      1|    }
  520|       |
  521|    212|    if (!match->wc.masks.tp_dst) {
  ------------------
  |  Branch (521:9): [True: 211, False: 1]
  ------------------
  522|    211|        wc |= OFPFW11_TP_DST;
  523|    211|    } else {
  524|      1|        ofmatch->tp_dst = match->flow.tp_dst;
  525|      1|    }
  526|       |
  527|    212|    if (!(match->wc.masks.mpls_lse[0] & htonl(MPLS_LABEL_MASK))) {
  ------------------
  |  Branch (527:9): [True: 211, False: 1]
  ------------------
  528|    211|        wc |= OFPFW11_MPLS_LABEL;
  529|    211|    } else {
  530|      1|        ofmatch->mpls_label = htonl(mpls_lse_to_label(
  531|      1|                                        match->flow.mpls_lse[0]));
  532|      1|    }
  533|       |
  534|    212|    if (!(match->wc.masks.mpls_lse[0] & htonl(MPLS_TC_MASK))) {
  ------------------
  |  Branch (534:9): [True: 211, False: 1]
  ------------------
  535|    211|        wc |= OFPFW11_MPLS_TC;
  536|    211|    } else {
  537|      1|        ofmatch->mpls_tc = mpls_lse_to_tc(match->flow.mpls_lse[0]);
  538|      1|    }
  539|       |
  540|    212|    ofmatch->metadata = match->flow.metadata;
  541|    212|    ofmatch->metadata_mask = ~match->wc.masks.metadata;
  542|       |
  543|       |    ofmatch->wildcards = htonl(wc);
  544|    212|}
ofputil_match_typical_len:
  550|    678|{
  551|    678|    switch (protocol) {
  552|      0|    case OFPUTIL_P_OF10_STD:
  ------------------
  |  Branch (552:5): [True: 0, False: 678]
  ------------------
  553|      0|    case OFPUTIL_P_OF10_STD_TID:
  ------------------
  |  Branch (553:5): [True: 0, False: 678]
  ------------------
  554|      0|        return sizeof(struct ofp10_match);
  555|       |
  556|      0|    case OFPUTIL_P_OF10_NXM:
  ------------------
  |  Branch (556:5): [True: 0, False: 678]
  ------------------
  557|      0|    case OFPUTIL_P_OF10_NXM_TID:
  ------------------
  |  Branch (557:5): [True: 0, False: 678]
  ------------------
  558|      0|        return NXM_TYPICAL_LEN;
  ------------------
  |  |  179|      0|#define NXM_TYPICAL_LEN 64
  ------------------
  559|       |
  560|    212|    case OFPUTIL_P_OF11_STD:
  ------------------
  |  Branch (560:5): [True: 212, False: 466]
  ------------------
  561|    212|        return sizeof(struct ofp11_match);
  562|       |
  563|    117|    case OFPUTIL_P_OF12_OXM:
  ------------------
  |  Branch (563:5): [True: 117, False: 561]
  ------------------
  564|    466|    case OFPUTIL_P_OF13_OXM:
  ------------------
  |  Branch (564:5): [True: 349, False: 329]
  ------------------
  565|    466|    case OFPUTIL_P_OF14_OXM:
  ------------------
  |  Branch (565:5): [True: 0, False: 678]
  ------------------
  566|    466|    case OFPUTIL_P_OF15_OXM:
  ------------------
  |  Branch (566:5): [True: 0, False: 678]
  ------------------
  567|    466|        return NXM_TYPICAL_LEN;
  ------------------
  |  |  179|    466|#define NXM_TYPICAL_LEN 64
  ------------------
  568|       |
  569|      0|    default:
  ------------------
  |  Branch (569:5): [True: 0, False: 678]
  ------------------
  570|      0|        OVS_NOT_REACHED();
  ------------------
  |  |  107|      0|#define OVS_NOT_REACHED() abort()
  ------------------
  571|    678|    }
  572|    678|}
ofputil_put_ofp11_match:
  586|    678|{
  587|    678|    switch (protocol) {
  ------------------
  |  Branch (587:13): [True: 678, False: 0]
  ------------------
  588|      0|    case OFPUTIL_P_OF10_STD:
  ------------------
  |  Branch (588:5): [True: 0, False: 678]
  ------------------
  589|      0|    case OFPUTIL_P_OF10_STD_TID:
  ------------------
  |  Branch (589:5): [True: 0, False: 678]
  ------------------
  590|      0|    case OFPUTIL_P_OF10_NXM:
  ------------------
  |  Branch (590:5): [True: 0, False: 678]
  ------------------
  591|      0|    case OFPUTIL_P_OF10_NXM_TID:
  ------------------
  |  Branch (591:5): [True: 0, False: 678]
  ------------------
  592|      0|        OVS_NOT_REACHED();
  ------------------
  |  |  107|      0|#define OVS_NOT_REACHED() abort()
  ------------------
  593|       |
  594|    212|    case OFPUTIL_P_OF11_STD: {
  ------------------
  |  Branch (594:5): [True: 212, False: 466]
  ------------------
  595|    212|        struct ofp11_match *om;
  596|       |
  597|       |        /* Make sure that no padding is needed. */
  598|    212|        BUILD_ASSERT_DECL(sizeof *om % 8 == 0);
  ------------------
  |  |  270|    212|#define BUILD_ASSERT_DECL(EXPR) _Static_assert(EXPR, #EXPR)
  ------------------
  599|       |
  600|    212|        om = ofpbuf_put_uninit(b, sizeof *om);
  601|    212|        ofputil_match_to_ofp11_match(match, om);
  602|    212|        return sizeof *om;
  603|      0|    }
  604|       |
  605|    117|    case OFPUTIL_P_OF12_OXM:
  ------------------
  |  Branch (605:5): [True: 117, False: 561]
  ------------------
  606|    466|    case OFPUTIL_P_OF13_OXM:
  ------------------
  |  Branch (606:5): [True: 349, False: 329]
  ------------------
  607|    466|    case OFPUTIL_P_OF14_OXM:
  ------------------
  |  Branch (607:5): [True: 0, False: 678]
  ------------------
  608|    466|    case OFPUTIL_P_OF15_OXM:
  ------------------
  |  Branch (608:5): [True: 0, False: 678]
  ------------------
  609|    466|        return oxm_put_match(b, match,
  610|    466|                             ofputil_protocol_to_ofp_version(protocol));
  611|    678|    }
  612|       |
  613|      0|    OVS_NOT_REACHED();
  ------------------
  |  |  107|      0|#define OVS_NOT_REACHED() abort()
  ------------------
  614|    678|}
ofputil_dl_type_to_openflow:
  621|  8.93k|{
  622|  8.93k|    return (flow_dl_type == htons(FLOW_DL_TYPE_NONE)
  ------------------
  |  Branch (622:13): [True: 3, False: 8.93k]
  ------------------
  623|  8.93k|            ? htons(OFP_DL_TYPE_NOT_ETH_TYPE)
  624|  8.93k|            : flow_dl_type);
  625|  8.93k|}
ofputil_normalize_match:
 1000|  9.28k|{
 1001|       |    ofputil_normalize_match__(match, true);
 1002|  9.28k|}
ofp-match.c:ofputil_netmask_to_wcbits:
   57|  9.52k|{
   58|  9.52k|    return 32 - ip_count_cidr_bits(netmask);
   59|  9.52k|}
ofp-match.c:ofputil_normalize_match__:
  867|  9.28k|{
  868|  9.28k|    enum {
  869|  9.28k|        MAY_NW_ADDR     = 1 << 0, /* nw_src, nw_dst */
  870|  9.28k|        MAY_TP_ADDR     = 1 << 1, /* tp_src, tp_dst */
  871|  9.28k|        MAY_NW_PROTO    = 1 << 2, /* nw_proto */
  872|  9.28k|        MAY_IPVx        = 1 << 3, /* tos, frag, ttl */
  873|  9.28k|        MAY_ARP_SHA     = 1 << 4, /* arp_sha */
  874|  9.28k|        MAY_ARP_THA     = 1 << 5, /* arp_tha */
  875|  9.28k|        MAY_IPV6        = 1 << 6, /* ipv6_src, ipv6_dst, ipv6_label */
  876|  9.28k|        MAY_ND_TARGET   = 1 << 7, /* nd_target */
  877|  9.28k|        MAY_MPLS        = 1 << 8, /* mpls label and tc */
  878|  9.28k|        MAY_ETHER       = 1 << 9, /* dl_src, dl_dst */
  879|  9.28k|    } may_match;
  880|       |
  881|  9.28k|    struct flow_wildcards wc = match->wc;
  882|  9.28k|    ovs_be16 dl_type;
  883|       |
  884|       |    /* Figure out what fields may be matched. */
  885|       |    /* Check the packet_type first and extract dl_type. */
  886|  9.28k|    if (wc.masks.packet_type == 0 || match_has_default_packet_type(match)) {
  ------------------
  |  Branch (886:9): [True: 5.55k, False: 3.73k]
  |  Branch (886:38): [True: 3.23k, False: 497]
  ------------------
  887|  8.78k|        may_match = MAY_ETHER;
  888|  8.78k|        dl_type = match->flow.dl_type;
  889|  8.78k|    } else if (wc.masks.packet_type == OVS_BE32_MAX &&
  ------------------
  |  |   43|    994|#define OVS_BE32_MAX ((OVS_FORCE ovs_be32) 0xffffffff)
  ------------------
  |  Branch (889:16): [True: 497, False: 0]
  ------------------
  890|    497|               pt_ns(match->flow.packet_type) == OFPHTN_ETHERTYPE) {
  ------------------
  |  Branch (890:16): [True: 116, False: 381]
  ------------------
  891|    116|        may_match = 0;
  892|    116|        dl_type = pt_ns_type_be(match->flow.packet_type);
  893|    381|    } else {
  894|    381|        may_match = 0;
  895|    381|        dl_type = 0;
  896|    381|    }
  897|  9.28k|    if (dl_type == htons(ETH_TYPE_IP)) {
  ------------------
  |  Branch (897:9): [True: 838, False: 8.44k]
  ------------------
  898|    838|        may_match |= MAY_NW_PROTO | MAY_IPVx | MAY_NW_ADDR;
  899|    838|        if (match->flow.nw_proto == IPPROTO_TCP ||
  ------------------
  |  Branch (899:13): [True: 122, False: 716]
  ------------------
  900|    716|            match->flow.nw_proto == IPPROTO_UDP ||
  ------------------
  |  Branch (900:13): [True: 225, False: 491]
  ------------------
  901|    491|            match->flow.nw_proto == IPPROTO_SCTP ||
  ------------------
  |  Branch (901:13): [True: 70, False: 421]
  ------------------
  902|    487|            match->flow.nw_proto == IPPROTO_ICMP) {
  ------------------
  |  Branch (902:13): [True: 70, False: 351]
  ------------------
  903|    487|            may_match |= MAY_TP_ADDR;
  904|    487|        }
  905|  8.44k|    } else if (dl_type == htons(ETH_TYPE_IPV6)) {
  ------------------
  |  Branch (905:16): [True: 750, False: 7.69k]
  ------------------
  906|    750|        may_match |= MAY_NW_PROTO | MAY_IPVx | MAY_IPV6;
  907|    750|        if (match->flow.nw_proto == IPPROTO_TCP ||
  ------------------
  |  Branch (907:13): [True: 70, False: 680]
  ------------------
  908|    680|            match->flow.nw_proto == IPPROTO_UDP ||
  ------------------
  |  Branch (908:13): [True: 31, False: 649]
  ------------------
  909|    649|            match->flow.nw_proto == IPPROTO_SCTP) {
  ------------------
  |  Branch (909:13): [True: 30, False: 619]
  ------------------
  910|    131|            may_match |= MAY_TP_ADDR;
  911|    619|        } else if (match->flow.nw_proto == IPPROTO_ICMPV6) {
  ------------------
  |  Branch (911:20): [True: 141, False: 478]
  ------------------
  912|    141|            may_match |= MAY_TP_ADDR;
  913|    141|            if (match->flow.tp_src == htons(ND_NEIGHBOR_SOLICIT)) {
  ------------------
  |  Branch (913:17): [True: 24, False: 117]
  ------------------
  914|     24|                may_match |= MAY_ND_TARGET | MAY_ARP_SHA;
  915|    117|            } else if (match->flow.tp_src == htons(ND_NEIGHBOR_ADVERT)) {
  ------------------
  |  Branch (915:24): [True: 30, False: 87]
  ------------------
  916|     30|                may_match |= MAY_ND_TARGET | MAY_ARP_THA;
  917|     30|            }
  918|    141|        }
  919|  7.69k|    } else if (dl_type == htons(ETH_TYPE_ARP) ||
  ------------------
  |  Branch (919:16): [True: 44, False: 7.65k]
  ------------------
  920|  7.65k|               dl_type == htons(ETH_TYPE_RARP)) {
  ------------------
  |  Branch (920:16): [True: 24, False: 7.62k]
  ------------------
  921|     68|        may_match |= MAY_NW_PROTO | MAY_NW_ADDR | MAY_ARP_SHA | MAY_ARP_THA;
  922|  7.62k|    } else if (eth_type_mpls(dl_type)) {
  ------------------
  |  Branch (922:16): [True: 185, False: 7.44k]
  ------------------
  923|    185|        may_match |= MAY_MPLS;
  924|    185|    }
  925|       |
  926|       |    /* Clear the fields that may not be matched. */
  927|  9.28k|    if (!(may_match & MAY_ETHER)) {
  ------------------
  |  Branch (927:9): [True: 497, False: 8.78k]
  ------------------
  928|    497|        wc.masks.dl_src = wc.masks.dl_dst = eth_addr_zero;
  929|    497|    }
  930|  9.28k|    if (!(may_match & MAY_NW_ADDR)) {
  ------------------
  |  Branch (930:9): [True: 8.37k, False: 906]
  ------------------
  931|  8.37k|        wc.masks.nw_src = wc.masks.nw_dst = htonl(0);
  932|  8.37k|    }
  933|  9.28k|    if (!(may_match & MAY_TP_ADDR)) {
  ------------------
  |  Branch (933:9): [True: 8.52k, False: 759]
  ------------------
  934|  8.52k|        wc.masks.tp_src = wc.masks.tp_dst = htons(0);
  935|  8.52k|    }
  936|  9.28k|    if (!(may_match & MAY_NW_PROTO)) {
  ------------------
  |  Branch (936:9): [True: 7.62k, False: 1.65k]
  ------------------
  937|  7.62k|        wc.masks.nw_proto = 0;
  938|  7.62k|    }
  939|  9.28k|    if (!(may_match & MAY_IPVx)) {
  ------------------
  |  Branch (939:9): [True: 7.69k, False: 1.58k]
  ------------------
  940|  7.69k|        wc.masks.nw_tos = 0;
  941|  7.69k|        wc.masks.nw_ttl = 0;
  942|  7.69k|    }
  943|  9.28k|    if (!(may_match & MAY_ARP_SHA)) {
  ------------------
  |  Branch (943:9): [True: 9.19k, False: 92]
  ------------------
  944|  9.19k|        WC_UNMASK_FIELD(&wc, arp_sha);
  ------------------
  |  |  205|  9.19k|    memset(&(WC)->masks.FIELD, 0, sizeof (WC)->masks.FIELD)
  ------------------
  945|  9.19k|    }
  946|  9.28k|    if (!(may_match & MAY_ARP_THA)) {
  ------------------
  |  Branch (946:9): [True: 9.18k, False: 98]
  ------------------
  947|  9.18k|        WC_UNMASK_FIELD(&wc, arp_tha);
  ------------------
  |  |  205|  9.18k|    memset(&(WC)->masks.FIELD, 0, sizeof (WC)->masks.FIELD)
  ------------------
  948|  9.18k|    }
  949|  9.28k|    if (!(may_match & MAY_IPV6)) {
  ------------------
  |  Branch (949:9): [True: 8.53k, False: 750]
  ------------------
  950|  8.53k|        wc.masks.ipv6_src = wc.masks.ipv6_dst = in6addr_any;
  951|  8.53k|        wc.masks.ipv6_label = htonl(0);
  952|  8.53k|    }
  953|  9.28k|    if (!(may_match & MAY_ND_TARGET)) {
  ------------------
  |  Branch (953:9): [True: 9.22k, False: 54]
  ------------------
  954|  9.22k|        wc.masks.nd_target = in6addr_any;
  955|  9.22k|    }
  956|  9.28k|    if (!(may_match & MAY_MPLS)) {
  ------------------
  |  Branch (956:9): [True: 9.09k, False: 185]
  ------------------
  957|  9.09k|        memset(wc.masks.mpls_lse, 0, sizeof wc.masks.mpls_lse);
  958|  9.09k|    }
  959|       |
  960|       |    /* Log any changes. */
  961|  9.28k|    if (!flow_wildcards_equal(&wc, &match->wc)) {
  ------------------
  |  Branch (961:9): [True: 407, False: 8.87k]
  ------------------
  962|    407|        bool log = may_log && !VLOG_DROP_INFO(&rl);
  ------------------
  |  |  235|    814|#define VLOG_DROP_INFO(RL) vlog_should_drop(&this_module, VLL_INFO, RL)
  ------------------
  |  Branch (962:20): [True: 407, False: 0]
  |  Branch (962:31): [True: 0, False: 407]
  ------------------
  963|    407|        char *pre = (log
  ------------------
  |  Branch (963:22): [True: 0, False: 407]
  ------------------
  964|    407|                     ? match_to_string(match, NULL, OFP_DEFAULT_PRIORITY)
  ------------------
  |  |  138|      0|#define OFP_DEFAULT_PRIORITY 0x8000
  ------------------
  965|    407|                     : NULL);
  966|       |
  967|    407|        match->wc = wc;
  968|    407|        match_zero_wildcarded_fields(match);
  969|       |
  970|    407|        if (log) {
  ------------------
  |  Branch (970:13): [True: 0, False: 407]
  ------------------
  971|      0|            char *post = match_to_string(match, NULL, OFP_DEFAULT_PRIORITY);
  ------------------
  |  |  138|      0|#define OFP_DEFAULT_PRIORITY 0x8000
  ------------------
  972|      0|            VLOG_INFO("normalization changed ofp_match, details:");
  ------------------
  |  |  210|      0|#define VLOG_INFO(...) VLOG(VLL_INFO, __VA_ARGS__)
  |  |  ------------------
  |  |  |  |  280|      0|    do {                                                \
  |  |  |  |  281|      0|        enum vlog_level level__ = LEVEL;                \
  |  |  |  |  282|      0|        if (this_module.min_level >= level__) {         \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (282:13): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |  283|      0|            vlog(&this_module, level__, __VA_ARGS__);   \
  |  |  |  |  284|      0|        }                                               \
  |  |  |  |  285|      0|    } while (0)
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (285:14): [Folded, False: 0]
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  973|      0|            VLOG_INFO(" pre: %s", pre);
  ------------------
  |  |  210|      0|#define VLOG_INFO(...) VLOG(VLL_INFO, __VA_ARGS__)
  |  |  ------------------
  |  |  |  |  280|      0|    do {                                                \
  |  |  |  |  281|      0|        enum vlog_level level__ = LEVEL;                \
  |  |  |  |  282|      0|        if (this_module.min_level >= level__) {         \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (282:13): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |  283|      0|            vlog(&this_module, level__, __VA_ARGS__);   \
  |  |  |  |  284|      0|        }                                               \
  |  |  |  |  285|      0|    } while (0)
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (285:14): [Folded, False: 0]
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  974|      0|            VLOG_INFO("post: %s", post);
  ------------------
  |  |  210|      0|#define VLOG_INFO(...) VLOG(VLL_INFO, __VA_ARGS__)
  |  |  ------------------
  |  |  |  |  280|      0|    do {                                                \
  |  |  |  |  281|      0|        enum vlog_level level__ = LEVEL;                \
  |  |  |  |  282|      0|        if (this_module.min_level >= level__) {         \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (282:13): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |  283|      0|            vlog(&this_module, level__, __VA_ARGS__);   \
  |  |  |  |  284|      0|        }                                               \
  |  |  |  |  285|      0|    } while (0)
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (285:14): [Folded, False: 0]
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  975|      0|            free(pre);
  976|      0|            free(post);
  977|      0|        }
  978|    407|    }
  979|  9.28k|}

ofphdrs_len:
  368|  1.46k|{
  369|  1.46k|    if (hdrs->type == OFPT_VENDOR) {
  ------------------
  |  |   32|  1.46k|#define OFPT_VENDOR 4
  ------------------
  |  Branch (369:9): [True: 127, False: 1.33k]
  ------------------
  370|    127|        return sizeof(struct ofp_vendor_header);
  371|    127|    }
  372|       |
  373|  1.33k|    switch ((enum ofp_version) hdrs->version) {
  ------------------
  |  Branch (373:13): [True: 342, False: 996]
  ------------------
  374|     49|    case OFP10_VERSION:
  ------------------
  |  Branch (374:5): [True: 49, False: 1.28k]
  ------------------
  375|     49|        if (hdrs->type == OFPT10_STATS_REQUEST ||
  ------------------
  |  |   33|     98|#define OFPT10_STATS_REQUEST 16
  ------------------
  |  Branch (375:13): [True: 15, False: 34]
  ------------------
  376|     34|            hdrs->type == OFPT10_STATS_REPLY) {
  ------------------
  |  |   34|     34|#define OFPT10_STATS_REPLY 17
  ------------------
  |  Branch (376:13): [True: 15, False: 19]
  ------------------
  377|     30|            return (hdrs->stat == OFPST_VENDOR
  ------------------
  |  |   37|     30|#define OFPST_VENDOR 0xffff
  ------------------
  |  Branch (377:21): [True: 16, False: 14]
  ------------------
  378|     30|                    ? sizeof(struct nicira10_stats_msg)
  379|     30|                    : sizeof(struct ofp10_stats_msg));
  380|     30|        }
  381|     19|        break;
  382|       |
  383|     47|    case OFP11_VERSION:
  ------------------
  |  Branch (383:5): [True: 47, False: 1.29k]
  ------------------
  384|     96|    case OFP12_VERSION:
  ------------------
  |  Branch (384:5): [True: 49, False: 1.28k]
  ------------------
  385|    157|    case OFP13_VERSION:
  ------------------
  |  Branch (385:5): [True: 61, False: 1.27k]
  ------------------
  386|    225|    case OFP14_VERSION:
  ------------------
  |  Branch (386:5): [True: 68, False: 1.27k]
  ------------------
  387|    293|    case OFP15_VERSION:
  ------------------
  |  Branch (387:5): [True: 68, False: 1.27k]
  ------------------
  388|    293|        if (hdrs->type == OFPT11_STATS_REQUEST ||
  ------------------
  |  |   35|    586|#define OFPT11_STATS_REQUEST 18
  ------------------
  |  Branch (388:13): [True: 81, False: 212]
  ------------------
  389|    212|            hdrs->type == OFPT11_STATS_REPLY) {
  ------------------
  |  |   36|    212|#define OFPT11_STATS_REPLY 19
  ------------------
  |  Branch (389:13): [True: 81, False: 131]
  ------------------
  390|    162|            return (hdrs->stat == OFPST_VENDOR
  ------------------
  |  |   37|    162|#define OFPST_VENDOR 0xffff
  ------------------
  |  Branch (390:21): [True: 28, False: 134]
  ------------------
  391|    162|                    ? sizeof(struct ofp11_vendor_stats_msg)
  392|    162|                    : sizeof(struct ofp11_stats_msg));
  393|    162|        }
  394|    131|        break;
  395|  1.33k|    }
  396|       |
  397|  1.14k|    return sizeof(struct ofp_header);
  398|  1.33k|}
ofpraw_alloc:
  580|  9.08k|{
  581|  9.08k|    return ofpraw_alloc_xid(raw, version, alloc_xid(), extra_tailroom);
  582|  9.08k|}
ofpraw_alloc_xid:
  588|  9.08k|{
  589|  9.08k|    struct ofpbuf *buf = ofpbuf_new(0);
  590|  9.08k|    ofpraw_put__(raw, version, xid, extra_tailroom, buf);
  591|  9.08k|    return buf;
  592|  9.08k|}
ofpmsg_update_length:
  882|  9.08k|{
  883|  9.08k|    struct ofp_header *oh = ofpbuf_at_assert(buf, 0, sizeof *oh);
  884|       |    oh->length = htons(buf->size);
  885|  9.08k|}
ofp-msgs.c:alloc_xid:
  185|  9.08k|{
  186|  9.08k|    static atomic_count next_xid = ATOMIC_COUNT_INIT(1);
  ------------------
  |  |  441|  9.08k|#define ATOMIC_COUNT_INIT(VALUE) { VALUE }
  ------------------
  187|       |
  188|       |    return htonl(atomic_count_inc(&next_xid));
  189|  9.08k|}
ofp-msgs.c:ofpraw_put__:
  712|  9.08k|{
  713|  9.08k|    const struct raw_info *info = raw_info_get(raw);
  714|  9.08k|    const struct raw_instance *instance = raw_instance_get(info, version);
  715|  9.08k|    const struct ofphdrs *hdrs = &instance->hdrs;
  716|  9.08k|    struct ofp_header *oh;
  717|       |
  718|  9.08k|    ofpbuf_prealloc_tailroom(buf, (instance->hdrs_len + info->min_body
  719|  9.08k|                                   + extra_tailroom));
  720|  9.08k|    buf->header = ofpbuf_put_uninit(buf, instance->hdrs_len);
  721|  9.08k|    buf->msg = ofpbuf_tail(buf);
  722|       |
  723|  9.08k|    oh = buf->header;
  724|  9.08k|    oh->version = version;
  725|  9.08k|    oh->type = hdrs->type;
  726|  9.08k|    oh->length = htons(buf->size);
  727|  9.08k|    oh->xid = xid;
  728|       |
  729|  9.08k|    if (hdrs->type == OFPT_VENDOR) {
  ------------------
  |  |   32|  9.08k|#define OFPT_VENDOR 4
  ------------------
  |  Branch (729:9): [True: 3.64k, False: 5.43k]
  ------------------
  730|  3.64k|        struct ofp_vendor_header *ovh = buf->header;
  731|       |
  732|  3.64k|        ovh->vendor = htonl(hdrs->vendor);
  733|  3.64k|        ovh->subtype = htonl(hdrs->subtype);
  734|  5.43k|    } else if (version == OFP10_VERSION
  ------------------
  |  Branch (734:16): [True: 4.76k, False: 678]
  ------------------
  735|  4.76k|               && (hdrs->type == OFPT10_STATS_REQUEST ||
  ------------------
  |  |   33|  9.52k|#define OFPT10_STATS_REQUEST 16
  ------------------
  |  Branch (735:20): [True: 0, False: 4.76k]
  ------------------
  736|  4.76k|                   hdrs->type == OFPT10_STATS_REPLY)) {
  ------------------
  |  |   34|  4.76k|#define OFPT10_STATS_REPLY 17
  ------------------
  |  Branch (736:20): [True: 0, False: 4.76k]
  ------------------
  737|      0|        struct ofp10_stats_msg *osm = buf->header;
  738|       |
  739|      0|        osm->type = htons(hdrs->stat);
  740|      0|        osm->flags = htons(0);
  741|       |
  742|      0|        if (hdrs->stat == OFPST_VENDOR) {
  ------------------
  |  |   37|      0|#define OFPST_VENDOR 0xffff
  ------------------
  |  Branch (742:13): [True: 0, False: 0]
  ------------------
  743|      0|            struct ofp10_vendor_stats_msg *ovsm = buf->header;
  744|       |
  745|      0|            ovsm->vendor = htonl(hdrs->vendor);
  746|      0|            if (hdrs->vendor == NX_VENDOR_ID) {
  ------------------
  |  |  110|      0|#define NX_VENDOR_ID    0x00002320 /* Nicira. */
  ------------------
  |  Branch (746:17): [True: 0, False: 0]
  ------------------
  747|      0|                struct nicira10_stats_msg *nsm = buf->header;
  748|       |
  749|      0|                nsm->subtype = htonl(hdrs->subtype);
  750|      0|                memset(nsm->pad, 0, sizeof nsm->pad);
  751|      0|            } else {
  752|      0|                OVS_NOT_REACHED();
  ------------------
  |  |  107|      0|#define OVS_NOT_REACHED() abort()
  ------------------
  753|      0|            }
  754|      0|        }
  755|  5.43k|    } else if (version != OFP10_VERSION
  ------------------
  |  Branch (755:16): [True: 678, False: 4.76k]
  ------------------
  756|    678|               && (hdrs->type == OFPT11_STATS_REQUEST ||
  ------------------
  |  |   35|  1.35k|#define OFPT11_STATS_REQUEST 18
  ------------------
  |  Branch (756:20): [True: 0, False: 678]
  ------------------
  757|    678|                   hdrs->type == OFPT11_STATS_REPLY)) {
  ------------------
  |  |   36|    678|#define OFPT11_STATS_REPLY 19
  ------------------
  |  Branch (757:20): [True: 0, False: 678]
  ------------------
  758|      0|        struct ofp11_stats_msg *osm = buf->header;
  759|       |
  760|      0|        osm->type = htons(hdrs->stat);
  761|      0|        osm->flags = htons(0);
  762|      0|        memset(osm->pad, 0, sizeof osm->pad);
  763|       |
  764|      0|        if (hdrs->stat == OFPST_VENDOR) {
  ------------------
  |  |   37|      0|#define OFPST_VENDOR 0xffff
  ------------------
  |  Branch (764:13): [True: 0, False: 0]
  ------------------
  765|      0|            struct ofp11_vendor_stats_msg *ovsm = buf->header;
  766|       |
  767|      0|            ovsm->vendor = htonl(hdrs->vendor);
  768|       |            ovsm->subtype = htonl(hdrs->subtype);
  769|      0|        }
  770|      0|    }
  771|  9.08k|}
ofp-msgs.c:raw_info_get:
 1307|  9.08k|{
 1308|  9.08k|    ofpmsgs_init();
 1309|       |
 1310|  9.08k|    ovs_assert(raw < ARRAY_SIZE(raw_infos));
  ------------------
  |  |   62|  9.08k|#define ovs_assert ovs_ignore
  ------------------
                  ovs_assert(raw < ARRAY_SIZE(raw_infos));
  ------------------
  |  |  297|  9.08k|#define ARRAY_SIZE(ARRAY) __ARRAY_SIZE(ARRAY)
  |  |  ------------------
  |  |  |  |   46|  9.08k|    __builtin_choose_expr(__ARRAY_CHECK(ARRAY),			\
  |  |  |  |  ------------------
  |  |  |  |  |  |   41|  9.08k|    !__builtin_types_compatible_p(typeof(ARRAY), typeof(&ARRAY[0]))
  |  |  |  |  ------------------
  |  |  |  |   47|  9.08k|        __ARRAY_SIZE_NOCHECK(ARRAY), __ARRAY_FAIL(ARRAY))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|  9.08k|#define __ARRAY_SIZE_NOCHECK(ARRAY) (sizeof(ARRAY) / sizeof((ARRAY)[0]))
  |  |  |  |  ------------------
  |  |  |  |                       __ARRAY_SIZE_NOCHECK(ARRAY), __ARRAY_FAIL(ARRAY))
  |  |  |  |  ------------------
  |  |  |  |  |  |   44|  9.08k|#define __ARRAY_FAIL(ARRAY) (sizeof(char[-2*!__ARRAY_CHECK(ARRAY)]))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 1311|  9.08k|    return &raw_infos[raw];
 1312|  9.08k|}
ofp-msgs.c:ofpmsgs_init:
 1363|  9.08k|{
 1364|  9.08k|    static struct ovsthread_once once = OVSTHREAD_ONCE_INITIALIZER;
  ------------------
  |  |  134|  9.08k|    {                                           \
  |  |  135|  9.08k|        false,                                  \
  |  |  136|  9.08k|        OVS_MUTEX_INITIALIZER,                  \
  |  |  ------------------
  |  |  |  |   45|  9.08k|#define OVS_MUTEX_INITIALIZER { PTHREAD_ERRORCHECK_MUTEX_INITIALIZER_NP, \
  |  |  |  |   46|  9.08k|                                "<unlocked>" }
  |  |  ------------------
  |  |  137|  9.08k|    }
  ------------------
 1365|  9.08k|    const struct raw_info *info;
 1366|       |
 1367|  9.08k|    if (!ovsthread_once_start(&once)) {
  ------------------
  |  Branch (1367:9): [True: 9.08k, False: 1]
  ------------------
 1368|  9.08k|        return;
 1369|  9.08k|    }
 1370|       |
 1371|      1|    hmap_init(&raw_instance_map);
 1372|    162|    for (info = raw_infos; info < &raw_infos[ARRAY_SIZE(raw_infos)]; info++)
  ------------------
  |  |  297|    162|#define ARRAY_SIZE(ARRAY) __ARRAY_SIZE(ARRAY)
  |  |  ------------------
  |  |  |  |   46|    162|    __builtin_choose_expr(__ARRAY_CHECK(ARRAY),			\
  |  |  |  |  ------------------
  |  |  |  |  |  |   41|    162|    !__builtin_types_compatible_p(typeof(ARRAY), typeof(&ARRAY[0]))
  |  |  |  |  ------------------
  |  |  |  |   47|    162|        __ARRAY_SIZE_NOCHECK(ARRAY), __ARRAY_FAIL(ARRAY))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|    162|#define __ARRAY_SIZE_NOCHECK(ARRAY) (sizeof(ARRAY) / sizeof((ARRAY)[0]))
  |  |  |  |  ------------------
  |  |  |  |                       __ARRAY_SIZE_NOCHECK(ARRAY), __ARRAY_FAIL(ARRAY))
  |  |  |  |  ------------------
  |  |  |  |  |  |   44|    162|#define __ARRAY_FAIL(ARRAY) (sizeof(char[-2*!__ARRAY_CHECK(ARRAY)]))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  |  Branch (1372:28): [True: 161, False: 1]
  ------------------
 1373|    161|    {
 1374|    161|        int n_instances = info->max_version - info->min_version + 1;
 1375|    161|        struct raw_instance *inst;
 1376|       |
 1377|    161|        for (inst = info->instances;
 1378|  1.62k|             inst < &info->instances[n_instances];
  ------------------
  |  Branch (1378:14): [True: 1.46k, False: 161]
  ------------------
 1379|  1.46k|             inst++) {
 1380|  1.46k|            inst->hdrs_len = ofphdrs_len(&inst->hdrs);
 1381|  1.46k|            hmap_insert(&raw_instance_map, &inst->hmap_node,
  ------------------
  |  |  101|  1.46k|    hmap_insert_at(HMAP, NODE, HASH, OVS_SOURCE_LOCATOR)
  |  |  ------------------
  |  |  |  |   37|  1.46k|#define OVS_SOURCE_LOCATOR __FILE__ ":" OVS_STRINGIZE(__LINE__)
  |  |  |  |  ------------------
  |  |  |  |  |  |   38|  1.46k|#define OVS_STRINGIZE(ARG) OVS_STRINGIZE2(ARG)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   39|  1.46k|#define OVS_STRINGIZE2(ARG) #ARG
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 1382|  1.46k|                        ofphdrs_hash(&inst->hdrs));
 1383|  1.46k|        }
 1384|    161|    }
 1385|       |
 1386|      1|    ovsthread_once_done(&once);
 1387|      1|}
ofp-msgs.c:ofphdrs_hash:
  193|  1.46k|{
  194|  1.46k|    BUILD_ASSERT_DECL(sizeof *hdrs % 4 == 0);
  ------------------
  |  |  270|  1.46k|#define BUILD_ASSERT_DECL(EXPR) _Static_assert(EXPR, #EXPR)
  ------------------
  195|  1.46k|    return hash_bytes32((const uint32_t *) hdrs, sizeof *hdrs, 0);
  196|  1.46k|}
ofp-msgs.c:raw_instance_get:
 1316|  9.08k|{
 1317|  9.08k|    ovs_assert(version >= info->min_version && version <= info->max_version);
  ------------------
  |  |   62|  9.08k|#define ovs_assert ovs_ignore
  ------------------
  |  Branch (1317:16): [True: 9.08k, False: 0]
  |  Branch (1317:48): [True: 9.08k, False: 0]
  ------------------
 1318|  9.08k|    return &info->instances[version - info->min_version];
 1319|  9.08k|}

ofputil_packet_in_reason_to_string:
  710|  4.61k|{
  711|  4.61k|    switch (reason) {
  712|    663|    case OFPR_NO_MATCH:
  ------------------
  |  Branch (712:5): [True: 663, False: 3.95k]
  ------------------
  713|    663|        return "no_match";
  714|    648|    case OFPR_ACTION:
  ------------------
  |  Branch (714:5): [True: 648, False: 3.97k]
  ------------------
  715|    648|        return "action";
  716|    647|    case OFPR_INVALID_TTL:
  ------------------
  |  Branch (716:5): [True: 647, False: 3.97k]
  ------------------
  717|    647|        return "invalid_ttl";
  718|    646|    case OFPR_ACTION_SET:
  ------------------
  |  Branch (718:5): [True: 646, False: 3.97k]
  ------------------
  719|    646|        return "action_set";
  720|    645|    case OFPR_GROUP:
  ------------------
  |  Branch (720:5): [True: 645, False: 3.97k]
  ------------------
  721|    645|        return "group";
  722|    645|    case OFPR_PACKET_OUT:
  ------------------
  |  Branch (722:5): [True: 645, False: 3.97k]
  ------------------
  723|    645|        return "packet_out";
  724|    645|    case OFPR_EXPLICIT_MISS:
  ------------------
  |  Branch (724:5): [True: 645, False: 3.97k]
  ------------------
  725|    725|    case OFPR_IMPLICIT_MISS:
  ------------------
  |  Branch (725:5): [True: 80, False: 4.53k]
  ------------------
  726|    725|        return "";
  727|       |
  728|      0|    case OFPR_N_REASONS:
  ------------------
  |  Branch (728:5): [True: 0, False: 4.61k]
  ------------------
  729|      0|    default:
  ------------------
  |  Branch (729:5): [True: 0, False: 4.61k]
  ------------------
  730|      0|        snprintf(reasonbuf, bufsize, "%d", (int) reason);
  731|      0|        return reasonbuf;
  732|  4.61k|    }
  733|  4.61k|}
ofputil_packet_in_reason_from_string:
  738|    663|{
  739|    663|    int i;
  740|       |
  741|  4.69k|    for (i = 0; i < OFPR_N_REASONS; i++) {
  ------------------
  |  Branch (741:17): [True: 4.61k, False: 80]
  ------------------
  742|  4.61k|        char reasonbuf[OFPUTIL_PACKET_IN_REASON_BUFSIZE];
  743|  4.61k|        const char *reason_s;
  744|       |
  745|  4.61k|        reason_s = ofputil_packet_in_reason_to_string(i, reasonbuf,
  746|  4.61k|                                                      sizeof reasonbuf);
  747|  4.61k|        if (!strcasecmp(s, reason_s)) {
  ------------------
  |  Branch (747:13): [True: 583, False: 4.03k]
  ------------------
  748|    583|            *reason = i;
  749|    583|            return true;
  750|    583|        }
  751|  4.61k|    }
  752|     80|    return false;
  753|    663|}

str_to_u8:
   39|  14.0k|{
   40|  14.0k|    int value;
   41|       |
   42|  14.0k|    if (!str_to_int(str, 0, &value) || value < 0 || value > 255) {
  ------------------
  |  Branch (42:9): [True: 24, False: 13.9k]
  |  Branch (42:40): [True: 29, False: 13.9k]
  |  Branch (42:53): [True: 12, False: 13.9k]
  ------------------
   43|     65|        return xasprintf("invalid %s \"%s\"", name, str);
   44|     65|    }
   45|  13.9k|    *valuep = value;
   46|       |    return NULL;
   47|  14.0k|}
str_to_u16:
   57|  19.7k|{
   58|  19.7k|    int value;
   59|       |
   60|  19.7k|    if (!str_to_int(str, 0, &value) || value < 0 || value > 65535) {
  ------------------
  |  Branch (60:9): [True: 444, False: 19.2k]
  |  Branch (60:40): [True: 35, False: 19.2k]
  |  Branch (60:53): [True: 34, False: 19.1k]
  ------------------
   61|    513|        return xasprintf("invalid %s \"%s\"", name, str);
   62|    513|    }
   63|  19.1k|    *valuep = value;
   64|       |    return NULL;
   65|  19.7k|}
str_to_u32:
   73|  8.01k|{
   74|  8.01k|    unsigned long long value;
   75|       |
   76|  8.01k|    if (!str[0]) {
  ------------------
  |  Branch (76:9): [True: 27, False: 7.98k]
  ------------------
   77|     27|        return xstrdup("missing required numeric argument");
   78|     27|    }
   79|       |
   80|  7.98k|    if (!str_to_ullong(str, 0, &value) || value > UINT32_MAX) {
  ------------------
  |  Branch (80:9): [True: 740, False: 7.24k]
  |  Branch (80:43): [True: 40, False: 7.20k]
  ------------------
   81|    780|        return xasprintf("invalid numeric format %s", str);
   82|    780|    }
   83|  7.20k|    *valuep = value;
   84|       |    return NULL;
   85|  7.98k|}
str_to_u64:
   93|  4.84k|{
   94|  4.84k|    char *tail;
   95|  4.84k|    uint64_t value;
   96|       |
   97|  4.84k|    if (!str[0]) {
  ------------------
  |  Branch (97:9): [True: 21, False: 4.82k]
  ------------------
   98|     21|        return xstrdup("missing required numeric argument");
   99|     21|    }
  100|       |
  101|  4.84k|    errno = 0;
  102|  4.82k|    value = strtoull(str, &tail, 0);
  103|  4.82k|    if (errno == EINVAL || errno == ERANGE || *tail) {
  ------------------
  |  Branch (103:9): [True: 0, False: 4.82k]
  |  Branch (103:28): [True: 2, False: 4.82k]
  |  Branch (103:47): [True: 27, False: 4.79k]
  ------------------
  104|     29|        return xasprintf("invalid numeric format %s", str);
  105|     29|    }
  106|  4.79k|    *valuep = value;
  107|       |    return NULL;
  108|  4.82k|}
str_to_be64:
  117|  3.02k|{
  118|  3.02k|    uint64_t value = 0;
  119|  3.02k|    char *error;
  120|       |
  121|  3.02k|    error = str_to_u64(str, &value);
  122|  3.02k|    if (!error) {
  ------------------
  |  Branch (122:9): [True: 2.99k, False: 36]
  ------------------
  123|  2.99k|        *valuep = htonll(value);
  124|  2.99k|    }
  125|  3.02k|    return error;
  126|  3.02k|}
str_to_mac:
  134|  1.49k|{
  135|  1.49k|    if (!ovs_scan(str, ETH_ADDR_SCAN_FMT, ETH_ADDR_SCAN_ARGS(*mac))) {
  ------------------
  |  |  403|  1.49k|#define ETH_ADDR_SCAN_FMT "%"SCNx8":%"SCNx8":%"SCNx8":%"SCNx8":%"SCNx8":%"SCNx8
  ------------------
                  if (!ovs_scan(str, ETH_ADDR_SCAN_FMT, ETH_ADDR_SCAN_ARGS(*mac))) {
  ------------------
  |  |  405|  1.49k|    &(EA).ea[0], &(EA).ea[1], &(EA).ea[2], &(EA).ea[3], &(EA).ea[4], &(EA).ea[5]
  ------------------
  |  Branch (135:9): [True: 8, False: 1.48k]
  ------------------
  136|      8|        return xasprintf("invalid mac address %s", str);
  137|      8|    }
  138|  1.48k|    return NULL;
  139|  1.49k|}
str_to_ip:
  147|  3.27k|{
  148|  3.27k|    struct in_addr in_addr;
  149|       |
  150|  3.27k|    if (lookup_ip(str, &in_addr)) {
  ------------------
  |  Branch (150:9): [True: 9, False: 3.26k]
  ------------------
  151|      9|        return xasprintf("%s: could not convert to IP address", str);
  152|      9|    }
  153|  3.26k|    *ip = in_addr.s_addr;
  154|       |    return NULL;
  155|  3.27k|}
str_to_connhelper:
  163|    338|{
  164|    338|    if (!strcmp(str, "ftp")) {
  ------------------
  |  Branch (164:9): [True: 224, False: 114]
  ------------------
  165|    224|        *alg = IPPORT_FTP;
  ------------------
  |  |  695|    224|#define IPPORT_FTP  21
  ------------------
  166|    224|        return NULL;
  167|    224|    }
  168|    114|    if (!strcmp(str, "tftp")) {
  ------------------
  |  Branch (168:9): [True: 71, False: 43]
  ------------------
  169|     71|        *alg = IPPORT_TFTP;
  ------------------
  |  |  699|     71|#define IPPORT_TFTP  69
  ------------------
  170|     71|        return NULL;
  171|     71|    }
  172|     43|    return xasprintf("invalid conntrack helper \"%s\"", str);
  173|    114|}
ofp_parse_protocol:
  177|   175k|{
  178|   175k|    static const struct ofp_protocol protocols[] = {
  179|   175k|        { "ip", ETH_TYPE_IP, 0 },
  ------------------
  |  |  407|   175k|#define ETH_TYPE_IP            0x0800
  ------------------
  180|   175k|        { "ipv4", ETH_TYPE_IP, 0 },
  ------------------
  |  |  407|   175k|#define ETH_TYPE_IP            0x0800
  ------------------
  181|   175k|        { "ip4", ETH_TYPE_IP, 0 },
  ------------------
  |  |  407|   175k|#define ETH_TYPE_IP            0x0800
  ------------------
  182|   175k|        { "arp", ETH_TYPE_ARP, 0 },
  ------------------
  |  |  408|   175k|#define ETH_TYPE_ARP           0x0806
  ------------------
  183|   175k|        { "icmp", ETH_TYPE_IP, IPPROTO_ICMP },
  ------------------
  |  |  407|   175k|#define ETH_TYPE_IP            0x0800
  ------------------
  184|   175k|        { "tcp", ETH_TYPE_IP, IPPROTO_TCP },
  ------------------
  |  |  407|   175k|#define ETH_TYPE_IP            0x0800
  ------------------
  185|   175k|        { "udp", ETH_TYPE_IP, IPPROTO_UDP },
  ------------------
  |  |  407|   175k|#define ETH_TYPE_IP            0x0800
  ------------------
  186|   175k|        { "sctp", ETH_TYPE_IP, IPPROTO_SCTP },
  ------------------
  |  |  407|   175k|#define ETH_TYPE_IP            0x0800
  ------------------
  187|   175k|        { "ipv6", ETH_TYPE_IPV6, 0 },
  ------------------
  |  |  413|   175k|#define ETH_TYPE_IPV6          0x86dd
  ------------------
  188|   175k|        { "ip6", ETH_TYPE_IPV6, 0 },
  ------------------
  |  |  413|   175k|#define ETH_TYPE_IPV6          0x86dd
  ------------------
  189|   175k|        { "icmp6", ETH_TYPE_IPV6, IPPROTO_ICMPV6 },
  ------------------
  |  |  413|   175k|#define ETH_TYPE_IPV6          0x86dd
  ------------------
  190|   175k|        { "tcp6", ETH_TYPE_IPV6, IPPROTO_TCP },
  ------------------
  |  |  413|   175k|#define ETH_TYPE_IPV6          0x86dd
  ------------------
  191|   175k|        { "udp6", ETH_TYPE_IPV6, IPPROTO_UDP },
  ------------------
  |  |  413|   175k|#define ETH_TYPE_IPV6          0x86dd
  ------------------
  192|   175k|        { "sctp6", ETH_TYPE_IPV6, IPPROTO_SCTP },
  ------------------
  |  |  413|   175k|#define ETH_TYPE_IPV6          0x86dd
  ------------------
  193|   175k|        { "rarp", ETH_TYPE_RARP, 0},
  ------------------
  |  |  415|   175k|#define ETH_TYPE_RARP          0x8035
  ------------------
  194|   175k|        { "mpls", ETH_TYPE_MPLS, 0 },
  ------------------
  |  |  416|   175k|#define ETH_TYPE_MPLS          0x8847
  ------------------
  195|   175k|        { "mplsm", ETH_TYPE_MPLS_MCAST, 0 },
  ------------------
  |  |  417|   175k|#define ETH_TYPE_MPLS_MCAST    0x8848
  ------------------
  196|   175k|    };
  197|   175k|    const struct ofp_protocol *p;
  198|       |
  199|  2.96M|    for (p = protocols; p < &protocols[ARRAY_SIZE(protocols)]; p++) {
  ------------------
  |  |  297|  2.96M|#define ARRAY_SIZE(ARRAY) __ARRAY_SIZE(ARRAY)
  |  |  ------------------
  |  |  |  |   46|  2.96M|    __builtin_choose_expr(__ARRAY_CHECK(ARRAY),			\
  |  |  |  |  ------------------
  |  |  |  |  |  |   41|  2.96M|    !__builtin_types_compatible_p(typeof(ARRAY), typeof(&ARRAY[0]))
  |  |  |  |  ------------------
  |  |  |  |   47|  2.96M|        __ARRAY_SIZE_NOCHECK(ARRAY), __ARRAY_FAIL(ARRAY))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|  2.96M|#define __ARRAY_SIZE_NOCHECK(ARRAY) (sizeof(ARRAY) / sizeof((ARRAY)[0]))
  |  |  |  |  ------------------
  |  |  |  |                       __ARRAY_SIZE_NOCHECK(ARRAY), __ARRAY_FAIL(ARRAY))
  |  |  |  |  ------------------
  |  |  |  |  |  |   44|  2.96M|#define __ARRAY_FAIL(ARRAY) (sizeof(char[-2*!__ARRAY_CHECK(ARRAY)]))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  |  Branch (199:25): [True: 2.80M, False: 158k]
  ------------------
  200|  2.80M|        if (!strcmp(p->name, name)) {
  ------------------
  |  Branch (200:13): [True: 16.2k, False: 2.79M]
  ------------------
  201|  16.2k|            *p_out = p;
  202|  16.2k|            return true;
  203|  16.2k|        }
  204|  2.80M|    }
  205|   158k|    *p_out = NULL;
  206|       |    return false;
  207|   175k|}
ofp_parse_field:
  219|  79.3k|{
  220|  79.3k|    union mf_value value, mask;
  221|  79.3k|    char *error;
  222|       |
  223|  79.3k|    if (!*s) {
  ------------------
  |  Branch (223:9): [True: 40.2k, False: 39.0k]
  ------------------
  224|       |        /* If there's no string, we're just trying to match on the
  225|       |         * existence of the field, so use a no-op value. */
  226|  40.2k|        s = "0/0";
  227|  40.2k|    }
  228|       |
  229|  79.3k|    error = mf_parse(mf, s, port_map, &value, &mask);
  230|  79.3k|    if (!error) {
  ------------------
  |  Branch (230:9): [True: 78.6k, False: 691]
  ------------------
  231|  78.6k|        *usable_protocols &= mf_set(mf, &value, &mask, match, &error);
  232|  78.6k|        match_add_ethernet_prereq(match, mf);
  233|  78.6k|    }
  234|  79.3k|    return error;
  235|  79.3k|}
ofp_extract_actions:
  239|  15.0k|{
  240|  15.0k|    s = strstr(s, "action");
  241|  15.0k|    if (s) {
  ------------------
  |  Branch (241:9): [True: 14.8k, False: 191]
  ------------------
  242|  14.8k|        *s = '\0';
  243|  14.8k|        s = strchr(s + 1, '=');
  244|  14.8k|        return s ? s + 1 : NULL;
  ------------------
  |  Branch (244:16): [True: 14.8k, False: 1]
  ------------------
  245|  14.8k|    } else {
  246|       |        return NULL;
  247|    191|    }
  248|  15.0k|}
ofputil_parse_key_value:
  294|   981k|{
  295|       |    /* Skip white space and delimiters.  If that brings us to the end of the
  296|       |     * input string, we are done and there are no more key-value pairs. */
  297|   981k|    *stringp += strspn(*stringp, ", \t\r\n");
  298|   981k|    if (**stringp == '\0') {
  ------------------
  |  Branch (298:9): [True: 188k, False: 793k]
  ------------------
  299|   188k|        *keyp = *valuep = NULL;
  300|   188k|        return false;
  301|   188k|    }
  302|       |
  303|       |    /* Extract the key and the delimiter that ends the key-value pair or begins
  304|       |     * the value.  Advance the input position past the key and delimiter. */
  305|   793k|    char *key = *stringp;
  306|   793k|    size_t key_len = strcspn(key, ":=(, \t\r\n");
  307|   793k|    char key_delim = key[key_len];
  308|   793k|    key[key_len] = '\0';
  309|   793k|    *stringp += key_len + (key_delim != '\0');
  310|       |
  311|       |    /* Figure out what delimiter ends the value:
  312|       |     *
  313|       |     *     - If key_delim is ":" or "=", the value extends until white space
  314|       |     *       or a comma.
  315|       |     *
  316|       |     *     - If key_delim is "(", the value extends until ")".
  317|       |     *
  318|       |     * If there is no value, we are done. */
  319|   793k|    const char *value_delims;
  320|   793k|    if (key_delim == ':' || key_delim == '=') {
  ------------------
  |  Branch (320:9): [True: 255k, False: 537k]
  |  Branch (320:29): [True: 337k, False: 200k]
  ------------------
  321|   592k|        value_delims = ", \t\r\n";
  322|   592k|    } else if (key_delim == '(') {
  ------------------
  |  Branch (322:16): [True: 68.1k, False: 132k]
  ------------------
  323|  68.1k|        value_delims = ")";
  324|   132k|    } else {
  325|   132k|        *keyp = key;
  326|   132k|        *valuep = key + key_len; /* Empty string. */
  327|   132k|        return true;
  328|   132k|    }
  329|       |
  330|       |    /* Extract the value.  Advance the input position past the value and
  331|       |     * delimiter. */
  332|   660k|    char *value = *stringp;
  333|   660k|    size_t value_len = parse_value(value, value_delims);
  334|   660k|    char value_delim = value[value_len];
  335|       |
  336|       |    /* Handle the special case if the value is of the form "(x)->y".
  337|       |     * After parsing, 'valuep' will be pointing to - "x)->y".
  338|       |     * */
  339|   660k|    if (key_delim == '(' && value[value_len] == ')' &&
  ------------------
  |  Branch (339:9): [True: 68.1k, False: 592k]
  |  Branch (339:29): [True: 59.8k, False: 8.27k]
  ------------------
  340|  59.8k|        value[value_len + 1] == '-' && value[value_len + 2] == '>') {
  ------------------
  |  Branch (340:9): [True: 2.16k, False: 57.6k]
  |  Branch (340:40): [True: 1.49k, False: 668]
  ------------------
  341|  1.49k|        value_delims = ", \t\r\n";
  342|  1.49k|        value_len += parse_value(&value[value_len], value_delims);
  343|  1.49k|        value_delim = value[value_len];
  344|  1.49k|    }
  345|   660k|    value[value_len] = '\0';
  346|   660k|    *stringp += value_len + (value_delim != '\0');
  347|       |
  348|   660k|    *keyp = key;
  349|   660k|    *valuep = value;
  350|       |    return true;
  351|   793k|}
ofp-parse.c:parse_value:
  252|   662k|{
  253|   662k|    size_t n = 0;
  254|       |
  255|       |    /* Iterate until we reach a delimiter.
  256|       |     *
  257|       |     * strchr(s, '\0') returns s+strlen(s), so this test handles the null
  258|       |     * terminator at the end of 's'.  */
  259|  21.0M|    while (!strchr(delimiters, s[n])) {
  ------------------
  |  Branch (259:12): [True: 20.4M, False: 658k]
  ------------------
  260|  20.4M|        if (s[n] == '(') {
  ------------------
  |  Branch (260:13): [True: 29.1k, False: 20.4M]
  ------------------
  261|  29.1k|            int level = 0;
  262|  75.8M|            do {
  263|  75.8M|                switch (s[n]) {
  ------------------
  |  Branch (263:25): [True: 441k, False: 75.3M]
  ------------------
  264|  4.24k|                case '\0':
  ------------------
  |  Branch (264:17): [True: 4.24k, False: 75.8M]
  ------------------
  265|  4.24k|                    return n;
  266|   285k|                case '(':
  ------------------
  |  Branch (266:17): [True: 285k, False: 75.5M]
  ------------------
  267|   285k|                    level++;
  268|   285k|                    break;
  269|   150k|                case ')':
  ------------------
  |  Branch (269:17): [True: 150k, False: 75.6M]
  ------------------
  270|   150k|                    level--;
  271|   150k|                    break;
  272|  75.8M|                }
  273|  75.8M|                n++;
  274|  75.8M|            } while (level > 0);
  ------------------
  |  Branch (274:22): [True: 75.7M, False: 24.9k]
  ------------------
  275|  20.4M|        } else {
  276|  20.4M|            n++;
  277|  20.4M|        }
  278|  20.4M|    }
  279|   658k|    return n;
  280|   662k|}

ofputil_port_map_get_name:
   53|     21|{
   54|     21|    struct namemap_node *node
   55|     21|        = (map
  ------------------
  |  Branch (55:12): [True: 0, False: 21]
  ------------------
   56|     21|           ? namemap_find_by_number(&map->map, ofp_to_u16(ofp_port))
   57|     21|           : NULL);
   58|     21|    return node && !node->duplicate ? node->name : NULL;
  ------------------
  |  Branch (58:12): [True: 0, False: 21]
  |  Branch (58:20): [True: 0, False: 0]
  ------------------
   59|     21|}
ofputil_port_map_get_number:
   64|  4.41k|{
   65|  4.41k|    struct namemap_node *node
   66|  4.41k|        = map ? namemap_find_by_name(&map->map, name) : NULL;
  ------------------
  |  Branch (66:11): [True: 0, False: 4.41k]
  ------------------
   67|  4.41k|    return node && !node->duplicate ? u16_to_ofp(node->number) : OFPP_NONE;
  ------------------
  |  |   47|  4.41k|#define OFPP_NONE       OFP_PORT_C(0xffff) /* Not associated with any port. */
  |  |  ------------------
  |  |  |  |  157|  4.41k|#define OFP_PORT_C(X) ((OVS_FORCE ofp_port_t) (X))
  |  |  ------------------
  ------------------
  |  Branch (67:12): [True: 0, False: 4.41k]
  |  Branch (67:20): [True: 0, False: 0]
  ------------------
   68|  4.41k|}
ofputil_port_from_ofp11:
   84|  1.18k|{
   85|  1.18k|    uint32_t ofp11_port_h = ntohl(ofp11_port);
   86|       |
   87|  1.18k|    if (ofp11_port_h < ofp_to_u16(OFPP_MAX)) {
  ------------------
  |  |   33|  1.18k|#define OFPP_MAX        OFP_PORT_C(0xff00) /* Max # of switch ports. */
  |  |  ------------------
  |  |  |  |  157|  1.18k|#define OFP_PORT_C(X) ((OVS_FORCE ofp_port_t) (X))
  |  |  ------------------
  ------------------
  |  Branch (87:9): [True: 449, False: 737]
  ------------------
   88|    449|        *ofp10_port = u16_to_ofp(ofp11_port_h);
   89|    449|        return 0;
   90|    737|    } else if (ofp11_port_h >= ofp11_to_u32(OFPP11_MAX)) {
  ------------------
  |  |   71|    737|#define OFPP11_MAX    OFP11_PORT_C(0xffffff00)
  |  |  ------------------
  |  |  |  |  159|    737|#define OFP11_PORT_C(X) ((OVS_FORCE ofp11_port_t) (X))
  |  |  ------------------
  ------------------
  |  Branch (90:16): [True: 483, False: 254]
  ------------------
   91|    483|        *ofp10_port = u16_to_ofp(ofp11_port_h - OFPP11_OFFSET);
  ------------------
  |  |   72|    483|#define OFPP11_OFFSET 0xffff0000    /* OFPP11_MAX - OFPP_MAX */
  ------------------
   92|    483|        return 0;
   93|    483|    } else {
   94|    254|        *ofp10_port = OFPP_NONE;
  ------------------
  |  |   47|    254|#define OFPP_NONE       OFP_PORT_C(0xffff) /* Not associated with any port. */
  |  |  ------------------
  |  |  |  |  157|    254|#define OFP_PORT_C(X) ((OVS_FORCE ofp_port_t) (X))
  |  |  ------------------
  ------------------
   95|       |
   96|    254|        static struct vlog_rate_limit rll = VLOG_RATE_LIMIT_INIT(1, 5);
  ------------------
  |  |  110|    254|        {                                                                 \
  |  |  111|    254|            TOKEN_BUCKET_INIT(RATE, OVS_SAT_MUL(BURST, VLOG_MSG_TOKENS)), \
  |  |  ------------------
  |  |  |  |   37|  1.01k|#define TOKEN_BUCKET_INIT(RATE, BURST) { RATE, BURST, 0, LLONG_MIN }
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (37:48): [True: 0, Folded]
  |  |  |  |  |  Branch (37:48): [Folded, False: 254]
  |  |  |  |  ------------------
  |  |  ------------------
  |  |  112|    254|            0,                              /* first_dropped */           \
  |  |  113|    254|            0,                              /* last_dropped */            \
  |  |  114|    254|            0,                              /* n_dropped */               \
  |  |  115|    254|            OVS_MUTEX_INITIALIZER           /* mutex */                   \
  |  |  ------------------
  |  |  |  |   45|    254|#define OVS_MUTEX_INITIALIZER { PTHREAD_ERRORCHECK_MUTEX_INITIALIZER_NP, \
  |  |  |  |   46|    254|                                "<unlocked>" }
  |  |  ------------------
  |  |  116|    254|        }
  ------------------
   97|    254|        VLOG_WARN_RL(&rll, "port %"PRIu32" is outside the supported "
  ------------------
  |  |  224|    254|#define VLOG_WARN_RL(RL, ...) VLOG_RL(RL, VLL_WARN, __VA_ARGS__)
  |  |  ------------------
  |  |  |  |  287|    254|    do {                                                                \
  |  |  |  |  288|    254|        enum vlog_level level__ = LEVEL;                                \
  |  |  |  |  289|    254|        if (this_module.min_level >= level__) {                         \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (289:13): [True: 0, False: 254]
  |  |  |  |  ------------------
  |  |  |  |  290|      0|            vlog_rate_limit(&this_module, level__, RL, __VA_ARGS__);    \
  |  |  |  |  291|      0|        }                                                               \
  |  |  |  |  292|    254|    } while (0)
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (292:14): [Folded, False: 254]
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
   98|    254|                     "range 0 through %d or 0x%"PRIx32" through 0x%"PRIx32,
   99|    254|                     ofp11_port_h, ofp_to_u16(OFPP_MAX) - 1,
  100|    254|                     ofp11_to_u32(OFPP11_MAX), UINT32_MAX);
  101|       |
  102|    254|        return OFPERR_OFPBAC_BAD_OUT_PORT;
  103|    254|    }
  104|  1.18k|}
ofputil_port_to_ofp11:
  112|  25.3k|{
  113|       |    return htonl(ofp_to_u16(ofp10_port) < ofp_to_u16(OFPP_MAX)
  ------------------
  |  Branch (113:12): [True: 21.2k, False: 4.19k]
  ------------------
  114|  25.3k|                 ? ofp_to_u16(ofp10_port)
  115|  25.3k|                 : ofp_to_u16(ofp10_port) + OFPP11_OFFSET);
  116|  25.3k|}
ofputil_port_from_string:
  152|   239k|{
  153|   239k|    unsigned int port32; /* int is at least 32 bits wide. */
  154|       |
  155|   239k|    if (*s == '-') {
  ------------------
  |  Branch (155:9): [True: 12, False: 239k]
  ------------------
  156|     12|        VLOG_WARN("Negative value %s is not a valid port number.", s);
  ------------------
  |  |  209|     12|#define VLOG_WARN(...) VLOG(VLL_WARN, __VA_ARGS__)
  |  |  ------------------
  |  |  |  |  280|     12|    do {                                                \
  |  |  |  |  281|     12|        enum vlog_level level__ = LEVEL;                \
  |  |  |  |  282|     12|        if (this_module.min_level >= level__) {         \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (282:13): [True: 0, False: 12]
  |  |  |  |  ------------------
  |  |  |  |  283|      0|            vlog(&this_module, level__, __VA_ARGS__);   \
  |  |  |  |  284|      0|        }                                               \
  |  |  |  |  285|     12|    } while (0)
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (285:14): [Folded, False: 12]
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  157|     12|        return false;
  158|     12|    }
  159|   239k|    *portp = 0;
  160|   239k|    if (str_to_uint(s, 10, &port32)) {
  ------------------
  |  Branch (160:9): [True: 231k, False: 8.12k]
  ------------------
  161|   231k|        if (port32 < ofp_to_u16(OFPP_MAX)) {
  ------------------
  |  |   33|   231k|#define OFPP_MAX        OFP_PORT_C(0xff00) /* Max # of switch ports. */
  |  |  ------------------
  |  |  |  |  157|   231k|#define OFP_PORT_C(X) ((OVS_FORCE ofp_port_t) (X))
  |  |  ------------------
  ------------------
  |  Branch (161:13): [True: 225k, False: 5.42k]
  ------------------
  162|       |            /* Pass. */
  163|   225k|        } else if (port32 < ofp_to_u16(OFPP_FIRST_RESV)) {
  ------------------
  |  |   34|  5.42k|#define OFPP_FIRST_RESV OFP_PORT_C(0xfff7) /* First assigned reserved port. */
  |  |  ------------------
  |  |  |  |  157|  5.42k|#define OFP_PORT_C(X) ((OVS_FORCE ofp_port_t) (X))
  |  |  ------------------
  ------------------
  |  Branch (163:20): [True: 234, False: 5.19k]
  ------------------
  164|    234|            VLOG_WARN("port %u is a reserved OF1.0 port number that will "
  ------------------
  |  |  209|    234|#define VLOG_WARN(...) VLOG(VLL_WARN, __VA_ARGS__)
  |  |  ------------------
  |  |  |  |  280|    234|    do {                                                \
  |  |  |  |  281|    234|        enum vlog_level level__ = LEVEL;                \
  |  |  |  |  282|    234|        if (this_module.min_level >= level__) {         \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (282:13): [True: 0, False: 234]
  |  |  |  |  ------------------
  |  |  |  |  283|      0|            vlog(&this_module, level__, __VA_ARGS__);   \
  |  |  |  |  284|      0|        }                                               \
  |  |  |  |  285|    234|    } while (0)
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (285:14): [Folded, False: 234]
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  165|    234|                      "be translated to %u when talking to an OF1.1 or "
  166|    234|                      "later controller", port32, port32 + OFPP11_OFFSET);
  167|  5.19k|        } else if (port32 <= ofp_to_u16(OFPP_LAST_RESV)) {
  ------------------
  |  |   35|  5.19k|#define OFPP_LAST_RESV  OFP_PORT_C(0xffff) /* Last assigned reserved port. */
  |  |  ------------------
  |  |  |  |  157|  5.19k|#define OFP_PORT_C(X) ((OVS_FORCE ofp_port_t) (X))
  |  |  ------------------
  ------------------
  |  Branch (167:20): [True: 4.89k, False: 294]
  ------------------
  168|  4.89k|            char name[OFP_MAX_PORT_NAME_LEN];
  169|       |
  170|  4.89k|            ofputil_port_to_string(u16_to_ofp(port32), NULL,
  171|  4.89k|                                   name, sizeof name);
  172|  4.89k|            VLOG_WARN_ONCE("referring to port %s as %"PRIu32" is deprecated "
  ------------------
  |  |  240|  4.89k|#define VLOG_WARN_ONCE(...) VLOG_ONCE(VLL_WARN, __VA_ARGS__)
  |  |  ------------------
  |  |  |  |  294|  4.89k|    do {                                                                \
  |  |  |  |  295|  4.89k|        static struct ovsthread_once once = OVSTHREAD_ONCE_INITIALIZER; \
  |  |  |  |  ------------------
  |  |  |  |  |  |  134|  4.89k|    {                                           \
  |  |  |  |  |  |  135|  4.89k|        false,                                  \
  |  |  |  |  |  |  136|  4.89k|        OVS_MUTEX_INITIALIZER,                  \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   45|  4.89k|#define OVS_MUTEX_INITIALIZER { PTHREAD_ERRORCHECK_MUTEX_INITIALIZER_NP, \
  |  |  |  |  |  |  |  |   46|  4.89k|                                "<unlocked>" }
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  137|  4.89k|    }
  |  |  |  |  ------------------
  |  |  |  |  296|  4.89k|        if (ovsthread_once_start(&once)) {                              \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (296:13): [True: 1, False: 4.89k]
  |  |  |  |  ------------------
  |  |  |  |  297|      1|            vlog(&this_module, LEVEL, __VA_ARGS__);                     \
  |  |  |  |  298|      1|            ovsthread_once_done(&once);                                 \
  |  |  |  |  299|      1|        }                                                               \
  |  |  |  |  300|  4.89k|    } while (0)
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (300:14): [Folded, False: 4.89k]
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  173|  4.89k|                           "for compatibility with OpenFlow 1.1 and later",
  174|  4.89k|                           name, port32);
  175|  4.89k|        } else if (port32 < ofp11_to_u32(OFPP11_MAX)) {
  ------------------
  |  |   71|    294|#define OFPP11_MAX    OFP11_PORT_C(0xffffff00)
  |  |  ------------------
  |  |  |  |  159|    294|#define OFP11_PORT_C(X) ((OVS_FORCE ofp11_port_t) (X))
  |  |  ------------------
  ------------------
  |  Branch (175:20): [True: 63, False: 231]
  ------------------
  176|     63|            VLOG_WARN("port %u is outside the supported range 0 through "
  ------------------
  |  |  209|     63|#define VLOG_WARN(...) VLOG(VLL_WARN, __VA_ARGS__)
  |  |  ------------------
  |  |  |  |  280|     63|    do {                                                \
  |  |  |  |  281|     63|        enum vlog_level level__ = LEVEL;                \
  |  |  |  |  282|     63|        if (this_module.min_level >= level__) {         \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (282:13): [True: 0, False: 63]
  |  |  |  |  ------------------
  |  |  |  |  283|      0|            vlog(&this_module, level__, __VA_ARGS__);   \
  |  |  |  |  284|      0|        }                                               \
  |  |  |  |  285|     63|    } while (0)
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (285:14): [Folded, False: 63]
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  177|     63|                      "%x or 0x%x through 0x%"PRIx32, port32,
  178|     63|                      UINT16_MAX, ofp11_to_u32(OFPP11_MAX), UINT32_MAX);
  179|     63|            return false;
  180|    231|        } else {
  181|    231|            port32 -= OFPP11_OFFSET;
  ------------------
  |  |   72|    231|#define OFPP11_OFFSET 0xffff0000    /* OFPP11_MAX - OFPP_MAX */
  ------------------
  182|    231|        }
  183|       |
  184|   231k|        *portp = u16_to_ofp(port32);
  185|   231k|        return true;
  186|   231k|    } else {
  187|  8.12k|        struct pair {
  188|  8.12k|            const char *name;
  189|  8.12k|            ofp_port_t value;
  190|  8.12k|        };
  191|  8.12k|        static const struct pair pairs[] = {
  192|  8.12k|#define OFPUTIL_NAMED_PORT(NAME) {#NAME, OFPP_##NAME},
  193|  8.12k|            OFPUTIL_NAMED_PORTS_WITH_NONE
  ------------------
  |  |  131|  8.12k|        OFPUTIL_NAMED_PORTS                     \
  |  |  ------------------
  |  |  |  |  119|  8.12k|        OFPUTIL_NAMED_PORT(IN_PORT)             \
  |  |  |  |  ------------------
  |  |  |  |  |  |  192|  8.12k|#define OFPUTIL_NAMED_PORT(NAME) {#NAME, OFPP_##NAME},
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   39|  8.12k|#define OFPP_IN_PORT    OFP_PORT_C(0xfff8) /* Where the packet came in. */
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  |  157|  8.12k|#define OFP_PORT_C(X) ((OVS_FORCE ofp_port_t) (X))
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  |  |  120|  8.12k|        OFPUTIL_NAMED_PORT(TABLE)               \
  |  |  |  |  ------------------
  |  |  |  |  |  |  192|  8.12k|#define OFPUTIL_NAMED_PORT(NAME) {#NAME, OFPP_##NAME},
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   40|  8.12k|#define OFPP_TABLE      OFP_PORT_C(0xfff9) /* Perform actions in flow table. */
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  |  157|  8.12k|#define OFP_PORT_C(X) ((OVS_FORCE ofp_port_t) (X))
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  |  |  121|  8.12k|        OFPUTIL_NAMED_PORT(NORMAL)              \
  |  |  |  |  ------------------
  |  |  |  |  |  |  192|  8.12k|#define OFPUTIL_NAMED_PORT(NAME) {#NAME, OFPP_##NAME},
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   41|  8.12k|#define OFPP_NORMAL     OFP_PORT_C(0xfffa) /* Process with normal L2/L3. */
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  |  157|  8.12k|#define OFP_PORT_C(X) ((OVS_FORCE ofp_port_t) (X))
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  |  |  122|  8.12k|        OFPUTIL_NAMED_PORT(FLOOD)               \
  |  |  |  |  ------------------
  |  |  |  |  |  |  192|  8.12k|#define OFPUTIL_NAMED_PORT(NAME) {#NAME, OFPP_##NAME},
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   42|  8.12k|#define OFPP_FLOOD      OFP_PORT_C(0xfffb) /* All ports except input port and
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  |  157|  8.12k|#define OFP_PORT_C(X) ((OVS_FORCE ofp_port_t) (X))
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  |  |  123|  8.12k|        OFPUTIL_NAMED_PORT(ALL)                 \
  |  |  |  |  ------------------
  |  |  |  |  |  |  192|  8.12k|#define OFPUTIL_NAMED_PORT(NAME) {#NAME, OFPP_##NAME},
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   44|  8.12k|#define OFPP_ALL        OFP_PORT_C(0xfffc) /* All ports except input port. */
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  |  157|  8.12k|#define OFP_PORT_C(X) ((OVS_FORCE ofp_port_t) (X))
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  |  |  124|  8.12k|        OFPUTIL_NAMED_PORT(CONTROLLER)          \
  |  |  |  |  ------------------
  |  |  |  |  |  |  192|  8.12k|#define OFPUTIL_NAMED_PORT(NAME) {#NAME, OFPP_##NAME},
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   45|  8.12k|#define OFPP_CONTROLLER OFP_PORT_C(0xfffd) /* Send to controller. */
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  |  157|  8.12k|#define OFP_PORT_C(X) ((OVS_FORCE ofp_port_t) (X))
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  |  |  125|  8.12k|        OFPUTIL_NAMED_PORT(LOCAL)               \
  |  |  |  |  ------------------
  |  |  |  |  |  |  192|  8.12k|#define OFPUTIL_NAMED_PORT(NAME) {#NAME, OFPP_##NAME},
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   46|  8.12k|#define OFPP_LOCAL      OFP_PORT_C(0xfffe) /* Local openflow "port". */
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  |  157|  8.12k|#define OFP_PORT_C(X) ((OVS_FORCE ofp_port_t) (X))
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  |  |  126|  8.12k|        OFPUTIL_NAMED_PORT(ANY)                 \
  |  |  |  |  ------------------
  |  |  |  |  |  |  192|  8.12k|#define OFPUTIL_NAMED_PORT(NAME) {#NAME, OFPP_##NAME},
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   80|  8.12k|#define OFPP_ANY OFPP_NONE
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  |   47|  8.12k|#define OFPP_NONE       OFP_PORT_C(0xffff) /* Not associated with any port. */
  |  |  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  |  |  |  157|  8.12k|#define OFP_PORT_C(X) ((OVS_FORCE ofp_port_t) (X))
  |  |  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  |  |  127|  8.12k|        OFPUTIL_NAMED_PORT(UNSET)
  |  |  |  |  ------------------
  |  |  |  |  |  |  192|  8.12k|#define OFPUTIL_NAMED_PORT(NAME) {#NAME, OFPP_##NAME},
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   38|  8.12k|#define OFPP_UNSET      OFP_PORT_C(0xfff7) /* For OXM_OF_ACTSET_OUTPUT only. */
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  |  157|  8.12k|#define OFP_PORT_C(X) ((OVS_FORCE ofp_port_t) (X))
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  ------------------
  |  |  132|  8.12k|        OFPUTIL_NAMED_PORT(NONE)
  |  |  ------------------
  |  |  |  |  192|  8.12k|#define OFPUTIL_NAMED_PORT(NAME) {#NAME, OFPP_##NAME},
  |  |  |  |  ------------------
  |  |  |  |  |  |   47|  8.12k|#define OFPP_NONE       OFP_PORT_C(0xffff) /* Not associated with any port. */
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  157|  8.12k|#define OFP_PORT_C(X) ((OVS_FORCE ofp_port_t) (X))
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  194|  8.12k|#undef OFPUTIL_NAMED_PORT
  195|  8.12k|        };
  196|  8.12k|        const struct pair *p;
  197|       |
  198|  61.0k|        for (p = pairs; p < &pairs[ARRAY_SIZE(pairs)]; p++) {
  ------------------
  |  |  297|  61.0k|#define ARRAY_SIZE(ARRAY) __ARRAY_SIZE(ARRAY)
  |  |  ------------------
  |  |  |  |   46|  61.0k|    __builtin_choose_expr(__ARRAY_CHECK(ARRAY),			\
  |  |  |  |  ------------------
  |  |  |  |  |  |   41|  61.0k|    !__builtin_types_compatible_p(typeof(ARRAY), typeof(&ARRAY[0]))
  |  |  |  |  ------------------
  |  |  |  |   47|  61.0k|        __ARRAY_SIZE_NOCHECK(ARRAY), __ARRAY_FAIL(ARRAY))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|  61.0k|#define __ARRAY_SIZE_NOCHECK(ARRAY) (sizeof(ARRAY) / sizeof((ARRAY)[0]))
  |  |  |  |  ------------------
  |  |  |  |                       __ARRAY_SIZE_NOCHECK(ARRAY), __ARRAY_FAIL(ARRAY))
  |  |  |  |  ------------------
  |  |  |  |  |  |   44|  61.0k|#define __ARRAY_FAIL(ARRAY) (sizeof(char[-2*!__ARRAY_CHECK(ARRAY)]))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  |  Branch (198:25): [True: 56.5k, False: 4.47k]
  ------------------
  199|  56.5k|            if (!strcasecmp(s, p->name)) {
  ------------------
  |  Branch (199:17): [True: 3.64k, False: 52.8k]
  ------------------
  200|  3.64k|                *portp = p->value;
  201|  3.64k|                return true;
  202|  3.64k|            }
  203|  56.5k|        }
  204|       |
  205|  4.47k|        ofp_port_t ofp_port = OFPP_NONE;
  ------------------
  |  |   47|  4.47k|#define OFPP_NONE       OFP_PORT_C(0xffff) /* Not associated with any port. */
  |  |  ------------------
  |  |  |  |  157|  4.47k|#define OFP_PORT_C(X) ((OVS_FORCE ofp_port_t) (X))
  |  |  ------------------
  ------------------
  206|  4.47k|        if (s[0] != '"') {
  ------------------
  |  Branch (206:13): [True: 4.38k, False: 92]
  ------------------
  207|  4.38k|            ofp_port = ofputil_port_map_get_number(port_map, s);
  208|  4.38k|        } else {
  209|     92|            size_t length = strlen(s);
  210|     92|            char *name = NULL;
  211|     92|            if (length > 1
  ------------------
  |  Branch (211:17): [True: 91, False: 1]
  ------------------
  212|     91|                && s[length - 1] == '"'
  ------------------
  |  Branch (212:20): [True: 88, False: 3]
  ------------------
  213|     88|                && json_string_unescape(s + 1, length - 2, &name)) {
  ------------------
  |  Branch (213:20): [True: 26, False: 62]
  ------------------
  214|     26|                ofp_port = ofputil_port_map_get_number(port_map, name);
  215|     26|            }
  216|     92|            free(name);
  217|     92|        }
  218|  4.47k|        if (ofp_port != OFPP_NONE) {
  ------------------
  |  |   47|  4.47k|#define OFPP_NONE       OFP_PORT_C(0xffff) /* Not associated with any port. */
  |  |  ------------------
  |  |  |  |  157|  4.47k|#define OFP_PORT_C(X) ((OVS_FORCE ofp_port_t) (X))
  |  |  ------------------
  ------------------
  |  Branch (218:13): [True: 0, False: 4.47k]
  ------------------
  219|      0|            *portp = ofp_port;
  220|      0|            return true;
  221|      0|        }
  222|       |
  223|  4.47k|        return false;
  224|  4.47k|    }
  225|   239k|}
ofputil_port_get_reserved_name:
  229|  4.93k|{
  230|  4.93k|    switch (port) {
  231|      0|#define OFPUTIL_NAMED_PORT(NAME) case OFPP_##NAME: return #NAME;
  232|      0|        OFPUTIL_NAMED_PORTS
  ------------------
  |  |  119|  1.70k|        OFPUTIL_NAMED_PORT(IN_PORT)             \
  |  |  ------------------
  |  |  |  |  231|  1.70k|#define OFPUTIL_NAMED_PORT(NAME) case OFPP_##NAME: return #NAME;
  |  |  |  |  ------------------
  |  |  |  |  |  |   39|  1.70k|#define OFPP_IN_PORT    OFP_PORT_C(0xfff8) /* Where the packet came in. */
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  157|  1.70k|#define OFP_PORT_C(X) ((OVS_FORCE ofp_port_t) (X))
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (231:34): [True: 1.70k, False: 3.22k]
  |  |  |  |  ------------------
  |  |  ------------------
  |  |  120|  1.70k|        OFPUTIL_NAMED_PORT(TABLE)               \
  |  |  ------------------
  |  |  |  |  231|    324|#define OFPUTIL_NAMED_PORT(NAME) case OFPP_##NAME: return #NAME;
  |  |  |  |  ------------------
  |  |  |  |  |  |   40|    324|#define OFPP_TABLE      OFP_PORT_C(0xfff9) /* Perform actions in flow table. */
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  157|    324|#define OFP_PORT_C(X) ((OVS_FORCE ofp_port_t) (X))
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (231:34): [True: 324, False: 4.60k]
  |  |  |  |  ------------------
  |  |  ------------------
  |  |  121|    370|        OFPUTIL_NAMED_PORT(NORMAL)              \
  |  |  ------------------
  |  |  |  |  231|    370|#define OFPUTIL_NAMED_PORT(NAME) case OFPP_##NAME: return #NAME;
  |  |  |  |  ------------------
  |  |  |  |  |  |   41|    370|#define OFPP_NORMAL     OFP_PORT_C(0xfffa) /* Process with normal L2/L3. */
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  157|    370|#define OFP_PORT_C(X) ((OVS_FORCE ofp_port_t) (X))
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (231:34): [True: 370, False: 4.56k]
  |  |  |  |  ------------------
  |  |  ------------------
  |  |  122|    370|        OFPUTIL_NAMED_PORT(FLOOD)               \
  |  |  ------------------
  |  |  |  |  231|    329|#define OFPUTIL_NAMED_PORT(NAME) case OFPP_##NAME: return #NAME;
  |  |  |  |  ------------------
  |  |  |  |  |  |   42|    329|#define OFPP_FLOOD      OFP_PORT_C(0xfffb) /* All ports except input port and
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  157|    329|#define OFP_PORT_C(X) ((OVS_FORCE ofp_port_t) (X))
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (231:34): [True: 329, False: 4.60k]
  |  |  |  |  ------------------
  |  |  ------------------
  |  |  123|    329|        OFPUTIL_NAMED_PORT(ALL)                 \
  |  |  ------------------
  |  |  |  |  231|    320|#define OFPUTIL_NAMED_PORT(NAME) case OFPP_##NAME: return #NAME;
  |  |  |  |  ------------------
  |  |  |  |  |  |   44|    320|#define OFPP_ALL        OFP_PORT_C(0xfffc) /* All ports except input port. */
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  157|    320|#define OFP_PORT_C(X) ((OVS_FORCE ofp_port_t) (X))
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (231:34): [True: 320, False: 4.61k]
  |  |  |  |  ------------------
  |  |  ------------------
  |  |  124|    540|        OFPUTIL_NAMED_PORT(CONTROLLER)          \
  |  |  ------------------
  |  |  |  |  231|    540|#define OFPUTIL_NAMED_PORT(NAME) case OFPP_##NAME: return #NAME;
  |  |  |  |  ------------------
  |  |  |  |  |  |   45|    540|#define OFPP_CONTROLLER OFP_PORT_C(0xfffd) /* Send to controller. */
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  157|    540|#define OFP_PORT_C(X) ((OVS_FORCE ofp_port_t) (X))
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (231:34): [True: 540, False: 4.39k]
  |  |  |  |  ------------------
  |  |  ------------------
  |  |  125|    540|        OFPUTIL_NAMED_PORT(LOCAL)               \
  |  |  ------------------
  |  |  |  |  231|    474|#define OFPUTIL_NAMED_PORT(NAME) case OFPP_##NAME: return #NAME;
  |  |  |  |  ------------------
  |  |  |  |  |  |   46|    474|#define OFPP_LOCAL      OFP_PORT_C(0xfffe) /* Local openflow "port". */
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  157|    474|#define OFP_PORT_C(X) ((OVS_FORCE ofp_port_t) (X))
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (231:34): [True: 474, False: 4.45k]
  |  |  |  |  ------------------
  |  |  ------------------
  |  |  126|    532|        OFPUTIL_NAMED_PORT(ANY)                 \
  |  |  ------------------
  |  |  |  |  231|    532|#define OFPUTIL_NAMED_PORT(NAME) case OFPP_##NAME: return #NAME;
  |  |  |  |  ------------------
  |  |  |  |  |  |   80|    532|#define OFPP_ANY OFPP_NONE
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   47|    532|#define OFPP_NONE       OFP_PORT_C(0xffff) /* Not associated with any port. */
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  |  157|    532|#define OFP_PORT_C(X) ((OVS_FORCE ofp_port_t) (X))
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (231:34): [True: 532, False: 4.40k]
  |  |  |  |  ------------------
  |  |  ------------------
  |  |  127|    532|        OFPUTIL_NAMED_PORT(UNSET)
  |  |  ------------------
  |  |  |  |  231|    313|#define OFPUTIL_NAMED_PORT(NAME) case OFPP_##NAME: return #NAME;
  |  |  |  |  ------------------
  |  |  |  |  |  |   38|    313|#define OFPP_UNSET      OFP_PORT_C(0xfff7) /* For OXM_OF_ACTSET_OUTPUT only. */
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  157|    313|#define OFP_PORT_C(X) ((OVS_FORCE ofp_port_t) (X))
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (231:34): [True: 313, False: 4.61k]
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  233|      0|#undef OFPUTIL_NAMED_PORT
  234|       |
  235|     21|    default:
  ------------------
  |  Branch (235:5): [True: 21, False: 4.91k]
  ------------------
  236|       |        return NULL;
  237|  4.93k|    }
  238|  4.93k|}
ofputil_format_port:
  246|     33|{
  247|     33|    const char *reserved_name = ofputil_port_get_reserved_name(port);
  248|     33|    if (reserved_name) {
  ------------------
  |  Branch (248:9): [True: 12, False: 21]
  ------------------
  249|     12|        ds_put_cstr(s, reserved_name);
  250|     12|        return;
  251|     12|    }
  252|       |
  253|     21|    const char *port_name = ofputil_port_map_get_name(port_map, port);
  254|     21|    if (port_name) {
  ------------------
  |  Branch (254:9): [True: 0, False: 21]
  ------------------
  255|      0|        namemap_put_name(port_name, s);
  256|      0|        return;
  257|      0|    }
  258|       |
  259|     21|    ds_put_format(s, "%"PRIu32, port);
  260|     21|}
ofputil_port_to_string:
  270|  4.89k|{
  271|  4.89k|    const char *reserved_name = ofputil_port_get_reserved_name(port);
  272|  4.89k|    if (reserved_name) {
  ------------------
  |  Branch (272:9): [True: 4.89k, False: 0]
  ------------------
  273|  4.89k|        ovs_strlcpy(namebuf, reserved_name, bufsize);
  274|  4.89k|        return;
  275|  4.89k|    }
  276|       |
  277|      0|    const char *port_name = ofputil_port_map_get_name(port_map, port);
  278|      0|    if (port_name) {
  ------------------
  |  Branch (278:9): [True: 0, False: 0]
  ------------------
  279|      0|        struct ds s = DS_EMPTY_INITIALIZER;
  ------------------
  |  |   46|      0|#define DS_EMPTY_INITIALIZER { NULL, 0, 0 }
  ------------------
  280|      0|        namemap_put_name(port_name, &s);
  281|      0|        ovs_strlcpy(namebuf, ds_cstr(&s), bufsize);
  282|      0|        ds_destroy(&s);
  283|      0|        return;
  284|      0|    }
  285|       |
  286|      0|    snprintf(namebuf, bufsize, "%"PRIu32, port);
  287|      0|}

ofpprop_put:
  323|  2.21k|{
  324|  2.21k|    size_t start_ofs = ofpprop_start(msg, type);
  325|  2.21k|    ofpbuf_put(msg, value, len);
  326|  2.21k|    ofpprop_end(msg, start_ofs);
  327|  2.21k|}
ofpprop_put_be16:
  354|    431|{
  355|    431|    if (!ofpprop_is_experimenter(type)) {
  ------------------
  |  Branch (355:9): [True: 431, False: 0]
  ------------------
  356|       |        /* The OpenFlow specs consistently (at least they're consistent!)  give
  357|       |         * properties with a 16-bit integer value a length of 8, not 6, so add
  358|       |         * two bytes of padding.  */
  359|    431|        ovs_be16 padded_value[2] = { value, 0 };
  360|    431|        ofpprop_put(msg, type, padded_value, sizeof padded_value);
  361|    431|    } else {
  362|       |        /* There's no precedent but let's assume that this is generally done
  363|       |         * sanely. */
  364|      0|        ofpprop_put(msg, type, &value, sizeof value);
  365|      0|    }
  366|    431|}
ofpprop_put_be32:
  371|    512|{
  372|    512|    ofpprop_put(msg, type, &value, sizeof value);
  373|    512|}
ofpprop_put_u8:
  395|    191|{
  396|       |    /* There's no precedent for 8-bit properties in OpenFlow 1.5 and earlier
  397|       |     * but let's assume they're done sanely. */
  398|    191|    ofpprop_put(msg, type, &value, 1);
  399|    191|}
ofpprop_put_u16:
  404|    431|{
  405|       |    ofpprop_put_be16(msg, type, htons(value));
  406|    431|}
ofpprop_put_u32:
  411|    512|{
  412|       |    ofpprop_put_be32(msg, type, htonl(value));
  413|    512|}
ofpprop_put_flag:
  447|  4.02k|{
  448|  4.02k|    size_t start = ofpprop_start(msg, type);
  449|  4.02k|    ofpprop_end(msg, start);
  450|  4.02k|}
ofpprop_start:
  478|  6.23k|{
  479|  6.23k|    size_t start_ofs = msg->size;
  480|  6.23k|    if (!ofpprop_is_experimenter(type)) {
  ------------------
  |  Branch (480:9): [True: 6.23k, False: 0]
  ------------------
  481|  6.23k|        struct ofp_prop_header *oph = ofpbuf_put_uninit(msg, sizeof *oph);
  482|  6.23k|        oph->type = htons(type);
  483|  6.23k|        oph->len = htons(4);
  484|  6.23k|    } else {
  485|      0|        struct ofp_prop_experimenter *ope
  486|      0|            = ofpbuf_put_uninit(msg, sizeof *ope);
  487|      0|        ope->type = htons(0xffff);
  488|      0|        ope->len = htons(12);
  489|      0|        ope->experimenter = htonl(ofpprop_type_to_exp_id(type));
  490|       |        ope->exp_type = htonl(ofpprop_type_to_exp_type(type));
  491|      0|    }
  492|  6.23k|    return start_ofs;
  493|  6.23k|}
ofpprop_end:
  501|  6.23k|{
  502|  6.23k|    struct ofp_prop_header *oph;
  503|       |
  504|  6.23k|    oph = ofpbuf_at_assert(msg, start_ofs, sizeof *oph);
  505|  6.23k|    oph->len = htons(msg->size - start_ofs);
  506|  6.23k|    ofpbuf_padto(msg, ROUND_UP(msg->size, 8));
  ------------------
  |  |  303|  6.23k|#define ROUND_UP(X, Y) (DIV_ROUND_UP(X, Y) * (Y))
  |  |  ------------------
  |  |  |  |  300|  6.23k|#define DIV_ROUND_UP(X, Y) (((X) + ((Y) - 1)) / (Y))
  |  |  ------------------
  ------------------
  507|  6.23k|}

ofputil_protocol_to_ofp_version:
   99|  9.54k|{
  100|  9.54k|    switch (protocol) {
  ------------------
  |  Branch (100:13): [True: 9.54k, False: 0]
  ------------------
  101|  4.51k|    case OFPUTIL_P_OF10_STD:
  ------------------
  |  Branch (101:5): [True: 4.51k, False: 5.03k]
  ------------------
  102|  4.76k|    case OFPUTIL_P_OF10_STD_TID:
  ------------------
  |  Branch (102:5): [True: 243, False: 9.30k]
  ------------------
  103|  8.38k|    case OFPUTIL_P_OF10_NXM:
  ------------------
  |  Branch (103:5): [True: 3.62k, False: 5.92k]
  ------------------
  104|  8.40k|    case OFPUTIL_P_OF10_NXM_TID:
  ------------------
  |  Branch (104:5): [True: 16, False: 9.53k]
  ------------------
  105|  8.40k|        return OFP10_VERSION;
  106|    212|    case OFPUTIL_P_OF11_STD:
  ------------------
  |  Branch (106:5): [True: 212, False: 9.33k]
  ------------------
  107|    212|        return OFP11_VERSION;
  108|    234|    case OFPUTIL_P_OF12_OXM:
  ------------------
  |  Branch (108:5): [True: 234, False: 9.31k]
  ------------------
  109|    234|        return OFP12_VERSION;
  110|    698|    case OFPUTIL_P_OF13_OXM:
  ------------------
  |  Branch (110:5): [True: 698, False: 8.85k]
  ------------------
  111|    698|        return OFP13_VERSION;
  112|      0|    case OFPUTIL_P_OF14_OXM:
  ------------------
  |  Branch (112:5): [True: 0, False: 9.54k]
  ------------------
  113|      0|        return OFP14_VERSION;
  114|      0|    case OFPUTIL_P_OF15_OXM:
  ------------------
  |  Branch (114:5): [True: 0, False: 9.54k]
  ------------------
  115|      0|        return OFP15_VERSION;
  116|  9.54k|    }
  117|       |
  118|      0|    OVS_NOT_REACHED();
  ------------------
  |  |  107|      0|#define OVS_NOT_REACHED() abort()
  ------------------
  119|  9.54k|}
ofputil_protocol_to_string:
  254|  11.3k|{
  255|  11.3k|    const struct proto_abbrev *p;
  256|       |
  257|       |    /* Use a "switch" statement for single-bit names so that we get a compiler
  258|       |     * warning if we forget any. */
  259|  11.3k|    switch (protocol) {
  ------------------
  |  Branch (259:13): [True: 11.3k, False: 0]
  ------------------
  260|  3.62k|    case OFPUTIL_P_OF10_NXM:
  ------------------
  |  Branch (260:5): [True: 3.62k, False: 7.70k]
  ------------------
  261|  3.62k|        return "NXM-table_id";
  262|       |
  263|    275|    case OFPUTIL_P_OF10_NXM_TID:
  ------------------
  |  Branch (263:5): [True: 275, False: 11.0k]
  ------------------
  264|    275|        return "NXM+table_id";
  265|       |
  266|  4.51k|    case OFPUTIL_P_OF10_STD:
  ------------------
  |  Branch (266:5): [True: 4.51k, False: 6.81k]
  ------------------
  267|  4.51k|        return "OpenFlow10-table_id";
  268|       |
  269|    486|    case OFPUTIL_P_OF10_STD_TID:
  ------------------
  |  Branch (269:5): [True: 486, False: 10.8k]
  ------------------
  270|    486|        return "OpenFlow10+table_id";
  271|       |
  272|    916|    case OFPUTIL_P_OF11_STD:
  ------------------
  |  Branch (272:5): [True: 916, False: 10.4k]
  ------------------
  273|    916|        return "OpenFlow11";
  274|       |
  275|    117|    case OFPUTIL_P_OF12_OXM:
  ------------------
  |  Branch (275:5): [True: 117, False: 11.2k]
  ------------------
  276|    117|        return "OXM-OpenFlow12";
  277|       |
  278|    698|    case OFPUTIL_P_OF13_OXM:
  ------------------
  |  Branch (278:5): [True: 698, False: 10.6k]
  ------------------
  279|    698|        return "OXM-OpenFlow13";
  280|       |
  281|    349|    case OFPUTIL_P_OF14_OXM:
  ------------------
  |  Branch (281:5): [True: 349, False: 10.9k]
  ------------------
  282|    349|        return "OXM-OpenFlow14";
  283|       |
  284|    349|    case OFPUTIL_P_OF15_OXM:
  ------------------
  |  Branch (284:5): [True: 349, False: 10.9k]
  ------------------
  285|    349|        return "OXM-OpenFlow15";
  286|  11.3k|    }
  287|       |
  288|       |    /* Check abbreviations. */
  289|      0|    for (p = proto_abbrevs; p < &proto_abbrevs[N_PROTO_ABBREVS]; p++) {
  ------------------
  |  |   46|      0|#define N_PROTO_ABBREVS ARRAY_SIZE(proto_abbrevs)
  |  |  ------------------
  |  |  |  |  297|      0|#define ARRAY_SIZE(ARRAY) __ARRAY_SIZE(ARRAY)
  |  |  |  |  ------------------
  |  |  |  |  |  |   46|      0|    __builtin_choose_expr(__ARRAY_CHECK(ARRAY),			\
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   41|      0|    !__builtin_types_compatible_p(typeof(ARRAY), typeof(&ARRAY[0]))
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |   47|      0|        __ARRAY_SIZE_NOCHECK(ARRAY), __ARRAY_FAIL(ARRAY))
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   37|      0|#define __ARRAY_SIZE_NOCHECK(ARRAY) (sizeof(ARRAY) / sizeof((ARRAY)[0]))
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |                       __ARRAY_SIZE_NOCHECK(ARRAY), __ARRAY_FAIL(ARRAY))
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   44|      0|#define __ARRAY_FAIL(ARRAY) (sizeof(char[-2*!__ARRAY_CHECK(ARRAY)]))
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  |  Branch (289:29): [True: 0, False: 0]
  ------------------
  290|      0|        if (protocol == p->protocol) {
  ------------------
  |  Branch (290:13): [True: 0, False: 0]
  ------------------
  291|      0|            return p->name;
  292|      0|        }
  293|      0|    }
  294|       |
  295|      0|    return NULL;
  296|      0|}
ofputil_protocols_to_string:
  305|  9.28k|{
  306|  9.28k|    struct ds s;
  307|       |
  308|  9.28k|    ovs_assert(!(protocols & ~OFPUTIL_P_ANY));
  ------------------
  |  |   62|  9.28k|#define ovs_assert ovs_ignore
  ------------------
                  ovs_assert(!(protocols & ~OFPUTIL_P_ANY));
  ------------------
  |  |  100|  9.28k|#define OFPUTIL_P_ANY ((1 << 9) - 1)
  ------------------
  309|  9.28k|    if (protocols == 0) {
  ------------------
  |  Branch (309:9): [True: 201, False: 9.08k]
  ------------------
  310|    201|        return xstrdup("none");
  311|    201|    }
  312|       |
  313|  9.08k|    ds_init(&s);
  314|  23.7k|    while (protocols) {
  ------------------
  |  Branch (314:12): [True: 14.6k, False: 9.08k]
  ------------------
  315|  14.6k|        const struct proto_abbrev *p;
  316|  14.6k|        int i;
  317|       |
  318|  14.6k|        if (s.length) {
  ------------------
  |  Branch (318:13): [True: 5.55k, False: 9.08k]
  ------------------
  319|  5.55k|            ds_put_char(&s, ',');
  320|  5.55k|        }
  321|       |
  322|  43.6k|        for (p = proto_abbrevs; p < &proto_abbrevs[N_PROTO_ABBREVS]; p++) {
  ------------------
  |  |   46|  43.6k|#define N_PROTO_ABBREVS ARRAY_SIZE(proto_abbrevs)
  |  |  ------------------
  |  |  |  |  297|  43.6k|#define ARRAY_SIZE(ARRAY) __ARRAY_SIZE(ARRAY)
  |  |  |  |  ------------------
  |  |  |  |  |  |   46|  43.6k|    __builtin_choose_expr(__ARRAY_CHECK(ARRAY),			\
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   41|  43.6k|    !__builtin_types_compatible_p(typeof(ARRAY), typeof(&ARRAY[0]))
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |   47|  43.6k|        __ARRAY_SIZE_NOCHECK(ARRAY), __ARRAY_FAIL(ARRAY))
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   37|  43.6k|#define __ARRAY_SIZE_NOCHECK(ARRAY) (sizeof(ARRAY) / sizeof((ARRAY)[0]))
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |                       __ARRAY_SIZE_NOCHECK(ARRAY), __ARRAY_FAIL(ARRAY))
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   44|  43.6k|#define __ARRAY_FAIL(ARRAY) (sizeof(char[-2*!__ARRAY_CHECK(ARRAY)]))
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  |  Branch (322:33): [True: 41.3k, False: 2.25k]
  ------------------
  323|  41.3k|            if ((protocols & p->protocol) == p->protocol) {
  ------------------
  |  Branch (323:17): [True: 12.3k, False: 28.9k]
  ------------------
  324|  12.3k|                ds_put_cstr(&s, p->name);
  325|  12.3k|                protocols &= ~p->protocol;
  326|  12.3k|                goto match;
  327|  12.3k|            }
  328|  41.3k|        }
  329|       |
  330|  13.4k|        for (i = 0; i < CHAR_BIT * sizeof(enum ofputil_protocol); i++) {
  ------------------
  |  Branch (330:21): [True: 13.4k, False: 0]
  ------------------
  331|  13.4k|            enum ofputil_protocol bit = 1u << i;
  332|       |
  333|  13.4k|            if (protocols & bit) {
  ------------------
  |  Branch (333:17): [True: 2.25k, False: 11.1k]
  ------------------
  334|  2.25k|                ds_put_cstr(&s, ofputil_protocol_to_string(bit));
  335|  2.25k|                protocols &= ~bit;
  336|  2.25k|                goto match;
  337|  2.25k|            }
  338|  13.4k|        }
  339|  2.25k|        OVS_NOT_REACHED();
  ------------------
  |  |  107|      0|#define OVS_NOT_REACHED() abort()
  ------------------
  340|       |
  341|  14.6k|    match: ;
  342|  14.6k|    }
  343|  9.08k|    return ds_steal_cstr(&s);
  344|  9.08k|}

ofputil_table_map_get_number:
  132|    211|{
  133|    211|    struct namemap_node *node
  134|    211|        = map ? namemap_find_by_name(&map->map, name) : NULL;
  ------------------
  |  Branch (134:11): [True: 0, False: 211]
  ------------------
  135|    211|    return node && !node->duplicate ? node->number : UINT8_MAX;
  ------------------
  |  Branch (135:12): [True: 0, False: 211]
  |  Branch (135:20): [True: 0, False: 0]
  ------------------
  136|    211|}
ofputil_table_from_string:
  158|  8.59k|{
  159|  8.59k|    *tablep = 0;
  160|  8.59k|    if (*s == '-') {
  ------------------
  |  Branch (160:9): [True: 1, False: 8.59k]
  ------------------
  161|      1|        VLOG_WARN("Negative value %s is not a valid table number.", s);
  ------------------
  |  |  209|      1|#define VLOG_WARN(...) VLOG(VLL_WARN, __VA_ARGS__)
  |  |  ------------------
  |  |  |  |  280|      1|    do {                                                \
  |  |  |  |  281|      1|        enum vlog_level level__ = LEVEL;                \
  |  |  |  |  282|      1|        if (this_module.min_level >= level__) {         \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (282:13): [True: 0, False: 1]
  |  |  |  |  ------------------
  |  |  |  |  283|      0|            vlog(&this_module, level__, __VA_ARGS__);   \
  |  |  |  |  284|      0|        }                                               \
  |  |  |  |  285|      1|    } while (0)
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (285:14): [Folded, False: 1]
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  162|      1|        return false;
  163|      1|    }
  164|       |
  165|  8.59k|    unsigned int table;
  166|  8.59k|    if (str_to_uint(s, 10, &table)) {
  ------------------
  |  Branch (166:9): [True: 1.22k, False: 7.37k]
  ------------------
  167|  1.22k|        if (table > 255) {
  ------------------
  |  Branch (167:13): [True: 43, False: 1.17k]
  ------------------
  168|     43|            VLOG_WARN("table %u is outside the supported range 0 through 255",
  ------------------
  |  |  209|     43|#define VLOG_WARN(...) VLOG(VLL_WARN, __VA_ARGS__)
  |  |  ------------------
  |  |  |  |  280|     43|    do {                                                \
  |  |  |  |  281|     43|        enum vlog_level level__ = LEVEL;                \
  |  |  |  |  282|     43|        if (this_module.min_level >= level__) {         \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (282:13): [True: 0, False: 43]
  |  |  |  |  ------------------
  |  |  |  |  283|      0|            vlog(&this_module, level__, __VA_ARGS__);   \
  |  |  |  |  284|      0|        }                                               \
  |  |  |  |  285|     43|    } while (0)
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (285:14): [Folded, False: 43]
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  169|     43|                      table);
  170|     43|            return false;
  171|     43|        }
  172|  1.17k|        *tablep = table;
  173|  1.17k|        return true;
  174|  7.37k|    } else {
  175|  7.37k|        if (s[0] != '"') {
  ------------------
  |  Branch (175:13): [True: 47, False: 7.32k]
  ------------------
  176|     47|            table = ofputil_table_map_get_number(table_map, s);
  177|  7.32k|        } else {
  178|  7.32k|            size_t length = strlen(s);
  179|  7.32k|            char *name = NULL;
  180|  7.32k|            if (length > 1
  ------------------
  |  Branch (180:17): [True: 6.85k, False: 472]
  ------------------
  181|  6.85k|                && s[length - 1] == '"'
  ------------------
  |  Branch (181:20): [True: 4.23k, False: 2.61k]
  ------------------
  182|  4.23k|                && json_string_unescape(s + 1, length - 2, &name)) {
  ------------------
  |  Branch (182:20): [True: 164, False: 4.07k]
  ------------------
  183|    164|                table = ofputil_table_map_get_number(table_map, name);
  184|    164|            }
  185|  7.32k|            free(name);
  186|  7.32k|        }
  187|  7.37k|        if (table != UINT8_MAX) {
  ------------------
  |  Branch (187:13): [True: 7.16k, False: 211]
  ------------------
  188|  7.16k|            *tablep = table;
  189|  7.16k|            return true;
  190|  7.16k|        }
  191|       |
  192|    211|        return false;
  193|  7.37k|    }
  194|  8.59k|}

ofpbuf_use_stack:
   81|  2.55k|{
   82|  2.55k|    ofpbuf_use__(b, base, allocated, 0, OFPBUF_STACK);
   83|  2.55k|}
ofpbuf_init:
  140|  23.0k|{
  141|  23.0k|    ofpbuf_use(b, size ? xmalloc(size) : NULL, size);
  ------------------
  |  Branch (141:19): [True: 13.9k, False: 9.08k]
  ------------------
  142|  23.0k|}
ofpbuf_uninit:
  147|  17.5k|{
  148|  17.5k|    if (b) {
  ------------------
  |  Branch (148:9): [True: 17.5k, False: 0]
  ------------------
  149|  17.5k|        if (b->source == OFPBUF_MALLOC) {
  ------------------
  |  Branch (149:13): [True: 17.5k, False: 0]
  ------------------
  150|  17.5k|            free(b->base);
  151|  17.5k|        }
  152|  17.5k|    }
  153|  17.5k|}
ofpbuf_new:
  167|  9.08k|{
  168|  9.08k|    struct ofpbuf *b = xmalloc(sizeof *b);
  169|  9.08k|    ofpbuf_init(b, size);
  170|  9.08k|    return b;
  171|  9.08k|}
ofpbuf_prealloc_tailroom:
  306|  4.51M|{
  307|  4.51M|    if (size > ofpbuf_tailroom(b)) {
  ------------------
  |  Branch (307:9): [True: 432k, False: 4.08M]
  ------------------
  308|   432k|        ofpbuf_resize__(b, ofpbuf_headroom(b), MAX(size, 64));
  ------------------
  |  |   95|   432k|#define MAX(X, Y) ((X) > (Y) ? (X) : (Y))
  |  |  ------------------
  |  |  |  Branch (95:20): [True: 46.9k, False: 385k]
  |  |  ------------------
  ------------------
  309|   432k|    }
  310|  4.51M|}
ofpbuf_prealloc_headroom:
  317|   110k|{
  318|   110k|    if (size > ofpbuf_headroom(b)) {
  ------------------
  |  Branch (318:9): [True: 0, False: 110k]
  ------------------
  319|      0|        ofpbuf_resize__(b, MAX(size, 64), ofpbuf_tailroom(b));
  ------------------
  |  |   95|      0|#define MAX(X, Y) ((X) > (Y) ? (X) : (Y))
  |  |  ------------------
  |  |  |  Branch (95:20): [True: 0, False: 0]
  |  |  ------------------
  ------------------
  320|      0|    }
  321|   110k|}
ofpbuf_padto:
  368|   140k|{
  369|   140k|    if (b->size < length) {
  ------------------
  |  Branch (369:9): [True: 11.9k, False: 128k]
  ------------------
  370|  11.9k|        ofpbuf_put_zeros(b, length - b->size);
  371|  11.9k|    }
  372|   140k|}
ofpbuf_put_uninit:
  401|  4.50M|{
  402|  4.50M|    void *p;
  403|  4.50M|    ofpbuf_prealloc_tailroom(b, size);
  404|  4.50M|    p = ofpbuf_tail(b);
  405|  4.50M|    b->size += size;
  406|  4.50M|    return p;
  407|  4.50M|}
ofpbuf_put_zeros:
  414|   594k|{
  415|   594k|    void *dst = ofpbuf_put_uninit(b, size);
  416|   594k|    nullable_memset(dst, 0, size);
  417|   594k|    return dst;
  418|   594k|}
ofpbuf_put:
  425|  3.44M|{
  426|  3.44M|    if (!size) {
  ------------------
  |  Branch (426:9): [True: 11.9k, False: 3.43M]
  ------------------
  427|  11.9k|        return ofpbuf_tail(b);
  428|  11.9k|    }
  429|       |
  430|  3.43M|    void *dst = ofpbuf_put_uninit(b, size);
  431|  3.43M|    memcpy(dst, p, size);
  432|  3.43M|    return dst;
  433|  3.44M|}
ofpbuf_put_hex:
  442|  3.67k|{
  443|  3.67k|    size_t initial_size = b->size;
  444|  1.49M|    for (;;) {
  445|  1.49M|        uint8_t byte;
  446|  1.49M|        bool ok;
  447|       |
  448|  1.49M|        s += strspn(s, " .\t\r\n");
  449|  1.49M|        byte = hexits_value(s, 2, &ok);
  450|  1.49M|        if (!ok) {
  ------------------
  |  Branch (450:13): [True: 3.67k, False: 1.49M]
  ------------------
  451|  3.67k|            if (n) {
  ------------------
  |  Branch (451:17): [True: 0, False: 3.67k]
  ------------------
  452|      0|                *n = b->size - initial_size;
  453|      0|            }
  454|  3.67k|            return CONST_CAST(char *, s);
  ------------------
  |  |   85|  3.67k|    (BUILD_ASSERT_TYPE(POINTER, TYPE),                          \
  |  |  ------------------
  |  |  |  |   80|  3.67k|    ((void) sizeof ((int) ((POINTER) == (TYPE) (POINTER))))
  |  |  ------------------
  |  |   86|  3.67k|     (TYPE) (POINTER))
  ------------------
  455|  3.67k|        }
  456|       |
  457|  1.49M|        ofpbuf_put(b, &byte, 1);
  458|  1.49M|        s += 2;
  459|  1.49M|    }
  460|  3.67k|}
ofpbuf_push_uninit:
  481|   115k|{
  482|   115k|    if (!size) {
  ------------------
  |  Branch (482:9): [True: 4.99k, False: 110k]
  ------------------
  483|  4.99k|        return b->data;
  484|  4.99k|    }
  485|       |
  486|   110k|    ofpbuf_prealloc_headroom(b, size);
  487|   110k|    b->data = (char*)b->data - size;
  488|   110k|    b->size += size;
  489|   110k|    return b->data;
  490|   115k|}
ofpbuf_insert:
  520|    326|{
  521|    326|    if (offset < b->size) {
  ------------------
  |  Branch (521:9): [True: 15, False: 311]
  ------------------
  522|     15|        ofpbuf_put_uninit(b, n); /* b->size gets increased. */
  523|     15|        memmove((char *) b->data + offset + n, (char *) b->data + offset,
  524|     15|                b->size - offset - n);
  525|     15|        memcpy((char *) b->data + offset, data, n);
  526|    311|    } else {
  527|    311|        ovs_assert(offset == b->size);
  ------------------
  |  |   62|    311|#define ovs_assert ovs_ignore
  ------------------
  528|    311|        ofpbuf_put(b, data, n);
  529|    311|    }
  530|    326|}
ofpbuf_steal_data:
  537|  5.54k|{
  538|  5.54k|    void *p;
  539|       |
  540|  5.54k|    if (b->source == OFPBUF_MALLOC && b->data == b->base) {
  ------------------
  |  Branch (540:9): [True: 5.54k, False: 0]
  |  Branch (540:39): [True: 5.54k, False: 0]
  ------------------
  541|  5.54k|        p = b->data;
  542|  5.54k|    } else {
  543|      0|        p = xmemdup(b->data, b->size);
  544|      0|        if (b->source == OFPBUF_MALLOC) {
  ------------------
  |  Branch (544:13): [True: 0, False: 0]
  ------------------
  545|      0|            free(b->base);
  546|      0|        }
  547|      0|    }
  548|  5.54k|    b->base = NULL;
  549|  5.54k|    b->data = NULL;
  550|  5.54k|    b->header = NULL;
  551|       |    b->msg = NULL;
  552|  5.54k|    return p;
  553|  5.54k|}
ofpbuf.c:ofpbuf_use__:
   37|  25.6k|{
   38|  25.6k|    b->base = base;
   39|  25.6k|    b->data = base;
   40|  25.6k|    b->size = size;
   41|       |
   42|  25.6k|    ofpbuf_init__(b, allocated, source);
   43|  25.6k|}
ofpbuf.c:ofpbuf_init__:
   26|  25.6k|{
   27|  25.6k|    b->allocated = allocated;
   28|  25.6k|    b->source = source;
   29|  25.6k|    b->header = NULL;
   30|       |    b->msg = NULL;
   31|  25.6k|    ovs_list_poison(&b->list_node);
   32|  25.6k|}
ofpbuf.c:ofpbuf_use:
   51|  23.0k|{
   52|  23.0k|    ofpbuf_use__(b, base, allocated, 0, OFPBUF_MALLOC);
   53|  23.0k|}
ofpbuf.c:ofpbuf_resize__:
  252|   432k|{
  253|   432k|    void *new_base, *new_data;
  254|   432k|    size_t new_allocated;
  255|       |
  256|   432k|    new_allocated = new_headroom + b->size + new_tailroom;
  257|       |
  258|   432k|    switch (b->source) {
  259|   432k|    case OFPBUF_MALLOC:
  ------------------
  |  Branch (259:5): [True: 432k, False: 0]
  ------------------
  260|   432k|        if (new_headroom == ofpbuf_headroom(b)) {
  ------------------
  |  Branch (260:13): [True: 432k, False: 0]
  ------------------
  261|   432k|            new_base = xrealloc(b->base, new_allocated);
  262|   432k|        } else {
  263|      0|            new_base = xmalloc(new_allocated);
  264|      0|            ofpbuf_copy__(b, new_base, new_headroom, new_tailroom);
  265|      0|            free(b->base);
  266|      0|        }
  267|   432k|        break;
  268|       |
  269|      0|    case OFPBUF_STACK:
  ------------------
  |  Branch (269:5): [True: 0, False: 432k]
  ------------------
  270|      0|        OVS_NOT_REACHED();
  ------------------
  |  |  107|      0|#define OVS_NOT_REACHED() abort()
  ------------------
  271|       |
  272|      0|    case OFPBUF_STUB:
  ------------------
  |  Branch (272:5): [True: 0, False: 432k]
  ------------------
  273|      0|        b->source = OFPBUF_MALLOC;
  274|      0|        new_base = xmalloc(new_allocated);
  275|      0|        ofpbuf_copy__(b, new_base, new_headroom, new_tailroom);
  276|      0|        break;
  277|       |
  278|      0|    default:
  ------------------
  |  Branch (278:5): [True: 0, False: 432k]
  ------------------
  279|      0|        OVS_NOT_REACHED();
  ------------------
  |  |  107|      0|#define OVS_NOT_REACHED() abort()
  ------------------
  280|   432k|    }
  281|       |
  282|   432k|    b->allocated = new_allocated;
  283|   432k|    b->base = new_base;
  284|       |
  285|   432k|    new_data = (char *) new_base + new_headroom;
  286|   432k|    if (b->data != new_data) {
  ------------------
  |  Branch (286:9): [True: 42.8k, False: 390k]
  ------------------
  287|  42.8k|        if (b->header) {
  ------------------
  |  Branch (287:13): [True: 30.0k, False: 12.8k]
  ------------------
  288|  30.0k|            ptrdiff_t header_offset = (char *) b->header - (char *) b->data;
  289|       |
  290|  30.0k|            b->header = (char *) new_data + header_offset;
  291|  30.0k|        }
  292|  42.8k|        if (b->msg) {
  ------------------
  |  Branch (292:13): [True: 877, False: 42.0k]
  ------------------
  293|    877|            ptrdiff_t msg_offset = (char *) b->msg - (char *) b->data;
  294|       |
  295|    877|            b->msg = (char *) new_data + msg_offset;
  296|    877|        }
  297|  42.8k|        b->data = new_data;
  298|  42.8k|    }
  299|   432k|}

ofp-msgs.c:atomic_count_inc:
  451|  9.08k|{
  452|  9.08k|    unsigned int old;
  453|       |
  454|  9.08k|    atomic_add_relaxed(&count->count, 1u, &old);
  ------------------
  |  |  414|  9.08k|    atomic_add_explicit(RMW, ARG, ORIG, memory_order_relaxed)
  |  |  ------------------
  |  |  |  |   85|  9.08k|    (*(ORIG) = __c11_atomic_fetch_add(RMW, ARG, ORDER), (void) 0)
  |  |  ------------------
  ------------------
  455|       |
  456|  9.08k|    return old;
  457|  9.08k|}

ovs_mutex_lock_at:
   58|    189|    { \
   59|    189|        struct ovs_##TYPE *l = CONST_CAST(struct ovs_##TYPE *, l_); \
  ------------------
  |  |   85|    189|    (BUILD_ASSERT_TYPE(POINTER, TYPE),                          \
  |  |  ------------------
  |  |  |  |   80|    189|    ((void) sizeof ((int) ((POINTER) == (TYPE) (POINTER))))
  |  |  ------------------
  |  |   86|    189|     (TYPE) (POINTER))
  ------------------
   60|    189|        int error; \
   61|    189| \
   62|    189|        /* Verify that 'l' was initialized. */ \
   63|    189|        if (OVS_UNLIKELY(!l->where)) { \
  ------------------
  |  |   66|    189|#define OVS_UNLIKELY(CONDITION) __builtin_expect(!!(CONDITION), 0)
  |  |  ------------------
  |  |  |  Branch (66:33): [True: 0, False: 189]
  |  |  ------------------
  ------------------
   64|      0|            VLOG_ABORT("%s: %s() passed uninitialized ovs_"#TYPE, \
  ------------------
  |  |  206|      0|#define VLOG_ABORT(...) vlog_abort(&this_module, __VA_ARGS__)
  ------------------
   65|      0|                       where, __func__); \
   66|      0|        } \
   67|    189| \
   68|    189|        error = pthread_##TYPE##_##FUN(&l->lock); \
   69|    189|        if (OVS_UNLIKELY(error)) { \
  ------------------
  |  |   66|    189|#define OVS_UNLIKELY(CONDITION) __builtin_expect(!!(CONDITION), 0)
  |  |  ------------------
  |  |  |  Branch (66:33): [True: 0, False: 189]
  |  |  ------------------
  ------------------
   70|      0|            VLOG_ABORT("%s: pthread_%s_%s failed: %s", where, #TYPE, #FUN, \
  ------------------
  |  |  206|      0|#define VLOG_ABORT(...) vlog_abort(&this_module, __VA_ARGS__)
  ------------------
   71|      0|                       ovs_strerror(error)); \
   72|      0|        } \
   73|    189|        l->where = where; \
   74|    189| }
ovs_mutex_unlock:
  118|    189|    { \
  119|    189|        struct ovs_##TYPE *l = CONST_CAST(struct ovs_##TYPE *, l_); \
  ------------------
  |  |   85|    189|    (BUILD_ASSERT_TYPE(POINTER, TYPE),                          \
  |  |  ------------------
  |  |  |  |   80|    189|    ((void) sizeof ((int) ((POINTER) == (TYPE) (POINTER))))
  |  |  ------------------
  |  |   86|    189|     (TYPE) (POINTER))
  ------------------
  120|    189|        int error; \
  121|    189| \
  122|    189|        /* Verify that 'l' was initialized. */ \
  123|    189|        ovs_assert(l->where); \
  ------------------
  |  |   62|    189|#define ovs_assert ovs_ignore
  ------------------
  124|    189| \
  125|    189|        l->where = WHERE; \
  126|    189|        error = pthread_##TYPE##_##FUN(&l->lock); \
  127|    189|        if (OVS_UNLIKELY(error)) { \
  ------------------
  |  |   66|    189|#define OVS_UNLIKELY(CONDITION) __builtin_expect(!!(CONDITION), 0)
  |  |  ------------------
  |  |  |  Branch (66:33): [True: 0, False: 189]
  |  |  ------------------
  ------------------
  128|      0|            VLOG_ABORT("%s: pthread_%s_%s failed: %s", l->where, #TYPE, #FUN, \
  ------------------
  |  |  206|      0|#define VLOG_ABORT(...) vlog_abort(&this_module, __VA_ARGS__)
  ------------------
  129|      0|                       ovs_strerror(error)); \
  130|      0|        } \
  131|    189|    }
ovsthread_once_start__:
  495|      4|{
  496|      4|    ovs_mutex_lock(&once->mutex);
  ------------------
  |  |   71|      4|        ovs_mutex_lock_at(mutex, OVS_SOURCE_LOCATOR)
  |  |  ------------------
  |  |  |  |   37|      4|#define OVS_SOURCE_LOCATOR __FILE__ ":" OVS_STRINGIZE(__LINE__)
  |  |  |  |  ------------------
  |  |  |  |  |  |   38|      4|#define OVS_STRINGIZE(ARG) OVS_STRINGIZE2(ARG)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   39|      4|#define OVS_STRINGIZE2(ARG) #ARG
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  497|       |    /* Mutex synchronizes memory, so we get the current value of 'done'. */
  498|      4|    if (!once->done) {
  ------------------
  |  Branch (498:9): [True: 4, False: 0]
  ------------------
  499|      4|        return true;
  500|      4|    }
  501|      0|    ovs_mutex_unlock(&once->mutex);
  502|       |    return false;
  503|      4|}
ovsthread_once_done:
  507|      4|{
  508|       |    /* We need release semantics here, so that the following store may not
  509|       |     * be moved ahead of any of the preceding initialization operations.
  510|       |     * A release atomic_thread_fence provides that prior memory accesses
  511|       |     * will not be reordered to take place after the following store. */
  512|      4|    atomic_thread_fence(memory_order_release);
  ------------------
  |  |   39|      4|#define atomic_thread_fence(ORDER) __c11_atomic_thread_fence(ORDER)
  ------------------
  513|       |    once->done = true;
  514|      4|    ovs_mutex_unlock(&once->mutex);
  515|      4|}

util.c:counter_util_xalloc_get:
  246|   699k|    {                                                                   \
  247|   699k|        return NAME##_get_unsafe();                                     \
  248|   699k|    }
util.c:counter_util_xalloc_get_unsafe:
  239|   699k|    {                                                                   \
  240|   699k|        static thread_local NAME##_type var = __VA_ARGS__;              \
  241|   699k|        return &var;                                                    \
  242|   699k|    }                                                                   \
flow.c:counter_miniflow_malloc_get:
  246|  9.28k|    {                                                                   \
  247|  9.28k|        return NAME##_get_unsafe();                                     \
  248|  9.28k|    }
flow.c:counter_miniflow_malloc_get_unsafe:
  239|  9.28k|    {                                                                   \
  240|  9.28k|        static thread_local NAME##_type var = __VA_ARGS__;              \
  241|  9.28k|        return &var;                                                    \
  242|  9.28k|    }                                                                   \
hmap.c:counter_hmap_pathological_get:
  246|     11|    {                                                                   \
  247|     11|        return NAME##_get_unsafe();                                     \
  248|     11|    }
hmap.c:counter_hmap_pathological_get_unsafe:
  239|     11|    {                                                                   \
  240|     11|        static thread_local NAME##_type var = __VA_ARGS__;              \
  241|     11|        return &var;                                                    \
  242|     11|    }                                                                   \
hmap.c:counter_hmap_expand_get:
  246|     34|    {                                                                   \
  247|     34|        return NAME##_get_unsafe();                                     \
  248|     34|    }
hmap.c:counter_hmap_expand_get_unsafe:
  239|     34|    {                                                                   \
  240|     34|        static thread_local NAME##_type var = __VA_ARGS__;              \
  241|     34|        return &var;                                                    \
  242|     34|    }                                                                   \

eth_addr_to_uint64:
   82|    433|{
   83|    433|    return (((uint64_t) ntohs(ea.be16[0]) << 32)
   84|    433|            | ((uint64_t) ntohs(ea.be16[1]) << 16)
   85|       |            | ntohs(ea.be16[2]));
   86|    433|}
set_mpls_lse_ttl:
  337|    382|{
  338|    382|    *lse &= ~htonl(MPLS_TTL_MASK);
  339|       |    *lse |= htonl((ttl << MPLS_TTL_SHIFT) & MPLS_TTL_MASK);
  340|    382|}
set_mpls_lse_tc:
  345|    879|{
  346|    879|    *lse &= ~htonl(MPLS_TC_MASK);
  347|       |    *lse |= htonl((tc << MPLS_TC_SHIFT) & MPLS_TC_MASK);
  348|    879|}
set_mpls_lse_label:
  353|    388|{
  354|    388|    *lse &= ~htonl(MPLS_LABEL_MASK);
  355|       |    *lse |= htonl((ntohl(label) << MPLS_LABEL_SHIFT) & MPLS_LABEL_MASK);
  356|    388|}
set_mpls_lse_bos:
  361|  1.72k|{
  362|  1.72k|    *lse &= ~htonl(MPLS_BOS_MASK);
  363|       |    *lse |= htonl((bos << MPLS_BOS_SHIFT) & MPLS_BOS_MASK);
  364|  1.72k|}
eth_format_masked:
  590|      1|{
  591|      1|    ds_put_format(s, ETH_ADDR_FMT, ETH_ADDR_ARGS(eth));
  ------------------
  |  |  370|      1|    "%02"PRIx8":%02"PRIx8":%02"PRIx8":%02"PRIx8":%02"PRIx8":%02"PRIx8
  ------------------
                  ds_put_format(s, ETH_ADDR_FMT, ETH_ADDR_ARGS(eth));
  ------------------
  |  |  371|      1|#define ETH_ADDR_ARGS(EA) ETH_ADDR_BYTES_ARGS((EA).ea)
  |  |  ------------------
  |  |  |  |  373|      1|         (EAB)[0], (EAB)[1], (EAB)[2], (EAB)[3], (EAB)[4], (EAB)[5]
  |  |  ------------------
  ------------------
  592|      1|    if (mask && !eth_mask_is_exact(*mask)) {
  ------------------
  |  Branch (592:9): [True: 0, False: 1]
  |  Branch (592:17): [True: 0, False: 0]
  ------------------
  593|      0|        ds_put_format(s, "/"ETH_ADDR_FMT, ETH_ADDR_ARGS(*mask));
  ------------------
  |  |  370|      0|    "%02"PRIx8":%02"PRIx8":%02"PRIx8":%02"PRIx8":%02"PRIx8":%02"PRIx8
  ------------------
                      ds_put_format(s, "/"ETH_ADDR_FMT, ETH_ADDR_ARGS(*mask));
  ------------------
  |  |  371|      0|#define ETH_ADDR_ARGS(EA) ETH_ADDR_BYTES_ARGS((EA).ea)
  |  |  ------------------
  |  |  |  |  373|      0|         (EAB)[0], (EAB)[1], (EAB)[2], (EAB)[3], (EAB)[4], (EAB)[5]
  |  |  ------------------
  ------------------
  594|      0|    }
  595|      1|}
ip_count_cidr_bits:
  677|  9.52k|{
  678|       |    return 32 - ctz32(ntohl(netmask));
  679|  9.52k|}
ip_format_masked:
  683|      1|{
  684|      1|    ds_put_format(s, IP_FMT, IP_ARGS(ip));
  ------------------
  |  |  628|      1|#define IP_FMT "%"PRIu32".%"PRIu32".%"PRIu32".%"PRIu32
  ------------------
                  ds_put_format(s, IP_FMT, IP_ARGS(ip));
  ------------------
  |  |  630|      1|    ntohl(ip) >> 24,                            \
  |  |  631|      1|    (ntohl(ip) >> 16) & 0xff,                   \
  |  |  632|      1|    (ntohl(ip) >> 8) & 0xff,                    \
  |  |  633|      1|    ntohl(ip) & 0xff
  ------------------
  685|      1|    if (mask != OVS_BE32_MAX) {
  ------------------
  |  |   43|      1|#define OVS_BE32_MAX ((OVS_FORCE ovs_be32) 0xffffffff)
  ------------------
  |  Branch (685:9): [True: 0, False: 1]
  ------------------
  686|      0|        if (ip_is_cidr(mask)) {
  ------------------
  |  Branch (686:13): [True: 0, False: 0]
  ------------------
  687|      0|            ds_put_format(s, "/%d", ip_count_cidr_bits(mask));
  688|      0|        } else {
  689|      0|            ds_put_format(s, "/"IP_FMT, IP_ARGS(mask));
  ------------------
  |  |  628|      0|#define IP_FMT "%"PRIu32".%"PRIu32".%"PRIu32".%"PRIu32
  ------------------
                          ds_put_format(s, "/"IP_FMT, IP_ARGS(mask));
  ------------------
  |  |  630|      0|    ntohl(ip) >> 24,                            \
  |  |  631|      0|    (ntohl(ip) >> 16) & 0xff,                   \
  |  |  632|      0|    (ntohl(ip) >> 8) & 0xff,                    \
  |  |  633|      0|    ntohl(ip) & 0xff
  ------------------
  690|      0|        }
  691|      0|    }
  692|      1|}
ip_parse:
  698|  3.27k|{
  699|       |    return inet_pton(AF_INET, s, ip) == 1;
  700|  3.27k|}
ip_parse_masked_len:
  730|  1.68k|{
  731|  1.68k|    int prefix;
  732|       |
  733|  1.68k|    if (ovs_scan_len(s, n, IP_SCAN_FMT"/"IP_SCAN_FMT,
  ------------------
  |  |  645|  1.68k|#define IP_SCAN_FMT "%"SCNu8".%"SCNu8".%"SCNu8".%"SCNu8
  ------------------
                  if (ovs_scan_len(s, n, IP_SCAN_FMT"/"IP_SCAN_FMT,
  ------------------
  |  |  645|  1.68k|#define IP_SCAN_FMT "%"SCNu8".%"SCNu8".%"SCNu8".%"SCNu8
  ------------------
  |  Branch (733:9): [True: 150, False: 1.53k]
  ------------------
  734|  1.68k|                 IP_SCAN_ARGS(ip), IP_SCAN_ARGS(mask))) {
  ------------------
  |  |  647|  1.68k|        ((void) (ovs_be32) *(ip), &((uint8_t *) ip)[0]),    \
  |  |  648|  1.68k|        &((uint8_t *) ip)[1],                               \
  |  |  649|  1.68k|        &((uint8_t *) ip)[2],                               \
  |  |  650|  1.68k|        &((uint8_t *) ip)[3]
  ------------------
                               IP_SCAN_ARGS(ip), IP_SCAN_ARGS(mask))) {
  ------------------
  |  |  647|  1.68k|        ((void) (ovs_be32) *(ip), &((uint8_t *) ip)[0]),    \
  |  |  648|  1.68k|        &((uint8_t *) ip)[1],                               \
  |  |  649|  1.68k|        &((uint8_t *) ip)[2],                               \
  |  |  650|  1.68k|        &((uint8_t *) ip)[3]
  ------------------
  735|       |        /* OK. */
  736|  1.53k|    } else if (ovs_scan_len(s, n, IP_SCAN_FMT"/%d",
  ------------------
  |  |  645|  1.53k|#define IP_SCAN_FMT "%"SCNu8".%"SCNu8".%"SCNu8".%"SCNu8
  ------------------
  |  Branch (736:16): [True: 1.00k, False: 534]
  ------------------
  737|  1.53k|                            IP_SCAN_ARGS(ip), &prefix)) {
  ------------------
  |  |  647|  1.53k|        ((void) (ovs_be32) *(ip), &((uint8_t *) ip)[0]),    \
  |  |  648|  1.53k|        &((uint8_t *) ip)[1],                               \
  |  |  649|  1.53k|        &((uint8_t *) ip)[2],                               \
  |  |  650|  1.53k|        &((uint8_t *) ip)[3]
  ------------------
  738|  1.00k|        if (prefix < 0 || prefix > 32) {
  ------------------
  |  Branch (738:13): [True: 16, False: 989]
  |  Branch (738:27): [True: 23, False: 966]
  ------------------
  739|     39|            return xasprintf("%s: IPv4 network prefix bits not between 0 and "
  740|     39|                              "32, inclusive", s);
  741|     39|        }
  742|    966|        *mask = be32_prefix_mask(prefix);
  743|    966|    } else if (ovs_scan_len(s, n, IP_SCAN_FMT, IP_SCAN_ARGS(ip))) {
  ------------------
  |  |  645|    534|#define IP_SCAN_FMT "%"SCNu8".%"SCNu8".%"SCNu8".%"SCNu8
  ------------------
                  } else if (ovs_scan_len(s, n, IP_SCAN_FMT, IP_SCAN_ARGS(ip))) {
  ------------------
  |  |  647|    534|        ((void) (ovs_be32) *(ip), &((uint8_t *) ip)[0]),    \
  |  |  648|    534|        &((uint8_t *) ip)[1],                               \
  |  |  649|    534|        &((uint8_t *) ip)[2],                               \
  |  |  650|    534|        &((uint8_t *) ip)[3]
  ------------------
  |  Branch (743:16): [True: 506, False: 28]
  ------------------
  744|    506|        *mask = OVS_BE32_MAX;
  ------------------
  |  |   43|    506|#define OVS_BE32_MAX ((OVS_FORCE ovs_be32) 0xffffffff)
  ------------------
  745|    506|    } else {
  746|     28|        return xasprintf("%s: invalid IP address", s);
  747|     28|    }
  748|  1.62k|    return NULL;
  749|  1.68k|}
ip_parse_masked:
  759|  1.68k|{
  760|  1.68k|    int n = 0;
  761|       |
  762|  1.68k|    char *error = ip_parse_masked_len(s, &n, ip, mask);
  763|  1.68k|    if (!error && s[n]) {
  ------------------
  |  Branch (763:9): [True: 1.62k, False: 67]
  |  Branch (763:19): [True: 8, False: 1.61k]
  ------------------
  764|      8|        return xasprintf("%s: invalid IP address", s);
  765|      8|    }
  766|  1.68k|    return error;
  767|  1.68k|}
ipv6_parse:
  808|  2.97k|{
  809|       |    return inet_pton(AF_INET6, s, ip) == 1;
  810|  2.97k|}
ipv6_parse_masked_len:
  822|  2.74k|{
  823|  2.74k|    char ipv6_s[IPV6_SCAN_LEN + 1];
  824|  2.74k|    int prefix;
  825|       |
  826|  2.74k|    if (ovs_scan_len(s, n, " "IPV6_SCAN_FMT, ipv6_s)
  ------------------
  |  | 1162|  2.74k|#define IPV6_SCAN_FMT "%46[0123456789abcdefABCDEF:.]"
  ------------------
  |  Branch (826:9): [True: 2.73k, False: 15]
  ------------------
  827|  2.73k|        && ipv6_parse(ipv6_s, ip)) {
  ------------------
  |  Branch (827:12): [True: 2.72k, False: 8]
  ------------------
  828|  2.72k|        if (ovs_scan_len(s, n, "/%d", &prefix)) {
  ------------------
  |  Branch (828:13): [True: 2.07k, False: 643]
  ------------------
  829|  2.07k|            if (prefix < 0 || prefix > 128) {
  ------------------
  |  Branch (829:17): [True: 30, False: 2.04k]
  |  Branch (829:31): [True: 24, False: 2.02k]
  ------------------
  830|     54|                return xasprintf("%s: IPv6 network prefix bits not between 0 "
  831|     54|                                 "and 128, inclusive", s);
  832|     54|            }
  833|  2.02k|            *mask = ipv6_create_mask(prefix);
  834|  2.02k|        } else if (ovs_scan_len(s, n, "/"IPV6_SCAN_FMT, ipv6_s)) {
  ------------------
  |  | 1162|    643|#define IPV6_SCAN_FMT "%46[0123456789abcdefABCDEF:.]"
  ------------------
  |  Branch (834:20): [True: 242, False: 401]
  ------------------
  835|    242|             if (!ipv6_parse(ipv6_s, mask)) {
  ------------------
  |  Branch (835:18): [True: 2, False: 240]
  ------------------
  836|      2|                 return xasprintf("%s: Invalid IPv6 mask", s);
  837|      2|             }
  838|       |            /* OK. */
  839|    401|        } else {
  840|       |            /* OK. No mask. */
  841|    401|            *mask = in6addr_exact;
  842|    401|        }
  843|  2.66k|        return NULL;
  844|  2.72k|    }
  845|     23|    return xasprintf("%s: invalid IPv6 address", s);
  846|  2.74k|}
ipv6_parse_masked:
  853|  2.74k|{
  854|  2.74k|    int n = 0;
  855|       |
  856|  2.74k|    char *error = ipv6_parse_masked_len(s, &n, ip, mask);
  857|  2.74k|    if (!error && s[n]) {
  ------------------
  |  Branch (857:9): [True: 2.66k, False: 79]
  |  Branch (857:19): [True: 4, False: 2.66k]
  ------------------
  858|      4|        return xasprintf("%s: invalid IPv6 address", s);
  859|      4|    }
  860|  2.74k|    return error;
  861|  2.74k|}
ipv6_format_addr:
  903|      1|{
  904|      1|    char *dst;
  905|       |
  906|      1|    ds_reserve(s, s->length + INET6_ADDRSTRLEN);
  907|       |
  908|      1|    dst = s->string + s->length;
  909|      1|    inet_ntop(AF_INET6, addr, dst, INET6_ADDRSTRLEN);
  910|      1|    s->length += strlen(dst);
  911|      1|}
ipv6_format_masked:
  942|      1|{
  943|      1|    ipv6_format_addr(addr, s);
  944|      1|    if (mask && !ipv6_mask_is_exact(mask)) {
  ------------------
  |  Branch (944:9): [True: 0, False: 1]
  |  Branch (944:17): [True: 0, False: 0]
  ------------------
  945|      0|        if (ipv6_is_cidr(mask)) {
  ------------------
  |  Branch (945:13): [True: 0, False: 0]
  ------------------
  946|      0|            int cidr_bits = ipv6_count_cidr_bits(mask);
  947|      0|            ds_put_format(s, "/%d", cidr_bits);
  948|      0|        } else {
  949|      0|            ds_put_char(s, '/');
  950|      0|            ipv6_format_addr(mask, s);
  951|      0|        }
  952|      0|    }
  953|      1|}
ipv6_addr_bitand:
  980|  1.97k|{
  981|  1.97k|   struct in6_addr dst;
  982|  7.90k|   IPV6_FOR_EACH (i) {
  ------------------
  |  |  972|  9.87k|#define IPV6_FOR_EACH(VAR) for (int VAR = 0; VAR < 4; VAR++)
  |  |  ------------------
  |  |  |  Branch (972:46): [True: 7.90k, False: 1.97k]
  |  |  ------------------
  ------------------
  983|  7.90k|       dst.s6_addrX[i] = a->s6_addrX[i] & b->s6_addrX[i];
  ------------------
  |  |  971|  7.90k|#define s6_addrX s6_addr32
  ------------------
                     dst.s6_addrX[i] = a->s6_addrX[i] & b->s6_addrX[i];
  ------------------
  |  |  971|  7.90k|#define s6_addrX s6_addr32
  ------------------
                     dst.s6_addrX[i] = a->s6_addrX[i] & b->s6_addrX[i];
  ------------------
  |  |  971|  7.90k|#define s6_addrX s6_addr32
  ------------------
  984|  7.90k|   }
  985|  1.97k|   return dst;
  986|  1.97k|}
ipv6_create_mask:
 1013|  2.02k|{
 1014|  2.02k|    struct in6_addr netmask;
 1015|  2.02k|    uint8_t *netmaskp = &netmask.s6_addr[0];
 1016|       |
 1017|  2.02k|    memset(&netmask, 0, sizeof netmask);
 1018|  4.01k|    while (mask > 8) {
  ------------------
  |  Branch (1018:12): [True: 1.98k, False: 2.02k]
  ------------------
 1019|  1.98k|        *netmaskp = 0xff;
 1020|  1.98k|        netmaskp++;
 1021|  1.98k|        mask -= 8;
 1022|  1.98k|    }
 1023|       |
 1024|  2.02k|    if (mask) {
  ------------------
  |  Branch (1024:9): [True: 1.05k, False: 967]
  ------------------
 1025|  1.05k|        *netmaskp = 0xff << (8 - mask);
 1026|  1.05k|    }
 1027|       |
 1028|  2.02k|    return netmask;
 1029|  2.02k|}
packet_tcp_flag_to_string:
 1717|  12.7k|{
 1718|  12.7k|    switch (flag) {
 1719|  1.07k|    case TCP_FIN:
  ------------------
  |  |  893|  1.07k|#define TCP_FIN 0x001
  ------------------
  |  Branch (1719:5): [True: 1.07k, False: 11.6k]
  ------------------
 1720|  1.07k|        return "fin";
 1721|  1.07k|    case TCP_SYN:
  ------------------
  |  |  894|  1.07k|#define TCP_SYN 0x002
  ------------------
  |  Branch (1721:5): [True: 1.07k, False: 11.6k]
  ------------------
 1722|  1.07k|        return "syn";
 1723|  1.07k|    case TCP_RST:
  ------------------
  |  |  895|  1.07k|#define TCP_RST 0x004
  ------------------
  |  Branch (1723:5): [True: 1.07k, False: 11.6k]
  ------------------
 1724|  1.07k|        return "rst";
 1725|  1.05k|    case TCP_PSH:
  ------------------
  |  |  896|  1.05k|#define TCP_PSH 0x008
  ------------------
  |  Branch (1725:5): [True: 1.05k, False: 11.6k]
  ------------------
 1726|  1.05k|        return "psh";
 1727|  1.04k|    case TCP_ACK:
  ------------------
  |  |  897|  1.04k|#define TCP_ACK 0x010
  ------------------
  |  Branch (1727:5): [True: 1.04k, False: 11.6k]
  ------------------
 1728|  1.04k|        return "ack";
 1729|  1.04k|    case TCP_URG:
  ------------------
  |  |  898|  1.04k|#define TCP_URG 0x020
  ------------------
  |  Branch (1729:5): [True: 1.04k, False: 11.6k]
  ------------------
 1730|  1.04k|        return "urg";
 1731|  1.04k|    case TCP_ECE:
  ------------------
  |  |  899|  1.04k|#define TCP_ECE 0x040
  ------------------
  |  Branch (1731:5): [True: 1.04k, False: 11.6k]
  ------------------
 1732|  1.04k|        return "ece";
 1733|  1.04k|    case TCP_CWR:
  ------------------
  |  |  900|  1.04k|#define TCP_CWR 0x080
  ------------------
  |  Branch (1733:5): [True: 1.04k, False: 11.6k]
  ------------------
 1734|  1.04k|        return "cwr";
 1735|  1.04k|    case TCP_NS:
  ------------------
  |  |  901|  1.04k|#define TCP_NS  0x100
  ------------------
  |  Branch (1735:5): [True: 1.04k, False: 11.6k]
  ------------------
 1736|  1.04k|        return "ns";
 1737|    774|    case 0x200:
  ------------------
  |  Branch (1737:5): [True: 774, False: 11.9k]
  ------------------
 1738|    774|        return "[200]";
 1739|    661|    case 0x400:
  ------------------
  |  Branch (1739:5): [True: 661, False: 12.0k]
  ------------------
 1740|    661|        return "[400]";
 1741|    524|    case 0x800:
  ------------------
  |  Branch (1741:5): [True: 524, False: 12.1k]
  ------------------
 1742|    524|        return "[800]";
 1743|  1.25k|    default:
  ------------------
  |  Branch (1743:5): [True: 1.25k, False: 11.4k]
  ------------------
 1744|       |        return NULL;
 1745|  12.7k|    }
 1746|  12.7k|}

ofp-flow.c:pt_ns:
 1570|  4.54k|{
 1571|       |    return ntohl(packet_type) >> 16;
 1572|  4.54k|}
ofp-flow.c:pt_ns_type_be:
 1577|    156|{
 1578|    156|    return be32_to_be16(packet_type);
 1579|    156|}
ofp-match.c:eth_addr_is_zero:
  246|  9.52k|{
  247|  9.52k|    return !(a.be16[0] | a.be16[1] | a.be16[2]);
  248|  9.52k|}
ofp-match.c:vlan_tci_to_vid:
  507|     28|{
  508|     28|    return (ntohs(vlan_tci) & VLAN_VID_MASK) >> VLAN_VID_SHIFT;
  ------------------
  |  |  494|     28|#define VLAN_VID_MASK 0x0fff
  ------------------
                  return (ntohs(vlan_tci) & VLAN_VID_MASK) >> VLAN_VID_SHIFT;
  ------------------
  |  |  495|     28|#define VLAN_VID_SHIFT 0
  ------------------
  509|     28|}
ofp-match.c:vlan_tci_to_pcp:
  515|     15|{
  516|     15|    return (ntohs(vlan_tci) & VLAN_PCP_MASK) >> VLAN_PCP_SHIFT;
  ------------------
  |  |  497|     15|#define VLAN_PCP_MASK 0xe000
  ------------------
                  return (ntohs(vlan_tci) & VLAN_PCP_MASK) >> VLAN_PCP_SHIFT;
  ------------------
  |  |  498|     15|#define VLAN_PCP_SHIFT 13
  ------------------
  517|     15|}
ofp-match.c:eth_addr_invert:
  301|    424|{
  302|    424|    struct eth_addr dst;
  303|       |
  304|  1.69k|    for (int i = 0; i < ARRAY_SIZE(src.be16); i++) {
  ------------------
  |  |  297|  1.69k|#define ARRAY_SIZE(ARRAY) __ARRAY_SIZE(ARRAY)
  |  |  ------------------
  |  |  |  |   46|  1.69k|    __builtin_choose_expr(__ARRAY_CHECK(ARRAY),			\
  |  |  |  |  ------------------
  |  |  |  |  |  |   41|  1.69k|    !__builtin_types_compatible_p(typeof(ARRAY), typeof(&ARRAY[0]))
  |  |  |  |  ------------------
  |  |  |  |   47|  1.69k|        __ARRAY_SIZE_NOCHECK(ARRAY), __ARRAY_FAIL(ARRAY))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|  1.69k|#define __ARRAY_SIZE_NOCHECK(ARRAY) (sizeof(ARRAY) / sizeof((ARRAY)[0]))
  |  |  |  |  ------------------
  |  |  |  |                       __ARRAY_SIZE_NOCHECK(ARRAY), __ARRAY_FAIL(ARRAY))
  |  |  |  |  ------------------
  |  |  |  |  |  |   44|  1.69k|#define __ARRAY_FAIL(ARRAY) (sizeof(char[-2*!__ARRAY_CHECK(ARRAY)]))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  |  Branch (304:21): [True: 1.27k, False: 424]
  ------------------
  305|  1.27k|        dst.be16[i] = ~src.be16[i];
  306|  1.27k|    }
  307|       |
  308|    424|    return dst;
  309|    424|}
ofp-match.c:eth_type_mpls:
  423|  7.62k|{
  424|  7.62k|    return eth_type == htons(ETH_TYPE_MPLS) ||
  ------------------
  |  Branch (424:12): [True: 92, False: 7.53k]
  ------------------
  425|  7.53k|        eth_type == htons(ETH_TYPE_MPLS_MCAST);
  ------------------
  |  Branch (425:9): [True: 93, False: 7.44k]
  ------------------
  426|  7.62k|}
ofp-match.c:mpls_lse_to_label:
  568|      1|{
  569|      1|    return (ntohl(mpls_lse) & MPLS_LABEL_MASK) >> MPLS_LABEL_SHIFT;
  ------------------
  |  |  554|      1|#define MPLS_LABEL_MASK     0xfffff000
  ------------------
                  return (ntohl(mpls_lse) & MPLS_LABEL_MASK) >> MPLS_LABEL_SHIFT;
  ------------------
  |  |  555|      1|#define MPLS_LABEL_SHIFT    12
  ------------------
  570|      1|}
ofp-match.c:mpls_lse_to_tc:
  576|      1|{
  577|      1|    return (ntohl(mpls_lse) & MPLS_TC_MASK) >> MPLS_TC_SHIFT;
  ------------------
  |  |  551|      1|#define MPLS_TC_MASK        0x00000e00
  ------------------
                  return (ntohl(mpls_lse) & MPLS_TC_MASK) >> MPLS_TC_SHIFT;
  ------------------
  |  |  552|      1|#define MPLS_TC_SHIFT       9
  ------------------
  578|      1|}
ofp-match.c:pt_ns:
 1570|    497|{
 1571|       |    return ntohl(packet_type) >> 16;
 1572|    497|}
ofp-match.c:pt_ns_type_be:
 1577|    116|{
 1578|    116|    return be32_to_be16(packet_type);
 1579|    116|}
flow.c:pt_ns_type_be:
 1577|     50|{
 1578|     50|    return be32_to_be16(packet_type);
 1579|     50|}
flow.c:pt_ns:
 1570|     50|{
 1571|       |    return ntohl(packet_type) >> 16;
 1572|     50|}
flow.c:pt_ns_type:
 1584|     50|{
 1585|       |    return ntohs(pt_ns_type_be(packet_type));
 1586|     50|}
meta-flow.c:pt_ns:
 1570|  9.59k|{
 1571|       |    return ntohl(packet_type) >> 16;
 1572|  9.59k|}
meta-flow.c:pt_ns_type_be:
 1577|  8.15k|{
 1578|  8.15k|    return be32_to_be16(packet_type);
 1579|  8.15k|}
meta-flow.c:eth_type_mpls:
  423|    439|{
  424|    439|    return eth_type == htons(ETH_TYPE_MPLS) ||
  ------------------
  |  Branch (424:12): [True: 216, False: 223]
  ------------------
  425|    223|        eth_type == htons(ETH_TYPE_MPLS_MCAST);
  ------------------
  |  Branch (425:9): [True: 194, False: 29]
  ------------------
  426|    439|}
meta-flow.c:vlan_tci_to_pcp:
  515|  1.16k|{
  516|  1.16k|    return (ntohs(vlan_tci) & VLAN_PCP_MASK) >> VLAN_PCP_SHIFT;
  ------------------
  |  |  497|  1.16k|#define VLAN_PCP_MASK 0xe000
  ------------------
                  return (ntohs(vlan_tci) & VLAN_PCP_MASK) >> VLAN_PCP_SHIFT;
  ------------------
  |  |  498|  1.16k|#define VLAN_PCP_SHIFT 13
  ------------------
  517|  1.16k|}
meta-flow.c:mpls_lse_to_label:
  568|    398|{
  569|    398|    return (ntohl(mpls_lse) & MPLS_LABEL_MASK) >> MPLS_LABEL_SHIFT;
  ------------------
  |  |  554|    398|#define MPLS_LABEL_MASK     0xfffff000
  ------------------
                  return (ntohl(mpls_lse) & MPLS_LABEL_MASK) >> MPLS_LABEL_SHIFT;
  ------------------
  |  |  555|    398|#define MPLS_LABEL_SHIFT    12
  ------------------
  570|    398|}
meta-flow.c:mpls_lse_to_tc:
  576|    520|{
  577|    520|    return (ntohl(mpls_lse) & MPLS_TC_MASK) >> MPLS_TC_SHIFT;
  ------------------
  |  |  551|    520|#define MPLS_TC_MASK        0x00000e00
  ------------------
                  return (ntohl(mpls_lse) & MPLS_TC_MASK) >> MPLS_TC_SHIFT;
  ------------------
  |  |  552|    520|#define MPLS_TC_SHIFT       9
  ------------------
  578|    520|}
meta-flow.c:mpls_lse_to_bos:
  624|    516|{
  625|       |    return (mpls_lse & htonl(MPLS_BOS_MASK)) != 0;
  626|    516|}
meta-flow.c:mpls_lse_to_ttl:
  584|    574|{
  585|    574|    return (ntohl(mpls_lse) & MPLS_TTL_MASK) >> MPLS_TTL_SHIFT;
  ------------------
  |  |  545|    574|#define MPLS_TTL_MASK       0x000000ff
  ------------------
                  return (ntohl(mpls_lse) & MPLS_TTL_MASK) >> MPLS_TTL_SHIFT;
  ------------------
  |  |  546|    574|#define MPLS_TTL_SHIFT      0
  ------------------
  586|    574|}
meta-flow.c:ip_is_cidr:
  664|  2.15k|{
  665|       |    uint32_t x = ~ntohl(netmask);
  666|  2.15k|    return !(x & (x + 1));
  667|  2.15k|}
meta-flow.c:dl_type_is_ip_any:
 1256|  3.95k|{
 1257|  3.95k|    return dl_type == htons(ETH_TYPE_IP)
  ------------------
  |  Branch (1257:12): [True: 2.11k, False: 1.84k]
  ------------------
 1258|  1.84k|        || dl_type == htons(ETH_TYPE_IPV6);
  ------------------
  |  Branch (1258:12): [True: 1.74k, False: 100]
  ------------------
 1259|  3.95k|}
nx-match.c:pt_ns:
 1570|    999|{
 1571|       |    return ntohl(packet_type) >> 16;
 1572|    999|}
nx-match.c:pt_ns_type_be:
 1577|    239|{
 1578|    239|    return be32_to_be16(packet_type);
 1579|    239|}
nx-match.c:vlan_tci_to_pcp:
  515|      4|{
  516|      4|    return (ntohs(vlan_tci) & VLAN_PCP_MASK) >> VLAN_PCP_SHIFT;
  ------------------
  |  |  497|      4|#define VLAN_PCP_MASK 0xe000
  ------------------
                  return (ntohs(vlan_tci) & VLAN_PCP_MASK) >> VLAN_PCP_SHIFT;
  ------------------
  |  |  498|      4|#define VLAN_PCP_SHIFT 13
  ------------------
  517|      4|}
nx-match.c:eth_type_mpls:
  423|  4.10k|{
  424|  4.10k|    return eth_type == htons(ETH_TYPE_MPLS) ||
  ------------------
  |  Branch (424:12): [True: 23, False: 4.08k]
  ------------------
  425|  4.08k|        eth_type == htons(ETH_TYPE_MPLS_MCAST);
  ------------------
  |  Branch (425:9): [True: 42, False: 4.04k]
  ------------------
  426|  4.10k|}
nx-match.c:mpls_lse_to_tc:
  576|      1|{
  577|      1|    return (ntohl(mpls_lse) & MPLS_TC_MASK) >> MPLS_TC_SHIFT;
  ------------------
  |  |  551|      1|#define MPLS_TC_MASK        0x00000e00
  ------------------
                  return (ntohl(mpls_lse) & MPLS_TC_MASK) >> MPLS_TC_SHIFT;
  ------------------
  |  |  552|      1|#define MPLS_TC_SHIFT       9
  ------------------
  578|      1|}
nx-match.c:mpls_lse_to_bos:
  624|      3|{
  625|       |    return (mpls_lse & htonl(MPLS_BOS_MASK)) != 0;
  626|      3|}
nx-match.c:mpls_lse_to_ttl:
  584|      1|{
  585|      1|    return (ntohl(mpls_lse) & MPLS_TTL_MASK) >> MPLS_TTL_SHIFT;
  ------------------
  |  |  545|      1|#define MPLS_TTL_MASK       0x000000ff
  ------------------
                  return (ntohl(mpls_lse) & MPLS_TTL_MASK) >> MPLS_TTL_SHIFT;
  ------------------
  |  |  546|      1|#define MPLS_TTL_SHIFT      0
  ------------------
  586|      1|}
nx-match.c:mpls_lse_to_label:
  568|      1|{
  569|      1|    return (ntohl(mpls_lse) & MPLS_LABEL_MASK) >> MPLS_LABEL_SHIFT;
  ------------------
  |  |  554|      1|#define MPLS_LABEL_MASK     0xfffff000
  ------------------
                  return (ntohl(mpls_lse) & MPLS_LABEL_MASK) >> MPLS_LABEL_SHIFT;
  ------------------
  |  |  555|      1|#define MPLS_LABEL_SHIFT    12
  ------------------
  570|      1|}
nx-match.c:dl_type_is_ip_any:
 1256|  4.10k|{
 1257|  4.10k|    return dl_type == htons(ETH_TYPE_IP)
  ------------------
  |  Branch (1257:12): [True: 251, False: 3.85k]
  ------------------
 1258|  3.85k|        || dl_type == htons(ETH_TYPE_IPV6);
  ------------------
  |  Branch (1258:12): [True: 332, False: 3.52k]
  ------------------
 1259|  4.10k|}
ofp-actions.c:eth_type_vlan:
  429|  1.91k|{
  430|  1.91k|    return eth_type == htons(ETH_TYPE_VLAN_8021Q) ||
  ------------------
  |  Branch (430:12): [True: 1.14k, False: 772]
  ------------------
  431|    772|        eth_type == htons(ETH_TYPE_VLAN_8021AD);
  ------------------
  |  Branch (431:9): [True: 731, False: 41]
  ------------------
  432|  1.91k|}
ofp-actions.c:eth_type_mpls:
  423|  7.89k|{
  424|  7.89k|    return eth_type == htons(ETH_TYPE_MPLS) ||
  ------------------
  |  Branch (424:12): [True: 1.79k, False: 6.10k]
  ------------------
  425|  6.10k|        eth_type == htons(ETH_TYPE_MPLS_MCAST);
  ------------------
  |  Branch (425:9): [True: 2.77k, False: 3.33k]
  ------------------
  426|  7.89k|}
ofp-actions.c:ipv6_mask_is_any:
 1193|  7.99k|static inline bool ipv6_mask_is_any(const struct in6_addr *mask) {
 1194|  7.99k|    return ipv6_addr_equals(mask, &in6addr_any);
 1195|  7.99k|}
ofp-actions.c:ipv6_addr_equals:
 1184|  7.99k|{
 1185|  7.99k|#ifdef IN6_ARE_ADDR_EQUAL
 1186|  7.99k|    return IN6_ARE_ADDR_EQUAL(a, b);
 1187|       |#else
 1188|       |    return !memcmp(a, b, sizeof(*a));
 1189|       |#endif
 1190|  7.99k|}
ofp-actions.c:pt_ns:
 1570|  19.2k|{
 1571|       |    return ntohl(packet_type) >> 16;
 1572|  19.2k|}
ofp-actions.c:pt_ns_type_be:
 1577|  14.6k|{
 1578|  14.6k|    return be32_to_be16(packet_type);
 1579|  14.6k|}
ofp-actions.c:dl_type_is_ip_any:
 1256|  31.7k|{
 1257|  31.7k|    return dl_type == htons(ETH_TYPE_IP)
  ------------------
  |  Branch (1257:12): [True: 13.6k, False: 18.1k]
  ------------------
 1258|  18.1k|        || dl_type == htons(ETH_TYPE_IPV6);
  ------------------
  |  Branch (1258:12): [True: 11.0k, False: 7.09k]
  ------------------
 1259|  31.7k|}
ofp-actions.c:pt_ns_type:
 1584|  1.30k|{
 1585|       |    return ntohs(pt_ns_type_be(packet_type));
 1586|  1.30k|}
ofp-actions.c:vlan_tci_to_vid:
  507|  1.20k|{
  508|  1.20k|    return (ntohs(vlan_tci) & VLAN_VID_MASK) >> VLAN_VID_SHIFT;
  ------------------
  |  |  494|  1.20k|#define VLAN_VID_MASK 0x0fff
  ------------------
                  return (ntohs(vlan_tci) & VLAN_VID_MASK) >> VLAN_VID_SHIFT;
  ------------------
  |  |  495|  1.20k|#define VLAN_VID_SHIFT 0
  ------------------
  509|  1.20k|}
ofp-actions.c:vlan_tci_to_pcp:
  515|  1.20k|{
  516|  1.20k|    return (ntohs(vlan_tci) & VLAN_PCP_MASK) >> VLAN_PCP_SHIFT;
  ------------------
  |  |  497|  1.20k|#define VLAN_PCP_MASK 0xe000
  ------------------
                  return (ntohs(vlan_tci) & VLAN_PCP_MASK) >> VLAN_PCP_SHIFT;
  ------------------
  |  |  498|  1.20k|#define VLAN_PCP_SHIFT 13
  ------------------
  517|  1.20k|}

shash_init:
   34|      1|{
   35|      1|    hmap_init(&sh->map);
   36|      1|}
shash_add_nocopy:
  122|    228|{
  123|    228|    return shash_add_nocopy__(sh, name, data, hash_name(name));
  124|    228|}
shash_add:
  130|    228|{
  131|    228|    return shash_add_nocopy(sh, xstrdup(name), data);
  132|    228|}
shash_add_once:
  136|    228|{
  137|    228|    if (!shash_find(sh, name)) {
  ------------------
  |  Branch (137:9): [True: 228, False: 0]
  ------------------
  138|    228|        shash_add(sh, name, data);
  139|    228|        return true;
  140|    228|    } else {
  141|       |        return false;
  142|      0|    }
  143|    228|}
shash_find:
  236|   201k|{
  237|   201k|    return shash_find__(sh, name, strlen(name), hash_name(name));
  238|   201k|}
shash_find_len:
  244|   179k|{
  245|   179k|    return shash_find__(sh, name, len, hash_bytes(name, len, 0));
  246|   179k|}
shash_find_data:
  250|   201k|{
  251|   201k|    struct shash_node *node = shash_find(sh, name);
  252|   201k|    return node ? node->data : NULL;
  ------------------
  |  Branch (252:12): [True: 126k, False: 74.5k]
  ------------------
  253|   201k|}
shash.c:shash_add_nocopy__:
  110|    228|{
  111|    228|    struct shash_node *node = xmalloc(sizeof *node);
  112|    228|    node->name = name;
  113|    228|    node->data = CONST_CAST(void *, data);
  ------------------
  |  |   85|    228|    (BUILD_ASSERT_TYPE(POINTER, TYPE),                          \
  |  |  ------------------
  |  |  |  |   80|    228|    ((void) sizeof ((int) ((POINTER) == (TYPE) (POINTER))))
  |  |  ------------------
  |  |   86|    228|     (TYPE) (POINTER))
  ------------------
  114|    228|    hmap_insert(&sh->map, &node->node, hash);
  ------------------
  |  |  101|    228|    hmap_insert_at(HMAP, NODE, HASH, OVS_SOURCE_LOCATOR)
  |  |  ------------------
  |  |  |  |   37|    228|#define OVS_SOURCE_LOCATOR __FILE__ ":" OVS_STRINGIZE(__LINE__)
  |  |  |  |  ------------------
  |  |  |  |  |  |   38|    228|#define OVS_STRINGIZE(ARG) OVS_STRINGIZE2(ARG)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   39|    228|#define OVS_STRINGIZE2(ARG) #ARG
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  115|    228|    return node;
  116|    228|}
shash.c:hash_name:
   28|   201k|{
   29|   201k|    return hash_string(name, 0);
   30|   201k|}
shash.c:shash_find__:
  222|   381k|{
  223|   381k|    struct shash_node *node;
  224|       |
  225|   381k|    HMAP_FOR_EACH_WITH_HASH (node, node, hash, &sh->map) {
  ------------------
  |  |  138|   381k|    for (INIT_MULTIVAR(NODE, MEMBER, hmap_first_with_hash(HMAP, HASH),        \
  |  |  ------------------
  |  |  |  |  171|   381k|    INIT_MULTIVAR_EXP(VAR, MEMBER, POINTER, ITER_TYPE, (void) 0)
  |  |  |  |  ------------------
  |  |  |  |  |  |  174|   381k|    ITER_TYPE *ITER_VAR(VAR) = ( __VA_ARGS__ , (ITER_TYPE *) POINTER)
  |  |  |  |  ------------------
  |  |  ------------------
  |  |  139|   381k|                       struct hmap_node);                                     \
  |  |  140|   381k|         CONDITION_MULTIVAR(NODE, MEMBER, ITER_VAR(NODE) != NULL);            \
  |  |  ------------------
  |  |  |  |  185|   381k|    ((EXPR) ?                                                                 \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (185:5): [True: 251k, False: 129k]
  |  |  |  |  |  Branch (185:6): [True: 251k, False: 129k]
  |  |  |  |  ------------------
  |  |  |  |  186|   381k|     (((VAR) = OBJECT_CONTAINING(ITER_VAR(VAR), VAR, MEMBER)), 1) :           \
  |  |  |  |  ------------------
  |  |  |  |  |  |  134|   251k|    ((OVS_TYPEOF(OBJECT)) (void *)                                      \
  |  |  |  |  |  |  135|   251k|     ((char *) (POINTER) - OBJECT_OFFSETOF(OBJECT, MEMBER)))
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  108|   251k|#define OBJECT_OFFSETOF(OBJECT, MEMBER) offsetof(typeof(*(OBJECT)), MEMBER)
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  |  |  187|   381k|     (((VAR) = NULL), 0))
  |  |  ------------------
  |  |  141|   381k|         UPDATE_MULTIVAR(NODE, hmap_next_with_hash(ITER_VAR(NODE))))
  |  |  ------------------
  |  |  |  |  193|    243|    (ITER_VAR(VAR) = NEXT_ITER)
  |  |  |  |  ------------------
  |  |  |  |  |  |  162|    243|#define ITER_VAR(NAME) NAME ## __iterator__
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  226|   251k|        if (!strncmp(node->name, name, name_len) && !node->name[name_len]) {
  ------------------
  |  Branch (226:13): [True: 251k, False: 243]
  |  Branch (226:53): [True: 251k, False: 0]
  ------------------
  227|   251k|            return node;
  228|   251k|        }
  229|   251k|    }
  230|   129k|    return NULL;
  231|   381k|}

lookup_ip:
  152|  3.27k|{
  153|  3.27k|    if (!ip_parse(host_name, &addr->s_addr)) {
  ------------------
  |  Branch (153:9): [True: 9, False: 3.26k]
  ------------------
  154|      9|        static struct vlog_rate_limit rl = VLOG_RATE_LIMIT_INIT(1, 5);
  ------------------
  |  |  110|      9|        {                                                                 \
  |  |  111|      9|            TOKEN_BUCKET_INIT(RATE, OVS_SAT_MUL(BURST, VLOG_MSG_TOKENS)), \
  |  |  ------------------
  |  |  |  |   37|     36|#define TOKEN_BUCKET_INIT(RATE, BURST) { RATE, BURST, 0, LLONG_MIN }
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (37:48): [True: 0, Folded]
  |  |  |  |  |  Branch (37:48): [Folded, False: 9]
  |  |  |  |  ------------------
  |  |  ------------------
  |  |  112|      9|            0,                              /* first_dropped */           \
  |  |  113|      9|            0,                              /* last_dropped */            \
  |  |  114|      9|            0,                              /* n_dropped */               \
  |  |  115|      9|            OVS_MUTEX_INITIALIZER           /* mutex */                   \
  |  |  ------------------
  |  |  |  |   45|      9|#define OVS_MUTEX_INITIALIZER { PTHREAD_ERRORCHECK_MUTEX_INITIALIZER_NP, \
  |  |  |  |   46|      9|                                "<unlocked>" }
  |  |  ------------------
  |  |  116|      9|        }
  ------------------
  155|      9|        VLOG_ERR_RL(&rl, "\"%s\" is not a valid IP address", host_name);
  ------------------
  |  |  223|      9|#define VLOG_ERR_RL(RL, ...) VLOG_RL(RL, VLL_ERR, __VA_ARGS__)
  |  |  ------------------
  |  |  |  |  287|      9|    do {                                                                \
  |  |  |  |  288|      9|        enum vlog_level level__ = LEVEL;                                \
  |  |  |  |  289|      9|        if (this_module.min_level >= level__) {                         \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (289:13): [True: 0, False: 9]
  |  |  |  |  ------------------
  |  |  |  |  290|      0|            vlog_rate_limit(&this_module, level__, RL, __VA_ARGS__);    \
  |  |  |  |  291|      0|        }                                                               \
  |  |  |  |  292|      9|    } while (0)
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (292:14): [Folded, False: 9]
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  156|      9|        return ENOENT;
  157|      9|    }
  158|  3.26k|    return 0;
  159|  3.27k|}

tun_metadata_read:
  223|  77.1k|{
  224|  77.1k|    const struct tun_table *map = tnl->metadata.tab;
  225|  77.1k|    unsigned int idx = mf->id - MFF_TUN_METADATA0;
  226|  77.1k|    const struct tun_metadata_loc *loc;
  227|       |
  228|  77.1k|    if (!map) {
  ------------------
  |  Branch (228:9): [True: 77.1k, False: 0]
  ------------------
  229|  77.1k|        memset(value->tun_metadata, 0, mf->n_bytes);
  230|  77.1k|        return;
  231|  77.1k|    }
  232|       |
  233|      0|    loc = &map->entries[idx].loc;
  234|       |
  235|      0|    memset(value->tun_metadata, 0, mf->n_bytes - loc->len);
  236|      0|    memcpy_from_metadata(value->tun_metadata + mf->n_bytes - loc->len,
  237|      0|                         &tnl->metadata, loc);
  238|      0|}
tun_metadata_set_match:
  354|  39.0k|{
  355|  39.0k|    const struct tun_table *map = match->flow.tunnel.metadata.tab;
  356|  39.0k|    const struct tun_metadata_loc *loc;
  357|  39.0k|    unsigned int idx = mf->id - MFF_TUN_METADATA0;
  358|  39.0k|    unsigned int field_len;
  359|  39.0k|    bool is_masked;
  360|  39.0k|    unsigned int data_offset;
  361|  39.0k|    union mf_value data;
  362|       |
  363|  39.0k|    field_len = mf_field_len(mf, value, mask, &is_masked);
  364|  39.0k|    loc = metadata_loc_from_match(map, match, mf->name, idx, field_len,
  365|  39.0k|                                  is_masked, err_str);
  366|  39.0k|    if (!loc) {
  ------------------
  |  Branch (366:9): [True: 8.01k, False: 31.0k]
  ------------------
  367|  8.01k|        return;
  368|  8.01k|    }
  369|       |
  370|  31.0k|    data_offset = mf->n_bytes - loc->len;
  371|       |
  372|  31.0k|    if (!value) {
  ------------------
  |  Branch (372:9): [True: 0, False: 31.0k]
  ------------------
  373|      0|        memset(data.tun_metadata, 0, loc->len);
  374|  31.0k|    } else if (!mask) {
  ------------------
  |  Branch (374:16): [True: 14.7k, False: 16.3k]
  ------------------
  375|  14.7k|        memcpy(data.tun_metadata, value->tun_metadata + data_offset, loc->len);
  376|  16.3k|    } else {
  377|  16.3k|        int i;
  378|  46.9k|        for (i = 0; i < loc->len; i++) {
  ------------------
  |  Branch (378:21): [True: 30.5k, False: 16.3k]
  ------------------
  379|  30.5k|            data.tun_metadata[i] = value->tun_metadata[data_offset + i] &
  380|  30.5k|                                   mask->tun_metadata[data_offset + i];
  381|  30.5k|        }
  382|  16.3k|    }
  383|  31.0k|    memcpy_to_metadata(&match->flow.tunnel.metadata, data.tun_metadata,
  384|  31.0k|                       loc, idx);
  385|       |
  386|  31.0k|    if (!value) {
  ------------------
  |  Branch (386:9): [True: 0, False: 31.0k]
  ------------------
  387|      0|        memset(data.tun_metadata, 0, loc->len);
  388|  31.0k|    } else if (!mask) {
  ------------------
  |  Branch (388:16): [True: 14.7k, False: 16.3k]
  ------------------
  389|  14.7k|        memset(data.tun_metadata, 0xff, loc->len);
  390|  16.3k|    } else {
  391|  16.3k|        memcpy(data.tun_metadata, mask->tun_metadata + data_offset, loc->len);
  392|  16.3k|    }
  393|  31.0k|    memcpy_to_metadata(&match->wc.masks.tunnel.metadata, data.tun_metadata,
  394|  31.0k|                       loc, idx);
  395|  31.0k|}
tun_metadata_to_nx_match:
  879|  4.10k|{
  880|  4.10k|    int i;
  881|       |
  882|  4.10k|    ULLONG_FOR_EACH_1 (i, match->wc.masks.tunnel.metadata.present.map) {
  ------------------
  |  |  285|  4.10k|    for (uint64_t map__ = (MAP);                    \
  |  |  286|  4.48k|         map__ && (((IDX) = raw_ctz(map__)), true); \
  |  |  ------------------
  |  |  |  Branch (286:10): [True: 372, False: 4.10k]
  |  |  |  Branch (286:19): [True: 372, False: 0]
  |  |  ------------------
  |  |  287|  4.10k|         map__ = zero_rightmost_1bit(map__))
  ------------------
  883|    372|        const struct tun_metadata_loc *loc;
  884|    372|        bool is_masked;
  885|    372|        union mf_value opts;
  886|    372|        union mf_value mask_opts;
  887|       |
  888|    372|        loc = metadata_loc_from_match_read(match->flow.tunnel.metadata.tab,
  889|    372|                                           match, i, &match->wc.masks.tunnel,
  890|    372|                                           &is_masked);
  891|    372|        memcpy_from_metadata(opts.tun_metadata, &match->flow.tunnel.metadata,
  892|    372|                             loc);
  893|    372|        memcpy_from_metadata(mask_opts.tun_metadata,
  894|    372|                             &match->wc.masks.tunnel.metadata, loc);
  895|    372|        nxm_put_entry_raw(b, MFF_TUN_METADATA0 + i, oxm, opts.tun_metadata,
  896|    372|                          is_masked ? mask_opts.tun_metadata : NULL, loc->len);
  ------------------
  |  Branch (896:27): [True: 217, False: 155]
  ------------------
  897|    372|    }
  898|  4.10k|}
tun_metadata_allocation_clone:
  947|  9.28k|{
  948|  9.28k|    return src && src->valid ? xmemdup(src, sizeof *src) : NULL;
  ------------------
  |  Branch (948:12): [True: 9.28k, False: 0]
  |  Branch (948:19): [True: 314, False: 8.96k]
  ------------------
  949|  9.28k|}
tun_metadata_allocation_copy:
  954|  18.3k|{
  955|  18.3k|    if (src && src->valid) {
  ------------------
  |  Branch (955:9): [True: 627, False: 17.7k]
  |  Branch (955:16): [True: 627, False: 0]
  ------------------
  956|    627|        *dst = *src;
  957|  17.7k|    } else {
  958|  17.7k|        memset(dst, 0, sizeof *dst);
  959|  17.7k|    }
  960|  18.3k|}
tun-metadata.c:metadata_loc_from_match:
  285|  39.0k|{
  286|  39.0k|    ovs_assert(idx < TUN_METADATA_NUM_OPTS);
  ------------------
  |  |   62|  39.0k|#define ovs_assert ovs_ignore
  ------------------
                  ovs_assert(idx < TUN_METADATA_NUM_OPTS);
  ------------------
  |  |   26|  39.0k|#define TUN_METADATA_NUM_OPTS 64
  ------------------
  287|       |
  288|  39.0k|    if (err_str) {
  ------------------
  |  Branch (288:9): [True: 681, False: 38.3k]
  ------------------
  289|    681|        *err_str = NULL;
  290|    681|    }
  291|       |
  292|  39.0k|    if (map) {
  ------------------
  |  Branch (292:9): [True: 0, False: 39.0k]
  ------------------
  293|      0|        if (map->entries[idx].valid) {
  ------------------
  |  Branch (293:13): [True: 0, False: 0]
  ------------------
  294|      0|            return &map->entries[idx].loc;
  295|      0|        } else {
  296|      0|            return NULL;
  297|      0|        }
  298|      0|    }
  299|       |
  300|  39.0k|    if (match->tun_md.alloc_offset + field_len > TUN_METADATA_TOT_OPT_SIZE) {
  ------------------
  |  |   27|  39.0k|#define TUN_METADATA_TOT_OPT_SIZE 256
  ------------------
  |  Branch (300:9): [True: 385, False: 38.6k]
  ------------------
  301|    385|        if (err_str) {
  ------------------
  |  Branch (301:13): [True: 1, False: 384]
  ------------------
  302|      1|            *err_str = xasprintf("field %s exceeds maximum size for tunnel "
  303|      1|                                 "metadata (used %d, max %d)", name,
  304|      1|                                 match->tun_md.alloc_offset + field_len,
  305|      1|                                 TUN_METADATA_TOT_OPT_SIZE);
  ------------------
  |  |   27|      1|#define TUN_METADATA_TOT_OPT_SIZE 256
  ------------------
  306|      1|        }
  307|       |
  308|    385|        return NULL;
  309|    385|    }
  310|       |
  311|  38.6k|    if (ULLONG_GET(match->wc.masks.tunnel.metadata.present.map, idx)) {
  ------------------
  |  |  293|  38.6k|#define ULLONG_GET(MAP, OFFSET) !!((MAP) & (1ULL << (OFFSET)))
  |  |  ------------------
  |  |  |  Branch (293:33): [True: 7.62k, False: 31.0k]
  |  |  ------------------
  ------------------
  312|  7.62k|        if (err_str) {
  ------------------
  |  Branch (312:13): [True: 139, False: 7.49k]
  ------------------
  313|    139|            *err_str = xasprintf("field %s set multiple times", name);
  314|    139|        }
  315|       |
  316|  7.62k|        return NULL;
  317|  7.62k|    }
  318|       |
  319|  31.0k|    match->tun_md.entry[idx].loc.len = field_len;
  320|  31.0k|    match->tun_md.entry[idx].loc.c.offset = match->tun_md.alloc_offset;
  321|  31.0k|    match->tun_md.entry[idx].loc.c.len = field_len;
  322|  31.0k|    match->tun_md.entry[idx].loc.c.next = NULL;
  323|  31.0k|    match->tun_md.entry[idx].masked = masked;
  324|  31.0k|    match->tun_md.alloc_offset += field_len;
  325|  31.0k|    match->tun_md.valid = true;
  326|       |
  327|  31.0k|    return &match->tun_md.entry[idx].loc;
  328|  38.6k|}
tun-metadata.c:memcpy_to_metadata:
  445|  62.0k|{
  446|  62.0k|    const struct tun_metadata_loc_chain *chain = &loc->c;
  447|  62.0k|    int addr = 0;
  448|       |
  449|   124k|    while (chain) {
  ------------------
  |  Branch (449:12): [True: 62.0k, False: 62.0k]
  ------------------
  450|  62.0k|        memcpy(dst->opts.u8 + chain->offset, (uint8_t *)src + addr,
  451|  62.0k|               chain->len);
  452|  62.0k|        addr += chain->len;
  453|  62.0k|        chain = chain->next;
  454|  62.0k|    }
  455|       |
  456|  62.0k|    ULLONG_SET1(dst->present.map, idx);
  ------------------
  |  |  290|  62.0k|#define ULLONG_SET1(MAP, OFFSET) ((MAP) |= 1ULL << (OFFSET))
  ------------------
  457|  62.0k|}
tun-metadata.c:memcpy_from_metadata:
  462|    744|{
  463|    744|    const struct tun_metadata_loc_chain *chain = &loc->c;
  464|    744|    int addr = 0;
  465|       |
  466|  1.48k|    while (chain) {
  ------------------
  |  Branch (466:12): [True: 744, False: 744]
  ------------------
  467|    744|        memcpy((uint8_t *)dst + addr, src->opts.u8 + chain->offset,
  468|    744|               chain->len);
  469|    744|        addr += chain->len;
  470|    744|        chain = chain->next;
  471|    744|    }
  472|    744|}
tun-metadata.c:metadata_loc_from_match_read:
  857|    372|{
  858|    372|    union mf_value mask_opts;
  859|       |
  860|    372|    if (match->tun_md.valid) {
  ------------------
  |  Branch (860:9): [True: 372, False: 0]
  ------------------
  861|    372|        *is_masked = match->tun_md.entry[idx].masked;
  862|    372|        return &match->tun_md.entry[idx].loc;
  863|    372|    }
  864|       |
  865|      0|    memcpy_from_metadata(mask_opts.tun_metadata, &mask->metadata,
  866|      0|                         &map->entries[idx].loc);
  867|       |
  868|      0|    *is_masked = map->entries[idx].loc.len == 0 ||
  ------------------
  |  Branch (868:18): [True: 0, False: 0]
  ------------------
  869|      0|                 !is_all_ones(mask_opts.tun_metadata,
  ------------------
  |  Branch (869:18): [True: 0, False: 0]
  ------------------
  870|      0|                              map->entries[idx].loc.len);
  871|      0|    return &map->entries[idx].loc;
  872|    372|}

hash.c:get_unaligned_u32:
   74|  2.12M|get_unaligned_##ABBREV(const TYPE *p)           \
   75|  2.12M|{                                               \
   76|  2.12M|    return unaligned_##ABBREV(p)->x;            \
   77|  2.12M|}                                               \
hash.c:unaligned_u32:
   68|  2.12M|unaligned_##ABBREV(const TYPE *p)               \
   69|  2.12M|{                                               \
   70|  2.12M|    return (struct unaligned_##ABBREV *) p;     \
   71|  2.12M|}                                               \

utf16_decode_surrogate_pair:
   32|  5.42k|{
   33|       |    /*
   34|       |     *  Leading surrogate:         110110wwwwxxxxxx
   35|       |     * Trailing surrogate:         110111xxxxxxxxxx
   36|       |     *         Code point: 000uuuuuxxxxxxxxxxxxxxxx
   37|       |     */
   38|  5.42k|    int w = (leading >> 6) & 0xf;
   39|  5.42k|    int u = w + 1;
   40|  5.42k|    int x0 = leading & 0x3f;
   41|  5.42k|    int x1 = trailing & 0x3ff;
   42|  5.42k|    return (u << 16) | (x0 << 10) | x1;
   43|  5.42k|}

json.c:uc_is_leading_surrogate:
   34|  33.6k|{
   35|  33.6k|    return c >= 0xd800 && c <= 0xdbff;
  ------------------
  |  Branch (35:12): [True: 15.6k, False: 18.0k]
  |  Branch (35:27): [True: 6.97k, False: 8.65k]
  ------------------
   36|  33.6k|}
json.c:uc_is_trailing_surrogate:
   41|  5.65k|{
   42|  5.65k|    return c >= 0xdc00 && c <= 0xdfff;
  ------------------
  |  Branch (42:12): [True: 5.42k, False: 233]
  |  Branch (42:27): [True: 5.42k, False: 1]
  ------------------
   43|  5.65k|}

xmalloc__:
  137|   246k|{
  138|   246k|    void *p = malloc(size ? size : 1);
  ------------------
  |  Branch (138:22): [True: 246k, False: 0]
  ------------------
  139|   246k|    if (p == NULL) {
  ------------------
  |  Branch (139:9): [True: 0, False: 246k]
  ------------------
  140|      0|        out_of_memory();
  141|      0|    }
  142|   246k|    return p;
  143|   246k|}
xrealloc__:
  147|   452k|{
  148|   452k|    p = realloc(p, size ? size : 1);
  ------------------
  |  Branch (148:20): [True: 452k, False: 0]
  ------------------
  149|   452k|    if (p == NULL) {
  ------------------
  |  Branch (149:9): [True: 0, False: 452k]
  ------------------
  150|      0|        out_of_memory();
  151|      0|    }
  152|   452k|    return p;
  153|   452k|}
xmalloc:
  171|   246k|{
  172|   246k|    COVERAGE_INC(util_xalloc);
  ------------------
  |  |   83|   246k|#define COVERAGE_INC(COUNTER) COVERAGE_ADD(COUNTER, 1)
  |  |  ------------------
  |  |  |  |   86|   246k|#define COVERAGE_ADD(COUNTER, AMOUNT) COUNTER##_add(AMOUNT)
  |  |  ------------------
  ------------------
  173|   246k|    return xmalloc__(size);
  174|   246k|}
xrealloc:
  178|   452k|{
  179|   452k|    COVERAGE_INC(util_xalloc);
  ------------------
  |  |   83|   452k|#define COVERAGE_INC(COUNTER) COVERAGE_ADD(COUNTER, 1)
  |  |  ------------------
  |  |  |  |   86|   452k|#define COVERAGE_ADD(COUNTER, AMOUNT) COUNTER##_add(AMOUNT)
  |  |  ------------------
  ------------------
  180|   452k|    return xrealloc__(p, size);
  181|   452k|}
xmemdup:
  185|    314|{
  186|    314|    void *p = xmalloc(size);
  187|    314|    nullable_memcpy(p, p_, size);
  188|    314|    return p;
  189|    314|}
xmemdup0:
  193|   137k|{
  194|   137k|    char *p = xmalloc(length + 1);
  195|   137k|    memcpy(p, p_, length);
  196|   137k|    p[length] = '\0';
  197|   137k|    return p;
  198|   137k|}
xstrdup:
  202|   137k|{
  203|   137k|    return xmemdup0(s, strlen(s));
  204|   137k|}
xvasprintf:
  220|  68.4k|{
  221|  68.4k|    va_list args2;
  222|  68.4k|    size_t needed;
  223|  68.4k|    char *s;
  224|       |
  225|  68.4k|    ovs_assert(format);
  ------------------
  |  |   62|  68.4k|#define ovs_assert ovs_ignore
  ------------------
  226|       |
  227|  68.4k|    va_copy(args2, args);
  228|  68.4k|    needed = vsnprintf(NULL, 0, format, args);
  229|       |
  230|  68.4k|    s = xmalloc(needed + 1);
  231|       |
  232|  68.4k|    vsnprintf(s, needed + 1, format, args2);
  233|  68.4k|    va_end(args2);
  234|       |
  235|  68.4k|    return s;
  236|  68.4k|}
x2nrealloc:
  240|     18|{
  241|     18|    *n = *n == 0 ? 1 : 2 * *n;
  ------------------
  |  Branch (241:10): [True: 2, False: 16]
  ------------------
  242|     18|    return xrealloc(p, *n * s);
  243|     18|}
xasprintf:
  366|  68.3k|{
  367|  68.3k|    va_list args;
  368|  68.3k|    char *s;
  369|       |
  370|  68.3k|    va_start(args, format);
  371|  68.3k|    s = xvasprintf(format, args);
  372|  68.3k|    va_end(args);
  373|       |
  374|  68.3k|    return s;
  375|  68.3k|}
ovs_strlcpy:
  381|  4.89k|{
  382|  4.89k|    if (size > 0) {
  ------------------
  |  Branch (382:9): [True: 4.89k, False: 0]
  ------------------
  383|  4.89k|        size_t len = strnlen(src, size - 1);
  384|  4.89k|        memcpy(dst, src, len);
  385|  4.89k|        dst[len] = '\0';
  386|  4.89k|    }
  387|  4.89k|}
str_to_int:
  809|  33.7k|{
  810|  33.7k|    long long ll;
  811|  33.7k|    bool ok = str_to_llong(s, base, &ll);
  812|       |
  813|  33.7k|    if (!ok || ll < INT_MIN || ll > INT_MAX) {
  ------------------
  |  Branch (813:9): [True: 436, False: 33.2k]
  |  Branch (813:16): [True: 30, False: 33.2k]
  |  Branch (813:32): [True: 2, False: 33.2k]
  ------------------
  814|    468|        *i = 0;
  815|    468|        return false;
  816|    468|    }
  817|  33.2k|    *i = ll;
  818|       |    return true;
  819|  33.7k|}
str_to_llong:
  837|   281k|{
  838|   281k|    char *tail;
  839|   281k|    bool ok = str_to_llong_with_tail(s, &tail, base, x);
  840|   281k|    if (*tail != '\0') {
  ------------------
  |  Branch (840:9): [True: 15.8k, False: 266k]
  ------------------
  841|  15.8k|        *x = 0;
  842|  15.8k|        return false;
  843|  15.8k|    }
  844|   266k|    return ok;
  845|   281k|}
str_to_llong_with_tail:
  849|   281k|{
  850|   281k|    int save_errno = errno;
  851|   281k|    errno = 0;
  852|   281k|    *x = strtoll(s, tail, base);
  853|   281k|    if (errno == EINVAL || errno == ERANGE || *tail == s) {
  ------------------
  |  Branch (853:9): [True: 0, False: 281k]
  |  Branch (853:28): [True: 3, False: 281k]
  |  Branch (853:47): [True: 15.8k, False: 266k]
  ------------------
  854|  15.8k|        errno = save_errno;
  855|  15.8k|        *x = 0;
  856|  15.8k|        return false;
  857|   266k|    } else {
  858|   266k|        errno = save_errno;
  859|       |        return true;
  860|   266k|    }
  861|   281k|}
str_to_uint:
  865|   248k|{
  866|   248k|    long long ll;
  867|   248k|    bool ok = str_to_llong(s, base, &ll);
  868|   248k|    if (!ok || ll < 0 || ll > UINT_MAX) {
  ------------------
  |  Branch (868:9): [True: 15.4k, False: 232k]
  |  Branch (868:16): [True: 29, False: 232k]
  |  Branch (868:26): [True: 12, False: 232k]
  ------------------
  869|  15.5k|        *u = 0;
  870|  15.5k|        return false;
  871|   232k|    } else {
  872|   232k|        *u = ll;
  873|       |        return true;
  874|   232k|    }
  875|   248k|}
str_to_ullong:
  879|  7.98k|{
  880|  7.98k|    int save_errno = errno;
  881|  7.98k|    char *tail;
  882|       |
  883|  7.98k|    errno = 0;
  884|  7.98k|    *x = strtoull(s, &tail, base);
  885|  7.98k|    if (errno == EINVAL || errno == ERANGE || tail == s || *tail != '\0') {
  ------------------
  |  Branch (885:9): [True: 0, False: 7.98k]
  |  Branch (885:28): [True: 1, False: 7.98k]
  |  Branch (885:47): [True: 734, False: 7.24k]
  |  Branch (885:60): [True: 5, False: 7.24k]
  ------------------
  886|    740|        errno = save_errno;
  887|    740|        *x = 0;
  888|    740|        return false;
  889|  7.24k|    } else {
  890|  7.24k|        errno = save_errno;
  891|       |        return true;
  892|  7.24k|    }
  893|  7.98k|}
hexit_value:
  937|  4.95M|{
  938|  4.95M|    static const signed char tbl[UCHAR_MAX + 1] = {
  939|  4.95M|#define TBL(x)                                  \
  940|  4.95M|        (  x >= '0' && x <= '9' ? x - '0'       \
  941|  4.95M|         : x >= 'a' && x <= 'f' ? x - 'a' + 0xa \
  942|  4.95M|         : x >= 'A' && x <= 'F' ? x - 'A' + 0xa \
  943|  4.95M|         : -1)
  944|  4.95M|#define TBL0(x)  TBL(x),  TBL((x) + 1),   TBL((x) + 2),   TBL((x) + 3)
  945|  4.95M|#define TBL1(x) TBL0(x), TBL0((x) + 4),  TBL0((x) + 8),  TBL0((x) + 12)
  946|  4.95M|#define TBL2(x) TBL1(x), TBL1((x) + 16), TBL1((x) + 32), TBL1((x) + 48)
  947|  4.95M|        TBL2(0), TBL2(64), TBL2(128), TBL2(192)
  ------------------
  |  |  946|  4.95M|#define TBL2(x) TBL1(x), TBL1((x) + 16), TBL1((x) + 32), TBL1((x) + 48)
  |  |  ------------------
  |  |  |  |  945|  4.95M|#define TBL1(x) TBL0(x), TBL0((x) + 4),  TBL0((x) + 8),  TBL0((x) + 12)
  |  |  |  |  ------------------
  |  |  |  |  |  |  944|  4.95M|#define TBL0(x)  TBL(x),  TBL((x) + 1),   TBL((x) + 2),   TBL((x) + 3)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  940|  4.95M|        (  x >= '0' && x <= '9' ? x - '0'       \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (940:12): [Folded, False: 4.95M]
  |  |  |  |  |  |  |  |  |  Branch (940:24): [True: 0, Folded]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  941|  4.95M|         : x >= 'a' && x <= 'f' ? x - 'a' + 0xa \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (941:12): [Folded, False: 4.95M]
  |  |  |  |  |  |  |  |  |  Branch (941:24): [True: 0, Folded]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  942|  4.95M|         : x >= 'A' && x <= 'F' ? x - 'A' + 0xa \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (942:12): [Folded, False: 4.95M]
  |  |  |  |  |  |  |  |  |  Branch (942:24): [True: 0, Folded]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  943|  4.95M|         : -1)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |               #define TBL0(x)  TBL(x),  TBL((x) + 1),   TBL((x) + 2),   TBL((x) + 3)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  940|  4.95M|        (  x >= '0' && x <= '9' ? x - '0'       \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (940:12): [Folded, False: 4.95M]
  |  |  |  |  |  |  |  |  |  Branch (940:24): [True: 0, Folded]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  941|  4.95M|         : x >= 'a' && x <= 'f' ? x - 'a' + 0xa \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (941:12): [Folded, False: 4.95M]
  |  |  |  |  |  |  |  |  |  Branch (941:24): [True: 0, Folded]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  942|  4.95M|         : x >= 'A' && x <= 'F' ? x - 'A' + 0xa \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (942:12): [Folded, False: 4.95M]
  |  |  |  |  |  |  |  |  |  Branch (942:24): [True: 0, Folded]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  943|  4.95M|         : -1)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |               #define TBL0(x)  TBL(x),  TBL((x) + 1),   TBL((x) + 2),   TBL((x) + 3)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  940|  4.95M|        (  x >= '0' && x <= '9' ? x - '0'       \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (940:12): [Folded, False: 4.95M]
  |  |  |  |  |  |  |  |  |  Branch (940:24): [True: 0, Folded]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  941|  4.95M|         : x >= 'a' && x <= 'f' ? x - 'a' + 0xa \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (941:12): [Folded, False: 4.95M]
  |  |  |  |  |  |  |  |  |  Branch (941:24): [True: 0, Folded]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  942|  4.95M|         : x >= 'A' && x <= 'F' ? x - 'A' + 0xa \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (942:12): [Folded, False: 4.95M]
  |  |  |  |  |  |  |  |  |  Branch (942:24): [True: 0, Folded]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  943|  4.95M|         : -1)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |               #define TBL0(x)  TBL(x),  TBL((x) + 1),   TBL((x) + 2),   TBL((x) + 3)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  940|  4.95M|        (  x >= '0' && x <= '9' ? x - '0'       \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (940:12): [Folded, False: 4.95M]
  |  |  |  |  |  |  |  |  |  Branch (940:24): [True: 0, Folded]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  941|  4.95M|         : x >= 'a' && x <= 'f' ? x - 'a' + 0xa \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (941:12): [Folded, False: 4.95M]
  |  |  |  |  |  |  |  |  |  Branch (941:24): [True: 0, Folded]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  942|  4.95M|         : x >= 'A' && x <= 'F' ? x - 'A' + 0xa \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (942:12): [Folded, False: 4.95M]
  |  |  |  |  |  |  |  |  |  Branch (942:24): [True: 0, Folded]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  943|  4.95M|         : -1)
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  |  |               #define TBL1(x) TBL0(x), TBL0((x) + 4),  TBL0((x) + 8),  TBL0((x) + 12)
  |  |  |  |  ------------------
  |  |  |  |  |  |  944|  4.95M|#define TBL0(x)  TBL(x),  TBL((x) + 1),   TBL((x) + 2),   TBL((x) + 3)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  940|  4.95M|        (  x >= '0' && x <= '9' ? x - '0'       \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (940:12): [Folded, False: 4.95M]
  |  |  |  |  |  |  |  |  |  Branch (940:24): [True: 0, Folded]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  941|  4.95M|         : x >= 'a' && x <= 'f' ? x - 'a' + 0xa \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (941:12): [Folded, False: 4.95M]
  |  |  |  |  |  |  |  |  |  Branch (941:24): [True: 0, Folded]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  942|  4.95M|         : x >= 'A' && x <= 'F' ? x - 'A' + 0xa \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (942:12): [Folded, False: 4.95M]
  |  |  |  |  |  |  |  |  |  Branch (942:24): [True: 0, Folded]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  943|  4.95M|         : -1)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |               #define TBL0(x)  TBL(x),  TBL((x) + 1),   TBL((x) + 2),   TBL((x) + 3)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  940|  4.95M|        (  x >= '0' && x <= '9' ? x - '0'       \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (940:12): [Folded, False: 4.95M]
  |  |  |  |  |  |  |  |  |  Branch (940:24): [True: 0, Folded]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  941|  4.95M|         : x >= 'a' && x <= 'f' ? x - 'a' + 0xa \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (941:12): [Folded, False: 4.95M]
  |  |  |  |  |  |  |  |  |  Branch (941:24): [True: 0, Folded]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  942|  4.95M|         : x >= 'A' && x <= 'F' ? x - 'A' + 0xa \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (942:12): [Folded, False: 4.95M]
  |  |  |  |  |  |  |  |  |  Branch (942:24): [True: 0, Folded]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  943|  4.95M|         : -1)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |               #define TBL0(x)  TBL(x),  TBL((x) + 1),   TBL((x) + 2),   TBL((x) + 3)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  940|  4.95M|        (  x >= '0' && x <= '9' ? x - '0'       \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (940:12): [Folded, False: 4.95M]
  |  |  |  |  |  |  |  |  |  Branch (940:24): [True: 0, Folded]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  941|  4.95M|         : x >= 'a' && x <= 'f' ? x - 'a' + 0xa \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (941:12): [Folded, False: 4.95M]
  |  |  |  |  |  |  |  |  |  Branch (941:24): [True: 0, Folded]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  942|  4.95M|         : x >= 'A' && x <= 'F' ? x - 'A' + 0xa \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (942:12): [Folded, False: 4.95M]
  |  |  |  |  |  |  |  |  |  Branch (942:24): [True: 0, Folded]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  943|  4.95M|         : -1)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |               #define TBL0(x)  TBL(x),  TBL((x) + 1),   TBL((x) + 2),   TBL((x) + 3)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  940|  4.95M|        (  x >= '0' && x <= '9' ? x - '0'       \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (940:12): [Folded, False: 4.95M]
  |  |  |  |  |  |  |  |  |  Branch (940:24): [True: 0, Folded]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  941|  4.95M|         : x >= 'a' && x <= 'f' ? x - 'a' + 0xa \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (941:12): [Folded, False: 4.95M]
  |  |  |  |  |  |  |  |  |  Branch (941:24): [True: 0, Folded]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  942|  4.95M|         : x >= 'A' && x <= 'F' ? x - 'A' + 0xa \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (942:12): [Folded, False: 4.95M]
  |  |  |  |  |  |  |  |  |  Branch (942:24): [True: 0, Folded]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  943|  4.95M|         : -1)
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  |  |               #define TBL1(x) TBL0(x), TBL0((x) + 4),  TBL0((x) + 8),  TBL0((x) + 12)
  |  |  |  |  ------------------
  |  |  |  |  |  |  944|  4.95M|#define TBL0(x)  TBL(x),  TBL((x) + 1),   TBL((x) + 2),   TBL((x) + 3)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  940|  4.95M|        (  x >= '0' && x <= '9' ? x - '0'       \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (940:12): [Folded, False: 4.95M]
  |  |  |  |  |  |  |  |  |  Branch (940:24): [True: 0, Folded]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  941|  4.95M|         : x >= 'a' && x <= 'f' ? x - 'a' + 0xa \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (941:12): [Folded, False: 4.95M]
  |  |  |  |  |  |  |  |  |  Branch (941:24): [True: 0, Folded]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  942|  4.95M|         : x >= 'A' && x <= 'F' ? x - 'A' + 0xa \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (942:12): [Folded, False: 4.95M]
  |  |  |  |  |  |  |  |  |  Branch (942:24): [True: 0, Folded]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  943|  4.95M|         : -1)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |               #define TBL0(x)  TBL(x),  TBL((x) + 1),   TBL((x) + 2),   TBL((x) + 3)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  940|  4.95M|        (  x >= '0' && x <= '9' ? x - '0'       \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (940:12): [Folded, False: 4.95M]
  |  |  |  |  |  |  |  |  |  Branch (940:24): [True: 0, Folded]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  941|  4.95M|         : x >= 'a' && x <= 'f' ? x - 'a' + 0xa \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (941:12): [Folded, False: 4.95M]
  |  |  |  |  |  |  |  |  |  Branch (941:24): [True: 0, Folded]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  942|  4.95M|         : x >= 'A' && x <= 'F' ? x - 'A' + 0xa \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (942:12): [Folded, False: 4.95M]
  |  |  |  |  |  |  |  |  |  Branch (942:24): [True: 0, Folded]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  943|  4.95M|         : -1)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |               #define TBL0(x)  TBL(x),  TBL((x) + 1),   TBL((x) + 2),   TBL((x) + 3)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  940|  4.95M|        (  x >= '0' && x <= '9' ? x - '0'       \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (940:12): [Folded, False: 4.95M]
  |  |  |  |  |  |  |  |  |  Branch (940:24): [True: 0, Folded]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  941|  4.95M|         : x >= 'a' && x <= 'f' ? x - 'a' + 0xa \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (941:12): [Folded, False: 4.95M]
  |  |  |  |  |  |  |  |  |  Branch (941:24): [True: 0, Folded]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  942|  4.95M|         : x >= 'A' && x <= 'F' ? x - 'A' + 0xa \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (942:12): [Folded, False: 4.95M]
  |  |  |  |  |  |  |  |  |  Branch (942:24): [True: 0, Folded]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  943|  4.95M|         : -1)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |               #define TBL0(x)  TBL(x),  TBL((x) + 1),   TBL((x) + 2),   TBL((x) + 3)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  940|  4.95M|        (  x >= '0' && x <= '9' ? x - '0'       \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (940:12): [Folded, False: 4.95M]
  |  |  |  |  |  |  |  |  |  Branch (940:24): [True: 0, Folded]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  941|  4.95M|         : x >= 'a' && x <= 'f' ? x - 'a' + 0xa \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (941:12): [Folded, False: 4.95M]
  |  |  |  |  |  |  |  |  |  Branch (941:24): [True: 0, Folded]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  942|  4.95M|         : x >= 'A' && x <= 'F' ? x - 'A' + 0xa \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (942:12): [Folded, False: 4.95M]
  |  |  |  |  |  |  |  |  |  Branch (942:24): [True: 0, Folded]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  943|  4.95M|         : -1)
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  |  |               #define TBL1(x) TBL0(x), TBL0((x) + 4),  TBL0((x) + 8),  TBL0((x) + 12)
  |  |  |  |  ------------------
  |  |  |  |  |  |  944|  4.95M|#define TBL0(x)  TBL(x),  TBL((x) + 1),   TBL((x) + 2),   TBL((x) + 3)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  940|  4.95M|        (  x >= '0' && x <= '9' ? x - '0'       \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (940:12): [Folded, False: 4.95M]
  |  |  |  |  |  |  |  |  |  Branch (940:24): [True: 0, Folded]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  941|  4.95M|         : x >= 'a' && x <= 'f' ? x - 'a' + 0xa \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (941:12): [Folded, False: 4.95M]
  |  |  |  |  |  |  |  |  |  Branch (941:24): [True: 0, Folded]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  942|  4.95M|         : x >= 'A' && x <= 'F' ? x - 'A' + 0xa \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (942:12): [Folded, False: 4.95M]
  |  |  |  |  |  |  |  |  |  Branch (942:24): [True: 0, Folded]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  943|  4.95M|         : -1)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |               #define TBL0(x)  TBL(x),  TBL((x) + 1),   TBL((x) + 2),   TBL((x) + 3)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  940|  4.95M|        (  x >= '0' && x <= '9' ? x - '0'       \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (940:12): [Folded, False: 4.95M]
  |  |  |  |  |  |  |  |  |  Branch (940:24): [True: 0, Folded]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  941|  4.95M|         : x >= 'a' && x <= 'f' ? x - 'a' + 0xa \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (941:12): [Folded, False: 4.95M]
  |  |  |  |  |  |  |  |  |  Branch (941:24): [True: 0, Folded]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  942|  4.95M|         : x >= 'A' && x <= 'F' ? x - 'A' + 0xa \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (942:12): [Folded, False: 4.95M]
  |  |  |  |  |  |  |  |  |  Branch (942:24): [True: 0, Folded]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  943|  4.95M|         : -1)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |               #define TBL0(x)  TBL(x),  TBL((x) + 1),   TBL((x) + 2),   TBL((x) + 3)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  940|  4.95M|        (  x >= '0' && x <= '9' ? x - '0'       \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (940:12): [Folded, False: 4.95M]
  |  |  |  |  |  |  |  |  |  Branch (940:24): [True: 0, Folded]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  941|  4.95M|         : x >= 'a' && x <= 'f' ? x - 'a' + 0xa \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (941:12): [Folded, False: 4.95M]
  |  |  |  |  |  |  |  |  |  Branch (941:24): [True: 0, Folded]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  942|  4.95M|         : x >= 'A' && x <= 'F' ? x - 'A' + 0xa \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (942:12): [Folded, False: 4.95M]
  |  |  |  |  |  |  |  |  |  Branch (942:24): [True: 0, Folded]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  943|  4.95M|         : -1)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |               #define TBL0(x)  TBL(x),  TBL((x) + 1),   TBL((x) + 2),   TBL((x) + 3)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  940|  4.95M|        (  x >= '0' && x <= '9' ? x - '0'       \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (940:12): [Folded, False: 4.95M]
  |  |  |  |  |  |  |  |  |  Branch (940:24): [True: 0, Folded]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  941|  4.95M|         : x >= 'a' && x <= 'f' ? x - 'a' + 0xa \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (941:12): [Folded, False: 4.95M]
  |  |  |  |  |  |  |  |  |  Branch (941:24): [True: 0, Folded]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  942|  4.95M|         : x >= 'A' && x <= 'F' ? x - 'A' + 0xa \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (942:12): [Folded, False: 4.95M]
  |  |  |  |  |  |  |  |  |  Branch (942:24): [True: 0, Folded]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  943|  4.95M|         : -1)
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  ------------------
  |  |               #define TBL2(x) TBL1(x), TBL1((x) + 16), TBL1((x) + 32), TBL1((x) + 48)
  |  |  ------------------
  |  |  |  |  945|  4.95M|#define TBL1(x) TBL0(x), TBL0((x) + 4),  TBL0((x) + 8),  TBL0((x) + 12)
  |  |  |  |  ------------------
  |  |  |  |  |  |  944|  4.95M|#define TBL0(x)  TBL(x),  TBL((x) + 1),   TBL((x) + 2),   TBL((x) + 3)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  940|  4.95M|        (  x >= '0' && x <= '9' ? x - '0'       \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (940:12): [Folded, False: 4.95M]
  |  |  |  |  |  |  |  |  |  Branch (940:24): [True: 0, Folded]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  941|  4.95M|         : x >= 'a' && x <= 'f' ? x - 'a' + 0xa \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (941:12): [Folded, False: 4.95M]
  |  |  |  |  |  |  |  |  |  Branch (941:24): [True: 0, Folded]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  942|  4.95M|         : x >= 'A' && x <= 'F' ? x - 'A' + 0xa \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (942:12): [Folded, False: 4.95M]
  |  |  |  |  |  |  |  |  |  Branch (942:24): [True: 0, Folded]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  943|  4.95M|         : -1)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |               #define TBL0(x)  TBL(x),  TBL((x) + 1),   TBL((x) + 2),   TBL((x) + 3)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  940|  4.95M|        (  x >= '0' && x <= '9' ? x - '0'       \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (940:12): [Folded, False: 4.95M]
  |  |  |  |  |  |  |  |  |  Branch (940:24): [True: 0, Folded]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  941|  4.95M|         : x >= 'a' && x <= 'f' ? x - 'a' + 0xa \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (941:12): [Folded, False: 4.95M]
  |  |  |  |  |  |  |  |  |  Branch (941:24): [True: 0, Folded]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  942|  4.95M|         : x >= 'A' && x <= 'F' ? x - 'A' + 0xa \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (942:12): [Folded, False: 4.95M]
  |  |  |  |  |  |  |  |  |  Branch (942:24): [True: 0, Folded]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  943|  4.95M|         : -1)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |               #define TBL0(x)  TBL(x),  TBL((x) + 1),   TBL((x) + 2),   TBL((x) + 3)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  940|  4.95M|        (  x >= '0' && x <= '9' ? x - '0'       \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (940:12): [Folded, False: 4.95M]
  |  |  |  |  |  |  |  |  |  Branch (940:24): [True: 0, Folded]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  941|  4.95M|         : x >= 'a' && x <= 'f' ? x - 'a' + 0xa \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (941:12): [Folded, False: 4.95M]
  |  |  |  |  |  |  |  |  |  Branch (941:24): [True: 0, Folded]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  942|  4.95M|         : x >= 'A' && x <= 'F' ? x - 'A' + 0xa \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (942:12): [Folded, False: 4.95M]
  |  |  |  |  |  |  |  |  |  Branch (942:24): [True: 0, Folded]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  943|  4.95M|         : -1)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |               #define TBL0(x)  TBL(x),  TBL((x) + 1),   TBL((x) + 2),   TBL((x) + 3)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  940|  4.95M|        (  x >= '0' && x <= '9' ? x - '0'       \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (940:12): [Folded, False: 4.95M]
  |  |  |  |  |  |  |  |  |  Branch (940:24): [True: 0, Folded]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  941|  4.95M|         : x >= 'a' && x <= 'f' ? x - 'a' + 0xa \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (941:12): [Folded, False: 4.95M]
  |  |  |  |  |  |  |  |  |  Branch (941:24): [True: 0, Folded]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  942|  4.95M|         : x >= 'A' && x <= 'F' ? x - 'A' + 0xa \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (942:12): [Folded, False: 4.95M]
  |  |  |  |  |  |  |  |  |  Branch (942:24): [True: 0, Folded]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  943|  4.95M|         : -1)
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  |  |               #define TBL1(x) TBL0(x), TBL0((x) + 4),  TBL0((x) + 8),  TBL0((x) + 12)
  |  |  |  |  ------------------
  |  |  |  |  |  |  944|  4.95M|#define TBL0(x)  TBL(x),  TBL((x) + 1),   TBL((x) + 2),   TBL((x) + 3)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  940|  4.95M|        (  x >= '0' && x <= '9' ? x - '0'       \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (940:12): [Folded, False: 4.95M]
  |  |  |  |  |  |  |  |  |  Branch (940:24): [True: 0, Folded]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  941|  4.95M|         : x >= 'a' && x <= 'f' ? x - 'a' + 0xa \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (941:12): [Folded, False: 4.95M]
  |  |  |  |  |  |  |  |  |  Branch (941:24): [True: 0, Folded]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  942|  4.95M|         : x >= 'A' && x <= 'F' ? x - 'A' + 0xa \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (942:12): [Folded, False: 4.95M]
  |  |  |  |  |  |  |  |  |  Branch (942:24): [True: 0, Folded]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  943|  4.95M|         : -1)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |               #define TBL0(x)  TBL(x),  TBL((x) + 1),   TBL((x) + 2),   TBL((x) + 3)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  940|  4.95M|        (  x >= '0' && x <= '9' ? x - '0'       \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (940:12): [Folded, False: 4.95M]
  |  |  |  |  |  |  |  |  |  Branch (940:24): [True: 0, Folded]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  941|  4.95M|         : x >= 'a' && x <= 'f' ? x - 'a' + 0xa \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (941:12): [Folded, False: 4.95M]
  |  |  |  |  |  |  |  |  |  Branch (941:24): [True: 0, Folded]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  942|  4.95M|         : x >= 'A' && x <= 'F' ? x - 'A' + 0xa \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (942:12): [Folded, False: 4.95M]
  |  |  |  |  |  |  |  |  |  Branch (942:24): [True: 0, Folded]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  943|  4.95M|         : -1)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |               #define TBL0(x)  TBL(x),  TBL((x) + 1),   TBL((x) + 2),   TBL((x) + 3)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  940|  4.95M|        (  x >= '0' && x <= '9' ? x - '0'       \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (940:12): [Folded, False: 4.95M]
  |  |  |  |  |  |  |  |  |  Branch (940:24): [True: 0, Folded]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  941|  4.95M|         : x >= 'a' && x <= 'f' ? x - 'a' + 0xa \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (941:12): [Folded, False: 4.95M]
  |  |  |  |  |  |  |  |  |  Branch (941:24): [True: 0, Folded]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  942|  4.95M|         : x >= 'A' && x <= 'F' ? x - 'A' + 0xa \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (942:12): [Folded, False: 4.95M]
  |  |  |  |  |  |  |  |  |  Branch (942:24): [True: 0, Folded]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  943|  4.95M|         : -1)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |               #define TBL0(x)  TBL(x),  TBL((x) + 1),   TBL((x) + 2),   TBL((x) + 3)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  940|  4.95M|        (  x >= '0' && x <= '9' ? x - '0'       \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (940:12): [Folded, False: 4.95M]
  |  |  |  |  |  |  |  |  |  Branch (940:24): [True: 0, Folded]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  941|  4.95M|         : x >= 'a' && x <= 'f' ? x - 'a' + 0xa \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (941:12): [Folded, False: 4.95M]
  |  |  |  |  |  |  |  |  |  Branch (941:24): [True: 0, Folded]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  942|  4.95M|         : x >= 'A' && x <= 'F' ? x - 'A' + 0xa \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (942:12): [Folded, False: 4.95M]
  |  |  |  |  |  |  |  |  |  Branch (942:24): [True: 0, Folded]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  943|  4.95M|         : -1)
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  |  |               #define TBL1(x) TBL0(x), TBL0((x) + 4),  TBL0((x) + 8),  TBL0((x) + 12)
  |  |  |  |  ------------------
  |  |  |  |  |  |  944|  4.95M|#define TBL0(x)  TBL(x),  TBL((x) + 1),   TBL((x) + 2),   TBL((x) + 3)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  940|  4.95M|        (  x >= '0' && x <= '9' ? x - '0'       \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (940:12): [Folded, False: 4.95M]
  |  |  |  |  |  |  |  |  |  Branch (940:24): [True: 0, Folded]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  941|  4.95M|         : x >= 'a' && x <= 'f' ? x - 'a' + 0xa \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (941:12): [Folded, False: 4.95M]
  |  |  |  |  |  |  |  |  |  Branch (941:24): [True: 0, Folded]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  942|  4.95M|         : x >= 'A' && x <= 'F' ? x - 'A' + 0xa \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (942:12): [Folded, False: 4.95M]
  |  |  |  |  |  |  |  |  |  Branch (942:24): [True: 0, Folded]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  943|  4.95M|         : -1)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |               #define TBL0(x)  TBL(x),  TBL((x) + 1),   TBL((x) + 2),   TBL((x) + 3)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  940|  4.95M|        (  x >= '0' && x <= '9' ? x - '0'       \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (940:12): [Folded, False: 4.95M]
  |  |  |  |  |  |  |  |  |  Branch (940:24): [True: 0, Folded]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  941|  4.95M|         : x >= 'a' && x <= 'f' ? x - 'a' + 0xa \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (941:12): [Folded, False: 4.95M]
  |  |  |  |  |  |  |  |  |  Branch (941:24): [True: 0, Folded]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  942|  4.95M|         : x >= 'A' && x <= 'F' ? x - 'A' + 0xa \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (942:12): [Folded, False: 4.95M]
  |  |  |  |  |  |  |  |  |  Branch (942:24): [True: 0, Folded]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  943|  4.95M|         : -1)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |               #define TBL0(x)  TBL(x),  TBL((x) + 1),   TBL((x) + 2),   TBL((x) + 3)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  940|  4.95M|        (  x >= '0' && x <= '9' ? x - '0'       \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (940:12): [Folded, False: 4.95M]
  |  |  |  |  |  |  |  |  |  Branch (940:24): [True: 0, Folded]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  941|  4.95M|         : x >= 'a' && x <= 'f' ? x - 'a' + 0xa \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (941:12): [Folded, False: 4.95M]
  |  |  |  |  |  |  |  |  |  Branch (941:24): [True: 0, Folded]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  942|  4.95M|         : x >= 'A' && x <= 'F' ? x - 'A' + 0xa \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (942:12): [Folded, False: 4.95M]
  |  |  |  |  |  |  |  |  |  Branch (942:24): [True: 0, Folded]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  943|  4.95M|         : -1)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |               #define TBL0(x)  TBL(x),  TBL((x) + 1),   TBL((x) + 2),   TBL((x) + 3)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  940|  4.95M|        (  x >= '0' && x <= '9' ? x - '0'       \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (940:12): [Folded, False: 4.95M]
  |  |  |  |  |  |  |  |  |  Branch (940:24): [True: 0, Folded]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  941|  4.95M|         : x >= 'a' && x <= 'f' ? x - 'a' + 0xa \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (941:12): [Folded, False: 4.95M]
  |  |  |  |  |  |  |  |  |  Branch (941:24): [True: 0, Folded]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  942|  4.95M|         : x >= 'A' && x <= 'F' ? x - 'A' + 0xa \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (942:12): [Folded, False: 4.95M]
  |  |  |  |  |  |  |  |  |  Branch (942:24): [True: 0, Folded]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  943|  4.95M|         : -1)
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  |  |               #define TBL1(x) TBL0(x), TBL0((x) + 4),  TBL0((x) + 8),  TBL0((x) + 12)
  |  |  |  |  ------------------
  |  |  |  |  |  |  944|  4.95M|#define TBL0(x)  TBL(x),  TBL((x) + 1),   TBL((x) + 2),   TBL((x) + 3)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  940|  4.95M|        (  x >= '0' && x <= '9' ? x - '0'       \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (940:12): [Folded, False: 4.95M]
  |  |  |  |  |  |  |  |  |  Branch (940:24): [True: 0, Folded]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  941|  4.95M|         : x >= 'a' && x <= 'f' ? x - 'a' + 0xa \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (941:12): [Folded, False: 4.95M]
  |  |  |  |  |  |  |  |  |  Branch (941:24): [True: 0, Folded]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  942|  4.95M|         : x >= 'A' && x <= 'F' ? x - 'A' + 0xa \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (942:12): [Folded, False: 4.95M]
  |  |  |  |  |  |  |  |  |  Branch (942:24): [True: 0, Folded]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  943|  4.95M|         : -1)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |               #define TBL0(x)  TBL(x),  TBL((x) + 1),   TBL((x) + 2),   TBL((x) + 3)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  940|  4.95M|        (  x >= '0' && x <= '9' ? x - '0'       \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (940:12): [Folded, False: 4.95M]
  |  |  |  |  |  |  |  |  |  Branch (940:24): [True: 0, Folded]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  941|  4.95M|         : x >= 'a' && x <= 'f' ? x - 'a' + 0xa \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (941:12): [Folded, False: 4.95M]
  |  |  |  |  |  |  |  |  |  Branch (941:24): [True: 0, Folded]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  942|  4.95M|         : x >= 'A' && x <= 'F' ? x - 'A' + 0xa \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (942:12): [Folded, False: 4.95M]
  |  |  |  |  |  |  |  |  |  Branch (942:24): [True: 0, Folded]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  943|  4.95M|         : -1)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |               #define TBL0(x)  TBL(x),  TBL((x) + 1),   TBL((x) + 2),   TBL((x) + 3)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  940|  4.95M|        (  x >= '0' && x <= '9' ? x - '0'       \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (940:12): [Folded, False: 4.95M]
  |  |  |  |  |  |  |  |  |  Branch (940:24): [True: 0, Folded]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  941|  4.95M|         : x >= 'a' && x <= 'f' ? x - 'a' + 0xa \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (941:12): [Folded, False: 4.95M]
  |  |  |  |  |  |  |  |  |  Branch (941:24): [True: 0, Folded]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  942|  4.95M|         : x >= 'A' && x <= 'F' ? x - 'A' + 0xa \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (942:12): [Folded, False: 4.95M]
  |  |  |  |  |  |  |  |  |  Branch (942:24): [True: 0, Folded]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  943|  4.95M|         : -1)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |               #define TBL0(x)  TBL(x),  TBL((x) + 1),   TBL((x) + 2),   TBL((x) + 3)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  940|  4.95M|        (  x >= '0' && x <= '9' ? x - '0'       \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (940:12): [Folded, False: 4.95M]
  |  |  |  |  |  |  |  |  |  Branch (940:24): [True: 0, Folded]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  941|  4.95M|         : x >= 'a' && x <= 'f' ? x - 'a' + 0xa \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (941:12): [Folded, False: 4.95M]
  |  |  |  |  |  |  |  |  |  Branch (941:24): [True: 0, Folded]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  942|  4.95M|         : x >= 'A' && x <= 'F' ? x - 'A' + 0xa \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (942:12): [Folded, False: 4.95M]
  |  |  |  |  |  |  |  |  |  Branch (942:24): [True: 0, Folded]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  943|  4.95M|         : -1)
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  ------------------
  |  |               #define TBL2(x) TBL1(x), TBL1((x) + 16), TBL1((x) + 32), TBL1((x) + 48)
  |  |  ------------------
  |  |  |  |  945|  4.95M|#define TBL1(x) TBL0(x), TBL0((x) + 4),  TBL0((x) + 8),  TBL0((x) + 12)
  |  |  |  |  ------------------
  |  |  |  |  |  |  944|  4.95M|#define TBL0(x)  TBL(x),  TBL((x) + 1),   TBL((x) + 2),   TBL((x) + 3)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  940|  4.95M|        (  x >= '0' && x <= '9' ? x - '0'       \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (940:12): [Folded, False: 4.95M]
  |  |  |  |  |  |  |  |  |  Branch (940:24): [True: 0, Folded]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  941|  4.95M|         : x >= 'a' && x <= 'f' ? x - 'a' + 0xa \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (941:12): [Folded, False: 4.95M]
  |  |  |  |  |  |  |  |  |  Branch (941:24): [True: 0, Folded]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  942|  4.95M|         : x >= 'A' && x <= 'F' ? x - 'A' + 0xa \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (942:12): [Folded, False: 4.95M]
  |  |  |  |  |  |  |  |  |  Branch (942:24): [True: 0, Folded]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  943|  4.95M|         : -1)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |               #define TBL0(x)  TBL(x),  TBL((x) + 1),   TBL((x) + 2),   TBL((x) + 3)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  940|  4.95M|        (  x >= '0' && x <= '9' ? x - '0'       \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (940:12): [Folded, False: 4.95M]
  |  |  |  |  |  |  |  |  |  Branch (940:24): [True: 0, Folded]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  941|  4.95M|         : x >= 'a' && x <= 'f' ? x - 'a' + 0xa \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (941:12): [Folded, False: 4.95M]
  |  |  |  |  |  |  |  |  |  Branch (941:24): [True: 0, Folded]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  942|  4.95M|         : x >= 'A' && x <= 'F' ? x - 'A' + 0xa \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (942:12): [Folded, False: 4.95M]
  |  |  |  |  |  |  |  |  |  Branch (942:24): [True: 0, Folded]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  943|  4.95M|         : -1)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |               #define TBL0(x)  TBL(x),  TBL((x) + 1),   TBL((x) + 2),   TBL((x) + 3)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  940|  4.95M|        (  x >= '0' && x <= '9' ? x - '0'       \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (940:12): [Folded, False: 4.95M]
  |  |  |  |  |  |  |  |  |  Branch (940:24): [True: 0, Folded]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  941|  4.95M|         : x >= 'a' && x <= 'f' ? x - 'a' + 0xa \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (941:12): [Folded, False: 4.95M]
  |  |  |  |  |  |  |  |  |  Branch (941:24): [True: 0, Folded]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  942|  4.95M|         : x >= 'A' && x <= 'F' ? x - 'A' + 0xa \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (942:12): [Folded, False: 4.95M]
  |  |  |  |  |  |  |  |  |  Branch (942:24): [True: 0, Folded]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  943|  4.95M|         : -1)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |               #define TBL0(x)  TBL(x),  TBL((x) + 1),   TBL((x) + 2),   TBL((x) + 3)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  940|  4.95M|        (  x >= '0' && x <= '9' ? x - '0'       \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (940:12): [Folded, False: 4.95M]
  |  |  |  |  |  |  |  |  |  Branch (940:24): [True: 0, Folded]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  941|  4.95M|         : x >= 'a' && x <= 'f' ? x - 'a' + 0xa \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (941:12): [Folded, False: 4.95M]
  |  |  |  |  |  |  |  |  |  Branch (941:24): [True: 0, Folded]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  942|  4.95M|         : x >= 'A' && x <= 'F' ? x - 'A' + 0xa \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (942:12): [Folded, False: 4.95M]
  |  |  |  |  |  |  |  |  |  Branch (942:24): [True: 0, Folded]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  943|  4.95M|         : -1)
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  |  |               #define TBL1(x) TBL0(x), TBL0((x) + 4),  TBL0((x) + 8),  TBL0((x) + 12)
  |  |  |  |  ------------------
  |  |  |  |  |  |  944|  4.95M|#define TBL0(x)  TBL(x),  TBL((x) + 1),   TBL((x) + 2),   TBL((x) + 3)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  940|  4.95M|        (  x >= '0' && x <= '9' ? x - '0'       \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (940:12): [Folded, False: 4.95M]
  |  |  |  |  |  |  |  |  |  Branch (940:24): [True: 0, Folded]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  941|  4.95M|         : x >= 'a' && x <= 'f' ? x - 'a' + 0xa \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (941:12): [Folded, False: 4.95M]
  |  |  |  |  |  |  |  |  |  Branch (941:24): [True: 0, Folded]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  942|  4.95M|         : x >= 'A' && x <= 'F' ? x - 'A' + 0xa \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (942:12): [Folded, False: 4.95M]
  |  |  |  |  |  |  |  |  |  Branch (942:24): [True: 0, Folded]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  943|  4.95M|         : -1)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |               #define TBL0(x)  TBL(x),  TBL((x) + 1),   TBL((x) + 2),   TBL((x) + 3)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  940|  4.95M|        (  x >= '0' && x <= '9' ? x - '0'       \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (940:12): [Folded, False: 4.95M]
  |  |  |  |  |  |  |  |  |  Branch (940:24): [True: 0, Folded]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  941|  4.95M|         : x >= 'a' && x <= 'f' ? x - 'a' + 0xa \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (941:12): [Folded, False: 4.95M]
  |  |  |  |  |  |  |  |  |  Branch (941:24): [True: 0, Folded]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  942|  4.95M|         : x >= 'A' && x <= 'F' ? x - 'A' + 0xa \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (942:12): [Folded, False: 4.95M]
  |  |  |  |  |  |  |  |  |  Branch (942:24): [True: 0, Folded]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  943|  4.95M|         : -1)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |               #define TBL0(x)  TBL(x),  TBL((x) + 1),   TBL((x) + 2),   TBL((x) + 3)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  940|  4.95M|        (  x >= '0' && x <= '9' ? x - '0'       \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (940:12): [Folded, False: 4.95M]
  |  |  |  |  |  |  |  |  |  Branch (940:24): [True: 0, Folded]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  941|  4.95M|         : x >= 'a' && x <= 'f' ? x - 'a' + 0xa \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (941:12): [Folded, False: 4.95M]
  |  |  |  |  |  |  |  |  |  Branch (941:24): [True: 0, Folded]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  942|  4.95M|         : x >= 'A' && x <= 'F' ? x - 'A' + 0xa \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (942:12): [Folded, False: 4.95M]
  |  |  |  |  |  |  |  |  |  Branch (942:24): [True: 0, Folded]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  943|  4.95M|         : -1)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |               #define TBL0(x)  TBL(x),  TBL((x) + 1),   TBL((x) + 2),   TBL((x) + 3)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  940|  4.95M|        (  x >= '0' && x <= '9' ? x - '0'       \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (940:12): [Folded, False: 4.95M]
  |  |  |  |  |  |  |  |  |  Branch (940:24): [True: 0, Folded]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  941|  4.95M|         : x >= 'a' && x <= 'f' ? x - 'a' + 0xa \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (941:12): [Folded, False: 4.95M]
  |  |  |  |  |  |  |  |  |  Branch (941:24): [True: 0, Folded]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  942|  4.95M|         : x >= 'A' && x <= 'F' ? x - 'A' + 0xa \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (942:12): [Folded, False: 4.95M]
  |  |  |  |  |  |  |  |  |  Branch (942:24): [True: 0, Folded]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  943|  4.95M|         : -1)
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  |  |               #define TBL1(x) TBL0(x), TBL0((x) + 4),  TBL0((x) + 8),  TBL0((x) + 12)
  |  |  |  |  ------------------
  |  |  |  |  |  |  944|  4.95M|#define TBL0(x)  TBL(x),  TBL((x) + 1),   TBL((x) + 2),   TBL((x) + 3)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  940|  4.95M|        (  x >= '0' && x <= '9' ? x - '0'       \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (940:12): [Folded, False: 4.95M]
  |  |  |  |  |  |  |  |  |  Branch (940:24): [True: 0, Folded]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  941|  4.95M|         : x >= 'a' && x <= 'f' ? x - 'a' + 0xa \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (941:12): [Folded, False: 4.95M]
  |  |  |  |  |  |  |  |  |  Branch (941:24): [True: 0, Folded]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  942|  4.95M|         : x >= 'A' && x <= 'F' ? x - 'A' + 0xa \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (942:12): [Folded, False: 4.95M]
  |  |  |  |  |  |  |  |  |  Branch (942:24): [True: 0, Folded]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  943|  4.95M|         : -1)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |               #define TBL0(x)  TBL(x),  TBL((x) + 1),   TBL((x) + 2),   TBL((x) + 3)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  940|  4.95M|        (  x >= '0' && x <= '9' ? x - '0'       \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (940:12): [Folded, False: 4.95M]
  |  |  |  |  |  |  |  |  |  Branch (940:24): [True: 0, Folded]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  941|  4.95M|         : x >= 'a' && x <= 'f' ? x - 'a' + 0xa \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (941:12): [Folded, False: 4.95M]
  |  |  |  |  |  |  |  |  |  Branch (941:24): [True: 0, Folded]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  942|  4.95M|         : x >= 'A' && x <= 'F' ? x - 'A' + 0xa \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (942:12): [Folded, False: 4.95M]
  |  |  |  |  |  |  |  |  |  Branch (942:24): [True: 0, Folded]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  943|  4.95M|         : -1)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |               #define TBL0(x)  TBL(x),  TBL((x) + 1),   TBL((x) + 2),   TBL((x) + 3)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  940|  4.95M|        (  x >= '0' && x <= '9' ? x - '0'       \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (940:12): [Folded, False: 4.95M]
  |  |  |  |  |  |  |  |  |  Branch (940:24): [True: 0, Folded]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  941|  4.95M|         : x >= 'a' && x <= 'f' ? x - 'a' + 0xa \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (941:12): [Folded, False: 4.95M]
  |  |  |  |  |  |  |  |  |  Branch (941:24): [True: 0, Folded]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  942|  4.95M|         : x >= 'A' && x <= 'F' ? x - 'A' + 0xa \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (942:12): [Folded, False: 4.95M]
  |  |  |  |  |  |  |  |  |  Branch (942:24): [True: 0, Folded]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  943|  4.95M|         : -1)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |               #define TBL0(x)  TBL(x),  TBL((x) + 1),   TBL((x) + 2),   TBL((x) + 3)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  940|  4.95M|        (  x >= '0' && x <= '9' ? x - '0'       \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (940:12): [Folded, False: 4.95M]
  |  |  |  |  |  |  |  |  |  Branch (940:24): [True: 0, Folded]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  941|  4.95M|         : x >= 'a' && x <= 'f' ? x - 'a' + 0xa \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (941:12): [Folded, False: 4.95M]
  |  |  |  |  |  |  |  |  |  Branch (941:24): [True: 0, Folded]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  942|  4.95M|         : x >= 'A' && x <= 'F' ? x - 'A' + 0xa \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (942:12): [Folded, False: 4.95M]
  |  |  |  |  |  |  |  |  |  Branch (942:24): [True: 0, Folded]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  943|  4.95M|         : -1)
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  |  |               #define TBL1(x) TBL0(x), TBL0((x) + 4),  TBL0((x) + 8),  TBL0((x) + 12)
  |  |  |  |  ------------------
  |  |  |  |  |  |  944|  4.95M|#define TBL0(x)  TBL(x),  TBL((x) + 1),   TBL((x) + 2),   TBL((x) + 3)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  940|  4.95M|        (  x >= '0' && x <= '9' ? x - '0'       \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (940:12): [Folded, False: 4.95M]
  |  |  |  |  |  |  |  |  |  Branch (940:24): [True: 0, Folded]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  941|  4.95M|         : x >= 'a' && x <= 'f' ? x - 'a' + 0xa \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (941:12): [Folded, False: 4.95M]
  |  |  |  |  |  |  |  |  |  Branch (941:24): [True: 0, Folded]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  942|  4.95M|         : x >= 'A' && x <= 'F' ? x - 'A' + 0xa \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (942:12): [Folded, False: 4.95M]
  |  |  |  |  |  |  |  |  |  Branch (942:24): [True: 0, Folded]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  943|  4.95M|         : -1)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |               #define TBL0(x)  TBL(x),  TBL((x) + 1),   TBL((x) + 2),   TBL((x) + 3)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  940|  4.95M|        (  x >= '0' && x <= '9' ? x - '0'       \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (940:12): [Folded, False: 4.95M]
  |  |  |  |  |  |  |  |  |  Branch (940:24): [True: 0, Folded]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  941|  4.95M|         : x >= 'a' && x <= 'f' ? x - 'a' + 0xa \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (941:12): [Folded, False: 4.95M]
  |  |  |  |  |  |  |  |  |  Branch (941:24): [True: 0, Folded]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  942|  4.95M|         : x >= 'A' && x <= 'F' ? x - 'A' + 0xa \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (942:12): [Folded, False: 4.95M]
  |  |  |  |  |  |  |  |  |  Branch (942:24): [True: 0, Folded]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  943|  4.95M|         : -1)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |               #define TBL0(x)  TBL(x),  TBL((x) + 1),   TBL((x) + 2),   TBL((x) + 3)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  940|  4.95M|        (  x >= '0' && x <= '9' ? x - '0'       \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (940:12): [Folded, False: 4.95M]
  |  |  |  |  |  |  |  |  |  Branch (940:24): [True: 0, Folded]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  941|  4.95M|         : x >= 'a' && x <= 'f' ? x - 'a' + 0xa \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (941:12): [Folded, False: 4.95M]
  |  |  |  |  |  |  |  |  |  Branch (941:24): [True: 0, Folded]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  942|  4.95M|         : x >= 'A' && x <= 'F' ? x - 'A' + 0xa \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (942:12): [Folded, False: 4.95M]
  |  |  |  |  |  |  |  |  |  Branch (942:24): [True: 0, Folded]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  943|  4.95M|         : -1)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |               #define TBL0(x)  TBL(x),  TBL((x) + 1),   TBL((x) + 2),   TBL((x) + 3)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  940|  4.95M|        (  x >= '0' && x <= '9' ? x - '0'       \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (940:12): [Folded, False: 4.95M]
  |  |  |  |  |  |  |  |  |  Branch (940:24): [True: 0, Folded]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  941|  4.95M|         : x >= 'a' && x <= 'f' ? x - 'a' + 0xa \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (941:12): [Folded, False: 4.95M]
  |  |  |  |  |  |  |  |  |  Branch (941:24): [True: 0, Folded]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  942|  4.95M|         : x >= 'A' && x <= 'F' ? x - 'A' + 0xa \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (942:12): [Folded, False: 4.95M]
  |  |  |  |  |  |  |  |  |  Branch (942:24): [True: 0, Folded]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  943|  4.95M|         : -1)
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  ------------------
  |  |               #define TBL2(x) TBL1(x), TBL1((x) + 16), TBL1((x) + 32), TBL1((x) + 48)
  |  |  ------------------
  |  |  |  |  945|  4.95M|#define TBL1(x) TBL0(x), TBL0((x) + 4),  TBL0((x) + 8),  TBL0((x) + 12)
  |  |  |  |  ------------------
  |  |  |  |  |  |  944|  4.95M|#define TBL0(x)  TBL(x),  TBL((x) + 1),   TBL((x) + 2),   TBL((x) + 3)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  940|  4.95M|        (  x >= '0' && x <= '9' ? x - '0'       \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (940:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (940:24): [True: 0, Folded]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  941|  4.95M|         : x >= 'a' && x <= 'f' ? x - 'a' + 0xa \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (941:12): [Folded, False: 4.95M]
  |  |  |  |  |  |  |  |  |  Branch (941:24): [True: 0, Folded]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  942|  4.95M|         : x >= 'A' && x <= 'F' ? x - 'A' + 0xa \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (942:12): [Folded, False: 4.95M]
  |  |  |  |  |  |  |  |  |  Branch (942:24): [True: 0, Folded]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  943|  4.95M|         : -1)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |               #define TBL0(x)  TBL(x),  TBL((x) + 1),   TBL((x) + 2),   TBL((x) + 3)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  940|  4.95M|        (  x >= '0' && x <= '9' ? x - '0'       \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (940:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (940:24): [True: 0, Folded]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  941|  4.95M|         : x >= 'a' && x <= 'f' ? x - 'a' + 0xa \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (941:12): [Folded, False: 4.95M]
  |  |  |  |  |  |  |  |  |  Branch (941:24): [True: 0, Folded]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  942|  4.95M|         : x >= 'A' && x <= 'F' ? x - 'A' + 0xa \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (942:12): [Folded, False: 4.95M]
  |  |  |  |  |  |  |  |  |  Branch (942:24): [True: 0, Folded]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  943|  4.95M|         : -1)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |               #define TBL0(x)  TBL(x),  TBL((x) + 1),   TBL((x) + 2),   TBL((x) + 3)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  940|  4.95M|        (  x >= '0' && x <= '9' ? x - '0'       \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (940:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (940:24): [True: 0, Folded]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  941|  4.95M|         : x >= 'a' && x <= 'f' ? x - 'a' + 0xa \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (941:12): [Folded, False: 4.95M]
  |  |  |  |  |  |  |  |  |  Branch (941:24): [True: 0, Folded]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  942|  4.95M|         : x >= 'A' && x <= 'F' ? x - 'A' + 0xa \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (942:12): [Folded, False: 4.95M]
  |  |  |  |  |  |  |  |  |  Branch (942:24): [True: 0, Folded]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  943|  4.95M|         : -1)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |               #define TBL0(x)  TBL(x),  TBL((x) + 1),   TBL((x) + 2),   TBL((x) + 3)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  940|  4.95M|        (  x >= '0' && x <= '9' ? x - '0'       \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (940:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (940:24): [True: 0, Folded]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  941|  4.95M|         : x >= 'a' && x <= 'f' ? x - 'a' + 0xa \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (941:12): [Folded, False: 4.95M]
  |  |  |  |  |  |  |  |  |  Branch (941:24): [True: 0, Folded]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  942|  4.95M|         : x >= 'A' && x <= 'F' ? x - 'A' + 0xa \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (942:12): [Folded, False: 4.95M]
  |  |  |  |  |  |  |  |  |  Branch (942:24): [True: 0, Folded]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  943|  4.95M|         : -1)
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  |  |               #define TBL1(x) TBL0(x), TBL0((x) + 4),  TBL0((x) + 8),  TBL0((x) + 12)
  |  |  |  |  ------------------
  |  |  |  |  |  |  944|  4.95M|#define TBL0(x)  TBL(x),  TBL((x) + 1),   TBL((x) + 2),   TBL((x) + 3)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  940|  4.95M|        (  x >= '0' && x <= '9' ? x - '0'       \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (940:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (940:24): [True: 0, Folded]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  941|  4.95M|         : x >= 'a' && x <= 'f' ? x - 'a' + 0xa \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (941:12): [Folded, False: 4.95M]
  |  |  |  |  |  |  |  |  |  Branch (941:24): [True: 0, Folded]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  942|  4.95M|         : x >= 'A' && x <= 'F' ? x - 'A' + 0xa \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (942:12): [Folded, False: 4.95M]
  |  |  |  |  |  |  |  |  |  Branch (942:24): [True: 0, Folded]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  943|  4.95M|         : -1)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |               #define TBL0(x)  TBL(x),  TBL((x) + 1),   TBL((x) + 2),   TBL((x) + 3)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  940|  4.95M|        (  x >= '0' && x <= '9' ? x - '0'       \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (940:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (940:24): [True: 0, Folded]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  941|  4.95M|         : x >= 'a' && x <= 'f' ? x - 'a' + 0xa \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (941:12): [Folded, False: 4.95M]
  |  |  |  |  |  |  |  |  |  Branch (941:24): [True: 0, Folded]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  942|  4.95M|         : x >= 'A' && x <= 'F' ? x - 'A' + 0xa \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (942:12): [Folded, False: 4.95M]
  |  |  |  |  |  |  |  |  |  Branch (942:24): [True: 0, Folded]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  943|  4.95M|         : -1)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |               #define TBL0(x)  TBL(x),  TBL((x) + 1),   TBL((x) + 2),   TBL((x) + 3)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  940|  4.95M|        (  x >= '0' && x <= '9' ? x - '0'       \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (940:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (940:24): [True: 0, Folded]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  941|  4.95M|         : x >= 'a' && x <= 'f' ? x - 'a' + 0xa \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (941:12): [Folded, False: 4.95M]
  |  |  |  |  |  |  |  |  |  Branch (941:24): [True: 0, Folded]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  942|  4.95M|         : x >= 'A' && x <= 'F' ? x - 'A' + 0xa \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (942:12): [Folded, False: 4.95M]
  |  |  |  |  |  |  |  |  |  Branch (942:24): [True: 0, Folded]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  943|  4.95M|         : -1)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |               #define TBL0(x)  TBL(x),  TBL((x) + 1),   TBL((x) + 2),   TBL((x) + 3)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  940|  4.95M|        (  x >= '0' && x <= '9' ? x - '0'       \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (940:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (940:24): [True: 0, Folded]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  941|  4.95M|         : x >= 'a' && x <= 'f' ? x - 'a' + 0xa \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (941:12): [Folded, False: 4.95M]
  |  |  |  |  |  |  |  |  |  Branch (941:24): [True: 0, Folded]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  942|  4.95M|         : x >= 'A' && x <= 'F' ? x - 'A' + 0xa \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (942:12): [Folded, False: 4.95M]
  |  |  |  |  |  |  |  |  |  Branch (942:24): [True: 0, Folded]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  943|  4.95M|         : -1)
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  |  |               #define TBL1(x) TBL0(x), TBL0((x) + 4),  TBL0((x) + 8),  TBL0((x) + 12)
  |  |  |  |  ------------------
  |  |  |  |  |  |  944|  4.95M|#define TBL0(x)  TBL(x),  TBL((x) + 1),   TBL((x) + 2),   TBL((x) + 3)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  940|  4.95M|        (  x >= '0' && x <= '9' ? x - '0'       \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (940:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (940:24): [True: 0, Folded]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  941|  4.95M|         : x >= 'a' && x <= 'f' ? x - 'a' + 0xa \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (941:12): [Folded, False: 4.95M]
  |  |  |  |  |  |  |  |  |  Branch (941:24): [True: 0, Folded]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  942|  4.95M|         : x >= 'A' && x <= 'F' ? x - 'A' + 0xa \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (942:12): [Folded, False: 4.95M]
  |  |  |  |  |  |  |  |  |  Branch (942:24): [True: 0, Folded]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  943|  4.95M|         : -1)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |               #define TBL0(x)  TBL(x),  TBL((x) + 1),   TBL((x) + 2),   TBL((x) + 3)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  940|  4.95M|        (  x >= '0' && x <= '9' ? x - '0'       \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (940:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (940:24): [True: 0, Folded]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  941|  4.95M|         : x >= 'a' && x <= 'f' ? x - 'a' + 0xa \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (941:12): [Folded, False: 4.95M]
  |  |  |  |  |  |  |  |  |  Branch (941:24): [True: 0, Folded]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  942|  4.95M|         : x >= 'A' && x <= 'F' ? x - 'A' + 0xa \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (942:12): [Folded, False: 4.95M]
  |  |  |  |  |  |  |  |  |  Branch (942:24): [True: 0, Folded]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  943|  4.95M|         : -1)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |               #define TBL0(x)  TBL(x),  TBL((x) + 1),   TBL((x) + 2),   TBL((x) + 3)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  940|  4.95M|        (  x >= '0' && x <= '9' ? x - '0'       \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (940:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (940:24): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  941|  4.95M|         : x >= 'a' && x <= 'f' ? x - 'a' + 0xa \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (941:12): [Folded, False: 4.95M]
  |  |  |  |  |  |  |  |  |  Branch (941:24): [True: 0, Folded]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  942|  4.95M|         : x >= 'A' && x <= 'F' ? x - 'A' + 0xa \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (942:12): [Folded, False: 4.95M]
  |  |  |  |  |  |  |  |  |  Branch (942:24): [True: 0, Folded]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  943|  4.95M|         : -1)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |               #define TBL0(x)  TBL(x),  TBL((x) + 1),   TBL((x) + 2),   TBL((x) + 3)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  940|  4.95M|        (  x >= '0' && x <= '9' ? x - '0'       \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (940:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (940:24): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  941|  4.95M|         : x >= 'a' && x <= 'f' ? x - 'a' + 0xa \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (941:12): [Folded, False: 4.95M]
  |  |  |  |  |  |  |  |  |  Branch (941:24): [True: 0, Folded]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  942|  4.95M|         : x >= 'A' && x <= 'F' ? x - 'A' + 0xa \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (942:12): [Folded, False: 4.95M]
  |  |  |  |  |  |  |  |  |  Branch (942:24): [True: 0, Folded]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  943|  4.95M|         : -1)
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  |  |               #define TBL1(x) TBL0(x), TBL0((x) + 4),  TBL0((x) + 8),  TBL0((x) + 12)
  |  |  |  |  ------------------
  |  |  |  |  |  |  944|  4.95M|#define TBL0(x)  TBL(x),  TBL((x) + 1),   TBL((x) + 2),   TBL((x) + 3)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  940|  4.95M|        (  x >= '0' && x <= '9' ? x - '0'       \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (940:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (940:24): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  941|  4.95M|         : x >= 'a' && x <= 'f' ? x - 'a' + 0xa \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (941:12): [Folded, False: 4.95M]
  |  |  |  |  |  |  |  |  |  Branch (941:24): [True: 0, Folded]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  942|  4.95M|         : x >= 'A' && x <= 'F' ? x - 'A' + 0xa \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (942:12): [Folded, False: 4.95M]
  |  |  |  |  |  |  |  |  |  Branch (942:24): [True: 0, Folded]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  943|  4.95M|         : -1)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |               #define TBL0(x)  TBL(x),  TBL((x) + 1),   TBL((x) + 2),   TBL((x) + 3)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  940|  4.95M|        (  x >= '0' && x <= '9' ? x - '0'       \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (940:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (940:24): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  941|  4.95M|         : x >= 'a' && x <= 'f' ? x - 'a' + 0xa \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (941:12): [Folded, False: 4.95M]
  |  |  |  |  |  |  |  |  |  Branch (941:24): [True: 0, Folded]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  942|  4.95M|         : x >= 'A' && x <= 'F' ? x - 'A' + 0xa \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (942:12): [Folded, False: 4.95M]
  |  |  |  |  |  |  |  |  |  Branch (942:24): [True: 0, Folded]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  943|  4.95M|         : -1)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |               #define TBL0(x)  TBL(x),  TBL((x) + 1),   TBL((x) + 2),   TBL((x) + 3)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  940|  4.95M|        (  x >= '0' && x <= '9' ? x - '0'       \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (940:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (940:24): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  941|  4.95M|         : x >= 'a' && x <= 'f' ? x - 'a' + 0xa \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (941:12): [Folded, False: 4.95M]
  |  |  |  |  |  |  |  |  |  Branch (941:24): [True: 0, Folded]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  942|  4.95M|         : x >= 'A' && x <= 'F' ? x - 'A' + 0xa \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (942:12): [Folded, False: 4.95M]
  |  |  |  |  |  |  |  |  |  Branch (942:24): [True: 0, Folded]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  943|  4.95M|         : -1)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |               #define TBL0(x)  TBL(x),  TBL((x) + 1),   TBL((x) + 2),   TBL((x) + 3)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  940|  4.95M|        (  x >= '0' && x <= '9' ? x - '0'       \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (940:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (940:24): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  941|  4.95M|         : x >= 'a' && x <= 'f' ? x - 'a' + 0xa \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (941:12): [Folded, False: 4.95M]
  |  |  |  |  |  |  |  |  |  Branch (941:24): [True: 0, Folded]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  942|  4.95M|         : x >= 'A' && x <= 'F' ? x - 'A' + 0xa \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (942:12): [Folded, False: 4.95M]
  |  |  |  |  |  |  |  |  |  Branch (942:24): [True: 0, Folded]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  943|  4.95M|         : -1)
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
                      TBL2(0), TBL2(64), TBL2(128), TBL2(192)
  ------------------
  |  |  946|  4.95M|#define TBL2(x) TBL1(x), TBL1((x) + 16), TBL1((x) + 32), TBL1((x) + 48)
  |  |  ------------------
  |  |  |  |  945|  4.95M|#define TBL1(x) TBL0(x), TBL0((x) + 4),  TBL0((x) + 8),  TBL0((x) + 12)
  |  |  |  |  ------------------
  |  |  |  |  |  |  944|  4.95M|#define TBL0(x)  TBL(x),  TBL((x) + 1),   TBL((x) + 2),   TBL((x) + 3)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  940|  4.95M|        (  x >= '0' && x <= '9' ? x - '0'       \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (940:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (940:24): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  941|  4.95M|         : x >= 'a' && x <= 'f' ? x - 'a' + 0xa \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (941:12): [Folded, False: 4.95M]
  |  |  |  |  |  |  |  |  |  Branch (941:24): [True: 0, Folded]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  942|  4.95M|         : x >= 'A' && x <= 'F' ? x - 'A' + 0xa \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (942:12): [Folded, False: 4.95M]
  |  |  |  |  |  |  |  |  |  Branch (942:24): [True: 0, Folded]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  943|  4.95M|         : -1)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |               #define TBL0(x)  TBL(x),  TBL((x) + 1),   TBL((x) + 2),   TBL((x) + 3)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  940|  4.95M|        (  x >= '0' && x <= '9' ? x - '0'       \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (940:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (940:24): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  941|  4.95M|         : x >= 'a' && x <= 'f' ? x - 'a' + 0xa \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (941:12): [Folded, False: 4.95M]
  |  |  |  |  |  |  |  |  |  Branch (941:24): [True: 0, Folded]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  942|  4.95M|         : x >= 'A' && x <= 'F' ? x - 'A' + 0xa \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (942:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (942:24): [True: 0, Folded]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  943|  4.95M|         : -1)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |               #define TBL0(x)  TBL(x),  TBL((x) + 1),   TBL((x) + 2),   TBL((x) + 3)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  940|  4.95M|        (  x >= '0' && x <= '9' ? x - '0'       \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (940:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (940:24): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  941|  4.95M|         : x >= 'a' && x <= 'f' ? x - 'a' + 0xa \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (941:12): [Folded, False: 4.95M]
  |  |  |  |  |  |  |  |  |  Branch (941:24): [True: 0, Folded]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  942|  4.95M|         : x >= 'A' && x <= 'F' ? x - 'A' + 0xa \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (942:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (942:24): [True: 0, Folded]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  943|  4.95M|         : -1)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |               #define TBL0(x)  TBL(x),  TBL((x) + 1),   TBL((x) + 2),   TBL((x) + 3)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  940|  4.95M|        (  x >= '0' && x <= '9' ? x - '0'       \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (940:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (940:24): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  941|  4.95M|         : x >= 'a' && x <= 'f' ? x - 'a' + 0xa \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (941:12): [Folded, False: 4.95M]
  |  |  |  |  |  |  |  |  |  Branch (941:24): [True: 0, Folded]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  942|  4.95M|         : x >= 'A' && x <= 'F' ? x - 'A' + 0xa \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (942:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (942:24): [True: 0, Folded]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  943|  4.95M|         : -1)
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  |  |               #define TBL1(x) TBL0(x), TBL0((x) + 4),  TBL0((x) + 8),  TBL0((x) + 12)
  |  |  |  |  ------------------
  |  |  |  |  |  |  944|  4.95M|#define TBL0(x)  TBL(x),  TBL((x) + 1),   TBL((x) + 2),   TBL((x) + 3)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  940|  4.95M|        (  x >= '0' && x <= '9' ? x - '0'       \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (940:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (940:24): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  941|  4.95M|         : x >= 'a' && x <= 'f' ? x - 'a' + 0xa \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (941:12): [Folded, False: 4.95M]
  |  |  |  |  |  |  |  |  |  Branch (941:24): [True: 0, Folded]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  942|  4.95M|         : x >= 'A' && x <= 'F' ? x - 'A' + 0xa \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (942:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (942:24): [True: 0, Folded]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  943|  4.95M|         : -1)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |               #define TBL0(x)  TBL(x),  TBL((x) + 1),   TBL((x) + 2),   TBL((x) + 3)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  940|  4.95M|        (  x >= '0' && x <= '9' ? x - '0'       \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (940:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (940:24): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  941|  4.95M|         : x >= 'a' && x <= 'f' ? x - 'a' + 0xa \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (941:12): [Folded, False: 4.95M]
  |  |  |  |  |  |  |  |  |  Branch (941:24): [True: 0, Folded]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  942|  4.95M|         : x >= 'A' && x <= 'F' ? x - 'A' + 0xa \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (942:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (942:24): [True: 0, Folded]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  943|  4.95M|         : -1)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |               #define TBL0(x)  TBL(x),  TBL((x) + 1),   TBL((x) + 2),   TBL((x) + 3)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  940|  4.95M|        (  x >= '0' && x <= '9' ? x - '0'       \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (940:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (940:24): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  941|  4.95M|         : x >= 'a' && x <= 'f' ? x - 'a' + 0xa \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (941:12): [Folded, False: 4.95M]
  |  |  |  |  |  |  |  |  |  Branch (941:24): [True: 0, Folded]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  942|  4.95M|         : x >= 'A' && x <= 'F' ? x - 'A' + 0xa \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (942:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (942:24): [True: 0, Folded]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  943|  4.95M|         : -1)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |               #define TBL0(x)  TBL(x),  TBL((x) + 1),   TBL((x) + 2),   TBL((x) + 3)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  940|  4.95M|        (  x >= '0' && x <= '9' ? x - '0'       \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (940:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (940:24): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  941|  4.95M|         : x >= 'a' && x <= 'f' ? x - 'a' + 0xa \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (941:12): [Folded, False: 4.95M]
  |  |  |  |  |  |  |  |  |  Branch (941:24): [True: 0, Folded]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  942|  4.95M|         : x >= 'A' && x <= 'F' ? x - 'A' + 0xa \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (942:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (942:24): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  943|  4.95M|         : -1)
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  |  |               #define TBL1(x) TBL0(x), TBL0((x) + 4),  TBL0((x) + 8),  TBL0((x) + 12)
  |  |  |  |  ------------------
  |  |  |  |  |  |  944|  4.95M|#define TBL0(x)  TBL(x),  TBL((x) + 1),   TBL((x) + 2),   TBL((x) + 3)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  940|  4.95M|        (  x >= '0' && x <= '9' ? x - '0'       \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (940:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (940:24): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  941|  4.95M|         : x >= 'a' && x <= 'f' ? x - 'a' + 0xa \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (941:12): [Folded, False: 4.95M]
  |  |  |  |  |  |  |  |  |  Branch (941:24): [True: 0, Folded]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  942|  4.95M|         : x >= 'A' && x <= 'F' ? x - 'A' + 0xa \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (942:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (942:24): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  943|  4.95M|         : -1)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |               #define TBL0(x)  TBL(x),  TBL((x) + 1),   TBL((x) + 2),   TBL((x) + 3)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  940|  4.95M|        (  x >= '0' && x <= '9' ? x - '0'       \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (940:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (940:24): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  941|  4.95M|         : x >= 'a' && x <= 'f' ? x - 'a' + 0xa \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (941:12): [Folded, False: 4.95M]
  |  |  |  |  |  |  |  |  |  Branch (941:24): [True: 0, Folded]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  942|  4.95M|         : x >= 'A' && x <= 'F' ? x - 'A' + 0xa \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (942:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (942:24): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  943|  4.95M|         : -1)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |               #define TBL0(x)  TBL(x),  TBL((x) + 1),   TBL((x) + 2),   TBL((x) + 3)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  940|  4.95M|        (  x >= '0' && x <= '9' ? x - '0'       \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (940:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (940:24): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  941|  4.95M|         : x >= 'a' && x <= 'f' ? x - 'a' + 0xa \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (941:12): [Folded, False: 4.95M]
  |  |  |  |  |  |  |  |  |  Branch (941:24): [True: 0, Folded]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  942|  4.95M|         : x >= 'A' && x <= 'F' ? x - 'A' + 0xa \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (942:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (942:24): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  943|  4.95M|         : -1)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |               #define TBL0(x)  TBL(x),  TBL((x) + 1),   TBL((x) + 2),   TBL((x) + 3)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  940|  4.95M|        (  x >= '0' && x <= '9' ? x - '0'       \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (940:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (940:24): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  941|  4.95M|         : x >= 'a' && x <= 'f' ? x - 'a' + 0xa \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (941:12): [Folded, False: 4.95M]
  |  |  |  |  |  |  |  |  |  Branch (941:24): [True: 0, Folded]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  942|  4.95M|         : x >= 'A' && x <= 'F' ? x - 'A' + 0xa \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (942:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (942:24): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  943|  4.95M|         : -1)
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  |  |               #define TBL1(x) TBL0(x), TBL0((x) + 4),  TBL0((x) + 8),  TBL0((x) + 12)
  |  |  |  |  ------------------
  |  |  |  |  |  |  944|  4.95M|#define TBL0(x)  TBL(x),  TBL((x) + 1),   TBL((x) + 2),   TBL((x) + 3)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  940|  4.95M|        (  x >= '0' && x <= '9' ? x - '0'       \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (940:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (940:24): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  941|  4.95M|         : x >= 'a' && x <= 'f' ? x - 'a' + 0xa \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (941:12): [Folded, False: 4.95M]
  |  |  |  |  |  |  |  |  |  Branch (941:24): [True: 0, Folded]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  942|  4.95M|         : x >= 'A' && x <= 'F' ? x - 'A' + 0xa \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (942:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (942:24): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  943|  4.95M|         : -1)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |               #define TBL0(x)  TBL(x),  TBL((x) + 1),   TBL((x) + 2),   TBL((x) + 3)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  940|  4.95M|        (  x >= '0' && x <= '9' ? x - '0'       \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (940:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (940:24): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  941|  4.95M|         : x >= 'a' && x <= 'f' ? x - 'a' + 0xa \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (941:12): [Folded, False: 4.95M]
  |  |  |  |  |  |  |  |  |  Branch (941:24): [True: 0, Folded]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  942|  4.95M|         : x >= 'A' && x <= 'F' ? x - 'A' + 0xa \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (942:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (942:24): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  943|  4.95M|         : -1)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |               #define TBL0(x)  TBL(x),  TBL((x) + 1),   TBL((x) + 2),   TBL((x) + 3)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  940|  4.95M|        (  x >= '0' && x <= '9' ? x - '0'       \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (940:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (940:24): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  941|  4.95M|         : x >= 'a' && x <= 'f' ? x - 'a' + 0xa \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (941:12): [Folded, False: 4.95M]
  |  |  |  |  |  |  |  |  |  Branch (941:24): [True: 0, Folded]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  942|  4.95M|         : x >= 'A' && x <= 'F' ? x - 'A' + 0xa \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (942:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (942:24): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  943|  4.95M|         : -1)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |               #define TBL0(x)  TBL(x),  TBL((x) + 1),   TBL((x) + 2),   TBL((x) + 3)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  940|  4.95M|        (  x >= '0' && x <= '9' ? x - '0'       \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (940:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (940:24): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  941|  4.95M|         : x >= 'a' && x <= 'f' ? x - 'a' + 0xa \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (941:12): [Folded, False: 4.95M]
  |  |  |  |  |  |  |  |  |  Branch (941:24): [True: 0, Folded]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  942|  4.95M|         : x >= 'A' && x <= 'F' ? x - 'A' + 0xa \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (942:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (942:24): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  943|  4.95M|         : -1)
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  ------------------
  |  |               #define TBL2(x) TBL1(x), TBL1((x) + 16), TBL1((x) + 32), TBL1((x) + 48)
  |  |  ------------------
  |  |  |  |  945|  4.95M|#define TBL1(x) TBL0(x), TBL0((x) + 4),  TBL0((x) + 8),  TBL0((x) + 12)
  |  |  |  |  ------------------
  |  |  |  |  |  |  944|  4.95M|#define TBL0(x)  TBL(x),  TBL((x) + 1),   TBL((x) + 2),   TBL((x) + 3)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  940|  4.95M|        (  x >= '0' && x <= '9' ? x - '0'       \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (940:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (940:24): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  941|  4.95M|         : x >= 'a' && x <= 'f' ? x - 'a' + 0xa \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (941:12): [Folded, False: 4.95M]
  |  |  |  |  |  |  |  |  |  Branch (941:24): [True: 0, Folded]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  942|  4.95M|         : x >= 'A' && x <= 'F' ? x - 'A' + 0xa \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (942:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (942:24): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  943|  4.95M|         : -1)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |               #define TBL0(x)  TBL(x),  TBL((x) + 1),   TBL((x) + 2),   TBL((x) + 3)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  940|  4.95M|        (  x >= '0' && x <= '9' ? x - '0'       \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (940:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (940:24): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  941|  4.95M|         : x >= 'a' && x <= 'f' ? x - 'a' + 0xa \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (941:12): [Folded, False: 4.95M]
  |  |  |  |  |  |  |  |  |  Branch (941:24): [True: 0, Folded]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  942|  4.95M|         : x >= 'A' && x <= 'F' ? x - 'A' + 0xa \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (942:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (942:24): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  943|  4.95M|         : -1)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |               #define TBL0(x)  TBL(x),  TBL((x) + 1),   TBL((x) + 2),   TBL((x) + 3)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  940|  4.95M|        (  x >= '0' && x <= '9' ? x - '0'       \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (940:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (940:24): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  941|  4.95M|         : x >= 'a' && x <= 'f' ? x - 'a' + 0xa \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (941:12): [Folded, False: 4.95M]
  |  |  |  |  |  |  |  |  |  Branch (941:24): [True: 0, Folded]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  942|  4.95M|         : x >= 'A' && x <= 'F' ? x - 'A' + 0xa \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (942:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (942:24): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  943|  4.95M|         : -1)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |               #define TBL0(x)  TBL(x),  TBL((x) + 1),   TBL((x) + 2),   TBL((x) + 3)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  940|  4.95M|        (  x >= '0' && x <= '9' ? x - '0'       \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (940:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (940:24): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  941|  4.95M|         : x >= 'a' && x <= 'f' ? x - 'a' + 0xa \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (941:12): [Folded, False: 4.95M]
  |  |  |  |  |  |  |  |  |  Branch (941:24): [True: 0, Folded]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  942|  4.95M|         : x >= 'A' && x <= 'F' ? x - 'A' + 0xa \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (942:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (942:24): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  943|  4.95M|         : -1)
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  |  |               #define TBL1(x) TBL0(x), TBL0((x) + 4),  TBL0((x) + 8),  TBL0((x) + 12)
  |  |  |  |  ------------------
  |  |  |  |  |  |  944|  4.95M|#define TBL0(x)  TBL(x),  TBL((x) + 1),   TBL((x) + 2),   TBL((x) + 3)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  940|  4.95M|        (  x >= '0' && x <= '9' ? x - '0'       \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (940:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (940:24): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  941|  4.95M|         : x >= 'a' && x <= 'f' ? x - 'a' + 0xa \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (941:12): [Folded, False: 4.95M]
  |  |  |  |  |  |  |  |  |  Branch (941:24): [True: 0, Folded]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  942|  4.95M|         : x >= 'A' && x <= 'F' ? x - 'A' + 0xa \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (942:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (942:24): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  943|  4.95M|         : -1)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |               #define TBL0(x)  TBL(x),  TBL((x) + 1),   TBL((x) + 2),   TBL((x) + 3)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  940|  4.95M|        (  x >= '0' && x <= '9' ? x - '0'       \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (940:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (940:24): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  941|  4.95M|         : x >= 'a' && x <= 'f' ? x - 'a' + 0xa \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (941:12): [Folded, False: 4.95M]
  |  |  |  |  |  |  |  |  |  Branch (941:24): [True: 0, Folded]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  942|  4.95M|         : x >= 'A' && x <= 'F' ? x - 'A' + 0xa \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (942:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (942:24): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  943|  4.95M|         : -1)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |               #define TBL0(x)  TBL(x),  TBL((x) + 1),   TBL((x) + 2),   TBL((x) + 3)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  940|  4.95M|        (  x >= '0' && x <= '9' ? x - '0'       \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (940:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (940:24): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  941|  4.95M|         : x >= 'a' && x <= 'f' ? x - 'a' + 0xa \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (941:12): [Folded, False: 4.95M]
  |  |  |  |  |  |  |  |  |  Branch (941:24): [True: 0, Folded]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  942|  4.95M|         : x >= 'A' && x <= 'F' ? x - 'A' + 0xa \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (942:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (942:24): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  943|  4.95M|         : -1)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |               #define TBL0(x)  TBL(x),  TBL((x) + 1),   TBL((x) + 2),   TBL((x) + 3)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  940|  4.95M|        (  x >= '0' && x <= '9' ? x - '0'       \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (940:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (940:24): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  941|  4.95M|         : x >= 'a' && x <= 'f' ? x - 'a' + 0xa \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (941:12): [Folded, False: 4.95M]
  |  |  |  |  |  |  |  |  |  Branch (941:24): [True: 0, Folded]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  942|  4.95M|         : x >= 'A' && x <= 'F' ? x - 'A' + 0xa \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (942:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (942:24): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  943|  4.95M|         : -1)
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  |  |               #define TBL1(x) TBL0(x), TBL0((x) + 4),  TBL0((x) + 8),  TBL0((x) + 12)
  |  |  |  |  ------------------
  |  |  |  |  |  |  944|  4.95M|#define TBL0(x)  TBL(x),  TBL((x) + 1),   TBL((x) + 2),   TBL((x) + 3)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  940|  4.95M|        (  x >= '0' && x <= '9' ? x - '0'       \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (940:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (940:24): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  941|  4.95M|         : x >= 'a' && x <= 'f' ? x - 'a' + 0xa \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (941:12): [Folded, False: 4.95M]
  |  |  |  |  |  |  |  |  |  Branch (941:24): [True: 0, Folded]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  942|  4.95M|         : x >= 'A' && x <= 'F' ? x - 'A' + 0xa \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (942:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (942:24): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  943|  4.95M|         : -1)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |               #define TBL0(x)  TBL(x),  TBL((x) + 1),   TBL((x) + 2),   TBL((x) + 3)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  940|  4.95M|        (  x >= '0' && x <= '9' ? x - '0'       \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (940:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (940:24): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  941|  4.95M|         : x >= 'a' && x <= 'f' ? x - 'a' + 0xa \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (941:12): [Folded, False: 4.95M]
  |  |  |  |  |  |  |  |  |  Branch (941:24): [True: 0, Folded]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  942|  4.95M|         : x >= 'A' && x <= 'F' ? x - 'A' + 0xa \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (942:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (942:24): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  943|  4.95M|         : -1)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |               #define TBL0(x)  TBL(x),  TBL((x) + 1),   TBL((x) + 2),   TBL((x) + 3)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  940|  4.95M|        (  x >= '0' && x <= '9' ? x - '0'       \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (940:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (940:24): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  941|  4.95M|         : x >= 'a' && x <= 'f' ? x - 'a' + 0xa \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (941:12): [Folded, False: 4.95M]
  |  |  |  |  |  |  |  |  |  Branch (941:24): [True: 0, Folded]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  942|  4.95M|         : x >= 'A' && x <= 'F' ? x - 'A' + 0xa \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (942:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (942:24): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  943|  4.95M|         : -1)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |               #define TBL0(x)  TBL(x),  TBL((x) + 1),   TBL((x) + 2),   TBL((x) + 3)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  940|  4.95M|        (  x >= '0' && x <= '9' ? x - '0'       \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (940:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (940:24): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  941|  4.95M|         : x >= 'a' && x <= 'f' ? x - 'a' + 0xa \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (941:12): [Folded, False: 4.95M]
  |  |  |  |  |  |  |  |  |  Branch (941:24): [True: 0, Folded]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  942|  4.95M|         : x >= 'A' && x <= 'F' ? x - 'A' + 0xa \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (942:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (942:24): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  943|  4.95M|         : -1)
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  |  |               #define TBL1(x) TBL0(x), TBL0((x) + 4),  TBL0((x) + 8),  TBL0((x) + 12)
  |  |  |  |  ------------------
  |  |  |  |  |  |  944|  4.95M|#define TBL0(x)  TBL(x),  TBL((x) + 1),   TBL((x) + 2),   TBL((x) + 3)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  940|  4.95M|        (  x >= '0' && x <= '9' ? x - '0'       \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (940:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (940:24): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  941|  4.95M|         : x >= 'a' && x <= 'f' ? x - 'a' + 0xa \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (941:12): [Folded, False: 4.95M]
  |  |  |  |  |  |  |  |  |  Branch (941:24): [True: 0, Folded]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  942|  4.95M|         : x >= 'A' && x <= 'F' ? x - 'A' + 0xa \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (942:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (942:24): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  943|  4.95M|         : -1)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |               #define TBL0(x)  TBL(x),  TBL((x) + 1),   TBL((x) + 2),   TBL((x) + 3)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  940|  4.95M|        (  x >= '0' && x <= '9' ? x - '0'       \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (940:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (940:24): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  941|  4.95M|         : x >= 'a' && x <= 'f' ? x - 'a' + 0xa \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (941:12): [Folded, False: 4.95M]
  |  |  |  |  |  |  |  |  |  Branch (941:24): [True: 0, Folded]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  942|  4.95M|         : x >= 'A' && x <= 'F' ? x - 'A' + 0xa \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (942:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (942:24): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  943|  4.95M|         : -1)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |               #define TBL0(x)  TBL(x),  TBL((x) + 1),   TBL((x) + 2),   TBL((x) + 3)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  940|  4.95M|        (  x >= '0' && x <= '9' ? x - '0'       \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (940:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (940:24): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  941|  4.95M|         : x >= 'a' && x <= 'f' ? x - 'a' + 0xa \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (941:12): [Folded, False: 4.95M]
  |  |  |  |  |  |  |  |  |  Branch (941:24): [True: 0, Folded]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  942|  4.95M|         : x >= 'A' && x <= 'F' ? x - 'A' + 0xa \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (942:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (942:24): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  943|  4.95M|         : -1)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |               #define TBL0(x)  TBL(x),  TBL((x) + 1),   TBL((x) + 2),   TBL((x) + 3)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  940|  4.95M|        (  x >= '0' && x <= '9' ? x - '0'       \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (940:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (940:24): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  941|  4.95M|         : x >= 'a' && x <= 'f' ? x - 'a' + 0xa \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (941:12): [Folded, False: 4.95M]
  |  |  |  |  |  |  |  |  |  Branch (941:24): [True: 0, Folded]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  942|  4.95M|         : x >= 'A' && x <= 'F' ? x - 'A' + 0xa \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (942:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (942:24): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  943|  4.95M|         : -1)
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  ------------------
  |  |               #define TBL2(x) TBL1(x), TBL1((x) + 16), TBL1((x) + 32), TBL1((x) + 48)
  |  |  ------------------
  |  |  |  |  945|  4.95M|#define TBL1(x) TBL0(x), TBL0((x) + 4),  TBL0((x) + 8),  TBL0((x) + 12)
  |  |  |  |  ------------------
  |  |  |  |  |  |  944|  4.95M|#define TBL0(x)  TBL(x),  TBL((x) + 1),   TBL((x) + 2),   TBL((x) + 3)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  940|  4.95M|        (  x >= '0' && x <= '9' ? x - '0'       \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (940:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (940:24): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  941|  4.95M|         : x >= 'a' && x <= 'f' ? x - 'a' + 0xa \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (941:12): [Folded, False: 4.95M]
  |  |  |  |  |  |  |  |  |  Branch (941:24): [True: 0, Folded]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  942|  4.95M|         : x >= 'A' && x <= 'F' ? x - 'A' + 0xa \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (942:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (942:24): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  943|  4.95M|         : -1)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |               #define TBL0(x)  TBL(x),  TBL((x) + 1),   TBL((x) + 2),   TBL((x) + 3)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  940|  4.95M|        (  x >= '0' && x <= '9' ? x - '0'       \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (940:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (940:24): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  941|  4.95M|         : x >= 'a' && x <= 'f' ? x - 'a' + 0xa \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (941:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (941:24): [True: 0, Folded]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  942|  4.95M|         : x >= 'A' && x <= 'F' ? x - 'A' + 0xa \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (942:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (942:24): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  943|  4.95M|         : -1)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |               #define TBL0(x)  TBL(x),  TBL((x) + 1),   TBL((x) + 2),   TBL((x) + 3)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  940|  4.95M|        (  x >= '0' && x <= '9' ? x - '0'       \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (940:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (940:24): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  941|  4.95M|         : x >= 'a' && x <= 'f' ? x - 'a' + 0xa \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (941:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (941:24): [True: 0, Folded]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  942|  4.95M|         : x >= 'A' && x <= 'F' ? x - 'A' + 0xa \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (942:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (942:24): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  943|  4.95M|         : -1)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |               #define TBL0(x)  TBL(x),  TBL((x) + 1),   TBL((x) + 2),   TBL((x) + 3)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  940|  4.95M|        (  x >= '0' && x <= '9' ? x - '0'       \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (940:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (940:24): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  941|  4.95M|         : x >= 'a' && x <= 'f' ? x - 'a' + 0xa \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (941:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (941:24): [True: 0, Folded]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  942|  4.95M|         : x >= 'A' && x <= 'F' ? x - 'A' + 0xa \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (942:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (942:24): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  943|  4.95M|         : -1)
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  |  |               #define TBL1(x) TBL0(x), TBL0((x) + 4),  TBL0((x) + 8),  TBL0((x) + 12)
  |  |  |  |  ------------------
  |  |  |  |  |  |  944|  4.95M|#define TBL0(x)  TBL(x),  TBL((x) + 1),   TBL((x) + 2),   TBL((x) + 3)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  940|  4.95M|        (  x >= '0' && x <= '9' ? x - '0'       \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (940:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (940:24): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  941|  4.95M|         : x >= 'a' && x <= 'f' ? x - 'a' + 0xa \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (941:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (941:24): [True: 0, Folded]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  942|  4.95M|         : x >= 'A' && x <= 'F' ? x - 'A' + 0xa \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (942:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (942:24): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  943|  4.95M|         : -1)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |               #define TBL0(x)  TBL(x),  TBL((x) + 1),   TBL((x) + 2),   TBL((x) + 3)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  940|  4.95M|        (  x >= '0' && x <= '9' ? x - '0'       \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (940:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (940:24): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  941|  4.95M|         : x >= 'a' && x <= 'f' ? x - 'a' + 0xa \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (941:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (941:24): [True: 0, Folded]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  942|  4.95M|         : x >= 'A' && x <= 'F' ? x - 'A' + 0xa \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (942:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (942:24): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  943|  4.95M|         : -1)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |               #define TBL0(x)  TBL(x),  TBL((x) + 1),   TBL((x) + 2),   TBL((x) + 3)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  940|  4.95M|        (  x >= '0' && x <= '9' ? x - '0'       \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (940:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (940:24): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  941|  4.95M|         : x >= 'a' && x <= 'f' ? x - 'a' + 0xa \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (941:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (941:24): [True: 0, Folded]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  942|  4.95M|         : x >= 'A' && x <= 'F' ? x - 'A' + 0xa \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (942:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (942:24): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  943|  4.95M|         : -1)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |               #define TBL0(x)  TBL(x),  TBL((x) + 1),   TBL((x) + 2),   TBL((x) + 3)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  940|  4.95M|        (  x >= '0' && x <= '9' ? x - '0'       \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (940:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (940:24): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  941|  4.95M|         : x >= 'a' && x <= 'f' ? x - 'a' + 0xa \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (941:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (941:24): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  942|  4.95M|         : x >= 'A' && x <= 'F' ? x - 'A' + 0xa \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (942:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (942:24): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  943|  4.95M|         : -1)
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  |  |               #define TBL1(x) TBL0(x), TBL0((x) + 4),  TBL0((x) + 8),  TBL0((x) + 12)
  |  |  |  |  ------------------
  |  |  |  |  |  |  944|  4.95M|#define TBL0(x)  TBL(x),  TBL((x) + 1),   TBL((x) + 2),   TBL((x) + 3)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  940|  4.95M|        (  x >= '0' && x <= '9' ? x - '0'       \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (940:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (940:24): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  941|  4.95M|         : x >= 'a' && x <= 'f' ? x - 'a' + 0xa \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (941:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (941:24): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  942|  4.95M|         : x >= 'A' && x <= 'F' ? x - 'A' + 0xa \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (942:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (942:24): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  943|  4.95M|         : -1)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |               #define TBL0(x)  TBL(x),  TBL((x) + 1),   TBL((x) + 2),   TBL((x) + 3)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  940|  4.95M|        (  x >= '0' && x <= '9' ? x - '0'       \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (940:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (940:24): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  941|  4.95M|         : x >= 'a' && x <= 'f' ? x - 'a' + 0xa \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (941:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (941:24): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  942|  4.95M|         : x >= 'A' && x <= 'F' ? x - 'A' + 0xa \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (942:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (942:24): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  943|  4.95M|         : -1)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |               #define TBL0(x)  TBL(x),  TBL((x) + 1),   TBL((x) + 2),   TBL((x) + 3)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  940|  4.95M|        (  x >= '0' && x <= '9' ? x - '0'       \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (940:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (940:24): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  941|  4.95M|         : x >= 'a' && x <= 'f' ? x - 'a' + 0xa \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (941:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (941:24): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  942|  4.95M|         : x >= 'A' && x <= 'F' ? x - 'A' + 0xa \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (942:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (942:24): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  943|  4.95M|         : -1)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |               #define TBL0(x)  TBL(x),  TBL((x) + 1),   TBL((x) + 2),   TBL((x) + 3)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  940|  4.95M|        (  x >= '0' && x <= '9' ? x - '0'       \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (940:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (940:24): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  941|  4.95M|         : x >= 'a' && x <= 'f' ? x - 'a' + 0xa \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (941:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (941:24): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  942|  4.95M|         : x >= 'A' && x <= 'F' ? x - 'A' + 0xa \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (942:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (942:24): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  943|  4.95M|         : -1)
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  |  |               #define TBL1(x) TBL0(x), TBL0((x) + 4),  TBL0((x) + 8),  TBL0((x) + 12)
  |  |  |  |  ------------------
  |  |  |  |  |  |  944|  4.95M|#define TBL0(x)  TBL(x),  TBL((x) + 1),   TBL((x) + 2),   TBL((x) + 3)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  940|  4.95M|        (  x >= '0' && x <= '9' ? x - '0'       \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (940:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (940:24): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  941|  4.95M|         : x >= 'a' && x <= 'f' ? x - 'a' + 0xa \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (941:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (941:24): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  942|  4.95M|         : x >= 'A' && x <= 'F' ? x - 'A' + 0xa \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (942:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (942:24): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  943|  4.95M|         : -1)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |               #define TBL0(x)  TBL(x),  TBL((x) + 1),   TBL((x) + 2),   TBL((x) + 3)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  940|  4.95M|        (  x >= '0' && x <= '9' ? x - '0'       \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (940:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (940:24): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  941|  4.95M|         : x >= 'a' && x <= 'f' ? x - 'a' + 0xa \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (941:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (941:24): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  942|  4.95M|         : x >= 'A' && x <= 'F' ? x - 'A' + 0xa \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (942:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (942:24): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  943|  4.95M|         : -1)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |               #define TBL0(x)  TBL(x),  TBL((x) + 1),   TBL((x) + 2),   TBL((x) + 3)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  940|  4.95M|        (  x >= '0' && x <= '9' ? x - '0'       \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (940:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (940:24): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  941|  4.95M|         : x >= 'a' && x <= 'f' ? x - 'a' + 0xa \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (941:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (941:24): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  942|  4.95M|         : x >= 'A' && x <= 'F' ? x - 'A' + 0xa \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (942:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (942:24): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  943|  4.95M|         : -1)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |               #define TBL0(x)  TBL(x),  TBL((x) + 1),   TBL((x) + 2),   TBL((x) + 3)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  940|  4.95M|        (  x >= '0' && x <= '9' ? x - '0'       \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (940:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (940:24): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  941|  4.95M|         : x >= 'a' && x <= 'f' ? x - 'a' + 0xa \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (941:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (941:24): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  942|  4.95M|         : x >= 'A' && x <= 'F' ? x - 'A' + 0xa \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (942:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (942:24): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  943|  4.95M|         : -1)
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  ------------------
  |  |               #define TBL2(x) TBL1(x), TBL1((x) + 16), TBL1((x) + 32), TBL1((x) + 48)
  |  |  ------------------
  |  |  |  |  945|  4.95M|#define TBL1(x) TBL0(x), TBL0((x) + 4),  TBL0((x) + 8),  TBL0((x) + 12)
  |  |  |  |  ------------------
  |  |  |  |  |  |  944|  4.95M|#define TBL0(x)  TBL(x),  TBL((x) + 1),   TBL((x) + 2),   TBL((x) + 3)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  940|  4.95M|        (  x >= '0' && x <= '9' ? x - '0'       \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (940:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (940:24): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  941|  4.95M|         : x >= 'a' && x <= 'f' ? x - 'a' + 0xa \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (941:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (941:24): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  942|  4.95M|         : x >= 'A' && x <= 'F' ? x - 'A' + 0xa \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (942:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (942:24): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  943|  4.95M|         : -1)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |               #define TBL0(x)  TBL(x),  TBL((x) + 1),   TBL((x) + 2),   TBL((x) + 3)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  940|  4.95M|        (  x >= '0' && x <= '9' ? x - '0'       \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (940:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (940:24): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  941|  4.95M|         : x >= 'a' && x <= 'f' ? x - 'a' + 0xa \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (941:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (941:24): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  942|  4.95M|         : x >= 'A' && x <= 'F' ? x - 'A' + 0xa \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (942:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (942:24): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  943|  4.95M|         : -1)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |               #define TBL0(x)  TBL(x),  TBL((x) + 1),   TBL((x) + 2),   TBL((x) + 3)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  940|  4.95M|        (  x >= '0' && x <= '9' ? x - '0'       \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (940:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (940:24): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  941|  4.95M|         : x >= 'a' && x <= 'f' ? x - 'a' + 0xa \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (941:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (941:24): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  942|  4.95M|         : x >= 'A' && x <= 'F' ? x - 'A' + 0xa \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (942:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (942:24): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  943|  4.95M|         : -1)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |               #define TBL0(x)  TBL(x),  TBL((x) + 1),   TBL((x) + 2),   TBL((x) + 3)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  940|  4.95M|        (  x >= '0' && x <= '9' ? x - '0'       \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (940:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (940:24): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  941|  4.95M|         : x >= 'a' && x <= 'f' ? x - 'a' + 0xa \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (941:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (941:24): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  942|  4.95M|         : x >= 'A' && x <= 'F' ? x - 'A' + 0xa \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (942:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (942:24): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  943|  4.95M|         : -1)
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  |  |               #define TBL1(x) TBL0(x), TBL0((x) + 4),  TBL0((x) + 8),  TBL0((x) + 12)
  |  |  |  |  ------------------
  |  |  |  |  |  |  944|  4.95M|#define TBL0(x)  TBL(x),  TBL((x) + 1),   TBL((x) + 2),   TBL((x) + 3)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  940|  4.95M|        (  x >= '0' && x <= '9' ? x - '0'       \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (940:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (940:24): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  941|  4.95M|         : x >= 'a' && x <= 'f' ? x - 'a' + 0xa \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (941:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (941:24): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  942|  4.95M|         : x >= 'A' && x <= 'F' ? x - 'A' + 0xa \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (942:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (942:24): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  943|  4.95M|         : -1)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |               #define TBL0(x)  TBL(x),  TBL((x) + 1),   TBL((x) + 2),   TBL((x) + 3)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  940|  4.95M|        (  x >= '0' && x <= '9' ? x - '0'       \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (940:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (940:24): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  941|  4.95M|         : x >= 'a' && x <= 'f' ? x - 'a' + 0xa \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (941:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (941:24): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  942|  4.95M|         : x >= 'A' && x <= 'F' ? x - 'A' + 0xa \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (942:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (942:24): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  943|  4.95M|         : -1)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |               #define TBL0(x)  TBL(x),  TBL((x) + 1),   TBL((x) + 2),   TBL((x) + 3)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  940|  4.95M|        (  x >= '0' && x <= '9' ? x - '0'       \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (940:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (940:24): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  941|  4.95M|         : x >= 'a' && x <= 'f' ? x - 'a' + 0xa \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (941:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (941:24): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  942|  4.95M|         : x >= 'A' && x <= 'F' ? x - 'A' + 0xa \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (942:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (942:24): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  943|  4.95M|         : -1)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |               #define TBL0(x)  TBL(x),  TBL((x) + 1),   TBL((x) + 2),   TBL((x) + 3)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  940|  4.95M|        (  x >= '0' && x <= '9' ? x - '0'       \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (940:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (940:24): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  941|  4.95M|         : x >= 'a' && x <= 'f' ? x - 'a' + 0xa \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (941:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (941:24): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  942|  4.95M|         : x >= 'A' && x <= 'F' ? x - 'A' + 0xa \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (942:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (942:24): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  943|  4.95M|         : -1)
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  |  |               #define TBL1(x) TBL0(x), TBL0((x) + 4),  TBL0((x) + 8),  TBL0((x) + 12)
  |  |  |  |  ------------------
  |  |  |  |  |  |  944|  4.95M|#define TBL0(x)  TBL(x),  TBL((x) + 1),   TBL((x) + 2),   TBL((x) + 3)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  940|  4.95M|        (  x >= '0' && x <= '9' ? x - '0'       \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (940:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (940:24): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  941|  4.95M|         : x >= 'a' && x <= 'f' ? x - 'a' + 0xa \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (941:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (941:24): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  942|  4.95M|         : x >= 'A' && x <= 'F' ? x - 'A' + 0xa \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (942:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (942:24): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  943|  4.95M|         : -1)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |               #define TBL0(x)  TBL(x),  TBL((x) + 1),   TBL((x) + 2),   TBL((x) + 3)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  940|  4.95M|        (  x >= '0' && x <= '9' ? x - '0'       \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (940:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (940:24): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  941|  4.95M|         : x >= 'a' && x <= 'f' ? x - 'a' + 0xa \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (941:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (941:24): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  942|  4.95M|         : x >= 'A' && x <= 'F' ? x - 'A' + 0xa \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (942:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (942:24): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  943|  4.95M|         : -1)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |               #define TBL0(x)  TBL(x),  TBL((x) + 1),   TBL((x) + 2),   TBL((x) + 3)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  940|  4.95M|        (  x >= '0' && x <= '9' ? x - '0'       \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (940:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (940:24): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  941|  4.95M|         : x >= 'a' && x <= 'f' ? x - 'a' + 0xa \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (941:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (941:24): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  942|  4.95M|         : x >= 'A' && x <= 'F' ? x - 'A' + 0xa \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (942:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (942:24): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  943|  4.95M|         : -1)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |               #define TBL0(x)  TBL(x),  TBL((x) + 1),   TBL((x) + 2),   TBL((x) + 3)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  940|  4.95M|        (  x >= '0' && x <= '9' ? x - '0'       \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (940:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (940:24): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  941|  4.95M|         : x >= 'a' && x <= 'f' ? x - 'a' + 0xa \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (941:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (941:24): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  942|  4.95M|         : x >= 'A' && x <= 'F' ? x - 'A' + 0xa \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (942:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (942:24): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  943|  4.95M|         : -1)
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  |  |               #define TBL1(x) TBL0(x), TBL0((x) + 4),  TBL0((x) + 8),  TBL0((x) + 12)
  |  |  |  |  ------------------
  |  |  |  |  |  |  944|  4.95M|#define TBL0(x)  TBL(x),  TBL((x) + 1),   TBL((x) + 2),   TBL((x) + 3)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  940|  4.95M|        (  x >= '0' && x <= '9' ? x - '0'       \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (940:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (940:24): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  941|  4.95M|         : x >= 'a' && x <= 'f' ? x - 'a' + 0xa \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (941:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (941:24): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  942|  4.95M|         : x >= 'A' && x <= 'F' ? x - 'A' + 0xa \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (942:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (942:24): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  943|  4.95M|         : -1)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |               #define TBL0(x)  TBL(x),  TBL((x) + 1),   TBL((x) + 2),   TBL((x) + 3)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  940|  4.95M|        (  x >= '0' && x <= '9' ? x - '0'       \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (940:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (940:24): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  941|  4.95M|         : x >= 'a' && x <= 'f' ? x - 'a' + 0xa \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (941:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (941:24): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  942|  4.95M|         : x >= 'A' && x <= 'F' ? x - 'A' + 0xa \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (942:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (942:24): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  943|  4.95M|         : -1)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |               #define TBL0(x)  TBL(x),  TBL((x) + 1),   TBL((x) + 2),   TBL((x) + 3)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  940|  4.95M|        (  x >= '0' && x <= '9' ? x - '0'       \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (940:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (940:24): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  941|  4.95M|         : x >= 'a' && x <= 'f' ? x - 'a' + 0xa \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (941:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (941:24): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  942|  4.95M|         : x >= 'A' && x <= 'F' ? x - 'A' + 0xa \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (942:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (942:24): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  943|  4.95M|         : -1)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |               #define TBL0(x)  TBL(x),  TBL((x) + 1),   TBL((x) + 2),   TBL((x) + 3)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  940|  4.95M|        (  x >= '0' && x <= '9' ? x - '0'       \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (940:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (940:24): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  941|  4.95M|         : x >= 'a' && x <= 'f' ? x - 'a' + 0xa \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (941:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (941:24): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  942|  4.95M|         : x >= 'A' && x <= 'F' ? x - 'A' + 0xa \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (942:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (942:24): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  943|  4.95M|         : -1)
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
                      TBL2(0), TBL2(64), TBL2(128), TBL2(192)
  ------------------
  |  |  946|  4.95M|#define TBL2(x) TBL1(x), TBL1((x) + 16), TBL1((x) + 32), TBL1((x) + 48)
  |  |  ------------------
  |  |  |  |  945|  4.95M|#define TBL1(x) TBL0(x), TBL0((x) + 4),  TBL0((x) + 8),  TBL0((x) + 12)
  |  |  |  |  ------------------
  |  |  |  |  |  |  944|  4.95M|#define TBL0(x)  TBL(x),  TBL((x) + 1),   TBL((x) + 2),   TBL((x) + 3)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  940|  4.95M|        (  x >= '0' && x <= '9' ? x - '0'       \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (940:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (940:24): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  941|  4.95M|         : x >= 'a' && x <= 'f' ? x - 'a' + 0xa \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (941:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (941:24): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  942|  4.95M|         : x >= 'A' && x <= 'F' ? x - 'A' + 0xa \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (942:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (942:24): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  943|  4.95M|         : -1)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |               #define TBL0(x)  TBL(x),  TBL((x) + 1),   TBL((x) + 2),   TBL((x) + 3)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  940|  4.95M|        (  x >= '0' && x <= '9' ? x - '0'       \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (940:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (940:24): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  941|  4.95M|         : x >= 'a' && x <= 'f' ? x - 'a' + 0xa \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (941:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (941:24): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  942|  4.95M|         : x >= 'A' && x <= 'F' ? x - 'A' + 0xa \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (942:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (942:24): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  943|  4.95M|         : -1)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |               #define TBL0(x)  TBL(x),  TBL((x) + 1),   TBL((x) + 2),   TBL((x) + 3)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  940|  4.95M|        (  x >= '0' && x <= '9' ? x - '0'       \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (940:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (940:24): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  941|  4.95M|         : x >= 'a' && x <= 'f' ? x - 'a' + 0xa \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (941:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (941:24): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  942|  4.95M|         : x >= 'A' && x <= 'F' ? x - 'A' + 0xa \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (942:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (942:24): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  943|  4.95M|         : -1)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |               #define TBL0(x)  TBL(x),  TBL((x) + 1),   TBL((x) + 2),   TBL((x) + 3)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  940|  4.95M|        (  x >= '0' && x <= '9' ? x - '0'       \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (940:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (940:24): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  941|  4.95M|         : x >= 'a' && x <= 'f' ? x - 'a' + 0xa \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (941:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (941:24): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  942|  4.95M|         : x >= 'A' && x <= 'F' ? x - 'A' + 0xa \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (942:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (942:24): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  943|  4.95M|         : -1)
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  |  |               #define TBL1(x) TBL0(x), TBL0((x) + 4),  TBL0((x) + 8),  TBL0((x) + 12)
  |  |  |  |  ------------------
  |  |  |  |  |  |  944|  4.95M|#define TBL0(x)  TBL(x),  TBL((x) + 1),   TBL((x) + 2),   TBL((x) + 3)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  940|  4.95M|        (  x >= '0' && x <= '9' ? x - '0'       \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (940:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (940:24): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  941|  4.95M|         : x >= 'a' && x <= 'f' ? x - 'a' + 0xa \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (941:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (941:24): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  942|  4.95M|         : x >= 'A' && x <= 'F' ? x - 'A' + 0xa \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (942:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (942:24): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  943|  4.95M|         : -1)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |               #define TBL0(x)  TBL(x),  TBL((x) + 1),   TBL((x) + 2),   TBL((x) + 3)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  940|  4.95M|        (  x >= '0' && x <= '9' ? x - '0'       \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (940:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (940:24): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  941|  4.95M|         : x >= 'a' && x <= 'f' ? x - 'a' + 0xa \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (941:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (941:24): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  942|  4.95M|         : x >= 'A' && x <= 'F' ? x - 'A' + 0xa \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (942:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (942:24): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  943|  4.95M|         : -1)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |               #define TBL0(x)  TBL(x),  TBL((x) + 1),   TBL((x) + 2),   TBL((x) + 3)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  940|  4.95M|        (  x >= '0' && x <= '9' ? x - '0'       \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (940:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (940:24): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  941|  4.95M|         : x >= 'a' && x <= 'f' ? x - 'a' + 0xa \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (941:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (941:24): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  942|  4.95M|         : x >= 'A' && x <= 'F' ? x - 'A' + 0xa \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (942:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (942:24): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  943|  4.95M|         : -1)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |               #define TBL0(x)  TBL(x),  TBL((x) + 1),   TBL((x) + 2),   TBL((x) + 3)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  940|  4.95M|        (  x >= '0' && x <= '9' ? x - '0'       \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (940:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (940:24): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  941|  4.95M|         : x >= 'a' && x <= 'f' ? x - 'a' + 0xa \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (941:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (941:24): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  942|  4.95M|         : x >= 'A' && x <= 'F' ? x - 'A' + 0xa \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (942:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (942:24): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  943|  4.95M|         : -1)
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  |  |               #define TBL1(x) TBL0(x), TBL0((x) + 4),  TBL0((x) + 8),  TBL0((x) + 12)
  |  |  |  |  ------------------
  |  |  |  |  |  |  944|  4.95M|#define TBL0(x)  TBL(x),  TBL((x) + 1),   TBL((x) + 2),   TBL((x) + 3)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  940|  4.95M|        (  x >= '0' && x <= '9' ? x - '0'       \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (940:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (940:24): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  941|  4.95M|         : x >= 'a' && x <= 'f' ? x - 'a' + 0xa \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (941:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (941:24): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  942|  4.95M|         : x >= 'A' && x <= 'F' ? x - 'A' + 0xa \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (942:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (942:24): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  943|  4.95M|         : -1)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |               #define TBL0(x)  TBL(x),  TBL((x) + 1),   TBL((x) + 2),   TBL((x) + 3)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  940|  4.95M|        (  x >= '0' && x <= '9' ? x - '0'       \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (940:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (940:24): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  941|  4.95M|         : x >= 'a' && x <= 'f' ? x - 'a' + 0xa \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (941:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (941:24): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  942|  4.95M|         : x >= 'A' && x <= 'F' ? x - 'A' + 0xa \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (942:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (942:24): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  943|  4.95M|         : -1)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |               #define TBL0(x)  TBL(x),  TBL((x) + 1),   TBL((x) + 2),   TBL((x) + 3)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  940|  4.95M|        (  x >= '0' && x <= '9' ? x - '0'       \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (940:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (940:24): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  941|  4.95M|         : x >= 'a' && x <= 'f' ? x - 'a' + 0xa \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (941:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (941:24): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  942|  4.95M|         : x >= 'A' && x <= 'F' ? x - 'A' + 0xa \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (942:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (942:24): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  943|  4.95M|         : -1)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |               #define TBL0(x)  TBL(x),  TBL((x) + 1),   TBL((x) + 2),   TBL((x) + 3)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  940|  4.95M|        (  x >= '0' && x <= '9' ? x - '0'       \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (940:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (940:24): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  941|  4.95M|         : x >= 'a' && x <= 'f' ? x - 'a' + 0xa \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (941:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (941:24): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  942|  4.95M|         : x >= 'A' && x <= 'F' ? x - 'A' + 0xa \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (942:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (942:24): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  943|  4.95M|         : -1)
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  |  |               #define TBL1(x) TBL0(x), TBL0((x) + 4),  TBL0((x) + 8),  TBL0((x) + 12)
  |  |  |  |  ------------------
  |  |  |  |  |  |  944|  4.95M|#define TBL0(x)  TBL(x),  TBL((x) + 1),   TBL((x) + 2),   TBL((x) + 3)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  940|  4.95M|        (  x >= '0' && x <= '9' ? x - '0'       \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (940:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (940:24): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  941|  4.95M|         : x >= 'a' && x <= 'f' ? x - 'a' + 0xa \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (941:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (941:24): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  942|  4.95M|         : x >= 'A' && x <= 'F' ? x - 'A' + 0xa \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (942:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (942:24): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  943|  4.95M|         : -1)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |               #define TBL0(x)  TBL(x),  TBL((x) + 1),   TBL((x) + 2),   TBL((x) + 3)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  940|  4.95M|        (  x >= '0' && x <= '9' ? x - '0'       \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (940:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (940:24): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  941|  4.95M|         : x >= 'a' && x <= 'f' ? x - 'a' + 0xa \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (941:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (941:24): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  942|  4.95M|         : x >= 'A' && x <= 'F' ? x - 'A' + 0xa \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (942:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (942:24): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  943|  4.95M|         : -1)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |               #define TBL0(x)  TBL(x),  TBL((x) + 1),   TBL((x) + 2),   TBL((x) + 3)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  940|  4.95M|        (  x >= '0' && x <= '9' ? x - '0'       \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (940:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (940:24): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  941|  4.95M|         : x >= 'a' && x <= 'f' ? x - 'a' + 0xa \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (941:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (941:24): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  942|  4.95M|         : x >= 'A' && x <= 'F' ? x - 'A' + 0xa \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (942:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (942:24): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  943|  4.95M|         : -1)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |               #define TBL0(x)  TBL(x),  TBL((x) + 1),   TBL((x) + 2),   TBL((x) + 3)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  940|  4.95M|        (  x >= '0' && x <= '9' ? x - '0'       \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (940:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (940:24): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  941|  4.95M|         : x >= 'a' && x <= 'f' ? x - 'a' + 0xa \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (941:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (941:24): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  942|  4.95M|         : x >= 'A' && x <= 'F' ? x - 'A' + 0xa \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (942:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (942:24): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  943|  4.95M|         : -1)
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  ------------------
  |  |               #define TBL2(x) TBL1(x), TBL1((x) + 16), TBL1((x) + 32), TBL1((x) + 48)
  |  |  ------------------
  |  |  |  |  945|  4.95M|#define TBL1(x) TBL0(x), TBL0((x) + 4),  TBL0((x) + 8),  TBL0((x) + 12)
  |  |  |  |  ------------------
  |  |  |  |  |  |  944|  4.95M|#define TBL0(x)  TBL(x),  TBL((x) + 1),   TBL((x) + 2),   TBL((x) + 3)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  940|  4.95M|        (  x >= '0' && x <= '9' ? x - '0'       \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (940:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (940:24): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  941|  4.95M|         : x >= 'a' && x <= 'f' ? x - 'a' + 0xa \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (941:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (941:24): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  942|  4.95M|         : x >= 'A' && x <= 'F' ? x - 'A' + 0xa \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (942:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (942:24): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  943|  4.95M|         : -1)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |               #define TBL0(x)  TBL(x),  TBL((x) + 1),   TBL((x) + 2),   TBL((x) + 3)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  940|  4.95M|        (  x >= '0' && x <= '9' ? x - '0'       \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (940:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (940:24): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  941|  4.95M|         : x >= 'a' && x <= 'f' ? x - 'a' + 0xa \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (941:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (941:24): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  942|  4.95M|         : x >= 'A' && x <= 'F' ? x - 'A' + 0xa \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (942:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (942:24): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  943|  4.95M|         : -1)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |               #define TBL0(x)  TBL(x),  TBL((x) + 1),   TBL((x) + 2),   TBL((x) + 3)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  940|  4.95M|        (  x >= '0' && x <= '9' ? x - '0'       \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (940:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (940:24): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  941|  4.95M|         : x >= 'a' && x <= 'f' ? x - 'a' + 0xa \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (941:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (941:24): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  942|  4.95M|         : x >= 'A' && x <= 'F' ? x - 'A' + 0xa \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (942:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (942:24): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  943|  4.95M|         : -1)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |               #define TBL0(x)  TBL(x),  TBL((x) + 1),   TBL((x) + 2),   TBL((x) + 3)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  940|  4.95M|        (  x >= '0' && x <= '9' ? x - '0'       \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (940:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (940:24): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  941|  4.95M|         : x >= 'a' && x <= 'f' ? x - 'a' + 0xa \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (941:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (941:24): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  942|  4.95M|         : x >= 'A' && x <= 'F' ? x - 'A' + 0xa \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (942:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (942:24): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  943|  4.95M|         : -1)
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  |  |               #define TBL1(x) TBL0(x), TBL0((x) + 4),  TBL0((x) + 8),  TBL0((x) + 12)
  |  |  |  |  ------------------
  |  |  |  |  |  |  944|  4.95M|#define TBL0(x)  TBL(x),  TBL((x) + 1),   TBL((x) + 2),   TBL((x) + 3)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  940|  4.95M|        (  x >= '0' && x <= '9' ? x - '0'       \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (940:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (940:24): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  941|  4.95M|         : x >= 'a' && x <= 'f' ? x - 'a' + 0xa \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (941:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (941:24): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  942|  4.95M|         : x >= 'A' && x <= 'F' ? x - 'A' + 0xa \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (942:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (942:24): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  943|  4.95M|         : -1)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |               #define TBL0(x)  TBL(x),  TBL((x) + 1),   TBL((x) + 2),   TBL((x) + 3)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  940|  4.95M|        (  x >= '0' && x <= '9' ? x - '0'       \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (940:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (940:24): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  941|  4.95M|         : x >= 'a' && x <= 'f' ? x - 'a' + 0xa \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (941:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (941:24): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  942|  4.95M|         : x >= 'A' && x <= 'F' ? x - 'A' + 0xa \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (942:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (942:24): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  943|  4.95M|         : -1)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |               #define TBL0(x)  TBL(x),  TBL((x) + 1),   TBL((x) + 2),   TBL((x) + 3)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  940|  4.95M|        (  x >= '0' && x <= '9' ? x - '0'       \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (940:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (940:24): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  941|  4.95M|         : x >= 'a' && x <= 'f' ? x - 'a' + 0xa \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (941:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (941:24): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  942|  4.95M|         : x >= 'A' && x <= 'F' ? x - 'A' + 0xa \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (942:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (942:24): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  943|  4.95M|         : -1)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |               #define TBL0(x)  TBL(x),  TBL((x) + 1),   TBL((x) + 2),   TBL((x) + 3)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  940|  4.95M|        (  x >= '0' && x <= '9' ? x - '0'       \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (940:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (940:24): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  941|  4.95M|         : x >= 'a' && x <= 'f' ? x - 'a' + 0xa \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (941:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (941:24): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  942|  4.95M|         : x >= 'A' && x <= 'F' ? x - 'A' + 0xa \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (942:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (942:24): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  943|  4.95M|         : -1)
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  |  |               #define TBL1(x) TBL0(x), TBL0((x) + 4),  TBL0((x) + 8),  TBL0((x) + 12)
  |  |  |  |  ------------------
  |  |  |  |  |  |  944|  4.95M|#define TBL0(x)  TBL(x),  TBL((x) + 1),   TBL((x) + 2),   TBL((x) + 3)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  940|  4.95M|        (  x >= '0' && x <= '9' ? x - '0'       \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (940:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (940:24): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  941|  4.95M|         : x >= 'a' && x <= 'f' ? x - 'a' + 0xa \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (941:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (941:24): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  942|  4.95M|         : x >= 'A' && x <= 'F' ? x - 'A' + 0xa \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (942:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (942:24): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  943|  4.95M|         : -1)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |               #define TBL0(x)  TBL(x),  TBL((x) + 1),   TBL((x) + 2),   TBL((x) + 3)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  940|  4.95M|        (  x >= '0' && x <= '9' ? x - '0'       \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (940:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (940:24): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  941|  4.95M|         : x >= 'a' && x <= 'f' ? x - 'a' + 0xa \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (941:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (941:24): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  942|  4.95M|         : x >= 'A' && x <= 'F' ? x - 'A' + 0xa \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (942:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (942:24): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  943|  4.95M|         : -1)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |               #define TBL0(x)  TBL(x),  TBL((x) + 1),   TBL((x) + 2),   TBL((x) + 3)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  940|  4.95M|        (  x >= '0' && x <= '9' ? x - '0'       \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (940:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (940:24): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  941|  4.95M|         : x >= 'a' && x <= 'f' ? x - 'a' + 0xa \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (941:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (941:24): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  942|  4.95M|         : x >= 'A' && x <= 'F' ? x - 'A' + 0xa \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (942:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (942:24): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  943|  4.95M|         : -1)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |               #define TBL0(x)  TBL(x),  TBL((x) + 1),   TBL((x) + 2),   TBL((x) + 3)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  940|  4.95M|        (  x >= '0' && x <= '9' ? x - '0'       \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (940:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (940:24): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  941|  4.95M|         : x >= 'a' && x <= 'f' ? x - 'a' + 0xa \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (941:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (941:24): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  942|  4.95M|         : x >= 'A' && x <= 'F' ? x - 'A' + 0xa \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (942:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (942:24): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  943|  4.95M|         : -1)
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  |  |               #define TBL1(x) TBL0(x), TBL0((x) + 4),  TBL0((x) + 8),  TBL0((x) + 12)
  |  |  |  |  ------------------
  |  |  |  |  |  |  944|  4.95M|#define TBL0(x)  TBL(x),  TBL((x) + 1),   TBL((x) + 2),   TBL((x) + 3)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  940|  4.95M|        (  x >= '0' && x <= '9' ? x - '0'       \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (940:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (940:24): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  941|  4.95M|         : x >= 'a' && x <= 'f' ? x - 'a' + 0xa \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (941:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (941:24): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  942|  4.95M|         : x >= 'A' && x <= 'F' ? x - 'A' + 0xa \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (942:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (942:24): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  943|  4.95M|         : -1)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |               #define TBL0(x)  TBL(x),  TBL((x) + 1),   TBL((x) + 2),   TBL((x) + 3)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  940|  4.95M|        (  x >= '0' && x <= '9' ? x - '0'       \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (940:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (940:24): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  941|  4.95M|         : x >= 'a' && x <= 'f' ? x - 'a' + 0xa \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (941:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (941:24): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  942|  4.95M|         : x >= 'A' && x <= 'F' ? x - 'A' + 0xa \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (942:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (942:24): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  943|  4.95M|         : -1)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |               #define TBL0(x)  TBL(x),  TBL((x) + 1),   TBL((x) + 2),   TBL((x) + 3)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  940|  4.95M|        (  x >= '0' && x <= '9' ? x - '0'       \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (940:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (940:24): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  941|  4.95M|         : x >= 'a' && x <= 'f' ? x - 'a' + 0xa \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (941:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (941:24): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  942|  4.95M|         : x >= 'A' && x <= 'F' ? x - 'A' + 0xa \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (942:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (942:24): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  943|  4.95M|         : -1)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |               #define TBL0(x)  TBL(x),  TBL((x) + 1),   TBL((x) + 2),   TBL((x) + 3)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  940|  4.95M|        (  x >= '0' && x <= '9' ? x - '0'       \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (940:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (940:24): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  941|  4.95M|         : x >= 'a' && x <= 'f' ? x - 'a' + 0xa \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (941:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (941:24): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  942|  4.95M|         : x >= 'A' && x <= 'F' ? x - 'A' + 0xa \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (942:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (942:24): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  943|  4.95M|         : -1)
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  ------------------
  |  |               #define TBL2(x) TBL1(x), TBL1((x) + 16), TBL1((x) + 32), TBL1((x) + 48)
  |  |  ------------------
  |  |  |  |  945|  4.95M|#define TBL1(x) TBL0(x), TBL0((x) + 4),  TBL0((x) + 8),  TBL0((x) + 12)
  |  |  |  |  ------------------
  |  |  |  |  |  |  944|  4.95M|#define TBL0(x)  TBL(x),  TBL((x) + 1),   TBL((x) + 2),   TBL((x) + 3)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  940|  4.95M|        (  x >= '0' && x <= '9' ? x - '0'       \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (940:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (940:24): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  941|  4.95M|         : x >= 'a' && x <= 'f' ? x - 'a' + 0xa \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (941:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (941:24): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  942|  4.95M|         : x >= 'A' && x <= 'F' ? x - 'A' + 0xa \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (942:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (942:24): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  943|  4.95M|         : -1)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |               #define TBL0(x)  TBL(x),  TBL((x) + 1),   TBL((x) + 2),   TBL((x) + 3)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  940|  4.95M|        (  x >= '0' && x <= '9' ? x - '0'       \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (940:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (940:24): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  941|  4.95M|         : x >= 'a' && x <= 'f' ? x - 'a' + 0xa \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (941:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (941:24): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  942|  4.95M|         : x >= 'A' && x <= 'F' ? x - 'A' + 0xa \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (942:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (942:24): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  943|  4.95M|         : -1)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |               #define TBL0(x)  TBL(x),  TBL((x) + 1),   TBL((x) + 2),   TBL((x) + 3)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  940|  4.95M|        (  x >= '0' && x <= '9' ? x - '0'       \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (940:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (940:24): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  941|  4.95M|         : x >= 'a' && x <= 'f' ? x - 'a' + 0xa \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (941:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (941:24): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  942|  4.95M|         : x >= 'A' && x <= 'F' ? x - 'A' + 0xa \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (942:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (942:24): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  943|  4.95M|         : -1)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |               #define TBL0(x)  TBL(x),  TBL((x) + 1),   TBL((x) + 2),   TBL((x) + 3)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  940|  4.95M|        (  x >= '0' && x <= '9' ? x - '0'       \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (940:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (940:24): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  941|  4.95M|         : x >= 'a' && x <= 'f' ? x - 'a' + 0xa \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (941:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (941:24): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  942|  4.95M|         : x >= 'A' && x <= 'F' ? x - 'A' + 0xa \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (942:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (942:24): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  943|  4.95M|         : -1)
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  |  |               #define TBL1(x) TBL0(x), TBL0((x) + 4),  TBL0((x) + 8),  TBL0((x) + 12)
  |  |  |  |  ------------------
  |  |  |  |  |  |  944|  4.95M|#define TBL0(x)  TBL(x),  TBL((x) + 1),   TBL((x) + 2),   TBL((x) + 3)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  940|  4.95M|        (  x >= '0' && x <= '9' ? x - '0'       \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (940:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (940:24): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  941|  4.95M|         : x >= 'a' && x <= 'f' ? x - 'a' + 0xa \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (941:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (941:24): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  942|  4.95M|         : x >= 'A' && x <= 'F' ? x - 'A' + 0xa \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (942:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (942:24): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  943|  4.95M|         : -1)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |               #define TBL0(x)  TBL(x),  TBL((x) + 1),   TBL((x) + 2),   TBL((x) + 3)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  940|  4.95M|        (  x >= '0' && x <= '9' ? x - '0'       \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (940:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (940:24): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  941|  4.95M|         : x >= 'a' && x <= 'f' ? x - 'a' + 0xa \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (941:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (941:24): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  942|  4.95M|         : x >= 'A' && x <= 'F' ? x - 'A' + 0xa \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (942:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (942:24): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  943|  4.95M|         : -1)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |               #define TBL0(x)  TBL(x),  TBL((x) + 1),   TBL((x) + 2),   TBL((x) + 3)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  940|  4.95M|        (  x >= '0' && x <= '9' ? x - '0'       \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (940:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (940:24): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  941|  4.95M|         : x >= 'a' && x <= 'f' ? x - 'a' + 0xa \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (941:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (941:24): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  942|  4.95M|         : x >= 'A' && x <= 'F' ? x - 'A' + 0xa \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (942:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (942:24): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  943|  4.95M|         : -1)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |               #define TBL0(x)  TBL(x),  TBL((x) + 1),   TBL((x) + 2),   TBL((x) + 3)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  940|  4.95M|        (  x >= '0' && x <= '9' ? x - '0'       \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (940:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (940:24): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  941|  4.95M|         : x >= 'a' && x <= 'f' ? x - 'a' + 0xa \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (941:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (941:24): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  942|  4.95M|         : x >= 'A' && x <= 'F' ? x - 'A' + 0xa \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (942:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (942:24): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  943|  4.95M|         : -1)
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  |  |               #define TBL1(x) TBL0(x), TBL0((x) + 4),  TBL0((x) + 8),  TBL0((x) + 12)
  |  |  |  |  ------------------
  |  |  |  |  |  |  944|  4.95M|#define TBL0(x)  TBL(x),  TBL((x) + 1),   TBL((x) + 2),   TBL((x) + 3)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  940|  4.95M|        (  x >= '0' && x <= '9' ? x - '0'       \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (940:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (940:24): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  941|  4.95M|         : x >= 'a' && x <= 'f' ? x - 'a' + 0xa \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (941:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (941:24): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  942|  4.95M|         : x >= 'A' && x <= 'F' ? x - 'A' + 0xa \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (942:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (942:24): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  943|  4.95M|         : -1)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |               #define TBL0(x)  TBL(x),  TBL((x) + 1),   TBL((x) + 2),   TBL((x) + 3)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  940|  4.95M|        (  x >= '0' && x <= '9' ? x - '0'       \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (940:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (940:24): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  941|  4.95M|         : x >= 'a' && x <= 'f' ? x - 'a' + 0xa \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (941:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (941:24): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  942|  4.95M|         : x >= 'A' && x <= 'F' ? x - 'A' + 0xa \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (942:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (942:24): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  943|  4.95M|         : -1)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |               #define TBL0(x)  TBL(x),  TBL((x) + 1),   TBL((x) + 2),   TBL((x) + 3)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  940|  4.95M|        (  x >= '0' && x <= '9' ? x - '0'       \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (940:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (940:24): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  941|  4.95M|         : x >= 'a' && x <= 'f' ? x - 'a' + 0xa \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (941:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (941:24): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  942|  4.95M|         : x >= 'A' && x <= 'F' ? x - 'A' + 0xa \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (942:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (942:24): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  943|  4.95M|         : -1)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |               #define TBL0(x)  TBL(x),  TBL((x) + 1),   TBL((x) + 2),   TBL((x) + 3)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  940|  4.95M|        (  x >= '0' && x <= '9' ? x - '0'       \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (940:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (940:24): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  941|  4.95M|         : x >= 'a' && x <= 'f' ? x - 'a' + 0xa \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (941:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (941:24): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  942|  4.95M|         : x >= 'A' && x <= 'F' ? x - 'A' + 0xa \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (942:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (942:24): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  943|  4.95M|         : -1)
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  |  |               #define TBL1(x) TBL0(x), TBL0((x) + 4),  TBL0((x) + 8),  TBL0((x) + 12)
  |  |  |  |  ------------------
  |  |  |  |  |  |  944|  4.95M|#define TBL0(x)  TBL(x),  TBL((x) + 1),   TBL((x) + 2),   TBL((x) + 3)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  940|  4.95M|        (  x >= '0' && x <= '9' ? x - '0'       \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (940:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (940:24): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  941|  4.95M|         : x >= 'a' && x <= 'f' ? x - 'a' + 0xa \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (941:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (941:24): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  942|  4.95M|         : x >= 'A' && x <= 'F' ? x - 'A' + 0xa \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (942:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (942:24): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  943|  4.95M|         : -1)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |               #define TBL0(x)  TBL(x),  TBL((x) + 1),   TBL((x) + 2),   TBL((x) + 3)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  940|  4.95M|        (  x >= '0' && x <= '9' ? x - '0'       \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (940:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (940:24): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  941|  4.95M|         : x >= 'a' && x <= 'f' ? x - 'a' + 0xa \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (941:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (941:24): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  942|  4.95M|         : x >= 'A' && x <= 'F' ? x - 'A' + 0xa \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (942:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (942:24): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  943|  4.95M|         : -1)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |               #define TBL0(x)  TBL(x),  TBL((x) + 1),   TBL((x) + 2),   TBL((x) + 3)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  940|  4.95M|        (  x >= '0' && x <= '9' ? x - '0'       \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (940:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (940:24): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  941|  4.95M|         : x >= 'a' && x <= 'f' ? x - 'a' + 0xa \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (941:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (941:24): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  942|  4.95M|         : x >= 'A' && x <= 'F' ? x - 'A' + 0xa \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (942:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (942:24): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  943|  4.95M|         : -1)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |               #define TBL0(x)  TBL(x),  TBL((x) + 1),   TBL((x) + 2),   TBL((x) + 3)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  940|  4.95M|        (  x >= '0' && x <= '9' ? x - '0'       \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (940:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (940:24): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  941|  4.95M|         : x >= 'a' && x <= 'f' ? x - 'a' + 0xa \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (941:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (941:24): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  942|  4.95M|         : x >= 'A' && x <= 'F' ? x - 'A' + 0xa \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (942:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (942:24): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  943|  4.95M|         : -1)
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  ------------------
  |  |               #define TBL2(x) TBL1(x), TBL1((x) + 16), TBL1((x) + 32), TBL1((x) + 48)
  |  |  ------------------
  |  |  |  |  945|  4.95M|#define TBL1(x) TBL0(x), TBL0((x) + 4),  TBL0((x) + 8),  TBL0((x) + 12)
  |  |  |  |  ------------------
  |  |  |  |  |  |  944|  4.95M|#define TBL0(x)  TBL(x),  TBL((x) + 1),   TBL((x) + 2),   TBL((x) + 3)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  940|  4.95M|        (  x >= '0' && x <= '9' ? x - '0'       \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (940:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (940:24): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  941|  4.95M|         : x >= 'a' && x <= 'f' ? x - 'a' + 0xa \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (941:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (941:24): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  942|  4.95M|         : x >= 'A' && x <= 'F' ? x - 'A' + 0xa \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (942:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (942:24): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  943|  4.95M|         : -1)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |               #define TBL0(x)  TBL(x),  TBL((x) + 1),   TBL((x) + 2),   TBL((x) + 3)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  940|  4.95M|        (  x >= '0' && x <= '9' ? x - '0'       \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (940:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (940:24): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  941|  4.95M|         : x >= 'a' && x <= 'f' ? x - 'a' + 0xa \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (941:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (941:24): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  942|  4.95M|         : x >= 'A' && x <= 'F' ? x - 'A' + 0xa \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (942:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (942:24): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  943|  4.95M|         : -1)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |               #define TBL0(x)  TBL(x),  TBL((x) + 1),   TBL((x) + 2),   TBL((x) + 3)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  940|  4.95M|        (  x >= '0' && x <= '9' ? x - '0'       \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (940:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (940:24): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  941|  4.95M|         : x >= 'a' && x <= 'f' ? x - 'a' + 0xa \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (941:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (941:24): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  942|  4.95M|         : x >= 'A' && x <= 'F' ? x - 'A' + 0xa \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (942:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (942:24): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  943|  4.95M|         : -1)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |               #define TBL0(x)  TBL(x),  TBL((x) + 1),   TBL((x) + 2),   TBL((x) + 3)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  940|  4.95M|        (  x >= '0' && x <= '9' ? x - '0'       \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (940:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (940:24): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  941|  4.95M|         : x >= 'a' && x <= 'f' ? x - 'a' + 0xa \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (941:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (941:24): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  942|  4.95M|         : x >= 'A' && x <= 'F' ? x - 'A' + 0xa \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (942:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (942:24): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  943|  4.95M|         : -1)
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  |  |               #define TBL1(x) TBL0(x), TBL0((x) + 4),  TBL0((x) + 8),  TBL0((x) + 12)
  |  |  |  |  ------------------
  |  |  |  |  |  |  944|  4.95M|#define TBL0(x)  TBL(x),  TBL((x) + 1),   TBL((x) + 2),   TBL((x) + 3)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  940|  4.95M|        (  x >= '0' && x <= '9' ? x - '0'       \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (940:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (940:24): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  941|  4.95M|         : x >= 'a' && x <= 'f' ? x - 'a' + 0xa \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (941:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (941:24): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  942|  4.95M|         : x >= 'A' && x <= 'F' ? x - 'A' + 0xa \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (942:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (942:24): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  943|  4.95M|         : -1)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |               #define TBL0(x)  TBL(x),  TBL((x) + 1),   TBL((x) + 2),   TBL((x) + 3)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  940|  4.95M|        (  x >= '0' && x <= '9' ? x - '0'       \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (940:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (940:24): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  941|  4.95M|         : x >= 'a' && x <= 'f' ? x - 'a' + 0xa \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (941:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (941:24): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  942|  4.95M|         : x >= 'A' && x <= 'F' ? x - 'A' + 0xa \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (942:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (942:24): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  943|  4.95M|         : -1)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |               #define TBL0(x)  TBL(x),  TBL((x) + 1),   TBL((x) + 2),   TBL((x) + 3)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  940|  4.95M|        (  x >= '0' && x <= '9' ? x - '0'       \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (940:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (940:24): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  941|  4.95M|         : x >= 'a' && x <= 'f' ? x - 'a' + 0xa \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (941:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (941:24): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  942|  4.95M|         : x >= 'A' && x <= 'F' ? x - 'A' + 0xa \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (942:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (942:24): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  943|  4.95M|         : -1)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |               #define TBL0(x)  TBL(x),  TBL((x) + 1),   TBL((x) + 2),   TBL((x) + 3)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  940|  4.95M|        (  x >= '0' && x <= '9' ? x - '0'       \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (940:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (940:24): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  941|  4.95M|         : x >= 'a' && x <= 'f' ? x - 'a' + 0xa \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (941:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (941:24): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  942|  4.95M|         : x >= 'A' && x <= 'F' ? x - 'A' + 0xa \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (942:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (942:24): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  943|  4.95M|         : -1)
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  |  |               #define TBL1(x) TBL0(x), TBL0((x) + 4),  TBL0((x) + 8),  TBL0((x) + 12)
  |  |  |  |  ------------------
  |  |  |  |  |  |  944|  4.95M|#define TBL0(x)  TBL(x),  TBL((x) + 1),   TBL((x) + 2),   TBL((x) + 3)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  940|  4.95M|        (  x >= '0' && x <= '9' ? x - '0'       \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (940:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (940:24): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  941|  4.95M|         : x >= 'a' && x <= 'f' ? x - 'a' + 0xa \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (941:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (941:24): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  942|  4.95M|         : x >= 'A' && x <= 'F' ? x - 'A' + 0xa \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (942:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (942:24): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  943|  4.95M|         : -1)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |               #define TBL0(x)  TBL(x),  TBL((x) + 1),   TBL((x) + 2),   TBL((x) + 3)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  940|  4.95M|        (  x >= '0' && x <= '9' ? x - '0'       \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (940:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (940:24): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  941|  4.95M|         : x >= 'a' && x <= 'f' ? x - 'a' + 0xa \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (941:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (941:24): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  942|  4.95M|         : x >= 'A' && x <= 'F' ? x - 'A' + 0xa \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (942:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (942:24): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  943|  4.95M|         : -1)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |               #define TBL0(x)  TBL(x),  TBL((x) + 1),   TBL((x) + 2),   TBL((x) + 3)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  940|  4.95M|        (  x >= '0' && x <= '9' ? x - '0'       \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (940:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (940:24): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  941|  4.95M|         : x >= 'a' && x <= 'f' ? x - 'a' + 0xa \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (941:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (941:24): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  942|  4.95M|         : x >= 'A' && x <= 'F' ? x - 'A' + 0xa \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (942:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (942:24): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  943|  4.95M|         : -1)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |               #define TBL0(x)  TBL(x),  TBL((x) + 1),   TBL((x) + 2),   TBL((x) + 3)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  940|  4.95M|        (  x >= '0' && x <= '9' ? x - '0'       \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (940:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (940:24): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  941|  4.95M|         : x >= 'a' && x <= 'f' ? x - 'a' + 0xa \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (941:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (941:24): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  942|  4.95M|         : x >= 'A' && x <= 'F' ? x - 'A' + 0xa \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (942:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (942:24): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  943|  4.95M|         : -1)
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  |  |               #define TBL1(x) TBL0(x), TBL0((x) + 4),  TBL0((x) + 8),  TBL0((x) + 12)
  |  |  |  |  ------------------
  |  |  |  |  |  |  944|  4.95M|#define TBL0(x)  TBL(x),  TBL((x) + 1),   TBL((x) + 2),   TBL((x) + 3)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  940|  4.95M|        (  x >= '0' && x <= '9' ? x - '0'       \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (940:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (940:24): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  941|  4.95M|         : x >= 'a' && x <= 'f' ? x - 'a' + 0xa \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (941:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (941:24): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  942|  4.95M|         : x >= 'A' && x <= 'F' ? x - 'A' + 0xa \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (942:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (942:24): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  943|  4.95M|         : -1)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |               #define TBL0(x)  TBL(x),  TBL((x) + 1),   TBL((x) + 2),   TBL((x) + 3)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  940|  4.95M|        (  x >= '0' && x <= '9' ? x - '0'       \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (940:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (940:24): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  941|  4.95M|         : x >= 'a' && x <= 'f' ? x - 'a' + 0xa \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (941:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (941:24): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  942|  4.95M|         : x >= 'A' && x <= 'F' ? x - 'A' + 0xa \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (942:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (942:24): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  943|  4.95M|         : -1)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |               #define TBL0(x)  TBL(x),  TBL((x) + 1),   TBL((x) + 2),   TBL((x) + 3)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  940|  4.95M|        (  x >= '0' && x <= '9' ? x - '0'       \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (940:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (940:24): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  941|  4.95M|         : x >= 'a' && x <= 'f' ? x - 'a' + 0xa \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (941:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (941:24): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  942|  4.95M|         : x >= 'A' && x <= 'F' ? x - 'A' + 0xa \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (942:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (942:24): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  943|  4.95M|         : -1)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |               #define TBL0(x)  TBL(x),  TBL((x) + 1),   TBL((x) + 2),   TBL((x) + 3)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  940|  4.95M|        (  x >= '0' && x <= '9' ? x - '0'       \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (940:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (940:24): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  941|  4.95M|         : x >= 'a' && x <= 'f' ? x - 'a' + 0xa \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (941:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (941:24): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  942|  4.95M|         : x >= 'A' && x <= 'F' ? x - 'A' + 0xa \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (942:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (942:24): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  943|  4.95M|         : -1)
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
                      TBL2(0), TBL2(64), TBL2(128), TBL2(192)
  ------------------
  |  |  946|  4.95M|#define TBL2(x) TBL1(x), TBL1((x) + 16), TBL1((x) + 32), TBL1((x) + 48)
  |  |  ------------------
  |  |  |  |  945|  4.95M|#define TBL1(x) TBL0(x), TBL0((x) + 4),  TBL0((x) + 8),  TBL0((x) + 12)
  |  |  |  |  ------------------
  |  |  |  |  |  |  944|  4.95M|#define TBL0(x)  TBL(x),  TBL((x) + 1),   TBL((x) + 2),   TBL((x) + 3)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  940|  4.95M|        (  x >= '0' && x <= '9' ? x - '0'       \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (940:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (940:24): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  941|  4.95M|         : x >= 'a' && x <= 'f' ? x - 'a' + 0xa \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (941:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (941:24): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  942|  4.95M|         : x >= 'A' && x <= 'F' ? x - 'A' + 0xa \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (942:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (942:24): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  943|  4.95M|         : -1)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |               #define TBL0(x)  TBL(x),  TBL((x) + 1),   TBL((x) + 2),   TBL((x) + 3)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  940|  4.95M|        (  x >= '0' && x <= '9' ? x - '0'       \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (940:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (940:24): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  941|  4.95M|         : x >= 'a' && x <= 'f' ? x - 'a' + 0xa \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (941:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (941:24): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  942|  4.95M|         : x >= 'A' && x <= 'F' ? x - 'A' + 0xa \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (942:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (942:24): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  943|  4.95M|         : -1)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |               #define TBL0(x)  TBL(x),  TBL((x) + 1),   TBL((x) + 2),   TBL((x) + 3)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  940|  4.95M|        (  x >= '0' && x <= '9' ? x - '0'       \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (940:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (940:24): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  941|  4.95M|         : x >= 'a' && x <= 'f' ? x - 'a' + 0xa \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (941:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (941:24): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  942|  4.95M|         : x >= 'A' && x <= 'F' ? x - 'A' + 0xa \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (942:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (942:24): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  943|  4.95M|         : -1)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |               #define TBL0(x)  TBL(x),  TBL((x) + 1),   TBL((x) + 2),   TBL((x) + 3)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  940|  4.95M|        (  x >= '0' && x <= '9' ? x - '0'       \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (940:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (940:24): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  941|  4.95M|         : x >= 'a' && x <= 'f' ? x - 'a' + 0xa \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (941:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (941:24): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  942|  4.95M|         : x >= 'A' && x <= 'F' ? x - 'A' + 0xa \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (942:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (942:24): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  943|  4.95M|         : -1)
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  |  |               #define TBL1(x) TBL0(x), TBL0((x) + 4),  TBL0((x) + 8),  TBL0((x) + 12)
  |  |  |  |  ------------------
  |  |  |  |  |  |  944|  4.95M|#define TBL0(x)  TBL(x),  TBL((x) + 1),   TBL((x) + 2),   TBL((x) + 3)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  940|  4.95M|        (  x >= '0' && x <= '9' ? x - '0'       \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (940:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (940:24): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  941|  4.95M|         : x >= 'a' && x <= 'f' ? x - 'a' + 0xa \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (941:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (941:24): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  942|  4.95M|         : x >= 'A' && x <= 'F' ? x - 'A' + 0xa \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (942:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (942:24): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  943|  4.95M|         : -1)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |               #define TBL0(x)  TBL(x),  TBL((x) + 1),   TBL((x) + 2),   TBL((x) + 3)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  940|  4.95M|        (  x >= '0' && x <= '9' ? x - '0'       \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (940:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (940:24): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  941|  4.95M|         : x >= 'a' && x <= 'f' ? x - 'a' + 0xa \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (941:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (941:24): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  942|  4.95M|         : x >= 'A' && x <= 'F' ? x - 'A' + 0xa \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (942:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (942:24): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  943|  4.95M|         : -1)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |               #define TBL0(x)  TBL(x),  TBL((x) + 1),   TBL((x) + 2),   TBL((x) + 3)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  940|  4.95M|        (  x >= '0' && x <= '9' ? x - '0'       \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (940:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (940:24): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  941|  4.95M|         : x >= 'a' && x <= 'f' ? x - 'a' + 0xa \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (941:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (941:24): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  942|  4.95M|         : x >= 'A' && x <= 'F' ? x - 'A' + 0xa \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (942:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (942:24): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  943|  4.95M|         : -1)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |               #define TBL0(x)  TBL(x),  TBL((x) + 1),   TBL((x) + 2),   TBL((x) + 3)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  940|  4.95M|        (  x >= '0' && x <= '9' ? x - '0'       \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (940:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (940:24): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  941|  4.95M|         : x >= 'a' && x <= 'f' ? x - 'a' + 0xa \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (941:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (941:24): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  942|  4.95M|         : x >= 'A' && x <= 'F' ? x - 'A' + 0xa \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (942:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (942:24): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  943|  4.95M|         : -1)
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  |  |               #define TBL1(x) TBL0(x), TBL0((x) + 4),  TBL0((x) + 8),  TBL0((x) + 12)
  |  |  |  |  ------------------
  |  |  |  |  |  |  944|  4.95M|#define TBL0(x)  TBL(x),  TBL((x) + 1),   TBL((x) + 2),   TBL((x) + 3)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  940|  4.95M|        (  x >= '0' && x <= '9' ? x - '0'       \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (940:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (940:24): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  941|  4.95M|         : x >= 'a' && x <= 'f' ? x - 'a' + 0xa \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (941:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (941:24): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  942|  4.95M|         : x >= 'A' && x <= 'F' ? x - 'A' + 0xa \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (942:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (942:24): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  943|  4.95M|         : -1)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |               #define TBL0(x)  TBL(x),  TBL((x) + 1),   TBL((x) + 2),   TBL((x) + 3)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  940|  4.95M|        (  x >= '0' && x <= '9' ? x - '0'       \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (940:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (940:24): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  941|  4.95M|         : x >= 'a' && x <= 'f' ? x - 'a' + 0xa \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (941:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (941:24): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  942|  4.95M|         : x >= 'A' && x <= 'F' ? x - 'A' + 0xa \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (942:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (942:24): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  943|  4.95M|         : -1)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |               #define TBL0(x)  TBL(x),  TBL((x) + 1),   TBL((x) + 2),   TBL((x) + 3)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  940|  4.95M|        (  x >= '0' && x <= '9' ? x - '0'       \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (940:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (940:24): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  941|  4.95M|         : x >= 'a' && x <= 'f' ? x - 'a' + 0xa \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (941:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (941:24): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  942|  4.95M|         : x >= 'A' && x <= 'F' ? x - 'A' + 0xa \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (942:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (942:24): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  943|  4.95M|         : -1)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |               #define TBL0(x)  TBL(x),  TBL((x) + 1),   TBL((x) + 2),   TBL((x) + 3)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  940|  4.95M|        (  x >= '0' && x <= '9' ? x - '0'       \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (940:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (940:24): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  941|  4.95M|         : x >= 'a' && x <= 'f' ? x - 'a' + 0xa \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (941:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (941:24): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  942|  4.95M|         : x >= 'A' && x <= 'F' ? x - 'A' + 0xa \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (942:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (942:24): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  943|  4.95M|         : -1)
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  |  |               #define TBL1(x) TBL0(x), TBL0((x) + 4),  TBL0((x) + 8),  TBL0((x) + 12)
  |  |  |  |  ------------------
  |  |  |  |  |  |  944|  4.95M|#define TBL0(x)  TBL(x),  TBL((x) + 1),   TBL((x) + 2),   TBL((x) + 3)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  940|  4.95M|        (  x >= '0' && x <= '9' ? x - '0'       \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (940:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (940:24): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  941|  4.95M|         : x >= 'a' && x <= 'f' ? x - 'a' + 0xa \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (941:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (941:24): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  942|  4.95M|         : x >= 'A' && x <= 'F' ? x - 'A' + 0xa \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (942:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (942:24): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  943|  4.95M|         : -1)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |               #define TBL0(x)  TBL(x),  TBL((x) + 1),   TBL((x) + 2),   TBL((x) + 3)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  940|  4.95M|        (  x >= '0' && x <= '9' ? x - '0'       \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (940:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (940:24): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  941|  4.95M|         : x >= 'a' && x <= 'f' ? x - 'a' + 0xa \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (941:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (941:24): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  942|  4.95M|         : x >= 'A' && x <= 'F' ? x - 'A' + 0xa \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (942:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (942:24): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  943|  4.95M|         : -1)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |               #define TBL0(x)  TBL(x),  TBL((x) + 1),   TBL((x) + 2),   TBL((x) + 3)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  940|  4.95M|        (  x >= '0' && x <= '9' ? x - '0'       \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (940:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (940:24): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  941|  4.95M|         : x >= 'a' && x <= 'f' ? x - 'a' + 0xa \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (941:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (941:24): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  942|  4.95M|         : x >= 'A' && x <= 'F' ? x - 'A' + 0xa \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (942:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (942:24): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  943|  4.95M|         : -1)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |               #define TBL0(x)  TBL(x),  TBL((x) + 1),   TBL((x) + 2),   TBL((x) + 3)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  940|  4.95M|        (  x >= '0' && x <= '9' ? x - '0'       \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (940:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (940:24): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  941|  4.95M|         : x >= 'a' && x <= 'f' ? x - 'a' + 0xa \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (941:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (941:24): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  942|  4.95M|         : x >= 'A' && x <= 'F' ? x - 'A' + 0xa \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (942:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (942:24): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  943|  4.95M|         : -1)
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  ------------------
  |  |               #define TBL2(x) TBL1(x), TBL1((x) + 16), TBL1((x) + 32), TBL1((x) + 48)
  |  |  ------------------
  |  |  |  |  945|  4.95M|#define TBL1(x) TBL0(x), TBL0((x) + 4),  TBL0((x) + 8),  TBL0((x) + 12)
  |  |  |  |  ------------------
  |  |  |  |  |  |  944|  4.95M|#define TBL0(x)  TBL(x),  TBL((x) + 1),   TBL((x) + 2),   TBL((x) + 3)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  940|  4.95M|        (  x >= '0' && x <= '9' ? x - '0'       \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (940:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (940:24): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  941|  4.95M|         : x >= 'a' && x <= 'f' ? x - 'a' + 0xa \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (941:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (941:24): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  942|  4.95M|         : x >= 'A' && x <= 'F' ? x - 'A' + 0xa \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (942:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (942:24): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  943|  4.95M|         : -1)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |               #define TBL0(x)  TBL(x),  TBL((x) + 1),   TBL((x) + 2),   TBL((x) + 3)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  940|  4.95M|        (  x >= '0' && x <= '9' ? x - '0'       \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (940:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (940:24): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  941|  4.95M|         : x >= 'a' && x <= 'f' ? x - 'a' + 0xa \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (941:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (941:24): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  942|  4.95M|         : x >= 'A' && x <= 'F' ? x - 'A' + 0xa \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (942:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (942:24): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  943|  4.95M|         : -1)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |               #define TBL0(x)  TBL(x),  TBL((x) + 1),   TBL((x) + 2),   TBL((x) + 3)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  940|  4.95M|        (  x >= '0' && x <= '9' ? x - '0'       \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (940:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (940:24): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  941|  4.95M|         : x >= 'a' && x <= 'f' ? x - 'a' + 0xa \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (941:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (941:24): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  942|  4.95M|         : x >= 'A' && x <= 'F' ? x - 'A' + 0xa \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (942:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (942:24): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  943|  4.95M|         : -1)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |               #define TBL0(x)  TBL(x),  TBL((x) + 1),   TBL((x) + 2),   TBL((x) + 3)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  940|  4.95M|        (  x >= '0' && x <= '9' ? x - '0'       \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (940:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (940:24): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  941|  4.95M|         : x >= 'a' && x <= 'f' ? x - 'a' + 0xa \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (941:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (941:24): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  942|  4.95M|         : x >= 'A' && x <= 'F' ? x - 'A' + 0xa \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (942:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (942:24): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  943|  4.95M|         : -1)
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  |  |               #define TBL1(x) TBL0(x), TBL0((x) + 4),  TBL0((x) + 8),  TBL0((x) + 12)
  |  |  |  |  ------------------
  |  |  |  |  |  |  944|  4.95M|#define TBL0(x)  TBL(x),  TBL((x) + 1),   TBL((x) + 2),   TBL((x) + 3)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  940|  4.95M|        (  x >= '0' && x <= '9' ? x - '0'       \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (940:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (940:24): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  941|  4.95M|         : x >= 'a' && x <= 'f' ? x - 'a' + 0xa \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (941:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (941:24): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  942|  4.95M|         : x >= 'A' && x <= 'F' ? x - 'A' + 0xa \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (942:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (942:24): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  943|  4.95M|         : -1)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |               #define TBL0(x)  TBL(x),  TBL((x) + 1),   TBL((x) + 2),   TBL((x) + 3)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  940|  4.95M|        (  x >= '0' && x <= '9' ? x - '0'       \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (940:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (940:24): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  941|  4.95M|         : x >= 'a' && x <= 'f' ? x - 'a' + 0xa \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (941:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (941:24): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  942|  4.95M|         : x >= 'A' && x <= 'F' ? x - 'A' + 0xa \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (942:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (942:24): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  943|  4.95M|         : -1)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |               #define TBL0(x)  TBL(x),  TBL((x) + 1),   TBL((x) + 2),   TBL((x) + 3)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  940|  4.95M|        (  x >= '0' && x <= '9' ? x - '0'       \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (940:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (940:24): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  941|  4.95M|         : x >= 'a' && x <= 'f' ? x - 'a' + 0xa \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (941:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (941:24): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  942|  4.95M|         : x >= 'A' && x <= 'F' ? x - 'A' + 0xa \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (942:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (942:24): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  943|  4.95M|         : -1)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |               #define TBL0(x)  TBL(x),  TBL((x) + 1),   TBL((x) + 2),   TBL((x) + 3)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  940|  4.95M|        (  x >= '0' && x <= '9' ? x - '0'       \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (940:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (940:24): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  941|  4.95M|         : x >= 'a' && x <= 'f' ? x - 'a' + 0xa \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (941:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (941:24): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  942|  4.95M|         : x >= 'A' && x <= 'F' ? x - 'A' + 0xa \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (942:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (942:24): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  943|  4.95M|         : -1)
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  |  |               #define TBL1(x) TBL0(x), TBL0((x) + 4),  TBL0((x) + 8),  TBL0((x) + 12)
  |  |  |  |  ------------------
  |  |  |  |  |  |  944|  4.95M|#define TBL0(x)  TBL(x),  TBL((x) + 1),   TBL((x) + 2),   TBL((x) + 3)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  940|  4.95M|        (  x >= '0' && x <= '9' ? x - '0'       \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (940:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (940:24): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  941|  4.95M|         : x >= 'a' && x <= 'f' ? x - 'a' + 0xa \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (941:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (941:24): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  942|  4.95M|         : x >= 'A' && x <= 'F' ? x - 'A' + 0xa \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (942:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (942:24): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  943|  4.95M|         : -1)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |               #define TBL0(x)  TBL(x),  TBL((x) + 1),   TBL((x) + 2),   TBL((x) + 3)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  940|  4.95M|        (  x >= '0' && x <= '9' ? x - '0'       \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (940:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (940:24): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  941|  4.95M|         : x >= 'a' && x <= 'f' ? x - 'a' + 0xa \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (941:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (941:24): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  942|  4.95M|         : x >= 'A' && x <= 'F' ? x - 'A' + 0xa \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (942:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (942:24): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  943|  4.95M|         : -1)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |               #define TBL0(x)  TBL(x),  TBL((x) + 1),   TBL((x) + 2),   TBL((x) + 3)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  940|  4.95M|        (  x >= '0' && x <= '9' ? x - '0'       \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (940:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (940:24): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  941|  4.95M|         : x >= 'a' && x <= 'f' ? x - 'a' + 0xa \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (941:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (941:24): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  942|  4.95M|         : x >= 'A' && x <= 'F' ? x - 'A' + 0xa \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (942:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (942:24): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  943|  4.95M|         : -1)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |               #define TBL0(x)  TBL(x),  TBL((x) + 1),   TBL((x) + 2),   TBL((x) + 3)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  940|  4.95M|        (  x >= '0' && x <= '9' ? x - '0'       \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (940:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (940:24): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  941|  4.95M|         : x >= 'a' && x <= 'f' ? x - 'a' + 0xa \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (941:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (941:24): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  942|  4.95M|         : x >= 'A' && x <= 'F' ? x - 'A' + 0xa \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (942:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (942:24): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  943|  4.95M|         : -1)
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  |  |               #define TBL1(x) TBL0(x), TBL0((x) + 4),  TBL0((x) + 8),  TBL0((x) + 12)
  |  |  |  |  ------------------
  |  |  |  |  |  |  944|  4.95M|#define TBL0(x)  TBL(x),  TBL((x) + 1),   TBL((x) + 2),   TBL((x) + 3)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  940|  4.95M|        (  x >= '0' && x <= '9' ? x - '0'       \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (940:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (940:24): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  941|  4.95M|         : x >= 'a' && x <= 'f' ? x - 'a' + 0xa \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (941:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (941:24): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  942|  4.95M|         : x >= 'A' && x <= 'F' ? x - 'A' + 0xa \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (942:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (942:24): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  943|  4.95M|         : -1)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |               #define TBL0(x)  TBL(x),  TBL((x) + 1),   TBL((x) + 2),   TBL((x) + 3)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  940|  4.95M|        (  x >= '0' && x <= '9' ? x - '0'       \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (940:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (940:24): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  941|  4.95M|         : x >= 'a' && x <= 'f' ? x - 'a' + 0xa \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (941:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (941:24): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  942|  4.95M|         : x >= 'A' && x <= 'F' ? x - 'A' + 0xa \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (942:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (942:24): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  943|  4.95M|         : -1)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |               #define TBL0(x)  TBL(x),  TBL((x) + 1),   TBL((x) + 2),   TBL((x) + 3)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  940|  4.95M|        (  x >= '0' && x <= '9' ? x - '0'       \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (940:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (940:24): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  941|  4.95M|         : x >= 'a' && x <= 'f' ? x - 'a' + 0xa \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (941:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (941:24): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  942|  4.95M|         : x >= 'A' && x <= 'F' ? x - 'A' + 0xa \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (942:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (942:24): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  943|  4.95M|         : -1)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |               #define TBL0(x)  TBL(x),  TBL((x) + 1),   TBL((x) + 2),   TBL((x) + 3)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  940|  4.95M|        (  x >= '0' && x <= '9' ? x - '0'       \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (940:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (940:24): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  941|  4.95M|         : x >= 'a' && x <= 'f' ? x - 'a' + 0xa \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (941:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (941:24): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  942|  4.95M|         : x >= 'A' && x <= 'F' ? x - 'A' + 0xa \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (942:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (942:24): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  943|  4.95M|         : -1)
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  ------------------
  |  |               #define TBL2(x) TBL1(x), TBL1((x) + 16), TBL1((x) + 32), TBL1((x) + 48)
  |  |  ------------------
  |  |  |  |  945|  4.95M|#define TBL1(x) TBL0(x), TBL0((x) + 4),  TBL0((x) + 8),  TBL0((x) + 12)
  |  |  |  |  ------------------
  |  |  |  |  |  |  944|  4.95M|#define TBL0(x)  TBL(x),  TBL((x) + 1),   TBL((x) + 2),   TBL((x) + 3)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  940|  4.95M|        (  x >= '0' && x <= '9' ? x - '0'       \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (940:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (940:24): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  941|  4.95M|         : x >= 'a' && x <= 'f' ? x - 'a' + 0xa \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (941:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (941:24): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  942|  4.95M|         : x >= 'A' && x <= 'F' ? x - 'A' + 0xa \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (942:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (942:24): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  943|  4.95M|         : -1)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |               #define TBL0(x)  TBL(x),  TBL((x) + 1),   TBL((x) + 2),   TBL((x) + 3)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  940|  4.95M|        (  x >= '0' && x <= '9' ? x - '0'       \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (940:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (940:24): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  941|  4.95M|         : x >= 'a' && x <= 'f' ? x - 'a' + 0xa \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (941:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (941:24): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  942|  4.95M|         : x >= 'A' && x <= 'F' ? x - 'A' + 0xa \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (942:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (942:24): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  943|  4.95M|         : -1)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |               #define TBL0(x)  TBL(x),  TBL((x) + 1),   TBL((x) + 2),   TBL((x) + 3)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  940|  4.95M|        (  x >= '0' && x <= '9' ? x - '0'       \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (940:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (940:24): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  941|  4.95M|         : x >= 'a' && x <= 'f' ? x - 'a' + 0xa \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (941:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (941:24): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  942|  4.95M|         : x >= 'A' && x <= 'F' ? x - 'A' + 0xa \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (942:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (942:24): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  943|  4.95M|         : -1)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |               #define TBL0(x)  TBL(x),  TBL((x) + 1),   TBL((x) + 2),   TBL((x) + 3)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  940|  4.95M|        (  x >= '0' && x <= '9' ? x - '0'       \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (940:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (940:24): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  941|  4.95M|         : x >= 'a' && x <= 'f' ? x - 'a' + 0xa \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (941:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (941:24): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  942|  4.95M|         : x >= 'A' && x <= 'F' ? x - 'A' + 0xa \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (942:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (942:24): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  943|  4.95M|         : -1)
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  |  |               #define TBL1(x) TBL0(x), TBL0((x) + 4),  TBL0((x) + 8),  TBL0((x) + 12)
  |  |  |  |  ------------------
  |  |  |  |  |  |  944|  4.95M|#define TBL0(x)  TBL(x),  TBL((x) + 1),   TBL((x) + 2),   TBL((x) + 3)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  940|  4.95M|        (  x >= '0' && x <= '9' ? x - '0'       \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (940:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (940:24): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  941|  4.95M|         : x >= 'a' && x <= 'f' ? x - 'a' + 0xa \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (941:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (941:24): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  942|  4.95M|         : x >= 'A' && x <= 'F' ? x - 'A' + 0xa \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (942:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (942:24): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  943|  4.95M|         : -1)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |               #define TBL0(x)  TBL(x),  TBL((x) + 1),   TBL((x) + 2),   TBL((x) + 3)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  940|  4.95M|        (  x >= '0' && x <= '9' ? x - '0'       \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (940:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (940:24): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  941|  4.95M|         : x >= 'a' && x <= 'f' ? x - 'a' + 0xa \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (941:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (941:24): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  942|  4.95M|         : x >= 'A' && x <= 'F' ? x - 'A' + 0xa \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (942:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (942:24): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  943|  4.95M|         : -1)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |               #define TBL0(x)  TBL(x),  TBL((x) + 1),   TBL((x) + 2),   TBL((x) + 3)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  940|  4.95M|        (  x >= '0' && x <= '9' ? x - '0'       \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (940:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (940:24): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  941|  4.95M|         : x >= 'a' && x <= 'f' ? x - 'a' + 0xa \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (941:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (941:24): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  942|  4.95M|         : x >= 'A' && x <= 'F' ? x - 'A' + 0xa \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (942:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (942:24): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  943|  4.95M|         : -1)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |               #define TBL0(x)  TBL(x),  TBL((x) + 1),   TBL((x) + 2),   TBL((x) + 3)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  940|  4.95M|        (  x >= '0' && x <= '9' ? x - '0'       \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (940:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (940:24): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  941|  4.95M|         : x >= 'a' && x <= 'f' ? x - 'a' + 0xa \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (941:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (941:24): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  942|  4.95M|         : x >= 'A' && x <= 'F' ? x - 'A' + 0xa \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (942:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (942:24): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  943|  4.95M|         : -1)
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  |  |               #define TBL1(x) TBL0(x), TBL0((x) + 4),  TBL0((x) + 8),  TBL0((x) + 12)
  |  |  |  |  ------------------
  |  |  |  |  |  |  944|  4.95M|#define TBL0(x)  TBL(x),  TBL((x) + 1),   TBL((x) + 2),   TBL((x) + 3)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  940|  4.95M|        (  x >= '0' && x <= '9' ? x - '0'       \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (940:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (940:24): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  941|  4.95M|         : x >= 'a' && x <= 'f' ? x - 'a' + 0xa \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (941:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (941:24): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  942|  4.95M|         : x >= 'A' && x <= 'F' ? x - 'A' + 0xa \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (942:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (942:24): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  943|  4.95M|         : -1)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |               #define TBL0(x)  TBL(x),  TBL((x) + 1),   TBL((x) + 2),   TBL((x) + 3)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  940|  4.95M|        (  x >= '0' && x <= '9' ? x - '0'       \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (940:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (940:24): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  941|  4.95M|         : x >= 'a' && x <= 'f' ? x - 'a' + 0xa \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (941:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (941:24): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  942|  4.95M|         : x >= 'A' && x <= 'F' ? x - 'A' + 0xa \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (942:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (942:24): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  943|  4.95M|         : -1)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |               #define TBL0(x)  TBL(x),  TBL((x) + 1),   TBL((x) + 2),   TBL((x) + 3)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  940|  4.95M|        (  x >= '0' && x <= '9' ? x - '0'       \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (940:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (940:24): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  941|  4.95M|         : x >= 'a' && x <= 'f' ? x - 'a' + 0xa \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (941:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (941:24): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  942|  4.95M|         : x >= 'A' && x <= 'F' ? x - 'A' + 0xa \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (942:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (942:24): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  943|  4.95M|         : -1)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |               #define TBL0(x)  TBL(x),  TBL((x) + 1),   TBL((x) + 2),   TBL((x) + 3)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  940|  4.95M|        (  x >= '0' && x <= '9' ? x - '0'       \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (940:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (940:24): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  941|  4.95M|         : x >= 'a' && x <= 'f' ? x - 'a' + 0xa \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (941:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (941:24): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  942|  4.95M|         : x >= 'A' && x <= 'F' ? x - 'A' + 0xa \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (942:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (942:24): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  943|  4.95M|         : -1)
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  |  |               #define TBL1(x) TBL0(x), TBL0((x) + 4),  TBL0((x) + 8),  TBL0((x) + 12)
  |  |  |  |  ------------------
  |  |  |  |  |  |  944|  4.95M|#define TBL0(x)  TBL(x),  TBL((x) + 1),   TBL((x) + 2),   TBL((x) + 3)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  940|  4.95M|        (  x >= '0' && x <= '9' ? x - '0'       \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (940:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (940:24): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  941|  4.95M|         : x >= 'a' && x <= 'f' ? x - 'a' + 0xa \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (941:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (941:24): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  942|  4.95M|         : x >= 'A' && x <= 'F' ? x - 'A' + 0xa \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (942:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (942:24): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  943|  4.95M|         : -1)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |               #define TBL0(x)  TBL(x),  TBL((x) + 1),   TBL((x) + 2),   TBL((x) + 3)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  940|  4.95M|        (  x >= '0' && x <= '9' ? x - '0'       \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (940:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (940:24): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  941|  4.95M|         : x >= 'a' && x <= 'f' ? x - 'a' + 0xa \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (941:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (941:24): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  942|  4.95M|         : x >= 'A' && x <= 'F' ? x - 'A' + 0xa \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (942:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (942:24): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  943|  4.95M|         : -1)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |               #define TBL0(x)  TBL(x),  TBL((x) + 1),   TBL((x) + 2),   TBL((x) + 3)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  940|  4.95M|        (  x >= '0' && x <= '9' ? x - '0'       \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (940:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (940:24): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  941|  4.95M|         : x >= 'a' && x <= 'f' ? x - 'a' + 0xa \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (941:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (941:24): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  942|  4.95M|         : x >= 'A' && x <= 'F' ? x - 'A' + 0xa \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (942:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (942:24): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  943|  4.95M|         : -1)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |               #define TBL0(x)  TBL(x),  TBL((x) + 1),   TBL((x) + 2),   TBL((x) + 3)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  940|  4.95M|        (  x >= '0' && x <= '9' ? x - '0'       \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (940:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (940:24): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  941|  4.95M|         : x >= 'a' && x <= 'f' ? x - 'a' + 0xa \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (941:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (941:24): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  942|  4.95M|         : x >= 'A' && x <= 'F' ? x - 'A' + 0xa \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (942:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (942:24): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  943|  4.95M|         : -1)
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  ------------------
  |  |               #define TBL2(x) TBL1(x), TBL1((x) + 16), TBL1((x) + 32), TBL1((x) + 48)
  |  |  ------------------
  |  |  |  |  945|  4.95M|#define TBL1(x) TBL0(x), TBL0((x) + 4),  TBL0((x) + 8),  TBL0((x) + 12)
  |  |  |  |  ------------------
  |  |  |  |  |  |  944|  4.95M|#define TBL0(x)  TBL(x),  TBL((x) + 1),   TBL((x) + 2),   TBL((x) + 3)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  940|  4.95M|        (  x >= '0' && x <= '9' ? x - '0'       \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (940:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (940:24): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  941|  4.95M|         : x >= 'a' && x <= 'f' ? x - 'a' + 0xa \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (941:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (941:24): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  942|  4.95M|         : x >= 'A' && x <= 'F' ? x - 'A' + 0xa \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (942:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (942:24): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  943|  4.95M|         : -1)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |               #define TBL0(x)  TBL(x),  TBL((x) + 1),   TBL((x) + 2),   TBL((x) + 3)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  940|  4.95M|        (  x >= '0' && x <= '9' ? x - '0'       \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (940:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (940:24): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  941|  4.95M|         : x >= 'a' && x <= 'f' ? x - 'a' + 0xa \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (941:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (941:24): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  942|  4.95M|         : x >= 'A' && x <= 'F' ? x - 'A' + 0xa \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (942:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (942:24): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  943|  4.95M|         : -1)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |               #define TBL0(x)  TBL(x),  TBL((x) + 1),   TBL((x) + 2),   TBL((x) + 3)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  940|  4.95M|        (  x >= '0' && x <= '9' ? x - '0'       \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (940:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (940:24): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  941|  4.95M|         : x >= 'a' && x <= 'f' ? x - 'a' + 0xa \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (941:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (941:24): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  942|  4.95M|         : x >= 'A' && x <= 'F' ? x - 'A' + 0xa \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (942:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (942:24): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  943|  4.95M|         : -1)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |               #define TBL0(x)  TBL(x),  TBL((x) + 1),   TBL((x) + 2),   TBL((x) + 3)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  940|  4.95M|        (  x >= '0' && x <= '9' ? x - '0'       \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (940:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (940:24): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  941|  4.95M|         : x >= 'a' && x <= 'f' ? x - 'a' + 0xa \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (941:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (941:24): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  942|  4.95M|         : x >= 'A' && x <= 'F' ? x - 'A' + 0xa \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (942:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (942:24): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  943|  4.95M|         : -1)
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  |  |               #define TBL1(x) TBL0(x), TBL0((x) + 4),  TBL0((x) + 8),  TBL0((x) + 12)
  |  |  |  |  ------------------
  |  |  |  |  |  |  944|  4.95M|#define TBL0(x)  TBL(x),  TBL((x) + 1),   TBL((x) + 2),   TBL((x) + 3)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  940|  4.95M|        (  x >= '0' && x <= '9' ? x - '0'       \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (940:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (940:24): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  941|  4.95M|         : x >= 'a' && x <= 'f' ? x - 'a' + 0xa \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (941:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (941:24): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  942|  4.95M|         : x >= 'A' && x <= 'F' ? x - 'A' + 0xa \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (942:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (942:24): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  943|  4.95M|         : -1)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |               #define TBL0(x)  TBL(x),  TBL((x) + 1),   TBL((x) + 2),   TBL((x) + 3)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  940|  4.95M|        (  x >= '0' && x <= '9' ? x - '0'       \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (940:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (940:24): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  941|  4.95M|         : x >= 'a' && x <= 'f' ? x - 'a' + 0xa \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (941:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (941:24): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  942|  4.95M|         : x >= 'A' && x <= 'F' ? x - 'A' + 0xa \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (942:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (942:24): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  943|  4.95M|         : -1)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |               #define TBL0(x)  TBL(x),  TBL((x) + 1),   TBL((x) + 2),   TBL((x) + 3)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  940|  4.95M|        (  x >= '0' && x <= '9' ? x - '0'       \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (940:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (940:24): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  941|  4.95M|         : x >= 'a' && x <= 'f' ? x - 'a' + 0xa \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (941:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (941:24): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  942|  4.95M|         : x >= 'A' && x <= 'F' ? x - 'A' + 0xa \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (942:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (942:24): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  943|  4.95M|         : -1)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |               #define TBL0(x)  TBL(x),  TBL((x) + 1),   TBL((x) + 2),   TBL((x) + 3)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  940|  4.95M|        (  x >= '0' && x <= '9' ? x - '0'       \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (940:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (940:24): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  941|  4.95M|         : x >= 'a' && x <= 'f' ? x - 'a' + 0xa \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (941:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (941:24): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  942|  4.95M|         : x >= 'A' && x <= 'F' ? x - 'A' + 0xa \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (942:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (942:24): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  943|  4.95M|         : -1)
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  |  |               #define TBL1(x) TBL0(x), TBL0((x) + 4),  TBL0((x) + 8),  TBL0((x) + 12)
  |  |  |  |  ------------------
  |  |  |  |  |  |  944|  4.95M|#define TBL0(x)  TBL(x),  TBL((x) + 1),   TBL((x) + 2),   TBL((x) + 3)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  940|  4.95M|        (  x >= '0' && x <= '9' ? x - '0'       \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (940:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (940:24): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  941|  4.95M|         : x >= 'a' && x <= 'f' ? x - 'a' + 0xa \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (941:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (941:24): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  942|  4.95M|         : x >= 'A' && x <= 'F' ? x - 'A' + 0xa \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (942:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (942:24): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  943|  4.95M|         : -1)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |               #define TBL0(x)  TBL(x),  TBL((x) + 1),   TBL((x) + 2),   TBL((x) + 3)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  940|  4.95M|        (  x >= '0' && x <= '9' ? x - '0'       \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (940:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (940:24): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  941|  4.95M|         : x >= 'a' && x <= 'f' ? x - 'a' + 0xa \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (941:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (941:24): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  942|  4.95M|         : x >= 'A' && x <= 'F' ? x - 'A' + 0xa \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (942:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (942:24): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  943|  4.95M|         : -1)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |               #define TBL0(x)  TBL(x),  TBL((x) + 1),   TBL((x) + 2),   TBL((x) + 3)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  940|  4.95M|        (  x >= '0' && x <= '9' ? x - '0'       \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (940:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (940:24): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  941|  4.95M|         : x >= 'a' && x <= 'f' ? x - 'a' + 0xa \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (941:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (941:24): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  942|  4.95M|         : x >= 'A' && x <= 'F' ? x - 'A' + 0xa \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (942:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (942:24): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  943|  4.95M|         : -1)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |               #define TBL0(x)  TBL(x),  TBL((x) + 1),   TBL((x) + 2),   TBL((x) + 3)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  940|  4.95M|        (  x >= '0' && x <= '9' ? x - '0'       \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (940:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (940:24): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  941|  4.95M|         : x >= 'a' && x <= 'f' ? x - 'a' + 0xa \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (941:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (941:24): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  942|  4.95M|         : x >= 'A' && x <= 'F' ? x - 'A' + 0xa \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (942:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (942:24): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  943|  4.95M|         : -1)
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  |  |               #define TBL1(x) TBL0(x), TBL0((x) + 4),  TBL0((x) + 8),  TBL0((x) + 12)
  |  |  |  |  ------------------
  |  |  |  |  |  |  944|  4.95M|#define TBL0(x)  TBL(x),  TBL((x) + 1),   TBL((x) + 2),   TBL((x) + 3)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  940|  4.95M|        (  x >= '0' && x <= '9' ? x - '0'       \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (940:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (940:24): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  941|  4.95M|         : x >= 'a' && x <= 'f' ? x - 'a' + 0xa \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (941:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (941:24): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  942|  4.95M|         : x >= 'A' && x <= 'F' ? x - 'A' + 0xa \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (942:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (942:24): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  943|  4.95M|         : -1)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |               #define TBL0(x)  TBL(x),  TBL((x) + 1),   TBL((x) + 2),   TBL((x) + 3)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  940|  4.95M|        (  x >= '0' && x <= '9' ? x - '0'       \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (940:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (940:24): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  941|  4.95M|         : x >= 'a' && x <= 'f' ? x - 'a' + 0xa \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (941:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (941:24): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  942|  4.95M|         : x >= 'A' && x <= 'F' ? x - 'A' + 0xa \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (942:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (942:24): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  943|  4.95M|         : -1)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |               #define TBL0(x)  TBL(x),  TBL((x) + 1),   TBL((x) + 2),   TBL((x) + 3)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  940|  4.95M|        (  x >= '0' && x <= '9' ? x - '0'       \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (940:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (940:24): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  941|  4.95M|         : x >= 'a' && x <= 'f' ? x - 'a' + 0xa \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (941:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (941:24): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  942|  4.95M|         : x >= 'A' && x <= 'F' ? x - 'A' + 0xa \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (942:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (942:24): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  943|  4.95M|         : -1)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |               #define TBL0(x)  TBL(x),  TBL((x) + 1),   TBL((x) + 2),   TBL((x) + 3)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  940|  4.95M|        (  x >= '0' && x <= '9' ? x - '0'       \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (940:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (940:24): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  941|  4.95M|         : x >= 'a' && x <= 'f' ? x - 'a' + 0xa \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (941:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (941:24): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  942|  4.95M|         : x >= 'A' && x <= 'F' ? x - 'A' + 0xa \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (942:12): [True: 0, Folded]
  |  |  |  |  |  |  |  |  |  Branch (942:24): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  943|  4.95M|         : -1)
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  948|  4.95M|    };
  949|       |
  950|  4.95M|    return tbl[c];
  951|  4.95M|}
hexits_value:
  959|  1.64M|{
  960|  1.64M|    uintmax_t value;
  961|  1.64M|    size_t i;
  962|       |
  963|  1.64M|    value = 0;
  964|  4.89M|    for (i = 0; i < n; i++) {
  ------------------
  |  Branch (964:17): [True: 3.26M, False: 1.63M]
  ------------------
  965|  3.26M|        int hexit = hexit_value(s[i]);
  966|  3.26M|        if (hexit < 0) {
  ------------------
  |  Branch (966:13): [True: 12.2k, False: 3.24M]
  ------------------
  967|  12.2k|            *ok = false;
  968|  12.2k|            return UINTMAX_MAX;
  969|  12.2k|        }
  970|  3.24M|        value = (value << 4) + hexit;
  971|  3.24M|    }
  972|  1.63M|    *ok = true;
  973|  1.63M|    return value;
  974|  1.64M|}
parse_int_string:
  988|   250k|{
  989|   250k|    unsigned long long int integer;
  990|   250k|    int i;
  991|       |
  992|   250k|    if (!strncmp(s, "0x", 2) || !strncmp(s, "0X", 2)) {
  ------------------
  |  Branch (992:9): [True: 6.17k, False: 244k]
  |  Branch (992:33): [True: 1.79k, False: 242k]
  ------------------
  993|  7.97k|        uint8_t *hexit_str;
  994|  7.97k|        int len = 0;
  995|  7.97k|        int val_idx;
  996|  7.97k|        int err = 0;
  997|       |
  998|  7.97k|        s += 2;
  999|  7.97k|        hexit_str = xmalloc(field_width * 2);
 1000|       |
 1001|   110k|        for (;;) {
 1002|   110k|            uint8_t hexit;
 1003|   110k|            bool ok;
 1004|       |
 1005|   110k|            s += strspn(s, " \t\r\n");
 1006|   110k|            hexit = hexits_value(s, 1, &ok);
 1007|   110k|            if (!ok) {
  ------------------
  |  Branch (1007:17): [True: 7.97k, False: 102k]
  ------------------
 1008|  7.97k|                *tail = CONST_CAST(char *, s);
  ------------------
  |  |   85|  7.97k|    (BUILD_ASSERT_TYPE(POINTER, TYPE),                          \
  |  |  ------------------
  |  |  |  |   80|  7.97k|    ((void) sizeof ((int) ((POINTER) == (TYPE) (POINTER))))
  |  |  ------------------
  |  |   86|  7.97k|     (TYPE) (POINTER))
  ------------------
 1009|  7.97k|                break;
 1010|  7.97k|            }
 1011|       |
 1012|   102k|            if (hexit != 0 || len) {
  ------------------
  |  Branch (1012:17): [True: 74.1k, False: 28.7k]
  |  Branch (1012:31): [True: 28.0k, False: 790]
  ------------------
 1013|   102k|                if (DIV_ROUND_UP(len + 1, 2) > field_width) {
  ------------------
  |  |  300|   102k|#define DIV_ROUND_UP(X, Y) (((X) + ((Y) - 1)) / (Y))
  ------------------
  |  Branch (1013:21): [True: 5, False: 102k]
  ------------------
 1014|      5|                    err = ERANGE;
 1015|      5|                    goto free;
 1016|      5|                }
 1017|       |
 1018|   102k|                hexit_str[len] = hexit;
 1019|   102k|                len++;
 1020|   102k|            }
 1021|   102k|            s++;
 1022|   102k|        }
 1023|       |
 1024|  7.97k|        val_idx = field_width;
 1025|  60.5k|        for (i = len - 1; i >= 0; i -= 2) {
  ------------------
  |  Branch (1025:27): [True: 52.5k, False: 7.97k]
  ------------------
 1026|  52.5k|            val_idx--;
 1027|  52.5k|            valuep[val_idx] = hexit_str[i];
 1028|  52.5k|            if (i > 0) {
  ------------------
  |  Branch (1028:17): [True: 49.4k, False: 3.12k]
  ------------------
 1029|  49.4k|                valuep[val_idx] += hexit_str[i - 1] << 4;
 1030|  49.4k|            }
 1031|  52.5k|        }
 1032|       |
 1033|  7.97k|        memset(valuep, 0, val_idx);
 1034|       |
 1035|  7.97k|free:
 1036|  7.97k|        free(hexit_str);
 1037|  7.97k|        return err;
 1038|  7.97k|    }
 1039|       |
 1040|   250k|    errno = 0;
 1041|   242k|    integer = strtoull(s, tail, 0);
 1042|   242k|    if (errno || s == *tail) {
  ------------------
  |  Branch (1042:9): [True: 1, False: 242k]
  |  Branch (1042:18): [True: 638, False: 242k]
  ------------------
 1043|    639|        return errno ? errno : EINVAL;
  ------------------
  |  Branch (1043:16): [True: 1, False: 638]
  ------------------
 1044|    639|    }
 1045|       |
 1046|  6.99M|    for (i = field_width - 1; i >= 0; i--) {
  ------------------
  |  Branch (1046:31): [True: 6.74M, False: 242k]
  ------------------
 1047|  6.74M|        valuep[i] = integer;
 1048|  6.74M|        integer >>= 8;
 1049|  6.74M|    }
 1050|   242k|    if (integer) {
  ------------------
  |  Branch (1050:9): [True: 51, False: 241k]
  ------------------
 1051|     51|        return ERANGE;
 1052|     51|    }
 1053|       |
 1054|   241k|    return 0;
 1055|   242k|}
ovs_ignore:
 1265|  15.6M|void ovs_ignore(bool x OVS_UNUSED) { }
is_all_byte:
 1356|   685k|{
 1357|   685k|    const uint8_t *p = p_;
 1358|   685k|    size_t i;
 1359|       |
 1360|  10.4M|    for (i = 0; i < n; i++) {
  ------------------
  |  Branch (1360:17): [True: 10.0M, False: 465k]
  ------------------
 1361|  10.0M|        if (p[i] != byte) {
  ------------------
  |  Branch (1361:13): [True: 220k, False: 9.81M]
  ------------------
 1362|   220k|            return false;
 1363|   220k|        }
 1364|  10.0M|    }
 1365|   465k|    return true;
 1366|   685k|}
is_all_zeros:
 1371|   422k|{
 1372|   422k|    return is_all_byte(p, n, 0);
 1373|   422k|}
is_all_ones:
 1378|   262k|{
 1379|   262k|    return is_all_byte(p, n, 0xff);
 1380|   262k|}
bitwise_copy:
 1414|   181k|{
 1415|   181k|    const uint8_t *src = src_;
 1416|   181k|    uint8_t *dst = dst_;
 1417|       |
 1418|   181k|    src += src_len - (src_ofs / 8 + 1);
 1419|   181k|    src_ofs %= 8;
 1420|       |
 1421|   181k|    dst += dst_len - (dst_ofs / 8 + 1);
 1422|   181k|    dst_ofs %= 8;
 1423|       |
 1424|   181k|    if (src_ofs == 0 && dst_ofs == 0) {
  ------------------
  |  Branch (1424:9): [True: 120k, False: 61.1k]
  |  Branch (1424:25): [True: 81.4k, False: 39.3k]
  ------------------
 1425|  81.4k|        unsigned int n_bytes = n_bits / 8;
 1426|  81.4k|        if (n_bytes) {
  ------------------
  |  Branch (1426:13): [True: 46.5k, False: 34.9k]
  ------------------
 1427|  46.5k|            dst -= n_bytes - 1;
 1428|  46.5k|            src -= n_bytes - 1;
 1429|  46.5k|            memcpy(dst, src, n_bytes);
 1430|       |
 1431|  46.5k|            n_bits %= 8;
 1432|  46.5k|            src--;
 1433|  46.5k|            dst--;
 1434|  46.5k|        }
 1435|  81.4k|        if (n_bits) {
  ------------------
  |  Branch (1435:13): [True: 35.9k, False: 45.5k]
  ------------------
 1436|  35.9k|            uint8_t mask = (1 << n_bits) - 1;
 1437|  35.9k|            *dst = (*dst & ~mask) | (*src & mask);
 1438|  35.9k|        }
 1439|   100k|    } else {
 1440|   216k|        while (n_bits > 0) {
  ------------------
  |  Branch (1440:16): [True: 116k, False: 100k]
  ------------------
 1441|   116k|            unsigned int max_copy = 8 - MAX(src_ofs, dst_ofs);
  ------------------
  |  |   95|   116k|#define MAX(X, Y) ((X) > (Y) ? (X) : (Y))
  |  |  ------------------
  |  |  |  Branch (95:20): [True: 67.6k, False: 48.4k]
  |  |  ------------------
  ------------------
 1442|   116k|            unsigned int chunk = MIN(n_bits, max_copy);
  ------------------
  |  |   91|   116k|#define MIN(X, Y) ((X) < (Y) ? (X) : (Y))
  |  |  ------------------
  |  |  |  Branch (91:20): [True: 90.5k, False: 25.5k]
  |  |  ------------------
  ------------------
 1443|   116k|            uint8_t mask = ((1 << chunk) - 1) << dst_ofs;
 1444|       |
 1445|   116k|            *dst &= ~mask;
 1446|   116k|            *dst |= ((*src >> src_ofs) << dst_ofs) & mask;
 1447|       |
 1448|   116k|            src_ofs += chunk;
 1449|   116k|            if (src_ofs == 8) {
  ------------------
  |  Branch (1449:17): [True: 14.0k, False: 102k]
  ------------------
 1450|  14.0k|                src--;
 1451|  14.0k|                src_ofs = 0;
 1452|  14.0k|            }
 1453|   116k|            dst_ofs += chunk;
 1454|   116k|            if (dst_ofs == 8) {
  ------------------
  |  Branch (1454:17): [True: 11.5k, False: 104k]
  ------------------
 1455|  11.5k|                dst--;
 1456|  11.5k|                dst_ofs = 0;
 1457|  11.5k|            }
 1458|   116k|            n_bits -= chunk;
 1459|   116k|        }
 1460|   100k|    }
 1461|   181k|}
bitwise_one:
 1526|   108k|{
 1527|   108k|    uint8_t *dst = dst_;
 1528|       |
 1529|   108k|    if (!n_bits) {
  ------------------
  |  Branch (1529:9): [True: 0, False: 108k]
  ------------------
 1530|      0|        return;
 1531|      0|    }
 1532|       |
 1533|   108k|    dst += dst_len - (dst_ofs / 8 + 1);
 1534|   108k|    dst_ofs %= 8;
 1535|       |
 1536|   108k|    if (dst_ofs) {
  ------------------
  |  Branch (1536:9): [True: 39.3k, False: 69.0k]
  ------------------
 1537|  39.3k|        unsigned int chunk = MIN(n_bits, 8 - dst_ofs);
  ------------------
  |  |   91|  39.3k|#define MIN(X, Y) ((X) < (Y) ? (X) : (Y))
  |  |  ------------------
  |  |  |  Branch (91:20): [True: 34.0k, False: 5.33k]
  |  |  ------------------
  ------------------
 1538|       |
 1539|  39.3k|        *dst |= ((1 << chunk) - 1) << dst_ofs;
 1540|       |
 1541|  39.3k|        n_bits -= chunk;
 1542|  39.3k|        if (!n_bits) {
  ------------------
  |  Branch (1542:13): [True: 38.8k, False: 514]
  ------------------
 1543|  38.8k|            return;
 1544|  38.8k|        }
 1545|       |
 1546|    514|        dst--;
 1547|    514|    }
 1548|       |
 1549|  2.82M|    while (n_bits >= 8) {
  ------------------
  |  Branch (1549:12): [True: 2.75M, False: 69.5k]
  ------------------
 1550|  2.75M|        *dst-- = 0xff;
 1551|  2.75M|        n_bits -= 8;
 1552|  2.75M|    }
 1553|       |
 1554|  69.5k|    if (n_bits) {
  ------------------
  |  Branch (1554:9): [True: 26.6k, False: 42.9k]
  ------------------
 1555|  26.6k|        *dst |= (1 << n_bits) - 1;
 1556|  26.6k|    }
 1557|  69.5k|}
bitwise_is_all_zeros:
 1575|  80.9k|{
 1576|  80.9k|    const uint8_t *p = p_;
 1577|       |
 1578|  80.9k|    if (!n_bits) {
  ------------------
  |  Branch (1578:9): [True: 13.4k, False: 67.5k]
  ------------------
 1579|  13.4k|        return true;
 1580|  13.4k|    }
 1581|       |
 1582|  67.5k|    p += len - (ofs / 8 + 1);
 1583|  67.5k|    ofs %= 8;
 1584|       |
 1585|  67.5k|    if (ofs) {
  ------------------
  |  Branch (1585:9): [True: 66.5k, False: 957]
  ------------------
 1586|  66.5k|        unsigned int chunk = MIN(n_bits, 8 - ofs);
  ------------------
  |  |   91|  66.5k|#define MIN(X, Y) ((X) < (Y) ? (X) : (Y))
  |  |  ------------------
  |  |  |  Branch (91:20): [True: 0, False: 66.5k]
  |  |  ------------------
  ------------------
 1587|       |
 1588|  66.5k|        if (*p & (((1 << chunk) - 1) << ofs)) {
  ------------------
  |  Branch (1588:13): [True: 101, False: 66.4k]
  ------------------
 1589|    101|            return false;
 1590|    101|        }
 1591|       |
 1592|  66.4k|        n_bits -= chunk;
 1593|  66.4k|        if (!n_bits) {
  ------------------
  |  Branch (1593:13): [True: 9.36k, False: 57.0k]
  ------------------
 1594|  9.36k|            return true;
 1595|  9.36k|        }
 1596|       |
 1597|  57.0k|        p--;
 1598|  57.0k|    }
 1599|       |
 1600|  2.57M|    while (n_bits >= 8) {
  ------------------
  |  Branch (1600:12): [True: 2.51M, False: 58.0k]
  ------------------
 1601|  2.51M|        if (*p) {
  ------------------
  |  Branch (1601:13): [True: 15, False: 2.51M]
  ------------------
 1602|     15|            return false;
 1603|     15|        }
 1604|  2.51M|        n_bits -= 8;
 1605|  2.51M|        p--;
 1606|  2.51M|    }
 1607|       |
 1608|  58.0k|    if (n_bits && *p & ((1 << n_bits) - 1)) {
  ------------------
  |  Branch (1608:9): [True: 0, False: 58.0k]
  |  Branch (1608:19): [True: 0, False: 0]
  ------------------
 1609|      0|        return false;
 1610|      0|    }
 1611|       |
 1612|  58.0k|    return true;
 1613|  58.0k|}
bitwise_scan:
 1630|   154k|{
 1631|   154k|    unsigned int ofs;
 1632|       |
 1633|   808k|    for (ofs = start; ofs < end; ofs++) {
  ------------------
  |  Branch (1633:23): [True: 796k, False: 11.6k]
  ------------------
 1634|   796k|        if (bitwise_get_bit(p, len, ofs) == target) {
  ------------------
  |  Branch (1634:13): [True: 142k, False: 653k]
  ------------------
 1635|   142k|            break;
 1636|   142k|        }
 1637|   796k|    }
 1638|   154k|    return ofs;
 1639|   154k|}
bitwise_get:
 1742|  73.5k|{
 1743|  73.5k|    ovs_be64 value = htonll(0);
 1744|       |
 1745|  73.5k|    bitwise_copy(src, src_len, src_ofs,
 1746|  73.5k|                 &value, sizeof value, 0,
 1747|  73.5k|                 n_bits);
 1748|  73.5k|    return ntohll(value);
 1749|  73.5k|}
bitwise_get_bit:
 1765|   796k|{
 1766|   796k|    const uint8_t *src = src_;
 1767|       |
 1768|   796k|    return (src[len - (ofs / 8 + 1)] & (1u << (ofs % 8))) != 0;
 1769|   796k|}
ovs_scan:
 2291|   140k|{
 2292|   140k|    va_list args;
 2293|   140k|    bool res;
 2294|       |
 2295|   140k|    va_start(args, format);
 2296|   140k|    res = ovs_scan__(s, NULL, format, &args);
 2297|       |    va_end(args);
 2298|   140k|    return res;
 2299|   140k|}
ovs_scan_len:
 2307|   146k|{
 2308|   146k|    va_list args;
 2309|   146k|    bool success;
 2310|   146k|    int n1;
 2311|       |
 2312|   146k|    va_start(args, format);
 2313|   146k|    success = ovs_scan__(s + *n, &n1, format, &args);
 2314|   146k|    va_end(args);
 2315|   146k|    if (success) {
  ------------------
  |  Branch (2315:9): [True: 75.0k, False: 71.8k]
  ------------------
 2316|  75.0k|        *n = *n + n1;
 2317|  75.0k|    }
 2318|   146k|    return success;
 2319|   146k|}
util.c:ovs_scan__:
 2111|   287k|{
 2112|   287k|    const char *const start = s;
 2113|   287k|    bool ok = false;
 2114|   287k|    const char *p;
 2115|       |
 2116|   287k|    p = format;
 2117|   807k|    while (*p != '\0') {
  ------------------
  |  Branch (2117:12): [True: 660k, False: 146k]
  ------------------
 2118|   660k|        struct scan_spec spec;
 2119|   660k|        unsigned char c = *p++;
 2120|   660k|        bool discard;
 2121|       |
 2122|   660k|        if (isspace(c)) {
  ------------------
  |  Branch (2122:13): [True: 5.55k, False: 655k]
  ------------------
 2123|  5.55k|            s = skip_spaces(s);
 2124|  5.55k|            continue;
 2125|   655k|        } else if (c != '%') {
  ------------------
  |  Branch (2125:20): [True: 330k, False: 324k]
  ------------------
 2126|   330k|            if (*s != c) {
  ------------------
  |  Branch (2126:17): [True: 94.0k, False: 236k]
  ------------------
 2127|  94.0k|                goto exit;
 2128|  94.0k|            }
 2129|   236k|            s++;
 2130|   236k|            continue;
 2131|   330k|        } else if (*p == '%') {
  ------------------
  |  Branch (2131:20): [True: 0, False: 324k]
  ------------------
 2132|      0|            if (*s++ != '%') {
  ------------------
  |  Branch (2132:17): [True: 0, False: 0]
  ------------------
 2133|      0|                goto exit;
 2134|      0|            }
 2135|      0|            p++;
 2136|      0|            continue;
 2137|      0|        }
 2138|       |
 2139|       |        /* Parse '*' flag. */
 2140|   324k|        discard = *p == '*';
 2141|   324k|        p += discard;
 2142|       |
 2143|       |        /* Parse field width. */
 2144|   324k|        spec.width = 0;
 2145|   467k|        while (*p >= '0' && *p <= '9') {
  ------------------
  |  Branch (2145:16): [True: 467k, False: 0]
  |  Branch (2145:29): [True: 143k, False: 324k]
  ------------------
 2146|   143k|            spec.width = spec.width * 10 + (*p++ - '0');
 2147|   143k|        }
 2148|   324k|        if (spec.width == 0) {
  ------------------
  |  Branch (2148:13): [True: 253k, False: 71.5k]
  ------------------
 2149|   253k|            spec.width = UINT_MAX;
 2150|   253k|        }
 2151|       |
 2152|       |        /* Parse type modifier. */
 2153|   324k|        switch (*p) {
 2154|   104k|        case 'h':
  ------------------
  |  Branch (2154:9): [True: 104k, False: 219k]
  ------------------
 2155|   104k|            if (p[1] == 'h') {
  ------------------
  |  Branch (2155:17): [True: 102k, False: 2.29k]
  ------------------
 2156|   102k|                spec.type = SCAN_CHAR;
 2157|   102k|                p += 2;
 2158|   102k|            } else {
 2159|  2.29k|                spec.type = SCAN_SHORT;
 2160|  2.29k|                p++;
 2161|  2.29k|            }
 2162|   104k|            break;
 2163|       |
 2164|      0|        case 'j':
  ------------------
  |  Branch (2164:9): [True: 0, False: 324k]
  ------------------
 2165|      0|            spec.type = SCAN_INTMAX_T;
 2166|      0|            p++;
 2167|      0|            break;
 2168|       |
 2169|  4.36k|        case 'l':
  ------------------
  |  Branch (2169:9): [True: 4.36k, False: 320k]
  ------------------
 2170|  4.36k|            if (p[1] == 'l') {
  ------------------
  |  Branch (2170:17): [True: 4.36k, False: 0]
  ------------------
 2171|  4.36k|                spec.type = SCAN_LLONG;
 2172|  4.36k|                p += 2;
 2173|  4.36k|            } else {
 2174|      0|                spec.type = SCAN_LONG;
 2175|      0|                p++;
 2176|      0|            }
 2177|  4.36k|            break;
 2178|       |
 2179|      0|        case 'L':
  ------------------
  |  Branch (2179:9): [True: 0, False: 324k]
  ------------------
 2180|      0|        case 'q':
  ------------------
  |  Branch (2180:9): [True: 0, False: 324k]
  ------------------
 2181|      0|            spec.type = SCAN_LLONG;
 2182|      0|            p++;
 2183|      0|            break;
 2184|       |
 2185|      0|        case 't':
  ------------------
  |  Branch (2185:9): [True: 0, False: 324k]
  ------------------
 2186|      0|            spec.type = SCAN_PTRDIFF_T;
 2187|      0|            p++;
 2188|      0|            break;
 2189|       |
 2190|      0|        case 'z':
  ------------------
  |  Branch (2190:9): [True: 0, False: 324k]
  ------------------
 2191|      0|            spec.type = SCAN_SIZE_T;
 2192|      0|            p++;
 2193|      0|            break;
 2194|       |
 2195|   215k|        default:
  ------------------
  |  Branch (2195:9): [True: 215k, False: 109k]
  ------------------
 2196|   215k|            spec.type = SCAN_INT;
 2197|   215k|            break;
 2198|   324k|        }
 2199|       |
 2200|   324k|        if (discard) {
  ------------------
  |  Branch (2200:13): [True: 0, False: 324k]
  ------------------
 2201|      0|            spec.type = SCAN_DISCARD;
 2202|      0|        }
 2203|       |
 2204|   324k|        c = *p++;
 2205|   324k|        if (c != 'c' && c != 'n' && c != '[') {
  ------------------
  |  Branch (2205:13): [True: 324k, False: 0]
  |  Branch (2205:25): [True: 319k, False: 5.11k]
  |  Branch (2205:37): [True: 247k, False: 71.5k]
  ------------------
 2206|   247k|            s = skip_spaces(s);
 2207|   247k|        }
 2208|   324k|        switch (c) {
  ------------------
  |  Branch (2208:17): [True: 324k, False: 0]
  ------------------
 2209|   133k|        case 'd':
  ------------------
  |  Branch (2209:9): [True: 133k, False: 191k]
  ------------------
 2210|   133k|            s = scan_int(s, &spec, 10, args);
 2211|   133k|            break;
 2212|       |
 2213|  9.75k|        case 'i':
  ------------------
  |  Branch (2213:9): [True: 9.75k, False: 314k]
  ------------------
 2214|  9.75k|            s = scan_int(s, &spec, 0, args);
 2215|  9.75k|            break;
 2216|       |
 2217|      0|        case 'o':
  ------------------
  |  Branch (2217:9): [True: 0, False: 324k]
  ------------------
 2218|      0|            s = scan_int(s, &spec, 8, args);
 2219|      0|            break;
 2220|       |
 2221|  88.5k|        case 'u':
  ------------------
  |  Branch (2221:9): [True: 88.5k, False: 235k]
  ------------------
 2222|  88.5k|            s = scan_int(s, &spec, 10, args);
 2223|  88.5k|            break;
 2224|       |
 2225|  16.1k|        case 'x':
  ------------------
  |  Branch (2225:9): [True: 16.1k, False: 308k]
  ------------------
 2226|  16.1k|        case 'X':
  ------------------
  |  Branch (2226:9): [True: 0, False: 324k]
  ------------------
 2227|  16.1k|            s = scan_int(s, &spec, 16, args);
 2228|  16.1k|            break;
 2229|       |
 2230|      0|        case 'e':
  ------------------
  |  Branch (2230:9): [True: 0, False: 324k]
  ------------------
 2231|      0|        case 'f':
  ------------------
  |  Branch (2231:9): [True: 0, False: 324k]
  ------------------
 2232|      0|        case 'g':
  ------------------
  |  Branch (2232:9): [True: 0, False: 324k]
  ------------------
 2233|      0|        case 'E':
  ------------------
  |  Branch (2233:9): [True: 0, False: 324k]
  ------------------
 2234|      0|        case 'G':
  ------------------
  |  Branch (2234:9): [True: 0, False: 324k]
  ------------------
 2235|      0|            s = scan_float(s, &spec, args);
 2236|      0|            break;
 2237|       |
 2238|      0|        case 's':
  ------------------
  |  Branch (2238:9): [True: 0, False: 324k]
  ------------------
 2239|      0|            s = scan_string(s, &spec, args);
 2240|      0|            break;
 2241|       |
 2242|  71.5k|        case '[':
  ------------------
  |  Branch (2242:9): [True: 71.5k, False: 253k]
  ------------------
 2243|  71.5k|            s = scan_set(s, &spec, &p, args);
 2244|  71.5k|            break;
 2245|       |
 2246|      0|        case 'c':
  ------------------
  |  Branch (2246:9): [True: 0, False: 324k]
  ------------------
 2247|      0|            s = scan_chars(s, &spec, args);
 2248|      0|            break;
 2249|       |
 2250|  5.11k|        case 'n':
  ------------------
  |  Branch (2250:9): [True: 5.11k, False: 319k]
  ------------------
 2251|  5.11k|            if (spec.type != SCAN_DISCARD) {
  ------------------
  |  Branch (2251:17): [True: 5.11k, False: 0]
  ------------------
 2252|  5.11k|                *va_arg(*args, int *) = s - start;
 2253|  5.11k|            }
 2254|  5.11k|            break;
 2255|   324k|        }
 2256|       |
 2257|   324k|        if (!s) {
  ------------------
  |  Branch (2257:13): [True: 46.6k, False: 277k]
  ------------------
 2258|  46.6k|            goto exit;
 2259|  46.6k|        }
 2260|   324k|    }
 2261|   146k|    if (n) {
  ------------------
  |  Branch (2261:9): [True: 75.0k, False: 71.5k]
  ------------------
 2262|  75.0k|        *n = s - start;
 2263|  75.0k|    }
 2264|       |
 2265|   146k|    ok = true;
 2266|   287k|exit:
 2267|   287k|    return ok;
 2268|   146k|}
util.c:skip_spaces:
 1868|   253k|{
 1869|   253k|    while (isspace((unsigned char) *s)) {
  ------------------
  |  Branch (1869:12): [True: 1.34k, False: 253k]
  ------------------
 1870|  1.34k|        s++;
 1871|  1.34k|    }
 1872|   253k|    return s;
 1873|   253k|}
util.c:scan_int:
 1877|   247k|{
 1878|   247k|    const char *start = s;
 1879|   247k|    uintmax_t value;
 1880|   247k|    bool negative;
 1881|   247k|    int n_digits;
 1882|       |
 1883|   247k|    negative = *s == '-';
 1884|   247k|    s += *s == '-' || *s == '+';
  ------------------
  |  Branch (1884:10): [True: 2.44k, False: 245k]
  |  Branch (1884:23): [True: 496, False: 244k]
  ------------------
 1885|       |
 1886|   247k|    if ((!base || base == 16) && *s == '0' && (s[1] == 'x' || s[1] == 'X')) {
  ------------------
  |  Branch (1886:10): [True: 9.75k, False: 238k]
  |  Branch (1886:19): [True: 16.1k, False: 221k]
  |  Branch (1886:34): [True: 9.27k, False: 16.6k]
  |  Branch (1886:48): [True: 193, False: 9.08k]
  |  Branch (1886:63): [True: 269, False: 8.81k]
  ------------------
 1887|    462|        base = 16;
 1888|    462|        s += 2;
 1889|   247k|    } else if (!base) {
  ------------------
  |  Branch (1889:16): [True: 9.31k, False: 238k]
  ------------------
 1890|  9.31k|        base = *s == '0' ? 8 : 10;
  ------------------
  |  Branch (1890:16): [True: 4.54k, False: 4.77k]
  ------------------
 1891|  9.31k|    }
 1892|       |
 1893|   247k|    if (s - start >= spec->width) {
  ------------------
  |  Branch (1893:9): [True: 0, False: 247k]
  ------------------
 1894|      0|        return NULL;
 1895|      0|    }
 1896|       |
 1897|   247k|    value = 0;
 1898|   247k|    n_digits = 0;
 1899|  1.69M|    while (s - start < spec->width) {
  ------------------
  |  Branch (1899:12): [True: 1.69M, False: 0]
  ------------------
 1900|  1.69M|        int digit = hexit_value(*s);
 1901|       |
 1902|  1.69M|        if (digit < 0 || digit >= base) {
  ------------------
  |  Branch (1902:13): [True: 246k, False: 1.44M]
  |  Branch (1902:26): [True: 1.44k, False: 1.44M]
  ------------------
 1903|   247k|            break;
 1904|   247k|        }
 1905|  1.44M|        value = value * base + digit;
 1906|  1.44M|        n_digits++;
 1907|  1.44M|        s++;
 1908|  1.44M|    }
 1909|   247k|    if (!n_digits) {
  ------------------
  |  Branch (1909:9): [True: 43.0k, False: 204k]
  ------------------
 1910|  43.0k|        return NULL;
 1911|  43.0k|    }
 1912|       |
 1913|   204k|    if (negative) {
  ------------------
  |  Branch (1913:9): [True: 2.00k, False: 202k]
  ------------------
 1914|  2.00k|        value = -value;
 1915|  2.00k|    }
 1916|       |
 1917|   204k|    switch (spec->type) {
  ------------------
  |  Branch (1917:13): [True: 204k, False: 0]
  ------------------
 1918|      0|    case SCAN_DISCARD:
  ------------------
  |  Branch (1918:5): [True: 0, False: 204k]
  ------------------
 1919|      0|        break;
 1920|  62.9k|    case SCAN_CHAR:
  ------------------
  |  Branch (1920:5): [True: 62.9k, False: 141k]
  ------------------
 1921|  62.9k|        *va_arg(*args, char *) = value;
 1922|  62.9k|        break;
 1923|  2.28k|    case SCAN_SHORT:
  ------------------
  |  Branch (1923:5): [True: 2.28k, False: 202k]
  ------------------
 1924|  2.28k|        *va_arg(*args, short int *) = value;
 1925|  2.28k|        break;
 1926|   137k|    case SCAN_INT:
  ------------------
  |  Branch (1926:5): [True: 137k, False: 67.7k]
  ------------------
 1927|   137k|        *va_arg(*args, int *) = value;
 1928|   137k|        break;
 1929|      0|    case SCAN_LONG:
  ------------------
  |  Branch (1929:5): [True: 0, False: 204k]
  ------------------
 1930|      0|        *va_arg(*args, long int *) = value;
 1931|      0|        break;
 1932|  2.56k|    case SCAN_LLONG:
  ------------------
  |  Branch (1932:5): [True: 2.56k, False: 202k]
  ------------------
 1933|  2.56k|        *va_arg(*args, long long int *) = value;
 1934|  2.56k|        break;
 1935|      0|    case SCAN_INTMAX_T:
  ------------------
  |  Branch (1935:5): [True: 0, False: 204k]
  ------------------
 1936|      0|        *va_arg(*args, intmax_t *) = value;
 1937|      0|        break;
 1938|      0|    case SCAN_PTRDIFF_T:
  ------------------
  |  Branch (1938:5): [True: 0, False: 204k]
  ------------------
 1939|      0|        *va_arg(*args, ptrdiff_t *) = value;
 1940|      0|        break;
 1941|      0|    case SCAN_SIZE_T:
  ------------------
  |  Branch (1941:5): [True: 0, False: 204k]
  ------------------
 1942|      0|        *va_arg(*args, size_t *) = value;
 1943|      0|        break;
 1944|   204k|    }
 1945|   204k|    return s;
 1946|   204k|}
util.c:scan_output_string:
 2016|  67.9k|{
 2017|  67.9k|    if (spec->type != SCAN_DISCARD) {
  ------------------
  |  Branch (2017:9): [True: 67.9k, False: 0]
  ------------------
 2018|       |        char *out = va_arg(*args, char *);
 2019|  67.9k|        memcpy(out, s, n);
 2020|  67.9k|        out[n] = '\0';
 2021|  67.9k|    }
 2022|  67.9k|}
util.c:scan_set:
 2072|  71.5k|{
 2073|  71.5k|    unsigned long set[BITMAP_N_LONGS(UCHAR_MAX + 1)];
 2074|  71.5k|    bool complemented;
 2075|  71.5k|    unsigned int n;
 2076|       |
 2077|       |    /* Parse the scan set. */
 2078|  71.5k|    memset(set, 0, sizeof set);
 2079|  71.5k|    *pp = parse_scanset(*pp, set, &complemented);
 2080|       |
 2081|       |    /* Parse the data. */
 2082|  71.5k|    n = 0;
 2083|   636k|    while (s[n]
  ------------------
  |  Branch (2083:12): [True: 573k, False: 62.3k]
  ------------------
 2084|   573k|           && bitmap_is_set(set, (unsigned char) s[n]) == !complemented
  ------------------
  |  Branch (2084:15): [True: 564k, False: 9.20k]
  ------------------
 2085|   564k|           && n < spec->width) {
  ------------------
  |  Branch (2085:15): [True: 564k, False: 0]
  ------------------
 2086|   564k|        n++;
 2087|   564k|    }
 2088|  71.5k|    if (!n) {
  ------------------
  |  Branch (2088:9): [True: 3.61k, False: 67.9k]
  ------------------
 2089|  3.61k|        return NULL;
 2090|  3.61k|    }
 2091|  67.9k|    scan_output_string(spec, s, n, args);
 2092|  67.9k|    return s + n;
 2093|  71.5k|}
util.c:parse_scanset:
 2044|  71.5k|{
 2045|  71.5k|    const uint8_t *p = (const uint8_t *) p_;
 2046|       |
 2047|  71.5k|    *complemented = *p == '^';
 2048|  71.5k|    p += *complemented;
 2049|       |
 2050|  71.5k|    if (*p == ']') {
  ------------------
  |  Branch (2050:9): [True: 0, False: 71.5k]
  ------------------
 2051|      0|        bitmap_set1(set, ']');
 2052|      0|        p++;
 2053|      0|    }
 2054|       |
 2055|  1.78M|    while (*p && *p != ']') {
  ------------------
  |  Branch (2055:12): [True: 1.78M, False: 0]
  |  Branch (2055:18): [True: 1.71M, False: 71.5k]
  ------------------
 2056|  1.71M|        if (p[1] == '-' && p[2] != ']' && p[2] > *p) {
  ------------------
  |  Branch (2056:13): [True: 0, False: 1.71M]
  |  Branch (2056:28): [True: 0, False: 0]
  |  Branch (2056:43): [True: 0, False: 0]
  ------------------
 2057|      0|            bitmap_set_multiple(set, *p, p[2] - *p + 1, true);
 2058|      0|            p += 3;
 2059|  1.71M|        } else {
 2060|  1.71M|            bitmap_set1(set, *p++);
 2061|  1.71M|        }
 2062|  1.71M|    }
 2063|  71.5k|    if (*p == ']') {
  ------------------
  |  Branch (2063:9): [True: 71.5k, False: 0]
  ------------------
 2064|  71.5k|        p++;
 2065|  71.5k|    }
 2066|  71.5k|    return (const char *) p;
 2067|  71.5k|}

match.c:ovs_u128_and:
  515|  10.7k|{
  516|  10.7k|    ovs_u128 dst;
  517|       |
  518|  10.7k|    dst.u64.hi = a.u64.hi & b.u64.hi;
  519|  10.7k|    dst.u64.lo = a.u64.lo & b.u64.lo;
  520|       |
  521|  10.7k|    return dst;
  522|  10.7k|}
ofpbuf.c:nullable_memset:
  198|   594k|{
  199|   594k|    if (n) {
  ------------------
  |  Branch (199:9): [True: 575k, False: 19.1k]
  ------------------
  200|   575k|        memset(dst, c, n);
  201|   575k|    }
  202|   594k|}
packets.c:ctz32:
  284|  9.52k|{
  285|  9.52k|    return n ? raw_ctz(n) : 32;
  ------------------
  |  Branch (285:12): [True: 59, False: 9.46k]
  ------------------
  286|  9.52k|}
packets.c:raw_ctz:
  261|     59|{
  262|       |    /* With GCC 4.7 on 32-bit x86, if a 32-bit integer is passed as 'n', using
  263|       |     * a plain __builtin_ctzll() here always generates an out-of-line function
  264|       |     * call.  The test below helps it to emit a single 'bsf' instruction. */
  265|     59|    return (__builtin_constant_p(n <= UINT32_MAX) && n <= UINT32_MAX
  ------------------
  |  Branch (265:13): [True: 59, False: 0]
  |  Branch (265:54): [True: 59, False: 0]
  ------------------
  266|     59|            ? __builtin_ctz(n)
  267|     59|            : __builtin_ctzll(n));
  268|     59|}
packets.c:be32_prefix_mask:
  414|    966|{
  415|       |    return htonl((uint64_t)UINT32_MAX << (32 - plen));
  416|    966|}
tun-metadata.c:raw_ctz:
  261|    372|{
  262|       |    /* With GCC 4.7 on 32-bit x86, if a 32-bit integer is passed as 'n', using
  263|       |     * a plain __builtin_ctzll() here always generates an out-of-line function
  264|       |     * call.  The test below helps it to emit a single 'bsf' instruction. */
  265|    372|    return (__builtin_constant_p(n <= UINT32_MAX) && n <= UINT32_MAX
  ------------------
  |  Branch (265:13): [True: 0, False: 372]
  |  Branch (265:54): [True: 0, False: 0]
  ------------------
  266|    372|            ? __builtin_ctz(n)
  267|    372|            : __builtin_ctzll(n));
  268|    372|}
tun-metadata.c:zero_rightmost_1bit:
  390|    372|{
  391|    372|    return x & (x - 1);
  392|    372|}
util.c:nullable_memcpy:
  188|    314|{
  189|    314|    if (n) {
  ------------------
  |  Branch (189:9): [True: 314, False: 0]
  ------------------
  190|    314|        memcpy(dst, src, n);
  191|    314|    }
  192|    314|}
flow.c:rightmost_1bit:
  382|    202|{
  383|    202|    return x & -x;
  384|    202|}
flow.c:count_1bits:
  332|  18.5k|{
  333|       |#if (__GNUC__ >= 4 && __POPCNT__) || (defined(__aarch64__) && __GNUC__ >= 7)
  334|       |    return __builtin_popcountll(x);
  335|       |#elif defined(__aarch64__) && __GNUC__ >= 6
  336|       |    return vaddv_u8(vcnt_u8(vcreate_u8(x)));
  337|       |#else
  338|       |    /* This portable implementation is the fastest one we know of for 64
  339|       |     * bits, and about 3x faster than GCC 4.7 __builtin_popcountll(). */
  340|  18.5k|    const uint64_t h55 = UINT64_C(0x5555555555555555);
  341|  18.5k|    const uint64_t h33 = UINT64_C(0x3333333333333333);
  342|  18.5k|    const uint64_t h0F = UINT64_C(0x0F0F0F0F0F0F0F0F);
  343|       |    const uint64_t h01 = UINT64_C(0x0101010101010101);
  344|  18.5k|    x -= (x >> 1) & h55;               /* Count of each 2 bits in-place. */
  345|  18.5k|    x = (x & h33) + ((x >> 2) & h33);  /* Count of each 4 bits in-place. */
  346|  18.5k|    x = (x + (x >> 4)) & h0F;          /* Count of each 8 bits in-place. */
  347|  18.5k|    return (x * h01) >> 56;            /* Sum of all bytes. */
  348|  18.5k|#endif
  349|  18.5k|}
flow.c:raw_ctz:
  261|  58.0k|{
  262|       |    /* With GCC 4.7 on 32-bit x86, if a 32-bit integer is passed as 'n', using
  263|       |     * a plain __builtin_ctzll() here always generates an out-of-line function
  264|       |     * call.  The test below helps it to emit a single 'bsf' instruction. */
  265|  58.0k|    return (__builtin_constant_p(n <= UINT32_MAX) && n <= UINT32_MAX
  ------------------
  |  Branch (265:13): [True: 0, False: 58.0k]
  |  Branch (265:54): [True: 0, False: 0]
  ------------------
  266|  58.0k|            ? __builtin_ctz(n)
  267|  58.0k|            : __builtin_ctzll(n));
  268|  58.0k|}
flow.c:zero_rightmost_1bit:
  390|  58.0k|{
  391|  58.0k|    return x & (x - 1);
  392|  58.0k|}

vlog_get_level_val:
  189|      2|{
  190|      2|    return search_name_array(name, level_names, ARRAY_SIZE(level_names));
  ------------------
  |  |  297|      2|#define ARRAY_SIZE(ARRAY) __ARRAY_SIZE(ARRAY)
  |  |  ------------------
  |  |  |  |   46|      2|    __builtin_choose_expr(__ARRAY_CHECK(ARRAY),			\
  |  |  |  |  ------------------
  |  |  |  |  |  |   41|      2|    !__builtin_types_compatible_p(typeof(ARRAY), typeof(&ARRAY[0]))
  |  |  |  |  ------------------
  |  |  |  |   47|      2|        __ARRAY_SIZE_NOCHECK(ARRAY), __ARRAY_FAIL(ARRAY))
  |  |  |  |  ------------------
  |  |  |  |  |  |   37|      2|#define __ARRAY_SIZE_NOCHECK(ARRAY) (sizeof(ARRAY) / sizeof((ARRAY)[0]))
  |  |  |  |  ------------------
  |  |  |  |                       __ARRAY_SIZE_NOCHECK(ARRAY), __ARRAY_FAIL(ARRAY))
  |  |  |  |  ------------------
  |  |  |  |  |  |   44|      2|#define __ARRAY_FAIL(ARRAY) (sizeof(char[-2*!__ARRAY_CHECK(ARRAY)]))
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  191|      2|}
vlog_get_destination_val:
  205|      1|{
  206|      1|    size_t i;
  207|       |
  208|      4|    for (i = 0; i < VLF_N_DESTINATIONS; i++) {
  ------------------
  |  Branch (208:17): [True: 3, False: 1]
  ------------------
  209|      3|        if (!strcasecmp(destinations[i].name, name)) {
  ------------------
  |  Branch (209:13): [True: 0, False: 3]
  ------------------
  210|      0|            break;
  211|      0|        }
  212|      3|    }
  213|      1|    return i;
  214|      1|}
vlog_insert_module:
  218|    182|{
  219|    182|    ovs_mutex_lock(&log_file_mutex);
  ------------------
  |  |   71|    182|        ovs_mutex_lock_at(mutex, OVS_SOURCE_LOCATOR)
  |  |  ------------------
  |  |  |  |   37|    182|#define OVS_SOURCE_LOCATOR __FILE__ ":" OVS_STRINGIZE(__LINE__)
  |  |  |  |  ------------------
  |  |  |  |  |  |   38|    182|#define OVS_STRINGIZE(ARG) OVS_STRINGIZE2(ARG)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   39|    182|#define OVS_STRINGIZE2(ARG) #ARG
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  220|    182|    ovs_list_insert(&vlog_modules, vlog);
  221|    182|    ovs_mutex_unlock(&log_file_mutex);
  222|    182|}
vlog_set_levels:
  303|      1|{
  304|      1|    assert(destination < VLF_N_DESTINATIONS ||
  305|      1|           destination == VLF_ANY_DESTINATION);
  306|      1|    if (destination == VLF_ANY_DESTINATION) {
  ------------------
  |  Branch (306:9): [True: 1, False: 0]
  ------------------
  307|      4|        for (destination = 0; destination < VLF_N_DESTINATIONS;
  ------------------
  |  Branch (307:31): [True: 3, False: 1]
  ------------------
  308|      3|             destination++) {
  309|      3|            set_destination_level(destination, module, level);
  310|      3|        }
  311|      1|    } else {
  312|      0|        set_destination_level(destination, module, level);
  313|      0|    }
  314|      1|}
vlog_set_levels_from_string:
  513|      1|{
  514|      1|    char *s = xstrdup(s_);
  515|      1|    char *save_ptr = NULL;
  516|      1|    char *msg = NULL;
  517|      1|    char *word;
  518|       |
  519|      1|    word = strtok_r(s, " ,:\t", &save_ptr);
  520|      1|    if (word && !strcasecmp(word, "PATTERN")) {
  ------------------
  |  Branch (520:9): [True: 1, False: 0]
  |  Branch (520:17): [True: 0, False: 1]
  ------------------
  521|      0|        enum vlog_destination destination;
  522|       |
  523|      0|        word = strtok_r(NULL, " ,:\t", &save_ptr);
  524|      0|        if (!word) {
  ------------------
  |  Branch (524:13): [True: 0, False: 0]
  ------------------
  525|      0|            msg = xstrdup("missing destination");
  526|      0|            goto exit;
  527|      0|        }
  528|       |
  529|      0|        destination = (!strcasecmp(word, "ANY")
  ------------------
  |  Branch (529:24): [True: 0, False: 0]
  ------------------
  530|      0|                       ? VLF_ANY_DESTINATION
  531|      0|                       : vlog_get_destination_val(word));
  532|      0|        if (destination == VLF_N_DESTINATIONS) {
  ------------------
  |  Branch (532:13): [True: 0, False: 0]
  ------------------
  533|      0|            msg = xasprintf("unknown destination \"%s\"", word);
  534|      0|            goto exit;
  535|      0|        }
  536|      0|        vlog_set_pattern(destination, save_ptr);
  537|      1|    } else if (word && !strcasecmp(word, "FACILITY")) {
  ------------------
  |  Branch (537:16): [True: 1, False: 0]
  |  Branch (537:24): [True: 0, False: 1]
  ------------------
  538|      0|        int value;
  539|       |
  540|      0|        if (!vlog_facility_exists(save_ptr, &value)) {
  ------------------
  |  Branch (540:13): [True: 0, False: 0]
  ------------------
  541|      0|            msg = xstrdup("invalid facility");
  542|      0|            goto exit;
  543|      0|        }
  544|      0|        atomic_store_explicit(&log_facility, value, memory_order_relaxed);
  ------------------
  |  |   45|      0|    __c11_atomic_store(DST, SRC, ORDER)
  ------------------
  545|      1|    } else {
  546|      1|        struct vlog_module *module = NULL;
  547|      1|        enum vlog_level level = VLL_N_LEVELS;
  548|      1|        enum vlog_destination destination = VLF_N_DESTINATIONS;
  549|       |
  550|      2|        for (; word != NULL; word = strtok_r(NULL, " ,:\t", &save_ptr)) {
  ------------------
  |  Branch (550:16): [True: 1, False: 1]
  ------------------
  551|      1|            if (!strcasecmp(word, "ANY")) {
  ------------------
  |  Branch (551:17): [True: 0, False: 1]
  ------------------
  552|      0|                continue;
  553|      1|            } else if (vlog_get_destination_val(word) != VLF_N_DESTINATIONS) {
  ------------------
  |  Branch (553:24): [True: 0, False: 1]
  ------------------
  554|      0|                if (destination != VLF_N_DESTINATIONS) {
  ------------------
  |  Branch (554:21): [True: 0, False: 0]
  ------------------
  555|      0|                    msg = xstrdup("cannot specify multiple destinations");
  556|      0|                    goto exit;
  557|      0|                }
  558|      0|                destination = vlog_get_destination_val(word);
  559|      1|            } else if (vlog_get_level_val(word) != VLL_N_LEVELS) {
  ------------------
  |  Branch (559:24): [True: 1, False: 0]
  ------------------
  560|      1|                if (level != VLL_N_LEVELS) {
  ------------------
  |  Branch (560:21): [True: 0, False: 1]
  ------------------
  561|      0|                    msg = xstrdup("cannot specify multiple levels");
  562|      0|                    goto exit;
  563|      0|                }
  564|      1|                level = vlog_get_level_val(word);
  565|      1|            } else if (vlog_module_from_name(word)) {
  ------------------
  |  Branch (565:24): [True: 0, False: 0]
  ------------------
  566|      0|                if (module) {
  ------------------
  |  Branch (566:21): [True: 0, False: 0]
  ------------------
  567|      0|                    msg = xstrdup("cannot specify multiple modules");
  568|      0|                    goto exit;
  569|      0|                }
  570|      0|                module = vlog_module_from_name(word);
  571|      0|            } else {
  572|      0|                msg = xasprintf("no destination, level, or module \"%s\"",
  573|      0|                                word);
  574|      0|                goto exit;
  575|      0|            }
  576|      1|        }
  577|       |
  578|      1|        if (destination == VLF_N_DESTINATIONS) {
  ------------------
  |  Branch (578:13): [True: 1, False: 0]
  ------------------
  579|      1|            destination = VLF_ANY_DESTINATION;
  580|      1|        }
  581|      1|        if (level == VLL_N_LEVELS) {
  ------------------
  |  Branch (581:13): [True: 0, False: 1]
  ------------------
  582|      0|            level = VLL_DBG;
  583|      0|        }
  584|      1|        vlog_set_levels(module, destination, level);
  585|      1|    }
  586|       |
  587|      1|exit:
  588|      1|    free(s);
  589|      1|    return msg;
  590|      1|}
vlog_set_verbosity:
  606|      1|{
  607|      1|    if (arg) {
  ------------------
  |  Branch (607:9): [True: 1, False: 0]
  ------------------
  608|      1|        char *msg = vlog_set_levels_from_string(arg);
  609|      1|        if (msg) {
  ------------------
  |  Branch (609:13): [True: 0, False: 1]
  ------------------
  610|      0|            ovs_fatal(0, "processing \"%s\": %s", arg, msg);
  611|      0|        }
  612|      1|    } else {
  613|       |        vlog_set_levels(NULL, VLF_ANY_DESTINATION, VLL_DBG);
  614|      0|    }
  615|      1|}
vlog_is_enabled:
 1000|    407|{
 1001|    407|    return module->min_level >= level;
 1002|    407|}
vlog_valist:
 1158|      1|{
 1159|      1|    bool log_to_console = module->levels[VLF_CONSOLE] >= level;
 1160|      1|    bool log_to_syslog = module->levels[VLF_SYSLOG] >= level;
 1161|      1|    bool log_to_file = module->levels[VLF_FILE]  >= level;
 1162|       |
 1163|      1|    if (!(log_to_console || log_to_syslog || log_to_file)) {
  ------------------
  |  Branch (1163:11): [True: 0, False: 1]
  |  Branch (1163:29): [True: 0, False: 1]
  |  Branch (1163:46): [True: 0, False: 1]
  ------------------
 1164|       |        /* fast path - all logging levels specify no logging, no
 1165|       |         * need to hog the log mutex
 1166|       |         */
 1167|      1|        return;
 1168|      1|    }
 1169|       |
 1170|      0|    ovs_mutex_lock(&log_file_mutex);
  ------------------
  |  |   71|      0|        ovs_mutex_lock_at(mutex, OVS_SOURCE_LOCATOR)
  |  |  ------------------
  |  |  |  |   37|      0|#define OVS_SOURCE_LOCATOR __FILE__ ":" OVS_STRINGIZE(__LINE__)
  |  |  |  |  ------------------
  |  |  |  |  |  |   38|      0|#define OVS_STRINGIZE(ARG) OVS_STRINGIZE2(ARG)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   39|      0|#define OVS_STRINGIZE2(ARG) #ARG
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 1171|      0|    log_to_file &= (log_fd >= 0);
 1172|      0|    ovs_mutex_unlock(&log_file_mutex);
 1173|      0|    if (log_to_console || log_to_syslog || log_to_file) {
  ------------------
  |  Branch (1173:9): [True: 0, False: 0]
  |  Branch (1173:27): [True: 0, False: 0]
  |  Branch (1173:44): [True: 0, False: 0]
  ------------------
 1174|      0|        int save_errno = errno;
 1175|      0|        struct ds s;
 1176|       |
 1177|      0|        vlog_init();
 1178|       |
 1179|      0|        ds_init(&s);
 1180|      0|        ds_reserve(&s, 1024);
 1181|      0|        ++*msg_num_get();
 1182|       |
 1183|      0|        ovs_rwlock_rdlock(&pattern_rwlock);
  ------------------
  |  |   96|      0|        ovs_rwlock_rdlock_at(rwlock, OVS_SOURCE_LOCATOR)
  |  |  ------------------
  |  |  |  |   37|      0|#define OVS_SOURCE_LOCATOR __FILE__ ":" OVS_STRINGIZE(__LINE__)
  |  |  |  |  ------------------
  |  |  |  |  |  |   38|      0|#define OVS_STRINGIZE(ARG) OVS_STRINGIZE2(ARG)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   39|      0|#define OVS_STRINGIZE2(ARG) #ARG
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 1184|      0|        if (log_to_console) {
  ------------------
  |  Branch (1184:13): [True: 0, False: 0]
  ------------------
 1185|      0|            format_log_message(module, level,
 1186|      0|                               destinations[VLF_CONSOLE].pattern, message,
 1187|      0|                               args, &s);
 1188|      0|            ds_put_char(&s, '\n');
 1189|      0|            fputs(ds_cstr(&s), stderr);
 1190|      0|        }
 1191|       |
 1192|      0|        if (log_to_syslog) {
  ------------------
  |  Branch (1192:13): [True: 0, False: 0]
  ------------------
 1193|      0|            int syslog_level = syslog_levels[level];
 1194|      0|            char *save_ptr = NULL;
 1195|      0|            char *line;
 1196|      0|            int facility;
 1197|       |
 1198|      0|            format_log_message(module, level, destinations[VLF_SYSLOG].pattern,
 1199|      0|                               message, args, &s);
 1200|      0|            for (line = strtok_r(s.string, "\n", &save_ptr); line;
  ------------------
  |  Branch (1200:62): [True: 0, False: 0]
  ------------------
 1201|      0|                 line = strtok_r(NULL, "\n", &save_ptr)) {
 1202|      0|                atomic_read_explicit(&log_facility, &facility,
  ------------------
  |  |   51|      0|    (*(DST) = __c11_atomic_load(SRC, ORDER), \
  |  |   52|      0|     (void) 0)
  ------------------
 1203|      0|                                     memory_order_relaxed);
 1204|      0|                syslogger->class->syslog(syslogger, syslog_level|facility, line);
 1205|      0|            }
 1206|       |
 1207|      0|            if (syslog_fd >= 0) {
  ------------------
  |  Branch (1207:17): [True: 0, False: 0]
  ------------------
 1208|      0|                format_log_message(module, level,
 1209|      0|                                   "<%B>1 %D{%Y-%m-%dT%H:%M:%S.###Z} "
 1210|      0|                                   "%E %A %P %c - \xef\xbb\xbf%m",
 1211|      0|                                   message, args, &s);
 1212|      0|                send_to_syslog_fd(ds_cstr(&s), s.length);
 1213|      0|            }
 1214|      0|        }
 1215|       |
 1216|      0|        if (log_to_file) {
  ------------------
  |  Branch (1216:13): [True: 0, False: 0]
  ------------------
 1217|      0|            format_log_message(module, level, destinations[VLF_FILE].pattern,
 1218|      0|                               message, args, &s);
 1219|      0|            ds_put_char(&s, '\n');
 1220|       |
 1221|      0|            ovs_mutex_lock(&log_file_mutex);
  ------------------
  |  |   71|      0|        ovs_mutex_lock_at(mutex, OVS_SOURCE_LOCATOR)
  |  |  ------------------
  |  |  |  |   37|      0|#define OVS_SOURCE_LOCATOR __FILE__ ":" OVS_STRINGIZE(__LINE__)
  |  |  |  |  ------------------
  |  |  |  |  |  |   38|      0|#define OVS_STRINGIZE(ARG) OVS_STRINGIZE2(ARG)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   39|      0|#define OVS_STRINGIZE2(ARG) #ARG
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 1222|      0|            if (log_fd >= 0) {
  ------------------
  |  Branch (1222:17): [True: 0, False: 0]
  ------------------
 1223|      0|                if (log_writer) {
  ------------------
  |  Branch (1223:21): [True: 0, False: 0]
  ------------------
 1224|      0|                    async_append_write(log_writer, s.string, s.length);
 1225|      0|                    if (level == VLL_EMER) {
  ------------------
  |  Branch (1225:25): [True: 0, False: 0]
  ------------------
 1226|      0|                        async_append_flush(log_writer);
 1227|      0|                    }
 1228|      0|                } else {
 1229|      0|                    ovs_ignore(write(log_fd, s.string, s.length));
 1230|      0|                }
 1231|      0|            }
 1232|      0|            ovs_mutex_unlock(&log_file_mutex);
 1233|      0|        }
 1234|      0|        ovs_rwlock_unlock(&pattern_rwlock);
 1235|       |
 1236|      0|        ds_destroy(&s);
 1237|       |        errno = save_errno;
 1238|      0|    }
 1239|      0|}
vlog:
 1244|      1|{
 1245|      1|    va_list args;
 1246|       |
 1247|      1|    va_start(args, message);
 1248|      1|    vlog_valist(module, level, message, args);
 1249|       |    va_end(args);
 1250|      1|}
vlog_should_drop:
 1330|    407|{
 1331|    407|    if (!module->honor_rate_limits) {
  ------------------
  |  Branch (1331:9): [True: 0, False: 407]
  ------------------
 1332|      0|        return false;
 1333|      0|    }
 1334|       |
 1335|    407|    if (!vlog_is_enabled(module, level)) {
  ------------------
  |  Branch (1335:9): [True: 407, False: 0]
  ------------------
 1336|    407|        return true;
 1337|    407|    }
 1338|       |
 1339|      0|    ovs_mutex_lock(&rl->mutex);
  ------------------
  |  |   71|      0|        ovs_mutex_lock_at(mutex, OVS_SOURCE_LOCATOR)
  |  |  ------------------
  |  |  |  |   37|      0|#define OVS_SOURCE_LOCATOR __FILE__ ":" OVS_STRINGIZE(__LINE__)
  |  |  |  |  ------------------
  |  |  |  |  |  |   38|      0|#define OVS_STRINGIZE(ARG) OVS_STRINGIZE2(ARG)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   39|      0|#define OVS_STRINGIZE2(ARG) #ARG
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 1340|      0|    if (!token_bucket_withdraw(&rl->token_bucket, VLOG_MSG_TOKENS)) {
  ------------------
  |  |  105|      0|#define VLOG_MSG_TOKENS (60 * 1000)
  ------------------
  |  Branch (1340:9): [True: 0, False: 0]
  ------------------
 1341|      0|        time_t now = time_now();
 1342|      0|        if (!rl->n_dropped) {
  ------------------
  |  Branch (1342:13): [True: 0, False: 0]
  ------------------
 1343|      0|            rl->first_dropped = now;
 1344|      0|        }
 1345|      0|        rl->last_dropped = now;
 1346|      0|        rl->n_dropped++;
 1347|      0|        ovs_mutex_unlock(&rl->mutex);
 1348|      0|        return true;
 1349|      0|    }
 1350|       |
 1351|      0|    if (!rl->n_dropped) {
  ------------------
  |  Branch (1351:9): [True: 0, False: 0]
  ------------------
 1352|      0|        ovs_mutex_unlock(&rl->mutex);
 1353|      0|    } else {
 1354|      0|        time_t now = time_now();
 1355|      0|        unsigned int n_dropped = rl->n_dropped;
 1356|      0|        unsigned int first_dropped_elapsed = now - rl->first_dropped;
 1357|      0|        unsigned int last_dropped_elapsed = now - rl->last_dropped;
 1358|      0|        rl->n_dropped = 0;
 1359|      0|        ovs_mutex_unlock(&rl->mutex);
 1360|       |
 1361|      0|        vlog(module, level,
 1362|      0|             "Dropped %u log messages in last %u seconds (most recently, "
 1363|      0|             "%u seconds ago) due to excessive rate",
 1364|      0|             n_dropped, first_dropped_elapsed, last_dropped_elapsed);
 1365|      0|    }
 1366|       |
 1367|       |    return false;
 1368|      0|}
vlog.c:search_name_array:
  165|      2|{
  166|      2|    size_t i;
  167|       |
  168|      2|    for (i = 0; i < n_names; i++) {
  ------------------
  |  Branch (168:17): [True: 2, False: 0]
  ------------------
  169|      2|        assert(names[i]);
  170|      2|        if (!strcasecmp(names[i], target)) {
  ------------------
  |  Branch (170:13): [True: 2, False: 0]
  ------------------
  171|      2|            break;
  172|      2|        }
  173|      2|    }
  174|      2|    return i;
  175|      2|}
vlog.c:set_destination_level:
  279|      3|{
  280|      3|    assert(destination >= 0 && destination < VLF_N_DESTINATIONS);
  281|      3|    assert(level < VLL_N_LEVELS);
  282|       |
  283|      3|    ovs_mutex_lock(&log_file_mutex);
  ------------------
  |  |   71|      3|        ovs_mutex_lock_at(mutex, OVS_SOURCE_LOCATOR)
  |  |  ------------------
  |  |  |  |   37|      3|#define OVS_SOURCE_LOCATOR __FILE__ ":" OVS_STRINGIZE(__LINE__)
  |  |  |  |  ------------------
  |  |  |  |  |  |   38|      3|#define OVS_STRINGIZE(ARG) OVS_STRINGIZE2(ARG)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |   39|      3|#define OVS_STRINGIZE2(ARG) #ARG
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  284|      3|    if (!module) {
  ------------------
  |  Branch (284:9): [True: 3, False: 0]
  ------------------
  285|      3|        struct vlog_module *mp;
  286|    273|        LIST_FOR_EACH (mp, list, &vlog_modules) {
  ------------------
  |  |   76|      3|    for (INIT_MULTIVAR(VAR, MEMBER, (LIST)->next, struct ovs_list);           \
  |  |  ------------------
  |  |  |  |  171|      3|    INIT_MULTIVAR_EXP(VAR, MEMBER, POINTER, ITER_TYPE, (void) 0)
  |  |  |  |  ------------------
  |  |  |  |  |  |  174|      3|    ITER_TYPE *ITER_VAR(VAR) = ( __VA_ARGS__ , (ITER_TYPE *) POINTER)
  |  |  |  |  ------------------
  |  |  ------------------
  |  |   77|    276|         CONDITION_MULTIVAR(VAR, MEMBER, ITER_VAR(VAR) != (LIST));            \
  |  |  ------------------
  |  |  |  |  185|    276|    ((EXPR) ?                                                                 \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (185:5): [True: 273, False: 3]
  |  |  |  |  |  Branch (185:6): [True: 273, False: 3]
  |  |  |  |  ------------------
  |  |  |  |  186|    276|     (((VAR) = OBJECT_CONTAINING(ITER_VAR(VAR), VAR, MEMBER)), 1) :           \
  |  |  |  |  ------------------
  |  |  |  |  |  |  134|    273|    ((OVS_TYPEOF(OBJECT)) (void *)                                      \
  |  |  |  |  |  |  135|    273|     ((char *) (POINTER) - OBJECT_OFFSETOF(OBJECT, MEMBER)))
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  108|    273|#define OBJECT_OFFSETOF(OBJECT, MEMBER) offsetof(typeof(*(OBJECT)), MEMBER)
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  |  |  187|    276|     (((VAR) = NULL), 0))
  |  |  ------------------
  |  |   78|    273|         UPDATE_MULTIVAR(VAR, ITER_VAR(VAR)->next))
  |  |  ------------------
  |  |  |  |  193|    273|    (ITER_VAR(VAR) = NEXT_ITER)
  |  |  |  |  ------------------
  |  |  |  |  |  |  162|    273|#define ITER_VAR(NAME) NAME ## __iterator__
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  287|    273|            mp->levels[destination] = level;
  288|    273|            update_min_level(mp);
  289|    273|        }
  290|      3|    } else {
  291|      0|        module->levels[destination] = level;
  292|      0|        update_min_level(module);
  293|      0|    }
  294|      3|    ovs_mutex_unlock(&log_file_mutex);
  295|      3|}
vlog.c:update_min_level:
  262|    273|{
  263|    273|    enum vlog_destination destination;
  264|       |
  265|    273|    module->min_level = VLL_OFF;
  266|  1.09k|    for (destination = 0; destination < VLF_N_DESTINATIONS; destination++) {
  ------------------
  |  Branch (266:27): [True: 819, False: 273]
  ------------------
  267|    819|        if (log_fd >= 0 || destination != VLF_FILE) {
  ------------------
  |  Branch (267:13): [True: 0, False: 819]
  |  Branch (267:28): [True: 546, False: 273]
  ------------------
  268|    546|            enum vlog_level level = module->levels[destination];
  269|    546|            if (level > module->min_level) {
  ------------------
  |  Branch (269:17): [True: 91, False: 455]
  ------------------
  270|     91|                module->min_level = level;
  271|     91|            }
  272|    546|        }
  273|    819|    }
  274|    273|}

LLVMFuzzerTestOneInput:
   74|  22.5k|{
   75|       |    /* Bail out if we cannot construct at least a 1 char string.
   76|       |     * Reserve 1 byte to decide flow mod command.
   77|       |     *
   78|       |     * Here's the structure of data we expect
   79|       |     * |--Byte 1--|--Byte 2--|...|--Byte (size-1)--|
   80|       |     *
   81|       |     * where,
   82|       |     *
   83|       |     * Byte 1: Used to decide which ofp flow mod command to test
   84|       |     * Bytes 2--(size-1): The C string that is actually passed to
   85|       |     *                    ofctl_parse_flow() test API.
   86|       |     *
   87|       |     * This means that the fuzzed input is actually a C string of
   88|       |     * length = (size -2) with the terminal byte being the NUL
   89|       |     * character. Moreover, this string is expected to not contain
   90|       |     * a new-line character.
   91|       |     */
   92|  22.5k|    const char *stream = (const char *) data;
   93|  22.5k|    if (size < 3 || stream[size - 1] != '\0' || strchr(&stream[1], '\n') ||
  ------------------
  |  Branch (93:9): [True: 2, False: 22.5k]
  |  Branch (93:21): [True: 10, False: 22.5k]
  |  Branch (93:49): [True: 1, False: 22.5k]
  ------------------
   94|  22.5k|        strlen(&stream[1]) != size - 2) {
  ------------------
  |  Branch (94:9): [True: 12, False: 22.5k]
  ------------------
   95|     25|        return 0;
   96|     25|    }
   97|       |
   98|       |    /* Disable logging to avoid write to disk. */
   99|  22.5k|    static bool isInit = false;
  100|  22.5k|    if (!isInit) {
  ------------------
  |  Branch (100:9): [True: 1, False: 22.5k]
  ------------------
  101|      1|        vlog_set_verbosity("off");
  102|      1|        isInit = true;
  103|      1|    }
  104|       |
  105|       |    /* Decide test parameters using first byte of fuzzed input. */
  106|  22.5k|    int command = (stream[0] % OFPFC_DELETE_STRICT) + 1;
  107|       |
  108|       |    /* Fuzz extended match parsing. */
  109|  22.5k|    const char *input = &stream[1];
  110|  22.5k|    ofctl_parse_flow(input, command);
  111|       |
  112|  22.5k|    return 0;
  113|  22.5k|}
ofctl_parse_target.c:ofctl_parse_flow:
   57|  22.5k|{
   58|  22.5k|    enum ofputil_protocol usable_protocols;
   59|  22.5k|    struct ofputil_flow_mod fm;
   60|  22.5k|    char *error;
   61|       |
   62|  22.5k|    error = parse_ofp_flow_mod_str(&fm, input, NULL, NULL,
   63|  22.5k|                                   command, &usable_protocols);
   64|  22.5k|    if (error) {
  ------------------
  |  Branch (64:9): [True: 13.2k, False: 9.28k]
  ------------------
   65|  13.2k|        printf("Error encountered: %s\n", error);
   66|  13.2k|        free(error);
   67|  13.2k|    } else {
   68|  9.28k|        ofctl_parse_flows__(&fm, 1, usable_protocols);
   69|  9.28k|    }
   70|  22.5k|}
ofctl_parse_target.c:ofctl_parse_flows__:
   14|  9.28k|{
   15|  9.28k|    enum ofputil_protocol protocol = 0;
   16|  9.28k|    char *usable_s;
   17|  9.28k|    size_t i;
   18|       |
   19|  9.28k|    usable_s = ofputil_protocols_to_string(usable_protocols);
   20|  9.28k|    printf("usable protocols: %s\n", usable_s);
   21|  9.28k|    free(usable_s);
   22|       |
   23|  9.28k|    if (!(usable_protocols & OFPUTIL_P_ANY)) {
  ------------------
  |  |  100|  9.28k|#define OFPUTIL_P_ANY ((1 << 9) - 1)
  ------------------
  |  Branch (23:9): [True: 201, False: 9.08k]
  ------------------
   24|    201|        printf("no usable protocol\n");
   25|    201|        goto free;
   26|    201|    }
   27|  20.1k|    for (i = 0; i < sizeof(enum ofputil_protocol) * CHAR_BIT; i++) {
  ------------------
  |  Branch (27:17): [True: 20.1k, False: 0]
  ------------------
   28|  20.1k|        protocol = 1u << i;
   29|  20.1k|        if (protocol & usable_protocols & OFPUTIL_P_ANY) {
  ------------------
  |  |  100|  20.1k|#define OFPUTIL_P_ANY ((1 << 9) - 1)
  ------------------
  |  Branch (29:13): [True: 9.08k, False: 11.0k]
  ------------------
   30|  9.08k|            break;
   31|  9.08k|        }
   32|  20.1k|    }
   33|  9.08k|    ovs_assert(is_pow2(protocol));
  ------------------
  |  |   62|  9.08k|#define ovs_assert ovs_ignore
  ------------------
   34|       |
   35|  9.08k|    printf("chosen protocol: %s\n", ofputil_protocol_to_string(protocol));
   36|       |
   37|  18.1k|    for (i = 0; i < n_fms; i++) {
  ------------------
  |  Branch (37:17): [True: 9.08k, False: 9.08k]
  ------------------
   38|  9.08k|        struct ofputil_flow_mod *fm = &fms[i];
   39|  9.08k|        struct ofpbuf *msg;
   40|       |
   41|  9.08k|        msg = ofputil_encode_flow_mod(fm, protocol);
   42|  9.08k|        ofpbuf_delete(msg);
   43|  9.08k|    }
   44|       |
   45|  9.28k|free:
   46|  18.5k|    for (i = 0; i < n_fms; i++) {
  ------------------
  |  Branch (46:17): [True: 9.28k, False: 9.28k]
  ------------------
   47|  9.28k|        struct ofputil_flow_mod *fm = &fms[i];
   48|  9.28k|        free(CONST_CAST(struct ofpact *, fm->ofpacts));
  ------------------
  |  |   85|  9.28k|    (BUILD_ASSERT_TYPE(POINTER, TYPE),                          \
  |  |  ------------------
  |  |  |  |   80|  9.28k|    ((void) sizeof ((int) ((POINTER) == (TYPE) (POINTER))))
  |  |  ------------------
  |  |   86|  9.28k|     (TYPE) (POINTER))
  ------------------
   49|  9.28k|        minimatch_destroy(&fm->match);
   50|  9.28k|    }
   51|  9.28k|}

